diff --git a/documentations/meeting-notes/meeting_notes_template.md b/documentations/meeting-notes/Meeting_2023-10-12.md
similarity index 65%
rename from documentations/meeting-notes/meeting_notes_template.md
rename to documentations/meeting-notes/Meeting_2023-10-12.md
index 80aef58..f8afff1 100644
--- a/documentations/meeting-notes/meeting_notes_template.md
+++ b/documentations/meeting-notes/Meeting_2023-10-12.md
@@ -1,4 +1,4 @@
-# Weekly *X*: DD.MM.YYYY
+# Weekly *12*: 12.10.2023
## Teilnehmer
- Prof. Arinir
@@ -18,4 +18,5 @@
| Action Item | Verantwortlicher | Deadline |
|-------------|------------------|-----------------|
-| Beispiel | Max Mustermann | nächstes Weekly |
+| Finanzdaten optimieren | Kim, Tristan | nächstes Weekly |
+| Rebasen vom Branch für Sascha | Sascha | nächstes Weekly |
diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb
index 1927295..3c25c7b 100644
--- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb
+++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb
@@ -12,7 +12,7 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 48,
"id": "b6eea59adeae27d4",
"metadata": {
"ExecuteTime": {
@@ -28,7 +28,7 @@
"'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'"
]
},
- "execution_count": 13,
+ "execution_count": 48,
"metadata": {},
"output_type": "execute_result"
}
@@ -45,278 +45,105 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "id": "f23dbd06",
+ "execution_count": 49,
+ "id": "eb9498d3",
"metadata": {},
"outputs": [],
"source": [
- "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n",
- "person_relations_df.head().T"
+ "from aki_prj23_transparenzregister.utils.sql import entities\n",
+ "from sqlalchemy.orm import aliased\n",
+ "from sqlalchemy import func, text\n",
+ "\n",
+ "# Alias for Company table for the base company\n",
+ "to_company = aliased(entities.Company, name=\"to_company\")\n",
+ "\n",
+ "# Alias for Company table for the head company\n",
+ "from_company = aliased(entities.Company, name=\"from_company\")"
]
},
{
"cell_type": "code",
- "execution_count": null,
- "id": "f3a4e1c1",
+ "execution_count": 50,
+ "id": "6a317af6",
"metadata": {},
"outputs": [],
- "source": []
+ "source": [
+ "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n",
+ "from aki_prj23_transparenzregister.utils.sql.connector import get_session\n",
+ "\n",
+ "session = get_session(JsonFileConfigProvider(\"secrets.json\"))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "814d5edb",
+ "metadata": {},
+ "source": [
+ "# All Company Relations"
+ ]
},
{
"cell_type": "code",
- "execution_count": 89,
- "id": "b9a7841b",
+ "execution_count": 51,
+ "id": "2d17651a",
"metadata": {},
"outputs": [
{
"data": {
- "text/html": [
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " id | \n",
- " hr | \n",
- " court_id | \n",
- " name | \n",
- " company_type | \n",
- " founding_date | \n",
- " business_purpose | \n",
- " street | \n",
- " house_number | \n",
- " zip_code | \n",
- " ... | \n",
- " latitude | \n",
- " pos_accuracy | \n",
- " capital_value | \n",
- " original_currency | \n",
- " capital_type | \n",
- " last_update | \n",
- " sector | \n",
- " str_id | \n",
- " x | \n",
- " y | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 0 | \n",
- " 1 | \n",
- " HRB 148048 | \n",
- " 1 | \n",
- " 0 10 24 Telefondienste GmbH | \n",
- " GMBH | \n",
- " 2000-09-18 | \n",
- " Gegenstand des Unternehmens ist die Entwicklun... | \n",
- " Deelbögenkamp | \n",
- " 4 | \n",
- " 22297 | \n",
- " ... | \n",
- " 53.602620 | \n",
- " 4.0 | \n",
- " 25000.0 | \n",
- " EURO | \n",
- " STAMMKAPITAL | \n",
- " 2020-05-11 | \n",
- " None | \n",
- " c_1 | \n",
- " 933483.456739 | \n",
- " -841989.312943 | \n",
- "
\n",
- " \n",
- " 1 | \n",
- " 2 | \n",
- " HRA 301114 | \n",
- " 2 | \n",
- " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
- " KG | \n",
- " 2003-07-03 | \n",
- " None | \n",
- " Johannes-Bieg-Straße | \n",
- " 8 | \n",
- " 74391 | \n",
- " ... | \n",
- " 49.022500 | \n",
- " 4.0 | \n",
- " 200000.0 | \n",
- " EURO | \n",
- " HAFTEINLAGE | \n",
- " 2020-05-04 | \n",
- " None | \n",
- " c_2 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
- "
\n",
- " \n",
- " 2 | \n",
- " 3 | \n",
- " HRA 720015 | \n",
- " 3 | \n",
- " 1 A Autenrieth Kunststofftechnik GmbH & Co. KG | \n",
- " KG | \n",
- " NaT | \n",
- " None | \n",
- " Gewerbestraße | \n",
- " 8 | \n",
- " 72535 | \n",
- " ... | \n",
- " 48.445633 | \n",
- " 4.0 | \n",
- " 146000.0 | \n",
- " EURO | \n",
- " HAFTEINLAGE | \n",
- " 2016-08-23 | \n",
- " None | \n",
- " c_3 | \n",
- " -181700.159616 | \n",
- " -623621.867275 | \n",
- "
\n",
- " \n",
- " 3 | \n",
- " 4 | \n",
- " HRB 97262 | \n",
- " 1 | \n",
- " 01050.com GmbH | \n",
- " GMBH | \n",
- " 2006-03-02 | \n",
- " die Entwicklung und Bereitstellung von Dienstl... | \n",
- " Deelbögenkamp | \n",
- " 4 | \n",
- " 22297 | \n",
- " ... | \n",
- " 53.602620 | \n",
- " 4.0 | \n",
- " 25000.0 | \n",
- " EURO | \n",
- " STAMMKAPITAL | \n",
- " 2020-05-13 | \n",
- " None | \n",
- " c_4 | \n",
- " 429817.138155 | \n",
- " -508933.805398 | \n",
- "
\n",
- " \n",
- " 4 | \n",
- " 5 | \n",
- " HRA 17617 | \n",
- " 4 | \n",
- " 2. Schaper Objekt GmbH & Co. Kiel KG | \n",
- " KG | \n",
- " NaT | \n",
- " None | \n",
- " Metro-Straße | \n",
- " 2 | \n",
- " 40235 | \n",
- " ... | \n",
- " 51.230100 | \n",
- " 4.0 | \n",
- " 500.0 | \n",
- " EURO | \n",
- " HAFTEINLAGE | \n",
- " 2021-05-27 | \n",
- " None | \n",
- " c_5 | \n",
- " 77282.617652 | \n",
- " -561971.248878 | \n",
- "
\n",
- " \n",
- "
\n",
- "
5 rows × 22 columns
\n",
- "
"
- ],
"text/plain": [
- " id hr court_id name \\\n",
- "0 1 HRB 148048 1 0 10 24 Telefondienste GmbH \n",
- "1 2 HRA 301114 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
- "2 3 HRA 720015 3 1 A Autenrieth Kunststofftechnik GmbH & Co. KG \n",
- "3 4 HRB 97262 1 01050.com GmbH \n",
- "4 5 HRA 17617 4 2. Schaper Objekt GmbH & Co. Kiel KG \n",
- "\n",
- " company_type founding_date \\\n",
- "0 GMBH 2000-09-18 \n",
- "1 KG 2003-07-03 \n",
- "2 KG NaT \n",
- "3 GMBH 2006-03-02 \n",
- "4 KG NaT \n",
- "\n",
- " business_purpose street \\\n",
- "0 Gegenstand des Unternehmens ist die Entwicklun... Deelbögenkamp \n",
- "1 None Johannes-Bieg-Straße \n",
- "2 None Gewerbestraße \n",
- "3 die Entwicklung und Bereitstellung von Dienstl... Deelbögenkamp \n",
- "4 None Metro-Straße \n",
- "\n",
- " house_number zip_code ... latitude pos_accuracy capital_value \\\n",
- "0 4 22297 ... 53.602620 4.0 25000.0 \n",
- "1 8 74391 ... 49.022500 4.0 200000.0 \n",
- "2 8 72535 ... 48.445633 4.0 146000.0 \n",
- "3 4 22297 ... 53.602620 4.0 25000.0 \n",
- "4 2 40235 ... 51.230100 4.0 500.0 \n",
- "\n",
- " original_currency capital_type last_update sector str_id x \\\n",
- "0 EURO STAMMKAPITAL 2020-05-11 None c_1 933483.456739 \n",
- "1 EURO HAFTEINLAGE 2020-05-04 None c_2 -366283.693942 \n",
- "2 EURO HAFTEINLAGE 2016-08-23 None c_3 -181700.159616 \n",
- "3 EURO STAMMKAPITAL 2020-05-13 None c_4 429817.138155 \n",
- "4 EURO HAFTEINLAGE 2021-05-27 None c_5 77282.617652 \n",
- "\n",
- " y \n",
- "0 -841989.312943 \n",
- "1 -775095.283302 \n",
- "2 -623621.867275 \n",
- "3 -508933.805398 \n",
- "4 -561971.248878 \n",
- "\n",
- "[5 rows x 22 columns]"
+ "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'"
]
},
- "execution_count": 89,
+ "execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "company_df.head()"
+ "# Query to fetch relations between companies\n",
+ "relations_company_query = (\n",
+ " session.query(\n",
+ " to_company.id.label(\"id_company_to\"),\n",
+ " to_company.name.label(\"name_company_to\"),\n",
+ " entities.CompanyRelation.relation.label(\"relation_type\"),\n",
+ " from_company.name.label(\"name_company_from\"),\n",
+ " from_company.id.label(\"id_company_from\"),\n",
+ " )\n",
+ " .join(\n",
+ " entities.CompanyRelation,\n",
+ " entities.CompanyRelation.company_id == to_company.id,\n",
+ " )\n",
+ " .join(\n",
+ " from_company,\n",
+ " entities.CompanyRelation.company2_id == from_company.id,\n",
+ " )\n",
+ ")\n",
+ "str(relations_company_query)"
]
},
{
"cell_type": "code",
- "execution_count": 102,
- "id": "6ddddb3e",
+ "execution_count": 52,
+ "id": "f1f0f2de",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "91.2 ms ± 3.52 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
+ ]
+ }
+ ],
"source": [
- "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n",
- "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)"
+ "# str(relations_query.filter((entities.CompanyRelation.company_id == 2) or (entities.CompanyRelation.company2_id == 2)))\n",
+ "%timeit pd.read_sql_query(str(relations_company_query), session.bind)"
]
},
{
"cell_type": "code",
- "execution_count": 104,
- "metadata": {},
- "outputs": [],
- "source": [
- "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n",
- "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 105,
+ "execution_count": 53,
+ "id": "444cd402",
"metadata": {},
"outputs": [
{
@@ -340,101 +167,53 @@
" \n",
" \n",
" | \n",
- " company_id | \n",
- " person_id | \n",
- " name_company | \n",
+ " id_company_to | \n",
+ " name_company_to | \n",
" relation_type | \n",
- " lastname | \n",
- " firstname | \n",
- " date_of_birth | \n",
- " from | \n",
- " to | \n",
- " company_from_x | \n",
- " company_from_y | \n",
- " to_person_x | \n",
- " to_person_y | \n",
+ " name_company_from | \n",
+ " id_company_from | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
- " 1 | \n",
- " 1 | \n",
- " 0 10 24 Telefondienste GmbH | \n",
- " RelationshipRoleEnum.GESCHAEFTSFUEHRER | \n",
- " Tetau | \n",
- " Nicolas | \n",
- " 1971-01-02 | \n",
- " p_1 | \n",
- " p_1 | \n",
- " 933483.456739 | \n",
- " -841989.312943 | \n",
- " 95962.083838 | \n",
- " -188630.575193 | \n",
+ " 5 | \n",
+ " 2. Schaper Objekt GmbH & Co. Kiel KG | \n",
+ " KOMMANDITIST | \n",
+ " Multi-Center Warenvertriebs GmbH | \n",
+ " 2213 | \n",
"
\n",
" \n",
" 1 | \n",
- " 1 | \n",
- " 2 | \n",
- " 0 10 24 Telefondienste GmbH | \n",
- " RelationshipRoleEnum.PROKURIST | \n",
- " Dammast | \n",
- " Lutz | \n",
- " 1966-12-06 | \n",
- " p_1 | \n",
- " p_2 | \n",
- " 933483.456739 | \n",
- " -841989.312943 | \n",
- " 95958.171949 | \n",
- " -188333.017618 | \n",
+ " 32 | \n",
+ " Alb-Windkraft GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " EnBW Windkraftprojekte GmbH | \n",
+ " 845 | \n",
"
\n",
" \n",
" 2 | \n",
- " 2 | \n",
- " 3 | \n",
- " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Tutsch | \n",
- " Rosemarie | \n",
- " 1941-10-09 | \n",
- " p_2 | \n",
- " p_3 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
- " 96588.817671 | \n",
- " -188120.264189 | \n",
+ " 34 | \n",
+ " Anneliese Köster GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " INDUS Holding Aktiengesellschaft | \n",
+ " 1903 | \n",
"
\n",
" \n",
" 3 | \n",
- " 2 | \n",
- " 4 | \n",
- " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Staiger | \n",
- " Marc | \n",
- " 1969-10-22 | \n",
- " p_2 | \n",
- " p_4 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
- " 95948.882846 | \n",
- " -188484.386010 | \n",
+ " 74 | \n",
+ " AURELIUS Equity Opportunities SE & Co. KGaA | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " AURELIUS Management SE | \n",
+ " 163 | \n",
"
\n",
" \n",
" 4 | \n",
- " 2 | \n",
- " 5 | \n",
- " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Staiger | \n",
- " Michaela | \n",
- " 1971-03-03 | \n",
- " p_2 | \n",
- " p_5 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
- " 95880.896083 | \n",
- " -188495.232012 | \n",
+ " 77 | \n",
+ " Aurelius KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Aurelius Verwaltungs GmbH | \n",
+ " 80 | \n",
"
\n",
" \n",
" ... | \n",
@@ -443,7 +222,248 @@
" ... | \n",
" ... | \n",
" ... | \n",
- " ... | \n",
+ "
\n",
+ " \n",
+ " 573 | \n",
+ " 3137 | \n",
+ " Zalando BTD 011 SE & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Zalando SE | \n",
+ " 3112 | \n",
+ "
\n",
+ " \n",
+ " 574 | \n",
+ " 3137 | \n",
+ " Zalando BTD 011 SE & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " Zalando Operations GmbH | \n",
+ " 3103 | \n",
+ "
\n",
+ " \n",
+ " 575 | \n",
+ " 3138 | \n",
+ " zLabels Creation & Sales GmbH & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " zLabels GmbH | \n",
+ " 3113 | \n",
+ "
\n",
+ " \n",
+ " 576 | \n",
+ " 3145 | \n",
+ " Zalando Customer Care International SE & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Zalando SE | \n",
+ " 3112 | \n",
+ "
\n",
+ " \n",
+ " 577 | \n",
+ " 3145 | \n",
+ " Zalando Customer Care International SE & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " Zalando Operations GmbH | \n",
+ " 3103 | \n",
+ "
\n",
+ " \n",
+ "\n",
+ "578 rows × 5 columns
\n",
+ ""
+ ],
+ "text/plain": [
+ " id_company_to name_company_to \\\n",
+ "0 5 2. Schaper Objekt GmbH & Co. Kiel KG \n",
+ "1 32 Alb-Windkraft GmbH & Co. KG \n",
+ "2 34 Anneliese Köster GmbH & Co. KG \n",
+ "3 74 AURELIUS Equity Opportunities SE & Co. KGaA \n",
+ "4 77 Aurelius KG \n",
+ ".. ... ... \n",
+ "573 3137 Zalando BTD 011 SE & Co. KG \n",
+ "574 3137 Zalando BTD 011 SE & Co. KG \n",
+ "575 3138 zLabels Creation & Sales GmbH & Co. KG \n",
+ "576 3145 Zalando Customer Care International SE & Co. KG \n",
+ "577 3145 Zalando Customer Care International SE & Co. KG \n",
+ "\n",
+ " relation_type name_company_from \\\n",
+ "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n",
+ "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n",
+ "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n",
+ "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n",
+ "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n",
+ ".. ... ... \n",
+ "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n",
+ "574 KOMMANDITIST Zalando Operations GmbH \n",
+ "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n",
+ "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n",
+ "577 KOMMANDITIST Zalando Operations GmbH \n",
+ "\n",
+ " id_company_from \n",
+ "0 2213 \n",
+ "1 845 \n",
+ "2 1903 \n",
+ "3 163 \n",
+ "4 80 \n",
+ ".. ... \n",
+ "573 3112 \n",
+ "574 3103 \n",
+ "575 3113 \n",
+ "576 3112 \n",
+ "577 3103 \n",
+ "\n",
+ "[578 rows x 5 columns]"
+ ]
+ },
+ "execution_count": 53,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "company_relations = pd.read_sql_query(str(relations_company_query), session.bind)\n",
+ "company_relations"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b27d6532",
+ "metadata": {},
+ "source": [
+ "# All person relations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 54,
+ "id": "52af1d30",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "relations_person_query = (\n",
+ " session.query(\n",
+ " entities.Company.id.label(\"id_company\"),\n",
+ " entities.Company.name.label(\"name_company\"),\n",
+ " entities.PersonRelation.relation.label(\"relation_type\"),\n",
+ " entities.Person.id.label(\"id_person\"),\n",
+ " entities.Person.lastname.label(\"lastname\"),\n",
+ " entities.Person.firstname.label(\"firstname\"),\n",
+ " entities.Person.date_of_birth.label(\"date_of_birth\"),\n",
+ " )\n",
+ " .join(\n",
+ " entities.PersonRelation,\n",
+ " entities.PersonRelation.company_id == entities.Company.id,\n",
+ " )\n",
+ " .join(\n",
+ " entities.Person,\n",
+ " entities.PersonRelation.person_id == entities.Person.id,\n",
+ " )\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 55,
+ "id": "4f5ab3b2",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "302 ms ± 42.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
+ ]
+ }
+ ],
+ "source": [
+ "%timeit pd.read_sql_query(str(relations_person_query), session.bind)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 56,
+ "id": "c78b3e65",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id_company | \n",
+ " name_company | \n",
+ " relation_type | \n",
+ " id_person | \n",
+ " lastname | \n",
+ " firstname | \n",
+ " date_of_birth | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 1 | \n",
+ " Tetau | \n",
+ " Nicolas | \n",
+ " 1971-01-02 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " PROKURIST | \n",
+ " 2 | \n",
+ " Dammast | \n",
+ " Lutz | \n",
+ " 1966-12-06 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 3 | \n",
+ " Tutsch | \n",
+ " Rosemarie | \n",
+ " 1941-10-09 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 4 | \n",
+ " Staiger | \n",
+ " Marc | \n",
+ " 1969-10-22 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 5 | \n",
+ " Staiger | \n",
+ " Michaela | \n",
+ " 1971-03-03 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
@@ -455,176 +475,228 @@
"
\n",
" 14891 | \n",
" 3144 | \n",
- " 878 | \n",
" Wohnungsbaugesellschaft mit beschränkter Haftu... | \n",
- " RelationshipRoleEnum.GESCHAEFTSFUEHRER | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 878 | \n",
" Weirich | \n",
" Torsten | \n",
" 1975-07-21 | \n",
- " p_3144 | \n",
- " p_878 | \n",
- " -765096.839669 | \n",
- " -873491.376807 | \n",
- " 97434.015153 | \n",
- " -187858.447324 | \n",
"
\n",
" \n",
" 14892 | \n",
" 3144 | \n",
- " 1840 | \n",
" Wohnungsbaugesellschaft mit beschränkter Haftu... | \n",
- " RelationshipRoleEnum.GESCHAEFTSFUEHRER | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 1840 | \n",
" Brusinski | \n",
" Bastian | \n",
" 1980-10-29 | \n",
- " p_3144 | \n",
- " p_1840 | \n",
- " -765096.839669 | \n",
- " -873491.376807 | \n",
- " 97545.388505 | \n",
- " -187920.623746 | \n",
"
\n",
" \n",
" 14893 | \n",
" 3145 | \n",
- " 9359 | \n",
" Zalando Customer Care International SE & Co. KG | \n",
- " RelationshipRoleEnum.PROKURIST | \n",
+ " PROKURIST | \n",
+ " 9359 | \n",
" Pape | \n",
" Ute | \n",
" 1978-12-13 | \n",
- " p_3145 | \n",
- " p_9359 | \n",
- " 522713.347552 | \n",
- " -39987.059093 | \n",
- " 100140.211001 | \n",
- " -188283.316589 | \n",
"
\n",
" \n",
" 14894 | \n",
" 3146 | \n",
- " 9628 | \n",
" zebotec GmbH | \n",
- " RelationshipRoleEnum.GESCHAEFTSFUEHRER | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 9628 | \n",
" Neff | \n",
" Werner | \n",
" 1981-11-24 | \n",
- " p_3146 | \n",
- " p_9628 | \n",
- " -47380.260514 | \n",
- " -317024.323467 | \n",
- " 99779.477327 | \n",
- " -188694.518293 | \n",
"
\n",
" \n",
" 14895 | \n",
" 3146 | \n",
- " 9629 | \n",
" zebotec GmbH | \n",
- " RelationshipRoleEnum.GESCHAEFTSFUEHRER | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 9629 | \n",
" Morris | \n",
" Richard | \n",
" 1971-01-02 | \n",
- " p_3146 | \n",
- " p_9629 | \n",
- " -47380.260514 | \n",
- " -317024.323467 | \n",
- " 99727.474626 | \n",
- " -188750.539842 | \n",
"
\n",
" \n",
"
\n",
- "
14896 rows × 13 columns
\n",
+ "
14896 rows × 7 columns
\n",
"
"
],
"text/plain": [
- " company_id person_id \\\n",
- "0 1 1 \n",
- "1 1 2 \n",
- "2 2 3 \n",
- "3 2 4 \n",
- "4 2 5 \n",
- "... ... ... \n",
- "14891 3144 878 \n",
- "14892 3144 1840 \n",
- "14893 3145 9359 \n",
- "14894 3146 9628 \n",
- "14895 3146 9629 \n",
+ " id_company name_company \\\n",
+ "0 1 0 10 24 Telefondienste GmbH \n",
+ "1 1 0 10 24 Telefondienste GmbH \n",
+ "2 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "3 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "4 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "... ... ... \n",
+ "14891 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
+ "14892 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
+ "14893 3145 Zalando Customer Care International SE & Co. KG \n",
+ "14894 3146 zebotec GmbH \n",
+ "14895 3146 zebotec GmbH \n",
"\n",
- " name_company \\\n",
- "0 0 10 24 Telefondienste GmbH \n",
- "1 0 10 24 Telefondienste GmbH \n",
- "2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
- "3 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
- "4 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
- "... ... \n",
- "14891 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
- "14892 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
- "14893 Zalando Customer Care International SE & Co. KG \n",
- "14894 zebotec GmbH \n",
- "14895 zebotec GmbH \n",
+ " relation_type id_person lastname firstname date_of_birth \n",
+ "0 GESCHAEFTSFUEHRER 1 Tetau Nicolas 1971-01-02 \n",
+ "1 PROKURIST 2 Dammast Lutz 1966-12-06 \n",
+ "2 KOMMANDITIST 3 Tutsch Rosemarie 1941-10-09 \n",
+ "3 KOMMANDITIST 4 Staiger Marc 1969-10-22 \n",
+ "4 KOMMANDITIST 5 Staiger Michaela 1971-03-03 \n",
+ "... ... ... ... ... ... \n",
+ "14891 GESCHAEFTSFUEHRER 878 Weirich Torsten 1975-07-21 \n",
+ "14892 GESCHAEFTSFUEHRER 1840 Brusinski Bastian 1980-10-29 \n",
+ "14893 PROKURIST 9359 Pape Ute 1978-12-13 \n",
+ "14894 GESCHAEFTSFUEHRER 9628 Neff Werner 1981-11-24 \n",
+ "14895 GESCHAEFTSFUEHRER 9629 Morris Richard 1971-01-02 \n",
"\n",
- " relation_type lastname firstname \\\n",
- "0 RelationshipRoleEnum.GESCHAEFTSFUEHRER Tetau Nicolas \n",
- "1 RelationshipRoleEnum.PROKURIST Dammast Lutz \n",
- "2 RelationshipRoleEnum.KOMMANDITIST Tutsch Rosemarie \n",
- "3 RelationshipRoleEnum.KOMMANDITIST Staiger Marc \n",
- "4 RelationshipRoleEnum.KOMMANDITIST Staiger Michaela \n",
- "... ... ... ... \n",
- "14891 RelationshipRoleEnum.GESCHAEFTSFUEHRER Weirich Torsten \n",
- "14892 RelationshipRoleEnum.GESCHAEFTSFUEHRER Brusinski Bastian \n",
- "14893 RelationshipRoleEnum.PROKURIST Pape Ute \n",
- "14894 RelationshipRoleEnum.GESCHAEFTSFUEHRER Neff Werner \n",
- "14895 RelationshipRoleEnum.GESCHAEFTSFUEHRER Morris Richard \n",
- "\n",
- " date_of_birth from to company_from_x company_from_y \\\n",
- "0 1971-01-02 p_1 p_1 933483.456739 -841989.312943 \n",
- "1 1966-12-06 p_1 p_2 933483.456739 -841989.312943 \n",
- "2 1941-10-09 p_2 p_3 -366283.693942 -775095.283302 \n",
- "3 1969-10-22 p_2 p_4 -366283.693942 -775095.283302 \n",
- "4 1971-03-03 p_2 p_5 -366283.693942 -775095.283302 \n",
- "... ... ... ... ... ... \n",
- "14891 1975-07-21 p_3144 p_878 -765096.839669 -873491.376807 \n",
- "14892 1980-10-29 p_3144 p_1840 -765096.839669 -873491.376807 \n",
- "14893 1978-12-13 p_3145 p_9359 522713.347552 -39987.059093 \n",
- "14894 1981-11-24 p_3146 p_9628 -47380.260514 -317024.323467 \n",
- "14895 1971-01-02 p_3146 p_9629 -47380.260514 -317024.323467 \n",
- "\n",
- " to_person_x to_person_y \n",
- "0 95962.083838 -188630.575193 \n",
- "1 95958.171949 -188333.017618 \n",
- "2 96588.817671 -188120.264189 \n",
- "3 95948.882846 -188484.386010 \n",
- "4 95880.896083 -188495.232012 \n",
- "... ... ... \n",
- "14891 97434.015153 -187858.447324 \n",
- "14892 97545.388505 -187920.623746 \n",
- "14893 100140.211001 -188283.316589 \n",
- "14894 99779.477327 -188694.518293 \n",
- "14895 99727.474626 -188750.539842 \n",
- "\n",
- "[14896 rows x 13 columns]"
+ "[14896 rows x 7 columns]"
]
},
- "execution_count": 105,
+ "execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "person_relations_df"
+ "person_relations = pd.read_sql_query(str(relations_person_query), session.bind)\n",
+ "person_relations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 57,
+ "id": "9887d1f0",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id_company | \n",
+ " name_company | \n",
+ " relation_type | \n",
+ " id_person | \n",
+ " lastname | \n",
+ " firstname | \n",
+ " date_of_birth | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " c_1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " p_1 | \n",
+ " Tetau | \n",
+ " Nicolas | \n",
+ " 1971-01-02 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " c_1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " PROKURIST | \n",
+ " p_2 | \n",
+ " Dammast | \n",
+ " Lutz | \n",
+ " 1966-12-06 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_3 | \n",
+ " Tutsch | \n",
+ " Rosemarie | \n",
+ " 1941-10-09 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_4 | \n",
+ " Staiger | \n",
+ " Marc | \n",
+ " 1969-10-22 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_5 | \n",
+ " Staiger | \n",
+ " Michaela | \n",
+ " 1971-03-03 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id_company name_company \\\n",
+ "0 c_1 0 10 24 Telefondienste GmbH \n",
+ "1 c_1 0 10 24 Telefondienste GmbH \n",
+ "2 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "3 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "4 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "\n",
+ " relation_type id_person lastname firstname date_of_birth \n",
+ "0 GESCHAEFTSFUEHRER p_1 Tetau Nicolas 1971-01-02 \n",
+ "1 PROKURIST p_2 Dammast Lutz 1966-12-06 \n",
+ "2 KOMMANDITIST p_3 Tutsch Rosemarie 1941-10-09 \n",
+ "3 KOMMANDITIST p_4 Staiger Marc 1969-10-22 \n",
+ "4 KOMMANDITIST p_5 Staiger Michaela 1971-03-03 "
+ ]
+ },
+ "execution_count": 57,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n",
+ "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n",
+ "person_relations.head()"
]
},
{
"cell_type": "markdown",
+ "id": "f448841c",
"metadata": {},
"source": [
- "# Für Company_relation anpassen:"
+ "# Person relations filtered and fitted that are nodes not leaves"
]
},
{
"cell_type": "code",
- "execution_count": 111,
+ "execution_count": 58,
+ "id": "52dad02d",
"metadata": {},
"outputs": [
{
@@ -648,265 +720,125 @@
" \n",
" \n",
" | \n",
- " company_from_id | \n",
- " company_to_id | \n",
- " name_company_base | \n",
- " relation_type | \n",
- " name_company_head | \n",
- " from | \n",
- " to | \n",
- " company_from_x | \n",
- " company_from_y | \n",
- " company_to_x | \n",
- " company_to_y | \n",
+ " person_id | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
- " 5 | \n",
- " 2213 | \n",
- " 2. Schaper Objekt GmbH & Co. Kiel KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Multi-Center Warenvertriebs GmbH | \n",
- " c_5 | \n",
- " c_2213 | \n",
- " 77282.617652 | \n",
- " -561971.248878 | \n",
- " -504679.804986 | \n",
- " 357752.607620 | \n",
+ " 2520 | \n",
"
\n",
" \n",
" 1 | \n",
- " 32 | \n",
- " 845 | \n",
- " Alb-Windkraft GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " EnBW Windkraftprojekte GmbH | \n",
- " c_32 | \n",
- " c_845 | \n",
- " 482919.713773 | \n",
- " -248481.984921 | \n",
- " 797890.056666 | \n",
- " -90110.532477 | \n",
+ " 4993 | \n",
"
\n",
" \n",
" 2 | \n",
- " 34 | \n",
- " 1903 | \n",
- " Anneliese Köster GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " INDUS Holding Aktiengesellschaft | \n",
- " c_34 | \n",
- " c_1903 | \n",
- " 320129.408339 | \n",
- " 485941.395637 | \n",
- " -454102.586298 | \n",
- " -798353.948987 | \n",
+ " 3202 | \n",
"
\n",
" \n",
" 3 | \n",
- " 74 | \n",
- " 163 | \n",
- " AURELIUS Equity Opportunities SE & Co. KGaA | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " AURELIUS Management SE | \n",
- " c_74 | \n",
- " c_163 | \n",
- " -600937.092069 | \n",
- " 499722.504530 | \n",
- " 876253.923745 | \n",
- " 435382.937847 | \n",
+ " 4611 | \n",
"
\n",
" \n",
" 4 | \n",
- " 77 | \n",
- " 80 | \n",
- " Aurelius KG | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " Aurelius Verwaltungs GmbH | \n",
- " c_77 | \n",
- " c_80 | \n",
- " 360724.373288 | \n",
- " 928534.960282 | \n",
- " -188072.509058 | \n",
- " 41947.269056 | \n",
+ " 4095 | \n",
"
\n",
" \n",
" ... | \n",
" ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
"
\n",
" \n",
- " 573 | \n",
- " 3137 | \n",
- " 3112 | \n",
- " Zalando BTD 011 SE & Co. KG | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " Zalando SE | \n",
- " c_3137 | \n",
- " c_3112 | \n",
- " 95311.431637 | \n",
- " 68673.638058 | \n",
- " 370173.700376 | \n",
- " 215807.388380 | \n",
+ " 1804 | \n",
+ " 3565 | \n",
"
\n",
" \n",
- " 574 | \n",
- " 3137 | \n",
- " 3103 | \n",
- " Zalando BTD 011 SE & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Zalando Operations GmbH | \n",
- " c_3137 | \n",
- " c_3103 | \n",
- " 95311.431637 | \n",
- " 68673.638058 | \n",
- " -546981.819278 | \n",
- " -685375.436793 | \n",
+ " 1805 | \n",
+ " 3510 | \n",
"
\n",
" \n",
- " 575 | \n",
- " 3138 | \n",
- " 3113 | \n",
- " zLabels Creation & Sales GmbH & Co. KG | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " zLabels GmbH | \n",
- " c_3138 | \n",
- " c_3113 | \n",
- " -252671.683257 | \n",
- " 651663.943407 | \n",
- " -139886.436337 | \n",
- " 657339.918258 | \n",
+ " 1806 | \n",
+ " 530 | \n",
"
\n",
" \n",
- " 576 | \n",
- " 3145 | \n",
- " 3112 | \n",
- " Zalando Customer Care International SE & Co. KG | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " Zalando SE | \n",
- " c_3145 | \n",
- " c_3112 | \n",
- " 522713.347552 | \n",
- " -39987.059093 | \n",
- " 370173.700376 | \n",
- " 215807.388380 | \n",
+ " 1807 | \n",
+ " 536 | \n",
"
\n",
" \n",
- " 577 | \n",
- " 3145 | \n",
- " 3103 | \n",
- " Zalando Customer Care International SE & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Zalando Operations GmbH | \n",
- " c_3145 | \n",
- " c_3103 | \n",
- " 522713.347552 | \n",
- " -39987.059093 | \n",
- " -546981.819278 | \n",
- " -685375.436793 | \n",
+ " 1808 | \n",
+ " 4617 | \n",
"
\n",
" \n",
"\n",
- "578 rows × 11 columns
\n",
+ "1809 rows × 1 columns
\n",
""
],
"text/plain": [
- " company_from_id company_to_id \\\n",
- "0 5 2213 \n",
- "1 32 845 \n",
- "2 34 1903 \n",
- "3 74 163 \n",
- "4 77 80 \n",
- ".. ... ... \n",
- "573 3137 3112 \n",
- "574 3137 3103 \n",
- "575 3138 3113 \n",
- "576 3145 3112 \n",
- "577 3145 3103 \n",
+ " person_id\n",
+ "0 2520\n",
+ "1 4993\n",
+ "2 3202\n",
+ "3 4611\n",
+ "4 4095\n",
+ "... ...\n",
+ "1804 3565\n",
+ "1805 3510\n",
+ "1806 530\n",
+ "1807 536\n",
+ "1808 4617\n",
"\n",
- " name_company_base \\\n",
- "0 2. Schaper Objekt GmbH & Co. Kiel KG \n",
- "1 Alb-Windkraft GmbH & Co. KG \n",
- "2 Anneliese Köster GmbH & Co. KG \n",
- "3 AURELIUS Equity Opportunities SE & Co. KGaA \n",
- "4 Aurelius KG \n",
- ".. ... \n",
- "573 Zalando BTD 011 SE & Co. KG \n",
- "574 Zalando BTD 011 SE & Co. KG \n",
- "575 zLabels Creation & Sales GmbH & Co. KG \n",
- "576 Zalando Customer Care International SE & Co. KG \n",
- "577 Zalando Customer Care International SE & Co. KG \n",
- "\n",
- " relation_type \\\n",
- "0 RelationshipRoleEnum.KOMMANDITIST \n",
- "1 RelationshipRoleEnum.KOMMANDITIST \n",
- "2 RelationshipRoleEnum.KOMMANDITIST \n",
- "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- ".. ... \n",
- "573 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "574 RelationshipRoleEnum.KOMMANDITIST \n",
- "575 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "576 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "577 RelationshipRoleEnum.KOMMANDITIST \n",
- "\n",
- " name_company_head from to company_from_x \\\n",
- "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 77282.617652 \n",
- "1 EnBW Windkraftprojekte GmbH c_32 c_845 482919.713773 \n",
- "2 INDUS Holding Aktiengesellschaft c_34 c_1903 320129.408339 \n",
- "3 AURELIUS Management SE c_74 c_163 -600937.092069 \n",
- "4 Aurelius Verwaltungs GmbH c_77 c_80 360724.373288 \n",
- ".. ... ... ... ... \n",
- "573 Zalando SE c_3137 c_3112 95311.431637 \n",
- "574 Zalando Operations GmbH c_3137 c_3103 95311.431637 \n",
- "575 zLabels GmbH c_3138 c_3113 -252671.683257 \n",
- "576 Zalando SE c_3145 c_3112 522713.347552 \n",
- "577 Zalando Operations GmbH c_3145 c_3103 522713.347552 \n",
- "\n",
- " company_from_y company_to_x company_to_y \n",
- "0 -561971.248878 -504679.804986 357752.607620 \n",
- "1 -248481.984921 797890.056666 -90110.532477 \n",
- "2 485941.395637 -454102.586298 -798353.948987 \n",
- "3 499722.504530 876253.923745 435382.937847 \n",
- "4 928534.960282 -188072.509058 41947.269056 \n",
- ".. ... ... ... \n",
- "573 68673.638058 370173.700376 215807.388380 \n",
- "574 68673.638058 -546981.819278 -685375.436793 \n",
- "575 651663.943407 -139886.436337 657339.918258 \n",
- "576 -39987.059093 370173.700376 215807.388380 \n",
- "577 -39987.059093 -546981.819278 -685375.436793 \n",
- "\n",
- "[578 rows x 11 columns]"
+ "[1809 rows x 1 columns]"
]
},
- "execution_count": 111,
+ "execution_count": 58,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n",
- "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n",
+ "from sqlalchemy import func, text\n",
"\n",
- "\n",
- "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n",
- "company_relations_df"
+ "# Subquery to group and count the relations without joins\n",
+ "grouped_relations_subquery = (\n",
+ " session.query(\n",
+ " entities.PersonRelation.person_id,\n",
+ " )\n",
+ " .group_by(entities.PersonRelation.person_id)\n",
+ " .having(func.count() > 1)\n",
+ ")\n",
+ "pd.DataFrame(grouped_relations_subquery.all())"
]
},
{
"cell_type": "code",
- "execution_count": 110,
+ "execution_count": 59,
+ "id": "2d3f7fa7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "company = (\n",
+ " pd.DataFrame(relations_person_query.all())\n",
+ " .set_index([\"lastname\", \"firstname\", \"date_of_birth\"])\n",
+ " .sort_index()\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 60,
+ "id": "53d2b530",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd\n",
+ "import igraph as ig\n",
+ "import plotly.graph_objects as go"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 61,
+ "id": "9ad5d106",
"metadata": {},
"outputs": [
{
@@ -930,131 +862,133 @@
" \n",
" \n",
" | \n",
- " company_from_id | \n",
- " company_to_id | \n",
- " name_company_base | \n",
- " relation_type | \n",
- " name_company_head | \n",
- " from | \n",
- " to | \n",
- " company_from_x | \n",
- " company_from_y | \n",
+ " source | \n",
+ " target | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
- " 5 | \n",
- " 2213 | \n",
- " 2. Schaper Objekt GmbH & Co. Kiel KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " Multi-Center Warenvertriebs GmbH | \n",
- " c_5 | \n",
- " c_2213 | \n",
- " 933483.456739 | \n",
- " -841989.312943 | \n",
+ " A | \n",
+ " B | \n",
"
\n",
" \n",
" 1 | \n",
- " 32 | \n",
- " 845 | \n",
- " Alb-Windkraft GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " EnBW Windkraftprojekte GmbH | \n",
- " c_32 | \n",
- " c_845 | \n",
- " 933483.456739 | \n",
- " -841989.312943 | \n",
+ " B | \n",
+ " C | \n",
"
\n",
" \n",
" 2 | \n",
- " 34 | \n",
- " 1903 | \n",
- " Anneliese Köster GmbH & Co. KG | \n",
- " RelationshipRoleEnum.KOMMANDITIST | \n",
- " INDUS Holding Aktiengesellschaft | \n",
- " c_34 | \n",
- " c_1903 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
+ " C | \n",
+ " D | \n",
"
\n",
" \n",
" 3 | \n",
- " 74 | \n",
- " 163 | \n",
- " AURELIUS Equity Opportunities SE & Co. KGaA | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " AURELIUS Management SE | \n",
- " c_74 | \n",
- " c_163 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
+ " D | \n",
+ " A | \n",
"
\n",
" \n",
" 4 | \n",
- " 77 | \n",
- " 80 | \n",
- " Aurelius KG | \n",
- " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER | \n",
- " Aurelius Verwaltungs GmbH | \n",
- " c_77 | \n",
- " c_80 | \n",
- " -366283.693942 | \n",
- " -775095.283302 | \n",
+ " A | \n",
+ " C | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " C | \n",
+ " B | \n",
"
\n",
" \n",
"\n",
""
],
"text/plain": [
- " company_from_id company_to_id \\\n",
- "0 5 2213 \n",
- "1 32 845 \n",
- "2 34 1903 \n",
- "3 74 163 \n",
- "4 77 80 \n",
- "\n",
- " name_company_base \\\n",
- "0 2. Schaper Objekt GmbH & Co. Kiel KG \n",
- "1 Alb-Windkraft GmbH & Co. KG \n",
- "2 Anneliese Köster GmbH & Co. KG \n",
- "3 AURELIUS Equity Opportunities SE & Co. KGaA \n",
- "4 Aurelius KG \n",
- "\n",
- " relation_type \\\n",
- "0 RelationshipRoleEnum.KOMMANDITIST \n",
- "1 RelationshipRoleEnum.KOMMANDITIST \n",
- "2 RelationshipRoleEnum.KOMMANDITIST \n",
- "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n",
- "\n",
- " name_company_head from to company_from_x \\\n",
- "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 933483.456739 \n",
- "1 EnBW Windkraftprojekte GmbH c_32 c_845 933483.456739 \n",
- "2 INDUS Holding Aktiengesellschaft c_34 c_1903 -366283.693942 \n",
- "3 AURELIUS Management SE c_74 c_163 -366283.693942 \n",
- "4 Aurelius Verwaltungs GmbH c_77 c_80 -366283.693942 \n",
- "\n",
- " company_from_y \n",
- "0 -841989.312943 \n",
- "1 -841989.312943 \n",
- "2 -775095.283302 \n",
- "3 -775095.283302 \n",
- "4 -775095.283302 "
+ " source target\n",
+ "0 A B\n",
+ "1 B C\n",
+ "2 C D\n",
+ "3 D A\n",
+ "4 A C\n",
+ "5 C B"
]
},
- "execution_count": 110,
+ "execution_count": 61,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "company_relations_df.head()"
+ "g = ig.Graph()\n",
+ "data = {\n",
+ " \"source\": [\"A\", \"B\", \"C\", \"D\", \"A\", \"C\"],\n",
+ " \"target\": [\"B\", \"C\", \"D\", \"A\", \"C\", \"B\"],\n",
+ "}\n",
+ "\n",
+ "df = pd.DataFrame(data)\n",
+ "df"
]
},
{
"cell_type": "code",
- "execution_count": 119,
+ "execution_count": 62,
+ "id": "e38983cf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "g.add_vertices(\n",
+ " pd.concat(\n",
+ " [company_relations[\"name_company_to\"], company_relations[\"name_company_from\"]]\n",
+ " ).unique()\n",
+ ")\n",
+ "g.add_edges(\n",
+ " [\n",
+ " (row[\"name_company_to\"], row[\"name_company_from\"])\n",
+ " for _, row in company_relations.iterrows()\n",
+ " ]\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 63,
+ "id": "fa95ba75",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "for _, row in company_relations.iterrows():\n",
+ " source, target, weight = (\n",
+ " row[\"name_company_from\"],\n",
+ " row[\"name_company_to\"],\n",
+ " row[\"relation_type\"],\n",
+ " )\n",
+ " g.add_edge(source, target, weight=len(weight))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 64,
+ "id": "2de7e9cf",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 64,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "layout = g.layout_kamada_kawai()\n",
+ "layout"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 65,
+ "id": "1e2e30b3",
"metadata": {},
"outputs": [
{
@@ -1065,88691 +999,8267 @@
},
"data": [
{
- "hovertext": [
- "0 10 24 Telefondienste GmbH",
- "1. Staiger Grundstücksverwaltung GmbH & Co. KG",
- "1 A Autenrieth Kunststofftechnik GmbH & Co. KG",
- "01050.com GmbH",
- "2. Schaper Objekt GmbH & Co. Kiel KG",
- "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG",
- "AgroMyc-Merck GmbH",
- "August Schäffler Verwaltungs GmbH",
- "AURELIUS Advisory AG",
- "AURELIUS Development Fourty-One GmbH",
- "AURELIUS Development Thirty-Four GmbH",
- "Aurelius Immo GmbH",
- "Aurelius Ulmenhof GmbH",
- "1&1 De-Mail GmbH",
- "AURELIUS Development Fifteen GmbH",
- "1&1 Mail & Media Applications SE",
- "1&1 Telecommunication SE",
- "1&1 Telecom Service Montabaur GmbH",
- "A 1 Marketing, Kommunikation und neue Medien GmbH",
- "Admenta Deutschland GmbH",
- "AKF Bau UG (haftungsbeschränkt)",
- "Albert Henkel Verwaltungs-GmbH",
- "Ampero GmbH",
- "ATESTEO Beteiligungs GmbH",
- "Auda EnBW MA Initiatoren GmbH & Co. KG",
- "AURELIUS Development Eleven GmbH",
- "2Gramm GmbH",
- "AURELIUS Development Thirty-Two GmbH",
- "Aurelius Invest UG (haftungsbeschränkt)",
- "AEMtec GmbH",
- "AIB Verwaltungs GmbH",
- "AK-ON Haustechnik e.K. Inh. Musa Akkaya",
- "Alb-Windkraft GmbH & Co. KG",
- "AL GRAMM GmbH",
- "Anneliese Köster GmbH & Co. KG",
- "ARKON Grundbesitzverwaltung GmbH",
- "Aurelius Holding UG (haftungsbeschränkt)",
- "AURELIUS Investment Advisory AG",
- "1&1 Mail & Media Development & Technology GmbH",
- "1&1 Telecom Holding GmbH",
- "1. Guss Maulburg GmbH",
- "ABG Apotheken-Beratungsgesellschaft mbH",
- "adidas Beteiligungsgesellschaft mbH",
- "adidas CDC Immobilieninvest GmbH",
- "bayer Feinwerk GmbH & Co. KG",
- "Amber Zweite VV GmbH",
- "AREF Solar Germany II GmbH",
- "AROTEC Automation und Robotik GmbH",
- "ASSET Immobilienbeteiligungen GmbH",
- "Aurelius Cotta - Konrad Pika Trippel Partnerschaft von Rechtsanwälten mbB",
- "Aurelius Dienstleistungs eG",
- "AURELIUS Gamma Invest GmbH",
- "Aurelius Horizon UG (haftungsbeschränkt)",
- "AURELIUS Transaktionsberatungs AG",
- "1. Freiburger Solarfonds Beteiligungs-KG",
- "1&1 Energy GmbH",
- "1 A Blumen Griesbaum, Inh. Philipp Zähringer e.K.",
- "adidas Insurance & Risk Consultants GmbH",
- "AURELIUS Development Fourty-Five DS GmbH",
- "ahg Autohandelsgesellschaft mbH",
- "Airport Assekuranz Vermittlungs-GmbH",
- "AKG Automobile GmbH",
- "ALTBERG GmbH",
- "ASS Maschinenbau GmbH",
- "AURELIUS Development Six GmbH",
- "AURELIUS Services Holding GmbH",
- "AURELIUS WK Eleven GmbH",
- "ACONITA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Niederrad KG",
- "Albert Schäffler Elektromeister GmbH",
- "Amprio GmbH",
- "audio.digital NRW GmbH",
- "AURELIUS APARTMENTS UG (haftungsbeschränkt)",
- "AURELIUS Development Fourty-Seven GmbH",
- "Fielmann AG & Co. Harburg Sand OHG",
- "AURELIUS Development Sixteen DS GmbH",
- "AURELIUS Development Twelve GmbH",
- "AURELIUS Epsilon International GmbH",
- "AURELIUS Equity Opportunities SE & Co. KGaA",
- "Aurelius Immobiliengesellschaft Am Fanny Mendelssohn Platz GmbH & Co. KG",
- "AURELIUS IV GER AcquiCo Three GmbH",
- "Aurelius KG",
- "Aurelius Mittelstandskapital GmbH",
- "AURELIUS Real Estate Investments GmbH",
- "Aurelius Verwaltungs GmbH",
- "AURELIUS WK Fifteen GmbH",
- "99 gramm Management GmbH",
- "APHS Ambulanter Pflegedienst Hella Schnepel GmbH",
- "Aragon 16. VV GmbH",
- "EnBW Solarpark Rot an der Rot GmbH & Co. KG",
- "adidas AG",
- "AFS Immobilien GmbH",
- "Airbus DS Airborne Solutions GmbH",
- "Aragon 14. VV GmbH",
- "Aragon 15. VV GmbH",
- "ATESTEO Management GmbH",
- "AURELIUS Alpha Invest New GmbH",
- "AURELIUS Development Twenty-Three GmbH",
- "AURELIUS IV GER AcquiCo One GmbH",
- "AURELIUS Portfolio Management AG",
- "1 st Class Marketing GmbH",
- "ALBA Neckar-Alb GmbH & Co. KG",
- "Amber Erste VV GmbH",
- "Aufzug - Technik Gramm GmbH",
- "Airport Cater Service GmbH",
- "Bayer. Pilze & Waldfrüchte Uwe Niklas GmbH",
- "AURELIUS Alpha International GmbH",
- "AURELIUS Development Fourty-Four GmbH",
- "AURELIUS Development Fourty GmbH",
- "AURELIUS Development Fourty-Two GmbH",
- "AURELIUS Development Twenty-Four GmbH",
- "AURELIUS Gamma International GmbH",
- "Aurelius Immobiliengesellschaft am Udo Lindenberg Platz GmbH",
- "Aurelius SW11 GmbH",
- "1&1 Mail & Media Service GmbH",
- "1&1 Versatel GmbH",
- "1. Alfdorfer Solarbetriebs-GmbH & Co. KG",
- "7pace GmbH",
- "AHG Agrar-Holding GmbH",
- "AirIT Services GmbH",
- "Bayer Rettungstechnik oHG",
- "Albert Scheid Gesellschaft mit beschränkter Haftung",
- "Ambulanter Pflegedienst Hella Schnepel e.K.",
- "AURELIUS Development Fourty-Eight GmbH",
- "AURELIUS Development Ten GmbH",
- "AURELIUS Development Twenty-Six GmbH",
- "Aurelius GmbH",
- "AURELIUS Wachstumskapital SE & Co. KG",
- "1&1 Mail & Media GmbH",
- "1&1 Logistik GmbH",
- "Aachener Bergmannssiedlungsgesellschaft mbH",
- "0 10 19 Telefondienste GmbH",
- "1&1 Telecom GmbH",
- "Fielmann AG & Co. im Centrum OHG",
- "21 Gramm Gastro GmbH",
- "Athena-Film Hella v. Krottnaurer Filmverleih und Vortragsdienst",
- "August Schäffler GmbH & Co KG",
- "AURELIUS Development Fourty-Five GmbH",
- "AURELIUS Development Fourty-Three GmbH",
- "AURELIUS Development Nine GmbH",
- "AURELIUS Development Sixteen GmbH",
- "Aurelius Digital Ventures UG (haftungsbeschränkt)",
- "Aurelius Investment Management Partners GmbH",
- "Aurelius Kontor Immobilien GmbH & Co. KG",
- "1&1 Telecom Sales GmbH",
- "1&1 Versatel Deutschland GmbH",
- "ACU PHARMA und CHEMIE GmbH",
- "ADAGIO 2. Grundstücksverwaltungsgesellschaft mbH",
- "Airplane-Equipment & Services A.E.S. GmbH",
- "BASF Niedersächsische Grundbesitz GmbH",
- "Amber Dritte VV GmbH",
- "Antamira Makler- und Beratungsgesellschaft mbH",
- "Apleona PB GmbH",
- "AREF Solar Germany I GmbH",
- "AURELIUS Active Management Holding GmbH",
- "AURELIUS Development Eight GmbH",
- "Aurelius-Hof Mainhausen GmbH",
- "Aurelius MVZ GmbH",
- "Aurelius Witton GmbH",
- "1&1 Telecom Service Zweibrücken GmbH",
- "1,2,3 fliegenfrei GmbH",
- "1-Services GmbH",
- "21 GRAMM Music UG (haftungsbeschränkt)",
- "AKAD Holding GmbH",
- "Allergopharma GmbH & Co. KG",
- "BASF Ludwigshafen Grundbesitz SE & Co. KG",
- "Alphabet International GmbH",
- "amsg gesellschaft für architektur und sige-koordination mbh",
- "AURELIUS Beta International GmbH",
- "AURELIUS Development Four GmbH",
- "AURELIUS Development Seventeen GmbH",
- "AURELIUS Management SE",
- "Aurelius UG (haftungsbeschränkt)",
- "Aurelius Verwaltungsgesellschaft mbH",
- "Albert Henkel GmbH &. Co. KG",
- "AmpTec GmbH",
- "Ancavion GmbH",
- "ancotech Holding GmbH & Co. KG",
- "Apotheke Neuhausen Inhaber Klaus-Peter Kessler",
- "Astra Ambulante Pflege GmbH",
- "Aurelius Beteiligungsberatungs AG",
- "AURELIUS Development Thirty-Five GmbH",
- "\"Auto - Garant\" Fahrzeughandel und -service GmbH",
- "AURELIUS Development Thirty-Three GmbH",
- "Aurelius Immobilien GmbH",
- "1. Weinheimer Bestattungsunternehmen e.G. Vereinigte Weinheimer-Hemsbacher Schreinermeister",
- "21 GRAMM Publishing UG (haftungsbeschränkt)",
- "Antje Leonie Schindler UG (haftungsbeschränkt)",
- "Aufwind BB GmbH & Co. Zweiundzwanzigste Biogas KG",
- "AURELIUS Alpha Invest GmbH",
- "AURELIUS Development Fourty-Six GmbH",
- "AURELIUS Development Three GmbH",
- "AURELIUS Development Twenty-Five GmbH",
- "AURELIUS Development Twenty-Nine GmbH",
- "AURELIUS Epsilon Invest GmbH",
- "Aurelius Medical GmbH",
- "Autohaus J.B. Lell e.K.",
- "Bayer Automaten GmbH",
- "Bayer Bauphysik Ingenieurgesellschaft mbH",
- "ADAGIO Grundstücksverwaltungsgesellschaft mbH",
- "Agheera GmbH",
- "Aragon 13. VV GmbH",
- "AURELIUS Active Management GmbH",
- "AURELIUS Development Seven GmbH",
- "AURELIUS Development Thirty-One GmbH",
- "AURELIUS Initiative Development GmbH",
- "AURELIUS IV GER AcquiCo Four GmbH",
- "AURELIUS IV GER AcquiCo Two GmbH",
- "AURELIUS MK Two GmbH",
- "AURELIUS WK Seventeen GmbH",
- "AURELIUS WK Management SE",
- "Bayer-Handelsgesellschaft mit beschränkter Haftung",
- "Bayer Hausrenovierungen GmbH & Co. KG",
- "Bayer Immobilien GmbH",
- "Bayer-Moden Inh. Meike Bayer",
- "Bayern Bankett Gastronomie GmbH",
- "Bayern-Drive Fahrschule GmbH",
- "Bayern Express Spedition Ernst Mayer GmbH",
- "BASF Catalysts Germany GmbH",
- "Auto Grammer e.K.",
- "Aurubis Product Sales GmbH",
- "AURELIUS WK Nineteen GmbH",
- "AZ Electronic Materials GmbH",
- "BASF Biorenewable Beteiligungs GmbH & Co. KG",
- "BASF Gastronomie GmbH",
- "BASF Performance Polymers GmbH",
- "Bayer Gesellschaft für Beteiligungen mbH",
- "Bayer Grundbesitz GmbH & Co. KG",
- "Bayer Montagebau GmbH",
- "AURELIUS WK Twenty DS GmbH",
- "BASF Coatings GmbH",
- "BASF Construction Additives GmbH",
- "BASF Leuna GmbH",
- "BASF Process Catalysts GmbH",
- "Bayer Aktiengesellschaft",
- "Bayer J. Automobile international GmbH",
- "Bayer Metallbau GmbH",
- "Bayern-Fass Rekonditionierungs GmbH",
- "BASF Innovationsfonds GmbH",
- "BASF Lizenz GmbH",
- "BASF Personal Care and Nutrition GmbH",
- "BASF Schwarzheide GmbH",
- "Bayer Altersversorgung GmbH",
- "Bayer Design Service GmbH",
- "Bayer Direct Services GmbH",
- "Bayer-Dorschner-Bauplanungsgesellschaft mbH & Co. KG",
- "Bayern ABS Projektentwicklung GmbH",
- "Bayern Card-Services Beteiligungs GmbH & Co. KG",
- "Bayern Card-Services Beteiligungsverwaltungs GmbH",
- "Bayern Digital Radio GmbH",
- "Autohaus Erwin Schmidt GmbH & Co. KG",
- "BASF Jobmarkt GmbH",
- "BASF Renewable Energy GmbH",
- "BauMineral GmbH",
- "Bay Anlagenbau GmbH",
- "Bayer 04 Immobilien GmbH",
- "Bayer-Bräu Inh. Alfred Bayer",
- "Bayer CropScience Deutschland GmbH",
- "Bayer Design Fritz Bayer GmbH & Co KG",
- "Bayer Gesellschaft mit beschränkter Haftung",
- "Bayer Glasbau GmbH",
- "Bayer Hausrenovierungen Verwaltungs-GmbH",
- "Bayern-Film Lieselotte Maurer Nachf. e.K.",
- "Aurubis Stolberg GmbH & Co. KG",
- "BASF US Verwaltung GmbH",
- "BASF watertechnologies Beteiligungs GmbH",
- "Bayer CropScience Aktiengesellschaft",
- "Bayer Fenster- Türentechnik GmbH",
- "Bayern Camper GmbH & Co. KG",
- "AURELIUS WK Twenty-Six GmbH",
- "AURELIUS WK Twelve GmbH",
- "Autohaus Gröbenzell GmbH & Co. Kfz.-Handels KG",
- "Autohaus Moderegger GmbH",
- "BASF Digital Farming GmbH",
- "BASF IP Licensing GmbH",
- "BASF Polyurethanes GmbH",
- "BASF Venture Capital GmbH",
- "BASF Verwaltungstreuhand GmbH",
- "Bayer Consulting GmbH",
- "Bayer Grabmale Gesellschaft mit beschränkter Haftung",
- "Bayer & Hiebl, SHL Sanitär-, Heizungs-, Lüftungsbaugesellschaft m.b.H.",
- "Bayer & Kastner GmbH",
- "Bayern Card-Services GmbH -S-Finanzgruppe",
- "bayern design GmbH",
- "\"Bayern\" Immobilien Treuhand Dr. jur. Zembsch GmbH & Co., Anlagen-Verwaltungs-KG",
- "Bayer Maschinenbau GmbH & Co. KG",
- "AURELIUS WK Twenty-One GmbH",
- "Autohaus Karell KG",
- "Autohaus Menke GmbH",
- "Autohaus Vogl e.K. BMW Vertragshändler",
- "Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB)",
- "Bayer. Gmain Pflege- und Therapiezentrum GmbH",
- "BAYERN CONSULT Unternehmensberatung GmbH",
- "Bayern Engineering GmbH & Co. KG",
- "Bayern Flug GmbH",
- "AURORA Konrad G. Schulz GmbH & Co. KG",
- "Autohaus Albert Henkel GmbH",
- "BASF Beteiligungsgesellschaft mbH",
- "BASF Grenzach GmbH",
- "BASF Handels- und Exportgesellschaft mit beschränkter Haftung",
- "BASF Lampertheim GmbH",
- "BASF SE",
- "Bay Beteiligungs GmbH",
- "Bayer CropScience Vermögensverwaltungsgesellschaft mbH",
- "Bayer GmbH",
- "Bayer & Kastner GmbH Personaldienstleistungen",
- "Bayern BHKW GmbH",
- "Bayern Immobilien Höller/Lechner KG",
- "Bayern Camper Verwaltungs GmbH",
- "AURELIUS WK Twenty-Four GmbH",
- "azeti GmbH",
- "BASF Agricultural Solutions GmbH",
- "AURELIUS WK Twenty-Three GmbH",
- "AURELIUS WK Twenty GmbH",
- "Aurubis AG",
- "Autohaus Briem GmbH & Co. KG Vertragshändler",
- "A. & W. Leoni GmbH",
- "BASF Mobilienleasing GmbH & Co. KG",
- "BASF Services Europe GmbH",
- "BASF VC Beteiligungs- und Managementgesellschaft mbH",
- "Bayer 04 Leverkusen Sportförderung gGmbH",
- "Bayer Gastronomie GmbH",
- "Bayer Gebäudetechnik GmbH & Co.KG",
- "Fielmann AG & Co. KG",
- "BASF Logistics GmbH",
- "BASF Plant Science GmbH",
- "BASF Wohnen + Bauen GmbH",
- "Bay City Textilhandels GmbH",
- "Bayer Aluminiumbau GmbH",
- "Bayer-Bräu GmbH.",
- "Bayer Gerüstauf- und abbau, Inh. Klaus Thiele e.K.",
- "Bayer Geschäftsführungs GmbH",
- "Bayer Industrieanlagen e. K.",
- "Bayer Karosserie und Lackierzentrum Kassel GmbH",
- "Bayern Block GmbH",
- "AURELIUS WK Twenty-Five GmbH",
- "BASF AGRO TRADEMARKS GmbH",
- "BASF Finance Malta GmbH",
- "BASF Isocyanate China Investment GmbH",
- "BASF Plant Science Company GmbH",
- "Bayer 04 physio team GmbH",
- "Bayer Beteiligungsverwaltung Goslar GmbH",
- "Bayer Betriebs GmbH",
- "Bayer Bitterfeld GmbH",
- "Bayer Druck Gesellschaft mit beschränkter Haftung",
- "Bayer-Gothieu GmbH Transporte",
- "BAYERN-CHEMIE Gesellschaft für flugchemische Antriebe mit beschränkter Haftung",
- "BAYERN Haus & Wohnbau GmbH",
- "BASF 3D Printing Solutions GmbH",
- "BASF Deutsche Grundbesitz GmbH",
- "BASF Digital Solutions GmbH",
- "BASF enviaM Solarpark Schwarzheide GmbH",
- "BASF Fuel Cell GmbH",
- "BASF Immobilien-Gesellschaft mbH",
- "Bautechnik Grammer GmbH",
- "Bayer Beteiligungs- und Verwaltungs-GmbH",
- "Bayer Gebäudereinigungs GmbH",
- "Bayer GmbH & Co KG",
- "Bayer Intellectual Property GmbH",
- "Aurubis Stolberg Verwaltungs-GmbH",
- "AUTO1 Group Operations SE",
- "BASF Battery Materials and Recycling GmbH",
- "BASF Metabolome Solutions GmbH",
- "Bauverein Glückauf GmbH",
- "Bayer 04 Leverkusen Fußball GmbH",
- "Bayer-Lenzen Stahlbau und angewandte Schweißtechnik GmbH",
- "Bayern Auto GmbH",
- "AURELIUS WK Nine GmbH",
- "AUTO1 Group SE",
- "BASF Fuel Cell Pensionsverwaltung GmbH",
- "Bayer Bauunternehmen GmbH",
- "Bayer Fahrzeugbau Gesellschaft mit beschränkter Haftung & Co. Kommanditgesellschaft",
- "Bayer Fleischwaren GmbH",
- "Bayer Grundbesitz-Verwaltungsgesellschaft mbH",
- "Bayern-Fass Verwaltungsgesellschaft mbH",
- "AURELIUS WK Twenty-Two GmbH",
- "Aurubis Stolberg Asset GmbH & Co. KG",
- "Aurubis Stolberg Asset Verwaltungs-GmbH",
- "Autohaus Fulda Krah & Enders GmbH",
- "BASF Akquisitions GmbH",
- "BASF Battery Technology Investment GmbH & Co. KG",
- "BASF Coatings Services GmbH",
- "BASF Stationary Energy Storage GmbH",
- "BASF Treuhand GmbH & Co. KG",
- "BASF Trostberger Grundbesitz GmbH",
- "BASF watertechnologies GmbH & Co. KG",
- "Bayer GmbH Tor- & Zaunsysteme",
- "Bayer kreativ Küchen Innenausbau Inhaber Matthias Bayer e.K.",
- "Bayern Boden GmbH",
- "Henkel & Söhne Bedachungs GmbH",
- "Bayern Connect GmbH",
- "Bayern Corporate Services GmbH",
- "Bayern Kapital Verwaltungs GmbH",
- "Bayern Trucks Holding GmbH",
- "Bay GmbH Autohaus Landmaschinen",
- "Bayern-Osteuropa OHG Travel Consulting Marketing",
- "Bayer + Riedl Personalservice GmbH",
- "Bayern Wind GmbH",
- "Bayern Tourismus Marketinggesellschaft mit beschränkter Haftung",
- "Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft",
- "Bayer Real Estate GmbH",
- "Bayer-Unterstützungskasse GmbH",
- "Bayer u. Sohn Verwaltungs GmbH",
- "bay eurokessel GmbH",
- "Bay GmbH Fleischgroß- & einzelhandel",
- "Bay Holzwerk GmbH",
- "Bay Spedition Verwaltungs-GmbH",
- "Bosch BASF Smart Farming GmbH",
- "BayWa BGM Verwaltungs GmbH",
- "BayWa r.e. AG",
- "BayWa r.e. Asset Management GmbH",
- "BayWa r.e. Windparkportfolio 1 GmbH & Co. KG",
- "Beragon VV GmbH",
- "Beteiligungsgesellschaft Hesse Newman Real Estate Nr. 2 mbH",
- "BMW INTEC Beteiligungs GmbH",
- "Brenntag Germany Holding GmbH",
- "Budde Fördertechnik GmbH",
- "CMC Consumer Medical Care GmbH",
- "Covestro Brunsbüttel Energie GmbH",
- "CropEnergies AG",
- "Bay-Soft GmbH",
- "BayWa Haustechnik GmbH",
- "BayWa r.e. Energy Trading GmbH",
- "BayWa r.e. Power Solutions GmbH",
- "BBG - Berlin-Brandenburger Lager- und Distributionsgesellschaft Biesterfeld Brenntag mbH",
- "Berchelmann'sche Apotheke, Inh. Serap Birgül e.K.",
- "BIG Immobilien GmbH",
- "BMW Finanz Verwaltungs GmbH",
- "BMW High Power Charging Beteiligungs GmbH",
- "BREAD & butter GmbH & Co. KG",
- "Brüderl Projekt Kunigundenstraße GmbH & Co. KG",
- "brüderl Projekt Lerchenweg GmbH & Co. KG",
- "BSP Berner Schaeffler & Partners GmbH Steuerberatungsgesellschaft",
- "CARMAH Verwaltungs GmbH",
- "Bayer & Partner Rechtsanwälte Insolvenzverwaltung",
- "Bayer & Partner - Rechtsanwälte Steuerberater",
- "Bayer Pharma Aktiengesellschaft",
- "Bayer. Staatsbad Bad Reichenhall/Bayer. Gmain GmbH",
- "Bayer Unternehmensberatung GmbH",
- "Bayer US IP GmbH",
- "Bayer Vitrotechnic GmbH",
- "BayWa r.e. Energy Ventures GmbH",
- "BayWa r.e. Solar Energy Systems GmbH",
- "BayWa r.e. Wind Verwaltungs GmbH",
- "Bay & Wiesenauer Verwaltungs-GmbH",
- "Berge & Meer Touristik GmbH",
- "BSI ZECH/HOCHTIEF GmbH & Co. oHG",
- "Best4Concept GmbH",
- "Biomasse Heizkraftwerk Siegerland GmbH & Co. KG",
- "Biomet Deutschland GmbH",
- "BITIBA GmbH",
- "BizLink elocab GmbH",
- "Brentwood Europe GmbH",
- "CECONOMY AG",
- "City Airlines GmbH",
- "Covestro Second Real Estate GmbH",
- "BayWa Bau Projekt GmbH",
- "Bayer u. Sohn Speditions-GmbH",
- "Bayer Verwaltungs GmbH",
- "BAY-PLAST GmbH",
- "BAY Trading GmbH",
- "BayWa CS GmbH",
- "BayWa Dienstleistung Ost GmbH",
- "BayWa r.e. Operation Services GmbH",
- "BayWa r.e. Wind 20+ GmbH",
- "BeGra Befestigungstechnik Gramm GmbH",
- "BE-ON eG",
- "Bilfinger Life Science Automation GmbH",
- "BMW Vermögensverwaltungs GmbH",
- "Bodo on stage e. K.",
- "Brüderl Projekt Traunstorfer Straße GmbH & Co. KG",
- "Buschjost Magnetventile GmbH & Co. KG",
- "CECONOMY Invest GmbH",
- "Cognis International GmbH",
- "Bay Küchen GmbH & Co. KG",
- "BayWa Aktiengesellschaft",
- "BayWa ARA 2 GmbH",
- "BayWa r.e. Solar Projects Verwaltungs GmbH",
- "belboon GmbH",
- "Bilfinger Corporate Real Estate Management GmbH",
- "BayWa Power Liquids GmbH",
- "Bilfinger Engineering & Maintenance GmbH",
- "Bayer.Wald Granitwerke K.A. Thiele GmbH & Co. KG",
- "BMW i Ventures GmbH",
- "BMW Service Moser GmbH & Co. KG",
- "Bay GmbH & Co. KG",
- "Brenntag Global Services GmbH",
- "BAY.RO International Vermittlung von Holz & Brennstoffen e. K.",
- "CECONOMY Dreizehnte Gesellschaft für Vermögensverwaltung mbH",
- "Cockpitpersonal GmbH",
- "Bay Verwaltungs GmbH & Co. KG",
- "COMPUTEC GmbH",
- "BayWa Bau- & Gartenmärkte GmbH & Co. KG",
- "Construction Research & Technology GmbH",
- "Covestro Deutschland AG",
- "BayWa Energie Dienstleistungs GmbH",
- "DHL Global Management GmbH",
- "Covestro Procurement Services Verwaltungs GmbH",
- "Covestro Thermoplast Composite GmbH",
- "BayWa Rent GmbH",
- "BENEO GmbH",
- "Bilfinger Noell GmbH",
- "BMW Car IT GmbH",
- "Brenntag Foreign Holding GmbH",
- "Brenntag Vermögensmanagement GmbH",
- "CECONOMY Retail International GmbH",
- "CEE Mainova WP Kirchhain GmbH & Co. KG",
- "CLG Lagerhaus GmbH & Co. KG",
- "Covestro Intellectual Property GmbH & Co. KG",
- "BRENNTAG GmbH",
- "Brenntag SE",
- "BroadNet Deutschland GmbH",
- "BMW M GmbH Gesellschaft für individuelle Automobile",
- "BürgerEnergiegenossenschaft EnBW-City eG",
- "CM Komplementär 03-020 GmbH & Co. KG",
- "Covestro AG",
- "Bayer Vermögensverwaltung GmbH",
- "Bayern-Park Freizeitparadies GmbH",
- "Bayern Treuhand Aktiengesellschaft Wirtschaftsprüfungsgesellschaft",
- "BAY Handels-GmbH",
- "BayWa r.e. Green Energy Products GmbH",
- "Behr-Hella Thermocontrol GmbH",
- "BENEO Biodivis Holding GmbH",
- "Betek GmbH & Co. KG",
- "Bilstein & Siekermann GmbH + Co. KG",
- "Birken-Apotheke Marlis Lau e.K.",
- "BizLink Robotic Solutions Germany GmbH",
- "BlackForxx GmbH",
- "BMW Anlagen Verwaltungs GmbH",
- "Brüderl Projekt GmbH & Co. KG",
- "callmobile GmbH",
- "Brenntag European Services GmbH & Co. KG",
- "Brüderl Projekt Bad Endorf GmbH & Co. KG",
- "Findus Metropol GmbH",
- "CECONOMY Retail GmbH",
- "CheMondis GmbH",
- "Club METROPOLA GmbH",
- "Bayern-Park KG",
- "Bayern Innovativ - Bayerische Gesellschaft für Innovation und Wissenstransfer mbH",
- "Bayer Trauringe GmbH",
- "Bayern-Markt Veranstaltungs GmbH",
- "Bayer & Raach GmbH",
- "Bayer Reitsport GmbH",
- "Bayer Textil und Marketing GmbH",
- "Bay Logistik GmbH + Co. KG",
- "BayWa Finanzservice GmbH",
- "BayWa r.e. Windpark Arlena GmbH",
- "BCA Beteiligungs GmbH",
- "Betreibergesellschaft Verteilzentrum GmbH",
- "Bücherstube Leonie Konertz Nachf. Helmut Krüger",
- "CECONOMY Data GmbH",
- "CECONOMY Digital GmbH",
- "CCG DE GmbH",
- "CM Komplementär 03-018 GmbH & Co. KG",
- "Bayer und Preuss GmbH",
- "BayWa EEH GmbH",
- "BayWa r.e. Data Services GmbH",
- "BF Germany GmbH",
- "Bioenergie Harald Gramm Verwaltungs-GmbH",
- "Bioenergie Merk UG (haftungsbeschränkt) & Co. KG",
- "BMW Bank GmbH",
- "BMW Fahrzeugtechnik GmbH",
- "Bock GmbH",
- "Brenntag Holding GmbH",
- "BRENNTAG International Chemicals GmbH",
- "Connected Retail GmbH",
- "Bayern Tele GmbH Fernsehproduktion Bayerischer Zeitschriftenverlage",
- "Bayer-Reisen GmbH",
- "Bayer Vital GmbH",
- "BAY-GmbH",
- "Bay & Söhne Transport GmbH",
- "BayWa Greentechpark Development GmbH",
- "BayWa r.e. Rotor Service GmbH",
- "BELETAGE Liegenschaften GmbH",
- "Bellevue Bad Heilbrunn GmbH & Co. KG",
- "BENEO-Palatinit GmbH",
- "Beton - Bohr- u. Sägedienst Johann Schäffler e.K.",
- "BGD Bodengesundheitsdienst Gesellschaft mit beschränkter Haftung",
- "BMW Beteiligungs GmbH & Co. KG",
- "Brenntag Beteiligungs GmbH",
- "BRI - ON - Musik + Verlag Inhaberin Britta Onnen e.K.",
- "Ceragon VV GmbH",
- "Covestro First Real Estate GmbH",
- "Covestro Intellectual Property Verwaltungs GmbH",
- "Bayern PV GmbH",
- "BAYERN-RALLYE Karussellbetrieb OHG",
- "BAY Investment GmbH",
- "BayWa Mobility Solutions GmbH",
- "BFE Institut für Energie und Umwelt GmbH",
- "BizLink Special Cables Germany GmbH",
- "Bode Chemie GmbH",
- "brüderl Projekt Amalienstraße GmbH & Co. KG",
- "BuMa Gebäudeservice GmbH",
- "CM Komplementär 03-019 GmbH & Co. KG",
- "Bayer Verwaltung UG (haftungsbeschränkt)",
- "Bay I GmbH",
- "Bay Küchen Verwaltungs GmbH",
- "BAY-Verwaltungs GmbH",
- "BayWa r.e. Asset Verwaltungs GmbH",
- "BayWa r.e. Solardächer II GmbH & Co. KG",
- "BayWa r.e. Wind GmbH",
- "BMVV Baumaschinen Vermietungs- und Vertriebs GmbH",
- "bonnie boutique Hella Wolter",
- "CMC Technologies GmbH & Co. KG",
- "Cognis IP Management GmbH",
- "Com On Network e.K.",
- "Covestro Invest GmbH",
- "Covestro Resins (Germany) GmbH",
- "FOM / LEG Generalübernehmer GmbH & Co. KG",
- "Bayer-Uphues GmbH",
- "BayWa r.e. IPP Verwaltungs GmbH",
- "BayWa r.e. Italia Assets GmbH",
- "BayWa r.e. Offshore Wind GmbH",
- "Berlinovo Wohnquartier GmbH",
- "Bilfinger Corporate Insurance Management GmbH",
- "BRAWO SYSTEMS GmbH",
- "Brenntag Real Estate GmbH",
- "Buchhandlung Winnemuth e.K. Inhaberin: Julia Erlen",
- "CLAAS Nordostbayern GmbH & Co. KG",
- "Cognis Holding GmbH",
- "Covestro Procurement Services GmbH & Co. KG",
- "Bayern Tourist GmbH (BTG) Gesellschaft für touristisches und gastgewerbliches Marketing in Bayern",
- "Bayern Kapital GmbH",
- "Bayer Versicherungsmakler GmbH",
- "BAY-Schnellrestaurant GmbH & Co. KG",
- "BayWa Obst Beteiligung GmbH",
- "BayWa Obst GmbH & Co. KG",
- "BayWa Venture GmbH",
- "BCD Chemie GmbH",
- "Bond-Laminates GmbH",
- "BTS 18 Projekt GmbH",
- "Chemiepark Bitterfeld-Wolfen GmbH",
- "Bayern Treuhand International Auditing & Assurance GmbH Wirtschaftsprüfungsgesellschaft",
- "Bayer + Raach Neue Energien GmbH & Co. KG",
- "BAY GmbH Wirtschaftsprüfungsgesellschaft Rechtsanwaltsgesellschaft",
- "BayWa Agrar Beteiligungs GmbH",
- "BayWa Agrarhandel GmbH",
- "BayWa Forderungsmanagement GmbH",
- "BayWa Global Produce GmbH",
- "BayWa Handels-Systeme-Service GmbH",
- "BayWa Hochhaus Verwaltung GmbH",
- "BayWa Pensionsverwaltung GmbH",
- "BayWa r.e. EMEA IPP Holding GmbH",
- "BayWa r.e. Rotor Service Vermögensverwaltungs GmbH",
- "BayWa r.e. Solar Projects GmbH",
- "BEKI-Beteiligungsgesellschaft mit beschränkter Haftung",
- "BETOMAX systems GmbH & Co. KG",
- "Bilfinger ISP Europe GmbH",
- "BizLink Industry Germany GmbH",
- "BREMER & LEGUIL Gesellschaft mit beschränkter Haftung",
- "BTC Europe GmbH",
- "Bucher Merk Process GmbH",
- "Chemitra Gesellschaft mit beschränkter Haftung",
- "CLAAS Main-Donau GmbH & Co.KG",
- "Cronon GmbH",
- "DATAGROUP Business Solutions GmbH",
- "CropEnergies Beteiligungs GmbH",
- "Fielmann AG & Co. Bad Cannstatt OHG",
- "Daimler Truck AG",
- "Deutsche Post DHL Facility Management Deutschland GmbH",
- "CSB Christian Schäffler Bauingenieurdienstleistungs GmbH",
- "Deffland & Merck GmbH",
- "Delivery Hero Kitchens Holding GmbH",
- "Deutsche Post Customer Service Center GmbH",
- "Deutsche Post E-POST Solutions GmbH",
- "Deutsche Wohnen Berlin 5 GmbH",
- "Deutsche Wohnen Berlin I GmbH",
- "DHL Express Customer Service GmbH",
- "DHL Freight Germany Holding GmbH",
- "DHL Global Forwarding Management GmbH",
- "DMG MORI Academy GmbH",
- "CropEnergies Bioethanol GmbH",
- "DEFAG Beteiligungsverwaltungs GmbH I.",
- "Delivery Hero Local Verwaltungs GmbH",
- "Dessauer Schaltschrank- und Gehäusetechnik GmbH",
- "Deutsche Post Adress Beteiligungsgesellschaft mbH",
- "Deutsche Post Adress GmbH & Co. KG",
- "Deutsche Post Immobilien GmbH",
- "Deutsches Rotes Kreuz Leipzig-Land Wohnen und Service gemeinnützige GmbH",
- "DeWoBa Deutsche Wohn Bau eG",
- "DHL Express Germany GmbH",
- "Deutsche Baumanagement GmbH",
- "Deutsche Post Expansion GmbH",
- "Deutsche Post Pensionsfonds AG",
- "Deutsches Rotes Kreuz Rostock Wohnen und Pflege gemeinnützige GmbH",
- "Deutsche Wohnen Reisholz GmbH",
- "Fielmann AG & Co. Buer OHG",
- "Deutsche Wohnen SE",
- "Deutsche WohnInvest GmbH",
- "DFI Verwaltungs GmbH",
- "DHL Data & Analytics GmbH",
- "DHL Freight GmbH",
- "DHL Global Forwarding GmbH",
- "DHL Supply Chain VAS GmbH",
- "DMG MORI Bielefeld Hilden GmbH",
- "Deutsche Post Fleet GmbH",
- "Deutsches Rotes Kreuz Wohnen, Pflege und Service im Muldental GmbH",
- "Deutsche Wohnen Management GmbH",
- "DHL Sorting Center GmbH",
- "DA Jupiter Wohnanlage GmbH",
- "DHL Supply Chain Management GmbH",
- "Danzas Deutschland Holding GmbH",
- "Delivery Hero (Pakistan) UG (haftungsbeschränkt) & Co. KG",
- "DHL Hub Leipzig GmbH",
- "DEM Merck Holding UG (haftungsbeschränkt)",
- "Deutsche Post InHaus Services GmbH",
- "Deutsche Post Investments GmbH",
- "Deutsche Wohnen Multimedia Netz GmbH",
- "DHL Solutions GmbH",
- "Daimler Vermögens- und Beteiligungsgesellschaft mbH",
- "Cross Match Technologies GmbH",
- "Delivery Hero HF Kitchens GmbH",
- "DC-Datacenter-Assets GmbH",
- "Delivery Hero (Philippines) UG (haftungsbeschränkt) & Co. KG",
- "Deutsche Annington Holdings Fünf GmbH",
- "Deutsche Post Adress Geschäftsführungs GmbH",
- "Deutsche Post Assekuranz Vermittlungs GmbH",
- "Deutsche Post DHL Real Estate Deutschland GmbH",
- "Deutsche Post IT Services GmbH",
- "Deutsche Post Shop Hannover GmbH",
- "Deutsche Post Verwaltungs Objekt GmbH",
- "DHL FoodLogistics GmbH",
- "Deutsches Rotes Kreuz - Kreisverband Stade - Wohn- und Langzeiteinrichtungen gemeinnützige GmbH",
- "Deutsches Rotes Kreuz Leben und Wohnen Gütersloh GmbH",
- "Delivery Hero (India) UG (haftungsbeschränkt) & Co. KG",
- "Diermeier Energie GmbH",
- "DEFAG Beteiligungsverwaltungs GmbH III",
- "Deutsche Bau- und Siedlungs-Gesellschaft mit beschränkter Haftung",
- "Deutsche Post Shop München GmbH",
- "DHL Paket GmbH",
- "DMG MORI Global Service GmbH",
- "Deutsche Post Beteiligungen Holding GmbH",
- "Deutsche Post DHL Corporate Real Estate Management GmbH & Co. Objekt Weißenhorn KG",
- "Deutsche Wohnen Berlin X GmbH",
- "Deutsche Wohnen Berlin XV GmbH",
- "Deutsche Wohnen Kundenservice GmbH",
- "Deutsche Wohnen Zweite Fondsbeteiligungs GmbH",
- "Deutsche Wohn-Inkasso GmbH",
- "DHL 2-Mann-Handling GmbH",
- "DMG MORI Ultrasonic Lasertec GmbH",
- "detailM GmbH",
- "Deutsche Post Pensions-Treuhand GmbH & Co. KG",
- "Deutsche Wohnen Asset Immobilien GmbH",
- "Deutsche Wohnen Care SE",
- "Deutsche Wohnen Immobilien Management GmbH",
- "DHL Global Event Logistics GmbH",
- "DHL International GmbH",
- "DMG MORI Vertriebs und Service GmbH",
- "Deutsche Post DHL Express Holding GmbH",
- "Deutsche Wohnen Berlin 7 GmbH",
- "Deutsche Wohnen Berlin III GmbH",
- "Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG",
- "Deutsche Wohnen Corporate Real Estate GmbH",
- "Deutsche Wohnen Direkt Immobilien GmbH",
- "Deutsche Wohnen Dresden I GmbH",
- "DHL Airways GmbH",
- "DHL Consulting GmbH",
- "Deutsche Wohnen Fondsbeteiligungs GmbH",
- "DHL Automotive GmbH",
- "DMG MORI Deutschland GmbH",
- "Docter Optics SE",
- "Delivery Hero Austria GmbH",
- "Delivery Hero Stores Holding GmbH",
- "Der neue Stöckach GmbH & Co KG",
- "Deutsche Post DHL Beteiligungen GmbH",
- "Deutsche Post Grundstücks-Vermietungsgesellschaft beta mbH & Co. Objekt Leipzig KG",
- "Deutsche Post Transport GmbH",
- "Deutsche Wohnen Berlin XIII GmbH",
- "Deutsche Wohnen Berlin XVIII GmbH",
- "Deutsche Wohnen Management- und Servicegesellschaft mbH",
- "Deutsche Wohnen Technology GmbH",
- "Fielmann AG & Co. Dresden Neustadt OHG",
- "DHL Home Delivery GmbH",
- "DIAGRAMMATIC DESIGNS GmbH",
- "DER Reisecenter TUI GmbH",
- "Deutsche Post AG",
- "Deutsche Post Mobility GmbH",
- "Deutsche Post Zahlungsdienste GmbH",
- "Deutsche Wohnen Berlin II GmbH",
- "Deutsche Wohnen Dresden II GmbH",
- "Deutsche Wohn- und Gewerbebau KG",
- "Delvag Versicherungs-AG",
- "Deffland & Merck Immobilien GmbH",
- "DAS GRAMM e.K.",
- "Deutsche Post Dialog Solutions GmbH",
- "Deutsches Rotes Kreuz Nienburg pflegen & wohnen gGmbH",
- "EnBW Offshore 2 GmbH",
- "DHL Supply Chain (Leipzig) GmbH",
- "DMG MORI AKTIENGESELLSCHAFT",
- "DMG MORI Global Marketing GmbH",
- "Delivery Hero SE",
- "Deutsche ibw Wohn- und Hausbaugesellschaft mbH",
- "Deutsche Lufthansa Aktiengesellschaft",
- "Deutsche Post Altersvorsorge Sicherung e.V. & Co. Objekt Gronau KG",
- "Deutsche Wohnen Construction and Facilities GmbH",
- "DHL Supply Chain Operations GmbH",
- "DMG MORI Frankfurt GmbH",
- "Daimler Truck Vermögens- und Beteiligungsgesellschaft mbH",
- "Dematic Holdings GmbH",
- "Deutsche Lufthansa Unterstützungswerk Gesellschaft mit beschränkter Haftung",
- "Deutsche Post DHL Research and Innovation GmbH",
- "Henkel Haus- und Grundstücksverwaltung GmbH & Co. KG",
- "Deutsches Rotes Kreuz Wohnen im Alter Zittau GmbH",
- "Deutsche Wohnen Berlin 6 GmbH",
- "Deutsche Wohnen Berlin XVI GmbH",
- "DHL Automotive Offenau GmbH",
- "DHL Express Network Management GmbH",
- "DMG MORI Finance GmbH",
- "deSter GmbH",
- "Deutsche Post Direkt GmbH",
- "Deutsche Post Shop Essen GmbH",
- "Deutsche Wohnen Berlin XII GmbH",
- "Deutsche Wohnen Beteiligungen Immobilien GmbH",
- "EDITION METRO e.K.",
- "Dräger Interservices GmbH",
- "Dräger Safety Verwaltungs AG",
- "E & A Internationale Explorations- und Produktions-GmbH",
- "Dr. O.K. Wack Chemie GmbH",
- "E.ON Bioerdgas GmbH",
- "Dräger Medical ANSY GmbH",
- "Eisenwerk Weilbach Gesellschaft mit beschränkter Haftung",
- "Elring Klinger Motortechnik GmbH",
- "EnBW France GmbH",
- "EnBW Kraftwerk Lippendorf Beteiligungsgesellschaft mbH",
- "EnBW Offshore 3 GmbH",
- "EnBW Offshore 7 GmbH",
- "EnBW Omega 125. Verwaltungsgesellschaft mbH",
- "EnBW Omega 132. Verwaltungsgesellschaft mbH",
- "EnBW Omega 139. Verwaltungsgesellschaft mbH",
- "EnBW Omega 141. Verwaltungsgesellschaft mbH",
- "EnBW Omega Neunundachtzigste Verwaltungsgesellschaft mbH",
- "EnBW REG Beteiligungsgesellschaft mbH",
- "EnBW Solarpark Weesow-Willmersdorf GmbH",
- "EnPV GmbH",
- "E.ON Business Solutions Deutschland GmbH",
- "E.ON Energie 38. Beteiligungs-GmbH",
- "Due Leoni GmbH",
- "EnBW He Dreiht GmbH & Co. KG",
- "ecowo GmbH",
- "ElringKlinger AG",
- "ElringKlinger Logistic Service GmbH",
- "E. Merck KG",
- "EnBW Bürgerbeteiligung Wind 1 GmbH",
- "EnBW Central and Eastern Europe Holding GmbH",
- "EnBW Kommunale Beteiligungen GmbH",
- "EnBW Ostwürttemberg DonauRies Aktiengesellschaft",
- "EnBW WindInvest Management GmbH",
- "EnBW Wind Onshore 1 GmbH",
- "E.ON 46. Verwaltungs GmbH",
- "E.ON 47. Verwaltungs GmbH",
- "E.ON 54. Verwaltungs GmbH",
- "E.ON Bayern Verwaltungs AG",
- "Henkel + Bast Inh. Sabine Bast e.K.",
- "EnBW Real Estate GmbH",
- "EnBW Senergi Immobilien GmbH",
- "EnBW Solarpark Lindenau GmbH & Co. KG",
- "EnBW VersicherungsVermittlung GmbH",
- "EnBW Windkraftprojekte GmbH",
- "EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH",
- "E.DIS AG",
- "Elektro Haustechnik Schäffler GmbH",
- "EnBW Biomasse GmbH",
- "EnBW Immobilienbeteiligungen GmbH",
- "EnBW Netze BW Beteiligungsgesellschaft mbH",
- "EnBW Offshore 4 GmbH",
- "EnBW Offshore 5 GmbH",
- "EnBW Offshore Service GmbH",
- "EnBW Omega 124. Verwaltungsgesellschaft mbH",
- "EnBW Omega 134. Verwaltungsgesellschaft mbH",
- "EnBW Omega 140. Verwaltungsgesellschaft mbH",
- "EnBW Smart Meter GmbH",
- "EnBW Solarpark Gickelfeld GmbH & Co. KG",
- "E.ON 51. Verwaltungs GmbH",
- "E.ON 55. Verwaltungs GmbH",
- "E.ON Beteiligungsholding GmbH",
- "Dr. Schäffler-Expert GmbH",
- "Dräger Gebäude und Service GmbH",
- "DWRE Halle GmbH",
- "E.A. S a r t o r i u s Verwaltungs GmbH",
- "EnBW Baltic 1 Verwaltungsgesellschaft mbH",
- "EnBW City GmbH & Co. KG",
- "EnBW New Ventures GmbH",
- "EnBW Omega 145. Verwaltungsgesellschaft mbH",
- "EnBW Solarpark Gückelhirn GmbH & Co. KG",
- "E.ON 52.Verwaltungs GmbH",
- "E.ON Drive Infrastructure Germany GmbH",
- "Henkel Besitz GmbH & Co. KG",
- "Dräger TGM Gesellschaft mit beschränkter Haftung",
- "EnBW Mainfrankenpark GmbH",
- "EnBW Omega 123. Verwaltungsgesellschaft mbH",
- "EnBW Solarpark Birkenfeld GmbH",
- "EnBW Solarpark Gottesgabe GmbH",
- "EnBW Solarpark Sonnewalde GmbH & Co. KG",
- "EnBW Wind Onshore Portfolio 2019 GmbH",
- "Energieversorgung Gaildorf OHG der EnBW Kommunale Beteiligungen GmbH und der NWS REG Beteiligungsgesellschaft mbH",
- "ENEXIO Germany GmbH",
- "E.ON Energie AG",
- "DR. PAUL, HARTMANN & COLL. GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft",
- "EDGITAL GmbH",
- "Einhorn-Apotheke Hella Dierking",
- "EnBW Grundstücksverwaltung Rheinhafen GmbH",
- "DRAWIN Vertriebs-GmbH",
- "Drägerwerk Verwaltungs AG",
- "Josef Schäffler Elektrizitätswerk GmbH & Co. KG",
- "DWRE Leipzig GmbH",
- "Dräger Medical International GmbH",
- "EBB HochTief UG (haftungsbeschränkt)",
- "EBV Gesellschaft mit beschränkter Haftung",
- "Eisengießerei Dinklage GmbH",
- "Emanuel-Merck-Vermögens-KG",
- "EnBW Baltic 2 Management GmbH",
- "EnBW International Markets GmbH",
- "EnBW Neue Energien GmbH",
- "EnBW Onshore Portfolio GmbH",
- "EnBW Solar GmbH",
- "EnBW Telekommunikation GmbH",
- "S. Görig Söhne e.K.",
- "EnBW Windpark Buchholz III GmbH",
- "energiehoch3 GmbH",
- "E.ON 53. Verwaltungs GmbH",
- "eltherm production GmbH",
- "EnBW Albatros Management GmbH",
- "EnBW Renewables International GmbH",
- "EnBW Solarpark Kroppen GmbH & Co. KG",
- "EnBW Wind Onshore Verwaltungsgesellschaft mbH",
- "Energieversorgung Strohgäu Verwaltungs GmbH",
- "Engel-Apotheke Dr. Emanuel Merck Inhaberin Renate Koehler e.K.",
- "EnPulse Ventures GmbH",
- "E.ON 9. Verwaltungs GmbH",
- "E.ON Accounting Solutions GmbH",
- "E.ON Beteiligungen GmbH",
- "EnBW Contracting Service GmbH",
- "E.ON Digital Technology GmbH",
- "E.ON Drive Infrastructure GmbH",
- "EnBW Omega 144. Verwaltungsgesellschaft mbH",
- "EnBW Solarpark Lauenhagen GmbH",
- "ElringKlinger Kunststofftechnik GmbH",
- "EMPA Hochtief Elektroinstallation UG (haftungsbeschränkt)",
- "EnBW Baltic Windpark Verwaltungsgesellschaft mbH",
- "EnBW Contracting GmbH",
- "EnBW Cyber Security GmbH",
- "EnBW He Dreiht Management GmbH",
- "EnBW Hohe See GmbH & Co. KG",
- "EnBW Nachhaltige Quartiere GmbH",
- "EnBW Omega 121. Verwaltungsgesellschaft mbH",
- "EnBW Vertriebsbeteiligungen GmbH",
- "EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG",
- "E.ON 57. Verwaltungs GmbH",
- "E.ON Business Solutions GmbH",
- "Karl Simon GmbH & Co. KG",
- "E.ON Drive GmbH",
- "EnBW Biogas GmbH",
- "EnBW Offshore 6 GmbH",
- "EnBW Omega 107. Verwaltungsgesellschaft mbH",
- "EnBW Omega 122. Verwaltungsgesellschaft mbH",
- "EnBW Rückbauservice GmbH",
- "EnBW WindInvest GmbH & Co. KG",
- "EnBW Windpark Aalen-Waldhausen GmbH",
- "Energy Air GmbH",
- "E.ON 11. Verwaltungs GmbH",
- "E.ON 58. Verwaltungs GmbH",
- "E.ON Energie Deutschland GmbH",
- "Dräger Medical Deutschland GmbH",
- "Drägerwerk AG & Co. KGaA",
- "eltherm GmbH",
- "EnBW Hohe See Management GmbH",
- "EnBW Omega 133. Verwaltungsgesellschaft mbH",
- "EnBW Energie Baden-Württemberg AG",
- "EnBW Baltic 1 GmbH & Co. KG",
- "EnBW Energy Factory GmbH",
- "EnBW mobility+ AG & Co. KG",
- "EnBW Betriebs- und Servicegesellschaft mbH",
- "EnBW Omega 108. Verwaltungsgesellschaft mbH",
- "EnBW Solar Verwaltungsgesellschaft mbH",
- "EnBW SunInvest GmbH & Co. KG",
- "EnBW Wind Onshore Instandhaltungs GmbH",
- "Energie Sachsenheim Verwaltungs-GmbH",
- "E.ON 45. Verwaltungs GmbH",
- "EnBW Windpark Kleinliebringen GmbH",
- "EnergieServicePlus GmbH",
- "E.ON Country Hub Germany GmbH",
- "Dr. Beckers Central Apotheke Roman Götz e.K.",
- "Dräger Holding International GmbH",
- "eBoD GmbH",
- "Emanuel Merck GmbH",
- "EMG EuroMarine Electronics GmbH",
- "EnBW Baltic 2 GmbH & Co. KG",
- "EnBW Solarpark Tuningen GmbH",
- "EnBW Windpark Ober-Ramstadt GmbH",
- "Energie Kirchheim unter Teck Verwaltungs-GmbH",
- "EEA-Dr. Schäffler, Germany GmbH",
- "Dr. Wack Holding GmbH & Co. KG",
- "Elektro Grammer GmbH",
- "EnBW Albatros GmbH & Co. KG",
- "EnBW Bürgerbeteiligung Solar 1 GmbH",
- "EnBW Kernkraft GmbH",
- "EnBW Offshore 1 GmbH",
- "EnBW Omega 126. Verwaltungsgesellschaft mbH",
- "EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG",
- "EnBW Solarpark Groß Lübbenau GmbH & Co. KG",
- "EnBW SunInvest Management GmbH",
- "EnBW vernetzt Beteiligungsgesellschaft mbH",
- "EnBW Windpark Prötzel GmbH",
- "Dräger MSI GmbH",
- "DWRE Dresden GmbH",
- "DWRE Hennigsdorf GmbH",
- "Dörenhagen Windenergieanlagen GmbH & Co. KG",
- "E. Merck Beteiligungen KG",
- "EnBW Etzel Speicher GmbH",
- "EnBW NAG-Beteiligungsgesellschaft mbH",
- "EnBW Perspektiven GmbH",
- "EnBW Solarpark Göritz GmbH & Co. KG",
- "EnBW Solarpark Ingoldingen GmbH",
- "EnBW Urbane Infrastruktur GmbH",
- "EnBW Windpark Hemme GmbH",
- "E.ON Energie Deutschland Holding GmbH",
- "E.ON Hydrogen GmbH",
- "E.ON Energy Markets GmbH",
- "E.ON Inhouse Consulting GmbH",
- "E.ON Grund&Boden GmbH & Co. KG",
- "E.ON Finanzanlagen GmbH",
- "E.ON Energy Projects GmbH",
- "E.ON Solarpark 7 GmbH & Co. KG",
- "E.ON Solarpark 5 GmbH & Co. KG",
- "EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG",
- "Evonik Operations GmbH",
- "Fielmann AG & Co. Brackwede KG",
- "Fielmann AG & Co Bramfeld KG",
- "Fielmann AG & Co. Centrum OHG",
- "Fielmann AG & Co. Elberfeld OHG",
- "Fielmann AG & Co. Hiltrup OHG",
- "Fielmann AG & Co. Ochsenzoll OHG",
- "Fielmann AG & Co. Rahlstedt OHG",
- "Fielmann AG & Co. Rethelstraße OHG",
- "Frank Schäffler e. K.",
- "Eurowings Technik GmbH",
- "NWS Grundstücksmanagement GmbH & Co. KG",
- "freenet Direkt GmbH",
- "FS-BF GmbH & Co. KG",
- "E.ON Solar GmbH",
- "E.ON Solarpark 3 GmbH & Co. KG",
- "Eurowings GmbH",
- "Evonik Industries AG",
- "Fashion Circle GmbH",
- "Fielmann AG & Co. City-Arkaden OHG",
- "Fielmann AG & Co. Dresden Altstadt KG",
- "Fielmann AG & Co. Leipziger Straße OHG",
- "Fielmann AG & Co. Mülheim OHG",
- "Fielmann AG & Co. Oberkassel OHG",
- "fielmann Fielmann GmbH",
- "FraSec Services GmbH",
- "Freiberger Internationale Beteiligungs GmbH",
- "E.ON Gas Mobil GmbH",
- "E.ON Energy Solutions GmbH",
- "E.ON Insurance Services GmbH",
- "Erste WohnServicePlus GmbH",
- "Eurafrica Baugesellschaft mit beschränkter Haftung",
- "Erste End of Runway Development Leipzig GmbH",
- "Evonik Catering Services GmbH",
- "Evonik Digital GmbH",
- "Evonik Risk and Insurance Services GmbH",
- "Fielmann AG & Co",
- "Fielmann AG & Co. Eimsbüttel OHG",
- "Fielmann AG & Co. Venloer Straße OHG",
- "Fielmann AG & Co. Wandsbek OHG",
- "Fielmann Finanzservice GmbH",
- "FIMMUS Grundstücks-Vermietungsgesellschaft mbH",
- "FläktGroup Deutschland GmbH",
- "Forster GmbH",
- "Fraport Casa Commercial GmbH",
- "FRA - Vorfeldkontrolle GmbH",
- "freenet Datenkommunikations GmbH",
- "freenet Shopping GmbH",
- "GALERIA Holding GmbH",
- "E.ON Solarpark 11 GmbH & Co. KG",
- "E.ON US Holding GmbH",
- "Eumatic GmbH Kunststoffverarbeitung",
- "Facilma Grundbesitzmanagement und -service GmbH & Co. Besitz KG",
- "Fielmann AG & Co. Essen-Steele OHG",
- "Fielmann AG & Co. Höchst OHG",
- "Fielmann AG & Co. Jahnplatz OHG",
- "Fielmann AG & Co. OHG",
- "Fielmann AG & Co. oHG Kalk",
- "Fielmann AG & Co. Ottensen OHG",
- "Fielmann AG & Co. Rheydt oHG:",
- "Fortimo GmbH",
- "Fraport Casa GmbH",
- "freenet Shop GmbH",
- "Gamma Unternehmensverwaltungs GmbH",
- "E.ON Gruga Objektgesellschaft mbH & Co. KG",
- "E.ON Pensionsfonds AG",
- "E.ON Solarpark 9 GmbH & Co. KG",
- "Epurex Films GmbH & Co. KG",
- "EUROGREEN GmbH",
- "Eurowings Aviation GmbH",
- "Fielmann AG & Co. am Markt KG",
- "Fielmann AG & Co. Paunsdorf-Center OHG",
- "Fielmann AG & Co-Volksdorf OHG",
- "Fontane Apotheke Klaus Kirchmeier e. K.",
- "freenet DLS GmbH",
- "Freiberger Lebensmittel GmbH",
- "GEA Germany GmbH",
- "E.ON Solarpark 4 GmbH & Co. KG",
- "Evonik Venture Capital GmbH",
- "European Air Transport Leipzig GmbH",
- "Evonik IP GmbH",
- "Ferrostaal Oil & Gas GmbH",
- "Fichthorn GmbH & Co. KG",
- "Fielmann AG & Co. oHG City-Galerie",
- "Fielmann AG & Co. Othmarschen OHG",
- "fielmann-optic Fielmann GmbH + Co.",
- "Fraport AG Frankfurt Airport Services Worldwide",
- "freenet.de GmbH",
- "Gartenstadt Hotel Inhaberin Beate Becker e. K.",
- "GEA Erste Kapitalbeteiligungen GmbH & Co. KG",
- "GEA Group Aktiengesellschaft",
- "E.ON Solarpark Gerdshagen GmbH & Co. KG",
- "E.ON Vermögensverwaltungs GmbH",
- "Eurowings Digital GmbH",
- "EWE Go HOCHTIEF Ladepartner GmbH & Co. KG",
- "Gate Gourmet Lounge GmbH",
- "GEA Bischoff GmbH",
- "GEA Diessel GmbH",
- "E.ON Grund&Boden Beteiligungs GmbH",
- "E.ON One GmbH",
- "E.ON Pensionsfonds Holding GmbH",
- "E.ON Ruhrgas Portfolio GmbH",
- "E.ON Service GmbH",
- "E.ON Solarpark 6 GmbH & Co. KG",
- "E.ON Stiftung gGmbH",
- "Ernst Feyerabend, Pächter: Dieter Grammer",
- "Fahrzeugbau GmbH Geisa",
- "Faro & Leoni UG (haftungsbeschränkt)",
- "Fielmann AG & Co. Barbarossaplatz OHG",
- "Fielmann AG & Co. Bonn-Bad Godesberg OHG",
- "Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG",
- "Fielmann AG & Co. oHG Marktplatz-Center",
- "fielmann Farmsen Fielmann GmbH & Co.",
- "formart Immobilien GmbH",
- "Frankfurter Siedlungsgesellschaft mbH (FSG)",
- "Fraport Objekte 162 163 GmbH",
- "Fraport Objekt Mönchhof GmbH",
- "Fritz Schäffler GmbH & Co.",
- "Kernkraftwerk Obrigheim GmbH (KWO)",
- "freenet Cityline GmbH",
- "freenet Logistik GmbH",
- "Frye Ströer Legehennen KG",
- "GEA Food Solutions Germany GmbH",
- "E.ON Fünfundzwanzigste Verwaltungs GmbH",
- "E.ON Grid Solutions GmbH",
- "E.ON Iberia Holding GmbH",
- "E.ON Group Innovation GmbH",
- "E.ON International GmbH",
- "E.ON Ruhrgas GPA GmbH",
- "E.ON Solarpark 12 GmbH & Co. KG",
- "E.ON Verwaltungs GmbH",
- "Esso Station Hochhaus Dipl.-Ing. Andreas Hochhaus e.K.",
- "Evonik Real Estate GmbH & Co. KG",
- "Faragon V V GmbH",
- "FarmFacts GmbH",
- "FarmFacts Holding GmbH",
- "FUCHS Finanzservice GmbH",
- "E.ON Energie Dialog GmbH",
- "E.ON Finanzholding Beteiligungs-GmbH",
- "Evertaste GmbH",
- "Evonik Logistics Services GmbH",
- "Fielmann AG & Co. Barmen OHG",
- "E.ON RAG-Beteiligungsgesellschaft mbH",
- "Fielmann AG & Co. im Centrum KG",
- "Fielmann AG & Co. oHG im Centrum",
- "Fielmann Augenoptik AG & Co. oHG",
- "Fraport Real Estate Verwaltungs GmbH",
- "FraSec Fraport Security Services GmbH",
- "Füger Grundstücks- und Vermögensverwaltungs UG (haftungsbeschränkt) & Co. KG",
- "Füger Verwaltungs UG (haftungsbeschränkt)",
- "Gasnetzverwaltungsgesellschaft Schorndorf GmbH",
- "E.ON Sechzehnte Verwaltungs GmbH",
- "E.ON Perspekt GmbH",
- "E.ON TowerCo GmbH",
- "Exner Wäscherei, Reinigung e.K.",
- "Fielmann AG & Co. oHG Lütten Klein",
- "Fernwärme-Verbund Saar Gesellschaft mit beschränkter Haftung",
- "Fielmann AG & Co. Derendorf OHG",
- "Fielmann AG & Co. oHG Ludwigsplatz",
- "Fielmann AG & Co. oHG Rhein-Center",
- "Fielmann AG & Co. Pferdemarkt OHG",
- "Fielmann AG & Co. Zentrum KG",
- "Flughafen Frankfurt - Hahn GmbH",
- "FMD - Facility Management Dienstleistungen GmbH",
- "Fraport Real Estate 162 163 GmbH & Co. KG",
- "Fraport Real Estate Mönchhof GmbH & Co. KG",
- "FSB Flugplatz Beteiligungsgesellschaft mbH",
- "FUCHS LUBRICANTS GERMANY GmbH",
- "FUCHS PETROLUB SE",
- "Gastauer Reisen GmbH",
- "Gate Gourmet Objekt- und Verwaltungsgesellschaft mbH",
- "GEA Brewery Systems GmbH",
- "E.ON Finanzholding SE & Co. KG",
- "E.ON Gruga Geschäftsführungsgesellschaft mbH",
- "E.ON impulse GmbH",
- "E.ON Portfolio Services GmbH",
- "E.ON Real Estate GmbH",
- "E.ON Solarpark 10 GmbH & Co. KG",
- "E.ON Solarpark 8 GmbH & Co. KG",
- "Evonik Functional Solutions GmbH",
- "EW Discover GmbH",
- "FCS Frankfurt Cargo Services GmbH",
- "Fielmann AG & Co. Ebertplatz KG",
- "Fielmann AG & Co. Klosterstraße OHG",
- "Fielmann AG & Co. Oberhausen OHG",
- "Fielmann AG & Co Rathaus OHG",
- "Fielmann Augenoptik AG & Co. oHG Harburg-City",
- "FIMMUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Lübeck KG",
- "Fraport Ausbau Süd GmbH",
- "Fraport Beteiligungsgesellschaft mbH",
- "Fraport Brasil Holding GmbH",
- "Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG",
- "FraSec Flughafensicherheit GmbH",
- "Fuels Services GmbH",
- "Garben-Apotheke e.K.",
- "GEA AWP GmbH",
- "E.ON Portfolio Solutions GmbH",
- "Fielmann AG & Co Wattenscheid KG",
- "Fielmann Augenoptik AG & Co.",
- "E.ON SE",
- "E.ON Verwaltungs AG Nr. 1",
- "Evonik Dahlenburg GmbH",
- "Evonik Materials GmbH",
- "Fachklinik für Anästhesie und Intensivmedizin Vahrenwald GmbH",
- "Field Service Deutschland FSD GmbH",
- "Fielmann AG & Co. Bergedorf KG",
- "Fielmann AG & Co. oHG Allee-Center",
- "Fielmann Aktiengesellschaft",
- "FIRST Travel GmbH",
- "GEA Farm Technologies GmbH",
- "E.ON Solarpark 13 GmbH & Co. KG",
- "E.ON Solarpark Diepoldshofen GmbH & Co. KG",
- "E.ON Solutions GmbH",
- "Eragon VV GmbH",
- "Erste Logistik Entwicklungsgesellschaft MG GmbH",
- "Evonik Beteiligungs-GmbH",
- "EWE HOCHTIEF Ladepartner Verwaltungs-GmbH",
- "Fielmann AG & Co. Bornheim KG",
- "Fielmann AG & Co. Essen-Rüttenscheid OHG",
- "GBS Gesellschaft für Unternehmensbeteiligungen mbH",
- "E.ON Gastronomie GmbH",
- "Everschop-Apotheke Inhaberin Hella Behm e.Kfr.",
- "Fielmann AG & Co. Hamborn OHG",
- "Fielmann AG & Co. Roßmarkt OHG",
- "Fielmann AG & Co. Westliche Kaiserstraße KG",
- "Finanzen im Ganzen Ströer UG (haftungsbeschränkt)",
- "freenet Energy GmbH",
- "Freiberger Holding GmbH",
- "Freiberger Osterweddingen GmbH",
- "E.ON Rhein-Ruhr Werke GmbH",
- "Ersatzteilversorgung historischer BMW Kraftfahrzeuge GmbH",
- "E WIE EINFACH GmbH",
- "Fielmann AG & Co. An der Rothenburg OHG",
- "Fielmann AG & Co. Billstedt KG",
- "Fielmann AG & Co. Chorweiler KG",
- "Fielmann AG & Co. oHG Hindenburgstraße",
- "Fielmann Augenoptik GmbH & Co. Luxemburg KG",
- "fielmann INTER-OPTIK GmbH & Co.",
- "FraGround Fraport Ground Handling Professionals GmbH",
- "Fraport Facility Services GmbH",
- "Fraport Passenger Services GmbH",
- "Group Engine Management GmbH",
- "Grundstücksgesellschaft DuHa mbH",
- "freenet AG",
- "GASCADE Gastransport GmbH",
- "GELSENWASSER Entwicklungsgesellschaft Dresden mbH",
- "GEA Mechanical Equipment GmbH",
- "GELSENWASSER Industrieservice Schkopau GmbH",
- "GELSENWASSER Polska GmbH",
- "Gesellschaft für nukleares Reststoffrecycling mbH",
- "GKF Vermögensverwaltungsgesellschaft mbH",
- "Goldhand Lebensmittel- und Verbrauchsgüter-Vertriebsgesellschaft mit beschränkter Haftung",
- "Grammer Deutschland GmbH",
- "GRAMME - REVIT GmbH",
- "GVMS Grundstücksverwaltung Service GmbH & Co. KG",
- "Wohnen am Lerchenberg GmbH & Co. KG",
- "Hamburger Gesellschaft für Flughafenanlagen mit beschränkter Haftung",
- "Haus Aurelius Immobilien Verwaltungs GmbH",
- "Hella Aglaia Mobile Vision GmbH",
- "Hella GmbH",
- "HELLA GmbH & Co. KGaA",
- "Hella Gutmann Holding GmbH",
- "Hella Innenleuchten-Systeme GmbH",
- "Hella Krause e.K.",
- "Henkel-Bau GmbH",
- "Henkel Erste Holding GmbH",
- "Henkel oHG, Formular-Verlag Inhaber Marc Henkel e.K.",
- "Henkel & Seickert Immobilien GmbH & Co. KG",
- "HENKEL SEMAtronic UG (haftungsbeschränkt)",
- "henkel´s Verwaltungs GmbH",
- "Henkel vorm. Kleinz Heizung & Sanitär e. K.",
- "GEA Westfalia Separator Group GmbH",
- "GELSENWASSER 14. Beteiligungs-GmbH",
- "GEA Group Services GmbH",
- "GEA Messo GmbH",
- "Henkel & Rühaak Steuerberatungsgesellschaft PartmbB",
- "GEA TDS GmbH",
- "GELSENWASSER Dresden Gesellschaft mit beschränkter Haftung",
- "GeWo Gesellschaft für Wohnungs- und Städtebau mbH",
- "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG",
- "Gladbau Baubetreuungs- und Verwaltungs-Gesellschaft mbH",
- "GRAMMER Immobilien Technik GmbH",
- "Haus Aurelius - SZB Aachen Immobilien GmbH & Co. KG",
- "HBPO GmbH",
- "Hella Krauß Inhaber Thomas Krauß",
- "Hella Stiftung GmbH",
- "Henkel Architektur Planungs- und Projektentwicklungsgesellschaft mbH",
- "Henkel Bauelemente GmbH",
- "Henkel Beauty & IB Holding GmbH",
- "Henkel Beratung und Beteiligungen UG (haftungsbeschränkt)",
- "Henkel & Geflitter GmbH",
- "Henkel Industrial Services GmbH",
- "Henkel Klinikservice GmbH",
- "Henkel License GmbH",
- "HENKEL + ROTH GmbH",
- "Henkel Umform- und Fügetechnik GmbH",
- "GELSENWASSER Stadtwerkedienstleistungs-GmbH",
- "Gerresheim Festausstattung GmbH",
- "Gramm Technik GmbH",
- "Gramm Verwaltung GmbH",
- "Hapag-Lloyd Schiffsvermietungsgesellschaft mbH",
- "Heinrich Schäfermeyer GmbH",
- "Heizkraftwerk Stuttgart GmbH",
- "Hella Geschäftsführungsgesellschaft mbH",
- "Hella Gutmann Anlagenvermietung GmbH",
- "Henkel Dental - Labor Inh. Barbara Henkel e.K.",
- "Henkel Entsorgung GmbH",
- "Henkel Gesellschaft mit beschränkter Haftung",
- "Henkel Industrieconsulting UG (haftungsbeschränkt)",
- "Henkel IP Management and IC Services GmbH",
- "Henkel & Scheel Klinkerbau GmbH",
- "GELSENWASSER 6. Beteiligungs-GmbH",
- "LANXESS Deutschland GmbH",
- "Gemeindewerke Brühl Verwaltungs-GmbH",
- "Going On !!! Mediaservices Inh. Mirko Heintz e.K.",
- "Grammers S UG (haftungsbeschränkt)",
- "Guano-Werke GmbH & Co. KG",
- "Henkel Parts GmbH",
- "Henkel Vermögensverwaltungs GmbH",
- "Henkel Wasch- und Reinigungsmittel GmbH",
- "GELSENWASSER 11. Beteiligungs-GmbH",
- "GELSENWASSER Service GmbH",
- "GGR Wohnparks Kastanienallee GmbH",
- "Gramm.Architektur GmbH",
- "GRAMMER Aktiengesellschaft",
- "GRAMME-REVIT INTERNATIONAL GmbH",
- "GRAMMER Interior Components GmbH",
- "Gramm Fertigungstechnik GmbH",
- "Gramm Profiltechnik GmbH",
- "GSW Corona GmbH",
- "hairdesign by Hella Ballin GmbH",
- "Hapag-Lloyd Aktiengesellschaft",
- "Hapag-Lloyd Grundstücksholding GmbH",
- "HASA GmbH",
- "Hella Richert Vermögensverwaltungs-GmbH",
- "Hella & Tom Media GmbH",
- "Helmut Rübsamen GmbH & Co. KG, Metalldrückerei-Umformtechnik",
- "Henkel Assekuranz Makler UG (haftungsbeschränkt)",
- "Henkel GmbH Formular-Verlag",
- "Henkel Investment GmbH",
- "Henkel Management AG",
- "Henkel Steuerberatungsgesellschaft mbH",
- "Henkel-Versand Karl-Heinz Henkel e.K.",
- "GEA Refrigeration Germany GmbH",
- "GELSENWASSER 13. Beteiligungs-GmbH",
- "GELSENWASSER 9. Beteiligungs-GmbH",
- "GELSENWASSER Energienetze 9. Beteiligungsgesellschaft mbH",
- "GELSENWASSER Magdeburg GmbH",
- "Geragon VV GmbH",
- "Gramm Energie GmbH",
- "GRAMOLERA Grundstücksvermietungsgesellschaft Objekt Ticino mbH",
- "Hella Priem Beflockungs-GmbH",
- "Henkel Bedachung GmbH",
- "Henkel Innovation Investments GmbH",
- "Gelsenberg GmbH & Co. KG",
- "GELSENWASSER Beteiligungen SE",
- "GRAMMER Automotive Metall GmbH",
- "GRAMMER System GmbH",
- "Grundstücksgesellschaft Karower Damm mbH",
- "Haus Aurelius SZB Aachen Alten- und Pflegeheim GmbH",
- "Heine Resistors GmbH",
- "Hella Koch Mineralöltransporte GmbH",
- "Henkel-Augenoptik Gesellschaft mit beschränkter Haftung",
- "Henkel Familien KG",
- "Henkel & Partner mbB Patentanwaltskanzlei",
- "Henkel Verwaltungs GmbH",
- "Henkel Zehnte Verwaltungsgesellschaft mbH",
- "GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG",
- "GEHAG Erste Beteiligungs GmbH",
- "GEA Lyophil GmbH",
- "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG",
- "Gramm medical healthcare GmbH",
- "Gramm Oberflächentechnisches Institut Bodensee GmbH",
- "Gramm Spenglerei GmbH",
- "Hanspeter Grassl KG",
- "Hella Corporate Center GmbH",
- "Hella Matthiesen Kunststoffspritzguß Inh. Hans Georg Berger e.K.",
- "Henkel Beteiligungs- und Verwaltungs-GmbH",
- "Henkel Holding KGaA & Co. KG",
- "Henkel Holz- und Massivbau GmbH",
- "HENKEL med. PERSONAL Düsseldorf GmbH",
- "Henkel & Nilles UG (haftungsbeschränkt) & Co. KG",
- "Henkel-Tuning GmbH",
- "Henkel Vermietungs GmbH",
- "GEA Real Estate GmbH",
- "Gesellschaft zur Förderung der Lackkunst mbH",
- "GEHE Pharma Handel GmbH",
- "GEHAG Grundbesitz III GmbH",
- "GEHAG Zweite Beteiligungs GmbH",
- "GELSENWASSER 12. Beteiligungs-GmbH",
- "Georg Schäffler GmbH",
- "GGR Wohnparks Süd Leipziger Tor GmbH",
- "GRAMMER Immobilien Verwaltung GmbH",
- "Grammer Solar Photovoltaik GmbH",
- "Gramm Geschäftsführung GmbH",
- "Gramm Spiegel+Licht GmbH",
- "Gramm Verwaltungs GmbH",
- "Kabel Deutschland Holding AG",
- "Gravis - Computervertriebsgesellschaft mbH",
- "G. Stranzinger Bauprojekt GmbH & Co. KG",
- "Hans Joachim Jetschke Industriefahrzeuge (GmbH & Co.) KG",
- "HARTMANN Venture GmbH",
- "Hella Distribution GmbH",
- "Henkel AG & Co. KGaA",
- "HENKEL Anlagen- und Prozesstechnik GmbH",
- "Henkel Eigentümer Dienste GmbH",
- "Henkel Immo GmbH",
- "Henkel Verwaltungs UG (haftungsbeschränkt)",
- "GEA Wiegand GmbH",
- "GELSENWASSER 3. Projektbeteiligungsgesellschaft mbH",
- "GELSENWASSER Energienetze GmbH",
- "Gemeinnützige Eisenbahn-Wohnungsbau-Gesellschaft mit beschränkter Haftung Wuppertal",
- "Gerresheimer Wertheim GmbH",
- "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG",
- "Grammer Railway Interior GmbH",
- "gramm.genau GmbH",
- "Gramm, Lins & Partner Patent- und Rechtsanwälte PartGmbB",
- "Grünau Illertissen GmbH",
- "GSW Grundvermögens- und Vertriebsgesellschaft mbH",
- "Hansaport Hafenbetriebsgesellschaft mit beschränkter Haftung",
- "Heinzelmann Mineralöle Inhaber Wolfgang Sartorius e.K.",
- "HELLA VON SINNEN + CORNELIA SCHEEL Komikzentrum GmbH",
- "Hella Werkzeug Technologiezentrum GmbH",
- "Henkel Beiz- und Elektropoliertechnik GmbH & Co. KG",
- "Henkel Elektro-Installation e.Kfr.",
- "Henkel Elfte Verwaltungsgesellschaft mbH",
- "Henkel GmbH",
- "Henkel KG Generalagentur",
- "Henkel Verwaltung GmbH",
- "Henkel & Volic GmbH",
- "GEA Tuchenhagen GmbH",
- "GELSENWASSER-Stiftung gGmbH",
- "MEC METRO-ECE Centermanagement GmbH & Co. KG",
- "Gemeinnützige Gesellschaft zur Förderung des E.ON Energy Research Center mbH",
- "Gramm GmbH & Co. KG",
- "GVV Grevener Vermietungs- und Verpachtungs-GmbH & Co. KG",
- "Hamburg On Air e.K.",
- "Hella Gutmann Solutions GmbH",
- "Hella Pagid GmbH",
- "HELLA Sonnenschutztechnik GmbH",
- "Helmut Gramm Möbelhandel und Verpachtung Inhaberin Marion Gramm e.K.",
- "Henkel Beiz- und Elektropoliertechnik Verwaltungsgesellschaft mbH",
- "Henkel GmbH + Co.",
- "Henkel Italia Holding Verwaltungs GmbH",
- "henkel's Höfe GmbH & Co. KG",
- "henkel's LDH GmbH & Co. KG.",
- "GEHAG Grundbesitz I GmbH",
- "Grammer Verwaltungs GmbH",
- "Gramm GmbH",
- "Gramm Immo Verwaltungs GmbH",
- "Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG",
- "Guido's Pizzeria Inhaber Giorgio Puma e.K.",
- "Hapag-Lloyd Reisebüro Hagen GmbH & Co. KG",
- "Hapag-Lloyd Reisebüro Hagen Verwaltungs GmbH",
- "hella good e.K. Inh. Hella Kocks",
- "Henkel Beteiligungsgesellschaft mbH",
- "Henkel GmbH & Co KG",
- "Henkel & Jung Transport Recycling GmbH",
- "Henkel-Loctite-KID GmbH",
- "Henkel & Reiß Elektro- und Kältetechnik GmbH",
- "Henkel Rohrverformungstechnik GmbH",
- "GELSENWASSER 10. Beteiligungs-GmbH",
- "GELSENWASSER AG",
- "GELSENWASSER Digital GmbH",
- "GRAMMER Solar GmbH",
- "GRAMM Holding UG (haftungsbeschränkt)",
- "Hella Holding International GmbH",
- "Henkel Bodenbeläge GmbH",
- "Henkel Elektromaschinenbau GmbH",
- "Henkel Gasarmaturen GmbH",
- "Henkel & Gerlach Rügen Elektro-Handel GmbH & Co. Kommanditgesellschaft",
- "Henkel + Henkel GmbH & Co. KG",
- "Henkel Modellbau GmbH",
- "Henkel Transporte GmbH",
- "Henkel und Gärtner GmbH",
- "Henkel-Vision Gesellschaft für Creatives Marketing mbH, Darmstadt",
- "KSB Financial Consulting UG (haftungsbeschränkt)",
- "GEHE Immobilien Verwaltungs-GmbH",
- "Gemeindewerke Schermbeck Verwaltungsgesellschaft mbH",
- "Gerlach Zolldienste GmbH",
- "GIP Holding GmbH",
- "GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG",
- "Hamburg-Amerika Linie G.m.b.H.",
- "Hella Kelling",
- "Hella Seifen Hildegard Schipporeit Großhandel e.K.",
- "Hella Vermögensverwaltungs GmbH & Co. KG",
- "Henkel IP & Holding Verwaltungs GmbH",
- "henkel-TK GmbH",
- "Henkel-Vertrieb, Manfred J. Henkel",
- "GEA Group Holding GmbH",
- "GELSENWASSER 1. Beteiligungs-GmbH",
- "GELSENWASSER Projektgesellschaft mbH",
- "Gerhard Bechthold GmbH",
- "Grainli GmbH & Co. KG",
- "Gramm Immo GmbH & Co. KG",
- "Gramm technical GmbH",
- "Gram techno GmbH",
- "GSR Ventiltechnik GmbH & Co. KG",
- "Hapag-Lloyd Damietta GmbH",
- "Infineon Technologies Vermögensverwaltungsgesellschaft mbH",
- "GWN Gemeinnützige Wohnungsgesellschaft Nordwestdeutschland GmbH",
- "Hans Rüssel Buchhandlung Inh. Benedikt Rüssel",
- "\"Hebbel-Apotheke\" Hella Behm e.Kfr.",
- "Hella Fahrzeugkomponenten GmbH",
- "Hellma Gastronomie-Service GmbH",
- "Henkel Bedachungen GmbH",
- "Henkel Dach und Wand GmbH",
- "Henkel & Gerlach GmbH & Co.",
- "Henkel + Henkel Verwaltungs GmbH",
- "Henkel IP & Holding GmbH",
- "henkel's GmbH & Co. KG",
- "GEA Refrigeration Technologies GmbH",
- "Germanwings GmbH",
- "Gerresheim Verwaltungs-GmbH",
- "GGR Wohnparks Nord Leipziger Tor GmbH",
- "GRAMMER Immobilien Projektentwicklung GmbH",
- "LEONI Kabelsysteme GmbH",
- "Haragon VV GmbH",
- "HARTMANN Beteiligungen GmbH",
- "Hartmann GmbH",
- "HAUFF-TECHNIK GmbH & Co. KG",
- "Henkel-Beteiligungs-GmbH",
- "Henkel & Gerlach Rügen Elektro-Handel GmbH",
- "Henkel Karosseriebau-Fachbetrieb GmbH",
- "HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG",
- "imeco GmbH & Co. KG",
- "Immobilienverwaltung AB GmbH",
- "Infineon Technologies Dresden Verwaltungs GmbH",
- "Infineon Technologies Holding GmbH",
- "jw-marhoffer GmbH",
- "K a r l O s t e r GmbH",
- "K.E.S. Isoliertechnik GmbH",
- "K.L.E.S.C.H. Hausdienste GmbH",
- "Krankenhaus Service-Westmecklenburg GmbH",
- "KSB Erneuerbare Energien Eins GmbH & Co. KG",
- "KSB INTAX v. Bismarck Rechtsanwälte Wirtschaftsprüfer Steuerberater PartGmbB",
- "IPETRONIK GmbH & Co. KG",
- "KSB International Trading GmbH",
- "KSB Projektgesellschaft II UG (haftungsbeschränkt)",
- "KSB Stahlbau Berlin GmbH",
- "K & S Citystore OHG",
- "K & S GmbH Projektmanagement",
- "K.S. Immobilien GmbH",
- "K.S. Schnitzler GmbH alles fürs Büro",
- "K U B U S GmbH Planen & Bauen",
- "KUKA Aktiengesellschaft",
- "Köster & Co. GmbH",
- "LEG Immobilien SE",
- "Leibniz-Service GmbH",
- "LL Plant Engineering AG",
- "HOCHTIEF Engineering GmbH",
- "HOCHTIEF Insurance Broking and Risk Management Solutions GmbH",
- "HOCHTIEF Offshore Development Fünf GmbH",
- "HOCHTIEF Solutions 3. Beteiligungs GmbH",
- "Hoch- und Tiefbau Kishk GmbH",
- "Holz- und Baustoffhandlung Hella Ostheim Inh. Volker Ostheim e. K.",
- "IEF - Werner GmbH",
- "INDUS Epsilon GmbH & Co. KG",
- "Infineon Technologies 2. Vermögensverwaltungsgesellschaft mbH",
- "Infineon Technologies Bipolar Verwaltungs GmbH",
- "Infineon Technologies Dresden GmbH & Co. KG",
- "Infineon Technologies Gamma GmbH",
- "internetstores GmbH",
- "IONOS Holding SE",
- "KOB GmbH",
- "KS ATAG Beteiligungsgesellschaft m.b.H.",
- "KSB Erneuerbare Energien Drei GmbH & Co. KG",
- "KSB Haus GmbH",
- "KSB - Menü GmbH",
- "KSB Solarfeld Tellig Zwei GmbH & Co. KG",
- "KSB Wohnbau GmbH & Co. KG",
- "K&S Mechatronik GmbH",
- "K.S.R. Euro Handel & Logistik, Nachf. Octavio da Conceicao Ribeiro e.K.",
- "K + S Stahl- & Behälterbau GmbH",
- "K & S - Systemhaus GmbH",
- "K+S Versicherungsvermittlungs GmbH",
- "Kuka Bau GmbH",
- "KUKA Deutschland GmbH",
- "IONOS Service GmbH",
- "Karagon VV GmbH",
- "Kernkraftwerke Isar Verwaltungs GmbH",
- "KUKA Unterstützungskasse GmbH",
- "Lackwerkstatt Eschweiler KSB GmbH",
- "LANXESS Trademark GmbH & Co. KG",
- "LEG Rheinland Köln GmbH",
- "Lesezirkel Aus Aller Welt Telse Moeller e.K.",
- "LODUR Energieanlagen GmbH",
- "Lufthansa Asset Management Leasing GmbH",
- "HOCHTIEF Labore Kassel GmbH",
- "HOCHTIEF PPP 1. Holding GmbH & Co. KG",
- "HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH",
- "HOCHTIEF PP Südosthessen Vermietungs GmbH",
- "HY Beteiligungs GmbH",
- "IAB Ionenaustauscher GmbH Bitterfeld",
- "Infineon Technologies Mantel 29 GmbH",
- "K & S Personalleasing GmbH",
- "K H S Autoteile GmbH",
- "Kino im Schloßhof GmbH",
- "K. Meyer R.M.S. GmbH",
- "K.M.S. Karin Schilling",
- "Knorr-Bremse Systeme für Schienenfahrzeuge Ibero Holding GmbH",
- "KOB Medical Devices (Deutschland) GmbH",
- "Kramer-Werke GmbH",
- "KSB Holding GmbH",
- "KSB Immobilien GmbH & Co. KG",
- "KSB Kies- und Sandwerke Boddin GmbH",
- "KS Grundstücksverwaltung GmbH & Co. KG",
- "K & S Hagedorn GmbH",
- "K. & S. Handels-GmbH",
- "K+S Hotel GmbH",
- "K & S New Fustex GmbH",
- "K.S. Verblend GmbH",
- "K & S Zahntechnik GmbH",
- "K und S Gerüstbaugesellschaft mbH",
- "K u. S Autohandel GmbH",
- "LEG Niedersachsen Süd GmbH",
- "Linde Material Handling Rental Services GmbH",
- "HOCHTIEF Offshore Crewing GmbH",
- "Peiseler GmbH & Co. KG",
- "HOCHTIEF PPP Operations GmbH",
- "HOCHTIEF PPP Schulpartner Braunschweig GmbH",
- "HOCHTIEF PP Südosthessen Bewirtschaftungs GmbH",
- "HUGO BOSS Internationale Beteiligungs-GmbH",
- "Hüttensand Salzgitter Verwaltungs GmbH",
- "IHO Management GmbH",
- "IHO Verwaltungs GmbH",
- "Infineon Technologies Campeon Verwaltungsgesellschaft mbH",
- "j-fiber GmbH",
- "K.C.S Brandschutz GmbH",
- "Knorr-Bremse Aktiengesellschaft",
- "K O M O S, Ing. Ernst August Müller, VDI, Maschinenkonstruktionen - Vermessungstechnik",
- "K+S Aktiengesellschaft",
- "K & S Bau GmbH",
- "KSB Beteiligungsgesellschaft mbH",
- "Optik Schäffler Walter Schäffler",
- "KSB Grundbesitz GmbH",
- "KSB Wind GmbH & Co. KG",
- "K & S Gesellschaft für Informatik mbH",
- "K+S GmbH Modell- und Formenbau",
- "KUKA Industries GmbH & Co. KG",
- "KUKA Real Estate Management GmbH",
- "Kurt Tweesmann GmbH",
- "LANXESS Performance Materials GmbH",
- "LEG Wohnen NRW GmbH",
- "Leoni June Consulting UG (haftungsbeschränkt)",
- "LSG South America GmbH",
- "Hitex GmbH",
- "HOCHTIEF BePo Hessen Bewirtschaftung GmbH",
- "HOCHTIEF Offshore Development Solutions GmbH",
- "Hornbach Baustoff Union GmbH",
- "Horst Henkel, Metallwaren, Suhl-Mäbendorf e.K.",
- "Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG",
- "Infineon Technologies Semiconductor GmbH",
- "Infrastrukturgesellschaft Plochingen Verwaltungs GmbH",
- "Jannis Beteiligungsgesellschaft mbH",
- "Johann Grammer",
- "j-plasma GmbH",
- "K + S Studios GmbH",
- "JS Financial Services GmbH",
- "Kaufhof Köln Hohe Straße GmbH",
- "K e i s e r Gesellschaft mit beschränkter Haftung",
- "Kiepe Electric GmbH",
- "Kneipp Werbe-Agentur u. Vertriebs-GmbH",
- "KSB Energie GmbH",
- "KSB INTAX Datenschutz GmbH",
- "KSB INTAX Projekt GmbH",
- "KSB Kita Sodenmatt Bremen GmbH",
- "KS Grundstücksverwaltung Beteiligungs-GmbH",
- "K.S. Logistic Verwaltungs GmbH",
- "KuKa Export-Import GmbH",
- "LANXESS Middle East GmbH",
- "LEG Neunte Grundstücksverwaltungs GmbH",
- "LEONI Cable Assemblies GmbH",
- "Leonie Kesseler Vermögensverwaltungs- GmbH & Co. KG",
- "Leoni GmbH & Co. KG",
- "Linde Material Handling GmbH",
- "LSY GmbH",
- "H. Heitz Furnierkantenwerk GmbH & Co. KG",
- "HOCHTIEF Labore Kassel Bewirtschaftungs GmbH",
- "HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH",
- "Hospitality Digital GmbH",
- "Infineon Technologies Memory Solutions Germany GmbH",
- "Johann Schäffler, Inh. Roland Schäffler e.K.",
- "KION GROUP AG",
- "Knorr-Bremse SteeringSystems GmbH",
- "K+S An-Instituts Verwaltungsgesellschaft mbH",
- "KSB Apartments GmbH",
- "KSB Architekten + Ingenieure GmbH",
- "KSMA Karl-Heinz Sitzler Maschinen- und Anlagenbau GmbH",
- "KUKA Bauelemente & Immobilien GmbH",
- "K.u.K.-´s Delphin Sport- und Schwimmschulen Betriebsgesellschaft mit beschränkter Haftung",
- "K.W.S.-Massivbau & Betreuungsgesellschaft mbH",
- "LANXESS Aktiengesellschaft",
- "LEONIE DMS DVB GmbH",
- "Leonie Isabel Appels Beteiligungs GmbH",
- "Leonie Lackmann-Wißkirchen GmbH",
- "LSG Lufthansa Service Europa/Afrika GmbH",
- "HOCHTIEF Solutions AG",
- "HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH",
- "HOCHTIEF ÖPP Projektgesellschaft mbH",
- "HTP Immo GmbH",
- "Infineon Technologies Delta GmbH",
- "Infineon Technologies Mantel 27 GmbH",
- "K+S Verbrauchermarkt GmbH u. Co. KG",
- "KUKA Real Estate GmbH & Co. KG",
- "Interconnector GmbH",
- "ISARIA Objekt Preußenstraße GmbH",
- "ITG GmbH Internationale Spedition und Logistik",
- "Kelvion Brazed PHE GmbH",
- "K.H.S. Leasing und Versicherungsvermittlungs GmbH",
- "KION Information Management Services GmbH",
- "Knorr-Bremse Beteiligungsgesellschaft mbH",
- "KSB Armaturen Verwaltungs- und Beteiligungs-GmbH",
- "KSB Automatenaufsteller GmbH",
- "KSB Beratungs UG (haftungsbeschränkt)",
- "KSB Consulting GmbH",
- "KSB Erneuerbare Energien Fünf GmbH & Co. KG",
- "K+S Beteiligungs GmbH",
- "KSB Klinikberatung GmbH",
- "KSB Projektentwicklungs GmbH",
- "KSB SE & Co. KGaA",
- "K & S Elektroservice Kirch & Stallmann GmbH",
- "K.S. Gourmet Partyservice und Catering e.K.",
- "KS Large Bore Pistons Germany GmbH",
- "K S M Biegetechnik GmbH",
- "LANXESS Trademark Management GmbH",
- "LBBW Immobilien Kommunalentwicklung GmbH",
- "H.J. Merck & Co. GmbH",
- "HOCHTIEF Aktiengesellschaft",
- "HOCHTIEF Americas GmbH",
- "HOCHTIEF Construction Management Middle East GmbH",
- "HOCHTIEF ViCon GmbH",
- "Hotel Metro oHG - Inhaber: Edith Richter und Frieda Richter",
- "hvs Verpflegungssysteme GmbH",
- "IDKOM AG",
- "IHO Holding GmbH & Co. KG",
- "IMD Natural Solutions GmbH",
- "IMPARK MAINOVA Hessische Parkhausbetriebe UG (haftungsbeschränkt) & Co. KG",
- "Infineon Technologies Mantel 26 AG",
- "INNO FRICTION GmbH",
- "In&Out Ventures GmbH",
- "Iragon VV GmbH",
- "MN Münsterland Netzgesellschaft mbH & Co. KG",
- "JeNaCell GmbH",
- "J. G. Merckens Meß- und Regelsysteme GmbH",
- "KION Warehouse Systems GmbH",
- "KSB GmbH Klügel Schwinn Beschläge",
- "KSB Kabel- & Signalbau GmbH",
- "KSB Projekt Gesellschaft III GmbH",
- "KSB Wasch- und Reinigungsmittel GmbH",
- "K & S Media GmbH",
- "K & S Systemboden GmbH",
- "LANXESS Organometallics GmbH",
- "Laragon VV GmbH",
- "Lavendel Apotheke Maren Guthold e.K.",
- "Leonie Grimberg Holding GmbH",
- "LEONI Kabel GmbH",
- "Linde Material Handling Rhein-Ruhr GmbH & Co. KG",
- "Litec-LLL GmbH",
- "Henkel Zweite Holding GmbH",
- "HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG",
- "HOCHTIEF PPP Verwaltungs GmbH",
- "Hubert Schäffler GmbH",
- "HUGO BOSS Beteiligungsgesellschaft mbH",
- "iLove GmbH",
- "IONOS SE",
- "Kaufhalle GmbH",
- "Kelvion Germany GmbH",
- "Kelvion Industriebeteiligungen GmbH",
- "Ketziner Beteiligungsgesellschaft mbH",
- "KION Financial Services GmbH",
- "Kneipp GmbH",
- "Knorr-Bremse Investment GmbH",
- "Kraftwerk Hattorf GmbH",
- "KSB Kreyenbrücker Servicegesellschaft \"BreeWater\" mbH",
- "K & S Fassaden Technik GmbH",
- "K.S.H. Elektroheizungsservice GmbH.",
- "K & S Systeme Tord Steinbock e.K.",
- "K.T.S. GmbH",
- "KUKA Assembly & Test GmbH",
- "KUKA ENTERTAINMENT GmbH",
- "Kunststoffbeschichtung Hochberg GmbH",
- "LBBW Immobilien Development GmbH",
- "LEG Achte Grundstücksverwaltungs GmbH",
- "LEG Niedersachsen GmbH",
- "LEG West Immobilien GmbH",
- "LEONI Kerpen GmbH",
- "LeoniSolution UG (haftungsbeschränkt)",
- "HINO & TRATON Global Procurement GmbH",
- "HOCHTIEF DCX GmbH",
- "LEG Wohnungsbau Rheinland GmbH",
- "HOCHTIEF Infrastructure GmbH",
- "HOCHTIEF PANDION Oettingenstraße GmbH & Co. KG",
- "HOCHTIEF PPP Lifecycle 1 GmbH",
- "HOCHTIEF PPP Solutions GmbH",
- "HOCHTIEF Trade Solutions GmbH",
- "HORNGROUP Holding GmbH & Co. KG",
- "Hugo Boss Stiftung gGmbH",
- "Hörsel-Apotheke Inhaber: Apothekerin Regina Gramm e.Kfr.",
- "IDKOM Networks GmbH",
- "Interlubes GmbH",
- "Jacob Bek Gesellschaft mit beschränkter Haftung",
- "K a r l B o s c h",
- "Kelvion PHE GmbH",
- "Leoni31 GmbH",
- "K & S EDV-Consulting GmbH",
- "K.I.S. Kronauer Industrieschilder GmbH",
- "K.L.E.S.S. Häusliche Alten- und Krankenpflege GmbH",
- "KMS Verwaltungsgesellschaft mbH",
- "KOCHWERK Catering GmbH",
- "K P S Konstruktions- & Planungs Service GmbH",
- "KSB Bauträger und Immobilien GmbH",
- "KSB European Investment AG",
- "KSB Krankentransport Service Berlin GmbH",
- "K + S - Blechbearbeitung GmbH",
- "KSB Project Invest GmbH",
- "KUKA home GmbH",
- "Kuka Zimmerei GmbH",
- "K ü s t e r m a n n G m b H .",
- "Lapp Gesellschaft mit beschränkter Haftung Kabelwerke",
- "LEG Objekt Krefeld-Bockum Verwaltung GmbH",
- "LEG Siebte Grundstücksverwaltungs GmbH",
- "LEONI HighTemp Solutions GmbH",
- "LSG Asia GmbH",
- "HOCHTIEF Asia Pacific GmbH",
- "HOCHTIEF Projektentwicklung GmbH",
- "Hotmobil Deutschland GmbH",
- "HUGO BOSS AG",
- "Ignaz Schäffler e.K.",
- "InterMetro Industries B.V. Zweigniederlassung Maisach",
- "Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG",
- "K - B - S Busreisen GmbH",
- "Kirchner Maschinenbau Inhaber Andreas Gramm e.K.",
- "K&K HR-Services GmbH",
- "Knorr-Bremse Systeme für Schienenfahrzeuge GmbH",
- "Krone Kälte + Klima Vertriebs-GmbH",
- "K & S Automobile GmbH",
- "K + S Basalyk GmbH",
- "KSB Energieinvest GmbH & Co. KG",
- "KSB INTAX TREUHAND GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft",
- "KSB INTAX Versicherungsschadenmanagement GmbH",
- "KSB KFZ Service Bochum UG ( haftungsbeschränkt )",
- "K & S Blitzschutztechnik GmbH",
- "K + S Gesellschaft für Kies und Sand mbH & Co. Kommanditgesellschaft",
- "K + S Immobilienmanagement GmbH",
- "K + S Kassensysteme GmbH",
- "K-S-M Rechtsanwälte Krekels & Partner",
- "K & S Service GmbH",
- "LBBW Immobilien Management GmbH",
- "LEONI AG",
- "Lufthansa AirPlus Servicekarten GmbH",
- "HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH",
- "HOCHTIEF Solarpartner GmbH",
- "HORNBACH Holding AG & Co. KGaA",
- "HUGO BOSS Dienstleistungs GmbH",
- "HUGO BOSS Vermögensverwaltung GmbH & Co. KG",
- "IMMO - LADEN GMBH",
- "INA-Holding Schaeffler GmbH & Co. KG",
- "Infineon Technologies 3. Vermögensverwaltungsgesellschaft mbH",
- "Inten GmbH",
- "Ionisos GmbH",
- "K n a u e r und R ö s c h GmbH Werkzeug- und Maschinenbau",
- "KSB Berliner Kanalsanierung GmbH",
- "KSB Beteiligungs- und Beratungsgesellschaft mbH",
- "KSB DU277 GmbH & Co. KG",
- "KSB GmbH & Co. KG",
- "KSB Harburg UG (haftungsbeschränkt)",
- "KSB-Klinik-Service-Betriebe GmbH",
- "KSB Projektgesellschaft I UG (haftungsbeschränkt)",
- "KSB Solarprojekte GmbH & Co. KG",
- "K. & S. Taxibetrieb GmbH",
- "KUKA Systems GmbH",
- "Kulturclub Metropol GmbH",
- "LEG Fünfte Grundstücksverwaltungs GmbH",
- "LEONI Carservice GmbH",
- "Leoni Werner UG (haftungsbeschränkt) & Co. KG",
- "LR Intralogistik GmbH",
- "Ludwig Henkel e.K.",
- "Lufthansa Asset Management GmbH",
- "HOCHTIEF DN Capital 1 GmbH",
- "Hildegard Gramm-Bräuer GmbH & Co. Vermögensverwaltungs KG",
- "HOCHTIEF Ladepartner GmbH",
- "HUGO BOSS Trade Mark Management GmbH & Co. KG",
- "HUGO BOSS Trade Mark Management Verwaltungs-GmbH",
- "IDEAL Automotive GmbH",
- "INDUS Holding Aktiengesellschaft",
- "Infineon Pension Trust Immobilien Holding GmbH",
- "INFOSCREEN GmbH",
- "ISOCHEM Holding GmbH",
- "Jettainer GmbH",
- "Josef Sartorius GmbH & Co. KG",
- "K. C. S. Eichner Baugesellschaft mbH & Co. KG",
- "Kelvion Machine Cooling Systems GmbH",
- "Kieback GmbH & Co. KG",
- "K.L.A.S. Dienstleistungs GmbH",
- "K.M.S. Doruk Computer Systeme OHG",
- "Kommanditgesellschaft Steindamm - Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung & Co.",
- "Kramer-Areal Verwaltungs GmbH",
- "KSB GmbH",
- "KSB Kontakt Schaltanlagen Bau GmbH",
- "KSB Kölner Service und Beratungs GmbH",
- "KSB Windfeld Parstein GmbH & Co. KG",
- "KSB Windfeld Süderland III GmbH & Co. KG",
- "K + S Ingenieurbüro für technische Gebäudeausrüstung GmbH",
- "K+S Minerals and Agriculture GmbH",
- "Kurt Engel Inh. Leonie Engel e.K.",
- "Königlich privilegierte Löwenapotheke e. K. Inh. Hella Behm",
- "Leger Immobilien GmbH",
- "LEG Projektgesellschaft 2 GmbH & Co. KG",
- "Litarion GmbH",
- "LMH Immobilien GmbH & Co. KG",
- "Hoch-Tief-Landschaftsbau Schöneck GmbH",
- "HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG",
- "HOCHTIEF Soziale Infrastruktur Europa GmbH",
- "Hüttensand Salzgitter GmbH & Co. KG",
- "IHO Beteiligungs GmbH",
- "Infineon Technologies AG",
- "Infineon Technologies Bipolar GmbH & Co. KG",
- "it4logistics GmbH",
- "KMS - Kretschmer-Bauplan GmbH",
- "KSB Service GmbH",
- "KSB Windfeld Brehna Zwei GmbH & Co. KG",
- "K&S Verwaltungsgesellschaft mbH",
- "K + S Wohnungsbau GmbH",
- "Leoni247 UG (haftungsbeschränkt)",
- "LEONI Bordnetz-Systeme GmbH",
- "l´tur GmbH",
- "Henkel Zwölfte Verwaltungsgesellschaft mbH",
- "Hesse Newman Immobilienmanagement GmbH",
- "HEV Hohenloher Energie Versorgung GmbH",
- "HOCHTIEF Bau und Betrieb GmbH",
- "HOCHTIEF BePo Hessen GmbH",
- "KSB Bau GmbH",
- "HOCHTIEF OBK Vermietungsgesellschaft mbH",
- "HOCHTIEF PANDION Oettingenstraße Verwaltungs-GmbH",
- "HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH",
- "HOCHTIEF PPP Transport Westeuropa GmbH",
- "HOCHTIEF Solutions Real Estate GmbH",
- "hte GmbH the high throughput experimentation company",
- "i Leoni GmbH",
- "Imtron GmbH",
- "Industriewerk Schaeffler INA-Ingenieurdienst-, Gesellschaft mit beschränkter Haftung.",
- "IONOS Group SE",
- "Jeans On Hans-Jürgen Pape e.K.",
- "Kfz-Wirtschaftsgesellschaft der BMW Vertragshändler mbH",
- "klarmobil GmbH",
- "KSB Abbruch UG (haftungsbeschränkt)",
- "KSB Energie AG",
- "KSB TransferNET UG (haftungsbeschränkt)",
- "KSB Vertriebsgesellschaft mbH & Co. KG",
- "KSB Windfeld Ost GmbH & Co. KG",
- "K + S Management GmbH",
- "KuKa Immobilien GmbH",
- "LEG JADE GmbH",
- "LEG Management GmbH",
- "LEG West VIII. GmbH",
- "LEONIE Verwaltungs GmbH",
- "LMH Immobilien Holding GmbH & Co.KG",
- "HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG",
- "inge GmbH",
- "Johannes Berg GmbH, Weinkellerei",
- "Knorr-Bremse Services GmbH",
- "KSB DU277 Verwaltungs GmbH",
- "KSB Energie Verwaltungs GmbH",
- "Leonie Mergen GmbH",
- "MVV Alpha drei GmbH",
- "KSB Klingler Schaumbeton GmbH",
- "KSB Management SE",
- "KSB Massivhaus GmbH",
- "KSB Planungsgesellschaft für Architektur und Landschaftsarchitektur mbH",
- "KSB Verwaltungs GmbH",
- "KS Gleitlager GmbH",
- "K + S Handelsgesellschaft für Klebstoffe und Spezialpapiere mbH",
- "K & S Industrieservice GmbH",
- "K & S KABELVERLEGUNG UND STRASSENBAU BETEILIGUNGS- GESELLSCHAFT mbH",
- "KS KOLBENSCHMIDT GmbH",
- "K + S Sauer Herrenmoden, Inhaber Markus Sauer e.K.",
- "LANXESS Global Business Services GmbH",
- "LBBW Immobilien Management Gewerbe GmbH",
- "LEG NRW GmbH",
- "LEONI Industry Holding GmbH",
- "LiftEquip GmbH Elevator Components",
- "LSG Lufthansa Service Holding AG",
- "Lufthansa Aviation Training Germany GmbH",
- "Lufthansa Group Digital Hangar GmbH",
- "Lufthansa Group Business Services GmbH",
- "Mainova Wind Onshore Verwaltungs GmbH",
- "Löwen-Apotheke Leonie Eulzer e.K.",
- "Lufthansa CityLine GmbH",
- "Lufthansa Technik Aktiengesellschaft",
- "Lufthansa Technik Immobilien- und Verwaltungsgesellschaft mbH",
- "LWS Plus GmbH",
- "Mainova WebHouse Management GmbH",
- "Merck 44. Allgemeine Beteiligungs-GmbH",
- "Merck Finck Privatbankiers Unterstützungskasse GmbH",
- "Mercedes-Benz Mobility Beteiligungsgesellschaft mbH",
- "Merck Foundation gGmbH",
- "Merck Holding GmbH",
- "MERCK Kommanditgesellschaft auf Aktien",
- "METRO Asia Investment GmbH",
- "Metro Hotel & Villa GmbH",
- "METRO LOGISTICS Germany GmbH",
- "Lufthansa Seeheim GmbH",
- "MAGRA Maile + Grammer GmbH",
- "Mainova Erneuerbare Energien Verwaltungs GmbH",
- "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG",
- "Mainova Windpark Niederhambach GmbH & Co. KG",
- "Medpro-Personal GmbH",
- "MAN Marken GmbH",
- "MCC Trading Deutschland GmbH",
- "Merck 20. Allgemeine Beteiligungs-GmbH",
- "MCC Trading International GmbH",
- "Merck Export GmbH",
- "MEG Marine Electronics Holding GmbH",
- "Merck Performance Materials GmbH",
- "Metro Hop Technik GmbH",
- "Merck 16. Allgemeine Beteiligungs-GmbH",
- "METRO Leasing GmbH",
- "Merck Performance Materials Holding GmbH",
- "MetroMedia UG (haftungsbeschränkt)",
- "METRO Dritte Verwaltungs GmbH",
- "metronom Eisenbahngesellschaft mbH",
- "METRO Markets GmbH",
- "Légère Hotel Messe Erfurt Immobilien Verwaltungs GmbH",
- "Mainova Erneuerbare Energien GmbH & Co. KG",
- "Mainova Windpark Siegbach GmbH & Co. KG",
- "MAN GHH Immobilien GmbH",
- "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG",
- "MAN Grundstücksgesellschaft mbH & Co. Epsilon KG",
- "MEDIA BROADCAST GmbH",
- "Merck 15. Allgemeine Beteiligungs-GmbH",
- "Mercedes-Benz Vermögens- und Beteiligungsgesellschaft mbH",
- "Merck 43. Allgemeine Beteiligungs-GmbH",
- "Merck 25. Allgemeine Beteiligungs-GmbH",
- "Metro Administration GmbH",
- "Merck 37. Allgemeine Beteiligungs-GmbH",
- "METRO Asset Management Services GmbH",
- "Merck 41. Allgemeine Beteiligungs-GmbH",
- "METRO CLOUD Provider GmbH",
- "Merck Family Foundation gGmbH",
- "Metro Grundbesitz- und Beteiligungs GmbH & Co. KG",
- "Merck Gernsheim Holding GmbH",
- "METRO Insurance Broker GmbH",
- "Merck Life Science KGaA",
- "METRO-Gastronomie-Gesellschaft mit beschränkter Haftung",
- "Lufthansa Job Services Norderstedt GmbH",
- "Lufthansa Industry Solutions AS GmbH",
- "Lufthansa Commercial Holding Gesellschaft mit beschränkter Haftung",
- "Lufthansa Technik Objekt- und Verwaltungsgesellschaft mbH",
- "Maragon VV GmbH",
- "LuK Unna GmbH & Co. KG",
- "Merck Healthcare KGaA",
- "Merck Patent Gesellschaft mit beschränkter Haftung",
- "Lufthansa Technik AERO Alzey GmbH",
- "Mainova Beteiligungsgesellschaft mbH",
- "Marien-Apotheke, Inhaberin Martina Unger e.K.",
- "Master Builders Solutions Deutschland GmbH",
- "McKesson Europe Holdings GmbH & Co. KGaA",
- "MDH Secundus GmbH",
- "ME digital GmbH",
- "Mercedes-Benz AG",
- "Merck 42. Allgemeine Beteiligungs-GmbH",
- "Merck 49. Allgemeine Beteiligungs-GmbH",
- "Merck LS RTU GmbH",
- "Merck Real Estate GmbH",
- "Merck Schuchardt OHG",
- "MetroPolis Grundstücks oHG",
- "METRO Achte Verwaltungs GmbH",
- "Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH",
- "Mainova Erneuerbare Energien Management GmbH",
- "Massivhauspark Kaarst Verwaltung GmbH",
- "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG",
- "Merck 26. Allgemeine Beteiligungs-GmbH",
- "Merck 29. Allgemeine Beteiligungs-GmbH",
- "Merck 38. Allgemeine Beteiligungs-GmbH",
- "Merck Wohnungs- und Grundstücksverwaltungsgesellschaft mbH",
- "METRO Cash & Carry China Holding GmbH",
- "Metro Grundbesitz-, Beteiligungs- und Verwaltungs GmbH",
- "metrologx GmbH",
- "Metro - Oberflächentechnik GmbH",
- "Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG",
- "Mainova PV_Park 1GmbH & Co. KG",
- "MATIS Immobilien OHG",
- "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG",
- "Merck 45. Allgemeine Beteiligungs-GmbH",
- "Merck Chemicals GmbH",
- "METRO Campus Services GmbH",
- "METRO Dienstleistungs-Holding GmbH",
- "Léonie Corentin GmbH",
- "Lufthansa Technik Logistik Services GmbH",
- "Lünener Wohnungs-und Siedlungsgesellschaft mit beschränkter Haftung",
- "MAN Truck & Bus Deutschland GmbH",
- "Media Broadcast TV Services GmbH",
- "Merck 12. Allgemeine Beteiligungs-GmbH",
- "Merck Financial Trading GmbH",
- "Merck Healthcare Holding GmbH",
- "Mesutronic Gerätebau GmbH",
- "METRO Abbruch & Baumanagement GmbH",
- "METRO Advertising GmbH",
- "Metrocab Taxi- und Handels-GmbH",
- "METRO Erste Erwerbsgesellschaft mbH",
- "METRO Neunte Verwaltungs GmbH",
- "Metro-Pol - Dienstleistungen GmbH & Co. KG",
- "McKesson Europe Services GmbH",
- "Media-Direktservice GmbH",
- "MEMBERS-ON-LINE e.K.",
- "Mainova Windpark Kloppenheim GmbH & Co. KG",
- "Maschinenfabrik Berner GmbH & Co. KG",
- "merckens development support GmbH",
- "Merck Finck, a Quintet Private Bank (Europe) S.A. branch",
- "Merck International GmbH",
- "Merck Site Management GmbH",
- "Merck Vierte Allgemeine Beteiligungsgesellschaft mbH",
- "METRO & METRO Schuhe international GmbH",
- "Lufthansa Industry Solutions BS GmbH",
- "Lufthansa Industry Solutions GmbH & Co. KG",
- "Mainova PV_Park 3 GmbH & Co. KG",
- "Markus Schäffler Bauunternehmung - Baustoffe e.K.",
- "MBS Oldenburger Grundbesitz GmbH",
- "Medi Metropole GmbH",
- "Menacher u. Schäffler GmbH & Co. KG",
- "Merck 21. Allgemeine Beteiligungs-GmbH",
- "Merck Financial Services GmbH",
- "MAN Brand GmbH & Co. KG",
- "METRO Deutschland Consulting GmbH",
- "METRO Gastro Equipment Holding GmbH",
- "METRO Immobilien Gesellschaft mbH & Co. KG",
- "Lufthansa Aviation Training GmbH",
- "Mainova ServiceDienste Gesellschaft mbH",
- "Mainova Windpark Hohenlohe GmbH & Co. KG",
- "MAN Truck & Bus SE",
- "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG",
- "MEC METRO-ECE Centermanagement Verwaltungs GmbH",
- "Merck 13. Allgemeine Beteiligungs-GmbH",
- "Merck Display Trading GmbH",
- "Merck Electronics KGaA",
- "Merck GmbH",
- "Merck Internationale Beteiligungen GmbH",
- "Merk UG (haftungsbeschränkt)",
- "METRO-BAU UG (haftungsbeschränkt)",
- "METRO Financial Services GmbH",
- "Lufthansa Industry Solutions Verwaltungs GmbH",
- "Magdalena Schäffler GmbH",
- "Lufthansa Cargo Aktiengesellschaft",
- "Lufthansa Technik Logistik GmbH",
- "MA3 Schäffler Haus GmbH & Co. KG",
- "Mainova Windpark Kaisten GmbH & Co. KG",
- "M. Braun Inertgas-Systeme GmbH",
- "Merck 27. Allgemeine Beteiligungs-GmbH",
- "Merck Surface Solutions GmbH",
- "Merk Verwaltungs UG (haftungsbeschränkt)",
- "Metro Administration GmbH & Co. Grundbesitz KG",
- "METRO Digital GmbH",
- "Metro Großhandelsgesellschaft mbH",
- "Metro Models GmbH",
- "Lufthansa Process Management GmbH",
- "Lufthansa Systems GmbH & Co. KG",
- "Menacher u. Schäffler Verwaltungs-GmbH",
- "Merck 40. Allgemeine Beteiligungs-GmbH",
- "MATINA GmbH",
- "med!go-on e.K.",
- "METRO AG",
- "METRO Hospitality Digital Holding GmbH",
- "Merck 24. Allgemeine Beteiligungs-GmbH",
- "Merck 28. Allgemeine Beteiligungs-GmbH",
- "Merck 39. Allgemeine Beteiligungs-GmbH",
- "Merck 47. Allgemeine Beteiligungs-GmbH",
- "Merck Healthcare Germany GmbH",
- "Merck Life Science Holding GmbH",
- "MERK Wohnbau GmbH",
- "METRO Cash & Carry International GmbH",
- "METRO Deutschland GmbH",
- "METRO FSD Holding GmbH",
- "METRO Fulfillment GmbH",
- "METRO INTERNATIONAL SUPPLY GmbH",
- "Mainova Aktiengesellschaft",
- "Mainova WebHouse GmbH & Co. KG",
- "Mainova Windpark Remlingen GmbH & Co. KG",
- "Max Lobenhofer GmbH",
- "Merck 46. Allgemeine Beteiligungs-GmbH",
- "Merck 48. Allgemeine Beteiligungs-GmbH",
- "Merck Consumer Health Holding Germany GmbH",
- "Metroer Aluminium Glass Systems GmbH",
- "METRO Fünfte Verwaltungs GmbH",
- "METRO Groß- und Lebensmitteleinzelhandel Holding GmbH",
- "METRO Immobilien Verwaltungs GmbH",
- "M. Grammer GmbH & Co. KG",
- "Metro-Pol Verwaltungs GmbH",
- "Michael Schäffler GmbH",
- "metropress presseagentur gesellschaft mit beschränkter haftung",
- "MEWESTA Hydraulik GmbH & Co.KG",
- "METRO Re AG",
- "MIGUA Fugensysteme GmbH",
- "Modellbau Henkel Gesellschaft mit beschränkter Haftung",
- "MS Motorservice International GmbH",
- "Multi-Center Warenvertriebs GmbH",
- "MVV Grüne Wärme GmbH",
- "Nordex Windpark Beteiligung GmbH",
- "NWind Windparkbetriebsgesellschaft Oedelum mbH",
- "OBUK Haustürfüllungen GmbH & Co. KG",
- "PHOENIX Holdings Verwaltungs GmbH",
- "MS Motorservice Deutschland GmbH",
- "MVV EnergySolutions GmbH",
- "Netzgesellschaft Elz-Neckar Verwaltungs GmbH",
- "Nordex Energy SE & Co. KG",
- "Nordex Germany GmbH",
- "Paul Hartmann & Co. Gesellschaft mit beschränkter Haftung",
- "PUMA Blue Sea GmbH",
- "Regeneratives Land GmbH",
- "Rheinmetall Dermalog SensorTec GmbH",
- "MTU Maintenance Berlin-Brandenburg GmbH",
- "MWFS Zwischenholding Management GmbH",
- "NatürlichSonne Trogen Verwaltungs GmbH",
- "Netze Hechingen Verwaltungs GmbH",
- "NORDEX Windpark Hochfeld GmbH & Co. KG.",
- "nugg.ad GmbH",
- "Peter Frey GmbH",
- "Petit RUNGIS express GmbH",
- "Pierburg GmbH",
- "PONTUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt BMW München KG",
- "Projektentwicklungs-GmbH Friesenheimer Insel",
- "Rhein-Main Wohnen GmbH",
- "Rheinmetall Eastern Markets GmbH",
- "Rheinmetall Immobilien St. Leon-Rot GmbH",
- "Rheinmetall Technical Assistance GmbH",
- "mg capital gmbh",
- "Rhein-Pfalz Wohnen GmbH",
- "METRO PROPERTIES Holding GmbH",
- "MIP METRO Holding Management GmbH",
- "MOLSTANDA Vermietungsgesellschaft mbH",
- "MVV Enamic Korbach GmbH",
- "MVV Umwelt Ressourcen GmbH",
- "MVV Windenergie GmbH",
- "NA GrammE E GmbH",
- "Neue Apotheke und Apotheke am Rathaus Inhaber Markus Bell e. K.",
- "Nisterhammer Maschinenbau GmbH & Co. KG",
- "Nordex Beteiligungen GmbH",
- "Nordex Forum II GmbH & Co. KG",
- "Nordex Forum II Verwaltungs GmbH",
- "OTC On-The-Chin e. K.",
- "ProTel Gesellschaft für Kommunikation mbH",
- "PuMA Pflege- und Management Akademie UG (haftungsbeschränkt)",
- "PuMa Verwaltungs GmbH",
- "renerco plan consult GmbH",
- "METRO Zwölfte Verwaltungs GmbH",
- "MVV Alpha fünfzehn GmbH",
- "mg Altersversorgung GmbH",
- "Minebea Intec Aachen Verwaltungs-GmbH",
- "Minebea Intec Bovenden GmbH & Co. KG",
- "MIP METRO Group Intellectual Property GmbH & Co. KG",
- "MSE Mobile Schlammentwässerungs GmbH",
- "Netzeigentumsgesellschaft Rheinstetten Verwaltungs-GmbH",
- "Nordex SE",
- "OSRAM Licht AG",
- "PCI Augsburg GmbH",
- "Pellog GmbH",
- "Preussag Beteiligungsverwaltungs GmbH IX",
- "PRIMA Wohnbauten Privatisierungs-Management GmbH",
- "Puma Musikverlag GmbH",
- "PUMA.sh GmbH",
- "Metro SB-Großmärkte GmbH & Co. Kommanditgesellschaft",
- "Pumax UG (haftungsbeschränkt)",
- "MobilCom Multimedia GmbH",
- "PuMa Zander GmbH & Co. KG",
- "MS \"HELLA\" Schiffahrtsgesellschaft mbH & Co. KG",
- "REMKO GmbH & Co. KG Klima- und Wärmetechnik",
- "Netzgesellschaft Vaihingen Verwaltungs-GmbH",
- "Rheinmetall Immobilien Hamburg GmbH",
- "NWind GmbH",
- "NWS Finanzierung GmbH",
- "OSRAM Beteiligungsverwaltung GmbH",
- "PUMA Vermögensverwaltungs GmbH",
- "Raiffeisen Waren GmbH Hallertau-Jura",
- "Rheinmetall Project Solutions GmbH",
- "MVV Enamic GmbH",
- "MVV Umwelt GmbH",
- "Neckarwerke Stuttgart GmbH",
- "Netze BW Wasser GmbH",
- "Nordex Food Deutschland GmbH",
- "Nordex Manufacturing GmbH",
- "OSRAM GmbH",
- "Pierburg Pump Technology GmbH",
- "Plankenstein 8 GmbH & Co. KG",
- "PUMA International Trading GmbH",
- "Raguse Gesellschaft für medizinische Produkte mbH",
- "RCL TUI Cruises German Verwaltungs GmbH",
- "Regalit GmbH",
- "Reinhard, Grammes & Partner mbB Wirtschaftsprüfer, Steuerberater",
- "Retail in Motion GmbH",
- "Rheinmetall Immobilien Neckarsulm GmbH",
- "Rheinmetall MAN Military Vehicles GmbH",
- "METRO PROPERTIES GmbH & Co. KG",
- "METRO Wholesale Real Estate GmbH",
- "MGL METRO Group Logistics Warehousing Beteiligungs GmbH",
- "Minebea Intec Aachen GmbH & Co. KG",
- "MSN 1359 GmbH",
- "Mönch-Kunststofftechnik Gesellschaft mit beschränkter Haftung",
- "Netzgesellschaft Schwetzingen Verwaltungs GmbH",
- "Nordex-Glas oHG",
- "Nordex Windpark Verwaltung GmbH",
- "OSRAM Beteiligungen GmbH",
- "PLIXXENT Verwaltungs GmbH",
- "Plusnet Infrastruktur GmbH & Co. KG",
- "PUMA Europe GmbH",
- "PUMA Mostro GmbH",
- "PUMA Sprint GmbH",
- "RBS wave GmbH",
- "Reha - Service Loose GmbH",
- "Retail Media Group GmbH",
- "Rheinmetall Automotive AG",
- "Rheinweg Grundstücksgesellschaft mbH",
- "M.O.D. Media On Demand Hans Kleiner e.Kfm.",
- "MVV Energie AG",
- "MVV Netze GmbH",
- "Netze Pforzheim-Region Verwaltungs GmbH",
- "MMS Retail International GmbH",
- "Nordex Employee Holding GmbH",
- "novotegra GmbH",
- "OSRAM OLED GmbH",
- "Plusnet GmbH",
- "Ravensberger Heimstättengesellschaft mit beschränkter Haftung",
- "Reisecenter Reinwald e.K.",
- "Rhein Lippe Wohnen Gesellschaft mit beschränkter Haftung",
- "Rheinmetall Aktiengesellschaft",
- "Rheinmetall Aviation Services GmbH",
- "Rheinmetall Immobilien Kassel GmbH & Co. KG",
- "metropress presseagentur GmbH & Co. KG - Agentur für Kommunikation",
- "METRO Retail Real Estate GmbH",
- "MTU Aero Engines AG",
- "Möbelhaus W. Starke Inh. Hella Lorenz e.K.",
- "Norbert Henkel e.K.",
- "Nordex Grundstücksverwaltung GmbH",
- "On Board Courier Land-Wasser-Luft Volker Rauh e.K.",
- "ON Grundstücksverwaltung e.K.",
- "OSD SCHÄFER Verwaltungs-GmbH",
- "Otto Finanzplus GmbH Versicherungsvermittlung",
- "Peiseler Holding GmbH",
- "Perlon-Monofil GmbH",
- "Privatkinderheim Hella Doll GmbH",
- "Progroup Power 1 GmbH",
- "puma Architekten Pundt & Mardersteig, Partnerschaftsgesellschaft mbB",
- "PUMA GmbH IP Solingen",
- "Reisebüro Bönisch GmbH",
- "Rheinmetall Immobilien Hamburg Friedensallee GmbH",
- "Rheinmetall Maschinenbau GmbH",
- "Rheinmetall Technical Publications GmbH",
- "Rheinmetall Technology Center GmbH",
- "METRO Sechste Verwaltungs GmbH",
- "MFI Asset Management GmbH",
- "Miles & More GmbH",
- "Netzgesellschaft Leinfelden-Echterdingen GmbH",
- "NORDEX e.K.",
- "Paul Gerd Hartmann Zimmerei, Holzbau und Holzhandel GmbH",
- "planetroll GmbH & Co. KG",
- "PLIXXENT GmbH & Co. KG",
- "Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG",
- "Pu. Ma Kulturbetriebe GmbH",
- "Reederei Deymann GmbH & Co. KG TMS Leonie Deymann",
- "Rheinmetall Immobilien Hafenmole GmbH",
- "Rheinmetall Verwaltungsgesellschaft mbH.",
- "Rheinmetall Waffe Munition GmbH",
- "Minebea Intec Bovenden Verwaltungs-GmbH",
- "METRO Sourcing GmbH",
- "MOTEON GmbH",
- "Muhrbeck-Apotheke Hella Riebes e.Kfr., Inhaber Claudia Semlow",
- "MVV Umwelt Asset GmbH",
- "neogramm GmbH & Co. KG",
- "Nordex International GmbH",
- "Ofa Bamberg GmbH",
- "PAB Pumpen- und Armaturen- Beteiligungsgesellschaft mit beschränkter Haftung",
- "MVV Alpha zwei GmbH",
- "NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG",
- "NORDEX Handel GmbH",
- "PAUL HARTMANN AG",
- "Paul Hartmann AG & Co. Logistikzentrum Süd oHG",
- "Pro Gramma Informationssysteme GmbH",
- "Projekt Aichach S7 GmbH & Co. KG",
- "ProVerMa GmbH",
- "PROVIS Steuerungstechnik GmbH",
- "PUMA SE",
- "PUMA Spielautomaten GmbH",
- "Rheinmetall Brandt GmbH",
- "Rheinmetall Immobilien VEGA GmbH & Co. KG",
- "Rheinmetall Landsysteme GmbH",
- "METRO PROPERTIES Management GmbH",
- "METRO Siebte Verwaltungs GmbH",
- "MGC METRO Group Clearing GmbH",
- "Minebea Intec GmbH",
- "MINI-KIT - Merchandising GmbH",
- "MIP METRO Group Intellectual Property Management GmbH",
- "MIRA GmbH",
- "NWS REG Beteiligungsgesellschaft mbH",
- "Photo-Drogerie-Hella Peter Hellendahl Farbengroßhandel Inh. Käthe Hellendahl",
- "PumaXX GmbH",
- "recucare GmbH",
- "recusana GmbH",
- "RE.source White Puma GmbH & Co. KG",
- "Rheinmetall Berlin Verwaltungsgesellschaft mbH",
- "Rheinmetall IT Solutions GmbH",
- "Rheinmetall PolyCharge GmbH",
- "Rheinmetall Soldier Electronics GmbH",
- "metrotek GmbH",
- "MGL METRO Group Logistics GmbH",
- "METRO Zehnte Verwaltungs GmbH",
- "MTU Maintenance Hannover GmbH",
- "MNV Münsterland Netz-Verwaltungsgesellschaft mbH",
- "MVV Industriepark Gersthofen GmbH",
- "Mönnich GmbH",
- "MVZ DaVita Salzgitter-Seesen GmbH",
- "NetCom BW GmbH",
- "N & NF Trading GmbH",
- "Netzgesellschaft Besigheim Verwaltungs GmbH",
- "Nordex Bau e.K.",
- "OSRAM SL GmbH",
- "On Point Agency e.K.",
- "Portfolio EDL GmbH",
- "OnTrack Inh. Thomas Johanterwage e. K.",
- "Prinz 5 GmbH",
- "Paul Hartmann Spenglerei und Installations GmbH & Co. KG",
- "puma.bär GmbH",
- "Reha und Rollstuhl Handels GmbH",
- "\"PETER G. OHG,\" - Men & Women",
- "PROTEXiON e.K.",
- "Rheinmetall Protection Systems GmbH",
- "Rheinmetall Insurance Services GmbH",
- "PUMA Trading GmbH",
- "Qimonda Dresden GmbH & Co. oHG",
- "RCL TUI Cruises German Holding GmbH & Co. KG",
- "r.e Bioenergie Betriebs GmbH & Co. Zehnte Biogas KG",
- "Rheinmetall Electronics GmbH",
- "Rheinmetall Financial Services GmbH",
- "Rheinmetall Immobilien Flensburg GmbH & Co. KG",
- "Rheinmetall Immobilien GmbH",
- "Rheinmetall Immobilien Neuss GmbH",
- "Rheinmetall Industrietechnik GmbH",
- "Rheinmetall Invent GmbH",
- "METRO Vierte Verwaltungs GmbH",
- "MORCAR Grundstücksgesellschaft mbH & Co. oHG",
- "MS \"Leonie\" Jens u. Waller GmbH & Co. KG",
- "MVV RHE GmbH",
- "MWFS Zwischenholding GmbH & Co. KG",
- "neogramm Verwaltungsgesellschaft mbH",
- "Neunte LXS GmbH",
- "OPUS Personaldienstleistungen Gesellschaft mit beschränkter Haftung",
- "OSPT IP Pool GmbH",
- "Portokali Property Development III SE & Co. KG",
- "Puma-Werk Lauterjung & Sohn Beteiligungs-GmbH",
- "Puna UG (haftungsbeschränkt)",
- "REWE-Markt Ströer OHG",
- "seo2b GmbH",
- "Rhein-Mosel Wohnen GmbH",
- "Rundschau Verlagsgesellschaft mbH",
- "RHZ Handwerks-Zentrum GmbH",
- "Salzgitter Anlagenbau GmbH",
- "Salzgitter Hydroforming GmbH & Co KG",
- "Sartorius Aktiengesellschaft",
- "Sartorius Stedim Cellca GmbH",
- "S.B.D. - Seniorenberatung Deutschland e.K.",
- "Schaeffler-Areal 2. Liegenschaften GmbH",
- "Schaeffler Invest GmbH",
- "Schaeffler Verwaltungsholding Drei GmbH",
- "SCHERDEL Wiesauplast Deutschland GmbH & Co. KG",
- "SCHERDEL Wiesauplast GmbH & Co. KG",
- "Schäffler GmbH, Maler- und Lackierermeisterbetrieb",
- "Senioren-Wohnpark Meppen/Nödike Ströer & Gorsler KG",
- "Siemens Finance & Leasing GmbH",
- "Siemes GmbH & Co. KG",
- "Siemens Healthineers Beteiligungen Verwaltungs-GmbH",
- "Salzgitter Digital Solutions GmbH",
- "Salzgitter Mannesmann Stahlhandel Gesellschaft mit beschränkter Haftung",
- "Schaeffler IDAM Beteiligungs GmbH",
- "Schaeffler Verwaltungsholding Eins GmbH",
- "Schaeffler Verwaltungsholding Vier GmbH",
- "Schradenbiogas GmbH & Co. KG",
- "s e h b l i c k Augenoptiker-Meister Friedemann Sorg e.K.",
- "Siedlung Niederrhein Gesellschaft mit beschränkter Haftung",
- "Siemens Healthcare Diagnostics Products GmbH",
- "Siemer Jachtservice Hunte-Ems GmbH",
- "Siemer Vermögensverwaltung GmbH & Co. KG",
- "Richard Henkel GmbH",
- "Salzgitter Eurologistik GmbH",
- "Sartorius-Herbst Beteiligungen II GmbH",
- "Schaeffler-Areal 1. Liegenschaften GmbH",
- "Scheffler Management GmbH",
- "Schäffler Bau- und Möbelschreinerei GmbH",
- "Schäffler und Lüneborg Partnerschaft, Krankengymnast, Physiotherapeut",
- "RMW Projekt GmbH",
- "RRS - MITCOS Rheinmetall Rohde&Schwarz Military IT and Communications Solutions GmbH",
- "Ringeltaube Airport Markt GmbH",
- "Rolko Kohlgrüber GmbH",
- "Rolls-Royce Motor Cars GmbH",
- "SALTIGO GmbH",
- "RWE Wind Onshore & PV Deutschland GmbH",
- "Salzgitter Automotive Engineering Immobilien Verwaltungsgesellschaft mit beschränkter Haftung",
- "Salzgitter Güterverwaltung Gesellschaft mit beschränkter Haftung",
- "S.A.M. Stephan Albert Magnetic Products e.K.",
- "Sartorius Immobilien UG (haftungsbeschränkt) & Co KG",
- "SBB Solar GmbH",
- "SCANIA Real Estate Deutschland GmbH",
- "Schaeffler Aerospace Germany GmbH & Co. KG",
- "Schaeffler Bühl Auslandsholding GmbH",
- "Schaeffler Europa Logistik GmbH",
- "S. Freiburg e. K. - WS Kreatives Holz, Inh. Wolfgang Scheffer",
- "Schaeffler Raytech Verwaltungs GmbH",
- "Schaper Grundbesitz-Verwaltungsgesellschaft mbH",
- "Schonheim GmbH",
- "Siemens Energy Power Control GmbH",
- "Siemer Beteiligungsgesellschaft mbH",
- "Siemers-Haus KG (GmbH & Co.)",
- "Siemer Verwaltung GmbH",
- "Siemes Beteiligungs-GmbH",
- "Robert Röhlinger GmbH",
- "Salzgitter Kesselservice GmbH",
- "Salzgitter Klöckner-Werke GmbH",
- "Salzgitter Mannesmann Forschung GmbH",
- "Salzgitter Mannesmann Grobblech GmbH",
- "SANIMED GmbH",
- "Sartorius-Herbst Beteiligungen I GmbH",
- "Sartorius KG",
- "Sartorius Lab Instruments GmbH & Co. KG",
- "\"SARTORIUS\" NOVA-SIGNAL GmbH",
- "Sartorius Ventures GmbH",
- "Schaeffler Digital Solutions GmbH",
- "Schaeffler Industrial Remanufacturing Services AG & Co. KG",
- "Schaeffler KWK Verwaltungs GmbH",
- "Schaeffler Ultra Precision Drives GmbH",
- "Schuster Klima Lüftung GmbH & Co. KG",
- "Schäffler Immobilien GmbH & Co. KG",
- "Siemens Aktiengesellschaft",
- "Salzgitter Automotive Engineering Beteiligungsgesellschaft mit beschränkter Haftung",
- "Salzgitter Business Service GmbH",
- "Salzgitter Europlatinen Gesellschaft mit beschränkter Haftung",
- "Salzgitter Hydroforming Verwaltungs GmbH",
- "Salzgitter Mannesmann Renewables GmbH",
- "Sartorius Corporate Administration GmbH",
- "Sartorius Stedim Systems GmbH",
- "SARTORIUS Verwaltungs GmbH",
- "Schaeffler IAB Verwaltungs GmbH",
- "Siemer GmbH & Co. KG",
- "Schaeffler Versicherungs- Vermittlungs GmbH",
- "Schäffler GmbH & Co. KG",
- "Siemens Healthineers AG",
- "\"Siemer Elektro Gesellschaft mit beschränkter Haftung\"",
- "Siemers-Elektro GmbH",
- "Siemer Verpackung GmbH",
- "Salzgitter Automotive Engineering Verwaltungsgesellschaft mit beschränkter Haftung",
- "Salzgitter Mannesmann Stahlservice GmbH",
- "Sartorius GmbH",
- "Sartorius Xell GmbH",
- "Schaeffler Aerospace Germany Beteiligungs GmbH",
- "Schaeffler AG",
- "Schaeffler Bühl Beteiligungs GmbH",
- "Schaeffler IAB Beteiligungs GmbH",
- "Schäffler GmbH",
- "Scheffler GmbH & Co. KG",
- "RWE Aktiengesellschaft",
- "Salzgitter Energy Services GmbH",
- "Sartorius-Herbst Verwaltungs GmbH",
- "Sartorius Lab Holding GmbH",
- "Sartorius Metalltechnik GmbH",
- "Sasse Beteiligungsgesellschaft mbH",
- "Schaeffler Engineering GmbH",
- "Schäffler Verwaltungs GmbH",
- "Selzer Systemtechnik GmbH",
- "Siemens Electronic Design Automation GmbH",
- "Siemers Transporttechnik GmbH",
- "Siemer Verwaltungsgesellschaft mbH",
- "Salzgitter Aktiengesellschaft",
- "Salzgitter Flachstahl GmbH",
- "Salzgitter Mannesmann Stainless Tubes Deutschland GmbH",
- "Scania CV Deutschland Holding GmbH",
- "SCANIA DEUTSCHLAND Gesellschaft mit beschränkter Haftung",
- "Schloss-Apotheke Inh.: Dr. Stefanie Klose e.Kfr.",
- "Schaeffler AS Auslandsholding GmbH",
- "Schaeffler ByWire Technologie GmbH & Co. KG",
- "Schaeffler Verwaltungsholding Sechs GmbH",
- "Schaeffler Wälzlager Beteiligungsgesellschaft mbH",
- "Schuhhaus Peter e.K. Inh. Schäffler",
- "S C H U K O Metallbedachung GmbH",
- "Schäffler Bauträger und Baubetreuung GmbH & Co KG",
- "Schäffler Steuerberatungsgesellschaft mbH",
- "Semet Maschinenbau GmbH & Co. KG",
- "Siemens Healthineers Holding III GmbH",
- "Ruhr-Lippe Wohnungsgesellschaft mit beschränkter Haftung",
- "RWE Power Aktiengesellschaft",
- "Salzgitter Forschungswasserkraftanlage Bannetze-Hornbostel GmbH",
- "Salzgitter Mannesmann Dritte Verwaltungsgesellschaft mbH",
- "s.a.p. e. K.",
- "Sartorius Fassaden GmbH",
- "Sartorius Weighing Technology GmbH",
- "Schaeffler Bühl Holding GmbH",
- "Schaeffler Consulting GmbH",
- "Schaeffler Vermögensverwaltungs GmbH",
- "Schiffahrts GmbH & Co. KG MS \"Leonie P\"",
- "Schmidt's Leoni-Stuben Eunice Schmidt",
- "Schwan-Apotheke Dietmar Bohlmann e.K.",
- "Schäffler Immobilien Beteiligungsgesellschaft mbH",
- "Selzer Holding GmbH",
- "Robert Decker Wohnbau München GmbH & Co. KG",
- "Salzgitter Mannesmann International Gesellschaft mit beschränkter Haftung",
- "RWE Trading Services GmbH",
- "RWE Supply & Trading GmbH",
- "Robinson Club GmbH",
- "RP Finanz GmbH",
- "RWE Brise Windparkbetriebsgesellschaft mbH",
- "Sabena Maintenance International GmbH",
- "Schaeffler Automotive Buehl GmbH & Co. KG",
- "Schaeffler Bühl Verwaltungs GmbH",
- "Schaeffler ELMOTEC STATOMAT GmbH",
- "Schaeffler Monitoring Services GmbH",
- "Schäffl Haus und Garten UG (haftungsbeschränkt)",
- "S C Isolierungen Sascha Celan e.K.",
- "Rock' n Bowl e. K.",
- "ROSATA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Metzingen KG",
- "Sartorius CellGenix GmbH",
- "Sartorius Stedim North America Holding GmbH",
- "SARTORIUS Werkzeuge Beteiligungs-GmbH",
- "Schaeffler Services GmbH",
- "Schaeffler Technologies AG & Co. KG",
- "Schaeffler Verwaltungsholding Zwei GmbH",
- "Schleicher Electronic GmbH & Co. KG",
- "Schäffler Transport GmbH",
- "SGS-Schwarzheider Gastronomie und Service GmbH",
- "Siemens Healthineers Innovation GmbH & Co. KG",
- "Safetec GmbH",
- "Salzgitter Classics UG (haftungsbeschränkt)",
- "Sartorius Verwaltungs UG (haftungsbeschränkt)",
- "Schaeffler Friction Products GmbH",
- "Schaeffler Immobilien AG & Co. KG",
- "S.C.H. Wohnungsverwaltung e.K.",
- "Schaeffler Schweinfurt Beteiligungs GmbH",
- "Schaeffler Teppichwerke GmbH & Co. KG",
- "Siemens Healthineers Innovation Verwaltungs-GmbH",
- "Siemers GmbH",
- "Siemes & Co.",
- "Salzgitter Mannesmann Handel GmbH",
- "Salzgitter Panscheberg Nr. 17 Projekt GmbH",
- "SARTORIUS Invest GmbH & Co. KG",
- "Sartorius Verwaltungs-Gesellschaft mit beschränkter Haftung",
- "SARTORIUS Werkzeuge GmbH & Co. KG",
- "SCANIA Vertrieb und Service GmbH",
- "Schaeffler Automotive Aftermarket GmbH & Co. KG",
- "Schaeffler Beteiligungsverwaltungs GmbH",
- "Schäffler Präzisionsschleiferei GmbH",
- "Secop Beteiligungs GmbH",
- "Secop Verwaltungs GmbH",
- "Siemens GmbH & Co. KG",
- "RuhrEnergie GmbH, EVR.",
- "Salzgitter Automotive Engineering GmbH & Co. KG",
- "Salzgitter Automotive Engineering Immobilien GmbH & Co. KG",
- "Schaeffler ByWire Management GmbH",
- "Siebte Verwaltungs GmbH",
- "Siemens Gerüstbau Gesellschaft mit beschränkter Haftung",
- "Siemens Healthineers Beteiligungen GmbH & Co. KG",
- "Siemens Healthineers Holding I GmbH",
- "Siemers Pet-Shop Tierfutter & Zubehör Inh. Jan Siemers e.K.",
- "Siemer Verwaltungs GmbH",
- "RUDU Verwaltungsgesellschaft mbH",
- "Ruhland-Kallenborn & Co. GmbH",
- "Saloodo! GmbH",
- "Salzgitter Mannesmann GmbH",
- "Salzgitter Maschinenbau AG",
- "Sanitär + Heizungsbau Manfred Schäffler e.K., Inhaber: Ralf Wenkenbach",
- "Sartorius Stedim Biotech GmbH",
- "Ströer Digital Group GmbH",
- "Sartorius Stedim Plastics GmbH",
- "Schaeffler Sondermaschinenbau AG & Co. KG",
- "Schäfer GmbH & Co. KG",
- "Schäfer Holding GmbH",
- "S. Dembitzer e.K.",
- "Selzer Fertigungstechnik GmbH & Co. KG",
- "Siemens Financial Services GmbH",
- "Siemers Grundbesitz GmbH & Co. KG",
- "Siemes GmbH & Co. Kommanditgesellschaft Sand- und Kiesbaggerei",
- "S.K.I.P. Datentechnik GmbH (System Konzepte Für Innovative Produkte)",
- "S & K Metallverarbeitung Verwaltungs-GmbH",
- "SPV Solarpark 102. GmbH & Co. KG",
- "SPV Solarpark 103. GmbH & Co. KG",
- "S S K Malergesellschaft mit beschränkter Haftung",
- "S.T.O.C.K GmbH",
- "Ströer Content Group GmbH",
- "Stuttgart Netze GmbH",
- "SUPRENUM-Gesellschaft für numerische Superrechner mbH",
- "Süddeutsche Wohnen Grundstücksgesellschaft mbH",
- "Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH",
- "TICS GmbH Touristische Internet und Call Center Services",
- "TRATON SE",
- "tricontes360 Gera GmbH",
- "tricontes360 Hof GmbH",
- "Turmbau Steffens & Nölle GmbH",
- "United Internet Corporate Holding SE",
- "United Internet Corporate Services GmbH",
- "Unternehmerstadt GmbH",
- "Tradebyte Software GmbH",
- "VOLKSWAGEN AKTIENGESELLSCHAFT",
- "Volkswagen Automobile Hannover GmbH",
- "Volkswagen Group Logistics GmbH",
- "Volkswagen Group Real Estate GmbH & Co. KG",
- "Volkswagen Insurance Brokers GmbH",
- "Volkswagen Retail Dienstleistungsgesellschaft mbH",
- "Volkswagen Vermögensverwaltungs-GmbH",
- "Volkswagen Vierte Leasingobjekt GmbH",
- "S&K Gastrobetriebsgesellschaft mbH",
- "S & K Holding International Verwaltungs GmbH",
- "S.K. Management GmbH",
- "S.K. Marine Supplies GmbH",
- "S.K.S. Autozubehör Produkte Vertriebs GmbH",
- "S.K.U.B. Fotostudio GmbH",
- "SPIE Energy Solutions GmbH",
- "Stromnetzgesellschaft Ebersbach Verwaltungs GmbH",
- "Südzucker Holding GmbH",
- "TUI Asset Management and Advisory GmbH",
- "TUI BLUE DE GmbH",
- "TUI Insurance & Financial GmbH",
- "United Internet Sourcing & Apprenticeship GmbH",
- "Volkswagen Autoversicherung AG",
- "Volkswagen Versicherung Aktiengesellschaft",
- "S & K Europe GmbH.",
- "S+K Handels GmbH",
- "S.L. Die Tanzschule e.K.",
- "Ströer Content Group Sales GmbH",
- "Ströer Content Group X GmbH",
- "Ströer Digital Publishing GmbH",
- "Ströer Sales & Services GmbH",
- "Ströer SE & Co. KGaA",
- "Ströer-Verwaltungs-GmbH",
- "TESSOL Kraftstoffe, Mineralöle und Tankanlagen Gesellschaft mit beschränkter Haftung",
- "TRATON Beteiligungsverwaltungs GmbH",
- "TUI Cruises GmbH",
- "United Internet Management Holding SE",
- "Volkswagen AirService GmbH",
- "Volkswagen Automobile Rhein-Neckar GmbH",
- "Volkswagen Bank Gesellschaft mit beschränkter Haftung",
- "Volkswagen Immobilien BLUE GmbH & Co. KG",
- "Volkswagen Sachsen GmbH",
- "Volkswagen Siebte Leasingobjekt GmbH",
- "Volkswagen Software Asset Management GmbH",
- "\"Siemes Verwaltungs-GmbH\"",
- "S-K-I Immobilien Birgit Salz e.K.",
- "The Cloud Networks Germany GmbH",
- "S. K. Management- und Beteiligungs GmbH",
- "SODIAS GmbH",
- "Tivoli Garden GmbH & Co. KG",
- "TSP - TechnikServicePlus GmbH",
- "TUI Customer Operations GmbH",
- "TUI Deutschland GmbH",
- "TUI InfoTec GmbH",
- "Vivawest GmbH",
- "Volkswagen Immobilien GmbH",
- "Volkswagen Sechste Leasingobjekt GmbH",
- "S.K. Beteiligungen GmbH",
- "S.N. Stefan Neist Versicherungsmakler e.K.",
- "Solarpark Aries GmbH & Co. KG",
- "Ströer Begrünungen GmbH",
- "Ströer Precision X GmbH",
- "TKS Telepost Kabel-Service Kaiserslautern GmbH",
- "trinamiX GmbH",
- "THESEO Deutschland GmbH",
- "TUI Aviation GmbH",
- "United Internet Media GmbH",
- "Volkswagen Immobilien Investment GmbH",
- "Volkswagen Osnabrück GmbH",
- "S + K Verwaltungs- und Beteiligungs-GmbH",
- "SMIGHT GmbH",
- "Ströer Core Verwaltungs GmbH",
- "Ströer media brands GmbH",
- "Südwestdeutsche Nuklear-Entsorgungs-Gesellschaft mbH (SNE)",
- "Südzucker Verwaltungs GmbH",
- "Thyssen Stahl GmbH",
- "TLT Urlaubsreisen GmbH",
- "tricontes360 Frankfurt Oder GmbH",
- "TRINAC GmbH",
- "Tilman Sartorius GmbH",
- "Tobias Schäffler GmbH PC's and more",
- "TUI AG",
- "TUI Group Services GmbH",
- "TUI ReiseCenter Jürgen Jehle e.K.",
- "Ulrike Theophile-Albrecht und Hella Albrecht Grundstücksverwaltungs GmbH & Co. KG",
- "Union Bauzentrum Hornbach GmbH",
- "u-plus Umweltservice GmbH",
- "Volkswagen Group Future Center Europe GmbH",
- "Volkswagen Zentrum Karlsruhe GmbH",
- "Siemes Grundbesitz GmbH & Co. KG",
- "SIV Grone 1 GmbH & Co. KG",
- "S&K Anlagentechnik GmbH",
- "S.K. Consulting GmbH",
- "S. K. Vermögensverwaltung Beteiligungs und Verwaltungs GmbH",
- "Strom am Antoniusberg GmbH & Co. KG",
- "Ströer News Publishing GmbH",
- "Süddeutsche Wohnen GmbH",
- "TARONA Verwaltung GmbH & Co. Alpha KG",
- "tricontes360 solutions GmbH",
- "TUI Airline Service GmbH",
- "Uniper Anlagenservice GmbH",
- "Verwaltung MS \"Leonie P\" GmbH",
- "Volkswagen-Versicherungsdienst Gesellschaft mit beschränkter Haftung",
- "Siltronic AG",
- "S + K Vermögensverwaltung GmbH",
- "Solarpark Lupus GmbH & Co. KG",
- "S. Otto Müller Inhaber: Frank Müller e.K.",
- "SPK Mix Handels GmbH",
- "STKNB Marketing Sales Solutions GmbH",
- "Ströer Digital Media GmbH",
- "S. u. F. Schwengel Inh. Falk Schwengel e. K.",
- "Tatin GmbH",
- "United Internet AG",
- "United Internet Investments Holding AG & Co. KG",
- "TPLUS GmbH",
- "United Internet Service SE",
- "Unternehmerstadt Verwaltungsgesellschaft mbH",
- "Vogel-Verzahntechnik GmbH + Co. KG",
- "Volkswagen Autoversicherung Holding GmbH",
- "Volkswagen Infotainment GmbH",
- "S + K Handelsgesellschaft m.b.H.",
- "S & K Holding International GmbH & Co. KG",
- "S & K International Beteiligungen GmbH",
- "S + K Retail GmbH",
- "S. Rahvar e.K.",
- "S & S Dienstleistungs- und Logistikunternehmen Sandy Schattmann e. K. Inhaberin: Sandy Wagner",
- "S-T-O Kfz Meisterbetrieb e.K.",
- "S-Tronics e.K.",
- "Ströer Social Publishing GmbH",
- "Sun Chemical Colors & Effects GmbH",
- "Swisslog GmbH",
- "SW Westfalen Invest GmbH",
- "Tectareal Asset Services GmbH",
- "Telefónica Deutschland Holding AG",
- "tricontes360 Verwaltung Hamburg GmbH",
- "TUIfly Vermarktungs GmbH",
- "TUI Immobilien Services GmbH",
- "Volkswagen Automobile Berlin GmbH",
- "Volkswagen Automobile Frankfurt GmbH",
- "Volkswagen Dritte Leasingobjekt GmbH",
- "Volkswagen Group Info Services AG",
- "Volkswagen Group Partner Services GmbH",
- "Volkswagen nuwo team Vertriebsgesellschaft für Nutz- und Freizeitfahrzeuge Koblenz mbH",
- "Siemes Verwaltungsgesellschaft mit beschränkter Haftung",
- "S.K. Physio-Service GmbH Meuselwitz",
- "S + K Textil-Service GmbH",
- "S-K-Ö Schornsteinelemente, Kamineinsätze, Öfen, Luftheizungsbau Vertrieb und Montage GmbH",
- "\"s'Küfer-Hus\" Wein- und Spirituosenhandlung - Branntwein-Brennerei - Spezialitäten Inh. Christian Stüdle e.K.",
- "Solarpark Samas GmbH",
- "SPIE Energy Solutions Harburg GmbH",
- "Spiel u. Sport Hella u. Günter Grob (Spielwaren und Sportartikel) Inh. Rainer Bliefernicht",
- "Starkenberger Baustoffwerke GmbH",
- "STRATO Customer Service GmbH",
- "Stromnetzgesellschaft Heilbronn Verwaltungs-GmbH",
- "Ströer DERG Media GmbH",
- "Ströer Media Deutschland GmbH",
- "Ströer Next Publishing GmbH",
- "Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG",
- "TECALEMIT GmbH & Co. KG",
- "tricontes360 Itzehoe GmbH",
- "tricontes360 Münster GmbH",
- "Uangyih Immobilien GmbH",
- "\"Urbana Teleunion\" Rostock GmbH & Co. KG",
- "Vivawest Ruhr GmbH",
- "S. K. Beteiligungen GmbH & Co. KG",
- "S. Owusu-Sekyere e.K.",
- "Volkswagen Leasing Gesellschaft mit beschränkter Haftung",
- "SIL Verwaltung GmbH & Co. Objekt Haidach KG",
- "Stadtwerke Recklinghausen GmbH",
- "Stadtwerke Voerde Gasnetz Verwaltungs GmbH",
- "Stage10 GmbH",
- "Ströer Deutsche Städte Medien GmbH",
- "Ströer Digital Commerce GmbH",
- "Studienkreis Holding GmbH",
- "Taunus Beteiligungs GmbH",
- "TB Digital Services GmbH",
- "Telefónica Germany GmbH & Co. OHG",
- "TK Aufzugswerke GmbH",
- "VLI Vivianne Leger Immobilien GmbH",
- "Volkswagen Beteiligungsverwaltung GmbH",
- "Volkswagen Group IT Solutions GmbH",
- "Volkswagen Group Services GmbH",
- "Volkswagen Konzernlogistik GmbH & Co. OHG",
- "S. Stutzenbacher Inhaber Guido Wekemann e.K.",
- "S + K Consulting & Events GmbH",
- "S. K. Holding Verwaltungs GmbH",
- "S+K Verwaltungs und Handels GmbH",
- "Strahlentherapeutische Gemeinschaftspraxis Hella Kops, Petra Schneider, Dr. Dieter Ross, Dr. Ralf Keymer, Strahlentherapeuten, Partnerschaft",
- "Ströer SSP GmbH",
- "Sun Chemical Color Solutions GmbH",
- "Südzucker AG",
- "Textilwaren Josef Gramm Inh. Rosita Gramm e.K.",
- "time:matters GmbH",
- "TransnetBW GmbH",
- "TUI TRAVEL Star - Reisebüro Battermann GmbH",
- "Umspannwerk Klein Bünsdorf GmbH & Co. KG",
- "Volkswagen Automobile Hamburg GmbH",
- "Volkswagen Fünfte Leasingobjekt GmbH",
- "Siemes Schuhcenter GmbH & Co. KG",
- "SIV Weende GmbH & Co. KG",
- "S + K Beteiligungs und Verwaltungs GmbH & Co. KG",
- "S + K GmbH Haus- und Energietechnik",
- "S.K.I. Verwaltungs GmbH Skikonstruktionsinstitut",
- "S.M.A. Metalltechnik GmbH & Co. KG",
- "Solutions30 Field Services Süd GmbH",
- "StreetScooter GmbH",
- "Ströer Management SE",
- "Ströer Sales Group GmbH",
- "Süddeutsche Wohnen Gebäude GmbH",
- "Südzucker Versicherungs- Vermittlungs-GmbH",
- "tricontes360 Hamburg GmbH",
- "TUI Business Services GmbH",
- "TUIfly GmbH",
- "TUI Hotel Betriebsgesellschaft mbH",
- "TUI Leisure Travel Service GmbH",
- "Unterstützungseinrichtung der BayWa Aktiengesellschaft in München GmbH",
- "vitrado GmbH",
- "Volkswagen Belegschaftsgenossenschaft für regenerative Energien am Standort Emden eG",
- "Volkswagen Original Teile Logistik GmbH & Co. KG",
- "Simon Sinterlutions GmbH & Co. KG",
- "S & K Autoverwertungs GmbH",
- "S & K Verwaltungs GmbH",
- "Spitzlberg GmbH & Co. KG",
- "S. Schulte e.K. Apparatebau Inh. W. Liebing",
- "Stanniol GmbH für IT & PR",
- "Stromnetzgesellschaft Albershausen Verwaltungs GmbH",
- "Ströer Core GmbH & Co. KG",
- "STW Grundstücksverwaltung GmbH",
- "TEC Holding GmbH & Co. KG.",
- "Tectareal Property Management GmbH",
- "tricontes360 Bremerhaven GmbH",
- "T-Systems International GmbH",
- "TUI Beteiligungs GmbH",
- "Volkswagen Erste Leasingobjekt GmbH",
- "VOLKSWAGEN FINANCIAL SERVICES AKTIENGESELLSCHAFT",
- "Volkswagen Gebrauchtfahrzeughandels und Service GmbH",
- "Siemes-Schuh-Treff Verpachtung GmbH",
- "Simon Systems GmbH & Co. KG",
- "S K A GmbH Elektroservice und Gebäudemanagement",
- "S & K GmbH Industrieservice und Beratung",
- "S.K.M. Informatik GmbH",
- "S + K Sauer und Krewett GmbH",
- "Vodafone Customer Care GmbH",
- "STILL Gesellschaft mit beschränkter Haftung",
- "STRATO AG",
- "Ströer Content Group Product & Tech GmbH",
- "Ströer Vermögensverwaltung GmbH & Co. KG",
- "SVG Steinwerder Verwaltungsgesellschaft mbH",
- "synexs GmbH",
- "Südtrans GmbH",
- "Taubernetze Verwaltungs-GmbH",
- "ThyssenKrupp Steel Europe AG",
- "TRATON Dritte Beteiligungs GmbH",
- "TWS Kernkraft GmbH",
- "UIS-United Internet Service, Inhaberin: Jacqueline Zielke, e.Kff.",
- "Ventelo GmbH",
- "VOLKSWAGEN Automobile Leipzig GmbH",
- "Volkswagen Automobile Stuttgart GmbH",
- "Volkswagen Economy Service Erdle Bernhard Erdle GmbH",
- "Volkswagen Financial Services Digital Solutions GmbH",
- "Volkswagen Group Charging GmbH",
- "Volkswagen Zentrum Aachen Jacobs Automobile GmbH",
- "Siems fenster + türen Gesellschaft mit beschränkter Haftung",
- "S & K GmbH Trockenausbau",
- "S & K Handels- und Vermittlungs GmbH & Co. KG",
- "S + K Robotertechnik GmbH",
- "S + K Verkaufsförderungsgesellschaft mbH",
- "Solarpark Aquarius GmbH & Co. KG",
- "SPECHT Sonnenschutztechnik GmbH",
- "Stadtwerke Wiesloch - Strom - Verwaltungs-GmbH",
- "STEAG GmbH",
- "Steindamm-Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung",
- "STILL Financial Services GmbH",
- "Ströer Aussenwerbung GmbH & Co. KG",
- "Ströer Werbeträgerverwaltungs GmbH",
- "TKH Deutschland GmbH",
- "TUI 4 U GmbH",
- "TUI Aviation Holding GmbH",
- "ViA6West Service GmbH",
- "Vivello GmbH",
- "Volkswagen Immobilien Management GmbH",
- "Volkswagen Original Teile Logistik Beteiligungs-GmbH",
- "Volkswagen Zentrum Nürnberg-Marienberg GmbH",
- "Volkswagen Zentrum Osnabrück GmbH & Co. KG",
- "Vonovia Elbe Berlin III GmbH",
- "Volkswagen Zubehör GmbH",
- "Vonovia Elbe GmbH",
- "Vonovia Technischer Service Süd GmbH",
- "Windpark Kamionka GmbH",
- "Wintershall Dea Middle East GmbH",
- "WEINERT Fiber Optics GmbH",
- "Westenergie Aqua GmbH",
- "WZ-WundZentren GmbH",
- "Würth Leasing Verwaltungsgesellschaft mbH",
- "Zalando Customer Care DACH SE & Co. KG",
- "Vonovia Energie Service GmbH",
- "Vonovia Elbe Berlin II GmbH",
- "Vonovia Kundenservice GmbH",
- "Vonovia Eigentumsverwaltungs GmbH",
- "VWR International GmbH",
- "Wintershall Dea Vermögensverwaltungsgesellschaft mbH",
- "Wolman Wood and Fire Protection GmbH",
- "Zalando Logistics Mönchengladbach SE & Co. KG",
- "Vonovia Mess Service GmbH",
- "Waldhusen KSB Verwaltungs GmbH",
- "Willi Göttling GmbH",
- "Walsum Immobilien GmbH",
- "Werkzeugbau Walldürn Gesellschaft mit beschränkter Haftung",
- "Windpark Wilhelmshöhe GmbH & Co. KG",
- "Wohnbau Auguste Victoria GmbH",
- "Zalando Lounge Content Solutions SE & Co. KG",
- "Zalando Stores GmbH & Co. KG",
- "Zentra Verwaltungs-GmbH",
- "Vonovia Elbe Dresden I GmbH",
- "Vonovia Elbe Wohnen GmbH",
- "Vonovia Modernisierungs GmbH",
- "Wacker-Chemie Versicherungsvermittlung GmbH",
- "Wacker Neuson SE",
- "WealthCap Objekt Bogenhausen GmbH & Co. KG",
- "Windfeld Hohenfelde Vier GmbH & Co. KG",
- "Vonovia Operations GmbH",
- "Vonovia Pro Bestand Nord Real Estate GmbH",
- "Wacker Neuson Produktion GmbH & Co. KG",
- "Windpark Hessenweiler GmbH & Co. KG",
- "Windpark Hettstadt GmbH & Co. KG",
- "Windpark Velgen-Bornsen GmbH",
- "Windpark Wilhelmshöhe III GmbH & Co. KG",
- "Wolfgang Sartorius GmbH & Co. KG.",
- "Zalando Beauty Store GmbH",
- "Zalando Lounge Logistics SE & Co. KG",
- "zLabels Platform Services GmbH & Co. KG",
- "Weidemann GmbH",
- "Vonovia Engineering GmbH",
- "Vonovia Immobilienservice GmbH",
- "Vonovia SE",
- "Wacker Neuson Aftermarket & Services GmbH",
- "Weinkellerei Thomas Rath GmbH",
- "Windpark Grüntal GmbH",
- "Windpark Uphuser Mark GmbH & Co. KG",
- "Zalando Logistics Gießen SE & Co. KG",
- "Zalando Studios Berlin GmbH",
- "Zwiebelzwerg Verlag, Inhaber Leonie Laufenburg e. K.",
- "Vonovia Immobilienmanagement two GmbH",
- "Wintershall Aktiengesellschaft",
- "Zalando Logistics Süd SE & Co. KG",
- "Zalando Payments GmbH",
- "ZweiPuma GmbH",
- "Zweite Mainova Erneuerbare Energien Verwaltungs GmbH",
- "Westconnect GmbH",
- "Vonovia Technischer Service Nord GmbH",
- "Wacker Biotech GmbH",
- "Wacker-Chemie Zwölfte Venture Gesellschaft mit beschränkter Haftung",
- "Wacker Neuson SGM Verwaltungs GmbH",
- "Wilhelmshöhe Infrastruktur GmbH & Co. KG",
- "Windpark Finkenbach-Gersweiler GmbH & Co. KG",
- "Windpark Wilhelmshöhe II GmbH & Co. KG",
- "Zalando BTD 007 SE & Co. KG",
- "Zalando BTD 010 SE & Co. KG",
- "Windpark Spechenwald GmbH & Co. KG",
- "Wipro Business Solutions GmbH",
- "Wolteritzer Agrar GmbH",
- "Vonovia Eigentumsservice GmbH",
- "Wolters Rundreisen GmbH",
- "Yello Solar GmbH",
- "Yello Strom GmbH",
- "Vonovia Dritte Berlin GmbH",
- "Vollkornbäckerei Sartorius Inhaber Strauß und Kaleske OHG",
- "Vonovia Immobilienmanagement GmbH",
- "Vonovia Wohnumfeld Service GmbH",
- "VULKAN INOX GmbH",
- "Wacker-Chemie Elfte Venture Gesellschaft mit beschränkter Haftung",
- "Weinisch GmbH & Co. KG",
- "Wenczel Zahntechnik GmbH",
- "Windpark Holle-Sillium GmbH & Co. KG",
- "Wohnanlage Leonberger Ring GmbH",
- "Wohnbau Westfalen GmbH",
- "Zalando Outlets GmbH",
- "VWR International Immobilien GmbH",
- "Wacker-Chemie Achte Venture Gesellschaft mit beschränkter Haftung",
- "Wacker Neuson Immobilien GmbH",
- "Windpark Lindchen GmbH & Co. KG",
- "WPB Water Pump Bearing GmbH & Co. KG",
- "XX-ON LINUX Services Huhle e. K.",
- "Zalando Customer Care Central Services SE & Co. KG",
- "Zalando Lounge Service GmbH",
- "Zalando Operations GmbH",
- "zooplus SE",
- "Wacker Chemie AG",
- "Wacker Neuson PGM Verwaltungs GmbH",
- "Wacker Neuson Vertrieb Deutschland GmbH & Co. KG",
- "Wiech Autohandelsgesellschaft mbH",
- "Windpark Schnellwettern GmbH",
- "Wohnungsgesellschaft Münsterland mit beschränkter Haftung",
- "Zalando Marketing Services GmbH",
- "Zalando SE",
- "zLabels GmbH",
- "Vonovia Immobilienmanagement one GmbH",
- "Vonovia Elbe Ost GmbH",
- "Willibald Grammer GmbH & Co. KG",
- "Windpark Bella GmbH",
- "Windpark Quelkhorn GmbH",
- "Wohnen am Tiergarten Deutsch Evern GmbH",
- "Zalando BTD 003 GmbH",
- "Zweite Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB II)",
- "Zweite Hapag-Lloyd Schiffsvermietungsgesellschaft mbH",
- "Vonovia Elbe Wannsee I GmbH",
- "Vonovia Managementverwaltung GmbH",
- "WIBG GmbH",
- "Windpark Freimersheim GmbH & Co. KG",
- "Wohn + Stadtbau Wohnungsunternehmen der Stadt Münster GmbH",
- "Weigand Bau GmbH",
- "Volkswagen Zentrum Oldenburg GmbH",
- "Volkswagen Zweite Leasingobjekt GmbH",
- "Vonovia Pro Bestand Nord GmbH",
- "Vonovia Pro Bestand Nord Invest GmbH",
- "web care LBJ GmbH",
- "Windpark Pferdsfeld GmbH & Co. KG",
- "Wintershall Libyen Oil & Gas GmbH",
- "Zalando BTD 009 SE & Co. KG",
- "Zalando BTD 011 SE & Co. KG",
- "zLabels Creation & Sales GmbH & Co. KG",
- "Zweckverband Wasserversorgung Gramme-Aue",
- "Westfälische Hochtief und Straßenbau GmbH",
- "Windpark San Lupo GmbH",
- "WINGAS Holding GmbH",
- "WohnServicePlus GmbH",
- "Wohnungsbaugesellschaft mit beschränkter Haftung \"Glückauf\"",
- "Zalando Customer Care International SE & Co. KG",
- "zebotec GmbH"
+ "hoverinfo": "none",
+ "line": {
+ "color": "#888",
+ "width": 0.5
+ },
+ "mode": "lines",
+ "type": "scatter",
+ "x": [
+ -8.70931314589988,
+ -8.467677097413748,
+ null,
+ 12.357392504358657,
+ 13.055924620493657,
+ null,
+ -8.7260826919713,
+ -11.30389562151104,
+ null,
+ 4.065662271629381,
+ 2.401716763258838,
+ null,
+ 11.294776229121352,
+ 13.186981664800506,
+ null,
+ -4.877931126317019,
+ -6.154949374809172,
+ null,
+ 10.735464773050758,
+ 11.682472035258993,
+ null,
+ 1.9766510721255532,
+ -0.2904245132883371,
+ null,
+ -14.105337760358532,
+ -11.30389562151104,
+ null,
+ 1.2006505986338571,
+ -0.4066190229151898,
+ null,
+ -3.6207033444239403,
+ -6.089232444725925,
+ null,
+ -14.257892192218716,
+ -16.171254207712238,
+ null,
+ -14.257892192218716,
+ -12.641486554711227,
+ null,
+ -8.873848187901249,
+ -8.924539853173204,
+ null,
+ -8.587682700115721,
+ -11.30389562151104,
+ null,
+ 4.143478005080861,
+ 2.6594948351133105,
+ null,
+ -14.257892192218716,
+ -16.49575122113392,
+ null,
+ -16.49575122113392,
+ -17.399809247665026,
+ null,
+ -7.341442978207376,
+ -6.089232444725925,
+ null,
+ 13.518267765132038,
+ 12.946886580090768,
+ null,
+ 3.3062214109117107,
+ 0.9296285821773804,
+ null,
+ -10.550472542112104,
+ -8.165134748977561,
+ null,
+ -10.550472542112104,
+ -8.31123907060137,
+ null,
+ -13.43842367977979,
+ -14.827710046890484,
+ null,
+ -17.775724172886815,
+ -18.77373065630167,
+ null,
+ -16.88866457323332,
+ -18.77373065630167,
+ null,
+ -20.078458535264446,
+ -18.77373065630167,
+ null,
+ -13.609089026692189,
+ -12.78697697521233,
+ null,
+ 15.214928548030311,
+ 13.454883339680299,
+ null,
+ -4.696595772523521,
+ -5.335036210575371,
+ null,
+ -11.034798616634593,
+ -12.918878789025223,
+ null,
+ -11.034798616634593,
+ -8.786027517833004,
+ null,
+ -15.133094058459976,
+ -13.073799543345432,
+ null,
+ 12.062508703553217,
+ 13.525214186802927,
+ null,
+ 12.264858481554377,
+ 14.1424983821946,
+ null,
+ 12.264858481554377,
+ 14.568357886697154,
+ null,
+ 8.160790367423271,
+ 6.364427526291246,
+ null,
+ -14.017523904948444,
+ -11.30389562151104,
+ null,
+ -9.351947080727468,
+ -11.30389562151104,
+ null,
+ -21.044655379361654,
+ -18.77373065630167,
+ null,
+ -11.812617437253277,
+ -13.422176469509925,
+ null,
+ -11.812617437253277,
+ -13.775765496084412,
+ null,
+ -16.66777117612361,
+ -18.77373065630167,
+ null,
+ 4.854968322661051,
+ 8.387901149093713,
+ null,
+ -0.8717312459872724,
+ -3.2021831256890922,
+ null,
+ -15.864865885806555,
+ -18.77373065630167,
+ null,
+ -10.341430318799459,
+ -12.174437423792877,
+ null,
+ -10.341430318799459,
+ -13.131805829829121,
+ null,
+ 4.854968322661051,
+ 6.364427526291246,
+ null,
+ -9.779926270341624,
+ -11.222157816000808,
+ null,
+ -9.779926270341624,
+ -7.297077243601035,
+ null,
+ 12.007482847799901,
+ 14.470594296805228,
+ null,
+ 5.837901720619523,
+ 3.784022178353783,
+ null,
+ 13.238289425446844,
+ 15.9435485636315,
+ null,
+ 13.238289425446844,
+ 14.568357886697154,
+ null,
+ -14.892826048440316,
+ -16.9272715960945,
+ null,
+ 8.856427933715622,
+ 11.276910781514232,
+ null,
+ 4.463646735471876,
+ 5.030557141304843,
+ null,
+ -9.319094966806064,
+ -11.30389562151104,
+ null,
+ 5.54577061950271,
+ 3.784022178353783,
+ null,
+ 7.434816853042825,
+ 5.281623231902232,
+ null,
+ 7.434816853042825,
+ 9.463974500180829,
+ null,
+ 4.419861800187942,
+ 6.91603816914483,
+ null,
+ 8.13056547226624,
+ 10.087304118769962,
+ null,
+ 8.13056547226624,
+ 6.91603816914483,
+ null,
+ -18.90667680998491,
+ -16.26485387584271,
+ null,
+ -18.90667680998491,
+ -18.539285817819707,
+ null,
+ 12.088650427686154,
+ 12.36789644876426,
+ null,
+ 12.088650427686154,
+ 10.074147960343135,
+ null,
+ -16.51737999240955,
+ -17.621025032978338,
+ null,
+ -21.808337431736717,
+ -20.63061229727116,
+ null,
+ -21.808337431736717,
+ -22.0372705783538,
+ null,
+ 10.99395947595549,
+ 13.652308260668319,
+ null,
+ 10.99395947595549,
+ 13.554212564980395,
+ null,
+ 12.56133355227103,
+ 13.652308260668319,
+ null,
+ 12.56133355227103,
+ 13.554212564980395,
+ null,
+ 10.346063966531668,
+ 12.36789644876426,
+ null,
+ 10.346063966531668,
+ 10.074147960343135,
+ null,
+ 10.346063966531668,
+ 11.262722144984231,
+ null,
+ 15.372542787508928,
+ 13.652308260668319,
+ null,
+ 15.372542787508928,
+ 13.554212564980395,
+ null,
+ 11.817896192030677,
+ 13.652308260668319,
+ null,
+ 11.817896192030677,
+ 13.554212564980395,
+ null,
+ 3.856271667229114,
+ 1.0820851096858084,
+ null,
+ 13.994654703623123,
+ 13.652308260668319,
+ null,
+ 13.994654703623123,
+ 13.554212564980395,
+ null,
+ 2.9343925315942663,
+ 0.3351226422782401,
+ null,
+ 12.534847587601611,
+ 11.257550918740437,
+ null,
+ 12.534847587601611,
+ 10.074147960343135,
+ null,
+ 12.534847587601611,
+ 14.81007903132706,
+ null,
+ 13.857943359616616,
+ 13.16529376284697,
+ null,
+ 13.857943359616616,
+ 13.055924620493657,
+ null,
+ 9.554993646994419,
+ 11.747579677576784,
+ null,
+ -19.082548783402974,
+ -17.230274581024116,
+ null,
+ -19.082548783402974,
+ -20.99368417153712,
+ null,
+ 9.818094885655874,
+ 11.257550918740437,
+ null,
+ 13.019268697290483,
+ 11.039454894775762,
+ null,
+ 13.019268697290483,
+ 13.554212564980395,
+ null,
+ 3.036991151725595,
+ 5.448264249663503,
+ null,
+ 3.036991151725595,
+ 0.8433811243550915,
+ null,
+ 15.638529308307785,
+ 13.652308260668319,
+ null,
+ 15.638529308307785,
+ 13.554212564980395,
+ null,
+ -15.120708026130123,
+ -13.12269150574086,
+ null,
+ -15.120708026130123,
+ -15.084685984163059,
+ null,
+ 14.47648272320709,
+ 13.652308260668319,
+ null,
+ 14.47648272320709,
+ 13.554212564980395,
+ null,
+ 11.259746152967812,
+ 13.652308260668319,
+ null,
+ 11.259746152967812,
+ 13.554212564980395,
+ null,
+ -1.3794830129963682,
+ 1.001446291610431,
+ null,
+ -1.3794830129963682,
+ -2.979824350857239,
+ null,
+ 16.026250170033155,
+ 13.652308260668319,
+ null,
+ 16.026250170033155,
+ 13.554212564980395,
+ null,
+ 15.564078242959852,
+ 16.034607951559245,
+ null,
+ 15.564078242959852,
+ 14.646230575375679,
+ null,
+ 9.046492633179005,
+ 10.746949145559208,
+ null,
+ 8.482889237255252,
+ 10.746949145559208,
+ null,
+ 13.13334138439849,
+ 12.36789644876426,
+ null,
+ 13.13334138439849,
+ 11.257550918740437,
+ null,
+ 4.922850862135011,
+ 2.0750960065294444,
+ null,
+ 4.922850862135011,
+ 1.9210624105784522,
+ null,
+ -0.7961280922069971,
+ 2.0750960065294444,
+ null,
+ -0.7961280922069971,
+ 1.9210624105784522,
+ null,
+ -0.4996169964954393,
+ 1.9210624105784522,
+ null,
+ -0.4996169964954393,
+ 2.0750960065294444,
+ null,
+ 0.05568140637087626,
+ 2.0750960065294444,
+ null,
+ 0.05568140637087626,
+ 1.9210624105784522,
+ null,
+ 3.903929720733026,
+ 2.0750960065294444,
+ null,
+ 3.903929720733026,
+ 1.9210624105784522,
+ null,
+ -0.46294198742947523,
+ 2.0750960065294444,
+ null,
+ -0.46294198742947523,
+ 1.9210624105784522,
+ null,
+ 3.6953497415283403,
+ 2.0750960065294444,
+ null,
+ 3.6953497415283403,
+ 1.9210624105784522,
+ null,
+ 0.18662774037102353,
+ 2.0750960065294444,
+ null,
+ 0.18662774037102353,
+ 1.9210624105784522,
+ null,
+ -9.818550566141576,
+ -11.30389562151104,
+ null,
+ 10.55842539554966,
+ 10.746949145559208,
+ null,
+ 3.678222001524373,
+ 1.9210624105784522,
+ null,
+ 3.678222001524373,
+ 2.0750960065294444,
+ null,
+ 0.053550297367818356,
+ 1.9210624105784522,
+ null,
+ 0.856621852687763,
+ 1.9210624105784522,
+ null,
+ 1.3912104527253701,
+ 2.0750960065294444,
+ null,
+ 1.3912104527253701,
+ 1.9210624105784522,
+ null,
+ -0.4770555615368528,
+ 2.0750960065294444,
+ null,
+ -0.4770555615368528,
+ 1.9210624105784522,
+ null,
+ 2.615400798349391,
+ 2.0750960065294444,
+ null,
+ 4.267118850106493,
+ 2.0750960065294444,
+ null,
+ 4.267118850106493,
+ 1.9210624105784522,
+ null,
+ 0.19554905389570348,
+ 2.0750960065294444,
+ null,
+ 0.19554905389570348,
+ 1.9210624105784522,
+ null,
+ 2.9394073765534405,
+ 2.0750960065294444,
+ null,
+ 2.9394073765534405,
+ 1.9210624105784522,
+ null,
+ 11.767112148395785,
+ 10.746949145559208,
+ null,
+ 14.833519421498904,
+ 12.36789644876426,
+ null,
+ 0.7384287997164202,
+ 2.0750960065294444,
+ null,
+ 0.7384287997164202,
+ 1.9210624105784522,
+ null,
+ 1.5156603317139905,
+ 1.9210624105784522,
+ null,
+ -0.3322021397899909,
+ 1.9210624105784522,
+ null,
+ -0.3322021397899909,
+ 2.0750960065294444,
+ null,
+ 5.1789753436846775,
+ 2.0750960065294444,
+ null,
+ 5.1789753436846775,
+ 1.9210624105784522,
+ null,
+ 2.6724256762134506,
+ 2.0750960065294444,
+ null,
+ 2.6724256762134506,
+ 1.9210624105784522,
+ null,
+ 1.8367614336416924,
+ 1.9210624105784522,
+ null,
+ 1.8367614336416924,
+ 2.0750960065294444,
+ null,
+ -0.45136395640744087,
+ 1.9210624105784522,
+ null,
+ 8.81221207135692,
+ 10.746949145559208,
+ null,
+ 15.619567609992188,
+ 14.568357886697154,
+ null,
+ 0.6600766914421633,
+ 2.0750960065294444,
+ null,
+ 0.6600766914421633,
+ 1.9210624105784522,
+ null,
+ 2.504070335996154,
+ 2.0750960065294444,
+ null,
+ 2.504070335996154,
+ 1.9210624105784522,
+ null,
+ 5.036301217583687,
+ 2.0750960065294444,
+ null,
+ 5.036301217583687,
+ 1.9210624105784522,
+ null,
+ 10.125420984567317,
+ 10.746949145559208,
+ null,
+ 2.3475194746754497,
+ 1.9210624105784522,
+ null,
+ 2.3475194746754497,
+ 2.0750960065294444,
+ null,
+ 1.8578277047182765,
+ 2.0750960065294444,
+ null,
+ 1.8578277047182765,
+ 1.9210624105784522,
+ null,
+ 16.22703998820127,
+ 17.091860288961655,
+ null,
+ 10.330950595269826,
+ 10.746949145559208,
+ null,
+ -2.7658971358148947,
+ -4.8014607974495505,
+ null,
+ -2.7658971358148947,
+ -4.121682094168807,
+ null,
+ -1.3469441536515045,
+ 2.0750960065294444,
+ null,
+ -1.3469441536515045,
+ 1.9210624105784522,
+ null,
+ 1.1884262032218091,
+ 2.0750960065294444,
+ null,
+ 1.1884262032218091,
+ 1.9210624105784522,
+ null,
+ 1.34723325947132,
+ 2.0750960065294444,
+ null,
+ 1.34723325947132,
+ 1.9210624105784522,
+ null,
+ -7.899634721756038,
+ -9.211712305067408,
+ null,
+ 13.436293495916102,
+ 10.746949145559208,
+ null,
+ 4.876856900595087,
+ 2.0750960065294444,
+ null,
+ 4.876856900595087,
+ 1.9210624105784522,
+ null,
+ 2.2165170496703444,
+ 1.9210624105784522,
+ null,
+ 2.2165170496703444,
+ 2.0750960065294444,
+ null,
+ 4.688434393568661,
+ 2.0750960065294444,
+ null,
+ 4.688434393568661,
+ 1.9210624105784522,
+ null,
+ 1.5781068877957782,
+ 1.9210624105784522,
+ null,
+ 10.664924867260249,
+ 10.746949145559208,
+ null,
+ -1.9650770136308156,
+ -0.9647141359114324,
+ null,
+ 3.4031726727872074,
+ 2.0750960065294444,
+ null,
+ 3.4031726727872074,
+ 1.9210624105784522,
+ null,
+ 4.46791567217323,
+ 2.0750960065294444,
+ null,
+ 4.46791567217323,
+ 1.9210624105784522,
+ null,
+ 2.423269620133291,
+ 1.9210624105784522,
+ null,
+ -1.3214351689180779,
+ 2.0750960065294444,
+ null,
+ -1.3214351689180779,
+ 1.9210624105784522,
+ null,
+ -0.6852965869211495,
+ 2.0750960065294444,
+ null,
+ -0.6852965869211495,
+ 1.9210624105784522,
+ null,
+ 1.5519172594409865,
+ 2.0750960065294444,
+ null,
+ -14.833371203957313,
+ -12.770043278028636,
+ null,
+ 3.3083445120368262,
+ 2.0750960065294444,
+ null,
+ 3.3083445120368262,
+ 1.9210624105784522,
+ null,
+ 3.2264285628784295,
+ 2.0750960065294444,
+ null,
+ 3.2264285628784295,
+ 1.9210624105784522,
+ null,
+ 2.4091441663593947,
+ 1.9210624105784522,
+ null,
+ -1.068433738119321,
+ 2.0750960065294444,
+ null,
+ -1.068433738119321,
+ 1.9210624105784522,
+ null,
+ 5.2801480504009435,
+ 2.0750960065294444,
+ null,
+ 5.2801480504009435,
+ 1.9210624105784522,
+ null,
+ -22.29012892624258,
+ -22.14947240734907,
+ null,
+ -20.36215617292208,
+ -21.662760215424292,
+ null,
+ 7.913823981349797,
+ 10.042245008033184,
+ null,
+ 13.222084019474261,
+ 10.746949145559208,
+ null,
+ 12.138422273046151,
+ 10.746949145559208,
+ null,
+ -0.67044427073447,
+ 2.0750960065294444,
+ null,
+ -0.67044427073447,
+ 1.9210624105784522,
+ null,
+ 3.023087990068201,
+ 2.0750960065294444,
+ null,
+ 3.023087990068201,
+ 1.9210624105784522,
+ null,
+ 3.5667918078441505,
+ 1.9210624105784522,
+ null,
+ 4.259583645214979,
+ 1.9210624105784522,
+ null,
+ 4.259583645214979,
+ 2.0750960065294444,
+ null,
+ 9.10959051456911,
+ 9.00591792915805,
+ null,
+ -6.382156388167953,
+ -8.114924620385013,
+ null,
+ -6.382156388167953,
+ -4.09014144613155,
+ null,
+ 0.2433322479630976,
+ 2.0750960065294444,
+ null,
+ 0.2433322479630976,
+ 1.9210624105784522,
+ null,
+ 0.02380349387082925,
+ 2.0750960065294444,
+ null,
+ 0.02380349387082925,
+ 1.9210624105784522,
+ null,
+ 8.699575474266641,
+ 10.746949145559208,
+ null,
+ 12.517071438970168,
+ 10.746949145559208,
+ null,
+ -1.146229319688388,
+ 1.9210624105784522,
+ null,
+ 3.9370581924207073,
+ 2.0750960065294444,
+ null,
+ 3.9370581924207073,
+ 1.9210624105784522,
+ null,
+ 0.5444623587075397,
+ 1.9210624105784522,
+ null,
+ 4.0915415204171675,
+ 2.0750960065294444,
+ null,
+ 4.0915415204171675,
+ 1.9210624105784522,
+ null,
+ 4.545978277158587,
+ 1.9210624105784522,
+ null,
+ 4.545978277158587,
+ 2.0750960065294444,
+ null,
+ 3.4401847524258296,
+ 1.9210624105784522,
+ null,
+ 4.94332601132337,
+ 2.0750960065294444,
+ null,
+ 4.94332601132337,
+ 1.9210624105784522,
+ null,
+ -1.192610228575491,
+ 2.0750960065294444,
+ null,
+ -1.192610228575491,
+ 1.9210624105784522,
+ null,
+ 4.507364771453263,
+ 2.0750960065294444,
+ null,
+ 4.507364771453263,
+ 1.9210624105784522,
+ null,
+ 1.031823335220865,
+ 2.0750960065294444,
+ null,
+ 1.031823335220865,
+ 1.9210624105784522,
+ null,
+ 0.7348280496172432,
+ 2.0750960065294444,
+ null,
+ 0.7348280496172432,
+ 1.9210624105784522,
+ null,
+ 3.634152715842353,
+ 2.0750960065294444,
+ null,
+ 16.329629911080218,
+ 17.441033667083897,
+ null,
+ 16.329629911080218,
+ 14.210332439646615,
+ null,
+ -3.1009710458980595,
+ -5.205440506820717,
+ null,
+ -20.811748719318366,
+ -22.424846474687104,
+ null,
+ -20.811748719318366,
+ -19.333643113939573,
+ null,
+ -12.895238590095774,
+ -15.6485410514355,
+ null,
+ -17.002840880938518,
+ -17.602424048420065,
+ null,
+ -17.002840880938518,
+ -19.333643113939573,
+ null,
+ -18.003098440617467,
+ -17.602424048420065,
+ null,
+ -18.003098440617467,
+ -19.333643113939573,
+ null,
+ 16.701297491241327,
+ 16.452169485318528,
+ null,
+ -12.480679773055163,
+ -10.315126466090584,
+ null,
+ -7.382931085378695,
+ -9.645100687981396,
+ null,
+ -19.421273330321846,
+ -18.77373065630167,
+ null,
+ -20.691366867499276,
+ -19.211557661416975,
+ null,
+ -9.645100687981396,
+ -11.574766578920022,
+ null,
+ -19.88295886227899,
+ -22.424846474687104,
+ null,
+ -19.88295886227899,
+ -19.333643113939573,
+ null,
+ -1.9168963496698936,
+ -2.836225991117213,
+ null,
+ -10.390701474402691,
+ -11.30389562151104,
+ null,
+ 1.5398298287809027,
+ 3.525145431665082,
+ null,
+ 3.0899835481113476,
+ 5.369682545555909,
+ null,
+ -9.922275324532277,
+ -7.233663409839164,
+ null,
+ -19.826918228187647,
+ -17.602424048420065,
+ null,
+ -19.826918228187647,
+ -19.333643113939573,
+ null,
+ -1.557939548523383,
+ -3.830378203270949,
+ null,
+ -8.463521824269321,
+ -8.70415109596094,
+ null,
+ -8.011035787283092,
+ -5.564640261992574,
+ null,
+ -12.78697697521233,
+ -11.30389562151104,
+ null,
+ -9.305441849488401,
+ -11.30389562151104,
+ null,
+ 1.8524320463766142,
+ -0.24304139083144172,
+ null,
+ 1.8524320463766142,
+ 4.5578433839924655,
+ null,
+ -11.773686494743433,
+ -11.30389562151104,
+ null,
+ -17.665719101726783,
+ -20.286273678708202,
+ null,
+ -17.665719101726783,
+ -19.227328493292394,
+ null,
+ -14.072787864498226,
+ -11.30389562151104,
+ null,
+ -11.097063964411257,
+ -11.30389562151104,
+ null,
+ -13.61492915791775,
+ -11.30389562151104,
+ null,
+ -21.62141110792667,
+ -20.286273678708202,
+ null,
+ -21.62141110792667,
+ -19.227328493292394,
+ null,
+ -20.386059685612544,
+ -20.286273678708202,
+ null,
+ -11.094633503074649,
+ -8.644619795574375,
+ null,
+ -11.094633503074649,
+ -12.01044336192099,
+ null,
+ 4.5578433839924655,
+ 3.5635661792162865,
+ null,
+ 4.5578433839924655,
+ 6.0655381802650865,
+ null,
+ 14.117319922685468,
+ 16.27121152709186,
+ null,
+ 14.117319922685468,
+ 14.210332439646615,
+ null,
+ -20.164417924327868,
+ -20.286273678708202,
+ null,
+ 6.667110055897602,
+ 8.921549326543447,
+ null,
+ 11.890236135239256,
+ 11.940944669003084,
+ null,
+ 11.890236135239256,
+ 10.862739022277392,
+ null,
+ 11.890236135239256,
+ 10.862739022277392,
+ null,
+ -21.652278956892705,
+ -20.286273678708202,
+ null,
+ -21.652278956892705,
+ -19.227328493292394,
+ null,
+ 11.007447112644039,
+ 12.500834520805466,
+ null,
+ 11.007447112644039,
+ 8.921549326543447,
+ null,
+ -3.5930927319462813,
+ -2.834194264885367,
+ null,
+ -3.5930927319462813,
+ -4.849203406582981,
+ null,
+ -3.5930927319462813,
+ -1.8783040633672548,
+ null,
+ -3.5930927319462813,
+ -5.9138526823356266,
+ null,
+ -18.6964820290189,
+ -19.211557661416975,
+ null,
+ 3.084027228630518,
+ 1.2672067779403606,
+ null,
+ 4.5578433839924655,
+ 3.084027228630518,
+ null,
+ 0.97624240082111,
+ 1.9527502164133757,
+ null,
+ -11.766265266493022,
+ -11.30389562151104,
+ null,
+ 14.24741948194107,
+ 11.940944669003084,
+ null,
+ 14.24741948194107,
+ 15.16111670911235,
+ null,
+ -17.979596873501833,
+ -20.286273678708202,
+ null,
+ -6.820653777368942,
+ -7.228500587324407,
+ null,
+ -6.820653777368942,
+ -8.223763239439526,
+ null,
+ -10.77574769400655,
+ -12.93018385197875,
+ null,
+ -21.745942294135354,
+ -20.286273678708202,
+ null,
+ -3.531764696083626,
+ -4.130858921918941,
+ null,
+ -10.92073044683601,
+ -12.560295003820366,
+ null,
+ 14.869539287780078,
+ 12.495171965866554,
+ null,
+ -18.821957729217324,
+ -20.286273678708202,
+ null,
+ -18.821957729217324,
+ -19.227328493292394,
+ null,
+ -22.421792234858035,
+ -20.286273678708202,
+ null,
+ -6.745269020436412,
+ -9.211712305067408,
+ null,
+ -21.149513383400866,
+ -20.344640829601293,
+ null,
+ -21.149513383400866,
+ -19.211557661416975,
+ null,
+ 6.858066475130007,
+ 7.620310212411023,
+ null,
+ 4.5578433839924655,
+ 6.858066475130007,
+ null,
+ 8.104064627387435,
+ 5.971239979286481,
+ null,
+ 5.619239138287458,
+ 6.156588825490022,
+ null,
+ 5.619239138287458,
+ 8.169773290644287,
+ null,
+ -19.989999481225084,
+ -20.286273678708202,
+ null,
+ -22.614370116233452,
+ -20.286273678708202,
+ null,
+ 5.779903158930537,
+ 5.746694681873156,
+ null,
+ 4.5578433839924655,
+ 5.779903158930537,
+ null,
+ -16.51737999240955,
+ -14.690034116642924,
+ null,
+ -19.923354296149782,
+ -17.602424048420065,
+ null,
+ -19.923354296149782,
+ -17.289323099523585,
+ null,
+ -5.526254591027005,
+ -6.926326206032475,
+ null,
+ -5.526254591027005,
+ -8.098925907478591,
+ null,
+ -8.098925907478591,
+ -6.341107086583359,
+ null,
+ -8.098925907478591,
+ -9.622695772412136,
+ null,
+ -9.576328369821745,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -9.576328369821745,
+ null,
+ -18.706584753985204,
+ -17.602424048420065,
+ null,
+ -18.706584753985204,
+ -17.289323099523585,
+ null,
+ 0.48854393504266813,
+ 2.4822510615899143,
+ null,
+ -1.1039008970779172,
+ 0.8238680595058228,
+ null,
+ -14.690034116642924,
+ -15.401206383320957,
+ null,
+ -12.304562961281185,
+ -14.002763598385519,
+ null,
+ -18.06631769066562,
+ -17.621025032978338,
+ null,
+ -15.401206383320957,
+ -18.06631769066562,
+ null,
+ -15.149575442226098,
+ -17.602424048420065,
+ null,
+ -15.149575442226098,
+ -17.289323099523585,
+ null,
+ -10.871376901885002,
+ -13.073799543345432,
+ null,
+ -8.098925907478591,
+ -10.871376901885002,
+ null,
+ -7.778928421150651,
+ -6.4793879657592806,
+ null,
+ -8.098925907478591,
+ -7.778928421150651,
+ null,
+ -8.752639112894949,
+ -6.178625902126945,
+ null,
+ -8.752639112894949,
+ -8.021165590309865,
+ null,
+ -15.903931115499725,
+ -17.602424048420065,
+ null,
+ -15.903931115499725,
+ -17.289323099523585,
+ null,
+ 15.609346006545493,
+ 16.47227486042157,
+ null,
+ 1.5684760085920115,
+ 1.0597336630653893,
+ null,
+ -8.484597070741174,
+ -6.4793879657592806,
+ null,
+ -8.098925907478591,
+ -8.484597070741174,
+ null,
+ -5.358300982736624,
+ -3.239099820874423,
+ null,
+ -14.690034116642924,
+ -15.633581302070548,
+ null,
+ 10.042667039743908,
+ 11.764837233757895,
+ null,
+ -5.026990040957724,
+ -6.926326206032475,
+ null,
+ -19.098378201640987,
+ -17.602424048420065,
+ null,
+ -19.098378201640987,
+ -17.289323099523585,
+ null,
+ -14.690034116642924,
+ -12.667427561341837,
+ null,
+ -8.143815192571171,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -8.143815192571171,
+ null,
+ -17.044979383409984,
+ -17.208626664696368,
+ null,
+ -5.989201968263571,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -5.989201968263571,
+ null,
+ 2.363041898277314,
+ 4.9942257378006065,
+ null,
+ 11.077943004444244,
+ 12.698764574124928,
+ null,
+ 4.869763475100926,
+ 7.0907603766426215,
+ null,
+ -6.891484104463479,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -6.891484104463479,
+ null,
+ 11.228732658549816,
+ 10.212933849734718,
+ null,
+ -11.300917366159346,
+ -11.30389562151104,
+ null,
+ -10.968335135708738,
+ -11.30389562151104,
+ null,
+ 3.562939649882624,
+ 2.3693097894164348,
+ null,
+ 3.562939649882624,
+ 5.614858725722992,
+ null,
+ -1.0682502288603475,
+ -0.09033420362344827,
+ null,
+ -9.777165755904662,
+ -11.30389562151104,
+ null,
+ 1.7239387147090457,
+ -0.29399017359151897,
+ null,
+ 3.562939649882624,
+ 1.7239387147090457,
+ null,
+ -12.871013065755452,
+ -11.864982489192727,
+ null,
+ -12.871013065755452,
+ -15.041400491254338,
+ null,
+ 14.967139301367737,
+ 17.055148995726,
+ null,
+ 14.967139301367737,
+ 16.041813776705418,
+ null,
+ -3.0291294985260704,
+ -0.7417165954447063,
+ null,
+ -13.422449302999599,
+ -11.30389562151104,
+ null,
+ -17.286588360084316,
+ -18.77373065630167,
+ null,
+ 7.9355349788978415,
+ 8.571520874518438,
+ null,
+ 7.9355349788978415,
+ 8.034520839978383,
+ null,
+ 7.9355349788978415,
+ 5.953088650224671,
+ null,
+ -17.12555340084468,
+ -19.493438139991042,
+ null,
+ -17.12555340084468,
+ -15.041400491254338,
+ null,
+ -19.59883316402109,
+ -17.680271835579358,
+ null,
+ -20.43662854571034,
+ -21.709865075054704,
+ null,
+ -20.43662854571034,
+ -18.98434991865462,
+ null,
+ 8.21393396333229,
+ 9.479003699248967,
+ null,
+ 13.376046786916863,
+ 15.360819858645495,
+ null,
+ -8.462507797486271,
+ -11.30389562151104,
+ null,
+ 12.493705074878276,
+ 13.553752573797507,
+ null,
+ -19.681819792477782,
+ -18.012269836447572,
+ null,
+ -19.681819792477782,
+ -20.67399971981301,
+ null,
+ 16.02685507047808,
+ 14.142723120662852,
+ null,
+ 2.104592168482062,
+ 4.158855987079716,
+ null,
+ -20.89283130051644,
+ -18.77373065630167,
+ null,
+ -17.307425668424838,
+ -18.98434991865462,
+ null,
+ -17.307425668424838,
+ -19.30823670467353,
+ null,
+ -21.494525576807252,
+ -19.333643113939573,
+ null,
+ -21.494525576807252,
+ -22.424846474687104,
+ null,
+ 10.006171063011177,
+ 10.074147960343135,
+ null,
+ 10.006171063011177,
+ 12.36789644876426,
+ null,
+ 0.21220123988181472,
+ 1.345571334092393,
+ null,
+ -20.993335047761455,
+ -18.98434991865462,
+ null,
+ -20.993335047761455,
+ -19.30823670467353,
+ null,
+ -1.3818741523014602,
+ -3.765932094845125,
+ null,
+ 6.719216204864578,
+ 8.450856515397396,
+ null,
+ 6.719216204864578,
+ 8.034520839978383,
+ null,
+ -17.469818897962714,
+ -14.827710046890484,
+ null,
+ -17.469818897962714,
+ -15.483504593073866,
+ null,
+ 15.50842228219919,
+ 16.917009682577252,
+ null,
+ 15.50842228219919,
+ 16.710656712387618,
+ null,
+ 4.681434482402857,
+ 4.931777769677826,
+ null,
+ 9.082369476186,
+ 8.423106436504714,
+ null,
+ 11.790746027326676,
+ 9.362651807048024,
+ null,
+ -16.88850776851199,
+ -16.196594781142146,
+ null,
+ -16.88850776851199,
+ -17.09384139910882,
+ null,
+ -8.459815579199368,
+ -6.3020986051103085,
+ null,
+ -13.712982036242966,
+ -15.512660010110848,
+ null,
+ -13.712982036242966,
+ -16.253458215614497,
+ null,
+ -9.13963699288518,
+ -11.30389562151104,
+ null,
+ 10.555938436544011,
+ 9.216705572804882,
+ null,
+ -6.3910984391749635,
+ -5.90915471623139,
+ null,
+ -14.409926567080209,
+ -16.196594781142146,
+ null,
+ -14.409926567080209,
+ -12.491614119138562,
+ null,
+ -12.98892143086912,
+ -11.30389562151104,
+ null,
+ 10.932611287510872,
+ 10.608264638226434,
+ null,
+ -18.68338908240872,
+ -18.77373065630167,
+ null,
+ -12.620772053109167,
+ -14.002763598385519,
+ null,
+ -12.620772053109167,
+ -11.207167007021848,
+ null,
+ -7.01079485915003,
+ -8.223763239439526,
+ null,
+ -16.196594781142146,
+ -16.253458215614497,
+ null,
+ -16.196594781142146,
+ -15.512660010110848,
+ null,
+ -18.49803243754904,
+ -15.512660010110848,
+ null,
+ -3.709575119780668,
+ -5.492779155501329,
+ null,
+ -7.296028518713889,
+ -6.7591565356014,
+ null,
+ -15.80676283008967,
+ -14.002763598385519,
+ null,
+ -15.80676283008967,
+ -17.76062376092856,
+ null,
+ -6.298434965886316,
+ -7.997026832563643,
+ null,
+ 7.093355773757125,
+ 8.541739412405914,
+ null,
+ -17.4962316246469,
+ -20.004160335697236,
+ null,
+ 11.690563392102176,
+ 9.60797710877932,
+ null,
+ -15.116993281123253,
+ -15.512660010110848,
+ null,
+ -15.116993281123253,
+ -16.253458215614497,
+ null,
+ -3.034696504248963,
+ -0.9552211375723392,
+ null,
+ -13.908851939488352,
+ -16.06949059338767,
+ null,
+ 4.133263320515565,
+ 5.5986955025103615,
+ null,
+ -9.379632668231089,
+ -9.801914302966575,
+ null,
+ -9.379632668231089,
+ -6.387257207079732,
+ null,
+ -3.7125233612740947,
+ -6.387257207079732,
+ null,
+ -3.7125233612740947,
+ -2.979824350857239,
+ null,
+ 3.947054364112706,
+ 4.182109903014407,
+ null,
+ 15.897727748859731,
+ 14.913534821560878,
+ null,
+ 15.897727748859731,
+ 16.0907165727309,
+ null,
+ -20.177657876026064,
+ -18.012269836447572,
+ null,
+ -20.177657876026064,
+ -20.67399971981301,
+ null,
+ -4.706734631277135,
+ -6.387257207079732,
+ null,
+ -4.00309733359404,
+ -6.3020986051103085,
+ null,
+ -19.651474048276775,
+ -17.208626664696368,
+ null,
+ -1.4923075915022013,
+ -2.651460477752816,
+ null,
+ -5.608873812184631,
+ -3.122504065930367,
+ null,
+ -5.608873812184631,
+ -7.297077243601035,
+ null,
+ 3.1332077429638634,
+ 6.282395561912272,
+ null,
+ 3.1332077429638634,
+ 0.05304739933493979,
+ null,
+ 14.09475540936056,
+ 14.52797473671664,
+ null,
+ 14.09475540936056,
+ 12.782916372914405,
+ null,
+ -11.766265266493022,
+ -11.67638321800429,
+ null,
+ 11.49537123276815,
+ 9.900486173985867,
+ null,
+ 4.46094807351154,
+ 6.7117061951169745,
+ null,
+ -22.038311752593305,
+ -22.424846474687104,
+ null,
+ -22.038311752593305,
+ -19.333643113939573,
+ null,
+ -9.119484339706066,
+ -11.222157816000808,
+ null,
+ -9.119484339706066,
+ -7.297077243601035,
+ null,
+ -12.77939001745422,
+ -11.30389562151104,
+ null,
+ 13.787941597861545,
+ 16.55342736700985,
+ null,
+ 13.787941597861545,
+ 15.207573339010693,
+ null,
+ -13.61492915791775,
+ -16.133541414710997,
+ null,
+ -20.343425721138352,
+ -18.77373065630167,
+ null,
+ -19.1453352760063,
+ -21.192548496878892,
+ null,
+ -10.728995901369837,
+ -11.30389562151104,
+ null,
+ -13.61492915791775,
+ -12.827619657844297,
+ null,
+ -12.261340069009742,
+ -9.935989549568063,
+ null,
+ -7.9391584995377364,
+ -6.387257207079732,
+ null,
+ -7.9391584995377364,
+ -7.297077243601035,
+ null,
+ -8.695070081779994,
+ -9.935989549568063,
+ null,
+ -12.800156967487696,
+ -14.827710046890484,
+ null,
+ -12.800156967487696,
+ -15.483504593073866,
+ null,
+ -15.292661853197743,
+ -14.827710046890484,
+ null,
+ -15.292661853197743,
+ -15.483504593073866,
+ null,
+ -5.03321986359075,
+ -7.297077243601035,
+ null,
+ -5.03321986359075,
+ -2.979824350857239,
+ null,
+ -12.17454724263504,
+ -14.827710046890484,
+ null,
+ -12.17454724263504,
+ -11.421331187302464,
+ null,
+ -18.17962214270138,
+ -19.236373535869173,
+ null,
+ -18.17962214270138,
+ -15.483504593073866,
+ null,
+ 1.4502256073328483,
+ 3.784022178353783,
+ null,
+ -17.779940043559343,
+ -20.286273678708202,
+ null,
+ -17.779940043559343,
+ -19.227328493292394,
+ null,
+ -21.135681044425418,
+ -18.77373065630167,
+ null,
+ -4.645162072696039,
+ -2.889253833789248,
+ null,
+ -4.645162072696039,
+ -7.00867095864509,
+ null,
+ -7.347029070418839,
+ -8.165134748977561,
+ null,
+ -7.347029070418839,
+ -8.31123907060137,
+ null,
+ -7.527058336170182,
+ -8.165134748977561,
+ null,
+ -1.9964816595471717,
+ -3.45112685549332,
+ null,
+ -1.9964816595471717,
+ -2.979824350857239,
+ null,
+ -7.823569674801347,
+ -7.581652107499191,
+ null,
+ -14.593758817239356,
+ -14.827710046890484,
+ null,
+ -14.593758817239356,
+ -15.483504593073866,
+ null,
+ -9.279228283652973,
+ -7.763126090292656,
+ null,
+ -13.45733067489019,
+ -14.827710046890484,
+ null,
+ -13.45733067489019,
+ -15.483504593073866,
+ null,
+ -16.656508006139845,
+ -14.827710046890484,
+ null,
+ -16.656508006139845,
+ -15.483504593073866,
+ null,
+ -0.6624460657751019,
+ -1.6670677064266997,
+ null,
+ -1.9964816595471717,
+ -0.6624460657751019,
+ null,
+ -0.6624460657751019,
+ -2.979824350857239,
+ null,
+ -1.6670677064266997,
+ -3.45112685549332,
+ null,
+ -1.6670677064266997,
+ -2.979824350857239,
+ null,
+ -16.923732291878377,
+ -14.827710046890484,
+ null,
+ -16.923732291878377,
+ -15.483504593073866,
+ null,
+ -13.432933117193492,
+ -14.827710046890484,
+ null,
+ -13.432933117193492,
+ -15.483504593073866,
+ null,
+ -12.716616283024235,
+ -11.30389562151104,
+ null,
+ -12.576267823874279,
+ -11.222157816000808,
+ null,
+ -4.988851174421002,
+ -8.31123907060137,
+ null,
+ -4.988851174421002,
+ -2.979824350857239,
+ null,
+ -16.196594781142146,
+ -18.604913420528128,
+ null,
+ -14.219844714485582,
+ -14.827710046890484,
+ null,
+ -14.219844714485582,
+ -15.483504593073866,
+ null,
+ -5.49676867848029,
+ -6.810269075767733,
+ null,
+ -5.49676867848029,
+ -7.00867095864509,
+ null,
+ -1.782262802725937,
+ -3.45112685549332,
+ null,
+ -1.782262802725937,
+ -2.979824350857239,
+ null,
+ -6.043547508660142,
+ -8.165134748977561,
+ null,
+ -6.043547508660142,
+ -3.45112685549332,
+ null,
+ -16.187835821681944,
+ -14.827710046890484,
+ null,
+ -16.187835821681944,
+ -15.483504593073866,
+ null,
+ -17.55721376048522,
+ -14.827710046890484,
+ null,
+ -17.55721376048522,
+ -15.483504593073866,
+ null,
+ -9.903426371738261,
+ -7.763126090292656,
+ null,
+ -15.42783370989261,
+ -14.827710046890484,
+ null,
+ -15.42783370989261,
+ -15.483504593073866,
+ null,
+ -8.70931314589988,
+ -8.467677097413748,
+ null,
+ 12.357392504358657,
+ 13.055924620493657,
+ null,
+ -8.7260826919713,
+ -11.30389562151104,
+ null,
+ 4.065662271629381,
+ 2.401716763258838,
+ null,
+ 11.294776229121352,
+ 13.186981664800506,
+ null,
+ -4.877931126317019,
+ -6.154949374809172,
+ null,
+ 10.735464773050758,
+ 11.682472035258993,
+ null,
+ 1.9766510721255532,
+ -0.2904245132883371,
+ null,
+ -14.105337760358532,
+ -11.30389562151104,
+ null,
+ 1.2006505986338571,
+ -0.4066190229151898,
+ null,
+ -3.6207033444239403,
+ -6.089232444725925,
+ null,
+ -14.257892192218716,
+ -16.171254207712238,
+ null,
+ -14.257892192218716,
+ -12.641486554711227,
+ null,
+ -8.873848187901249,
+ -8.924539853173204,
+ null,
+ -8.587682700115721,
+ -11.30389562151104,
+ null,
+ 4.143478005080861,
+ 2.6594948351133105,
+ null,
+ -14.257892192218716,
+ -16.49575122113392,
+ null,
+ -16.49575122113392,
+ -17.399809247665026,
+ null,
+ -7.341442978207376,
+ -6.089232444725925,
+ null,
+ 13.518267765132038,
+ 12.946886580090768,
+ null,
+ 3.3062214109117107,
+ 0.9296285821773804,
+ null,
+ -10.550472542112104,
+ -8.165134748977561,
+ null,
+ -10.550472542112104,
+ -8.31123907060137,
+ null,
+ -13.43842367977979,
+ -14.827710046890484,
+ null,
+ -17.775724172886815,
+ -18.77373065630167,
+ null,
+ -16.88866457323332,
+ -18.77373065630167,
+ null,
+ -20.078458535264446,
+ -18.77373065630167,
+ null,
+ -13.609089026692189,
+ -12.78697697521233,
+ null,
+ 15.214928548030311,
+ 13.454883339680299,
+ null,
+ -4.696595772523521,
+ -5.335036210575371,
+ null,
+ -11.034798616634593,
+ -12.918878789025223,
+ null,
+ -11.034798616634593,
+ -8.786027517833004,
+ null,
+ -15.133094058459976,
+ -13.073799543345432,
+ null,
+ 12.062508703553217,
+ 13.525214186802927,
+ null,
+ 12.264858481554377,
+ 14.1424983821946,
+ null,
+ 12.264858481554377,
+ 14.568357886697154,
+ null,
+ 8.160790367423271,
+ 6.364427526291246,
+ null,
+ -14.017523904948444,
+ -11.30389562151104,
+ null,
+ -9.351947080727468,
+ -11.30389562151104,
+ null,
+ -21.044655379361654,
+ -18.77373065630167,
+ null,
+ -11.812617437253277,
+ -13.422176469509925,
+ null,
+ -11.812617437253277,
+ -13.775765496084412,
+ null,
+ -16.66777117612361,
+ -18.77373065630167,
+ null,
+ 4.854968322661051,
+ 8.387901149093713,
+ null,
+ -0.8717312459872724,
+ -3.2021831256890922,
+ null,
+ -15.864865885806555,
+ -18.77373065630167,
+ null,
+ -10.341430318799459,
+ -12.174437423792877,
+ null,
+ -10.341430318799459,
+ -13.131805829829121,
+ null,
+ 4.854968322661051,
+ 6.364427526291246,
+ null,
+ -9.779926270341624,
+ -11.222157816000808,
+ null,
+ -9.779926270341624,
+ -7.297077243601035,
+ null,
+ 12.007482847799901,
+ 14.470594296805228,
+ null,
+ 5.837901720619523,
+ 3.784022178353783,
+ null,
+ 13.238289425446844,
+ 15.9435485636315,
+ null,
+ 13.238289425446844,
+ 14.568357886697154,
+ null,
+ -14.892826048440316,
+ -16.9272715960945,
+ null,
+ 8.856427933715622,
+ 11.276910781514232,
+ null,
+ 4.463646735471876,
+ 5.030557141304843,
+ null,
+ -9.319094966806064,
+ -11.30389562151104,
+ null,
+ 5.54577061950271,
+ 3.784022178353783,
+ null,
+ 7.434816853042825,
+ 5.281623231902232,
+ null,
+ 7.434816853042825,
+ 9.463974500180829,
+ null,
+ 4.419861800187942,
+ 6.91603816914483,
+ null,
+ 8.13056547226624,
+ 10.087304118769962,
+ null,
+ 8.13056547226624,
+ 6.91603816914483,
+ null,
+ -18.90667680998491,
+ -16.26485387584271,
+ null,
+ -18.90667680998491,
+ -18.539285817819707,
+ null,
+ 12.088650427686154,
+ 12.36789644876426,
+ null,
+ 12.088650427686154,
+ 10.074147960343135,
+ null,
+ -16.51737999240955,
+ -17.621025032978338,
+ null,
+ -21.808337431736717,
+ -20.63061229727116,
+ null,
+ -21.808337431736717,
+ -22.0372705783538,
+ null,
+ 10.99395947595549,
+ 13.652308260668319,
+ null,
+ 10.99395947595549,
+ 13.554212564980395,
+ null,
+ 12.56133355227103,
+ 13.652308260668319,
+ null,
+ 12.56133355227103,
+ 13.554212564980395,
+ null,
+ 10.346063966531668,
+ 12.36789644876426,
+ null,
+ 10.346063966531668,
+ 10.074147960343135,
+ null,
+ 10.346063966531668,
+ 11.262722144984231,
+ null,
+ 15.372542787508928,
+ 13.652308260668319,
+ null,
+ 15.372542787508928,
+ 13.554212564980395,
+ null,
+ 11.817896192030677,
+ 13.652308260668319,
+ null,
+ 11.817896192030677,
+ 13.554212564980395,
+ null,
+ 3.856271667229114,
+ 1.0820851096858084,
+ null,
+ 13.994654703623123,
+ 13.652308260668319,
+ null,
+ 13.994654703623123,
+ 13.554212564980395,
+ null,
+ 2.9343925315942663,
+ 0.3351226422782401,
+ null,
+ 12.534847587601611,
+ 11.257550918740437,
+ null,
+ 12.534847587601611,
+ 10.074147960343135,
+ null,
+ 12.534847587601611,
+ 14.81007903132706,
+ null,
+ 13.857943359616616,
+ 13.16529376284697,
+ null,
+ 13.857943359616616,
+ 13.055924620493657,
+ null,
+ 9.554993646994419,
+ 11.747579677576784,
+ null,
+ -19.082548783402974,
+ -17.230274581024116,
+ null,
+ -19.082548783402974,
+ -20.99368417153712,
+ null,
+ 9.818094885655874,
+ 11.257550918740437,
+ null,
+ 13.019268697290483,
+ 11.039454894775762,
+ null,
+ 13.019268697290483,
+ 13.554212564980395,
+ null,
+ 3.036991151725595,
+ 5.448264249663503,
+ null,
+ 3.036991151725595,
+ 0.8433811243550915,
+ null,
+ 15.638529308307785,
+ 13.652308260668319,
+ null,
+ 15.638529308307785,
+ 13.554212564980395,
+ null,
+ -15.120708026130123,
+ -13.12269150574086,
+ null,
+ -15.120708026130123,
+ -15.084685984163059,
+ null,
+ 14.47648272320709,
+ 13.652308260668319,
+ null,
+ 14.47648272320709,
+ 13.554212564980395,
+ null,
+ 11.259746152967812,
+ 13.652308260668319,
+ null,
+ 11.259746152967812,
+ 13.554212564980395,
+ null,
+ -1.3794830129963682,
+ 1.001446291610431,
+ null,
+ -1.3794830129963682,
+ -2.979824350857239,
+ null,
+ 16.026250170033155,
+ 13.652308260668319,
+ null,
+ 16.026250170033155,
+ 13.554212564980395,
+ null,
+ 15.564078242959852,
+ 16.034607951559245,
+ null,
+ 15.564078242959852,
+ 14.646230575375679,
+ null,
+ 9.046492633179005,
+ 10.746949145559208,
+ null,
+ 8.482889237255252,
+ 10.746949145559208,
+ null,
+ 13.13334138439849,
+ 12.36789644876426,
+ null,
+ 13.13334138439849,
+ 11.257550918740437,
+ null,
+ 4.922850862135011,
+ 2.0750960065294444,
+ null,
+ 4.922850862135011,
+ 1.9210624105784522,
+ null,
+ -0.7961280922069971,
+ 2.0750960065294444,
+ null,
+ -0.7961280922069971,
+ 1.9210624105784522,
+ null,
+ -0.4996169964954393,
+ 1.9210624105784522,
+ null,
+ -0.4996169964954393,
+ 2.0750960065294444,
+ null,
+ 0.05568140637087626,
+ 2.0750960065294444,
+ null,
+ 0.05568140637087626,
+ 1.9210624105784522,
+ null,
+ 3.903929720733026,
+ 2.0750960065294444,
+ null,
+ 3.903929720733026,
+ 1.9210624105784522,
+ null,
+ -0.46294198742947523,
+ 2.0750960065294444,
+ null,
+ -0.46294198742947523,
+ 1.9210624105784522,
+ null,
+ 3.6953497415283403,
+ 2.0750960065294444,
+ null,
+ 3.6953497415283403,
+ 1.9210624105784522,
+ null,
+ 0.18662774037102353,
+ 2.0750960065294444,
+ null,
+ 0.18662774037102353,
+ 1.9210624105784522,
+ null,
+ -9.818550566141576,
+ -11.30389562151104,
+ null,
+ 10.55842539554966,
+ 10.746949145559208,
+ null,
+ 3.678222001524373,
+ 1.9210624105784522,
+ null,
+ 3.678222001524373,
+ 2.0750960065294444,
+ null,
+ 0.053550297367818356,
+ 1.9210624105784522,
+ null,
+ 0.856621852687763,
+ 1.9210624105784522,
+ null,
+ 1.3912104527253701,
+ 2.0750960065294444,
+ null,
+ 1.3912104527253701,
+ 1.9210624105784522,
+ null,
+ -0.4770555615368528,
+ 2.0750960065294444,
+ null,
+ -0.4770555615368528,
+ 1.9210624105784522,
+ null,
+ 2.615400798349391,
+ 2.0750960065294444,
+ null,
+ 4.267118850106493,
+ 2.0750960065294444,
+ null,
+ 4.267118850106493,
+ 1.9210624105784522,
+ null,
+ 0.19554905389570348,
+ 2.0750960065294444,
+ null,
+ 0.19554905389570348,
+ 1.9210624105784522,
+ null,
+ 2.9394073765534405,
+ 2.0750960065294444,
+ null,
+ 2.9394073765534405,
+ 1.9210624105784522,
+ null,
+ 11.767112148395785,
+ 10.746949145559208,
+ null,
+ 14.833519421498904,
+ 12.36789644876426,
+ null,
+ 0.7384287997164202,
+ 2.0750960065294444,
+ null,
+ 0.7384287997164202,
+ 1.9210624105784522,
+ null,
+ 1.5156603317139905,
+ 1.9210624105784522,
+ null,
+ -0.3322021397899909,
+ 1.9210624105784522,
+ null,
+ -0.3322021397899909,
+ 2.0750960065294444,
+ null,
+ 5.1789753436846775,
+ 2.0750960065294444,
+ null,
+ 5.1789753436846775,
+ 1.9210624105784522,
+ null,
+ 2.6724256762134506,
+ 2.0750960065294444,
+ null,
+ 2.6724256762134506,
+ 1.9210624105784522,
+ null,
+ 1.8367614336416924,
+ 1.9210624105784522,
+ null,
+ 1.8367614336416924,
+ 2.0750960065294444,
+ null,
+ -0.45136395640744087,
+ 1.9210624105784522,
+ null,
+ 8.81221207135692,
+ 10.746949145559208,
+ null,
+ 15.619567609992188,
+ 14.568357886697154,
+ null,
+ 0.6600766914421633,
+ 2.0750960065294444,
+ null,
+ 0.6600766914421633,
+ 1.9210624105784522,
+ null,
+ 2.504070335996154,
+ 2.0750960065294444,
+ null,
+ 2.504070335996154,
+ 1.9210624105784522,
+ null,
+ 5.036301217583687,
+ 2.0750960065294444,
+ null,
+ 5.036301217583687,
+ 1.9210624105784522,
+ null,
+ 10.125420984567317,
+ 10.746949145559208,
+ null,
+ 2.3475194746754497,
+ 1.9210624105784522,
+ null,
+ 2.3475194746754497,
+ 2.0750960065294444,
+ null,
+ 1.8578277047182765,
+ 2.0750960065294444,
+ null,
+ 1.8578277047182765,
+ 1.9210624105784522,
+ null,
+ 16.22703998820127,
+ 17.091860288961655,
+ null,
+ 10.330950595269826,
+ 10.746949145559208,
+ null,
+ -2.7658971358148947,
+ -4.8014607974495505,
+ null,
+ -2.7658971358148947,
+ -4.121682094168807,
+ null,
+ -1.3469441536515045,
+ 2.0750960065294444,
+ null,
+ -1.3469441536515045,
+ 1.9210624105784522,
+ null,
+ 1.1884262032218091,
+ 2.0750960065294444,
+ null,
+ 1.1884262032218091,
+ 1.9210624105784522,
+ null,
+ 1.34723325947132,
+ 2.0750960065294444,
+ null,
+ 1.34723325947132,
+ 1.9210624105784522,
+ null,
+ -7.899634721756038,
+ -9.211712305067408,
+ null,
+ 13.436293495916102,
+ 10.746949145559208,
+ null,
+ 4.876856900595087,
+ 2.0750960065294444,
+ null,
+ 4.876856900595087,
+ 1.9210624105784522,
+ null,
+ 2.2165170496703444,
+ 1.9210624105784522,
+ null,
+ 2.2165170496703444,
+ 2.0750960065294444,
+ null,
+ 4.688434393568661,
+ 2.0750960065294444,
+ null,
+ 4.688434393568661,
+ 1.9210624105784522,
+ null,
+ 1.5781068877957782,
+ 1.9210624105784522,
+ null,
+ 10.664924867260249,
+ 10.746949145559208,
+ null,
+ -1.9650770136308156,
+ -0.9647141359114324,
+ null,
+ 3.4031726727872074,
+ 2.0750960065294444,
+ null,
+ 3.4031726727872074,
+ 1.9210624105784522,
+ null,
+ 4.46791567217323,
+ 2.0750960065294444,
+ null,
+ 4.46791567217323,
+ 1.9210624105784522,
+ null,
+ 2.423269620133291,
+ 1.9210624105784522,
+ null,
+ -1.3214351689180779,
+ 2.0750960065294444,
+ null,
+ -1.3214351689180779,
+ 1.9210624105784522,
+ null,
+ -0.6852965869211495,
+ 2.0750960065294444,
+ null,
+ -0.6852965869211495,
+ 1.9210624105784522,
+ null,
+ 1.5519172594409865,
+ 2.0750960065294444,
+ null,
+ -14.833371203957313,
+ -12.770043278028636,
+ null,
+ 3.3083445120368262,
+ 2.0750960065294444,
+ null,
+ 3.3083445120368262,
+ 1.9210624105784522,
+ null,
+ 3.2264285628784295,
+ 2.0750960065294444,
+ null,
+ 3.2264285628784295,
+ 1.9210624105784522,
+ null,
+ 2.4091441663593947,
+ 1.9210624105784522,
+ null,
+ -1.068433738119321,
+ 2.0750960065294444,
+ null,
+ -1.068433738119321,
+ 1.9210624105784522,
+ null,
+ 5.2801480504009435,
+ 2.0750960065294444,
+ null,
+ 5.2801480504009435,
+ 1.9210624105784522,
+ null,
+ -22.29012892624258,
+ -22.14947240734907,
+ null,
+ -20.36215617292208,
+ -21.662760215424292,
+ null,
+ 7.913823981349797,
+ 10.042245008033184,
+ null,
+ 13.222084019474261,
+ 10.746949145559208,
+ null,
+ 12.138422273046151,
+ 10.746949145559208,
+ null,
+ -0.67044427073447,
+ 2.0750960065294444,
+ null,
+ -0.67044427073447,
+ 1.9210624105784522,
+ null,
+ 3.023087990068201,
+ 2.0750960065294444,
+ null,
+ 3.023087990068201,
+ 1.9210624105784522,
+ null,
+ 3.5667918078441505,
+ 1.9210624105784522,
+ null,
+ 4.259583645214979,
+ 1.9210624105784522,
+ null,
+ 4.259583645214979,
+ 2.0750960065294444,
+ null,
+ 9.10959051456911,
+ 9.00591792915805,
+ null,
+ -6.382156388167953,
+ -8.114924620385013,
+ null,
+ -6.382156388167953,
+ -4.09014144613155,
+ null,
+ 0.2433322479630976,
+ 2.0750960065294444,
+ null,
+ 0.2433322479630976,
+ 1.9210624105784522,
+ null,
+ 0.02380349387082925,
+ 2.0750960065294444,
+ null,
+ 0.02380349387082925,
+ 1.9210624105784522,
+ null,
+ 8.699575474266641,
+ 10.746949145559208,
+ null,
+ 12.517071438970168,
+ 10.746949145559208,
+ null,
+ -1.146229319688388,
+ 1.9210624105784522,
+ null,
+ 3.9370581924207073,
+ 2.0750960065294444,
+ null,
+ 3.9370581924207073,
+ 1.9210624105784522,
+ null,
+ 0.5444623587075397,
+ 1.9210624105784522,
+ null,
+ 4.0915415204171675,
+ 2.0750960065294444,
+ null,
+ 4.0915415204171675,
+ 1.9210624105784522,
+ null,
+ 4.545978277158587,
+ 1.9210624105784522,
+ null,
+ 4.545978277158587,
+ 2.0750960065294444,
+ null,
+ 3.4401847524258296,
+ 1.9210624105784522,
+ null,
+ 4.94332601132337,
+ 2.0750960065294444,
+ null,
+ 4.94332601132337,
+ 1.9210624105784522,
+ null,
+ -1.192610228575491,
+ 2.0750960065294444,
+ null,
+ -1.192610228575491,
+ 1.9210624105784522,
+ null,
+ 4.507364771453263,
+ 2.0750960065294444,
+ null,
+ 4.507364771453263,
+ 1.9210624105784522,
+ null,
+ 1.031823335220865,
+ 2.0750960065294444,
+ null,
+ 1.031823335220865,
+ 1.9210624105784522,
+ null,
+ 0.7348280496172432,
+ 2.0750960065294444,
+ null,
+ 0.7348280496172432,
+ 1.9210624105784522,
+ null,
+ 3.634152715842353,
+ 2.0750960065294444,
+ null,
+ 16.329629911080218,
+ 17.441033667083897,
+ null,
+ 16.329629911080218,
+ 14.210332439646615,
+ null,
+ -3.1009710458980595,
+ -5.205440506820717,
+ null,
+ -20.811748719318366,
+ -22.424846474687104,
+ null,
+ -20.811748719318366,
+ -19.333643113939573,
+ null,
+ -12.895238590095774,
+ -15.6485410514355,
+ null,
+ -17.002840880938518,
+ -17.602424048420065,
+ null,
+ -17.002840880938518,
+ -19.333643113939573,
+ null,
+ -18.003098440617467,
+ -17.602424048420065,
+ null,
+ -18.003098440617467,
+ -19.333643113939573,
+ null,
+ 16.701297491241327,
+ 16.452169485318528,
+ null,
+ -12.480679773055163,
+ -10.315126466090584,
+ null,
+ -7.382931085378695,
+ -9.645100687981396,
+ null,
+ -19.421273330321846,
+ -18.77373065630167,
+ null,
+ -20.691366867499276,
+ -19.211557661416975,
+ null,
+ -9.645100687981396,
+ -11.574766578920022,
+ null,
+ -19.88295886227899,
+ -22.424846474687104,
+ null,
+ -19.88295886227899,
+ -19.333643113939573,
+ null,
+ -1.9168963496698936,
+ -2.836225991117213,
+ null,
+ -10.390701474402691,
+ -11.30389562151104,
+ null,
+ 1.5398298287809027,
+ 3.525145431665082,
+ null,
+ 3.0899835481113476,
+ 5.369682545555909,
+ null,
+ -9.922275324532277,
+ -7.233663409839164,
+ null,
+ -19.826918228187647,
+ -17.602424048420065,
+ null,
+ -19.826918228187647,
+ -19.333643113939573,
+ null,
+ -1.557939548523383,
+ -3.830378203270949,
+ null,
+ -8.463521824269321,
+ -8.70415109596094,
+ null,
+ -8.011035787283092,
+ -5.564640261992574,
+ null,
+ -12.78697697521233,
+ -11.30389562151104,
+ null,
+ -9.305441849488401,
+ -11.30389562151104,
+ null,
+ 1.8524320463766142,
+ -0.24304139083144172,
+ null,
+ 1.8524320463766142,
+ 4.5578433839924655,
+ null,
+ -11.773686494743433,
+ -11.30389562151104,
+ null,
+ -17.665719101726783,
+ -20.286273678708202,
+ null,
+ -17.665719101726783,
+ -19.227328493292394,
+ null,
+ -14.072787864498226,
+ -11.30389562151104,
+ null,
+ -11.097063964411257,
+ -11.30389562151104,
+ null,
+ -13.61492915791775,
+ -11.30389562151104,
+ null,
+ -21.62141110792667,
+ -20.286273678708202,
+ null,
+ -21.62141110792667,
+ -19.227328493292394,
+ null,
+ -20.386059685612544,
+ -20.286273678708202,
+ null,
+ -11.094633503074649,
+ -8.644619795574375,
+ null,
+ -11.094633503074649,
+ -12.01044336192099,
+ null,
+ 4.5578433839924655,
+ 3.5635661792162865,
+ null,
+ 4.5578433839924655,
+ 6.0655381802650865,
+ null,
+ 14.117319922685468,
+ 16.27121152709186,
+ null,
+ 14.117319922685468,
+ 14.210332439646615,
+ null,
+ -20.164417924327868,
+ -20.286273678708202,
+ null,
+ 6.667110055897602,
+ 8.921549326543447,
+ null,
+ 11.890236135239256,
+ 11.940944669003084,
+ null,
+ 11.890236135239256,
+ 10.862739022277392,
+ null,
+ 11.890236135239256,
+ 10.862739022277392,
+ null,
+ -21.652278956892705,
+ -20.286273678708202,
+ null,
+ -21.652278956892705,
+ -19.227328493292394,
+ null,
+ 11.007447112644039,
+ 12.500834520805466,
+ null,
+ 11.007447112644039,
+ 8.921549326543447,
+ null,
+ -3.5930927319462813,
+ -2.834194264885367,
+ null,
+ -3.5930927319462813,
+ -4.849203406582981,
+ null,
+ -3.5930927319462813,
+ -1.8783040633672548,
+ null,
+ -3.5930927319462813,
+ -5.9138526823356266,
+ null,
+ -18.6964820290189,
+ -19.211557661416975,
+ null,
+ 3.084027228630518,
+ 1.2672067779403606,
+ null,
+ 4.5578433839924655,
+ 3.084027228630518,
+ null,
+ 0.97624240082111,
+ 1.9527502164133757,
+ null,
+ -11.766265266493022,
+ -11.30389562151104,
+ null,
+ 14.24741948194107,
+ 11.940944669003084,
+ null,
+ 14.24741948194107,
+ 15.16111670911235,
+ null,
+ -17.979596873501833,
+ -20.286273678708202,
+ null,
+ -6.820653777368942,
+ -7.228500587324407,
+ null,
+ -6.820653777368942,
+ -8.223763239439526,
+ null,
+ -10.77574769400655,
+ -12.93018385197875,
+ null,
+ -21.745942294135354,
+ -20.286273678708202,
+ null,
+ -3.531764696083626,
+ -4.130858921918941,
+ null,
+ -10.92073044683601,
+ -12.560295003820366,
+ null,
+ 14.869539287780078,
+ 12.495171965866554,
+ null,
+ -18.821957729217324,
+ -20.286273678708202,
+ null,
+ -18.821957729217324,
+ -19.227328493292394,
+ null,
+ -22.421792234858035,
+ -20.286273678708202,
+ null,
+ -6.745269020436412,
+ -9.211712305067408,
+ null,
+ -21.149513383400866,
+ -20.344640829601293,
+ null,
+ -21.149513383400866,
+ -19.211557661416975,
+ null,
+ 6.858066475130007,
+ 7.620310212411023,
+ null,
+ 4.5578433839924655,
+ 6.858066475130007,
+ null,
+ 8.104064627387435,
+ 5.971239979286481,
+ null,
+ 5.619239138287458,
+ 6.156588825490022,
+ null,
+ 5.619239138287458,
+ 8.169773290644287,
+ null,
+ -19.989999481225084,
+ -20.286273678708202,
+ null,
+ -22.614370116233452,
+ -20.286273678708202,
+ null,
+ 5.779903158930537,
+ 5.746694681873156,
+ null,
+ 4.5578433839924655,
+ 5.779903158930537,
+ null,
+ -16.51737999240955,
+ -14.690034116642924,
+ null,
+ -19.923354296149782,
+ -17.602424048420065,
+ null,
+ -19.923354296149782,
+ -17.289323099523585,
+ null,
+ -5.526254591027005,
+ -6.926326206032475,
+ null,
+ -5.526254591027005,
+ -8.098925907478591,
+ null,
+ -8.098925907478591,
+ -6.341107086583359,
+ null,
+ -8.098925907478591,
+ -9.622695772412136,
+ null,
+ -9.576328369821745,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -9.576328369821745,
+ null,
+ -18.706584753985204,
+ -17.602424048420065,
+ null,
+ -18.706584753985204,
+ -17.289323099523585,
+ null,
+ 0.48854393504266813,
+ 2.4822510615899143,
+ null,
+ -1.1039008970779172,
+ 0.8238680595058228,
+ null,
+ -14.690034116642924,
+ -15.401206383320957,
+ null,
+ -12.304562961281185,
+ -14.002763598385519,
+ null,
+ -18.06631769066562,
+ -17.621025032978338,
+ null,
+ -15.401206383320957,
+ -18.06631769066562,
+ null,
+ -15.149575442226098,
+ -17.602424048420065,
+ null,
+ -15.149575442226098,
+ -17.289323099523585,
+ null,
+ -10.871376901885002,
+ -13.073799543345432,
+ null,
+ -8.098925907478591,
+ -10.871376901885002,
+ null,
+ -7.778928421150651,
+ -6.4793879657592806,
+ null,
+ -8.098925907478591,
+ -7.778928421150651,
+ null,
+ -8.752639112894949,
+ -6.178625902126945,
+ null,
+ -8.752639112894949,
+ -8.021165590309865,
+ null,
+ -15.903931115499725,
+ -17.602424048420065,
+ null,
+ -15.903931115499725,
+ -17.289323099523585,
+ null,
+ 15.609346006545493,
+ 16.47227486042157,
+ null,
+ 1.5684760085920115,
+ 1.0597336630653893,
+ null,
+ -8.484597070741174,
+ -6.4793879657592806,
+ null,
+ -8.098925907478591,
+ -8.484597070741174,
+ null,
+ -5.358300982736624,
+ -3.239099820874423,
+ null,
+ -14.690034116642924,
+ -15.633581302070548,
+ null,
+ 10.042667039743908,
+ 11.764837233757895,
+ null,
+ -5.026990040957724,
+ -6.926326206032475,
+ null,
+ -19.098378201640987,
+ -17.602424048420065,
+ null,
+ -19.098378201640987,
+ -17.289323099523585,
+ null,
+ -14.690034116642924,
+ -12.667427561341837,
+ null,
+ -8.143815192571171,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -8.143815192571171,
+ null,
+ -17.044979383409984,
+ -17.208626664696368,
+ null,
+ -5.989201968263571,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -5.989201968263571,
+ null,
+ 2.363041898277314,
+ 4.9942257378006065,
+ null,
+ 11.077943004444244,
+ 12.698764574124928,
+ null,
+ 4.869763475100926,
+ 7.0907603766426215,
+ null,
+ -6.891484104463479,
+ -6.926326206032475,
+ null,
+ -8.098925907478591,
+ -6.891484104463479,
+ null,
+ 11.228732658549816,
+ 10.212933849734718,
+ null,
+ -11.300917366159346,
+ -11.30389562151104,
+ null,
+ -10.968335135708738,
+ -11.30389562151104,
+ null,
+ 3.562939649882624,
+ 2.3693097894164348,
+ null,
+ 3.562939649882624,
+ 5.614858725722992,
+ null,
+ -1.0682502288603475,
+ -0.09033420362344827,
+ null,
+ -9.777165755904662,
+ -11.30389562151104,
+ null,
+ 1.7239387147090457,
+ -0.29399017359151897,
+ null,
+ 3.562939649882624,
+ 1.7239387147090457,
+ null,
+ -12.871013065755452,
+ -11.864982489192727,
+ null,
+ -12.871013065755452,
+ -15.041400491254338,
+ null,
+ 14.967139301367737,
+ 17.055148995726,
+ null,
+ 14.967139301367737,
+ 16.041813776705418,
+ null,
+ -3.0291294985260704,
+ -0.7417165954447063,
+ null,
+ -13.422449302999599,
+ -11.30389562151104,
+ null,
+ -17.286588360084316,
+ -18.77373065630167,
+ null,
+ 7.9355349788978415,
+ 8.571520874518438,
+ null,
+ 7.9355349788978415,
+ 8.034520839978383,
+ null,
+ 7.9355349788978415,
+ 5.953088650224671,
+ null,
+ -17.12555340084468,
+ -19.493438139991042,
+ null,
+ -17.12555340084468,
+ -15.041400491254338,
+ null,
+ -19.59883316402109,
+ -17.680271835579358,
+ null,
+ -20.43662854571034,
+ -21.709865075054704,
+ null,
+ -20.43662854571034,
+ -18.98434991865462,
+ null,
+ 8.21393396333229,
+ 9.479003699248967,
+ null,
+ 13.376046786916863,
+ 15.360819858645495,
+ null,
+ -8.462507797486271,
+ -11.30389562151104,
+ null,
+ 12.493705074878276,
+ 13.553752573797507,
+ null,
+ -19.681819792477782,
+ -18.012269836447572,
+ null,
+ -19.681819792477782,
+ -20.67399971981301,
+ null,
+ 16.02685507047808,
+ 14.142723120662852,
+ null,
+ 2.104592168482062,
+ 4.158855987079716,
+ null,
+ -20.89283130051644,
+ -18.77373065630167,
+ null,
+ -17.307425668424838,
+ -18.98434991865462,
+ null,
+ -17.307425668424838,
+ -19.30823670467353,
+ null,
+ -21.494525576807252,
+ -19.333643113939573,
+ null,
+ -21.494525576807252,
+ -22.424846474687104,
+ null,
+ 10.006171063011177,
+ 10.074147960343135,
+ null,
+ 10.006171063011177,
+ 12.36789644876426,
+ null,
+ 0.21220123988181472,
+ 1.345571334092393,
+ null,
+ -20.993335047761455,
+ -18.98434991865462,
+ null,
+ -20.993335047761455,
+ -19.30823670467353,
+ null,
+ -1.3818741523014602,
+ -3.765932094845125,
+ null,
+ 6.719216204864578,
+ 8.450856515397396,
+ null,
+ 6.719216204864578,
+ 8.034520839978383,
+ null,
+ -17.469818897962714,
+ -14.827710046890484,
+ null,
+ -17.469818897962714,
+ -15.483504593073866,
+ null,
+ 15.50842228219919,
+ 16.917009682577252,
+ null,
+ 15.50842228219919,
+ 16.710656712387618,
+ null,
+ 4.681434482402857,
+ 4.931777769677826,
+ null,
+ 9.082369476186,
+ 8.423106436504714,
+ null,
+ 11.790746027326676,
+ 9.362651807048024,
+ null,
+ -16.88850776851199,
+ -16.196594781142146,
+ null,
+ -16.88850776851199,
+ -17.09384139910882,
+ null,
+ -8.459815579199368,
+ -6.3020986051103085,
+ null,
+ -13.712982036242966,
+ -15.512660010110848,
+ null,
+ -13.712982036242966,
+ -16.253458215614497,
+ null,
+ -9.13963699288518,
+ -11.30389562151104,
+ null,
+ 10.555938436544011,
+ 9.216705572804882,
+ null,
+ -6.3910984391749635,
+ -5.90915471623139,
+ null,
+ -14.409926567080209,
+ -16.196594781142146,
+ null,
+ -14.409926567080209,
+ -12.491614119138562,
+ null,
+ -12.98892143086912,
+ -11.30389562151104,
+ null,
+ 10.932611287510872,
+ 10.608264638226434,
+ null,
+ -18.68338908240872,
+ -18.77373065630167,
+ null,
+ -12.620772053109167,
+ -14.002763598385519,
+ null,
+ -12.620772053109167,
+ -11.207167007021848,
+ null,
+ -7.01079485915003,
+ -8.223763239439526,
+ null,
+ -16.196594781142146,
+ -16.253458215614497,
+ null,
+ -16.196594781142146,
+ -15.512660010110848,
+ null,
+ -18.49803243754904,
+ -15.512660010110848,
+ null,
+ -3.709575119780668,
+ -5.492779155501329,
+ null,
+ -7.296028518713889,
+ -6.7591565356014,
+ null,
+ -15.80676283008967,
+ -14.002763598385519,
+ null,
+ -15.80676283008967,
+ -17.76062376092856,
+ null,
+ -6.298434965886316,
+ -7.997026832563643,
+ null,
+ 7.093355773757125,
+ 8.541739412405914,
+ null,
+ -17.4962316246469,
+ -20.004160335697236,
+ null,
+ 11.690563392102176,
+ 9.60797710877932,
+ null,
+ -15.116993281123253,
+ -15.512660010110848,
+ null,
+ -15.116993281123253,
+ -16.253458215614497,
+ null,
+ -3.034696504248963,
+ -0.9552211375723392,
+ null,
+ -13.908851939488352,
+ -16.06949059338767,
+ null,
+ 4.133263320515565,
+ 5.5986955025103615,
+ null,
+ -9.379632668231089,
+ -9.801914302966575,
+ null,
+ -9.379632668231089,
+ -6.387257207079732,
+ null,
+ -3.7125233612740947,
+ -6.387257207079732,
+ null,
+ -3.7125233612740947,
+ -2.979824350857239,
+ null,
+ 3.947054364112706,
+ 4.182109903014407,
+ null,
+ 15.897727748859731,
+ 14.913534821560878,
+ null,
+ 15.897727748859731,
+ 16.0907165727309,
+ null,
+ -20.177657876026064,
+ -18.012269836447572,
+ null,
+ -20.177657876026064,
+ -20.67399971981301,
+ null,
+ -4.706734631277135,
+ -6.387257207079732,
+ null,
+ -4.00309733359404,
+ -6.3020986051103085,
+ null,
+ -19.651474048276775,
+ -17.208626664696368,
+ null,
+ -1.4923075915022013,
+ -2.651460477752816,
+ null,
+ -5.608873812184631,
+ -3.122504065930367,
+ null,
+ -5.608873812184631,
+ -7.297077243601035,
+ null,
+ 3.1332077429638634,
+ 6.282395561912272,
+ null,
+ 3.1332077429638634,
+ 0.05304739933493979,
+ null,
+ 14.09475540936056,
+ 14.52797473671664,
+ null,
+ 14.09475540936056,
+ 12.782916372914405,
+ null,
+ -11.766265266493022,
+ -11.67638321800429,
+ null,
+ 11.49537123276815,
+ 9.900486173985867,
+ null,
+ 4.46094807351154,
+ 6.7117061951169745,
+ null,
+ -22.038311752593305,
+ -22.424846474687104,
+ null,
+ -22.038311752593305,
+ -19.333643113939573,
+ null,
+ -9.119484339706066,
+ -11.222157816000808,
+ null,
+ -9.119484339706066,
+ -7.297077243601035,
+ null,
+ -12.77939001745422,
+ -11.30389562151104,
+ null,
+ 13.787941597861545,
+ 16.55342736700985,
+ null,
+ 13.787941597861545,
+ 15.207573339010693,
+ null,
+ -13.61492915791775,
+ -16.133541414710997,
+ null,
+ -20.343425721138352,
+ -18.77373065630167,
+ null,
+ -19.1453352760063,
+ -21.192548496878892,
+ null,
+ -10.728995901369837,
+ -11.30389562151104,
+ null,
+ -13.61492915791775,
+ -12.827619657844297,
+ null,
+ -12.261340069009742,
+ -9.935989549568063,
+ null,
+ -7.9391584995377364,
+ -6.387257207079732,
+ null,
+ -7.9391584995377364,
+ -7.297077243601035,
+ null,
+ -8.695070081779994,
+ -9.935989549568063,
+ null,
+ -12.800156967487696,
+ -14.827710046890484,
+ null,
+ -12.800156967487696,
+ -15.483504593073866,
+ null,
+ -15.292661853197743,
+ -14.827710046890484,
+ null,
+ -15.292661853197743,
+ -15.483504593073866,
+ null,
+ -5.03321986359075,
+ -7.297077243601035,
+ null,
+ -5.03321986359075,
+ -2.979824350857239,
+ null,
+ -12.17454724263504,
+ -14.827710046890484,
+ null,
+ -12.17454724263504,
+ -11.421331187302464,
+ null,
+ -18.17962214270138,
+ -19.236373535869173,
+ null,
+ -18.17962214270138,
+ -15.483504593073866,
+ null,
+ 1.4502256073328483,
+ 3.784022178353783,
+ null,
+ -17.779940043559343,
+ -20.286273678708202,
+ null,
+ -17.779940043559343,
+ -19.227328493292394,
+ null,
+ -21.135681044425418,
+ -18.77373065630167,
+ null,
+ -4.645162072696039,
+ -2.889253833789248,
+ null,
+ -4.645162072696039,
+ -7.00867095864509,
+ null,
+ -7.347029070418839,
+ -8.165134748977561,
+ null,
+ -7.347029070418839,
+ -8.31123907060137,
+ null,
+ -7.527058336170182,
+ -8.165134748977561,
+ null,
+ -1.9964816595471717,
+ -3.45112685549332,
+ null,
+ -1.9964816595471717,
+ -2.979824350857239,
+ null,
+ -7.823569674801347,
+ -7.581652107499191,
+ null,
+ -14.593758817239356,
+ -14.827710046890484,
+ null,
+ -14.593758817239356,
+ -15.483504593073866,
+ null,
+ -9.279228283652973,
+ -7.763126090292656,
+ null,
+ -13.45733067489019,
+ -14.827710046890484,
+ null,
+ -13.45733067489019,
+ -15.483504593073866,
+ null,
+ -16.656508006139845,
+ -14.827710046890484,
+ null,
+ -16.656508006139845,
+ -15.483504593073866,
+ null,
+ -0.6624460657751019,
+ -1.6670677064266997,
+ null,
+ -1.9964816595471717,
+ -0.6624460657751019,
+ null,
+ -0.6624460657751019,
+ -2.979824350857239,
+ null,
+ -1.6670677064266997,
+ -3.45112685549332,
+ null,
+ -1.6670677064266997,
+ -2.979824350857239,
+ null,
+ -16.923732291878377,
+ -14.827710046890484,
+ null,
+ -16.923732291878377,
+ -15.483504593073866,
+ null,
+ -13.432933117193492,
+ -14.827710046890484,
+ null,
+ -13.432933117193492,
+ -15.483504593073866,
+ null,
+ -12.716616283024235,
+ -11.30389562151104,
+ null,
+ -12.576267823874279,
+ -11.222157816000808,
+ null,
+ -4.988851174421002,
+ -8.31123907060137,
+ null,
+ -4.988851174421002,
+ -2.979824350857239,
+ null,
+ -16.196594781142146,
+ -18.604913420528128,
+ null,
+ -14.219844714485582,
+ -14.827710046890484,
+ null,
+ -14.219844714485582,
+ -15.483504593073866,
+ null,
+ -5.49676867848029,
+ -6.810269075767733,
+ null,
+ -5.49676867848029,
+ -7.00867095864509,
+ null,
+ -1.782262802725937,
+ -3.45112685549332,
+ null,
+ -1.782262802725937,
+ -2.979824350857239,
+ null,
+ -6.043547508660142,
+ -8.165134748977561,
+ null,
+ -6.043547508660142,
+ -3.45112685549332,
+ null,
+ -16.187835821681944,
+ -14.827710046890484,
+ null,
+ -16.187835821681944,
+ -15.483504593073866,
+ null,
+ -17.55721376048522,
+ -14.827710046890484,
+ null,
+ -17.55721376048522,
+ -15.483504593073866,
+ null,
+ -9.903426371738261,
+ -7.763126090292656,
+ null,
+ -15.42783370989261,
+ -14.827710046890484,
+ null,
+ -15.42783370989261,
+ -15.483504593073866,
+ null
],
+ "y": [
+ -11.41784983119164,
+ -8.962574775452547,
+ null,
+ -0.3191505947266975,
+ -2.604066672961298,
+ null,
+ 14.563425157507346,
+ 16.078387958536506,
+ null,
+ -14.928767740995028,
+ -16.360725881299764,
+ null,
+ 12.441412417665292,
+ 13.839564531885683,
+ null,
+ 7.376415353965956,
+ 9.174864958103376,
+ null,
+ 3.1129060197666063,
+ 4.919768640720008,
+ null,
+ 2.4908144892083617,
+ 4.2130750579698475,
+ null,
+ 15.021482056662148,
+ 16.078387958536506,
+ null,
+ 5.897594291101676,
+ 4.101848982924817,
+ null,
+ 9.169651932528753,
+ 9.690925923418042,
+ null,
+ -11.095225685990275,
+ -11.744992766532496,
+ null,
+ -11.095225685990275,
+ -12.698211541781175,
+ null,
+ 6.693421850634913,
+ 4.194904762733609,
+ null,
+ 17.163084400516215,
+ 16.078387958536506,
+ null,
+ -6.199672663045915,
+ -4.106378991622533,
+ null,
+ -11.095225685990275,
+ -9.54475726221417,
+ null,
+ -9.54475726221417,
+ -7.400154004532124,
+ null,
+ 7.606682919608337,
+ 9.690925923418042,
+ null,
+ -8.643131136849384,
+ -6.6930990946675495,
+ null,
+ 4.4281959742181645,
+ 3.4439382386814943,
+ null,
+ -13.039917034599503,
+ -12.302528127312577,
+ null,
+ -13.039917034599503,
+ -13.292069671287392,
+ null,
+ -13.354513757095816,
+ -10.774500868334462,
+ null,
+ 11.615308535874595,
+ 8.990022300149276,
+ null,
+ 8.319431909230527,
+ 8.990022300149276,
+ null,
+ 6.747021989871167,
+ 8.990022300149276,
+ null,
+ 20.151129500861902,
+ 18.154860779828756,
+ null,
+ -1.014117560634313,
+ -0.04352563651214125,
+ null,
+ 4.085374440780235,
+ 1.6391872487208237,
+ null,
+ 1.6983783682866247,
+ 0.504982924224546,
+ null,
+ 1.6983783682866247,
+ 1.920744405013267,
+ null,
+ 17.704182771702758,
+ 18.28180496454909,
+ null,
+ -1.836988980241852,
+ -3.8614397542849295,
+ null,
+ -5.410646669470725,
+ -6.859599605804259,
+ null,
+ -5.410646669470725,
+ -3.4534760131959032,
+ null,
+ 5.905584742205971,
+ 5.616088042149204,
+ null,
+ 16.9116407836773,
+ 16.078387958536506,
+ null,
+ 13.909649050767086,
+ 16.078387958536506,
+ null,
+ 7.392943235225893,
+ 8.990022300149276,
+ null,
+ -9.191426851740902,
+ -7.0968268976059985,
+ null,
+ -9.191426851740902,
+ -11.01675292462399,
+ null,
+ 10.566212120275992,
+ 8.990022300149276,
+ null,
+ 5.845138209038488,
+ 5.863529078603385,
+ null,
+ -15.932478831348119,
+ -15.904988146291458,
+ null,
+ 8.42095163109347,
+ 8.990022300149276,
+ null,
+ -4.181749506074347,
+ -3.8384112563004393,
+ null,
+ -4.181749506074347,
+ -2.880988053557643,
+ null,
+ 5.845138209038488,
+ 5.616088042149204,
+ null,
+ -13.49113086692568,
+ -11.892204745738725,
+ null,
+ -13.49113086692568,
+ -13.116468577073746,
+ null,
+ 6.2948126612798845,
+ 5.829409441710796,
+ null,
+ 6.056565991339081,
+ 7.462056618188281,
+ null,
+ -3.3158603968515785,
+ -4.374446904936558,
+ null,
+ -3.3158603968515785,
+ -3.4534760131959032,
+ null,
+ 5.773101343260647,
+ 4.910742427380435,
+ null,
+ 1.910696527206486,
+ 2.2862185828963737,
+ null,
+ -14.101186632430181,
+ -11.664393213523676,
+ null,
+ 17.923977436957234,
+ 16.078387958536506,
+ null,
+ 8.917560715652067,
+ 7.462056618188281,
+ null,
+ -13.47987385198965,
+ -14.23523543135729,
+ null,
+ -13.47987385198965,
+ -12.422118088881579,
+ null,
+ 8.811181639309124,
+ 8.938100151401368,
+ null,
+ 7.056190518170468,
+ 7.742192455313083,
+ null,
+ 7.056190518170468,
+ 8.938100151401368,
+ null,
+ -4.152181388798178,
+ -4.303139873798181,
+ null,
+ -4.152181388798178,
+ -1.5118495976447555,
+ null,
+ 9.461127802230648,
+ 11.676701598709945,
+ null,
+ 9.461127802230648,
+ 11.370588014134997,
+ null,
+ 16.485115557937508,
+ 14.088120902236506,
+ null,
+ -1.738626111239635,
+ -3.551830416019878,
+ null,
+ -1.738626111239635,
+ 0.7047065127334191,
+ null,
+ 8.679631193800969,
+ 9.038760739212032,
+ null,
+ 8.679631193800969,
+ 8.360793323455896,
+ null,
+ 10.752214832019265,
+ 9.038760739212032,
+ null,
+ 10.752214832019265,
+ 8.360793323455896,
+ null,
+ 13.360092859217884,
+ 11.676701598709945,
+ null,
+ 13.360092859217884,
+ 11.370588014134997,
+ null,
+ 13.360092859217884,
+ 15.992541251517293,
+ null,
+ 10.384122617117338,
+ 9.038760739212032,
+ null,
+ 10.384122617117338,
+ 8.360793323455896,
+ null,
+ 7.3790355399426995,
+ 9.038760739212032,
+ null,
+ 7.3790355399426995,
+ 8.360793323455896,
+ null,
+ -9.605448470353792,
+ -9.32085385524294,
+ null,
+ 11.031621934991103,
+ 9.038760739212032,
+ null,
+ 11.031621934991103,
+ 8.360793323455896,
+ null,
+ -15.30414419254827,
+ -15.997752088226333,
+ null,
+ 12.936896688477757,
+ 15.327026748623167,
+ null,
+ 12.936896688477757,
+ 11.370588014134997,
+ null,
+ 12.936896688477757,
+ 11.592669628746695,
+ null,
+ -4.9201950168038575,
+ -7.226419867543482,
+ null,
+ -4.9201950168038575,
+ -2.604066672961298,
+ null,
+ -6.44799110247403,
+ -6.477102282615005,
+ null,
+ -4.522168668775065,
+ -5.646043711423109,
+ null,
+ -4.522168668775065,
+ -3.8886481272351925,
+ null,
+ 17.086728149022562,
+ 15.327026748623167,
+ null,
+ 5.670674427131997,
+ 4.372486305461426,
+ null,
+ 5.670674427131997,
+ 8.360793323455896,
+ null,
+ -1.933629726538972,
+ -1.4379178178425596,
+ null,
+ -1.933629726538972,
+ -1.4425445909517411,
+ null,
+ 7.224926490329623,
+ 9.038760739212032,
+ null,
+ 7.224926490329623,
+ 8.360793323455896,
+ null,
+ -9.033684219439134,
+ -10.81042580912902,
+ null,
+ -9.033684219439134,
+ -6.2593714609761815,
+ null,
+ 6.762715777282194,
+ 9.038760739212032,
+ null,
+ 6.762715777282194,
+ 8.360793323455896,
+ null,
+ 9.382733033619129,
+ 9.038760739212032,
+ null,
+ 9.382733033619129,
+ 8.360793323455896,
+ null,
+ -16.407119973387434,
+ -16.10780131409305,
+ null,
+ -16.407119973387434,
+ -14.472775071887039,
+ null,
+ 8.771990720473475,
+ 9.038760739212032,
+ null,
+ 8.771990720473475,
+ 8.360793323455896,
+ null,
+ -3.5321037127623613,
+ -1.4285436402094343,
+ null,
+ -3.5321037127623613,
+ -5.932149619974707,
+ null,
+ 16.81988748065873,
+ 14.767233791165753,
+ null,
+ 14.128778297663642,
+ 14.767233791165753,
+ null,
+ 14.402004531741376,
+ 11.676701598709945,
+ null,
+ 14.402004531741376,
+ 15.327026748623167,
+ null,
+ 19.10560462635729,
+ 17.383012919612007,
+ null,
+ 19.10560462635729,
+ 17.793796128062674,
+ null,
+ 18.06774414259654,
+ 17.383012919612007,
+ null,
+ 18.06774414259654,
+ 17.793796128062674,
+ null,
+ 17.24649423926348,
+ 17.793796128062674,
+ null,
+ 17.24649423926348,
+ 17.383012919612007,
+ null,
+ 19.705241285603314,
+ 17.383012919612007,
+ null,
+ 19.705241285603314,
+ 17.793796128062674,
+ null,
+ 15.313781231311406,
+ 17.383012919612007,
+ null,
+ 15.313781231311406,
+ 17.793796128062674,
+ null,
+ 16.65288149533023,
+ 17.383012919612007,
+ null,
+ 16.65288149533023,
+ 17.793796128062674,
+ null,
+ 19.890667328757683,
+ 17.383012919612007,
+ null,
+ 19.890667328757683,
+ 17.793796128062674,
+ null,
+ 15.187491838181332,
+ 17.383012919612007,
+ null,
+ 15.187491838181332,
+ 17.793796128062674,
+ null,
+ 13.465769372913718,
+ 16.078387958536506,
+ null,
+ 12.002018544424272,
+ 14.767233791165753,
+ null,
+ 15.799421584936406,
+ 17.793796128062674,
+ null,
+ 15.799421584936406,
+ 17.383012919612007,
+ null,
+ 20.72323475585315,
+ 17.793796128062674,
+ null,
+ 21.04587969061181,
+ 17.793796128062674,
+ null,
+ 19.784811122815363,
+ 17.383012919612007,
+ null,
+ 19.784811122815363,
+ 17.793796128062674,
+ null,
+ 19.22959731105091,
+ 17.383012919612007,
+ null,
+ 19.22959731105091,
+ 17.793796128062674,
+ null,
+ 13.826408481082314,
+ 17.383012919612007,
+ null,
+ 18.767952289812886,
+ 17.383012919612007,
+ null,
+ 18.767952289812886,
+ 17.793796128062674,
+ null,
+ 18.923223236650237,
+ 17.383012919612007,
+ null,
+ 18.923223236650237,
+ 17.793796128062674,
+ null,
+ 18.967765523636846,
+ 17.383012919612007,
+ null,
+ 18.967765523636846,
+ 17.793796128062674,
+ null,
+ 17.082484524005473,
+ 14.767233791165753,
+ null,
+ 11.73220387244621,
+ 11.676701598709945,
+ null,
+ 16.763848269032998,
+ 17.383012919612007,
+ null,
+ 16.763848269032998,
+ 17.793796128062674,
+ null,
+ 14.45042316563831,
+ 17.793796128062674,
+ null,
+ 15.416673504931964,
+ 17.793796128062674,
+ null,
+ 15.416673504931964,
+ 17.383012919612007,
+ null,
+ 17.04525839776579,
+ 17.383012919612007,
+ null,
+ 17.04525839776579,
+ 17.793796128062674,
+ null,
+ 15.198173033933289,
+ 17.383012919612007,
+ null,
+ 15.198173033933289,
+ 17.793796128062674,
+ null,
+ 15.509850138532327,
+ 17.793796128062674,
+ null,
+ 15.509850138532327,
+ 17.383012919612007,
+ null,
+ 20.422046276551164,
+ 17.793796128062674,
+ null,
+ 15.348587334764682,
+ 14.767233791165753,
+ null,
+ -1.4367253891208716,
+ -3.4534760131959032,
+ null,
+ 18.230755152738165,
+ 17.383012919612007,
+ null,
+ 18.230755152738165,
+ 17.793796128062674,
+ null,
+ 15.96080110929009,
+ 17.383012919612007,
+ null,
+ 15.96080110929009,
+ 17.793796128062674,
+ null,
+ 18.591443566385063,
+ 17.383012919612007,
+ null,
+ 18.591443566385063,
+ 17.793796128062674,
+ null,
+ 17.7984951942672,
+ 14.767233791165753,
+ null,
+ 20.2870334481428,
+ 17.793796128062674,
+ null,
+ 20.2870334481428,
+ 17.383012919612007,
+ null,
+ 20.266847151047724,
+ 17.383012919612007,
+ null,
+ 20.266847151047724,
+ 17.793796128062674,
+ null,
+ 6.168592644825372,
+ 4.465129675313559,
+ null,
+ 12.929917572172492,
+ 14.767233791165753,
+ null,
+ -16.188840259217496,
+ -16.73740628526125,
+ null,
+ -16.188840259217496,
+ -13.883035825147553,
+ null,
+ 17.45326422341904,
+ 17.383012919612007,
+ null,
+ 17.45326422341904,
+ 17.793796128062674,
+ null,
+ 15.891006930342767,
+ 17.383012919612007,
+ null,
+ 15.891006930342767,
+ 17.793796128062674,
+ null,
+ 18.94508784767475,
+ 17.383012919612007,
+ null,
+ 18.94508784767475,
+ 17.793796128062674,
+ null,
+ 10.519721483283934,
+ 8.358374475986748,
+ null,
+ 13.129230606375554,
+ 14.767233791165753,
+ null,
+ 16.52347396583559,
+ 17.383012919612007,
+ null,
+ 16.52347396583559,
+ 17.793796128062674,
+ null,
+ 19.316441539819415,
+ 17.793796128062674,
+ null,
+ 19.316441539819415,
+ 17.383012919612007,
+ null,
+ 17.808924366013617,
+ 17.383012919612007,
+ null,
+ 17.808924366013617,
+ 17.793796128062674,
+ null,
+ 21.1696840444441,
+ 17.793796128062674,
+ null,
+ 16.61831528214116,
+ 14.767233791165753,
+ null,
+ -7.976749825501475,
+ -5.305916009062771,
+ null,
+ 19.290346621460948,
+ 17.383012919612007,
+ null,
+ 19.290346621460948,
+ 17.793796128062674,
+ null,
+ 16.15731021460754,
+ 17.383012919612007,
+ null,
+ 16.15731021460754,
+ 17.793796128062674,
+ null,
+ 21.13336581239527,
+ 17.793796128062674,
+ null,
+ 18.234061804870244,
+ 17.383012919612007,
+ null,
+ 18.234061804870244,
+ 17.793796128062674,
+ null,
+ 15.856463382283577,
+ 17.383012919612007,
+ null,
+ 15.856463382283577,
+ 17.793796128062674,
+ null,
+ 13.784212418396557,
+ 17.383012919612007,
+ null,
+ -1.6621571889152875,
+ -1.6958707182869648,
+ null,
+ 18.01643640847642,
+ 17.383012919612007,
+ null,
+ 18.01643640847642,
+ 17.793796128062674,
+ null,
+ 16.36563488724154,
+ 17.383012919612007,
+ null,
+ 16.36563488724154,
+ 17.793796128062674,
+ null,
+ 14.483331231403675,
+ 17.793796128062674,
+ null,
+ 16.218797803880534,
+ 17.383012919612007,
+ null,
+ 16.218797803880534,
+ 17.793796128062674,
+ null,
+ 17.97344143563745,
+ 17.383012919612007,
+ null,
+ 17.97344143563745,
+ 17.793796128062674,
+ null,
+ 3.2435804153559262,
+ 5.402907007667126,
+ null,
+ -1.7190425033339873,
+ -3.3418825609902427,
+ null,
+ -11.538314826060407,
+ -11.29234486182441,
+ null,
+ 14.968050808360838,
+ 14.767233791165753,
+ null,
+ 13.268802148583784,
+ 14.767233791165753,
+ null,
+ 18.60267962239572,
+ 17.383012919612007,
+ null,
+ 18.60267962239572,
+ 17.793796128062674,
+ null,
+ 20.241728533750628,
+ 17.383012919612007,
+ null,
+ 20.241728533750628,
+ 17.793796128062674,
+ null,
+ 20.79853884709638,
+ 17.793796128062674,
+ null,
+ 19.918504409491106,
+ 17.793796128062674,
+ null,
+ 19.918504409491106,
+ 17.383012919612007,
+ null,
+ -8.075294952812861,
+ -9.859605488067325,
+ null,
+ -9.043276446002867,
+ -10.51850244110427,
+ null,
+ -9.043276446002867,
+ -9.137995914259335,
+ null,
+ 15.933681725807805,
+ 17.383012919612007,
+ null,
+ 15.933681725807805,
+ 17.793796128062674,
+ null,
+ 17.696627605097554,
+ 17.383012919612007,
+ null,
+ 17.696627605097554,
+ 17.793796128062674,
+ null,
+ 12.882281213462367,
+ 14.767233791165753,
+ null,
+ 15.84746212104952,
+ 14.767233791165753,
+ null,
+ 19.671110638083217,
+ 17.793796128062674,
+ null,
+ 17.726574132118806,
+ 17.383012919612007,
+ null,
+ 17.726574132118806,
+ 17.793796128062674,
+ null,
+ 14.563940628397631,
+ 17.793796128062674,
+ null,
+ 16.82537621991663,
+ 17.383012919612007,
+ null,
+ 16.82537621991663,
+ 17.793796128062674,
+ null,
+ 15.685902967095739,
+ 17.793796128062674,
+ null,
+ 15.685902967095739,
+ 17.383012919612007,
+ null,
+ 14.741924159224842,
+ 17.793796128062674,
+ null,
+ 17.288374628006324,
+ 17.383012919612007,
+ null,
+ 17.288374628006324,
+ 17.793796128062674,
+ null,
+ 16.955054852390468,
+ 17.383012919612007,
+ null,
+ 16.955054852390468,
+ 17.793796128062674,
+ null,
+ 19.417153998704617,
+ 17.383012919612007,
+ null,
+ 19.417153998704617,
+ 17.793796128062674,
+ null,
+ 15.121700721238964,
+ 17.383012919612007,
+ null,
+ 15.121700721238964,
+ 17.793796128062674,
+ null,
+ 20.01606645238458,
+ 17.383012919612007,
+ null,
+ 20.01606645238458,
+ 17.793796128062674,
+ null,
+ 14.037141024682432,
+ 17.383012919612007,
+ null,
+ 3.1544494401128524,
+ 1.3912666665754576,
+ null,
+ 3.1544494401128524,
+ 2.1956684246829385,
+ null,
+ -13.066661108968566,
+ -11.24334686975556,
+ null,
+ 4.745329252150413,
+ 4.479700722985545,
+ null,
+ 4.745329252150413,
+ 6.283133275145741,
+ null,
+ -8.940121902174184,
+ -7.663941780080888,
+ null,
+ 7.359370399973077,
+ 10.013353150820242,
+ null,
+ 7.359370399973077,
+ 6.283133275145741,
+ null,
+ 7.860345828704119,
+ 10.013353150820242,
+ null,
+ 7.860345828704119,
+ 6.283133275145741,
+ null,
+ -1.0483669419973778,
+ 1.1675351373220524,
+ null,
+ -7.239415659631179,
+ -8.560329019195615,
+ null,
+ 21.38196294430897,
+ 21.267192965189107,
+ null,
+ 11.756915677045937,
+ 8.990022300149276,
+ null,
+ 8.766139719613324,
+ 11.019231894500201,
+ null,
+ 21.267192965189107,
+ 20.679356598004702,
+ null,
+ 4.000910950487333,
+ 4.479700722985545,
+ null,
+ 4.000910950487333,
+ 6.283133275145741,
+ null,
+ -3.050984643079521,
+ -5.604837463318379,
+ null,
+ 19.113938239837466,
+ 16.078387958536506,
+ null,
+ -5.727282121791605,
+ -7.6127595670645505,
+ null,
+ -5.014213553729322,
+ -5.1689120628515735,
+ null,
+ -14.635024378506934,
+ -15.112705528427458,
+ null,
+ 8.565962804238229,
+ 10.013353150820242,
+ null,
+ 8.565962804238229,
+ 6.283133275145741,
+ null,
+ -15.890185356621734,
+ -15.704248476240835,
+ null,
+ -4.731768730493457,
+ -7.2437152921068275,
+ null,
+ 1.6977476489656436,
+ 2.606777360852669,
+ null,
+ 18.154860779828756,
+ 16.078387958536506,
+ null,
+ 18.653276009869735,
+ 16.078387958536506,
+ null,
+ -10.497077346193414,
+ -9.501494765019928,
+ null,
+ -10.497077346193414,
+ -10.352351904705175,
+ null,
+ 18.288498919448255,
+ 16.078387958536506,
+ null,
+ 0.7431060248201902,
+ 0.3487538143716118,
+ null,
+ 0.7431060248201902,
+ 3.5750093576229536,
+ null,
+ 15.886827429789896,
+ 16.078387958536506,
+ null,
+ 17.675491799855113,
+ 16.078387958536506,
+ null,
+ 17.91680762187519,
+ 16.078387958536506,
+ null,
+ 3.2801266702880763,
+ 0.3487538143716118,
+ null,
+ 3.2801266702880763,
+ 3.5750093576229536,
+ null,
+ 2.682790066877558,
+ 0.3487538143716118,
+ null,
+ 6.919921812362842,
+ 6.955454609372014,
+ null,
+ 6.919921812362842,
+ 4.533380670144705,
+ null,
+ -10.352351904705175,
+ -12.815773744324012,
+ null,
+ -10.352351904705175,
+ -11.560932832329058,
+ null,
+ -0.2167048632130567,
+ -1.5838117775480958,
+ null,
+ -0.2167048632130567,
+ 2.1956684246829385,
+ null,
+ -1.4437986078242833,
+ 0.3487538143716118,
+ null,
+ -13.213591629517639,
+ -12.563721614285875,
+ null,
+ -9.095416110157403,
+ -7.191672826830745,
+ null,
+ -9.095416110157403,
+ -10.877664984855699,
+ null,
+ -9.095416110157403,
+ -10.877664984855699,
+ null,
+ 2.200082949398928,
+ 0.3487538143716118,
+ null,
+ 2.200082949398928,
+ 3.5750093576229536,
+ null,
+ -10.977681433120315,
+ -9.264580390810654,
+ null,
+ -10.977681433120315,
+ -12.563721614285875,
+ null,
+ -4.139923708678614,
+ -6.544841250435663,
+ null,
+ -4.139923708678614,
+ -2.092282979040595,
+ null,
+ -4.139923708678614,
+ -2.229840974733451,
+ null,
+ -4.139923708678614,
+ -4.930437010354747,
+ null,
+ 13.755204787793724,
+ 11.019231894500201,
+ null,
+ -9.389375362580894,
+ -11.666001141543395,
+ null,
+ -10.352351904705175,
+ -9.389375362580894,
+ null,
+ -4.650678621741309,
+ -6.788614306827233,
+ null,
+ 13.14269509207124,
+ 16.078387958536506,
+ null,
+ -7.08587920068209,
+ -7.191672826830745,
+ null,
+ -7.08587920068209,
+ -5.061312454241081,
+ null,
+ -1.3993516846995084,
+ 0.3487538143716118,
+ null,
+ -5.791712433332692,
+ -8.037705508396558,
+ null,
+ -5.791712433332692,
+ -3.4856970302562065,
+ null,
+ -6.6247330469256465,
+ -5.084769748144755,
+ null,
+ -1.329606090751159,
+ 0.3487538143716118,
+ null,
+ 3.2313711640535168,
+ 5.761312303766434,
+ null,
+ 9.361342440809858,
+ 7.3392480990631235,
+ null,
+ 0.09293232147749464,
+ -0.21275192955190647,
+ null,
+ 1.209753793553072,
+ 0.3487538143716118,
+ null,
+ 1.209753793553072,
+ 3.5750093576229536,
+ null,
+ -0.48006248890437775,
+ 0.3487538143716118,
+ null,
+ 6.970146957973679,
+ 8.358374475986748,
+ null,
+ 10.658134422431962,
+ 12.562034505438607,
+ null,
+ 10.658134422431962,
+ 11.019231894500201,
+ null,
+ -10.745486365243181,
+ -13.289357761350335,
+ null,
+ -10.352351904705175,
+ -10.745486365243181,
+ null,
+ -2.630122160653607,
+ -4.224096997078707,
+ null,
+ -13.37817835195691,
+ -15.046861827955759,
+ null,
+ -13.37817835195691,
+ -12.943459755203083,
+ null,
+ -2.6488870588261384,
+ 0.3487538143716118,
+ null,
+ 1.1284637138203344,
+ 0.3487538143716118,
+ null,
+ -7.849639953321988,
+ -5.666385925283225,
+ null,
+ -10.352351904705175,
+ -7.849639953321988,
+ null,
+ 16.485115557937508,
+ 18.205149271954912,
+ null,
+ 11.194279832169235,
+ 10.013353150820242,
+ null,
+ 11.194279832169235,
+ 13.124838098488237,
+ null,
+ 18.11772973076478,
+ 17.39378749907511,
+ null,
+ 18.11772973076478,
+ 18.36869277547518,
+ null,
+ 18.36869277547518,
+ 20.005484246747542,
+ null,
+ 18.36869277547518,
+ 20.19044152278915,
+ null,
+ 17.01996907089426,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 17.01996907089426,
+ null,
+ 11.595139790769299,
+ 10.013353150820242,
+ null,
+ 11.595139790769299,
+ 13.124838098488237,
+ null,
+ -7.13790715441922,
+ -8.959712560695248,
+ null,
+ 8.315845491584616,
+ 7.2628399837274245,
+ null,
+ 18.205149271954912,
+ 15.240022562465837,
+ null,
+ 0.39921210150761577,
+ -1.3539356618448246,
+ null,
+ 15.456749694177255,
+ 14.088120902236506,
+ null,
+ 15.240022562465837,
+ 15.456749694177255,
+ null,
+ 10.683686813836902,
+ 10.013353150820242,
+ null,
+ 10.683686813836902,
+ 13.124838098488237,
+ null,
+ 19.259948835927116,
+ 18.28180496454909,
+ null,
+ 18.36869277547518,
+ 19.259948835927116,
+ null,
+ 20.292814361341577,
+ 22.30931842201065,
+ null,
+ 18.36869277547518,
+ 20.292814361341577,
+ null,
+ -15.13948322261798,
+ -15.82253266396615,
+ null,
+ -15.13948322261798,
+ -13.007901951342296,
+ null,
+ 11.845588325612976,
+ 10.013353150820242,
+ null,
+ 11.845588325612976,
+ 13.124838098488237,
+ null,
+ 5.160496908475858,
+ 3.057344673704041,
+ null,
+ -13.419203553399395,
+ -15.6883445079686,
+ null,
+ 21.208861475687293,
+ 22.30931842201065,
+ null,
+ 18.36869277547518,
+ 21.208861475687293,
+ null,
+ -1.722835548838387,
+ -0.6457974802125008,
+ null,
+ 18.205149271954912,
+ 17.442848322188567,
+ null,
+ -10.116396077525179,
+ -10.90056189569408,
+ null,
+ 19.497724196889425,
+ 17.39378749907511,
+ null,
+ 12.754326143960697,
+ 10.013353150820242,
+ null,
+ 12.754326143960697,
+ 13.124838098488237,
+ null,
+ 18.205149271954912,
+ 19.297972378051927,
+ null,
+ 15.550864910877822,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 15.550864910877822,
+ null,
+ -7.424206763444326,
+ -5.328887492705765,
+ null,
+ 16.346818810590605,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 16.346818810590605,
+ null,
+ 0.3714925176070536,
+ 0.8171930358840568,
+ null,
+ -8.336425792587137,
+ -9.5871294091661,
+ null,
+ -11.851964883592148,
+ -12.576677283266495,
+ null,
+ 15.481065975422577,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 15.481065975422577,
+ null,
+ -1.6608044293760673,
+ 0.6717530029196913,
+ null,
+ 14.536521168193532,
+ 16.078387958536506,
+ null,
+ 18.749575040736318,
+ 16.078387958536506,
+ null,
+ -14.784209689560061,
+ -13.083035600058789,
+ null,
+ -14.784209689560061,
+ -15.039225888857187,
+ null,
+ -10.765615145602576,
+ -12.904548579206185,
+ null,
+ 15.823112383588235,
+ 16.078387958536506,
+ null,
+ -16.107136771139988,
+ -16.40188908183957,
+ null,
+ -14.784209689560061,
+ -16.107136771139988,
+ null,
+ 2.905998540799444,
+ 5.081672141197279,
+ null,
+ 2.905998540799444,
+ 1.9637307033203717,
+ null,
+ 3.4067017305617755,
+ 4.053067206800075,
+ null,
+ 3.4067017305617755,
+ 5.70560209996295,
+ null,
+ -9.996322178397245,
+ -11.788105138110016,
+ null,
+ 14.68692773332524,
+ 16.078387958536506,
+ null,
+ 6.62722182039912,
+ 8.990022300149276,
+ null,
+ -8.00184431026471,
+ -10.210094274413706,
+ null,
+ -8.00184431026471,
+ -5.810879984265869,
+ null,
+ -8.00184431026471,
+ -8.903823997123547,
+ null,
+ 3.0133512901104416,
+ 1.9311378293970232,
+ null,
+ 3.0133512901104416,
+ 1.9637307033203717,
+ null,
+ -4.992963192827679,
+ -3.6299632351379643,
+ null,
+ 5.065105885279123,
+ 6.612356435898742,
+ null,
+ 5.065105885279123,
+ 3.058246733183386,
+ null,
+ -10.738172367472357,
+ -11.984368454287786,
+ null,
+ -4.848489410736379,
+ -4.214243832496144,
+ null,
+ 15.742705654242956,
+ 16.078387958536506,
+ null,
+ 2.7142673474102605,
+ 4.753799496196119,
+ null,
+ -7.740250027484222,
+ -6.794048016799521,
+ null,
+ -7.740250027484222,
+ -4.831987792200215,
+ null,
+ 0.6549196038858884,
+ 2.069421512594827,
+ null,
+ -15.481322262367849,
+ -15.74961543883628,
+ null,
+ 9.9270695544927,
+ 8.990022300149276,
+ null,
+ 0.8165423895756174,
+ 3.058246733183386,
+ null,
+ 0.8165423895756174,
+ -0.6038874973527248,
+ null,
+ 6.154284321913229,
+ 6.283133275145741,
+ null,
+ 6.154284321913229,
+ 4.479700722985545,
+ null,
+ 9.736984239596191,
+ 11.370588014134997,
+ null,
+ 9.736984239596191,
+ 11.676701598709945,
+ null,
+ 4.5636886300375465,
+ 2.6835145948445223,
+ null,
+ 0.957578190014004,
+ 3.058246733183386,
+ null,
+ 0.957578190014004,
+ -0.6038874973527248,
+ null,
+ -5.085998787236029,
+ -6.047965183738679,
+ null,
+ -3.42059900122231,
+ -1.5891407097654695,
+ null,
+ -3.42059900122231,
+ -5.810879984265869,
+ null,
+ -9.972130387891122,
+ -10.774500868334462,
+ null,
+ -9.972130387891122,
+ -10.080675555238377,
+ null,
+ 1.8662812888160822,
+ 0.03081158009237195,
+ null,
+ 1.8662812888160822,
+ 3.5652763931909393,
+ null,
+ 1.3915121325117346,
+ 3.535429334045448,
+ null,
+ -0.7897807487357376,
+ -3.380320358295136,
+ null,
+ 3.867034254303558,
+ 3.3720009773173993,
+ null,
+ 14.660023764695653,
+ 12.541822085749827,
+ null,
+ 14.660023764695653,
+ 16.40909862876928,
+ null,
+ 10.723050937671145,
+ 11.740285647534707,
+ null,
+ 9.058664593148738,
+ 10.271599739081877,
+ null,
+ 9.058664593148738,
+ 10.15798883846539,
+ null,
+ 15.92515851367293,
+ 16.078387958536506,
+ null,
+ 17.192715010497217,
+ 18.647618505991836,
+ null,
+ 2.1783236015756544,
+ -0.24052084790888673,
+ null,
+ 13.556809084666387,
+ 12.541822085749827,
+ null,
+ 13.556809084666387,
+ 14.322218902949006,
+ null,
+ 16.61552754959879,
+ 16.078387958536506,
+ null,
+ -1.05163940544016,
+ -3.796144110693343,
+ null,
+ 6.600757008000865,
+ 8.990022300149276,
+ null,
+ -3.4904908702143596,
+ -1.3539356618448246,
+ null,
+ -3.4904908702143596,
+ -5.416392097389759,
+ null,
+ -1.3510602959274558,
+ -3.4856970302562065,
+ null,
+ 12.541822085749827,
+ 10.15798883846539,
+ null,
+ 12.541822085749827,
+ 10.271599739081877,
+ null,
+ 9.993919349668218,
+ 10.271599739081877,
+ null,
+ 22.451348423362106,
+ 21.994882085341327,
+ null,
+ -4.453520432336367,
+ -6.480360143131765,
+ null,
+ -2.737929922909383,
+ -1.3539356618448246,
+ null,
+ -2.737929922909383,
+ -3.7384427182958966,
+ null,
+ 20.929839497344,
+ 21.92974993447186,
+ null,
+ -0.38977616922758296,
+ -2.7658430560231495,
+ null,
+ 2.4761426404672013,
+ 2.77885309140947,
+ null,
+ -3.5658825848012548,
+ -4.882469985148913,
+ null,
+ 7.917490080628118,
+ 10.271599739081877,
+ null,
+ 7.917490080628118,
+ 10.15798883846539,
+ null,
+ 6.316864787134258,
+ 6.7657793056473725,
+ null,
+ 2.302973690967117,
+ 2.5222424384617113,
+ null,
+ 2.0018042499974964,
+ 4.019933376936817,
+ null,
+ -15.718792057509107,
+ -16.787552544072025,
+ null,
+ -15.718792057509107,
+ -16.856805274678862,
+ null,
+ -16.671786382411057,
+ -16.856805274678862,
+ null,
+ -16.671786382411057,
+ -14.472775071887039,
+ null,
+ -0.2712384574698234,
+ -2.4479939519338654,
+ null,
+ 7.928407480010116,
+ 9.862183182215059,
+ null,
+ 7.928407480010116,
+ 5.820481650095663,
+ null,
+ -6.123839096600868,
+ -6.794048016799521,
+ null,
+ -6.123839096600868,
+ -4.831987792200215,
+ null,
+ -17.75345309979954,
+ -16.856805274678862,
+ null,
+ 11.059371438887155,
+ 11.740285647534707,
+ null,
+ -6.111187613432292,
+ -5.328887492705765,
+ null,
+ 2.792614522565272,
+ 4.998308370682041,
+ null,
+ -13.430216856829446,
+ -14.041780289094081,
+ null,
+ -13.430216856829446,
+ -13.116468577073746,
+ null,
+ 22.569969063829703,
+ 21.0132610212424,
+ null,
+ 22.569969063829703,
+ 22.924746987035036,
+ null,
+ 12.35995628928166,
+ 10.038326449843389,
+ null,
+ 12.35995628928166,
+ 13.727303787440793,
+ null,
+ 13.14269509207124,
+ 10.933227463611694,
+ null,
+ -8.647443133101893,
+ -7.397820564553798,
+ null,
+ 9.298780186928086,
+ 9.71706183696487,
+ null,
+ 7.104101159161629,
+ 4.479700722985545,
+ null,
+ 7.104101159161629,
+ 6.283133275145741,
+ null,
+ -11.39984200097884,
+ -11.892204745738725,
+ null,
+ -11.39984200097884,
+ -13.116468577073746,
+ null,
+ 13.621527099783169,
+ 16.078387958536506,
+ null,
+ 8.995856150249049,
+ 7.837269659316131,
+ null,
+ 8.995856150249049,
+ 8.604227898026458,
+ null,
+ 17.91680762187519,
+ 16.803115192697085,
+ null,
+ 10.592206668431514,
+ 8.990022300149276,
+ null,
+ -1.9774734854256746,
+ -0.22142264816660884,
+ null,
+ 13.175545340601293,
+ 16.078387958536506,
+ null,
+ 17.91680762187519,
+ 20.460968550160327,
+ null,
+ 4.123014882661909,
+ 3.5809436333777107,
+ null,
+ -15.589877724228934,
+ -16.856805274678862,
+ null,
+ -15.589877724228934,
+ -13.116468577073746,
+ null,
+ 5.642890983127066,
+ 3.5809436333777107,
+ null,
+ -9.952608788794125,
+ -10.774500868334462,
+ null,
+ -9.952608788794125,
+ -10.080675555238377,
+ null,
+ -8.027540649214833,
+ -10.774500868334462,
+ null,
+ -8.027540649214833,
+ -10.080675555238377,
+ null,
+ -15.245004444152267,
+ -13.116468577073746,
+ null,
+ -15.245004444152267,
+ -14.472775071887039,
+ null,
+ -12.013371409411429,
+ -10.774500868334462,
+ null,
+ -12.013371409411429,
+ -14.248065303563243,
+ null,
+ -8.489446195769464,
+ -6.745753018806202,
+ null,
+ -8.489446195769464,
+ -10.080675555238377,
+ null,
+ 7.740284024415618,
+ 7.462056618188281,
+ null,
+ 2.118950875491419,
+ 0.3487538143716118,
+ null,
+ 2.118950875491419,
+ 3.5750093576229536,
+ null,
+ 8.528902493244408,
+ 8.990022300149276,
+ null,
+ 22.1115530105183,
+ 22.697040180978924,
+ null,
+ 22.1115530105183,
+ 21.174580092028506,
+ null,
+ -14.689872352838838,
+ -12.302528127312577,
+ null,
+ -14.689872352838838,
+ -13.292069671287392,
+ null,
+ -15.730989259150421,
+ -12.302528127312577,
+ null,
+ -11.715116762578333,
+ -10.680153816736555,
+ null,
+ -11.715116762578333,
+ -14.472775071887039,
+ null,
+ -16.100362768181665,
+ -13.927652348215837,
+ null,
+ -12.72139878404941,
+ -10.774500868334462,
+ null,
+ -12.72139878404941,
+ -10.080675555238377,
+ null,
+ 0.30177859190882206,
+ -1.1287029101082857,
+ null,
+ -8.84370468778664,
+ -10.774500868334462,
+ null,
+ -8.84370468778664,
+ -10.080675555238377,
+ null,
+ -8.79150611597912,
+ -10.774500868334462,
+ null,
+ -8.79150611597912,
+ -10.080675555238377,
+ null,
+ -14.130351738362913,
+ -12.48992128848705,
+ null,
+ -11.715116762578333,
+ -14.130351738362913,
+ null,
+ -14.130351738362913,
+ -14.472775071887039,
+ null,
+ -12.48992128848705,
+ -10.680153816736555,
+ null,
+ -12.48992128848705,
+ -14.472775071887039,
+ null,
+ -11.037333912370942,
+ -10.774500868334462,
+ null,
+ -11.037333912370942,
+ -10.080675555238377,
+ null,
+ -11.638205856093446,
+ -10.774500868334462,
+ null,
+ -11.638205856093446,
+ -10.080675555238377,
+ null,
+ 14.505756784524383,
+ 16.078387958536506,
+ null,
+ -13.764879078951406,
+ -11.892204745738725,
+ null,
+ -12.615899599100104,
+ -13.292069671287392,
+ null,
+ -12.615899599100104,
+ -14.472775071887039,
+ null,
+ 12.541822085749827,
+ 13.384150927324999,
+ null,
+ -8.156655997559467,
+ -10.774500868334462,
+ null,
+ -8.156655997559467,
+ -10.080675555238377,
+ null,
+ 20.455257782435655,
+ 22.671018755703376,
+ null,
+ 20.455257782435655,
+ 21.174580092028506,
+ null,
+ -13.222703067642193,
+ -10.680153816736555,
+ null,
+ -13.222703067642193,
+ -14.472775071887039,
+ null,
+ -10.415070747007382,
+ -12.302528127312577,
+ null,
+ -10.415070747007382,
+ -10.680153816736555,
+ null,
+ -12.049238335779727,
+ -10.774500868334462,
+ null,
+ -12.049238335779727,
+ -10.080675555238377,
+ null,
+ -11.054362849273527,
+ -10.774500868334462,
+ null,
+ -11.054362849273527,
+ -10.080675555238377,
+ null,
+ -2.29826269288487,
+ -1.1287029101082857,
+ null,
+ -12.886462232672827,
+ -10.774500868334462,
+ null,
+ -12.886462232672827,
+ -10.080675555238377,
+ null,
+ -11.41784983119164,
+ -8.962574775452547,
+ null,
+ -0.3191505947266975,
+ -2.604066672961298,
+ null,
+ 14.563425157507346,
+ 16.078387958536506,
+ null,
+ -14.928767740995028,
+ -16.360725881299764,
+ null,
+ 12.441412417665292,
+ 13.839564531885683,
+ null,
+ 7.376415353965956,
+ 9.174864958103376,
+ null,
+ 3.1129060197666063,
+ 4.919768640720008,
+ null,
+ 2.4908144892083617,
+ 4.2130750579698475,
+ null,
+ 15.021482056662148,
+ 16.078387958536506,
+ null,
+ 5.897594291101676,
+ 4.101848982924817,
+ null,
+ 9.169651932528753,
+ 9.690925923418042,
+ null,
+ -11.095225685990275,
+ -11.744992766532496,
+ null,
+ -11.095225685990275,
+ -12.698211541781175,
+ null,
+ 6.693421850634913,
+ 4.194904762733609,
+ null,
+ 17.163084400516215,
+ 16.078387958536506,
+ null,
+ -6.199672663045915,
+ -4.106378991622533,
+ null,
+ -11.095225685990275,
+ -9.54475726221417,
+ null,
+ -9.54475726221417,
+ -7.400154004532124,
+ null,
+ 7.606682919608337,
+ 9.690925923418042,
+ null,
+ -8.643131136849384,
+ -6.6930990946675495,
+ null,
+ 4.4281959742181645,
+ 3.4439382386814943,
+ null,
+ -13.039917034599503,
+ -12.302528127312577,
+ null,
+ -13.039917034599503,
+ -13.292069671287392,
+ null,
+ -13.354513757095816,
+ -10.774500868334462,
+ null,
+ 11.615308535874595,
+ 8.990022300149276,
+ null,
+ 8.319431909230527,
+ 8.990022300149276,
+ null,
+ 6.747021989871167,
+ 8.990022300149276,
+ null,
+ 20.151129500861902,
+ 18.154860779828756,
+ null,
+ -1.014117560634313,
+ -0.04352563651214125,
+ null,
+ 4.085374440780235,
+ 1.6391872487208237,
+ null,
+ 1.6983783682866247,
+ 0.504982924224546,
+ null,
+ 1.6983783682866247,
+ 1.920744405013267,
+ null,
+ 17.704182771702758,
+ 18.28180496454909,
+ null,
+ -1.836988980241852,
+ -3.8614397542849295,
+ null,
+ -5.410646669470725,
+ -6.859599605804259,
+ null,
+ -5.410646669470725,
+ -3.4534760131959032,
+ null,
+ 5.905584742205971,
+ 5.616088042149204,
+ null,
+ 16.9116407836773,
+ 16.078387958536506,
+ null,
+ 13.909649050767086,
+ 16.078387958536506,
+ null,
+ 7.392943235225893,
+ 8.990022300149276,
+ null,
+ -9.191426851740902,
+ -7.0968268976059985,
+ null,
+ -9.191426851740902,
+ -11.01675292462399,
+ null,
+ 10.566212120275992,
+ 8.990022300149276,
+ null,
+ 5.845138209038488,
+ 5.863529078603385,
+ null,
+ -15.932478831348119,
+ -15.904988146291458,
+ null,
+ 8.42095163109347,
+ 8.990022300149276,
+ null,
+ -4.181749506074347,
+ -3.8384112563004393,
+ null,
+ -4.181749506074347,
+ -2.880988053557643,
+ null,
+ 5.845138209038488,
+ 5.616088042149204,
+ null,
+ -13.49113086692568,
+ -11.892204745738725,
+ null,
+ -13.49113086692568,
+ -13.116468577073746,
+ null,
+ 6.2948126612798845,
+ 5.829409441710796,
+ null,
+ 6.056565991339081,
+ 7.462056618188281,
+ null,
+ -3.3158603968515785,
+ -4.374446904936558,
+ null,
+ -3.3158603968515785,
+ -3.4534760131959032,
+ null,
+ 5.773101343260647,
+ 4.910742427380435,
+ null,
+ 1.910696527206486,
+ 2.2862185828963737,
+ null,
+ -14.101186632430181,
+ -11.664393213523676,
+ null,
+ 17.923977436957234,
+ 16.078387958536506,
+ null,
+ 8.917560715652067,
+ 7.462056618188281,
+ null,
+ -13.47987385198965,
+ -14.23523543135729,
+ null,
+ -13.47987385198965,
+ -12.422118088881579,
+ null,
+ 8.811181639309124,
+ 8.938100151401368,
+ null,
+ 7.056190518170468,
+ 7.742192455313083,
+ null,
+ 7.056190518170468,
+ 8.938100151401368,
+ null,
+ -4.152181388798178,
+ -4.303139873798181,
+ null,
+ -4.152181388798178,
+ -1.5118495976447555,
+ null,
+ 9.461127802230648,
+ 11.676701598709945,
+ null,
+ 9.461127802230648,
+ 11.370588014134997,
+ null,
+ 16.485115557937508,
+ 14.088120902236506,
+ null,
+ -1.738626111239635,
+ -3.551830416019878,
+ null,
+ -1.738626111239635,
+ 0.7047065127334191,
+ null,
+ 8.679631193800969,
+ 9.038760739212032,
+ null,
+ 8.679631193800969,
+ 8.360793323455896,
+ null,
+ 10.752214832019265,
+ 9.038760739212032,
+ null,
+ 10.752214832019265,
+ 8.360793323455896,
+ null,
+ 13.360092859217884,
+ 11.676701598709945,
+ null,
+ 13.360092859217884,
+ 11.370588014134997,
+ null,
+ 13.360092859217884,
+ 15.992541251517293,
+ null,
+ 10.384122617117338,
+ 9.038760739212032,
+ null,
+ 10.384122617117338,
+ 8.360793323455896,
+ null,
+ 7.3790355399426995,
+ 9.038760739212032,
+ null,
+ 7.3790355399426995,
+ 8.360793323455896,
+ null,
+ -9.605448470353792,
+ -9.32085385524294,
+ null,
+ 11.031621934991103,
+ 9.038760739212032,
+ null,
+ 11.031621934991103,
+ 8.360793323455896,
+ null,
+ -15.30414419254827,
+ -15.997752088226333,
+ null,
+ 12.936896688477757,
+ 15.327026748623167,
+ null,
+ 12.936896688477757,
+ 11.370588014134997,
+ null,
+ 12.936896688477757,
+ 11.592669628746695,
+ null,
+ -4.9201950168038575,
+ -7.226419867543482,
+ null,
+ -4.9201950168038575,
+ -2.604066672961298,
+ null,
+ -6.44799110247403,
+ -6.477102282615005,
+ null,
+ -4.522168668775065,
+ -5.646043711423109,
+ null,
+ -4.522168668775065,
+ -3.8886481272351925,
+ null,
+ 17.086728149022562,
+ 15.327026748623167,
+ null,
+ 5.670674427131997,
+ 4.372486305461426,
+ null,
+ 5.670674427131997,
+ 8.360793323455896,
+ null,
+ -1.933629726538972,
+ -1.4379178178425596,
+ null,
+ -1.933629726538972,
+ -1.4425445909517411,
+ null,
+ 7.224926490329623,
+ 9.038760739212032,
+ null,
+ 7.224926490329623,
+ 8.360793323455896,
+ null,
+ -9.033684219439134,
+ -10.81042580912902,
+ null,
+ -9.033684219439134,
+ -6.2593714609761815,
+ null,
+ 6.762715777282194,
+ 9.038760739212032,
+ null,
+ 6.762715777282194,
+ 8.360793323455896,
+ null,
+ 9.382733033619129,
+ 9.038760739212032,
+ null,
+ 9.382733033619129,
+ 8.360793323455896,
+ null,
+ -16.407119973387434,
+ -16.10780131409305,
+ null,
+ -16.407119973387434,
+ -14.472775071887039,
+ null,
+ 8.771990720473475,
+ 9.038760739212032,
+ null,
+ 8.771990720473475,
+ 8.360793323455896,
+ null,
+ -3.5321037127623613,
+ -1.4285436402094343,
+ null,
+ -3.5321037127623613,
+ -5.932149619974707,
+ null,
+ 16.81988748065873,
+ 14.767233791165753,
+ null,
+ 14.128778297663642,
+ 14.767233791165753,
+ null,
+ 14.402004531741376,
+ 11.676701598709945,
+ null,
+ 14.402004531741376,
+ 15.327026748623167,
+ null,
+ 19.10560462635729,
+ 17.383012919612007,
+ null,
+ 19.10560462635729,
+ 17.793796128062674,
+ null,
+ 18.06774414259654,
+ 17.383012919612007,
+ null,
+ 18.06774414259654,
+ 17.793796128062674,
+ null,
+ 17.24649423926348,
+ 17.793796128062674,
+ null,
+ 17.24649423926348,
+ 17.383012919612007,
+ null,
+ 19.705241285603314,
+ 17.383012919612007,
+ null,
+ 19.705241285603314,
+ 17.793796128062674,
+ null,
+ 15.313781231311406,
+ 17.383012919612007,
+ null,
+ 15.313781231311406,
+ 17.793796128062674,
+ null,
+ 16.65288149533023,
+ 17.383012919612007,
+ null,
+ 16.65288149533023,
+ 17.793796128062674,
+ null,
+ 19.890667328757683,
+ 17.383012919612007,
+ null,
+ 19.890667328757683,
+ 17.793796128062674,
+ null,
+ 15.187491838181332,
+ 17.383012919612007,
+ null,
+ 15.187491838181332,
+ 17.793796128062674,
+ null,
+ 13.465769372913718,
+ 16.078387958536506,
+ null,
+ 12.002018544424272,
+ 14.767233791165753,
+ null,
+ 15.799421584936406,
+ 17.793796128062674,
+ null,
+ 15.799421584936406,
+ 17.383012919612007,
+ null,
+ 20.72323475585315,
+ 17.793796128062674,
+ null,
+ 21.04587969061181,
+ 17.793796128062674,
+ null,
+ 19.784811122815363,
+ 17.383012919612007,
+ null,
+ 19.784811122815363,
+ 17.793796128062674,
+ null,
+ 19.22959731105091,
+ 17.383012919612007,
+ null,
+ 19.22959731105091,
+ 17.793796128062674,
+ null,
+ 13.826408481082314,
+ 17.383012919612007,
+ null,
+ 18.767952289812886,
+ 17.383012919612007,
+ null,
+ 18.767952289812886,
+ 17.793796128062674,
+ null,
+ 18.923223236650237,
+ 17.383012919612007,
+ null,
+ 18.923223236650237,
+ 17.793796128062674,
+ null,
+ 18.967765523636846,
+ 17.383012919612007,
+ null,
+ 18.967765523636846,
+ 17.793796128062674,
+ null,
+ 17.082484524005473,
+ 14.767233791165753,
+ null,
+ 11.73220387244621,
+ 11.676701598709945,
+ null,
+ 16.763848269032998,
+ 17.383012919612007,
+ null,
+ 16.763848269032998,
+ 17.793796128062674,
+ null,
+ 14.45042316563831,
+ 17.793796128062674,
+ null,
+ 15.416673504931964,
+ 17.793796128062674,
+ null,
+ 15.416673504931964,
+ 17.383012919612007,
+ null,
+ 17.04525839776579,
+ 17.383012919612007,
+ null,
+ 17.04525839776579,
+ 17.793796128062674,
+ null,
+ 15.198173033933289,
+ 17.383012919612007,
+ null,
+ 15.198173033933289,
+ 17.793796128062674,
+ null,
+ 15.509850138532327,
+ 17.793796128062674,
+ null,
+ 15.509850138532327,
+ 17.383012919612007,
+ null,
+ 20.422046276551164,
+ 17.793796128062674,
+ null,
+ 15.348587334764682,
+ 14.767233791165753,
+ null,
+ -1.4367253891208716,
+ -3.4534760131959032,
+ null,
+ 18.230755152738165,
+ 17.383012919612007,
+ null,
+ 18.230755152738165,
+ 17.793796128062674,
+ null,
+ 15.96080110929009,
+ 17.383012919612007,
+ null,
+ 15.96080110929009,
+ 17.793796128062674,
+ null,
+ 18.591443566385063,
+ 17.383012919612007,
+ null,
+ 18.591443566385063,
+ 17.793796128062674,
+ null,
+ 17.7984951942672,
+ 14.767233791165753,
+ null,
+ 20.2870334481428,
+ 17.793796128062674,
+ null,
+ 20.2870334481428,
+ 17.383012919612007,
+ null,
+ 20.266847151047724,
+ 17.383012919612007,
+ null,
+ 20.266847151047724,
+ 17.793796128062674,
+ null,
+ 6.168592644825372,
+ 4.465129675313559,
+ null,
+ 12.929917572172492,
+ 14.767233791165753,
+ null,
+ -16.188840259217496,
+ -16.73740628526125,
+ null,
+ -16.188840259217496,
+ -13.883035825147553,
+ null,
+ 17.45326422341904,
+ 17.383012919612007,
+ null,
+ 17.45326422341904,
+ 17.793796128062674,
+ null,
+ 15.891006930342767,
+ 17.383012919612007,
+ null,
+ 15.891006930342767,
+ 17.793796128062674,
+ null,
+ 18.94508784767475,
+ 17.383012919612007,
+ null,
+ 18.94508784767475,
+ 17.793796128062674,
+ null,
+ 10.519721483283934,
+ 8.358374475986748,
+ null,
+ 13.129230606375554,
+ 14.767233791165753,
+ null,
+ 16.52347396583559,
+ 17.383012919612007,
+ null,
+ 16.52347396583559,
+ 17.793796128062674,
+ null,
+ 19.316441539819415,
+ 17.793796128062674,
+ null,
+ 19.316441539819415,
+ 17.383012919612007,
+ null,
+ 17.808924366013617,
+ 17.383012919612007,
+ null,
+ 17.808924366013617,
+ 17.793796128062674,
+ null,
+ 21.1696840444441,
+ 17.793796128062674,
+ null,
+ 16.61831528214116,
+ 14.767233791165753,
+ null,
+ -7.976749825501475,
+ -5.305916009062771,
+ null,
+ 19.290346621460948,
+ 17.383012919612007,
+ null,
+ 19.290346621460948,
+ 17.793796128062674,
+ null,
+ 16.15731021460754,
+ 17.383012919612007,
+ null,
+ 16.15731021460754,
+ 17.793796128062674,
+ null,
+ 21.13336581239527,
+ 17.793796128062674,
+ null,
+ 18.234061804870244,
+ 17.383012919612007,
+ null,
+ 18.234061804870244,
+ 17.793796128062674,
+ null,
+ 15.856463382283577,
+ 17.383012919612007,
+ null,
+ 15.856463382283577,
+ 17.793796128062674,
+ null,
+ 13.784212418396557,
+ 17.383012919612007,
+ null,
+ -1.6621571889152875,
+ -1.6958707182869648,
+ null,
+ 18.01643640847642,
+ 17.383012919612007,
+ null,
+ 18.01643640847642,
+ 17.793796128062674,
+ null,
+ 16.36563488724154,
+ 17.383012919612007,
+ null,
+ 16.36563488724154,
+ 17.793796128062674,
+ null,
+ 14.483331231403675,
+ 17.793796128062674,
+ null,
+ 16.218797803880534,
+ 17.383012919612007,
+ null,
+ 16.218797803880534,
+ 17.793796128062674,
+ null,
+ 17.97344143563745,
+ 17.383012919612007,
+ null,
+ 17.97344143563745,
+ 17.793796128062674,
+ null,
+ 3.2435804153559262,
+ 5.402907007667126,
+ null,
+ -1.7190425033339873,
+ -3.3418825609902427,
+ null,
+ -11.538314826060407,
+ -11.29234486182441,
+ null,
+ 14.968050808360838,
+ 14.767233791165753,
+ null,
+ 13.268802148583784,
+ 14.767233791165753,
+ null,
+ 18.60267962239572,
+ 17.383012919612007,
+ null,
+ 18.60267962239572,
+ 17.793796128062674,
+ null,
+ 20.241728533750628,
+ 17.383012919612007,
+ null,
+ 20.241728533750628,
+ 17.793796128062674,
+ null,
+ 20.79853884709638,
+ 17.793796128062674,
+ null,
+ 19.918504409491106,
+ 17.793796128062674,
+ null,
+ 19.918504409491106,
+ 17.383012919612007,
+ null,
+ -8.075294952812861,
+ -9.859605488067325,
+ null,
+ -9.043276446002867,
+ -10.51850244110427,
+ null,
+ -9.043276446002867,
+ -9.137995914259335,
+ null,
+ 15.933681725807805,
+ 17.383012919612007,
+ null,
+ 15.933681725807805,
+ 17.793796128062674,
+ null,
+ 17.696627605097554,
+ 17.383012919612007,
+ null,
+ 17.696627605097554,
+ 17.793796128062674,
+ null,
+ 12.882281213462367,
+ 14.767233791165753,
+ null,
+ 15.84746212104952,
+ 14.767233791165753,
+ null,
+ 19.671110638083217,
+ 17.793796128062674,
+ null,
+ 17.726574132118806,
+ 17.383012919612007,
+ null,
+ 17.726574132118806,
+ 17.793796128062674,
+ null,
+ 14.563940628397631,
+ 17.793796128062674,
+ null,
+ 16.82537621991663,
+ 17.383012919612007,
+ null,
+ 16.82537621991663,
+ 17.793796128062674,
+ null,
+ 15.685902967095739,
+ 17.793796128062674,
+ null,
+ 15.685902967095739,
+ 17.383012919612007,
+ null,
+ 14.741924159224842,
+ 17.793796128062674,
+ null,
+ 17.288374628006324,
+ 17.383012919612007,
+ null,
+ 17.288374628006324,
+ 17.793796128062674,
+ null,
+ 16.955054852390468,
+ 17.383012919612007,
+ null,
+ 16.955054852390468,
+ 17.793796128062674,
+ null,
+ 19.417153998704617,
+ 17.383012919612007,
+ null,
+ 19.417153998704617,
+ 17.793796128062674,
+ null,
+ 15.121700721238964,
+ 17.383012919612007,
+ null,
+ 15.121700721238964,
+ 17.793796128062674,
+ null,
+ 20.01606645238458,
+ 17.383012919612007,
+ null,
+ 20.01606645238458,
+ 17.793796128062674,
+ null,
+ 14.037141024682432,
+ 17.383012919612007,
+ null,
+ 3.1544494401128524,
+ 1.3912666665754576,
+ null,
+ 3.1544494401128524,
+ 2.1956684246829385,
+ null,
+ -13.066661108968566,
+ -11.24334686975556,
+ null,
+ 4.745329252150413,
+ 4.479700722985545,
+ null,
+ 4.745329252150413,
+ 6.283133275145741,
+ null,
+ -8.940121902174184,
+ -7.663941780080888,
+ null,
+ 7.359370399973077,
+ 10.013353150820242,
+ null,
+ 7.359370399973077,
+ 6.283133275145741,
+ null,
+ 7.860345828704119,
+ 10.013353150820242,
+ null,
+ 7.860345828704119,
+ 6.283133275145741,
+ null,
+ -1.0483669419973778,
+ 1.1675351373220524,
+ null,
+ -7.239415659631179,
+ -8.560329019195615,
+ null,
+ 21.38196294430897,
+ 21.267192965189107,
+ null,
+ 11.756915677045937,
+ 8.990022300149276,
+ null,
+ 8.766139719613324,
+ 11.019231894500201,
+ null,
+ 21.267192965189107,
+ 20.679356598004702,
+ null,
+ 4.000910950487333,
+ 4.479700722985545,
+ null,
+ 4.000910950487333,
+ 6.283133275145741,
+ null,
+ -3.050984643079521,
+ -5.604837463318379,
+ null,
+ 19.113938239837466,
+ 16.078387958536506,
+ null,
+ -5.727282121791605,
+ -7.6127595670645505,
+ null,
+ -5.014213553729322,
+ -5.1689120628515735,
+ null,
+ -14.635024378506934,
+ -15.112705528427458,
+ null,
+ 8.565962804238229,
+ 10.013353150820242,
+ null,
+ 8.565962804238229,
+ 6.283133275145741,
+ null,
+ -15.890185356621734,
+ -15.704248476240835,
+ null,
+ -4.731768730493457,
+ -7.2437152921068275,
+ null,
+ 1.6977476489656436,
+ 2.606777360852669,
+ null,
+ 18.154860779828756,
+ 16.078387958536506,
+ null,
+ 18.653276009869735,
+ 16.078387958536506,
+ null,
+ -10.497077346193414,
+ -9.501494765019928,
+ null,
+ -10.497077346193414,
+ -10.352351904705175,
+ null,
+ 18.288498919448255,
+ 16.078387958536506,
+ null,
+ 0.7431060248201902,
+ 0.3487538143716118,
+ null,
+ 0.7431060248201902,
+ 3.5750093576229536,
+ null,
+ 15.886827429789896,
+ 16.078387958536506,
+ null,
+ 17.675491799855113,
+ 16.078387958536506,
+ null,
+ 17.91680762187519,
+ 16.078387958536506,
+ null,
+ 3.2801266702880763,
+ 0.3487538143716118,
+ null,
+ 3.2801266702880763,
+ 3.5750093576229536,
+ null,
+ 2.682790066877558,
+ 0.3487538143716118,
+ null,
+ 6.919921812362842,
+ 6.955454609372014,
+ null,
+ 6.919921812362842,
+ 4.533380670144705,
+ null,
+ -10.352351904705175,
+ -12.815773744324012,
+ null,
+ -10.352351904705175,
+ -11.560932832329058,
+ null,
+ -0.2167048632130567,
+ -1.5838117775480958,
+ null,
+ -0.2167048632130567,
+ 2.1956684246829385,
+ null,
+ -1.4437986078242833,
+ 0.3487538143716118,
+ null,
+ -13.213591629517639,
+ -12.563721614285875,
+ null,
+ -9.095416110157403,
+ -7.191672826830745,
+ null,
+ -9.095416110157403,
+ -10.877664984855699,
+ null,
+ -9.095416110157403,
+ -10.877664984855699,
+ null,
+ 2.200082949398928,
+ 0.3487538143716118,
+ null,
+ 2.200082949398928,
+ 3.5750093576229536,
+ null,
+ -10.977681433120315,
+ -9.264580390810654,
+ null,
+ -10.977681433120315,
+ -12.563721614285875,
+ null,
+ -4.139923708678614,
+ -6.544841250435663,
+ null,
+ -4.139923708678614,
+ -2.092282979040595,
+ null,
+ -4.139923708678614,
+ -2.229840974733451,
+ null,
+ -4.139923708678614,
+ -4.930437010354747,
+ null,
+ 13.755204787793724,
+ 11.019231894500201,
+ null,
+ -9.389375362580894,
+ -11.666001141543395,
+ null,
+ -10.352351904705175,
+ -9.389375362580894,
+ null,
+ -4.650678621741309,
+ -6.788614306827233,
+ null,
+ 13.14269509207124,
+ 16.078387958536506,
+ null,
+ -7.08587920068209,
+ -7.191672826830745,
+ null,
+ -7.08587920068209,
+ -5.061312454241081,
+ null,
+ -1.3993516846995084,
+ 0.3487538143716118,
+ null,
+ -5.791712433332692,
+ -8.037705508396558,
+ null,
+ -5.791712433332692,
+ -3.4856970302562065,
+ null,
+ -6.6247330469256465,
+ -5.084769748144755,
+ null,
+ -1.329606090751159,
+ 0.3487538143716118,
+ null,
+ 3.2313711640535168,
+ 5.761312303766434,
+ null,
+ 9.361342440809858,
+ 7.3392480990631235,
+ null,
+ 0.09293232147749464,
+ -0.21275192955190647,
+ null,
+ 1.209753793553072,
+ 0.3487538143716118,
+ null,
+ 1.209753793553072,
+ 3.5750093576229536,
+ null,
+ -0.48006248890437775,
+ 0.3487538143716118,
+ null,
+ 6.970146957973679,
+ 8.358374475986748,
+ null,
+ 10.658134422431962,
+ 12.562034505438607,
+ null,
+ 10.658134422431962,
+ 11.019231894500201,
+ null,
+ -10.745486365243181,
+ -13.289357761350335,
+ null,
+ -10.352351904705175,
+ -10.745486365243181,
+ null,
+ -2.630122160653607,
+ -4.224096997078707,
+ null,
+ -13.37817835195691,
+ -15.046861827955759,
+ null,
+ -13.37817835195691,
+ -12.943459755203083,
+ null,
+ -2.6488870588261384,
+ 0.3487538143716118,
+ null,
+ 1.1284637138203344,
+ 0.3487538143716118,
+ null,
+ -7.849639953321988,
+ -5.666385925283225,
+ null,
+ -10.352351904705175,
+ -7.849639953321988,
+ null,
+ 16.485115557937508,
+ 18.205149271954912,
+ null,
+ 11.194279832169235,
+ 10.013353150820242,
+ null,
+ 11.194279832169235,
+ 13.124838098488237,
+ null,
+ 18.11772973076478,
+ 17.39378749907511,
+ null,
+ 18.11772973076478,
+ 18.36869277547518,
+ null,
+ 18.36869277547518,
+ 20.005484246747542,
+ null,
+ 18.36869277547518,
+ 20.19044152278915,
+ null,
+ 17.01996907089426,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 17.01996907089426,
+ null,
+ 11.595139790769299,
+ 10.013353150820242,
+ null,
+ 11.595139790769299,
+ 13.124838098488237,
+ null,
+ -7.13790715441922,
+ -8.959712560695248,
+ null,
+ 8.315845491584616,
+ 7.2628399837274245,
+ null,
+ 18.205149271954912,
+ 15.240022562465837,
+ null,
+ 0.39921210150761577,
+ -1.3539356618448246,
+ null,
+ 15.456749694177255,
+ 14.088120902236506,
+ null,
+ 15.240022562465837,
+ 15.456749694177255,
+ null,
+ 10.683686813836902,
+ 10.013353150820242,
+ null,
+ 10.683686813836902,
+ 13.124838098488237,
+ null,
+ 19.259948835927116,
+ 18.28180496454909,
+ null,
+ 18.36869277547518,
+ 19.259948835927116,
+ null,
+ 20.292814361341577,
+ 22.30931842201065,
+ null,
+ 18.36869277547518,
+ 20.292814361341577,
+ null,
+ -15.13948322261798,
+ -15.82253266396615,
+ null,
+ -15.13948322261798,
+ -13.007901951342296,
+ null,
+ 11.845588325612976,
+ 10.013353150820242,
+ null,
+ 11.845588325612976,
+ 13.124838098488237,
+ null,
+ 5.160496908475858,
+ 3.057344673704041,
+ null,
+ -13.419203553399395,
+ -15.6883445079686,
+ null,
+ 21.208861475687293,
+ 22.30931842201065,
+ null,
+ 18.36869277547518,
+ 21.208861475687293,
+ null,
+ -1.722835548838387,
+ -0.6457974802125008,
+ null,
+ 18.205149271954912,
+ 17.442848322188567,
+ null,
+ -10.116396077525179,
+ -10.90056189569408,
+ null,
+ 19.497724196889425,
+ 17.39378749907511,
+ null,
+ 12.754326143960697,
+ 10.013353150820242,
+ null,
+ 12.754326143960697,
+ 13.124838098488237,
+ null,
+ 18.205149271954912,
+ 19.297972378051927,
+ null,
+ 15.550864910877822,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 15.550864910877822,
+ null,
+ -7.424206763444326,
+ -5.328887492705765,
+ null,
+ 16.346818810590605,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 16.346818810590605,
+ null,
+ 0.3714925176070536,
+ 0.8171930358840568,
+ null,
+ -8.336425792587137,
+ -9.5871294091661,
+ null,
+ -11.851964883592148,
+ -12.576677283266495,
+ null,
+ 15.481065975422577,
+ 17.39378749907511,
+ null,
+ 18.36869277547518,
+ 15.481065975422577,
+ null,
+ -1.6608044293760673,
+ 0.6717530029196913,
+ null,
+ 14.536521168193532,
+ 16.078387958536506,
+ null,
+ 18.749575040736318,
+ 16.078387958536506,
+ null,
+ -14.784209689560061,
+ -13.083035600058789,
+ null,
+ -14.784209689560061,
+ -15.039225888857187,
+ null,
+ -10.765615145602576,
+ -12.904548579206185,
+ null,
+ 15.823112383588235,
+ 16.078387958536506,
+ null,
+ -16.107136771139988,
+ -16.40188908183957,
+ null,
+ -14.784209689560061,
+ -16.107136771139988,
+ null,
+ 2.905998540799444,
+ 5.081672141197279,
+ null,
+ 2.905998540799444,
+ 1.9637307033203717,
+ null,
+ 3.4067017305617755,
+ 4.053067206800075,
+ null,
+ 3.4067017305617755,
+ 5.70560209996295,
+ null,
+ -9.996322178397245,
+ -11.788105138110016,
+ null,
+ 14.68692773332524,
+ 16.078387958536506,
+ null,
+ 6.62722182039912,
+ 8.990022300149276,
+ null,
+ -8.00184431026471,
+ -10.210094274413706,
+ null,
+ -8.00184431026471,
+ -5.810879984265869,
+ null,
+ -8.00184431026471,
+ -8.903823997123547,
+ null,
+ 3.0133512901104416,
+ 1.9311378293970232,
+ null,
+ 3.0133512901104416,
+ 1.9637307033203717,
+ null,
+ -4.992963192827679,
+ -3.6299632351379643,
+ null,
+ 5.065105885279123,
+ 6.612356435898742,
+ null,
+ 5.065105885279123,
+ 3.058246733183386,
+ null,
+ -10.738172367472357,
+ -11.984368454287786,
+ null,
+ -4.848489410736379,
+ -4.214243832496144,
+ null,
+ 15.742705654242956,
+ 16.078387958536506,
+ null,
+ 2.7142673474102605,
+ 4.753799496196119,
+ null,
+ -7.740250027484222,
+ -6.794048016799521,
+ null,
+ -7.740250027484222,
+ -4.831987792200215,
+ null,
+ 0.6549196038858884,
+ 2.069421512594827,
+ null,
+ -15.481322262367849,
+ -15.74961543883628,
+ null,
+ 9.9270695544927,
+ 8.990022300149276,
+ null,
+ 0.8165423895756174,
+ 3.058246733183386,
+ null,
+ 0.8165423895756174,
+ -0.6038874973527248,
+ null,
+ 6.154284321913229,
+ 6.283133275145741,
+ null,
+ 6.154284321913229,
+ 4.479700722985545,
+ null,
+ 9.736984239596191,
+ 11.370588014134997,
+ null,
+ 9.736984239596191,
+ 11.676701598709945,
+ null,
+ 4.5636886300375465,
+ 2.6835145948445223,
+ null,
+ 0.957578190014004,
+ 3.058246733183386,
+ null,
+ 0.957578190014004,
+ -0.6038874973527248,
+ null,
+ -5.085998787236029,
+ -6.047965183738679,
+ null,
+ -3.42059900122231,
+ -1.5891407097654695,
+ null,
+ -3.42059900122231,
+ -5.810879984265869,
+ null,
+ -9.972130387891122,
+ -10.774500868334462,
+ null,
+ -9.972130387891122,
+ -10.080675555238377,
+ null,
+ 1.8662812888160822,
+ 0.03081158009237195,
+ null,
+ 1.8662812888160822,
+ 3.5652763931909393,
+ null,
+ 1.3915121325117346,
+ 3.535429334045448,
+ null,
+ -0.7897807487357376,
+ -3.380320358295136,
+ null,
+ 3.867034254303558,
+ 3.3720009773173993,
+ null,
+ 14.660023764695653,
+ 12.541822085749827,
+ null,
+ 14.660023764695653,
+ 16.40909862876928,
+ null,
+ 10.723050937671145,
+ 11.740285647534707,
+ null,
+ 9.058664593148738,
+ 10.271599739081877,
+ null,
+ 9.058664593148738,
+ 10.15798883846539,
+ null,
+ 15.92515851367293,
+ 16.078387958536506,
+ null,
+ 17.192715010497217,
+ 18.647618505991836,
+ null,
+ 2.1783236015756544,
+ -0.24052084790888673,
+ null,
+ 13.556809084666387,
+ 12.541822085749827,
+ null,
+ 13.556809084666387,
+ 14.322218902949006,
+ null,
+ 16.61552754959879,
+ 16.078387958536506,
+ null,
+ -1.05163940544016,
+ -3.796144110693343,
+ null,
+ 6.600757008000865,
+ 8.990022300149276,
+ null,
+ -3.4904908702143596,
+ -1.3539356618448246,
+ null,
+ -3.4904908702143596,
+ -5.416392097389759,
+ null,
+ -1.3510602959274558,
+ -3.4856970302562065,
+ null,
+ 12.541822085749827,
+ 10.15798883846539,
+ null,
+ 12.541822085749827,
+ 10.271599739081877,
+ null,
+ 9.993919349668218,
+ 10.271599739081877,
+ null,
+ 22.451348423362106,
+ 21.994882085341327,
+ null,
+ -4.453520432336367,
+ -6.480360143131765,
+ null,
+ -2.737929922909383,
+ -1.3539356618448246,
+ null,
+ -2.737929922909383,
+ -3.7384427182958966,
+ null,
+ 20.929839497344,
+ 21.92974993447186,
+ null,
+ -0.38977616922758296,
+ -2.7658430560231495,
+ null,
+ 2.4761426404672013,
+ 2.77885309140947,
+ null,
+ -3.5658825848012548,
+ -4.882469985148913,
+ null,
+ 7.917490080628118,
+ 10.271599739081877,
+ null,
+ 7.917490080628118,
+ 10.15798883846539,
+ null,
+ 6.316864787134258,
+ 6.7657793056473725,
+ null,
+ 2.302973690967117,
+ 2.5222424384617113,
+ null,
+ 2.0018042499974964,
+ 4.019933376936817,
+ null,
+ -15.718792057509107,
+ -16.787552544072025,
+ null,
+ -15.718792057509107,
+ -16.856805274678862,
+ null,
+ -16.671786382411057,
+ -16.856805274678862,
+ null,
+ -16.671786382411057,
+ -14.472775071887039,
+ null,
+ -0.2712384574698234,
+ -2.4479939519338654,
+ null,
+ 7.928407480010116,
+ 9.862183182215059,
+ null,
+ 7.928407480010116,
+ 5.820481650095663,
+ null,
+ -6.123839096600868,
+ -6.794048016799521,
+ null,
+ -6.123839096600868,
+ -4.831987792200215,
+ null,
+ -17.75345309979954,
+ -16.856805274678862,
+ null,
+ 11.059371438887155,
+ 11.740285647534707,
+ null,
+ -6.111187613432292,
+ -5.328887492705765,
+ null,
+ 2.792614522565272,
+ 4.998308370682041,
+ null,
+ -13.430216856829446,
+ -14.041780289094081,
+ null,
+ -13.430216856829446,
+ -13.116468577073746,
+ null,
+ 22.569969063829703,
+ 21.0132610212424,
+ null,
+ 22.569969063829703,
+ 22.924746987035036,
+ null,
+ 12.35995628928166,
+ 10.038326449843389,
+ null,
+ 12.35995628928166,
+ 13.727303787440793,
+ null,
+ 13.14269509207124,
+ 10.933227463611694,
+ null,
+ -8.647443133101893,
+ -7.397820564553798,
+ null,
+ 9.298780186928086,
+ 9.71706183696487,
+ null,
+ 7.104101159161629,
+ 4.479700722985545,
+ null,
+ 7.104101159161629,
+ 6.283133275145741,
+ null,
+ -11.39984200097884,
+ -11.892204745738725,
+ null,
+ -11.39984200097884,
+ -13.116468577073746,
+ null,
+ 13.621527099783169,
+ 16.078387958536506,
+ null,
+ 8.995856150249049,
+ 7.837269659316131,
+ null,
+ 8.995856150249049,
+ 8.604227898026458,
+ null,
+ 17.91680762187519,
+ 16.803115192697085,
+ null,
+ 10.592206668431514,
+ 8.990022300149276,
+ null,
+ -1.9774734854256746,
+ -0.22142264816660884,
+ null,
+ 13.175545340601293,
+ 16.078387958536506,
+ null,
+ 17.91680762187519,
+ 20.460968550160327,
+ null,
+ 4.123014882661909,
+ 3.5809436333777107,
+ null,
+ -15.589877724228934,
+ -16.856805274678862,
+ null,
+ -15.589877724228934,
+ -13.116468577073746,
+ null,
+ 5.642890983127066,
+ 3.5809436333777107,
+ null,
+ -9.952608788794125,
+ -10.774500868334462,
+ null,
+ -9.952608788794125,
+ -10.080675555238377,
+ null,
+ -8.027540649214833,
+ -10.774500868334462,
+ null,
+ -8.027540649214833,
+ -10.080675555238377,
+ null,
+ -15.245004444152267,
+ -13.116468577073746,
+ null,
+ -15.245004444152267,
+ -14.472775071887039,
+ null,
+ -12.013371409411429,
+ -10.774500868334462,
+ null,
+ -12.013371409411429,
+ -14.248065303563243,
+ null,
+ -8.489446195769464,
+ -6.745753018806202,
+ null,
+ -8.489446195769464,
+ -10.080675555238377,
+ null,
+ 7.740284024415618,
+ 7.462056618188281,
+ null,
+ 2.118950875491419,
+ 0.3487538143716118,
+ null,
+ 2.118950875491419,
+ 3.5750093576229536,
+ null,
+ 8.528902493244408,
+ 8.990022300149276,
+ null,
+ 22.1115530105183,
+ 22.697040180978924,
+ null,
+ 22.1115530105183,
+ 21.174580092028506,
+ null,
+ -14.689872352838838,
+ -12.302528127312577,
+ null,
+ -14.689872352838838,
+ -13.292069671287392,
+ null,
+ -15.730989259150421,
+ -12.302528127312577,
+ null,
+ -11.715116762578333,
+ -10.680153816736555,
+ null,
+ -11.715116762578333,
+ -14.472775071887039,
+ null,
+ -16.100362768181665,
+ -13.927652348215837,
+ null,
+ -12.72139878404941,
+ -10.774500868334462,
+ null,
+ -12.72139878404941,
+ -10.080675555238377,
+ null,
+ 0.30177859190882206,
+ -1.1287029101082857,
+ null,
+ -8.84370468778664,
+ -10.774500868334462,
+ null,
+ -8.84370468778664,
+ -10.080675555238377,
+ null,
+ -8.79150611597912,
+ -10.774500868334462,
+ null,
+ -8.79150611597912,
+ -10.080675555238377,
+ null,
+ -14.130351738362913,
+ -12.48992128848705,
+ null,
+ -11.715116762578333,
+ -14.130351738362913,
+ null,
+ -14.130351738362913,
+ -14.472775071887039,
+ null,
+ -12.48992128848705,
+ -10.680153816736555,
+ null,
+ -12.48992128848705,
+ -14.472775071887039,
+ null,
+ -11.037333912370942,
+ -10.774500868334462,
+ null,
+ -11.037333912370942,
+ -10.080675555238377,
+ null,
+ -11.638205856093446,
+ -10.774500868334462,
+ null,
+ -11.638205856093446,
+ -10.080675555238377,
+ null,
+ 14.505756784524383,
+ 16.078387958536506,
+ null,
+ -13.764879078951406,
+ -11.892204745738725,
+ null,
+ -12.615899599100104,
+ -13.292069671287392,
+ null,
+ -12.615899599100104,
+ -14.472775071887039,
+ null,
+ 12.541822085749827,
+ 13.384150927324999,
+ null,
+ -8.156655997559467,
+ -10.774500868334462,
+ null,
+ -8.156655997559467,
+ -10.080675555238377,
+ null,
+ 20.455257782435655,
+ 22.671018755703376,
+ null,
+ 20.455257782435655,
+ 21.174580092028506,
+ null,
+ -13.222703067642193,
+ -10.680153816736555,
+ null,
+ -13.222703067642193,
+ -14.472775071887039,
+ null,
+ -10.415070747007382,
+ -12.302528127312577,
+ null,
+ -10.415070747007382,
+ -10.680153816736555,
+ null,
+ -12.049238335779727,
+ -10.774500868334462,
+ null,
+ -12.049238335779727,
+ -10.080675555238377,
+ null,
+ -11.054362849273527,
+ -10.774500868334462,
+ null,
+ -11.054362849273527,
+ -10.080675555238377,
+ null,
+ -2.29826269288487,
+ -1.1287029101082857,
+ null,
+ -12.886462232672827,
+ -10.774500868334462,
+ null,
+ -12.886462232672827,
+ -10.080675555238377,
+ null
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "marker": {
+ "colorbar": {
+ "thickness": 15,
+ "title": {
+ "side": "right",
+ "text": "Node Connections"
+ },
+ "xanchor": "left"
+ },
+ "colorscale": [
+ [
+ 0,
+ "rgb(255,255,217)"
+ ],
+ [
+ 0.125,
+ "rgb(237,248,177)"
+ ],
+ [
+ 0.25,
+ "rgb(199,233,180)"
+ ],
+ [
+ 0.375,
+ "rgb(127,205,187)"
+ ],
+ [
+ 0.5,
+ "rgb(65,182,196)"
+ ],
+ [
+ 0.625,
+ "rgb(29,145,192)"
+ ],
+ [
+ 0.75,
+ "rgb(34,94,168)"
+ ],
+ [
+ 0.875,
+ "rgb(37,52,148)"
+ ],
+ [
+ 1,
+ "rgb(8,29,88)"
+ ]
+ ],
+ "showscale": true,
+ "size": 10
+ },
"mode": "markers",
- "name": "DataFrame 1",
"type": "scatter",
"x": [
- 933483.4567391834,
- -366283.69394185964,
- -181700.15961593334,
- 429817.1381553038,
- 77282.61765229338,
- -894216.5057303684,
- -340099.1897493526,
- 458352.946828549,
- 683996.0178905013,
- 233201.9544420003,
- -884245.3767823352,
- -347699.8273738099,
- 465403.5083914787,
- 183588.8342892922,
- 332347.5294036897,
- -554819.1953686934,
- 950439.392680525,
- -956642.0026505338,
- 801315.0897775844,
- 856763.4161872992,
- 543040.1381149603,
- -190477.9447491629,
- -316220.8201520302,
- 470707.5911725738,
- -40084.87664969729,
- 330812.40467371355,
- 909323.2027302729,
- -968835.1525967998,
- 902764.2360196946,
- 896641.9692342175,
- -21448.410189587543,
- 957697.1302399324,
- 482919.71377339005,
- -922113.7465409437,
- 320129.40833918104,
- -115988.0603293435,
- 320720.9523268768,
- -183915.13182539286,
- 467586.5371865227,
- 155810.07246206168,
- -255273.7184953122,
- 683377.9850822419,
- -820786.1217632035,
- -514479.34659976815,
- 324337.7237462275,
- -158992.66117613608,
- 674390.0901959051,
- -545638.2423811845,
- 604934.7306536661,
- -162966.46759127188,
- 914467.6632273761,
- -881198.5201276346,
- 393875.6303361353,
- -173691.57445018858,
- 101734.4186530189,
- 102890.59825682867,
- -709061.166520672,
- -704117.2696122591,
- -78921.56012487228,
- 82695.01147360781,
- 892639.6045231073,
- -407373.19441791973,
- -542090.163883535,
- 383602.4527648727,
- 587710.1196072107,
- 326147.5533448339,
- -995533.7825129096,
- -534018.0751121859,
- -830220.9718566176,
- 736765.1546685816,
- -377702.94197033683,
- -261148.38158098143,
- 662042.6234050796,
- -883231.0328140896,
- 487333.2756261608,
- 793285.0618945669,
- 884802.6012272596,
- -600937.0920693981,
- 379335.77436914813,
- -840629.2261889379,
- 360724.37328794546,
- 881922.3999063373,
- -78715.90056435295,
- -188072.50905787342,
- 93214.08443516676,
- 212406.3833148444,
- 42356.860080162485,
- 864742.738718304,
- 466495.4269516823,
- -72851.75443980707,
- 296865.7210732206,
- 201690.5001386915,
- -809602.3854719092,
- 455089.0566991821,
- -421789.7677491984,
- -730099.8140962289,
- 941129.1135389946,
- 869007.5350815292,
- 717990.2465833629,
- 197134.69020416553,
- -894718.6391275503,
- -723155.4734128875,
- -8379.412339935,
- -909596.9341151802,
- -292082.4385481624,
- 153864.8390642192,
- 712361.2951724086,
- 914316.0572963407,
- -919652.1895690879,
- 626046.287861095,
- -671624.2805811912,
- -564517.9022853523,
- -836089.2335397754,
- -727307.2831803005,
- -63184.91059391906,
- 168229.98075621086,
- 645979.5543442839,
- 438081.87126206444,
- 826920.9352810534,
- 602407.9673077478,
- 631265.6698211387,
- 777914.9540390078,
- -547642.2852201579,
- 526877.4573910712,
- -38327.955008397694,
- 418566.19868298183,
- 197973.49488166915,
- 184766.2002418735,
- 715784.4905156529,
- -516221.8913464849,
- -434623.4691013651,
- -5596.113939467129,
- 648246.2669582678,
- -400567.27083104127,
- 76755.93591468189,
- 663904.7617724848,
- -897623.4682337678,
- -857957.9247302185,
- 517837.1986306305,
- 232161.74846487082,
- -321727.77392575116,
- 538787.438030321,
- 617187.9259473727,
- 704105.6988044545,
- -169312.1842001153,
- 739393.8950776226,
- 27058.202771294447,
- 21387.915970575654,
- -898957.63764533,
- -96792.91913518484,
- -21227.49778743449,
- 276976.17238035274,
- -755074.7222507059,
- -3151.853730977372,
- 447205.8626187305,
- -409297.7949012127,
- 721040.7630583367,
- -551799.6409460857,
- -495134.76313686476,
- -566236.2561708712,
- -383589.25783163536,
- 520674.05570668046,
- -379083.4425797596,
- 714780.540659039,
- -604109.0475752635,
- 792749.3740975467,
- -695748.732719113,
- -841161.2589156998,
- -195189.11757277558,
- 431924.74953544035,
- 876253.9237453884,
- -969676.0286274004,
- -814469.2956539985,
- -203858.51979069636,
- 987883.3246678433,
- -754434.0508021094,
- 56220.819532364796,
- 291351.1195352343,
- -877967.6203988978,
- -616004.2932641512,
- 650337.6304247482,
- 767568.1344808547,
- 615619.3556276786,
- -205710.37365605726,
- -452877.2624604085,
- 170430.45436057568,
- 66750.84993936031,
- -771349.5296019091,
- -76184.7834570475,
- 223240.49951923918,
- 47468.46409605654,
- -900078.2113245784,
- -707282.1263826032,
- 498738.2468210295,
- 623681.4455269715,
- -439114.2156817536,
- 712395.3589967475,
- -67881.32275742265,
- -903849.429763719,
- -761921.4177536746,
- -289319.9518633871,
- 430326.2401265009,
- 526519.186730167,
- 628334.3788628908,
- 141499.46505001077,
- -25360.886258957606,
- -709849.9682138389,
- 472144.8048529735,
- 642676.881996413,
- 985082.8450351985,
- 177913.9037321007,
- -475020.10876459733,
- 829759.5568487745,
- 621840.5604610262,
- 241848.8026121215,
- 272875.8067462236,
- -434770.8766206291,
- 806359.0699789898,
- -863812.5608722302,
- 675721.386773738,
- -792990.950272441,
- 79002.14739262879,
- 773503.3528407407,
- 267310.8001232671,
- -49360.913627868984,
- 81010.32478152437,
- 698548.8043876948,
- -777612.1742197457,
- 25182.32358250505,
- -459999.322682785,
- -530206.2725823066,
- -285897.65920436603,
- -338463.1555088351,
- -441941.0409727664,
- 507573.35056005995,
- -668626.5976141022,
- 690145.8497871232,
- -89085.74572926975,
- 915263.3573844782,
- 713479.5856259892,
- -767480.6633687961,
- -359558.8897121338,
- 202408.6912441687,
- -472765.09146025503,
- -224465.75825735682,
- 40079.99249920036,
- -257529.7647083643,
- 850913.531484576,
- -907282.0446569585,
- 843622.9094645538,
- 115292.52144101188,
- 284988.9338097777,
- -401281.38711647975,
- -486049.0391869989,
- -623176.5609360784,
- 157004.07763181155,
- 978318.5934822272,
- -822372.6879477986,
- 625086.0530151355,
- 398851.1180425776,
- -982531.8952967137,
- -388346.84791477025,
- 32321.233344296375,
- 829256.0232519812,
- 157263.60815314978,
- 850940.5457161552,
- -652873.5736363298,
- -165877.75686732464,
- 400648.1628683858,
- -844246.5819693888,
- -484658.3050507276,
- 27244.414390010574,
- -235998.43433836033,
- 832880.6118917629,
- 990684.9044964272,
- -878821.3304950048,
- -458711.1024669723,
- 802251.3174304304,
- 408034.5906397866,
- -504542.1352043298,
- 561261.9310804654,
- 97633.05212708894,
- 502900.9484947351,
- -405277.08141188713,
- -641913.5259541672,
- 15427.685521914647,
- 292571.0942710789,
- 942482.3561708895,
- 324668.65708667634,
- -95612.21767736993,
- 280237.001949774,
- -823020.539712868,
- -970779.9930329554,
- -486550.24362551223,
- 231074.82024078374,
- -547870.9118915705,
- -702264.0646188254,
- 158951.22444749888,
- -573579.8815497239,
- 291482.05335721734,
- -662208.9345963952,
- 113379.54184456533,
- 718826.5521028038,
- 670560.6168920255,
- 381475.48544957186,
- -964533.0899372523,
- -573964.3844729715,
- 860516.1611720189,
- -641961.420259417,
- 940801.7662788922,
- 444032.79606093984,
- -484224.4518047343,
- -149110.68317453036,
- 975774.1818193704,
- 900636.500591634,
- 725677.6911089884,
- -611806.3248940435,
- 328217.0229704833,
- 431602.0630810575,
- -96395.66533854649,
- -230307.1527079439,
- -866085.6054143156,
- 596873.7891156799,
- 728757.2302041758,
- 185469.61189416988,
- 506079.2433519592,
- 186411.39583669396,
- 661913.0057686664,
- 99207.88555998539,
- 852437.5161791889,
- -134443.11900166151,
- -124462.9076692243,
- 6274.1707185636205,
- 505074.68310500745,
- -640937.7577869985,
- 348115.135016678,
- 752993.026601618,
- -798864.8616855099,
- -862762.1182790956,
- -356820.70111571206,
- 177560.89683188248,
- -697806.9091883699,
- 228554.08877429407,
- -104591.68288544696,
- 596758.7520509677,
- 684264.4055752846,
- 38860.38466092723,
- -293966.9337601134,
- 205575.50894640197,
- -238955.24483877773,
- -887559.5147387895,
- -810392.7287200175,
- -384269.55450074596,
- 825928.0205778476,
- -630743.5726622504,
- 602845.2465308853,
- 254733.63076877088,
- -223735.95682974058,
- 857326.5405612354,
- -606908.4936988576,
- 327038.5420484947,
- 900407.8115062198,
- 570248.7195378274,
- -196417.42374274827,
- 302746.5200068291,
- -185247.41886056017,
- 661833.7999114355,
- 342718.2897794898,
- 21877.881505122376,
- 897967.5960706323,
- 426984.0513968357,
- -910074.4476692642,
- 290487.3206044216,
- -648161.226738482,
- -96665.56418908923,
- 235712.27042544284,
- -597264.9068567748,
- -837885.1665043108,
- 882596.9345251996,
- 159141.450872055,
- 381868.0890948134,
- 978774.8671757412,
- -588807.6533459923,
- -194279.80743491635,
- -596759.6697357827,
- -520404.53542439133,
- 839521.0558089447,
- 288080.60505450726,
- 771674.8466703555,
- -215057.2188755595,
- -102229.42822348347,
- 376753.80948773184,
- -25705.236251931663,
- 235382.84267939447,
- -768077.3568489492,
- -13964.755390297512,
- 660747.1133854709,
- -435531.37121292826,
- 988256.9959860345,
- 28339.46953594202,
- 967043.4622880626,
- 926635.0133391499,
- -535039.744551085,
- -666783.5869524132,
- -212732.11676849678,
- -359443.6248692099,
- 92578.11928373361,
- -150943.60975530808,
- 942137.0889056928,
- 263248.3851843943,
- 159066.9874468782,
- 435040.8329212534,
- -268079.75936596474,
- 403899.78181010886,
- -405306.02044891764,
- -476745.24667233275,
- -88739.66357379004,
- -655098.6365330735,
- 286552.26150755887,
- -252963.25799429885,
- 486620.05816211493,
- -328431.293413165,
- 986835.0736272966,
- -41600.750115048155,
- 629509.3608464187,
- -653765.5633018771,
- 487810.7120183575,
- 79696.72280020501,
- 342674.5313034989,
- 93058.14653318057,
- 792119.881503258,
- 167826.07426211916,
- -38509.35045387782,
- 464766.31972976757,
- 502981.5468323673,
- 868139.6588996886,
- -170207.19763056102,
- -443329.20444239624,
- -525909.7546974054,
- 578051.3518156023,
- 61547.78938514394,
- 522257.1386652817,
- 577392.8090613643,
- 665091.1247342328,
- 786778.6542879742,
- 39590.950316552575,
- 815950.3189379036,
- 586091.0234255437,
- 38830.39103194141,
- -635979.9761410847,
- -651013.7192327545,
- 811131.8183294842,
- 190593.36686297934,
- 588024.254014322,
- 316053.7349427122,
- 587577.2507856083,
- 351301.77422378736,
- 848868.644806498,
- -299923.25938496925,
- -360885.8773834229,
- -345441.7571526054,
- 437694.3292319815,
- 947333.3380176532,
- 916183.0371557598,
- 388152.5796828631,
- -789394.6420817033,
- -84551.7835832943,
- 946906.6064106144,
- 608890.8180953821,
- 677591.4524686069,
- 521072.90601517487,
- -178216.50664417076,
- -14463.351502338017,
- 554892.5945752865,
- -387963.4681192348,
- 717447.7001192871,
- 180005.58774911758,
- 698099.5531065653,
- -656436.9674364273,
- 733527.2827753351,
- -580427.8565184487,
- 345722.8774127468,
- -150377.71014886748,
- 155998.46897914205,
- 65171.48029580055,
- -181637.07161457854,
- 308041.3932794368,
- -287412.34625400434,
- -656253.5214717102,
- -648310.0496600611,
- -746381.2366853913,
- 83622.16583016257,
- -19364.354844584097,
- -625569.4912948359,
- 185128.5230804234,
- 854658.2178867612,
- -502221.2423468795,
- -233364.95639678233,
- -941688.012740526,
- 561686.4496072094,
- 961212.1187088809,
- 755173.4644584443,
- -476509.16832876677,
- 287186.1271102667,
- -561334.5561021474,
- 227756.20584921018,
- 506936.28230545484,
- 264911.4833220334,
- 485523.02644619404,
- -374210.50593961857,
- 712593.3587444853,
- -105937.42716478017,
- -482613.4945723788,
- 414860.97835098446,
- -452038.74419801694,
- -535310.6977113642,
- 381373.32463077886,
- -974324.3390105796,
- 806644.7911977044,
- 127035.20726680085,
- -613747.5981969669,
- -825092.242771966,
- 987745.54077045,
- 807729.8305085383,
- 820212.0126397252,
- -911815.111465116,
- 489670.6800430286,
- 959231.5187373273,
- -927929.0330374057,
- 588029.7165107527,
- -171353.0669321337,
- 993726.2469277983,
- 77338.04827971746,
- -426997.16687418986,
- 712085.8290284196,
- 435772.6139411109,
- -440084.7440775184,
- 710759.9155269597,
- -215550.8344180117,
- 891032.4039561477,
- 790332.191399174,
- 963066.2603491714,
- -685442.0011943391,
- 57957.366801817625,
- -730374.7417052435,
- -47892.04997571828,
- 610875.7945680574,
- 632616.1117033211,
- -553534.4002918107,
- 823874.0941544147,
- 787091.7877283216,
- 669797.903895613,
- 951883.2032729578,
- -610474.3031996711,
- -359953.17372292135,
- 800919.0893525608,
- 288707.8838759225,
- -788593.7694426945,
- -699791.7379094269,
- -576254.7272775868,
- 962442.7194031442,
- 193663.74090908578,
- 192898.7761189127,
- -636627.180160112,
- -678923.3564325646,
- -536139.8345770207,
- 483038.4019771743,
- -615542.8321597268,
- -425154.8175794468,
- 389129.0935796654,
- -622531.8936491543,
- -942230.4813874803,
- -702245.1002356531,
- 167597.5150278466,
- 426236.00695759256,
- 901070.8355996925,
- 102710.81065561782,
- 292658.47368995537,
- 772772.6984495806,
- 966475.7136151139,
- 787936.2857831245,
- 417358.92862643854,
- 530081.4122312207,
- -761342.1567954683,
- -290976.6678246506,
- -532125.9656384134,
- 28934.677807041397,
- 337954.1081590967,
- 244901.82551867145,
- -166247.8824189475,
- -676791.1366678317,
- 711185.3610915573,
- -492150.0337925884,
- -672459.1537540519,
- 391637.40453810303,
- 301584.1595675015,
- -728121.2615781027,
- 944314.1496489326,
- -645320.261332402,
- -270676.14341981197,
- 296918.82281927473,
- -797857.9983668334,
- -613602.9955438446,
- -259651.77389573512,
- 676283.1023599645,
- 362932.4315698379,
- -926960.4448085378,
- 343087.31060714746,
- -670836.4706392518,
- 118341.36735152123,
- -702119.1055820582,
- -839634.4902872923,
- 342991.9322557311,
- 758907.6565430774,
- -264607.122813989,
- 291461.7572568536,
- -573251.5566775127,
- -471326.4887253379,
- -34270.002993454174,
- 896594.9176006076,
- -146728.84329680348,
- 907629.9728597652,
- 778318.4083408179,
- -868290.3040404802,
- -735155.8654195756,
- -45679.01742848979,
- -97941.64126586735,
- -892081.6025005636,
- -813369.5244834947,
- -266277.8424595926,
- 499966.1047499513,
- -163970.4374781452,
- 706091.1703498379,
- 245960.7519979834,
- 233684.57456860182,
- -926848.5189596672,
- -51883.16139370164,
- -462205.5848496869,
- 81873.6562964113,
- 145994.06525380543,
- -64795.584166803535,
- 254279.6946992969,
- 306373.6140003388,
- -624947.0977210656,
- -966781.2640380245,
- 460032.0894692578,
- -397043.7914764817,
- -330148.6543510428,
- 542536.1597444247,
- -563315.1228241045,
- 949568.659661479,
- -357140.1701558412,
- 225969.41310828787,
- 216192.12300347246,
- -203812.76400936677,
- -852481.3244450431,
- 699178.8707138866,
- 121511.70759860253,
- 932707.054767189,
- -669959.8044202978,
- 471252.6446453877,
- -418007.2471374858,
- -545416.2893863735,
- -481867.3056995857,
- -595545.0990912922,
- -998353.339486974,
- -794489.958155848,
- 335634.35548853973,
- -242831.30498189954,
- -580395.9993417307,
- -751958.7094608329,
- 578302.6554046244,
- -745776.6332386915,
- -70504.44002347355,
- 405209.7695122363,
- 109205.8892351293,
- 586607.876237558,
- -712531.0858282759,
- -653203.1728910306,
- -684804.0449314632,
- 942573.4499942933,
- 242950.78076844878,
- -19300.152901333688,
- -580762.4057397209,
- -191488.59545737063,
- -77572.38474831896,
- 529076.7318097918,
- 36891.53405376744,
- -759955.1160411198,
- 589971.9146077507,
- -901190.6291528433,
- 499075.9648008205,
- -376632.64586787904,
- -737243.4192446303,
- 853135.4107512173,
- 686457.484463654,
- 521281.92136153625,
- 436109.83555232076,
- -806662.233202842,
- 910837.6132632548,
- -57990.46711172173,
- 705446.5746370952,
- -335142.5920204685,
- -740869.9580183655,
- -222547.52258726262,
- -832582.2800456601,
- 752502.5085062573,
- -355715.62235270557,
- -340834.80306814297,
- 428799.7229905596,
- 825623.1467348118,
- 864376.9474193164,
- -590701.5223808518,
- 226406.7560612437,
- -190301.22204413003,
- 117844.33198406918,
- -167083.48793762305,
- -918312.1848531989,
- 706355.099357429,
- -689526.4698726246,
- -139916.09976592124,
- 937041.4017451311,
- -105081.2965803316,
- -313056.76625531854,
- -642695.7852381483,
- -477291.66072254523,
- -479638.8660145041,
- -954606.2705035188,
- -764170.8582776308,
- -204790.6833328741,
- 388801.7469946561,
- -582315.3533217438,
- -264500.0476571513,
- 855596.2450162555,
- 615016.0555362441,
- -529690.6065362472,
- -92293.23122608424,
- -977538.4639587627,
- 162333.8569723003,
- 831880.4547810224,
- 71904.65654530453,
- 675024.5044104133,
- 72375.46008868323,
- 46135.90915074761,
- 355766.25091383286,
- 532252.0967147304,
- -198592.19940670926,
- 485939.57244768913,
- 729754.7566167935,
- 258128.7709562441,
- -728546.1606056102,
- -630700.5539374348,
- -200619.29049779504,
- -773476.9110081785,
- 488523.16278449906,
- 479337.6307810131,
- -271896.07094580337,
- 964709.7956724573,
- -50300.24303033032,
- -150561.66474866783,
- -743883.5859656468,
- 6067.961335880279,
- -834076.6783541171,
- 390848.29142426414,
- -744704.8915039272,
- 148673.7205464348,
- 130164.00155151908,
- -739805.0759459997,
- -606712.3381309088,
- 543108.1443403312,
- 168551.44621210094,
- -414611.0283050124,
- -174433.36460080495,
- -417367.8461293129,
- -66996.95100886682,
- -247523.22942080896,
- 851726.2346237586,
- -382806.5929270614,
- -764137.0198895781,
- -144882.33504458336,
- -287041.85032694094,
- 922144.5453300388,
- -438724.37629613816,
- -194690.83075642347,
- -238963.84272863713,
- -830756.8210522116,
- -998872.3625218678,
- -735897.559121462,
- -11490.554677258791,
- -551483.7339817027,
- 130910.4232699998,
- 311550.7252590313,
- -797945.4411613465,
- 13303.11779384674,
- -410427.3486838355,
- 26724.00570022315,
- 820769.508205695,
- -623841.5453229153,
- 714809.7032498644,
- 178509.2018106782,
- -558219.8487983729,
- 391479.0624586482,
- 322721.38939944515,
- 270285.70623006474,
- 225652.9409437853,
- 329288.4568519665,
- 479297.22540408594,
- 72393.98898358118,
- 480997.48548787157,
- -63407.82252240862,
- -106200.53386350947,
- -862100.7045863331,
- -800151.1762025431,
- 897190.8479211597,
- -208079.4572164033,
- -944846.5041680955,
- -417134.1848025454,
- -290539.2420382984,
- -887279.9756945478,
- -651653.1621533652,
- -568650.6221028853,
- 993745.8997021096,
- 363619.80312148435,
- -773588.2394005709,
- -86410.67840110871,
- 795103.7666010536,
- 388097.2852283364,
- 389360.08405924926,
- 265851.2953266563,
- -270637.2190499677,
- -43689.021691403206,
- 896292.0975587853,
- 145659.90931488003,
- -707573.6735011062,
- -414518.1562494407,
- 388940.7237708673,
- -332757.17185846076,
- -109478.99206912171,
- -253272.44746278966,
- 837230.831091525,
- 35545.38425009501,
- 495908.44835821545,
- 633373.1055499234,
- 627513.0531605089,
- 5777.368955611983,
- 969500.6935214978,
- -628672.3052450034,
- -988360.2995223184,
- 955674.4657398859,
- 857473.9729792982,
- 79213.30937647352,
- 544791.106235158,
- -588655.115372228,
- -584061.8464251115,
- 295371.4252235613,
- -27949.358020108895,
- 797890.0566661789,
- -113679.02802626473,
- 310251.22360131843,
- 164283.0055700728,
- 989816.9831035233,
- 314454.13470897754,
- -954595.6174402137,
- -933962.716237892,
- -510.3139191593442,
- 590120.0921364109,
- -692982.0177167297,
- -553070.1308286763,
- -448513.0443459069,
- -334263.55628303875,
- -250006.68051605744,
- -807962.1075369099,
- -902649.6626201568,
- -402653.8862268767,
- -80624.23169326305,
- 552387.6544885327,
- -244246.73564486898,
- 205076.87753395643,
- 606747.1336211909,
- -691607.6877215977,
- 279178.27722758945,
- 131674.4182435794,
- 612362.2882014046,
- -71914.47212366264,
- 225545.22028382996,
- -925298.2728422172,
- 91195.20050579122,
- 735378.9273222877,
- 349647.39931373636,
- 145479.8058977542,
- -947552.8736429994,
- -688198.1244644225,
- 788237.1509982867,
- -18287.692185093187,
- -12554.053268992948,
- -134804.31729459565,
- 63748.03762520176,
- 798123.2330098836,
- -730693.6302666769,
- 991252.3220477656,
- -724237.2665346239,
- -213759.13286812452,
- 869304.3468442438,
- 499943.2657077738,
- -579686.7700302646,
- 867438.5397914342,
- -4827.577509003644,
- -702870.8634419405,
- -268633.07539224834,
- -131930.58197698227,
- 700768.4067999736,
- 614951.4848368847,
- 458579.5987339245,
- -911098.2844415642,
- 317601.92327939294,
- 504389.96755462553,
- -401022.0090703962,
- -708616.5556564817,
- 294994.05839854374,
- 924757.8050174923,
- -249865.37102783157,
- -427540.7100207227,
- 823338.5231087147,
- 250755.82625401815,
- -380771.6027278605,
- -445182.7447094121,
- 855370.8433321096,
- 540689.0465774519,
- -896844.2337849404,
- -439966.5707033511,
- 309854.33003742876,
- -156030.00790683596,
- -941903.7408313074,
- 15657.746200550937,
- -764227.7601215485,
- -190501.65951282083,
- 926306.3770224456,
- 542915.3159955675,
- -871340.918829856,
- 327602.8913810769,
- 408629.83762795135,
- 750911.3760363817,
- 840277.1209069031,
- 639627.5654747885,
- -805200.8901203491,
- -751563.4689428771,
- -555548.58774043,
- -527930.7890435532,
- 147982.52449250926,
- -604309.8816956244,
- -66662.88622797457,
- -142276.73243965567,
- 195841.51413321306,
- -765345.5907933846,
- 224531.28390583687,
- 526520.4578980436,
- 479163.58732411556,
- 901577.2016848045,
- 240478.33947415854,
- 398039.6335712524,
- -485795.3631268366,
- -914154.7524448048,
- 872437.5789128591,
- 849668.834493184,
- 644733.2242558899,
- -460879.7702003471,
- -989885.9851187116,
- 183309.3946068618,
- -824909.8451051109,
- 687404.268907857,
- -429108.25412861933,
- -595990.473675589,
- -181390.3292990644,
- -686538.3272101553,
- 208812.12265455473,
- 821746.0434958095,
- -238610.32768447953,
- -570111.8851928166,
- 797758.6314379035,
- 561758.7789009119,
- 843756.7231722763,
- -31810.158001698506,
- -171957.9345640796,
- -114038.38839013437,
- -368898.693234492,
- -863832.567187541,
- 787162.6919805454,
- -222170.71458106406,
- 121858.85247747663,
- -772067.9564600968,
- -784157.5552125777,
- 158571.17886839612,
- 177798.96221545432,
- -620869.2866417456,
- -180971.23048847297,
- -5574.809952380689,
- 233972.66599604284,
- 116245.11793368476,
- -134478.26459281886,
- -666823.288382161,
- 579455.079592233,
- -467262.6148439527,
- 294975.2601213742,
- 543888.6076355122,
- -245507.55541121028,
- 758539.5335840486,
- -859686.782273051,
- -141632.02029586319,
- 108260.35873663887,
- 251197.94471248414,
- -972132.6558257593,
- 981186.9044304946,
- 957377.2427948934,
- -38673.82262208263,
- 883506.9779315428,
- -811148.5473097427,
- -232038.3512543973,
- -608990.7118987952,
- 524049.83397608064,
- 850729.4896499905,
- -644057.7138295526,
- -459114.2883209851,
- -978545.948621703,
- 403910.2770509948,
- 799750.1403151368,
- -906109.1085695425,
- -603784.8030093274,
- -294101.62692507624,
- -504573.22072466405,
- 763622.7483051696,
- 85185.09216985381,
- 937964.2752123139,
- -819933.6966757734,
- 117414.68728588545,
- -529632.8416100357,
- 407849.35765214736,
- 306181.0172647059,
- 170270.17455860748,
- 724853.3688152217,
- -937535.5504195595,
- -859985.4705176337,
- -688032.7238607942,
- 557391.947496803,
- -560661.2367481291,
- -187084.41612170535,
- 662360.6947379261,
- -576159.619036896,
- -519623.84609460743,
- -832944.397357346,
- -215800.92803963114,
- 199075.24870778405,
- 394614.72439210746,
- 352366.57067190215,
- -623029.4332761565,
- -603707.9177931123,
- 10360.260927728903,
- -548271.1296783158,
- 21788.795921174886,
- -769299.1530569749,
- -821186.9636366412,
- 900779.2194563157,
- 182241.99218478377,
- 272834.1028016543,
- 971904.6866248937,
- 764825.2585659927,
- 362827.25527501915,
- 541692.996148921,
- -925406.735275438,
- 308985.1726458357,
- -96153.49873239044,
- 346831.7239236365,
- 503378.7038212665,
- 586886.7109516746,
- 595780.2402537148,
- -963728.5844242207,
- 318664.61664875766,
- 279402.88259371225,
- -491878.34233527817,
- -409101.8929978014,
- -866017.5489527519,
- -251516.68698053743,
- -299647.1643384531,
- -83799.97128770666,
- 448362.05638158624,
- -533859.336437661,
- 962736.9650975642,
- -28443.047712939817,
- -301208.0583927057,
- -353833.05990219815,
- 167452.6822446154,
- -746593.9791985748,
- 955947.5418821241,
- -499328.8053326861,
- 316232.58918972244,
- 366636.79277629725,
- -288547.1455220523,
- 245195.9363499303,
- 235888.86308776337,
- -552997.699364014,
- 593303.1260341944,
- 489050.00710199587,
- 539313.0418165693,
- -315125.91695923463,
- 534719.4402519176,
- 793149.2200619061,
- -868389.8986401182,
- -172331.15737877958,
- -91761.8873428805,
- -210116.35963346652,
- 395606.2910396527,
- 264162.3282401524,
- -647784.1034083248,
- 345839.8296194911,
- -461608.042010762,
- 202813.21901563354,
- -940957.0717831916,
- -109983.74705520587,
- 845084.6710773596,
- -752765.3016842231,
- 436452.16607724025,
- -25086.872014054683,
- -967602.7232259676,
- -251233.1686301623,
- 974085.6677052858,
- 313601.9890748296,
- 497399.5391862629,
- 664537.2889734871,
- 667260.2455580661,
- -392080.3345065982,
- -303519.81932502234,
- 922918.7525526405,
- -21113.56907745132,
- 962506.391907379,
- -41909.80183653714,
- -642915.2614714748,
- 970902.747844056,
- -697653.5920095402,
- 484438.90283956594,
- -399022.00141791574,
- -303424.29995457444,
- -991422.9130151526,
- -976119.2708692483,
- -426009.1013400598,
- -498362.87473521114,
- 153911.72895294524,
- 738202.9022251036,
- 808881.7666505064,
- -316101.8344371189,
- 442656.2126676581,
- 461854.7596796827,
- -914818.184835072,
- -818285.8088131602,
- -740268.1102057132,
- 887110.8021155552,
- -200447.47217449464,
- -953049.0807226555,
- -176233.96315346574,
- 829080.011192042,
- 458315.88583769836,
- -313508.638729566,
- -635298.0399664217,
- -494510.68649583595,
- 889116.6813086162,
- -28336.207287975813,
- -804871.496733351,
- 479027.0055964698,
- 29261.851543776364,
- 518329.40171165596,
- 963742.9327330225,
- 132402.84519054813,
- 146669.8955315029,
- 980867.726299704,
- -427500.822387743,
- -589376.471258098,
- -10632.05328570671,
- 115065.27643567743,
- -365883.03657564067,
- 439530.6615365946,
- -589328.8578121014,
- 597885.198668642,
- -170929.1070357075,
- 388957.0261418009,
- 9216.576356292138,
- -471235.0368947404,
- -103892.01976106044,
- 20603.31430457385,
- 890370.37680295,
- -575990.3314369438,
- 415033.51132967125,
- 68047.90214285994,
- -647328.0505657532,
- 664130.1603214218,
- 434627.21160258865,
- -928160.5234004618,
- 34730.5396936699,
- 803291.2345585454,
- 383509.55259038025,
- 130582.23727285955,
- -250639.40379351468,
- 763333.6052188507,
- 456729.16084220127,
- -454744.80523948825,
- 130968.58000013855,
- -140678.6939033493,
- 414844.49911879183,
- -593975.1245301302,
- 173335.4152895037,
- -368465.52757314546,
- 262822.0069579461,
- 987602.5222118099,
- -348818.8071499936,
- 285759.05408772104,
- -9325.835499452318,
- -855993.513669304,
- -363304.084007612,
- 597488.8439013408,
- 97243.28617677136,
- -330603.60724479664,
- 187416.40021586226,
- 513200.7984407272,
- 883476.0808413689,
- -678012.3070365165,
- 973943.1413844374,
- -213351.52521131895,
- -688941.1203990141,
- 997060.3803065763,
- 858702.8823411855,
- 496214.383788554,
- -902170.3626385045,
- 516690.6578063111,
- -184543.5533949662,
- 292546.4053266724,
- -511780.23028340604,
- 305418.7888558184,
- 141961.07855290908,
- 477707.52879901003,
- 786586.3643007085,
- 116773.74337990231,
- 681783.0260473767,
- -414040.5033991677,
- -737201.9158822978,
- 48518.55827067442,
- 961334.6481529024,
- -899941.1162503663,
- -501203.37687945925,
- -281942.56904985005,
- 818145.42828364,
- -122918.52270650638,
- 268358.33778312645,
- 141177.99544073062,
- 329575.5437074153,
- -224657.15208471648,
- -699024.9894883564,
- 212764.59058188114,
- 639174.1551015093,
- 315825.2202857208,
- -962821.1685407511,
- 45038.88428834024,
- -40001.9478849829,
- -362662.6819606953,
- 135736.3299043617,
- -519778.9557248058,
- -690686.5458962872,
- 338708.1359236277,
- 285567.91232418123,
- -516422.410481439,
- 694585.2892694366,
- 916976.391376023,
- 921449.6082577311,
- 353726.4989900804,
- -722819.454318375,
- 760367.0677509868,
- 431360.37653621216,
- 588702.1503026002,
- 977431.0548240622,
- -71305.48074092303,
- 264187.7242668955,
- 662876.7514379941,
- 689114.4503598423,
- 560353.2055427589,
- 311194.9506587801,
- 117413.10839336138,
- -471752.52777544106,
- -706738.7165228054,
- 158146.76917570524,
- -140307.1091033965,
- 518090.9715671851,
- -835844.2832427493,
- -51311.687570270384,
- 60068.20128321699,
- 749782.78602511,
- 589476.7167951651,
- -245263.81653464303,
- -158667.86160354884,
- -490007.7283662494,
- -596989.1835686882,
- -134853.19484929525,
- -622066.3543018827,
- 280245.87520040467,
- 738282.357878187,
- -865560.5696594018,
- 216240.78674699776,
- -32287.15480217259,
- 652708.8801697731,
- 129788.61205502313,
- -762202.6042816064,
- 763945.952812722,
- -832234.8822527956,
- -469280.4748211241,
- 27722.900338855274,
- -393641.6868286554,
- 913546.7331465943,
- 507031.81580640865,
- 168493.94236804362,
- -838832.7416371386,
- 753783.9474351837,
- -889394.71155233,
- 170139.08991868232,
- -710301.453440974,
- 99342.00873687638,
- 833194.5002041856,
- -583783.441878583,
- 120119.52351069843,
- 181388.9330170395,
- -54131.994661522185,
- 529911.8462952606,
- -905168.2172854192,
- -307621.3753141221,
- -134360.58051355326,
- 658211.6389574832,
- 396366.7115537972,
- 85375.24264389295,
- -526336.875606502,
- -863785.5534936865,
- -583416.5324594367,
- -253729.6061651857,
- -196094.90074728007,
- -826303.0724632896,
- -923976.9127758634,
- 237664.32216878107,
- -246484.8215855435,
- 209247.97697195175,
- -856877.464903594,
- 609289.6605710064,
- -229306.221338597,
- 528809.1194949202,
- 479224.44014622376,
- -620249.6465113134,
- -870709.3195085292,
- 940928.5555615677,
- -214745.5466234993,
- 158349.37394422878,
- 578800.4616899969,
- -249996.33057604908,
- -533815.784824959,
- 962372.2516135185,
- 84632.311267965,
- 319997.8309322886,
- -954093.7938510344,
- 183082.6978152391,
- 555040.297907369,
- -341097.19850871636,
- 131539.29842401246,
- -616098.0705638843,
- -132562.22722753554,
- -989913.6785975819,
- 129350.42221795623,
- -840160.7034473713,
- 555775.2087518979,
- 523648.64436214865,
- -737025.2528853267,
- 762871.0989849903,
- -281994.5994935653,
- 460924.6672494573,
- 506621.0251963719,
- -802765.4660821371,
- 942841.3108829072,
- 220662.17221334772,
- 376978.08038987726,
- 769579.465255393,
- 558504.3280265343,
- 980629.6755579311,
- 654485.6471802179,
- 495801.67408827535,
- 129447.64082344729,
- 923774.2404548015,
- -682740.1806915688,
- -2917.845693345633,
- 300120.60168348206,
- 771021.6826783862,
- 216814.21171666915,
- 983669.8479852641,
- 522184.2219951631,
- -57688.27594316695,
- 32364.15907100687,
- -55439.36829194895,
- -994148.807324925,
- 491786.9150110139,
- -847974.5782801093,
- -763214.2720794901,
- 907179.9555902134,
- 17746.742534135552,
- -749668.8616756058,
- 848628.075328612,
- -462685.5170257047,
- -532274.1595739651,
- 654319.808631495,
- -388373.37044140673,
- -234710.58963889236,
- 631836.7783493767,
- -898684.4538619114,
- -757335.8586361238,
- -965680.8157041208,
- -389286.9432001715,
- -116604.43736277215,
- -61066.52629965414,
- -521127.90471048956,
- -690882.513588184,
- -832977.1136049168,
- -765221.1890699823,
- -689940.7288496743,
- -423162.0623450449,
- 292048.0804847625,
- -649140.7604522945,
- 645225.7201356861,
- -437651.1229683682,
- 96261.60597609812,
- 496978.7903337752,
- 226869.87029863225,
- 564814.8385043796,
- -994345.2328199345,
- 642222.8940694192,
- -408102.14470317896,
- -131330.69872609692,
- -517582.0916435896,
- 787348.938940307,
- -765225.9265476459,
- -14533.452107377887,
- -868422.3051897995,
- -520745.37280179147,
- -835109.3085778262,
- 353450.35915400437,
- -846901.4625385914,
- 570583.3936024603,
- 936902.9256027128,
- 351513.36267687404,
- -306348.9049036565,
- 152630.10089153095,
- 97500.28702682334,
- 284631.0803318657,
- 102102.88920947263,
- 432701.41868746845,
- -251795.942190735,
- 124714.8449397597,
- -301960.7960044615,
- 725370.5511825124,
- 453988.4332138819,
- -50755.00588856885,
- -670141.3084741643,
- 735157.0149800046,
- -447422.07637325994,
- -885549.3930211904,
- 619838.2272940421,
- -783075.662140444,
- 690886.0627200694,
- -795379.7646641119,
- -851475.84217996,
- -592066.7969136455,
- 320145.1439044749,
- 880296.6008044586,
- 828180.753663547,
- -307232.07802182186,
- -104209.35985784263,
- -272242.8171063103,
- -291880.8315045398,
- -414706.66756262875,
- 85024.16391676481,
- -12967.29595703483,
- 759455.2651088751,
- 116035.4771232741,
- 876187.7490770671,
- -220281.20520430393,
- 773093.7103720052,
- 941517.4682520899,
- -218460.67021362158,
- 745049.2320966134,
- 826469.3724807461,
- -355920.18368328817,
- -684422.458829026,
- 936477.1456922367,
- -314940.9668901484,
- 993002.1840262049,
- -626099.8362312544,
- 713888.612141427,
- -182281.42270725666,
- 418352.4765965143,
- 688654.6811400496,
- -831784.810699766,
- 86733.52914857025,
- -435120.2020086695,
- 617980.3893940063,
- 546832.9797995964,
- 756544.2136237443,
- -743324.068039647,
- 613932.4047206119,
- -575846.6534108464,
- -69041.78580059405,
- 836814.6131660759,
- 834726.281686301,
- -738880.1499345918,
- 590242.7408380024,
- 422821.111985086,
- -899544.7196734758,
- 701409.3470021723,
- 122626.10348296144,
- 941096.4653885924,
- -322216.5135631014,
- 193255.53151425766,
- 872827.2862087636,
- -141368.3314694094,
- 719633.3486966738,
- -24691.683230473325,
- 375449.65403399686,
- -551583.4845394818,
- -620123.2388139662,
- 680206.4276647655,
- -812275.2303485412,
- 195086.13083660498,
- -174058.26582650418,
- -812961.0599522929,
- -621623.8211913281,
- -560481.0148626955,
- -981915.8445563326,
- -542030.4493615504,
- -589323.8025723731,
- -413423.2600189891,
- 809709.7942928735,
- 308153.7498309956,
- 619308.0630507796,
- 537840.9156152819,
- -286866.67126349616,
- 33451.05922846181,
- -757496.9683906252,
- -782374.9224350818,
- 253309.69590722895,
- -912814.4042082427,
- 609661.7085588456,
- 352261.73826783017,
- 954286.742199924,
- 103561.59770858775,
- -927452.79349884,
- 475911.34230118117,
- 704654.1693466278,
- 205264.41106035808,
- 870699.9909441038,
- 948683.2053705341,
- -34062.63872300941,
- -528338.3130711259,
- 822896.6027357654,
- 278735.46393854485,
- -40579.02243977685,
- -915749.8364950258,
- 659553.9807078792,
- -277287.05549408804,
- 707214.1956142053,
- -895238.0062655665,
- 135886.97236071347,
- -149241.45499329368,
- -63149.16562952666,
- 466563.67026671243,
- -553672.9216486475,
- -229737.17947482708,
- 113925.30652771593,
- -172048.08512232607,
- -605258.6830432644,
- -488931.8392681961,
- 566270.3725964733,
- -833663.1349255899,
- 468169.234948705,
- 810267.8812994177,
- -33415.96103081268,
- -242188.22048817002,
- -483647.64822008996,
- 775502.1634759973,
- 789545.6216895065,
- 715286.5455839083,
- -347233.63810323924,
- -124253.01602342409,
- 770043.638701771,
- -679498.5498179456,
- -615312.6904394762,
- 739097.3112064815,
- 736903.9424725301,
- 393077.1877881871,
- -198409.42961073393,
- 326585.03110612556,
- -689434.7713754772,
- -239391.44912980747,
- -32215.420918962456,
- 994419.3723565864,
- 79648.96258700316,
- 869230.1802750863,
- 121796.49071001686,
- 844705.9589892165,
- 403404.4722209218,
- -543139.2374956814,
- -372596.9855982447,
- -205928.61463833012,
- 947168.0769080623,
- -977956.3393926435,
- 520480.70397851244,
- -249433.65271970475,
- 631691.3630226009,
- -41047.21677271139,
- 124960.29178509848,
- -988442.5820359281,
- 972544.7861681466,
- 984950.5065303954,
- 925303.2915818018,
- -551466.6660725278,
- -147377.78182514606,
- 279074.6128246222,
- -924243.1569144647,
- 417410.9512642459,
- -695399.0694842241,
- -145541.14968434616,
- 10727.28426359526,
- -338665.9898400157,
- -810224.4186979295,
- 56722.9360080097,
- 861981.966217582,
- -439714.1738429704,
- -196013.41830216802,
- -609793.0347722003,
- 190720.7410380365,
- -509071.59399098426,
- 236506.215392416,
- 67187.6065373942,
- -928466.9435540672,
- 310342.9292630211,
- -805675.2833671364,
- -527666.5990605796,
- -356328.671811996,
- -288075.12424565805,
- 303224.6802901042,
- 284167.0171261672,
- -738858.0728741565,
- -791000.0656844944,
- -358749.8174963055,
- 282936.27102726715,
- 409571.7583330114,
- -782786.5184386442,
- -716952.6715066084,
- -358590.7451860484,
- 527387.1458490185,
- -250713.7522315739,
- 256300.37060520827,
- -697301.7507719572,
- 417339.39992854797,
- -860336.7506371288,
- -924972.0571454045,
- -481340.4617895702,
- 751175.9252958652,
- -567978.7127955292,
- 558620.9289424835,
- 320136.0617984872,
- 707320.9052024276,
- -627703.3977639938,
- -102503.19197401626,
- 729402.6218670637,
- 964595.392484441,
- -509383.2271404166,
- 559173.6530199205,
- -470816.4104811543,
- 931290.0789234064,
- -307372.2410636328,
- -7676.840612845792,
- -845116.4701019463,
- 243627.10163159028,
- 84973.33970087784,
- 772569.7862625618,
- -50809.318772638835,
- 524751.6952832949,
- -81312.31733415434,
- 132234.4480619735,
- 104612.17629805897,
- -84218.98128980599,
- 530964.126127407,
- 947440.0938244332,
- -825682.5413160255,
- -739219.8039864064,
- 683000.4284023332,
- -863828.3042814046,
- 106696.88574342361,
- 201119.44299399888,
- -931431.7060271222,
- -866910.5069906206,
- 460688.562183279,
- 782396.7437699332,
- -682263.0977308097,
- -900824.8650649182,
- 239697.59166171477,
- 747926.9815318972,
- 856771.7907479047,
- -829757.5890186785,
- 443454.6284123364,
- 377161.62360497884,
- 317544.30553904234,
- -75632.39730388705,
- 478308.24354802124,
- -104883.05833223733,
- 999015.61465987,
- -286987.95187603985,
- -305045.69730364793,
- -357944.0118375539,
- -892978.5965803307,
- -966462.7489620914,
- 775131.4148253885,
- 593772.0425514368,
- -405925.8679461517,
- 591050.5234070861,
- 17065.276408608555,
- 276519.2093188691,
- 791621.2481697167,
- -340937.84932309366,
- 530308.6334495109,
- 296367.39607173903,
- 344390.17559937056,
- -951475.1084669182,
- 204357.5254801606,
- 971022.9951529492,
- 613772.3420304295,
- 276545.8422374891,
- 798243.2792879139,
- 648054.6948441812,
- -557037.2814512706,
- 196216.62456335654,
- -596037.4341912175,
- 759937.9527852299,
- -979770.2207373817,
- 985171.4920396586,
- 589533.3045783183,
- 120576.86989363447,
- 111284.91891042925,
- 821064.1488298398,
- 929454.9399675176,
- -633507.3707911023,
- 697423.2590773421,
- -326868.2114938957,
- 648817.5145515474,
- 953719.7890397777,
- -916497.6085319059,
- 373721.05327601155,
- 47663.33989681448,
- -93790.0061594068,
- 141487.62533589388,
- -439056.0987347607,
- -920486.1781743885,
- 363949.53894583293,
- 721912.0685070913,
- -691544.9409809167,
- 352872.19326222275,
- -951551.0421738087,
- -471187.12068855384,
- 240952.9217686328,
- -445496.9252113277,
- -371120.74698793964,
- 862786.0745609485,
- 973813.3464054499,
- 680168.2324098508,
- -364318.19122620544,
- 623903.4854554744,
- -905849.1001528237,
- 977863.8776084996,
- -139186.7655470047,
- -145255.79515025512,
- -555600.1655529413,
- -667474.0913689303,
- -888930.6197847205,
- -760149.4230184667,
- -951646.9750301093,
- 152819.4083321528,
- 237850.61871997715,
- 464169.62633509695,
- -159519.74000705048,
- -422049.8748792363,
- 776751.1209218337,
- 658084.9323840506,
- 227286.1010118763,
- 505604.86355553434,
- 316169.9514436445,
- -846093.7023891874,
- -34061.2467586372,
- -943123.2765050895,
- 946307.0467768089,
- 23274.593973314993,
- -521564.73293207405,
- -293524.2719411146,
- -866234.9319131919,
- -661448.478602066,
- -296371.75177707407,
- -29583.8881174344,
- -235505.52792304024,
- -333402.4664941595,
- 860229.794141804,
- -338131.97180013364,
- 766088.0973761603,
- 553609.6930637724,
- 818236.9752655978,
- 499670.7325811123,
- 451154.6139304736,
- 621781.6560029044,
- -254941.06479757116,
- 478724.9905237874,
- 482685.24794928334,
- -64131.87226822847,
- 221594.5267462014,
- 360393.8675889349,
- 980320.9721807307,
- 820421.2425567443,
- 486939.8239928835,
- 56570.961797699936,
- -226071.57558055845,
- 190124.83147423965,
- -594469.8220476481,
- -886462.6573892627,
- -987526.1725025544,
- -346815.0341306657,
- 779903.8494166494,
- 570099.3708950124,
- 602003.7409044337,
- 356097.60594827234,
- 13142.064982992973,
- -99821.81800508361,
- -88667.0633129989,
- -303699.3162004098,
- 10143.727770741905,
- 583785.1235861715,
- 648536.6726233534,
- -543098.5469692507,
- -583033.1723371831,
- 813566.487213899,
- 734825.3565112803,
- -328855.3062946333,
- -466181.3222802531,
- -365479.9084505409,
- 228372.32525247696,
- 903934.3780284302,
- 320727.1588662637,
- -320383.30347257736,
- -860049.2925058996,
- -952327.836973756,
- -228157.47754152227,
- 782624.7715087956,
- -426445.81035255233,
- -112544.68212304625,
- -971010.4224158174,
- -441847.32085370994,
- -418327.90384353546,
- 345048.25542075903,
- 994327.3674548118,
- 608889.7739436816,
- 669688.702007017,
- -301691.96709017124,
- -905703.1160207894,
- -977907.519841735,
- -631623.6249763279,
- 499862.48325552186,
- 171016.39441702553,
- 388685.3922678901,
- -422694.0721096835,
- -878307.6414912663,
- 550143.9271309747,
- -336398.84910382587,
- -756511.3462728874,
- -912599.3077388391,
- -618194.7345493917,
- -390670.22463477973,
- 794374.6793098185,
- -731922.7386281167,
- 950520.9405276891,
- -854733.8545677027,
- 541486.834250211,
- -861410.3882175988,
- 249761.57438166125,
- 150644.44400739018,
- 295328.6415237062,
- 807385.6146040938,
- 66739.46051902791,
- -436897.60210636817,
- -134417.1446968374,
- 815789.0877785081,
- 640216.308506157,
- -865992.2514942115,
- -660342.1055368074,
- 512701.9041428378,
- 355423.21677749377,
- -70009.51815623413,
- 345187.76924801985,
- 349814.3658093178,
- 181674.71189755612,
- 930780.8357906794,
- 262706.7544336994,
- 48223.20635042265,
- -424374.5680725546,
- 424755.65046534536,
- 236557.87223559475,
- 913139.7718660278,
- 941144.152200399,
- -454102.586298186,
- 194304.5691078511,
- -136917.6932770111,
- -354412.68626613164,
- 581036.1480066619,
- 910852.0920602485,
- -238770.87110864758,
- -519975.3647664729,
- -374922.1653882484,
- -980354.2252625735,
- -52779.7952836504,
- 926032.2731800559,
- -225025.392634997,
- 116872.79161366248,
- -295744.19989571575,
- -320875.60537628556,
- -307751.5469476992,
- -65132.54734917773,
- 576024.1777804472,
- 301379.51554337563,
- 159426.05803298336,
- 577226.6413117722,
- 4664.21505131942,
- 798580.4599391682,
- -401261.4412802744,
- 266995.3016585989,
- 808045.9233775726,
- -621784.3596358845,
- 547554.522703148,
- -340891.51386623963,
- 888754.5034339421,
- -157916.3099396197,
- 965810.4953762245,
- -475203.53294961626,
- -116908.34008703077,
- -199161.7199842195,
- -233660.9642220957,
- 894050.8535461549,
- 44489.13091515072,
- -492008.83867498545,
- -873116.3832666307,
- -648100.703862506,
- 595732.8868098641,
- 718339.1568646942,
- 605367.2874301472,
- 914384.596585353,
- -221209.96221077992,
- 603137.8048185287,
- 462305.83652924537,
- -864130.6121854298,
- 528757.7981371396,
- -506008.40391131083,
- -633597.1107892569,
- 577552.1941889198,
- 912345.2228098568,
- 578520.1572902172,
- -96072.69883837311,
- -101423.73392416882,
- -113894.19503511599,
- 432865.33585521614,
- -270425.98007576447,
- 596801.3489205797,
- 253117.49588625054,
- 493124.36218234425,
- -112288.82137357688,
- 134012.77358148622,
- 238669.43887709934,
- -951494.7367034319,
- -146677.65481210337,
- 699835.9126720852,
- -942444.2012530356,
- -212552.6430438953,
- 971386.6902436607,
- -339120.88280133635,
- -200805.42058790484,
- -802814.8518692915,
- -9910.157261713515,
- -145721.03503708367,
- -728307.274642908,
- 43615.277812140586,
- -742932.4318120556,
- -646027.8283170635,
- 369888.62879991834,
- -973097.1547492513,
- -631698.9280214333,
- -273744.563421626,
- -417287.63810848957,
- -164427.75295124302,
- -148428.60327384554,
- -167801.14028511717,
- -489426.9334935224,
- -278793.91134173615,
- -340296.8578388577,
- -556484.4102847719,
- 438655.2061440006,
- -276452.37121939694,
- -312836.70772736374,
- 929222.3654516859,
- 893714.4238273806,
- -473746.73484195507,
- 531559.2164937468,
- -802521.718652915,
- -905290.688275465,
- -237000.90195947853,
- -147293.3787711459,
- 291600.58864682534,
- 986399.2788948404,
- -485075.06632204156,
- -870289.9228691126,
- 624760.6382367495,
- -790288.250497408,
- 752269.0566820236,
- 467576.6729269193,
- -865994.9152429418,
- -793110.5030413155,
- -474701.8137908143,
- -306263.615920803,
- 567195.3729509839,
- -734916.236970009,
- 492843.5812387413,
- -391624.37866300024,
- 164122.44981536551,
- -232944.89130545105,
- 975469.726241246,
- 844287.7477090895,
- 404011.35944655776,
- -640305.2951774928,
- 42875.41627960634,
- 214010.42808227433,
- 740215.7473042416,
- 80541.06876468725,
- -818263.035605683,
- 117358.92862004315,
- -389524.4486992695,
- 980386.5459952197,
- 32881.61159634773,
- -228878.40701000005,
- 167355.87941127262,
- -184207.09026324135,
- -322222.1009867254,
- -911386.255718227,
- 468397.0603039731,
- -145881.92459988635,
- 20289.13467154059,
- -130695.57461700997,
- 654920.198646014,
- 719850.4607971632,
- -355735.5679648002,
- 345443.24182197993,
- -730479.4858215358,
- 252781.59937537214,
- -74231.81779072153,
- -615785.4515998511,
- -540369.6251237015,
- 383112.4033338451,
- -511216.2264416995,
- -501092.138278501,
- -965567.9043428504,
- -839433.4613511378,
- -532429.9512088739,
- -178821.4939386541,
- -822448.5803251842,
- -633310.1915515151,
- 686027.6814889505,
- 231928.85951641772,
- -238922.6945320282,
- 19343.09191528283,
- -12639.75195559186,
- -188801.82759107277,
- -744755.3782537222,
- 749280.2816982729,
- -705496.3797711047,
- -978498.9729623264,
- -412114.2968546636,
- -359182.9439650376,
- -631168.3449491494,
- -436244.0560767935,
- 126147.95625243768,
- 495248.3460312427,
- 872207.2549893862,
- 763815.8244084439,
- 538774.1780694057,
- -403730.25814271515,
- 819782.3778926807,
- -273122.6818702672,
- 59096.47112054128,
- -672168.527766483,
- 881841.866364834,
- 350907.38638445805,
- 604854.8886693304,
- 315731.06400445325,
- -70636.49318735088,
- 220402.07476972108,
- 10276.306437494442,
- -327893.4539160956,
- -836192.0242930638,
- 988222.3716726251,
- 817117.7813975348,
- -382381.57208321156,
- 317152.90156630107,
- 472977.4384703318,
- 524509.9575316767,
- -70957.70632608756,
- 578095.1169898873,
- -460262.6208950564,
- 932693.0546655076,
- 669242.1796192825,
- 898594.7373659344,
- 482810.96346390503,
- 46614.397469187716,
- 613503.9349926028,
- -328667.46486920473,
- -375082.42819396954,
- 554434.3536955196,
- -152235.5548132317,
- -509390.545380086,
- -32784.668225617206,
- -501202.2611890803,
- -157964.47741868568,
- 524473.4985496274,
- 591290.7650467849,
- -997624.8203061946,
- 58262.989303087044,
- -561307.7408716826,
- -410503.7659081976,
- -714948.8255658642,
- 728526.3339241468,
- -919555.6882750937,
- 629500.2194310939,
- 504822.0883629118,
- 461006.2733798683,
- 993169.8272048872,
- -190372.42927670528,
- -833592.4892739374,
- -719753.6594739618,
- -938210.1990110476,
- 828057.8115786785,
- -238202.51522141646,
- -958559.1409717347,
- -24438.436745954696,
- -83509.411334598,
- -359737.5232536628,
- 635658.6298983895,
- 346033.81218879245,
- -584065.5313868428,
- -424191.7750400952,
- -795188.4583446136,
- -926390.3870031927,
- -192314.89519482836,
- 837315.5068836316,
- 947912.7199171691,
- -315901.9337075899,
- -413380.78296095703,
- 607344.6876092256,
- -82009.2978524103,
- -16617.17929283868,
- -483953.7495870241,
- -480353.54303317115,
- -115491.68593012604,
- -237962.22102295837,
- -36646.96630013054,
- 476471.5152563388,
- 978014.421760589,
- 166990.14919309053,
- -75256.5164660608,
- 704061.1470914854,
- 760545.8185140528,
- 271707.9082764273,
- -766792.2989184954,
- 752371.0571407238,
- 685002.0750843509,
- -152387.7131267184,
- -38615.33669416017,
- -982653.453731932,
- 665420.1517247125,
- 989118.9587806035,
- 780812.1694900701,
- 988444.0564038804,
- -122241.26006716251,
- 541462.0618325197,
- 549303.7161436194,
- -648806.7077126907,
- 415501.4804787651,
- -134815.93054463016,
- 122351.19856486021,
- -289838.61323574843,
- -938958.6288578539,
- 210809.50595830084,
- -43728.42986289638,
- -655509.619102224,
- 648375.4654321772,
- -831518.0754764182,
- -240776.02362994765,
- 26639.230505501655,
- 32440.555743900703,
- 640243.7745336627,
- -993279.8238941705,
- 334421.2859764597,
- 932139.9698931639,
- -267927.02472327545,
- -833849.6950161174,
- -455186.4174345987,
- 742726.859209176,
- 375032.87676424923,
- -901061.6611573094,
- -200680.5681862598,
- -29098.322258459542,
- -969099.5620265845,
- 606470.9157401051,
- 688047.7310671486,
- -504679.8049857015,
- 791956.2605699479,
- -881551.4400428921,
- -302741.91980461904,
- 638370.066355362,
- -532379.4632399773,
- -112437.22020383018,
- 998204.9462851814,
- 221673.05812289938,
- -435490.14728919585,
- -602451.2772119255,
- 838428.4977580552,
- 640429.952443936,
- -864861.2267447675,
- -484302.508192239,
- 109128.89678128313,
- -20328.54839748688,
- 828995.4951326104,
- -487462.2273071969,
- 713017.6155422061,
- 101094.90244385455,
- -615236.0198332516,
- 407851.9899300057,
- 738444.4700362957,
- -326348.93110190454,
- 549713.8383506504,
- -789031.5682618187,
- 927239.5313433468,
- -644852.66152537,
- -848674.8403956364,
- -90327.43701721956,
- 344851.7126963531,
- 582211.9868980944,
- 494938.47216756403,
- -398224.02858665097,
- -13117.584241160828,
- -476422.65956851083,
- 463827.87232882984,
- -198483.34034838344,
- 861800.3364449494,
- -536551.0299197846,
- -564971.5754824718,
- -438391.1547383694,
- -284302.4138421264,
- -763138.098079924,
- -45475.32864353476,
- 882993.5418502439,
- -795097.813606658,
- 778033.6674893287,
- -2418.8129155333636,
- -669045.763451928,
- 852396.2366923961,
- -867435.6178178153,
- 141130.79943615815,
- 5859.207615196205,
- -430016.71368114057,
- -311136.1816182663,
- -92202.74906087144,
- 726396.9774056793,
- 203275.99120218464,
- 609164.9786011094,
- -820893.9356755016,
- -976925.7991053668,
- 908116.9482987425,
- 50135.352156308596,
- 307470.6809337242,
- 624935.1013253545,
- 750077.1034427078,
- -637976.1884960186,
- 25448.887234835736,
- -550020.0952087349,
- -746197.0227358456,
- -973658.3178920841,
- 978186.6826866972,
- 680227.57286416,
- -950532.6006931318,
- -985116.223945313,
- 276446.1342637452,
- 555812.3774844274,
- -561906.6680129834,
- 585465.9502753434,
- -183246.98086339253,
- -300315.4713015126,
- -618267.1634012104,
- 820535.9739558253,
- -104275.09765960963,
- -5346.58817616851,
- -864617.2015054823,
- -11397.760439159965,
- -422153.3977464358,
- -905977.0547811708,
- 157507.68378500603,
- 173869.07234280757,
- -856254.0526185319,
- 11332.246300312487,
- -306103.04654401954,
- -956467.8967193629,
- 351871.0630276667,
- -53051.63699602034,
- -799163.3175611261,
- 742842.9453996242,
- 272709.27656412945,
- -794318.9590493409,
- 990134.2905889245,
- -758069.4118136786,
- -709608.5416866865,
- -596240.2829503573,
- 774885.9141317729,
- -690494.1635634536,
- 990929.230161747,
- 896250.5405987363,
- -278399.4663815832,
- 188803.00874917165,
- -857047.8676380799,
- -371863.4527597935,
- 404092.4098476062,
- 4639.789714036447,
- -286453.57823014626,
- -719632.5292042802,
- 888654.7196585234,
- 709150.6721742977,
- -17131.11180112037,
- 410570.8990221861,
- 286646.4790530028,
- 996029.5025672762,
- 148476.7391556827,
- 509349.41798587487,
- 210255.15073168412,
- 926686.2733395682,
- 853052.2156470184,
- 154181.9189454976,
- 361502.5767059032,
- -637520.4295303245,
- -22692.749180103,
- -972902.5106377238,
- -941306.8841809924,
- 125310.90758352548,
- 448987.6137132358,
- -470790.5889628796,
- 272112.8848982979,
- 688402.4103696209,
- -782225.0600537152,
- 337320.4438815547,
- 585685.6956678807,
- 782037.4540348713,
- 323611.34131160576,
- 962111.1065153991,
- -708972.5664482788,
- 785076.1176649188,
- -613759.6537262494,
- 874620.6567376726,
- 519880.2158460802,
- -240080.77759907919,
- 867303.4894966078,
- 18586.59640843885,
- 718317.2618722233,
- -109884.420690743,
- 60893.88399643325,
- -793863.2538143109,
- -823096.4695055234,
- 541984.3046998187,
- 502612.91624473524,
- 850451.3240314535,
- -443566.7466770268,
- 76572.42006685339,
- 752175.587599917,
- -691661.6245944632,
- -420109.50775639876,
- -923914.2776682483,
- -96873.89215060804,
- 861993.7621760052,
- 312068.956212292,
- 393104.88502786536,
- 413417.946519302,
- -623742.7982681545,
- -988864.157823258,
- -496497.2335478825,
- 495836.4964779549,
- 667658.0968566479,
- 183159.6345591602,
- 548791.2674250366,
- -530794.2353924422,
- -872106.4705118968,
- -967081.6457778057,
- -295675.77862820606,
- 489241.69586654374,
- 114351.63197177456,
- 928656.4360568917,
- -481332.9520845115,
- 205154.82978101927,
- 809021.1094255167,
- 648386.6148555946,
- 624035.630911147,
- 111741.56162165417,
- 462622.3479891516,
- 847774.294941535,
- 866910.0309817701,
- 983925.2318834744,
- -177176.59501690042,
- -389312.6651434737,
- 797430.990397737,
- 989151.7564085644,
- 244878.55848080153,
- -485502.753489353,
- 46774.670624054605,
- 60435.485430123445,
- -898449.5125900214,
- -744796.6017609286,
- -862882.6783479553,
- -157888.66223432563,
- -972803.6790509165,
- 470136.2829271827,
- -975688.118474598,
- 152992.7080337581,
- -23354.031071151305,
- -668333.625705809,
- -876205.9164195886,
- -883069.9837239113,
- 426598.1861566983,
- -869287.3247835517,
- 879853.569689026,
- 546594.4866078043,
- -99509.8622748074,
- -302744.5540407543,
- -731855.0644453203,
- -272627.68700988713,
- -278223.8655805169,
- 888957.9283436493,
- 660108.9266092846,
- 917268.780933918,
- 669599.9344263385,
- 727831.5920271352,
- -978525.2021719315,
- -404913.5781783684,
- -34753.84899003142,
- -71156.82005439771,
- -802907.5131513008,
- -700850.6394597387,
- -921930.2499325539,
- -162433.55914885437,
- -334808.4674539402,
- 435073.6914931985,
- 845636.7029966115,
- 207135.67822526558,
- -96026.04785172586,
- 199428.4919916447,
- -424082.1046796668,
- -16898.45075365981,
- -957590.3912369654,
- 139886.54128272305,
- 394217.39772983023,
- 844416.4301755194,
- -653140.4056687764,
- -834119.4183135683,
- -156832.36929292322,
- 551304.5390955278,
- 176337.7315588448,
- -663101.676063939,
- -67259.71288117827,
- -773420.1471329172,
- -182063.7869665904,
- -955268.3965395592,
- 327514.9676002464,
- 642530.0727235521,
- 973285.9105600205,
- 951858.9912748337,
- -969172.2595629728,
- 846551.2772597088,
- -61163.42131961572,
- -93877.61484184742,
- 979221.1718722845,
- -920741.4436678549,
- -594515.5212872077,
- 452862.83363979706,
- -728781.7413482134,
- -919477.2161480862,
- -882764.4693958461,
- -264757.4637711385,
- 841593.6916205434,
- -757659.8021381089,
- -999019.2228408539,
- -596917.6177809017,
- -459175.655123353,
- -716602.890959771,
- -500483.8474121998,
- -840020.8231140387,
- 989875.9171430891,
- 433627.0314213238,
- 655071.8827625411,
- -129107.77606289559,
- 77293.70857259043,
- 428432.3133948817,
- 541975.5819624048,
- 664882.759408806,
- -716933.2276750136,
- 570423.3463876566,
- -745832.2744820971,
- -566363.5393751377,
- -155364.70874316798,
- 972210.0894667978,
- -464628.53244664235,
- 921176.4067803072,
- -40357.7575256151,
- -193500.85153562092,
- -980076.2235248009,
- 918901.7331085308,
- 881432.2925423266,
- -507099.1839085488,
- -332661.5783185198,
- 587733.3523546178,
- -636959.5999525497,
- -141133.73722255696,
- -264003.21528352035,
- 220983.1286203139,
- 725863.2890422947,
- -543648.030735856,
- -950317.5831300783,
- 223913.6095940133,
- -362353.8430032773,
- -194579.08321879857,
- 286151.61766757537,
- 977660.498099364,
- -176377.3243333846,
- -768821.8593968159,
- 80553.70193168665,
- 215160.03113057947,
- 133973.190815301,
- 14309.102496320447,
- 618782.1244699516,
- 359096.88520256465,
- -565747.685903387,
- 889600.3765064016,
- -777124.9274659591,
- 309531.6997973414,
- -75919.07408138998,
- -454143.96940854273,
- -785630.3454262159,
- -694477.9817728173,
- 92575.85894631903,
- -212228.4886969661,
- 473307.8813019951,
- 203860.33817112638,
- -221340.06115960414,
- -981006.9289098473,
- -975437.2548396133,
- -385536.93670941814,
- 728597.5080182458,
- -562186.4477946741,
- -389225.06415039336,
- 25621.028918850985,
- 430823.64465525333,
- 740392.9498443081,
- 678633.3729158305,
- -85018.46833585591,
- -878045.9821414341,
- -118007.17027903684,
- 487321.3323061261,
- 874324.767502872,
- 127017.29514174654,
- -436085.1153599603,
- 348440.3443451778,
- 309205.80936487106,
- 972247.6583574327,
- 763742.4912586879,
- 897545.3621887406,
- -502720.5229167948,
- -153319.72724914667,
- -205680.67829882586,
- 545787.881592392,
- -227452.0543237959,
- -258491.8809154342,
- -621266.9560449793,
- 47304.82415004889,
- -648693.9622705946,
- -997858.9143206262,
- 270633.6365727273,
- -223806.04027736007,
- -300981.25730592496,
- 763076.761484927,
- 642887.5529332205,
- -432338.062561755,
- -163576.2588385341,
- -963363.6620967619,
- -683224.2199831498,
- 856808.2197890275,
- -987666.2676369658,
- 479609.2251199442,
- -80915.26052497078,
- -201293.44341346656,
- -173683.12627848348,
- -508387.3170630311,
- -435191.4569828126,
- 584313.785397261,
- -109722.51489403195,
- 481190.76916848094,
- 108791.43831964266,
- 68776.18660720675,
- 622369.486735215,
- -209513.53982177845,
- 650541.4866307242,
- 754712.0658988255,
- 813752.8634957385,
- -298356.292464911,
- -61215.42033610039,
- 436744.9224343889,
- -330041.7260647648,
- -334831.8316804262,
- 91967.98304206277,
- 28156.969675589895,
- 547236.7988988012,
- -374049.4180060154,
- 565668.6981676611,
- -785453.5126606135,
- -532090.325297228,
- 185154.70142665124,
- -497283.4969205837,
- 860027.8346385706,
- -814959.3364254577,
- -282139.9481285012,
- 820268.1822956883,
- 256237.40116499417,
- -275552.67409980064,
- 485113.3110041772,
- -959288.5572765302,
- -29150.728584728335,
- -606306.4889926997,
- 431974.4612779708,
- -115658.87291454802,
- -141340.8033040664,
- -639476.1138294744,
- -873604.5512851904,
- 356698.278740061,
- -922327.874832231,
- -157176.03664447056,
- 683041.7962712235,
- -580535.0009915861,
- -905786.7234813663,
- 323574.0994880893,
- 419768.9946689729,
- -948491.9834279742,
- 687938.8977342619,
- 26380.444313031992,
- 79963.71184017637,
- 190785.54963623497,
- -340201.3266911328,
- 91426.61387893325,
- 245229.65292556954,
- -687731.9975273454,
- 422619.73028283607,
- 82640.69749756575,
- 409409.64705632086,
- 541844.3062241749,
- 241268.21754474158,
- -873262.8003619645,
- 344162.29020153667,
- 322244.7211868584,
- 31269.583853828386,
- 877970.1559976565,
- 43613.1252557781,
- -696935.8982222822,
- -235858.8432603941,
- -399988.58295613027,
- -64152.80407367008,
- 432237.3287891819,
- 201644.68375252697,
- -52105.695444468525,
- 536949.0200655625,
- -30057.02775410657,
- 245155.6867537943,
- -156326.66866772072,
- -509475.2787714667,
- -410466.1960566309,
- -196989.70373274927,
- 112978.40715750973,
- 802669.2471139152,
- -99956.64532868864,
- -868964.024109765,
- -420588.6028962258,
- -988293.7621873369,
- -661473.0315575114,
- -19098.448603173558,
- -885452.1533373225,
- -546358.1912804205,
- 905081.4248111472,
- 459545.7111017087,
- 246807.37620190406,
- 329745.09348034876,
- 929943.7776050983,
- 145914.46635007087,
- -614194.6682511497,
- -9454.240677924774,
- 412366.0488617531,
- -707537.8309552954,
- 803685.9727040591,
- 687019.9141633249,
- -55943.551977541974,
- 817441.6620766443,
- 412043.04027081974,
- -852743.0058874162,
- 620344.7129535171,
- 262995.39292433404,
- 4713.401427909769,
- -109873.48881074932,
- -877041.3220525215,
- -371779.5231673671,
- -588533.723513192,
- 302563.74099995,
- -839618.4403552366,
- 509332.08212782064,
- 118186.19450077206,
- -295941.11791942647,
- -751610.2740211206,
- 838850.8886677693,
- -680242.5560828301,
- -529541.2451326133,
- 910213.1889249687,
- -335333.1016434902,
- -968678.9895839087,
- 271258.7525951278,
- 162547.29342908724,
- 91138.2414169597,
- -916202.9862435139,
- -297488.8215832743,
- -188031.03752062246,
- 492982.5007140298,
- -987259.2489581831,
- 518416.15780345496,
- -713094.3552406557,
- 853275.3857174022,
- 418861.95206048526,
- 916586.6606952572,
- 167728.63143532324,
- 532745.2118939633,
- -520667.63225461997,
- -504160.0284549923,
- -904957.3092744924,
- -260124.91458338237,
- 510580.43232968386,
- 528461.408536822,
- 787801.8957278694,
- 655661.7208644759,
- 756042.0510962665,
- 817517.6184635771,
- -216897.53904829256,
- -210776.7984364153,
- 115189.32586343955,
- -478824.9638186075,
- -468807.7269477244,
- -844258.0720995346,
- 972414.3212990139,
- 344833.1258162722,
- -56113.64655117135,
- -624188.6237682998,
- 685277.6504690781,
- 485920.86118686263,
- -278312.632114432,
- -75043.35641322468,
- -906194.686836411,
- 365577.9556860479,
- 19524.356422792043,
- 922216.6246370509,
- 689391.3961049088,
- 840927.0014726613,
- 200331.60443690835,
- -869431.3932861725,
- 878422.5888265629,
- 973432.5209783085,
- -578674.823105952,
- 294351.2971138873,
- -690023.2138685087,
- -962916.4945133477,
- -857485.9930342253,
- -832025.8563876976,
- 974341.1500846075,
- -396898.56550470815,
- -668756.5633246308,
- -360457.8358762485,
- 331181.2894073336,
- -311866.74036477105,
- 242219.15211919253,
- -943557.6307255606,
- -375938.89714875387,
- 22484.12914812681,
- -575213.0918223544,
- 82307.76394413941,
- 153899.09959843685,
- 594127.4211885713,
- -159090.79238988232,
- -450971.1288868068,
- -507492.7913564229,
- 467626.3560175302,
- 957484.420567825,
- -635565.4457632827,
- 404504.59733543464,
- -741242.8093463316,
- 910929.0860177912,
- -361367.1534870784,
- 156410.9969402554,
- 189214.3652513325,
- -54.2568822701206,
- 174232.51026043718,
- -494773.24245352607,
- -454723.27737979847,
- 213984.13246461056,
- 212063.2508260616,
- 98546.0352022065,
- 5378.334789895911,
- 810093.3127857712,
- 147997.73536322935,
- 783102.3012779879,
- 987880.7432751495,
- -229434.9756673648,
- 869493.7651605841,
- -139076.3587987369,
- -557161.2076048016,
- 21155.026715105276,
- -264766.361332601,
- 618322.4255131544,
- -816467.0925546531,
- 556012.1707017187,
- 88392.64235999744,
- 197187.47226018296,
- -283815.70254962816,
- 553023.1095252107,
- -945830.8209615549,
- 238023.91201015905,
- -480028.44922189624,
- -17626.68976837234,
- 252398.93652451606,
- 484001.7828030414,
- 741815.5580859713,
- 390351.85620191856,
- 685395.2527809612,
- -906494.5300026286,
- -276101.1173961465,
- -17294.304320395026,
- 557569.8153357534,
- 609855.5595821952,
- -943525.6187202075,
- -906970.2892897038,
- -431298.00250892347,
- -842679.0553811144,
- -562682.5666189257,
- -637593.3515710594,
- 284628.80755777564,
- 797637.7142915607,
- 257071.35954504667,
- -598042.7588701511,
- 479923.3402769547,
- 28237.085443992837,
- -319240.40852889733,
- 445429.38310308644,
- -143741.54132754912,
- -913908.5084884344,
- 224066.6061014116,
- -409529.2008980156,
- 77009.76021396478,
- -393132.08359290817,
- -842425.1254184563,
- -980481.7983934435,
- -109963.52214518002,
- -596984.3194120133,
- 421593.864468248,
- -255769.34934627914,
- -155143.96571447953,
- -84665.76993441532,
- 446213.02711451636,
- -579121.0566209126,
- -3228.701671307732,
- 422613.975917554,
- -233788.34968304684,
- 698643.5599005307,
- -856922.3159138297,
- 873464.2431898396,
- -473563.7949953864,
- -947625.5678334567,
- 532425.4066042482,
- -911525.2637976729,
- -916676.4657064084,
- -676742.7713677248,
- 14421.365019352317,
- 367702.68646524154,
- 808630.5937924972,
- -982040.7794521189,
- -535376.4961007346,
- -316730.30129867507,
- -727573.9994552474,
- -279049.32792091276,
- 62214.743431753704,
- -868796.5174837488,
- -543476.9883716386,
- 230747.02239104948,
- 930874.6640197869,
- -934200.4703555017,
- -563127.2950407254,
- -160756.6281830879,
- 636913.0432592356,
- 404332.35672016774,
- -400521.93774480396,
- 424573.34137293044,
- 188394.46814925777,
- -561527.6895167028,
- 987334.5055397842,
- -917283.6942899865,
- -931296.9096755133,
- -84068.07931226678,
- 329765.5710312666,
- 990895.9715608172,
- -179331.26887436467,
- 274.18633228437625,
- -534743.3847973393,
- -780534.1698024244,
- -482484.08376243623,
- -216949.4434647421,
- 748912.3287694999,
- 986293.5598681071,
- 232516.50339234597,
- 50846.95541483297,
- -175943.21991923524,
- 791478.2809348404,
- -681612.1072798342,
- 58127.60924020877,
- 42778.568602323205,
- 234092.96390270052,
- -261676.87664463822,
- -636028.5534186077,
- 562431.0076399741,
- -411947.4321157499,
- -597153.8200546785,
- -916947.7880325463,
- -705242.712674034,
- -191469.61416820795,
- -949088.1151979893,
- -333822.0089222828,
- -182133.5816642613,
- -66015.35047639784,
- 368087.1511835344,
- -353697.4321993922,
- -536604.9882410902,
- 473884.56721989793,
- 605658.9584223814,
- -404709.8207523263,
- -54742.5545743947,
- 961215.176165372,
- 115729.24020113629,
- -414253.68741960253,
- 752739.6761999896,
- 666862.340182689,
- 67661.06601563026,
- 503951.37492533016,
- -388621.97157925804,
- -515275.23605421965,
- -757491.9347915816,
- 612555.9659177166,
- 489261.3941316415,
- -982996.6467930258,
- 83626.01656723223,
- 230434.85581427548,
- -21114.28305604135,
- -90428.70967066064,
- 296478.7950444805,
- -966846.883209967,
- -780598.5460331015,
- -967735.6926779113,
- -461059.92481831735,
- 786610.187710862,
- 879140.1641903842,
- 43314.5011843421,
- 278136.2868301425,
- 698183.1032720456,
- 806349.2268740733,
- -397630.8008376086,
- -358879.3970287651,
- 285684.8037062269,
- 604605.5558427592,
- -947059.649165231,
- 158191.3515991018,
- 485965.6338905141,
- -158879.87491432432,
- 129367.15688846845,
- 198184.73217274746,
- 978196.8533225895,
- 713214.7743347823,
- 468122.63845769176,
- -381307.2731673779,
- 615398.963360069,
- -247645.52530044725,
- -873048.7024753812,
- -82438.67513839564,
- -301517.9391769822,
- 381569.32568402844,
- -72564.69520485065,
- -847974.8310260638,
- -624372.4635593375,
- -576730.2765561315,
- -168577.86934006037,
- -296564.50380124897,
- -364361.71433323674,
- -492597.56048871763,
- 35296.47857337159,
- 420021.4463546965,
- 454944.5971178281,
- -945800.6513390202,
- -855620.7987899301,
- -182147.10911050468,
- -632719.2284925724,
- 51871.86163710788,
- 295433.30983351177,
- 521813.52874387166,
- -883109.8371806932,
- 587329.6188037973,
- 180684.47590905178,
- -10809.982021956044,
- -769038.096146106,
- -534457.2735356829,
- 505084.0013940303,
- 919420.8622752513,
- 123252.75945565072,
- -349338.01725310687,
- 28975.45331310436,
- 133053.16122446588,
- -200571.0906061211,
- -468513.2612679026,
- 309822.871813791,
- -479063.14112764824,
- 579875.3899708529,
- 934442.9915052219,
- 103074.37200741231,
- 323347.94712743163,
- 348004.32941321866,
- -80993.48269999007,
- -800860.1520748159,
- -965068.5226402589,
- 348004.553076968,
- 702962.7869214141,
- -271911.56605665025,
- -415611.3770407321,
- -267938.64974705374,
- 940918.9806430914,
- -884217.0166808323,
- -112606.7555153969,
- 844909.9028802278,
- -708295.0091724356,
- -634052.0019617239,
- 367228.9420504924,
- -327624.1032940919,
- -305604.27895617834,
- -90300.13158459483,
- -520174.5447660726,
- -569480.4406807517,
- 94387.71254925072,
- -386358.7164788742,
- -954381.1545288572,
- 299747.16771257494,
- -559491.0604224965,
- -542498.5120243762,
- -139417.79463834924,
- 688013.3415562162,
- 348954.6036298228,
- 205465.37858689384,
- 213992.4096621415,
- 82812.26538328546,
- -915628.1553359362,
- 316048.90945018484,
- -640389.7847236581,
- 738716.8665764598,
- -161139.7085490225,
- 106607.11054417393,
- 921187.0400892184,
- -922699.7788318148,
- 48594.74153787469,
- -559258.3662861967,
- 254491.79811641076,
- 33251.61082166583,
- -179827.40244080508,
- 195024.71952536894,
- 566140.97336386,
- 903381.1962119655,
- -300273.9307739282,
- 309648.1670935587,
- -471111.2544004563,
- 764523.5890097027,
- 409624.55964518554,
- -546981.8192781708,
- -195992.2281424531,
- -974830.3194987258,
- -555914.7275795464,
- -384676.9757273485,
- -968027.7259005957,
- 131087.03356579586,
- -377491.11454555416,
- -679827.2293925458,
- 370173.70037625066,
- -139886.43633667342,
- 634398.7676863831,
- 235017.74655142004,
- -580102.0592951766,
- 486322.3932047258,
- -358908.16408815375,
- -602593.546620462,
- 636112.1519604072,
- 264304.76402528334,
- -654743.8559167729,
- -913624.2327944491,
- -742081.2395013996,
- 760169.1365827494,
- 465303.56751728075,
- -885331.0880299909,
- -791916.4137905741,
- -666169.5161705825,
- 541182.5300775139,
- 366950.8470799496,
- -380691.4509125823,
- -527287.0321356482,
- 387152.3805970955,
- 922796.3082957211,
- -641075.7681453216,
- 95311.43163698363,
- -252671.6832573741,
- 882358.5801086217,
- 105372.60614969513,
- -989867.9563227106,
- 626113.7243081916,
- -923944.8699588646,
- -765096.8396685073,
- 522713.3475521484,
- -47380.26051355648
- ],
- "y": [
- -841989.31294275,
- -775095.2833023075,
- -623621.8672748602,
- -508933.80539782916,
- -561971.2488781825,
- -785168.8110406864,
- 438056.862237691,
- -427115.71569997055,
- -459779.53796019853,
- 796480.9210348161,
- 16228.446847255995,
- -10117.113578631543,
- -53631.432702805796,
- 831976.0985445925,
- 774172.9920404115,
- 159844.88204567993,
- -6243.166011681511,
- -521021.30094780907,
- 694713.1899190526,
- -910162.6660223072,
- -774909.9996208384,
- 320117.776495078,
- -547323.1177429256,
- 654473.3768154809,
- -554026.6105989073,
- 40335.22057385208,
- 135508.08662869086,
- -279877.61613975046,
- 585072.4377650085,
- 405049.85986093513,
- 232440.3037218077,
- -25362.31872866912,
- -248481.98492127337,
- -560953.9048498886,
- 485941.3956374863,
- -519433.26064300345,
- 184701.89774695545,
- 893827.7421553927,
- -828817.328114863,
- 750487.891196061,
- 508993.2816321345,
- 540210.7149106248,
- -373173.5110220982,
- -303596.317152965,
- 522818.3144789189,
- 414595.30767788057,
- 19484.603545775193,
- -461024.5494484895,
- -47611.78987915504,
- 88180.55865862906,
- 988228.6950640721,
- 357677.7559037796,
- 121526.15548473045,
- 698793.2608907002,
- -487152.4830132172,
- -955940.2429958172,
- -701703.5223337576,
- 229654.94053449653,
- 513842.68831132515,
- -395110.0598072463,
- 257602.165830513,
- 121612.0765485973,
- 406139.1365539877,
- 873399.66086256,
- 948537.932093139,
- 925076.9258288649,
- -94842.01072127352,
- -172396.12733221232,
- 160389.7146379405,
- -373730.5674296345,
- 505960.80348878325,
- -62591.644013108904,
- 722670.2405123094,
- -729278.0097360006,
- -884989.3737237633,
- 5179.2626380713355,
- 701035.689142802,
- 499722.50452963763,
- 106126.88316707186,
- -820824.4388997552,
- 928534.9602815487,
- 218781.86384893983,
- 11373.293613078373,
- 41947.26905584045,
- 425564.55518506933,
- -285905.4255897964,
- -144410.63028630795,
- -740040.9963485603,
- -492289.95560486434,
- -191699.3365552453,
- 970316.6821376963,
- -838140.8058459905,
- -466086.6372245687,
- 786495.8184204455,
- -136641.84111491195,
- 551026.796179372,
- -118245.65945172361,
- -429303.758173051,
- 289274.8799673728,
- 370829.5671062389,
- 112566.34725016635,
- 938564.7538542207,
- -458932.0946854003,
- -112653.8955686256,
- 887022.3671904237,
- -979024.3953836804,
- 935855.7791733175,
- 392777.02472150634,
- -634539.2530658016,
- -733324.4431803057,
- -721643.7739481903,
- 227876.3792840539,
- -232102.3256213983,
- -971248.6088668206,
- 715376.7179565134,
- 959367.4194005737,
- -373546.1317002338,
- -700231.0711965273,
- -963576.0897303212,
- -278579.9440264758,
- 100376.22156342186,
- -326112.20207237767,
- 981521.6684350774,
- -482595.47826915927,
- 648660.3447864088,
- 843644.3832424028,
- 732209.4835010477,
- -153041.8691462083,
- -599028.9563257105,
- -296776.4651412641,
- 859557.5830612996,
- 965780.9909117548,
- -63516.7902884326,
- 477161.9168648309,
- -940358.2636980952,
- -632418.384718779,
- -365382.38695398584,
- -239563.19322688025,
- -239304.6913621528,
- 432969.83003249887,
- -615440.0230895698,
- -554931.4032421844,
- 896897.3146678181,
- -346647.9730130474,
- 64189.91681325048,
- -38732.925036637054,
- -537662.0371003775,
- 966495.4235025916,
- 969717.6194514378,
- 783870.0048633596,
- -74587.61620013266,
- 831651.3050455592,
- -34707.954877353455,
- 132464.72896881544,
- 244292.06611394117,
- -723699.6589583688,
- -289391.2403450825,
- 382873.505401377,
- -182000.41286751878,
- 714299.0223519965,
- 26156.182082637035,
- 294215.4611805308,
- 200268.81118485073,
- -640258.5646004735,
- -807273.5584057267,
- 45655.76911556612,
- -792789.8279053174,
- 101492.81294258627,
- -146176.85529026692,
- -30810.42899432007,
- 435382.93784721714,
- -322459.2340622958,
- -174970.74177023242,
- 26905.66458774213,
- -947156.7174291624,
- 548994.2918747881,
- -830265.2484131423,
- -80771.06041622107,
- 933396.9389264802,
- -298576.4863351168,
- 981905.2432800552,
- -386181.65959297324,
- 672698.2694803685,
- 269049.57331865886,
- 82853.81087077859,
- 867446.6458449088,
- 730782.4794822566,
- -730793.4428424267,
- 636929.57350753,
- 529693.9688298834,
- -258215.03400263525,
- -697221.9707553786,
- 508239.4434232529,
- -22932.213957937318,
- -441964.9317826,
- -487813.6298938742,
- -354283.3441196564,
- 596646.8317409,
- 173346.7010389238,
- -532732.7823888039,
- 922786.3563789611,
- -644701.2051098609,
- 94435.49249267735,
- -347927.73612048425,
- -590558.1079634632,
- 436659.297220233,
- -123683.88473853997,
- -688526.3661659575,
- 316655.25208180136,
- 916492.8733069033,
- -384164.92908829,
- 320792.0802057198,
- 779329.0476945671,
- 45889.27917682817,
- -253784.5924087889,
- -934164.0465042376,
- -656028.3240911526,
- 248447.30831388495,
- -189224.20790707073,
- 822378.6475941191,
- -411076.1745670002,
- 632391.1711196257,
- 736518.2931963585,
- -234070.1943759147,
- -988385.3949405677,
- -256534.5830081587,
- -581501.1925851901,
- 101762.26026891544,
- -640495.1551968363,
- -204040.0324043048,
- 267036.07940844476,
- 577995.7473875738,
- -176993.74511697164,
- 327564.2604767903,
- 376214.41089156637,
- -262351.8632592727,
- 303277.8993777547,
- 549892.402684508,
- -44412.02884230089,
- 541172.2541876618,
- -871317.3856770733,
- 569631.0496447363,
- 576377.5612561785,
- -957608.7704076947,
- -773571.3315946127,
- 79467.55808399919,
- -592926.183109103,
- -511913.7106276921,
- -363660.75017817743,
- 258840.60215001003,
- 774502.1446493892,
- 281063.3683157227,
- 74526.5651385103,
- -44382.38128250083,
- 444682.40044604125,
- 728585.773056967,
- -299820.94540707394,
- -852890.6146932214,
- 163635.05716330896,
- 910905.3678832464,
- 648026.9528531422,
- -257961.92877510114,
- -19486.05532677794,
- 140476.45945029764,
- -303089.9316090217,
- 702957.956639624,
- 535360.6304546237,
- -582178.1698576073,
- -122981.7689829138,
- 975052.8974165997,
- -580163.7149676814,
- -763095.0042941425,
- -24819.552881023334,
- -173346.57451710323,
- -417201.7659561833,
- 440051.72985487495,
- 167007.07363240785,
- 844123.2156411576,
- -259445.79781511502,
- -441582.8475081609,
- -202506.6013903658,
- -716399.6943027051,
- 256931.79497122642,
- 666829.5187873732,
- -149172.65446396644,
- 227772.45012929238,
- -598982.9203597307,
- 894017.2524725694,
- 826749.0806877838,
- 98101.3374158497,
- -149638.04410942073,
- 892984.7573596186,
- -446380.38475321437,
- 348686.85801109846,
- 555197.2759476387,
- 858631.2968465331,
- -535266.8793977569,
- 347729.6376490493,
- 155824.0474256294,
- 289323.7154408901,
- 229215.98538537679,
- -118967.65056689085,
- 710262.5151851682,
- -838054.4841425869,
- -896069.0167068348,
- 980573.850637422,
- -951730.5169718482,
- -972626.8602657677,
- -540573.4524308392,
- 362491.91229326796,
- 739083.9627370343,
- -875175.6763282787,
- 761101.2880335036,
- -542593.2626462264,
- 653538.7381658673,
- -41310.81616053112,
- -140734.16671022752,
- -276889.34631344833,
- -789429.4666513097,
- -969264.7181389591,
- -199631.75714235005,
- -899703.0741891128,
- 767753.8548466698,
- 11381.849727401639,
- -597056.648969767,
- -147378.84394593493,
- -998483.13613964,
- -634279.3874322197,
- 471549.12624123367,
- 37895.3198298011,
- -521723.8195950371,
- -436016.97311427223,
- 833605.513880483,
- 353085.1610704648,
- -183570.00335379926,
- -107725.31857915646,
- 899733.8398479873,
- -582787.3823669469,
- -494752.4029342287,
- 951061.619790907,
- 892548.3513514869,
- 943135.0387208643,
- -392684.0079784355,
- 277405.723798744,
- 852722.9520124804,
- -9577.618462380588,
- -196380.71636330645,
- -843456.7971308902,
- 984973.4491142076,
- -385401.5701649929,
- 168756.03714719633,
- -941058.7217523911,
- 173992.82715078935,
- -928462.3937940064,
- -650586.8280954399,
- -316288.188440164,
- 424294.7417604994,
- -138.98425530056713,
- -488546.23140684003,
- 718066.3755134307,
- -329842.4340128823,
- 859589.5780032114,
- 900770.1960220302,
- 325060.2886201035,
- 848396.560279614,
- 888292.8972825181,
- 621808.7016435225,
- -427243.4059970509,
- 681698.0658289792,
- -544882.6051615201,
- -238668.58589913577,
- 168749.41483386618,
- -89607.81465368229,
- -702869.8868079968,
- 800160.8210043467,
- -8911.961060123818,
- 622638.0385672044,
- -929952.2855720208,
- -800941.8133173318,
- 564903.2666182425,
- -845799.5709180704,
- 902372.4385321912,
- -403349.64446440444,
- 479812.5750510687,
- 687313.4145299001,
- 891543.560257879,
- 309357.5824183621,
- 875070.4434268685,
- -851332.7030446829,
- -152933.8315019162,
- 94206.78527900539,
- 349569.01094111404,
- -533399.1458938323,
- -397745.37628812244,
- -484725.09919369535,
- 144159.2999215613,
- 694026.5122361657,
- -882195.7653029837,
- -254949.26705717092,
- -462491.0589268401,
- -430007.8911960938,
- -536448.641531344,
- -564353.4323777468,
- 349059.9686039351,
- -514225.7770431149,
- 757689.3317536355,
- 444122.59639426676,
- -430408.69367142377,
- 86268.5009564601,
- -156068.9752368236,
- -52730.798036135115,
- -246207.73709491672,
- 478973.0794877556,
- 119281.5836990242,
- 388189.0314436558,
- -548820.6798487583,
- -524230.97112853,
- -17390.03349064716,
- -791736.2387877613,
- -249018.1239022182,
- 425687.551390582,
- 541551.3039466413,
- 777474.9590574694,
- -308779.8303713793,
- -585205.0374690447,
- -109038.59249090897,
- -476955.21757166047,
- 89599.82920407894,
- 961579.467886285,
- -202663.00039897067,
- 40745.30815238342,
- -984531.7167255103,
- -972130.0647174548,
- 273270.0597006592,
- -599291.6704083991,
- 750002.6005460201,
- 756890.1641414585,
- 264180.56110761315,
- 804859.604823416,
- -178356.25676065582,
- 707865.61845407,
- -119638.06642065445,
- 896088.1357434693,
- 764306.5082644378,
- 738347.6293918168,
- 676240.9125848004,
- 298009.30941031687,
- 735881.3147751786,
- 876862.1278722695,
- -996033.6480989374,
- 960523.7131412292,
- -380830.05584140925,
- 166563.21910749128,
- 534859.9422349943,
- -132114.9342579806,
- 80900.4134705249,
- -579394.7183499117,
- 819699.6980095763,
- 386546.83880120324,
- 821573.6475867204,
- 981695.7421767967,
- 614305.8973532458,
- 77534.99257079021,
- 626708.9342158604,
- 952690.7658094943,
- 116504.86283671646,
- -420122.1368730317,
- -538892.5293056685,
- 171879.1916242357,
- -584452.5975392128,
- 573054.9331839461,
- 884904.7618596369,
- 72455.83117650512,
- 829740.9884726934,
- -331959.35190203565,
- -428399.58301674377,
- -679954.6677934721,
- 84986.55436247282,
- -490268.42281844106,
- -763867.361534357,
- -223739.6026945686,
- 406002.0457023177,
- 665655.8201887235,
- -527494.4459784911,
- 982085.9587471285,
- -488694.0909168389,
- -583140.1465101166,
- 354225.66150667076,
- 216506.6744153916,
- 154619.27963724674,
- 25136.598539379218,
- 492489.28452569584,
- -433884.56447279954,
- 234279.8583667003,
- -703929.9198451278,
- 441346.21397511364,
- 943963.3176441911,
- -325456.00848321256,
- 172395.02771845582,
- 749192.7196467996,
- 624359.6727765179,
- 480229.27434392227,
- -696677.5803865421,
- 293712.9911647245,
- 387741.5291431936,
- -393729.73948702647,
- 21266.019672495862,
- 723937.979277689,
- -232458.25080596138,
- -387304.96830664296,
- 2464.0321624218586,
- -122681.34997729407,
- -546694.4807160796,
- -919715.6513476778,
- -18247.514801625897,
- 194804.46059409328,
- 772791.1447093579,
- 235715.32964076058,
- -491094.78861466685,
- 4389.73784561969,
- 833497.7104795736,
- 408212.97885851806,
- 60087.40868944673,
- -603153.4418319811,
- 49207.25516157076,
- -33771.355710310316,
- 496911.4186762655,
- 154504.9866469945,
- -912578.2146259764,
- -452817.84163980297,
- -823375.6845463197,
- -220228.04861147137,
- -19009.048525427508,
- 887978.6196577046,
- -661416.3336804246,
- -428227.62305677007,
- -98018.59328603357,
- 661880.6475154626,
- -117998.84324321552,
- -483940.39773233776,
- 945279.7207307717,
- 493187.76874040184,
- -998343.7313215322,
- 213652.26322442287,
- 392420.49640112574,
- -399813.58192147256,
- 847862.16445857,
- 252398.00249854306,
- -684115.2014550567,
- 764290.832324826,
- -965373.510477915,
- 366595.0386351318,
- 549108.2103193712,
- 478391.1169981494,
- -477039.16144049476,
- -66359.28264260315,
- -666477.8792067101,
- 927578.3245770739,
- 223346.97203642075,
- 417199.34494340996,
- -588673.8683068216,
- -579415.6741968989,
- -326642.1044466499,
- -650987.8956618933,
- 7794.401001574247,
- -692135.5560318063,
- 862693.8081331758,
- -737450.0551246805,
- -475462.72028761625,
- -878946.7812968763,
- -960923.7018518934,
- -309835.924111922,
- -581931.2077126874,
- -193151.43113910628,
- -320810.1968006805,
- 500517.2008975121,
- 735584.2491990248,
- 869357.6704794308,
- 571406.0633091565,
- -31191.862881997156,
- -482301.2879788475,
- -273644.2666449306,
- -564572.1511337791,
- -879096.8240374251,
- 379673.6622571082,
- 793099.5767054925,
- -952798.8971456996,
- -149710.44541620172,
- 889595.896146304,
- -102568.09583422144,
- 762500.2191414066,
- -22716.52292029125,
- 136389.57166886012,
- 266170.89144465566,
- -826419.6040586666,
- 646550.0102152668,
- 84316.47222800476,
- 380558.86255500093,
- -66295.78751266396,
- -320680.4303555664,
- -161087.1510793015,
- -245428.7859749458,
- 863696.1061838248,
- 418532.5789514507,
- -361290.0378441568,
- -819539.6921890886,
- 192046.37210451692,
- -751367.5420591463,
- -735759.1562203469,
- 724722.810501609,
- -207066.86437837928,
- -795145.3172717491,
- -498759.0724904585,
- 928584.7087924086,
- 81570.77897059928,
- 886515.2558534868,
- 703933.813051105,
- -759838.0592273521,
- -922081.8135161714,
- -132416.60859760086,
- -218972.67346888926,
- 13818.849598194349,
- -913806.807334844,
- 79464.11354751293,
- 122637.11055587168,
- 97597.4683300218,
- -174625.63217878868,
- 373394.38677931833,
- -714996.4838749898,
- 10252.349704644947,
- -660680.6145188995,
- -462110.3608096893,
- 455892.6217447536,
- -535112.677073226,
- 3911.094098997037,
- 72292.76301260934,
- -90507.11688419111,
- 378102.4269270648,
- 966152.9417313348,
- 79337.08644471959,
- -50237.45464432694,
- 564623.901389222,
- 623939.0339062072,
- 506867.44054355135,
- -192296.55248183585,
- -777596.2486685179,
- 72739.48121619588,
- -954970.2603642094,
- -620853.2682690438,
- 551182.2412351213,
- -674019.7569945076,
- 54784.03969693768,
- -720095.8036049366,
- 822138.64566469,
- -47346.06044089551,
- 62391.96068110253,
- -875201.8303563707,
- 967445.2806940004,
- 958787.536150757,
- -382108.9823580639,
- 919189.2935045864,
- -992345.9364680276,
- 404723.2180889369,
- 997213.669409986,
- 952840.433231553,
- 550710.7702603323,
- 933319.8270814269,
- -523305.0171275595,
- 509566.2861527783,
- 316096.2532068496,
- -897669.6856093955,
- -67566.3739176584,
- -218590.26375370118,
- 629055.0600847739,
- -476273.1276913652,
- -355544.32129848766,
- -75823.76965706561,
- -79758.51347698936,
- -318771.349164201,
- -625215.1530637145,
- 375014.63923092704,
- -338049.83702911227,
- -244798.270919373,
- -553806.0605058732,
- -491426.49649520864,
- -220221.85793093784,
- 229679.68777632585,
- -203202.8496723799,
- 727580.7571288531,
- 471484.1313835601,
- 538581.6812406041,
- 889486.0527244122,
- -627652.7624554386,
- 678974.6430273592,
- 604703.2521112361,
- 966498.0231884173,
- 646535.0494848475,
- 850385.1823211137,
- -30617.184481109172,
- 573036.1843657114,
- -780642.6791009626,
- -692731.8407902428,
- -253511.70198395633,
- -63923.52194272921,
- 489281.1246976911,
- 71974.61310020725,
- 553815.2987792586,
- -323135.21116795397,
- 813510.8955703874,
- -979571.5908281115,
- 220563.890526426,
- -134102.19614022932,
- 479796.9444313115,
- -864641.2507939684,
- -470994.50507539365,
- 732140.4368222537,
- -992301.8822729974,
- -419704.208904025,
- -580527.2293163982,
- 24394.25363660064,
- 98269.37060043894,
- -970829.4887846556,
- -515101.155136761,
- 693334.1676186498,
- -532837.1019315652,
- 312690.9817721462,
- 94496.24908857013,
- 789083.0129621236,
- -871114.3760307438,
- -779501.7598786278,
- -114068.46116910873,
- -53451.68392937527,
- -589758.1704130357,
- 192869.30876058683,
- -42924.75634887327,
- -794708.5843885579,
- -924153.0319926756,
- -288908.0632793164,
- 376858.4882169239,
- 249702.09713593672,
- 8818.411749580424,
- -805272.5958235402,
- 572325.2596580883,
- 128904.54596308776,
- -188192.19126370922,
- 806270.5669295674,
- 136502.6693726241,
- 127116.18728415664,
- -351135.5082606136,
- -929243.6389838627,
- 190817.3862176308,
- -45942.83334304072,
- 380993.60744429234,
- 963973.7162607927,
- 476074.24726750236,
- -288308.5317146299,
- 416475.59817846667,
- -462162.1689652695,
- -689547.3493082294,
- 843027.1883691631,
- -794403.9911178367,
- 612150.1382190977,
- 3836.93751836911,
- 60461.02823090482,
- -75822.35864524622,
- 383273.06434668775,
- 549682.6323680055,
- -595157.3190656254,
- -304226.8823228318,
- 358382.03894130484,
- 292554.6723110448,
- -386798.3329973039,
- -214146.76381866448,
- -338326.6163107801,
- 137583.62112648715,
- -582636.258864279,
- 139482.7059297896,
- -35828.56855087835,
- -268700.5869158339,
- -733697.972407694,
- -215813.43397299357,
- 497715.8718366275,
- -915396.8586483792,
- 871283.7193049146,
- 142223.9800062537,
- -101145.03213600123,
- -630486.3814454532,
- -79474.85355562934,
- 209782.39493010787,
- 575.8668680553303,
- 68151.39254053793,
- -78095.17976986169,
- -606653.173591252,
- -136104.99555572896,
- -561597.6192656367,
- 217095.92044642134,
- 873519.5874235153,
- 628121.1916257495,
- -367435.62853026245,
- -336578.15586134186,
- -830638.2862848014,
- 857514.673338029,
- 884458.6595319561,
- -76985.75595470514,
- 519901.9790160115,
- 66670.82624645438,
- 135488.6983138013,
- 247187.5887809003,
- 88801.42731279906,
- -513465.205472746,
- -101600.36970390851,
- 232499.70550344078,
- -819006.6344866324,
- -502993.3709036374,
- -603505.0550010825,
- 502142.0191154666,
- 414102.7616245319,
- 852085.2891045103,
- -468848.57129865675,
- 16074.100333912655,
- -556220.9989995821,
- -892515.2876406967,
- 446442.5022736762,
- 622077.8967108367,
- -874813.7811802271,
- -898474.4290936495,
- 762531.2292543738,
- 627776.660442612,
- -256340.4034917387,
- 664982.6383284642,
- -783291.1862152896,
- 127937.02638926497,
- 541807.9999676651,
- 484705.37470108276,
- -765900.6841113974,
- -146430.8193315389,
- -960876.8746968672,
- -383679.5085456639,
- -305318.21105346514,
- -19338.677839469077,
- -84479.25940606504,
- 128190.18375011181,
- -518113.7384506194,
- 797067.1024426548,
- -563760.468537992,
- -452303.6428948102,
- -191374.50010450598,
- -121011.8964476985,
- 703094.1992824653,
- -686072.8482771723,
- 888625.1190525909,
- 292569.08828272833,
- -871313.1841874028,
- 319555.00694304326,
- 1424.04536477736,
- -129236.77030937442,
- -90110.53247666068,
- -24313.27562736585,
- 931112.5011514312,
- -134838.0775581628,
- -184149.876436303,
- 268853.4083945595,
- -22519.486652571974,
- -403559.0498918922,
- 825087.6995604406,
- 933249.8778389026,
- -449391.02156814584,
- 673970.6854957517,
- 613858.0967166929,
- 671492.5465389483,
- -215212.36870023963,
- 292257.18803351343,
- 151640.87530193425,
- 204777.29563670533,
- 692705.8729247755,
- 266932.96340006567,
- -755674.8847893564,
- -298779.0390392642,
- 172776.39778918587,
- 678004.0310460662,
- -125961.78769924004,
- -560548.0086359909,
- -271848.2326017628,
- 300907.48855033977,
- 550333.8640074043,
- -841411.7446565034,
- -381686.69805748604,
- 480024.8836847267,
- 848296.4146114427,
- -613085.5754542606,
- -177165.35287526748,
- 967221.0614340424,
- 28124.84738651744,
- -980550.0423792796,
- -141861.18531139157,
- -327525.2377763698,
- 544148.3491250776,
- 231020.33848242476,
- -650884.1248669295,
- -579992.0208613314,
- -310269.1411414409,
- 366041.96609572903,
- 174502.5657355064,
- -960820.0535281613,
- 725984.1323569188,
- -81445.73796501686,
- 859211.7646863435,
- 808268.4572660825,
- 937245.51693087,
- 339621.7175567653,
- 253007.03606810738,
- 901305.5534958246,
- -281861.2816452772,
- 136222.14212906436,
- 959131.602846453,
- -132466.62475941994,
- 899676.7881677743,
- -915799.5750366243,
- -549111.3284440929,
- -724694.0778011659,
- 857546.9650280003,
- 437941.08743882074,
- -652590.1100167118,
- 712363.3543888695,
- -413975.42633119476,
- -245781.28787741528,
- 320909.72118435655,
- 946066.9131307018,
- -172189.2714204001,
- -383445.2583876535,
- -323113.58246088726,
- 442172.937764985,
- 254753.27629518163,
- -36564.652562478535,
- 740760.0470586661,
- -940155.2562409498,
- 199354.43155930942,
- 977200.1263900738,
- 438382.6024387276,
- 974268.9863897339,
- -939521.6065702572,
- 187754.78403474975,
- 834173.6718428055,
- -652192.8989637223,
- 102961.5788348115,
- 266050.5058661415,
- -552066.0398650034,
- 880639.5810816756,
- -198878.95025185842,
- -493093.87531766033,
- 840013.3947613569,
- 321542.4574105814,
- -37136.79364762767,
- -428325.0850813558,
- 491600.42273094493,
- 908956.388232641,
- 484361.0181471585,
- -301558.8723111855,
- -453672.98578462045,
- -510390.8927654517,
- 857925.4332927195,
- 956071.4113171669,
- -648244.991695707,
- 952426.1295610137,
- 822736.0575970106,
- 574679.1810264156,
- 865706.3551566248,
- 23807.509457727916,
- 224836.1004435684,
- -728553.4342004756,
- -722571.7068587577,
- 913429.841837456,
- -511835.10056549683,
- 260741.21551704343,
- -784861.3787511815,
- 749134.5679189034,
- 120993.43216715397,
- 562648.8493792063,
- 973414.7171401097,
- 447557.6300054158,
- -932327.2246133625,
- 843234.2942952029,
- -543941.1366439497,
- -60508.439142465286,
- 341146.0634225707,
- 781903.2576086764,
- -118092.75045200462,
- -284296.4366729572,
- -344354.6868694591,
- -387874.15356474096,
- 830512.8542510525,
- -823888.9510353649,
- 94873.53493206397,
- -289167.7009437907,
- -834932.9188757506,
- 656668.1397421645,
- -406149.3184089657,
- -327830.46824779507,
- 352822.69366063137,
- 853979.6219467405,
- 247555.24983851163,
- -836313.5130040584,
- -757911.1218427268,
- -966219.6706865311,
- 19522.633023092872,
- -639305.3749117295,
- 93923.50386986781,
- -397325.79993978015,
- 747393.3392633463,
- -581374.6737350507,
- -455152.81498195435,
- 845274.0830091678,
- 485606.01256713085,
- -959671.4299609079,
- 107535.74130592613,
- 283553.45440684387,
- -332697.2613470871,
- 342276.9805058741,
- 442757.68484231894,
- -281876.8290873008,
- -101908.16367861743,
- -796663.8820716641,
- 555486.2492075114,
- 59490.81845283599,
- 134934.53742226126,
- -570501.502856549,
- 512418.37301278405,
- -65291.32830599527,
- -711912.2875698687,
- 838336.938930091,
- 214188.2986562089,
- -154009.85026286574,
- -376327.766113145,
- 870215.2245688253,
- 387300.6773259897,
- 435675.9543220927,
- 912041.9573953251,
- -799736.3030984818,
- -624532.9673721221,
- 231374.89672372237,
- -210574.73860159615,
- 183436.9666462683,
- -577322.6600181434,
- -829625.6193241415,
- -366075.9996291276,
- -310614.24844851147,
- -130555.42373303797,
- 220644.76755980577,
- 698418.5056545942,
- -912718.1510051532,
- 109317.84347090745,
- 818606.8272731304,
- 421477.352429507,
- 506889.9266023268,
- -802261.2450242597,
- -653765.8448555958,
- 545516.0128226359,
- 25678.158926161654,
- -219395.20648038146,
- 657999.7938922734,
- -467747.56417511945,
- -392765.2344766095,
- -924492.6775443134,
- 95349.34911518356,
- -760413.5928514852,
- 758420.5201432063,
- 620765.0222902297,
- -140825.24586075306,
- 916884.1682795306,
- -113298.15784897534,
- -208402.89834646165,
- 659244.5748592799,
- -310478.54345557524,
- -785865.0095857626,
- 293930.06716588844,
- 838674.96759672,
- 650248.1538546915,
- -666473.7360947039,
- -90280.97580804983,
- 413803.4222025198,
- -31146.021709068882,
- 882947.452932908,
- 774958.776786431,
- -589152.4602179294,
- -233621.28006460404,
- 803746.361269374,
- -74368.39836164122,
- 677463.3047772581,
- -251685.18929949467,
- 678466.7520823777,
- -8648.759734667166,
- 909171.3263044639,
- -196716.7221214079,
- -954409.3123139339,
- 613176.8523483612,
- -363283.9762819693,
- 684712.2143138787,
- 666379.2225509048,
- -309319.07085461717,
- 430180.92259001796,
- 466185.5428740693,
- 702824.6129750293,
- -98629.10623629561,
- 101744.15727309017,
- -502378.70341935765,
- 43199.25500628297,
- 386200.5625216758,
- -296827.8058275355,
- 748596.7069872333,
- 941268.757939586,
- 408134.9017570932,
- 270725.0578564309,
- 297280.7498650554,
- -426006.3258049323,
- -84621.92258431122,
- -588391.8530006724,
- -510801.6717335797,
- 683750.181706735,
- 17153.320272977668,
- -936957.2324216786,
- -522030.80812948424,
- 500517.7634105318,
- -421230.6879023977,
- 607624.9161345457,
- 347841.0080592684,
- 272940.83481633133,
- 350008.61990598484,
- 162042.82434157014,
- 414781.51858094917,
- 531596.7078054,
- -453561.11218037776,
- -197984.2200390063,
- -513137.2306663264,
- 70997.7278172833,
- 109497.47980675429,
- -224363.60706957182,
- -627941.7089981949,
- -769026.7762885543,
- 997568.5634025513,
- 603112.8272869086,
- -30638.4478799393,
- -975396.1203003096,
- 554909.908468568,
- 292661.9114359159,
- 863126.8405000392,
- -839572.1651004707,
- -501399.5057806011,
- 779704.0847932189,
- 758973.3167365722,
- 721811.2719822265,
- 319500.8404837876,
- -645030.7083339719,
- -653595.4715169637,
- -874956.6896985277,
- 650641.4543708412,
- 915010.2254520352,
- 137675.70726929267,
- 40270.85110940454,
- 596288.2648833905,
- -986806.826001901,
- 140591.72348361136,
- -246803.87626276334,
- -847609.7351244596,
- 599860.9598946855,
- 318745.418627697,
- -355481.36179190635,
- 342215.9767921329,
- -714442.3601567178,
- -928988.2919660928,
- 51580.304142182955,
- -413556.5515011554,
- 455840.6126544421,
- -882679.9161115387,
- 65147.734505308195,
- 230819.71521598144,
- 351698.6855914275,
- 567773.0140704353,
- -540660.3535253434,
- 699643.3008171428,
- -304466.032980671,
- -710978.3471097426,
- 463497.44530656055,
- 489699.4114248838,
- 193658.34138873962,
- 731333.7640762463,
- 796680.2599351093,
- -672391.9749307974,
- -801460.5173520414,
- -679272.8628710771,
- -444069.51839433506,
- 247118.8111931879,
- 640988.3770942535,
- 414385.6458062591,
- 695694.3671672498,
- -604255.4496560888,
- -315271.42525554553,
- -945452.0958848412,
- -932199.0060099425,
- -975542.6918392427,
- -577172.4812160785,
- 314223.9036003482,
- 683488.1063427635,
- -250634.23417695984,
- 43887.28158708321,
- 649195.0729432589,
- -844321.5682371721,
- -27105.320221544327,
- -603944.8929317786,
- -797742.5961456918,
- 729024.8063747798,
- 875687.0414890216,
- 41641.151139011345,
- 475881.5475176148,
- -216300.48508606592,
- 75401.25466241987,
- 329360.6656545258,
- 764829.9319246195,
- 167948.69104019218,
- -438161.0781283405,
- -15630.980615955803,
- -760686.0449235209,
- 995551.9902090093,
- 354402.7904876312,
- -209509.89970261103,
- -108126.05066147652,
- -931759.0623611843,
- 321159.96306917793,
- 396806.3164396791,
- -767352.3357087842,
- -679587.6662188853,
- -621983.6116557595,
- 433099.3009053603,
- -203213.93538844123,
- 366920.97539637156,
- -242258.15629503745,
- -145531.0621780288,
- 634378.457943556,
- 340582.6030686423,
- -232491.90823941212,
- 374674.25598944357,
- -514055.07099646307,
- -259426.3160916983,
- 728291.2871302987,
- -737198.0039603662,
- 50713.016569662315,
- -444255.4196952413,
- -306661.8202763516,
- 639610.3292748012,
- -334406.0414485144,
- 920800.0918776382,
- -276564.13162570324,
- 860254.5911322159,
- -806828.2551321511,
- 924809.5387281177,
- 286321.1706357509,
- -478278.68657509895,
- -515462.8047398662,
- -233063.26254950615,
- -43590.24737013506,
- 740071.0560837049,
- 472065.97600446566,
- 436639.42526444455,
- -970824.1073798132,
- -345163.6333388848,
- 610331.9836901133,
- 857544.0572051647,
- -779687.2793674718,
- -838708.5879016098,
- -324611.83470549074,
- -595244.3325915864,
- -542884.34456587,
- 466249.3426644711,
- 95900.24312155254,
- 156599.56808004272,
- 165133.00164725963,
- -846570.4633197617,
- 348333.45096258505,
- -771546.1556484185,
- -855146.2721229801,
- 986489.6906019467,
- 603863.5539849293,
- 610252.5358888202,
- 140011.1809209714,
- -95033.6351602028,
- -84524.83828230939,
- 262573.53623278876,
- -840038.0061571873,
- -197890.95535939062,
- -479564.35747890925,
- 728995.5095796643,
- -31112.6298263551,
- -284214.27169543836,
- 516645.18594375707,
- 918483.1057696905,
- -574633.8720491563,
- 852055.4752580493,
- -92538.64743070416,
- -472477.1206077489,
- 288871.9954343542,
- -223881.87161972374,
- -699004.9477200075,
- 769529.5288868764,
- 756073.0489544501,
- 168555.33314674086,
- -1880.8949058986002,
- 148976.32960702566,
- -853583.6814727968,
- 634403.7393172119,
- 142257.15154682894,
- 30586.908304849338,
- 781718.6248935732,
- 894335.8287506866,
- 548608.0329402523,
- 598875.8360151552,
- -903604.6934704852,
- -88900.08985195874,
- -366527.8803815715,
- -174420.44282620682,
- -629355.8199032496,
- -553927.1684126186,
- -428173.7897695694,
- -252301.87898084754,
- 313245.34172328963,
- 366030.307913177,
- -474347.61995963927,
- -154325.02170322902,
- 731177.2570996343,
- 436945.6847641666,
- 498296.7288118161,
- 793027.1812014345,
- 312655.433136634,
- 183653.72642319743,
- -851873.463671051,
- -437404.8582437142,
- 646454.6060582794,
- 823004.9339651726,
- -751952.5217245396,
- 97531.28218776696,
- -895882.3753819929,
- 805815.2186982868,
- -95428.18565364386,
- -703347.6564091174,
- -359517.17154064757,
- -95759.15574261452,
- 550323.1997206839,
- 842099.8382991485,
- 551252.8146404718,
- 941472.1784700857,
- -680551.2487416336,
- -518736.24636695336,
- -491167.2773408815,
- 834480.5155909725,
- 771970.2137992999,
- -998826.9548514923,
- -224268.6747803544,
- -129079.36143563958,
- -409060.8608443083,
- 119498.78235309663,
- -669221.2864820848,
- 74032.02254632647,
- 686187.6314717144,
- 336999.1951496174,
- -181928.604992045,
- -941902.1765725806,
- 148481.05912251852,
- -357608.0204913703,
- -125199.30365065268,
- 507312.85928665823,
- 410683.2206831499,
- 207584.0871651611,
- 738220.2672021105,
- -866986.0214052041,
- -734681.8392605066,
- -152474.62674095668,
- 111597.88902606205,
- -53049.65260569516,
- -616518.3855797068,
- -377964.17195417086,
- -398970.95834330964,
- 472498.884107279,
- -630291.2896075221,
- -977507.7794531077,
- 104785.02517838529,
- -894456.4907495503,
- -577531.3099235204,
- -868352.1091554569,
- -664598.1969277215,
- -872467.031419987,
- -848793.7889502881,
- -150996.5685952206,
- 880565.8085885945,
- -753356.7470928162,
- 670522.2159651503,
- -591695.5540900438,
- 703707.629045234,
- -32467.379151202014,
- 158082.23444922164,
- -13109.78059693646,
- 333126.0673578338,
- 152265.36739361496,
- -235259.18422654324,
- -377292.3568701216,
- 865059.0151271991,
- -560746.0258996962,
- 784763.8331658464,
- 282283.9461677047,
- -401736.4576638147,
- -580763.4995592819,
- 830447.5868304016,
- 174784.16232451587,
- 488938.878118701,
- -157609.0002382695,
- -689920.4462558852,
- -307136.97078122926,
- 442465.0286733711,
- -83118.03664461049,
- 735881.3698394555,
- -454696.33022476465,
- -338128.1989951814,
- 756738.0367657318,
- -292074.8922043432,
- 130607.54613930082,
- -169797.0939182838,
- 178546.58044182113,
- -732269.5048050025,
- -996776.3899438271,
- 862390.8184633066,
- 795479.1857620578,
- -757854.0561086511,
- -820510.7975162807,
- -121152.52714987613,
- -518664.6106508654,
- 596643.6455388488,
- -461956.5983016678,
- 848803.1738579615,
- 489998.48093460005,
- 698751.5051396186,
- 465682.3850358889,
- 816455.702057093,
- 844750.2218133402,
- -240980.06123384243,
- -176984.32577647205,
- -242509.45372394362,
- -419118.9608432577,
- -655325.8309618591,
- -442098.36472090916,
- 836392.4587400098,
- 483952.37676486524,
- -154547.57874865277,
- -735282.9353248354,
- -40942.95824396909,
- 348517.6876881515,
- -232731.8953144042,
- 261680.09555965144,
- -892336.6355854166,
- -445685.5096079706,
- 789427.2454475953,
- -322362.6205055701,
- 395049.55154209863,
- -689821.0650496801,
- -550820.1754531395,
- -336561.8233300327,
- -949166.7854389496,
- -658825.2281227594,
- -764190.0773305794,
- 446542.65288409765,
- 657361.9528847854,
- 834948.3959982314,
- -537561.5643833827,
- 60489.98701520203,
- -778719.5295647866,
- -865442.9888989801,
- -946784.9582334957,
- 699606.6979539392,
- -808662.7823848294,
- -886374.0222182613,
- 143445.50592646166,
- 717122.7283950439,
- -189959.3157990438,
- -294612.8855194881,
- 225655.51302383802,
- -932057.8489668514,
- 617398.8332351065,
- -788404.1067635256,
- -582293.9717377771,
- 511902.40143023914,
- -732371.5710033076,
- 148300.96025899908,
- 111516.48396057267,
- -686750.1936856447,
- 816027.4322492258,
- -277181.2146530834,
- -650354.5495611209,
- 52583.00219727241,
- 549407.6083453385,
- -603906.0618509586,
- 677030.0873836093,
- 775498.3056201561,
- 819283.9668034418,
- 929319.730744125,
- -911811.2245158883,
- -877535.7425372708,
- 485565.4253061228,
- -209583.60273924214,
- -431242.7768930298,
- -379811.79012542387,
- -152840.43600500975,
- 370267.603869475,
- 161781.35858539667,
- -356600.38477580127,
- -215931.34886113452,
- -810019.2761558522,
- -575583.2200346614,
- 805375.0664091872,
- -839320.5411553384,
- -317849.9585191015,
- 966880.140237979,
- -998021.5723692257,
- -286323.65232082235,
- 59289.81596642169,
- 81757.63874707754,
- 740677.9698150854,
- 47452.42070068389,
- -699687.4008961509,
- 396050.1530931395,
- -217496.56425047625,
- 381615.33921536314,
- -380574.2408321684,
- 546470.1528018337,
- -927552.671774267,
- 372473.6258653911,
- -351816.8698252324,
- 876326.4205485648,
- 856031.4368242417,
- -742427.5389398369,
- 912983.8340727295,
- 989995.2788715458,
- 923331.1010417473,
- -358187.39609211823,
- -284437.81619076483,
- 765944.7318797669,
- -243705.17765533295,
- 418100.3885747867,
- -426249.84344446124,
- -168035.18639889493,
- -164721.8119388929,
- -328187.87404652004,
- -974685.7749259599,
- 415316.73564771056,
- -53696.519706066145,
- -767183.6569094082,
- 602078.4762886771,
- -49070.491632454025,
- -762804.2714178236,
- 288349.8604819221,
- 507209.4891702097,
- -369510.7035062415,
- 286868.6018142987,
- 374168.31954809715,
- -627037.0604927718,
- 373946.061906882,
- -515368.61785647226,
- 303500.1739670362,
- -299412.9414421751,
- -221631.96688117724,
- 11248.774428656905,
- -238717.63511473866,
- -946821.9131313665,
- 198154.0287545416,
- -751849.211181693,
- 683315.5816703807,
- 202934.74039581793,
- -236603.71256760904,
- 36408.8020560569,
- -362994.0593956116,
- -598763.9544661037,
- 792317.1504136241,
- 158018.6288753369,
- -69469.41685494123,
- 800665.2979139157,
- 734952.9037321925,
- -494621.1823249269,
- -272169.0607458098,
- 977246.3289523004,
- 542741.2172675028,
- -58308.21822495414,
- 56779.25919522075,
- 599370.9956578608,
- -240496.21047430957,
- -557338.875464903,
- -264925.39578065986,
- 611297.9576772155,
- 516108.10813642474,
- 780473.511102833,
- 281070.6682159227,
- 792808.1007920295,
- 823971.8142868538,
- 528578.5969288304,
- -573985.4043063368,
- 889666.0962224933,
- 834267.7229605693,
- -373293.73769750894,
- 776361.0253164197,
- 255919.22204453876,
- -927728.9869023431,
- -224297.45639048028,
- 744081.0099810675,
- -98598.89577669834,
- -955453.1900511223,
- -639064.0003676105,
- 485143.6431168461,
- 860108.424798722,
- -852964.868720755,
- -492521.2859908892,
- 363692.67162079224,
- -236750.07882047127,
- 998273.3642931383,
- -906820.7500754176,
- 337655.85349100234,
- 194860.98403774376,
- 751987.7741559888,
- -796313.746522699,
- -789651.5713798298,
- -577385.8632610905,
- -673572.2445082628,
- -264689.8509489843,
- -704619.0310263032,
- 377958.8558851479,
- -882278.6701103802,
- -789057.4462423074,
- 573823.2357526305,
- -651094.5599219921,
- -340574.61258254707,
- 570143.284222858,
- -501096.76291175996,
- 913601.0077770718,
- -177247.68046096506,
- 85369.60815294848,
- -379461.71527349716,
- -294354.25914785516,
- -487902.85752242536,
- 906121.3876679564,
- 213963.33845066495,
- 136486.19753145796,
- -322460.16978844104,
- 110115.53470343571,
- -76940.04934945142,
- -709594.0750426356,
- 127416.82008068355,
- 873827.8648224331,
- 569426.2010368409,
- -315978.7563100804,
- -344096.31277788646,
- 467024.203364437,
- 972404.7415354928,
- 734257.7118133808,
- -884979.6716525995,
- -644284.6772222108,
- 351292.39595967345,
- -805530.2155011293,
- 157126.94414015303,
- 531672.8204095991,
- 313879.38597633113,
- -669750.0200522619,
- -928069.3183483853,
- 120533.10990977817,
- 611253.3017903763,
- -370018.15223551524,
- -942237.9914748644,
- 29094.702913485147,
- 456638.2703999801,
- 498889.0433708926,
- 650595.4471786204,
- 948552.6966291937,
- -44361.25266287183,
- 269488.26230879617,
- 711084.0809312062,
- 301743.96901413146,
- 678513.3711636302,
- 74974.79250578131,
- 409828.0535749066,
- 876923.1848843993,
- 119299.04595912255,
- -813618.8294160923,
- 873610.259105017,
- 509167.0649891251,
- -901544.5432644939,
- -699412.6159477539,
- -709837.0488870345,
- -319564.47245621856,
- -761353.3296419324,
- -739339.2768077732,
- 261103.5971783753,
- 515860.3188855304,
- 714563.8411949562,
- 952556.4851485806,
- -780781.6397329741,
- 937465.6825038469,
- -803178.7938823747,
- 581333.6039827648,
- 839809.9332398885,
- -913740.6460254149,
- 449965.08249840606,
- 658170.6193614552,
- -704356.956066998,
- 295231.45466173405,
- 517998.0410790452,
- 118317.46762684148,
- -148474.97347387817,
- 650507.6796735725,
- 660995.5173192346,
- -746639.7855100826,
- -671458.6684294994,
- 125954.79310564039,
- 299312.16857639066,
- -331983.8634966854,
- -690698.4084337917,
- -484313.6484722672,
- -402702.14202527056,
- -963336.6658876128,
- -477159.1464606759,
- 462407.16931254667,
- 154823.87797654007,
- 410855.58359993744,
- 238456.91042636207,
- -716791.7994726019,
- 767524.2517304522,
- -187317.4150911252,
- -577768.8469843285,
- 769829.8963626355,
- 580744.6310600439,
- -66295.44301636248,
- -623149.4310074068,
- -966750.4701256802,
- 60030.82193173204,
- 889111.7196432959,
- -772605.5623288198,
- -398966.9055641287,
- -173813.66418468236,
- 573297.0105229771,
- 544971.4421925842,
- 181622.0054271791,
- -298137.6711303969,
- 483968.4326952378,
- 902426.8942792382,
- -346178.9411309759,
- -327693.93233395205,
- 250849.45875833053,
- 965903.1348087577,
- -437336.5666268163,
- -99917.64837306038,
- -333329.424926774,
- 302022.53350511345,
- 588812.9221087539,
- 455922.0597099005,
- 284910.8960690885,
- 451817.43569772557,
- -934437.2704777415,
- -949314.0955752035,
- -628291.5742878261,
- -567056.6420176353,
- -553334.3038154889,
- 34459.1673726824,
- -170319.34577101283,
- -397338.3358545259,
- -433213.56688659417,
- -121097.83481917735,
- -594130.4823077797,
- -742846.4822017557,
- -254740.26899740277,
- 236335.85621669862,
- -448151.80118110985,
- -639964.1950726409,
- 760944.3599253844,
- -544053.0926553826,
- 328794.91046241194,
- -298109.89953366265,
- -597620.5523672891,
- -589346.3961094103,
- 5083.626322929913,
- -719700.2996779762,
- 820706.8041417582,
- 304143.8322525611,
- 820671.3921052602,
- -713140.5043605723,
- 519512.47056427976,
- 915710.5015427669,
- -284044.9823208684,
- -407308.96062071744,
- -807753.3321592043,
- -895212.9018650372,
- 831622.9627949215,
- -21822.849019256242,
- -47369.454295688614,
- 658717.0317048321,
- 33906.610152312,
- -275211.2261045234,
- 968259.6440143192,
- 835136.0668277784,
- 484134.21860388597,
- -754957.0583677647,
- -468251.9595479606,
- 480112.5758800815,
- 504764.67328162934,
- 72859.90429030487,
- -822308.6965159456,
- 199914.8599883669,
- -796323.3217591847,
- -970006.6669622916,
- -995864.6395551743,
- -784552.3041507332,
- -893058.5320538153,
- 735476.3387120038,
- 190460.07572083035,
- 285623.10212868435,
- -731081.2798080504,
- 989908.6480350614,
- 447666.11805934244,
- 251113.04515835896,
- -535004.0450121616,
- 933808.4401420316,
- 660013.812155916,
- 688871.7650333842,
- 647276.643477577,
- -508186.5495762881,
- 435115.7196843101,
- 403971.4732690698,
- -629085.7574144776,
- 285420.35348792427,
- 441558.3182356082,
- -249967.74442184644,
- 983833.889543259,
- -766680.0445626559,
- -887114.8502687125,
- 117349.01599864812,
- 977760.9485467655,
- 13346.937350257493,
- -335131.7746287854,
- 8798.389445823896,
- 547533.0917250862,
- -787491.8742771259,
- 947228.8200541938,
- 529516.5063822762,
- -943421.065859572,
- 963308.8941907522,
- -921631.2863583902,
- 329841.6101123851,
- -653642.8870488249,
- 482531.9781019357,
- -325047.43107249844,
- -113626.03578299191,
- 763063.5826122563,
- -559481.1363294352,
- -821808.7488555277,
- -859935.5712430583,
- 680840.6182936446,
- -322080.8295212627,
- -313404.86650861445,
- -55687.2200791303,
- -936524.2344424634,
- -883576.624901446,
- -769953.5282208321,
- -190553.45310046757,
- -785223.3313241292,
- -737077.4683679981,
- -414734.1141206713,
- -672342.4549689328,
- 945205.042025586,
- -427203.3246298399,
- 822662.4299963674,
- -18707.672116918595,
- 756385.0249515868,
- -516567.4010384933,
- -849704.0016547204,
- 572320.8428699595,
- -671618.5881212282,
- 277843.63690074533,
- 911483.0590294146,
- -804013.6284772945,
- 478395.24314106494,
- -811029.0018434132,
- -262800.2394146558,
- 327407.6902258893,
- -583997.4980967278,
- -132798.82766355676,
- 686682.9246791515,
- 881433.7867519683,
- -798423.059573356,
- 686503.780660142,
- 353142.65775506914,
- 162917.21209013386,
- -199528.66333103247,
- -634451.3586160667,
- 306476.69254405075,
- -768139.0297084656,
- 361673.2606361384,
- -501626.78964226146,
- -772553.4183609884,
- 815548.3840356627,
- 359494.7123972616,
- 627949.1086363485,
- 446744.234024286,
- 842828.5032186918,
- -23824.039308904645,
- -552997.0419693318,
- 825926.8853153714,
- 689581.9221533792,
- -700041.574958739,
- 646508.2778071713,
- -798353.948987244,
- 124715.51371617772,
- -114574.81299207517,
- 515243.0958648966,
- -311938.85143241484,
- -216056.05943976957,
- 811550.3917825834,
- 44372.16707737912,
- 710621.462635788,
- -157386.44279620706,
- 71666.34815168793,
- -684483.5026680101,
- 614094.6530508824,
- 471804.0876488623,
- -725149.545740764,
- -351956.7330889226,
- 188128.43718252136,
- -866514.3614885394,
- -630117.1074336501,
- 294602.1335758904,
- -995604.5266617624,
- 770640.9057752877,
- -262331.95853938593,
- 391952.0217685493,
- 634766.34154365,
- 587585.9178245267,
- -89436.05632266593,
- 898976.4466029222,
- -466342.9318166086,
- -105816.72333048165,
- 687323.5626654901,
- 894519.3453401669,
- -481307.03273023135,
- -813416.9652355734,
- 592300.3179471269,
- 875726.1590746323,
- -722596.0243192979,
- 644837.9977576598,
- 421167.2155853159,
- 701559.9779968335,
- 485971.59148750425,
- 302647.944265386,
- -724397.206895517,
- -70322.04924529139,
- -614623.6409889816,
- -453457.31822680426,
- -522797.78178239014,
- 365295.4622661484,
- 337825.2395308705,
- 507377.45493051835,
- -270807.8192827681,
- -190347.71864474888,
- -755164.0160033961,
- -553684.2499992875,
- 839161.0429270562,
- -716880.9093409365,
- -668018.2719246101,
- -917394.7814196957,
- -69024.52566176032,
- -834815.7310607014,
- 4350.687905292805,
- -991261.5008008269,
- -661537.053660477,
- -759530.4932528293,
- 647709.274558641,
- -546822.917316347,
- -502705.02418117615,
- -343567.90440601157,
- -486064.244873063,
- -42071.592649032485,
- 121972.1823623685,
- 999897.6670972623,
- 338340.5416757388,
- -344873.2929242737,
- 9448.143559748212,
- -305152.41467422683,
- -247291.40289358466,
- 263262.65327425057,
- -264903.34007845505,
- 679573.7148579349,
- -914576.5272579557,
- 236067.89188540712,
- -569584.4355122246,
- 537152.8490186827,
- 796447.3075263916,
- -884217.1484318104,
- -859982.534647588,
- 68689.99080125948,
- 403167.7242535845,
- -812009.2621897155,
- -10517.666407116045,
- -470159.9464817261,
- -234897.76073823342,
- 906262.1963999255,
- -125520.06373675306,
- 156747.9630301749,
- -215233.83876435796,
- -846488.4087327451,
- -358278.1071324539,
- -124201.84824884584,
- 64533.46222676193,
- -516532.4346334024,
- -601925.180863301,
- 76267.47379551646,
- 879237.306230467,
- 587178.3124311878,
- -110891.19005942516,
- -992505.0080537414,
- -347573.6906266138,
- -249762.4005705108,
- 581608.9138414848,
- -673449.0473919732,
- -583388.5461944022,
- -398770.7661075126,
- -682971.5566636538,
- 75045.7278098271,
- 733293.9663070794,
- -172173.40924431678,
- -859801.2276585189,
- -39699.752065404995,
- -528541.0184098254,
- 396547.85146663676,
- -859019.3411548728,
- 66115.61697118229,
- 485462.12887555675,
- 875453.3860975011,
- 261969.46205185045,
- -832074.4771624613,
- -329380.4874791255,
- 634752.2479267404,
- 816231.5974027463,
- 391026.096153821,
- 622783.2295132176,
- 833688.2097718827,
- -280470.3948263092,
- -643016.9490523296,
- -814663.8308455332,
- -278635.94826224336,
- -847529.4094604702,
- 156230.57247712513,
- -185189.46272013735,
- 360501.5741433544,
- 247676.40367115295,
- -609034.0689518001,
- 475632.1974685982,
- 617692.8317964126,
- 738342.9123406038,
- 12344.534517868544,
- 443615.7707014767,
- -801414.7210330585,
- -77607.2675421009,
- 791949.2743768111,
- 514630.5911500952,
- 509601.1149630109,
- -137730.35026066683,
- -431269.4059996236,
- -461322.83010281896,
- -230376.6095375437,
- 762857.2261425807,
- -695106.36332362,
- -978780.3284945971,
- 618291.6678365247,
- -482784.08950718644,
- -957174.4361632362,
- -503122.43016750214,
- 776859.7362429261,
- -36874.44108803395,
- -784412.370957266,
- 572637.8357205411,
- 141095.33374262418,
- -469765.18773476436,
- 467427.5361281046,
- 872029.1293564575,
- -166705.29505833786,
- -603842.6884476498,
- -354912.0221829971,
- -410780.0013696317,
- -686316.29631507,
- 549729.2280166266,
- -489027.0382248907,
- -46719.77261728788,
- 786271.565680674,
- -168409.56876262836,
- 157813.52760825484,
- -267618.4977445102,
- 172402.89748255865,
- -838650.7902619013,
- 461796.1306292808,
- -529231.4892591364,
- -336522.1500353555,
- -320880.23612436233,
- -544265.8592832119,
- -523785.3568719608,
- -733047.0406079699,
- 448874.760253114,
- 479484.3428275586,
- 216532.24708716245,
- -780875.0823880362,
- -723940.1258097029,
- 888909.7011801832,
- 744827.109608174,
- -617037.075316593,
- -912028.3900739019,
- 29385.88676009113,
- 586949.343676858,
- -622095.8867204549,
- 614147.55875165,
- -992218.6521357324,
- 989434.9253573411,
- -724120.8482295065,
- -531590.0589222254,
- -517539.6093437106,
- -832600.8520342072,
- 960657.0863384738,
- -403313.3561328359,
- 87057.397775818,
- 473844.1775961697,
- -932896.1480319446,
- -284687.2146843804,
- 762744.0281450697,
- 255781.5076003691,
- -715732.0726698671,
- 219944.192367312,
- -652702.3833335503,
- -843879.8580154654,
- -254283.220152955,
- -835309.4386230248,
- 379080.1014418121,
- 954466.6890934415,
- 617442.6579088056,
- -169468.39691167593,
- 901418.6408841481,
- -150703.16303114616,
- -764170.0293921556,
- -640758.4138955986,
- 824527.8530807551,
- -222694.5693989979,
- 619981.793830797,
- 279966.3557332164,
- -914673.3685312772,
- -791770.6571829433,
- -313272.6240859962,
- 972029.7401187477,
- -251228.87390526992,
- -633038.7243176452,
- -384675.07445503556,
- -522086.82581271295,
- 11832.718016612009,
- 179371.645326152,
- 636092.5386892926,
- 609483.8675344911,
- 366688.05597804586,
- -48063.084374938335,
- 762698.081509219,
- -26080.976877237204,
- 502711.74062719924,
- 844788.3121640276,
- -142850.86605370956,
- -771220.5894601896,
- 132802.6613966191,
- -174406.65199651616,
- 628578.5710833605,
- 259264.65565098057,
- 246518.6521715306,
- -541891.5181151051,
- -80035.79353996515,
- 52799.93731020172,
- 733975.4046907515,
- 314832.61957444774,
- 148996.70697011813,
- -144786.70996532906,
- -882340.5246306022,
- -752028.669463045,
- -745732.6219238873,
- 361752.31905428396,
- 798734.7303217083,
- -415442.9643692379,
- -777165.9702765666,
- -884738.9864203825,
- -277182.4185244145,
- -457645.9664899786,
- 550292.6909928769,
- 724108.3396727841,
- 923589.1589958405,
- -293866.91262378695,
- -433026.9609451467,
- -573110.3335846213,
- -59698.049883428306,
- 363536.6080183029,
- 900826.1743858807,
- -976423.1859303191,
- -859410.1442000796,
- -760084.8701635192,
- -842143.6918360303,
- 20139.574385072745,
- -826095.3877290103,
- -799011.3258797685,
- 812835.5056128355,
- -447067.87029947614,
- 511252.9117934932,
- 55632.74931077089,
- 19535.79334010014,
- 502546.1747023512,
- 705980.3444020525,
- -394587.71773398516,
- -948217.241158128,
- 474913.6801791001,
- 261298.26907160637,
- -30805.978761354603,
- 770284.6974537217,
- 357752.60761996574,
- -659173.8471420365,
- -607142.0939847548,
- 756989.76902336,
- -183734.46821322138,
- -226462.21423056055,
- 814564.2739968564,
- 436022.5666919102,
- 980550.6513249411,
- 733890.3528976466,
- -857210.6008207247,
- -280459.9112554971,
- 72859.50574240019,
- 811549.3468269572,
- 43966.68862290909,
- -652547.7636939208,
- -770159.5710452267,
- -585083.3333271506,
- -391618.4376336367,
- 140529.45087793624,
- -487443.5497208198,
- 35108.89198067102,
- -482918.9907786271,
- -846680.9229505205,
- -852794.1473676561,
- 39601.71120246314,
- 968483.4972324665,
- 731551.6008894293,
- 931716.0405018902,
- -434113.91021663113,
- 767140.0943679847,
- -661499.3217699834,
- -347514.7059202179,
- -899428.5669430122,
- -657067.1260960137,
- -57594.343926136826,
- -419449.09347852156,
- 395764.47480919043,
- 972847.21586345,
- -452068.9759557437,
- 642975.4186289314,
- -489219.00989599497,
- 71612.73869665319,
- 644562.9847490258,
- -724018.0838348367,
- 711232.3954089215,
- 649724.0495641192,
- -657294.9622241316,
- -842501.5882254431,
- 649048.0069551194,
- -367437.6788716265,
- -71177.65862594072,
- -230178.665734591,
- -599737.6381537707,
- -362731.3319319623,
- 593164.9777333252,
- -916458.8033821614,
- 708074.4627284872,
- -951269.9169275134,
- -767390.0800439158,
- -54233.57042392984,
- 112384.06148844416,
- -676940.6075903261,
- -343585.79410295165,
- 380622.1951797597,
- -666028.1096000503,
- 18210.50005219149,
- 403988.55034623813,
- 49131.36946225971,
- 581717.9326907796,
- -391624.7702485367,
- -121953.9898486115,
- 859.4224751392599,
- -927510.8238268774,
- -402763.3932162509,
- -922274.2110410016,
- -363559.17552459304,
- 443600.81590450194,
- 876804.5751917672,
- -644913.9091309493,
- 645181.1008316732,
- -744999.9975197095,
- 711200.1155450429,
- -718802.6131773075,
- -589628.3293142844,
- -894528.010753233,
- 720543.1219287761,
- -713261.4345312329,
- 901661.4551144018,
- -717615.8912460882,
- 267533.919953002,
- -633358.5379277682,
- 419377.253912127,
- -177647.96475387624,
- -516920.72330550285,
- 327583.7853509598,
- 520819.1797847843,
- 350300.77329405886,
- -988112.5284260073,
- 710588.3397859995,
- 981568.7111589207,
- -665552.294781591,
- -793009.9464237521,
- 414451.74655842787,
- -25397.666070078983,
- -853894.7347639932,
- 895106.4409199255,
- 874899.8829013575,
- -762397.6890746496,
- 944744.2742735195,
- -98837.54922764609,
- -664586.3797982429,
- -603809.8066668194,
- -232917.36539511156,
- -491465.765949666,
- -451261.8660916994,
- -33288.69234465115,
- 852952.552650305,
- 577002.2922082945,
- -560907.084419437,
- -933706.2391850161,
- -145745.15460832504,
- 1938.6771421989745,
- -960149.4011226915,
- -170562.29233685217,
- -794180.2774817024,
- 15332.272683221016,
- -422457.7351126812,
- 147525.3688103151,
- 563571.2037184937,
- 843537.6298581809,
- -593892.9974055766,
- 839879.5367851306,
- 269579.3687983612,
- -744255.6475110647,
- -583637.7633800403,
- 46654.21494484701,
- -938189.4735793832,
- 197523.79915031936,
- 626100.1524561009,
- -326881.78359177813,
- 261730.41322840817,
- 953940.1852560709,
- 725392.1070335926,
- -40816.19360819411,
- 781691.1883219513,
- 376257.19351697294,
- 486573.73041888373,
- 657365.6271911011,
- 725064.5635545201,
- -190529.09336950275,
- 547085.6629513345,
- 639871.2131202575,
- -97755.5419205729,
- -793736.0839922765,
- -19243.173219408938,
- 623149.3488257058,
- 173524.2846866225,
- 427642.3792832327,
- 609165.9469071773,
- -247226.5888012395,
- 931755.2990700259,
- -291397.89419018046,
- -286954.5439037293,
- 477530.9380740094,
- -481614.238657514,
- 940375.9347545557,
- -580124.6294640541,
- -399243.91364627663,
- 96591.05548042878,
- 566053.544113681,
- 47356.756173632995,
- 505225.1470925639,
- -417203.4697296623,
- 923865.7641213705,
- 621154.761918006,
- 588640.7653873737,
- 344544.86669026373,
- 859483.3846366437,
- 660873.4936120859,
- 251603.31935460123,
- -192795.72125363487,
- -520570.2923372526,
- -414535.4131803336,
- 481073.6871555208,
- -174678.51560619674,
- -560003.9311959768,
- -538167.5108347839,
- 13672.764967209927,
- 716978.4937935866,
- 162207.48993686552,
- -80303.8085281187,
- 973923.865699531,
- 568283.3247184058,
- 376498.38097867725,
- -286797.8761373708,
- 938768.5079328278,
- 961565.4936674045,
- -181547.56032793727,
- 728138.6112311399,
- -517616.55068056524,
- 208964.39088211505,
- -911472.1705976703,
- 475539.1936354372,
- 932828.4950779648,
- -41484.59441157515,
- -292785.1467195832,
- -208235.12011670187,
- 529866.5661184035,
- -126066.11356799724,
- -714976.481596677,
- -722173.4700041352,
- 669967.4397389148,
- -266975.0828028985,
- 242770.36301391176,
- 853999.189949245,
- -639181.6756478499,
- 953286.4661460969,
- -163004.20189170993,
- 117436.916022011,
- -520854.41586435447,
- -925407.45800769,
- 976421.9711462008,
- 621248.0563987199,
- -946404.4164239902,
- -166596.28416809902,
- 799547.4470635839,
- -518919.559648898,
- -437763.71614300436,
- 338060.38912244386,
- 85558.24486552832,
- -102620.39420632063,
- -856130.2587879092,
- 465493.9134888114,
- 754820.6144688388,
- 21149.414609380023,
- 670562.580638201,
- 114617.33030475196,
- 908835.9212057517,
- 811454.0545861686,
- 608252.4483112211,
- 16846.093687938213,
- 124689.37349683506,
- -719120.2540195603,
- -185967.00629360985,
- 251276.7288205573,
- 345322.7548513471,
- 175654.55575578203,
- -184925.6289728385,
- 208014.14493150782,
- -596190.3623041562,
- 847244.947215345,
- 965924.0629816033,
- 849192.1518362842,
- -218792.4808529762,
- 474560.8713147029,
- -353802.3690026599,
- 882542.3876617637,
- -830367.7983778841,
- -856967.643465035,
- 594035.3427447336,
- 577005.0155212749,
- -981236.3021448804,
- 391432.8582566971,
- 467585.50844156963,
- 186281.10617004,
- -889204.8750537693,
- 642302.539452164,
- -851656.9539887982,
- 630311.1215989785,
- 709202.9972589033,
- -984443.754792288,
- -926492.4763239211,
- -142908.3601240049,
- 238526.66936074442,
- 242861.37442372713,
- 939021.8107404687,
- 484043.0763757415,
- 412828.91489878536,
- -316041.1193335713,
- -289249.35773951386,
- -502211.641743636,
- 588781.0390879728,
- -62403.741817278926,
- 96259.00147687094,
- -469011.4100421072,
- -896851.449704493,
- -674882.3298679556,
- -781400.8241404402,
- -420226.37046262925,
- 369217.6840910224,
- 33970.114188952124,
- 395338.8679812806,
- 748710.6674800661,
- -435287.268844972,
- -865376.4197376512,
- 13670.049556162134,
- 680624.4733972524,
- 581152.7634022386,
- -77663.05117718808,
- 779032.0051422941,
- 769677.0959349022,
- 377602.8953901793,
- -505216.3400228422,
- 472490.8127912777,
- 741362.340338394,
- 668437.3542852009,
- -872142.6696618686,
- 97799.5080948848,
- -535402.1726515543,
- 914518.5026417575,
- 582408.612480416,
- -625162.2955819138,
- 359600.8996375646,
- -77689.02431914392,
- 777464.8291627526,
- 803162.7979981209,
- -38513.65021055542,
- -709908.5384347928,
- 462794.34181832644,
- 96575.3459309424,
- 199373.09183552544,
- 440095.9144918901,
- -762503.5863252002,
- -415631.97884143685,
- -254411.09377694948,
- 649189.4635545341,
- -858059.900750348,
- -164605.596558983,
- -201077.28893387367,
- -818182.9581517259,
- 654105.9168274747,
- -337660.3714587161,
- 881905.5805816231,
- -859643.0888836095,
- -388784.2862025195,
- -21930.679526495966,
- -810146.7985419923,
- 886485.6278713045,
- 110277.74298156422,
- -564123.1406095624,
- 290387.64113112923,
- -686264.0680444405,
- 867403.4583285084,
- -566920.8575921854,
- 972996.8672718583,
- -21521.297983716493,
- 24312.166688685633,
- 113749.21988860809,
- 457473.2055230315,
- 777227.6485370373,
- -438738.9201148422,
- -233676.8901925197,
- 882819.5976580817,
- -921449.5136107212,
- -738250.8289512641,
- -354129.5147390149,
- -402408.7478065912,
- -385424.31273816514,
- -838993.4959292777,
- 507378.02590130677,
- 646170.6406003737,
- 784761.7050422058,
- 830485.6108744567,
- 262852.5569912026,
- -700201.7741508895,
- 530262.3749639206,
- -737700.4080162377,
- -932914.7869766891,
- 888629.0454641348,
- 296927.8049937179,
- -136967.12925162812,
- 716165.8203689172,
- 256073.36007168845,
- -711707.8120755384,
- 124439.40015480792,
- -268805.31342992355,
- 283288.817844483,
- -519489.6134254383,
- 653341.1729396186,
- -620946.1527198094,
- -234994.1008880867,
- -806931.8481202696,
- -4976.705928132929,
- -407488.15567177755,
- -904761.7440831801,
- 826838.430149214,
- -415880.93938508665,
- -926118.3904840451,
- 850990.9068012859,
- -310084.4261053883,
- -509161.19873339485,
- -479407.23628669925,
- 643840.22925911,
- 496815.64558863454,
- 934633.8751740366,
- 331258.51466960856,
- -741368.0881708044,
- -410120.8163161709,
- -82229.01262198134,
- -808842.7489688051,
- -75534.16139719138,
- -715769.8613540266,
- -826577.6302597478,
- -931565.7291341546,
- -606702.0857310273,
- 131661.61168409584,
- 488348.07006892335,
- -354116.92921856616,
- -218247.22728333468,
- -802010.5200497974,
- 9184.204864025825,
- -581160.2834020411,
- -603074.508616982,
- 341170.63919401926,
- -800837.6617120674,
- -83680.22099230177,
- -137244.66114671397,
- 538141.078381243,
- -826110.2473572615,
- 986406.3465074698,
- 348890.6842165733,
- -57940.58857880402,
- -300232.6904947266,
- 221805.89972327836,
- 983373.6232215092,
- -201155.26620201574,
- -745592.3007043626,
- -712099.4135573988,
- 172114.88332742974,
- 103155.53849642423,
- 61420.38844754105,
- 440011.11677464744,
- -308332.6421673376,
- -877320.0060132788,
- -736998.4731007031,
- 964441.4853303196,
- 908876.6390714764,
- 775052.8029047525,
- -621549.2270214213,
- -91362.21869818706,
- -315118.1681512076,
- 399299.81825602544,
- -641075.3967708645,
- 576023.9557127396,
- -124297.29107141796,
- 931461.8027367103,
- -817190.3837038144,
- 840771.9919093266,
- 378069.3632749952,
- 599252.30687665,
- -852208.751482923,
- -540542.6400731581,
- -680520.4512217782,
- 398541.8875847939,
- 761319.1116145841,
- 405766.8310312914,
- 976910.9262818396,
- -832881.8174814439,
- -982994.0183115755,
- -821159.0402301083,
- -484973.5855545574,
- 213425.38409035193,
- 279232.43458775105,
- 467720.5003638012,
- -132428.6571244011,
- 47709.33066836736,
- 778862.7287934438,
- -979433.8046944189,
- 851841.9414116873,
- 358624.547645054,
- 436948.97429062915,
- -670891.9752106941,
- 461153.4304324787,
- -351061.2898070766,
- 724373.0706768062,
- 620508.4366388454,
- -40653.77880764709,
- 813753.4664497739,
- -63686.52939129737,
- -12346.95449959089,
- 466494.25602173846,
- -49348.148369764865,
- 481303.76852291176,
- 133172.07709387023,
- 623247.4671390118,
- -590724.2040751552,
- 40410.314155049586,
- 912953.7619585326,
- 950198.0908976065,
- -250075.1615211585,
- 355350.20461515774,
- 182544.54816455534,
- 454206.2174427357,
- -978933.0168164918,
- 723078.0152313494,
- -790220.7334142552,
- -656209.2681317817,
- 600555.6653247031,
- -383421.7496351753,
- 105241.21352496452,
- 8892.875564424196,
- 249114.6831977078,
- -572481.8459122027,
- 330099.73042332043,
- 391008.8021984532,
- -785159.3608965493,
- -115632.45672334133,
- -929889.7998569495,
- -411442.6588002102,
- 392250.3372571382,
- 204119.26274795333,
- -892387.6203992722,
- -129834.85944242057,
- -290728.7227344462,
- 47703.38567113508,
- -379841.2204523918,
- 515004.6609351537,
- 401359.5327105304,
- -623879.0242070497,
- -198235.10558341196,
- 171407.97345287018,
- -665530.4115471472,
- -221969.43917431787,
- 637454.6364377964,
- 746263.1207972703,
- -226085.59164477192,
- -643394.4476332346,
- -164772.54528390904,
- 911751.1883955674,
- 80637.57086429212,
- -769697.7001177241,
- -634213.2428996119,
- -171461.6177613406,
- 419074.7867421041,
- 563669.531549778,
- -5806.101008093423,
- -694365.3254648447,
- -591110.0236427236,
- -351263.2208071609,
- -861922.3330318397,
- 582272.8815668636,
- -464040.1906666423,
- 304839.71822132316,
- 155209.55773237822,
- 146151.69875515942,
- 939387.8814044792,
- 89392.0010538074,
- 88504.46521250955,
- -551569.2383591364,
- 382275.0290451855,
- 130807.69262596847,
- 574965.3108112316,
- 144588.25855479616,
- -695930.1670214523,
- -809505.2563139173,
- 167778.28909679648,
- 132798.95607938318,
- 232760.82477561454,
- 834353.4599736367,
- 961407.8641807245,
- -191264.664644198,
- 812631.2353458247,
- -809537.1679288428,
- -565486.3616008074,
- 676120.1647257245,
- 312714.7132557424,
- -721774.2162854061,
- 919696.3084822039,
- -458472.05661537574,
- -88416.98227460726,
- -859192.8248415752,
- -930718.7800558052,
- 533098.7816619514,
- 967775.075928561,
- 731919.7897291412,
- -713492.3095151149,
- -74506.2387431672,
- -714189.0828118752,
- 833575.2523278559,
- -348161.0746322301,
- -398455.2386472033,
- 902504.6875094931,
- -144692.3498769983,
- 606489.5048804722,
- -399282.10217610595,
- 266736.25648825493,
- 459354.45504684956,
- 91931.06655805062,
- 936215.0867877726,
- -53560.8475211351,
- -630462.6412781388,
- -700482.1367019257,
- 13524.709942484225,
- 122037.62369447513,
- -61382.04524773561,
- -758687.0591673969,
- -510685.7518910386,
- 166769.98989532853,
- -726548.2972093573,
- 421500.75917593564,
- 82656.04473228261,
- 699626.086429872,
- 438607.9337618587,
- 907527.3296872355,
- -884580.1316959251,
- -18212.394740603875,
- -661254.2635482625,
- -951507.0350719219,
- 958907.2573543316,
- 248561.20845968378,
- 98126.38844718169,
- -443928.09909167094,
- -585180.5770447358,
- -402754.9519062004,
- -371587.9002042368,
- 794855.0392209099,
- 985536.8801980193,
- -304225.6591469479,
- 330204.2688496827,
- 381208.5054556966,
- 40248.517964020844,
- -301253.76670295536,
- 265011.59239499096,
- 854594.3107089731,
- 450711.3220843908,
- -420250.475265294,
- 543096.7968595752,
- 806773.8181366586,
- 330472.70884639455,
- 780219.056294958,
- 552869.4717635097,
- 560429.3115116293,
- -538351.9093926519,
- -719436.4380447371,
- 537632.8057280607,
- -320281.2658976477,
- -825066.7708782809,
- 468273.61513134534,
- -699651.3324599189,
- -217631.09935391034,
- 955421.6910545222,
- -37234.99369478933,
- 671668.4960131556,
- 799156.2998690367,
- 35552.25106564253,
- 609125.4597263669,
- -97412.82818523067,
- 461608.2594798423,
- -678832.8511908093,
- -230250.13056481746,
- -333345.3961773145,
- -819524.2473664981,
- -791670.9977404197,
- 665081.539322953,
- -287081.77178865136,
- 327420.21049277525,
- 433046.90950860403,
- -243241.49311669442,
- 253694.2167738676,
- 789575.2428913856,
- -632689.3766926593,
- -382301.55323161255,
- -389371.1165283773,
- -276951.33679181593,
- 300489.61733938253,
- -143017.60599759428,
- -108483.88662385577,
- 882861.9230177786,
- -790078.3016030424,
- 401098.0585440047,
- 58081.404704023895,
- -503229.49347082415,
- -516166.86088075256,
- 451346.79566602444,
- 903728.271659594,
- 797287.4867424826,
- -294160.9967236554,
- 980122.8557217953,
- -906551.3941280053,
- -92182.90756983793,
- -860137.3572249926,
- 867420.3304084598,
- 292496.15142819076,
- -579047.2424306716,
- 617844.2015491157,
- -221022.5224701168,
- 467074.80832512974,
- -608446.069910384,
- 488928.88524644286,
- -198644.54249264507,
- 911352.5813257177,
- -137953.9645391652,
- -733520.2290329352,
- 103265.52651505772,
- 598693.5131562235,
- -319558.55418052815,
- -660231.0883890716,
- 556010.7216273776,
- -118091.56975420288,
- 974369.1884044865,
- 314475.51255708595,
- -541821.0095913267,
- -561929.4027061852,
- 788146.8262313139,
- -244721.49285771616,
- -542258.2071940432,
- -114659.49664475494,
- -529158.4997269838,
- 800176.1648421335,
- -594466.1741608985,
- 839230.0626320523,
- 472077.23961767467,
- 195000.09877010572,
- -222791.0167788476,
- 889536.5810561178,
- -925408.5950043334,
- 869230.0455926161,
- -215464.5704450986,
- -313501.00551293505,
- -606904.34134762,
- 703609.1234092067,
- -275361.9095670772,
- -959584.1221476196,
- -408199.66874220624,
- -539735.3471405284,
- 892664.0282068334,
- -18869.465932070285,
- 180349.67474503905,
- -762158.4317981976,
- -207687.9957212705,
- -890945.354502799,
- 361870.09642792447,
- -334036.1646177474,
- -409583.36704583245,
- 884800.9847202292,
- -326387.8974587404,
- 890228.5196394926,
- -876598.2964159332,
- 333447.2130126558,
- -312114.94122071646,
- -108137.38481648905,
- 432137.1407241159,
- -574066.2570546287,
- -141079.84721057786,
- -256354.4513338414,
- -835033.0048714681,
- -134699.36722514287,
- 842730.9756153929,
- -238053.5735034419,
- 973048.6883565593,
- -106885.47174873154,
- 284769.34556681453,
- -742214.1563278204,
- 249682.13885541135,
- 47520.98024428397,
- -800570.2489250514,
- -601419.2479553013,
- 125194.82913864266,
- -979634.5067537284,
- 246355.29399315393,
- 642754.3630776387,
- -781166.1587707603,
- 741123.9832342,
- 698264.5800532494,
- -882673.1103672587,
- 917973.3102436778,
- 439632.11805041705,
- 583310.6403040404,
- 3248.862588606238,
- 152657.6155992363,
- 771190.5433660143,
- -909712.5038274741,
- -924725.4666325129,
- 31695.4348391707,
- 581207.6723088049,
- -303737.7752301655,
- 718803.2194755813,
- 407747.7319779439,
- 302223.85721211275,
- 626975.8618097032,
- -555577.0776657347,
- -372538.1768851792,
- 393761.97459584585,
- -120274.37850419265,
- -78058.97834357456,
- 758868.1953611489,
- 32541.26034559768,
- 325532.0490863307,
- 121838.7832995862,
- 673690.111951591,
- -270019.43797918403,
- 40992.187396631685,
- 703641.656901796,
- 546801.7210152452,
- -647437.8739925013,
- 624866.3640141645,
- 984541.540488832,
- -872584.0010188981,
- -842044.9763167446,
- 999523.6971017229,
- 451061.4026367941,
- -783714.1538043644,
- 913517.9097674524,
- 921122.4288276345,
- -436971.9280807165,
- 423913.7363855321,
- 412823.53685668524,
- 642847.0387226039,
- -854210.4399346987,
- 969373.1855498615,
- -912793.8211064308,
- -675544.39536996,
- -104704.25963279163,
- 361050.779728199,
- -48784.054381242335,
- 271366.43278342934,
- 946204.5724373694,
- -908705.5713468881,
- -946075.1316669954,
- -685954.4456943838,
- 28113.428232126036,
- 300937.7278295571,
- 645758.2149665427,
- 978712.3751622173,
- -133869.6936606516,
- -612230.7435148311,
- 678016.0743584111,
- -600373.0473810056,
- -864140.0676472915,
- -566282.5537314933,
- 749796.7623490723,
- 604037.0030399809,
- -509640.7415089887,
- -216706.73802920227,
- 549882.9129817148,
- 16726.018219827667,
- -638205.7306452933,
- -855512.2221158913,
- 808622.5623023391,
- -390721.48305335874,
- 212475.90960610195,
- -928689.3966780811,
- 214183.55257498223,
- -820164.5975064138,
- 251932.14804251696,
- 460553.05239914946,
- 110511.34103057093,
- -186845.44473889188,
- -660448.9107881075,
- 707538.2163043232,
- -736062.2053512099,
- -63311.286504623255,
- -836698.577788465,
- -329243.70121681655,
- -365312.7924887023,
- 951306.2097244962,
- -783341.6135948261,
- 916474.6722630681,
- -604876.4661773534,
- -727436.4036086585,
- 362136.9669187524,
- -349079.1710379566,
- -867116.7023433555,
- 767518.2495107739,
- -777689.0489512988,
- -44659.937128784135,
- 372870.847969698,
- -286460.2217828114,
- -742281.4632809429,
- -580871.8623989486,
- -234950.24425660828,
- -135134.21473901777,
- 385173.54088815517,
- 47727.774492929195,
- 523663.9864736594,
- -783889.916719223,
- -738001.6384320635,
- -598964.6551841439,
- -212071.8731585296,
- -220125.595222187,
- -150204.22749384755,
- 221274.26456686706,
- -685375.4367931215,
- 937112.5241186297,
- -90098.76840059672,
- -294044.6431997588,
- 32838.698558043776,
- -925735.9463018979,
- -410925.7297657842,
- -26736.47282568403,
- -571589.3988285122,
- 215807.38837979842,
- 657339.9182578097,
- -157946.2963706557,
- -53642.54056548501,
- 505808.866275802,
- 95554.43324296719,
- 512939.618519509,
- -567938.9299301436,
- -212600.76390527427,
- 644897.4747924516,
- -463838.0100479056,
- 381893.68662886,
- 935612.7734646391,
- -996789.163573987,
- -508841.12739114685,
- 681081.6694636388,
- -937461.1972945685,
- 116412.45005795131,
- 988005.4977559051,
- 622222.8734993594,
- -881302.7481469609,
- -385207.44806337,
- 305693.03914191906,
- -405045.1338857135,
- -429534.3235379718,
- 68673.63805819892,
- 651663.9434072415,
- -325930.39784147893,
- 216382.66624430314,
- -291561.60560353595,
- -301302.61834368424,
- 833760.6881373913,
- -873491.3768074213,
- -39987.05909251843,
- -317024.3234668078
- ]
- },
- {
- "hovertext": [
- "Nicolas",
- "Lutz",
- "Rosemarie",
- "Marc",
- "Michaela",
- "Margarete",
- "Bruno",
- "Nicole",
- "Steffen",
- "Stefanie",
- "Christel",
- "Wilhelm",
- "Harald",
- "Mohamed Maged",
- "Salim",
- "Marina",
- "Ankica",
- "Ingo",
- "Christoph",
- "Olaf",
- "Rainer",
- "Pieter",
- "Bernhard",
- "Franz-Hartwig",
- "Claus",
- "Helmut",
- "Heinz G.",
- "Peter",
- "Thomas",
- "Wolfgang",
- "Heinz",
- "Hans-Dieter",
- "Frank",
- "Harald C. H.",
- "Franz-Josef",
- "Norbert",
- "Georg",
- "Kerstin",
- "Michael",
- "Volker",
- "Alfred",
- "Günther",
- "Claus",
- "Stefan",
- "Susanne",
- "Jens",
- "Hans Adolf",
- "Rumen",
- "Steffen",
- "Wolfgang",
- "Ulrich",
- "Andreas",
- "Gerhard",
- "Helmut",
- "Matthias",
- "Walter",
- "Hans",
- "Bettina",
- "Hans Jürgen",
- "Helmut",
- "Jochen",
- "Jochen",
- "Bruno",
- "Peter",
- "Volker",
- "Hans",
- "Gregor",
- "Horst",
- "Michael",
- "Brunhild",
- "Peter J.",
- "Georg",
- "Wolfgang",
- "Reinhard",
- "Axel",
- "Friedrich",
- "Günther",
- "Klaus-Peter",
- "Knud",
- "Joachim",
- "Bernd",
- "Arthur",
- "Robert",
- "Hans Willi",
- "Frank",
- "Werner Dieter",
- "Ursula",
- "Markus",
- "Udo",
- "Kurt",
- "Sylvia",
- "Joachim",
- "Benno J.",
- "Rainer",
- "Horst",
- "Wolfgang",
- "Heinz",
- "Josef",
- "Detlef W.",
- "Sabine",
- "Uwe",
- "Christian",
- "Peter",
- "Wilhelm",
- "Alma",
- "Franz-Josef",
- "Gerd",
- "Kurt",
- "Hans-Günther",
- "Edith",
- "Manfred",
- "Thomas",
- "Andreas",
- "Reiner",
- "Heinz-Dieter",
- "Nasir",
- "Michael",
- "Hermann",
- "Klaus",
- "Bernhard",
- "Stephan",
- "Robert",
- "Jens Peter",
- "Barbara",
- "Monika",
- "Fred",
- "Herbert",
- "Rudolf",
- "Rolf",
- "Ekkehard",
- "Dietrich",
- "Helmut",
- "Edith",
- "Volker",
- "Thomas",
- "Erik",
- "Michael",
- "Josef",
- "Peter",
- "Wolfgang",
- "Coletta",
- "Zein-El Ibad",
- "Manfred",
- "Dieter",
- "Herbert",
- "Andrea",
- "Rolf",
- "Gerd",
- "Thomas",
- "Karlheinz",
- "Holger",
- "Erika",
- "Wolfgang",
- "Ralf",
- "Wolfgang",
- "Jürgen",
- "Klaus",
- "Rainer",
- "Martin",
- "Ann",
- "Gerd",
- "Axel",
- "Jürgen",
- "Ralf",
- "Thomas",
- "Andreas",
- "Dieter",
- "Alexander F.",
- "Peter",
- "Gregor",
- "Richard",
- "Norbert A.",
- "Günther",
- "Klaus",
- "Klaus",
- "Gerhard",
- "Jürgen",
- "Lutz",
- "Manfred",
- "Ulrich",
- "Doris",
- "Albrecht",
- "Edgar",
- "Wolfgang",
- "Malte",
- "Hubert",
- "Gerhard",
- "Manfred",
- "Georg",
- "Herbert",
- "Gottfried",
- "Heinrich",
- "Inge",
- "Martin",
- "Anett",
- "Christian",
- "Dieter",
- "Helmut",
- "Gabriele",
- "Rainer",
- "Herbert",
- "Georg",
- "Jacqueline",
- "Thomas",
- "Peter",
- "Bernd",
- "Volker",
- "Robert",
- "Dieter",
- "Helmut",
- "Tan Kai Pascal",
- "Gerhard",
- "Hendrik",
- "Helge",
- "Frank",
- "Gerhard",
- "Detlev",
- "Frank",
- "Egbert",
- "Ralph",
- "Bodo",
- "Franz-Josef",
- "Hansjörg",
- "Immo",
- "Kurt",
- "Jan S. T.",
- "Joachim",
- "Bärbel",
- "Frank",
- "Klaus",
- "Dirk",
- "Marie-Luise",
- "Vijaykumar",
- "Johannes",
- "Reiner",
- "Peter",
- "Johannes",
- "Martin A.",
- "Gunnar",
- "Claudia",
- "Wilfried",
- "Christian",
- "Holger",
- "Holger",
- "Günter",
- "Susanne",
- "Christopher John",
- "Magrit",
- "Jürgen",
- "Steffen",
- "Thorsten",
- "Michael",
- "Marlies",
- "Susanne",
- "Felix",
- "Hans-Joachim",
- "Maria",
- "Heinz-Georg",
- "Jürgen",
- "Erwin",
- "Uwe",
- "Martin",
- "Maritta Helene Minna",
- "Martin",
- "Berthold",
- "Fabian",
- "Anabel",
- "Dario",
- "Philip",
- "Victoria",
- "Vincent",
- "Evelin",
- "Thorsten",
- "Isabel",
- "Gerhard",
- "Thilo",
- "Toni Christov",
- "Franziska",
- "Matthias",
- "Mike",
- "August",
- "Martin",
- "Anke",
- "Florian",
- "Ekhard",
- "Kurt",
- "Leila",
- "Jan",
- "Thomas Matthias",
- "Alexander Guy",
- "Dana Monika",
- "Rasmus Jonathan",
- "Markus",
- "Alessandro",
- "Thomas",
- "Robin John Andes",
- "Cretièn René Gilbert",
- "Michael",
- "Sebastian",
- "Christian",
- "Sascha",
- "Tobias",
- "Sascha",
- "Ralph",
- "Tilo",
- "Simona-Lucia",
- "Andreas",
- "Werner",
- "Roswitha",
- "Brigitte",
- "Max",
- "Tobias",
- "Philipp",
- "Georg F.W.",
- "Maria-Elisabeth",
- "Klaus",
- "Alexandra",
- "Georg",
- "Salem Daniel",
- "Patrick",
- "Britta",
- "Ferdinand",
- "You-Ha",
- "Nico-David",
- "Heiko",
- "Lucas",
- "Stephan Maximilian",
- "Jan",
- "Thomas",
- "René",
- "Robert",
- "Torsten",
- "Oliver",
- "Christian",
- "Eric",
- "Jochen",
- "Ludwig Bernhard",
- "Musa",
- "Wolfgang",
- "Erika",
- "Anita",
- "Dietmar",
- "Johannes",
- "Friedrich-Karl",
- "Wolfgang",
- "Brigitte",
- "Christa",
- "Günther",
- "Jürgen",
- "Sieglinde",
- "Gisela",
- "Rolf-Heinrich",
- "Katrin",
- "Heinz",
- "Hans-Peter",
- "Walter",
- "Walter",
- "Elfriede",
- "Rudi",
- "Alfred",
- "Manfred",
- "Walter",
- "Georg",
- "Erich",
- "Melita",
- "Rolf",
- "Martin",
- "Klaus-Gerhard",
- "Günther",
- "Hermann",
- "Manfred",
- "Karl",
- "Reiner",
- "Gerhard",
- "Hans",
- "Helene",
- "Hans",
- "Else",
- "Hanna",
- "Eugen",
- "Eugen Michael",
- "Sonja",
- "Ralf",
- "Susanne",
- "Walter",
- "Dieter",
- "Susanne",
- "Richard",
- "Eugen",
- "Andreas",
- "Wolfgang",
- "Werner",
- "Iris",
- "Manfred",
- "Rosemarie",
- "Günter",
- "Martin",
- "Ralf",
- "Norbert",
- "Margarete",
- "Alexander",
- "Eberhard",
- "Oliver",
- "Achim",
- "Rolf",
- "Hubert",
- "Klaus-Peter",
- "Ute",
- "Josef",
- "Walter",
- "Eva",
- "Rudolf",
- "Beate",
- "Winfried",
- "Wolf",
- "Birgit",
- "Holger",
- "Roland",
- "Frank",
- "Carla",
- "Dietmar",
- "Max",
- "Beate",
- "Wolfgang",
- "Günter",
- "Wolfgang",
- "Lina",
- "Karl",
- "Heike",
- "Raimund",
- "Regina",
- "Marita",
- "Volker",
- "Christel",
- "Karl",
- "Markus",
- "Rotraut",
- "Stephan",
- "Ralf",
- "Ernst",
- "Karl",
- "Walter",
- "Otmar",
- "Adolf",
- "Thomas",
- "Ursula",
- "Holger",
- "Gerhard",
- "Karlheinz",
- "Elke",
- "Jens",
- "Elsbeth",
- "Thomas",
- "Georg",
- "Gudrun",
- "Gisela Melanie",
- "Ilse",
- "Lore",
- "Gerlinde",
- "Helmut",
- "Georg",
- "Hilde",
- "Markus",
- "Andrea Maria",
- "Hans Michael",
- "Christopher Kurt",
- "Anita Doris",
- "Klaus-Helmut",
- "Sabine",
- "Hans-Peter",
- "Hildegard",
- "Brigitte",
- "Karl",
- "Gerhard",
- "Margarete",
- "Annette",
- "Andrea",
- "Sarah-Yasmin",
- "Brigitte",
- "Ulrich",
- "Christoph Wilhelm Georg",
- "Waltraud Helene",
- "Hermann",
- "Beatrice Raphaela",
- "Stephanie Annette",
- "Ann-Catherine",
- "Norbert",
- "Petra",
- "Ellen",
- "Petra",
- "Ute",
- "Brigitte Monika",
- "Karin Elke",
- "Hannelore",
- "Monika",
- "Monika",
- "Adelheid",
- "Günther Erwin",
- "Klaus Gerhard",
- "Alexander Egon",
- "Korbinian",
- "Florian",
- "Donatus",
- "Franz",
- "Alessandro Stefano",
- "David",
- "Peter",
- "Aline",
- "Marco",
- "Angelika",
- "Carsten",
- "Dominik",
- "Robin",
- "Andreas",
- "Ernst Moritz",
- "Christian",
- "Jürgen",
- "Benjamin",
- "Jochen",
- "Konstantina",
- "Lars",
- "Olaf",
- "Torsten",
- "Stefan",
- "Mark",
- "Robert",
- "Stephen",
- "Kerstin",
- "Jens",
- "Jan-Ole",
- "Katja",
- "Jörg",
- "Philipp",
- "Matthias",
- "Henrik",
- "Alexander",
- "Holger",
- "Rainer",
- "Norbert",
- "Sabine",
- "Maximilian",
- "Pierre",
- "Frank",
- "Jan Jérôme",
- "Jürgen",
- "Michael",
- "Hans-Jürgen",
- "Hannelore",
- "Walter",
- "Rainer",
- "Domenikus Christoph Martin",
- "Thomas",
- "Gertrud",
- "Gerhild",
- "Manfred Sebastian",
- "Roland",
- "Ursula Maria",
- "Andrea",
- "Henri Noel Frederic Charles",
- "Wolfgang Reinhard",
- "Martin",
- "Hermann Karl Ludwig",
- "Marion",
- "Klaus",
- "Ralf",
- "Wolfgang Georg Friedrich",
- "Gerhard Johannes",
- "Siegrid",
- "Mareike",
- "Martin Rolf",
- "Johann Jakob",
- "Klaus Peter",
- "Dieter Hermann",
- "Gerhard",
- "Konrad",
- "Margret",
- "Werner",
- "Hans-Jürgen",
- "Alexander",
- "Andrea",
- "Almut Hedwig",
- "Walter Georg Friedrich",
- "Klaus",
- "Ferdinand",
- "Helmut Hermann",
- "Rolf Karl",
- "Sabine Ursula",
- "Johanna",
- "Philipp",
- "Heiko",
- "Alexander Johannes",
- "Thomas",
- "Michael",
- "Holger",
- "Hans Jürgen",
- "Simone",
- "Sabine",
- "Andreas",
- "Anke",
- "Kevin",
- "Thomas",
- "Michaela",
- "Reinhold",
- "Theodor",
- "Rolf Martin",
- "Frank",
- "Eric",
- "Alexander",
- "Gudrun",
- "Jens",
- "Klaus",
- "Anita",
- "Burkhard",
- "Martina",
- "Josef",
- "Margot",
- "Klaus-Dieter",
- "Karl-Friedrich",
- "Ortrud",
- "Renate",
- "Karl-Heinz",
- "Iris",
- "Richard",
- "Jutta",
- "Harald",
- "Alfred",
- "Gerhardt",
- "Gerd",
- "Johann Josef",
- "Michael",
- "Hans-Joachim",
- "Peter",
- "Hildegard",
- "Wolfgang",
- "Helge",
- "Emil",
- "Antonia",
- "Otto",
- "Eva-Maria",
- "Angelika",
- "Bettina",
- "Edith",
- "Hans-Werner",
- "Gisela",
- "Irmgard",
- "Helmut",
- "Otto",
- "Monika",
- "Corinna",
- "Maria Elisabeth",
- "Hans Georg",
- "Albert",
- "Eberhard",
- "Gisela",
- "Thomas",
- "Thomas",
- "Angelika",
- "Helga",
- "Wilfried",
- "Maria",
- "Hans Herbert",
- "Marita",
- "Herbert",
- "Johannes Michael",
- "Jens-Peter",
- "Hans-Martin",
- "Waltraud",
- "Ursula",
- "Werner",
- "Ulrich",
- "Bernd",
- "Barbara",
- "Regine",
- "Lars",
- "Jan",
- "Gertrud",
- "Hannelore",
- "Sylvia",
- "Helga",
- "Heidrun Gisela",
- "Sigrid",
- "Christa",
- "Edeltraut",
- "Reinhold",
- "Brigitte",
- "Christa",
- "Eberhard",
- "Susanne",
- "Friedrich",
- "Heinz Peter",
- "Anna Maria",
- "Petra",
- "Patrick",
- "Anke",
- "Peter",
- "Walter",
- "Trude",
- "Brigitte Gerda",
- "Jörg",
- "Maria",
- "Anita",
- "Ilse",
- "Dorothee",
- "Ute",
- "Michael",
- "Gabriele Maria",
- "Jörgen Herbert",
- "Susanne",
- "Ulrich",
- "Theresie",
- "Anke",
- "Gabriele",
- "Wolfgang",
- "Vera Anne Katharina",
- "Joachim",
- "Bodo",
- "Gesine",
- "Elke",
- "Hartmut Helmut Friedrich",
- "Sabine",
- "Hannegret Felicia Ellinor Odeh",
- "Renate Christa Helga",
- "Tobias Fabian Jakob",
- "Michael",
- "Hanno",
- "Gesche",
- "Laura",
- "Patrick",
- "Frank",
- "Carmen",
- "Stephan",
- "Frank Roland",
- "Monika",
- "Sebastian Helmut",
- "Alexander Friedrich",
- "Jutta Maria",
- "Karin Maria",
- "Jürgen",
- "Oliver",
- "Christian",
- "Ulrich",
- "Udo",
- "Bernd",
- "Verena",
- "Tobias",
- "Heiko",
- "Matthias",
- "Sven",
- "Daniel",
- "James",
- "Andreas",
- "Francie",
- "Dirk",
- "Felix",
- "Moritz",
- "Dominique",
- "Julian",
- "Peter",
- "Jan",
- "Felix Benedikt",
- "Nico",
- "Marko",
- "Mohamed Raza",
- "Depken",
- "Patrick",
- "Sebastian",
- "Markus",
- "Thomas",
- "Michelle",
- "Melanie",
- "Björn",
- "Harm",
- "Torben",
- "Günter",
- "Jörg Volker",
- "Daniel",
- "Nigel",
- "Claus-Peter",
- "Wolfram",
- "Silja",
- "Bernd",
- "Sven",
- "Philipp",
- "Aimee",
- "Andreas",
- "Markus",
- "Alberto",
- "Sigrid",
- "Marina",
- "Carla",
- "Sven",
- "Claudia",
- "Scott",
- "Jan",
- "Amanda",
- "Martin",
- "Christof",
- "Laura",
- "Eveline",
- "Björn",
- "Saskia",
- "Arthur",
- "Filipa",
- "Mathieu Nounagnon",
- "Andreas",
- "Holger",
- "Ralf",
- "Tim",
- "Helge",
- "Matthias",
- "Robert",
- "Wolfgang Josef",
- "Lei",
- "Tim",
- "Josef",
- "Mogens",
- "Lars-Eric",
- "Kay",
- "Julian",
- "Magnus",
- "Jan-Christian",
- "Sebastian Andreas",
- "Henry",
- "Susanne",
- "Halil",
- "Stefan",
- "René",
- "Ursula",
- "Michael Heiko",
- "Yasemin",
- "Guido",
- "Sören",
- "Thomas",
- "Marko",
- "Marc",
- "Frank",
- "Sandra",
- "Martin",
- "Ahmet",
- "Oliver",
- "Heinrich",
- "Dieter",
- "Martin",
- "Christoph",
- "Eckhard",
- "Robert",
- "Helmut",
- "Christine",
- "Christian",
- "Steffen",
- "Petra",
- "Peter",
- "Bernd",
- "Erich",
- "Frank",
- "Elisabeth",
- "Kurt",
- "Marcus Oliver",
- "Dieter",
- "Henrik Cord",
- "Sven",
- "Fritz",
- "Klaus",
- "Dirk",
- "Heiko Friedrich Ralf",
- "Frank",
- "Claudia",
- "Stephan Andreas",
- "Alexander",
- "Christine",
- "Philipp",
- "Matthias",
- "Svenja Karola",
- "Marcell",
- "Ralf",
- "Marita",
- "Michael",
- "Torsten",
- "Tilo",
- "Cretièn",
- "Daniel",
- "Jeremias",
- "Barbara",
- "Sebastian",
- "Dominik",
- "Christopher Sven Erik",
- "Georg Daniel",
- "Franz",
- "Gerhard Donatus",
- "Frank",
- "Jürgen",
- "Volker",
- "Volker",
- "Thomas",
- "Katja",
- "Christian",
- "Mike",
- "Frank Alexander",
- "Reinhard Helmut",
- "Ralf J.",
- "Heinrich",
- "Cornelius",
- "Michael",
- "Helen",
- "Martin",
- "Catharina",
- "Hanjo",
- "Anja",
- "Gabriel",
- "Sedat",
- "Catia",
- "Christof Aurelius",
- "Ralph Kurt",
- "Eberhard",
- "Christian",
- "Patrick Max",
- "Marc Henning Simon",
- "Elisabeth Vera Josepha",
- "Markus",
- "Juan",
- "Michael",
- "Christiane",
- "Matthias",
- "Fritz",
- "Richard",
- "Nicolas",
- "Cornelius",
- "Stephan Karl",
- "Matthias Wolfgang",
- "Peter",
- "Guido",
- "Angelika",
- "Doris",
- "Christopher",
- "Nils Holger",
- "Klaus",
- "Patrick",
- "Antje Leonie",
- "Stephan Peter",
- "Ismir",
- "Björn",
- "Jürgen",
- "Ralf",
- "Dietmar",
- "Markus",
- "Heinz",
- "Johann Baptist",
- "Normajean",
- "Jürgen",
- "Ralf",
- "Wolfgang",
- "Stephan",
- "Alexandra",
- "Rolf",
- "Anita",
- "Marcus",
- "Bernd",
- "Meike Elisabeth",
- "Stefan",
- "Angelika",
- "Johann",
- "Bernhard",
- "Thomas",
- "Marcus",
- "Matthias",
- "Manuel",
- "Andreas",
- "Stephan",
- "Matthias",
- "Roswitha",
- "Maria",
- "Udo",
- "Stefan",
- "Ewald",
- "Carl Christian",
- "Hanno",
- "Marco",
- "Anne Boel",
- "Marko",
- "Marco",
- "Christof",
- "Oliver",
- "Dirk",
- "Thomas",
- "Mark",
- "Gerhart",
- "Volker",
- "Roland",
- "Helmut",
- "Angelika",
- "Thomas",
- "Bernhard",
- "Jens-Dieter",
- "Martin",
- "Frank",
- "Harald",
- "Thomas",
- "Thomas",
- "Ingo",
- "Peter",
- "Jürgen",
- "Martin",
- "Antonius",
- "Oliver",
- "Egon",
- "Christiane",
- "Andreas",
- "Sascha",
- "Robert",
- "Jörg",
- "Wolfram",
- "Harald",
- "Markus",
- "Tobias",
- "Roar",
- "Michael",
- "Dave",
- "Marina",
- "Christian",
- "Chris",
- "Hanna Lena",
- "Christopher Howard",
- "Marcos",
- "Frank",
- "Stanislav",
- "Matteo",
- "Jürgen",
- "Florian",
- "Ditmar",
- "Mathias Eugen",
- "Patrick",
- "Gregor",
- "Ralf",
- "Reinhard",
- "Thomas",
- "Klaus",
- "Oscar",
- "Martin",
- "Michael",
- "Christian",
- "Roland",
- "Peter",
- "Robert",
- "Andreas",
- "Ulf Jürgen",
- "Jörg",
- "Elke",
- "Rudolf",
- "Alexander",
- "Stefan",
- "Andreas",
- "Frank",
- "Jörg",
- "Frank",
- "Claudia",
- "Diane",
- "Frank",
- "Martin",
- "Michael",
- "Stefan",
- "Jochen",
- "Sven",
- "Elke",
- "Bernd-Peter",
- "Armin",
- "Gabriele",
- "Miriam",
- "Frank",
- "Ralph",
- "Dorian",
- "Henning",
- "Alexander",
- "Oliver",
- "Isabelle",
- "Thomas",
- "Max",
- "Lothar",
- "Lars",
- "Wolfram",
- "Cornelia",
- "Frank",
- "Miriam",
- "Thomas",
- "Maria Cristina",
- "Dirk",
- "Christoph",
- "Marco",
- "Uwe",
- "Michael",
- "Bernhard",
- "Sven",
- "Ralf",
- "Christoph",
- "Thomas",
- "Olivia",
- "Gerd",
- "Christian",
- "Jörg",
- "Caroline",
- "Christiane",
- "Wolfgang",
- "Martina",
- "Olaf",
- "Lars",
- "Gerhard",
- "Eva",
- "Udo",
- "Steffen",
- "Wolfram",
- "Matthias",
- "Axel",
- "Antje",
- "Holger",
- "Arndt",
- "Martin",
- "Frank",
- "Timo",
- "Martin",
- "Oliver",
- "Beate",
- "Barbara",
- "Michaela",
- "Bettina",
- "Steffen",
- "Friedemann",
- "Joachim",
- "Oliver",
- "Bernhard",
- "Bernd",
- "Carola",
- "Michael",
- "Hendrik",
- "Thomas",
- "Claus",
- "Stefan",
- "Alexander",
- "Oliver",
- "Hartmut",
- "Frank",
- "Stefan",
- "Antje",
- "Ralf",
- "Harald",
- "Jens",
- "Thomas",
- "Johann",
- "Patrick",
- "Ute",
- "Ingmar",
- "Carlos",
- "Jeanne",
- "Paul Wilhelm",
- "Xin",
- "Ursula",
- "Björn",
- "Frank",
- "Yuliya",
- "Karsten",
- "Sylvia",
- "Jan",
- "Heiko",
- "Marcel",
- "Tobias",
- "Philipp",
- "Dieter",
- "Jan",
- "Arnd",
- "Wolfgang",
- "Birgit",
- "Birgit",
- "Oliver",
- "Bijoy",
- "Kirstin",
- "William",
- "Sara",
- "Gabriele",
- "Olivier",
- "Manfred",
- "Dirk",
- "Gerhard",
- "Axel",
- "Marco",
- "Katrin",
- "Christian",
- "Melanie",
- "Frank Nils",
- "Maik",
- "Sarena",
- "Maik",
- "Thomas",
- "Angela",
- "Matthias",
- "Bernd",
- "Dominik",
- "Heike",
- "Martin",
- "Maurizio",
- "Gregor Christoph",
- "Daniela",
- "Heiner",
- "Deny-Jean",
- "Rodrigo",
- "Elisabeth",
- "Axel",
- "Konstanze",
- "Tobias",
- "Heiko",
- "Sascha",
- "Klaus",
- "Birgit Silke",
- "Miriam",
- "Astrid",
- "Dirk",
- "Solveig",
- "Marianne",
- "Björn",
- "Carlos",
- "Ralf",
- "Nicola",
- "Kristina",
- "Ruedeger",
- "William N.",
- "Jutta",
- "Veit",
- "Johann",
- "Michael",
- "Mark",
- "Peter",
- "Annalena",
- "Thomas",
- "Jürgen",
- "Christoph",
- "Wolfgang",
- "Christoph",
- "Goldes",
- "Rainer Manfred Reinhold",
- "Markus",
- "Georg",
- "Patrick",
- "Ben",
- "Michael",
- "Jürgen",
- "Andreas",
- "Stephan",
- "Martina",
- "Dirk",
- "Wolfgang",
- "Klaus",
- "Agustin",
- "Tobias",
- "Gisbert",
- "Claus Christoph",
- "Oliver",
- "Tilman",
- "Elmar",
- "Stefan",
- "Michael",
- "Gisela",
- "Peter Michael",
- "Jürgen",
- "Anne",
- "Peter",
- "Bernd",
- "Jana",
- "Marc",
- "Jens",
- "Julie",
- "Stefan",
- "Peter",
- "Silvio",
- "Christian",
- "Luisa",
- "Ulrich",
- "Gilbert",
- "Imke",
- "Christian",
- "Christoph",
- "Zoran",
- "Derya",
- "Andreas",
- "Gerhard",
- "Johann Nepomuk",
- "Eric",
- "Susanne",
- "Sandra",
- "Ingmar",
- "Michael",
- "Johanna",
- "Christopher",
- "Horatio Karl-Philipp Arne",
- "Britta",
- "Malte",
- "Thomas",
- "Tobias",
- "Jörg",
- "Dirk",
- "Burkhard",
- "Karin",
- "Martin",
- "Andreas",
- "Felix",
- "Fernando",
- "Claudia",
- "Marcus",
- "Marco",
- "Katharina",
- "Miriam",
- "Björn",
- "Andreas",
- "Karin",
- "Carolin",
- "Hans-Peter",
- "Michael Georg",
- "Jochen",
- "Karl-Heinz",
- "Maximilian",
- "Anita Katharina",
- "Oliver",
- "Birka",
- "Frank",
- "Marc",
- "Alice",
- "Thomas",
- "Xenia",
- "Stefan",
- "Cristina",
- "Ulrike",
- "Thomas Frederik",
- "Stefan",
- "Ludwig",
- "Günter",
- "Tobias Benjamin",
- "Ulf Adolf",
- "Cornelia",
- "Alois",
- "Marketa",
- "Thomas",
- "Britta",
- "Viola",
- "Michael",
- "Eileen Ilona",
- "Konstantin",
- "Roald",
- "Thomas",
- "Burchard Graf",
- "Stefan",
- "Volker",
- "Kunibert",
- "Rüdiger",
- "Christopher",
- "Simon Silvester",
- "Jens",
- "Barbara",
- "Nikolas",
- "Iran",
- "Christina",
- "Joachim",
- "Carsten",
- "Guido",
- "Markus",
- "Michael",
- "Klaus",
- "Holger",
- "Martin",
- "Hans-Jürgen",
- "Heiko",
- "Sandro",
- "Thomas Joachim",
- "Ferdinand",
- "Monika Gerda",
- "Andreas",
- "Frank",
- "Nadine",
- "Peter",
- "Raimund",
- "Margret",
- "Michael",
- "Sonja",
- "Gisbert",
- "Sebastian",
- "Oliver",
- "Martin",
- "Jürgen",
- "Markus",
- "Erich",
- "Wolfgang",
- "Volker",
- "Andreas",
- "Michael",
- "Marius Achim",
- "Holger Thomas",
- "Dagmar",
- "Hans",
- "Christian-Matthias",
- "George Joseph",
- "Francesc",
- "Guido",
- "Claudia",
- "Hartmut",
- "Martin",
- "Petra",
- "Wolfgang",
- "Linda Joanna",
- "Michael",
- "Thomas",
- "Thomas",
- "Wolfgang",
- "Wolfgang",
- "Richard",
- "Daniel",
- "Martin",
- "Jochen",
- "Roland",
- "Hartwig",
- "Eckhard",
- "Ulrich",
- "Thomas",
- "Philipp",
- "Thomas Peter",
- "Eckart",
- "Maximilian",
- "Thomas",
- "Markus",
- "Detlef",
- "Anne",
- "Edgar",
- "Thomas",
- "Sascha",
- "Christoph",
- "Robert",
- "Sascha",
- "Peter",
- "Daniela-Maria",
- "Christoph",
- "André",
- "Thomas",
- "Julia",
- "Sebastian",
- "Dominicus",
- "Stefan",
- "Jordi",
- "Andreas",
- "Klaus",
- "Michael",
- "Hendrik",
- "Elke",
- "Birgit",
- "Kristina",
- "Stefan",
- "Stefan",
- "Oliver",
- "Thomas",
- "Christian",
- "Josef",
- "Lothar",
- "Edgar",
- "Karin",
- "Bernd",
- "Frank",
- "Stefan",
- "Jürgen",
- "Thorsten",
- "Thomas",
- "Ralf",
- "Henrik",
- "Guiscard",
- "Wolfram",
- "Uta",
- "Susanne",
- "Joachim",
- "Uwe",
- "Henricus Maria Martinus",
- "Johannes",
- "Bernhard",
- "Theodore",
- "Stefan",
- "Patrick",
- "Uwe",
- "Andreas",
- "Detlef",
- "Jörg",
- "Martin",
- "Alissa",
- "Christian",
- "Christoph",
- "Adrian",
- "Lars",
- "Tilmann",
- "Christian",
- "Christian",
- "Julia",
- "Roland",
- "René",
- "Marc",
- "Carola",
- "Bernhard",
- "Dominik",
- "Thomas",
- "Wolfgang",
- "Michael",
- "Olaf",
- "Carla",
- "Josef",
- "Lars",
- "Ulf",
- "Sören",
- "Jürgen",
- "Dirk",
- "Axel",
- "Jan",
- "Dirk Steffen",
- "Torsten",
- "Dirk",
- "Lars",
- "Markus",
- "Gert",
- "Anup",
- "Oliver",
- "Melanie",
- "Nicole",
- "Markus",
- "Thomas",
- "Juan Carlos",
- "Jobst Rüdiger",
- "Sven",
- "Horst",
- "Achim",
- "Christian",
- "Ralf",
- "Reiner",
- "Livio",
- "Julia",
- "Patricia",
- "Angela",
- "Agustin",
- "Fabio Henrique",
- "Michael",
- "Andreas",
- "Alba",
- "Piyada",
- "Jan-Peter",
- "Michael",
- "Matthew",
- "Katrin",
- "Andreas",
- "Knut",
- "Thorsten",
- "Matthias",
- "Andreas",
- "Andreas",
- "Beatrice",
- "Marco",
- "Lode",
- "Markus",
- "Peter",
- "Romy",
- "Andrea",
- "Tanja",
- "Markus",
- "Frank",
- "Christoph",
- "Daniel",
- "Bart",
- "Christian",
- "Frank",
- "Bernd",
- "Jörg",
- "Robert",
- "Michael",
- "Christian",
- "Gabriele",
- "Marcelo",
- "Jens Christian",
- "Stefan",
- "Marco",
- "Daniela",
- "Andrea Karen",
- "Heather",
- "Katja",
- "Boris",
- "Mirko",
- "Martin",
- "Simone",
- "Julia",
- "Steffen",
- "Sven",
- "Dennis",
- "Francisco",
- "Kristina",
- "Gerald",
- "Marko",
- "Christophe",
- "Heiko",
- "Frederick",
- "Steven",
- "Thomas",
- "Veit",
- "Nina",
- "Melanie",
- "Tobias",
- "Andreas",
- "Giovanni",
- "Christoph",
- "Bernd",
- "Stefan",
- "Claus",
- "Helmut",
- "Dorothee",
- "Helya",
- "Doreen",
- "Sören",
- "Peder Lindbjerg",
- "Shah",
- "Philip",
- "Daniel",
- "Johannes",
- "Mia Anna",
- "Christiane",
- "Diana",
- "Thieu-Luan",
- "Daniel",
- "Patrick",
- "Alexander",
- "Raimund",
- "Sabrina",
- "Christine",
- "Sven",
- "Elmar",
- "Philip",
- "Carsten",
- "Matthew",
- "Jens",
- "Tobias",
- "Taren",
- "Verena",
- "Tatjana",
- "Lena",
- "Ulrich",
- "Patrick",
- "Matthias",
- "Tobias",
- "Gustavo",
- "Benjamin",
- "Johannes",
- "Virginia-Beatrice",
- "Julia",
- "Lisa",
- "Sabine",
- "Stefanie",
- "Stefan",
- "Clemens",
- "Joachim",
- "Thomas",
- "Hugues",
- "Ingrid",
- "Tatiana",
- "Peter",
- "Christian",
- "Tobias",
- "Andras",
- "Johannes",
- "Horatio",
- "Jan",
- "Jan",
- "Melanie",
- "Amber",
- "Tuelin",
- "Yatindra",
- "Thomas",
- "Volker",
- "Thorben",
- "Götz",
- "Dietrich",
- "Sven K.",
- "Lydie",
- "Markus",
- "Brieux Andre Daniel",
- "Nicolas",
- "Jens",
- "Philipp",
- "Peter",
- "Caren-Sabine",
- "Claudia",
- "Stephan",
- "Ketan",
- "Daniel",
- "Daniel",
- "Alexander",
- "Carmen",
- "Mary",
- "Dirk",
- "Tobias",
- "Thomas",
- "Michael",
- "Daniel",
- "Peter",
- "Tanja",
- "Pia",
- "Annegret",
- "Tina",
- "David",
- "Stefan",
- "Maximilian",
- "Michael",
- "Sara-Anja",
- "Erwin",
- "Werner",
- "Margarita",
- "Sebastian",
- "Harald",
- "Philipp",
- "Harald Erich Josef",
- "Mirko",
- "Christina",
- "Eileen",
- "Björn Carsten",
- "Michael",
- "Nicholas",
- "Thomas",
- "Ralf",
- "Dirk",
- "Hans",
- "Christiane",
- "Klaus",
- "Michael",
- "Thomas",
- "Michael Hellemann",
- "Andrea",
- "Jörg",
- "Holger",
- "Inge Emiel",
- "Heiko",
- "Roland Alois",
- "Rainer",
- "Richard",
- "Wolfram",
- "Andreas-Heinrich",
- "Jürgen",
- "Gunilla",
- "Rajesh Shivratan",
- "Francisco Javier",
- "Sebastian",
- "Franziska",
- "Oliver",
- "Lars",
- "Sascha",
- "Ines",
- "Dieter",
- "Tobias",
- "Daniel",
- "Marko",
- "Jürgen",
- "Karin",
- "Oliver",
- "Christine",
- "Stephan",
- "Heiko",
- "Elisabeth",
- "Mirko",
- "Jan-Peter",
- "Andrea",
- "Marco",
- "Berit",
- "Carsten",
- "Robert",
- "Claudia",
- "Berkan",
- "Attila",
- "Cemil",
- "Georg",
- "René Heinz",
- "Helge",
- "Dörte Katharina Julia",
- "Claudia",
- "Thomas Michael",
- "Frank",
- "Anne",
- "Lars",
- "Caroline",
- "Sibylle",
- "Morten",
- "Frank",
- "Ronny",
- "René",
- "Marion",
- "Gerrit",
- "Harry Leo",
- "Wolfgang",
- "Guido",
- "Susanne",
- "Carmen",
- "Kateryna",
- "Jeroen Johannes Hendrikus",
- "Christian",
- "Anke",
- "Martin Bernhard",
- "Ferenc",
- "Stefan Ulrich",
- "Patrick",
- "Jens",
- "Lars",
- "Ilka",
- "Petra",
- "Marc",
- "Thomas",
- "Robert",
- "Erik",
- "Steffen",
- "Carsten",
- "Bernhard Peter",
- "Kilian",
- "Alexandra Katinka",
- "Arnold",
- "Michael",
- "Markus",
- "Stefan",
- "Florian",
- "Frank",
- "Kristina",
- "Christian",
- "Frank",
- "Christine",
- "Elisabeth",
- "Ina",
- "Heinrich",
- "Jürgen",
- "Florian",
- "Robert",
- "Stefan",
- "Andreas",
- "Benjamin",
- "Christian David Karl",
- "Markus Wilhelm",
- "Robert",
- "Christian",
- "Timo",
- "Hennicke",
- "Jenny",
- "Oliver",
- "Bastian",
- "Meinolf",
- "Fabian",
- "Holger",
- "Simon",
- "Markus",
- "Eva-Maria",
- "Uwe",
- "Oliver-Ciprian",
- "George-Cristian",
- "Philipp Nikolaus",
- "Christian",
- "Markus",
- "Sonja Bianca",
- "Ralf",
- "Christian",
- "Mechthild Margarete Martina",
- "Ruth Katharina",
- "Friedrich Wilhelm genannt Fritz",
- "Ulrich",
- "Peter",
- "Peter Nikolaus",
- "Martin",
- "Christian",
- "Mirko",
- "Jukka",
- "Kirill",
- "Frank",
- "Uwe",
- "Heike",
- "Constantin",
- "Matthias Christian",
- "Rupert Kaspar",
- "Caspar",
- "Nicholas Anthony",
- "Michele",
- "Paul Michael",
- "Günter",
- "Thomas",
- "Frank",
- "Georg",
- "Monika",
- "Markus",
- "Wolfgang",
- "Klaus Peter",
- "Rosi",
- "Jürgen",
- "Ulli",
- "Sam Rafael",
- "Annette",
- "Rainer",
- "Eugen",
- "Anna",
- "Robert",
- "Holger",
- "Christian",
- "Markus",
- "Barbara",
- "Wolfgang",
- "Hugo",
- "Michael",
- "Siegfried",
- "Albert",
- "Iram",
- "Andreas",
- "Roland",
- "Ralf",
- "Hans",
- "Peter",
- "Ulrich",
- "Tamara",
- "Michael",
- "Christian",
- "Hans-Josef",
- "Birgit",
- "Hagen",
- "Christian",
- "Mustafa",
- "Matthias Albrecht Paul",
- "Manuel",
- "Markus",
- "Michael",
- "Oliver",
- "Martin",
- "Matthias",
- "Günter",
- "Thomas",
- "Frank",
- "Alexander",
- "Tobias",
- "Andrea",
- "Jan",
- "Benedikt",
- "Jonas",
- "Mihaela",
- "Dirk",
- "Kay",
- "Florian",
- "Kerstin",
- "Jonathan",
- "Andreas",
- "Alexander",
- "Stefan",
- "Stefan",
- "Martin",
- "Christian Werner",
- "Tanja",
- "Ewout Martijn",
- "Frank",
- "Markus",
- "Frank Jürgen Michael",
- "Kristin",
- "Rainer",
- "Birgit",
- "Benjamin",
- "Martin",
- "Oliver",
- "Rolf Heinrich",
- "Jan",
- "Andrea",
- "Sophie",
- "Mathias",
- "Bernhard",
- "Stephan",
- "Marco",
- "Benjamin",
- "Fritz Georg",
- "Jürgen",
- "Helmut",
- "Martin",
- "Peter Georg",
- "Thomas",
- "Hans-Georg",
- "Peter",
- "Markus",
- "Jürgen",
- "Yordanka",
- "Sven",
- "Daniel",
- "Adnan",
- "Oliver",
- "Edmund",
- "Steven",
- "Stephan",
- "Constantin",
- "Sven",
- "Marc Norbert",
- "Susanne",
- "Serap",
- "Marc",
- "Jakob",
- "Bernd",
- "Maike",
- "Rainer",
- "Peter",
- "Joachim",
- "Georg",
- "Georg",
- "Martina",
- "Ulrike",
- "Maria",
- "René",
- "Thomas",
- "Manuela",
- "Martin",
- "Stefan",
- "Christian",
- "Rainer",
- "Frank",
- "Andreas",
- "Florian",
- "Olivier",
- "Gerald",
- "Dirk",
- "Peter",
- "Jochen",
- "Frank Nikolaus",
- "Ulrich",
- "Grigoriy",
- "Friedhelm",
- "Frank",
- "Steffen",
- "Christian",
- "Michael",
- "Marie-Luise",
- "Christian",
- "Jörg",
- "Udo",
- "Jan",
- "Karsten",
- "Meike",
- "Julian",
- "Michael",
- "Marcus",
- "Markus",
- "Andreas",
- "Marcus",
- "Jan",
- "Tanja",
- "Linda",
- "Ansgar",
- "Jörg",
- "Christopher",
- "Heidi",
- "Horst",
- "Peter",
- "Marcel",
- "Timo",
- "Thomas",
- "Tobias",
- "Friedrich Maximilian Johannes",
- "Oliver",
- "Ole",
- "Mischa",
- "Andreas",
- "Jochen",
- "Bettina",
- "Alejandro Gabriel",
- "Geoffroy",
- "Elk",
- "Thomas Ludwig",
- "Chien-Hua",
- "René",
- "Stefan Andreas",
- "Andreas",
- "Juan-Carlos",
- "Niklas",
- "Peter",
- "Caitlin Rye",
- "Walter James",
- "Eugene Francis",
- "Clinton Hawk",
- "Kristin",
- "Cengiz",
- "Anna-Karina",
- "Natalia",
- "Karsten",
- "Marc",
- "Iris Gertrud",
- "Roman David",
- "Kai-Ulrich",
- "Marco",
- "Jens",
- "Jan Ralf",
- "Carola",
- "Stephan",
- "Julius",
- "Steffen",
- "Christopher",
- "Martin",
- "Bert",
- "Felix",
- "Franziska",
- "Frederik",
- "Bülent",
- "Johann",
- "Marion",
- "Christoph",
- "Max",
- "Dominik",
- "Josef",
- "Axel",
- "Nadine",
- "Tobias",
- "Elmar Detlef",
- "Patrick Paul",
- "Stephan",
- "Matthias Alexander Ottmar",
- "Roland",
- "Andreas",
- "Anita Carola",
- "Reinhard",
- "Daniel",
- "Bodo",
- "Manuela",
- "Marc",
- "Joachim",
- "Oliver",
- "Andreas",
- "Mark-Roderich",
- "Michael",
- "Martin",
- "Jörg",
- "Reinhard",
- "Lothar",
- "Wolfgang",
- "Wolfgang",
- "Uwe",
- "Ralf Tobias",
- "Jochen",
- "Marcus",
- "Tobias",
- "Uwe",
- "Benedikt",
- "David",
- "Stephan",
- "Andreas",
- "Marlen",
- "Michael",
- "Isabella",
- "Stefanie",
- "Philipp",
- "Simone",
- "Marc",
- "Franz Anaximandros -gen. Franzis-",
- "Christian",
- "Katharina",
- "Susanne",
- "Wolfgang",
- "Ralph",
- "Jörg",
- "Volker",
- "Dietmar",
- "Herbert",
- "Ralf",
- "Dennis",
- "Oliver",
- "Volker",
- "Jessica",
- "Bernd",
- "Dieter",
- "Patrick",
- "Katharina Maria",
- "Holger",
- "Roderich Günther",
- "Theodor",
- "Karsten",
- "Ralf",
- "Heinz",
- "Jürgen",
- "Lisa",
- "Karl",
- "Markus",
- "Harald",
- "Dorothea",
- "Karl-August",
- "Claudia",
- "Sohaila Ilham",
- "Marcus",
- "Inga",
- "Norbert",
- "Norbert Martin",
- "Christian",
- "Elisabeth",
- "Dorin Dietmar",
- "Gido",
- "Karl",
- "Fabian",
- "Yvonne Katrin",
- "Aik",
- "Bernhard",
- "Sibylle",
- "Rolf",
- "Susanne",
- "Jürgen",
- "Hans-Peter",
- "Hans-Jürgen",
- "Bianca",
- "Carsten",
- "Joseph-Christopher",
- "Hermann Josef",
- "Stefan",
- "Mark",
- "Christoph",
- "Karsten",
- "Wolfgang",
- "Karsten",
- "Hanno",
- "Frank",
- "Jörg",
- "Martin",
- "Michael",
- "Michael",
- "Andreas",
- "Raul",
- "Ferdinand",
- "Carsten",
- "Martin",
- "Thomas",
- "Joachim",
- "Thorsten",
- "Klaus",
- "Alexander",
- "Matthias",
- "Dietrich",
- "Christine",
- "Jens",
- "Birte",
- "Andreas",
- "Jacques",
- "Jörg",
- "Guido",
- "Frank",
- "Markus",
- "Thomas",
- "Daniel",
- "Uwe",
- "Birte",
- "Katrin",
- "Carin",
- "Andrea",
- "Walter",
- "Sucheta",
- "Tobias",
- "Thomas",
- "Christine",
- "Heiko",
- "Lynette",
- "Sophie",
- "Torsten",
- "James Kenneth",
- "Markus",
- "Victor",
- "Carsten",
- "Thomas",
- "Dirk",
- "Jens",
- "Markus",
- "Andreas",
- "Nicole",
- "Thomas",
- "Reinhard",
- "Ina",
- "Carsten",
- "Matthias",
- "Stefan",
- "John",
- "Markus",
- "Dominique",
- "Andreas",
- "Christoph",
- "Michael",
- "Henrik",
- "Nies Erik",
- "Roland",
- "Wolfgang",
- "Roland",
- "Caroline",
- "Johannes Friedrich",
- "Lutz Philipp",
- "Michael",
- "Chris",
- "Thomas",
- "Petra",
- "Jörg",
- "Marcus",
- "Bernd",
- "Ralf",
- "Kahraman",
- "Frank",
- "Marc-Norbert",
- "Tim",
- "Colin Rafael Douglas",
- "Alain",
- "Henri Steven Johannes",
- "Tobias",
- "Benjamin",
- "Sven",
- "Norman Ingo",
- "Sebastian",
- "Thomas",
- "Maria Johanna Gerarda",
- "Gabriele",
- "Robert Ingo",
- "Verena",
- "Thomas",
- "Svenja Vanessa",
- "Axel",
- "Marco Anton Maria",
- "Ulrike",
- "Trevor",
- "Jonathan James",
- "Dirk",
- "Frank Jürgen MIchael",
- "Dagmar",
- "David Michael",
- "Andreas Robert",
- "Stefan",
- "Kuan-Rong Michelle",
- "Anastasios",
- "David Alexander",
- "Michael Björn",
- "Jörg",
- "Hans-Bert",
- "Carina",
- "Wolfgang",
- "Tobias",
- "Silke",
- "Sven Alexander",
- "Ronald",
- "Katrin",
- "Silke",
- "Eva",
- "Michael",
- "Nihat",
- "Christian",
- "Bernd",
- "Peter",
- "Ralph",
- "Michael",
- "Sascha",
- "Andreas",
- "Erich",
- "Matthias",
- "Johann Friedrich Christoph",
- "Sebastian",
- "Niels Erik",
- "Marlis",
- "Peter",
- "Sven Heye",
- "Christof",
- "Jörg",
- "Peter",
- "Alexander",
- "Matthias",
- "Antonius Reiner",
- "Patrick",
- "Cornelia",
- "Irene",
- "Maximilian",
- "Eugen",
- "Marcus Hans-Günter",
- "Alexandra",
- "Florian",
- "Angelika",
- "Sebastian",
- "Rainer",
- "Henrik",
- "Konstantin",
- "Sebastian",
- "Rudolf",
- "Florian",
- "Gerald",
- "Madeleine",
- "Bo",
- "Wolfgang",
- "Jakob",
- "Frank",
- "Kathrin",
- "Franciscus",
- "Oliver",
- "Björn",
- "Hendrik",
- "Michael Karl-Heinz Konrad",
- "Bernd Michael",
- "Daniel Michael Alfred",
- "Markus",
- "Florian",
- "Simon Peter",
- "Ulrich",
- "Hans-Peter",
- "Tobias",
- "Harald",
- "Andreas",
- "Hans-Peter",
- "Winfried",
- "Kathrin Monika",
- "Reinhold",
- "Joachim",
- "Christian",
- "Torsten",
- "Robert",
- "Roland",
- "Marcus",
- "Jan-Torben",
- "Alexander",
- "Uwe",
- "Uwe",
- "Francis René",
- "Robert James",
- "Jeroen Martijn",
- "Michael",
- "Horst Jörg",
- "Aafke",
- "Katja Frauke",
- "Daniel",
- "Gerd",
- "Ansgar",
- "Andreas",
- "Lisanne",
- "Alamelu",
- "Anina",
- "Tino",
- "Julia",
- "Christoph",
- "Ulrike",
- "Inge",
- "Carolin Andrea",
- "Iren Ivonne",
- "Daniel",
- "Susanne Antonie",
- "Melita",
- "Susanne",
- "Frank Eberhard",
- "Tobias",
- "Carolin",
- "Klaus",
- "Michael",
- "August",
- "Andreas",
- "Georg",
- "Dominik",
- "Ryan",
- "Kai",
- "Muris",
- "Ingolf",
- "Christian",
- "Bodo",
- "Dominik",
- "Gebhard Hermann",
- "Sven",
- "Gerald",
- "Britta",
- "Jochen",
- "Anja",
- "Rudolf",
- "Maria Margarete",
- "Christine",
- "Maximilian",
- "Youngjun",
- "Bernd Alfons Herbert",
- "Christian",
- "André Matthias",
- "Holk",
- "Till Henning",
- "Thomas",
- "Siemen-Jannes",
- "Hendrik",
- "Florian",
- "Henning",
- "Andrea",
- "Thomas Alexander",
- "Thorben",
- "Jordi",
- "Arne-John",
- "Burhan",
- "Alexander Peter",
- "Jan Hendrik",
- "Antje",
- "Ercan",
- "Heinz Udo",
- "Julian Felix",
- "Hauke",
- "Beate",
- "Achim",
- "Kurt",
- "Andreas",
- "Petra",
- "Heike",
- "Claudia",
- "Rüdiger",
- "Stefanie",
- "Gilbert",
- "Klaus",
- "Sven Wilhelm",
- "Maurice Wilhelmus Petrus Laurentius",
- "Uwe",
- "Heidi",
- "Lisa",
- "Peter",
- "Bernd",
- "Georg",
- "Martina",
- "Orlando Sébastien Paulin",
- "Lorenzo",
- "Felipe",
- "Ricardo",
- "Jennifer",
- "Alf",
- "Constanze",
- "Thorben",
- "Carsten",
- "Manuela",
- "Jörg",
- "Gebhard",
- "Regine Annette",
- "Achim Bernd",
- "Claus Christian",
- "Gunter",
- "Michael",
- "Johannes",
- "Julia",
- "Isabella",
- "Klaus",
- "Dirk",
- "Gabriel",
- "Kristal",
- "Ingo",
- "Niels",
- "Christian Thorsten",
- "Frank",
- "Sascha",
- "Tobias",
- "David",
- "Florian",
- "Volkhard",
- "Fabian",
- "Michael",
- "Michael",
- "Christian",
- "Sandra",
- "Tobias",
- "Christian",
- "Thomas",
- "Thomas",
- "Jonas",
- "Thomas",
- "Beate",
- "Petrea",
- "Max",
- "Patrice",
- "Kai Uwe",
- "Heiko",
- "Ralph",
- "Erika Elisabeth",
- "Michaela",
- "Karl-Christian",
- "Tobias",
- "Henning",
- "Andreas",
- "Ingo",
- "Jan",
- "Dennis",
- "Stefan",
- "Harald",
- "Matthias",
- "Katelyn",
- "Bastian",
- "Joachim",
- "Andreas",
- "Matthias Florian",
- "Orlando",
- "Günther",
- "Tino",
- "Stephanie",
- "José",
- "Jörg",
- "Guido",
- "Sebastian",
- "Bernd",
- "Frank",
- "Manfred Josef",
- "Andreas",
- "Jörg",
- "Frank",
- "David",
- "Ulrich Matthäus",
- "Holger Werner",
- "Marina",
- "Christoph",
- "José",
- "Andreas",
- "Mayur",
- "Singh",
- "Simon",
- "Ayhan",
- "Peter-Ulrich",
- "Stephan",
- "Rose Lea",
- "Sylvia",
- "Anna",
- "Melanie",
- "Michael",
- "Björn Frederik",
- "Stephan",
- "Ludwig",
- "Hartmut",
- "Marc",
- "Jan-Christoph",
- "Ralf",
- "Bernhard",
- "Heike",
- "Jürgen Bernd",
- "Martin",
- "Jochen",
- "Jürgen",
- "Gesa",
- "Marcus",
- "Uwe",
- "Andreas",
- "Frank",
- "Thomas",
- "Yaris",
- "Wolfram",
- "Andreas",
- "Stefan",
- "Rene",
- "Axel",
- "Joachim",
- "Marcus",
- "Stefan",
- "Thomas",
- "Mirko",
- "Matthias",
- "Bernd",
- "Hauke",
- "Petra",
- "Ulrich",
- "Lutz",
- "Peter",
- "Claus",
- "Christian",
- "Jörg",
- "Till",
- "Patrick",
- "Alexander",
- "Andreas",
- "Dennis",
- "Sandra",
- "Achim",
- "Uwe",
- "Valeria",
- "Karin",
- "John",
- "Andreas",
- "Stephan",
- "Jan-Michael",
- "Manuel",
- "Florian",
- "Andreas",
- "Iris",
- "Kerstin",
- "Christian",
- "Jörg",
- "Florian",
- "Jürgen",
- "Joachim",
- "Klaus",
- "Lars",
- "Sonja",
- "Wolfgang",
- "Uwe",
- "Thomas",
- "Harry",
- "Thorsten",
- "Karl Anton",
- "Carsten",
- "Michael",
- "Miriam Valerie",
- "Jochen",
- "Jürgen",
- "Franziska",
- "Benjamin",
- "Dennis",
- "Johannes",
- "Thomas",
- "Dominik",
- "Kai-Peter",
- "Andre",
- "Markus",
- "Olaf",
- "Mark",
- "Winfried",
- "Heinz",
- "Kathrin",
- "Klaus",
- "Volker",
- "Holger",
- "Hueseyin",
- "Stefan",
- "Matthias",
- "Nicolas Michael",
- "Christian",
- "Jeanine",
- "Frank",
- "Sandra",
- "Andreas",
- "Christian",
- "Christian",
- "Dominik",
- "Michael",
- "David Pieter-Jan",
- "Joseph",
- "Faraz",
- "Sylvia",
- "Frank",
- "Anna",
- "Stefanie",
- "Christoph",
- "Benjamin",
- "Norbert",
- "Leonid",
- "Bernd",
- "Steffan",
- "Swen",
- "Eduard",
- "Sven",
- "Stefan",
- "Markus Claudius Victor",
- "Corinna",
- "Matthias",
- "Pal",
- "Kris David Gert",
- "Eva-Maria",
- "Annett",
- "Katharina",
- "Jessica",
- "Uwe",
- "Antje",
- "Thomas",
- "Barteld",
- "David",
- "Till",
- "Frank",
- "Thomas",
- "Thomas",
- "Guido",
- "Bernd",
- "Mazen Ephram",
- "Jan",
- "Hendrik",
- "Thorsten",
- "Peter",
- "Niklas",
- "Andreas-Werner",
- "Jörg",
- "Aleksandar",
- "Adolf",
- "Steffen",
- "Oliver",
- "Klaus",
- "Matthias",
- "Andreas",
- "Helmut",
- "Remco Pieter",
- "Heike",
- "Matthias",
- "Christoph",
- "Andreas",
- "Dennis",
- "Daniel",
- "Katharina",
- "Frank-Peter",
- "Thomas",
- "Uwe",
- "Susanne",
- "Iris",
- "Christian",
- "Tanja",
- "Marcel",
- "Knut",
- "Elias",
- "Christian",
- "Mark",
- "Astrid",
- "Christian",
- "Zuhal",
- "Dietmar",
- "Karsten",
- "Timo",
- "Tobias",
- "Holger",
- "Jutta",
- "Melanie",
- "Thomas",
- "Mario",
- "Patrick",
- "Tobias",
- "Verena",
- "Lisa",
- "Julia",
- "Markus",
- "Erik",
- "Boris",
- "Sebastian",
- "Wolfram",
- "Peter",
- "Christian",
- "Peter",
- "Holger",
- "Benedikt",
- "Manfred",
- "Christian",
- "Volker",
- "Jürgen",
- "Malte",
- "Jochen",
- "Fahim",
- "Kevin",
- "Oliver",
- "Björn",
- "Sabine",
- "Katrin",
- "Ole Wassily",
- "Renate Monika",
- "Gero",
- "Janina",
- "Georg",
- "Thomas",
- "Sascha",
- "Christof",
- "Martin",
- "Stefan",
- "Werner",
- "Torsten",
- "Andreas",
- "Dirk",
- "Christian",
- "Daniel",
- "Birgit",
- "Horst",
- "Thomas",
- "Stefan",
- "Sebastian",
- "Dominik",
- "Mirco",
- "Jürgen",
- "Matthias",
- "Wolfgang",
- "Andreas",
- "Michael",
- "Omar",
- "Thomas",
- "Werner",
- "Simon",
- "Markus",
- "Robert",
- "Hendrik",
- "Peter",
- "Gunter",
- "Thorsten",
- "Beatrice",
- "Norman-Moritz",
- "Yannick Tim",
- "Dittmar",
- "Johannes",
- "Götz",
- "Martin",
- "Gerd",
- "Ante",
- "Sven",
- "Moritz",
- "Frank",
- "Michael",
- "Mathias",
- "André",
- "Kirsty",
- "Lothar",
- "Peter",
- "Ingo",
- "Joachim",
- "Frank",
- "Thomas",
- "Sebastian",
- "Heiner",
- "Bettina",
- "Frank",
- "Philipp",
- "Meyer",
- "Alexander",
- "Lutz",
- "Nicole",
- "Steffen",
- "Hans Tilmann",
- "Tobias",
- "Andy",
- "Christopher",
- "Mato",
- "Walter",
- "Ole",
- "Felix",
- "Efrem",
- "Christian",
- "Philipp",
- "Sönke",
- "Simon",
- "Götz",
- "Florian",
- "Thorsten",
- "Sandra",
- "Dominik",
- "Patric",
- "Andreas",
- "Dirk",
- "Hans",
- "Dirk",
- "Thorsten",
- "Ton",
- "Jan-Willem",
- "Manfred",
- "Markus",
- "Dieter",
- "Angelika",
- "Michael",
- "Mathias",
- "Arndt",
- "Kristin",
- "Anna",
- "Ralph",
- "Linda",
- "Margarete",
- "Stefan",
- "Bettina",
- "Malte",
- "Christopher",
- "Daniela",
- "Ulrich",
- "Guido",
- "Anna",
- "Philip",
- "Andreas",
- "Susanne Maria",
- "Bettina",
- "Andreas",
- "Frank",
- "Lars",
- "Lutz",
- "Karsten Peter",
- "Christoph Josef",
- "Rolf",
- "Helene",
- "Peter",
- "Hennig",
- "Daniel",
- "Roland",
- "Michael",
- "Gitta",
- "Frederik",
- "Tobias",
- "Jörg",
- "Olaf",
- "Manuel",
- "Oliver",
- "Horst",
- "Christoph",
- "Majida Nadyne",
- "Kristin",
- "Stefan",
- "Jörg",
- "Maik",
- "Simon",
- "Marco",
- "Michael",
- "Lisa",
- "Prisca Olivia",
- "Murat",
- "Markus",
- "Bastian",
- "Rainer Fred",
- "Katrin",
- "Guido",
- "Marie",
- "Alexandra",
- "Rainer",
- "Fabian",
- "Klaus",
- "Julia Anne",
- "Kathryn",
- "Steven James",
- "Christopher",
- "Ferdinand",
- "Ralf",
- "Fabian",
- "Wolfgang",
- "Christoph",
- "Carsten",
- "Anselm",
- "Hugh",
- "Rainer",
- "Heiko",
- "Andrea",
- "Rudolf",
- "Marco",
- "Edwin",
- "Andreas",
- "Martin",
- "Roland",
- "Jan",
- "Michael",
- "Karin",
- "Frank",
- "Stephan",
- "Thomas",
- "Anja",
- "André",
- "Joachim",
- "Norman",
- "Ute",
- "Patricia",
- "Jan",
- "Dirk",
- "Marcia",
- "Benedikt Paul Wolfgang",
- "Uwe",
- "Dennis",
- "Ilka",
- "Robert",
- "Florian",
- "Thomas",
- "Pierre",
- "Bernd",
- "Richard",
- "Winfried",
- "Hans",
- "Michael",
- "Heiko",
- "Christian",
- "Ole",
- "Frank-Uwe",
- "Oliver",
- "Thomas",
- "Niclas Florian",
- "Udo",
- "Jutta",
- "Dr. Thomas",
- "Niels",
- "Sascha",
- "Adam",
- "Marion",
- "Carola Maria",
- "Christian",
- "Oliver",
- "Agapi",
- "Christoph",
- "Beate",
- "Henning",
- "Maik",
- "Tim",
- "Torsten",
- "Andreas",
- "Mario",
- "Carsten",
- "Thomas",
- "Dirk",
- "Jessica",
- "Fadzlun",
- "Mathias",
- "Joseph George",
- "Peter",
- "Mario",
- "Matthias",
- "Steve",
- "Rüdiger",
- "Elio Massimo Antonello Maria",
- "Jörg",
- "Tatiana",
- "Riccardo",
- "Karsten",
- "Yvonne",
- "Corinna",
- "Thomas Maximilian Walter",
- "Martin",
- "Patrick",
- "Marco Daniel",
- "Jens",
- "Franz Anaximandros",
- "René",
- "Thomas",
- "Achim",
- "Patrick",
- "Hans Gregor",
- "Alexander",
- "David",
- "Steffen",
- "Ulrich",
- "Verena",
- "Frank",
- "Markus",
- "Raphael",
- "Jacqueline",
- "Darko",
- "Rainer",
- "Manfred",
- "Ronny",
- "Jan",
- "Lars",
- "Oliver",
- "Markus",
- "Martin",
- "Julio Javier",
- "Sven",
- "Chloé",
- "Giuseppe",
- "Herbert",
- "Elias",
- "Johannes",
- "Florian",
- "Milena",
- "Matthias",
- "Christian",
- "Alexander",
- "Detlef",
- "Angelo",
- "Klaus",
- "Jonathan",
- "Carolin",
- "Matthias",
- "Jana Daniela",
- "Renate",
- "Jean-Carl",
- "Christine",
- "Philipp",
- "Torsten",
- "Dirk",
- "Martin",
- "Thomas",
- "Martin",
- "Dietrich",
- "Anne",
- "Dirk-Eberhard",
- "Gordon",
- "Melanie",
- "Kimberlee",
- "Christoph",
- "Thomas",
- "Gerhard",
- "Tim",
- "Thomas",
- "Oliver",
- "John",
- "Bernd",
- "Tobias",
- "Sebastian",
- "Adam Robert",
- "Monika",
- "Oscar",
- "Volker",
- "Lillian",
- "Ralph",
- "Tanja",
- "Remco",
- "Pablo Ignacio",
- "Yin",
- "Nikola",
- "Christian",
- "Dietmar",
- "Markus",
- "Max Alexander",
- "Udo",
- "Martin",
- "Dietmar",
- "Ottmar",
- "Andreas",
- "Andreas",
- "Martin",
- "Tobias",
- "Patrick",
- "Ulrike",
- "Joachim",
- "Christian",
- "Katharina",
- "Marcus",
- "Martin",
- "Bruno",
- "Klaus",
- "Timo",
- "Patrick",
- "Alexander",
- "Björn",
- "Christian",
- "Martin",
- "Michael",
- "Hirokai",
- "Ralf",
- "Irene",
- "Zoran",
- "Lars Niklas",
- "Emmanuel Francois Jean-Claude Laurent",
- "Hans-Dieter",
- "Jürgen",
- "Andreas",
- "Carsten",
- "Stephan",
- "Axel",
- "Jörg",
- "Detlef",
- "Remco Jan",
- "Thomas",
- "Claudia",
- "Klaus Bernhard",
- "Michael",
- "Christina",
- "Stefanie",
- "Jörg",
- "Ellen",
- "Harry Walter",
- "Jens",
- "Kerstin",
- "Karl-Hermann",
- "Torsten",
- "Heiko",
- "Henrik",
- "Jendrik",
- "David",
- "Jens",
- "Jan",
- "Frank",
- "Lars",
- "Alexander",
- "Eva-Marie",
- "Christian",
- "Judith",
- "Oliver",
- "Claus Jürgen",
- "Andreas",
- "Johannes",
- "Katja",
- "Thomas Werner",
- "Heike",
- "Katrin",
- "Jens",
- "Katja",
- "Konstantin Frederik",
- "Sabine",
- "Lars",
- "Stefan",
- "Roy",
- "Stefanie",
- "Nils",
- "André",
- "Manfred",
- "Hubert Johann Wilhelm",
- "Christian",
- "Robert",
- "Inga",
- "Jürgen",
- "Thomas",
- "Stef",
- "Matteo",
- "Friederike Isabel",
- "Petra",
- "Martina",
- "Karl-Ulrich",
- "Stephan",
- "Regina",
- "Christof Markus",
- "Stefan",
- "Gert-Hartwig",
- "Anton",
- "Rainer",
- "Reiner",
- "Claus-Martin",
- "Jürgen",
- "Birgit",
- "Peter Erik",
- "Kay-Axel",
- "Gero",
- "Kai",
- "Carola",
- "Jens",
- "Arnoldus",
- "Holger Otto",
- "Enno",
- "Cay-Uwe",
- "Richard",
- "Karsten",
- "Robert",
- "Henrik",
- "Ingo Erich",
- "Bernd",
- "Thomas",
- "Caroline",
- "Thomas",
- "Jan Kristof",
- "Andrea",
- "Stefanie",
- "Melanie",
- "Thomas William",
- "Daniela",
- "Ann-Marie",
- "Malcolm",
- "Sebastian",
- "Bernhard",
- "Robert Frank",
- "Michael Wolfgang",
- "Andreas",
- "Robert",
- "Jian Hua (genannt Amily)",
- "Michael",
- "Tatjana",
- "Tobias",
- "Kristin",
- "Martin",
- "Mathias",
- "Sylke",
- "Aleksander",
- "Stefan",
- "Ralph",
- "Joachim Fritz",
- "Renate",
- "Harald",
- "Stephan",
- "Claus Martin",
- "Christian Carsten",
- "Ronald",
- "Ralph",
- "Christian",
- "Rico",
- "Andreas",
- "Christof Martin",
- "Jürgen",
- "Harald",
- "Michael",
- "Rainer",
- "Holger",
- "Michael",
- "Martin",
- "Fabian",
- "Tilman",
- "Thorsten",
- "Daniel",
- "Bernhard Ernst",
- "Massimo",
- "Stefan",
- "Alexander",
- "Volker",
- "Cornelia",
- "Felix",
- "Sandra",
- "Chen-Chien",
- "Lin",
- "Klaus",
- "Maureen",
- "Daniel",
- "Thomas",
- "Susanne",
- "Beate",
- "Natascha",
- "Reinhard",
- "Christof",
- "Peter",
- "Andreas",
- "Dirk",
- "Thomas",
- "Klaus",
- "Jorin",
- "Bernd",
- "Mark",
- "Andreas",
- "Reiner Hartmut",
- "Wojtek",
- "Stefan",
- "Oliver",
- "Oliver",
- "Gunnar",
- "Peter",
- "Stephan",
- "Jochen",
- "Pascal",
- "Markus",
- "Jeanne Anja Danica",
- "Thilo",
- "Frank",
- "Dorothee",
- "Elisabeth",
- "Alexandra",
- "Christine",
- "Christian",
- "Victor",
- "Adelheid",
- "Johannes",
- "Matthias",
- "Philipp",
- "Anncharlott",
- "Jannis-Raffael",
- "Johannes",
- "Martin",
- "Peter",
- "Harald",
- "Annette",
- "Stefan",
- "Alexander Emanuel",
- "Margarete Rebecca Sophie",
- "Christian",
- "Jonathan",
- "Barbara",
- "Clemens",
- "David",
- "Wolfgang",
- "Georg Julius",
- "Jakob",
- "Justus",
- "Konrad Jesko Johannes",
- "Sophie Berte",
- "Teresa",
- "Babor",
- "Jan",
- "Aline",
- "Barbara",
- "Siegfried",
- "Christiane",
- "Leonhard",
- "Sabine",
- "Anna Katharina",
- "Manuel",
- "Susanne",
- "Renate",
- "Johann Heinrich",
- "Karoline",
- "Katharina",
- "Annegret",
- "Caroline",
- "Albrecht",
- "Andrea",
- "Katharína",
- "Katja",
- "Peter Emanuel",
- "Tobias",
- "Maximilian",
- "Bettina",
- "Heilwig",
- "Jim Anton",
- "Herta",
- "Friedrich",
- "Georg",
- "Johann",
- "Susanna",
- "Justus",
- "Sibylla",
- "Barbara",
- "Dorothea",
- "Johanna",
- "Franziska",
- "Karl",
- "Clemens",
- "Cornelia",
- "Elisabeth",
- "Johannes",
- "Markus",
- "Nikolaus",
- "Teresa",
- "Cornelia",
- "Daniel",
- "Raphael",
- "Simon",
- "Tobias",
- "Friederike",
- "Marie-Louise",
- "Dorothea",
- "Paul-Gerhard",
- "Christian",
- "Ferdinand",
- "Ricarda",
- "Kristina",
- "Theresa",
- "Benedikt",
- "Georg",
- "Gustav",
- "Isabel",
- "Otto",
- "Franziska Eva",
- "Margarethe",
- "Christiane",
- "Christiane",
- "Carl Christoph",
- "Beate",
- "Johannes",
- "Laura",
- "Raphael",
- "Emanuel",
- "Justus",
- "Theresia",
- "Michaela",
- "Bonny",
- "Lisa",
- "Alexander",
- "Karin",
- "Klara",
- "Franziska",
- "Paul",
- "Anna-Katharina",
- "Maximiliane",
- "Oskar",
- "Livia",
- "Carl-Vincent",
- "Julius-Maria",
- "Jon",
- "Antonius",
- "Constantin",
- "Felicitas",
- "Daniel",
- "Maximilian",
- "Sophia",
- "Lisa",
- "Thomas",
- "Benedikt",
- "Elisabeth",
- "Elisabeth",
- "Dorothea",
- "Belén",
- "Dabin Sebastian",
- "Florian",
- "Klara",
- "John",
- "Natalie",
- "Jonathan",
- "Charlie",
- "Gregor",
- "Niko",
- "Christian",
- "Kai",
- "Marcus",
- "Georg-Friedrich",
- "Anna",
- "Friederike",
- "Helena",
- "Petra",
- "Stephanie",
- "Ute",
- "Eva",
- "Elena",
- "Matthias",
- "Robert Charles",
- "Jonja Leon Danh",
- "Lilly Lou Shalinh Marie",
- "Philipp",
- "Karoline Dorothea",
- "Marlene Elisabeth",
- "Maximilian Luca",
- "Elisabeth",
- "Leoni",
- "Philip Joachim",
- "Caroline",
- "Atisha Jonas",
- "Karl-Konstantin",
- "Jakob",
- "Madita",
- "Charlotte Wilhelmine",
- "Johanna Mathilde",
- "Amelie Paulina",
- "Cosima",
- "Octavia",
- "Phyllida",
- "Ludwig Flurin",
- "Anna Rosina",
- "Jonas",
- "Jakob",
- "David",
- "Eleonore Marie Toscana",
- "Emil Friedrich Achilles",
- "Samuel",
- "Joshua Tobias",
- "Benjamin Daniel Thomas",
- "Simon",
- "Raphael",
- "Seobin",
- "Antonius",
- "Peter",
- "Johann Cornelius",
- "Maxwell Oliver",
- "Mathilde Sophie",
- "Elliot Arthur",
- "Sophia Helene",
- "Aurelia",
- "Gregor",
- "Viola",
- "Ruth",
- "Olivia",
- "Paul",
- "Alma",
- "Lorena",
- "Peter",
- "Helmut",
- "Johannes",
- "Frank",
- "Sebastian",
- "Roland",
- "Dominic",
- "Andreas",
- "Jochen",
- "Carsten Heinz Joachim",
- "Moritz Edgar",
- "Jochen",
- "Claus",
- "Hermann",
- "Simon",
- "Anke",
- "Ralf",
- "Martin Richard",
- "Horst",
- "Christian",
- "Dirk",
- "Alexander",
- "Jürgen",
- "Daniela",
- "Jens",
- "Eric",
- "Johann",
- "Johann Jakob",
- "Wolfram",
- "Michael",
- "Bernhard",
- "Stefan",
- "Michael",
- "Michael",
- "Thomas",
- "Manuel",
- "Stefan",
- "Celina",
- "Dermot",
- "Christian",
- "Erik-Jan",
- "Jürgen",
- "Crispin",
- "Stefanie Gertrud",
- "Arie Johan",
- "Sebastian Björn",
- "Sukhjinder",
- "Bernhard",
- "Christian",
- "Christian",
- "Michael",
- "Moritz",
- "Thorsten Ernst",
- "Daniel Andreas",
- "Ulrich",
- "Mark James Morgan",
- "Stephan",
- "Mario",
- "Rainer",
- "Christian",
- "Franz",
- "Horst",
- "Thomas",
- "John-Oliver",
- "Carolin",
- "Sabrina",
- "Marko",
- "Marc",
- "Maximilian",
- "Franziska",
- "Bernd",
- "Joachim",
- "Martin",
- "Jürgen",
- "Christian",
- "Guido",
- "Jakob Bernd Hermann",
- "Jürgen August",
- "Steffen",
- "Inga",
- "Marcus",
- "Eva Marion",
- "Lutz",
- "Jörn",
- "Patrick",
- "Steffen",
- "Matthias",
- "Thomas",
- "Holger Otto",
- "Stefanie",
- "Thomas",
- "Christian",
- "Rolf",
- "Jan",
- "Claus Michael",
- "Daniel",
- "Benjamin",
- "Wolfgang",
- "Lars",
- "Jürgen",
- "Dirk",
- "Dominic",
- "Rebecca",
- "Daniel",
- "Michael",
- "Jakob Johannes",
- "Heiko",
- "Stefan",
- "Hans-Peter",
- "Matthias",
- "Axel",
- "Christine",
- "Florian",
- "Karin",
- "Norbert",
- "Andreas",
- "Sebastian",
- "Matthias",
- "Claus-Christian Richard Ernst",
- "Veit",
- "Stefan",
- "Christoph",
- "Peter",
- "Holger",
- "Stefan",
- "René",
- "Daniel",
- "Marc",
- "Markus",
- "Marika",
- "Stefan",
- "Michael",
- "Sebastian",
- "Christopher",
- "Mario",
- "Gatse Gerrit",
- "Tormod",
- "Christian",
- "Alexander",
- "Jens",
- "Christian",
- "Verena",
- "Dirk",
- "Sönke",
- "Stefan",
- "Thorsten",
- "Holger",
- "Uwe",
- "Raik",
- "Jürgen",
- "Markus",
- "Harald",
- "Martin",
- "Georg Alexander Paul",
- "Sergej",
- "Andreas",
- "Frank Peter",
- "Roman",
- "Hartwig Bernhard",
- "Jörn",
- "Nils",
- "Gareth Elwyn",
- "Stefan",
- "Jörn",
- "Anna Helene",
- "Michaela",
- "Jonas",
- "Mathias",
- "Nico",
- "Alexandra",
- "Christoph",
- "Stephan",
- "Lars",
- "Oliver",
- "Jörg Lothar",
- "Reiner",
- "Susanne",
- "Daniel",
- "Gordon Charles",
- "Marco Alfred",
- "Udo",
- "Jan",
- "Verena",
- "Rolf",
- "Torsten",
- "Artur",
- "Sarah",
- "Martin",
- "Michael",
- "Volker",
- "Rainer",
- "Volker",
- "Kai",
- "Matthias",
- "Adrienne Héon",
- "Frank",
- "Tristan",
- "Thomas Klaus-Peter",
- "Mirjam",
- "Andrea",
- "Frank",
- "Ulrich",
- "Wieland",
- "Christoph",
- "Klaus",
- "Markus",
- "Andreas",
- "Joachim",
- "Bettina",
- "Thomas",
- "Susanne",
- "Filip",
- "Lars",
- "Elisabeth",
- "Thomas",
- "Sasa",
- "Danilo",
- "Bernhard",
- "Thomas",
- "Arndt",
- "Jens Michael",
- "Katharina",
- "Benjamin",
- "Wolfgang",
- "Dorothee",
- "Simone",
- "Levke",
- "Uwe",
- "Matthias",
- "Thomas Andreas",
- "Colette",
- "Georgios Nikolaos genannt Georg",
- "Andreas",
- "Claus",
- "Lars",
- "Volker",
- "Simone",
- "Manfred Volker",
- "Heiko",
- "Alexandra",
- "Markus",
- "Volker",
- "Ulrike",
- "Joachim",
- "Michael",
- "Marc",
- "Christian Götz Andreas",
- "Marcus Uwe",
- "Andreas",
- "Andre",
- "Imko Harry",
- "Timo Dieter",
- "Marcel",
- "Heidi",
- "Roman",
- "Marko",
- "Alyna",
- "Ralf",
- "Ulrich",
- "Iris",
- "Rando",
- "Burkhard",
- "Alexandru",
- "Malte",
- "Matthias",
- "Stefan",
- "Stefan",
- "Martin",
- "Günter",
- "Oskar",
- "Oscar",
- "Claus",
- "Christoph",
- "Volker",
- "Thomas",
- "Detlef Johannes",
- "Stefan",
- "Bernd",
- "Jan",
- "Margarethe",
- "Alexander",
- "Margarete",
- "Georg",
- "Konrad",
- "Sophie",
- "Katharina",
- "Susanne",
- "Theresa Maria Luise",
- "Gustav",
- "Atisha Jonas Fontanive",
- "Cosima Elisabeth",
- "Octavia Vivienne",
- "Phyllida Adeline",
- "Sophia",
- "Gregor",
- "Viola",
- "Ruth",
- "Olivia",
- "Paul",
- "Alma",
- "Lorena",
- "Peter",
- "Martina",
- "Tilman",
- "Niklas",
- "Daniel Gerhard",
- "Hilke Karoline",
- "Monika",
- "Jost Friedrich Karl",
- "Gabriël Johannes Maria Bernardus",
- "Katharina",
- "Frank",
- "Andreas Stefan",
- "Yvonne Konstanze",
- "Stefan",
- "Nadia",
- "Marco",
- "Sven",
- "Anne",
- "André Sebastian",
- "Anna Barbara",
- "Theresa",
- "Kim",
- "Cora Constanze",
- "Susanne",
- "Kristina Laura",
- "Tobias",
- "Jan",
- "Thomas",
- "Manfred",
- "Markus",
- "Rainer",
- "Andreas",
- "Jürgen",
- "Christian",
- "Matthias",
- "Ludger",
- "Christoph",
- "Angela",
- "Walter",
- "Kersten",
- "Cornelius",
- "Thomas",
- "Andreas",
- "Jan Christoph",
- "Stefan",
- "Heiko",
- "Bernhard",
- "Michael",
- "Arne",
- "Oliver",
- "Kerstin",
- "Andreas",
- "Arndt",
- "Rainer",
- "Ludger",
- "Karsten",
- "Randolf",
- "Michael",
- "Kai",
- "Götz",
- "Thomas",
- "Bernhard",
- "Bernd",
- "Diana",
- "Heike",
- "Paula",
- "Mario",
- "Johannes",
- "Frank",
- "René",
- "Jörg",
- "Michael",
- "Marco",
- "Christian",
- "Beate",
- "Steffen",
- "Gabriele",
- "Christoph",
- "Joachim",
- "Lauren",
- "Alexandra",
- "Johann-Caspar",
- "Emmanuel",
- "Gerhard",
- "Anne Carina",
- "Frank",
- "Christian",
- "Gaetano",
- "Yann",
- "Svenja",
- "Ralf",
- "Jörg",
- "Martin",
- "Peter",
- "Markus",
- "Stefan Michael",
- "Heidi",
- "Harald",
- "Christian",
- "Steffen",
- "Jens-Uwe",
- "Andreas",
- "Dirk",
- "Andreas",
- "Joachim",
- "Axel",
- "Inamarie",
- "Susanne",
- "Gerd",
- "Holger",
- "Ralph",
- "Franz",
- "Bernhard",
- "Volker",
- "Ingmar",
- "Patrick",
- "Max",
- "Armin",
- "Thomas",
- "Dirk",
- "Markus",
- "Thomas",
- "Doris",
- "Matthias",
- "Norbert",
- "Bernd",
- "Sanjeev",
- "Michael",
- "Robert",
- "Roberto",
- "Bernd",
- "Thomas",
- "Walter",
- "Katrin",
- "Christian",
- "Dirk",
- "Thomas",
- "Olga",
- "Udo",
- "Dirk",
- "Alexander",
- "Hermann",
- "Ute",
- "Hans-Rolf",
- "Ulrich",
- "Elias",
- "Stefan",
- "Helena Song-Hi",
- "Stefan",
- "Claudine",
- "Greta",
- "Gerrit",
- "Sabine",
- "Manja Lisa",
- "Simone",
- "Peter",
- "Frank",
- "Friedrich Claas",
- "Thomas Ludwig",
- "Tim Christopher",
- "Jens",
- "Anja",
- "Sebastian",
- "Sascha",
- "Kai",
- "Edi",
- "Norbert",
- "Ludger",
- "Anke",
- "Claus",
- "Rüdiger",
- "Lars",
- "Christian",
- "Melanie",
- "Peter",
- "Tim",
- "Thomas",
- "Christine",
- "Christian",
- "Robert",
- "Harald",
- "Anke",
- "Guido",
- "Claudia",
- "Holger",
- "Henrik",
- "Dirk",
- "Viviane",
- "Annette",
- "Norbert",
- "Matthias",
- "Anne",
- "Maike",
- "Thomas",
- "Justyna",
- "Kenneth",
- "Silvia Brigitte",
- "Martin",
- "Roberto",
- "Georg Alexander",
- "Sascha",
- "Serkan",
- "Werner",
- "Steffen",
- "Uwe",
- "Carsten",
- "Siegfried",
- "Olaf",
- "Christian Rudolf",
- "Erik",
- "Desislava",
- "Nils",
- "Martin",
- "Sonja-Verena",
- "Patrick",
- "Frank",
- "Thorsten",
- "Diana",
- "Steffen",
- "Georg",
- "Holger",
- "Hannes",
- "Marc",
- "Michael",
- "Andreas",
- "Christoph",
- "Oliver",
- "Natascha",
- "Henrik Jürgen Helge",
- "Yves Gorat",
- "Matthias",
- "Thorsten",
- "Dirk",
- "Till",
- "Lothar",
- "Stefan",
- "Marc David Günther",
- "Jörg",
- "Özlem",
- "Markus",
- "Lars",
- "Nadine",
- "Matthias",
- "Herbert",
- "Fabian",
- "Jörg",
- "Stefan",
- "Roland",
- "Susanne",
- "Jörn",
- "Andreas",
- "Ingo",
- "Antonius",
- "Markus",
- "Bernhard",
- "Timo",
- "Lutz",
- "Florian",
- "Bernhard Andreas",
- "Martin",
- "Stefan",
- "Michael",
- "Franziska",
- "Stefanie",
- "Jochen",
- "Nicole",
- "Christian",
- "Hans-Joachim",
- "Stefan",
- "Dietmar",
- "Johannes",
- "Peter",
- "Nadja",
- "Mareike",
- "Michael",
- "Klaus",
- "Rickmann",
- "Simone",
- "Dirk",
- "Andreas",
- "Torsten",
- "Tammo",
- "Felix",
- "Benjamin",
- "Oliver",
- "Oliver",
- "Thomas",
- "Manuel",
- "Diana",
- "Melanie",
- "Holger",
- "Jürgen",
- "Frank",
- "Nick",
- "Hendrik",
- "Christian",
- "Michael",
- "Guido",
- "Daniela",
- "Jörg Nils",
- "Sebastian",
- "Annette",
- "Markus",
- "Matthias",
- "Katja",
- "Stefanie",
- "Srinivas",
- "Oliver",
- "Christoph Georg",
- "Malcolm David",
- "Kristin",
- "Jana",
- "Steffen",
- "Manuel",
- "Jochen",
- "Miguel",
- "Arnd",
- "Oliver",
- "Jörg",
- "Karl-Heinz",
- "Michael",
- "Matthias",
- "Christoph",
- "Jürgen",
- "Ulrich",
- "Harald",
- "Anke",
- "Martin",
- "Dieter",
- "Thorsten",
- "Stephanie",
- "Wolfgang",
- "Pierre Dominique",
- "Stefan",
- "Markus",
- "Monika",
- "Alexander Sven",
- "Denitza",
- "Holger",
- "Mathias",
- "Ivonne-Kerstin",
- "Stefan",
- "Thomas",
- "Julia",
- "Daniel",
- "Lutz",
- "Beate",
- "Bernd",
- "Marco",
- "Andreas",
- "Tobias",
- "Erkul",
- "Michael",
- "Christian",
- "Oliver",
- "Detmar",
- "Matthias",
- "Bastian",
- "David",
- "Ismail",
- "Oliver",
- "Hartmut Stefan",
- "Stefan",
- "Marcus André",
- "Christian",
- "Stephan",
- "Alexander",
- "Michael",
- "Johannes",
- "Ulrich",
- "Daniela",
- "Anne",
- "Stephanie",
- "Zsolt",
- "Florian",
- "Holger",
- "Guntram",
- "Rainer",
- "Christof",
- "Jill",
- "Nadine",
- "Oliver",
- "Nikolaos",
- "Jean-Victor",
- "Jochen",
- "Gerd Friedrich",
- "Ralph",
- "Angela",
- "Moritz",
- "Johannes",
- "Wolfgang",
- "Tonja",
- "Jan",
- "Matthias",
- "Carsten",
- "Smail",
- "Miguel",
- "Dieter",
- "Jens",
- "Andreas",
- "Peter",
- "Jarkko",
- "Lars",
- "Jennifer",
- "Heinrich",
- "Florian Raphael",
- "Nicole",
- "Tim Martinus Johannes",
- "Stefan Wilfred",
- "Stefan Walter",
- "André",
- "Zsolt",
- "Peter",
- "Horst Manfred",
- "Stephan",
- "Patrick",
- "Andreas",
- "Michael",
- "David",
- "Marcus",
- "Torsten",
- "Mario",
- "Arnd",
- "Bastian",
- "Stephan",
- "Martin",
- "Linda",
- "Reinhard",
- "Georg",
- "Jürgen",
- "Andreas",
- "Carsten",
- "Olaf",
- "Martin",
- "Friedrich Ernst",
- "Stephan Matthias",
- "Moritz",
- "Horst",
- "Christopher",
- "Felix",
- "Werner",
- "Olav",
- "Rainer",
- "Karina",
- "Ingo",
- "Sebastian-Jochen",
- "Malte",
- "Christian",
- "Anne",
- "Knut",
- "Michael",
- "Johanna",
- "Stephan",
- "Michael",
- "Ingo Frederik",
- "Nicole",
- "Michaela",
- "Anja Alexandra",
- "Christian",
- "Karyn",
- "Lioudmila",
- "Munib",
- "Mark Oliver",
- "David",
- "Stefanie",
- "Ulrich",
- "Henryk",
- "Christian",
- "Andreas",
- "Thomas",
- "Bernhard",
- "Guido",
- "Ulf",
- "Carolin",
- "Pascal",
- "Thomas",
- "Felix",
- "Nikolaus",
- "Ralph Roland Richard",
- "Silke",
- "Wencke",
- "Tobias",
- "Isabelle",
- "Tanja",
- "Ulrich",
- "Simone",
- "Dirk",
- "Anneka",
- "Jan",
- "Hubertus",
- "Jan",
- "Christoph",
- "Nora",
- "Marcus",
- "Thomas",
- "Annette",
- "Isabelle",
- "Jennifer",
- "Moritz",
- "Ronald Albert",
- "Stefan",
- "Daniel",
- "Christoph",
- "Hans-Joachim",
- "Andreas",
- "Frank",
- "Martin",
- "Stefan",
- "Christoph",
- "Berthold Johannes",
- "Torsten",
- "Xaver",
- "Stephan",
- "Dirk",
- "Thorsten",
- "Axel",
- "Carsten",
- "Jürgen",
- "Ralf",
- "Martin",
- "Thomas",
- "Florian",
- "Hexin",
- "Andreas",
- "Peter",
- "Stefan",
- "Jörg",
- "Kay Peter",
- "Susanne",
- "Lucas-Christopher",
- "Stefan R.",
- "Ralph",
- "Timo",
- "Carsten",
- "Klaus",
- "Axel",
- "Karin",
- "Christine",
- "Holger",
- "Matthias",
- "Florian",
- "Thomas",
- "Bruno",
- "Tim",
- "Sebastian",
- "Christian",
- "Chistian",
- "Jonny",
- "Ralf",
- "Thomas",
- "Reinhard",
- "Carsten",
- "Andreas",
- "Thomas",
- "Thomas",
- "Schrödel",
- "Sabine",
- "Steffen",
- "Monika",
- "Steffen Paul Georg",
- "Monika Anna",
- "Nicolas",
- "Ulrich Helmut",
- "Horst Ingo",
- "Engin",
- "Kristian",
- "Daniel",
- "Alexander",
- "Stefan",
- "Nils",
- "Wolfgang",
- "Marcel",
- "Helmut",
- "Marco",
- "Bernd",
- "Claus",
- "Markus",
- "Michel",
- "Sirous",
- "Thorsten",
- "Alexander Harry",
- "Ruth",
- "Michael",
- "Wolfgang",
- "Alfred",
- "Leonie",
- "Siegrid",
- "Tobias",
- "Sergej",
- "Nehir",
- "Oliver",
- "Rainer",
- "Jürgen Wilhelm",
- "Wolfgang",
- "Stephan",
- "Matthias",
- "Christian",
- "Thomas Wilhelm",
- "Marc",
- "Alan",
- "Thomas",
- "Thomas",
- "Marc Christian",
- "Bernd",
- "Victoria",
- "Leonhard",
- "Lisbeth",
- "Christoph",
- "Patrick",
- "Harald Wolfgang Heinrich",
- "Berthold",
- "Axel",
- "Claudia Maria",
- "Bernd",
- "Dirk",
- "Dennis",
- "Axel",
- "Jürgen",
- "Rüdiger",
- "Bastian",
- "Marc",
- "Katja",
- "Beate",
- "Dieter",
- "Fabian",
- "Reinhard",
- "Markus",
- "Kai",
- "Thomas",
- "Peter",
- "Katja",
- "Henrik",
- "Ulrich",
- "Andreas",
- "Mark",
- "Ralf",
- "Holger",
- "Oliver",
- "Liang",
- "Astrid",
- "Jon",
- "Matthias",
- "Ralf",
- "Sven",
- "Jona Sebastian",
- "Alexandru",
- "Philipp",
- "Alexander",
- "Rainer",
- "Urs",
- "Michael",
- "Gabriela",
- "Dominik",
- "Dirk",
- "Piotr",
- "Christoph",
- "Oliver",
- "Stefan",
- "Michael",
- "Kai",
- "Hella",
- "Lennard",
- "Oliver Matthias",
- "Stephan",
- "Christiane",
- "Michael",
- "Yves",
- "Stephanie",
- "Karl Michael Moritz",
- "Volker Andreas",
- "Arnd",
- "Heinz-Otto",
- "Stefan",
- "Martin",
- "Katja",
- "Johannes",
- "Julian",
- "Stephan Franz Josef",
- "Christoph Alexander",
- "Dirk",
- "Mira",
- "Carsten Karl-Heinz",
- "Nicole",
- "Christian",
- "Thomas",
- "Martin",
- "Mathias",
- "Claudia",
- "Brigitte",
- "Christoph",
- "Ludger",
- "Christoph-Sweder",
- "Sven",
- "Sönke",
- "Ulrich",
- "Oliver",
- "Michael",
- "Klaus",
- "Michael",
- "Martin",
- "Martin",
- "Thomas",
- "Maria",
- "Bernhard",
- "Leszek",
- "Dennis Philipp",
- "Anja",
- "Andreas Jürgen",
- "Ingo",
- "Jörg",
- "Klaus",
- "Juliane",
- "Georg",
- "Holger",
- "Klaus",
- "Lydia",
- "Niels",
- "Michael Xavier",
- "Bernhard",
- "Armin",
- "Gerd",
- "Lars",
- "Kathrin",
- "Dirk Volker",
- "Nils Ulrich",
- "Johannes Antonius Maria",
- "Kay",
- "Hella Karin",
- "Jürgen",
- "Edgar",
- "Christof",
- "Heiko",
- "Matthias",
- "Christoph",
- "Frank",
- "Gerold",
- "Detlev",
- "Anke",
- "Jens",
- "Joachim",
- "Daniel",
- "Dirk-Alexander",
- "Frank",
- "Andreas",
- "Sascha",
- "Ingo",
- "Peter",
- "Bernard",
- "Stefan",
- "Martin",
- "Michael",
- "Jörg",
- "Marcel",
- "Barnabas",
- "Felix",
- "Michael",
- "Heiko",
- "Heiko",
- "Ludger",
- "Tobias",
- "Guido",
- "Nicole",
- "Lennart",
- "Jens",
- "Christoph",
- "Frank",
- "Sebastian",
- "Arnd",
- "Saskia",
- "Carlos",
- "Felix",
- "Michel",
- "David",
- "Silke",
- "Svenja",
- "Jörg",
- "Torsten",
- "Karsten",
- "Christian",
- "Clèment-Minoru",
- "Ralf",
- "Mary-Anne",
- "Thomas",
- "Ondrej",
- "Ulf",
- "Jörg",
- "Rolf",
- "Stephan",
- "Benedikt",
- "Andreas",
- "Ansgar",
- "Christoph",
- "Hella Elke",
- "Reinhard",
- "Anja",
- "Sandro",
- "Heinz",
- "Michael Jürgen",
- "Marc",
- "Martin",
- "Christian",
- "Bernhard",
- "Rainer",
- "Simon",
- "Stefan",
- "Markus",
- "Jürgen",
- "Heinrich",
- "Tobias",
- "Nick",
- "Wolf-Dietrich",
- "Erich",
- "Markus",
- "Andreas",
- "Alexander",
- "Ulrich",
- "Markus",
- "Sarah",
- "Malte",
- "Almut",
- "Oliver",
- "Birger",
- "Martin",
- "Uwe",
- "Thomas",
- "Julian",
- "Dieter",
- "Oliver",
- "Andreas",
- "Krunoslav",
- "Tom",
- "Daniel Gerhard",
- "Willi",
- "Robertus Petrus Maria",
- "Timo",
- "Ludger",
- "Peter",
- "Guido",
- "Wolfgang",
- "Heinz-Jürgen",
- "Lasse",
- "Sascha",
- "Steffen",
- "Jürgen",
- "Gunda",
- "Jörg-Christian",
- "Hayriye",
- "Armin",
- "Lars",
- "André",
- "Thomas",
- "Ralf",
- "Martin",
- "Bernward",
- "Raffaele",
- "Anja",
- "Peter",
- "Jürgen",
- "Roland",
- "Kathrin",
- "Ulrike",
- "Alexander",
- "Karan",
- "Sonja",
- "Mark Fabian",
- "Roland",
- "Recep Erkan",
- "Iris",
- "Ralf",
- "Matthias",
- "Dorothea",
- "Dieter",
- "Timm",
- "Olaf",
- "Karl",
- "Barbara",
- "Andreas",
- "Rainer",
- "Markus",
- "Alexander Jürgen",
- "Cordula",
- "Matthias",
- "Juliane",
- "Gerhard",
- "Peter",
- "Ingo",
- "Thomas",
- "Daniel",
- "Michael",
- "Björn",
- "Markus",
- "Yves",
- "Stefan",
- "Benedikt Sebastian",
- "Barbara",
- "Hendrick Sebastian Thomas",
- "Elmar",
- "Gerd",
- "Rüdiger",
- "Bettina",
- "Anita",
- "Nora",
- "Manuel Enzo Michael",
- "Tino",
- "Matthias",
- "Anika",
- "Frank Oliver",
- "Andreas",
- "Mirko",
- "Bastian",
- "Fritz Toni",
- "Michael Günther",
- "Wolfgang",
- "Thomas Gerd",
- "Claus-Torsten",
- "Frank",
- "Paul",
- "Maren Kristina",
- "Sandra",
- "Brett Jacob",
- "Jurate",
- "Holger",
- "Eva",
- "Georg",
- "Jens",
- "Andreas",
- "Jürgen-Clemens",
- "Peter-Thomas",
- "Uwe Udo",
- "Niels",
- "Uwe",
- "Steffen",
- "Kay",
- "Andreas",
- "Michael Karsten",
- "Nadia",
- "Michael",
- "Rolf Eric",
- "Andres",
- "Uwe",
- "Dheeraj",
- "Juan Pablo",
- "Mark",
- "Maximilian",
- "Danny Joanna F.",
- "Hans",
- "Ulf",
- "Anders Sveel",
- "Donya-Florence",
- "Martin",
- "Stuart",
- "Oliver Carsten",
- "Laura",
- "Hella-Sophia",
- "Tom",
- "Daniela",
- "Ralph Thomas",
- "Reinhard Werner",
- "Alberta",
- "Michael J.",
- "Birgit",
- "Stefan Gerhard",
- "Markus Lothar Heinrich",
- "Joachim",
- "Harald",
- "Regina",
- "Uwe",
- "Katrin",
- "Carsten",
- "Frank",
- "Marie-Laure",
- "Klaus",
- "Thomas",
- "Friederike",
- "Dirk",
- "Oliver",
- "Ann-Kristin",
- "Stefanie",
- "Nicolas",
- "Sylvie",
- "Marco",
- "Ulrich",
- "Lars",
- "Matthias",
- "Wolfgang",
- "Mark Oliver",
- "Dmitrij",
- "Thomas",
- "Tom",
- "Martin",
- "Thomas",
- "Oliver",
- "Henirk",
- "Ivica",
- "Nikolai Florian Clifford",
- "Matthias",
- "Thomas",
- "Harald",
- "Milan",
- "Peter-Thomas",
- "Daniel",
- "Bianca",
- "Karin Maria",
- "Johannes",
- "Anna-Lena",
- "Til",
- "Patrick",
- "Gabriele",
- "Andre",
- "Ralf",
- "Markus",
- "Harmut",
- "Eva",
- "Anna",
- "Thomas",
- "Elisa",
- "Niklas",
- "Marcus",
- "Ekkehard",
- "Philippe",
- "Winfried-Franz",
- "Ute",
- "Daniel",
- "Manfred",
- "Benjamin",
- "Rudolf",
- "Marc",
- "Sebastian",
- "Maximilian",
- "Stefan",
- "Hans Georg",
- "Sabine",
- "Jan-Henrik",
- "Claudia",
- "Johannes Falk Hagen",
- "Dieter",
- "Thomas",
- "Thomas",
- "Marlies",
- "Peter",
- "Gerd",
- "Marcus",
- "Martin",
- "Gabriele",
- "Dennis",
- "Hartmut",
- "Heinz-Peter",
- "Frank",
- "Jörg",
- "Gönna",
- "Thomas",
- "Andrea",
- "Monika",
- "Susanne",
- "Denise",
- "Tanja",
- "Turan",
- "Klaus Helmut",
- "Andreas",
- "Boris",
- "Jochen",
- "Andreas",
- "Janine",
- "André",
- "Aleksandra",
- "Achim",
- "Christof",
- "Florian",
- "Sven",
- "Reminta",
- "Stephan",
- "Thomas",
- "Christian",
- "Patrick",
- "Christian",
- "Götz",
- "Jörg",
- "Tino",
- "Herbert",
- "Sandra",
- "Daniel",
- "Andreas",
- "Henry",
- "Matthias",
- "Carmen",
- "Susan",
- "Kai",
- "Vesna",
- "Katharina Maria",
- "Udo",
- "Roman",
- "Alexander",
- "Michael",
- "Dominik",
- "Siegfried",
- "Rolf",
- "Corinna",
- "Gerhard",
- "Marc",
- "Christian",
- "Peter",
- "Dierk Oliver",
- "Marius",
- "Albert",
- "Adrian",
- "Thomas-Gerd",
- "Ulrich",
- "Michael Günter Wilhelm",
- "Fabian",
- "Herbert",
- "Harald Heinrich",
- "Frank",
- "Edgar",
- "Sarah",
- "Michael",
- "Ulrich Wilhelm",
- "Frank",
- "Thilo",
- "Manfred",
- "Christian",
- "Ralph",
- "Sven",
- "Volker",
- "Andreas",
- "Andreas",
- "Timo",
- "Franziska",
- "Jenny",
- "Hanns-Peter",
- "Christian Stefan",
- "Kai",
- "Stefan",
- "Jan",
- "Sebastian",
- "Andreas",
- "Thorsten",
- "Henrik",
- "David Ben",
- "Marcus",
- "Sascha André",
- "Wolfgang",
- "Anna-Maria",
- "Grit",
- "Jutta",
- "Thomas",
- "Simone",
- "Ronny",
- "Volker",
- "Gregor",
- "Stefan",
- "Georg",
- "Ivan",
- "Franz-Josef",
- "Karsten",
- "Tatjana",
- "Falk",
- "Bastian",
- "Guido",
- "Abhishek",
- "Christina",
- "Fernando Miguel",
- "Annika",
- "Steffen",
- "Michael",
- "Bärbel",
- "Judith",
- "Helge",
- "Rik Wivina Anna Adelson",
- "Frank-Detlef",
- "Mark",
- "Inken",
- "Jürgen",
- "Fabian",
- "Peter",
- "Philipp",
- "Jörg",
- "Lars",
- "Knut",
- "Jörg",
- "Christian",
- "Ingo",
- "Sebastian",
- "Marion",
- "Benedikt",
- "Sven",
- "Horst",
- "Uwe",
- "Friederike Elisabeth",
- "Frank",
- "Ute",
- "Martin",
- "Sandra Ingrid",
- "Günter",
- "Andreas",
- "Giorgio",
- "Dieter",
- "Klaus",
- "Hella",
- "Walter",
- "Regina",
- "Norbert",
- "Robin",
- "Markus",
- "Ricardo",
- "Frithjof",
- "Gunda",
- "Henning",
- "Dirk",
- "Eva Lucia",
- "Friedrich",
- "Joachim",
- "Joachim",
- "Wolfgang",
- "Miriam Henriette",
- "Agnes Emilie",
- "Bernhard",
- "André",
- "Almut",
- "Robert",
- "Tobias",
- "Michaela",
- "Uwe",
- "Reiner",
- "Uwe",
- "Jürgen",
- "Gabriele",
- "Jochen",
- "Gisela",
- "Christoph",
- "Eduard",
- "David",
- "Philip",
- "Mirco",
- "Jan Paul",
- "Hubert",
- "Ewa",
- "Thomas",
- "Sebastian",
- "Thomas",
- "Klaus",
- "Hella",
- "Marco",
- "Dirk",
- "Jens",
- "Gerhard",
- "Marcus Matthias",
- "Andreas",
- "Bernd Georg",
- "Stefanie",
- "Michael",
- "Adolf",
- "Marco",
- "Matthias",
- "Fritz",
- "Gerda",
- "Philippe",
- "Michael",
- "Devrim",
- "Kai",
- "Oliver",
- "Sarah",
- "Oliver",
- "Stefan",
- "Ina",
- "Eva Susanne",
- "Michael",
- "Ralf",
- "Karin",
- "Mirko",
- "Walter",
- "Karl-Dieter",
- "Andreas",
- "Hans-Henning",
- "Raik",
- "Dominik",
- "Thomas",
- "Andreas",
- "Thomas",
- "Reiner",
- "Stefan",
- "Elke",
- "Ejup",
- "Morris",
- "Michael",
- "Volker",
- "Grit",
- "Matthias",
- "Ralf",
- "Thomas",
- "Karl-Heinz",
- "Valentin R.",
- "Michael",
- "Christian",
- "Thomas",
- "Jan-W.",
- "Sascha",
- "Til",
- "Marc",
- "Nicolas",
- "Stephan",
- "Ralf",
- "Miriam",
- "Philipp",
- "Friedrich",
- "Björn",
- "Mathias",
- "Tobias",
- "Mansour",
- "Fatemeh Baradaran",
- "Olga",
- "Thomas",
- "Gesine Tanja",
- "Carsten",
- "Richard Lourens",
- "Matthias",
- "Sven",
- "Simon",
- "Peter",
- "Marcus",
- "Peter",
- "Frank",
- "Wilfried",
- "Antje",
- "Peter Georg",
- "Bastian",
- "Florian",
- "Christine",
- "Dirk",
- "Quirin",
- "Robert",
- "Simon",
- "Alexander",
- "Marianne",
- "Zvetomir",
- "Andreas",
- "Sabrina",
- "Alexander",
- "Markus",
- "Michael",
- "Thomas",
- "Torben Christian",
- "Martin",
- "Marcus",
- "Wolfgang",
- "Thomas",
- "Matthias",
- "Ralf",
- "Wiebke",
- "Lukas",
- "Erol",
- "Julian",
- "Jochen",
- "Detlef",
- "Boje",
- "Michael",
- "Joachim",
- "Dirk",
- "Jürgen",
- "Volker",
- "Manfred",
- "Stefan",
- "Beatrice",
- "Bernd",
- "Jirko",
- "Björn",
- "Thomas",
- "Torsten",
- "Hüseyin",
- "Achim",
- "Martin",
- "Arthur",
- "Anne Claudia",
- "Britta",
- "Markus Leander",
- "Manfred",
- "Martin",
- "Florian",
- "Achim",
- "Anja",
- "Marcus",
- "Gerd",
- "Dagmar",
- "Patricia",
- "Christoph",
- "Frank",
- "Robert",
- "Norbert",
- "Alessandra",
- "Hartmut",
- "Axel",
- "Josef",
- "Martin",
- "Carola",
- "Tino",
- "Peter",
- "Martin",
- "Wolfgang",
- "Katharina",
- "Tilman",
- "Octavio",
- "Uwe",
- "Mandy",
- "Andreas",
- "Jörg",
- "Thomas",
- "Birgit",
- "Rainer",
- "Fatos",
- "Visar",
- "Leonhard",
- "Abdullah",
- "Edmund",
- "Gerhard",
- "Kristina",
- "Peter",
- "Erich",
- "Sabine",
- "Tobias",
- "Kai",
- "Hui",
- "Fabian",
- "Christan",
- "Maike",
- "Judith",
- "Birgid",
- "Markus",
- "Stephan",
- "Jürgen",
- "Matthias",
- "Bertram",
- "Matthias",
- "Markus",
- "Marco",
- "Nathalie",
- "Irmgard",
- "Jörg",
- "Frank",
- "Volker",
- "Michael",
- "Esther",
- "Henning",
- "Alexander",
- "Urs",
- "Stefan",
- "Markus",
- "Christoph Alexander",
- "Michael",
- "James",
- "Rebecca",
- "Christoph",
- "Eva",
- "Pascal",
- "Georg",
- "Dirk",
- "Melanie",
- "Stefanie",
- "Michael",
- "Franciscus",
- "Marcel",
- "Ulrich",
- "Carmen",
- "Michaela",
- "Anastasia",
- "Michael",
- "Carsten",
- "Christoph",
- "Jan-Per",
- "Stefan",
- "Carsten",
- "Peter",
- "Harald",
- "Kai",
- "Thomas",
- "Christian Charles",
- "Martin",
- "Ghenadie",
- "Karl",
- "Stephan",
- "Ewald",
- "Kurt",
- "Arash",
- "Siamak",
- "Pirooz",
- "Saman",
- "Homeira",
- "Aristea",
- "Bouke Christiaan",
- "Sascha",
- "Doris",
- "Christophe",
- "Monika",
- "Jörg",
- "Dirk",
- "Andrea",
- "Raik",
- "Matthias",
- "Miroslaw",
- "Ralf",
- "Georg F. W.",
- "Harald",
- "Maria-Elisabeth",
- "Wolfgang",
- "Matthias",
- "Torsten",
- "Ulrich",
- "Reinhold Frank",
- "Jian",
- "Harald",
- "Eva-Maria",
- "Max",
- "Andreas",
- "Jürgen",
- "Andreas",
- "Christian",
- "Klaus",
- "Rasso Helmut",
- "Moritz",
- "Frank Markus",
- "Ilona",
- "Claudia",
- "Bernd",
- "Claudia",
- "Ludwig",
- "Marc",
- "Oliver Patrick",
- "Burkhard",
- "Dirk",
- "Michael",
- "Jens Christian",
- "Andrea",
- "Stephan",
- "Barbora",
- "Christian H.",
- "Carin-Martina",
- "Gerhard",
- "Matthias",
- "Hans Jörg",
- "Wolfgang",
- "Kadir Serdar",
- "Vadim",
- "Evgeny",
- "Julia",
- "Stefan",
- "Knut",
- "Kai",
- "Holger",
- "Ralf",
- "Dmitri",
- "Rudolf",
- "Annette",
- "Fabian",
- "Richard",
- "Darina",
- "Peter Hanjo",
- "Thomas",
- "Thorsten",
- "Dirk",
- "Michael",
- "Axel",
- "Christina",
- "Stephen",
- "Peter",
- "Anneleen",
- "Andrea",
- "Andrea",
- "Franz-Josef",
- "Markus",
- "Andreas",
- "Alexander",
- "Kerstin",
- "Anne-Marie",
- "Axel",
- "Leoni June",
- "Jan-Peter",
- "Tobias",
- "Jörg",
- "Andreas",
- "Marco",
- "Christian",
- "Robert",
- "Alexander",
- "Stefanie",
- "Horst",
- "Susanne",
- "Michaela",
- "Daniel",
- "Thorsten",
- "Martina",
- "Hans-Otto",
- "Sabine",
- "Ulrich",
- "Wolfgang Hans",
- "Heinz Willi",
- "Paul",
- "Christian",
- "Knut",
- "Barbara",
- "Bruno",
- "Marcus",
- "Oliver",
- "Josef",
- "Marcus",
- "Christian",
- "Thomas Roland",
- "Oliver",
- "Ulrich",
- "Thomas",
- "Alexander",
- "Velimir",
- "Andreas",
- "Frank Mark",
- "Alexander",
- "Isabelle",
- "Jan",
- "Florian",
- "Thomas",
- "Tim",
- "Holger",
- "Guido",
- "Bernd",
- "Stephan",
- "Albin",
- "Oliver",
- "Sinah",
- "Andreas",
- "Irina",
- "Hans-Joachim",
- "Leonie",
- "Philipp",
- "Hans-Georg",
- "Christoph",
- "Viktoria",
- "Veronika",
- "Frank",
- "Axel",
- "Klaus",
- "Jacques",
- "Konrad",
- "Florian",
- "Reinhard",
- "Thomas",
- "Torsten",
- "Andreas",
- "Volker",
- "Christian",
- "Elena",
- "Stephan",
- "Ching Pong",
- "Joachim",
- "Thomas",
- "Michael",
- "Monika Stefanie",
- "Ruth",
- "Bernhard",
- "Harald",
- "Patrick",
- "Kerstin Brigitte",
- "Dirk",
- "Karoline",
- "Lars",
- "Carsten",
- "Massimiliano",
- "Hasan",
- "Henry",
- "Richard Robinson (genannt Rob)",
- "Marcus Antonius",
- "Valeria Jimena",
- "Mark",
- "Rainer Konrad",
- "Nico",
- "Markus",
- "Joska",
- "Oleg",
- "Martin",
- "Barbara",
- "Siegfried Johannes",
- "Manuela",
- "Hans-Martin",
- "Heiko",
- "Simon",
- "Matthias",
- "Claus",
- "Tim",
- "Michael",
- "Hubert",
- "Carina",
- "Jens-Christian",
- "Ulrike",
- "Simon",
- "Thomas",
- "Anno",
- "Marcel",
- "Katja",
- "Hermann",
- "Rolf",
- "Martin",
- "Frederique",
- "Angela",
- "Leonie Isabel",
- "Leonie",
- "Ingo",
- "Thomas",
- "Philip",
- "Elmar",
- "Claudia",
- "Peter",
- "Jochen",
- "Nikolaus",
- "José Ignacio",
- "Peter",
- "Wolfgang",
- "Andrea",
- "Dirk",
- "Hinrich",
- "Martina",
- "Adrienne",
- "Javier",
- "Markus",
- "Peter Renè",
- "Marco",
- "Daniel",
- "Eva",
- "Andreas",
- "Pascal",
- "Jessica",
- "Nadja",
- "Thomas",
- "Patrick",
- "Holger",
- "York Silvan",
- "Alexander",
- "Sebastian",
- "Helmut",
- "Holger",
- "Hansjörg",
- "Rolf",
- "Jochen",
- "Andrea",
- "H. Stefan",
- "Matthias",
- "Aldrit",
- "Kai-Andre",
- "Kay Uwe",
- "Kirsten",
- "Nikolai",
- "Stefan",
- "Bernd",
- "Soenke",
- "Hans Stefan",
- "Michael",
- "Peter",
- "Jens",
- "Christian",
- "Christian",
- "Jens",
- "Thomas",
- "Helmut",
- "Harald",
- "Marco",
- "Dieter",
- "Martina",
- "Bernd",
- "Andreas",
- "Michael",
- "Michael",
- "Frank",
- "Raoul",
- "Christopher",
- "Norbert",
- "Ralf",
- "Josef",
- "Ulrich Stefan",
- "Ralf Andreas",
- "Aljona",
- "Peter",
- "Jürgen",
- "Stefan",
- "Wilfried",
- "Berthold",
- "Markus",
- "Matthias",
- "Holger",
- "Michael",
- "Urs",
- "Markus",
- "Torsten",
- "Gerald",
- "Michael",
- "Manfred Adolf",
- "Holger",
- "Oliver",
- "Ansgar",
- "Andreas",
- "Bettina",
- "Wolfgang",
- "Wolfgang",
- "Joachim",
- "Karsten",
- "Ralf",
- "Andreas",
- "Mario",
- "Michael",
- "Joachim",
- "Michael",
- "Thomas",
- "Jens-Hendrik",
- "Dirk Arthur Margriet",
- "Thomas Magnus",
- "Dominik",
- "Stefan",
- "Ralf",
- "Matthias",
- "Stefan",
- "Thomas",
- "Frank",
- "Janmarc",
- "Bernd",
- "Rolf",
- "Sergio",
- "David",
- "Amalia",
- "Gabriele",
- "Ulrich",
- "Daniela",
- "Edison",
- "Falko",
- "Andreas",
- "Paris",
- "Gabriele",
- "Karin",
- "Alexander",
- "Ulrich Rembert",
- "Matthias Franz",
- "Hartwig",
- "Martin",
- "Anselm",
- "Markus",
- "Bertram",
- "Kai",
- "Felix",
- "Markus",
- "Margarethe",
- "Hilke Maria",
- "Rudolf",
- "Bernd",
- "Lars",
- "Mischa",
- "Javier",
- "Jörg",
- "Ángel Manuel",
- "Juan",
- "Christian",
- "Ulrich",
- "David Alonso",
- "Thomas",
- "Dominik",
- "René",
- "Michael",
- "Denis",
- "Klaus",
- "Bernd",
- "Jil-Mercedes",
- "Rudolf",
- "Vera",
- "Christian",
- "Frank",
- "Stefan",
- "Dana",
- "Simon",
- "Erich",
- "Jürgen",
- "Tobias",
- "Jens",
- "Sven",
- "Stefan Jean",
- "Matthias",
- "Knut",
- "Michael",
- "Ralf",
- "Niklas",
- "Lothar",
- "Martin",
- "Alexander",
- "Carsten",
- "Maren Sofie",
- "Léonie",
- "Richard",
- "Markus",
- "Rainer",
- "Björn",
- "Stefan",
- "Hubert",
- "Thomas",
- "Achim",
- "Janna",
- "Björn Christian",
- "Ramona Friederike",
- "Kristina",
- "Christian",
- "Dagna",
- "Wolfgang",
- "Christian",
- "Jürgen",
- "Birgit",
- "Andreas",
- "Sven-Olaf",
- "Florian",
- "Tobias",
- "Florian",
- "Michael",
- "Marc",
- "Ralf",
- "Tord",
- "Frank",
- "Monika",
- "Lisa",
- "Michael",
- "Andrea",
- "Michael",
- "Timo",
- "Melanie",
- "Jan-Christoph",
- "Tammo",
- "Jörn",
- "Norbert",
- "Robert",
- "Thomas",
- "Knuth",
- "Mirjam",
- "Johannes",
- "Uwe",
- "Wolfgang",
- "Patrick",
- "Mario Christian",
- "Jerry",
- "Hiroyuki",
- "Yunus",
- "Heribert",
- "Frank",
- "André",
- "Stephan",
- "Gunter",
- "Ingo",
- "Klaus",
- "Ansgar",
- "David Jerome",
- "Daniel Heinrich",
- "Yves Marc",
- "Dorothee",
- "Regina",
- "Benjamin",
- "Sven",
- "Robert",
- "Marcus",
- "Herbert",
- "Bernd",
- "Frank",
- "Steffen",
- "Peter",
- "Günter",
- "Gesa",
- "Roy",
- "Philipp",
- "Björn",
- "Kivilaht",
- "Stefan",
- "Anja",
- "Stefan Andreas",
- "Mario",
- "Harald",
- "Johann",
- "Grzegorz",
- "Veronika",
- "Gary",
- "Heiko",
- "Gregor",
- "Joachim",
- "Matthias",
- "Urs Christoph",
- "Klaus Rudolf",
- "Christian",
- "Peter René",
- "Marc",
- "Bernd Adolf",
- "Uwe",
- "Michael",
- "Ralf Martin",
- "Jörg Gerhard",
- "Katharina",
- "Jochen",
- "Oliver Reinhard",
- "Rainer",
- "Luis Gonzaga",
- "John, George",
- "Donald John",
- "Elke Johanna Petronella",
- "Bradford Dean",
- "Brigitte",
- "Marcel",
- "Peter",
- "Karl",
- "Volker",
- "Terry",
- "Karen",
- "Silke",
- "Frank",
- "Hartmut",
- "Bernhard",
- "Peter Hugo Ludwig",
- "André",
- "André",
- "Torsten",
- "Nicolas",
- "Frank",
- "Matthäus",
- "Helge",
- "Martin",
- "Maximilian",
- "Thomas",
- "Mario Bernd",
- "Holger",
- "Marco",
- "Hans-Peter",
- "Barbara",
- "Thomas",
- "Michael",
- "Valentin",
- "Frank",
- "Maren",
- "Sabine",
- "Monika",
- "Bianca",
- "Isabelle",
- "Michael",
- "Ralf",
- "Ralf",
- "Fred",
- "Christian",
- "Torsten",
- "Oliver",
- "Claus",
- "Jörg",
- "Michael",
- "Christian",
- "Sabine",
- "Nils Ingo",
- "Diana",
- "Oliver",
- "Anika",
- "Nuray",
- "Sebastian",
- "Eduard",
- "Jan",
- "Peter",
- "Frank",
- "Alexander",
- "Petra",
- "Thomas",
- "Lena",
- "Björn Pascal",
- "Dominik",
- "Christian",
- "Stefanie",
- "Jürgen",
- "Christian",
- "Christoph",
- "Gerd",
- "Ingo",
- "Ursula",
- "Harald",
- "Hans-Joachim",
- "Raffael",
- "Kathrin",
- "Michael",
- "Sebastian",
- "Andreas",
- "Oliver",
- "Stefan",
- "Helena Marthe",
- "Carmen Ursula",
- "Christoph Klaus",
- "Erik",
- "Kexiao",
- "Thomas",
- "Andreas",
- "Rasim",
- "Manfred",
- "Mirko",
- "Hubertus",
- "Ingolf",
- "Béatrice",
- "Jan Patrick",
- "Thomas",
- "Jens Fritz",
- "Daniel",
- "Christoph",
- "Stefan",
- "Bernd",
- "Jens",
- "Olaf",
- "Christoph",
- "Valentina",
- "Maximilian",
- "Klaus Hans Richard",
- "Frank",
- "Joachim",
- "Tim",
- "Imren Yasar",
- "Thomas",
- "Marcel",
- "Norman",
- "Omid",
- "Mustafa Sohail",
- "Klaus",
- "Jochen",
- "Joachim",
- "Gerald",
- "Hans-Peter",
- "Thomas",
- "Alexander",
- "Özhan",
- "Angelika",
- "Maximilian",
- "Ulf",
- "Constantin",
- "Leoni",
- "Christian",
- "Fritz",
- "Christoph",
- "Klaus Markus",
- "Jörg",
- "Katja",
- "Arne",
- "Nils",
- "Jana",
- "Paul Anthony",
- "Sabine",
- "Thomas",
- "Jörg",
- "Stefan",
- "Martina",
- "Mike",
- "Johannes",
- "Rudolf",
- "Ulrich",
- "Peter",
- "Axel",
- "Jörn",
- "Armin",
- "Anne",
- "Alexander",
- "Andreas",
- "Ingeborg",
- "Thomas",
- "Elisabeth",
- "Johannes",
- "Heidelinde",
- "Klaus Martin",
- "Christian",
- "Marwin",
- "Jens",
- "Markus",
- "Saban",
- "Kemal",
- "Andrea",
- "Birgit",
- "Isabella",
- "Manuela",
- "Stephanie",
- "Thomas",
- "Claudia",
- "Julia Susanne",
- "Martin Ulrich",
- "Jürgen",
- "Christoph Peter",
- "Andreas",
- "Andreas Werner",
- "Krzysztof",
- "Gunter",
- "Michael",
- "Ralf Ernst",
- "Wilhelm",
- "Patrizia",
- "Christian",
- "Markus",
- "Georg",
- "Christina",
- "Leonie Ferike",
- "Thomas Robert",
- "Antje",
- "Sankar",
- "Richard",
- "Mike",
- "Alf",
- "Peter",
- "Horst",
- "Jeannette",
- "Christian",
- "Regina",
- "Peter",
- "Alexander",
- "Dominik",
- "Jochen",
- "Peter Walter",
- "Thomas",
- "Andrea",
- "Angelique",
- "Bernd",
- "Markus",
- "Peter",
- "Rudolf",
- "Roland",
- "Rutger",
- "Sven",
- "Andreas",
- "Constanze",
- "Adam",
- "Lutz Rainhard Erich",
- "Marc Oliver",
- "Franz Stefan",
- "Dieter",
- "Reinhard",
- "Michele",
- "Jürgen",
- "Manfred",
- "Werner",
- "Ursula",
- "Walter",
- "Hannes",
- "Lars",
- "Peter",
- "Xavier Pascal Claude",
- "Jürgen",
- "Norbert",
- "Frank",
- "Ralph",
- "Sandra",
- "Ulrich",
- "Marc",
- "Isabelle",
- "Ulrich",
- "Tilmann",
- "Thomas",
- "Robert",
- "Philipp",
- "Reinhold",
- "Jörg",
- "Robert",
- "Reinhold",
- "Alexander",
- "Andreas",
- "Alexander",
- "Wolfram Rainer",
- "Denis Erich Konrad",
- "Stefan",
- "Michael Gerhard",
- "Julia",
- "Karsten",
- "Alexander Gerhard",
- "Fernando Francisco",
- "Jürgen",
- "Jan",
- "Claus",
- "Marc",
- "Roswitha",
- "Hans-Jürgen",
- "Peter",
- "Susanne",
- "Konstantinos",
- "Amer",
- "Hermann",
- "Tim Sebastian Robert",
- "Anja",
- "Werner",
- "Monika",
- "Semih",
- "Kazim",
- "Susanne",
- "Ilhan",
- "Markus",
- "Marion",
- "Andrea",
- "Ulf",
- "Menno",
- "Norbert",
- "Heike",
- "Bernard Michel Luc",
- "Bertrand Pierre",
- "Andreas",
- "Martin",
- "Bernhard",
- "Thomas",
- "Ludwig Maximilian",
- "Michael",
- "Eva",
- "Peter",
- "Jean Michel",
- "Roland",
- "Stephan Jörg",
- "Ralf",
- "Stephan",
- "Bernhard",
- "Peter",
- "Katrin",
- "Axel",
- "Rüdiger",
- "Thorsten",
- "Heinz",
- "Ralf",
- "Nadine",
- "Achim",
- "Christian",
- "Thorsten",
- "Daniela",
- "Tim",
- "Vincent",
- "Marion",
- "Armin",
- "Klaus",
- "Markus",
- "Anita",
- "Hakan",
- "Christian",
- "Rolf",
- "Leonie Kristin",
- "Patrick",
- "Sebastian",
- "Florian",
- "Felix",
- "Erdmann Ferdinand",
- "Alfred",
- "Holger",
- "Andrea",
- "Alexandra",
- "Jens",
- "Oliver",
- "Sebastian",
- "Marc",
- "Jörg",
- "Frank",
- "Christoph",
- "Tobias",
- "Leonie",
- "Wolfgang",
- "Frank",
- "Jens Joachim",
- "Henning",
- "Klaus",
- "Frank",
- "Sören",
- "Inga",
- "Janna",
- "William Harmens",
- "Thomas",
- "Harald",
- "Yunus",
- "Ewald",
- "Oliver",
- "Christina",
- "Jens",
- "Anna Malgorzata",
- "Vanessa",
- "Karin",
- "Rasha",
- "Julia Christina",
- "Peter Ulrich",
- "Stefan",
- "Natalia",
- "Mathias",
- "Arno",
- "Michael",
- "Francois",
- "Petra",
- "Michael",
- "Manfred",
- "Markus",
- "Sabine",
- "Volker",
- "Jörg Bernd",
- "Robert",
- "Jörn",
- "Matthias",
- "Dietmar",
- "Michael",
- "Dieter",
- "Jens",
- "Hans-Joachim",
- "Dietmar",
- "Philip",
- "Hendrik",
- "Philipp",
- "Jörg",
- "Jonas",
- "Roman Morten",
- "Matthias",
- "Markus",
- "Thomas",
- "Wolf Hendrik",
- "Joachim",
- "Sonja",
- "Alexander",
- "Stephan",
- "Volker",
- "Tim",
- "Barbara Sabine Bianca",
- "Reinhild",
- "Lynn",
- "Stefan",
- "Britta",
- "Joern-Peter",
- "Kathrin",
- "Cordula",
- "Andreas",
- "Heike",
- "Marco",
- "Kerstin",
- "Katrin",
- "Dan Pinhas Bar",
- "Mario",
- "Joachim",
- "John",
- "Jens",
- "Hans",
- "David",
- "Alessandro",
- "Sabia",
- "Laura",
- "Paolo",
- "Khadija",
- "Christoph",
- "Jan-Patrick",
- "Nils",
- "Michael",
- "Ralf",
- "Ashok Prasad",
- "Armin",
- "Mirja",
- "Thorsten",
- "Mareike",
- "Arnd Philipp",
- "Dirk",
- "Patrick",
- "Thomas",
- "Martin",
- "Rüdiger",
- "Ina",
- "Apollonia",
- "Matthias",
- "Michael",
- "Samuel Jean-Pierre",
- "Hervé",
- "Emmanuel",
- "Christian",
- "Melanie",
- "Cathrin",
- "Ingo",
- "Michael",
- "Michael",
- "Benedikt",
- "Rüdiger",
- "Martin",
- "Tanja",
- "Michael",
- "Andreas",
- "Tobias",
- "Bruno",
- "Kshitija",
- "Sylvia",
- "Guido",
- "Denise Angelika Carola",
- "Ikenna Jackson",
- "Kai",
- "Uwe",
- "Philipp",
- "Florian Nicolai Olaf",
- "Jan Philipp",
- "Stefan",
- "Caspar",
- "Annette",
- "Djordje",
- "Matthias Alexander",
- "Sven",
- "Stephan",
- "Arnd",
- "Rüdiger",
- "Stephan",
- "Peter",
- "Jörg",
- "Udo",
- "Lea Rose",
- "Wolfgang",
- "Andreas",
- "Klaudia",
- "Marie-Luise",
- "Hans",
- "Klaudia",
- "Jean-Christophe Gérard Paul",
- "Eric Peter",
- "Torsten Werner",
- "Peter",
- "Lars Henning",
- "Christina",
- "Emil",
- "Kurt",
- "Walter",
- "Michael",
- "Sandra",
- "Andreas Michael",
- "Wolf Hendrik",
- "Marc",
- "André",
- "Philipp",
- "Martina",
- "Sebastian",
- "Jörn",
- "Ingo",
- "Steffen",
- "Stephan",
- "Adrian",
- "Frank Ralph",
- "Trudbert",
- "Matthias",
- "Tobias",
- "Christian",
- "Constantin",
- "Diana",
- "Peter",
- "Martin",
- "Martina",
- "Bianca Susanna",
- "Julian",
- "Norman",
- "Ronald",
- "Stephan",
- "Harry",
- "Frigga-Felicitas",
- "Jürgen",
- "Patricia",
- "Thomas",
- "Jens",
- "Paul",
- "Ola",
- "Jörg",
- "Renata",
- "Sabine",
- "Markus",
- "Britta",
- "Volkmar",
- "Jürgen",
- "Frank",
- "Ronny",
- "Nicole",
- "Matthias",
- "Matthias",
- "Hans-Bahne",
- "Kersten",
- "Ulf",
- "Marcus",
- "Michael",
- "Georges",
- "Thomas",
- "Alexander",
- "Gorden",
- "Michael",
- "Dirk",
- "Jason",
- "Torsten",
- "Joerg",
- "Gunnar",
- "Alexandra",
- "Joerg",
- "Matthias",
- "Bettina",
- "Karl",
- "Andreas",
- "Roland",
- "Ekhard",
- "Andreas",
- "Frank",
- "Georg",
- "Ulrike",
- "Katrin",
- "Carsten",
- "Sabine",
- "Jan",
- "Corinna",
- "Juergen",
- "Christian",
- "Wolfgang",
- "Annette",
- "Corinna",
- "Eckehard",
- "Simone",
- "Annette",
- "Fabian",
- "Ute",
- "Martin",
- "Carmen",
- "Michael",
- "Hans-Peter",
- "Udo",
- "Michaela",
- "Heike",
- "Marietta",
- "Axel",
- "Klaus",
- "Thomas",
- "Mario",
- "Kevin",
- "Burkhard",
- "Sebastian",
- "Udo",
- "Matthias",
- "Mark",
- "Tim",
- "Thomas",
- "Marc",
- "Hugo",
- "Uwe",
- "Klaus",
- "Carsten",
- "Harald",
- "Robert",
- "Michael",
- "Marc-Oliver",
- "Alexander",
- "Jens",
- "Klaus",
- "Simon",
- "Emmerich",
- "Marcus",
- "Stephanie",
- "Vittorio",
- "Carsten",
- "Axel",
- "Peter",
- "Roberto",
- "Jens",
- "Clemenz",
- "Uwe",
- "Alexander",
- "Michael",
- "Jochen",
- "Michael",
- "Oliver",
- "Claudia",
- "Felix",
- "Tatiana",
- "Karin",
- "Teilhard",
- "Marc",
- "Angela",
- "Florian",
- "Frank",
- "Jens",
- "Magnus",
- "Leslie Go",
- "Johannes",
- "Regina",
- "Hubertus",
- "Joachim",
- "Jörg",
- "Stefan",
- "Alexander",
- "Ida",
- "Achim",
- "Andreas",
- "Mathias",
- "Doreen",
- "Tim",
- "Heiko",
- "Marco",
- "Anouck",
- "Marcus",
- "Stefanie",
- "Birgit",
- "Benjamin",
- "Jing",
- "Francesco",
- "Elke",
- "Christoph",
- "Tilo",
- "Philipp",
- "Sebastian",
- "Steffen",
- "Dominik",
- "David Perdomo",
- "Gaby",
- "Silke",
- "Philipp",
- "Sonja Melanie",
- "Kathrin",
- "Carsten",
- "Elmar",
- "Aziz",
- "Carsten Daniel",
- "Lukas",
- "Boris",
- "Jochen",
- "Dominik Tobias Heinz Rudolf",
- "Andreas Michael",
- "Markus",
- "Bernd",
- "Oliver",
- "Donat",
- "Andreas",
- "Mina",
- "Klaus Markus",
- "Gregor",
- "David",
- "Ralf",
- "Ekaterina",
- "Gerald",
- "Eduard",
- "Vyacheslav Antoliyovych",
- "Reinhard",
- "Karin",
- "Petra",
- "Klaus-Jürgen",
- "Gudela",
- "Rico",
- "Peter Uwe",
- "Zhiyun",
- "Denis",
- "Michael",
- "Jochen",
- "Arnd",
- "Michael",
- "Andreas",
- "Jianshen",
- "Ursula",
- "Joachim",
- "Ralf",
- "Martina",
- "Jörgen",
- "Frank",
- "Gerhard",
- "Franz",
- "Bogumila",
- "Karin",
- "Charlotte",
- "Rainer",
- "Bernhard",
- "Zeynep Ayse",
- "Katharina",
- "Franziska",
- "Heinrich",
- "Han",
- "Ulrike",
- "Thomas",
- "Jochem",
- "Annette",
- "Friederike",
- "Willi",
- "Andreas",
- "Ingo",
- "Johann-Friedrich",
- "Richard",
- "Johannes",
- "Christine",
- "Thomas",
- "Stefanie",
- "Holger",
- "Sonja",
- "Henrik",
- "Kerstin",
- "Iris",
- "Volker",
- "Barbara",
- "Olivier",
- "Andrea",
- "Ingrid",
- "Harald",
- "Wolfgang",
- "Helmut",
- "Dirk",
- "Hanns Heinrich",
- "Monika",
- "Nicole",
- "Andriy",
- "Alfredo",
- "Olaf",
- "Susanne",
- "Anna",
- "Ilona",
- "Kerstin",
- "Dirk",
- "Wolfgang",
- "Robert",
- "Aldona",
- "Martin",
- "Gerda",
- "Claudia",
- "Hauke",
- "Nancy",
- "Ingrid",
- "Sebastian",
- "Thilo",
- "Runa",
- "Karin",
- "Agnes",
- "Jörg",
- "Claudia",
- "Sebastian",
- "Carl-Wilhelm",
- "Burkhard",
- "Peter",
- "Stefanie",
- "David",
- "Stephanie",
- "Ellen",
- "Jens",
- "Dandy",
- "Lia",
- "Martin",
- "Mathilde",
- "Peter",
- "Runhao",
- "Thomas",
- "Gerd",
- "Jan",
- "Helene",
- "Volker",
- "Gudrun",
- "York",
- "Oscar",
- "Doris",
- "Markus",
- "Matthias",
- "Karina",
- "Cristiana",
- "Jörg",
- "Stefan",
- "Dirk",
- "Rolf",
- "Andreas",
- "Sebastian",
- "Arndt",
- "Nicole",
- "Robert",
- "Caprice",
- "Nicola",
- "Stephan",
- "Claudia",
- "Vladimir",
- "Otto",
- "Winrich",
- "Sylke",
- "Holger",
- "Roland",
- "Harald",
- "Seyed Mohammad",
- "Brigitte",
- "Christine",
- "Horand",
- "Nevin",
- "Levent",
- "Elisabeth",
- "Stella",
- "Julius",
- "Ekkehard",
- "Michael",
- "Wolf Christian",
- "Rupert",
- "Carsten",
- "Hans Günter",
- "Peter",
- "Hasan Ali",
- "Zeynep",
- "Biljana",
- "Florian",
- "Michael",
- "Angelika",
- "Norbert",
- "Thomas",
- "Katja",
- "Nicholas",
- "Stephan",
- "Hans-Jürgen",
- "Georg",
- "Rebekka",
- "Ulrich",
- "Michael",
- "Stefan",
- "Margarete",
- "Frank",
- "Michael",
- "Reinhard",
- "Philipp",
- "Sabrina",
- "Helga",
- "Dieter",
- "Elisabeth",
- "Thomas",
- "Peter",
- "Angela",
- "Alisa",
- "Kirsten",
- "Oda",
- "Yuyi",
- "Erich",
- "Annette",
- "Sebastian",
- "Andreas Roland",
- "Barbara",
- "Winfried",
- "Markus",
- "Sabine",
- "Jürgen",
- "Alexander",
- "Miron",
- "Lev",
- "Raphaela",
- "Matthias",
- "Anja",
- "Sibille",
- "Helmut",
- "Richard",
- "Sarah Julia",
- "Lena Eleonore",
- "Maja Bernadette",
- "Benjamin",
- "Jörn",
- "Thomas",
- "Yi",
- "Natthinee",
- "Sonia Susanna",
- "Florian Peter",
- "Manuel",
- "Franziska Luise Dorothea",
- "Moritz",
- "Melanie",
- "Lars",
- "Dirk",
- "Volker",
- "Ralf",
- "Karlheinz",
- "Güven",
- "Serge",
- "Jörn Gerald",
- "Patrick",
- "Patrizia Nathalie",
- "Karsten",
- "Christian",
- "Lars",
- "Corentin Francis Louis",
- "Léonie",
- "Peter",
- "Frank",
- "Anja",
- "Zvonko",
- "Andreas",
- "Marc",
- "Ronald",
- "Christoph",
- "Mario",
- "Georg",
- "Katrin",
- "Jörg",
- "Manfred",
- "Erwin",
- "Christian",
- "Clemens",
- "Michael",
- "Karl-Josef",
- "Andreas",
- "Hans-Dieter Hermann",
- "Nuno",
- "Paolo",
- "Frank Graham",
- "Usha Mary",
- "Ros-Marie",
- "Peter-Heinz",
- "Klaus",
- "Johanna",
- "George",
- "Anne Ruth",
- "Yves Jean-Marie",
- "Antoine Rémi Francois",
- "Marco Giovanni",
- "Nicholas Rory",
- "Alla",
- "Jörg",
- "Robin",
- "Petra",
- "Andreas",
- "Daniel",
- "Angela",
- "Frank",
- "Thomas",
- "Andrea",
- "Rainer",
- "Reinhard",
- "Johanna",
- "Frank Jean-Claude",
- "Marie-Christine",
- "Jan",
- "Klaus",
- "Frank",
- "Dirk",
- "Stefan",
- "Sönke",
- "Bert Tomas",
- "Ulrike Stefanie",
- "Patrick",
- "Manfred",
- "Florian",
- "Thomas",
- "Nathalie",
- "Anke",
- "Guido",
- "Christoph",
- "Gudrun",
- "Stefan",
- "Andreas",
- "Guido",
- "Thorben",
- "Joachim",
- "Thorsten",
- "Waltraud",
- "Stefan",
- "Marcel",
- "Katrin",
- "Niels Jörn",
- "Bernhard",
- "Roswitha",
- "Markus",
- "Marlena",
- "Thomas",
- "Stefan",
- "Thi Thuy Huong",
- "Franz",
- "Georg",
- "Anita",
- "Theresia",
- "Gabriele",
- "Oliver",
- "Andreas",
- "Jan",
- "Svetlana",
- "Joern Peter",
- "Matthias",
- "Maria Teresa",
- "Tobias",
- "Katja",
- "Peter",
- "Kerstin",
- "Kathrin",
- "Frank",
- "Martin",
- "Matthias",
- "Sami",
- "Raymund",
- "Daniela",
- "Martin",
- "Niki",
- "Marco",
- "Michael",
- "Frederik",
- "Johan",
- "Wolfgang",
- "Ingo",
- "Franz",
- "Andreas",
- "Martin",
- "Josef",
- "Uwe Jens",
- "Lukas",
- "Ulrich",
- "Dennis",
- "Münür",
- "Gerd",
- "Jörg",
- "Roman",
- "Alexander",
- "Jessica",
- "Stephan",
- "Sebastian",
- "Boris",
- "Christopher",
- "Benjamin",
- "Stephan",
- "Michael",
- "Andre",
- "Gerd",
- "Peter",
- "Thomas",
- "Tobias",
- "Dietmar",
- "Barbaros",
- "Markus",
- "Thorsten",
- "Inka",
- "Arne",
- "Andreas",
- "Mikael",
- "Friedrich",
- "Torsten",
- "Alexander",
- "Murat",
- "Ursula",
- "Thomas",
- "Yvonne",
- "Steffen",
- "Simone",
- "Laura",
- "Christian",
- "Ingrid",
- "Kerstin",
- "Kyriaki",
- "Robert",
- "Christian",
- "Jörg",
- "Sebastian",
- "Cathérine",
- "Fabian",
- "Dirk",
- "Axel",
- "Robin Billy",
- "Michael",
- "Eleonore",
- "Heinz Nikolaus",
- "Ilona",
- "Hildegard",
- "Anselm Werner Aretin",
- "Gunnar",
- "Peter",
- "Ashwin",
- "Dietmar",
- "Mathias",
- "Volker",
- "Ina",
- "Andreas",
- "Esther",
- "Lena",
- "Andreas",
- "Matthias",
- "Michael",
- "Daniel Christian",
- "Hans Helmut",
- "Patrick",
- "Stephan Manuel",
- "Eva",
- "Stephan",
- "Tassilo",
- "Timo Johannes Georg",
- "Frank",
- "Christof",
- "Volker",
- "Martin Arnold Benedikt",
- "Matthias",
- "David Roberto",
- "Stefan",
- "Stephanie",
- "Philip",
- "Evelyn",
- "Franz Xaver",
- "Eva-Maria",
- "Katharina Gisela",
- "Armin",
- "Hans-Dieter",
- "Markus",
- "Rafael",
- "Steffen",
- "Claude",
- "Christiane",
- "Markus",
- "Melanie",
- "Matthias",
- "Oliver",
- "Stella",
- "Sadik",
- "Stefan",
- "Erol",
- "Klaus",
- "Marco",
- "Guido",
- "Swen",
- "Thomas",
- "Lars",
- "Erkan",
- "Kai",
- "Christian",
- "André",
- "Stefan",
- "Stefanie",
- "Guillaume",
- "Allen David",
- "Marco",
- "Edgar",
- "Guido",
- "Thomas",
- "Alexander",
- "Jean-Philippe",
- "Jörg",
- "Kersten Paul",
- "Dr. Marc Thorsten",
- "Winand Will",
- "Peter Hans",
- "Harald",
- "Ömer",
- "Klaus",
- "Erika",
- "Nuno Filipe",
- "Michael",
- "Jörg",
- "Jan",
- "Aleksandra",
- "Holger",
- "Markus",
- "Stefan",
- "Jürgen",
- "Regis",
- "Jonas",
- "Marcus",
- "Bernd",
- "Patxi Xabier",
- "Alexander",
- "José Luis",
- "Hajo Franziskus",
- "Ilya",
- "Nils",
- "Marion",
- "Gabriele",
- "Michael",
- "Sebastian",
- "Simona Lucia",
- "Bernd",
- "Frank",
- "Andreas",
- "Ferdinand Nikolaus",
- "Leif Christian",
- "Sebastian",
- "Benjamin Michael",
- "Johannes",
- "Thorsten",
- "Christian",
- "Alexander Volkmar",
- "Joachim",
- "Christian",
- "Ibrahim",
- "Karsten",
- "Michael Georg Franz",
- "Andreas",
- "Florian",
- "Wim",
- "Miguel",
- "Joachim Hviid",
- "Christian",
- "Constantin",
- "Volker",
- "Eike Johannes",
- "Ulf",
- "Felipe Álvaro",
- "Jochen",
- "Tobias",
- "Frank",
- "Hubert",
- "Günther Willi Otto",
- "Marc",
- "Steffen-Daniel",
- "André",
- "Thomas",
- "Dominik Michael",
- "Xaver",
- "Frank Ralf",
- "Gunter",
- "Markus",
- "Reiner",
- "Monika",
- "Cornelia",
- "Gerd",
- "Bernhard",
- "Henrike",
- "Silke",
- "Thomas",
- "Günter",
- "Stefan",
- "Uwe",
- "Gerd",
- "Klaus-Dieter",
- "Karsten",
- "Peter",
- "Jörg",
- "Erwin",
- "Klaus",
- "Carola",
- "Peter",
- "Markus",
- "Jörg",
- "Clarissa Ilse",
- "Katharina",
- "Alexander Heinz",
- "Dorothee Kordia",
- "Stephan",
- "Uwe",
- "Jakob",
- "Michael",
- "Rainer Werner",
- "Karsten",
- "Andreas",
- "Dirk",
- "Thomas",
- "Timo",
- "Berthold",
- "Andreas",
- "Frank",
- "Johannes",
- "Christoph Alexander",
- "Klaus Jürgen",
- "Susanne",
- "Jörg",
- "Reiner",
- "Thomas",
- "Wolfgang",
- "Jürgen",
- "Frederick",
- "Nils",
- "Oliver",
- "Torsten Patrik",
- "Gunther",
- "Jörn",
- "Stephan Manfred",
- "Olaf",
- "Stefan",
- "Michael",
- "Peter Franz",
- "Petra",
- "Eileen",
- "Clemens",
- "Lars",
- "Alexander",
- "Judith",
- "Marcus",
- "Nicole",
- "Bernhard",
- "Ernst",
- "Christoph",
- "Maik",
- "Markus",
- "Matthias",
- "Isolde",
- "José Luis Blanco",
- "Anja",
- "Robert",
- "Ellen Klara",
- "Anette",
- "Tim",
- "Tilo",
- "Dagmar Maria",
- "Oliver",
- "Karl Christoph",
- "Lutz Axel",
- "Helmut",
- "Stephanie-Manina",
- "Anna Sophie",
- "Marlen",
- "Laura",
- "Leo",
- "Thorsten",
- "Markus Jürgen",
- "Patxi",
- "Kai",
- "Roland",
- "François-Xavier",
- "Babette",
- "Aldo",
- "Josef",
- "Hans-Jürgen",
- "Jürgen",
- "Michael",
- "Uwe",
- "Franz von Sales",
- "Frank",
- "Holger",
- "Christian",
- "Markus",
- "Andreas",
- "Stephan",
- "Marc",
- "Ulrich",
- "Herbert",
- "Christian",
- "Andreas Heinrich",
- "Jan Markus",
- "Stefan",
- "Georg",
- "Roland",
- "Matthias",
- "Bernd",
- "Sebastian",
- "Arnd",
- "Kirsten",
- "Frank",
- "Maciej Eugeniusz",
- "Mehmet Yekhan",
- "Hubert",
- "Alexander",
- "Yunus",
- "Elsa",
- "Matthias",
- "Fabian Phillip Julien",
- "Franz",
- "Georg",
- "Michael",
- "Christian",
- "Deniz",
- "Christian",
- "Martin",
- "Johannes Franz",
- "Mathias",
- "Christian",
- "Uwe",
- "Nadine",
- "Harald",
- "Morten",
- "Martin Aagaard",
- "Frederik Willem Arend Leonard",
- "Rainer",
- "Junfei (Adam)",
- "Matthias",
- "Mario",
- "Martin",
- "Arno",
- "Arne Michael",
- "Dietmar",
- "Thomas",
- "Jens",
- "Ralf",
- "Alfredo Antonio",
- "Antje",
- "Ralf",
- "Karl-Thomas",
- "Jochen",
- "José",
- "Nils",
- "Carina",
- "Michael",
- "André",
- "Alexander",
- "Heiko",
- "Thomas",
- "Michael",
- "Jörg",
- "Dieter",
- "Andreas",
- "Kai",
- "Nils Wolfgang",
- "Oliver Thorsten",
- "Thomas",
- "Albane Elisabeth Pierrette Christine",
- "Enea",
- "Martin",
- "Martina",
- "Lars",
- "Ali Hakan",
- "Sevgi",
- "Siegbert",
- "Jörg Thomas",
- "Ronald",
- "Carsten",
- "Georg Franz Wilhelm",
- "Peter",
- "Richard",
- "Arne",
- "Holger",
- "Erwin",
- "Frank",
- "Nikolai",
- "Karl-Heinz",
- "Peter Sebastian",
- "Dagmar",
- "Hans",
- "Christoph",
- "Bernhard",
- "Georg",
- "Eberhard",
- "Ralf",
- "Philipp",
- "Simon",
- "Klaus",
- "Marco",
- "Verena",
- "Joachim",
- "Hansjörg",
- "Daniela",
- "Alexander",
- "Volker",
- "Tilman",
- "Isabelle",
- "Thorsten",
- "Florian",
- "Joachim",
- "Bernd",
- "Kristof",
- "Thomas",
- "Alexander",
- "Alexander",
- "Stefan",
- "Anke",
- "Wolfgang",
- "Michael",
- "Veronika",
- "Ulrich",
- "Zofia",
- "Armin",
- "Vera",
- "Karsten",
- "Volker",
- "Klaus",
- "Mike",
- "Sören",
- "Lara Marie",
- "Wiebke",
- "Ulrich",
- "Michael",
- "Klaus",
- "Peter",
- "Lars",
- "Frank",
- "Uwe",
- "Ottmar",
- "Stefan",
- "Silke",
- "Hella",
- "Volker",
- "Olaf",
- "Dirk Heinrich",
- "Ulrich Franz",
- "Sebastian",
- "Peter",
- "Stephan",
- "Arnd",
- "Bernd",
- "Florian",
- "Michael Thomas",
- "Frank",
- "Andreas Hilmar",
- "Ulf Jakob Stigson",
- "Ines Margarethe",
- "Helene",
- "Rene",
- "Roland",
- "Gerhard",
- "Philipp",
- "Mike",
- "Klaus",
- "Wladislaw",
- "Stefan",
- "Henric",
- "Jürgen",
- "Torben",
- "Carlo",
- "Heinrich-Ernst",
- "Hendrik Hubertus",
- "Dennis",
- "Thomas",
- "Stephan",
- "Stefanie",
- "Jörg",
- "Christoph",
- "Heinrich",
- "Johann Peter",
- "Claudia",
- "Jürgen",
- "Andrea Ferreira",
- "Christian",
- "Claus",
- "Thorsten",
- "Johann-Philipp",
- "Eva-Maria",
- "Gerald",
- "Peter",
- "Rupert",
- "Evgeniy",
- "Michael Holger",
- "Stephan",
- "Dunja",
- "Ralf",
- "Hendrik",
- "Leonie Anna",
- "Thomas",
- "Peter",
- "Wolfgang",
- "Eberhard",
- "Roman",
- "Matthias",
- "Constantin",
- "Malte",
- "Christian",
- "Christoph",
- "Denny",
- "René",
- "Bruno",
- "Patrick",
- "Willy-Sebastian",
- "Stefan",
- "Claude Laurent",
- "Philip",
- "Bernd",
- "Claudia",
- "Matthias",
- "Andre",
- "Johannes",
- "Frank",
- "Kai Steffen",
- "Stephan Andreas Wilhelm",
- "Ilya Taka",
- "Christian",
- "Markus",
- "Rainer",
- "Thomas",
- "Wolfgang",
- "Eckhard",
- "Enno",
- "Markus",
- "Clemens",
- "Per Markus",
- "Axel",
- "Thomas-Garry",
- "Bernhard",
- "Stefanie",
- "Arthur",
- "Stefan",
- "Michael",
- "Laurent",
- "Britta",
- "Achim",
- "Maximilian",
- "Bernhard",
- "Thomas",
- "François Luc",
- "Lüder",
- "Alexander",
- "Stefan",
- "Sebastian",
- "Martin",
- "Ralf",
- "Jens",
- "Silvia",
- "Mariam",
- "Heinz Stefan",
- "Erhard",
- "Achim",
- "Stephanie",
- "Till",
- "Benedikt Nikolas",
- "Angelika",
- "Ulrich",
- "Martin",
- "Dirk",
- "Cornelia Simone",
- "Mathias",
- "Uwe",
- "Günter",
- "Maik",
- "Anne-Laure",
- "Maria",
- "Egon",
- "Dirk",
- "Martin",
- "Andreas",
- "Marc",
- "Oliver",
- "Eduardo-Jansen",
- "Imke",
- "John",
- "Michael",
- "Jens Tobias",
- "Malte",
- "Stefan",
- "Benjamin",
- "Thomas",
- "Nathan",
- "Carsten Dirk",
- "Dennis",
- "Björn",
- "Alexander",
- "Stefan",
- "Johannes",
- "Marius",
- "Hi-Zin",
- "Sascha",
- "Marco",
- "Camelo",
- "Jan",
- "Ralf",
- "Olaf",
- "Tanja",
- "Rüdiger",
- "Jörg",
- "Peter William",
- "Wolf Dieter",
- "Reiner",
- "Wolfgang",
- "Kabella",
- "Katharina Johanna genannt Käthe",
- "Steffen",
- "André",
- "Johanna",
- "René",
- "Daniela",
- "Benjamin",
- "Tilo T.",
- "Matthias",
- "Hasan",
- "Frank-Michael",
- "Steven",
- "Alexander",
- "Zeno Wilhelm",
- "Harald",
- "Andreas",
- "Alexander",
- "Martin",
- "Frank",
- "Jaap",
- "Petra",
- "Sandra",
- "Holger",
- "Markus",
- "Matthias",
- "Bernhard",
- "Markus",
- "Christian",
- "Gabriele",
- "Werner",
- "Antra",
- "Manfred",
- "Cemil",
- "Tobias",
- "Olaf",
- "Lena",
- "Fabian",
- "Nils-David",
- "Jochen",
- "Wolfgang Nicholas",
- "Matthias",
- "Bastian",
- "Tobias",
- "Roland",
- "Uwe",
- "Danail Ivanov",
- "Gabriel",
- "Barbara",
- "Frauke",
- "Kai",
- "Thomas",
- "Arne",
- "Johannes Kristian Thomas",
- "Markus Ludwig",
- "Sarah",
- "Marcel",
- "Dirk",
- "Heiko",
- "Frank",
- "Leonie",
- "Daniela",
- "Maja",
- "Inge",
- "Harald",
- "Stefan G.",
- "Munkhzul",
- "Alexander",
- "Klaus-Gunter",
- "Regina",
- "Andreas",
- "Jens",
- "Joel",
- "Christian",
- "Felix",
- "Thomas",
- "Christian",
- "Stefan",
- "Sascha",
- "Stefan",
- "Enrico",
- "Tim",
- "Christoph Gilg Reinhard Jürgen",
- "Andreas Ingo",
- "Ralf",
- "Matthias",
- "Thomas",
- "Thomas",
- "Björn",
- "Ana Maria",
- "Björn",
- "Dieter Helmut",
- "Silvio",
- "Manfred",
- "Stefan",
- "Malte Kristian",
- "Damian",
- "Stefan",
- "Susanne",
- "Lutz",
- "Thorsten",
- "Torsten",
- "Achim",
- "Ralf",
- "Haluk",
- "Dirk",
- "Thomas",
- "Michael",
- "Martin",
- "Kai-Uwe",
- "AxeL",
- "Thomas",
- "Eckhardt",
- "Fritz",
- "Joachim",
- "Rainer",
- "René",
- "John Gerard",
- "Peer",
- "Jens Michael",
- "Katrin",
- "Christian",
- "Alexandra",
- "Heike",
- "Vanessa",
- "Hugo",
- "Michaela",
- "Andrejs",
- "Niels",
- "Peter",
- "Olaf",
- "Friedrich",
- "Andreas",
- "Christina",
- "Klaus",
- "Rainer",
- "Holger",
- "Philip",
- "Rainer",
- "Karsten",
- "Sebastian",
- "Arne",
- "Thomas",
- "Martin",
- "Mario",
- "Jörg",
- "Hans-Ludwig",
- "Gunnar-Sönke",
- "Wolfgang",
- "Mijo",
- "Johann",
- "Steffen",
- "Axel",
- "Karl-Friedrich",
- "Herbert",
- "Heike",
- "Alexander",
- "Wolfgang",
- "Alexander",
- "Karl-Heinz",
- "Thorsten",
- "Martin",
- "Peter",
- "Anne-Karina",
- "Jan",
- "Robert",
- "Jörg",
- "Mike Jens",
- "Tobias",
- "Oliver",
- "Jeaninne",
- "Daniel",
- "Kjell",
- "José Javier",
- "Sebastian",
- "Rolf",
- "Christian",
- "Friedemann",
- "Frank",
- "Anett",
- "Tobias Benjamin",
- "Heinz-Jürgen Werner",
- "Patricia",
- "Alexander",
- "Christhard",
- "Marion",
- "Kai-Uwe",
- "Susanne",
- "Michael",
- "Alexander",
- "Dirk",
- "Thomas",
- "Johannes Christoph",
- "Gernot Gerd",
- "Roland",
- "Christian Peter",
- "Jürgen",
- "Jochen",
- "Christoph",
- "Christian",
- "Udo",
- "Marc",
- "Jens Alexander",
- "Antje",
- "Dirk",
- "Torsten",
- "Frank",
- "Thomas",
- "Torsten",
- "Mihiar",
- "Robert",
- "Markus",
- "Thomas",
- "Ernst-Michael",
- "Christoph",
- "Melanie",
- "Bengt-Olof Johannes",
- "Nicole",
- "Mathias",
- "Anja",
- "Jens-Dirk",
- "Daniel",
- "Anton",
- "Knut",
- "Jörg",
- "Olaf",
- "Stefan",
- "Ulrich",
- "Hartmut",
- "Wolfgang",
- "Harald",
- "Marie",
- "Urs",
- "Mats Niklas",
- "Matthias",
- "Timo",
- "Ulrich",
- "Dominik",
- "Rüdiger",
- "Tim Frank",
- "Andreas",
- "Edmund",
- "Stephan",
- "Ramin",
- "Marco",
- "Burkhard",
- "Andreas",
- "Heiko",
- "Peter-Michael",
- "Reena",
- "Michael",
- "Ulrike",
- "Björn",
- "Gunnar",
- "Nicolaus",
- "Martin Norbert",
- "Thorsten",
- "Benedikt",
- "Thomas",
- "Fabian",
- "Juliane",
- "Elke",
- "Oliver",
- "Julia",
- "Beatrice",
- "Tony",
- "Stephan",
- "Axel",
- "Henning",
- "Hans-Jaan",
- "Thorsten",
- "Alexander",
- "Frank Karl",
- "Rainer",
- "Andreas",
- "Ansgar",
- "Sven",
- "Meik",
- "Carolin",
- "Thomas",
- "Ralf Peter",
- "Roberto",
- "Jens",
- "Harald",
- "Bastian",
- "Reinhold",
- "Christopher",
- "Mathias",
- "Bianka",
- "Martina",
- "Michael",
- "Dirk",
- "Werner",
- "Frank",
- "Sabine",
- "Sabine",
- "Pascal",
- "Karl-Heinz",
- "Thomas",
- "Michaela",
- "Uwe",
- "Zsolt",
- "Joerg",
- "Stefan",
- "Christian",
- "Andreas",
- "Jürgen",
- "Daniel",
- "Michael",
- "Christian",
- "Karl",
- "Jürgen",
- "Antonie",
- "Kai-Eberhard",
- "Johannes",
- "Dirk",
- "Christian",
- "Wolfgang",
- "Bernd",
- "Axel",
- "Alexander",
- "Claus",
- "Klaus",
- "Frank",
- "Thorsten",
- "Stefan",
- "Dietmar",
- "Jörg",
- "Yves",
- "Andreas",
- "Stephan",
- "Martin",
- "Norbert",
- "Klaus",
- "Ralf P.",
- "Beat",
- "Horst-J",
- "Norbert",
- "Jan-Erik",
- "Nina",
- "Henning",
- "Gerhard",
- "Michael",
- "Susanne",
- "Joos",
- "Eckard",
- "Tim Alexander",
- "Klaus",
- "Hardi",
- "Andreas",
- "Jochen",
- "Cedrik",
- "Veronika",
- "Robert",
- "Annette",
- "Axel",
- "Michael",
- "Thomas",
- "Peter",
- "Georg",
- "Jürgen",
- "Michael",
- "Yves",
- "Peter",
- "Christian",
- "Thomas Werner",
- "Georg",
- "Michael",
- "Hermann",
- "Aymeric",
- "Sabine",
- "Jelena",
- "Kathy",
- "Robert",
- "Rainer",
- "Peter",
- "Hanna",
- "Susanne",
- "Michael",
- "Rudolf",
- "Saar",
- "Judith",
- "Matthias",
- "Martin",
- "Harald",
- "Eva",
- "Achim",
- "Ingy",
- "Peter Chi Shun",
- "Henning",
- "Christopher",
- "Roland",
- "Meiko",
- "Dirk Leonidas",
- "Heiko Thomas",
- "Steffen",
- "Martin",
- "Georg",
- "Mesut",
- "Margherita",
- "Jan-Michael",
- "Heike",
- "Jürgen",
- "Eva-Maria",
- "Markus",
- "Markus",
- "Thomas",
- "Jürgen",
- "Axel",
- "Eva",
- "Ingo",
- "Thilo",
- "Michael",
- "Vlasta",
- "Christof",
- "Matthias",
- "Detlef",
- "Thomas",
- "Nils",
- "Kerstin",
- "André",
- "Matthias",
- "Patrick",
- "Jörg",
- "Jörg",
- "Peter",
- "Stephan",
- "Martin",
- "Torsten",
- "Beatrix",
- "Ariane",
- "Jens",
- "Bernhard",
- "Felix",
- "Carsten",
- "Hildegard",
- "Nikolaus",
- "Christian",
- "Ted Oliver",
- "Brigitta",
- "David",
- "Jan",
- "Martin",
- "Astrid",
- "Marco",
- "Katja",
- "Bernhard",
- "Michael",
- "Benedikt",
- "Jürgen Thomas",
- "Jochen",
- "Darleen",
- "Gernot",
- "Änne",
- "Elisabeth",
- "Ilka Alexandra",
- "David",
- "Christoph Albert",
- "Michael",
- "Guido",
- "Maren",
- "Laura",
- "Andreas",
- "Sascha",
- "Thomas",
- "Michael",
- "Michael Sean",
- "Uta",
- "Frederic",
- "Kevin",
- "Stefan",
- "Tobias",
- "Christoph",
- "Alexandru",
- "Armin",
- "Edgar",
- "Eric Sandy",
- "Stefan",
- "Corinna",
- "Martin",
- "Uwe",
- "Achim",
- "Nadja",
- "Jens",
- "Dirk-Oliver",
- "Katja",
- "Stefan",
- "Andreas",
- "Ilona",
- "Daniel",
- "Gerrit",
- "Wolfgang",
- "Clemens",
- "Otger",
- "Thomas",
- "Gabriele",
- "Christoph",
- "Stephanie",
- "Ulrich",
- "Rolf Uwe",
- "Dirk",
- "Armin",
- "Malte",
- "Edgar",
- "Zvezdana",
- "Michael",
- "Jan Philipp",
- "Markus",
- "Ulrike",
- "Kunal",
- "Udo",
- "Torsten",
- "Malgorzata",
- "Frank",
- "Dirk",
- "Ingo",
- "Gregor Karl",
- "Klaus",
- "Thomas",
- "Frank",
- "Harald",
- "Stephan",
- "Friederike",
- "Christian",
- "Alexander",
- "Sandrina",
- "Markus",
- "Thorsten",
- "Nicole",
- "Silvio",
- "Ingo",
- "Rabindra",
- "Ulrich",
- "Markus",
- "Ralf",
- "Jürgen",
- "Michael",
- "Thomas",
- "Maik",
- "Roland",
- "Alexander",
- "Friedrich",
- "Jens",
- "Timo",
- "Phillip",
- "Jennifer",
- "Susanne",
- "Holger",
- "Gerd",
- "Mike",
- "Eike",
- "Vitali",
- "Roland",
- "Frank",
- "Florian",
- "Christophe",
- "Dirk",
- "Karl Göran Gunnar",
- "Christian",
- "Daniel Carsten",
- "Nina Susan",
- "Juraj",
- "Normen",
- "Heinz",
- "Florian",
- "Andrea",
- "Susanne",
- "Christian",
- "Ludwig",
- "Dirk",
- "Stefan",
- "Frank",
- "Karsten",
- "Gabriele",
- "Jens",
- "Stephan",
- "Erik",
- "Lars",
- "Thomas",
- "Michael",
- "Markus",
- "Andree",
- "Bart",
- "Karl-Heinz",
- "Gert",
- "Harald",
- "Thomas",
- "Elmar",
- "Michael",
- "Evgenij",
- "Tilmann",
- "Kemal",
- "Carsten",
- "Heiko",
- "Dirk",
- "Paulo",
- "Marten",
- "Thomas",
- "Marie-Cecil",
- "Steffen",
- "Alexander",
- "Volker",
- "Frederick",
- "Frank",
- "Carsten",
- "Mario",
- "Hardy",
- "Christian",
- "Stefan",
- "Dietmar",
- "Angelika",
- "Michael",
- "Thorsten",
- "Patricia",
- "Stephan",
- "Frank",
- "Alexander",
- "Stephan",
- "Jörg Peter Eugen",
- "Sandra",
- "Anja",
- "Carsten",
- "Karsten",
- "Markus",
- "Karl-Peter",
- "Holger Hans Walther",
- "Christian Harald",
- "Karl-Heinz",
- "Hendrik",
- "Magdalena",
- "Mathis",
- "Joaquin",
- "Matthias",
- "Nigel",
- "Paul",
- "Thomas",
- "Mark",
- "David Anthony",
- "Jacob Niklas",
- "Russell James",
- "Mathias",
- "Michael William Maxwell",
- "Richard James",
- "Terri Louise",
- "Adrian",
- "Edward Alfred Dirk",
- "Robert",
- "Frank",
- "Javier Andres",
- "Richard",
- "Matthew John",
- "Heinz",
- "Peter Hubert",
- "Andree",
- "Julian Francis",
- "Dietrich",
- "Viral",
- "Sara",
- "Frank",
- "Matthew Alan",
- "Christian",
- "Lucy Margaret",
- "Eva-Maria",
- "Christina",
- "Kostas",
- "David Michael",
- "Martina",
- "Moritz",
- "Julian Philipp",
- "Ulf",
- "Martin",
- "Andreas",
- "Thomas",
- "Guido",
- "Gunhild",
- "Judith Grace",
- "Madlen",
- "Maximilian",
- "Astrid",
- "Carsten",
- "Sebastian",
- "Joaquín",
- "Hans Jörg",
- "Jade",
- "Matthew",
- "Kirsten",
- "Anthony",
- "Susan",
- "Judith",
- "Klaus",
- "Andrew Peter",
- "Chris",
- "Helen Wendy",
- "Barbara",
- "Sarah",
- "Simon Mark",
- "Dominik",
- "Olaf",
- "Emma",
- "Oliver",
- "Bernd",
- "Victoria",
- "Sarah Louise",
- "Gerd Klemens August",
- "Bernd",
- "Myriam",
- "Bengt-Olof",
- "Kai",
- "Franziska",
- "Isalyne",
- "Stéphane",
- "Laurent Georg",
- "Klaus",
- "Christoph",
- "Jürgen",
- "Florian",
- "Peter",
- "Andreas",
- "Clement",
- "Roland",
- "Jochen",
- "Rainer",
- "Dieter",
- "Jochen",
- "Joachim",
- "Mike",
- "Sven",
- "Thomas",
- "Philipp",
- "Reinhold Maximilian",
- "Tobias",
- "Sascha",
- "Franz",
- "Bernd",
- "Felicia",
- "Daniel",
- "Michaela",
- "Helge",
- "Özcan",
- "Ivica",
- "Christoph",
- "Chris",
- "Peter",
- "Andreas",
- "Thomas",
- "Alexander",
- "Boris",
- "Ralf",
- "Lars",
- "Matthias",
- "Rauli",
- "Petru-Catalin",
- "Wilhelm",
- "Heino Alexander",
- "Mark",
- "René",
- "Thomas",
- "Benjamin",
- "Rudolf",
- "Hans-Jürgen",
- "Sascha",
- "Carsten",
- "Clément",
- "Jan",
- "Christian",
- "Tatjana",
- "Mirco",
- "Andreas",
- "Jana Gertrud",
- "Erika",
- "Jochen",
- "Tim",
- "Timo",
- "Gunther",
- "Pablo Omar",
- "Michael",
- "Gunnar",
- "Ralph",
- "Dirk",
- "Lars",
- "Markus",
- "Jochen",
- "Christian Werner Hans",
- "Peter",
- "Stephan Josef",
- "Lutz",
- "Cemal",
- "Steven",
- "Dirk",
- "Wolfgang",
- "Joachim",
- "Gerhard",
- "Ralf",
- "Jens",
- "Daniel",
- "Herbert",
- "Kuno",
- "Thomas",
- "Klaus",
- "Heino",
- "Daniel",
- "Gisela",
- "Hakan",
- "Andreas",
- "Sven",
- "Robert",
- "Sascha",
- "Christian",
- "Eduardo",
- "Maik",
- "Matthias",
- "Reiner",
- "Frank",
- "Stephan",
- "Arnd",
- "André",
- "Stefan",
- "Martin",
- "Laurenz",
- "Guntram",
- "Arnd",
- "Stefanie",
- "Dirk",
- "Mirko",
- "Oliver",
- "Anja",
- "Ibrahim",
- "Clemens",
- "Rainer Bernd",
- "Thomas",
- "Frank",
- "Ralf",
- "Michael",
- "Bernd",
- "Steffen",
- "Sebastian",
- "Daniel",
- "Olaf",
- "Oliver",
- "Frank",
- "Stefan Toni",
- "Matthias",
- "Marc",
- "Cathrin",
- "Matthias",
- "Daniel",
- "Meik",
- "Vlasta",
- "Sina",
- "Richard Wolfgang",
- "Marc",
- "Christopher",
- "Stephan",
- "Oliver",
- "Arvid Tristram",
- "Marlies",
- "Frederic",
- "Stephan",
- "Frank",
- "Benjamin",
- "Antonio Roberto",
- "Christian",
- "Klaus",
- "Wolfgang",
- "Alexandra",
- "Michael",
- "Christian",
- "Horst",
- "Mathias",
- "Karsten",
- "Martin",
- "Darcy",
- "Catharina",
- "Michael",
- "Kathrin",
- "Steffen",
- "Martin",
- "Robert",
- "Ralf",
- "Lutz",
- "Thomas Christian",
- "Markus Johannes",
- "Hubert",
- "Ingrun-Ulla",
- "Ralph",
- "Thomas",
- "Berend",
- "Thorsten",
- "Jörn",
- "Jesko",
- "Hartmut",
- "Thomas",
- "Josef",
- "Alfred",
- "Karlheinz",
- "Manfred",
- "Christian",
- "Christian",
- "Egon",
- "Achim",
- "Oliver",
- "Gunnar",
- "Clemens",
- "Björn",
- "Stefan",
- "Thomas",
- "Wolfgang",
- "Philip",
- "Stefan",
- "Uwe",
- "Markus",
- "Roman",
- "Arne",
- "Abdallah Fawzi",
- "Carsten",
- "Christian",
- "Karl",
- "Christiane",
- "Dirk",
- "Rainer",
- "Olaf",
- "Elke",
- "Gernot",
- "Thomas",
- "Arno",
- "Astrid",
- "Martin",
- "Lars",
- "Stefan",
- "Michael",
- "Wai Fong",
- "Jutta",
- "Ralf",
- "Klaus",
- "Marzena",
- "Rolf",
- "Manfred",
- "Hauke",
- "Hubert",
- "Marcus",
- "Silke Katharina",
- "Arnd",
- "Marcus Gerhard",
- "Andrea",
- "Thomas",
- "Kai",
- "Imelda",
- "Patrik Andreas",
- "Helge",
- "Andreas",
- "Dr. Michael",
- "Hildegard",
- "Klaus",
- "Oliver",
- "Ludwig",
- "Dirk",
- "Vassilia",
- "Günther",
- "Cornelius",
- "Michael",
- "Frank",
- "Dirk",
- "Jens",
- "Olaf",
- "Henri",
- "Ines",
- "Stephan Joachim",
- "Simon",
- "Oliver",
- "Nils",
- "Phillip",
- "Thorsten",
- "Áine",
- "Lars",
- "Matthias",
- "Günter",
- "Jörg",
- "Ulrich",
- "Peter",
- "Kerstin",
- "Matthias",
- "Albin",
- "Alexander",
- "Gesine",
- "Madelene Maria Helene",
- "Annette",
- "Jens",
- "Andreas",
- "Florian",
- "Achim",
- "Werner",
- "Sigmund",
- "Florian",
- "Katharina Kiran",
- "Shaminder",
- "Thorsten",
- "Silvie",
- "Ute",
- "Andreas-Michael",
- "Sascha",
- "Bianca",
- "Markus",
- "Rainer",
- "Daniel",
- "Gabriele",
- "Stephan",
- "Markus",
- "Artur",
- "Jano",
- "Will",
- "Anica",
- "Hauke",
- "André",
- "Nicole",
- "Peter",
- "Marc Georg",
- "Jochen",
- "Simona",
- "Christa",
- "Andreas",
- "Hendrik",
- "Michael",
- "Erik",
- "Michael",
- "Ursula",
- "Jürgen",
- "Aaron",
- "Christian",
- "Erik",
- "Friedrich",
- "Waldemar",
- "Bernd",
- "Stefan",
- "Manfred Josef",
- "Michael",
- "Niko",
- "Mark",
- "Tobias",
- "Sven",
- "Christian",
- "Michael",
- "Birgit",
- "Dirk",
- "Stefan",
- "Alexander",
- "Günter",
- "Joachim",
- "Hubert",
- "Frank",
- "Wybcke",
- "Amely",
- "Elen",
- "Julian",
- "Friedrich-Christian",
- "Albin Heinz",
- "Luzian",
- "Uwe",
- "Michael",
- "Christian",
- "Volker",
- "Meiko",
- "Nicola",
- "Roman",
- "Oliver",
- "Joachim",
- "Antje",
- "Thomas",
- "Aneka",
- "Anika",
- "Benjamin",
- "Thomas",
- "Robert",
- "Lukáš",
- "Martin",
- "Annett",
- "Birgit",
- "Stefan",
- "Sascha",
- "Sirko",
- "Hugo Phillip",
- "Michael",
- "Mathias",
- "Heinz-Hermann",
- "Sebastian",
- "Sandra",
- "Patrick",
- "Dietrich",
- "Olaf",
- "Peter",
- "Stefan",
- "Matthias",
- "Susanne",
- "Niels",
- "Normen",
- "Michael",
- "Michael",
- "Stefan",
- "Gunnar",
- "Cerstin",
- "Martin",
- "André",
- "Andre Josef",
- "Isabelle",
- "Melanie",
- "Frank",
- "Ralf",
- "Christian",
- "Rainer",
- "Stephan",
- "Carsten",
- "Uwe",
- "Fabian",
- "Dirk Günter",
- "Meno",
- "Ulrich",
- "Hardy",
- "Stefan",
- "Jürgen Hans Hermann",
- "Oliver Michael",
- "Florian",
- "Christoph",
- "Axel",
- "Annekatrin",
- "Patrick",
- "Isabel",
- "Stefan",
- "Wilfried",
- "Christian",
- "Ingmar Hellmut",
- "Arnaud",
- "Jochen",
- "Patricia",
- "Christoph",
- "Marco",
- "Simon",
- "Rasmus",
- "Timo Alexander",
- "Jörn",
- "Klaus",
- "Christoph",
- "Guido",
- "Christopher",
- "Robin",
- "Oliver",
- "Hermann",
- "Tim",
- "Thomas",
- "Berthold Josef",
- "Dieter",
- "Michael",
- "Arnd",
- "Peter",
- "Tim",
- "Christoph",
- "André",
- "Sigmund",
- "Thorsten",
- "Karsten",
- "Thomas",
- "Tarik",
- "David",
- "Erik",
- "Jürgen",
- "Florian",
- "Christian",
- "Sybille",
- "Nina Daniela",
- "Mathias",
- "Sebastian",
- "Karsten Rudolf",
- "Jürgen",
- "Hella",
- "Tim",
- "Jan-Peter",
- "Johanna Elisabeth Ursula",
- "Friederike Juliane",
- "Nanna",
- "Peter",
- "Ulrike",
- "Christian",
- "Thorsten",
- "Thomas",
- "Heinz-Willi",
- "Hartmut",
- "Andreas",
- "Heinrich",
- "Tobias Fabian",
- "Thomas",
- "Ralf",
- "Dagmar",
- "Florian",
- "Thorsten",
- "Stefan",
- "Matthias F.",
- "Kathrin",
- "Doreen",
- "Holger",
- "Dominik",
- "Stefan",
- "Carsten",
- "Michael Jakob",
- "Martin",
- "Frank",
- "Timo",
- "Armin",
- "Mike",
- "Claudia",
- "Rüdiger",
- "Bernhard",
- "Rainer",
- "Andreas",
- "Florens",
- "Klaus",
- "Martin",
- "Thomas",
- "Christian",
- "Frank",
- "Rupert",
- "Marion",
- "Julia",
- "Juan Ramon",
- "Michael",
- "Jörg",
- "Michael",
- "Sven",
- "Andreas",
- "Annette",
- "Richard",
- "Falk",
- "Manina Juliette",
- "Claudia",
- "Wolfgang",
- "Marianne",
- "Olaf",
- "Franz",
- "Tobias Jilanie",
- "Bernhard",
- "Peter",
- "Viola",
- "Tim",
- "Yannick",
- "Torsten",
- "Uwe",
- "Marko",
- "Shahin",
- "Sandy",
- "Sergej",
- "Shinobu",
- "Franziska",
- "Stefan",
- "Mark",
- "Klaus",
- "Mehran",
- "Elitsa",
- "Joachim",
- "Tobias",
- "Evi",
- "Gerd",
- "Markus Stefan",
- "Heino",
- "Thomas",
- "John",
- "Jens Christian",
- "Manuela",
- "Heinz",
- "Roland",
- "Andreas",
- "Annette",
- "Tobias",
- "Markus",
- "Nicole",
- "Alfons Johann",
- "Markus",
- "Valentina",
- "Yelamate Mallikarjuna",
- "Achim",
- "Jürgen",
- "Ralf",
- "Jürgen",
- "Tilman",
- "Tobias",
- "Gerda",
- "Marc",
- "Ingo",
- "Uwe",
- "Gunnar",
- "Jörg",
- "Jörg",
- "Andreas",
- "Frank",
- "Sascha Klaus Eric",
- "Patricia",
- "Rafael",
- "Gabriele Martha",
- "Frank",
- "Jan Felix Filemon",
- "Doreen",
- "Andre",
- "Christian",
- "Christian",
- "Gerd",
- "Ralf",
- "Kai",
- "Thomas",
- "Claudia-Susann",
- "Oliver",
- "Peggy",
- "Sandro",
- "Kevin",
- "Erik",
- "Alexander",
- "Dirk",
- "Arne",
- "Rolf",
- "Manuel",
- "Kükenshöner",
- "Stefan",
- "Tom",
- "Ralph-Dieter",
- "Stephen",
- "Ekkehard",
- "Beatrice-Alexandra Gabriele",
- "Sebastian",
- "Wilm",
- "Anne",
- "Peter",
- "Petra",
- "Michael",
- "Eric Marie Karl Rene",
- "Jan",
- "Stefan",
- "Karsten",
- "Bernhard Johannes",
- "Alexander",
- "Javier Angel",
- "Michael",
- "Vivianne",
- "Dirk",
- "Stephan",
- "Dirk",
- "Jens",
- "Thorsten",
- "Hagen",
- "Bodo",
- "Michael",
- "Helge Knut",
- "Hendrik",
- "Oliver",
- "Alfons",
- "Gerhard",
- "Manuela",
- "Bernd",
- "Siegmund",
- "Holger",
- "Sven",
- "Helene",
- "Petra",
- "Dieter",
- "Ralf",
- "Markus",
- "Abdelkader",
- "Thomas",
- "Jessica",
- "Martijn",
- "Dirk",
- "Kai",
- "Berthold",
- "Jürgen",
- "Friedrich-Wilhelm",
- "Nikolai",
- "Arno",
- "Dominik",
- "Rainer",
- "Jens",
- "Thomas",
- "Johann",
- "Stefan",
- "Marijn",
- "Philipp",
- "Wolfgang",
- "Wolfgang",
- "Otto",
- "Waldemar",
- "Georg",
- "Markus",
- "Ralf",
- "Thorsten",
- "Claus",
- "Cornelia",
- "Niels",
- "Ingrid-Helen",
- "Markus",
- "Wolfgang",
- "Hans-Peter",
- "Lars",
- "Rainer",
- "Werner",
- "Michael",
- "Martin",
- "Ines Ricarda",
- "Martina",
- "Christin",
- "Wolfgang Ernst",
- "Dirk",
- "Norbert Karl-Josef",
- "Gerd",
- "Andreas",
- "Tim",
- "Nina",
- "Kai-Uwe",
- "Alexander",
- "Leonard",
- "Anja",
- "Felix",
- "Jürgen",
- "Manuel",
- "Annette",
- "Georg",
- "Petra",
- "Luc Jan",
- "Baptiste Raymond",
- "Anna Felicitas",
- "Arndt Jörg",
- "Sandra",
- "Armin",
- "Rainer",
- "Henning",
- "Udo",
- "Christian",
- "Norbert Frank",
- "Sebastian",
- "Martin",
- "Reinhold",
- "Christoph",
- "Frits",
- "Stefan",
- "Birte",
- "Florian",
- "Stefan",
- "Gunnar",
- "Oliver",
- "Dieter",
- "Stephan",
- "Peter",
- "Nicola",
- "Marion",
- "Ilka",
- "Martin",
- "Egon",
- "Wolfgang",
- "Jörg",
- "Rainer",
- "Klaus",
- "Knut",
- "Michael",
- "Matthias",
- "Nicole",
- "Frank",
- "Thomas",
- "Dennis",
- "Volker",
- "Jens",
- "Max Werner gen. Werner",
- "Guido",
- "Alexander",
- "Matthias",
- "Eva",
- "Tina",
- "Roland",
- "Gertrud",
- "Ingo",
- "Stefanie",
- "Jürgen",
- "Thomas",
- "Christoph",
- "Olaf",
- "Jan",
- "Georg",
- "Andreas",
- "Peter",
- "Jörn",
- "Tina",
- "Marc",
- "Jan",
- "Tobias",
- "Christoph",
- "Dirk",
- "Till",
- "Thomas",
- "Adel Bedry",
- "Andreas",
- "Andy",
- "Jan",
- "Carsten",
- "Jürgen",
- "Norman",
- "Klaus",
- "Tanja",
- "Christian",
- "Urs Michael",
- "Björn",
- "Laura",
- "Dirk",
- "Maik",
- "Georg",
- "Janine",
- "Gregory",
- "Thomas",
- "Jochen",
- "Frank",
- "Jens",
- "Heiko",
- "Ralf",
- "Martin",
- "Alexandra",
- "Ernst-Jan",
- "Anthony",
- "Christian",
- "Kathrin",
- "Sven",
- "Jan",
- "Alena",
- "Holger",
- "Meike",
- "Michael",
- "Alban Kornelius",
- "Thomas",
- "Antonino",
- "Lars",
- "Ralf",
- "Andreas",
- "Christian",
- "Holger",
- "Hans-Thomas",
- "Frank",
- "Marco",
- "Frank",
- "Michael",
- "Dirk",
- "Heinrich",
- "Ralf",
- "Alexander",
- "Christian",
- "Mikinari",
- "Stephan",
- "Thomas",
- "Karl",
- "Peter",
- "Massimo",
- "Marina",
- "Bernd",
- "Stefanie",
- "Elke-Sabine",
- "Sven Olaf",
- "Carolin",
- "Ralf",
- "Frederik",
- "Peter Stefan",
- "Dieter",
- "Klaus",
- "Jan",
- "Andreas",
- "Bert",
- "Jörg",
- "Christine",
- "Thomas",
- "Ralf",
- "Andreas",
- "Katharina",
- "Dirk Michael",
- "Mario",
- "Rasmus",
- "Jens",
- "Michael",
- "Ulrich",
- "Christian",
- "Günter",
- "Andy",
- "Niels",
- "Harald",
- "Volker",
- "Axel",
- "Christian",
- "Timo",
- "Dennis",
- "Andreas",
- "Hans-Peter",
- "Peter",
- "Marc",
- "Volker",
- "Veit",
- "Volker",
- "Wolfgang",
- "Marcus",
- "Diethard",
- "Jens",
- "Anna",
- "Marcus",
- "Jürgen",
- "Markus",
- "Lutz-Martin",
- "Markus",
- "Rüdiger",
- "Karsten",
- "Annette",
- "Gerrit Arnd",
- "Andreas",
- "Andreas",
- "Carsten",
- "Thomas",
- "Michael",
- "Markus",
- "Matthias",
- "Ingo",
- "Andre",
- "Christian",
- "Bernhard",
- "Matthias",
- "Jörg",
- "Arnd",
- "Markus",
- "Ulf",
- "Uwe",
- "Jan",
- "Guido",
- "Chris",
- "Anton",
- "Stefan",
- "Ayten",
- "Oliver",
- "Joachim",
- "Peter",
- "Jendrik",
- "Holger",
- "Henning",
- "Stefan",
- "Alexandra",
- "Carsten",
- "Markus",
- "Astrid",
- "José Miguel",
- "Chris",
- "Markus",
- "Marie Sophie",
- "Stefan",
- "Hans",
- "Slobodan",
- "Carolyn",
- "Jessica",
- "Andreas",
- "Frederik",
- "Andreas",
- "Lars",
- "Erika",
- "Michael",
- "Burkhard",
- "Ulrich",
- "Harald Gerhard",
- "Andreas",
- "Markus",
- "Hans-Jörn",
- "Karsten",
- "Dirk",
- "Christian",
- "Birgit",
- "Heike",
- "Christian",
- "Simon",
- "Volker",
- "Karina",
- "Helge",
- "Tobias",
- "Frank",
- "Ralf",
- "Anita",
- "Jan Heinrich",
- "Gerlach Alexanders",
- "Jasmin",
- "Henning",
- "Robert",
- "Oliver Johannes",
- "Jacqueline",
- "Ralph",
- "Christian",
- "Annett",
- "Anne",
- "Vera",
- "Mirana",
- "Andrea",
- "Martin",
- "Arnd",
- "Guido",
- "Angelika",
- "Alexandra",
- "Mark",
- "Jörg",
- "Bernhard",
- "Matthias",
- "Martin",
- "Tobias",
- "Mark",
- "Simon",
- "Andreas",
- "Matthias",
- "Dietmar",
- "Daniel",
- "Andreas Werner",
- "Marcus",
- "Alexander Anton",
- "Karl Andreas",
- "Karl-Wilhelm",
- "Jürgen",
- "Ercan",
- "Hans-Peter",
- "Thorsten",
- "Marko Cornelius Peter",
- "Rüdiger Karl",
- "Stephan",
- "Dirk",
- "Karl",
- "Verena",
- "Hans Wolf",
- "Joachim",
- "Max",
- "Kai",
- "Ulrike",
- "Markus",
- "Tobias",
- "Rainer",
- "Andreas",
- "Ralf",
- "Erik",
- "Ralf",
- "Niels-Jakob",
- "André",
- "Rodica",
- "Andreas",
- "Maximilian",
- "Nana Ruth",
- "Henk",
- "Johannes Marius Alexander",
- "Robert",
- "Simon",
- "Elie",
- "Tobias",
- "Simon",
- "Frieder",
- "Thomas",
- "Sven",
- "Kai",
- "Marcus Christian",
- "Markus",
- "Judith",
- "Michael",
- "Markus",
- "Ann-Cathrin",
- "Uwe",
- "Tim",
- "Johann Börries",
- "Wolfgang Hans",
- "Stephanie",
- "Andreas",
- "Olaf",
- "Christian",
- "Helge Christian",
- "André",
- "Axel",
- "Oliver",
- "Christian",
- "Ralf",
- "Simon",
- "Michael",
- "Ute",
- "Stefan",
- "Benjamin",
- "Moritz",
- "Christoph",
- "Saskia",
- "Silvia",
- "Helmut",
- "Jörn",
- "Kamila",
- "Andreas",
- "Heiko",
- "Christian",
- "Robert",
- "Silvia Susanne",
- "Uwe",
- "Ulf",
- "Ralf",
- "Bernhard Herbert",
- "Axel Christian",
- "Eric",
- "Masood",
- "Carsten",
- "Thomas",
- "Stefan",
- "Dieter",
- "Maik",
- "Thomas",
- "Ralph Michael",
- "Tim",
- "Michael Jürgen",
- "Chang",
- "Helene",
- "Sebastian",
- "Ralf",
- "Daniel",
- "Torsten",
- "Thomas",
- "Christian",
- "Andreas",
- "Alexander",
- "Anton",
- "Felix",
- "Karl",
- "Christoph",
- "Sandra",
- "Sascha",
- "Andreas",
- "Franz-Josef",
- "Thomas",
- "Jan-Bernd",
- "Henning",
- "Simone",
- "Marco",
- "Peter",
- "Dagmar",
- "Detlev",
- "Matthias",
- "Nils",
- "Frank",
- "Dennis",
- "Helene",
- "Wina",
- "Dirk",
- "Ulrich",
- "Lena",
- "Bernd",
- "Jörg",
- "Markus",
- "Steffen",
- "Ralf",
- "Marco",
- "Stefan",
- "Marcel",
- "Henning",
- "Sebastian",
- "Marcus",
- "Mirko",
- "Anne",
- "Sven",
- "Sascha",
- "Thomas",
- "Michael",
- "Robert",
- "Michael",
- "Susan-Katrin",
- "René",
- "Mareike",
- "Timm",
- "Sandra",
- "Sascha Marco",
- "Ingolf",
- "Andreas",
- "Rene",
- "Walter",
- "Klaus",
- "Karsten",
- "Klaus",
- "Heike",
- "Andreas",
- "Elmar",
- "Tobias",
- "Daniela",
- "Catrin",
- "Elke",
- "Philip",
- "Timo",
- "Christopher",
- "André",
- "Andrew",
- "Reinhold",
- "Matthias",
- "Anne Sybille",
- "Leonie",
- "Thomas",
- "Sergey",
- "Alexander",
- "Jörn",
- "Kai-Uwe",
- "David",
- "Thomas Reinhard",
- "Tessa",
- "Martin",
- "Mareike",
- "Ingo",
- "Christian",
- "Nils",
- "Ansgar",
- "Markus",
- "Robin",
- "Jan",
- "Jens",
- "Matthias",
- "Carsten",
- "Guido",
- "Melanie",
- "Susanne",
- "Alexandra",
- "Axel",
- "Thomas",
- "Thomas",
- "Michael",
- "Udo",
- "Arindam",
- "Karin",
- "Rico",
- "David",
- "Christian",
- "Mathias",
- "Volker",
- "Mathias",
- "Michael",
- "Ralph",
- "Matthias",
- "Nicoletta",
- "Marc",
- "Josef",
- "Fanni Tünde",
- "Dorothee",
- "Holger",
- "Lennart Christopher",
- "Ian",
- "Tobias",
- "Maximilian",
- "Gero",
- "Karen",
- "Andre",
- "Jan-Hendrik",
- "Frederic",
- "Markus Franz",
- "Peter",
- "Stephan",
- "Jörg",
- "Peter",
- "Henri",
- "Bernhard",
- "Jörg Peter",
- "Jochen",
- "Christian",
- "Erk Thorsten",
- "Rolf",
- "Thomas",
- "Robert",
- "Christoph",
- "Frank",
- "Vassiliki",
- "Andreas",
- "Thomas",
- "Thomas",
- "Benedikt",
- "Marcus",
- "Christian",
- "Andrea",
- "Robert",
- "Christian",
- "Uwe",
- "Martin",
- "Christian",
- "Andreas",
- "Tobias",
- "Christoph",
- "Christian",
- "Wolfgang",
- "Laurent",
- "Martin",
- "Konrad",
- "Rainald",
- "Sieglinde",
- "Hans-Christof",
- "Ronald",
- "Thomas",
- "Jutta",
- "Markus",
- "Torsten",
- "Stefan",
- "Wolfgang",
- "Angela",
- "Martina",
- "Thomas",
- "Frank",
- "Jan",
- "Muhamed",
- "Bianca",
- "Peter",
- "Eva",
- "Ilaria",
- "Thomas",
- "Markus",
- "Thomas",
- "Christian",
- "Matthias",
- "Christian",
- "Stefan",
- "Michael",
- "Sebastian",
- "Helmut",
- "Stefan",
- "Reinhard",
- "Albrecht",
- "Hans-Peter",
- "Robert",
- "Diana Yemi Elise",
- "Dinesh",
- "David",
- "Astrid",
- "Sandra",
- "Anne",
- "Bruno",
- "Sara Maria",
- "Matthias",
- "Martin",
- "Heike Ursula Erna",
- "Gert Günter Willi",
- "Egbert",
- "Matthias",
- "Sebastian",
- "Stefan",
- "Sabrina",
- "Max",
- "Marco",
- "Ingo",
- "Stefan",
- "Marc",
- "Lars",
- "Nils Lars",
- "Torge",
- "Monika",
- "Safet",
- "Valerio",
- "Werner",
- "Richard"
- ],
- "mode": "markers",
- "name": "DataFrame 2",
- "type": "scatter",
- "x": [
- 95962.08383797004,
- 95958.17194866823,
- 96588.81767117835,
- 95948.88284577774,
- 95880.89608253656,
- 96750.96023331824,
- 96510.55405575983,
- 95767.91624828705,
- 96740.50167159707,
- 97209.95143029183,
- 97361.55787856234,
- 96730.38048016379,
- 96981.97292405601,
- 97064.56846526945,
- 96996.94863760758,
- 95612.3798589922,
- 97025.10002004895,
- 97085.03905872672,
- 97181.50823801635,
- 97107.98327536366,
- 96671.54609170722,
- 96264.44273321965,
- 97372.74334299575,
- 97234.35747194423,
- 97271.91592592461,
- 97377.86830334815,
- 97325.9129722734,
- 97061.7840428774,
- 97215.01978405566,
- 97358.31856309062,
- 97190.77820654793,
- 96441.85290714615,
- 97203.18137378134,
- 96615.52267587048,
- 97362.57990476971,
- 96430.3182329276,
- 97216.0877466562,
- 97087.72560216134,
- 96827.37265721356,
- 97471.93322774443,
- 96478.42530029602,
- 97500.18404094946,
- 96989.78155035034,
- 98448.42923749553,
- 97143.83269179585,
- 97369.40146033755,
- 97339.71103793576,
- 96553.64509810388,
- 97302.65739635656,
- 97335.30821090189,
- 96554.76711541406,
- 97344.39094759998,
- 98269.13543855402,
- 97120.93183600294,
- 97096.28494217026,
- 96822.6506902651,
- 97442.83746991267,
- 96832.47969398995,
- 97815.81719436,
- 98066.53944077659,
- 97949.99254977489,
- 97258.58975162834,
- 97072.87553268592,
- 97177.44060503879,
- 98940.06816975218,
- 98016.83324711236,
- 97830.47996234937,
- 97767.76658830828,
- 96641.47157063635,
- 97299.95033359852,
- 97365.44574077036,
- 97290.08489077912,
- 97322.93543564298,
- 97060.5787311115,
- 97049.53534278259,
- 97242.69405553193,
- 98081.17812602762,
- 97249.66244594876,
- 97854.52508088839,
- 97955.02720756274,
- 97077.71122197901,
- 96385.16496434633,
- 97510.89358759671,
- 98459.92232309152,
- 97615.68830856765,
- 98138.33403478275,
- 97827.98206777098,
- 96467.8745823571,
- 95886.51435711926,
- 98461.45076976992,
- 98367.57183739317,
- 96854.14568860013,
- 97266.32321649927,
- 97363.0231077364,
- 97395.40628065314,
- 96172.41683035072,
- 96250.45766620964,
- 95520.1645763566,
- 98448.70225290018,
- 96321.45254240566,
- 97264.50790734109,
- 97236.52009824176,
- 97339.43922054533,
- 97243.18425457999,
- 97315.50747893736,
- 97215.05533166551,
- 96750.67919465902,
- 96758.2131173848,
- 96298.09511180542,
- 95861.24531062585,
- 96714.78752865449,
- 97410.9196281361,
- 96859.54396498862,
- 96181.25693811684,
- 96930.48088011655,
- 97770.14515646077,
- 97490.27494702111,
- 97286.18570891903,
- 97389.10178705663,
- 97331.16186692334,
- 96488.13453110759,
- 96074.87019613585,
- 97074.27772427908,
- 96074.67218939119,
- 97117.04988156656,
- 96276.76290288504,
- 96138.27909570166,
- 97145.57365835275,
- 96646.8046235456,
- 95954.7235059804,
- 97344.23333565774,
- 97312.16899856621,
- 97226.77467613107,
- 97363.94242415007,
- 96602.40260405943,
- 95405.95241141658,
- 97026.79872519187,
- 96882.48118360608,
- 96170.99341163754,
- 96129.26226123162,
- 97352.31659100096,
- 96609.21495158957,
- 98432.06023611217,
- 96466.10004162915,
- 95721.84547331538,
- 97171.80979185148,
- 96673.26868148368,
- 97242.36535343947,
- 96662.13325458604,
- 95361.48898776405,
- 96723.71649615404,
- 96577.78689065653,
- 96304.89053116819,
- 96020.02948032114,
- 94721.83869654656,
- 97298.65959230787,
- 96640.12295334176,
- 96271.64391619014,
- 96408.13622599524,
- 97309.18348925584,
- 97289.56699193796,
- 97270.2903153982,
- 96874.40221688445,
- 96746.46975225132,
- 96348.29844805674,
- 96668.17509388815,
- 96090.94263214861,
- 96360.12432055575,
- 96792.48106870924,
- 96829.16589823875,
- 96813.03260829017,
- 96852.64814433026,
- 97324.36613168383,
- 97379.06355223498,
- 96719.96913872726,
- 96565.3052812955,
- 96062.65271303893,
- 96318.63129865125,
- 96775.11425416196,
- 97357.37235340624,
- 97277.72395289454,
- 97289.76170017247,
- 97321.48237207504,
- 97227.68741107298,
- 97204.20955384977,
- 96229.06326601339,
- 97325.19271104848,
- 97617.21646735941,
- 98449.27256362812,
- 96581.33099308431,
- 97228.58212383334,
- 97299.24309043337,
- 97252.41548140156,
- 97357.81547028142,
- 97236.43218292532,
- 97305.00730192695,
- 97195.88804075729,
- 97218.59509104007,
- 96261.3196088678,
- 93808.41622785716,
- 96850.96393927754,
- 96537.12189876002,
- 96361.20003453246,
- 96470.92604424445,
- 96487.89609305817,
- 96645.9713144198,
- 96399.42211136232,
- 96412.58182949589,
- 95545.86201701668,
- 96748.01232561683,
- 96556.53529112086,
- 96657.04377656122,
- 96611.79891677048,
- 97214.1761793492,
- 96131.39404043475,
- 96721.96485809215,
- 96569.72587527646,
- 96176.22696258772,
- 96122.91322426367,
- 96198.64527732105,
- 97964.68713880659,
- 97183.30733835287,
- 92882.88036181602,
- 93947.1652778539,
- 96330.25949972049,
- 97170.81081425113,
- 95845.43465437011,
- 94883.17834351698,
- 96709.27952791477,
- 96667.2918950391,
- 95837.80625601206,
- 96820.63808370597,
- 96806.18517489852,
- 97280.51740997269,
- 96714.28622859313,
- 96088.28655554891,
- 96842.71240942011,
- 96636.80398752526,
- 96814.47946325276,
- 96686.4149689825,
- 96733.90105315663,
- 96744.78801527941,
- 96492.3193299354,
- 96406.73123341237,
- 96335.82539154506,
- 96082.8637414932,
- 96567.91127200374,
- 96501.22061638958,
- 96231.57047597128,
- 96447.73644124497,
- 96907.51876847682,
- 96140.78208609398,
- 96791.93089613823,
- 96773.1294794952,
- 97215.55371993229,
- 96989.24436251477,
- 96715.92227964214,
- 96692.76062085203,
- 96896.91552525175,
- 96737.85869639236,
- 95444.01440252263,
- 96447.8287589237,
- 96639.08049903584,
- 97213.58157620984,
- 96349.45899615414,
- 96911.82889073166,
- 96584.25000074002,
- 97638.83972944805,
- 97141.32121371166,
- 97589.68831697167,
- 96754.87507754394,
- 97436.04173144014,
- 96829.7050884141,
- 96707.30691234408,
- 96535.511292164,
- 96405.25838544288,
- 96596.4969197861,
- 96957.15143187257,
- 98108.28736915902,
- 97092.03590641617,
- 95739.18477075809,
- 95638.78273951489,
- 96868.09370002619,
- 96840.061255232,
- 97740.36484145897,
- 97228.17238280359,
- 96287.81181504241,
- 97306.68660394431,
- 97519.14188663122,
- 96800.95464898097,
- 96931.14707892697,
- 96653.93028602129,
- 96612.17178282065,
- 94019.39320785269,
- 96918.79607718707,
- 95778.09112358528,
- 94801.82599832956,
- 94998.66487738185,
- 95681.96009977852,
- 95501.99445714205,
- 95451.74998648891,
- 97377.6500584912,
- 96959.17409848377,
- 97453.56935622763,
- 97492.36374902399,
- 97452.67144706869,
- 97467.97384514623,
- 96643.07015445872,
- 96616.28197124632,
- 96611.07880435153,
- 95591.49480913648,
- 96743.02101349403,
- 96450.68991158345,
- 96877.98110658897,
- 97082.82303991095,
- 98237.07311872549,
- 97435.85714721317,
- 96347.73945345664,
- 98753.0342330029,
- 97389.05654094371,
- 97350.06903114164,
- 97254.23934987192,
- 96919.826641072,
- 97357.32608817489,
- 97311.70614692672,
- 96312.49145069612,
- 97342.74090899815,
- 97676.19241492003,
- 97533.87560124022,
- 96983.61207113188,
- 97042.01258952515,
- 97651.32746016643,
- 97136.55546326986,
- 97605.64203060168,
- 97499.57548817585,
- 97615.00090956,
- 97672.92128722146,
- 97634.83104178979,
- 95512.48672079766,
- 95520.58581704031,
- 96295.26828740547,
- 96282.43445699873,
- 96568.35948892368,
- 96305.70007753118,
- 96281.6988740464,
- 96634.97232577665,
- 96658.50723704832,
- 96327.25960947742,
- 96412.87128274282,
- 95612.05251687022,
- 96308.17494820403,
- 96460.09274444025,
- 96049.36643690022,
- 96412.62955632774,
- 96616.7559403405,
- 96519.5204681799,
- 97093.69642855125,
- 96679.99009179635,
- 95633.12109295135,
- 96619.3340165115,
- 96150.03424362313,
- 95937.7713444444,
- 96585.71992460922,
- 96491.68898578656,
- 95350.83394336532,
- 96134.20248253406,
- 96072.38567279669,
- 96772.82588738113,
- 96977.58687203821,
- 96304.58681365351,
- 96251.19968281969,
- 96108.91834438108,
- 96778.70350523331,
- 96382.02705846845,
- 94634.35092199444,
- 96601.97537172223,
- 96473.43688595422,
- 96422.64317562626,
- 96431.47888012671,
- 96636.83424445745,
- 96056.19248735494,
- 96515.11905526402,
- 96660.38035113053,
- 95774.24926109349,
- 97585.87618383576,
- 96583.5257472604,
- 95122.89837108535,
- 96605.90599322402,
- 96038.36554774032,
- 96031.4993704607,
- 96675.71260270195,
- 97049.512435505,
- 96433.845799983,
- 95897.07037264043,
- 96960.27176327427,
- 96307.85692216411,
- 96242.35848519257,
- 96819.81129369602,
- 97249.8102467086,
- 96108.87427334944,
- 97349.66316971318,
- 97012.3360267975,
- 96330.17839103569,
- 98400.16393508099,
- 96728.43531848033,
- 95819.22417527653,
- 97357.92552252565,
- 96299.78998071494,
- 97385.46389592621,
- 97411.8360170104,
- 97204.89839977278,
- 96463.30750173924,
- 96598.60562028212,
- 95896.43296916565,
- 96091.45432140626,
- 97311.35174306807,
- 96200.70472225144,
- 97500.53674710442,
- 96082.33537164425,
- 96477.12621197902,
- 96347.4403938442,
- 96763.1280194511,
- 96773.35799206587,
- 96670.27291581893,
- 94870.7294183785,
- 96530.4881400899,
- 95996.08028297019,
- 95648.0622321095,
- 95765.59330845765,
- 96347.57634764894,
- 96313.51649151853,
- 96240.89790514634,
- 97253.59328958677,
- 96585.02524485815,
- 97110.64567914454,
- 96401.05087142391,
- 97634.16117706981,
- 97632.23610323192,
- 96476.9266197321,
- 96143.59715704634,
- 96442.3959926909,
- 97173.67520609817,
- 97452.54296459325,
- 98764.71093073962,
- 94675.58068459465,
- 96584.45858311476,
- 96074.51018899358,
- 96941.3855747379,
- 96481.93148257826,
- 96194.20097196527,
- 96410.63417003947,
- 96268.58433157318,
- 96844.08726268722,
- 96732.61589548577,
- 97054.54306076036,
- 96736.36947326055,
- 95950.87856285187,
- 96058.5884161396,
- 96074.46008448287,
- 96373.61215631547,
- 96774.68889401545,
- 95954.6226953649,
- 97375.91125894338,
- 96762.60907180404,
- 96892.63356474544,
- 96499.75723381033,
- 96294.09088720444,
- 96966.39468034501,
- 96109.50994722702,
- 96088.99615148573,
- 96447.29551553998,
- 95819.44644735986,
- 96218.35482989937,
- 95899.18906383448,
- 96769.01595020863,
- 96274.30300397708,
- 96042.0069575773,
- 97385.79270355738,
- 96229.39248836122,
- 96126.32784334563,
- 96635.17803046739,
- 96526.03756640776,
- 96032.39838433285,
- 97463.6827927217,
- 95854.85581067526,
- 96404.04885412315,
- 96940.5437378161,
- 96906.44900909,
- 96406.17290872385,
- 97193.59098538685,
- 97229.6312230193,
- 96433.95166449582,
- 97275.9101009866,
- 96243.29294451735,
- 97395.09075685765,
- 96491.31294403854,
- 96377.89286649457,
- 96395.26906016511,
- 97324.02537320471,
- 97620.07637011069,
- 96147.39169169297,
- 97643.64988982778,
- 97033.93508477152,
- 97602.881367329,
- 97155.50811563137,
- 98171.17574764158,
- 96541.43397278279,
- 96167.45474416234,
- 95870.52327035548,
- 96926.74644690406,
- 96878.0650637567,
- 96356.62202527624,
- 97610.48729478249,
- 97375.10606040448,
- 98168.55916640947,
- 97401.99871940678,
- 96722.2929728447,
- 97054.36607374287,
- 96603.25260090239,
- 98932.31091884513,
- 98926.20655583622,
- 98881.20399257346,
- 98873.6590998779,
- 98776.08147395353,
- 98916.08043593282,
- 98775.64297666437,
- 98833.5386160878,
- 98779.4951496633,
- 98769.87019965112,
- 98763.69912444155,
- 98715.38337956829,
- 98838.01226486915,
- 98731.25835265023,
- 98794.9356782363,
- 98875.12446310604,
- 98845.6917714939,
- 97598.41715003968,
- 97191.15673842629,
- 97554.49945784982,
- 96994.3545714313,
- 96415.73464421919,
- 96234.84158094184,
- 97792.47295206528,
- 96462.81227754163,
- 97852.29653105894,
- 97497.28727853562,
- 97343.57538035887,
- 97366.39316478191,
- 97781.84828947709,
- 98514.4612858039,
- 98281.43831840085,
- 97921.70930511011,
- 97902.18401137421,
- 98983.632695647,
- 99203.2809335762,
- 98509.44614370928,
- 96494.98600367835,
- 98740.78608913493,
- 99612.16066233935,
- 100399.53610597138,
- 99242.27473376936,
- 97873.62352691275,
- 98601.01896303026,
- 97723.80989181406,
- 98367.93488464183,
- 98698.73643764145,
- 98474.73668821216,
- 97769.5225019777,
- 98424.79828892439,
- 98849.99134497087,
- 97153.8202347327,
- 97784.87511330319,
- 98488.59232974793,
- 97835.98880603131,
- 98697.76296828069,
- 98425.30418388022,
- 97352.5478411118,
- 99087.60514794616,
- 99562.51936967154,
- 97438.32392949228,
- 99581.18821252153,
- 98484.49246054886,
- 98589.19418356709,
- 99047.9458477898,
- 97904.87372888521,
- 98685.34030967425,
- 97236.56543939441,
- 98552.63522931661,
- 97440.7506574999,
- 96448.97691094204,
- 97272.57643613985,
- 96709.59744547942,
- 98547.70620576198,
- 97115.24870623546,
- 96930.11819667481,
- 97074.16623154836,
- 96568.92366528956,
- 98713.83774017166,
- 98345.9554260893,
- 97740.55752143663,
- 97988.18684320113,
- 99349.28939642792,
- 96556.14889918086,
- 99625.77747749203,
- 98427.86290460796,
- 97468.41119559384,
- 97532.46968364714,
- 97025.5243570638,
- 97403.19800982128,
- 99189.38105820611,
- 99130.3078520612,
- 98512.10297397664,
- 98519.8177010953,
- 99017.67985713482,
- 97619.72683427205,
- 98914.83209812317,
- 98147.84267591721,
- 97949.55637290105,
- 99502.83924873942,
- 98872.0205731119,
- 98390.87404103394,
- 99053.11429206465,
- 102016.60254936705,
- 98075.21405525423,
- 99162.58751241713,
- 99982.38307176298,
- 98292.59127337417,
- 100060.98457894419,
- 99185.22072761349,
- 97947.04358444022,
- 97474.60738990385,
- 99170.7047386012,
- 98052.15218821482,
- 98616.68136712202,
- 99500.63364741569,
- 98316.9751512879,
- 99176.98993944687,
- 99162.04598470115,
- 97788.31675277463,
- 100348.89954635833,
- 99148.26930216937,
- 100486.82668676783,
- 99758.98817475478,
- 96889.7794321626,
- 99026.6226858807,
- 99069.25619307961,
- 101823.31476410347,
- 98379.14339417113,
- 101380.81652138675,
- 99254.27452910501,
- 99227.13583415966,
- 98212.04884196128,
- 99094.77135415385,
- 98915.86627395742,
- 98121.78812235915,
- 99010.43098706538,
- 99006.76819217965,
- 98421.28339426052,
- 98918.94691074,
- 98809.12475691538,
- 99070.331362437,
- 97874.19535094783,
- 98942.96036569965,
- 98368.76399286573,
- 97911.02555719024,
- 98818.24534258251,
- 99191.65795239966,
- 99272.95214509276,
- 98629.16309416488,
- 98896.61825153053,
- 97353.8831923671,
- 98413.72450899602,
- 99048.52954857876,
- 99860.44427206193,
- 99875.65907184825,
- 98991.31426615387,
- 98545.72335094343,
- 99143.15955432564,
- 97910.12779784399,
- 98656.64266720755,
- 98406.94597948619,
- 97476.14534117641,
- 97524.08090876219,
- 99171.65872471192,
- 99548.50572708945,
- 97949.35571979226,
- 99391.34679357102,
- 98722.02495329459,
- 99374.50165106604,
- 97825.10446462789,
- 97650.77807951198,
- 99091.39852136569,
- 98663.5728126574,
- 98159.03165818081,
- 99060.55516943279,
- 99070.36691418258,
- 94807.18741906618,
- 99956.68584656977,
- 99881.38194405592,
- 99269.75421848508,
- 98657.65560967932,
- 99187.14420424569,
- 99130.37213728795,
- 98433.94367818839,
- 98598.39852284717,
- 99397.67295607875,
- 100062.94026884029,
- 99683.93197275087,
- 98942.47918301482,
- 98372.2920372052,
- 99106.89445006047,
- 99057.76069575727,
- 98225.6719769043,
- 98965.17216239334,
- 99161.06627467804,
- 100038.45200630881,
- 99231.69745173643,
- 99643.13410786055,
- 99121.89628822553,
- 98896.0953062042,
- 98996.3949186886,
- 99010.23040006083,
- 99067.43224177675,
- 98982.5538246546,
- 99326.93888038411,
- 97455.17599729972,
- 98980.69875328755,
- 99685.34161040152,
- 100612.93716200726,
- 99244.69832153102,
- 99226.22079845401,
- 99091.55472439228,
- 99026.64548034257,
- 98688.75667619119,
- 99060.11730816362,
- 99629.11999021804,
- 99571.7539254891,
- 99395.9830884571,
- 99183.91384425001,
- 99022.60912279715,
- 98991.26055747598,
- 99097.9010589485,
- 98904.92041991555,
- 98790.64444216965,
- 98653.03461351694,
- 98528.28228471124,
- 96470.76012407262,
- 98077.79681744472,
- 99214.362436891,
- 98581.61307739322,
- 97662.82472168292,
- 97762.19782518726,
- 98322.0050156767,
- 98186.65877994802,
- 98241.1113495342,
- 98809.36210538005,
- 98799.40792106478,
- 98692.54803294275,
- 98857.10511058902,
- 98818.13714193161,
- 97358.46679886585,
- 96071.64726551576,
- 98184.18254674674,
- 98420.51887894224,
- 99085.54243090276,
- 99105.27578480003,
- 98161.02751086211,
- 98705.71088691853,
- 98721.31378803315,
- 98128.91359559372,
- 98293.07266113821,
- 97827.63907828067,
- 98054.0065827654,
- 98251.89202247094,
- 98211.55320628641,
- 96475.17933169345,
- 98568.00044350624,
- 98364.36914082733,
- 98331.41182590384,
- 98163.10895570937,
- 97554.9960699299,
- 98038.14058948433,
- 98858.81885856122,
- 96255.92043157357,
- 98120.00401419179,
- 99907.08283776883,
- 97770.11547186453,
- 98260.97237711879,
- 98649.88742805325,
- 98112.09979592523,
- 98728.80932783807,
- 98743.18237840163,
- 96497.28753916033,
- 99041.0309662276,
- 98538.18176070268,
- 98404.5074674531,
- 98168.58123872355,
- 99485.28366531829,
- 98727.3121423661,
- 98706.38695246876,
- 98212.5660722969,
- 96338.9907537572,
- 94647.79050717162,
- 98994.41997788764,
- 96237.3014003704,
- 94688.11906145522,
- 96639.48963731402,
- 95635.79388111227,
- 95971.63945756324,
- 96148.36985614852,
- 97265.23793720463,
- 96888.812856475,
- 96702.93382964614,
- 96685.11446346446,
- 96692.14973493623,
- 97854.41540216467,
- 96886.64740803099,
- 96012.22372465217,
- 95855.37346994528,
- 96019.51490257688,
- 95928.73602388412,
- 95655.37022945724,
- 96175.94057358746,
- 98401.53156330762,
- 95386.7915315098,
- 95383.19508052658,
- 92604.63107627998,
- 95893.574265848,
- 96026.40843242637,
- 96114.05896419227,
- 95834.93768300924,
- 95619.17778565394,
- 96108.40628370653,
- 95731.71785167878,
- 95777.00472574684,
- 95353.54589236321,
- 95800.17831353597,
- 95203.24310226098,
- 95930.34153333298,
- 95903.12103009703,
- 96914.4073833856,
- 97103.69288164194,
- 96898.52471952,
- 96820.8105552239,
- 96112.34947297389,
- 96008.4744666249,
- 96893.41939654587,
- 96865.8409444725,
- 97240.38028997074,
- 96876.82259242256,
- 96619.39742322621,
- 96882.99940588712,
- 96861.44317975816,
- 96768.5817251259,
- 96559.08563953191,
- 96649.40356388739,
- 96625.72014898527,
- 97992.50506999153,
- 97617.39505268811,
- 96070.12571463303,
- 95866.20481677107,
- 95662.62644960554,
- 96100.86678198376,
- 95405.1846400074,
- 98524.57731541038,
- 98061.51654616423,
- 98127.50014794023,
- 98433.46713226559,
- 98303.3954720316,
- 96465.29272664362,
- 96421.49499570957,
- 95652.29809552783,
- 95574.25352251745,
- 94671.14162737239,
- 97196.83695998523,
- 97409.25368271414,
- 97234.04346137235,
- 97434.01515339047,
- 97272.13864563021,
- 95567.54268381129,
- 97324.16299961129,
- 97481.45108043253,
- 95459.71080597503,
- 95521.93192587548,
- 96559.7026621268,
- 96622.87666955806,
- 96449.25631444062,
- 94919.54440569754,
- 94171.18973519026,
- 98378.94284214679,
- 94645.87712676502,
- 96735.91203018947,
- 97334.69528656456,
- 95915.62243658677,
- 94473.57318014126,
- 96498.2979299931,
- 97046.83129228091,
- 96532.6646683294,
- 96214.62212633847,
- 96146.8337078855,
- 95343.9410888273,
- 95506.46666204746,
- 95380.57975889063,
- 95213.69401511893,
- 94761.32003739124,
- 96370.41426861439,
- 96556.18686331193,
- 96600.23269030724,
- 95312.03621158424,
- 95103.86724211255,
- 94154.4683582202,
- 96651.05281133259,
- 95926.00835539421,
- 95794.56902475153,
- 95275.96542639584,
- 92619.51334005372,
- 95388.1231928088,
- 96533.09552389133,
- 96602.4666381394,
- 95710.95963260993,
- 96173.23715080458,
- 96169.80106348639,
- 96919.26178312073,
- 96999.24006270662,
- 96911.02758063171,
- 96767.7608495193,
- 95402.18303854323,
- 95963.6655367038,
- 96323.93164666534,
- 96035.94449947504,
- 95826.13450428299,
- 95894.3821805092,
- 95735.81320135522,
- 96785.2273252981,
- 96844.44949459478,
- 96450.55318015978,
- 96234.86536056163,
- 95910.45905898156,
- 97216.8097752767,
- 95733.15082062641,
- 97623.71573684271,
- 96003.07301754713,
- 95855.84606940606,
- 90620.59321338178,
- 94139.8012458913,
- 94032.80335215264,
- 93807.67468704915,
- 94732.86002550159,
- 96955.0168977828,
- 96373.51181593174,
- 96024.31193605777,
- 96039.53114090665,
- 96558.40139577903,
- 96648.53242134354,
- 96344.26723680123,
- 96248.28034246547,
- 96483.28090692386,
- 96054.44520130524,
- 96524.24227801626,
- 96583.58536032659,
- 95881.63940456003,
- 95096.87780489783,
- 94429.634403017,
- 96769.24653086865,
- 95885.77494615254,
- 97401.66966851291,
- 96529.94166735753,
- 96400.6315649038,
- 96701.50888855853,
- 96563.36738665988,
- 96663.0086169134,
- 96404.13831153684,
- 95923.70592479738,
- 95540.24503251979,
- 95920.065981809,
- 96456.96747554903,
- 96427.6516351581,
- 96826.02448370877,
- 95922.0581596575,
- 95802.9629154136,
- 95957.78104570328,
- 96331.52105283472,
- 96392.03219267243,
- 95481.26094749449,
- 96072.651127653,
- 96107.71912624051,
- 95682.31879557903,
- 96011.6169628847,
- 98745.28871415959,
- 98737.9075507478,
- 98260.19273313228,
- 92403.72030892958,
- 92552.59924319923,
- 94130.55860663287,
- 92453.32910364396,
- 92636.97281790803,
- 94694.68806398017,
- 93639.94569899137,
- 94259.03278558327,
- 91080.58784143622,
- 93850.41662442079,
- 92357.81244688503,
- 92015.08959235293,
- 92793.59818111316,
- 94015.54400806065,
- 93415.0685794173,
- 92661.92845541582,
- 92700.30450697383,
- 92811.56373493784,
- 88980.87619367571,
- 93666.16904241925,
- 92727.31906879041,
- 92625.18394918887,
- 92710.21548334243,
- 92730.67067426581,
- 92599.58217260841,
- 92761.81424118878,
- 92651.26372829395,
- 92548.69810217191,
- 94753.5297564697,
- 92642.4602856306,
- 91676.43793576607,
- 92695.15487336805,
- 93155.38758721903,
- 89305.71197876369,
- 94890.65745591454,
- 93887.36045593988,
- 93682.44991506475,
- 92689.24617566908,
- 93904.56333636155,
- 92764.63612228677,
- 93226.39690794115,
- 93143.11311426201,
- 94983.58739011025,
- 93345.5384733388,
- 93475.56240329082,
- 93855.61888073095,
- 95749.39705457314,
- 94465.17063363985,
- 92913.17761014139,
- 91312.64033973779,
- 92365.60828492136,
- 93034.01413382801,
- 96232.6883024668,
- 97197.31119879312,
- 97345.58098981141,
- 96319.04144083924,
- 94787.68098338218,
- 94304.28587484072,
- 95375.71980775791,
- 96010.91751038717,
- 94846.74238052499,
- 95360.36419013362,
- 95443.67008227661,
- 95781.4838692387,
- 95621.74045129302,
- 94709.05739456239,
- 95069.66525755977,
- 95628.14642198732,
- 94459.15082891459,
- 95527.20667464145,
- 94762.37057915328,
- 94658.19240918643,
- 94716.98202491149,
- 94759.00609204093,
- 94646.88730549908,
- 95292.52782742439,
- 95093.22706462545,
- 98085.07588417802,
- 95163.75908553116,
- 96006.77287976355,
- 95274.60828290615,
- 94773.27914431288,
- 94843.32769305678,
- 94756.04785280023,
- 94693.04021624882,
- 95274.55463163379,
- 94205.42306946588,
- 94740.62358451245,
- 94914.46333674647,
- 95731.94340542807,
- 94554.58874211222,
- 96091.204926268,
- 95643.38624755875,
- 95405.5970323345,
- 94965.90340529142,
- 94090.45690331612,
- 92687.32405817328,
- 94400.56846677243,
- 94532.99011271482,
- 94838.88278888688,
- 94912.71843664766,
- 94702.53619375687,
- 94259.06712940332,
- 95687.5583436565,
- 94745.48610069028,
- 94924.7628056497,
- 94836.83100987966,
- 94635.31494511566,
- 95171.36460552194,
- 94428.00833897035,
- 91875.6118444357,
- 94818.5478788063,
- 94803.47505405096,
- 94609.06856092627,
- 95243.05174065192,
- 94579.1668497888,
- 94710.98077661607,
- 94636.4031377064,
- 95594.04154313843,
- 94853.46116542409,
- 95262.41295878915,
- 94996.61867838957,
- 95427.51893881544,
- 95141.30835602302,
- 95135.73958053072,
- 94811.20964058898,
- 95308.98963794683,
- 95213.77887412795,
- 94550.01100453151,
- 94616.6585852082,
- 94915.01791906256,
- 94779.60175355068,
- 95651.87929649846,
- 94969.43121341393,
- 94871.66004225804,
- 94698.2564749882,
- 98122.6370414771,
- 94609.75573408123,
- 95744.51531875192,
- 95569.49080974681,
- 94553.34862649688,
- 94068.90013805934,
- 94911.10914154527,
- 93841.09081628201,
- 95055.96301467503,
- 94973.76103672285,
- 93860.33853556491,
- 94666.08189515283,
- 94804.05777877627,
- 95192.48874345585,
- 94682.03972500942,
- 94318.87336662205,
- 98071.86657727559,
- 95074.67859421566,
- 95052.34933786246,
- 94847.03071224976,
- 94712.39449672872,
- 94681.03509595625,
- 94662.70335696908,
- 94530.9667988148,
- 94394.743184273,
- 93236.21560331441,
- 95228.59152965351,
- 95599.18088294458,
- 92172.3185204082,
- 94730.79640190289,
- 95015.49625623692,
- 94674.89580671789,
- 95460.7576657949,
- 94694.88936601186,
- 94637.44384110306,
- 94023.65044193376,
- 94711.8919185092,
- 94639.7976547818,
- 94969.34668009236,
- 94867.71860626241,
- 94499.29954296813,
- 94412.16071475198,
- 94500.6446202604,
- 94316.72565507321,
- 94747.77428662438,
- 94831.09840327874,
- 94872.79287174557,
- 94598.10840219341,
- 94789.93569354182,
- 94645.92150016353,
- 94772.43466967792,
- 94783.49907630085,
- 94624.56371474003,
- 95782.49090316397,
- 94352.71458049152,
- 94039.43659745945,
- 94724.12280359474,
- 94549.95722461416,
- 95172.62949097781,
- 94748.03678735308,
- 95142.30696566738,
- 94079.97573473441,
- 92867.65170326555,
- 95137.86898625335,
- 94657.09089040948,
- 94592.18007251328,
- 91386.79521336866,
- 94302.9983659527,
- 95035.60486780475,
- 95213.0622434433,
- 95306.71022996533,
- 94700.77181220899,
- 94617.81259757694,
- 94535.68576734806,
- 94750.88896059677,
- 94470.20509490756,
- 94511.66669647257,
- 94490.98493329533,
- 94846.70037648812,
- 94034.72001872609,
- 94559.50779408682,
- 94466.7376842554,
- 95513.58278963793,
- 94305.51369188944,
- 94851.28150629238,
- 94772.25786639804,
- 94518.72288699445,
- 92600.87220891484,
- 94385.63245566067,
- 96765.01998356344,
- 94624.67668233525,
- 95320.26347648272,
- 94187.4208589902,
- 96407.8149457741,
- 93866.57023587385,
- 96732.86821624868,
- 95848.64233101926,
- 96229.66105626737,
- 98178.17510730785,
- 96273.17959649833,
- 92820.89814897874,
- 96599.13805686972,
- 95659.94479562767,
- 96357.58676902352,
- 95689.95404916865,
- 95858.68960868126,
- 95814.95649081406,
- 97069.64943071302,
- 95560.28088297267,
- 96806.8541605258,
- 96947.40675273385,
- 96920.50398772888,
- 96767.50358245717,
- 96817.66055571858,
- 97237.89195347154,
- 96888.97576383248,
- 97141.56965571626,
- 97272.16196531034,
- 97095.49525391203,
- 96704.00303777175,
- 97189.19276118421,
- 97208.55798356787,
- 97237.84080032888,
- 97406.36037264415,
- 97126.32920940703,
- 97194.39851002919,
- 96183.9812972283,
- 96795.31918949624,
- 97051.71285679028,
- 96645.4446535775,
- 97016.89968225527,
- 98970.15914526228,
- 96164.31165177577,
- 96955.80310269099,
- 96766.57575414197,
- 96880.45975619479,
- 97320.49185837018,
- 96510.18842656737,
- 97003.43303968408,
- 96660.51533943972,
- 96966.02647052168,
- 96859.70450714213,
- 96932.30642163414,
- 96852.77079415339,
- 96081.2975453023,
- 97015.25817987997,
- 96839.05193444177,
- 97817.707556705,
- 96743.47300321168,
- 96633.1960028662,
- 96915.22190900354,
- 96645.1229128067,
- 97004.95986761729,
- 96566.99750987656,
- 96241.34047154605,
- 96094.8508150237,
- 96329.29923380495,
- 96303.92041500923,
- 95909.7739787418,
- 96400.51278286969,
- 95574.39534418302,
- 95694.79665191291,
- 96078.87408767999,
- 96745.54904144225,
- 96885.45509832901,
- 96570.03585592323,
- 96847.7893432129,
- 96580.26314007488,
- 96283.38222595652,
- 96330.75641404516,
- 96505.76788267054,
- 95933.78130606312,
- 95969.93628717288,
- 96241.8368167467,
- 96516.24082699847,
- 96352.37619288662,
- 95977.4908427389,
- 96086.9490860762,
- 96094.51833331272,
- 96758.39095887466,
- 96034.32749733706,
- 96026.76816689323,
- 96158.4488359556,
- 96031.66005598055,
- 96864.42186310086,
- 96587.15552488458,
- 96788.89525885877,
- 97189.5131054329,
- 97669.69791198618,
- 97278.5656163335,
- 96896.58750176255,
- 97154.72425616732,
- 96987.80225378742,
- 96695.54475332797,
- 96726.40817559678,
- 96767.46602322998,
- 96813.4343547639,
- 96791.18101461837,
- 95389.10664694483,
- 95472.00274613315,
- 95935.5419641612,
- 96253.58305118927,
- 96263.70637434645,
- 96534.04849627241,
- 96198.74714645866,
- 96023.10216322435,
- 97066.1566770924,
- 96512.6439304231,
- 96656.65493202257,
- 98642.78682170947,
- 98026.80584910973,
- 97317.9470175812,
- 97558.53189592143,
- 97354.04987112107,
- 98156.10361722215,
- 97559.12810431966,
- 98672.80035077463,
- 97608.46722365031,
- 97720.70350653208,
- 97761.99442165645,
- 96752.4665017377,
- 97746.8391580485,
- 97819.4972376039,
- 97811.11864279254,
- 97693.57749236286,
- 97735.9507021614,
- 97384.36803091576,
- 97155.80752875579,
- 97787.10318478926,
- 96725.27797613826,
- 96656.51605951994,
- 96621.34244090467,
- 96787.80852813035,
- 97481.5752702023,
- 96763.64967872995,
- 98517.20808727229,
- 97409.50882998393,
- 96746.40104686156,
- 96387.0378486012,
- 96137.27428645456,
- 96447.65576692639,
- 96500.05485471405,
- 96602.41413482858,
- 96347.26384012886,
- 96798.05259841571,
- 97123.64353111561,
- 98810.40128605721,
- 98748.83379870633,
- 98766.84037371344,
- 98595.68155874425,
- 95432.28216788654,
- 95102.33265077158,
- 96969.06747778888,
- 98047.49514396398,
- 97477.31474980435,
- 97384.80366070305,
- 98571.74309474658,
- 95476.30474211962,
- 96247.39210484998,
- 95988.61012463992,
- 97164.97647400496,
- 97510.69098668513,
- 98349.87077216271,
- 98009.1006468227,
- 96860.00354930486,
- 97218.18359466371,
- 96532.6513290047,
- 96476.99449429182,
- 96460.3440809962,
- 93363.71919768747,
- 93502.02146333765,
- 93218.26568575818,
- 96605.96850560357,
- 96834.80703834713,
- 95965.26838759349,
- 94954.26355620637,
- 96061.1094111204,
- 98472.89573129527,
- 98477.25442843478,
- 96663.3347349886,
- 97182.40630309808,
- 98498.41434807747,
- 96705.80879914662,
- 96932.7889750408,
- 96884.50148839512,
- 96614.16469347998,
- 96666.70966909935,
- 96700.68589331902,
- 96643.9005120101,
- 96541.9681406362,
- 97087.54671590365,
- 96751.41823297429,
- 97088.14880740178,
- 96691.22132401943,
- 96809.66561279182,
- 96774.85380189044,
- 96773.12113524246,
- 96537.39245144221,
- 96631.60109535737,
- 96479.84660377468,
- 96957.50399046045,
- 96802.58799326436,
- 97026.39229748285,
- 97321.50714071444,
- 96685.14736048535,
- 96659.44539572205,
- 96476.29445285945,
- 98504.94937934296,
- 96505.43473450017,
- 96630.14481112546,
- 97079.77003968997,
- 97164.16435672548,
- 96758.34868779706,
- 96814.38545725966,
- 97131.06442362265,
- 96587.63072624992,
- 96701.44181961339,
- 96868.32753094017,
- 96485.2623043036,
- 96544.79575713704,
- 96879.06539514555,
- 96650.5251142157,
- 97056.66087663827,
- 97018.7876594228,
- 96726.97841332003,
- 96785.79342645025,
- 96719.79877048176,
- 96500.3647531615,
- 96920.00376965974,
- 96805.25180958064,
- 96511.27388316976,
- 97143.69979917424,
- 96785.52822630318,
- 96751.7242293975,
- 98488.89658362548,
- 96527.82964364873,
- 96815.18595416151,
- 96727.94539580634,
- 96877.61190695128,
- 96674.53853073626,
- 96755.77967969238,
- 97629.85915951653,
- 96896.55417266351,
- 96874.61155723894,
- 96781.7373211774,
- 96671.25152661269,
- 96934.94898597764,
- 97005.77074047142,
- 96964.78110583073,
- 96640.3915108683,
- 96561.11544487227,
- 96787.83212641206,
- 97117.91370467145,
- 96752.7630566314,
- 97904.95870247688,
- 97287.61876639193,
- 96977.41506513029,
- 96672.9812022687,
- 96586.3268270632,
- 96797.33031385214,
- 96770.78381407568,
- 96767.69056492882,
- 96916.62444917303,
- 96736.187248987,
- 96497.40326486343,
- 96981.69606403777,
- 97757.99670975313,
- 97360.13554374868,
- 96792.24969134637,
- 97386.8040364756,
- 97041.45585776801,
- 96624.01938254207,
- 96974.28350714296,
- 97156.22383491664,
- 96954.62064886169,
- 97046.79482101345,
- 95844.28052724677,
- 96795.23928720718,
- 96772.56610132441,
- 96821.18944890518,
- 97037.54167528427,
- 97304.17187437204,
- 97045.7174310999,
- 97031.3088470609,
- 96973.7313647934,
- 96827.27721865964,
- 96836.63104835567,
- 96915.11359133502,
- 96603.10265344591,
- 96572.35122948136,
- 96562.71215702499,
- 96669.45654037285,
- 96608.97450213194,
- 96780.12324046777,
- 96759.8367076845,
- 96729.07888575827,
- 96451.36476325426,
- 96426.58864894029,
- 96654.61006042475,
- 98502.39684963804,
- 96710.20852553143,
- 97529.59178857305,
- 98492.45967203799,
- 97097.47714912827,
- 96949.62066620833,
- 96872.36708461096,
- 97572.7954448912,
- 96534.13113359883,
- 96670.03282167818,
- 96915.56474058192,
- 96690.79996780091,
- 97081.73959470788,
- 96645.28675952984,
- 96845.49984264001,
- 96791.42873166909,
- 96848.6019348336,
- 96653.33167046132,
- 96798.09730894824,
- 96830.20824198317,
- 96974.68588435129,
- 95329.09589374838,
- 96625.20312840438,
- 96583.08101942415,
- 96848.58357963007,
- 96685.21610856292,
- 96647.86296497285,
- 96749.19177745887,
- 96667.27172199388,
- 96915.00366898013,
- 95683.09108910317,
- 96463.21403142411,
- 96884.74639022724,
- 97951.06604016566,
- 96603.17113805444,
- 95950.60579597944,
- 96582.65960470523,
- 96864.74890763631,
- 96899.74561231451,
- 96767.43202743762,
- 96984.0156607433,
- 96697.59306293263,
- 96742.76428952735,
- 96935.54268135317,
- 96991.60346683899,
- 96580.8583468943,
- 96480.30494028228,
- 97026.73007218333,
- 96873.58873560156,
- 97214.28101702654,
- 96962.13430709024,
- 96445.14131578358,
- 96952.0852964525,
- 96485.30175383571,
- 98188.17126174309,
- 98087.3338631131,
- 97264.08371499478,
- 96567.84669526415,
- 96692.64254266855,
- 96954.5126568193,
- 96442.24721615986,
- 96675.1674827983,
- 96911.71700742826,
- 96559.09520602223,
- 96964.90990095795,
- 96368.1267297445,
- 96354.29226248538,
- 95704.0871202312,
- 96138.82096969092,
- 96702.30104154837,
- 95863.078617055,
- 96928.70418989572,
- 96875.43456713467,
- 96712.85163544948,
- 96210.68445716402,
- 97643.43217333438,
- 96875.38177626212,
- 97277.67379891923,
- 97650.21348938807,
- 97380.97035221593,
- 95912.88033660327,
- 96875.44858847588,
- 97090.26472678532,
- 96986.78948010856,
- 96355.34401319342,
- 98484.83314214389,
- 96480.80058099459,
- 96582.01402568171,
- 96882.04031575473,
- 96747.25944879792,
- 96853.94619098958,
- 95902.58151687872,
- 98205.92395781298,
- 97674.61704340234,
- 96816.42131470822,
- 96625.30102032366,
- 96574.89605254125,
- 97026.03297053343,
- 96755.84845242432,
- 96494.99482485962,
- 96639.0949732792,
- 96550.01108530164,
- 96575.31613115326,
- 96810.72873758491,
- 96896.94014138209,
- 96693.47055992209,
- 96951.68482481911,
- 97105.86446933058,
- 96683.343489294,
- 96700.50651493037,
- 97613.5093531771,
- 97632.10124528216,
- 96831.69055597908,
- 96828.99548296859,
- 97813.18960016311,
- 97805.18437428074,
- 96640.17245945708,
- 96731.09231285357,
- 96542.83564645311,
- 95421.91735289371,
- 96934.21301456064,
- 96053.80630400538,
- 96579.76590487406,
- 96621.95641731111,
- 96695.15836873942,
- 96467.60417095249,
- 97510.01962082756,
- 96836.22412942452,
- 96686.3684942306,
- 97774.42866113664,
- 96427.1842433544,
- 96602.9455448259,
- 98341.41820230329,
- 96759.39098466327,
- 96654.14513994215,
- 97094.20573290615,
- 96534.89129183585,
- 97845.68054608024,
- 96714.32338601344,
- 98362.46614454236,
- 96555.05094020838,
- 96417.4243506057,
- 96624.55409529047,
- 96913.27672047008,
- 96613.64565810803,
- 96882.63562796098,
- 97785.31723795002,
- 96921.65832155356,
- 96574.44776110545,
- 96722.32663398494,
- 96695.61808666041,
- 97113.91196565128,
- 96976.68282643448,
- 96054.400615084,
- 96278.15788483768,
- 96861.56370770434,
- 97796.07080948977,
- 96611.246762707,
- 96530.79253993953,
- 95901.82083235442,
- 96962.41375364321,
- 96900.49410984787,
- 96440.3614255588,
- 96738.66732022622,
- 97200.14076518768,
- 96926.75612600744,
- 96651.84522301337,
- 97627.58936686792,
- 97563.98838997139,
- 96560.8916778657,
- 96729.69482051903,
- 96715.7628390581,
- 97379.01812972916,
- 94485.92993817783,
- 95302.46268343864,
- 95505.88427993505,
- 95182.96656441354,
- 95083.07696160226,
- 95260.63775038713,
- 95343.04710668822,
- 95077.9137547502,
- 95200.52568374142,
- 95457.42674465815,
- 98692.43143064567,
- 97571.51683328462,
- 97573.23040616274,
- 97722.41636121254,
- 96711.97005754894,
- 98202.27708314388,
- 97820.56830441093,
- 98259.11178546748,
- 97235.2488696914,
- 97297.7274926661,
- 97293.5203062695,
- 98708.3190257109,
- 97802.97859779913,
- 97828.5668503006,
- 97770.18528248275,
- 97622.16011647054,
- 96887.45716809586,
- 97090.03432996322,
- 97697.42848707616,
- 97701.66892815946,
- 97585.79298176516,
- 97486.26616142577,
- 96505.5934631506,
- 97579.4448614383,
- 97691.63703682291,
- 96515.60149309262,
- 96526.16766938524,
- 96542.88730412883,
- 95826.70973681552,
- 95195.45569059276,
- 95229.32767677493,
- 94971.08522590312,
- 95259.91296974945,
- 95151.27865865134,
- 95457.42579193789,
- 96625.91253011048,
- 96650.26887770933,
- 95953.43758977612,
- 96414.9173008834,
- 96657.44331032071,
- 96774.09206013042,
- 98370.08752364217,
- 98185.39228188255,
- 96866.57408532791,
- 97930.86589331932,
- 96177.19856058512,
- 97176.04373508078,
- 97153.25597882869,
- 95838.54674259001,
- 96532.8341303869,
- 98997.74271020413,
- 99362.59751327203,
- 99276.9196152002,
- 99226.83402346286,
- 99522.14887276676,
- 97465.09518672612,
- 96648.9363700922,
- 97362.29677323089,
- 97352.27827718583,
- 97314.13790026988,
- 95480.79812433262,
- 98668.36393861687,
- 97838.4175081634,
- 97754.15865943547,
- 97387.10298484987,
- 97017.6751012583,
- 97715.03542524244,
- 97428.2088550206,
- 97045.79560002222,
- 97717.63943455054,
- 97512.25460842131,
- 97068.03081922044,
- 97443.46951981564,
- 97329.89355877684,
- 97519.79955646732,
- 97844.94572301708,
- 97678.1464428742,
- 98526.54572504741,
- 98430.07797759793,
- 97500.16873207534,
- 96981.97321773143,
- 94617.5959694371,
- 95301.3607194778,
- 95227.77092314835,
- 95402.52158220478,
- 95276.97798041081,
- 94853.13681242797,
- 96019.73206058989,
- 95949.12131101474,
- 95997.16066474574,
- 95427.65531943327,
- 96645.63733017922,
- 96622.44802724649,
- 96637.20944908995,
- 96402.067408069,
- 96546.81074094832,
- 96396.69753430235,
- 96935.23882458691,
- 96582.14749337402,
- 96220.7703218342,
- 96871.32320011256,
- 96963.41552878823,
- 96210.59439600962,
- 96315.24613181091,
- 96028.2888002032,
- 95489.22963590887,
- 95828.46924619444,
- 95482.44304451962,
- 95066.06523441382,
- 95488.52095752831,
- 95505.50501741502,
- 95397.10356995185,
- 95504.42605081353,
- 95949.84954429526,
- 95510.02889292239,
- 96156.074298552,
- 96344.83157727902,
- 96192.16190696902,
- 95914.16367038043,
- 95991.06452640316,
- 95745.4694082097,
- 96072.76062132008,
- 96296.57518040262,
- 96237.23840449286,
- 96100.16964314734,
- 96577.18594978366,
- 96564.47351993735,
- 96768.15156923435,
- 96405.88036665124,
- 96370.19303826737,
- 97545.38850460328,
- 96249.72659060232,
- 97705.70304050583,
- 96647.32091240633,
- 96573.99731256816,
- 96536.36409486223,
- 94888.48155674861,
- 95501.8125864358,
- 96398.60994140033,
- 97087.09725827706,
- 95858.67269394762,
- 94889.58026607656,
- 95744.0722676581,
- 96539.2876843912,
- 96488.71126504915,
- 96574.07459048775,
- 94476.68554039652,
- 94952.05763640381,
- 94960.14806309502,
- 95868.93237525053,
- 95844.61270594754,
- 95987.03936165375,
- 94066.51607848209,
- 93976.18462674941,
- 96358.25249911078,
- 96321.80373689976,
- 96114.11946368766,
- 95768.86401324993,
- 96245.67690227392,
- 97449.2228277016,
- 96919.80862750238,
- 95714.35022151601,
- 96636.93741201112,
- 96668.40960032,
- 96517.34543879435,
- 97008.15894636505,
- 96807.74423569046,
- 95387.72814612064,
- 95418.41077655359,
- 95472.67938384521,
- 98114.52152816013,
- 98111.97280969669,
- 97753.21078683695,
- 98142.06219207752,
- 97488.66800355395,
- 98144.87686544789,
- 96528.57510021586,
- 96901.55938078823,
- 94256.97992301545,
- 94390.62485294472,
- 94474.18506646619,
- 96818.20189981317,
- 96638.80405463175,
- 95888.00973910451,
- 95799.49717635973,
- 95761.360020285,
- 95802.05331128874,
- 96973.49939574185,
- 96633.26092124682,
- 97052.8332660283,
- 97011.81451068369,
- 97113.70285257122,
- 97210.3004088966,
- 97188.26787866931,
- 97056.56327204366,
- 97626.44431224155,
- 97350.90150160708,
- 97162.69508453069,
- 97817.20098235017,
- 96022.18132064518,
- 95680.02527851156,
- 95894.41366117746,
- 95794.3620644187,
- 96845.07860198681,
- 97276.29878619949,
- 97481.0467852597,
- 96200.64224390368,
- 96069.95563247148,
- 96759.80185472532,
- 97151.48266936177,
- 97525.66398682565,
- 98129.8335044742,
- 95869.4969027973,
- 95947.6612354604,
- 97219.2344849453,
- 97524.9702327776,
- 97462.76341227313,
- 97570.78852224046,
- 97965.90473223805,
- 98426.11814680099,
- 97400.88013760047,
- 97830.50425286932,
- 97563.51909740941,
- 97959.05424320973,
- 97250.30982328247,
- 96876.62587606598,
- 97177.84417040872,
- 97044.98522321004,
- 96890.44446357607,
- 95746.74077759727,
- 95514.38455692613,
- 96085.91161839501,
- 95540.81075134124,
- 95161.64737314533,
- 97743.37633435942,
- 97368.18786729996,
- 97400.16397729573,
- 97615.97056569872,
- 97788.7651245566,
- 97923.16505107327,
- 97749.77214743374,
- 97737.47168433828,
- 97643.42074759667,
- 97749.29069670282,
- 98137.79198213125,
- 97782.44112987598,
- 97566.10709216155,
- 97247.41509419652,
- 98703.6866543077,
- 97300.96068285858,
- 97415.93818773415,
- 97789.92707115466,
- 96750.40498635444,
- 97809.32654645263,
- 97809.59302628535,
- 97788.58031988013,
- 97768.46861576667,
- 97504.52578621544,
- 96578.02421964555,
- 96409.96532967011,
- 96325.12988946559,
- 96767.96478692938,
- 96753.02617057231,
- 96869.39684947954,
- 95763.40443589797,
- 95719.63523794102,
- 95771.1095203462,
- 95203.1376507783,
- 96270.15699232905,
- 95244.0575474311,
- 96476.2244248884,
- 96533.83917036175,
- 95627.6655653288,
- 96487.74751288781,
- 95709.93291907338,
- 95658.32063821593,
- 97536.70985088356,
- 98229.18483310309,
- 95989.76467211267,
- 97600.72228126202,
- 97959.01602952153,
- 98371.01061870782,
- 97789.64547242364,
- 95737.0210501743,
- 96247.5730261708,
- 96716.89120782126,
- 97052.70205106144,
- 96826.71329736618,
- 96991.17451689237,
- 96760.3513556949,
- 96464.55718535923,
- 96534.278171482,
- 96405.88296277358,
- 97516.13365436997,
- 94593.1532092616,
- 94062.66633331862,
- 93616.21500771031,
- 96780.96571153034,
- 96527.45528447787,
- 95617.05222697879,
- 96115.57754246322,
- 96350.897783121,
- 95713.33557938566,
- 95448.68746731608,
- 95293.92851935429,
- 96424.48707246192,
- 96049.17164979059,
- 97200.7730276014,
- 97446.90168966807,
- 96440.9774229316,
- 97474.17223906965,
- 96627.09595023748,
- 96508.0649915055,
- 96252.73601927159,
- 96912.8602518081,
- 96640.9561634297,
- 96548.78849614567,
- 97092.6033555316,
- 96137.93531003897,
- 97681.82650463261,
- 96900.36956234596,
- 99054.93251049488,
- 97621.5308801509,
- 96840.81091989319,
- 97398.68149419299,
- 96052.90997742687,
- 97140.91541633583,
- 96883.35271778212,
- 96961.63219735424,
- 96593.15685874,
- 96942.49668912489,
- 97329.44637332104,
- 97283.72077280736,
- 96411.51796021752,
- 96339.24938310328,
- 97736.94813016456,
- 97910.96993785165,
- 96786.0414096176,
- 99128.8683145138,
- 96211.67174914089,
- 95720.51419720666,
- 96607.09318109117,
- 95599.53684369884,
- 97078.78573950223,
- 95886.98258580548,
- 96463.65900406071,
- 96509.39820433313,
- 96509.4296845907,
- 96099.61138898744,
- 97122.96681206446,
- 95950.47769478709,
- 98675.12932763455,
- 97289.15046436754,
- 97014.53523334138,
- 97526.53767625983,
- 97181.11827309501,
- 98660.63217404629,
- 98412.44821844941,
- 97765.48056752425,
- 97130.87354039263,
- 97611.64317798252,
- 96607.81846515763,
- 97565.68134613338,
- 97878.18936700777,
- 98088.69457083048,
- 102537.64337792993,
- 97336.72314742803,
- 97384.85502032931,
- 97739.50461726454,
- 97790.18756915494,
- 98423.75905911079,
- 92914.29701391104,
- 94521.0965568673,
- 96813.45598094136,
- 96835.92874774396,
- 96172.09176973494,
- 96100.97014585767,
- 95705.40993449507,
- 96827.38300101372,
- 96461.24693139427,
- 96535.82894445845,
- 96054.16110461712,
- 96003.46856538253,
- 96117.67522368413,
- 96380.27321562011,
- 96039.52555482746,
- 96091.70581400175,
- 96269.04428473447,
- 97245.37390852053,
- 96333.93226534751,
- 96524.6669755778,
- 96558.43883318681,
- 97209.46385807885,
- 96281.59320080571,
- 97334.199382075,
- 96164.9303846309,
- 95667.80679021226,
- 95658.32343165908,
- 95648.34307354958,
- 95901.87035986596,
- 95796.6220412549,
- 95732.4030502184,
- 96335.57621806604,
- 96407.22560594323,
- 96440.07084499848,
- 95514.95574487532,
- 97442.1178182285,
- 96871.98342831364,
- 96189.19527054564,
- 97753.78297929207,
- 96341.35508815081,
- 95819.77591622746,
- 95836.41008943335,
- 96259.9082581497,
- 96624.18025269137,
- 96595.38846744089,
- 96273.9014736457,
- 97698.15736668535,
- 96237.38326345755,
- 96272.62459980143,
- 96297.69636707871,
- 95372.37969661041,
- 96464.1710890281,
- 96300.0043841075,
- 95976.46298115156,
- 96423.89730001795,
- 97225.12273154467,
- 96380.40661308727,
- 96196.257368652,
- 97687.97327166176,
- 97764.93718471118,
- 97964.99194759796,
- 97077.67459906588,
- 96053.464316358,
- 95950.13199504191,
- 95847.60434582221,
- 96119.17908740342,
- 95905.42580827077,
- 95919.99780721203,
- 96185.37627813521,
- 95946.3884071162,
- 96244.27988515895,
- 96196.74025182828,
- 96174.10171537164,
- 96538.8108213843,
- 97589.77077865561,
- 96255.53165206172,
- 96989.12139942696,
- 96386.3485642869,
- 96209.17705200447,
- 96404.94279951866,
- 95582.13652811556,
- 96075.92114230867,
- 96933.47649225005,
- 96208.32555016727,
- 96486.76296481364,
- 96310.8706914388,
- 96156.77295171334,
- 96208.35637264428,
- 96987.0677801975,
- 96412.81309344785,
- 95605.5078529397,
- 95576.46893477392,
- 95889.53071914573,
- 95560.7221366576,
- 95552.49574202929,
- 95550.8641318485,
- 96405.3198620752,
- 95915.425645233,
- 96264.80700176922,
- 96174.34018844058,
- 95670.97648775595,
- 95372.88665283406,
- 95667.97156819428,
- 96281.8187118494,
- 96786.33551603762,
- 95652.45140521994,
- 96204.29166956923,
- 96273.36385473177,
- 96163.50814490586,
- 96142.15372609507,
- 96246.21706337249,
- 95604.22358935632,
- 96630.39978608028,
- 96866.28592075064,
- 96564.72992711587,
- 95596.36627113551,
- 96182.32358713142,
- 96286.66809125463,
- 95814.45750461605,
- 97301.69481913165,
- 96886.2262880243,
- 96912.85156473947,
- 97085.38663455553,
- 97355.69179208958,
- 97043.19055357405,
- 97406.83103336953,
- 97508.64091238416,
- 97596.85822151981,
- 97281.93703232154,
- 97339.53315472855,
- 97182.15385952276,
- 98255.45010528169,
- 96708.5597033612,
- 97342.9103563253,
- 97298.42341187966,
- 98020.16838808233,
- 97476.84212265511,
- 97585.2552421273,
- 97850.09960847285,
- 97800.77052809988,
- 97497.40137546581,
- 97172.85679925286,
- 97230.27471512488,
- 97465.08902518246,
- 97572.7293771363,
- 97060.83487204376,
- 97373.64682205649,
- 97530.9950602946,
- 97230.78206970361,
- 97683.2450611929,
- 97367.93418176113,
- 97194.9145170215,
- 98030.3922687115,
- 98164.50513674611,
- 97211.33338583425,
- 97167.07602680264,
- 98102.01760177093,
- 97473.4025173577,
- 96869.55087283194,
- 98618.6314379455,
- 97980.37305163042,
- 98040.98610521741,
- 97099.06003533595,
- 98609.76983635421,
- 97732.09002327014,
- 97154.99065747266,
- 97218.35146138504,
- 97299.95816584109,
- 97626.13132471772,
- 97112.35613433391,
- 97560.98718189307,
- 97185.7097878747,
- 97559.13458489727,
- 97201.16002150408,
- 97516.02947908005,
- 97270.02110151788,
- 97433.41068898393,
- 97833.68675936971,
- 97325.64609840355,
- 97103.12815964877,
- 97473.72704771126,
- 96893.86441244776,
- 95331.67170746473,
- 96586.20076828018,
- 96137.68930318531,
- 96950.1808551135,
- 96390.43113801478,
- 96858.54175843939,
- 97167.39841072715,
- 97743.58448295263,
- 97449.0985514171,
- 97642.36452938811,
- 97990.33956338989,
- 98636.37989407925,
- 97499.45757321935,
- 97494.95806383107,
- 96707.92401672102,
- 97387.15964980441,
- 96595.88973241366,
- 96547.16032979287,
- 96300.87116130441,
- 96004.06807647034,
- 97343.70893048414,
- 98022.64385800273,
- 97909.08890877801,
- 97379.30529940335,
- 97912.68866754905,
- 97483.5508578201,
- 97453.80616460227,
- 97390.56459064402,
- 97854.95892464767,
- 97689.45585714692,
- 96459.9064706218,
- 98220.8617121839,
- 97896.16988465277,
- 97276.66123026267,
- 97720.29522867472,
- 97988.47049740942,
- 98169.99665670788,
- 97706.1575554865,
- 97314.87265253808,
- 97929.82001151697,
- 97928.27341274354,
- 97607.80752654132,
- 97786.29869250092,
- 97805.14139405916,
- 98093.39526957169,
- 97448.93124443709,
- 97659.20648661858,
- 97773.13707838414,
- 97290.81332207196,
- 97691.44923546405,
- 98040.70809859729,
- 97682.17810885303,
- 97902.9875639131,
- 98103.51583993803,
- 97433.16878255778,
- 98011.69742537098,
- 97956.78235187841,
- 97712.75424892707,
- 97337.3673240496,
- 96357.32745947987,
- 96262.42166171632,
- 95826.03997621946,
- 98066.1726574899,
- 97701.3804478227,
- 98084.85055027793,
- 97165.59160948182,
- 97482.29772041427,
- 98201.32974009505,
- 98883.68742329624,
- 98667.49767503393,
- 97488.73626458432,
- 96010.7115980084,
- 96872.15210964113,
- 96379.22200820879,
- 96906.24888628504,
- 96854.63537850163,
- 97264.45498533218,
- 98010.49563338193,
- 97612.43902974202,
- 97623.61756268641,
- 97499.04801278567,
- 97608.46277176453,
- 95934.14872105536,
- 97455.35219073194,
- 97335.19348886795,
- 98225.34302642361,
- 98229.77888928792,
- 97482.53862767345,
- 97276.46828922024,
- 97499.88151314572,
- 96299.26984037684,
- 96500.32458861038,
- 96778.83528846483,
- 96483.80491367223,
- 100136.85344995526,
- 99551.68465587133,
- 100437.39062185503,
- 99551.98543303015,
- 99562.25712118535,
- 99359.06703624275,
- 98574.50972172228,
- 98538.96596090084,
- 99762.90131115422,
- 98977.8256826855,
- 97325.59157415244,
- 100141.87894949828,
- 99845.35414701192,
- 98971.68304848456,
- 99673.93123472382,
- 99291.99320881635,
- 99276.35931151945,
- 99120.91791864607,
- 99397.55134035554,
- 99184.60882109228,
- 99142.08519452307,
- 99316.2243501031,
- 98622.91972235353,
- 98628.35943001318,
- 96995.58808119217,
- 96874.32517213062,
- 96984.11595684849,
- 97109.16179890749,
- 97136.19437689305,
- 97491.9260662067,
- 96362.21507081333,
- 96805.5627237504,
- 98078.46725482005,
- 97340.80449807804,
- 97488.0322813689,
- 96435.9592073502,
- 97411.333447029,
- 97430.46651931974,
- 97362.69630546733,
- 97147.4098591697,
- 96935.63520473371,
- 97289.22073553668,
- 97850.12598200802,
- 97597.36616865019,
- 96412.37649005053,
- 97375.63672739729,
- 96830.34367432375,
- 96727.0857416317,
- 96968.7576874346,
- 98028.98765417963,
- 97254.19037202669,
- 98343.20918176853,
- 98178.54170307206,
- 98199.86102071151,
- 97744.85805549823,
- 98056.94048479544,
- 97951.56325025932,
- 97888.06964139262,
- 98115.52004533702,
- 99023.4635169911,
- 99401.61250638886,
- 98987.744183523,
- 99579.00966292991,
- 98635.38198452107,
- 100098.40192877872,
- 98017.95961808166,
- 99022.78768529206,
- 96435.29713124092,
- 96931.12324851674,
- 96463.50079272543,
- 96120.0822298696,
- 96240.44430881485,
- 96101.99869734746,
- 96315.36819369205,
- 95937.25203342551,
- 96235.33414286007,
- 96530.33748860421,
- 96182.08723044166,
- 96258.26403190757,
- 98709.8651975024,
- 99109.15521458666,
- 100640.4787093486,
- 100235.20982182995,
- 102213.573130387,
- 100665.20298807592,
- 101380.72545035236,
- 99856.27897972005,
- 99786.36456658994,
- 99683.00699846164,
- 98812.91818171015,
- 97843.27029212235,
- 97728.72992702796,
- 98904.72563619397,
- 98942.09530630929,
- 98891.2416273708,
- 98417.88816057792,
- 97988.12714007127,
- 98185.14683392025,
- 98502.26373555082,
- 98563.51548863579,
- 98515.43976060345,
- 96994.13649214181,
- 98899.25788886541,
- 98911.1768536842,
- 98350.05034462475,
- 97442.5837413775,
- 96877.27316989908,
- 96504.96941037805,
- 97237.72508581873,
- 99586.27547231995,
- 99232.31835984743,
- 99900.79355708066,
- 99953.84555270121,
- 100010.22175620866,
- 100488.19339995636,
- 99050.91600599952,
- 100300.1455608082,
- 99125.08385354279,
- 100865.26021198924,
- 98730.97463170756,
- 99515.36066611517,
- 99419.17564342206,
- 98962.18713370281,
- 97366.57493092174,
- 98539.96016607621,
- 98539.20822724189,
- 96191.69901840627,
- 96265.19900264395,
- 95997.27711720114,
- 98500.0361551715,
- 98246.11805337203,
- 98850.07485794366,
- 98011.22054926708,
- 101377.60794729496,
- 98957.24165577488,
- 98961.50436798272,
- 98935.5010496066,
- 96824.95283232043,
- 96894.77232507731,
- 97119.02524363514,
- 96134.33859468818,
- 96133.66483574735,
- 99362.4122499512,
- 98980.06656171624,
- 98577.91639424925,
- 98301.5427103644,
- 97911.65322441417,
- 99947.23103246646,
- 99525.32125049765,
- 100615.97017651156,
- 99091.59936505146,
- 96193.09435285682,
- 96209.32610496953,
- 96157.43262757578,
- 96039.16378214146,
- 95666.6047695683,
- 101027.38756222327,
- 100491.07919538966,
- 99965.07519503396,
- 98540.85216934852,
- 99052.2124935182,
- 97895.64290700338,
- 99076.34984414672,
- 98336.60564073424,
- 98674.7174457713,
- 99271.76461161645,
- 99265.99329452899,
- 97961.22502344675,
- 97330.30197024634,
- 98153.0005023464,
- 97996.06129807832,
- 98230.51101716988,
- 98279.26861206899,
- 99626.79604297405,
- 99000.02707953496,
- 99142.62317278316,
- 100188.52114244823,
- 99265.28429092855,
- 98832.24946054372,
- 98597.7964869281,
- 98557.67286605883,
- 98374.27664176481,
- 98475.73906360153,
- 97731.41157443785,
- 98308.24242195391,
- 97840.92878276923,
- 97886.2552796078,
- 98672.42439807321,
- 98993.730905672,
- 99280.86800505298,
- 102128.56689301181,
- 105318.17245295613,
- 101417.57039700724,
- 102629.20595000873,
- 100636.49150263055,
- 102559.4749251737,
- 98019.20026379389,
- 99501.46206268593,
- 98810.35406462688,
- 100839.09741193936,
- 98877.03574041717,
- 99714.32506825263,
- 99140.32285163709,
- 101435.76546972904,
- 100379.20660771398,
- 100494.1604689617,
- 100444.83349810736,
- 100171.78786335049,
- 99691.16026545654,
- 98069.36909948081,
- 98992.20989010415,
- 99218.7411313723,
- 99412.54200822763,
- 99155.63016872654,
- 98981.42825942171,
- 98756.61116861763,
- 98771.61564503152,
- 98894.44972464189,
- 99331.7744747594,
- 97816.61219866003,
- 102530.11405078055,
- 100158.43034755554,
- 98870.69224118859,
- 99495.77993367877,
- 98896.60676749866,
- 99061.38220264099,
- 99749.23255553393,
- 99863.46008168485,
- 101253.85143735835,
- 101066.18080243433,
- 100833.069541554,
- 100216.65510336985,
- 101097.55034226578,
- 101618.20433424404,
- 100357.48060133551,
- 100059.12439104206,
- 100338.86353601632,
- 99586.51857910478,
- 99951.0659012268,
- 97856.81262960663,
- 96575.13863198814,
- 96162.4303606248,
- 95209.07740315559,
- 95825.30565065744,
- 96286.13541218151,
- 98427.35866005206,
- 100540.34287442153,
- 97698.73432565104,
- 104834.05247099117,
- 102345.37784253916,
- 101736.15467046229,
- 102333.66889929863,
- 100557.2821983049,
- 99212.64656167013,
- 98977.62128580881,
- 98312.73735572214,
- 99304.290069593,
- 101567.70440058614,
- 101580.24476163396,
- 101735.09643628406,
- 101809.73928647002,
- 101785.06810363055,
- 101573.83309184245,
- 102953.17211273103,
- 104198.31260714601,
- 106233.53305936579,
- 102017.0341341957,
- 99527.77886408713,
- 101917.25635551335,
- 101976.86435161783,
- 100243.014205219,
- 99932.49537425906,
- 102190.88209432086,
- 100124.12507747632,
- 101885.99912176745,
- 101697.96826814402,
- 101829.23480550414,
- 101522.08525588791,
- 100597.08688634772,
- 100353.70323921503,
- 102178.3682577673,
- 101779.84963144422,
- 99852.88185831445,
- 99990.35940967675,
- 102063.12360975276,
- 101781.56537819619,
- 101749.04159536793,
- 101634.82305426827,
- 102437.23538334639,
- 101962.97098059615,
- 100466.67560792255,
- 100113.74493313026,
- 100858.32947002299,
- 99975.85497357504,
- 101430.14405480694,
- 102278.80486131168,
- 101812.8020162423,
- 101588.15862456126,
- 102563.3206054858,
- 100748.96797238242,
- 101678.99297077536,
- 100750.28187529245,
- 101454.990611554,
- 100838.817421307,
- 100730.67229205805,
- 99990.30313700912,
- 102022.7910616867,
- 99646.19840781609,
- 99629.49033305429,
- 101905.45676874653,
- 100837.07785367471,
- 101545.97635361711,
- 101489.69453765085,
- 101743.09284030006,
- 101836.64612097175,
- 101856.42797018508,
- 101839.95878378669,
- 101729.67598101968,
- 101661.94211903469,
- 101780.85634799347,
- 101558.64005120956,
- 101330.36334771957,
- 100698.24029410268,
- 101614.75611960207,
- 98644.28600268529,
- 99737.09642278514,
- 100879.74390370514,
- 101077.31846050268,
- 102156.91580320336,
- 101765.97063868862,
- 100219.71623880966,
- 100725.71208858925,
- 102143.24639139706,
- 101792.06935951588,
- 101942.69325653883,
- 101650.40513567929,
- 101988.60520862282,
- 103450.9949418264,
- 101511.31310826991,
- 101648.40427836328,
- 102018.88919342995,
- 101741.66784545634,
- 101581.9987428239,
- 99468.2559944489,
- 99601.83878035982,
- 99603.45577850576,
- 99040.76425546396,
- 99172.24243406764,
- 99528.31511285559,
- 98769.65877246718,
- 99287.60100382363,
- 99475.57144267684,
- 98297.39646140915,
- 97418.97603097925,
- 98936.37152899419,
- 99182.20687722552,
- 99227.14373040265,
- 98821.68699083632,
- 98717.22176373757,
- 98584.01431051758,
- 99272.0781529895,
- 97965.80143681738,
- 98982.5031332364,
- 98027.13708713652,
- 97615.38809747441,
- 97503.33387121037,
- 97752.58113868252,
- 98136.58032128063,
- 98061.10715277967,
- 98614.1806245494,
- 98136.20709255511,
- 97999.91203126067,
- 97958.47457130344,
- 98009.09509648604,
- 97850.60195378115,
- 98005.5574452993,
- 97776.72898296927,
- 98631.78626191251,
- 99140.68926056154,
- 98536.86418508874,
- 98910.03636312029,
- 100242.68992519718,
- 97891.04268537596,
- 99023.62442100499,
- 98951.56237964176,
- 98742.84185261693,
- 98636.11447862479,
- 98715.24476448026,
- 98700.92429371181,
- 98641.93221348678,
- 98583.13027911846,
- 99072.54185715798,
- 99135.47449879821,
- 97232.70911561699,
- 98615.37677009653,
- 98917.96441057288,
- 98434.35971075694,
- 97681.16946907644,
- 96856.72362255462,
- 97895.28004870834,
- 98831.79765712937,
- 98438.58130728804,
- 99371.02994235742,
- 99231.0427929239,
- 99676.63268184493,
- 98900.44369968983,
- 99700.42917263086,
- 99577.40761315082,
- 98426.5533743314,
- 99776.94011289947,
- 98899.60200925548,
- 100154.96563673523,
- 98520.33361422195,
- 98367.5384870807,
- 98334.70594223429,
- 98691.85046989784,
- 97255.41454495481,
- 97352.47846420809,
- 97313.7618367065,
- 97296.61777493556,
- 96665.07370474232,
- 96859.96292458837,
- 98321.87992748909,
- 97182.47078555363,
- 97884.83964830039,
- 97540.60877193058,
- 97276.55612119116,
- 97459.95104458535,
- 97893.0352520524,
- 97962.17985493861,
- 97344.09093533971,
- 98205.86697164566,
- 93644.68272986174,
- 98101.62417688777,
- 98271.36712487994,
- 97452.24353701598,
- 98361.52070775314,
- 98166.8451977046,
- 97487.35358808235,
- 97647.87367032644,
- 98497.56819029221,
- 97393.78304664446,
- 97502.76078478833,
- 97564.08079360449,
- 97516.18869947606,
- 97435.17397362897,
- 97736.81995700866,
- 97446.32329700516,
- 98582.527096305,
- 97809.54483551205,
- 98878.34647466309,
- 99154.02606674639,
- 99172.02697912694,
- 100490.49130040826,
- 100142.88953715774,
- 99388.84212708821,
- 100563.74448489815,
- 100746.00755669444,
- 97652.12794157442,
- 97864.25906949551,
- 99227.43848031209,
- 99361.9255445475,
- 99174.69010994876,
- 98657.9373151273,
- 98047.59460307116,
- 98808.2037529869,
- 98641.99704060325,
- 98573.86688152544,
- 98037.7546833775,
- 98063.33951976198,
- 98238.09327133199,
- 98454.91999809204,
- 98622.72131256308,
- 99683.02342130439,
- 98748.13851273438,
- 98736.6487431001,
- 98461.56188963,
- 98591.3906492825,
- 98735.88204679007,
- 98760.83345788409,
- 98669.98695044409,
- 98554.81272175781,
- 98551.32201482294,
- 98537.48831459216,
- 98994.10656357431,
- 99119.57616554244,
- 97344.39651735617,
- 98722.34383571171,
- 98882.4958894141,
- 97303.13866203713,
- 96302.24669832372,
- 98647.5348287252,
- 98608.5215316511,
- 98222.80841969991,
- 98819.65784093091,
- 99036.66961313797,
- 98624.20331564605,
- 97819.31095483244,
- 97721.18147869087,
- 98271.70807917252,
- 98519.86918764931,
- 98606.63667538292,
- 98519.39123710812,
- 98765.77024442171,
- 98568.58464013341,
- 98724.09688274346,
- 98551.33786774045,
- 98642.19574069705,
- 97931.34716549548,
- 98666.49334653927,
- 98631.64406060676,
- 98838.9801057053,
- 98827.92913925355,
- 98790.2159527499,
- 98181.72232625872,
- 98063.19422735604,
- 98475.91698744615,
- 98570.43191653062,
- 98455.4277807688,
- 98813.72618994876,
- 98846.89766234448,
- 97228.42625405909,
- 97394.11022522849,
- 97532.22883965746,
- 97344.33342659262,
- 97272.0006070915,
- 96925.47458412843,
- 97092.16772009524,
- 97209.90565041362,
- 97856.84020013195,
- 98009.61286792412,
- 97211.79938472387,
- 97045.9347960569,
- 96871.14124722035,
- 97372.91158673672,
- 97023.36540561469,
- 97191.67156979971,
- 97414.64038417542,
- 96885.06814180473,
- 97914.23819876518,
- 97340.71979094419,
- 96805.4528033362,
- 97391.61070686534,
- 97277.04466695724,
- 97953.10373989804,
- 97109.44347958003,
- 96731.40431617344,
- 98037.69686647393,
- 96844.05757802,
- 98053.21280174737,
- 97454.12338544696,
- 97565.17353076243,
- 96943.34146960913,
- 97216.68390135047,
- 97325.96467730298,
- 97320.6256117,
- 96737.12013794533,
- 96149.9240314162,
- 97714.7246102844,
- 97723.43671189145,
- 97537.88311195365,
- 97408.99246023723,
- 99182.43123350566,
- 99265.87966805445,
- 99944.07306174988,
- 99900.64834271275,
- 99812.21227412489,
- 99420.92430477343,
- 99177.62291174373,
- 99488.52585196453,
- 99587.48173322152,
- 99937.87696465585,
- 99591.60747183427,
- 99048.9116417464,
- 99607.88973258882,
- 96915.07628650902,
- 99990.2370091159,
- 101343.89990262453,
- 99709.43474110542,
- 99222.80666593021,
- 99744.15222602605,
- 99679.73750040874,
- 99788.15934489542,
- 99889.87039027306,
- 98529.60002690525,
- 98918.42807769222,
- 99077.64957318998,
- 97845.28481450288,
- 99041.95245865517,
- 99058.18978821568,
- 99443.36056428892,
- 99938.9075507464,
- 99123.1886578178,
- 98975.4583568785,
- 96764.93858259599,
- 97558.91318648357,
- 97906.28247623073,
- 97718.55252171961,
- 96152.1057643561,
- 98062.51604299857,
- 97964.38553712035,
- 98023.44519196717,
- 97561.8035357872,
- 97762.95601633764,
- 98326.83556515438,
- 99016.5581620588,
- 99240.9405426935,
- 98641.53479851007,
- 99095.8319111279,
- 99642.41138351153,
- 88590.85511713462,
- 95956.16594891516,
- 95103.80826824161,
- 95849.92383113039,
- 95705.12403974576,
- 96150.57574768981,
- 96295.31083736721,
- 96244.53594836782,
- 95503.21802046116,
- 96107.21446370435,
- 94297.22907899908,
- 95769.18345824692,
- 95854.58816461003,
- 95472.03336553831,
- 95497.96761435788,
- 100266.60888331049,
- 100515.1022038416,
- 100780.13173749707,
- 100275.49487326102,
- 99308.59414610175,
- 100993.81994431307,
- 98998.48843958214,
- 99497.63865967996,
- 98414.55375540078,
- 98275.0868761614,
- 99287.0655957827,
- 99168.38311213651,
- 99294.3343501885,
- 97827.76197200979,
- 98414.55316263932,
- 98257.85820299109,
- 98418.17015609592,
- 100175.0607969374,
- 100123.4034196032,
- 99203.1995445626,
- 100259.94700165218,
- 99150.71873965448,
- 99176.45733464141,
- 98536.71552534091,
- 100486.68654940001,
- 99798.83508838428,
- 101233.72050294731,
- 100304.51471837264,
- 99369.55175238507,
- 99459.89574901403,
- 99497.65911985919,
- 99334.08753749864,
- 100439.05341443338,
- 99891.87571608167,
- 99787.73624613034,
- 99837.0082125705,
- 99338.62761306738,
- 99398.32512040935,
- 97937.7823995534,
- 98960.49823630943,
- 99134.05776587574,
- 97772.18600703926,
- 99187.00950581132,
- 99076.17431450075,
- 97063.32877705898,
- 99009.06890021921,
- 99244.62898283631,
- 98895.86594871506,
- 101287.53163759898,
- 100667.31521747577,
- 99440.37140141985,
- 98829.92293140064,
- 100008.8185640341,
- 99630.27697060951,
- 98199.99210205229,
- 99364.76795754352,
- 99587.45269788787,
- 99204.80764182155,
- 99472.18090796605,
- 99584.74778173275,
- 99446.27946308655,
- 98780.33197584302,
- 99746.53204017173,
- 100408.86536513967,
- 98968.71992266763,
- 99390.22164459903,
- 99420.43636760573,
- 99004.39514221971,
- 99328.58010501186,
- 99704.67044515068,
- 99356.71931442092,
- 100275.50143084832,
- 96938.66295867188,
- 97964.63401886185,
- 97535.23793520761,
- 97420.7621020905,
- 97390.08288766422,
- 99574.3677856123,
- 99273.85480193101,
- 99615.64332690387,
- 99572.0458167728,
- 99982.59484908597,
- 100442.43446705127,
- 98917.55283849573,
- 100405.62380636072,
- 99264.01286919507,
- 101880.18878218585,
- 101201.13786259948,
- 101261.17342969753,
- 100802.37593631717,
- 101061.65052979656,
- 99928.46775743726,
- 100746.53951262421,
- 100868.33657813334,
- 100812.8197399703,
- 101531.87027489231,
- 100295.24230126226,
- 99417.48192028531,
- 101239.75080883966,
- 98930.33399893016,
- 99586.53541170484,
- 99162.91558583234,
- 99368.70015947068,
- 99328.89319402496,
- 99358.76293373808,
- 100016.85978108921,
- 100664.31901839633,
- 99767.26452719056,
- 100029.98747600272,
- 100412.32402265836,
- 99065.72480630428,
- 98156.27282406032,
- 98227.70254427848,
- 100038.33560601297,
- 101143.74462846812,
- 98467.10096591972,
- 99388.04981308476,
- 99160.28669960532,
- 96279.30869943406,
- 96388.18293816505,
- 96692.27028903799,
- 99054.46710922422,
- 96793.04034680343,
- 102477.24885418148,
- 99962.03299582665,
- 99408.87948140925,
- 99568.49510955371,
- 97652.86342630182,
- 97627.2235694482,
- 99106.21684464924,
- 98595.84891148518,
- 99156.63257376007,
- 99241.701769924,
- 98691.20212375972,
- 97995.16766578473,
- 97878.09063826728,
- 98401.52424464934,
- 99578.9140767699,
- 99232.9372120856,
- 99103.70219305377,
- 98247.25370404207,
- 99183.89896358912,
- 99108.02772477719,
- 99457.6410217742,
- 97381.90305652776,
- 97539.68362575934,
- 97454.32557679321,
- 95643.87509548519,
- 98164.19533467619,
- 98940.87869445772,
- 99064.5138791314,
- 99697.0870632984,
- 99422.03795312622,
- 99658.1811796683,
- 99310.43005941642,
- 99291.88291924677,
- 99357.41168283236,
- 99519.81617905492,
- 99461.9154620648,
- 99503.27823687728,
- 99428.27940191151,
- 97479.47272277385,
- 97966.35131578807,
- 99676.52384181802,
- 99561.79056971268,
- 99432.35372583236,
- 99446.59225735396,
- 99428.01341337721,
- 99232.69699144822,
- 99392.972033571,
- 99460.35192451965,
- 99250.82737975198,
- 99528.08669879334,
- 99236.5763742713,
- 99339.81667170062,
- 99356.35133098044,
- 99311.28191822488,
- 99347.20154555528,
- 99326.09755068594,
- 99398.38474298466,
- 99425.06404185461,
- 99459.37878349259,
- 99293.81229317529,
- 99329.49500884015,
- 99294.94935916096,
- 99397.89778849662,
- 99370.73468447644,
- 98364.9237598564,
- 98314.28463324666,
- 98297.57158816028,
- 98299.16730691226,
- 98488.44888265227,
- 98341.92538182945,
- 98498.18579690327,
- 98221.26321802658,
- 98440.65799241852,
- 98505.26245324187,
- 98273.63810369174,
- 98449.01702979534,
- 98458.30573058059,
- 98435.56007553921,
- 98828.88194167838,
- 98734.89174003295,
- 98753.36326823733,
- 98738.05385712087,
- 98806.68843808728,
- 98927.51583449688,
- 98809.76404802127,
- 98831.44278769466,
- 98721.32609049382,
- 98611.23290157397,
- 98554.33836951133,
- 98662.26737231707,
- 98569.50298295039,
- 98444.26480191355,
- 98440.84097603508,
- 98388.22622587845,
- 97562.5173703681,
- 97659.90156596046,
- 97539.18470334534,
- 97562.28204297766,
- 97628.5805035853,
- 97532.78555592157,
- 97521.31251635685,
- 97457.12642131757,
- 97469.56881373974,
- 97463.881171705,
- 97266.57307609903,
- 97538.36994649333,
- 97506.04706104075,
- 97565.8070193732,
- 97567.95672647221,
- 97576.65796976959,
- 97433.00403301486,
- 97663.14027350585,
- 97624.84001903216,
- 97484.1141530828,
- 97600.38916390667,
- 97509.90124758272,
- 98185.41172751482,
- 99058.37892612514,
- 99224.34320360345,
- 96043.45140605627,
- 96074.1773250052,
- 98353.82046727034,
- 100096.5789219651,
- 100142.84366050502,
- 100114.8346992164,
- 100137.00458558447,
- 100088.57204356979,
- 100165.51947574422,
- 100131.45217606793,
- 100011.84304283973,
- 97683.34960749114,
- 97662.15750716739,
- 98531.37287469098,
- 98471.56463893122,
- 98391.64714900294,
- 98877.55812845338,
- 99029.5519099041,
- 99040.32401506804,
- 98939.85298657045,
- 99071.00654345889,
- 98134.38177364993,
- 99281.8124720996,
- 99410.76891600141,
- 99265.15415167905,
- 99570.35524851363,
- 98734.64536633549,
- 98817.70091073363,
- 98705.86338872745,
- 98779.15100171715,
- 98743.88825326356,
- 98722.95539743864,
- 98669.66450254756,
- 98727.04413925752,
- 98603.20304504342,
- 98657.34511910615,
- 98306.9719599773,
- 98410.69904555679,
- 98438.62268190562,
- 96262.06027998815,
- 94859.96864376472,
- 96176.9141455721,
- 94389.95972141267,
- 94306.38229315246,
- 94318.7006224086,
- 94419.1947747694,
- 94392.82814914087,
- 94389.95371194034,
- 94437.83155434212,
- 94218.23975158927,
- 94194.02296244045,
- 94008.58638880895,
- 94284.66655702308,
- 94573.07039112478,
- 94372.80806801579,
- 94272.01261469895,
- 94240.6896417481,
- 94249.69397963368,
- 94597.4481398317,
- 94435.28319563705,
- 94303.52270668159,
- 94178.90319153182,
- 94243.63550838632,
- 94421.52405973361,
- 94205.67563602903,
- 94202.7117129383,
- 94320.52454245155,
- 94293.7942434875,
- 94267.58695307715,
- 94495.40317446586,
- 94170.06170101493,
- 94211.52030884504,
- 94212.18498423915,
- 94330.95096713639,
- 94270.53763976666,
- 94390.87449225048,
- 94287.89529624995,
- 94446.13153450796,
- 94354.97654559696,
- 94346.09109533348,
- 94480.69700103143,
- 94273.99317481946,
- 94289.85535250117,
- 94170.9041715765,
- 94324.79195247918,
- 94132.7057344337,
- 94074.80621416663,
- 94249.39377209143,
- 94426.37056546453,
- 99555.46875574846,
- 99804.62331523834,
- 99331.72440120617,
- 96160.81025461864,
- 96205.75452273182,
- 96164.94304166912,
- 96091.27355284609,
- 96321.48275816297,
- 94366.87186140705,
- 94306.37066336245,
- 94529.97922971226,
- 94434.94919736736,
- 94500.55053658024,
- 97122.97557930264,
- 97100.77454563488,
- 97135.42971177665,
- 95489.19345695784,
- 95488.26419210226,
- 96125.26064461117,
- 95919.73918913995,
- 96370.02373932622,
- 96858.89753394539,
- 96901.72588249666,
- 96528.33303416053,
- 98392.21001148615,
- 96053.05650289368,
- 95450.25417539202,
- 95972.78915436483,
- 95970.95308075754,
- 95961.04765530549,
- 95722.21440872799,
- 95729.23859344584,
- 95670.62443730164,
- 95481.39560671317,
- 95340.12961580537,
- 95303.17115160594,
- 96179.6045501681,
- 96109.17619897892,
- 98530.61451075874,
- 99053.41371146425,
- 98605.97144397798,
- 98976.19477847009,
- 99267.27734915515,
- 98691.31264841248,
- 99232.44990568829,
- 95257.82795586446,
- 95506.86434038139,
- 95292.85212499998,
- 95262.32950182882,
- 95354.57773115158,
- 95458.13438059368,
- 95385.3428089936,
- 95209.67552481889,
- 95311.77032987887,
- 95444.61330598006,
- 95242.05024879698,
- 95252.43928937333,
- 95381.14361410459,
- 95333.87765260295,
- 95351.0489158062,
- 95195.90565530288,
- 95297.633034384,
- 95303.90705774128,
- 95447.04817351245,
- 95285.61582132381,
- 95322.42512021921,
- 95176.15417191545,
- 95381.0517074507,
- 95282.61728466298,
- 93231.70305331911,
- 92347.74753772338,
- 92216.72434555799,
- 92252.47720808198,
- 92256.07675212514,
- 92324.31396892523,
- 92415.17834135809,
- 92206.14403308384,
- 92211.31836481478,
- 92294.74860434067,
- 92140.90020542977,
- 92009.28930966396,
- 92188.30662763724,
- 92240.06832701992,
- 92136.26649392476,
- 92061.4858642193,
- 92117.94874151466,
- 92301.20739485609,
- 92270.44173942773,
- 92476.04624218972,
- 92274.0842380315,
- 92200.11384624743,
- 92129.61464772673,
- 92107.99155216134,
- 92264.89531600794,
- 92190.23091480859,
- 92280.17186758008,
- 92407.87747716965,
- 92369.8251914418,
- 92374.2328896316,
- 92478.78012790662,
- 92448.86611308221,
- 92122.39984355103,
- 92167.2011910307,
- 92206.32328236508,
- 92300.72398965452,
- 92070.91719750845,
- 92186.0226881958,
- 92274.32072505055,
- 92248.01639772087,
- 92251.44929818394,
- 92394.22447395853,
- 92291.97074429669,
- 92316.73871688145,
- 93059.16988490241,
- 92393.6617867084,
- 92300.0455267758,
- 92200.82708603864,
- 92217.13863978007,
- 92191.01154073558,
- 92088.59875338602,
- 92096.45991653283,
- 92152.5004987375,
- 92189.78925848598,
- 92182.36073816268,
- 92079.45570088438,
- 92255.84570257005,
- 92107.85643126183,
- 92402.8943849796,
- 92140.52812030239,
- 92230.18841609285,
- 92240.46970884116,
- 92092.02752181761,
- 92122.01120625601,
- 92515.26142917994,
- 92299.43199008808,
- 92191.80914221446,
- 92289.3106433427,
- 92278.89223268858,
- 92314.80079542873,
- 92239.59355543758,
- 92214.87566884019,
- 92350.96560856364,
- 92319.24278973592,
- 92120.59934842995,
- 92402.46333965527,
- 92395.55800703372,
- 92407.26663431138,
- 92170.76494797798,
- 92149.3896272451,
- 92149.07451227563,
- 92362.9412919757,
- 92072.22295952133,
- 92165.8074200398,
- 92264.4950612678,
- 92321.76859128801,
- 92243.35934066583,
- 92240.73151292205,
- 92351.74121802478,
- 92212.58705155137,
- 92261.77315785893,
- 92272.0976249191,
- 92458.16706063351,
- 92337.92067785797,
- 92369.46596237014,
- 92309.11050830808,
- 92348.91301035674,
- 92158.63274311995,
- 92359.01992750082,
- 92422.06859334902,
- 92294.31157988217,
- 92285.98502461443,
- 92247.55109256034,
- 92072.40823846689,
- 93217.65623676107,
- 92298.84256798221,
- 92143.44554872952,
- 92114.55881212364,
- 92388.34112005818,
- 92104.1575179089,
- 92178.4738757029,
- 92211.68105250059,
- 92417.7595950224,
- 92171.84482602276,
- 92237.57093869668,
- 92088.96846171409,
- 92070.41065231868,
- 92187.36681509153,
- 92370.404557384,
- 92280.5187113803,
- 92077.55009881165,
- 92097.85089890493,
- 92250.68960775186,
- 92229.6510093099,
- 92124.28625739494,
- 92277.44419006346,
- 92112.15601888165,
- 92236.86729316006,
- 92298.52245461594,
- 92326.23605654163,
- 92131.71539503698,
- 92327.35935856824,
- 92170.31098093353,
- 92316.82956297412,
- 92136.64050642017,
- 92132.58089114129,
- 92087.82568701153,
- 93923.1020165203,
- 92128.44388904206,
- 92165.08700529874,
- 92146.48937205561,
- 92224.22667915009,
- 92276.97318654209,
- 92179.81064205624,
- 92230.56984005714,
- 92194.68123738615,
- 92303.61592663793,
- 92259.52032100408,
- 93895.03036091999,
- 93891.5498056317,
- 92106.50574246883,
- 92274.69795367589,
- 94839.05921223038,
- 93892.18559051274,
- 92216.84531759286,
- 92223.28407935618,
- 92322.9398265956,
- 92181.57577859817,
- 92125.35754151737,
- 93909.45243357617,
- 92156.29947048516,
- 92363.13694954333,
- 92241.1538857497,
- 92198.72093061345,
- 92277.94262352257,
- 92348.27216643172,
- 92100.12237040915,
- 92224.97120305183,
- 92162.6663993115,
- 92267.80885625147,
- 92161.25150030805,
- 92495.77534289319,
- 92351.52551961424,
- 92338.47796412221,
- 92326.41795009529,
- 92329.20324077769,
- 92222.80917248885,
- 92314.41985868117,
- 92256.26836982086,
- 92503.48875709479,
- 92496.54476011512,
- 92375.68912132124,
- 92217.9630178079,
- 92295.27871363045,
- 92243.55514949372,
- 92333.49401411432,
- 92265.93497688345,
- 92296.90882344653,
- 92161.89029910951,
- 92322.08469817725,
- 92243.26218856651,
- 92187.51445774999,
- 92167.8995244472,
- 92093.71003634819,
- 92159.09530130218,
- 92196.35201010661,
- 92189.73775652013,
- 92143.18325545135,
- 92385.10208996975,
- 92347.33566601481,
- 92429.41868813094,
- 92212.81898397961,
- 92479.64231084207,
- 92459.66524880938,
- 92426.13656796042,
- 92476.16358429435,
- 92423.07228620039,
- 92180.50690094149,
- 92532.19153863966,
- 93914.93502816484,
- 95497.05276392102,
- 95837.77507526969,
- 95812.4154540912,
- 95698.50564941308,
- 95628.40799309613,
- 95158.67040196666,
- 96060.05473969401,
- 95255.10891653616,
- 94509.72194374804,
- 96214.29567174465,
- 94269.50089276706,
- 95029.52467561196,
- 94894.02889160464,
- 94921.09641509663,
- 97015.94024530961,
- 96924.78320992363,
- 97343.47929912621,
- 96837.76873429003,
- 96961.74738516554,
- 95318.86888176948,
- 96858.8259365058,
- 96993.28565305514,
- 96943.63194993603,
- 96906.35772752426,
- 97022.69247553179,
- 96984.5487179883,
- 96874.58922306824,
- 97747.21900755091,
- 97417.73753495087,
- 96969.69441581002,
- 96968.60153243598,
- 96747.02345144031,
- 96601.21280775112,
- 96977.1650347663,
- 95368.49227674282,
- 96056.0944855474,
- 95618.32230128575,
- 95004.62236427962,
- 95064.92563679993,
- 98235.0876506272,
- 96972.87752214319,
- 98629.48902981033,
- 96378.79458742414,
- 95285.84544380629,
- 95335.33394613424,
- 95380.30317238574,
- 94292.11046783296,
- 94317.6587058325,
- 94322.88661735097,
- 97023.15247734636,
- 96535.8616409643,
- 96055.6245428955,
- 97606.17229012403,
- 97591.89461364681,
- 97576.71628926601,
- 97500.32823463708,
- 95328.50872682448,
- 95300.26526034814,
- 95271.0473357906,
- 95510.65824351287,
- 95347.32880997096,
- 95271.44501622175,
- 95372.15228673177,
- 95421.30035086887,
- 95244.81624951023,
- 95442.41664362849,
- 95478.64369343246,
- 96410.03307549134,
- 96493.56633299332,
- 97178.27508498696,
- 96593.2717327048,
- 96302.94937464621,
- 94729.26537341278,
- 93861.98590665219,
- 93956.15973323683,
- 93878.00338465307,
- 93852.65938610463,
- 93796.41706922535,
- 93912.14907894815,
- 93783.06450327153,
- 93830.40835361417,
- 93845.20569222173,
- 93805.02916709852,
- 93848.69468485197,
- 93895.12691645266,
- 93783.44722599696,
- 94214.94588328559,
- 94397.66514778201,
- 96850.54600123651,
- 97426.74158915173,
- 98273.0404411526,
- 95786.36719281576,
- 96349.92934443918,
- 96338.35038049635,
- 97199.92290572009,
- 97155.05669738412,
- 95179.22795563574,
- 95203.19322201304,
- 95656.42468831391,
- 95242.50683299675,
- 95206.90394798008,
- 94585.54283407258,
- 94154.85813823475,
- 94158.20929334633,
- 96493.32238421563,
- 96459.46741135049,
- 95059.96146767413,
- 94963.37886006157,
- 95002.6752162217,
- 94048.93199379041,
- 94005.1775320185,
- 96603.54230227087,
- 96550.22153001573,
- 95756.08622571501,
- 95809.09217161969,
- 95836.83724442031,
- 95850.76938404588,
- 95103.97227801211,
- 95376.11147143133,
- 94581.3224656246,
- 95103.11342187891,
- 95124.22218566947,
- 92179.36209571654,
- 92342.1647082602,
- 92343.11266496578,
- 92385.80051301901,
- 92363.17729310234,
- 92415.46817355568,
- 92371.34679188945,
- 92059.19945228689,
- 92254.26120896422,
- 92258.94206324218,
- 92289.21560844104,
- 92203.64139679476,
- 92294.99886701563,
- 92211.95592517799,
- 92290.40010143537,
- 92313.0809202976,
- 92271.08130189306,
- 92439.0785089486,
- 92230.63025610495,
- 92342.20159560516,
- 95229.32911955088,
- 95801.8797460325,
- 96674.53315191732,
- 95572.39553147889,
- 95678.9898490588,
- 95564.26772175558,
- 95634.67560640232,
- 95662.54958325467,
- 95532.36565291665,
- 95726.21465473025,
- 95560.55284189491,
- 95996.56462555612,
- 96851.12729283779,
- 97062.67817875755,
- 97050.47210070032,
- 96833.70570836318,
- 96978.96277123882,
- 94491.85479096157,
- 95699.64251087462,
- 95709.03021955737,
- 95708.33665371903,
- 95679.00902682092,
- 95559.50076204128,
- 95428.96196267167,
- 95512.51691874191,
- 95606.9735303453,
- 95541.43426055746,
- 95436.21133694542,
- 95649.54902588758,
- 95474.01595310215,
- 96107.19415896157,
- 95523.28532488653,
- 97550.03779670106,
- 97677.43610441216,
- 97734.7750819923,
- 95917.55516884955,
- 95318.33825288666,
- 90398.13563399928,
- 90219.83557956429,
- 91850.72333799597,
- 89955.4720743023,
- 90351.7003485438,
- 90158.81527667675,
- 90225.72064624407,
- 89808.82616084766,
- 90236.17206468161,
- 90345.96414554433,
- 90101.23951609244,
- 90156.48155842807,
- 90238.81562165567,
- 90188.37121588881,
- 90049.82466375276,
- 90839.86000529061,
- 91522.46011082169,
- 90426.59718746592,
- 90364.49650618425,
- 90281.57249944574,
- 90204.0364488624,
- 90325.97959319454,
- 90286.08327358324,
- 90368.68853514639,
- 90131.89700646249,
- 90264.36843072166,
- 90283.73132984444,
- 90409.54204067939,
- 90176.72383861212,
- 90161.34034330312,
- 90174.19097516667,
- 90380.46228281433,
- 90216.7935701221,
- 90187.72273738508,
- 90302.22760431943,
- 90255.81325412332,
- 90227.9318507897,
- 90174.31006624116,
- 90292.82642272265,
- 90147.69829486302,
- 90117.02379395122,
- 91536.18144472227,
- 90098.56959740954,
- 89715.23360905857,
- 90344.20893913148,
- 89977.85792588338,
- 90346.25928401393,
- 93971.80265598431,
- 93725.28554114306,
- 94503.96161457393,
- 95594.78680514084,
- 94607.68459209791,
- 94463.72063775688,
- 96274.70146604127,
- 95919.43239973261,
- 95888.00363924424,
- 96021.01935869602,
- 96206.3567727413,
- 96297.63544971858,
- 96577.88292402872,
- 96449.49416274708,
- 96851.49702075154,
- 96605.92981897558,
- 96610.6899973968,
- 95921.81597746578,
- 95352.39749037023,
- 95951.33594695487,
- 96000.54859558669,
- 96016.9478340095,
- 95554.52104992175,
- 95956.77118384998,
- 95898.63188323451,
- 94864.12017348492,
- 94921.19423968834,
- 94905.71651342275,
- 96730.61407259232,
- 96570.65933290092,
- 96917.55039066126,
- 96845.31383705071,
- 96840.67852705196,
- 95879.40264413109,
- 98181.70136908787,
- 97942.41927684227,
- 96298.20404774172,
- 96248.82270435392,
- 95834.40863293177,
- 95196.70952197771,
- 95434.60009253638,
- 95758.46272512361,
- 96465.93766629184,
- 96426.6308128287,
- 96344.06072109731,
- 95589.36755805337,
- 95645.64475087512,
- 96102.93297875019,
- 96051.58400350752,
- 95926.45987169421,
- 95981.8380794005,
- 95863.15308642662,
- 92001.50766754647,
- 92027.61116900106,
- 92046.7336558993,
- 92065.18747125892,
- 92110.36261703623,
- 91950.95461604063,
- 91977.1495556531,
- 92128.61766596325,
- 91970.65586338179,
- 92031.39064637528,
- 91978.95777114196,
- 92020.2457296412,
- 92043.62147273764,
- 92010.16427467186,
- 92075.75618980045,
- 91997.46138215279,
- 92025.17432984301,
- 92003.87296399754,
- 92024.14688175863,
- 91941.05744628322,
- 92012.21830510841,
- 91983.68058223181,
- 92359.994086341,
- 92252.86309783008,
- 92240.9291961559,
- 93601.82710520699,
- 93704.10085908513,
- 93676.77584347574,
- 93661.20734278191,
- 93572.23203515264,
- 93625.70846719111,
- 92241.75189417685,
- 92167.78389298257,
- 92172.4868795517,
- 92131.47925758659,
- 92080.57228640377,
- 92106.30235506344,
- 92074.75278618281,
- 93012.08801458759,
- 91759.60493933014,
- 91728.37308978925,
- 91695.65516466298,
- 91789.34078452658,
- 91675.77505537764,
- 94374.02538445908,
- 94284.29614613004,
- 93859.39002647411,
- 94016.84050671507,
- 93290.35075837071,
- 93239.54198428936,
- 93194.79788029785,
- 93167.29040070769,
- 94178.18816955703,
- 93974.14793620263,
- 88433.87275134888,
- 88488.9677441534,
- 88681.03188674754,
- 88416.20611550778,
- 90542.60014879846,
- 90633.14423891409,
- 88780.30091689393,
- 88617.30277926706,
- 91035.5356559428,
- 88448.45707614523,
- 88512.19912209532,
- 88538.9357978122,
- 88341.69152456298,
- 88232.54276009464,
- 88526.83874423045,
- 90308.66677680974,
- 88752.36011236151,
- 88666.7899021117,
- 88403.96346659532,
- 88409.88494323137,
- 88454.76601265534,
- 88505.90920258727,
- 90506.38154973468,
- 88392.5213902953,
- 88735.10471964773,
- 88700.42226535387,
- 88681.6166974444,
- 88832.50791438138,
- 88374.23866379407,
- 88371.18539682371,
- 90426.63438770593,
- 88802.81744936632,
- 88762.5516918854,
- 88642.14476996369,
- 88687.33186073622,
- 88594.12361541514,
- 88718.94151298529,
- 88689.16209595407,
- 88481.38487480863,
- 90301.01400148685,
- 90255.91067155173,
- 89890.53693961547,
- 88646.405400081,
- 88460.59624312277,
- 88662.00249888693,
- 88593.18598690111,
- 88700.42324644516,
- 88348.35258534538,
- 88456.28864332136,
- 88677.44885952266,
- 88297.34186598746,
- 88438.77445915592,
- 88308.76253998597,
- 88499.31790626561,
- 88332.66197764105,
- 88521.66032586683,
- 88371.9394417322,
- 88577.511326891,
- 88386.19130325745,
- 88432.37386953307,
- 88378.7527447044,
- 88382.83955964923,
- 88546.40237874411,
- 88021.3313163512,
- 88493.2869392708,
- 88405.61962417421,
- 88454.34943629967,
- 88566.55855702402,
- 89972.49873713554,
- 88550.03063889778,
- 88419.76541763252,
- 88378.89271930164,
- 88237.63395624454,
- 88472.27472068885,
- 88737.91876166544,
- 88302.25676877188,
- 88514.96038148971,
- 88472.68228221488,
- 88493.61718394952,
- 88309.7146296434,
- 90148.49574146973,
- 88287.05815100021,
- 88319.4266756192,
- 88282.5637571512,
- 87989.01476337237,
- 88484.61843123702,
- 88385.38652624989,
- 89987.53509523951,
- 88505.4208955274,
- 88485.92827793986,
- 88584.32409483784,
- 88536.5206651761,
- 88256.36741000491,
- 88339.50119407185,
- 88456.82832726875,
- 88530.42214878742,
- 88406.3825486083,
- 88387.08445144663,
- 88396.28713695996,
- 89893.44601705468,
- 88517.61498493739,
- 87977.76471736658,
- 88722.83102403955,
- 88558.76222645218,
- 88306.03062874613,
- 88420.84523966677,
- 88344.8994181755,
- 88449.00053664087,
- 88336.30616370424,
- 88363.98890529925,
- 88362.60096382422,
- 88443.99015417385,
- 88757.2798999845,
- 88351.58373475226,
- 88368.07534914711,
- 88419.7763521424,
- 88717.98407653676,
- 88510.42562080965,
- 88333.83107669742,
- 88626.58763266775,
- 88575.9765857017,
- 88462.28754139256,
- 88836.0395482592,
- 88772.68794489409,
- 92326.05008512983,
- 94654.22636982724,
- 91425.09657158966,
- 91464.44246274077,
- 93586.60219175594,
- 93589.13427337709,
- 93025.56253717483,
- 93034.93635287281,
- 93553.88735328836,
- 93542.87285605638,
- 88968.22841893525,
- 89006.03684621748,
- 88902.85749665603,
- 88694.73273373555,
- 88770.11669048374,
- 88998.95831050201,
- 88813.18253923993,
- 88807.29535139979,
- 88862.87020210146,
- 88940.35813020635,
- 88719.986854473,
- 88711.95391512648,
- 88913.67134750067,
- 88905.29290337257,
- 88873.49606990181,
- 88916.1146409448,
- 88887.42693829109,
- 88900.39227011942,
- 88819.47647571407,
- 88841.7144230516,
- 88731.15785205181,
- 88785.30435031383,
- 88873.64041918014,
- 88933.35245799503,
- 88955.37715307146,
- 88808.07844121536,
- 88809.71225972423,
- 88863.25925664409,
- 94860.41464315419,
- 94809.74353848188,
- 94777.2045280774,
- 96939.7130296957,
- 94790.8883359463,
- 93872.05455515652,
- 92974.08923397369,
- 92975.62503977149,
- 93543.4657580988,
- 93550.85862261364,
- 95158.97987464583,
- 96139.27193844452,
- 95170.22302051753,
- 93012.70424918424,
- 93101.41065007175,
- 93188.73658225981,
- 93292.01518114925,
- 93186.47665709791,
- 93249.55171832144,
- 93230.54525820872,
- 93293.69529485346,
- 93607.57338921969,
- 93661.48037279883,
- 93725.33213726954,
- 96597.50409519735,
- 95126.694711038,
- 92466.47847824058,
- 92535.67420110614,
- 92479.67380046048,
- 92541.5954277938,
- 90840.63104534974,
- 90788.74294845924,
- 90875.6428904946,
- 90812.108525863,
- 92149.08818936435,
- 92087.71439256778,
- 92108.66912483661,
- 92681.49462860484,
- 92747.5621721967,
- 92691.1433270897,
- 92791.81273491016,
- 92719.98650968332,
- 94573.11174744362,
- 95371.14507899206,
- 95269.93601523693,
- 95369.79664452869,
- 95330.20659727942,
- 95325.98290048962,
- 95235.74548951366,
- 96013.28219965815,
- 95978.47329230273,
- 94947.27988796636,
- 94782.50222163898,
- 95039.5427914881,
- 95219.10848713045,
- 95358.80808645669,
- 95508.54286055514,
- 96315.39006631782,
- 96299.4257154321,
- 96324.02566311863,
- 96341.18862444937,
- 95444.91699836003,
- 95430.31650863758,
- 95963.35252743993,
- 95950.12484352986,
- 94323.88976489022,
- 94155.83031897117,
- 94968.90121085287,
- 95036.54824379871,
- 94992.26340793457,
- 97076.61983324688,
- 96380.28781055969,
- 96092.05767088226,
- 95100.65954684408,
- 94781.2730137387,
- 94831.67940813194,
- 94764.71974508195,
- 95259.89220700655,
- 95156.78944128797,
- 95163.15549537959,
- 94170.72543593975,
- 94320.5506287159,
- 96375.81406263121,
- 95990.14658034967,
- 96033.27978527645,
- 96375.08693072088,
- 95820.50112482975,
- 96395.33356184303,
- 96133.76841832312,
- 96101.04541256488,
- 96184.81566043793,
- 96417.56965551627,
- 96292.33937952145,
- 95321.40374411321,
- 95359.2518454773,
- 95235.15461115303,
- 95490.83892107032,
- 95403.87461645668,
- 95434.7813506805,
- 96371.23865707997,
- 95702.34904687658,
- 95689.63925251232,
- 95363.8470448223,
- 95438.12140415871,
- 95345.12725289499,
- 95719.3642560631,
- 95438.74775398536,
- 95393.95134463186,
- 93915.67461247394,
- 93732.40501876744,
- 93831.28229164788,
- 93834.4304251869,
- 93865.36020794926,
- 93949.04960582733,
- 93901.58796403631,
- 93754.51928787447,
- 92474.5549875663,
- 92541.10114222545,
- 92446.28882658892,
- 92510.9837965274,
- 94168.00712644817,
- 94172.93686658355,
- 94268.51034477568,
- 94227.88799197409,
- 94355.93471701951,
- 94060.02601500099,
- 94116.26661644941,
- 93924.85503905709,
- 93949.14419789072,
- 93974.50929033541,
- 94022.64738997868,
- 94312.32437986055,
- 94051.66774220605,
- 94303.31563802196,
- 94003.54982743006,
- 94114.32655875513,
- 94224.29742863894,
- 94131.8182179843,
- 93936.37370318927,
- 93915.56085404499,
- 94104.85477585437,
- 94222.09750375483,
- 94080.12193720396,
- 94175.05303484979,
- 94204.20735933605,
- 94013.74433073374,
- 94149.10075483979,
- 94062.23950461214,
- 95192.18878450526,
- 93981.06452822298,
- 95563.33831763349,
- 95618.71418981701,
- 94626.96443060684,
- 94961.9962390448,
- 95076.82444005845,
- 95302.82737421893,
- 94608.169715756,
- 94206.32696510479,
- 94702.36469871723,
- 94705.08946322266,
- 94658.895114909,
- 94569.80280676277,
- 94562.66790889218,
- 95304.43340131296,
- 94531.31783311481,
- 95269.88551286564,
- 94541.46811159214,
- 95149.74263120122,
- 94634.25352044987,
- 94697.40319410026,
- 95091.92395340849,
- 95319.99368080994,
- 95301.58079947837,
- 94630.39551651504,
- 94671.14260908996,
- 95089.3896773708,
- 95119.73813153236,
- 94738.65685272905,
- 95068.25673894,
- 94781.31937846432,
- 95154.3406437858,
- 94802.3325423315,
- 95105.70316558772,
- 94684.28311529913,
- 94632.70398735556,
- 94708.44547790081,
- 94740.06561864995,
- 94763.51786066609,
- 95220.63167603598,
- 95125.54875547701,
- 95496.13470559087,
- 94594.42687159672,
- 94583.94583527962,
- 94651.10560516508,
- 95257.08556364443,
- 94233.59693590023,
- 91689.9156042627,
- 91738.548395977,
- 91731.93216887595,
- 94346.78033378352,
- 94509.829510502,
- 94528.48663855526,
- 95506.25933017024,
- 95430.9598185061,
- 95449.77751377337,
- 95494.87912905395,
- 95513.21245708983,
- 95579.25511783695,
- 94746.96208609876,
- 95141.50071030506,
- 95088.00070197124,
- 94796.34837723445,
- 95207.54728400431,
- 95025.28048977467,
- 94994.04487668724,
- 94992.0641380479,
- 95157.97425899161,
- 95210.51266443045,
- 95112.69654287952,
- 95348.00113621198,
- 95311.6100058997,
- 95220.35730467142,
- 94453.87661400346,
- 94459.76663652401,
- 94569.99639898865,
- 94696.38127915138,
- 98503.89968845964,
- 98983.70522113536,
- 99185.65099595927,
- 94437.58770435351,
- 96186.25940182169,
- 95520.96662625948,
- 95395.53490697088,
- 94387.90834024789,
- 94410.44611369238,
- 93880.06664422291,
- 93794.95552713104,
- 93814.6764577686,
- 93852.0802165827,
- 93786.27794848467,
- 93980.98038158142,
- 93927.0380831745,
- 93831.83215691491,
- 93816.85717412099,
- 93831.55273890407,
- 93936.66881951372,
- 93733.53483031287,
- 93809.10347709683,
- 93678.44099698958,
- 93545.624365582,
- 93583.48935321181,
- 93682.62756255489,
- 93720.49376390997,
- 93726.85416195451,
- 93591.16938927768,
- 93615.88912627882,
- 93645.7254103945,
- 93599.67154470751,
- 93654.30749236245,
- 93605.45062289166,
- 93708.17232055379,
- 93763.43794093031,
- 93657.34150918727,
- 93697.51676275049,
- 95064.46859551649,
- 95028.79614965661,
- 94844.43317012727,
- 94937.32394773186,
- 94924.00711887507,
- 93657.58783554945,
- 95006.34673042681,
- 95224.50298112346,
- 95223.99348673313,
- 95299.88393052109,
- 94552.30907971856,
- 94023.50845498776,
- 94125.37702876132,
- 94255.77571819822,
- 94147.09026993293,
- 94169.13660636239,
- 94222.65689644325,
- 94957.93426395227,
- 94472.20709603677,
- 94381.42463040476,
- 94416.07502472983,
- 94281.54409115564,
- 94178.83279139998,
- 94123.58147436914,
- 94169.09157518268,
- 93015.76333927791,
- 92980.63941319492,
- 93190.70549325118,
- 93064.87393138207,
- 93000.29090602277,
- 92946.26333688904,
- 93038.8296421908,
- 92995.61564696342,
- 93144.43447376601,
- 93078.77497255687,
- 93051.16869735178,
- 95258.80445753322,
- 95466.86915914767,
- 95404.96015034568,
- 95494.47921018649,
- 95449.45774232612,
- 95522.29842584215,
- 95456.8754665219,
- 91949.46390404372,
- 91994.60911809147,
- 91936.03318656498,
- 91983.70759391226,
- 93839.98245358566,
- 93844.24306124111,
- 94547.62330964052,
- 94952.15918284946,
- 94890.1592037714,
- 94345.9720338772,
- 94362.73267824408,
- 94269.5283596859,
- 94207.67763929271,
- 94157.53706668493,
- 94258.38524216403,
- 94301.50601815798,
- 94011.00694174618,
- 94125.6503238661,
- 94227.34616572867,
- 94084.08394396056,
- 94070.50563286559,
- 94443.56661107884,
- 94660.23703662696,
- 94668.42135385043,
- 94046.68004288743,
- 94235.41587667502,
- 94273.344864104,
- 94123.19936245674,
- 94159.63225677669,
- 93803.9261679241,
- 94011.724964968,
- 93912.59330061535,
- 93887.16917253478,
- 93760.95419201358,
- 93925.82530456611,
- 93850.32814637737,
- 93675.33911678942,
- 93883.462303006,
- 93742.14334667072,
- 93961.40036485184,
- 93887.34458601507,
- 93903.3407406927,
- 93734.96333262778,
- 93941.18935024734,
- 94636.41241915552,
- 94424.21404328254,
- 94373.86923886793,
- 95545.38485611489,
- 95182.95535517084,
- 95071.09472843911,
- 95167.69616974294,
- 95087.78815059502,
- 95126.89613229115,
- 95523.23375784527,
- 95227.46258123794,
- 93916.134535691,
- 93951.52721964949,
- 93984.68193482122,
- 93969.89886979104,
- 93882.34010171027,
- 93865.27925415388,
- 93881.61720809246,
- 93830.32747505195,
- 93936.57704354505,
- 95276.48776626095,
- 91231.8196566484,
- 91261.04328066683,
- 91175.1502515188,
- 91142.8260071247,
- 94013.0077053391,
- 94164.54504032315,
- 94054.4416632055,
- 94131.90713162518,
- 94172.7395942074,
- 94893.15089322784,
- 94968.92914391636,
- 95030.19357548543,
- 94320.32001232714,
- 94336.05564681457,
- 94380.74487902022,
- 93805.49685278744,
- 93892.59177818336,
- 94412.0451565415,
- 94426.17357284379,
- 94263.86673325008,
- 94213.89118970706,
- 95385.88848111703,
- 96063.61237925281,
- 95341.12102532042,
- 96073.62002048118,
- 94137.00646966182,
- 94156.0229058292,
- 94202.4207189329,
- 94092.44030875542,
- 94059.33759986472,
- 94176.47708516316,
- 94052.49870231381,
- 94927.69438379064,
- 94849.39986806002,
- 94784.33169676425,
- 94810.54708687005,
- 94919.62429869157,
- 94869.35010821253,
- 94919.67840200933,
- 94717.01718778357,
- 94734.90055663262,
- 94806.90127093442,
- 94767.73807259565,
- 94857.13685431078,
- 94793.2995046325,
- 94413.67065318272,
- 94351.82055805538,
- 92287.18461593246,
- 92344.79587415236,
- 92395.50229122411,
- 94066.70664866947,
- 96912.3840775932,
- 96822.83077029923,
- 93971.70006909678,
- 94000.24913714765,
- 94065.67460043577,
- 96311.95742018387,
- 96345.35938061375,
- 97943.74694094929,
- 93715.32177876253,
- 93690.44395530979,
- 93623.24293961626,
- 93777.92905171037,
- 93416.58217755376,
- 93808.8134274846,
- 93712.4167533155,
- 93499.49299289202,
- 93651.07722955113,
- 93712.05135609517,
- 93668.71539308506,
- 93703.36126922605,
- 93717.46592200446,
- 93805.61396749513,
- 93587.67456189399,
- 93667.50755458296,
- 93740.32595024593,
- 93621.50782413344,
- 93609.40652498248,
- 96149.34956899607,
- 96056.31431413464,
- 96243.90733864102,
- 92712.65686256441,
- 92665.20903578005,
- 92658.25067258794,
- 92707.16684414347,
- 92610.96365711992,
- 92772.00915250067,
- 96880.93597578706,
- 96861.82056450349,
- 97158.96712629191,
- 96665.38767001704,
- 95475.64319973848,
- 95529.20616248925,
- 95568.54842738589,
- 97014.70310115164,
- 96807.5317976019,
- 97177.016571983,
- 97043.85947589722,
- 96885.77229318066,
- 96885.52179751407,
- 96955.75725837208,
- 97336.92046433868,
- 97244.56993259059,
- 97323.01083840418,
- 96979.26259545963,
- 97024.96763850165,
- 96443.17666872074,
- 96501.2797849095,
- 96503.74204473906,
- 96486.96356375985,
- 96704.94482097548,
- 96472.26194887214,
- 96638.11644218583,
- 96454.7200242486,
- 95987.50726261239,
- 95892.9268070378,
- 96698.7455890938,
- 96584.96543692259,
- 96541.61840316036,
- 96569.40565837403,
- 96528.49682707139,
- 96911.19010484591,
- 96928.75219227053,
- 96932.45750407256,
- 96934.56900248305,
- 96988.3651054402,
- 97049.75371645692,
- 96844.52551619314,
- 96923.19048697427,
- 98895.54995718307,
- 96026.0226178126,
- 96082.0679626181,
- 96060.02477735966,
- 96033.20740157629,
- 97122.38900206238,
- 97074.57158975213,
- 97089.55029562055,
- 96838.02950949712,
- 96554.83252774995,
- 96908.33001617734,
- 96940.36894513863,
- 96466.54820005891,
- 96499.21194873397,
- 96432.75800775865,
- 96421.56170751022,
- 96450.86417398539,
- 97074.17942076073,
- 97074.3618961545,
- 97006.12101036114,
- 96754.00401323636,
- 96547.77228387182,
- 96966.40149118089,
- 96956.51991520695,
- 97028.21718236667,
- 96923.14998898802,
- 96935.43558121054,
- 96876.0341655546,
- 96947.56185065248,
- 96938.83304086134,
- 96132.13052901684,
- 97396.83809185523,
- 96999.23563465345,
- 97965.099770708,
- 97692.94173735469,
- 97983.33638334284,
- 98032.72187246279,
- 97974.18271627268,
- 97786.09247887084,
- 97800.2100526241,
- 97912.58577131401,
- 98515.60094273857,
- 97929.92102411941,
- 97928.06662872367,
- 97948.71845683189,
- 97997.23955341357,
- 97779.57776729457,
- 97918.30088266732,
- 97818.95994583191,
- 97874.39129412937,
- 97831.22264416635,
- 97848.66298321466,
- 98306.18967874342,
- 97716.14241780146,
- 97464.08055310673,
- 97903.94501359884,
- 98510.79621330468,
- 97977.63973942658,
- 97986.11769113112,
- 97783.36471560711,
- 97712.53971897205,
- 97869.88999145458,
- 97745.05257238295,
- 97779.36469026067,
- 97598.49065794118,
- 97644.2460325755,
- 97956.81212995679,
- 97838.89167622174,
- 97665.19276415366,
- 97740.7761235048,
- 97977.43561497079,
- 97910.00226982501,
- 97981.26497740846,
- 97934.15325168573,
- 97661.65075316017,
- 97708.59760735968,
- 97635.85467905481,
- 97877.97127912445,
- 97888.45567349828,
- 97743.32967370604,
- 97847.28715211149,
- 97808.1138347589,
- 97882.99271670789,
- 97867.45670191568,
- 97843.74040890497,
- 97742.09038719474,
- 97907.24259090831,
- 97869.84628046093,
- 97773.10518246032,
- 97710.26128355986,
- 97439.77285801106,
- 96847.44273347312,
- 96871.44532957648,
- 96899.7444137054,
- 96601.40636551428,
- 96719.79711549218,
- 96691.0320269905,
- 97006.08190547314,
- 96441.73368686778,
- 96767.40239764423,
- 96685.375037542,
- 97209.09899176516,
- 97154.83922451224,
- 96484.01880503709,
- 96107.67988071588,
- 96231.62891327246,
- 95866.80224811046,
- 96548.20028247405,
- 96288.80898149563,
- 95833.69324629745,
- 95973.3902004487,
- 95936.55609673416,
- 95846.59752469542,
- 95876.33619274442,
- 95823.68246341804,
- 95783.98807985516,
- 95969.8648337016,
- 95894.43298604249,
- 95929.05645624285,
- 95983.62730236512,
- 95795.10468007735,
- 95861.17559180611,
- 95802.80525539977,
- 95825.95151868842,
- 95869.97131479219,
- 95913.086499376,
- 95910.99064717419,
- 95937.64989335113,
- 95891.91884422916,
- 95809.52074514219,
- 95871.0650098643,
- 95938.4418636119,
- 95885.02089259116,
- 95946.77940587135,
- 96463.23121061604,
- 95491.37487357768,
- 95374.51754883812,
- 95346.23309636129,
- 95585.24481960548,
- 95616.19801730258,
- 96091.30297494435,
- 96130.11178472488,
- 96018.67970797754,
- 96092.81017505692,
- 96029.80815869398,
- 96045.61522024043,
- 96041.3107438129,
- 96123.66684769333,
- 96012.26588549778,
- 96745.93142676732,
- 96767.6667165417,
- 96765.36884569783,
- 97327.29514577452,
- 96950.00862634687,
- 96839.1737376899,
- 96614.39435499303,
- 96337.84299855285,
- 96363.40943473825,
- 96199.08353982247,
- 96210.67360754788,
- 96379.20593323221,
- 96158.6409534142,
- 95809.38081404867,
- 95830.62061346209,
- 95892.9781546145,
- 96251.50221250225,
- 96480.34466709888,
- 96507.82112088494,
- 96463.20514033035,
- 96341.40385775307,
- 96010.78631802801,
- 96023.45133971501,
- 96002.90560331904,
- 95966.166341996,
- 96106.27906720324,
- 95807.67280945969,
- 96395.43569347766,
- 96344.44312350763,
- 96138.17632150596,
- 96013.09656267504,
- 96303.38543537387,
- 95894.19050089734,
- 96982.27860412037,
- 96803.66959486734,
- 96947.0577205457,
- 96600.41453955312,
- 96568.01566290409,
- 96593.52949252554,
- 96954.2291584623,
- 96858.60884095871,
- 97317.61147548359,
- 97800.71562505228,
- 97965.28083636134,
- 97889.61604333931,
- 97866.41918264618,
- 96409.68164770227,
- 97206.50614037958,
- 97172.59542951442,
- 97072.76067775434,
- 96537.27883527981,
- 96711.59348660789,
- 96724.52250491997,
- 96763.88111565771,
- 96763.6034842352,
- 96974.48285660804,
- 96961.18408244224,
- 96795.80972533752,
- 96829.80108971853,
- 95448.9319500581,
- 95427.81805651919,
- 95349.78105291045,
- 96420.91570369813,
- 95853.47014194234,
- 96132.08577076395,
- 96214.23708082634,
- 96076.5874277015,
- 95735.4846520663,
- 96051.52523546964,
- 97068.07558913079,
- 97179.42918462172,
- 97139.53818571626,
- 97016.58216276058,
- 97038.98862670796,
- 97678.54460695155,
- 97173.72709588033,
- 97217.85077478534,
- 97186.76808718561,
- 97395.26641208559,
- 97417.15574620935,
- 97295.81122049606,
- 97315.37804363752,
- 97253.70170188205,
- 97259.73605669996,
- 97279.28897112967,
- 97664.79092225397,
- 97273.1165047572,
- 97433.88051161826,
- 98311.21608497082,
- 97635.0392809572,
- 97598.2216287689,
- 97709.20997216344,
- 97594.02550440448,
- 97671.76762343859,
- 97714.52375615494,
- 97630.64426674997,
- 97630.27163188967,
- 97681.43345802989,
- 97643.84165540582,
- 97620.62074300427,
- 97592.75683781573,
- 97567.9839306081,
- 97915.08026442358,
- 97666.16284196392,
- 97636.2185941283,
- 97938.20290569965,
- 97529.40911807289,
- 96570.60229277262,
- 97853.50880407833,
- 97921.9922589436,
- 97776.59221266376,
- 97836.39549321984,
- 97975.90235149172,
- 97774.09837247997,
- 97885.48780049814,
- 97307.21202722845,
- 97121.93628053812,
- 97121.55585614218,
- 97140.73149429487,
- 97150.90263007056,
- 97060.39526332059,
- 97030.8631274604,
- 97192.97755496252,
- 97069.80879175542,
- 97093.05262002055,
- 97052.29009434805,
- 97170.58382246458,
- 97179.82576003372,
- 97082.68825227836,
- 97144.30771257113,
- 97121.76766377356,
- 97118.1717151702,
- 97157.3153393121,
- 97050.33862467408,
- 97089.79100594205,
- 97119.19599796484,
- 97192.94699549448,
- 97012.5425356616,
- 97224.20831847242,
- 97187.0630187911,
- 97163.31890311823,
- 97219.79709559798,
- 97908.54958943304,
- 96700.81684331024,
- 96523.60268508628,
- 96536.9589902775,
- 96843.7034070459,
- 97444.83065967944,
- 98860.0592368339,
- 96799.07382149246,
- 96769.12236389377,
- 96283.05593791128,
- 95873.06749071793,
- 96306.41541740084,
- 96364.42892209158,
- 96883.54640512177,
- 96712.7933388927,
- 97193.71178642656,
- 98946.53758317565,
- 98999.3555672314,
- 99135.63249379155,
- 99025.96218669585,
- 99101.35715048546,
- 98889.17100958912,
- 99046.37042367825,
- 98893.51043752216,
- 98892.5809756726,
- 98837.61105136099,
- 95302.53383954187,
- 94943.81309137406,
- 94902.98810497618,
- 94869.28850625391,
- 94852.59422578581,
- 97020.50549542202,
- 96986.83239293261,
- 97094.066664134,
- 98260.94835930769,
- 98082.85901569464,
- 95264.5613351477,
- 95224.54314081938,
- 95147.05653917076,
- 95210.90866045954,
- 95835.68963088898,
- 99148.01739523798,
- 98385.07485641103,
- 98068.59743234728,
- 96845.55844426356,
- 97243.43268804229,
- 96262.47034418354,
- 93028.7413036078,
- 93186.25366672484,
- 92977.72507249404,
- 92967.15683152963,
- 96460.11226065892,
- 96803.5646686902,
- 95788.68637466984,
- 95594.81419372423,
- 96001.25876488656,
- 96014.43994346815,
- 96063.34010957202,
- 95815.74790477773,
- 95887.24825329146,
- 95898.24021797186,
- 95800.38688365607,
- 95888.21662057075,
- 95858.74283800049,
- 95794.28661051509,
- 95859.12821844933,
- 96082.30693369107,
- 95925.95600315143,
- 95766.1829793558,
- 95895.34584537416,
- 95924.27915490832,
- 95788.73920911511,
- 95879.84007489719,
- 95750.612045373,
- 95776.9903894864,
- 95885.74462050153,
- 95921.1715910264,
- 95781.69527505395,
- 95962.10736111771,
- 95808.00418231983,
- 95865.57200803333,
- 95863.63939621505,
- 95774.27234822566,
- 95853.77680046998,
- 95910.88556421259,
- 96030.4428217032,
- 96042.10223037108,
- 95793.92940460428,
- 95817.54264444362,
- 95900.49165315344,
- 95954.14624176064,
- 95906.63393497696,
- 95798.73471721575,
- 95745.01102164591,
- 95961.3303111423,
- 95851.78152974402,
- 95820.22984781419,
- 95983.45394155434,
- 95944.3474958281,
- 95805.59370462758,
- 95833.09723097256,
- 95882.46806050198,
- 96082.40454432127,
- 95995.73359705324,
- 95991.11497192552,
- 98649.67528264625,
- 97117.49595890373,
- 97197.27249529856,
- 96987.99039298572,
- 96471.15884437542,
- 96401.1275917856,
- 96519.89986547377,
- 96340.059287469,
- 96410.37135011521,
- 97292.93398642252,
- 97219.50145431058,
- 96758.83817622448,
- 96555.4285949727,
- 96557.90997067219,
- 97163.04215667228,
- 96997.88918754808,
- 96566.86592637633,
- 96741.71992541496,
- 96654.07142456822,
- 96673.03202241314,
- 96381.8808988381,
- 96466.11337870629,
- 96184.16322498767,
- 96380.49868274544,
- 96326.5027952699,
- 96296.73893583009,
- 96375.2552069928,
- 96357.78292133319,
- 96286.9291927851,
- 96246.68502634903,
- 97048.72682453197,
- 96800.12747201516,
- 96669.10745909809,
- 96746.57388650633,
- 97343.90785178638,
- 96482.93915699786,
- 96579.15695246731,
- 96449.674325555,
- 96511.37611718207,
- 96563.68467824848,
- 96603.53985991675,
- 96576.16422373797,
- 96559.07462697028,
- 96667.1457439772,
- 96707.43842318884,
- 98866.40507525875,
- 96294.38155504024,
- 96331.3818016878,
- 96244.46002266672,
- 96510.0142862338,
- 96649.72165456243,
- 96692.3996161877,
- 96547.35184122685,
- 96418.39905249886,
- 96399.6880630568,
- 96636.52368680722,
- 96516.19638795867,
- 96653.81040415911,
- 96751.98122261248,
- 96227.75935192012,
- 96249.42668704614,
- 96407.06818233056,
- 96417.2575216783,
- 96467.9741020259,
- 96563.98031394236,
- 96340.90830816297,
- 96517.5416974432,
- 96293.66797750315,
- 96385.24672593034,
- 96452.35418290344,
- 96477.54492869324,
- 96558.94098791521,
- 96519.48340383028,
- 96940.61921871464,
- 96866.34077155108,
- 96843.3061731239,
- 96585.22828871832,
- 96565.27947982831,
- 97072.10533498741,
- 96625.08705431149,
- 96853.9052170461,
- 96531.63874364064,
- 96745.38836951589,
- 96709.64199598243,
- 96775.56196087823,
- 96495.57184522109,
- 96306.57092112032,
- 96275.78388021147,
- 96370.03794746965,
- 96292.10169388607,
- 96294.95527136317,
- 96846.80544199326,
- 96851.66207692302,
- 96702.97319735656,
- 96349.6190768548,
- 96258.48571134004,
- 97252.59719313495,
- 96460.1939559876,
- 96376.62703671993,
- 96703.80801170786,
- 96662.28905885534,
- 96942.23050900064,
- 96810.581309827,
- 96507.31968996138,
- 98302.08638915663,
- 97699.99862934169,
- 96842.11261185446,
- 96826.8605851453,
- 96682.42592128347,
- 96691.51413998567,
- 96632.26025311099,
- 97030.17159452607,
- 96947.06423913098,
- 96998.45637942558,
- 96508.82058759003,
- 96365.36880602528,
- 96443.84614856978,
- 96381.30359501102,
- 96415.57824478621,
- 96616.32530084581,
- 96464.2147426376,
- 96504.26771421164,
- 96540.14681438672,
- 96400.02414032049,
- 96445.40242258714,
- 96762.63831109481,
- 97455.00830613056,
- 97021.7617808701,
- 96774.3551833301,
- 97926.52813372754,
- 97262.5053951968,
- 96894.29567379835,
- 96367.91849148819,
- 96296.49819133696,
- 96702.411898372,
- 96728.37168468689,
- 96615.69330291961,
- 96726.2537056596,
- 96563.22587738044,
- 96907.9005061301,
- 96708.36771981973,
- 96698.93064682311,
- 96960.32727627664,
- 96980.06357552174,
- 97802.4735093547,
- 97757.03382286149,
- 97770.91510749719,
- 97871.68952338253,
- 96422.93764887511,
- 96974.71298464685,
- 96921.55152222289,
- 96619.58665232721,
- 96627.8685334852,
- 96596.30039366569,
- 97133.53939254158,
- 97004.26608294796,
- 96682.55990265342,
- 96629.03830283,
- 96352.69265795489,
- 96451.83502848627,
- 96388.62115022908,
- 96506.360585659,
- 96426.21771977462,
- 96407.47366494461,
- 96743.50898743446,
- 96633.1194771479,
- 96635.14748627754,
- 96230.63804023997,
- 96214.45179065752,
- 96326.17101723391,
- 96264.4633906848,
- 96326.03203539555,
- 96597.34646395275,
- 96480.32372855049,
- 97264.75648080865,
- 97257.64186751444,
- 96991.85166421087,
- 96282.02445261383,
- 96359.59055510542,
- 96566.85044926865,
- 96473.19788319884,
- 97154.5299795744,
- 96490.39362234698,
- 96550.42568876117,
- 96419.62931704587,
- 96999.63956845234,
- 96751.08674126698,
- 96697.972959275,
- 96786.71030341781,
- 96839.30379383995,
- 96483.84977258719,
- 96630.67704789808,
- 96741.70102760034,
- 96764.80067828426,
- 96850.49988985712,
- 96831.87898093375,
- 97251.29570214036,
- 95113.59086581854,
- 95755.97930162637,
- 95090.31969622265,
- 94651.26562740092,
- 95107.1092473078,
- 95161.92092814026,
- 95269.77791673102,
- 95130.88387122283,
- 94666.81011124076,
- 95191.5612620277,
- 94632.1940988171,
- 95137.02904450543,
- 95043.44752242198,
- 95149.33302637907,
- 95332.0281496231,
- 95051.6652616009,
- 94894.8557690638,
- 95076.64600235653,
- 95203.48852639197,
- 96425.8921864831,
- 96459.65196670996,
- 96496.92588523787,
- 96811.1950275651,
- 96617.12965504579,
- 96426.74328504282,
- 96419.78444368274,
- 96390.50907439676,
- 96459.36232519409,
- 96916.32646882013,
- 95563.48042896115,
- 95896.24687835442,
- 95420.08235331165,
- 95488.16296761732,
- 95383.02891986139,
- 96008.8630213765,
- 95350.61927221605,
- 94956.26073389688,
- 95518.54082292983,
- 95469.88782918702,
- 95566.89754228467,
- 95612.32634584681,
- 95478.11245689954,
- 95445.99882292173,
- 95589.15203844642,
- 95493.91450694384,
- 95549.1482381842,
- 95521.79485298232,
- 95556.00537198065,
- 95508.91601184626,
- 96320.6147981449,
- 96280.13460877546,
- 96364.24649076725,
- 96287.69376743624,
- 98121.99524766194,
- 98541.0584592708,
- 98192.76039404483,
- 98166.22543913256,
- 96353.00819301896,
- 96521.41109040649,
- 95891.16448274408,
- 95763.46923048091,
- 96520.96063954935,
- 96403.02771334902,
- 96412.24011894669,
- 96917.0504390173,
- 96852.02764313435,
- 96819.88884441124,
- 96856.08674797573,
- 96637.07411913297,
- 96814.95159931354,
- 96595.76290712562,
- 96573.87616748073,
- 96669.5411390961,
- 97051.91473217483,
- 96975.78810501436,
- 96516.89264409817,
- 96297.57838530713,
- 96880.24502229964,
- 96813.11555393686,
- 97327.92623575436,
- 97390.38924442463,
- 97217.68695204523,
- 97256.87195236332,
- 97480.31551961288,
- 97371.5537889121,
- 97455.46534428223,
- 96178.32783293263,
- 96288.25558674558,
- 96312.40887120423,
- 98206.17346571821,
- 98174.05663849172,
- 98324.36922376543,
- 97173.60699000407,
- 97332.19078180875,
- 97130.93518291095,
- 97156.34417751052,
- 97609.3784728033,
- 97117.46051610255,
- 97241.77508500633,
- 97226.72413865545,
- 97196.29476853299,
- 97724.67813450533,
- 97276.15490972344,
- 97701.28948749202,
- 97457.63289470712,
- 96442.07780488765,
- 96319.50737816031,
- 96415.56866223014,
- 96651.65284073511,
- 96232.86087179637,
- 96606.10302187508,
- 97019.00700298675,
- 96368.48020052267,
- 96333.02852864751,
- 97033.84918681574,
- 96098.29554204186,
- 96303.35813014845,
- 96273.10836010888,
- 96182.82288333018,
- 96357.43491363594,
- 95811.10727705582,
- 95544.22235669453,
- 95595.09996121706,
- 95480.30012594952,
- 95630.32606664213,
- 95635.66118562045,
- 95477.04217425716,
- 95526.6492594866,
- 95677.11645382897,
- 95633.84325508482,
- 95639.12017602292,
- 95440.45450474763,
- 96496.37422061864,
- 96582.20480650054,
- 95660.56955803781,
- 95677.28372527665,
- 95433.91832923502,
- 95662.78785902,
- 95394.9696974827,
- 95584.7247328939,
- 95655.13837228577,
- 96577.59886148201,
- 95827.30190509118,
- 95996.87226871056,
- 96067.66573265979,
- 97669.8057337455,
- 97462.8360510825,
- 97686.73198942652,
- 97200.78870621523,
- 97347.83353013977,
- 95523.31266376271,
- 95587.1461297883,
- 95686.28768720085,
- 95449.79737749403,
- 95756.18992749622,
- 97086.01387112806,
- 97178.8195800679,
- 96779.52312444507,
- 96696.75499455728,
- 96245.55891904428,
- 96123.0994416502,
- 96240.73074210918,
- 96194.04975573476,
- 96319.13173343345,
- 96089.44566542986,
- 96232.75989347267,
- 96158.38431777383,
- 96136.68738677424,
- 96145.58360721846,
- 96316.94696925921,
- 96211.57352484837,
- 96211.6334262142,
- 96123.06440631351,
- 96134.85280188615,
- 96182.97559382278,
- 96287.01295744094,
- 96338.51191040609,
- 96403.5050298606,
- 96875.59396292178,
- 96704.33088316167,
- 96496.97484619204,
- 95797.50684788941,
- 95312.43543057372,
- 95287.49345178728,
- 98395.83998663595,
- 97750.79463862568,
- 97657.87281536582,
- 96840.11576563944,
- 96376.43948973017,
- 96495.3723510915,
- 96497.74165956042,
- 96558.50289816254,
- 96382.03130978186,
- 96234.20343302292,
- 96326.90714764067,
- 96357.04479517954,
- 96281.48297221736,
- 96446.30797136255,
- 96225.19846793341,
- 96371.17820751171,
- 96569.07380883017,
- 97280.91341371622,
- 97218.93574565095,
- 96565.89355648131,
- 96608.2925808813,
- 96716.35557903055,
- 97810.76745979962,
- 97231.17400973858,
- 96987.0388482267,
- 96774.76905790945,
- 97556.9433582567,
- 99045.69549244376,
- 97931.99436757823,
- 97949.65290238698,
- 96437.8955859198,
- 96465.63670795687,
- 96585.25834546462,
- 96706.89991097018,
- 96628.1569422172,
- 96318.02244651552,
- 96427.64493117196,
- 94720.26653909442,
- 95165.60765656806,
- 94940.55038345407,
- 95179.98869710567,
- 94980.51218130976,
- 95061.79356597684,
- 94945.25304730092,
- 95218.24789975998,
- 96299.29312064001,
- 95092.07362612062,
- 95174.19946651293,
- 95245.56999040095,
- 95253.853946145,
- 95135.57488677127,
- 95102.64566147253,
- 95119.56649114176,
- 95785.50464150192,
- 95930.64975742831,
- 95820.45227237958,
- 95892.37091878834,
- 96174.00550679922,
- 95798.21104623494,
- 95825.84470023373,
- 95872.20122936343,
- 95844.9614653563,
- 96340.55814080912,
- 96480.38866600777,
- 96597.4329122248,
- 96454.60099367701,
- 96506.66704797432,
- 96263.45212900022,
- 96207.88317037163,
- 96239.24501049277,
- 97502.79670139607,
- 97646.15538785749,
- 97931.6145145542,
- 97940.34990023683,
- 97378.81936381076,
- 96721.91479976212,
- 96641.41744060135,
- 96599.08173979487,
- 96422.81562140894,
- 96187.153632889,
- 96392.32036753843,
- 98307.31494297627,
- 98369.87703318744,
- 98339.77818469383,
- 98427.93641245601,
- 98341.62446619211,
- 98369.9982167125,
- 98268.48803241228,
- 98448.94646022301,
- 96731.3904431557,
- 98352.28433632314,
- 96621.16848786185,
- 96612.95877130973,
- 96625.94037806959,
- 96825.0533209765,
- 96787.91853941279,
- 96725.21853912911,
- 96716.1939460555,
- 96655.75488131844,
- 96648.99550677605,
- 96506.56055945194,
- 97090.90147876457,
- 97384.010881173,
- 96271.12157331877,
- 96358.9276402708,
- 99009.30827088827,
- 98968.59244384883,
- 98993.06721654031,
- 99007.66770283102,
- 98982.44152343833,
- 96558.77218868272,
- 96190.10973020262,
- 96250.37299645566,
- 96247.07790109511,
- 96302.24175317744,
- 96250.83240914228,
- 96351.475287113,
- 96280.03121427099,
- 96392.52396079557,
- 96324.87273668234,
- 96241.51104963907,
- 96413.63133191726,
- 96408.68879235374,
- 96797.9408935972,
- 96891.75413899266,
- 97872.05462730178,
- 98368.3157961383,
- 98341.32886938391,
- 97051.32161185639,
- 96393.24636570562,
- 96769.40892205865,
- 96722.44044323963,
- 96646.47732164423,
- 96507.62309485405,
- 96702.3442322927,
- 96787.53069444415,
- 96722.57467608203,
- 96485.20563873606,
- 97263.68940530941,
- 97278.01659724039,
- 95723.36890130429,
- 96034.81351488702,
- 96933.61776383803,
- 98051.83495872519,
- 98282.75113269164,
- 98323.4492928728,
- 96597.00315049812,
- 96393.29657255062,
- 96290.54005636094,
- 96374.06870812083,
- 95604.78437746258,
- 95750.88589559712,
- 97174.68042421268,
- 96780.36553825779,
- 96348.04132276963,
- 96507.5533367388,
- 96316.94089233372,
- 96406.34759988818,
- 96363.44874937553,
- 96158.53654821051,
- 96216.07768368315,
- 97174.090292395,
- 97423.83529752935,
- 97375.40849798809,
- 97387.39945246921,
- 97357.55932487166,
- 97219.12677975238,
- 97360.80913412399,
- 96928.39803287762,
- 96246.46103177394,
- 96334.44832490938,
- 96384.7612066812,
- 96687.66890433879,
- 96514.01373575524,
- 96559.36666294347,
- 97476.66833626306,
- 97373.24159478948,
- 97399.87460150667,
- 97562.28816473442,
- 97327.25600335708,
- 97433.19547536578,
- 97363.08021092854,
- 97362.61765653682,
- 97499.4469867388,
- 97347.82046104649,
- 97543.28758222131,
- 97469.73246031212,
- 97415.07468682253,
- 97598.37960952554,
- 97397.52997943097,
- 97425.84737468093,
- 97442.60346559418,
- 97329.7050864847,
- 97478.52336595049,
- 97523.48067645995,
- 97395.43776515307,
- 94173.98426701757,
- 94998.21891939109,
- 95779.10418991868,
- 95221.76445761636,
- 95563.21593931832,
- 94927.01228813837,
- 94813.05089936001,
- 95049.81398051501,
- 94831.6216521726,
- 95106.99733425377,
- 95200.37789406479,
- 95234.04044483494,
- 95174.54016347298,
- 94998.56050464817,
- 95358.6847925196,
- 95209.7640142139,
- 95181.22582686505,
- 95039.32892818669,
- 95161.43568020596,
- 95230.15753292643,
- 95205.08422479422,
- 95169.67825607181,
- 95260.99071858512,
- 95077.42775615962,
- 95115.87710930793,
- 94984.96709079483,
- 95249.41713009618,
- 95383.8578284938,
- 95171.9930292263,
- 98974.75635141051,
- 97495.42818133085,
- 97573.7137546718,
- 97879.1667547636,
- 97752.0332341938,
- 97924.88876319247,
- 96286.84995846129,
- 96816.00002137569,
- 97159.9719032367,
- 96602.25381360695,
- 96541.22800334581,
- 96580.09282569413,
- 96262.58755908567,
- 96477.68388301556,
- 96520.83266213229,
- 96593.26452848932,
- 96652.32078447807,
- 96275.60911911029,
- 98131.84060703998,
- 98116.51550369726,
- 98310.25317294084,
- 98307.49097620593,
- 97884.20567526405,
- 99127.37165225792,
- 99097.36317848787,
- 99210.74174635496,
- 98849.06017740154,
- 98931.42109207704,
- 98929.66878863417,
- 98951.6481871395,
- 97956.99862073422,
- 97903.59153920232,
- 97860.23120298976,
- 98057.19172951505,
- 98025.37844863573,
- 97995.64472124574,
- 97685.86516354248,
- 97728.43536218064,
- 97765.6532261492,
- 97803.44920114131,
- 97788.58947764522,
- 96763.14768007296,
- 96915.00173927705,
- 97836.10518643745,
- 97688.00073934876,
- 97727.63593382601,
- 96406.38208067756,
- 97708.14663611,
- 97718.08452896669,
- 96686.05597598436,
- 96547.64348049424,
- 96672.85908683737,
- 96601.66672785666,
- 96337.24183924371,
- 96471.83044519875,
- 96356.6894447284,
- 96509.91978677841,
- 96367.48296617898,
- 96432.49913903954,
- 96517.06841258459,
- 96452.70654576157,
- 96355.89866425129,
- 96476.90982705473,
- 96614.76664132059,
- 96331.56711893888,
- 96422.76850011421,
- 96487.64826356656,
- 96648.68948995211,
- 96506.86847470027,
- 96641.51720485609,
- 96602.56608801859,
- 96362.82663265921,
- 96444.06436374444,
- 96569.70648172167,
- 96487.07322596954,
- 95643.58976360751,
- 95590.93383746725,
- 95607.44304430792,
- 94997.80525697407,
- 94969.456558474,
- 94753.18278928977,
- 94684.56361039644,
- 94746.05696180757,
- 94740.64356322309,
- 94928.47293991121,
- 95041.75112957697,
- 94749.29729931387,
- 94787.770570493,
- 94862.61137248392,
- 94765.37085488303,
- 95769.4273404822,
- 94928.36583728541,
- 94632.31889352873,
- 94848.32260879887,
- 94909.4801901364,
- 94822.21338392912,
- 94772.02659537169,
- 94744.73198904234,
- 94799.15550751943,
- 95331.3487126772,
- 94775.49929541259,
- 94819.89007159689,
- 94833.73793561508,
- 94887.7091277814,
- 94811.2932859593,
- 95165.44960730286,
- 94879.54696254854,
- 94815.49520473366,
- 95002.99557299165,
- 94871.39332069001,
- 94881.5729079285,
- 94903.21119163149,
- 94804.50966103506,
- 94769.12513718361,
- 95634.67329415417,
- 94756.36115087039,
- 94725.74020589143,
- 94908.2961139866,
- 95587.21671942728,
- 94731.62379447502,
- 94928.27605842218,
- 94873.87443292578,
- 94827.75783125078,
- 95776.62332951289,
- 94861.48746533257,
- 94778.80690072749,
- 94847.18021121435,
- 94681.21667693715,
- 94686.68850821337,
- 94859.03733117373,
- 94833.66567461635,
- 94865.96693864682,
- 94825.48265916525,
- 94928.14149642424,
- 95120.7974751264,
- 94943.54808386687,
- 94808.9434265245,
- 96695.73403401808,
- 96735.6625162933,
- 96720.60531021802,
- 96564.020422332,
- 96823.59189171705,
- 96630.43975177128,
- 96563.44435641338,
- 96615.96874056084,
- 96465.01599917706,
- 96009.67472811212,
- 95630.2045767319,
- 96089.02815632267,
- 96067.89889393673,
- 95766.15219288901,
- 95729.41349529594,
- 95620.76960465858,
- 95734.53772507152,
- 96217.61152393422,
- 96518.38805351868,
- 96495.48054519108,
- 96432.90834803335,
- 96413.40389535019,
- 96609.85637492496,
- 98132.66739592743,
- 98184.11582898955,
- 96737.38123752185,
- 96331.92386954006,
- 97054.61849023897,
- 96988.38709557017,
- 95651.72246340426,
- 95685.44647783595,
- 95599.68294597721,
- 95603.36657863882,
- 99482.36791712252,
- 99652.18317202266,
- 99507.27055929118,
- 99448.66639839622,
- 99444.04255201604,
- 99707.96750950199,
- 99813.91502764664,
- 99805.25726658729,
- 97523.91805244905,
- 97387.44466697019,
- 97325.35357186201,
- 97349.58185053393,
- 97397.94499439833,
- 97295.9111719528,
- 95312.95855588862,
- 95249.43208736234,
- 95249.13612521146,
- 97909.5256296521,
- 97671.5271836395,
- 97320.9751458158,
- 97288.32585044665,
- 97287.42371834854,
- 97331.31191752062,
- 97753.86362578296,
- 97544.31371711488,
- 97269.95524537595,
- 97136.05458186644,
- 97836.10112215702,
- 97912.74332734982,
- 98032.12952113833,
- 97812.02122999499,
- 97676.13557284081,
- 97867.82302155967,
- 99050.31283061483,
- 98655.12240236765,
- 97608.77421579452,
- 97544.46873198576,
- 97555.47422544137,
- 97628.07066642634,
- 97445.71186335788,
- 94535.23441251172,
- 94453.30770379661,
- 94555.46811316232,
- 95173.1058684115,
- 95061.07101043357,
- 95125.54161959406,
- 94642.13333896926,
- 94577.33860504878,
- 94677.93437523032,
- 94598.57761381929,
- 94704.25329936552,
- 95898.80369104634,
- 95859.76101831674,
- 95812.8085668192,
- 95924.0510925754,
- 95896.15100446602,
- 95824.9408665822,
- 95758.1497186825,
- 95253.24133716796,
- 95156.66415912467,
- 95285.10107414321,
- 95193.57186281015,
- 95101.30623358215,
- 95288.3668867181,
- 95214.81168632788,
- 95178.04877880761,
- 95238.4612240695,
- 96585.10907993346,
- 96390.6462111492,
- 96213.5014235769,
- 96884.94841533682,
- 96843.19044479831,
- 96976.72186679111,
- 96668.19262520867,
- 96527.43586088887,
- 96519.96662272481,
- 96553.27398847301,
- 96957.88158177114,
- 96076.39327665615,
- 96254.52857694228,
- 96282.33518668677,
- 96286.57370428348,
- 95362.96257854867,
- 95762.442921347,
- 95381.11813749094,
- 94883.10635112034,
- 95025.3184603646,
- 94949.60061790438,
- 94776.97725616019,
- 94991.55991969479,
- 94952.53942297342,
- 94891.32234489628,
- 94826.4909333284,
- 95394.6894172284,
- 95529.53434892082,
- 95613.36862572782,
- 95440.45332612093,
- 95428.17340896445,
- 95290.12180962758,
- 95617.83943211543,
- 95509.51889809627,
- 95991.33991024262,
- 96055.57318060596,
- 96097.44273427612,
- 95848.90900012582,
- 95668.59789817403,
- 95969.73089143247,
- 96307.29746684979,
- 96110.446524941,
- 96018.1989928102,
- 95916.88717086082,
- 96259.9088278092,
- 96265.8396473732,
- 96425.09656179631,
- 98146.26357853966,
- 96740.13124735563,
- 96595.41352686423,
- 96654.64167636221,
- 96513.8684829462,
- 96544.75552813962,
- 96711.99932746214,
- 96702.77287733635,
- 96622.89110754011,
- 96650.8577845288,
- 96660.99210432713,
- 96495.89435277808,
- 94583.67896061894,
- 94658.26682954257,
- 94620.28434976013,
- 94669.0910072042,
- 96251.15095739174,
- 96304.23939903782,
- 96226.01518961282,
- 96320.65693732718,
- 96277.56204314627,
- 95674.83501563323,
- 95736.15092677393,
- 95786.53743239374,
- 94663.42415631165,
- 94690.05816224274,
- 94529.54887138213,
- 94573.33511403036,
- 94595.57719945294,
- 94607.51235993573,
- 94666.84271139963,
- 94624.39247192521,
- 94549.16204838405,
- 94491.8662499373,
- 94952.55129948242,
- 94615.64321919113,
- 94522.78269468108,
- 94562.82084434494,
- 94593.73117840412,
- 94579.78144755292,
- 95571.72373244617,
- 96621.22573818848,
- 96470.6891870684,
- 94228.39378501002,
- 94061.36529939531,
- 94022.25691774377,
- 94052.96379103974,
- 94285.83388955456,
- 94165.01695821773,
- 94230.32019308097,
- 94662.60718160463,
- 94700.17153728654,
- 95735.32005357998,
- 95692.66532182253,
- 95665.0896772998,
- 95717.17249319649,
- 93771.64901934502,
- 93792.45591967623,
- 93697.6920875846,
- 93762.18661659818,
- 96281.32850564222,
- 96253.68359021118,
- 96325.10446742897,
- 96337.60461817843,
- 96325.43171609768,
- 96171.94045814378,
- 96236.30172944344,
- 96372.84433195303,
- 96416.50330670876,
- 96461.59608065485,
- 96187.06552247319,
- 96046.32402735324,
- 96093.98837699907,
- 95954.38507019526,
- 96049.50535520805,
- 95998.29219547354,
- 95970.68481188625,
- 95908.75378900667,
- 96010.59585795696,
- 95963.09163288568,
- 95614.9761433545,
- 95473.6830691956,
- 95625.48730067638,
- 95504.31384644122,
- 95585.85264252442,
- 95698.5799699456,
- 95371.62884591159,
- 95361.67422421975,
- 95619.42230416782,
- 95663.18864254322,
- 96284.55056147317,
- 95559.6425612621,
- 95412.5939248789,
- 95399.43047732508,
- 96134.90709775368,
- 96196.76537660908,
- 96165.55211580031,
- 96220.62136154641,
- 96083.77668077107,
- 96256.84714815787,
- 96145.48967947123,
- 96140.70858890428,
- 97018.01929554026,
- 96848.85035393931,
- 96886.03757990844,
- 95472.53473339273,
- 95592.3590579154,
- 95577.60998891103,
- 96402.25288687303,
- 96931.73639236027,
- 95307.82377822268,
- 95312.76274987488,
- 95246.617811933,
- 95202.42610294092,
- 95189.33791646003,
- 95279.44711489225,
- 95246.69781047499,
- 95324.53269217705,
- 98252.20125651163,
- 98157.37070871185,
- 98357.10377182142,
- 98324.73469132032,
- 98295.76754954316,
- 97105.86251341687,
- 98258.1504517649,
- 98246.01088839823,
- 97429.76144404312,
- 98240.64626714814,
- 98321.03221855451,
- 98271.68050762633,
- 93752.3312236433,
- 93756.90772025482,
- 93953.20323974107,
- 94091.98744666459,
- 94124.10076790105,
- 94087.37147599955,
- 94126.81383111597,
- 94013.12054823448,
- 94172.54386589286,
- 94029.39526780658,
- 94131.47438278008,
- 93941.60029047483,
- 94051.09597981113,
- 96692.12311657275,
- 95777.45510873004,
- 95708.6636061905,
- 95660.79157564534,
- 95632.78201832197,
- 95733.23099723773,
- 95625.2334428732,
- 96690.8587748414,
- 96662.49126502928,
- 96745.05165244982,
- 97124.39568027973,
- 97095.89811358032,
- 97112.51508375412,
- 97438.94706894625,
- 97298.1281701925,
- 97162.94378004716,
- 97368.28761209213,
- 97145.35276682033,
- 97198.43320497262,
- 97245.58511308912,
- 97404.46242057864,
- 97240.73904594999,
- 97394.17633422943,
- 97150.0365297859,
- 96980.44928277681,
- 98203.0854152399,
- 97903.23099241641,
- 97820.00767848469,
- 97165.28391525596,
- 97121.42521929949,
- 99200.76991821163,
- 97730.10289313177,
- 97679.4016292501,
- 95973.2616830581,
- 96015.96776704377,
- 95591.27380732736,
- 95648.05875995208,
- 95602.29812834255,
- 95765.18576710457,
- 95710.673787455,
- 96760.92857071379,
- 98107.98397593139,
- 97143.57757258782,
- 97117.76259346868,
- 97199.548737579,
- 97244.54058788632,
- 97151.98882224852,
- 97119.08649562852,
- 97228.8586541166,
- 97278.2734802375,
- 97971.15353949438,
- 97948.15175790482,
- 97981.75949850792,
- 96126.7346762115,
- 95933.5287680958,
- 95988.09830570368,
- 96776.65072818978,
- 97174.4902451007,
- 97535.24128889033,
- 97857.0437324069,
- 98441.4708798117,
- 98378.02420745678,
- 95765.99579339992,
- 95805.27848287535,
- 97459.28505940326,
- 97675.57302296757,
- 97657.0685191219,
- 97609.83906118742,
- 98605.62696637101,
- 98594.57251546823,
- 97292.27504024247,
- 97208.17700488467,
- 97153.8030933662,
- 97461.83260827704,
- 97099.70079043217,
- 97067.465012111,
- 97404.7469494071,
- 97118.95086045063,
- 97039.56267630485,
- 97100.65924565001,
- 97324.6914900351,
- 97043.84788523692,
- 97481.10824091855,
- 97510.25838188223,
- 97122.99450066582,
- 97151.83752746668,
- 97116.3702029372,
- 97317.08656207834,
- 97297.57988152267,
- 97399.26667465223,
- 97110.35476659756,
- 97245.9845655978,
- 97338.6794096304,
- 97304.16071013291,
- 97221.2851500303,
- 97218.18204837828,
- 97028.63638755542,
- 96793.83633777838,
- 96860.75623904701,
- 96803.46095891818,
- 95603.43349316179,
- 95538.75882410601,
- 95403.35995732812,
- 94982.11885713646,
- 95091.65908345411,
- 95006.98525443788,
- 94961.43165547009,
- 94945.53507458087,
- 94903.43608338811,
- 95065.55850772645,
- 95011.65811258498,
- 94939.05144867142,
- 97851.96545124071,
- 97776.20823036006,
- 97951.79743510587,
- 97678.34155724986,
- 98068.90809649408,
- 97644.57598419554,
- 97840.23347415248,
- 97858.72921784101,
- 97998.55969379349,
- 97900.61279437604,
- 97911.67531684053,
- 97775.50314469819,
- 97890.9310548109,
- 97940.44104273879,
- 97891.33496893896,
- 97867.3221662809,
- 97936.31670167827,
- 97945.53098688826,
- 98007.87228599943,
- 97872.15207962286,
- 97671.66130484144,
- 97137.2003252543,
- 97176.99512205806,
- 97178.02769187269,
- 99234.6345322715,
- 99167.15507702739,
- 99196.99137747717,
- 99345.95077259775,
- 99298.94031897592,
- 97434.89728860323,
- 97758.09088007455,
- 97717.66882748203,
- 97692.05204438251,
- 97864.44960459028,
- 97856.92589348364,
- 97646.7315802885,
- 97518.4690028683,
- 96568.3757200578,
- 96360.79423069155,
- 96201.11846761782,
- 96147.12728695886,
- 96712.80076694199,
- 95593.06297803868,
- 95019.76951112322,
- 95102.28517788525,
- 94975.72901611873,
- 95116.68898388208,
- 94867.64816679416,
- 94984.22203293043,
- 94919.08305377813,
- 96508.73199069055,
- 96791.11917374496,
- 94924.30340248237,
- 95102.2093582555,
- 95018.57997559619,
- 95013.28433948402,
- 95084.45208789824,
- 95044.35313290669,
- 94991.32690242348,
- 96292.96228716835,
- 95396.31854026583,
- 95370.67728844626,
- 96457.41148009703,
- 96281.24470025112,
- 96370.77101982675,
- 95464.53667424759,
- 95403.07991812484,
- 95460.77332334426,
- 97713.34748462857,
- 97678.75741357544,
- 98480.18557061398,
- 98344.96213348431,
- 98429.70413093227,
- 98511.79293987446,
- 98434.76946955148,
- 98467.42435958885,
- 98524.49222600524,
- 98559.46645536512,
- 95959.85383984294,
- 98087.31445184478,
- 98071.68595187098,
- 98629.22677301739,
- 98588.84201485832,
- 97955.36336549766,
- 97936.09237213417,
- 96198.27647513033,
- 96152.66864658507,
- 96586.95927925126,
- 97158.89221586598,
- 97020.82930599325,
- 97021.39491967497,
- 96979.82022752479,
- 97016.71696412006,
- 96721.31987028342,
- 96644.41975002215,
- 96671.14731805214,
- 96322.43872730463,
- 96408.99138701527,
- 96380.36068124554,
- 96410.01535381378,
- 96545.67249216154,
- 96337.69690409732,
- 96379.29684177249,
- 96256.40262368404,
- 98094.94144871847,
- 98102.66578906662,
- 94425.17698527497,
- 93711.5032857345,
- 93766.13514013491,
- 93794.37719324508,
- 93725.48220687856,
- 93282.32117482684,
- 93221.73955457543,
- 93208.18303346328,
- 93325.79765311313,
- 93214.11532235434,
- 93315.33872157881,
- 93266.84118076335,
- 93260.96297517662,
- 96468.45059842155,
- 95419.01295011838,
- 95522.29690782333,
- 95434.63162470613,
- 95522.59347807155,
- 96419.20807083481,
- 96121.69831110585,
- 97051.56980439604,
- 95549.4392720819,
- 95516.47032069488,
- 95289.99947728145,
- 95545.42707969059,
- 95587.50972921033,
- 95085.7358614468,
- 95766.82836995482,
- 95105.9704756148,
- 95815.83892952197,
- 95191.15728912293,
- 95512.73349904499,
- 95626.14363249643,
- 95032.40110092318,
- 95631.07394328593,
- 95590.81174307152,
- 95912.25682425735,
- 95597.7906661159,
- 95579.93831216634,
- 95715.19253104036,
- 95126.23354130394,
- 96534.17654783507,
- 95015.33918715396,
- 95796.61373078152,
- 95643.13524318043,
- 95746.24059541902,
- 95559.2112095161,
- 95766.4420442681,
- 96526.79557731359,
- 95131.5941183471,
- 95018.48362985617,
- 96065.14768742399,
- 95634.93267958445,
- 95527.42462717323,
- 95194.44309703742,
- 95813.90918667779,
- 95726.95869510453,
- 95954.92061138574,
- 95112.53926171671,
- 95049.89107673854,
- 95733.5582374262,
- 95852.81047544103,
- 95167.71564066921,
- 95788.6686934094,
- 95156.93526218369,
- 95503.24905229843,
- 95227.31453053986,
- 95256.82853161849,
- 95777.06593763633,
- 95778.11133873799,
- 95841.15444703231,
- 95545.63612104181,
- 95535.85549573906,
- 95111.693114726,
- 95161.29561184804,
- 95751.83804119815,
- 95154.35913268666,
- 95743.57295726631,
- 95566.08096854025,
- 95071.67988020071,
- 95320.52292032006,
- 95795.05422834658,
- 95080.07065852977,
- 95078.64341067748,
- 95009.57828432537,
- 95204.47944062315,
- 95257.49256519784,
- 96576.33824877361,
- 96378.93466044324,
- 96299.85768372391,
- 96612.8462594204,
- 96619.36075421462,
- 96050.51896679334,
- 97096.25480847151,
- 97461.17357839017,
- 97113.68749649214,
- 97070.65467482769,
- 97085.84775973822,
- 97511.27320539985,
- 97471.4065804253,
- 96172.51733633167,
- 96596.14681899169,
- 96432.47446387983,
- 96730.72662363359,
- 96815.74842835017,
- 96432.60634695792,
- 97017.1669084225,
- 97173.35179768581,
- 96929.96417980653,
- 96895.32993115457,
- 95960.83337961102,
- 95973.18677822626,
- 96185.91987135717,
- 98053.0642172455,
- 98274.51626017109,
- 98416.67608487829,
- 96833.09629477594,
- 96389.15700605555,
- 96728.86287279802,
- 99228.92028443553,
- 99212.70100378105,
- 99232.68405354682,
- 99103.44876993205,
- 97711.83186455314,
- 97603.39364622922,
- 96767.66900065186,
- 95740.22395410195,
- 95874.51064937194,
- 97094.08230838644,
- 96858.31183832121,
- 97019.63624773566,
- 96947.97323662853,
- 96831.27749069908,
- 96392.74500653436,
- 96436.86822188261,
- 96376.91690518416,
- 96350.55565716545,
- 96321.15146800532,
- 96524.80040507406,
- 96860.6503292752,
- 96680.86127426095,
- 96398.83615088987,
- 96391.62172387257,
- 96272.74969865312,
- 97698.46004125582,
- 98150.22448558552,
- 98046.56042319539,
- 96091.68950774056,
- 99340.31910283645,
- 99313.20979173463,
- 96470.73828277734,
- 96565.0881456934,
- 97185.1808281155,
- 95500.49413841194,
- 97254.60654731093,
- 97228.53082661908,
- 97457.80305691704,
- 97262.678362189,
- 96245.81287553936,
- 96314.41375523742,
- 96401.76747586693,
- 96355.90615678827,
- 96369.69059048773,
- 97186.3132997967,
- 97064.47646579129,
- 97158.96990923911,
- 95870.52884118582,
- 95840.07213390034,
- 95680.1096833134,
- 98796.43807365598,
- 97288.66317264974,
- 97400.5708421359,
- 96733.77607604802,
- 96760.86563639867,
- 96753.76496796569,
- 97632.01085607987,
- 97563.26458780964,
- 97588.76856320181,
- 99361.59793953648,
- 97903.46526431757,
- 97873.51796335696,
- 97948.39404069813,
- 96889.0306429424,
- 96907.48571010484,
- 97191.09182635164,
- 96942.59821550541,
- 97747.44748826537,
- 96387.01730151517,
- 96598.19218239089,
- 96473.28103194672,
- 96658.84703021134,
- 96494.81661435854,
- 96672.20067299905,
- 96598.19772505444,
- 96510.46443991837,
- 96701.69552746598,
- 96539.74460144996,
- 98226.84081787949,
- 98241.35583628787,
- 103012.50040913292,
- 103050.16207521364,
- 102935.46730939098,
- 102950.02495500898,
- 103115.61980314259,
- 102981.6591476348,
- 102970.32847474286,
- 103050.37577267221,
- 103039.45476144501,
- 103145.40971868698,
- 102881.9871404351,
- 102896.31427168078,
- 102743.93553159607,
- 103003.97003289565,
- 103071.21323586704,
- 102958.121892692,
- 102990.59814603475,
- 102955.94479850777,
- 103041.38776247326,
- 103006.17533551028,
- 103097.54858465325,
- 103093.03210077138,
- 102849.4521539362,
- 102929.61114879283,
- 102836.82326066242,
- 102850.0467744593,
- 102710.33828378592,
- 103171.58738973808,
- 103039.75462604016,
- 102822.41041165365,
- 103145.40299178564,
- 102893.70015633377,
- 103068.00837449041,
- 102885.78859789654,
- 103053.80194217195,
- 103120.61740341707,
- 103353.3242908138,
- 103044.72318410393,
- 102885.22782431466,
- 102934.2236077041,
- 102936.50978128517,
- 102797.13886249666,
- 103138.73232130763,
- 102970.44843874604,
- 102673.92982323217,
- 103391.80690165356,
- 102918.21735494805,
- 103087.20566196111,
- 102940.683338319,
- 102799.74205444116,
- 103183.68169934869,
- 102917.88714022035,
- 103082.19417204797,
- 103013.92678419144,
- 103079.13759889861,
- 102796.76557690598,
- 103008.94428849094,
- 102914.14727498162,
- 103097.33141408257,
- 102984.59817230792,
- 102999.242153458,
- 102825.0800232946,
- 102943.62442164868,
- 102996.76586737529,
- 103056.99415971928,
- 103067.37440468137,
- 102735.70852544352,
- 102977.56662627251,
- 103052.37715191457,
- 102856.38596651099,
- 103162.96543297928,
- 103029.09037497792,
- 103086.18250158385,
- 103144.62346271172,
- 102857.39568352004,
- 103018.48102906163,
- 102846.81397282002,
- 102959.24234304379,
- 102860.97984399927,
- 103204.38427585832,
- 103037.63504006495,
- 102976.99922262576,
- 102915.13967065407,
- 102948.12263359,
- 102905.30463146325,
- 102775.59654509142,
- 103064.59068768269,
- 103127.2944683463,
- 103034.67848377136,
- 103118.71870989143,
- 103071.00150506526,
- 102791.07795037152,
- 103141.91696005758,
- 102900.66287637541,
- 103159.2274797242,
- 102953.45731484497,
- 103076.07764829494,
- 103180.222746918,
- 102929.58826717759,
- 103023.01993823654,
- 102806.18146902687,
- 102815.61399877533,
- 103103.79792250128,
- 103062.08365221192,
- 103127.22842256306,
- 102987.13535610563,
- 103015.066909508,
- 103003.68988635896,
- 103019.86716613526,
- 103015.5953490687,
- 102965.30578971672,
- 102846.40082320553,
- 103043.9117792615,
- 102956.1297050231,
- 103183.26568270578,
- 103076.71371945935,
- 102839.27781745781,
- 103195.814589243,
- 102844.52372308212,
- 103048.07930443641,
- 103116.44549536241,
- 102887.65778558908,
- 102787.7592041423,
- 102878.33658342516,
- 102975.28613555466,
- 102777.14875199659,
- 102784.83487471334,
- 103055.67082885235,
- 102922.95094014877,
- 103018.59506549768,
- 103099.08631775716,
- 103074.18589615662,
- 102895.43270597128,
- 102761.9969007521,
- 103040.86211690954,
- 103078.14916824212,
- 103141.03868202487,
- 103220.7702303365,
- 103039.71918145288,
- 103000.09208703019,
- 103093.18540186799,
- 102886.24823604496,
- 102734.2330280844,
- 103124.81756865612,
- 103116.45746689758,
- 103116.44206372628,
- 102905.47635113973,
- 102876.54018840358,
- 102995.30845949444,
- 103461.52053531604,
- 103109.24014121846,
- 102639.10208368214,
- 103127.93620264718,
- 97816.11957295614,
- 97744.13754822216,
- 97875.02824277256,
- 97875.23810233118,
- 97860.97988843071,
- 97874.20140366515,
- 97813.77444698993,
- 97295.41993443215,
- 98504.0608151538,
- 98563.09341475698,
- 92714.11963007496,
- 92747.05003046816,
- 92736.93813690646,
- 92758.02599424361,
- 92772.32573698397,
- 92875.48053840011,
- 92643.21127411565,
- 92635.69548630752,
- 92662.91635122887,
- 92806.5752589732,
- 92672.51828517085,
- 92780.45361230415,
- 92910.85152531487,
- 92750.21944483303,
- 92929.03768547083,
- 92695.48300652891,
- 92763.33740890355,
- 92746.60202937137,
- 92804.83283425898,
- 92656.75321387713,
- 92720.63886172147,
- 92781.03766208091,
- 92955.99148324825,
- 92819.90574053729,
- 92863.93843996643,
- 92762.18406665193,
- 92731.96951288165,
- 92829.5244158295,
- 92829.06364513682,
- 92964.21376697725,
- 92797.61369683825,
- 92899.57389546379,
- 92689.95383378031,
- 92879.10271586856,
- 92918.23986331817,
- 92770.44632801176,
- 92826.16653182537,
- 92776.46176010194,
- 92799.3624177929,
- 92744.89756492016,
- 92788.55500541464,
- 92743.6893037566,
- 92755.14253033418,
- 92674.50485570161,
- 92778.98325152327,
- 92823.64619231266,
- 92845.58188637684,
- 92870.93404835771,
- 92855.1291239748,
- 92698.77859603205,
- 92802.31863144008,
- 92892.72049598476,
- 92868.7121626449,
- 92915.20617790846,
- 92928.39381493034,
- 92847.40821100175,
- 92864.43936845861,
- 92876.39180829469,
- 92838.77007893879,
- 92968.71300952189,
- 92759.73292583875,
- 92887.42259766499,
- 92908.28155211873,
- 92748.72130275492,
- 92958.5054330462,
- 92972.27137717552,
- 92886.64791972426,
- 92932.43400044982,
- 92868.65401523824,
- 92789.25845787131,
- 92871.2505752866,
- 92915.12458208142,
- 92741.2233382749,
- 92825.6682181709,
- 92937.13338499848,
- 92714.19169562703,
- 92710.4092859258,
- 92715.643325396,
- 92693.19807508035,
- 92785.66175398401,
- 92762.37604498131,
- 92898.36187164378,
- 92816.23744248544,
- 92846.47331272127,
- 92805.50156317676,
- 92908.05512282117,
- 92780.10459702351,
- 92735.8872940194,
- 92809.1992299666,
- 92734.73602492957,
- 92822.90992394777,
- 92792.15515640823,
- 92768.14688762419,
- 92907.89027775265,
- 92803.08916804337,
- 92805.67467569452,
- 92674.69300068788,
- 92860.77077420008,
- 92652.28269502005,
- 92931.03691748106,
- 92786.45165805808,
- 92690.068927953,
- 92654.04075146845,
- 92770.35188046416,
- 92806.45226779237,
- 92678.6570565419,
- 92789.38337680516,
- 92816.16939505044,
- 92681.04409740334,
- 92791.67829836892,
- 92670.95905256645,
- 92718.19280810321,
- 92931.93535013939,
- 92832.21310659085,
- 92970.07983820014,
- 92785.25516080103,
- 92703.7009482962,
- 92743.15309026223,
- 92832.99190630158,
- 92848.17018472671,
- 92856.6758347593,
- 92700.80017637742,
- 92811.6659175343,
- 92820.39777410144,
- 92637.22500048368,
- 92724.95781401754,
- 92918.12000715463,
- 92764.62782096473,
- 92834.87795946051,
- 92716.36551030405,
- 92688.16204123068,
- 92769.98293309148,
- 92747.11480769856,
- 92830.97365426456,
- 92956.88845743412,
- 92667.03163689894,
- 92773.97104867987,
- 92765.97352504909,
- 92817.15251278403,
- 92839.25105015197,
- 92684.27446517262,
- 92738.68503255733,
- 92928.56873551727,
- 92951.93214721176,
- 92840.23927959817,
- 92837.4325323441,
- 92773.24336533085,
- 92707.69711555765,
- 92894.12452528065,
- 92795.44137357986,
- 92872.08606858594,
- 92908.58904558522,
- 92895.13083815288,
- 92968.34537712067,
- 92933.32350347849,
- 92817.07788508855,
- 92708.3826511513,
- 92633.09806031307,
- 92724.69669127463,
- 92801.33010757218,
- 92859.73470884244,
- 92850.4893758,
- 92796.35612079636,
- 92724.80064222643,
- 92763.48617614119,
- 92691.12432749973,
- 92832.2455281412,
- 92821.6970235056,
- 92851.82952662438,
- 92739.55758843302,
- 92845.21219008189,
- 92889.60537235835,
- 92834.7670703216,
- 92733.8821803168,
- 92986.54378267881,
- 92947.59593567792,
- 92856.64253156737,
- 92846.37780126568,
- 92929.57342431239,
- 92694.65154614455,
- 92725.73648513126,
- 92909.37864471917,
- 92805.98275581197,
- 92737.17105520054,
- 92878.3665763355,
- 92802.85003718645,
- 92856.84754805104,
- 92888.32012726701,
- 92898.5423456085,
- 92936.9208329952,
- 92705.6426947887,
- 92802.4910911643,
- 92703.75887355224,
- 92720.32907766118,
- 92776.69738221027,
- 92670.03570964884,
- 92863.90985342726,
- 92783.24992765753,
- 92630.81613535142,
- 92650.60838023956,
- 92761.85914886044,
- 92892.90945921653,
- 92872.33464950968,
- 92900.15446475662,
- 92870.6477486372,
- 92933.1992941243,
- 92851.02442957304,
- 92751.17943703893,
- 92823.51293857984,
- 92945.57764957601,
- 92729.4609843271,
- 92890.45354067329,
- 92861.71457971018,
- 92758.15563703989,
- 92954.24674729079,
- 92684.86692219344,
- 92867.89952269728,
- 92753.36839914953,
- 92815.38400026898,
- 92641.38065955654,
- 92913.90088716414,
- 92828.71624935322,
- 92789.6538543949,
- 92893.38018644902,
- 92846.85628511268,
- 92874.80861019567,
- 94389.82268512787,
- 94473.83901464478,
- 96726.85001938077,
- 96856.75307244163,
- 96887.63327582092,
- 96757.24745508902,
- 95941.37906805627,
- 95883.81802686673,
- 97300.31066052879,
- 97227.48630235011,
- 96107.43914118575,
- 96267.78319342206,
- 96223.35433626908,
- 96431.48255781003,
- 96906.24469590047,
- 96456.6197756494,
- 96621.2306651311,
- 96103.35761667813,
- 96135.79066248288,
- 96066.03066201929,
- 96124.46503141584,
- 96209.36237781073,
- 96049.12329461102,
- 96234.19587815474,
- 96182.34124187389,
- 96069.25402929624,
- 96110.12517865465,
- 96104.37397737885,
- 95473.87175752441,
- 95529.50498627951,
- 95559.19394644504,
- 95475.06861200492,
- 95576.43864239694,
- 95675.56715847473,
- 95652.38718337071,
- 95529.44060928901,
- 96463.32828761848,
- 96332.28386414018,
- 96704.88510542022,
- 95403.82629332301,
- 95414.5198416682,
- 95428.74452499427,
- 96837.5234314195,
- 95981.4289276959,
- 96091.23112460926,
- 97608.10402017404,
- 97884.05250852642,
- 97883.03260448822,
- 97729.09348492567,
- 97618.47312684309,
- 97807.37725707618,
- 97782.00465249535,
- 97819.38169053383,
- 97944.82949518417,
- 97765.78400893019,
- 97793.209213772,
- 97914.72098171483,
- 97738.23489846344,
- 97952.48333090381,
- 97679.97545734418,
- 97907.07772482715,
- 97692.3701015755,
- 97854.94207901634,
- 97911.10388910468,
- 97721.07590051215,
- 97836.27828454283,
- 97690.94002689296,
- 97837.0291488112,
- 97866.5629916667,
- 97641.92112939028,
- 97668.29733496392,
- 97745.78152964913,
- 97791.99447045982,
- 97799.84504107031,
- 97895.17566291973,
- 97556.46186289481,
- 97842.08313682882,
- 97646.58785246593,
- 97955.37870272386,
- 97569.3314865344,
- 97686.2269103041,
- 97716.19446453296,
- 97566.32146451849,
- 97749.43723227644,
- 97817.99605739959,
- 97770.29128264848,
- 97837.88980822326,
- 97659.10882033668,
- 97944.48848345084,
- 97724.71001358965,
- 97840.4488438348,
- 97682.13216992372,
- 96182.13562718286,
- 95658.74013915077,
- 95679.24097287183,
- 96253.47998191483,
- 97834.98736896088,
- 96049.63837547174,
- 96089.25686352311,
- 96121.88887235317,
- 96094.58974753537,
- 96176.81124765753,
- 96239.21475237247,
- 96187.2673674574,
- 96332.65419596537,
- 96233.66033300763,
- 96233.30699052043,
- 96134.36234317473,
- 96297.38515154971,
- 96151.41022304098,
- 96082.6862769373,
- 96223.09032145453,
- 96262.14436611164,
- 96180.26927345316,
- 96170.58043821786,
- 96141.79495419456,
- 96226.17274284131,
- 95879.78023428856,
- 96318.37473253458,
- 96032.14228891094,
- 98052.01818030688,
- 98000.89472177274,
- 98030.63733564413,
- 98149.10712130788,
- 98216.62724920495,
- 98213.69694156857,
- 98136.52770175759,
- 95844.27494216182,
- 95882.75653309235,
- 95858.11291681843,
- 95873.13670582481,
- 95915.45945457155,
- 96661.15501811591,
- 95780.44924539157,
- 95886.06286226807,
- 95746.45351481336,
- 95768.15206604342,
- 95691.04939234379,
- 95836.51390847687,
- 95934.77941414388,
- 95816.16075862515,
- 95721.1118486502,
- 95900.55166557113,
- 95799.86698698705,
- 96081.51773116515,
- 95846.27746233897,
- 95973.08240383722,
- 95929.56949551513,
- 95856.24184208568,
- 95962.648951747,
- 95937.40790539984,
- 95824.43387327349,
- 95733.48913760284,
- 95793.6820658207,
- 95772.40764226652,
- 95922.24975383069,
- 95914.52764200403,
- 95878.63974632234,
- 95810.1892282629,
- 95986.87215922702,
- 95854.36203630836,
- 95751.93219087191,
- 95948.29108104784,
- 95933.10890391868,
- 95771.1520841971,
- 96026.31169836612,
- 95774.14507709046,
- 95990.44398072414,
- 96644.71742174745,
- 95797.38464544155,
- 95759.28364262846,
- 95879.32488590298,
- 96007.02552024368,
- 95799.71339132743,
- 95986.9049325351,
- 95945.23705564445,
- 96030.33284891481,
- 95810.60492377383,
- 95867.72485103867,
- 95904.66765956307,
- 96033.15612682415,
- 95749.64560857885,
- 95740.81234286937,
- 95693.87231896988,
- 95747.4548018069,
- 95791.04080191755,
- 95786.72480025757,
- 96004.96794127276,
- 96069.3698993026,
- 95936.80461170511,
- 98391.3654527381,
- 97562.46612950841,
- 98382.73052405847,
- 97552.51833446544,
- 96247.06477880469,
- 96115.75097550079,
- 96236.82264330242,
- 96287.68799404218,
- 96341.9584726013,
- 96334.04844919537,
- 96189.50164004327,
- 96129.95296040154,
- 96686.53014972531,
- 96666.27787163145,
- 96682.58310310973,
- 96315.1576937446,
- 96403.18675110892,
- 96432.7187319126,
- 96338.47765596065,
- 96273.99014457836,
- 96495.87133068114,
- 95869.20236478248,
- 95912.008333997,
- 95949.1600784945,
- 96105.10042717274,
- 96613.09529056762,
- 96555.82518831582,
- 96352.76136627332,
- 96129.08577941864,
- 96147.46587683262,
- 96112.49719695996,
- 95965.43289062445,
- 96033.98990398803,
- 96932.98205381237,
- 96212.6841921486,
- 95445.50029813193,
- 95395.99414455838,
- 96309.88478423315,
- 95773.4170104861,
- 96109.23688977351,
- 96096.91431835426,
- 96011.82130088062,
- 96061.42099266543,
- 96074.03549605754,
- 96088.75199644471,
- 96118.24342476773,
- 96861.46033115732,
- 96640.5620202917,
- 96557.59659352103,
- 96588.30967872712,
- 96008.88833191514,
- 96027.13384085294,
- 95883.83699885607,
- 95975.06514142088,
- 96004.72927759534,
- 95950.19346715305,
- 96051.95003272599,
- 95893.51889181437,
- 96144.89367540594,
- 96101.32030537611,
- 95923.907758798,
- 96043.19356552222,
- 96087.111627038,
- 95969.29263186545,
- 96043.87770069051,
- 95992.08890608055,
- 95999.96496058637,
- 96012.29670587514,
- 95384.71934393427,
- 95319.53976511759,
- 95500.60372435469,
- 95386.86547266938,
- 95393.91431790583,
- 95496.27699337724,
- 96569.52588876095,
- 96682.8032109078,
- 96505.5768828933,
- 96561.1289662077,
- 96679.55975867888,
- 95351.97758507192,
- 97189.57952601701,
- 96943.5826191979,
- 97250.13277358422,
- 96935.82800306576,
- 97299.19607449145,
- 97525.78803979425,
- 97178.4335252593,
- 97235.96464026743,
- 97343.6823481417,
- 97223.42280780959,
- 96962.82978313397,
- 98366.5317572711,
- 98294.15306017191,
- 98141.6380062112,
- 97298.22480265996,
- 97263.87438890443,
- 97405.45190185368,
- 97265.26688568054,
- 97143.09835047876,
- 97129.06878847051,
- 97235.87959368073,
- 98296.91832297333,
- 98283.52624727061,
- 97321.80845451674,
- 97570.19222318186,
- 97592.15333958538,
- 97634.27256841559,
- 97731.86232399511,
- 98027.23840369366,
- 98014.4662099854,
- 98070.63175874326,
- 97912.42274945986,
- 97847.58279285853,
- 97961.59489284047,
- 97668.12360152378,
- 97354.44949091639,
- 97438.11718141663,
- 97123.22683661472,
- 97010.00916339061,
- 97003.53337889878,
- 97130.84549007515,
- 97126.32749050998,
- 97031.44944641803,
- 97089.4267597361,
- 97004.45699478449,
- 97072.86333942694,
- 97161.1662180509,
- 97054.70302158214,
- 96956.32059970194,
- 97023.40738180937,
- 97117.40589499525,
- 97029.66141271086,
- 97109.4740304231,
- 97150.9713187897,
- 97384.12423704745,
- 97261.41344047216,
- 97058.39697873502,
- 96637.24626095728,
- 97326.30387106475,
- 97762.94327311365,
- 97434.17271064689,
- 97043.03097313532,
- 97243.08337739702,
- 97145.76310622979,
- 97095.05235018766,
- 97256.31857012321,
- 97209.354903683,
- 97275.21589329709,
- 98126.72194186601,
- 98029.23649616924,
- 98218.18612787206,
- 98173.49799372526,
- 98243.20668277878,
- 97942.74096463536,
- 98086.92377545155,
- 98136.26463837818,
- 98032.10914792269,
- 98164.7191831383,
- 98177.75893148144,
- 98048.7976669239,
- 98085.14677152337,
- 98137.73454611025,
- 98087.89687269753,
- 98058.3882260423,
- 98196.25269400347,
- 98165.00907916101,
- 98038.87796969373,
- 98047.80561487027,
- 98214.51331152665,
- 98221.44438791503,
- 98250.33407362783,
- 98175.28356611886,
- 98086.64316477746,
- 98153.95335586341,
- 98453.38379434445,
- 97072.80267951578,
- 97051.94872116366,
- 98217.55465375583,
- 98311.68272827691,
- 98378.07785934748,
- 98246.37587520153,
- 98230.17666779128,
- 98046.28708608718,
- 98251.18088487917,
- 98319.10302793559,
- 98197.145671496,
- 98233.44659529526,
- 98348.03221156073,
- 98248.99486452407,
- 98266.98788422802,
- 98381.35948380831,
- 98387.01183578208,
- 96930.45087312897,
- 96711.39206785646,
- 97730.67186086356,
- 97737.3791540576,
- 97760.05643502806,
- 97812.77410308796,
- 97846.09235022662,
- 97844.89671201118,
- 97790.3443567589,
- 97780.88601719037,
- 97793.6389519722,
- 97822.87456305856,
- 97756.11969829707,
- 97714.25738805142,
- 97797.73998808523,
- 97059.65093863031,
- 97074.06837654435,
- 97267.94399725233,
- 97420.50106316275,
- 97625.9522204539,
- 97641.00229908383,
- 97516.38998854977,
- 97567.99530773342,
- 97610.07987633217,
- 97071.63031530446,
- 96996.84956326048,
- 96993.23426998722,
- 97019.97811091317,
- 96980.83698822696,
- 97085.24353199765,
- 96992.79396284865,
- 97154.35896812822,
- 97382.12160605498,
- 97967.22245570888,
- 97293.33443899159,
- 96764.02037724445,
- 97500.29116980988,
- 95123.75313616887,
- 96504.0113092561,
- 96749.74084841611,
- 96786.69954014356,
- 96590.63286272458,
- 96722.33353227373,
- 97030.2520829105,
- 96829.08746262993,
- 96842.27837158077,
- 96405.86324838473,
- 96795.14077544119,
- 96809.16183135839,
- 97296.74368922459,
- 97952.9294243462,
- 97955.84289253918,
- 97937.84650883084,
- 97926.20155611816,
- 97921.57888470891,
- 97447.89786565928,
- 97584.54867327097,
- 97440.19299843578,
- 97537.69416462189,
- 97557.92783029494,
- 97520.47130796686,
- 97420.5839825796,
- 97406.49600346612,
- 97524.95581496398,
- 97470.45712281887,
- 97550.40349062327,
- 97402.25470761966,
- 97501.53966637526,
- 97456.21491158627,
- 97486.11011137227,
- 97490.76512311144,
- 97473.15345637558,
- 97380.45145645179,
- 97364.93794419584,
- 97493.31139326544,
- 97642.23998100052,
- 97733.12248701614,
- 98266.1684006728,
- 99212.51030616327,
- 99089.64531938844,
- 97568.18928030234,
- 97664.13121209273,
- 97608.50198699025,
- 97516.32843180199,
- 97295.1480213509,
- 97527.7722333421,
- 98354.2021118834,
- 97981.00694860649,
- 98133.35294956547,
- 97482.43177391349,
- 97424.13306252814,
- 97531.13306710056,
- 97491.69682662486,
- 97607.29756739261,
- 97402.21565975588,
- 97409.51267743493,
- 97935.18971112657,
- 97745.13254705475,
- 97717.30182307873,
- 97839.00962931263,
- 97707.07960783267,
- 96382.50314982572,
- 98949.18912879386,
- 98010.42769601001,
- 97998.11890191796,
- 98181.21611959832,
- 98121.44337304786,
- 98071.41054108432,
- 98381.74787497967,
- 98290.95288923327,
- 97150.45925062025,
- 97261.7617408887,
- 97156.92705815511,
- 96809.13802091916,
- 97271.69810632353,
- 98135.44809761492,
- 97975.85969435751,
- 98087.74110527057,
- 98131.02182023783,
- 97842.3191241412,
- 97897.19574531108,
- 97740.11577656561,
- 97901.20186675964,
- 97932.13537150175,
- 97364.53654526435,
- 97596.51200593878,
- 97466.27266862227,
- 97591.70446658987,
- 97559.74444341238,
- 97556.34242910771,
- 97568.50082889231,
- 97504.15192908207,
- 96925.02449761663,
- 97281.94651476617,
- 97754.87037614986,
- 97816.8011205971,
- 97889.86492800197,
- 98299.94934348867,
- 98291.09947188398,
- 98218.1665266749,
- 97646.77543914225,
- 98092.4725283489,
- 98095.24070406985,
- 98265.74336042402,
- 98380.98621041664,
- 97453.59900556323,
- 98175.83270961333,
- 98068.84935339227,
- 98076.53351725111,
- 97321.33667852162,
- 97256.20849471942,
- 97375.35204686232,
- 96085.62481953611,
- 96480.10013682928,
- 95635.4952582386,
- 95660.99083576904,
- 98301.13718378269,
- 98344.85074410372,
- 98394.3083189937,
- 98310.53063600973,
- 97346.1892401973,
- 98480.40348207085,
- 98370.04229097803,
- 98451.12892657102,
- 98596.80481606587,
- 98320.60384126543,
- 98702.60040244272,
- 98398.75524090877,
- 98445.66094374743,
- 98732.37072864667,
- 98369.26821419236,
- 98345.90054955689,
- 98310.13941730415,
- 98350.13090091896,
- 98367.03708190138,
- 98981.74509741156,
- 99115.95103184906,
- 99044.69297651587,
- 99139.70935255074,
- 98942.63618668188,
- 99068.30285214641,
- 98837.87215098692,
- 98941.98492686346,
- 95925.51936102928,
- 95836.86051364095,
- 95841.63723542419,
- 95807.55730759914,
- 96714.19926904603,
- 96823.46958884488,
- 96172.1853849051,
- 96001.11875324031,
- 96153.74670381845,
- 96814.77969019499,
- 98464.03856830075,
- 98189.86043944341,
- 98307.69673094383,
- 98237.26193514904,
- 98624.79723960246,
- 98285.95990732293,
- 97698.11772956593,
- 97385.0681494814,
- 95837.99483341178,
- 98228.7849099925,
- 98375.74582118145,
- 98182.14007435848,
- 98140.23039610147,
- 98269.97101414308,
- 98274.18301520034,
- 98261.35090991932,
- 98152.55259488344,
- 98222.89012213812,
- 98101.23332558201,
- 98175.87245687013,
- 97595.5487286106,
- 96279.56542526848,
- 96530.07073939945,
- 96589.42762961413,
- 96756.45377519565,
- 96827.37038036223,
- 96930.8467707688,
- 96494.91179403212,
- 100553.61137409393,
- 100444.89520239284,
- 100530.44923311533,
- 100626.79397543533,
- 100504.09236604944,
- 100461.50336537426,
- 99852.28352799846,
- 99808.93365789295,
- 100898.1530317686,
- 100848.69931219713,
- 100857.84354867911,
- 100797.99961855274,
- 100682.51103448716,
- 100956.3356976481,
- 100820.29890680054,
- 100757.83911726538,
- 100777.06863317556,
- 100805.1278220788,
- 99897.00034100206,
- 99885.53367261976,
- 99733.89269403598,
- 99931.09159473867,
- 99989.17577184312,
- 99402.69167743201,
- 99914.41548040505,
- 99949.71858455199,
- 100007.300600629,
- 99941.71936800965,
- 98696.20977067878,
- 100481.51513057065,
- 100403.30601497291,
- 100529.91253667448,
- 100568.23920670286,
- 100728.97795077493,
- 100437.50150850076,
- 100194.52138415762,
- 100103.23446886911,
- 100329.56908981693,
- 100165.50473225,
- 100010.5721553044,
- 100048.20827001765,
- 99552.26651483987,
- 99539.09821540986,
- 99569.29443472087,
- 99712.43812317886,
- 99401.76593393642,
- 99546.359302407,
- 99547.70287765094,
- 96768.76253347314,
- 96838.7838623563,
- 96789.33376936015,
- 96920.93490684904,
- 96831.01533371997,
- 96946.95627384465,
- 96923.16983244233,
- 96808.41765699841,
- 96809.07917067675,
- 96856.67588119206,
- 96847.17765287637,
- 97506.82580701464,
- 96734.42347125604,
- 96749.37391939254,
- 96816.89633164286,
- 96732.82218142171,
- 96918.79091209936,
- 96977.91016252428,
- 97203.10489846802,
- 97148.42701927797,
- 97394.5768705934,
- 97321.6102346845,
- 97391.15136417256,
- 97421.55628560655,
- 96572.70915846486,
- 96569.37282584612,
- 96634.02973485782,
- 96641.9954973643,
- 98259.271845129,
- 98168.9231416876,
- 97204.8783368979,
- 97506.64122277842,
- 97518.73388739799,
- 97294.3314821682,
- 97388.71359159944,
- 97460.1220450078,
- 97527.0381829492,
- 97574.84489035908,
- 97403.49233740254,
- 97313.23942986008,
- 97470.12592517314,
- 97339.79753757949,
- 97554.5235551415,
- 97533.81519896755,
- 97334.74101129781,
- 97489.70814217188,
- 97472.39269986044,
- 97387.12778874076,
- 97437.62011604731,
- 97457.91304211157,
- 97317.43805248154,
- 97410.58779561223,
- 97539.58464921622,
- 97342.03150148301,
- 97306.54238286208,
- 97368.47508508009,
- 97462.35402312716,
- 97362.09100683562,
- 97468.63463640668,
- 97407.10414666461,
- 97427.0423299996,
- 97445.06134182603,
- 97384.33030394555,
- 97418.50090063574,
- 97329.77520403042,
- 97501.86106879357,
- 97589.09322622273,
- 97365.55201336363,
- 97496.03917907522,
- 97578.21965017916,
- 97621.96108195561,
- 97597.5695956047,
- 97551.12577735574,
- 97566.33074345869,
- 97316.24496342393,
- 96793.86442373705,
- 96685.18396788204,
- 97191.87480429292,
- 97945.10387365565,
- 97813.17651623696,
- 96192.36516650372,
- 96166.65134798315,
- 96151.18947802766,
- 96219.49280554311,
- 96321.49613399363,
- 96348.27089895145,
- 96312.11948904546,
- 96413.07673363906,
- 96067.23210924766,
- 96241.04212507296,
- 96371.39408635684,
- 96469.32529389091,
- 96158.31542657371,
- 96334.94354943845,
- 96152.51660612367,
- 96247.31090145207,
- 96236.22052335802,
- 96303.25217664873,
- 96187.17079366487,
- 96348.83043260756,
- 96308.4379961576,
- 96338.25209207543,
- 96260.73617752134,
- 96268.88889721669,
- 96157.96193062943,
- 96588.03419761182,
- 96527.41286019633,
- 96551.83742032673,
- 96521.94024587476,
- 96905.2605934214,
- 97009.34087073864,
- 96820.7830898844,
- 98073.30353618528,
- 98153.01073729256,
- 97890.19215830484,
- 98289.64738099596,
- 99350.28536017142,
- 99507.3720181478,
- 99388.57352758666,
- 99720.51276602945,
- 99470.76221817326,
- 99983.69630418211,
- 99864.71563941333,
- 100490.87413901878,
- 100512.67904571105,
- 100462.96804014868,
- 98174.24014304766,
- 99182.5898053717,
- 99297.47748745349,
- 99173.09577075086,
- 97018.10490746981,
- 96024.40112653765,
- 95977.23359820171,
- 95944.20879009437,
- 95957.04000819045,
- 96118.28040336892,
- 96136.85927600949,
- 96010.1549176,
- 96088.19892270163,
- 95907.0760779808,
- 96018.50845340571,
- 95951.03051542168,
- 95976.84004061195,
- 96193.58532347402,
- 95724.82667612792,
- 95782.3253503642,
- 95763.58006546515,
- 95802.71249287276,
- 95794.74480692008,
- 95773.72799782119,
- 95705.64201223625,
- 95854.84350284688,
- 95750.69476013878,
- 96100.74371648408,
- 96096.27034812108,
- 96200.85680540389,
- 96373.49619860556,
- 96029.76428620814,
- 96057.67371904092,
- 96137.52117336927,
- 98923.84604161337,
- 99330.7962680329,
- 101107.14331554841,
- 101171.88975233596,
- 101142.357752018,
- 100568.55851595142,
- 102954.7692368723,
- 102875.47592578827,
- 102873.44929349524,
- 102973.29006079929,
- 101911.83591220567,
- 101946.02963869514,
- 100215.14271741606,
- 100200.76545872116,
- 100059.60994106538,
- 100079.51571516019,
- 99936.15523064065,
- 99181.95152123351,
- 99195.28356015346,
- 99211.69144249897,
- 97980.22062912158,
- 99073.87694250268,
- 99151.86765374598,
- 99168.96378888712,
- 99046.5441793224,
- 98976.05727895776,
- 99081.16187921172,
- 99148.53901882828,
- 99113.76487179766,
- 98959.06003485763,
- 99169.54346949601,
- 98982.98037771537,
- 98937.48844781533,
- 99208.54851849852,
- 99061.3646667225,
- 98987.32425560945,
- 99071.96756131454,
- 99131.82143847682,
- 98613.13814771906,
- 97220.44655452287,
- 97196.75706828712,
- 97125.53941725435,
- 99718.2462926422,
- 99803.36721250159,
- 99813.23079232925,
- 100208.03450922729,
- 100291.24785455817,
- 100818.8068736159,
- 100710.17332989187,
- 100756.53431442664,
- 100742.58004892079,
- 100816.52170155974,
- 100535.41769180611,
- 100588.8078125849,
- 100684.1289854207,
- 99355.4318094893,
- 99283.37793193322,
- 98884.47395865238,
- 98702.11362056104,
- 99212.19665290292,
- 99294.92357045293,
- 99409.68747127595,
- 99366.21868458806,
- 101293.34932264523,
- 101281.5327958176,
- 101334.14824704995,
- 101367.06730180504,
- 101344.2365303306,
- 99029.78237454424,
- 99954.82959672711,
- 99643.0795719138,
- 99636.85899020171,
- 99574.3917835105,
- 99512.35272587591,
- 99507.38002680989,
- 99709.87237972025,
- 99618.5853241082,
- 99492.14181196287,
- 99538.7844648259,
- 99586.24804608843,
- 99142.8207100815,
- 97428.68780199539,
- 98467.69979749717,
- 95501.56943956636,
- 98020.27360911023,
- 98145.87350225112,
- 98050.34194011665,
- 98168.00603776949,
- 98149.26582746887,
- 99101.32720644573,
- 97907.77536328329,
- 97901.03417870511,
- 97823.51772352493,
- 97887.71552031132,
- 97844.34590883499,
- 97875.84098174631,
- 97972.61225798044,
- 97778.61977575067,
- 97733.80999706348,
- 102294.46222470059,
- 101611.36177265896,
- 101415.64667156886,
- 101663.47791347724,
- 101670.89096728647,
- 101489.91040062429,
- 101683.85992837578,
- 101627.82156718601,
- 101614.52685921428,
- 101670.00019402351,
- 101564.26236712594,
- 101677.59144852104,
- 101503.11750353694,
- 101566.44477254337,
- 101556.6713244582,
- 101576.23104104938,
- 101501.37291680236,
- 102258.94880965956,
- 102241.50007551156,
- 101505.40062337223,
- 102236.92013567835,
- 102271.38430452191,
- 101620.62748966913,
- 101705.56691766535,
- 101616.40249009931,
- 102275.28365277304,
- 101546.7676820338,
- 101530.92806958249,
- 101440.57017023579,
- 102061.11808554111,
- 102273.20050188246,
- 99104.38829532635,
- 96790.03152514201,
- 96103.40886384947,
- 96132.92147820993,
- 95931.69453685306,
- 95990.48196120898,
- 95956.60429664124,
- 95934.42168851243,
- 95911.93174621023,
- 99852.8334694923,
- 99109.0663166796,
- 99132.2467544649,
- 98630.80803171467,
- 98689.92719517139,
- 98600.23627742211,
- 97899.34691313219,
- 100183.97700610255,
- 100698.78901867794,
- 101020.07401227095,
- 100753.17948613792,
- 100929.37102861726,
- 101049.77169559221,
- 101042.64163339522,
- 100956.6831535797,
- 95941.76966348794,
- 96031.13533407368,
- 96019.14956732029,
- 96068.74269110095,
- 96041.31540570507,
- 95956.81382376744,
- 95973.72556328609,
- 95919.35469646247,
- 95869.3259308094,
- 95890.9852158734,
- 95627.49229889535,
- 95439.686001942,
- 95462.46659073206,
- 95350.06247732986,
- 95352.85380484689,
- 101563.87691551438,
- 101274.0689543692,
- 101168.10653818438,
- 101300.33166744621,
- 101234.34457208082,
- 101601.26872970493,
- 101585.65958301134,
- 101602.23613881375,
- 100811.46618206523,
- 100829.32986696697,
- 100126.81551866842,
- 100132.13706504772,
- 99693.89632500503,
- 99710.17309703058,
- 97773.05134874712,
- 100036.94123600336,
- 99063.1409527306,
- 99169.33340406543,
- 100018.92157433346,
- 99407.78802846867,
- 99754.96532026985,
- 99736.98260295848,
- 97304.55664375074,
- 98194.2498880113,
- 98162.43586684139,
- 98039.41022287405,
- 98449.82609230773,
- 98405.07060129187,
- 98476.86717384406,
- 99709.78133773808,
- 100811.29454032266,
- 100799.25439064918,
- 100677.38582400509,
- 101079.62659732827,
- 100722.31731806434,
- 100834.06910339087,
- 100697.5591835894,
- 100714.08462751635,
- 100770.01044896716,
- 100791.5569642883,
- 99447.65502558881,
- 99376.7135123605,
- 99310.39242009577,
- 99409.34911582587,
- 99415.06017255128,
- 99369.62794905218,
- 98879.98498514206,
- 98842.26136432061,
- 98989.84252043573,
- 98812.04332174487,
- 99055.69525843728,
- 98951.35380331521,
- 98884.65639907506,
- 99012.5910040835,
- 98920.55399183184,
- 98986.64830287533,
- 98697.12172626315,
- 98620.91786909541,
- 98579.78840613288,
- 98665.66923677477,
- 98676.9556260032,
- 98666.27593048109,
- 98466.22795573567,
- 98327.10502264924,
- 97761.06111769819,
- 97778.59716574609,
- 97828.84470887261,
- 97887.6803134344,
- 98415.58884975722,
- 97970.80486236633,
- 97853.15094800435,
- 99142.00061841276,
- 99019.66226194054,
- 99192.84066023113,
- 99195.67384174546,
- 105702.70779626064,
- 105720.74472153532,
- 105597.88258663817,
- 105537.04043110306,
- 105659.02741920555,
- 105571.73128079504,
- 105609.73144478192,
- 105534.28021291584,
- 105564.00159757282,
- 105754.22947200622,
- 105456.10991948233,
- 105491.33714438768,
- 105716.4703499383,
- 105543.42915303927,
- 105630.69769986445,
- 105645.64612103258,
- 105497.54551993767,
- 105503.81836976812,
- 105623.1784153991,
- 105624.09575786174,
- 105424.31086366,
- 105638.02562345852,
- 105639.8016154403,
- 105447.54534695485,
- 104529.0077171011,
- 105513.51897047486,
- 105541.31168826211,
- 105662.21818670053,
- 105536.89658786391,
- 105587.63908464299,
- 105551.30533148885,
- 105472.97873689594,
- 105562.15649703948,
- 105614.445608318,
- 105605.58224577091,
- 105646.15356609257,
- 105649.11294797633,
- 105639.1427377219,
- 105591.38016161196,
- 105695.7244338854,
- 105501.26262445355,
- 105440.08994178778,
- 105533.16243882055,
- 105517.55400168929,
- 105575.97003898642,
- 105641.5542752146,
- 105618.39256775245,
- 105687.63777874172,
- 105739.36521479895,
- 105637.2752229223,
- 105623.86195710463,
- 105519.4049907799,
- 105536.43145628818,
- 105538.19528796947,
- 105565.0341187142,
- 105726.80316226129,
- 105472.67496843007,
- 105565.60861014514,
- 105721.03776835771,
- 104505.46224372448,
- 105695.48735109183,
- 105519.56230898018,
- 104517.04252285708,
- 105504.7638572277,
- 105675.47517143977,
- 105708.26806277981,
- 105447.26852737083,
- 105720.82332476201,
- 105692.74199201462,
- 105472.93529743854,
- 105505.51038627926,
- 105702.65367969817,
- 105617.41036553025,
- 105463.66708114756,
- 105513.42888557282,
- 105587.24021536975,
- 105666.60642497567,
- 105525.56918281784,
- 105595.04010791137,
- 105444.17622828389,
- 105593.64617351997,
- 105820.99262817558,
- 105488.11414785475,
- 105581.60321262159,
- 105479.62020612431,
- 105674.17917521868,
- 105668.80576224392,
- 105736.3108427153,
- 105672.44716304717,
- 105752.73162429658,
- 105584.94006434933,
- 105569.52484353032,
- 105589.43123760885,
- 105670.77428807763,
- 105553.56081415866,
- 105747.65391754272,
- 105495.33426700001,
- 105680.3612644293,
- 105560.48340758316,
- 105445.55876504377,
- 105629.84276764742,
- 105648.70327510666,
- 105655.30686287093,
- 105565.4869750369,
- 105481.75828279473,
- 105442.67875268511,
- 105526.1879944992,
- 105656.64322979332,
- 105594.35386643908,
- 105612.48488332644,
- 105555.6768617231,
- 105466.87188407933,
- 105686.90580509568,
- 105612.92245493767,
- 105586.46190778396,
- 105553.22245719808,
- 105602.79629216735,
- 105675.06158554988,
- 105749.4487101587,
- 105544.46883093425,
- 105500.52522474098,
- 105559.27154028906,
- 105610.83844839808,
- 105474.40094419045,
- 102845.67951808334,
- 102881.05506671254,
- 102758.92562444904,
- 102845.59991174893,
- 102770.39328667689,
- 102791.21393627733,
- 100735.89049163861,
- 102786.91065751955,
- 102696.68521353304,
- 102794.83285276036,
- 102711.83752916791,
- 102702.49380949287,
- 97921.57016446197,
- 97927.66577067936,
- 99516.12138979742,
- 99602.96430557796,
- 98688.38398683874,
- 98595.29230202979,
- 98630.36630678174,
- 101440.91242559247,
- 99888.7474021685,
- 99314.8551296866,
- 99358.88038956131,
- 101577.95064257612,
- 101653.48509896647,
- 101618.87726680218,
- 101696.33854508724,
- 101693.9514589707,
- 101705.56128660376,
- 102075.73811485003,
- 101584.20875166706,
- 101745.0284195526,
- 101750.29136937985,
- 101723.50378938632,
- 101638.07400466492,
- 101710.07571479805,
- 101605.94890163437,
- 101663.21104220499,
- 101571.93741097451,
- 101537.33961984668,
- 101661.32861456498,
- 101809.28157252,
- 100562.85875895302,
- 100691.28122991591,
- 100703.91892473621,
- 100643.93297622279,
- 100629.31140834546,
- 100618.80971613749,
- 99820.63295952792,
- 99750.92672342333,
- 99919.27050152971,
- 99838.29242204245,
- 99861.68642531082,
- 99828.61773977215,
- 99861.59601408201,
- 98068.53195038276,
- 99008.51573252691,
- 99889.43749238121,
- 99109.3220921073,
- 99431.23960563343,
- 99477.79155051857,
- 99931.61590707452,
- 99557.42983475236,
- 99679.01460310047,
- 99781.31591692459,
- 99487.32292325515,
- 99933.44815741768,
- 99734.55623427365,
- 99678.11644301329,
- 100044.6384196381,
- 99648.52514943464,
- 99734.73651507167,
- 100160.85356023969,
- 99769.13322520467,
- 99078.52085760598,
- 99013.75011741492,
- 98983.9846827361,
- 99369.7372803506,
- 97811.37205660775,
- 102770.45633988047,
- 102899.28079331243,
- 102845.04247001756,
- 102895.70055079371,
- 103861.85953601846,
- 102846.78158593367,
- 102811.8399410256,
- 102916.2536478733,
- 102974.00749621436,
- 102909.81065957414,
- 102971.72070191367,
- 102961.37499772165,
- 102754.28742449006,
- 102739.48839184036,
- 102898.81474529942,
- 102794.85431909138,
- 102866.1985748635,
- 102844.89185582798,
- 98778.26008769598,
- 98708.14130337609,
- 98895.84249312858,
- 98969.34698883492,
- 99955.92746291363,
- 99956.03049514619,
- 101816.88311248944,
- 101202.62539612001,
- 101391.8218569706,
- 101174.63066983833,
- 101048.57144304692,
- 101000.89468833616,
- 101246.78776875495,
- 101329.93994851012,
- 101396.92720550015,
- 101206.60928117258,
- 101239.2275985487,
- 101425.18089836829,
- 101374.23433910658,
- 101302.72499833946,
- 101341.02872417537,
- 101903.18715956158,
- 101756.92345298977,
- 101849.86400158559,
- 101917.07900434479,
- 101771.88883756689,
- 101878.49188290893,
- 101859.9833131921,
- 101768.71035459545,
- 101957.66008863025,
- 101925.93381925664,
- 101802.09502770085,
- 101941.68698389355,
- 101820.5319393799,
- 101816.23817021484,
- 101810.24091218987,
- 101956.52492095728,
- 101818.97161414391,
- 101875.49783721726,
- 101811.52595774685,
- 100461.69417982163,
- 100490.95507089696,
- 100584.23507339627,
- 100530.62814033258,
- 100598.89273700629,
- 100590.7203286694,
- 100253.45508330212,
- 100686.6864121916,
- 100490.75991207774,
- 100668.95104477237,
- 100709.49045972321,
- 96029.34704917161,
- 95132.0182590058,
- 95656.09312934356,
- 96141.31999881029,
- 97742.89093696582,
- 105073.0459310981,
- 105250.393807277,
- 105140.76660493574,
- 105754.80884174582,
- 105296.44944531913,
- 105728.57517210917,
- 105331.49139983783,
- 105780.27159862246,
- 105172.1807521991,
- 105292.49635223951,
- 105249.47644010253,
- 105196.48958054805,
- 105286.83303054038,
- 105160.24999280086,
- 105237.16293164933,
- 105751.46313263659,
- 105219.5540524566,
- 105122.87025665042,
- 105134.50465352352,
- 105245.56495725964,
- 105329.65312133559,
- 105255.04680668082,
- 105776.90488419207,
- 105296.69162847476,
- 105290.15459453787,
- 105187.03177049119,
- 105068.00604745663,
- 105210.64546245524,
- 105172.11220199827,
- 105147.22240577158,
- 105110.21176335553,
- 105205.98079610139,
- 105213.94812081721,
- 102632.01767983723,
- 102581.27782990142,
- 102038.80831194275,
- 102529.36033743144,
- 99348.7447313686,
- 99133.91865058728,
- 98285.28494219562,
- 98238.1997657076,
- 101317.04585495421,
- 102019.01183458454,
- 101995.52746789972,
- 101916.08163925847,
- 103456.08986793383,
- 103457.02108909264,
- 103373.99913840227,
- 103524.19866889584,
- 103286.55890268029,
- 103435.72798991972,
- 103264.17278986354,
- 103477.47262815104,
- 103380.67928748445,
- 103389.520733978,
- 103504.33007253749,
- 102974.21228920032,
- 104503.28348820597,
- 104496.15652465288,
- 105460.45902230869,
- 104559.40416265023,
- 105434.4203361631,
- 105455.89490134627,
- 105431.26932589978,
- 104574.61351811924,
- 106561.87872816344,
- 106776.02255939199,
- 106635.16178182501,
- 106732.15504561804,
- 106601.29107885293,
- 106731.17359497877,
- 106602.14819754453,
- 106862.10792861404,
- 106755.693741068,
- 106532.5203665794,
- 106759.61558299915,
- 106609.41327421999,
- 106706.91607713986,
- 106650.15180578313,
- 106592.85557378664,
- 106665.85308371624,
- 106765.76699810462,
- 106644.63224566527,
- 106727.0636283268,
- 106691.8254125457,
- 106658.42952704415,
- 106573.8359684691,
- 106946.77846067028,
- 106678.2647647673,
- 106679.82621071998,
- 106820.76911869101,
- 106821.27699738681,
- 106812.8337418669,
- 106685.34842842711,
- 106551.31500165496,
- 106823.52842568823,
- 106749.18607248642,
- 106842.31888496643,
- 106742.34691528913,
- 107048.685062726,
- 106675.50133822637,
- 106715.18848661716,
- 106770.8177499561,
- 106682.09481440886,
- 106619.69654244954,
- 106719.62851343823,
- 106712.21093307452,
- 106792.36538370406,
- 106716.43322221242,
- 106722.43473218425,
- 106613.4142948,
- 107200.47939503906,
- 106762.13888084773,
- 106837.53679908288,
- 106790.73048520643,
- 106553.37983249659,
- 106791.48424114,
- 106579.14641755563,
- 106666.6595550612,
- 106598.67730765055,
- 106632.97128548277,
- 106678.59034848932,
- 106794.65299645755,
- 106647.08307701974,
- 106681.56976180268,
- 106745.56797317222,
- 106837.31654858893,
- 106708.68509258526,
- 106808.31653286635,
- 106707.63399406707,
- 106778.70466327264,
- 106852.09016633748,
- 106796.85298801294,
- 106725.95900633195,
- 106609.89058123871,
- 106643.67855764981,
- 102302.54250042449,
- 102273.51637285373,
- 102327.68714141687,
- 102134.67476412581,
- 102190.75502881849,
- 102192.64407157355,
- 102251.95358990936,
- 102251.26335777057,
- 102191.2547206348,
- 100276.21812349626,
- 100133.57556468557,
- 100169.9290565621,
- 100231.58588411789,
- 100459.64579783555,
- 100437.37357383645,
- 101085.99598431727,
- 100418.44291308156,
- 100217.0931850488,
- 100166.28518205784,
- 100196.8580268146,
- 102472.09396205097,
- 102510.40110102798,
- 102426.07836071348,
- 102493.70912809666,
- 100370.73279250569,
- 100263.99606202378,
- 102185.54162184449,
- 102105.35380535477,
- 101884.12289507367,
- 102089.16961632067,
- 100813.5137450206,
- 100679.36722813868,
- 100865.96671772173,
- 100360.08398611244,
- 100417.8409414628,
- 102503.96297081048,
- 102361.26354264608,
- 102361.61563848036,
- 102447.4628204767,
- 102089.33611078521,
- 100199.38989250545,
- 100378.98935340745,
- 100003.95047136398,
- 99967.22110128611,
- 100086.45963356196,
- 99878.95454371617,
- 100123.24005124219,
- 100049.4088958235,
- 100174.70969881222,
- 99963.18628188736,
- 100072.569476962,
- 100052.61467437836,
- 100107.50881085078,
- 100081.03971028964,
- 100062.94225538117,
- 100062.83649537648,
- 100016.80639456735,
- 100176.00446974729,
- 100061.81776244742,
- 100094.30522647932,
- 99925.05483366393,
- 100241.64041136006,
- 102374.89899726883,
- 102326.17920087215,
- 102040.19185746327,
- 102044.87477390302,
- 102681.04976482222,
- 102708.80667103664,
- 102746.23300112753,
- 102779.2332887374,
- 102769.97593312086,
- 102646.19294310108,
- 102704.66675675161,
- 102237.36466432676,
- 100342.08799841997,
- 100335.85997077923,
- 100223.83301915645,
- 102692.31405608842,
- 102579.10480518742,
- 102525.51969078122,
- 102647.6977664583,
- 102438.98054800251,
- 102109.63915621935,
- 100927.9651385238,
- 100680.80099572752,
- 100800.39718183145,
- 101086.82262158477,
- 100998.98327044309,
- 100845.09419351183,
- 101033.30132867355,
- 101097.27054992382,
- 100893.79932863965,
- 100948.55715984435,
- 100972.4639411515,
- 101060.94351000125,
- 100955.43618464691,
- 101021.96758872966,
- 100931.19533174056,
- 101026.39648026331,
- 100960.26564636652,
- 100884.82814455178,
- 101056.54576635997,
- 101004.07943332818,
- 101086.33472233359,
- 101074.00311444225,
- 100955.59770470153,
- 100985.08882280662,
- 102345.30775637389,
- 102360.48782179103,
- 102158.60557313335,
- 102239.22675177707,
- 101086.89222661091,
- 101038.90054617883,
- 101062.66465869642,
- 101114.80968133733,
- 101978.09520389797,
- 102012.27612347057,
- 102119.8001668184,
- 102146.32891249588,
- 102110.89458927693,
- 102012.93262592147,
- 102027.32069496305,
- 101009.39541248594,
- 101005.45701984284,
- 101317.20118670381,
- 102472.85417684923,
- 102486.73414419277,
- 102441.4595203972,
- 101991.62025209401,
- 100903.69339707514,
- 102484.69136668938,
- 102403.0980081417,
- 102427.6128384684,
- 102361.88691559348,
- 101909.83952413945,
- 102131.74303744955,
- 102301.49116759682,
- 101794.82512531827,
- 102311.66790009006,
- 102102.30008742088,
- 103679.83752006112,
- 103691.81173829258,
- 103615.98109999106,
- 102175.9296900868,
- 102319.2367968909,
- 101910.31769046403,
- 99855.59269539596,
- 98518.94253675062,
- 98978.20058631645,
- 98608.15016492098,
- 99439.56645918118,
- 99766.19705816366,
- 99793.00774291946,
- 99544.7067431413,
- 99597.22180864953,
- 99652.00107522465,
- 98629.06194375621,
- 97236.38714706122,
- 96774.27151536841,
- 97373.43174560844,
- 97337.73716817379,
- 97270.4959860881,
- 96778.97067219901,
- 97280.19761067317,
- 97564.18875675717,
- 97262.69730354023,
- 97291.68899181754,
- 97322.34378993233,
- 97384.02435958975,
- 97411.59609787649,
- 98328.13162079666,
- 99088.98463223837,
- 99275.53523335142,
- 99323.60015745301,
- 99346.175304721,
- 98634.55621819719,
- 98380.41809928608,
- 98866.71537147863,
- 98448.21242713043,
- 99378.38433540135,
- 99352.75585645964,
- 99225.4877064742,
- 99418.16866483733,
- 99430.27884390537,
- 99480.31439861133,
- 99349.43583085632,
- 99353.08989464479,
- 98534.36395672044,
- 99310.86447736768,
- 99249.28903447703,
- 99379.08345923015,
- 99418.72251871403,
- 99307.44341004237,
- 99467.36470738356,
- 99358.52710365926,
- 99463.08823462212,
- 99265.10686255786,
- 99533.1090051132,
- 99430.735616467,
- 99412.77834028199,
- 99265.42166951722,
- 99397.0822658798,
- 99359.96988171423,
- 99232.57690378158,
- 99357.18200421888,
- 99521.77955609749,
- 99312.31898186129,
- 99329.83088819458,
- 99324.19866222715,
- 99203.5119953795,
- 99449.90457211129,
- 99463.59916379068,
- 99336.20831706232,
- 99349.75794681006,
- 99502.02039728625,
- 99393.14025308313,
- 99317.14667566899,
- 99213.54020433339,
- 99272.36238573091,
- 99503.60977650297,
- 99272.71339872474,
- 99184.35722457996,
- 99448.69160046501,
- 99474.5870906059,
- 99434.97853800446,
- 99483.7099392884,
- 99270.32006106859,
- 99471.18560763983,
- 99306.12541877851,
- 99551.20671595355,
- 99406.92829413555,
- 99291.30004253573,
- 99374.96501653186,
- 99442.85276686755,
- 99315.38055521878,
- 99276.09987661881,
- 99390.52362469089,
- 99423.5922830648,
- 99354.83844456464,
- 99215.2926091783,
- 99386.53496947915,
- 99528.67144569101,
- 99269.65052503442,
- 99369.25845492617,
- 99387.60981991838,
- 99477.98145048507,
- 99245.2361239818,
- 99213.53053314565,
- 99215.12918935942,
- 99319.8835983256,
- 99540.71579349438,
- 99410.73623499194,
- 99410.99468459656,
- 99314.44014947582,
- 99403.7799505777,
- 99190.33807993686,
- 99451.07278195309,
- 99497.45055468047,
- 97941.62052389975,
- 98042.89559128795,
- 97252.23165797428,
- 97256.71452773576,
- 97717.6450930688,
- 98999.07214531254,
- 98973.05295831346,
- 99054.82425526633,
- 98044.04752415298,
- 97958.60518554217,
- 97684.02089780879,
- 97530.79165170861,
- 97661.53871495918,
- 97082.40295944159,
- 97355.44513416784,
- 97152.47967070663,
- 97551.97133100245,
- 97406.15468225554,
- 96899.77531401117,
- 97488.50879118062,
- 97695.66405931095,
- 97133.66523509301,
- 97654.87379319927,
- 97567.76393513489,
- 97515.78251525074,
- 98015.71454165311,
- 98011.00513967639,
- 97926.2588824606,
- 98011.29610271553,
- 98685.42661265582,
- 98569.01114962301,
- 98455.53829158633,
- 98168.86432508277,
- 98182.35396401546,
- 98033.33645324146,
- 98122.06197821422,
- 98145.7408507303,
- 97958.45417367462,
- 97944.8447446344,
- 97976.78427151311,
- 98064.3325515416,
- 98166.05557341201,
- 98143.58155422434,
- 98079.41947586637,
- 97816.29128765412,
- 97891.037149568,
- 99467.37211095681,
- 99465.10355574,
- 99274.13613058651,
- 98616.56911567338,
- 98560.90805367962,
- 98558.38609458414,
- 98880.98424546431,
- 100397.5383419908,
- 100402.68978541685,
- 100405.17286216993,
- 100061.66712015377,
- 100531.61939659539,
- 100404.30916741672,
- 100319.7606909308,
- 100407.52446892252,
- 100377.95870123856,
- 100091.88539430087,
- 100272.25022775182,
- 100099.74666749846,
- 100436.44960338628,
- 100341.95706435903,
- 100063.71730651654,
- 97038.13042712578,
- 99128.65672613026,
- 99086.92050953522,
- 98854.21422872371,
- 98753.69995678449,
- 98539.2421167469,
- 98549.21922950738,
- 98660.85685852663,
- 98707.72105670594,
- 98674.46581814122,
- 98338.92014174488,
- 98777.20226620481,
- 98593.35045327418,
- 98858.43542229797,
- 99194.76613677801,
- 99238.598665245,
- 99141.45631430278,
- 99134.6825716299,
- 99094.27600200707,
- 98811.10588893853,
- 98843.48167264217,
- 98657.83374209405,
- 98842.07415652029,
- 98808.61446596768,
- 98331.12197959317,
- 96974.21051137756,
- 97630.01658930292,
- 96729.15577103519,
- 96683.62819879764,
- 96749.40914201127,
- 96427.63029291548,
- 96556.50208945356,
- 96476.47729265835,
- 96690.58990713069,
- 96682.63202971622,
- 96653.2046434958,
- 96758.39730707722,
- 96298.39834593558,
- 96619.23739357965,
- 96582.497731417,
- 96823.69736253725,
- 98838.92697965828,
- 98813.35123913873,
- 98939.02464143044,
- 99680.868715288,
- 99638.52780788013,
- 99963.33470263422,
- 98861.65395145089,
- 98776.13812199206,
- 99095.76812778092,
- 100018.2529981147,
- 99900.62820788269,
- 98521.7351726817,
- 98519.99346824022,
- 98584.58084122544,
- 100138.75423323698,
- 100090.19575634002,
- 98926.99585752713,
- 99231.54971618211,
- 98725.93395914823,
- 99114.81760073986,
- 99045.63820710068,
- 99468.37618059154,
- 99177.3613555299,
- 98988.53553480796,
- 100522.9307233778,
- 100464.55461316847,
- 100449.40777875896,
- 100495.63241925946,
- 100576.36749710432,
- 100455.6413624251,
- 100525.73188351096,
- 100351.79368494135,
- 100476.8920067561,
- 100427.28950578252,
- 98769.78629555774,
- 98770.78359572044,
- 98068.38917637721,
- 98746.9346100943,
- 98699.80357689559,
- 98826.116121155,
- 98799.14209262622,
- 98725.28103778043,
- 98787.95269882937,
- 98129.7525732422,
- 98403.21551613676,
- 98151.80634944019,
- 97189.75008136328,
- 97327.96341535875,
- 97292.96960541717,
- 97276.7637530654,
- 96579.02120154037,
- 96667.30159934703,
- 96523.83444580324,
- 96601.08098118886,
- 96236.40087597791,
- 96907.29475216444,
- 96790.16254788224,
- 96760.16114880143,
- 96793.1547839298,
- 96842.40378280648,
- 96818.91536222614,
- 98461.43619215692,
- 98969.8900532446,
- 98952.25912959375,
- 98580.65213422495,
- 97141.36470938755,
- 98095.02656369311,
- 97617.95626612005,
- 97665.4420007734,
- 97481.78136987441,
- 97127.93819900935,
- 97221.84975595506,
- 97516.68785216649,
- 97585.7108158271,
- 97957.26827753473,
- 97968.93352559829,
- 97264.96842755843,
- 98299.92048938914,
- 99305.95497196195,
- 93512.0665150006,
- 93468.51530246586,
- 91029.6718792886,
- 93426.45832585903,
- 91037.1098997176,
- 98242.79590727984,
- 97462.89725909327,
- 97456.2056098314,
- 98433.14621035084,
- 98477.429727746,
- 98538.82780358141,
- 98375.01487679547,
- 98416.20709657238,
- 98325.44484999502,
- 98375.97684548568,
- 98682.66165069364,
- 98525.56000149965,
- 98534.19792713977,
- 98503.47469608205,
- 98474.2557014724,
- 98279.5985168257,
- 97624.27677318298,
- 97802.02757327574,
- 97742.78747464505,
- 97756.40467231974,
- 97757.15441742557,
- 97763.11112414948,
- 97632.86870117598,
- 97548.50753261574,
- 97550.14905081774,
- 97702.15796126818,
- 97668.33495977538,
- 97591.06376324758,
- 97578.69930046126,
- 97852.61077277781,
- 97880.34737144559,
- 97861.94027265099,
- 97853.43014004357,
- 97905.97332804937,
- 97511.90340028529,
- 97451.31724560489,
- 99037.5226338215,
- 100727.75513265263,
- 100750.1025781271,
- 100687.04963334247,
- 100602.82413484645,
- 100640.07222561758,
- 100255.5576926834,
- 99740.00115531619,
- 100701.21851963115,
- 100775.90866047998,
- 100801.37971775861,
- 100846.7632036239,
- 100839.18720467621,
- 100901.78826113316,
- 97229.1829487141,
- 97839.59876865869,
- 97910.66450289705,
- 98039.3188920253,
- 97934.20656019785,
- 97891.53141790035,
- 98026.30394341591,
- 98087.87224633229,
- 97950.34128723628,
- 98003.43954283377,
- 97956.48157305346,
- 98065.65357283973,
- 98003.37029682676,
- 98058.47170369046,
- 98005.49620436512,
- 99320.77326235635,
- 98557.66658610443,
- 98082.7411356652,
- 98154.79026285015,
- 98056.63600860414,
- 98887.5178660438,
- 98858.33028971287,
- 98814.80490784877,
- 98801.02414722591,
- 98561.74883562999,
- 98550.27263705501,
- 98534.96076552787,
- 98475.56960112561,
- 98680.67319796431,
- 98762.74855690046,
- 99810.55530468805,
- 98806.04554028373,
- 98848.42698144261,
- 98857.8438649981,
- 98852.46109769984,
- 98865.24822179487,
- 98812.89064703413,
- 98862.90020767787,
- 98912.2032568487,
- 98848.37039474472,
- 98927.63991134016,
- 98871.604415136,
- 98590.82216815953,
- 98580.43638270833,
- 98576.02995710363,
- 99183.69321269826,
- 99184.45845454505,
- 99203.41993384891,
- 99138.15878651995,
- 99087.05635140055,
- 99077.1384967604,
- 99232.24004132024,
- 99125.68851110415,
- 99251.01558609436,
- 99179.65212891849,
- 99256.69258645491,
- 99310.08167305635,
- 99356.00094070661,
- 99276.65181129325,
- 99384.78207485296,
- 99335.96076485507,
- 99296.20265730387,
- 99213.97061960657,
- 98964.38050539838,
- 98965.82200587254,
- 99044.8950183139,
- 99100.15481263316,
- 99075.39447626255,
- 99003.3483507825,
- 98925.76540962922,
- 99020.01817893048,
- 97407.28894967055,
- 96098.29296669562,
- 95976.09403074846,
- 96042.6556096919,
- 98812.20854097081,
- 98743.59086221435,
- 98698.0390158326,
- 98395.64092112977,
- 99111.66394753019,
- 99274.85653841426,
- 98707.12897134296,
- 98672.40559262648,
- 98740.33441798067,
- 97915.07564498202,
- 97854.3706268973,
- 97779.51858962477,
- 98580.6830473668,
- 98706.46663611768,
- 98640.08887323189,
- 98958.9528701298,
- 98946.07821880339,
- 98660.70375119649,
- 98701.649867651,
- 98748.18261153143,
- 98769.34553580024,
- 98811.9140649854,
- 98763.92551654496,
- 98943.77117264194,
- 98920.62609439224,
- 98965.91211265045,
- 99052.24477125063,
- 99044.50329098791,
- 99032.0128001208,
- 99017.68748657264,
- 98920.27979214246,
- 98997.79724083436,
- 98048.50795422566,
- 98136.90529710805,
- 98100.62435260214,
- 98171.72774331711,
- 98063.40476674002,
- 97962.8529627224,
- 97088.36103582702,
- 97132.34495519406,
- 97104.45756857881,
- 96664.92235510008,
- 96821.97556877533,
- 96897.6332798164,
- 96990.68878793032,
- 97838.15687650762,
- 97840.98673438343,
- 97860.03824334558,
- 98113.9638494234,
- 97039.67013502431,
- 96492.5609236822,
- 96615.15999672425,
- 96528.33063667924,
- 96614.04896619167,
- 96775.60254599106,
- 96785.05589602233,
- 96813.96810061809,
- 97041.31823044339,
- 96562.25821519687,
- 96460.68693276949,
- 96650.20758230845,
- 96694.63413088757,
- 97825.46025079563,
- 97882.40005223262,
- 96674.56656020731,
- 96567.52080584335,
- 96473.61402662427,
- 96563.17797498858,
- 96487.03219794935,
- 96606.19908924971,
- 96745.48639039516,
- 96395.4047179211,
- 97145.64717006857,
- 97826.8631013778,
- 96850.70696827324,
- 96914.37666890645,
- 96353.01468538467,
- 96501.80370280289,
- 96513.42435181382,
- 96529.07020886255,
- 97870.69758646561,
- 97980.44692218993,
- 96494.53387742698,
- 96671.430711433,
- 96761.68518269938,
- 96719.41280916671,
- 96550.26834448069,
- 97918.02611502612,
- 98643.83720148244,
- 97960.90157310556,
- 98153.28211258577,
- 98122.79057084915,
- 98078.02055378513,
- 97988.49066071308,
- 98115.16651510971,
- 98104.82634322677,
- 98205.6244883252,
- 98133.92087625408,
- 98052.39180433995,
- 98186.92871996413,
- 98222.49612544493,
- 98264.92512138016,
- 98221.83205647097,
- 98066.64128360373,
- 98155.19067500987,
- 98034.10447834089,
- 98200.28996843542,
- 98087.54079911893,
- 97990.12664870804,
- 98120.04312787396,
- 98163.7446629629,
- 97974.17413359083,
- 98088.95408705338,
- 98156.57677246204,
- 98080.18500654254,
- 97487.01075638118,
- 96789.66261350742,
- 96730.73981449436,
- 96669.89538879196,
- 97293.59562630084,
- 97174.16332095799,
- 96017.05902387391,
- 95880.10041446517,
- 96042.6924533272,
- 95941.86961688883,
- 95961.65877852618,
- 97833.49395811494,
- 97769.6545141948,
- 97689.04199438865,
- 97742.3298744743,
- 97690.73748476274,
- 97719.11017016157,
- 97819.75167904481,
- 97794.19742949636,
- 97784.48324520058,
- 97674.59282702129,
- 97879.59554121646,
- 97385.40579970718,
- 97307.86343808395,
- 97387.94072486232,
- 99393.56887338916,
- 99259.21726110313,
- 99247.96158297804,
- 100188.32724919924,
- 100135.68904443846,
- 100098.24757711026,
- 100206.52451144153,
- 100008.5242363836,
- 100023.04349004387,
- 99915.71669982743,
- 99634.45747805986,
- 99276.13363968547,
- 99418.78774585869,
- 99721.65602004208,
- 99821.52193102303,
- 99782.84167263377,
- 100072.59807186079,
- 100035.70914567317,
- 100138.27133994643,
- 100117.7864666539,
- 100090.44891664409,
- 100148.86556864316,
- 99244.03843365682,
- 99283.19337789025,
- 99220.99777236252,
- 99230.95664968503,
- 99169.12469268014,
- 99164.44549248519,
- 100358.34371105966,
- 100290.3042284984,
- 100340.75858714842,
- 101792.84162073708,
- 101761.83228399587,
- 101728.54900723274,
- 101863.51123341605,
- 101791.94014384845,
- 101799.15202304373,
- 101713.12879362177,
- 101785.2180011013,
- 101729.0076770661,
- 101836.91173085483,
- 101818.8515335007,
- 100033.99626853142,
- 100056.8272847258,
- 100210.20674841575,
- 99041.75843858132,
- 98943.79559667868,
- 99197.38567357122,
- 99167.98965627975,
- 99277.40202349014,
- 99119.8302296543,
- 99163.87627855373,
- 99243.18112052011,
- 100381.5590275909,
- 100259.89095200166,
- 100662.41576920166,
- 100337.12642639093,
- 100250.649651169,
- 100190.16929326992,
- 100223.74470405089,
- 100340.9819908014,
- 100273.38677134522,
- 100527.79988951613,
- 100245.97642650244,
- 100375.27221342435,
- 100149.25456405795,
- 100360.87356998086,
- 100194.58359036756,
- 100264.94556360798,
- 100306.31112448443,
- 100355.36974381156,
- 100212.88630816322,
- 100290.39422073738,
- 100350.59535010663,
- 100165.59976549802,
- 100315.7960592362,
- 100567.69227692556,
- 100536.39347136863,
- 100383.79630149792,
- 100199.17691599797,
- 100338.69278423514,
- 100271.61413440437,
- 100247.40805045809,
- 100338.62291364912,
- 100211.53726164077,
- 100322.38298891425,
- 100100.20675579492,
- 100315.47955652213,
- 100216.33192664117,
- 100305.27486562256,
- 96639.67658830492,
- 96484.06922913101,
- 96407.77425144732,
- 96477.97537890695,
- 96615.45058048039,
- 96637.18040938227,
- 96445.97001463277,
- 96442.19223447616,
- 96513.66255512048,
- 96476.07063939855,
- 96494.88439651101,
- 96530.70788196326,
- 96552.93796653328,
- 96499.0101680733,
- 97430.88450662757,
- 97388.70330978224,
- 97514.10936096587,
- 96153.0643515696,
- 95992.76643803087,
- 98037.94363845246,
- 97758.7792343351,
- 97924.22096734567,
- 97869.90224058629,
- 97598.62515358592,
- 97513.94954233654,
- 97646.31748849346,
- 97641.97081789764,
- 97666.59449828726,
- 97602.85068296298,
- 97598.68612452112,
- 97507.23992229323,
- 97525.14675514927,
- 97666.02806304352,
- 97650.998850365,
- 97694.2160645586,
- 97526.99989056711,
- 97615.33596390781,
- 97568.00795796615,
- 97487.47775279515,
- 97609.02859822716,
- 97572.83663061078,
- 99592.54688001878,
- 99517.07966370584,
- 99448.41927271156,
- 99589.72130527606,
- 99486.45689499842,
- 99633.35691037332,
- 98792.27822179062,
- 99298.84335251687,
- 99373.75997603334,
- 99966.96381501803,
- 99846.93713129792,
- 88005.39501412887,
- 88221.67985851956,
- 88072.43363114585,
- 88237.96933675258,
- 88133.87820323496,
- 87861.16765307833,
- 88044.20014226538,
- 88015.28821551744,
- 87995.2188458752,
- 87896.16014075337,
- 88048.98798497369,
- 87911.3761076322,
- 88036.32356842181,
- 88065.09753717842,
- 88214.29095123295,
- 87975.3434675614,
- 87949.43781862337,
- 88083.67915939626,
- 88158.44431618885,
- 87948.66838341518,
- 87939.92779797339,
- 88143.70730471626,
- 87928.63944883185,
- 87987.0677224219,
- 88052.04997633191,
- 88073.48466074695,
- 88174.19889504618,
- 88032.3701422123,
- 88091.77158766096,
- 88010.18942416027,
- 88115.8447964154,
- 87883.47843097824,
- 88004.3574220565,
- 87867.93517461464,
- 87061.20940616545,
- 88117.88520562027,
- 87891.6635003915,
- 88163.4850022418,
- 88041.55582208642,
- 87995.77155911438,
- 88256.28979169391,
- 87931.70512781639,
- 88089.06754806396,
- 87920.82827675848,
- 88062.01682071644,
- 87950.93430502362,
- 88039.48618979446,
- 87917.14077060764,
- 87875.51543171445,
- 87920.69502777123,
- 88037.67214329758,
- 88053.62636213166,
- 87994.84521056418,
- 88204.37990451731,
- 88198.16168147081,
- 87899.36719419197,
- 87868.04422265603,
- 87756.60468171052,
- 87977.89446006849,
- 88018.06263107814,
- 88175.87859466553,
- 87908.9091473079,
- 88066.92995974339,
- 87947.19715900774,
- 88139.6579294049,
- 87959.87525816729,
- 87893.19707276371,
- 88152.20646040382,
- 88083.14494732753,
- 88230.25871974292,
- 87950.88841137299,
- 88089.31618178032,
- 88005.21804614809,
- 87945.58722002029,
- 88191.87494491128,
- 87898.24283727448,
- 88093.20221250107,
- 88014.37416969781,
- 88132.49377530353,
- 88274.88910994626,
- 88020.02004119602,
- 87977.21260381762,
- 88071.22783884605,
- 87979.30536450844,
- 88132.99064196317,
- 88075.30778368968,
- 87515.23612648762,
- 88112.44158066339,
- 87997.31100720952,
- 88205.36796568194,
- 88244.89577094054,
- 88118.88901387733,
- 88170.02127686414,
- 88122.48677544181,
- 87836.350717135,
- 88188.31541444028,
- 88181.35353825515,
- 88029.75270585327,
- 88055.3210429841,
- 87486.18502347278,
- 88169.49888342613,
- 87912.05340361188,
- 88114.60799674282,
- 88030.32446441583,
- 87988.09892554887,
- 87936.39332619171,
- 88114.46908342814,
- 88116.38592969814,
- 87831.96710060169,
- 87973.10937146156,
- 87997.70702987113,
- 88086.23100935988,
- 87992.90727468063,
- 87971.16697325518,
- 87985.41310963874,
- 88090.43562993355,
- 88143.62371120854,
- 88035.58336234222,
- 88075.61019283785,
- 94943.83700356272,
- 95818.53001808233,
- 96045.66684685949,
- 95969.1256184073,
- 96013.81260119048,
- 96042.74026637044,
- 95968.80222215265,
- 95912.47979836861,
- 95925.66592354236,
- 95936.78246887373,
- 95889.97314488533,
- 95978.73409728472,
- 95867.87958002836,
- 96017.35327396306,
- 96248.76337904352,
- 96135.22740085266,
- 95288.7583767709,
- 95940.42592069102,
- 96031.3795211209,
- 94069.03735918325,
- 94009.56158523318,
- 94130.04763539109,
- 95731.12015912194,
- 95616.0407219737,
- 95659.6018735391,
- 95678.62819334009,
- 95781.78664237607,
- 95577.34405122125,
- 95655.75208549788,
- 95710.76531338083,
- 95799.27305372994,
- 95306.53646843051,
- 95339.84556579817,
- 100452.52175447682,
- 100508.74664244991,
- 99417.06942940914,
- 99490.48077246742,
- 101263.5858464501,
- 101294.76632948937,
- 101162.83347248544,
- 101321.38820055868,
- 101189.73696638984,
- 101276.19421116,
- 101215.22740740502,
- 101132.68859257287,
- 101231.96182220083,
- 101113.69616196322,
- 101202.08234411357,
- 101323.03686175268,
- 101302.71586201976,
- 101208.71003175106,
- 101165.55850365866,
- 101249.63872563199,
- 101225.01239942892,
- 101148.34414742448,
- 99696.20174737588,
- 99613.57523791396,
- 99631.65790217281,
- 99680.51394878581,
- 99522.55089557452,
- 99666.63776945528,
- 99713.66464718881,
- 99549.22834567956,
- 99527.88570730339,
- 97989.10101650721,
- 97708.58185165055,
- 98480.26982394698,
- 98370.33853712298,
- 98255.74444021816,
- 98408.56530732088,
- 98320.44328914571,
- 100450.95558034207,
- 100480.82034926659,
- 100480.49092912518,
- 100580.56121342597,
- 100380.95102466598,
- 100498.70305671386,
- 100425.06940729756,
- 100647.00721589438,
- 100589.5479287922,
- 100585.4129716198,
- 100545.35934978107,
- 99316.61246387733,
- 99215.94068343456,
- 100901.46988766377,
- 100967.34161974456,
- 101607.11660507972,
- 101488.02083832397,
- 101538.43241360724,
- 101571.4209728939,
- 101614.60294862564,
- 101543.98807230422,
- 100140.2110009592,
- 99781.65659298775,
- 99630.32221252672,
- 99736.34284897555,
- 99939.68816469236,
- 99738.68447975624,
- 100756.1343307411,
- 100435.24947529356,
- 100910.8664332588,
- 100677.72714984877,
- 100735.90159757144,
- 100826.9420164402,
- 100347.59604666795,
- 100724.62664190622,
- 100800.28375220715,
- 99958.28802683057,
- 100223.51578710719,
- 100030.03728774759,
- 100255.25301069795,
- 100097.64817745179,
- 100070.27980833458,
- 99496.54217956355,
- 99834.26311033826,
- 99649.46419121683,
- 99704.24505410295,
- 98099.14976704735,
- 97992.47106040179,
- 99172.12620844663,
- 99263.51330746185,
- 99164.85920947728,
- 99302.85767182164,
- 99237.92705301281,
- 99353.20063443409,
- 99422.72710447569,
- 99530.40062035782,
- 99623.09686400622,
- 102262.73637918029,
- 101096.52251097043,
- 100900.72710750607,
- 100854.58788568957,
- 100930.54410580952,
- 100881.30772525753,
- 101046.55638829275,
- 100950.10071476863,
- 100905.34579135245,
- 101004.70055184087,
- 100970.51780212278,
- 99071.91798559703,
- 100230.94866376575,
- 100247.6955386029,
- 100336.54641164783,
- 100286.23206476576,
- 100288.19672372109,
- 99946.65854951633,
- 98382.05092138954,
- 98149.46450257779,
- 98195.77272004819,
- 98469.92455216771,
- 99851.71491845028,
- 100095.6614984881,
- 99692.3706968398,
- 100082.91108254869,
- 99804.15557625018,
- 99448.71921839722,
- 99060.25043722533,
- 99023.27650875496,
- 99297.5702546631,
- 99294.36932291552,
- 99179.30995275112,
- 100045.4718399428,
- 99991.84217198574,
- 100144.94289097113,
- 100186.88672513781,
- 99999.259001288,
- 100029.53100660541,
- 99983.89846345481,
- 100070.04335012313,
- 99963.84228945826,
- 100154.95560200007,
- 100126.49383112307,
- 100184.79366257432,
- 100095.9453059413,
- 99972.532450601,
- 99935.32617481564,
- 100054.72761578535,
- 100167.54861806809,
- 100268.01014641963,
- 100065.78360368013,
- 99954.27857977797,
- 100300.23650300906,
- 100047.57660412931,
- 99960.71023235824,
- 99469.40839036046,
- 99742.61436390011,
- 99787.61466225835,
- 99752.65287057367,
- 99667.34686788224,
- 99662.1015345583,
- 99902.68854543792,
- 99569.89208691959,
- 99820.02624163267,
- 99638.83452551358,
- 99711.04801908563,
- 99637.2394192473,
- 99670.90654530568,
- 99871.95762795635,
- 99867.06009800416,
- 99773.13365021958,
- 99788.04993321348,
- 100886.59644421024,
- 100617.57692160354,
- 97354.40959148448,
- 97308.04795724564,
- 99946.82760551533,
- 99861.30129865861,
- 99854.73519886057,
- 99876.79834798473,
- 99825.5809352925,
- 99696.4776935133,
- 99449.32982858743,
- 100146.45911618347,
- 100194.34609094857,
- 100236.08045057741,
- 100318.10888305007,
- 100414.29908033357,
- 100954.21212780282,
- 100854.71599889648,
- 100715.77423406432,
- 100938.47273980454,
- 100740.51816279993,
- 100647.85842417844,
- 100675.59804321895,
- 100680.18671105271,
- 100609.66249449608,
- 102544.79556060483,
- 102217.36666847287,
- 102521.74551958093,
- 101588.4570754577,
- 101596.86944416925,
- 101518.34662372227,
- 101870.12225865177,
- 101800.1352857561,
- 101817.25828775382,
- 101888.27034944776,
- 100627.40352162097,
- 100568.88671127104,
- 100529.03073101211,
- 101462.26776524783,
- 101562.10256227688,
- 99808.65192178015,
- 99595.46430131905,
- 99627.98538427509,
- 99554.67141647628,
- 99753.56979486135,
- 99620.77161459692,
- 100288.64924019997,
- 100073.37253120718,
- 100257.14036743405,
- 98443.42888803613,
- 98504.51157473968,
- 98381.06197054817,
- 100277.45944226006,
- 102041.9705971981,
- 102065.42302869826,
- 96140.80721502517,
- 96732.12162014724,
- 96807.24936764163,
- 98966.24498506205,
- 99285.4906673645,
- 96696.72791352752,
- 102774.85126684737,
- 102763.62240036845,
- 102753.86799097287,
- 102900.43476422675,
- 102939.9486939862,
- 102869.11973290454,
- 102835.06492486139,
- 102797.26240935021,
- 102983.62389345889,
- 102888.1607695238,
- 102858.79048659823,
- 102803.82818927991,
- 102610.83531896502,
- 102890.71599205933,
- 102924.12080650972,
- 102738.0755445841,
- 102859.05034614111,
- 102829.27652840661,
- 102718.75129913565,
- 102904.49581769775,
- 102836.15547996153,
- 102865.36924499608,
- 102930.443259606,
- 102806.54367917038,
- 102659.10548567928,
- 102970.78003743586,
- 102763.33394570912,
- 102977.66845606956,
- 102860.55045390091,
- 102980.65396752457,
- 102843.42070993401,
- 102828.80242806238,
- 102785.4793679961,
- 102950.45484180044,
- 102881.80029360467,
- 102698.37186316603,
- 103114.51441301465,
- 102907.02355996634,
- 102915.12131220687,
- 102757.81028208174,
- 102903.34874311111,
- 102698.37513516098,
- 102803.12747255337,
- 102698.7329379008,
- 102785.12283960356,
- 103114.84536767862,
- 103015.27081336587,
- 102767.34552296864,
- 102676.11743571368,
- 102768.67006444198,
- 102732.01298329032,
- 102964.4387673357,
- 102978.49762423344,
- 102709.19849968472,
- 102871.27974551258,
- 102802.73046718207,
- 102833.28125282656,
- 102912.49881841196,
- 102824.49834513121,
- 102850.44795050252,
- 102910.71632423713,
- 100168.92190700649,
- 100060.87608646908,
- 100195.98005392331,
- 100232.07739882938,
- 100140.5345373613,
- 100231.8212248547,
- 100120.00974518096,
- 99706.26075690931,
- 99648.48429705722,
- 98999.90695568817,
- 99298.58296128808,
- 99345.00160357062,
- 98979.39440657692,
- 98865.98020761501,
- 98836.74859736628,
- 98848.63298920334,
- 98970.52960408649,
- 99411.64293529403,
- 99438.0742810684,
- 98215.40985722737,
- 99972.74540205879,
- 99931.27630633158,
- 99804.55441106777,
- 99656.82244812195,
- 97650.23041136506,
- 97618.76347699384,
- 97524.30567878918,
- 97579.76275824622,
- 97515.47048470171,
- 95421.28692426691,
- 95460.4484609827,
- 95525.97848344142,
- 99961.60534852691,
- 99989.35584080167,
- 99903.53901231757,
- 99773.8565122577,
- 99636.19206865072,
- 99784.77259622097,
- 99779.47732732524,
- 99727.4746257999
- ],
- "y": [
- -188630.5751925975,
- -188333.01761814565,
- -188120.26418891654,
- -188484.3860102188,
- -188495.23201231525,
- -188320.30928268767,
- -188483.56766699257,
- -187939.12845477546,
- -187818.23537279075,
- -187946.7603080632,
- -188197.8301536245,
- -188683.2303206299,
- -188503.10517806208,
- -188860.7645077761,
- -188943.16984077886,
- -189195.75127467563,
- -188593.0213982362,
- -188664.20873805106,
- -188389.7264047301,
- -188531.62632111614,
- -188870.3516127079,
- -188193.26327558464,
- -187318.35447427825,
- -189806.69206404962,
- -188090.2894991313,
- -188100.01616886404,
- -188174.55996141888,
- -188463.2031115645,
- -188363.74532847013,
- -187605.6195439504,
- -188732.3518539843,
- -184365.92318507173,
- -188187.27869729063,
- -188342.5253574899,
- -187588.75004952576,
- -189081.41342393393,
- -188060.79254294612,
- -188845.78996045736,
- -188800.35117287276,
- -188205.98013851763,
- -188992.01175242575,
- -188221.79324811854,
- -188559.27230275373,
- -188136.72692104083,
- -187550.377833089,
- -188302.59803287973,
- -187581.63192013613,
- -187717.56726598475,
- -188480.64988687172,
- -188160.1723451082,
- -188798.2366179604,
- -188090.79273053954,
- -187779.636684694,
- -188782.71424431694,
- -187419.76550716007,
- -188621.19074517605,
- -187478.37592567242,
- -187971.61344319995,
- -187778.30145997382,
- -187625.15506672708,
- -186611.5059282818,
- -188003.31924616438,
- -188139.1086900214,
- -188172.13924848195,
- -187348.161691788,
- -188223.82733587097,
- -188730.91358476676,
- -187886.4063756375,
- -188597.83399210958,
- -188057.1917578529,
- -188218.10363143042,
- -188210.32065825685,
- -188129.95134955403,
- -188196.78625864437,
- -188493.78120901805,
- -188034.45615562776,
- -188161.6224994722,
- -188173.13991697345,
- -188249.23314484346,
- -188327.77303545873,
- -188516.92372013946,
- -189362.5154690305,
- -188432.70004235505,
- -188115.43097167817,
- -188400.87592482337,
- -188482.24258789566,
- -188788.26218175198,
- -189293.36061735288,
- -189227.5443430391,
- -188131.32433438205,
- -188109.2701383384,
- -188095.6269492578,
- -188368.0469139002,
- -188160.44816852582,
- -188198.66663852846,
- -188806.49024330094,
- -189163.69044909158,
- -185208.78508001886,
- -188125.1114877186,
- -188534.0512551924,
- -188177.51543305253,
- -188133.61205856866,
- -188047.21116345978,
- -188112.59605802642,
- -188194.2363318084,
- -188117.56111774204,
- -188690.07025037165,
- -188656.54845148328,
- -188969.58942661897,
- -188902.73804542943,
- -189437.10887228855,
- -188334.74393636227,
- -189186.06009143573,
- -188965.52824986106,
- -188960.47562263405,
- -188470.92069224652,
- -188476.5108117482,
- -188140.7416293255,
- -188146.4029455515,
- -188071.56456675925,
- -188736.90081401754,
- -188963.01391432688,
- -188834.10272951444,
- -189003.73857407318,
- -187984.04010321392,
- -188504.82116380852,
- -188905.6100788483,
- -188469.95350641874,
- -188517.84736046946,
- -188304.5177743197,
- -188106.72693407602,
- -188224.97547898805,
- -188062.4324835948,
- -188068.27323340887,
- -188836.55324492624,
- -189360.7972441431,
- -188481.55600240765,
- -188657.5093365336,
- -188989.48748180468,
- -186433.20819659182,
- -187618.5955755901,
- -188608.14004422975,
- -188103.543164194,
- -188244.1581110861,
- -189169.82807631438,
- -187562.6954412684,
- -188597.59464444526,
- -188094.93147997395,
- -188497.24015716757,
- -186541.63161815086,
- -189066.48960328338,
- -188746.57951263554,
- -188974.92632111761,
- -188911.8607199644,
- -188919.7029759385,
- -188102.7775258803,
- -188377.38150042814,
- -188087.26616295817,
- -188979.0014231341,
- -188075.4320336564,
- -188078.45265644975,
- -188154.95367904997,
- -189231.2675484738,
- -188515.5389473062,
- -188291.51205377275,
- -188851.13864683165,
- -187819.11455949367,
- -189285.9657250609,
- -188590.74143741513,
- -188592.58854995444,
- -188149.64184463344,
- -188010.31234546934,
- -188060.2135347956,
- -188203.78076926843,
- -188646.02879834978,
- -188429.88264305083,
- -188690.19852216193,
- -189267.9620036595,
- -188566.821774848,
- -188252.50921945827,
- -188121.3122975104,
- -188198.51232125357,
- -188108.59779207408,
- -188127.2678753391,
- -188081.2142320706,
- -188533.7358044206,
- -187599.9393852977,
- -188530.48273097305,
- -188098.39897942072,
- -188674.40626418887,
- -188083.60697520856,
- -188148.15947986252,
- -188022.57383190584,
- -188130.72283528827,
- -188048.00492761855,
- -188170.03703741357,
- -188251.20192635697,
- -188251.14135969765,
- -189072.52109977874,
- -189421.3965259288,
- -188487.8442985911,
- -188909.27353199496,
- -188597.87223608652,
- -187913.85881532487,
- -188652.52674561567,
- -188835.22735785999,
- -188894.10833929706,
- -189390.9934105709,
- -189304.65399711,
- -188772.49683122957,
- -187066.75929757126,
- -188572.61534136938,
- -188424.95815413288,
- -188285.79535372727,
- -186683.14575150548,
- -188557.7500853805,
- -189297.14028084598,
- -189158.03047828437,
- -188273.612045506,
- -187641.16543157026,
- -188244.37359244894,
- -188328.36296298457,
- -186973.0577066971,
- -188676.80334905128,
- -188706.18078984448,
- -188123.2736693611,
- -188699.20817216582,
- -188902.71776057317,
- -188705.66239081704,
- -188651.89978288996,
- -188031.4228654602,
- -188507.5871274623,
- -188473.15080842157,
- -187558.11023642388,
- -189344.7791897772,
- -188568.03135249048,
- -189006.15667271154,
- -188907.33441810505,
- -188872.08380899028,
- -189090.95733044946,
- -188466.8921120741,
- -188916.39990961482,
- -188890.76276156757,
- -189031.25167023003,
- -190718.20336678185,
- -188924.92880801545,
- -189611.13910755786,
- -189371.07705115504,
- -187862.73468047418,
- -188350.84668912945,
- -188435.49777233123,
- -189286.4104808909,
- -189329.86947105004,
- -188827.20853608186,
- -188656.4246604865,
- -188224.81397464138,
- -188371.826375027,
- -188530.07168880716,
- -188684.380536833,
- -188809.10200272722,
- -189064.02055466248,
- -188910.5188593822,
- -187504.5939470865,
- -188238.2747120987,
- -189055.06434900622,
- -188985.5661371472,
- -188817.42461554098,
- -188328.4992507085,
- -188032.35686812358,
- -188989.35923942667,
- -188537.1492944953,
- -188332.10285588854,
- -188224.61386277262,
- -188398.43069892912,
- -188690.45660123866,
- -188764.5244681029,
- -188476.21098523034,
- -188906.10027535562,
- -188598.92292480564,
- -188338.53308343157,
- -188035.09619434597,
- -187471.21704082517,
- -187485.8021358164,
- -187835.19770223383,
- -187808.73897039745,
- -188471.24794147993,
- -188922.89599843553,
- -189190.69568859632,
- -188648.39727075843,
- -188995.8386599755,
- -188818.68200287974,
- -189419.4844744169,
- -188681.37081393888,
- -190034.5154898649,
- -189093.07196799477,
- -188332.3887565364,
- -189148.08464521947,
- -189778.0564884073,
- -188895.1305372902,
- -189361.39928674913,
- -189514.26395840745,
- -188424.82223649055,
- -188154.87099078548,
- -188823.15900221813,
- -188236.33672313037,
- -188290.4882788216,
- -188591.75199645569,
- -188345.75062919507,
- -189486.94419473826,
- -189045.68105489522,
- -188680.97177115767,
- -187854.13914095613,
- -187620.89247314315,
- -187749.7848825597,
- -187628.5971893858,
- -186283.60700347682,
- -186870.78214397354,
- -189075.78000835242,
- -189556.635346552,
- -190524.42466711518,
- -189972.3782485477,
- -190110.09263707226,
- -189723.06164490216,
- -190104.18934124312,
- -191447.36757318178,
- -189487.1728230268,
- -188337.61728350184,
- -188634.22396120222,
- -188577.10958302955,
- -188609.33112603877,
- -187678.114505735,
- -187393.45287008572,
- -187444.98398375107,
- -187212.75750088846,
- -187430.50547179487,
- -187206.375494998,
- -187142.3027271855,
- -189125.41464985392,
- -185759.04101010459,
- -184987.91450924633,
- -186636.99979215744,
- -187026.07843949736,
- -186362.3442443084,
- -184641.7612714999,
- -186631.89998789044,
- -185684.77267411654,
- -185952.0045384303,
- -184904.78554636845,
- -184466.17568020654,
- -187733.16720291993,
- -186005.44685669165,
- -185619.78884854354,
- -185702.8268145955,
- -186641.42486820777,
- -186086.34378531418,
- -186293.45287911844,
- -186774.72272855093,
- -186590.54840473336,
- -185178.65674855074,
- -185915.41451703524,
- -185024.2525256191,
- -187101.25689315388,
- -186246.8336915767,
- -185785.58597568647,
- -186910.03493563386,
- -184853.0590167661,
- -186226.79838547923,
- -186901.84865346336,
- -186721.96101630855,
- -184537.33337450697,
- -185045.17257071825,
- -185015.8206856978,
- -186804.32931589548,
- -184581.5176270497,
- -185481.01398954104,
- -186732.67988941015,
- -184625.82608792314,
- -186816.72669112886,
- -184583.06480907716,
- -185882.0659107163,
- -185038.89476309827,
- -185605.49639890593,
- -186050.83831655356,
- -185545.91429343188,
- -185541.4531936617,
- -186168.82581792577,
- -186748.98809619094,
- -186212.79235782122,
- -185138.3043013017,
- -185886.66303952422,
- -185943.81351701595,
- -187223.2607479505,
- -186155.98693221714,
- -186745.5325164879,
- -185873.2153007946,
- -184956.02375735843,
- -184916.01122916443,
- -187298.0167096983,
- -186400.0437673064,
- -186436.31884006507,
- -186909.73673779095,
- -185995.1502748551,
- -184615.0971850325,
- -187360.11530786066,
- -185731.06588292573,
- -185203.40536363234,
- -186738.0081330498,
- -184452.34215766398,
- -186427.8924649136,
- -185642.1433378504,
- -186666.6053800214,
- -185815.18416524283,
- -186758.5541269017,
- -187178.7309685011,
- -185344.84167674318,
- -186299.91453282413,
- -184913.47542316676,
- -186120.90133707918,
- -186355.57333992186,
- -186189.16120161928,
- -184489.52291589003,
- -186020.49632337195,
- -185978.46454360176,
- -186423.1890183184,
- -186357.39136631842,
- -186197.9689961989,
- -185022.86408063665,
- -187501.80648056217,
- -184448.27042316197,
- -185456.1454266718,
- -186332.64294302047,
- -184782.3347015735,
- -186335.73632380622,
- -186471.46349538234,
- -186139.010172475,
- -186316.0422884422,
- -185427.96582922543,
- -185447.0419864294,
- -184490.70631354378,
- -184939.12159409848,
- -185499.81083646082,
- -185420.27932112452,
- -186178.47202606747,
- -185579.11398649425,
- -162543.04429998007,
- -185402.97734600544,
- -184648.39875714693,
- -185873.0454380232,
- -185520.70192438262,
- -185045.13302486815,
- -184686.93743150224,
- -184749.34739859024,
- -184975.0257556787,
- -186494.74258418888,
- -186002.60660400984,
- -185421.69274864852,
- -184586.8813999643,
- -185681.38668976224,
- -186353.07679074036,
- -185564.40303426507,
- -186002.1139085686,
- -185305.14466217102,
- -185778.17229121647,
- -186985.55167581502,
- -186263.96942212473,
- -185857.1772490468,
- -185285.2393191878,
- -187056.932365551,
- -184676.4950788661,
- -184930.69103318956,
- -185654.1953572347,
- -184539.2197937198,
- -185426.67525594652,
- -185125.95912239008,
- -186228.52516030474,
- -185197.58467855424,
- -184440.56367975674,
- -185759.1915587864,
- -185972.1252497052,
- -186192.2420612465,
- -185572.22568055146,
- -184521.98992331282,
- -184716.55236438496,
- -187315.42788165333,
- -186517.17238975927,
- -185020.17742510125,
- -186047.50278945875,
- -186067.006560711,
- -185935.95217366592,
- -187267.3268205127,
- -186480.07163780744,
- -185251.66599737256,
- -186588.42377164616,
- -185212.56249281162,
- -185768.74376793872,
- -184566.5211927391,
- -184641.3699119499,
- -184521.26817218866,
- -187072.0455521363,
- -187795.37604648358,
- -189725.6419856943,
- -187757.4125399983,
- -187976.81833544138,
- -187648.12160933763,
- -188696.13322752403,
- -188070.50402783387,
- -189274.10474049454,
- -189265.0331807753,
- -189023.51159242663,
- -189150.0722038921,
- -188785.27223021127,
- -189202.4647666379,
- -188283.2622476873,
- -188647.58850257998,
- -187775.4606762898,
- -189047.84983436737,
- -188214.95290711892,
- -187829.60079496383,
- -188860.81131323622,
- -187594.8777657927,
- -188109.5947916895,
- -188135.7951117508,
- -188126.67429510137,
- -188068.89540782082,
- -188138.17806449422,
- -188113.8147030654,
- -188119.49823623613,
- -188123.9780570342,
- -188121.51859750494,
- -188082.81454332572,
- -188023.85098966694,
- -188038.4334288893,
- -188097.6602407291,
- -188124.65543545736,
- -188079.8329504583,
- -188129.3743830729,
- -187109.55145493208,
- -186870.85476427,
- -188380.61838572615,
- -187896.4403547719,
- -186832.87175251383,
- -188228.79178433472,
- -188560.0382335581,
- -189116.42239682464,
- -187271.2309208508,
- -188311.63055655325,
- -187739.67693354897,
- -187063.92444055318,
- -187917.59257197715,
- -187718.91875175654,
- -187835.8854861633,
- -186803.90033266746,
- -186803.59234443662,
- -187788.5747429511,
- -187893.88302668915,
- -187975.0076209473,
- -188925.1717325238,
- -188021.2228785292,
- -187932.34492398132,
- -188182.1801783731,
- -187688.50752132258,
- -188117.50710319917,
- -187793.53772320974,
- -188261.16935105162,
- -187834.80609488173,
- -188539.05431916684,
- -187997.42121583116,
- -187612.6161505803,
- -187887.72467534128,
- -187994.01573117293,
- -186612.36184898173,
- -187574.2721654691,
- -188185.43487919736,
- -187645.64505814915,
- -187791.77040384425,
- -187981.65234561847,
- -188328.62880040111,
- -186953.31740903624,
- -188465.46750448947,
- -187228.86858406416,
- -187937.28779075225,
- -187728.251997722,
- -187741.77573005384,
- -187158.59874792627,
- -187975.58965748092,
- -187927.83620065072,
- -186563.98191544128,
- -187904.33904992894,
- -186517.6751626997,
- -188788.84774377767,
- -187457.0743764612,
- -187427.58017047317,
- -186780.2984968334,
- -187516.61720349116,
- -188036.28044668204,
- -187566.1094978599,
- -187881.7928789883,
- -187307.95076337553,
- -187950.03622824297,
- -187244.0460795401,
- -187306.8260455551,
- -186941.09836380862,
- -187281.55271362027,
- -184627.2559353374,
- -187265.23927959087,
- -187879.37136154508,
- -187821.3765527352,
- -188384.35926426292,
- -187883.60479267285,
- -187489.15417484118,
- -186717.18778761072,
- -186287.99929102132,
- -187805.10710923118,
- -187648.9973224916,
- -186146.62535800086,
- -187493.66055654176,
- -187627.45216360627,
- -187246.44784323307,
- -186544.6994452667,
- -188210.8583614681,
- -187744.5423702615,
- -188036.86055892534,
- -179133.13735543872,
- -187953.2923392146,
- -187258.52951028265,
- -186551.5718918603,
- -186296.09077217794,
- -185926.73089974615,
- -185395.93395849012,
- -185879.15090298475,
- -186605.81963314634,
- -186705.75237789055,
- -186345.44096085647,
- -186875.28527664224,
- -187527.73357511935,
- -187567.52052119686,
- -187774.1615382006,
- -187413.64255787656,
- -186699.2701887279,
- -185739.58717722545,
- -187270.5390270905,
- -185576.15263923115,
- -186350.72668639437,
- -185754.93903104283,
- -187305.67084880813,
- -187046.43325413764,
- -184234.61115541728,
- -186972.57418070477,
- -183824.5305223081,
- -188073.66592800152,
- -187728.06688195525,
- -188874.14340416354,
- -188459.36009707808,
- -190374.15560172813,
- -189063.428793386,
- -188003.3208638465,
- -187986.19049612174,
- -189149.42833616625,
- -188614.21318785282,
- -188591.14091919875,
- -187899.4374158756,
- -187973.27776270141,
- -188306.96972666128,
- -188623.6166852075,
- -188689.9069400571,
- -188243.41945504982,
- -187366.96961790608,
- -188433.4935194492,
- -188344.57017201104,
- -188096.6720864056,
- -190042.38359170523,
- -187776.081074906,
- -188131.29016873462,
- -188443.1461449862,
- -186553.62133220496,
- -188002.51793235893,
- -187969.50621106548,
- -187790.99540247666,
- -187346.30214189566,
- -188420.23770977926,
- -189713.61547225437,
- -189579.9504364677,
- -189111.4078263055,
- -187949.63698018505,
- -188522.7223023232,
- -187937.26783141587,
- -188130.4537181713,
- -187934.23814137233,
- -188172.74538859082,
- -188739.05313596342,
- -188776.96293003074,
- -187409.36259250416,
- -188147.54710943915,
- -188912.98663177204,
- -187872.6633840466,
- -187983.6774823736,
- -191242.41426244462,
- -186152.69967393065,
- -189386.63393714104,
- -187511.94987432053,
- -188311.50521847996,
- -187429.57924484243,
- -188069.86804999335,
- -187683.73338858323,
- -188441.93108825223,
- -188229.31889099232,
- -187736.63135462272,
- -187992.83317437719,
- -188118.8223297085,
- -187582.59747798453,
- -187476.39314391202,
- -187234.4612318493,
- -188221.49233807725,
- -188309.63351146277,
- -187764.81958165232,
- -188226.41949047343,
- -188297.22695862473,
- -186800.93628583517,
- -188080.7633837035,
- -187297.44363830626,
- -187963.97664086308,
- -187969.50842343477,
- -188021.3687563727,
- -187972.53307352384,
- -188078.52295971283,
- -188978.81025809547,
- -188226.32844361593,
- -187679.47433074287,
- -188763.44516650846,
- -187724.4325574573,
- -187610.1377688772,
- -187354.91901122752,
- -187993.51411086737,
- -187185.02879405092,
- -188028.29034553113,
- -188188.52643226265,
- -187803.06549553943,
- -188463.31349680066,
- -187834.08698576453,
- -187975.40467572561,
- -187987.12541376214,
- -187517.9128709205,
- -188097.1885506176,
- -188083.10255481664,
- -188183.12236589222,
- -188158.79572465117,
- -189953.43285506195,
- -187785.39966082262,
- -188776.05672438274,
- -187556.7890851402,
- -187788.15822833957,
- -187203.12559746174,
- -188208.85344747134,
- -188387.13883004195,
- -187775.03036984504,
- -188034.61082553468,
- -188046.35626590863,
- -188101.37584040826,
- -188094.00217598723,
- -188407.58725157817,
- -188482.5310615353,
- -190270.05275175368,
- -188517.9738436573,
- -188362.35931727977,
- -188526.0290014248,
- -188562.5678949605,
- -188777.68796030607,
- -188198.9950582187,
- -188204.97639419296,
- -188894.20780772806,
- -188877.75447919974,
- -189462.90626881117,
- -188932.21737437064,
- -188795.16991496552,
- -188977.4576085,
- -190074.33054887285,
- -188697.3813039972,
- -188898.08155878072,
- -189113.8715419739,
- -188845.84495555653,
- -189204.34458726516,
- -189029.22851713432,
- -188216.02236323402,
- -190233.5032244461,
- -188846.81963719826,
- -186096.45797461583,
- -189624.14425346788,
- -188972.66635322545,
- -188756.88925757885,
- -188954.19885795217,
- -188231.47750730137,
- -188228.14569705023,
- -190039.66227026214,
- -188955.70075548417,
- -188817.15343371764,
- -188911.31765919903,
- -188817.64018552104,
- -188387.0195355698,
- -188217.19279192775,
- -188215.48726479657,
- -188940.66433230025,
- -189435.39611651178,
- -190181.63074577937,
- -188605.13434911743,
- -190160.9077330154,
- -189966.56620810815,
- -189999.31667014628,
- -188266.23380139962,
- -189466.79866331397,
- -188990.40385466997,
- -188104.07716877718,
- -188549.88759442163,
- -188275.44850877777,
- -188155.0331583998,
- -188220.5960329952,
- -188295.15735575298,
- -188327.76182227116,
- -189229.17376885633,
- -188397.25088022946,
- -188984.20542329797,
- -189302.6007381189,
- -189570.55632521573,
- -189768.79952321426,
- -187278.70253330644,
- -186223.42382426502,
- -185538.47106454833,
- -181316.88675453834,
- -188577.68911072935,
- -189429.78822251226,
- -189243.0403538959,
- -189251.3089257868,
- -188563.19407494835,
- -188854.39170410443,
- -189260.15851219348,
- -189231.4279713372,
- -188786.31293626514,
- -189104.52316957942,
- -189182.68148483842,
- -189072.0465506361,
- -188705.65600489438,
- -189967.28432425318,
- -189454.98816233617,
- -189757.15706957557,
- -189951.737106575,
- -188991.42081728007,
- -189636.0078208734,
- -190209.4983373492,
- -190012.9068404736,
- -189864.05117757033,
- -190050.28712576124,
- -188866.95996207467,
- -189208.00816211943,
- -189099.37048930768,
- -188483.7955207067,
- -188865.2383597738,
- -188899.90215259913,
- -188841.91500915465,
- -188310.94209393,
- -189567.91347630875,
- -189475.84370340698,
- -189256.76102591655,
- -189118.55548115997,
- -189287.09541988553,
- -189836.02265256474,
- -188267.79946330914,
- -188734.64348648756,
- -188499.89103916325,
- -188424.26831552497,
- -188471.16226267573,
- -188555.01680973297,
- -189062.6660397884,
- -189368.04321790536,
- -189207.12335782725,
- -189901.5373675402,
- -187627.1081749794,
- -187857.75124697632,
- -187760.40303329699,
- -187858.44732430877,
- -187957.10022871735,
- -188486.6627500266,
- -188672.58677714274,
- -188275.58704858087,
- -187965.95478834442,
- -189024.27048204138,
- -188563.84477598095,
- -189010.6567271695,
- -189191.62724059867,
- -189723.8971601925,
- -190283.4150628221,
- -188285.74392279977,
- -190048.63972499638,
- -186790.41009242184,
- -187248.01430917686,
- -186364.1134175767,
- -184046.07233791953,
- -187468.17123172226,
- -187004.07979892765,
- -188726.61235021544,
- -188040.02763009068,
- -188376.78890401422,
- -189797.29543539853,
- -188727.56930522466,
- -189767.66077987218,
- -189402.54379102314,
- -189855.4536758818,
- -188921.83564302602,
- -188744.70646205018,
- -188570.19383203107,
- -187452.2953444194,
- -186432.95981047777,
- -184493.4638333277,
- -189681.03829755695,
- -189180.69142051495,
- -189494.99190465917,
- -189418.3150618224,
- -189406.1804548177,
- -188956.60901643464,
- -188286.47377093224,
- -187847.91597445504,
- -187772.9366644242,
- -189454.44287559506,
- -189336.90265698743,
- -189688.38226235847,
- -189642.32271672558,
- -189773.80511431769,
- -188623.37539469652,
- -188059.06910793387,
- -186490.92481183048,
- -188035.43847485105,
- -187899.97545537198,
- -188759.4892448286,
- -189867.76456386773,
- -189966.51788839934,
- -187864.57873495863,
- -188459.5042273985,
- -188339.61248515616,
- -188482.4680775093,
- -190059.0897295911,
- -188449.63396273268,
- -188564.80121031718,
- -188934.75013167982,
- -189407.17407776418,
- -189594.04877099616,
- -189928.77888545024,
- -190063.494640501,
- -190324.0838511919,
- -190002.50380021115,
- -189351.62227285848,
- -188667.17352392792,
- -189386.891690723,
- -188871.73421564943,
- -187862.98846391006,
- -187369.8494239768,
- -188047.51511369456,
- -188898.55180012845,
- -189023.57039513884,
- -189300.64988114213,
- -189304.23943329643,
- -189802.91324633866,
- -189198.96904724132,
- -190149.611876793,
- -189688.97127087243,
- -190162.42457619242,
- -189121.32206798793,
- -185673.72485317432,
- -187602.98284577316,
- -187118.0943589478,
- -187049.29511418982,
- -188760.63914555783,
- -188352.16461745944,
- -188788.10931841948,
- -188307.55943122407,
- -185447.3982690385,
- -185647.43874032347,
- -186600.68816277097,
- -190030.77698961753,
- -189844.44305599996,
- -189312.96716657415,
- -188863.83470003767,
- -190030.6059389626,
- -188831.9884617397,
- -188800.5645587159,
- -188270.16098356986,
- -188288.73056814942,
- -188325.90735821644,
- -187036.11661907207,
- -187430.4310402768,
- -187168.63791618857,
- -188085.78649439852,
- -188069.8757916443,
- -188377.16521032414,
- -181388.6636291559,
- -186958.0626639662,
- -187792.11829844635,
- -186964.88142731908,
- -186890.040734751,
- -187516.96845806637,
- -187371.3989655883,
- -187673.56257634406,
- -188468.66418560426,
- -187827.28797163125,
- -188015.37292595976,
- -186963.61210988168,
- -186909.75756834846,
- -188500.0586157652,
- -187625.4001681701,
- -186957.07730695538,
- -187126.5717021234,
- -187092.89589648045,
- -187547.0278070721,
- -186215.06335089865,
- -186961.92845610308,
- -187072.4040574778,
- -186908.50557712573,
- -187018.58994966594,
- -186937.57642460006,
- -187082.89602712472,
- -186995.12405826268,
- -187033.26399727527,
- -187917.0637720583,
- -187031.77413979647,
- -188265.26483815484,
- -186858.39035521806,
- -188079.2339962156,
- -187486.7108342232,
- -187583.99768382817,
- -187642.49697600745,
- -186233.90314590227,
- -187072.79060259266,
- -187621.1473503119,
- -187006.72435799113,
- -187790.78028682835,
- -187892.14861530808,
- -188892.18297269146,
- -188905.7409194041,
- -189138.7526208499,
- -189186.7934963984,
- -188827.6268164547,
- -188634.27361204935,
- -188976.67306946605,
- -188450.6558889738,
- -188410.6730522339,
- -188982.28023135234,
- -188901.95839418104,
- -188293.05528383492,
- -188304.60597921925,
- -189027.32662829437,
- -188703.02110051003,
- -189670.30367153513,
- -187994.90708299744,
- -188227.91479363065,
- -188959.37304124728,
- -188384.46387554856,
- -188423.99184216498,
- -188238.2147196666,
- -189253.3339606655,
- -189185.39353573837,
- -189354.40611590687,
- -189275.31015895875,
- -189331.45564091532,
- -188567.58941515462,
- -189030.19349696804,
- -189196.05341570152,
- -189004.60313990066,
- -189177.62541549082,
- -189238.99357410418,
- -188534.02363205954,
- -189103.72355039057,
- -188253.45353298465,
- -188413.92210597807,
- -188679.23184501874,
- -188187.00891794523,
- -189002.36578898947,
- -189314.34425935848,
- -189077.88806110198,
- -189112.1678726178,
- -188644.9068178371,
- -188854.15596558747,
- -189111.59184893724,
- -188992.06395225637,
- -189040.44316666905,
- -189146.26340260505,
- -188960.36420407722,
- -188977.27182089942,
- -190700.1111637919,
- -189013.04796735963,
- -189379.49234130658,
- -188621.49299553412,
- -189304.65394903507,
- -189125.53360787733,
- -189135.01597268603,
- -189115.81575099364,
- -189157.19198902682,
- -188738.48340001726,
- -188921.90699962387,
- -189360.31796682146,
- -189070.91343901315,
- -190093.18905705298,
- -189047.08598048709,
- -189299.65616548483,
- -189095.541722688,
- -188344.0930836277,
- -189171.19029766714,
- -189042.28405360697,
- -189119.99497062556,
- -188237.25251034857,
- -189195.42176761568,
- -189062.39520516488,
- -189376.82012229282,
- -188752.9247450727,
- -189405.91331066622,
- -189552.3086334869,
- -189502.59770853355,
- -189170.9678004025,
- -189264.0420911513,
- -189503.85032749924,
- -189204.769419827,
- -188590.4523846817,
- -188232.11752967277,
- -189226.9114919114,
- -189164.54245151358,
- -189027.77132385422,
- -189230.86162244383,
- -189066.13649801663,
- -188975.60125457792,
- -189062.5039727102,
- -189350.8806358681,
- -188269.15616936548,
- -188968.20482936336,
- -188815.02865766146,
- -189043.76513096062,
- -189256.66974275385,
- -189395.66537570828,
- -189168.39200200443,
- -189180.9410564133,
- -189294.69067324145,
- -189527.4692278551,
- -188818.7674323714,
- -189257.13683550936,
- -189100.23306250124,
- -189550.2287127826,
- -189290.7525839601,
- -189267.28726523466,
- -188239.65910895087,
- -187509.8701143695,
- -187500.4930551508,
- -189204.5507592727,
- -189093.8532022557,
- -189171.2221999843,
- -189071.60158787234,
- -189093.08976506037,
- -189407.5843037053,
- -189481.84477904785,
- -188480.6248001793,
- -187643.83786716606,
- -188410.19015950867,
- -189244.75125275418,
- -189322.13919379382,
- -189036.37157464225,
- -188851.6819268115,
- -189227.67375761928,
- -189075.98850339456,
- -188744.13909734573,
- -189286.49138647597,
- -189153.23345672205,
- -187858.47857020143,
- -189295.42475244775,
- -189309.40406356056,
- -189446.06561523385,
- -189270.95690073894,
- -189371.36833568558,
- -189045.81476778517,
- -189090.02633489924,
- -189167.51060793153,
- -188997.7891351952,
- -189166.2520355059,
- -189128.02287472552,
- -189377.71392390993,
- -189261.63282785052,
- -189189.44204252012,
- -188832.0659363745,
- -189372.78444553076,
- -189522.90111062877,
- -189215.01194453132,
- -189188.26284097042,
- -190170.23694941032,
- -189137.65822856384,
- -189532.13206147918,
- -189244.33702691298,
- -189342.90886317022,
- -189601.42301397282,
- -189001.4148694418,
- -189031.42372914587,
- -188346.60400362083,
- -189432.19725203505,
- -189383.60172976655,
- -188396.23465801778,
- -188159.4341766519,
- -188977.16363192897,
- -188924.8418972556,
- -189025.99171597915,
- -189271.29959663784,
- -188897.62049298765,
- -188978.69804431516,
- -188947.4139822555,
- -189026.34351702797,
- -188711.72538129365,
- -189104.3400123642,
- -189226.8573059561,
- -188884.40182536017,
- -189212.70822393885,
- -189665.23911238607,
- -188941.9994408223,
- -189434.8299251847,
- -188586.70146604645,
- -189292.63817566453,
- -188468.64488827685,
- -188955.28240884622,
- -188530.70142542297,
- -188888.66487646574,
- -189282.2219107152,
- -189684.28770806687,
- -188955.7460585158,
- -188128.57240646365,
- -187792.9688123335,
- -187942.22047264426,
- -188476.1018531056,
- -187953.14158568936,
- -188243.55188231324,
- -188224.56475781766,
- -187566.37581145845,
- -188187.95018705592,
- -188277.6495023525,
- -188172.14856838898,
- -187507.9968975285,
- -188728.81774535606,
- -188290.08218015765,
- -188107.46199151454,
- -188848.55062442037,
- -188717.3203540903,
- -187899.4158525461,
- -187856.58036489805,
- -188204.3724056574,
- -188169.14538504407,
- -187899.237151973,
- -188069.92329870115,
- -188430.55900018988,
- -187701.5703586604,
- -187761.59383487626,
- -187872.25388739264,
- -187753.2084302758,
- -187765.59237745742,
- -187809.27238686706,
- -188024.30685571092,
- -188424.35361027447,
- -187977.63799550864,
- -188680.41340104947,
- -188480.5260935519,
- -184929.26330034356,
- -191630.47589507297,
- -189739.38463051288,
- -189873.68737482626,
- -189708.2272477365,
- -187892.65214688177,
- -187863.91165705194,
- -189505.58704021748,
- -189880.0757312348,
- -189842.1324431489,
- -188854.43713783327,
- -189536.13208955494,
- -188299.83165938678,
- -189105.21478588888,
- -189296.96733505363,
- -189498.98953316532,
- -188836.9731938192,
- -189477.9687240938,
- -189686.82438527062,
- -189266.72814157297,
- -189703.45302802385,
- -189135.00336817247,
- -189278.65997138573,
- -189241.36313499292,
- -189561.96308897558,
- -189390.3446237331,
- -191279.9278832995,
- -193001.23653771952,
- -187859.86995225446,
- -189738.0525135467,
- -189517.96720841108,
- -190973.23484101656,
- -189777.8358685715,
- -188921.5431373296,
- -190144.75403043907,
- -188947.86956916028,
- -189742.155668336,
- -189692.5200326185,
- -190156.38084035812,
- -189713.56303116062,
- -187405.71770728158,
- -187389.66797592156,
- -188640.45100665794,
- -187622.41354491585,
- -188826.8178670996,
- -189837.0067281555,
- -189774.66595851514,
- -189615.88052612924,
- -189272.23379027276,
- -190029.28538193705,
- -189844.7798702007,
- -189790.5959091938,
- -189991.2311607774,
- -189682.05578414822,
- -189987.64885100897,
- -189360.52446627786,
- -188528.04369924997,
- -188875.90551008,
- -188016.10442522762,
- -188167.02460559944,
- -188123.19483452023,
- -189105.2816803546,
- -188987.74156072343,
- -189303.08944739285,
- -189317.7229192206,
- -189250.6861714318,
- -188349.47236547497,
- -189577.61389462257,
- -188477.95331527485,
- -189378.03325846698,
- -189231.051408616,
- -189290.40865383588,
- -186632.56137489137,
- -189396.51935593525,
- -189490.2551625836,
- -189589.28553677927,
- -189048.4956879801,
- -189131.92422966988,
- -188104.6983502157,
- -187704.763876957,
- -189015.4951605007,
- -188563.3727238801,
- -188868.86823729656,
- -188185.3569399699,
- -187448.3572804437,
- -188272.94824742872,
- -189247.54195982916,
- -189033.53333615928,
- -189071.23203874825,
- -188876.74592565937,
- -189238.02623730994,
- -189115.05770210535,
- -189231.03855465443,
- -189259.5246750294,
- -189305.01453652733,
- -189185.22678595383,
- -189778.15834495376,
- -189298.76112672515,
- -188757.12524904165,
- -188126.8200295349,
- -188760.00770833693,
- -188933.22539579918,
- -188674.7471497121,
- -188336.20643323814,
- -188180.73220770183,
- -188519.90581438286,
- -187932.28950243027,
- -188952.85593883562,
- -189097.48187960163,
- -188308.2995444295,
- -188124.98331170535,
- -188393.99052171747,
- -188347.58050575748,
- -188876.59928470026,
- -189345.9124851909,
- -188180.15644195993,
- -189045.54815632163,
- -188937.80405805522,
- -188767.47226676266,
- -187601.13526565803,
- -187830.46815133246,
- -186931.52009524958,
- -187722.01964145992,
- -188625.28745242656,
- -188602.07939852623,
- -188156.60345261396,
- -189331.9915999827,
- -188984.34951568441,
- -189094.7454633695,
- -189479.30333773256,
- -188834.4604537936,
- -187923.30486023927,
- -188635.053643839,
- -188696.782377594,
- -189006.25883621728,
- -189387.78435538372,
- -189801.49095297614,
- -189489.71907673345,
- -190382.19427593888,
- -190294.21864983928,
- -190368.25817851265,
- -189554.68072761627,
- -189522.66677498195,
- -189623.56254580448,
- -188251.55613681383,
- -189916.311805951,
- -188292.3869375497,
- -188271.77595069932,
- -189041.9225197264,
- -189199.17908190106,
- -188285.76996994668,
- -189537.7817031003,
- -189352.73404518928,
- -189471.04120599278,
- -189679.53787245677,
- -189408.21023611428,
- -188999.3408802612,
- -189645.5000292996,
- -189431.51059923717,
- -189615.4869081341,
- -189750.14044068835,
- -189801.76573120884,
- -189558.55733558614,
- -189504.89278882294,
- -189522.26639614848,
- -189536.3625339415,
- -189750.30848512865,
- -189442.69507087598,
- -190034.61897906184,
- -188801.60294815066,
- -189834.3163791867,
- -189257.69084732296,
- -188954.66274327494,
- -189640.1945004268,
- -190115.39552164622,
- -188306.66890581805,
- -188312.41502651962,
- -189659.46917226465,
- -189317.8406785239,
- -189302.72898643688,
- -189169.03781422778,
- -189731.85447908618,
- -189446.80721719595,
- -189275.603776678,
- -189693.2055888678,
- -189753.59627716336,
- -189523.92981689292,
- -189582.96181379963,
- -190328.62833538937,
- -189786.84207760714,
- -189751.89635663538,
- -188815.1944085261,
- -189224.11613190582,
- -189796.11674781732,
- -189932.6237612485,
- -189552.86218391886,
- -189830.91246389045,
- -189498.42730696275,
- -189646.04277723422,
- -189493.25493438917,
- -188868.21171990343,
- -189430.8749071048,
- -189418.3979333305,
- -188294.41257727327,
- -188804.39291762855,
- -189383.2134141077,
- -189408.30108345978,
- -189622.2992613024,
- -189336.00050606855,
- -189494.18089072162,
- -189346.3496150686,
- -189517.63745548116,
- -189562.47650992335,
- -189732.76841517194,
- -189536.8343224868,
- -189457.759153216,
- -189532.57203367492,
- -189507.00155087592,
- -189055.85878078622,
- -190253.9554374968,
- -189453.52787322368,
- -189199.04942802034,
- -189518.1963457777,
- -188415.7452673843,
- -188922.00741313785,
- -189565.95036095765,
- -189599.43976925078,
- -189447.3213721349,
- -189592.0253847243,
- -189704.67210231442,
- -189429.51527102874,
- -189549.2248295347,
- -189732.63425983736,
- -189156.18143433816,
- -189593.73394135686,
- -189255.76286114688,
- -188480.57065962657,
- -189396.15620173485,
- -189119.4502426223,
- -189099.2895300957,
- -189372.92718386388,
- -189530.79236599515,
- -189323.80480814414,
- -189638.78145869536,
- -189285.81117966407,
- -189920.08786925004,
- -189568.58179882303,
- -189490.09496069627,
- -189529.25512316148,
- -189325.65832119124,
- -188851.56730320977,
- -189408.06502858872,
- -189515.4108281232,
- -189356.0500464047,
- -188887.3973668111,
- -189225.07031019146,
- -188770.14684657753,
- -189474.47554588024,
- -189774.7476661943,
- -189656.34211244347,
- -189485.92172726392,
- -189381.9654969643,
- -189641.00924985827,
- -189677.82690449522,
- -189393.09189406977,
- -189725.99119278492,
- -187911.2710909405,
- -189560.62472315767,
- -188296.21414801962,
- -189686.30027570974,
- -189068.82122443494,
- -188278.08712796614,
- -189634.1669562323,
- -189557.7983769141,
- -189363.34000394432,
- -187689.0483805537,
- -189640.61261352964,
- -189583.51700064118,
- -189321.36395637903,
- -189328.29367726677,
- -188925.91974127013,
- -189730.37815090845,
- -188921.42443902968,
- -189511.2209653839,
- -189692.25637540634,
- -189322.72491470815,
- -189703.6139847984,
- -189590.25078595642,
- -188547.46824695042,
- -189621.15970611246,
- -189554.07262256934,
- -188935.33612228493,
- -189468.52121776558,
- -189726.9839142311,
- -189604.051822791,
- -189172.60980398947,
- -189516.1723814726,
- -189606.13981497308,
- -189818.32592583625,
- -189832.11385822124,
- -188799.02956322636,
- -189141.57950872142,
- -189643.42341201042,
- -189659.6677604097,
- -189525.22410298133,
- -189794.1589935236,
- -189493.67651902192,
- -189257.11848075397,
- -189190.8420644383,
- -189427.21294576538,
- -189688.7712261936,
- -189402.41667130496,
- -188695.04808894158,
- -189566.4665127886,
- -187695.57614406702,
- -188758.55641030593,
- -189744.39363754724,
- -188470.03479631987,
- -189424.87314537496,
- -189689.52817768222,
- -189447.98748217383,
- -189736.91566883595,
- -187803.1415402722,
- -188615.64024283146,
- -188516.52943830803,
- -189681.64351749184,
- -189583.2115684275,
- -188560.8123839254,
- -188808.58568177576,
- -189710.93255919393,
- -189406.02024615998,
- -189499.59645998385,
- -189483.72175297773,
- -189357.24837546385,
- -189474.95530109046,
- -189782.36536876537,
- -189258.09496306165,
- -189596.714753665,
- -188890.3664574394,
- -188764.91305512202,
- -189282.2159957167,
- -188923.44433292217,
- -188971.43179267063,
- -188253.40886764217,
- -189394.1110529634,
- -188553.8667206884,
- -188247.0553738609,
- -188500.12824679536,
- -188900.62386161956,
- -188881.29006931305,
- -189122.419390301,
- -189049.75416535302,
- -190290.13307072833,
- -188263.30442852018,
- -189655.53739052103,
- -189593.4766049247,
- -189658.27998301366,
- -189608.43740396632,
- -189240.7395503507,
- -189401.6122354161,
- -187798.89120280318,
- -189230.37339317877,
- -189545.16625437708,
- -189612.82599109344,
- -189466.51428955715,
- -189424.6200709084,
- -189622.41040500058,
- -189883.7142335665,
- -189350.129160721,
- -189397.67019498325,
- -189374.36013442566,
- -189312.9879746982,
- -189387.4220162738,
- -189456.31330892164,
- -188757.97295287042,
- -189874.7197630853,
- -188938.53921387976,
- -189174.94373042753,
- -188249.57030670525,
- -188260.60515116138,
- -188336.6986691293,
- -187680.87764689644,
- -187251.2510294042,
- -187262.66438443118,
- -189570.2833336003,
- -189763.14706397685,
- -189566.8655000776,
- -189779.29013892455,
- -189298.26902639432,
- -189143.0578281467,
- -189430.35956357492,
- -189539.6584614828,
- -189404.9591139528,
- -189661.95294361803,
- -188758.00763305573,
- -189602.10511057184,
- -189832.73284060266,
- -187986.2925046758,
- -189638.5204736213,
- -189307.41763655184,
- -187325.8474831565,
- -188953.73820219914,
- -189477.09111556568,
- -188608.7669540309,
- -189663.5967077643,
- -187902.1950427761,
- -189204.27918840424,
- -187963.18284034188,
- -189589.51983073587,
- -190125.8549583156,
- -189597.31022038838,
- -189659.42206924004,
- -187522.90987740675,
- -189314.3318274669,
- -189123.09886013696,
- -189438.33583540513,
- -189190.64141113937,
- -189506.4879067685,
- -189996.88173583825,
- -189506.9208114558,
- -188577.0164252054,
- -189355.94588633478,
- -189514.97306091062,
- -189411.36286505614,
- -188802.23079391493,
- -189518.63063531838,
- -189595.0859664761,
- -188849.11552920155,
- -188741.18667656466,
- -189712.08090202446,
- -190133.98681796715,
- -189423.36465952417,
- -190181.23310247317,
- -188309.38290130332,
- -189261.45093796574,
- -188229.01322122104,
- -188225.00588929723,
- -187746.04762354173,
- -189649.05343454154,
- -189292.69033396387,
- -190439.80952772064,
- -190167.4618217757,
- -189777.63112573957,
- -188400.0367418278,
- -189502.7870754483,
- -189631.87542889913,
- -189379.6564968773,
- -189825.04437502267,
- -189697.85110122422,
- -189730.2105260354,
- -188642.19864755738,
- -186804.33417873908,
- -189138.6052683931,
- -189186.61889509932,
- -189212.86844851545,
- -188462.65509945378,
- -188255.37224721114,
- -188039.00270855022,
- -188214.46720173355,
- -188543.17964185297,
- -188551.65872850412,
- -187924.76781139948,
- -188265.91476313816,
- -188620.13710179558,
- -188797.5960817814,
- -188675.01145983627,
- -189585.23416607562,
- -189073.2131275974,
- -187778.6034982877,
- -188715.31186791277,
- -188783.67793234484,
- -188686.17124409127,
- -188717.35827303602,
- -189175.1779532503,
- -188752.45189673398,
- -188617.7522841282,
- -187330.48424043634,
- -190049.08294096706,
- -190134.12788602014,
- -189436.51072175297,
- -188825.24595688403,
- -188748.41080724396,
- -188632.32322923772,
- -188755.87124533966,
- -188739.89476481508,
- -188763.09490078397,
- -187046.38487493325,
- -187967.45205088542,
- -188236.06352852797,
- -187916.56938459937,
- -188277.7110845498,
- -187856.57507774787,
- -186309.0004789828,
- -186448.0761262461,
- -187372.14693328072,
- -186713.31626898306,
- -188161.6300058421,
- -187294.3067848806,
- -187587.45047793945,
- -189873.55077472897,
- -187521.8824872184,
- -188348.79948910305,
- -189862.6413098155,
- -189857.14185344288,
- -189824.66753653612,
- -189879.5254089133,
- -190932.80865181403,
- -189214.1812788162,
- -192162.3269836861,
- -192524.44290793836,
- -192115.1138136991,
- -188972.92135698648,
- -188186.38974025362,
- -189043.94703463372,
- -188886.17592031375,
- -189232.21457982747,
- -187820.75210574528,
- -187459.03461725367,
- -188430.993490856,
- -187553.03431553903,
- -187734.42575994402,
- -187621.21937398304,
- -187659.66124892057,
- -187626.4788257705,
- -188263.86255790308,
- -187368.52340470123,
- -187348.7681817943,
- -187682.18281394336,
- -186584.2836090355,
- -188630.62199919912,
- -189687.1717524016,
- -189392.44618215397,
- -187036.08464524065,
- -185139.07792481993,
- -185139.72357748792,
- -185172.0562297005,
- -185223.1558109515,
- -185302.5690199798,
- -187760.736691232,
- -187476.2628433151,
- -187427.76982279553,
- -187674.51102416526,
- -188223.1502255291,
- -188223.8025959115,
- -188238.87170758605,
- -187003.89280649187,
- -186542.96075744857,
- -186761.60951942398,
- -187272.80604379578,
- -187924.91100981052,
- -184843.25042613945,
- -186903.6585095412,
- -187363.62555888496,
- -185290.586235629,
- -185165.9576632683,
- -187636.6401471091,
- -187838.56400906073,
- -187819.29574656484,
- -188059.9314632963,
- -188290.363652496,
- -187943.2258883462,
- -188099.9720945511,
- -187941.9237365848,
- -188412.73187816486,
- -188208.82409906888,
- -187463.4585977219,
- -186479.6446350026,
- -187298.47957976593,
- -186539.61527157956,
- -186056.69045446397,
- -185951.46023938467,
- -186802.7182162248,
- -185550.27627308652,
- -187045.1102206911,
- -187073.15041134102,
- -187254.26535223567,
- -187989.30944414838,
- -188000.4487104779,
- -187906.78280195483,
- -186681.1635380391,
- -186905.37079495806,
- -187920.62374587829,
- -187659.66132080328,
- -187484.91206357404,
- -186546.9811101811,
- -187389.5387646811,
- -186874.71930400067,
- -185839.00663893652,
- -185362.02426270678,
- -186743.67631044146,
- -186943.91875814958,
- -185611.65728113687,
- -189084.9074632962,
- -187484.60913141377,
- -186793.02846859442,
- -186643.42136934042,
- -187063.1911515589,
- -188748.28453514946,
- -188439.97049711825,
- -187368.1489177038,
- -185263.2297970409,
- -185482.56088321618,
- -185326.3459551552,
- -185673.3450969795,
- -185642.18789406322,
- -186143.89671308498,
- -186797.5306394901,
- -186312.18585102723,
- -185867.34727359438,
- -186375.3612237879,
- -187561.3991996525,
- -187194.3312948634,
- -185589.1946310685,
- -186662.39995437322,
- -186235.288447879,
- -186405.03105329376,
- -186892.55000415185,
- -187294.12286925653,
- -186270.0295100747,
- -186078.48063323216,
- -186075.9211697261,
- -185912.47186195152,
- -185961.2957648515,
- -186232.2255226064,
- -185912.22434019603,
- -185580.70430677492,
- -185946.11501890482,
- -187393.59499414876,
- -187309.87049034002,
- -187472.30498547002,
- -188817.03562402542,
- -187333.3919005783,
- -187868.89767386837,
- -186633.25689314547,
- -185460.96898446843,
- -185628.17632635156,
- -186311.45221873518,
- -187196.24604930566,
- -187276.60266658547,
- -186565.47062728266,
- -187852.313928534,
- -187557.78543535888,
- -187719.1913994157,
- -187972.83650257328,
- -187960.29676871523,
- -187911.10264278692,
- -188630.8453506235,
- -187496.3832271789,
- -188349.65680053786,
- -185809.88961724282,
- -186934.3360415499,
- -187629.56098631225,
- -187007.5772303797,
- -187291.49824795782,
- -186121.19306263936,
- -187012.46365318543,
- -186679.30936474973,
- -185419.46969980895,
- -185379.2656174194,
- -186901.45563588393,
- -187807.15683063408,
- -187994.28122602464,
- -187308.64998441696,
- -188350.75252464804,
- -186863.31396841115,
- -187720.11017674877,
- -187287.84841348106,
- -187014.84911061524,
- -187234.71318697152,
- -187204.27240844848,
- -187291.09671769937,
- -187094.25690049428,
- -187609.4187582251,
- -187718.59193484212,
- -186509.34289278075,
- -188147.50652534553,
- -186342.25549461835,
- -186442.0690847481,
- -186558.77337581848,
- -186655.24842534095,
- -185972.4842459763,
- -185153.37826635112,
- -185765.32519087984,
- -185186.70637920234,
- -185070.59019309614,
- -187673.30496193952,
- -187761.64483234545,
- -187256.5867709403,
- -187366.18291352072,
- -187524.54517428228,
- -187510.56934074408,
- -187529.40680193529,
- -187454.64105987392,
- -187519.31181360115,
- -187123.06288107514,
- -187477.63157623674,
- -187257.24688779732,
- -186882.32732606877,
- -185744.03743667188,
- -185647.84002902228,
- -186969.98767638186,
- -185902.72286645,
- -187303.182190925,
- -188126.80564361744,
- -187360.58931040493,
- -186921.38953855107,
- -186929.557108324,
- -187311.67435395776,
- -187395.2983959365,
- -187080.93819916193,
- -186222.8395883536,
- -187442.89148744586,
- -188140.00051928166,
- -188151.46145141035,
- -187564.53232755137,
- -188215.09477527425,
- -187376.35249447948,
- -188189.81482384,
- -188034.83047066652,
- -187747.06924668472,
- -188800.80256482895,
- -187102.12973368363,
- -187917.99657074743,
- -185057.76047148168,
- -186486.71688355424,
- -185130.529001914,
- -185147.71919034136,
- -187135.60577403157,
- -187646.46474410285,
- -185284.9406615433,
- -186286.42140426437,
- -186595.59491334032,
- -187638.170551301,
- -186478.24245183423,
- -187993.35866484616,
- -187229.13331112568,
- -187938.08243107222,
- -186825.88912431858,
- -186708.8994492446,
- -187164.0688469574,
- -187461.08290298193,
- -187221.3523749667,
- -186992.1811585919,
- -187142.28778417234,
- -187056.31471454934,
- -186746.17776224224,
- -187434.38846414318,
- -187826.61084050385,
- -187003.93902302586,
- -187742.596093895,
- -185540.26300420432,
- -185199.27035351453,
- -186980.8144633269,
- -186369.47424236263,
- -184908.1166309739,
- -184198.70078145587,
- -186439.9649841702,
- -185019.88314560454,
- -187639.15760068822,
- -186765.58714734673,
- -187686.9419411423,
- -187048.28032769196,
- -186794.89125618731,
- -186822.41511138683,
- -187563.39014736656,
- -187385.0923661435,
- -186888.21059285887,
- -185829.80948671233,
- -187041.9723647092,
- -185125.23152722794,
- -187095.6197581376,
- -185897.53117830772,
- -185769.0972955552,
- -186826.48542049516,
- -185756.5836062822,
- -186973.73232271746,
- -185101.1509899331,
- -186015.29034764567,
- -186628.54466062496,
- -185868.99053592625,
- -185892.3867642372,
- -185982.92772953527,
- -186563.35158898422,
- -186333.64344871804,
- -188137.57555694113,
- -186649.44372244837,
- -185398.36138060363,
- -186628.42409363462,
- -185328.69791728977,
- -185645.35316113118,
- -185190.4973312962,
- -184810.0609463012,
- -185673.16887228226,
- -184555.20493347468,
- -186603.54049738206,
- -185000.47819436324,
- -185769.4575393162,
- -185778.33475206984,
- -185864.6939073649,
- -185242.38515533158,
- -185902.13729941534,
- -184710.20690531647,
- -186336.77161351635,
- -186119.94401614703,
- -185893.69281000222,
- -187563.04088038372,
- -186983.54442722624,
- -187703.92647279546,
- -185743.6029551579,
- -185968.90039689335,
- -186108.22088459652,
- -186089.89882082163,
- -185308.25354167318,
- -186216.4074492947,
- -186691.95573974657,
- -186418.54900034756,
- -184684.6304903929,
- -186003.21438929535,
- -186109.56426562366,
- -186120.97182205616,
- -186324.3395864327,
- -186722.7974234636,
- -140718.26168474945,
- -162271.2627223581,
- -186085.13248614842,
- -186068.28536481576,
- -185427.49168366197,
- -184985.73631769797,
- -184766.12089212818,
- -185693.59243815514,
- -186460.20786475393,
- -186037.59716773787,
- -185450.5833065486,
- -185396.0966615638,
- -185276.4054007422,
- -184847.09039631113,
- -184823.61753243406,
- -184778.45025064657,
- -185109.39166642443,
- -185556.4843562863,
- -186719.88216859457,
- -186773.59087394056,
- -186505.48261010222,
- -187516.20202739417,
- -188001.86892294977,
- -186684.80121130878,
- -184705.8070100957,
- -184864.84138353547,
- -184566.07730183762,
- -186337.80196089507,
- -185906.65861356055,
- -186150.906960568,
- -186089.31929989046,
- -186474.6235265719,
- -186468.51753357225,
- -186122.9165758566,
- -186174.69969704037,
- -187820.43378501857,
- -186775.64544110073,
- -185619.5302422243,
- -185704.2175677414,
- -185937.20459336432,
- -185523.5880471388,
- -185073.60125989263,
- -185681.62401491503,
- -185755.25804511458,
- -185742.32278142963,
- -185812.36978806616,
- -186839.17366214117,
- -185460.24572993352,
- -185767.89203574616,
- -185411.53656573629,
- -186079.66390792772,
- -185233.48683497915,
- -184948.90466462815,
- -185247.7806087925,
- -186549.85209355422,
- -186917.39214776302,
- -186657.063249416,
- -186137.98831876533,
- -187630.12975349987,
- -187687.3081902085,
- -187525.68775441864,
- -187326.55715253745,
- -189245.3547860996,
- -184795.0131029055,
- -184934.10299478343,
- -184595.03593603414,
- -185557.18603881687,
- -184826.82895671725,
- -185703.95718490216,
- -185294.42224015918,
- -185575.41563245628,
- -185794.81985080332,
- -186172.60986329245,
- -185661.8516968439,
- -185638.24577050543,
- -185965.40347835567,
- -186004.1374210784,
- -185781.3584731582,
- -185664.76866772544,
- -185815.6127283012,
- -184723.17471127305,
- -186009.95200031195,
- -186195.38531040744,
- -185753.05619845918,
- -185703.19314166557,
- -186594.9114183287,
- -185580.15593113314,
- -185541.68129385356,
- -186549.16628896404,
- -185479.2357860194,
- -184578.21753488245,
- -184618.35740420443,
- -184441.46870504398,
- -184568.61994464282,
- -184661.85928366336,
- -184523.38966404533,
- -185717.16624584142,
- -185483.3295420938,
- -186417.94305405728,
- -186246.51492087843,
- -184845.9682979859,
- -184540.75647463603,
- -184666.37763325783,
- -185185.18619115572,
- -186199.38823877013,
- -184507.9099237428,
- -187003.43820973596,
- -186545.16136884323,
- -186951.0722009215,
- -186588.34259437467,
- -185936.8747686248,
- -186443.85498753583,
- -186141.55895141896,
- -186647.18276851127,
- -185889.87833542484,
- -184523.06400318502,
- -185073.57268297486,
- -185077.8905521608,
- -184685.0000328583,
- -187192.2975120381,
- -187002.80523749278,
- -187003.69318072736,
- -186907.3329708996,
- -187388.2617066739,
- -186950.9060841143,
- -187426.40772893745,
- -188015.87833895627,
- -187456.03533027926,
- -186718.14847004472,
- -187192.52823779927,
- -187430.84477593255,
- -188090.9736323963,
- -187057.4226896695,
- -187299.00679136443,
- -187898.09108993356,
- -187800.71024494842,
- -187578.7945424208,
- -187852.2157456399,
- -188445.4527261622,
- -187821.0464781729,
- -187538.8698057885,
- -187904.2446480533,
- -187707.84632557898,
- -187515.5351218408,
- -187294.31909113945,
- -188304.55925484645,
- -186927.86579355603,
- -187675.71540639747,
- -187132.18270199542,
- -186661.11383538053,
- -187238.4395913106,
- -186711.99171266862,
- -187274.8884360902,
- -187605.70324073057,
- -187459.62733920277,
- -187350.64454981094,
- -187987.25877007708,
- -187340.14536462337,
- -188133.99953381368,
- -187908.8502698971,
- -187974.06713440962,
- -188174.96094340537,
- -187654.68501915902,
- -187919.67545603745,
- -188033.5893052449,
- -187179.74870279036,
- -187958.6837154068,
- -187098.08472081405,
- -187817.05963383534,
- -187227.08326375764,
- -187840.08914857774,
- -187243.47707715337,
- -187358.05164964797,
- -187870.53601201336,
- -187247.9917175175,
- -187825.62181611278,
- -187383.08957187168,
- -186137.40837100832,
- -187368.8604475479,
- -186975.18042715648,
- -187218.33649070092,
- -187115.92005878876,
- -188577.08388106618,
- -185632.1535476023,
- -185003.46048722725,
- -186782.64173592345,
- -187389.2021586,
- -188364.15112362726,
- -188088.5917691664,
- -187984.06459012086,
- -188713.3588507996,
- -188624.00866552212,
- -188363.5387691212,
- -187634.18143546607,
- -186777.46669602653,
- -186820.56521939114,
- -186867.77653250156,
- -186618.4433734245,
- -187699.43272561228,
- -185956.04238149663,
- -185637.3755433982,
- -185160.1993215984,
- -187466.71062113094,
- -188115.28176793884,
- -187716.48506167036,
- -188144.50874112692,
- -187644.81497540837,
- -187452.13970792587,
- -187779.38447152777,
- -187503.58157137837,
- -187819.7552003765,
- -187727.83570354496,
- -187950.17000928946,
- -187918.25825739285,
- -188059.71110303834,
- -188071.01532488095,
- -188007.70634351147,
- -188127.41684105122,
- -188138.2687240919,
- -187963.5766486151,
- -188544.97753253547,
- -187850.79133717477,
- -188029.4838038799,
- -187927.5772533455,
- -188053.78221453892,
- -187985.91644521983,
- -188319.77932730978,
- -188058.86903379706,
- -187950.90711760413,
- -188156.86956179672,
- -188229.6880717756,
- -187953.60593885268,
- -188484.82353855815,
- -188095.58751833517,
- -187872.1074932044,
- -187955.31108521658,
- -188110.34340208996,
- -188020.26106810436,
- -188084.40086565504,
- -188071.6303022562,
- -188480.56911294378,
- -189671.69440695026,
- -189769.90898797516,
- -190284.9707253069,
- -188031.62889293503,
- -186743.00019037828,
- -188003.55552109788,
- -188363.56661918454,
- -187746.85639765018,
- -188346.87533387216,
- -187903.51839239706,
- -188043.9321563204,
- -188112.71027176845,
- -188550.03414205718,
- -189449.1232264199,
- -189768.43355961813,
- -188740.94405652286,
- -189567.65591494428,
- -188309.81027713025,
- -188392.79233416848,
- -189319.79863515618,
- -189378.6089809849,
- -189178.14899455837,
- -188386.42729721224,
- -189445.19176040665,
- -187087.48998708234,
- -188826.42779028194,
- -188553.87487120138,
- -187941.06540326262,
- -189771.93099297164,
- -188529.93400312582,
- -189358.06753687156,
- -188609.42242236514,
- -188787.1864357604,
- -188843.1765843312,
- -188754.528514879,
- -188094.74107414478,
- -188088.6155039975,
- -188060.38234672905,
- -188067.26794690712,
- -187621.21847052537,
- -188157.58246492682,
- -188516.84498886167,
- -187915.12744256484,
- -188443.7578148925,
- -188116.10771085072,
- -187264.47609357847,
- -188176.21031836848,
- -188170.57903762278,
- -188294.6644996429,
- -188036.63953174325,
- -188101.5543653428,
- -188248.6764013949,
- -188319.83415129757,
- -188097.50692052435,
- -188134.4762723594,
- -188272.49029985358,
- -188206.77019901376,
- -188508.96860365788,
- -188262.8988252888,
- -187569.11179548127,
- -186292.02017205243,
- -187472.02889830602,
- -187099.9147383517,
- -186900.76235636437,
- -188027.44881588852,
- -188432.67762655424,
- -188121.5471579039,
- -188432.80628645205,
- -187926.7782463939,
- -189762.7876085155,
- -189266.35842376057,
- -186732.12278519588,
- -188614.55061231283,
- -188647.95316923055,
- -187592.5524397363,
- -188932.9501046265,
- -188606.43169921683,
- -188170.21924476055,
- -188549.55255864532,
- -187962.6323277363,
- -187191.96052360526,
- -186920.5220397891,
- -186786.62616005604,
- -186385.05781979268,
- -188061.28832562154,
- -187390.1456922822,
- -188062.07603085358,
- -188037.6869183598,
- -188212.0229575658,
- -187930.06229443732,
- -188090.36866231312,
- -188036.00538210757,
- -188133.31477841723,
- -188173.70843883988,
- -187844.47640926004,
- -187872.30401330232,
- -187796.24083019167,
- -187732.98575521674,
- -187983.71489758827,
- -188083.6875223691,
- -187897.73274734168,
- -188059.30925306716,
- -189142.09064355088,
- -188583.01081795827,
- -187487.7635363833,
- -189713.64541984547,
- -189555.82412272718,
- -189852.59554859076,
- -189218.8087403817,
- -190167.76777641778,
- -189645.6152674434,
- -188532.9554546275,
- -189523.58352465904,
- -189343.14144035138,
- -188235.48072958956,
- -188180.02447286362,
- -188078.15933603563,
- -187990.69685232927,
- -188502.1043309098,
- -188206.01901300566,
- -188368.05619089317,
- -187629.39631769145,
- -187643.6924245978,
- -187638.51851489613,
- -187804.318709099,
- -188499.9137700682,
- -188417.0795439115,
- -188684.44500197342,
- -188616.47166411072,
- -189238.12878373484,
- -187745.42964825404,
- -187642.84655158204,
- -188287.79217814526,
- -188549.32629648288,
- -188250.077786393,
- -188161.7726015361,
- -187116.7595416007,
- -187821.31284373655,
- -187704.11156844525,
- -188196.3093746599,
- -188512.43706494468,
- -188433.12753228875,
- -188585.6524637753,
- -188822.05132961101,
- -186793.18125099468,
- -186923.0724992906,
- -186493.55860467892,
- -188693.43620027843,
- -188728.28837500748,
- -188981.19486242285,
- -188119.03297787975,
- -188810.88834411,
- -188363.9646618443,
- -188079.80446299998,
- -187735.6429592813,
- -186579.71684840842,
- -186734.72800259737,
- -187909.24698119418,
- -186382.6521426854,
- -185961.70758748136,
- -185946.98023837636,
- -188918.83080252886,
- -188826.34262922048,
- -187359.95937813746,
- -186689.23541046176,
- -187016.51462670026,
- -187205.7558130452,
- -186884.1274436682,
- -184253.32763020493,
- -186104.54831179176,
- -186046.42225495278,
- -186037.93743685633,
- -187612.97215401544,
- -188052.32690400552,
- -187910.51665730815,
- -187778.44937962503,
- -187882.8114859411,
- -186814.5954261676,
- -187233.7119709426,
- -188083.10323281528,
- -187171.2549893913,
- -187396.43681444638,
- -186753.4893091006,
- -186948.59777146435,
- -185706.60147189337,
- -187916.63879302575,
- -187328.97058315662,
- -187271.98186820754,
- -187263.8658911728,
- -186657.7218807427,
- -188362.04736375934,
- -183620.7015398458,
- -182951.77725421966,
- -184276.46905717737,
- -187376.8038531828,
- -186841.4017466797,
- -188158.73371046473,
- -186840.44087714233,
- -187625.99468709566,
- -186431.27519216418,
- -186083.5663938709,
- -185755.0131330002,
- -188153.623631181,
- -187630.0455403068,
- -188058.85243110455,
- -187399.22964852274,
- -187360.02800482418,
- -187257.6129123713,
- -186458.84249070814,
- -187153.83483170177,
- -186828.08396658566,
- -185480.2185366004,
- -188910.8076400013,
- -188288.38165867908,
- -188232.25279280051,
- -187620.16897113936,
- -188200.78220052563,
- -187962.65268429814,
- -187980.56614154446,
- -187505.77792284868,
- -187993.10500323906,
- -188057.23331354433,
- -186724.68573885344,
- -188580.3548192478,
- -188339.98244601142,
- -179018.64596522425,
- -170265.1251636849,
- -180731.45597962325,
- -178274.85226883533,
- -182297.66613175042,
- -178392.8789808,
- -188316.36771212667,
- -186656.42396019315,
- -187822.9358747536,
- -185715.21113775368,
- -185841.86069840766,
- -185606.18370621337,
- -185745.05148061714,
- -184765.73067528612,
- -185826.80959253322,
- -185805.15630328484,
- -185880.6665128765,
- -183430.55483779273,
- -185519.05918496437,
- -185720.05400911724,
- -185249.63622188903,
- -186055.02259865488,
- -185753.54811495807,
- -186091.85862784483,
- -186095.0815121383,
- -187638.04666398917,
- -187894.2559948564,
- -187763.07589632823,
- -188155.95470557085,
- -186739.78539095962,
- -183895.39726926797,
- -186077.7694141048,
- -187374.96766820594,
- -186600.31501724018,
- -187746.2614260409,
- -187575.0666518512,
- -185615.21357472814,
- -186386.17022089174,
- -184792.31269895128,
- -185297.15959925592,
- -185376.32218916347,
- -185934.3441057752,
- -184719.8977207577,
- -184203.63035864593,
- -186271.3613223738,
- -186024.0766929756,
- -185603.29490146937,
- -185753.06204734184,
- -186330.77970776754,
- -185276.91448933058,
- -185442.92204935086,
- -185153.81686134142,
- -184350.70827119582,
- -186324.1665531549,
- -185279.59438908967,
- -187693.57844067938,
- -185737.7766019711,
- -188111.50245778877,
- -181117.95796056575,
- -183944.29790406587,
- -184501.03914673053,
- -183887.24713882807,
- -184797.30489013533,
- -186552.6186504858,
- -186153.74538117443,
- -187278.66842823187,
- -185447.3850337414,
- -184333.46569932284,
- -183618.1198729144,
- -183609.28082124022,
- -183737.2037660667,
- -183570.56269982722,
- -183835.50636600342,
- -182851.40614782678,
- -181143.13730185444,
- -179062.95290375294,
- -183428.15224553086,
- -186400.055894199,
- -183195.36094988632,
- -183346.4258055763,
- -184867.16628209932,
- -185096.76662262852,
- -183295.14885534026,
- -184940.4396921724,
- -183472.72321986,
- -183555.20809289117,
- -183534.65675936858,
- -183713.93448839104,
- -185048.94065281202,
- -185379.95492149531,
- -183230.4928305493,
- -183537.31132500691,
- -185199.55957149496,
- -184996.35720146328,
- -183484.0643545454,
- -183661.7612554338,
- -183634.66754273794,
- -183672.80728055543,
- -183149.3117717627,
- -183600.97574435148,
- -185172.1130263042,
- -184941.27866808354,
- -184423.14627603424,
- -185137.9260259597,
- -183681.7632839864,
- -183495.9303439195,
- -183638.59508131372,
- -183662.0610230205,
- -183150.43565294353,
- -184959.75297709103,
- -184282.8223254371,
- -185050.17746824646,
- -183755.61016671095,
- -184855.78706899192,
- -184961.07542385507,
- -184981.84743495082,
- -183572.02000817447,
- -185847.7897940973,
- -185845.0713146115,
- -183567.13168373698,
- -184953.50462711358,
- -183585.55352579142,
- -183654.70526979078,
- -183740.6927330769,
- -183447.3736804631,
- -183638.5415461372,
- -183693.8098700191,
- -183506.43875629295,
- -183780.55988949482,
- -183465.92369980083,
- -183773.85682847694,
- -184713.8079921453,
- -184948.11561273,
- -183774.6590119035,
- -186310.16860214635,
- -186301.94278822944,
- -186163.99974887632,
- -184581.99228433802,
- -183482.81197479606,
- -183599.0223072427,
- -185523.21586449863,
- -184220.87408888803,
- -183336.9655582326,
- -183417.25501227446,
- -183574.8313324696,
- -183568.94114048648,
- -183561.13969966708,
- -177310.94056187524,
- -183771.57094333868,
- -183717.71809073846,
- -183314.90524811472,
- -183562.4655226862,
- -183700.7208882565,
- -187944.64808898602,
- -188144.68088985563,
- -188001.67609114133,
- -188590.2656368338,
- -188650.31700513716,
- -188108.82660797954,
- -187817.81523305984,
- -188174.91579203284,
- -188075.2636711698,
- -188835.70345149824,
- -190313.9575153106,
- -189099.75049063095,
- -189095.71887327847,
- -188914.75145452813,
- -190032.7652732372,
- -189938.6241563695,
- -189234.69869927395,
- -193457.45865985725,
- -190806.68303526114,
- -190793.21217436218,
- -189559.22608543184,
- -189665.89556126,
- -190343.14623174802,
- -189609.91441884363,
- -189229.82297158477,
- -189294.14527588105,
- -189496.41348015732,
- -189577.41239445566,
- -189744.80163897088,
- -189717.16898665222,
- -189771.05744312212,
- -189288.86354766923,
- -189791.60417761785,
- -189410.9334851875,
- -189116.88474309855,
- -189175.60345293803,
- -189586.963087114,
- -189188.60469326557,
- -188162.64085287615,
- -189548.11338182713,
- -189105.4292626352,
- -188962.863330971,
- -188860.5081701973,
- -189022.6764695094,
- -188934.8216489112,
- -189023.35265461885,
- -189224.35755215236,
- -188984.99469066437,
- -188693.81198834366,
- -188415.0669334945,
- -189349.87620961215,
- -188810.17734219952,
- -188944.92574917976,
- -188941.78166669174,
- -189742.2319582998,
- -189965.4221631259,
- -188669.11521163365,
- -188707.0214085327,
- -188855.1713664295,
- -188374.52176348033,
- -188046.43068903935,
- -188584.11655148058,
- -188921.07600126017,
- -188465.50594804902,
- -188569.56315973715,
- -188491.91213643632,
- -188423.88162786607,
- -189249.9264656677,
- -188453.23945302286,
- -188248.20895894684,
- -189083.05589016425,
- -188881.18116724692,
- -188752.26508317536,
- -190353.63610682223,
- -190199.30352442525,
- -190284.40860835864,
- -190512.74405530427,
- -190567.27156873213,
- -190521.19493654618,
- -189462.78633118852,
- -189495.0923323141,
- -189822.36786467835,
- -190528.4811711618,
- -190459.28418449903,
- -190549.83564310966,
- -190108.53169201384,
- -189701.9396398646,
- -190261.65948142193,
- -189812.65902349033,
- -192729.44916755898,
- -189998.17792497025,
- -189950.47607682366,
- -190422.55995988214,
- -189475.00799780615,
- -189539.44815716433,
- -190286.8293532656,
- -190510.04082654967,
- -188268.17237905652,
- -189701.77739699613,
- -190449.5219220677,
- -190479.13829348728,
- -190341.1859679305,
- -190214.86655576224,
- -190470.3866958542,
- -190475.05501335283,
- -188662.78581283378,
- -187110.75257883506,
- -188712.68604789645,
- -188167.60811296935,
- -188373.3539402033,
- -189054.24101899815,
- -188703.7958482956,
- -188700.76734194253,
- -189058.78733204654,
- -185748.77931932142,
- -189240.3648502884,
- -186570.1920070612,
- -188094.559535361,
- -188053.27718974993,
- -187904.5551047629,
- -188714.47848400145,
- -188749.09654230482,
- -189030.03347002508,
- -188623.43984532243,
- -188960.00928668556,
- -189443.79748188236,
- -189307.17775457742,
- -189613.4274864384,
- -189068.79735651254,
- -190220.04026000245,
- -189448.3993228098,
- -190206.09219721612,
- -190341.17256340745,
- -189867.23809450684,
- -189861.2742767397,
- -190227.47044230253,
- -190186.66872072185,
- -190191.87720016416,
- -190085.2874754612,
- -190232.32595297435,
- -190184.90518216093,
- -190623.42617965583,
- -190772.98680974997,
- -189014.93254325056,
- -190242.87904319484,
- -190489.49488075302,
- -189279.31349246096,
- -189028.54304697987,
- -189972.24185554104,
- -190133.02174061345,
- -190152.09510136288,
- -189802.5411068607,
- -189342.87589914515,
- -190335.55788041826,
- -190558.09229834663,
- -190348.92129023964,
- -189476.29985464577,
- -190078.20561894446,
- -189953.83628432205,
- -190120.31875176344,
- -190159.9606195649,
- -190036.82480240372,
- -190207.22081163406,
- -189987.67952550904,
- -190139.95443899676,
- -188283.400572689,
- -190271.7928245326,
- -189841.04040744825,
- -190391.556711525,
- -190159.25461435507,
- -190150.01777997345,
- -190050.76105059695,
- -190016.05202348984,
- -189455.41921722554,
- -189892.92226832564,
- -189938.28533320257,
- -189852.04204695,
- -189837.30541417195,
- -190073.05198879744,
- -189679.96140830184,
- -188518.20269654013,
- -189732.0774427512,
- -190060.64739146762,
- -189906.78269750674,
- -189977.09666591295,
- -189869.86826830884,
- -189967.10530352197,
- -189429.90513536637,
- -189921.33171368486,
- -188696.9637922992,
- -190157.63685626572,
- -189800.8794266506,
- -188719.43960811262,
- -189850.42517754433,
- -189820.92311716045,
- -190176.96097381625,
- -191159.10117676161,
- -189695.89297456868,
- -190189.18840931443,
- -189757.3945082938,
- -189995.43347064062,
- -189420.0485446386,
- -190029.46210824672,
- -190125.23168976346,
- -189369.10856700627,
- -190229.02945436694,
- -189495.16633347023,
- -189698.1761276448,
- -189295.9917839161,
- -190114.3473213471,
- -189727.13611083344,
- -189783.65631678217,
- -190368.81587279582,
- -189901.64680176062,
- -190316.76887405966,
- -189011.07707289694,
- -189795.9680877463,
- -189399.04279996626,
- -189460.44281266938,
- -188004.39552825585,
- -188391.67478690643,
- -188975.4648828089,
- -189027.84875586937,
- -188894.1604885968,
- -188258.98268007717,
- -189054.1850300602,
- -189173.28782093368,
- -188857.1383443916,
- -189144.62965207951,
- -188904.83506058183,
- -189366.89830297738,
- -187142.83156573743,
- -188470.49516960207,
- -188152.2857732802,
- -188538.57571479923,
- -188128.65301616665,
- -187927.6227750181,
- -188172.07424796064,
- -188187.0305086857,
- -188198.6549685184,
- -188215.8464237905,
- -188334.1310395238,
- -188242.85548355136,
- -188084.27012681955,
- -187513.15206802913,
- -188318.52134241172,
- -188494.86160857437,
- -188963.12094415203,
- -187905.26212099823,
- -188527.56986848032,
- -188265.23932553243,
- -189971.44220929153,
- -189133.4623975504,
- -188909.62841382276,
- -188807.4004644322,
- -189821.2312186076,
- -189278.69115591797,
- -189451.86192620388,
- -189265.49060988644,
- -190349.61880493132,
- -188273.88722517353,
- -189167.452960464,
- -188204.88501110626,
- -188051.1449940405,
- -187943.6909840044,
- -188101.04549079717,
- -187914.7483476306,
- -196054.36698636063,
- -190713.34611914298,
- -190997.92481924436,
- -190575.84463553302,
- -190467.1990688694,
- -190337.43065788288,
- -190699.1670419356,
- -190568.56008858563,
- -190832.90541128814,
- -190622.68743332793,
- -191792.811774679,
- -190689.0572112892,
- -190554.549981457,
- -190851.29303480033,
- -190792.2009981391,
- -185674.83275462306,
- -185395.53641607144,
- -185357.74506053058,
- -186040.44887473437,
- -186246.95216782618,
- -191372.67854098132,
- -188837.46529610577,
- -187692.98713641445,
- -188216.9357266321,
- -189035.7518822911,
- -188123.85049620818,
- -188174.51164152424,
- -188360.45872868263,
- -187920.04303128363,
- -187843.0478644709,
- -189252.1261607356,
- -188964.9295065745,
- -188317.85419149252,
- -188304.15480666218,
- -188212.56287800474,
- -188267.7210327238,
- -188211.52410601077,
- -188021.5412306319,
- -187777.82929663642,
- -188092.54169536094,
- -187796.6542157994,
- -187635.59468253268,
- -188033.40789813793,
- -188033.5726857013,
- -188191.56577066958,
- -188064.2405154846,
- -187977.02349488987,
- -188150.9408505529,
- -188399.31508879495,
- -188388.79423971399,
- -188200.68466137044,
- -188105.61118723254,
- -188197.26080880096,
- -187963.81710303735,
- -188081.06831320774,
- -188298.1446142359,
- -187780.86450984897,
- -187560.81205794794,
- -187479.24127132312,
- -188832.74568101848,
- -188271.2574905656,
- -188098.9031617914,
- -187978.67714400974,
- -189036.270514249,
- -188358.16456153046,
- -188322.21295005153,
- -188793.71858353209,
- -188463.8027867851,
- -188420.56292882576,
- -188527.54012336218,
- -188470.12706697625,
- -188237.94842374895,
- -188152.7059567754,
- -188376.19538272417,
- -188383.6321563408,
- -188362.64506112947,
- -188229.32312055898,
- -186682.89867719274,
- -185974.23479730866,
- -187407.3972483268,
- -188267.12675957533,
- -188060.29551175452,
- -188704.9483600274,
- -188229.5695177689,
- -188060.74338207667,
- -188009.8309550313,
- -188016.12153162181,
- -188409.31602683378,
- -188494.15449793098,
- -189216.5389337516,
- -189096.8745649052,
- -189395.759421411,
- -188314.0618063977,
- -188061.6228223648,
- -188377.0181492975,
- -188192.37099960947,
- -187758.18487713882,
- -187787.2879845593,
- -187572.14078191516,
- -187741.49763673818,
- -187964.39443212652,
- -189643.33025442102,
- -189290.1565425291,
- -188953.4021090192,
- -188803.40271635444,
- -188917.24105575786,
- -188940.71322085857,
- -188810.26221157002,
- -188831.5695149495,
- -188904.68010216823,
- -189135.25543499572,
- -189523.5420746396,
- -188139.9439583329,
- -189020.66022475137,
- -187947.31400414582,
- -187672.10042218023,
- -188053.95244611433,
- -187619.73016237066,
- -187911.62808368597,
- -187842.24023419546,
- -188387.07160945956,
- -189016.05459049373,
- -188302.98266526288,
- -188485.53190433834,
- -187252.96696407747,
- -188056.2157138019,
- -188150.01873431922,
- -188407.83621514795,
- -188351.8861077988,
- -189581.91550554175,
- -187744.01854014478,
- -187770.73014403923,
- -188103.182578579,
- -190304.48024467833,
- -190260.53457260315,
- -189251.39154025816,
- -187845.25254911988,
- -186176.69143772183,
- -190605.68260414473,
- -189416.02083849843,
- -188966.40362309,
- -189104.16659807847,
- -187252.2711895733,
- -188769.20753909196,
- -187699.42874421572,
- -187938.3617763031,
- -187668.34843839586,
- -187987.33055419096,
- -188319.47292758749,
- -187952.69828486128,
- -187276.75570563087,
- -187999.3435431426,
- -188054.9089034451,
- -188032.08428389157,
- -188416.8042440556,
- -188828.710009183,
- -188269.90433919505,
- -188242.81984720996,
- -188483.53884869776,
- -188770.96011071018,
- -189749.7370829404,
- -189155.7502287397,
- -190823.13696070746,
- -188948.92747001626,
- -188207.51154255582,
- -188151.91592219454,
- -188673.74140925996,
- -188660.2868009395,
- -188503.80500650342,
- -188559.77245373707,
- -188683.6155536947,
- -188559.65786072984,
- -188703.13655352002,
- -188678.94430401377,
- -188594.7332906974,
- -188597.86898873816,
- -188784.85977225626,
- -188110.75597498723,
- -188436.68427228258,
- -188666.33131441893,
- -188697.64814490697,
- -188522.7178033711,
- -188633.79406085494,
- -188704.29316380754,
- -188768.03900527532,
- -188625.4650503576,
- -188663.50134786894,
- -188576.25334950717,
- -188546.52938657982,
- -188680.8371036378,
- -188805.0846516448,
- -188653.17628520753,
- -188615.03355433713,
- -188576.64321319025,
- -188543.81262086015,
- -188746.69889344645,
- -188557.72678403923,
- -188622.1971911336,
- -188724.273258034,
- -188591.78355342403,
- -188719.5694194747,
- -188667.04054954412,
- -188808.08020128132,
- -188712.82334732497,
- -188975.56691510486,
- -188897.3534894631,
- -189012.75722465824,
- -188763.96608211353,
- -188826.95475208154,
- -189056.37183016262,
- -188733.08499490118,
- -188884.35784682204,
- -188923.87712194747,
- -188827.94721139214,
- -188942.5889835721,
- -189037.6870663065,
- -188623.1088186007,
- -188630.3623548485,
- -188568.1259673801,
- -188676.2507110918,
- -188589.14408862978,
- -188687.45937910295,
- -188769.61503198964,
- -188743.1925249904,
- -188702.17631953134,
- -188892.4296175113,
- -188871.28023278288,
- -188960.78352074078,
- -188925.94534825796,
- -189348.888529151,
- -189134.70326334922,
- -188803.00117738845,
- -188400.57408980286,
- -189494.27256320094,
- -189494.669002662,
- -188464.4232397707,
- -189444.3391194114,
- -188380.47926556104,
- -189438.34123469607,
- -189310.50792805894,
- -189488.46596010172,
- -189426.87979329927,
- -189586.8077498066,
- -189284.25409000844,
- -189405.0179354977,
- -189595.86153925897,
- -189491.39036375418,
- -189450.22093055537,
- -189366.62556285493,
- -189420.95028154456,
- -189509.033593287,
- -189381.96275634642,
- -189358.25597996314,
- -189494.6588455454,
- -189194.10726443038,
- -188271.78250397014,
- -188273.26012712086,
- -190521.2400356172,
- -190413.05752745614,
- -188862.76391626216,
- -185957.65696246203,
- -185990.46390386543,
- -186100.70125635862,
- -186136.39515892777,
- -186063.24649127686,
- -186158.66764463554,
- -186027.24243721232,
- -185969.5551713951,
- -190174.9869209733,
- -190118.41545021316,
- -189010.31738089523,
- -189096.92767447614,
- -189088.20919571148,
- -188643.99249474678,
- -188789.6318585568,
- -188728.21494301723,
- -188798.92556122373,
- -188681.77895953055,
- -189106.93268454904,
- -188985.67716669387,
- -189083.74907014464,
- -189034.3523839353,
- -189070.57417476588,
- -188944.9246191758,
- -188715.9153769697,
- -188792.5694624717,
- -188829.59277746026,
- -188787.0559469269,
- -188832.644629355,
- -188893.3636019686,
- -189024.7196291646,
- -188931.01739686544,
- -188992.60798038464,
- -188786.67166992926,
- -188768.90565244108,
- -188987.2406986813,
- -189387.98129267173,
- -190019.26883211517,
- -189683.14190918353,
- -190250.02249989784,
- -190184.28794756005,
- -190334.92104710214,
- -190227.51000102313,
- -190214.5507397167,
- -190336.85293178275,
- -190315.78757937052,
- -190229.20612766882,
- -190376.56365282947,
- -190252.19031956058,
- -190372.41721262314,
- -190175.9980453131,
- -190196.75542956498,
- -190330.29195060174,
- -190280.94568584106,
- -190372.3529320626,
- -190144.17286399158,
- -190358.37515399588,
- -190261.2951521144,
- -190258.94393558401,
- -190343.78487558663,
- -190093.6069125597,
- -190354.39138039862,
- -190419.4463532059,
- -190288.23089259406,
- -190287.70189460894,
- -190158.71584807578,
- -190258.29925374908,
- -190406.92526713447,
- -190261.7743970526,
- -190326.05142614365,
- -190246.38834175895,
- -190234.3407794005,
- -190432.26490839137,
- -190449.01554506307,
- -190445.47329877305,
- -190397.00213190346,
- -190436.49551094466,
- -190329.9090910193,
- -190176.58844461074,
- -190185.0129986195,
- -190319.62726571024,
- -190380.03821897434,
- -190380.20377129066,
- -190527.71254484492,
- -190402.6065213973,
- -190396.1507821608,
- -188508.64502421487,
- -188373.82014025023,
- -188525.07051299908,
- -190602.43193520122,
- -190477.02262630573,
- -190497.50243899124,
- -190507.3624830313,
- -190319.38168120995,
- -190086.87822393788,
- -190195.18659925292,
- -190070.15156129468,
- -190036.51444069666,
- -190088.81970409834,
- -190349.0282488827,
- -190200.62285130544,
- -190379.40568476502,
- -188377.52767298502,
- -187244.75892812965,
- -189007.3182361304,
- -189723.1780505297,
- -188481.01875659585,
- -188764.76002792385,
- -188863.03271685718,
- -188110.80230950654,
- -188181.00690298795,
- -189435.46040436602,
- -188159.78667876072,
- -187941.68434362026,
- -189015.5867901485,
- -189052.9801668156,
- -189396.0871583986,
- -189683.05697258093,
- -189409.2260516907,
- -189439.9733840662,
- -189401.0210279784,
- -189282.9730672559,
- -190115.60913893284,
- -190091.65704194506,
- -187280.45758218758,
- -187657.0868990739,
- -187294.66785273908,
- -187593.51605149044,
- -187826.2030626212,
- -187253.22086252828,
- -187838.97430345853,
- -186059.42223972696,
- -187069.10866048117,
- -186020.01516353776,
- -186167.96323356603,
- -185830.27369723277,
- -186139.2890092994,
- -186028.00291916684,
- -186072.80462440735,
- -186073.64805899287,
- -186256.82357831844,
- -186116.13245522184,
- -186208.95519545348,
- -185984.68461957408,
- -185859.09413820013,
- -186159.51025188196,
- -186212.2138273194,
- -186182.3557491331,
- -186125.66409048735,
- -186038.40488502107,
- -186259.63674592567,
- -185992.00901628408,
- -186136.2932766661,
- -186132.35139380593,
- -185546.13442974273,
- -182375.64393582716,
- -180981.68034472206,
- -181095.7750693586,
- -180956.24287219153,
- -181055.72889509232,
- -180971.66262991235,
- -181103.82390677792,
- -180856.3444427169,
- -181027.36139741706,
- -181014.3774171897,
- -181055.71069809987,
- -180483.06895315493,
- -181003.4669040212,
- -180860.4464633114,
- -180883.5634329601,
- -180645.55305481135,
- -181000.74178986548,
- -180859.9033050692,
- -181109.60549286046,
- -180857.2624911139,
- -180693.93543625306,
- -180950.90008469622,
- -180644.74425556677,
- -180816.44841554252,
- -180899.0659939188,
- -180934.99464384676,
- -180922.29353936965,
- -180836.35446086427,
- -180930.33913835726,
- -180961.20970378348,
- -180980.2431356487,
- -180856.61342199767,
- -180940.29061880347,
- -180760.91174181836,
- -180749.25128466066,
- -181057.43394242367,
- -180915.60853348157,
- -181022.60295219658,
- -180760.43292094907,
- -180930.63629617327,
- -180790.79912130247,
- -180790.12967571538,
- -180770.08680043777,
- -180895.6079582836,
- -182500.3541675079,
- -180919.3086735656,
- -181036.922135391,
- -180965.05714948726,
- -181005.31086173875,
- -180833.16313540837,
- -180865.4739387523,
- -180941.22674653959,
- -180796.98622865067,
- -180982.980792712,
- -180847.98245056724,
- -180731.69982497985,
- -180767.91322810465,
- -180877.2467033272,
- -180942.63023700894,
- -181074.2378637336,
- -180878.08804388047,
- -180982.42159108724,
- -180784.02805332895,
- -180793.9452787914,
- -180850.14722552363,
- -180806.83721622013,
- -180872.98920041963,
- -181147.33042965268,
- -180799.9448917058,
- -181118.08832692527,
- -181081.7854884219,
- -180933.6802728505,
- -180816.67641035892,
- -181086.78490923072,
- -181037.9608102749,
- -180961.97956935398,
- -181055.70113727966,
- -181000.43335822207,
- -180955.18824098646,
- -180864.974251134,
- -180816.74539395078,
- -181017.48978564248,
- -180815.58662766116,
- -180979.2774002467,
- -180817.95846380026,
- -180951.85047681318,
- -180998.6529277414,
- -180818.362485989,
- -180952.8305869637,
- -181063.81311585428,
- -180978.12741341253,
- -181174.16068990272,
- -180807.44752380773,
- -181040.72061494735,
- -181124.00797680276,
- -180693.07367266295,
- -180849.66492172444,
- -181038.77982030425,
- -180866.03192510043,
- -180802.60512019158,
- -180884.46822946193,
- -181085.0475399574,
- -180885.35410085504,
- -180682.23348761175,
- -182349.5203372696,
- -180829.35338506385,
- -180772.89414994261,
- -180902.09446094595,
- -181088.72622956135,
- -180979.71642093264,
- -180906.37555946645,
- -180800.75053366087,
- -181032.55784956415,
- -180814.39982887727,
- -181151.42664541173,
- -180909.5080121125,
- -180874.23530896136,
- -181046.12498304193,
- -180902.05740752866,
- -180979.8305139395,
- -180942.5656738371,
- -181009.25962476918,
- -180840.1924708878,
- -180954.36046807666,
- -180971.1592968529,
- -180955.97843386928,
- -180845.49734652886,
- -180782.61663522222,
- -180977.97821798053,
- -180805.36420278228,
- -181008.98951493762,
- -180921.56836434823,
- -180733.23203660635,
- -180840.91362221594,
- -180846.30159686066,
- -180921.34721748272,
- -180890.0599080562,
- -182676.7358918651,
- -180827.27270966407,
- -181056.0199827383,
- -180953.8962335581,
- -180903.6230717887,
- -180838.40407558414,
- -181085.7272340573,
- -180920.01237244508,
- -180905.59164138784,
- -180923.9778191495,
- -180865.5820644942,
- -182681.0939370604,
- -182702.51404425295,
- -180920.8157314833,
- -181039.35587087716,
- -183731.0180707013,
- -182912.50270388843,
- -180889.63746378856,
- -180854.80162700024,
- -181150.7372652002,
- -180794.46154850945,
- -180874.26283479307,
- -182692.2164033097,
- -180908.3417528071,
- -181156.28215987323,
- -181019.92164544453,
- -180891.2196782332,
- -180864.55024704066,
- -181087.9224563914,
- -180598.0324521481,
- -180766.12844487367,
- -180843.31390089897,
- -181009.6469005663,
- -180891.02760663966,
- -180890.58763282228,
- -181059.05318853393,
- -180883.05522412164,
- -180866.175526346,
- -181013.26936406048,
- -180831.20998369262,
- -181000.12969199513,
- -180663.24676979112,
- -181001.3948196855,
- -181066.46517229715,
- -180986.56354695623,
- -180982.7492550661,
- -180904.92820655624,
- -181047.36004751746,
- -180826.66975384587,
- -180933.08910412987,
- -180947.11811288763,
- -180927.51682069103,
- -180788.40046317098,
- -181125.4367547304,
- -181111.51853973937,
- -180866.26242476306,
- -180845.77976677753,
- -181012.6198653182,
- -180816.30466392604,
- -180776.81840438678,
- -180983.91154391912,
- -181029.40177410873,
- -180924.33642821995,
- -180888.00053592803,
- -180784.3810535411,
- -180940.07985755763,
- -180912.97448882813,
- -180774.27488770042,
- -181155.23560476548,
- -180850.22795461796,
- -180665.2733775059,
- -181084.78717029234,
- -182664.5201322499,
- -188488.99282933175,
- -189758.00649856846,
- -189586.79135574435,
- -189302.4383048074,
- -189374.42417451766,
- -187982.45070004364,
- -189089.35369326422,
- -188925.52496602834,
- -188370.88229638213,
- -188729.27038410617,
- -189191.95425247535,
- -189211.766205052,
- -189391.13611958042,
- -189357.1682863563,
- -190215.7200927027,
- -190252.8451955415,
- -189110.24543217203,
- -190187.4679374674,
- -190147.44410814112,
- -189598.64690698453,
- -190445.654871415,
- -190457.27919916046,
- -190458.9006702578,
- -190418.83925539092,
- -190623.3756107303,
- -190222.22442778165,
- -190308.76152925828,
- -190090.6958227699,
- -189967.96741669893,
- -190301.12261888848,
- -189341.87599347558,
- -188837.66894077745,
- -188806.57842336912,
- -188808.00095179488,
- -189519.04224358563,
- -189512.23034253178,
- -189194.5932670327,
- -188987.2121565673,
- -190034.38718702516,
- -188886.19912193718,
- -188422.8724618635,
- -188573.66240306012,
- -189304.51776225265,
- -189225.2817407487,
- -189263.00325982983,
- -189205.2614891779,
- -190017.75293635303,
- -190076.61323075774,
- -190047.0988279703,
- -187765.20644688024,
- -186613.3572771319,
- -187732.08072021118,
- -188072.6714608332,
- -187993.50997306354,
- -188006.68124746092,
- -188446.68929684337,
- -188193.71095951897,
- -187981.29126473085,
- -189080.87286406787,
- -189159.68923024554,
- -189299.45891005188,
- -189152.4024345847,
- -189091.09615257187,
- -189307.52838490528,
- -189202.98031500765,
- -189253.1843586616,
- -189271.38460107477,
- -188700.71324391282,
- -189006.7819687374,
- -187905.2037860304,
- -189018.02910981255,
- -189330.11540368202,
- -189848.0079827148,
- -190443.65918131915,
- -190427.55400195223,
- -190483.02517647974,
- -190362.86377164358,
- -190395.61332685914,
- -190394.52870872742,
- -190479.97949248308,
- -190467.0995479573,
- -190406.09811304082,
- -190511.58839861894,
- -190520.1801424011,
- -190515.9667556305,
- -190427.82270662414,
- -190294.00976637588,
- -190278.39013209782,
- -186826.21727392398,
- -187247.81804804146,
- -187880.4124846486,
- -186245.36039779414,
- -187524.29243165697,
- -187442.40232060183,
- -187439.63154257342,
- -187466.21407558903,
- -190111.04590202757,
- -190144.84616993446,
- -188777.33517669232,
- -190099.61072582297,
- -190079.43883652097,
- -189090.7163018162,
- -190153.29822813766,
- -190123.88975192353,
- -189037.89262428752,
- -188864.07840297843,
- -186331.33255991637,
- -186353.41628003947,
- -186460.97165208007,
- -184320.71218592688,
- -184395.50232088257,
- -190089.0039060432,
- -189971.33427513135,
- -189768.2322727592,
- -189820.9233690557,
- -189897.344636401,
- -189740.80754012152,
- -189698.05320883947,
- -189835.6886744365,
- -189061.7492410639,
- -189535.55716931316,
- -189685.85676509794,
- -189548.9614403094,
- -189622.96977637283,
- -189478.2853721356,
- -189518.60810814277,
- -189564.61474111862,
- -189577.55489955656,
- -189446.99616676653,
- -188807.69589811168,
- -189599.7221237243,
- -189486.82239140675,
- -189502.4117847279,
- -189467.3133551171,
- -189621.35658416804,
- -189581.4535606255,
- -189569.369029503,
- -189528.73034473255,
- -189413.92865996592,
- -189475.14660232756,
- -189489.37992040775,
- -189408.59813112364,
- -189279.9613839457,
- -188417.6430208653,
- -188058.3020889103,
- -187978.0776449405,
- -187874.45046373125,
- -187882.51589978818,
- -187829.42643730988,
- -187992.9515668895,
- -187863.06101100918,
- -187894.49980053122,
- -187929.7926774231,
- -189759.31136422034,
- -189921.34899766842,
- -189822.27177816702,
- -189779.94244991872,
- -190028.2789147829,
- -190071.21874390738,
- -187737.30602605725,
- -190145.79386936987,
- -189946.1496095157,
- -190113.21126750222,
- -190096.24824068297,
- -190178.52275598646,
- -190105.41451731362,
- -190284.38186976072,
- -190225.26961028803,
- -190097.9171060172,
- -190057.625298676,
- -190002.11943799697,
- -190055.95770209175,
- -190045.87754162127,
- -190490.7591485024,
- -189162.66377148678,
- -189194.14908284522,
- -188932.09554875613,
- -189807.1070773043,
- -189672.01066457023,
- -189245.34760738516,
- -190024.68852855908,
- -189777.5439815788,
- -190182.40049809497,
- -189225.46009016156,
- -190189.3974081339,
- -190220.05389692725,
- -190254.3411041133,
- -190132.36336376893,
- -189956.65780086425,
- -190154.67648313136,
- -190122.16497615812,
- -190059.88487874487,
- -190207.55774033137,
- -190150.01581871975,
- -189091.9085751124,
- -189779.08713834564,
- -190017.57547804448,
- -189250.70667474633,
- -190027.03974568783,
- -190095.17697165735,
- -190020.03316270863,
- -190135.05256309436,
- -190041.0525969543,
- -190058.27232183088,
- -190197.08787623307,
- -190076.63864476516,
- -190095.97638349127,
- -189966.02900883183,
- -190078.0323830136,
- -190004.26574663463,
- -189223.47061963478,
- -190167.79185327527,
- -190121.46768670232,
- -190182.6044789875,
- -190099.40338792902,
- -189983.6388300622,
- -190042.57666945577,
- -189956.46858778447,
- -190153.66675188259,
- -190023.61680486205,
- -189302.31324662734,
- -190094.67168179897,
- -190266.14844330985,
- -190151.23057533684,
- -190224.25521290538,
- -190096.5349873898,
- -190148.46719026144,
- -190425.8188559662,
- -189593.6092418684,
- -188728.6455416676,
- -189322.61920879708,
- -189619.64292618987,
- -189646.38589484352,
- -188819.81976631144,
- -189081.12058497823,
- -188085.8534257374,
- -189272.216549515,
- -189544.71559777067,
- -189907.45004942373,
- -189432.3827588458,
- -188557.4596234686,
- -188701.5447475946,
- -188971.72404492387,
- -190528.79469771456,
- -189877.9961805478,
- -190367.54585730348,
- -190595.64484921584,
- -190479.65559568114,
- -189963.1974196967,
- -190535.52943206858,
- -190445.05208792342,
- -189858.34219583872,
- -189897.34374014518,
- -189854.93361949048,
- -189248.82160598392,
- -189147.5538365724,
- -189201.19611016064,
- -189038.7762684195,
- -189178.77238216047,
- -185229.03460210934,
- -187748.69710114886,
- -187717.19164324945,
- -187132.2353526007,
- -187136.09615416784,
- -185288.1211137709,
- -186751.49815383757,
- -185601.47750316016,
- -186530.5887430274,
- -190429.1783080962,
- -190446.3836146024,
- -190097.01924026507,
- -190360.80231637773,
- -190372.90967518813,
- -187296.17724049307,
- -187407.35799002185,
- -187502.90208840277,
- -187473.06927463846,
- -187499.10205366532,
- -180851.9598007591,
- -180929.25461929486,
- -181104.5752803427,
- -181069.63573433508,
- -181129.5229125903,
- -180944.42088931572,
- -180972.37659385215,
- -181158.81415754627,
- -180872.920764452,
- -180961.05798785033,
- -181023.41494453436,
- -181024.33482280368,
- -181000.15483210448,
- -180990.45101826618,
- -181128.29075970198,
- -180907.3847388372,
- -181058.55471777607,
- -180952.9436090207,
- -180857.59442781372,
- -180984.57332295837,
- -180886.12180459496,
- -180933.26117043925,
- -186941.75754158312,
- -186982.9722405875,
- -186912.18608575975,
- -187878.183966702,
- -187769.73020592058,
- -187918.5460535091,
- -187770.35438355888,
- -187823.1635403436,
- -187949.6542449263,
- -188004.68341807707,
- -188039.39851966396,
- -188108.55865321896,
- -187970.6100541415,
- -188061.4060260442,
- -188117.78571594055,
- -188004.34272146938,
- -188496.86543053738,
- -187011.0905548473,
- -186895.31290305508,
- -187001.81900673642,
- -186938.28659058936,
- -186935.24081614582,
- -189018.82319591832,
- -189254.42379562804,
- -188587.22325699587,
- -188768.57457960988,
- -187700.16095939116,
- -187710.29797933245,
- -187777.95914919465,
- -187680.76965174306,
- -188055.04528261707,
- -187389.64718967053,
- -187484.65611512537,
- -187604.7502873811,
- -187527.49029823882,
- -187339.39148460445,
- -188039.52789187146,
- -188177.8190559988,
- -187411.0029043213,
- -187394.22171404446,
- -187938.76300956274,
- -187522.70114031213,
- -187489.84151505012,
- -187504.45327247443,
- -187576.1632075717,
- -187542.71190908132,
- -187426.28293339012,
- -187968.02915792566,
- -187395.85950368101,
- -187426.43350693406,
- -187555.9889074425,
- -187644.45811102478,
- -187609.15410432086,
- -187306.4100947206,
- -187738.23146269514,
- -187346.23240056643,
- -187363.15401524134,
- -187370.93206676224,
- -187356.5248650377,
- -187527.29927831359,
- -187506.17924088452,
- -187395.57445450997,
- -188041.02872487713,
- -187547.86986085924,
- -187502.88540065478,
- -187444.350347627,
- -187465.44357130295,
- -187560.40108799638,
- -187477.66643523375,
- -187500.2979064186,
- -187511.36321595448,
- -187963.41642815567,
- -187936.86069417314,
- -187953.61378144295,
- -187491.63111638057,
- -187488.22817826015,
- -187467.83739372162,
- -187367.52856048927,
- -187418.31867931513,
- -187399.00999555364,
- -187321.95776501435,
- -187396.06612665168,
- -187428.96199466274,
- -187636.72358713855,
- -187397.07408615857,
- -187469.0864859035,
- -187607.19069206796,
- -187531.49942974385,
- -187484.71694180465,
- -187489.66230460946,
- -187532.95309792383,
- -187549.5655671346,
- -187582.60902455857,
- -187373.90495072122,
- -187372.5855968998,
- -187368.5041770015,
- -187345.6302066342,
- -187308.48511683661,
- -187571.46069103773,
- -187415.1090085491,
- -188004.98964630163,
- -187572.51645357502,
- -187452.88025063608,
- -187445.8659648042,
- -187458.97796815026,
- -187402.52801924205,
- -187436.79165740727,
- -187505.53159853804,
- -187583.37443551747,
- -187541.70319826694,
- -187558.36181932772,
- -187542.7333878534,
- -187884.7889990308,
- -187378.94226321694,
- -187478.76495092368,
- -187458.14513542585,
- -187384.6156040888,
- -187378.0518907277,
- -187469.15587677137,
- -188014.0323584892,
- -187406.66886159603,
- -187439.14612128361,
- -187619.57224767804,
- -187464.60152296402,
- -187506.9208302256,
- -187544.82729458922,
- -187416.49256260804,
- -187323.59112459634,
- -187385.96741871574,
- -187619.51489097482,
- -187420.92650652543,
- -187910.11580313428,
- -187363.98471613,
- -187419.29606089115,
- -187398.2416118346,
- -187453.5624250277,
- -187577.77076012106,
- -187593.5992766927,
- -187359.14464430205,
- -187374.3188761119,
- -187463.65165413215,
- -187421.33462251473,
- -187499.42247689608,
- -187435.47217575277,
- -187547.81405866303,
- -187443.10255224945,
- -187330.4227778721,
- -187513.21388004647,
- -187443.89718925807,
- -187635.7326994755,
- -187512.523774074,
- -187595.67973291225,
- -187527.6958953857,
- -187458.3337311642,
- -187446.77474513915,
- -187468.86769671776,
- -187053.41384400596,
- -187985.570484645,
- -188376.47907997144,
- -188271.49035221976,
- -188543.55841322654,
- -188513.22429321206,
- -188054.3647786362,
- -188147.7198031375,
- -188545.07859362278,
- -188570.02927650115,
- -187478.03149545015,
- -187439.05517074038,
- -187509.49657466036,
- -187554.3270244612,
- -187308.12488365403,
- -187380.04949640462,
- -187483.37973117948,
- -187338.094796927,
- -187318.90099483271,
- -187530.1038934612,
- -187546.90658335353,
- -187311.6337785027,
- -187307.5064738424,
- -187422.37468206487,
- -187363.9005927213,
- -187352.73763520038,
- -187397.5651778647,
- -187468.5900747166,
- -187367.89500903618,
- -187479.3279444399,
- -187508.3265529081,
- -187436.43826273832,
- -187549.26862505978,
- -187447.38477098837,
- -187370.06008495143,
- -187396.52727223214,
- -187301.7505286326,
- -187431.94850241748,
- -187683.89461558757,
- -187496.55637834425,
- -187581.0873743829,
- -188158.7950138316,
- -187670.4526055669,
- -188473.89517146355,
- -187871.4556507872,
- -187953.09635756293,
- -188467.57731800413,
- -188448.06867016124,
- -189142.74138068696,
- -188684.650541092,
- -189116.46803518283,
- -188958.36824273193,
- -189029.22367856133,
- -189230.61012847288,
- -189224.07109513474,
- -189171.628031147,
- -189264.20801816296,
- -189126.2504850369,
- -189158.07282634798,
- -189341.6173735007,
- -189413.78079802296,
- -189332.16941428275,
- -188957.1549401508,
- -188485.64839138108,
- -189106.2220076251,
- -189121.81270785842,
- -189038.31273541637,
- -189045.9625003559,
- -188434.73763703258,
- -188465.94841419312,
- -188497.92002252254,
- -188524.1099220463,
- -188538.63489318447,
- -188443.97131970103,
- -188501.8606871864,
- -189085.91052883075,
- -189019.17316267703,
- -189023.7170985733,
- -189082.24653481366,
- -189131.95237431457,
- -188849.46401270016,
- -188209.0810095614,
- -188284.85460681713,
- -188292.80489082073,
- -188333.96865998456,
- -188265.78863545498,
- -188265.55048043604,
- -188348.7664283297,
- -188413.00617142994,
- -188780.29440188574,
- -188926.6658806248,
- -188797.9391324806,
- -188652.884000906,
- -188634.8662816393,
- -188767.71516075628,
- -188655.21405929135,
- -188665.65407218394,
- -189096.27550826877,
- -189137.79815942995,
- -189431.09677577397,
- -189460.51403827858,
- -188924.01692765954,
- -188955.90998005978,
- -189557.00396968826,
- -189473.60727785307,
- -188826.8802112957,
- -188695.52341180335,
- -188650.73401087354,
- -188727.8586654595,
- -188814.71782739085,
- -188805.0619419698,
- -188364.40710545835,
- -189458.84598976557,
- -189509.89156290417,
- -189505.54081387492,
- -188870.79520430783,
- -188973.39128024134,
- -188931.2336154527,
- -189075.3623107205,
- -189165.40325349907,
- -189055.29940898585,
- -189187.86279493442,
- -189204.81061669497,
- -189118.706210659,
- -189125.03476275213,
- -189190.2132919713,
- -189151.8546232845,
- -189214.31218341843,
- -189184.85831256816,
- -188589.02383966983,
- -188755.29130206196,
- -189212.55154545035,
- -189102.63305725515,
- -189259.831518839,
- -189187.73499960016,
- -189250.62001598394,
- -189206.6375973227,
- -188630.3797399783,
- -191950.76776520707,
- -191966.13514771112,
- -190967.5155771714,
- -190981.85314904246,
- -190904.54988965954,
- -191961.7781913269,
- -190933.31726890677,
- -190884.9419731444,
- -189676.3293626802,
- -189499.13127883367,
- -189520.43258956814,
- -189367.95954881862,
- -189602.67537553923,
- -189572.96585282165,
- -189452.19639778542,
- -189450.76429825148,
- -188760.92666197545,
- -188739.25318416615,
- -188695.8454305255,
- -188642.94415728576,
- -189497.53273612313,
- -189436.17497376876,
- -189465.12020137944,
- -189459.6678228203,
- -189182.45003880878,
- -188614.0216532207,
- -188862.78092360223,
- -188688.21495284644,
- -188802.33759008144,
- -188875.01992304178,
- -188878.47216792012,
- -188833.15395284203,
- -188663.7720230959,
- -188895.23369487113,
- -188697.66550976233,
- -188677.42267415742,
- -188835.53389301457,
- -188755.91150152648,
- -188779.18943551017,
- -188765.55377816074,
- -188789.33520208794,
- -188656.38772186043,
- -188876.0303235435,
- -188750.15392367452,
- -188936.51239900038,
- -188834.86126886433,
- -188636.7491669763,
- -188745.53267934482,
- -188392.790839642,
- -188623.08273018873,
- -189117.79942347232,
- -189080.89445369857,
- -189610.58855240213,
- -189430.02118486408,
- -189533.9883014909,
- -190176.91030132608,
- -190327.00650601689,
- -190056.90557900956,
- -190212.84524776228,
- -190379.24513826738,
- -190364.94417823173,
- -190285.1007604136,
- -190355.21433586793,
- -190042.60625451073,
- -190392.20043390873,
- -190169.57831584476,
- -190301.90487174553,
- -190124.9999688799,
- -190263.17840064035,
- -190294.74524637056,
- -190095.38374811987,
- -190007.8802822811,
- -190144.80345069803,
- -190372.09773776418,
- -190179.79769459536,
- -190131.3738289751,
- -190066.73961822983,
- -190138.42407423924,
- -190062.07748710833,
- -190296.67992469142,
- -190159.64175459897,
- -190208.61438980376,
- -190176.9209211548,
- -190410.9097223642,
- -190296.7065188192,
- -190259.90894886025,
- -190305.68653512688,
- -190364.34558167926,
- -189550.71352449455,
- -190132.87489931766,
- -189895.3596929185,
- -190402.62004046032,
- -190229.12172851086,
- -190234.9684367843,
- -189515.1110287197,
- -189238.40345202928,
- -188431.71697463252,
- -188333.25419319226,
- -188404.2364094815,
- -189258.14718442407,
- -189643.64597282023,
- -189545.96793264223,
- -189001.13958434798,
- -189021.22993820359,
- -189128.93571170678,
- -189086.08559419253,
- -189323.57130717806,
- -188986.28736767554,
- -189610.79451705402,
- -189403.96852214064,
- -189455.51690744262,
- -189578.18167762924,
- -189676.55452521317,
- -189804.6846845527,
- -189685.5062735283,
- -189191.81129054422,
- -189784.85244116923,
- -189790.59660567288,
- -189774.15782508685,
- -189185.0056894647,
- -188838.03543089947,
- -188914.3271305451,
- -189463.97410727615,
- -189099.5308042423,
- -189581.78969652124,
- -189559.59363443762,
- -188413.34106319828,
- -188197.29564009517,
- -188171.8323130677,
- -189020.36303100712,
- -188902.6341614655,
- -189220.45711515305,
- -189295.1989165057,
- -189357.94160129366,
- -189475.38802432298,
- -189538.76966009964,
- -189600.13047092306,
- -189492.71937791887,
- -189433.45797319178,
- -189390.5473860872,
- -189534.12800703215,
- -189466.43930603622,
- -189610.21419904652,
- -189569.1170149383,
- -189408.09333260934,
- -189635.40978858646,
- -189244.28470441038,
- -189104.56426932674,
- -189359.61236164405,
- -189213.21322404998,
- -189225.18187778912,
- -189209.684180045,
- -189187.41321420565,
- -189058.75332777802,
- -189283.28316506173,
- -189237.05861530898,
- -189271.45601136168,
- -189171.22226688673,
- -189320.9536658957,
- -189116.84179436308,
- -189269.2321511475,
- -189132.12564859676,
- -189134.94804509557,
- -189131.89578832858,
- -189503.0773230366,
- -189763.56150893454,
- -189760.2159286004,
- -189719.0918707299,
- -189779.78137748837,
- -188939.57979180606,
- -189786.4030590934,
- -189726.6419321666,
- -189906.72903141,
- -189699.8057206231,
- -189440.8450981969,
- -189471.24343986003,
- -189315.72626956273,
- -189316.89167777615,
- -189281.89181624498,
- -189348.41372022274,
- -189400.15278844733,
- -187654.02171573124,
- -189181.722180315,
- -189241.2593596859,
- -189537.49897748485,
- -189577.87143369688,
- -189553.76416751105,
- -189511.77300350298,
- -189590.21640715873,
- -189590.12591003874,
- -189538.08933140666,
- -189576.29104717827,
- -189658.8326002738,
- -189652.78629907887,
- -189625.6848290425,
- -189556.70430922814,
- -189492.97213968565,
- -189604.8022327273,
- -189590.56152422907,
- -189697.46412324015,
- -188785.51687088946,
- -187995.86556328714,
- -187829.67176628584,
- -187719.83667300304,
- -187755.15904329115,
- -187969.5000521307,
- -187810.21895933492,
- -188502.68663988617,
- -188527.26711107683,
- -188439.5683820229,
- -188400.24033030673,
- -188941.54365172883,
- -188872.16294958733,
- -189349.372745954,
- -188042.59562284162,
- -189466.9672629071,
- -189499.77105993647,
- -189551.62846109323,
- -189711.09679261735,
- -189642.98880778134,
- -189682.60080346372,
- -189655.02049784194,
- -189484.32524229362,
- -189601.31793291916,
- -189606.60594438546,
- -189560.87324982125,
- -189572.4833480093,
- -189451.95526184243,
- -189155.25778973437,
- -189719.11336881894,
- -189535.40777391606,
- -189653.17828992414,
- -189528.0714884979,
- -189600.03913814086,
- -189456.21906470374,
- -189529.67807614632,
- -189683.419552452,
- -189706.35646586987,
- -189566.73535772157,
- -189663.45926956282,
- -189644.09086083496,
- -189753.4799871046,
- -189515.74762313042,
- -189575.1751271242,
- -189715.39152002477,
- -189677.10772575348,
- -189763.0314858547,
- -189750.63256559754,
- -189623.64470779992,
- -189555.93848452147,
- -189516.65865324857,
- -189332.90830424154,
- -189335.40028172662,
- -189390.99357965772,
- -190788.04912055115,
- -190432.64277937377,
- -190429.14197236107,
- -190324.69859443782,
- -190357.26809546677,
- -190463.3906674185,
- -190804.5319977288,
- -189752.39082629923,
- -189233.70459704348,
- -189381.97372271767,
- -189274.94123611646,
- -189344.52233503317,
- -189330.49109124398,
- -189292.62281836645,
- -189382.74018184142,
- -189283.81177846075,
- -189189.62408053043,
- -189881.05147717806,
- -188418.2457536636,
- -188334.16715397255,
- -188316.96436541888,
- -188393.31250959192,
- -189449.70576624642,
- -189643.99202381787,
- -189621.55397281286,
- -189584.60665973625,
- -189708.35344832033,
- -189545.99010444924,
- -189640.61439605875,
- -189647.60507520966,
- -189090.94929104674,
- -188949.56218808194,
- -188970.90563415922,
- -188778.30225349736,
- -188877.02349292667,
- -189187.23989760628,
- -189228.16159599964,
- -189371.9970513625,
- -189354.5654109178,
- -189119.10153963434,
- -188553.4626397446,
- -189034.6677846897,
- -188582.1700977013,
- -189344.76616863086,
- -189387.8552421466,
- -189190.0319375097,
- -189272.67281759946,
- -189335.77220952246,
- -189246.25773864324,
- -189282.36250191767,
- -189851.525977397,
- -189898.50682877458,
- -189902.20292579886,
- -190014.4432471374,
- -189947.02621110433,
- -189984.75176702105,
- -189998.6850751129,
- -189960.15611711724,
- -189925.12486746212,
- -189946.0012008412,
- -189942.73770603698,
- -189928.97374273633,
- -189282.7001458068,
- -189590.10878598897,
- -189688.56378906994,
- -188710.3709706175,
- -188629.75667986035,
- -188670.25366519665,
- -189536.5844743295,
- -188727.2902867739,
- -188687.9977280287,
- -188955.84294808432,
- -188979.20255327725,
- -188974.94610195557,
- -189617.42703743948,
- -189562.51140533126,
- -189380.90819896417,
- -189619.37247978424,
- -189782.16983261594,
- -189821.50652600272,
- -189887.81381680508,
- -189897.2491422674,
- -189836.83355904545,
- -189705.70407238055,
- -189822.16051409193,
- -189732.60148731066,
- -189827.95292964636,
- -189654.67760689667,
- -189747.67582984507,
- -189892.11024789204,
- -189779.45626955442,
- -189857.48519184976,
- -189864.0957269925,
- -189800.49653082312,
- -189683.09851788307,
- -189772.1017231966,
- -188074.20351587667,
- -188048.01374776612,
- -188076.0410432971,
- -187921.70754893584,
- -187944.64016261857,
- -188069.6471734618,
- -188033.65890864775,
- -187984.49376657544,
- -188066.0584282789,
- -187873.16679846472,
- -187761.06000681227,
- -187966.5095326889,
- -188771.22071372272,
- -188942.09885480377,
- -188924.61120937933,
- -188865.0310038266,
- -188325.55852082116,
- -188221.7491593263,
- -188015.43710141958,
- -187905.9131194616,
- -188562.52238197235,
- -188583.9863067021,
- -188292.803831213,
- -187973.74266490637,
- -187980.7875448006,
- -188006.8523079164,
- -188196.46996764973,
- -188266.2197375126,
- -188656.73899805153,
- -188701.21377091933,
- -188539.53210781686,
- -188624.18261098056,
- -188587.54773051367,
- -188671.20919887463,
- -188643.8479868126,
- -188585.12861631755,
- -188119.47972230078,
- -188206.78624151362,
- -188825.28809191516,
- -188789.93647026946,
- -188595.929621033,
- -188904.70828505783,
- -188656.04075638522,
- -188288.63591142182,
- -188201.85617050852,
- -189057.81546602,
- -188669.6333716104,
- -188732.5163680446,
- -188637.09764701437,
- -188758.95185635728,
- -188640.11104820046,
- -184975.02995836173,
- -192653.7287946721,
- -192658.9858084674,
- -192643.9378977829,
- -192624.1983817503,
- -189827.35018753487,
- -189853.90365825905,
- -189755.076146139,
- -190101.45817912888,
- -189897.10993130127,
- -189979.1871069332,
- -189945.22708950468,
- -187360.3181764521,
- -187377.81473387225,
- -187085.60542441468,
- -187126.73472208405,
- -187076.44109914085,
- -189543.034315843,
- -189163.53067750562,
- -189694.32037712878,
- -190001.34422844957,
- -190121.17477858203,
- -190109.7346041272,
- -190215.29371707712,
- -188502.3898432576,
- -188505.68688054534,
- -188469.82315365504,
- -188505.51258337646,
- -187548.06751765357,
- -187526.72134379356,
- -189502.79748963288,
- -189162.7775371684,
- -189864.69924589156,
- -189091.23073030688,
- -189098.729985849,
- -188951.4483378136,
- -189105.83893511366,
- -188778.71886401522,
- -188921.8575232467,
- -189156.49544347025,
- -189085.15446033492,
- -187863.92820822977,
- -188710.84136932285,
- -188817.58476702461,
- -188975.3355759559,
- -188927.43096510798,
- -189173.6846848957,
- -189000.61821900296,
- -189002.45745511763,
- -188898.19947380063,
- -189075.47551847165,
- -188971.97905411114,
- -187894.56703794212,
- -188919.8056771276,
- -189080.7550455894,
- -188787.2704993271,
- -187852.36526218464,
- -188843.77638094558,
- -189035.6991536637,
- -188801.21894511217,
- -189280.28143715774,
- -188855.60943415618,
- -189146.70967002175,
- -189026.6393112517,
- -189031.2455634038,
- -188875.43440098123,
- -188897.01172743316,
- -188866.27150595438,
- -189159.98308012512,
- -188983.8191116055,
- -188814.16702615508,
- -189048.87915536104,
- -188871.3639754638,
- -188848.03815522493,
- -189094.54492211857,
- -189061.87467044228,
- -188505.22634815276,
- -189076.32527469256,
- -189151.15283918366,
- -189058.45726150705,
- -188817.90158256877,
- -188953.58974896904,
- -188943.9313415137,
- -188879.4638523478,
- -189024.50651389456,
- -189123.97882152276,
- -188883.4842960677,
- -189120.6792836771,
- -189113.53599738402,
- -188964.62717743742,
- -188560.05311062792,
- -189624.33377322988,
- -189598.00166810045,
- -189567.498505866,
- -189951.57727285993,
- -190038.81848945052,
- -190032.9438813023,
- -189607.8188208205,
- -189902.3304396636,
- -190013.260857581,
- -189953.2875295655,
- -189254.12345730932,
- -189010.69702649902,
- -189550.82926949437,
- -189418.8305916361,
- -189418.45132045657,
- -189938.98847371674,
- -189481.26125690035,
- -191623.8931317123,
- -193456.92593939666,
- -193559.34465828937,
- -193537.81960822793,
- -193263.28722742767,
- -193404.9270928785,
- -193547.75923148528,
- -193461.77865299906,
- -193341.6948875634,
- -193310.37387013956,
- -193575.17645088313,
- -193478.02172936473,
- -193568.00528276377,
- -193543.01968804744,
- -193516.14453401812,
- -193387.98513967678,
- -193607.67536828865,
- -193479.753757584,
- -193355.90193244684,
- -193406.9449645201,
- -193564.96957959293,
- -193332.8917695752,
- -193469.2054070533,
- -193221.83049125588,
- -193512.81482243334,
- -193452.62691900134,
- -188742.25835635187,
- -189868.5219289275,
- -189969.1792616839,
- -190045.9373963785,
- -189670.68791407108,
- -189734.63562969028,
- -191377.50485578203,
- -191222.35911275444,
- -191243.0515390836,
- -191271.9049596895,
- -191379.93800357336,
- -191175.45420477103,
- -191656.98941584208,
- -191319.54700031714,
- -191297.4291378877,
- -190086.10968265266,
- -190096.79898858466,
- -189133.8957997381,
- -188769.7524320571,
- -188482.3157020377,
- -189373.57180557027,
- -189782.7809279428,
- -190474.0354770335,
- -190371.1359257553,
- -190321.52227194887,
- -190344.32547762684,
- -190497.0175391162,
- -190465.26309402508,
- -187529.8569288587,
- -187417.65084470675,
- -187595.0345184197,
- -188793.50051869432,
- -187896.9081911965,
- -187950.47693488878,
- -187852.12457066582,
- -189030.72274047518,
- -190122.4501330495,
- -189948.1486313253,
- -190453.08226687548,
- -190335.2883217472,
- -190188.87329426254,
- -190066.86374923558,
- -189690.21858696538,
- -189771.49663237328,
- -190086.7786046643,
- -190011.98226594419,
- -189857.30593465958,
- -190479.28831624571,
- -189915.0190236122,
- -189092.11310182954,
- -190009.95041416763,
- -190288.40175925204,
- -190208.68058270408,
- -190223.2598854498,
- -189596.71553589354,
- -189532.60174471134,
- -188278.1072223423,
- -188990.4010166953,
- -188932.35300179519,
- -188987.5553701727,
- -188980.99251783875,
- -188399.1066065768,
- -188547.48254971273,
- -188445.99561197893,
- -189408.1187962789,
- -189194.96207121338,
- -189618.59279905658,
- -189596.4692696455,
- -189591.8731843488,
- -189563.21199104455,
- -189247.56010120243,
- -189228.67042631286,
- -188686.11696233056,
- -188643.2572033615,
- -189785.7936062494,
- -189832.1833617229,
- -188724.28354291673,
- -189000.49204416302,
- -189681.60915599283,
- -189405.59755569755,
- -189460.84585110802,
- -189640.6416367897,
- -189759.73338347275,
- -189666.2462641403,
- -189877.80432977845,
- -189698.4654076233,
- -189872.54233829424,
- -189934.48555254235,
- -189825.34967911273,
- -188339.00311775182,
- -189089.71924361648,
- -189140.07123628308,
- -189246.3295914749,
- -189261.93875597016,
- -189164.02682145475,
- -189243.80772386643,
- -189146.8788231098,
- -189161.1410087493,
- -189249.8908024901,
- -189187.70565578455,
- -188240.28382077243,
- -189121.58192836438,
- -189178.79518399367,
- -188415.4342752534,
- -187704.1856572577,
- -187679.05010809522,
- -189393.24956273774,
- -188883.37598759666,
- -188958.043341557,
- -189109.00672269435,
- -189073.311932781,
- -188907.77366622048,
- -189162.88629233922,
- -189191.27948312214,
- -189044.13234691945,
- -188955.4569509421,
- -188930.1166276852,
- -188981.61018574386,
- -189060.53964369342,
- -189006.8313798339,
- -189073.19084259024,
- -189161.52886389126,
- -189110.20569245965,
- -189375.341623621,
- -189208.89107501428,
- -189008.29312550844,
- -189406.6961868914,
- -189247.05285320058,
- -189358.78761245878,
- -189380.80686938798,
- -188977.17868152083,
- -190171.06683845687,
- -190002.99170424696,
- -189982.1293526866,
- -189911.10633381322,
- -189995.0356338526,
- -189997.50324860663,
- -190023.1519635282,
- -190061.7421727275,
- -190142.2612089221,
- -189953.18482676084,
- -189959.6292369299,
- -190076.74672227495,
- -190047.69919487005,
- -189592.09389439234,
- -190042.4332771142,
- -190072.09887471944,
- -190023.65707861382,
- -190069.90387555773,
- -189999.30668370787,
- -189943.26942762276,
- -190047.4304017866,
- -190013.54687287952,
- -189954.94326666972,
- -189989.53954194966,
- -189994.1273630411,
- -189998.3802860646,
- -189536.80725185145,
- -188416.74513307065,
- -188421.93878236535,
- -188226.34945822318,
- -189141.3441900047,
- -188801.4006698127,
- -188258.42142430766,
- -187828.0449700697,
- -187557.52973979575,
- -189203.59341116896,
- -189222.42477997518,
- -188371.93455635058,
- -188236.67057536307,
- -189053.21654074607,
- -188910.12449409856,
- -189616.0770537085,
- -189187.79390543632,
- -189076.53981134578,
- -189355.03813613064,
- -189235.60204803146,
- -189060.11793078348,
- -189047.46005050762,
- -189110.33805387263,
- -189086.58762901634,
- -188814.90499657913,
- -188831.73310049425,
- -187732.9738354657,
- -187992.73283452474,
- -187944.50330577596,
- -188018.83061694138,
- -187930.0200671109,
- -186619.29365579388,
- -186683.35602978745,
- -186684.73039451445,
- -187711.07272794982,
- -187669.59759489246,
- -189468.85739625,
- -189487.9206905245,
- -189474.07753045388,
- -189538.19493991407,
- -189174.537700806,
- -187176.16775513362,
- -187889.88915153715,
- -188877.767245647,
- -188875.60269456287,
- -189320.8832616244,
- -189701.74112496764,
- -190570.05343242383,
- -190456.94334113694,
- -190425.7399763771,
- -190488.92328356873,
- -189848.3496053623,
- -189767.82097975494,
- -189836.98244016172,
- -189360.94131929203,
- -190187.96899881063,
- -190075.78591642829,
- -190102.6448901039,
- -190082.51368391872,
- -190277.35605871337,
- -190108.85859934683,
- -189982.98427097642,
- -190247.19351608588,
- -190000.47476074027,
- -190015.63669208196,
- -190176.02416169882,
- -190196.77460129675,
- -189948.9893928284,
- -190051.48274480636,
- -190309.79507444083,
- -190266.7019462526,
- -190160.6995683081,
- -190048.14997909922,
- -190138.61148006478,
- -190201.3591599058,
- -190220.61911344156,
- -190108.87515133707,
- -190235.60594223105,
- -190243.27357438963,
- -190140.1759802504,
- -190142.06772604265,
- -190106.0660399482,
- -190032.54339045423,
- -190078.30164515603,
- -190140.8097984063,
- -190239.66301388768,
- -190204.91858076805,
- -190104.49800215533,
- -190222.0138580218,
- -190176.5237960741,
- -190284.59045692414,
- -189989.61280394648,
- -190188.0724671243,
- -190304.79464037312,
- -190151.1461472848,
- -190245.7156611473,
- -190354.1941259311,
- -190063.91222684208,
- -190215.5486804766,
- -190266.6265029611,
- -190135.90178565972,
- -190390.4172704486,
- -190225.16976200862,
- -190233.24979261204,
- -190271.6524928905,
- -188255.49531115688,
- -189431.19612052888,
- -189406.98871430848,
- -189405.89976436328,
- -189556.0586895262,
- -189975.8857865456,
- -189962.64684681784,
- -189606.58142448816,
- -189620.0076205086,
- -189829.45164674928,
- -189806.80628290947,
- -190055.23194051083,
- -190099.1641087381,
- -190009.77524916915,
- -190123.61494626934,
- -190327.86074333172,
- -189881.85499270284,
- -189877.7461051455,
- -189785.98016496692,
- -189801.74533007256,
- -190150.7534213793,
- -190083.45351184526,
- -189958.9935821789,
- -189640.46304525726,
- -190369.8816348054,
- -190355.11724425686,
- -190322.80421544664,
- -190263.3619893532,
- -190417.86846340998,
- -190129.3764744744,
- -189044.47193388795,
- -190141.27549069133,
- -190192.09800997702,
- -190228.05993463765,
- -189166.174499402,
- -189825.80985082992,
- -189928.15648078072,
- -190413.83573917582,
- -190409.3455823219,
- -190456.8050621169,
- -190416.263701065,
- -190423.7286388017,
- -190504.68932044078,
- -190351.8577571806,
- -190430.28066369068,
- -188357.7548173183,
- -189963.01135006186,
- -189867.35754044872,
- -189885.2399857091,
- -189540.83255167972,
- -189971.6969367716,
- -190014.13869723506,
- -189625.3584162535,
- -190033.94066848868,
- -190014.96846085825,
- -190047.33554382756,
- -190021.89704585815,
- -190095.05957379984,
- -189823.33718928453,
- -189807.44797915185,
- -189856.9200899178,
- -190683.3037257944,
- -190622.24743598714,
- -190636.57137215306,
- -190577.10752327426,
- -190615.79719227442,
- -190597.41828734183,
- -190563.36643259757,
- -190570.68582678516,
- -190689.22248026772,
- -190604.4639800109,
- -190649.86056976585,
- -190660.25961607235,
- -190080.6795551314,
- -190063.6300792004,
- -190056.3523664133,
- -190081.37512168137,
- -190053.65824576886,
- -188982.54369054709,
- -190254.69169143718,
- -190270.88097794403,
- -190324.85616092518,
- -190316.4062083869,
- -190233.7497864454,
- -190309.93574469167,
- -189865.68748950932,
- -190158.38189934954,
- -190002.0571816662,
- -190032.13717515685,
- -190219.2848547583,
- -190106.5932816327,
- -189776.73861947109,
- -189892.40357004944,
- -189933.6677233693,
- -189787.4065735723,
- -189622.95178168817,
- -188401.64732672213,
- -188363.39439349156,
- -188369.21574915142,
- -189654.05215583372,
- -189657.41072030462,
- -189885.08282564703,
- -189897.7438511581,
- -189344.53698081977,
- -189371.6910585,
- -189531.47570204202,
- -189745.4244652022,
- -189878.20826982777,
- -190129.93090804346,
- -189865.11180310862,
- -190056.72426811626,
- -189675.57223028474,
- -189821.58209532077,
- -189722.72727586702,
- -190627.5336950345,
- -190590.11724799534,
- -190553.81046517758,
- -190626.39202647426,
- -190548.7352188638,
- -190527.02557045876,
- -190537.97620366924,
- -190528.99247083525,
- -190535.95331849967,
- -190477.584911762,
- -190590.01387789508,
- -189689.98568985163,
- -188767.31638590462,
- -189380.99555358346,
- -189820.34819052625,
- -188597.77966632837,
- -189046.7218577527,
- -189929.7873353237,
- -189827.14417308327,
- -189610.45247642134,
- -189721.2681245282,
- -189841.32060363394,
- -190133.0764252821,
- -189994.26180196146,
- -189552.0059179834,
- -189865.34878964076,
- -190128.70990411646,
- -189980.2073353877,
- -189911.87643199667,
- -189862.09897817927,
- -189582.52171704065,
- -189512.73040835065,
- -189560.4350602952,
- -189685.13710829453,
- -189440.16676991337,
- -189792.41637375913,
- -190046.7128963769,
- -189884.18087312218,
- -189803.42093549029,
- -189609.67635842468,
- -189566.49283217607,
- -189766.99186632992,
- -189187.37825301112,
- -189153.77644796227,
- -189720.57020872037,
- -189942.3597703817,
- -189936.04804907544,
- -190138.50278243815,
- -190147.93036115187,
- -189473.60669290827,
- -189934.81712935786,
- -189920.5210867985,
- -189880.48140888676,
- -189777.5089787198,
- -189991.22532635246,
- -189902.6784533937,
- -190014.2065216857,
- -188181.21478088622,
- -189993.3661745427,
- -189725.42636923178,
- -189845.95459293955,
- -189913.25422408764,
- -189815.88498965633,
- -189816.0991606201,
- -189914.6755130604,
- -189851.85041363334,
- -189412.0149135278,
- -188595.05397402454,
- -189964.75033073436,
- -190076.95138041594,
- -189948.34201305412,
- -188287.7882146985,
- -189201.20828713535,
- -189794.53058512337,
- -190036.43274504624,
- -189993.46217733237,
- -189516.2009930048,
- -190083.22603296343,
- -190015.1682753715,
- -189863.4178539749,
- -189865.29591063826,
- -188013.20672022508,
- -188285.55395057393,
- -189942.62572521015,
- -189716.3603225668,
- -189754.81370781327,
- -189479.04798828842,
- -189831.82834825877,
- -189846.60399545185,
- -189891.63373559376,
- -189756.3266971822,
- -189470.92179911264,
- -189881.5254498419,
- -189474.05881109604,
- -189860.46362732205,
- -189895.8170527797,
- -189901.08917131185,
- -189172.6969553096,
- -189942.76417361607,
- -189249.40564514752,
- -189864.87255623512,
- -189829.0082900861,
- -189527.37335576225,
- -189706.09320869745,
- -188333.69361629503,
- -189812.79016112452,
- -190011.10938298382,
- -190012.59772626602,
- -189821.5502203555,
- -189827.98067667958,
- -189752.06021142998,
- -189849.57134155335,
- -190103.95680880343,
- -189645.7975453776,
- -190161.70492528772,
- -189002.53982306406,
- -190098.90464646148,
- -189880.14284702012,
- -190275.281542361,
- -189671.86798061224,
- -189968.41624521738,
- -190082.85660467256,
- -190010.45363055408,
- -190134.69000424945,
- -190194.0337786028,
- -190121.94782244563,
- -189910.92703627306,
- -190120.33137371222,
- -190052.2392364327,
- -190168.3448743449,
- -189863.42332173933,
- -190050.3134536251,
- -190052.02798014958,
- -190138.15984440758,
- -190124.12260626277,
- -190076.46943185962,
- -189279.50841773278,
- -189127.7614248225,
- -189340.40098509513,
- -189373.96438282065,
- -189945.63900962495,
- -189928.4903803872,
- -189791.76613560726,
- -189869.66751411214,
- -189883.52375199503,
- -189710.02260108996,
- -189550.95837134798,
- -190125.85650578202,
- -190227.80055654832,
- -189980.97976013072,
- -189805.0174005274,
- -188735.71532723514,
- -189640.06108544476,
- -189707.5300203365,
- -189960.30966069215,
- -190032.43816963732,
- -188336.02952000388,
- -188932.69835564663,
- -189829.566589109,
- -189766.6746070231,
- -190087.43066860677,
- -190041.987692598,
- -188621.10935024044,
- -187857.41211453432,
- -188522.2186210146,
- -188456.7527854188,
- -188417.53740720224,
- -187912.95191827603,
- -188406.84414023338,
- -189897.22955659946,
- -189886.44474479667,
- -189936.64132531104,
- -187862.33462754218,
- -188017.75898284867,
- -188115.07214676208,
- -188238.33374197048,
- -188215.72460135946,
- -188581.38902644193,
- -188288.50808971204,
- -188355.1199264169,
- -188259.72638644718,
- -188245.38363355384,
- -188771.67321964315,
- -188609.1528103252,
- -188477.04377820794,
- -188706.44086790056,
- -188522.74551045886,
- -188441.11342678487,
- -190032.00715641747,
- -190026.62201802526,
- -189736.26297613457,
- -189909.27787767662,
- -189079.18498195667,
- -189929.0210734705,
- -189486.59669526652,
- -189547.3793226872,
- -189755.0992386357,
- -189721.59190477236,
- -189038.42168107076,
- -189396.02766328072,
- -189452.2648830305,
- -189604.21381453943,
- -189626.24769900975,
- -189736.47627504388,
- -189980.6924954303,
- -190051.39788644988,
- -189987.9388031262,
- -190118.1878124256,
- -189860.31740185065,
- -190150.64554488976,
- -190202.89670150276,
- -190007.161320482,
- -189941.38360680544,
- -190040.3036151541,
- -189981.57081345769,
- -189783.57416826164,
- -189796.5865472431,
- -188676.66102464776,
- -188680.00271065094,
- -188735.25527640682,
- -188691.9863820846,
- -188883.2252506061,
- -188594.7169153639,
- -188657.22598614308,
- -189329.07774713478,
- -188268.3002336887,
- -189249.25171750845,
- -189266.88275029848,
- -188041.43930099072,
- -187803.3143579642,
- -188052.40549977424,
- -188904.57948655414,
- -188769.16734820895,
- -188621.68315608325,
- -188716.07523902692,
- -188977.8336529005,
- -188876.96741627337,
- -189023.2637372005,
- -189446.34263308713,
- -188663.34908135253,
- -189338.63800307794,
- -189272.46716609594,
- -190475.87056057338,
- -190363.26549123542,
- -190644.9723379776,
- -190462.08398884002,
- -190574.05181437873,
- -190391.15414305858,
- -190504.12149903976,
- -190541.7584943848,
- -190394.25763746977,
- -190593.80002470885,
- -190549.81716892275,
- -190394.54304903626,
- -190586.99388908755,
- -190511.55907674643,
- -190443.4219741818,
- -190434.752852087,
- -189906.86664615953,
- -189980.63646016494,
- -189769.42690983845,
- -189985.83720384885,
- -189876.53310935257,
- -189902.22536835464,
- -189645.40122184544,
- -189424.709689385,
- -189369.65899546578,
- -189022.30145293748,
- -189476.28709892902,
- -189342.46057276748,
- -189669.7071682979,
- -189861.2124974001,
- -189924.49114468484,
- -189695.61062811463,
- -189732.4484183905,
- -190206.17448188507,
- -190206.0980025185,
- -190218.3943863217,
- -190076.2470556719,
- -190052.52406760817,
- -189560.67356089593,
- -189632.94022368034,
- -189586.8863832665,
- -189750.83259052076,
- -190228.63718259358,
- -190321.80363929408,
- -188592.69741300648,
- -188530.56183519625,
- -189564.82638307373,
- -187892.99584382013,
- -187812.29264323704,
- -187981.42244477407,
- -187975.52341851426,
- -186877.613094899,
- -185830.3568996049,
- -186917.61345703408,
- -186885.37838974773,
- -189803.36151218376,
- -189913.1497669444,
- -190032.10280239128,
- -190072.29161640667,
- -190140.9626562465,
- -189768.22843580108,
- -189931.81691862512,
- -189826.67274452065,
- -189999.97773158897,
- -190115.75191553755,
- -189977.23103216087,
- -189590.7531448757,
- -189372.64547062907,
- -189597.24984633556,
- -190005.1924606107,
- -189503.00303097212,
- -190071.01808593702,
- -190031.99421903666,
- -189875.86523314627,
- -190009.90432453758,
- -190097.99478259103,
- -189929.37601507976,
- -190010.17147214644,
- -188912.98164239828,
- -189284.43743427604,
- -188887.7173625151,
- -188911.4706511093,
- -189388.98309752173,
- -188870.41996378027,
- -188914.53959732346,
- -188878.15425177375,
- -188840.2951461584,
- -189620.0244130199,
- -189625.2583846318,
- -189840.72948148553,
- -189625.845364226,
- -189465.20794132227,
- -189921.45423136652,
- -189889.22091888165,
- -189946.08141655484,
- -188504.64148423215,
- -188412.44037557312,
- -188781.8283257325,
- -188740.4076299442,
- -188935.6716361777,
- -189902.9951481261,
- -190199.11620196913,
- -190331.88777793274,
- -190083.6881451843,
- -190036.6178459026,
- -189493.53122157877,
- -187414.1525286281,
- -187417.08281845733,
- -187304.57560440578,
- -187206.64307347327,
- -187494.37966247095,
- -187468.07142045483,
- -187405.1955167813,
- -187467.3009883131,
- -188046.39450204067,
- -187380.41176077427,
- -189268.7378156468,
- -189214.5524927672,
- -188447.52573377267,
- -189332.07031262116,
- -189228.9081982296,
- -188627.0205662996,
- -188656.50036120758,
- -189175.41497594208,
- -189375.19911536569,
- -189761.69226405656,
- -188055.34361729486,
- -188355.8864917371,
- -189842.32031122976,
- -189868.9528304452,
- -187411.8004731311,
- -187384.85440843413,
- -187397.49483843523,
- -187389.06402282708,
- -187408.57036686965,
- -189809.44073601285,
- -190293.08407689194,
- -190311.90430715468,
- -190388.85119682553,
- -190445.93403431756,
- -190435.89895740917,
- -190449.3475640624,
- -190483.5788748304,
- -190439.36363401508,
- -190402.03821597865,
- -190354.2130714179,
- -189878.35854182256,
- -189831.7295560883,
- -189980.4227549014,
- -189894.38857136425,
- -189234.79811111273,
- -189044.42758006393,
- -188982.13117658292,
- -189655.64745270918,
- -189272.83789102736,
- -189047.49853952235,
- -189062.21473259735,
- -189834.68444061565,
- -190332.5891857683,
- -190311.74928116973,
- -190268.37506034676,
- -190352.22457202693,
- -190264.02480158204,
- -189703.3002225872,
- -189741.9662685643,
- -189653.50488966407,
- -189759.5122753518,
- -189628.80983628487,
- -188401.70303736636,
- -188550.56920449316,
- -188650.65877533983,
- -189816.1789486413,
- -189665.07028830674,
- -189725.06518663402,
- -189952.97110248948,
- -188707.19411003264,
- -188725.43356871564,
- -189536.60395080398,
- -190118.58938534866,
- -190422.2204975639,
- -190454.36096552407,
- -190477.12985416566,
- -190273.79635232274,
- -190386.17342693405,
- -190290.92027654726,
- -190285.11144322803,
- -190500.8876053926,
- -190492.82676087008,
- -190384.46970978877,
- -190577.94552562502,
- -190476.58697762445,
- -190424.5579371018,
- -190515.7769230437,
- -187440.6696185839,
- -186735.62978625085,
- -187834.27434140982,
- -187215.37650594692,
- -186950.25182405324,
- -189983.49851289552,
- -189914.44209007142,
- -190739.9069385846,
- -190703.46636216049,
- -190823.64244110044,
- -190142.2688152774,
- -190703.40250229,
- -190679.2845484287,
- -190804.43682863933,
- -190772.79528161397,
- -190691.4249614036,
- -190672.18419417052,
- -190799.7370938617,
- -190692.94467440082,
- -190707.9815689889,
- -190103.40849787297,
- -190739.0849917317,
- -190796.57720112224,
- -190769.51019569216,
- -190791.79343367968,
- -190796.49073473035,
- -190769.40469563488,
- -190764.2657987776,
- -190474.1084149691,
- -189854.45943786003,
- -189618.54146927196,
- -189948.28950302518,
- -187679.11051665375,
- -189633.55364759974,
- -189759.5887370702,
- -189881.8820382768,
- -189832.31199713287,
- -188734.38474404474,
- -188676.7512696058,
- -188864.32027075288,
- -188639.96835899813,
- -188762.2940970673,
- -188700.56167535784,
- -188755.6479228247,
- -188708.43066755641,
- -188787.61591049863,
- -188757.73158761932,
- -188644.0921725751,
- -188600.8117161074,
- -188788.02038963212,
- -188656.48788790172,
- -188667.12691655773,
- -188673.3512738554,
- -188714.69366230932,
- -188770.75855426944,
- -188544.12377281216,
- -188591.63738564984,
- -186236.7034840598,
- -189295.687458489,
- -189387.7787664935,
- -189483.5622333063,
- -189397.8449691686,
- -189313.9212201251,
- -188203.37135887527,
- -187995.83115505055,
- -187882.34140060403,
- -188654.9371244769,
- -188652.52164832054,
- -188316.35211209787,
- -188437.44986870151,
- -188505.6979547773,
- -188730.1146005567,
- -188626.47518371168,
- -188714.48761648746,
- -188407.52237097285,
- -187878.91877906496,
- -187863.0763505315,
- -187889.46739959446,
- -187982.20453415965,
- -187796.48978933724,
- -188215.89141412245,
- -188203.05941331436,
- -188146.49730992244,
- -188353.95691062772,
- -188399.5266737372,
- -188228.87698216413,
- -188298.52438193525,
- -188578.58813759126,
- -188544.9844182498,
- -188601.63158519944,
- -188847.38478974465,
- -188862.40951645246,
- -188755.79764277636,
- -189802.89679241736,
- -189993.52434262517,
- -189715.1922047365,
- -189733.53895609008,
- -189775.83618502063,
- -187142.91197584823,
- -187290.77255972844,
- -188686.42209622622,
- -188898.14405130423,
- -188708.29689676486,
- -189354.12525608385,
- -188852.3212319449,
- -188580.35998296886,
- -186997.42230628218,
- -187201.35993908736,
- -187014.687885825,
- -187284.51386784925,
- -187064.97682941234,
- -187207.75294265902,
- -187360.87681263685,
- -187356.2702630445,
- -187293.05247629643,
- -187428.0603982613,
- -187177.84871112878,
- -187307.39001224304,
- -187136.34909378062,
- -186899.42802989998,
- -186811.0259265327,
- -187248.96487327036,
- -187252.0636923649,
- -187100.6777743965,
- -187236.13957324318,
- -187245.60588781812,
- -187356.27166993468,
- -187208.07756964676,
- -187185.59605571016,
- -187270.27839081976,
- -190313.3433016634,
- -190457.10477513168,
- -189545.14535960605,
- -189494.47629843102,
- -189570.22630755027,
- -188823.48915271257,
- -188865.64963285843,
- -188552.1363584385,
- -188619.1510519812,
- -188607.08239080833,
- -188752.95402744415,
- -188809.1513214061,
- -188896.28428937343,
- -188888.90122016604,
- -188651.0311671839,
- -188776.98081559045,
- -188838.6412495665,
- -188699.98510029077,
- -188861.55098448345,
- -188762.69707663247,
- -188923.10925551094,
- -188763.50010894032,
- -188741.78613036394,
- -188883.2552726653,
- -188712.7041078951,
- -188881.00360508487,
- -188390.8105047042,
- -188699.0734942116,
- -188827.92401582585,
- -188894.79960782512,
- -188931.13202414938,
- -188794.56392041262,
- -188852.1069479377,
- -188953.8661182334,
- -188771.58744733158,
- -188730.8485746518,
- -188701.8704289315,
- -188737.72953596013,
- -188660.35107391197,
- -188853.6550247938,
- -188922.932948625,
- -188957.68048442173,
- -188799.11774294777,
- -188847.64672820744,
- -188887.03812416104,
- -188451.27752479166,
- -188795.36556420612,
- -188747.6297643966,
- -188640.27812372334,
- -188696.12511807954,
- -188675.42898269245,
- -188834.95098552675,
- -188763.50635195625,
- -188857.6640882033,
- -188869.67914135032,
- -188948.13019580705,
- -188881.2122130014,
- -188804.45974852913,
- -188807.0153833909,
- -188992.52597648092,
- -188691.38600189023,
- -188948.31282661355,
- -188943.01247223295,
- -188666.8490319798,
- -186755.8790869865,
- -187055.96567581533,
- -186938.30669909163,
- -186939.5914131338,
- -186968.9595965698,
- -186973.58842409158,
- -186996.0641120089,
- -186927.14507917225,
- -188126.36856649444,
- -187989.0606507604,
- -188345.30883986986,
- -188024.0209446362,
- -187981.19938609967,
- -188370.6918408433,
- -188372.59542666713,
- -188290.10180168305,
- -188180.75968110925,
- -188032.18651155845,
- -188456.66581593105,
- -188411.54018031366,
- -188603.7382084354,
- -188526.96284229629,
- -188044.24931373517,
- -186594.78042197166,
- -186557.0441814957,
- -187450.78776177226,
- -187654.4132413958,
- -187298.15982685503,
- -187654.50341685605,
- -190240.44111720624,
- -190204.69430696947,
- -190247.32743206137,
- -190116.23170855152,
- -189822.41604996356,
- -190052.50408411375,
- -189978.73620741625,
- -189991.84017777976,
- -189927.37323736722,
- -189963.82074388396,
- -189953.3400875045,
- -190023.03157957617,
- -191196.78522172087,
- -192597.09524694833,
- -192895.82000379864,
- -192937.6195482761,
- -192963.4726938061,
- -192528.2497704212,
- -188998.86112254602,
- -189079.51045495822,
- -189030.98601303186,
- -189281.1745312478,
- -188992.39721257958,
- -189440.84837420477,
- -189362.363551564,
- -189418.5635541344,
- -189367.09601308653,
- -187581.6603888008,
- -187785.48520829526,
- -187632.458215042,
- -188155.6028932805,
- -187435.4461049656,
- -187231.93304935156,
- -187435.52201434693,
- -187501.4728511325,
- -187668.08951668267,
- -187708.40512644028,
- -188147.31119030315,
- -188675.0008515813,
- -189810.78317731756,
- -189794.89106257277,
- -189717.23712618652,
- -189900.2372679593,
- -189825.69648692242,
- -187226.894383661,
- -187178.20205640906,
- -187136.8960553202,
- -185238.39783400472,
- -185242.5030415149,
- -185345.7950604921,
- -185410.27123301756,
- -185416.34499830386,
- -185342.93001344596,
- -185340.5244730282,
- -185450.9592763067,
- -188074.3879708484,
- -188044.7241588103,
- -188191.30626510383,
- -188068.61579568117,
- -187947.28406376718,
- -187639.40616431175,
- -187644.44181296264,
- -187708.90496310382,
- -187881.68699067866,
- -187821.27637982904,
- -187816.77484224085,
- -187778.33799052887,
- -187888.0480726681,
- -187900.6198216651,
- -187767.44388922982,
- -187824.64761095232,
- -186946.49920168173,
- -186875.07184791236,
- -186883.20867396414,
- -187589.55648392823,
- -187225.69080118512,
- -187537.9427673691,
- -188286.14667897578,
- -188172.5591447211,
- -188398.48892919585,
- -188163.391662388,
- -187804.12340613295,
- -185577.83795216106,
- -187501.71933425503,
- -187587.08880175353,
- -187521.54406894254,
- -188028.0949108722,
- -188061.22295862038,
- -188256.72208444707,
- -188476.10056489505,
- -188485.98826566394,
- -188518.84975849348,
- -188518.25470222684,
- -188453.06253164104,
- -188396.41158598493,
- -188345.5402286827,
- -188383.97417014395,
- -188397.65911864082,
- -188327.75352780774,
- -188011.48721764886,
- -188302.3685863598,
- -188359.7452217864,
- -188067.38926369348,
- -188501.6178230978,
- -187567.7001615884,
- -186675.79639052547,
- -186707.68769738608,
- -186889.37334551246,
- -186291.1911451345,
- -186989.15942660804,
- -185853.3718166437,
- -187271.08204112732,
- -187348.63421752062,
- -187554.30501214246,
- -187649.85293612428,
- -186879.65209386378,
- -187244.61048096724,
- -187154.04340592172,
- -187692.31182614467,
- -186640.3528644003,
- -186681.88272520696,
- -186350.56007629345,
- -186557.0595740633,
- -187487.54660540985,
- -187371.21086043568,
- -187303.41224789037,
- -187411.98825159538,
- -187463.35967468497,
- -187318.19430842687,
- -187437.8841669884,
- -186033.67372700493,
- -186008.7916507735,
- -186078.14045517158,
- -186108.63102585988,
- -186939.9285527728,
- -186936.38431708724,
- -186972.09442050973,
- -186879.7359633921,
- -186984.41818152944,
- -185969.2729297153,
- -185798.58472768634,
- -185870.23223539593,
- -189292.95169776288,
- -189494.6934112341,
- -189326.24295138277,
- -189480.1865117243,
- -189446.34306059004,
- -189358.18497589478,
- -189404.17320247806,
- -189265.0231138431,
- -189372.33628926397,
- -189458.1241264266,
- -189129.6599752958,
- -189426.05987348396,
- -189409.23422673906,
- -189286.6328264702,
- -189389.49688049342,
- -189313.74074668097,
- -187751.72083891128,
- -187076.09070858092,
- -186912.38462175036,
- -188965.47987347044,
- -189069.16209137047,
- -189102.77715540328,
- -189135.83882498092,
- -188978.2368169874,
- -188961.64872165,
- -189021.61764845366,
- -188762.91719638073,
- -187661.2072276682,
- -185455.67429735223,
- -185449.35314495498,
- -185711.47020234595,
- -185720.25737344744,
- -185791.17667712452,
- -185644.0000068018,
- -185702.2403112886,
- -185714.91162220383,
- -185966.1274989558,
- -186029.8168894544,
- -185980.73022512393,
- -185918.62006951767,
- -186074.34110850515,
- -185967.65473758016,
- -185912.79278654896,
- -185910.2529198803,
- -186074.93122414872,
- -186001.86051648084,
- -186832.7195104887,
- -186108.97183798853,
- -186102.11742970758,
- -186268.66597161358,
- -186147.42151117936,
- -186134.44552984045,
- -186116.22553471103,
- -186240.78791235245,
- -186220.0874551632,
- -186211.2465119336,
- -185721.6361586473,
- -185731.8584489242,
- -185807.2781334582,
- -185677.78297079756,
- -185777.8946131462,
- -185711.15775236682,
- -185463.91840826042,
- -185433.64652967916,
- -185662.1639660892,
- -185822.67958441644,
- -186298.50636453225,
- -185689.56644176925,
- -185438.26027515047,
- -185409.17303563593,
- -186224.27135727915,
- -186298.08317751426,
- -186345.2599174619,
- -186205.19783801437,
- -186247.72530939055,
- -186256.56822646176,
- -186150.59933272027,
- -186288.81160163097,
- -187443.3928854305,
- -187452.1772530611,
- -187642.96896241207,
- -185878.00221058106,
- -185807.32743469166,
- -185902.22732454303,
- -186606.81926120326,
- -187647.5690992496,
- -186476.53578284683,
- -186438.41734368665,
- -186573.2937496868,
- -186502.02138871377,
- -186349.21861987398,
- -186310.0223569153,
- -186274.76857716416,
- -186331.85276631886,
- -185983.7434419839,
- -185818.1346321836,
- -186002.50966320807,
- -186042.88912072591,
- -186121.47925284848,
- -186717.06241415057,
- -185916.95262886243,
- -185806.39721748504,
- -185580.1522161938,
- -185880.08983432362,
- -185934.5985057661,
- -186056.47685413636,
- -187823.113834285,
- -187877.20307305898,
- -189116.18185272234,
- -189150.4406044805,
- -189062.64094765644,
- -189084.98088599712,
- -189112.29607800412,
- -189029.52319166693,
- -189143.4111983908,
- -189055.97021726094,
- -189166.74178145034,
- -189245.6231883351,
- -187672.05038897906,
- -186892.24831707022,
- -185501.22940075284,
- -185887.9116084029,
- -185852.81758394415,
- -186551.7145795559,
- -187426.84525135905,
- -187378.69444328308,
- -186788.20187772284,
- -186763.38064184826,
- -186701.82275168115,
- -188314.138705119,
- -187817.7468885494,
- -188092.37659809837,
- -188180.72176382353,
- -188414.69558309155,
- -188059.4601945175,
- -188373.40505639598,
- -188264.2195934443,
- -188320.12878054316,
- -188279.3082778884,
- -188259.35815363447,
- -188381.41438960162,
- -188456.62670565912,
- -188203.95744939387,
- -188267.72042267103,
- -189029.3114905367,
- -189629.98277226143,
- -189142.84215571234,
- -188622.02436373147,
- -188630.3315350438,
- -185323.49054395297,
- -185924.99338734476,
- -185895.40664220214,
- -187147.5761046197,
- -187108.92789936063,
- -187993.21676425092,
- -187922.35810760508,
- -187892.88679803116,
- -187666.8726984889,
- -187557.1706597231,
- -186313.83578554614,
- -188083.38799385336,
- -187259.12778693333,
- -187273.5342161505,
- -187331.86667688502,
- -187331.38102223023,
- -187227.1136100382,
- -187171.76294520684,
- -187181.90006387417,
- -187306.32934127536,
- -187243.66628145642,
- -187271.48480846945,
- -187256.19230974244,
- -185657.2917482269,
- -185666.85028914805,
- -185591.8222642259,
- -187103.63428327104,
- -188209.54055470478,
- -188222.8670521776,
- -188362.19832204955,
- -187529.6417177125,
- -187434.5731242961,
- -188632.7958142112,
- -187021.88931313905,
- -187431.9043514244,
- -187477.0269830232,
- -187338.2293802138,
- -187320.91315713827,
- -187227.73220051124,
- -187345.71837811806,
- -188439.03343750766,
- -188408.0615378219,
- -188313.1182042166,
- -188352.28480591113,
- -188446.83179684373,
- -188296.7781034227,
- -188380.76386155013,
- -188414.5214674675,
- -188231.59919262267,
- -188324.05487145262,
- -188410.1995272695,
- -188137.98152500016,
- -188169.61385914954,
- -188305.0884720353,
- -188124.0392341609,
- -188417.5878908665,
- -188385.25230416303,
- -188342.91289083599,
- -188370.81252883916,
- -188341.34483720383,
- -188301.141957558,
- -188351.53178116586,
- -188385.78051688513,
- -186621.86407557828,
- -186437.83235122028,
- -186648.74080964338,
- -186693.89186781415,
- -186609.15991015043,
- -186541.94642658572,
- -186694.5596479308,
- -186029.39161897544,
- -185985.24596467766,
- -185111.35544820773,
- -184878.2925505224,
- -184900.92048438126,
- -184980.95907930352,
- -184830.82603230205,
- -184985.15467209017,
- -184866.84489150278,
- -184971.35089743548,
- -184817.5826812654,
- -184926.39571750653,
- -187944.50525826582,
- -187830.56628117207,
- -187777.7246566672,
- -187860.09405448032,
- -188340.82871420533,
- -187565.0428723036,
- -187698.48595699875,
- -187787.3662495655,
- -187844.7862156998,
- -187744.18704166426,
- -187702.7046883214,
- -187652.86349496595,
- -187596.90565444194,
- -187363.10526503893,
- -187316.0784152729,
- -187391.86258957486,
- -187448.2440636445,
- -187532.07471562567,
- -187466.55375368948,
- -187455.6494347709,
- -187150.13887341777,
- -185776.61739803432,
- -185680.40854732087,
- -185830.5389118821,
- -185650.36841039386,
- -185677.2673627574,
- -185485.39401094842,
- -185469.22223657562,
- -185206.36499600124,
- -186018.1826105063,
- -187401.52853024635,
- -187570.49869336904,
- -187541.9398725673,
- -187030.8972838196,
- -187083.4526611306,
- -187603.82918211873,
- -187647.28536999365,
- -187308.42593291332,
- -186478.90406636745,
- -187768.17273301232,
- -187767.25461447696,
- -188326.21750175883,
- -188576.2471463381,
- -188259.41185450985,
- -188247.40100032825,
- -188286.73832435787,
- -188135.24485311715,
- -188421.00379537063,
- -188338.0087478835,
- -188259.29964565398,
- -188174.46166792992,
- -187733.72742661694,
- -189209.24392154833,
- -189128.66516890543,
- -189089.44703730565,
- -189062.26751784116,
- -189006.18627960136,
- -189111.3455266276,
- -189183.16372887848,
- -187208.4193053007,
- -184875.45037648498,
- -184932.71484965115,
- -186360.36121976856,
- -186390.50909656734,
- -186320.02787605638,
- -184958.27162066122,
- -185033.19564760168,
- -185026.3672666458,
- -187316.7533220786,
- -187314.78830484283,
- -187883.4205209049,
- -187808.0234352976,
- -187776.47222745066,
- -187832.17732583472,
- -187638.8520412594,
- -187656.30212836852,
- -187855.14822512827,
- -187775.23649809035,
- -185541.74694908792,
- -186776.31835431908,
- -186729.0680799888,
- -187779.0215989265,
- -187810.13455863777,
- -186667.31905664725,
- -186561.9599579625,
- -187383.1444426275,
- -187447.61429908752,
- -188454.13766259872,
- -186964.5945298959,
- -188063.1798418329,
- -188001.539550981,
- -187993.0192754519,
- -188024.4130746416,
- -187747.9444130807,
- -187744.0116635731,
- -187731.8432907234,
- -187573.80466904546,
- -187598.80645447352,
- -187596.5046491663,
- -187288.80200411892,
- -187262.42396248772,
- -187561.7118743889,
- -187419.58663264677,
- -187402.7377700646,
- -187339.4240354632,
- -187316.92185478634,
- -186977.2543088253,
- -187878.10399634237,
- -187863.8697123179,
- -187890.12675137995,
- -187814.57497653816,
- -188215.60907166445,
- -188280.47213881285,
- -188236.56312966373,
- -188210.48406885206,
- -188193.0718934871,
- -188271.17600125467,
- -188293.4502131511,
- -188171.78614487077,
- -188012.6788621272,
- -185655.59341981533,
- -185736.52136136606,
- -185770.88788624728,
- -185697.46901445196,
- -185414.48586402094,
- -185132.4642161289,
- -186356.13856033777,
- -186313.2958451689,
- -186338.92011198975,
- -184516.72003001926,
- -184843.76024899518,
- -184933.89129201812,
- -184021.75602492446,
- -184691.19229069614,
- -184152.9240079309,
- -184482.14613425103,
- -183953.893675741,
- -184469.7626795134,
- -184344.23325082078,
- -184103.1688565142,
- -184685.21209432156,
- -184415.6816187155,
- -184632.38804639404,
- -184375.86977942512,
- -184332.48851433082,
- -184723.2742356617,
- -184005.75934572695,
- -185281.13137164246,
- -183999.60156087438,
- -184625.9060468856,
- -184466.14155302377,
- -184542.5949496982,
- -184302.81502155322,
- -184560.35288850742,
- -185118.94034561815,
- -184086.80238717035,
- -184046.9710787171,
- -184809.0256036502,
- -184399.0840219996,
- -184391.88672906658,
- -184053.19035581584,
- -184512.93542301055,
- -184548.98355077006,
- -184938.66553901948,
- -183986.1946205672,
- -183956.9061762835,
- -184572.61247797642,
- -184674.4397575011,
- -184157.5174739141,
- -184478.13298193726,
- -183878.92287719354,
- -184826.67048045195,
- -183926.29882842753,
- -183984.95380032572,
- -184517.13018578722,
- -184534.56925160962,
- -184964.8159797254,
- -184359.2583782949,
- -184454.54429874875,
- -183922.4251984298,
- -183983.12872461032,
- -184448.92155459523,
- -183926.65394185428,
- -184483.14178490062,
- -184459.0371071663,
- -183908.0265364355,
- -184093.90873268884,
- -184448.99616662858,
- -183772.9734046665,
- -184052.96519921636,
- -183918.1878761729,
- -184098.43718922336,
- -184056.83511514793,
- -186797.6920016611,
- -186764.78961016686,
- -186606.74246421392,
- -186814.08319625797,
- -186841.85064924235,
- -185229.98445879115,
- -188223.46779498976,
- -188109.9241793382,
- -188213.9164635894,
- -188205.49509758296,
- -188211.13477789238,
- -186979.2569175904,
- -186921.99192275654,
- -187768.56183739353,
- -187794.3370978308,
- -188356.18496868218,
- -187548.05692883665,
- -187406.00798270156,
- -188336.9253777015,
- -187323.43987749555,
- -187120.4632982402,
- -187105.4559362055,
- -187186.98604338866,
- -185016.98524079414,
- -185085.52919270555,
- -184987.4994595672,
- -187742.4789028903,
- -187594.73212482024,
- -187526.96904194946,
- -185580.45179848326,
- -185344.8813752901,
- -185852.06992264595,
- -185836.92063664558,
- -185725.27257533383,
- -185784.19337082037,
- -185614.49407683435,
- -186964.24290234642,
- -186779.89753024382,
- -185624.99907570484,
- -184719.94581504792,
- -184726.23986392902,
- -185955.71425621217,
- -185838.49510347802,
- -185787.33131372032,
- -185765.99863251753,
- -185817.8275685583,
- -185963.7812395475,
- -185746.10347257685,
- -185842.28988354502,
- -185790.03574118888,
- -185826.68751853835,
- -185733.232588588,
- -185937.87729888412,
- -189368.39644194843,
- -188481.58842989343,
- -188436.02662832712,
- -188325.26049889467,
- -186771.04894559522,
- -186697.15984983026,
- -186693.21655215652,
- -184892.2726260721,
- -185567.8690752443,
- -185578.18959431755,
- -185583.02070754246,
- -185562.19137743715,
- -186403.77082742343,
- -184575.60851572294,
- -186874.65690847478,
- -186891.23996141268,
- -186834.68317631911,
- -186910.4333978544,
- -185651.45994159847,
- -185623.0827940337,
- -185632.32875706351,
- -185666.31528947095,
- -185554.52363601752,
- -186288.04758386785,
- -185753.3971158193,
- -186310.58059116386,
- -184616.7688318368,
- -184401.87544151273,
- -184525.4736316065,
- -186276.35195535765,
- -185972.8434477619,
- -186838.5032892438,
- -185727.61304680264,
- -185697.17376918934,
- -185798.98620961388,
- -187642.51836253164,
- -187764.57816116777,
- -187542.06987581123,
- -185293.2187831642,
- -185903.43875753888,
- -185785.14838709997,
- -185973.87764999818,
- -186067.0862167175,
- -186158.97877465814,
- -185989.4316304029,
- -186114.6936778866,
- -186055.8109308676,
- -185291.57756024352,
- -185048.40507163212,
- -185076.47558780372,
- -185092.58870926997,
- -185301.4444383572,
- -185242.82400176267,
- -185140.83648854677,
- -185157.6814537348,
- -185155.94466425403,
- -185208.11002613642,
- -186565.59087154226,
- -186480.25347723064,
- -184448.6407484703,
- -184666.32580902395,
- -184668.23630678613,
- -184495.94596649605,
- -184482.70184172114,
- -184478.35050815623,
- -184512.32520094118,
- -184261.5465761945,
- -184634.49566379888,
- -184560.19984549735,
- -184670.23840157985,
- -184371.61625666966,
- -184578.3021335712,
- -184565.8562626501,
- -184563.241697051,
- -184561.60399324592,
- -184436.1199384927,
- -184432.395119436,
- -184361.95124302662,
- -184540.22533401122,
- -184570.8246640068,
- -184324.04454522333,
- -184444.7061040916,
- -184434.7383033702,
- -184412.2399147937,
- -184385.86924617414,
- -184647.3278054887,
- -184525.70918441145,
- -184452.65560742965,
- -184455.16677151565,
- -184602.90357108583,
- -184335.66035031216,
- -184329.45753261627,
- -184396.19705080253,
- -184415.37550663672,
- -184603.9470967293,
- -184259.92373122973,
- -184555.74403726184,
- -184468.20206422772,
- -184378.76424846865,
- -184349.91600976678,
- -184416.8796289699,
- -184531.81137137485,
- -184365.4363055658,
- -184522.8186824892,
- -184214.71754588166,
- -184462.5055205388,
- -184630.82440155972,
- -184268.241804971,
- -184387.83293723778,
- -184263.5080821243,
- -184299.18997492632,
- -184595.47202338692,
- -184367.0304015083,
- -184503.80352402254,
- -184699.5789652916,
- -184396.12613862206,
- -184558.88043573382,
- -184443.74404577023,
- -184532.7557788167,
- -184485.79925380167,
- -184585.6667816663,
- -184535.5438101554,
- -184312.79009042695,
- -184469.3966283573,
- -184380.98245245064,
- -184529.99194847723,
- -184415.93947968376,
- -184490.68544655846,
- -184353.56639420363,
- -184403.17947942961,
- -184239.7978809641,
- -184472.87944490157,
- -184437.15623543007,
- -184323.3322352525,
- -184343.2045702599,
- -184626.3527931452,
- -184462.3167709153,
- -184533.35011545193,
- -184436.2619308537,
- -184431.31792950505,
- -184608.74823234757,
- -184525.2715713245,
- -184325.9582852508,
- -184428.10464539006,
- -184371.6132084216,
- -184211.15437910138,
- -184572.96927713798,
- -184583.2702726393,
- -184430.24335061625,
- -184403.36231750465,
- -184453.03854239488,
- -184385.02662899948,
- -184588.89026853853,
- -184470.32547589156,
- -184590.07805586595,
- -184541.99719453312,
- -184491.53542994565,
- -184482.47262135896,
- -184411.4790215959,
- -184521.32453058366,
- -184314.30332101538,
- -184366.10316420314,
- -184303.13965177367,
- -184460.4007301304,
- -184666.42142408775,
- -184598.78127871666,
- -184634.43962006122,
- -184510.82978744808,
- -184295.7969173079,
- -184270.03347038655,
- -184562.56576027544,
- -184335.1636910743,
- -184393.67580475452,
- -184415.05527906748,
- -184359.19078144277,
- -184517.4784958797,
- -184361.13898158647,
- -184483.3183891127,
- -184530.67200001556,
- -184319.54353745113,
- -184442.3560432253,
- -184343.06019309026,
- -184499.12636936383,
- -184309.25597490775,
- -184609.18084080587,
- -184650.4287460847,
- -184514.18980174183,
- -184624.57672919738,
- -184479.1033492302,
- -184519.87542979151,
- -184441.9149540535,
- -184632.72769793158,
- -184497.03806767587,
- -184384.12166117266,
- -184280.1057777649,
- -184496.8931498738,
- -184398.13435960136,
- -184297.99249258768,
- -184338.27076041044,
- -184415.7362226067,
- -184546.95625114103,
- -184457.04009611104,
- -184372.91083005106,
- -184347.8071741038,
- -184518.7451596348,
- -184406.7120236349,
- -184293.26120611504,
- -184266.78907644618,
- -184209.51427339256,
- -184398.74708779794,
- -184614.44298991206,
- -184632.3570707878,
- -186007.6159161239,
- -186163.37174399567,
- -186107.7087016988,
- -186053.46910530954,
- -185967.29699299918,
- -186292.72724037222,
- -186455.910536921,
- -186026.151084583,
- -186855.24147507292,
- -186711.62852341603,
- -139341.949669956,
- -139539.797746249,
- -139146.21128232183,
- -139565.22959641,
- -139465.3572705693,
- -139296.28092584724,
- -139274.0018388218,
- -139295.3614578835,
- -139258.7541785887,
- -139233.79058958867,
- -139465.6696429816,
- -139421.82453819446,
- -139314.36540387178,
- -139471.37099448388,
- -139322.61723275625,
- -139254.49879413686,
- -139152.07069639352,
- -139446.30071366948,
- -139338.01794312976,
- -139349.40202200913,
- -139454.68894926444,
- -139556.73393765689,
- -139401.883376087,
- -139542.7100989013,
- -139525.78047562818,
- -139405.61393328427,
- -139426.94510950823,
- -139521.39146743398,
- -139421.50755701648,
- -139349.08980886897,
- -139525.91943066413,
- -139272.999764756,
- -139272.36405853787,
- -139336.093312044,
- -139246.6141244061,
- -139523.06559060336,
- -139247.63421479816,
- -139207.23911923319,
- -139476.1859444214,
- -139329.5233097719,
- -139294.17738416753,
- -139215.67203308453,
- -139343.36984284074,
- -139356.00664369308,
- -139261.90354299522,
- -139184.40763990118,
- -139349.4517755712,
- -139476.30021379262,
- -139542.46177825486,
- -139219.37353035068,
- -139431.9287754304,
- -139403.71827377586,
- -139622.15994571723,
- -139284.25180573002,
- -139218.83581593077,
- -139644.58808539595,
- -139222.4936281499,
- -139420.3443880718,
- -139486.84931904363,
- -139275.2295283498,
- -139592.2183367796,
- -139230.0369023893,
- -139470.57660551192,
- -139300.0220610434,
- -139449.34942189485,
- -139256.2653134632,
- -139514.16899338784,
- -139255.36501145226,
- -139347.38841428462,
- -139398.2862961737,
- -139186.35936738102,
- -139422.8248009617,
- -139371.6788113676,
- -139225.554311968,
- -139267.33349575038,
- -139318.1970961605,
- -139569.97881076875,
- -139270.18681502272,
- -139325.29900676035,
- -139340.60702624888,
- -139291.87542162067,
- -139624.6153460218,
- -139676.67233930697,
- -139375.54836322943,
- -139384.8347452151,
- -139550.11749199033,
- -139375.36967259427,
- -139348.05547720563,
- -139257.18421795493,
- -139254.19065915552,
- -139280.63467425137,
- -139453.21013689402,
- -139222.95188000842,
- -139338.8615734688,
- -139127.0662061807,
- -139201.34117110627,
- -139332.2127012205,
- -139324.84427304813,
- -139250.52794257455,
- -139481.79335763532,
- -139315.25978792255,
- -139302.56149450256,
- -139375.76431838053,
- -139305.36694469122,
- -139629.7013795666,
- -139245.1631113287,
- -139150.7296967715,
- -139602.53344158875,
- -139430.88631425935,
- -139249.79431222109,
- -139268.95938093786,
- -139399.45535473176,
- -139521.13313974865,
- -139562.00160215882,
- -139296.22896657095,
- -139181.26970845836,
- -139531.90105065668,
- -139624.8964741382,
- -139440.99814282567,
- -139172.61805303066,
- -139252.62835533492,
- -139239.7146275747,
- -139406.58475620614,
- -139305.65388160577,
- -139245.6143086338,
- -139362.49801767562,
- -139368.9630914053,
- -139496.4003878001,
- -139210.4343189794,
- -139251.7462727586,
- -137645.21150798537,
- -139347.1583152886,
- -139185.43947442787,
- -139141.95977890037,
- -139374.80029288903,
- -139298.21212116178,
- -139245.84191401702,
- -139386.5195070693,
- -139458.52947640378,
- -139319.53739196222,
- -139500.62502624292,
- -139269.75368532154,
- -139353.4017776092,
- -139497.7060077906,
- -139392.14969518423,
- -139465.92291392805,
- -139446.17035811715,
- -139288.9652240138,
- -139258.63230897923,
- -139222.34616055127,
- -139579.0114335206,
- -139504.72005689488,
- -139301.92562235743,
- -139323.9460419651,
- -139301.641083254,
- -139487.4178243815,
- -139368.99379823424,
- -139341.07849414786,
- -139230.70690965184,
- -139322.4115244643,
- -139499.0742565992,
- -139299.58894052787,
- -139361.88864313313,
- -139552.7148175742,
- -139319.57765505658,
- -139452.5128782478,
- -139262.00402649786,
- -139325.02744581705,
- -139337.2275268746,
- -139407.11302883684,
- -139273.62445480048,
- -139199.82122981313,
- -139293.78939414152,
- -139312.25160916877,
- -139309.58979877408,
- -139287.7030189087,
- -139455.60678241128,
- -139238.1184562021,
- -139561.07093915364,
- -139356.6211330608,
- -139481.56579861138,
- -139205.18843565695,
- -139293.35993355856,
- -139500.82792815822,
- -139381.53581003318,
- -139272.1101007574,
- -139204.18767959758,
- -139466.64476026874,
- -139244.23799759592,
- -139412.313857633,
- -139490.90714418553,
- -139564.66187716788,
- -139419.0209359383,
- -139195.77514016427,
- -139620.6116018754,
- -139403.47462324586,
- -139390.86121724633,
- -139278.73799679236,
- -139355.46728532106,
- -139325.20445922078,
- -139268.90384384684,
- -139368.21065153804,
- -139243.84566835393,
- -139439.8644722435,
- -139311.07528284538,
- -139452.66971040476,
- -139410.2270479437,
- -139233.21359476962,
- -139386.56646685992,
- -139330.93814001975,
- -139292.83803425037,
- -139565.19409284645,
- -139280.11347929307,
- -139371.4788165129,
- -139255.5205051406,
- -139380.35416142584,
- -139440.57369675537,
- -139256.15369253952,
- -139350.5393342178,
- -138292.50237790353,
- -139393.05546993954,
- -139343.99282516513,
- -139492.56377327073,
- -139328.0534871222,
- -139590.06090134796,
- -139268.65204027394,
- -162116.20043753972,
- -162125.48737219273,
- -186210.2538179402,
- -186189.87064224097,
- -185633.56148535747,
- -186484.6927396635,
- -185717.30202552347,
- -185565.68090042786,
- -185436.73528009508,
- -185387.24181644092,
- -186693.21580687084,
- -186817.60492868512,
- -186771.81868420233,
- -186646.66034112757,
- -187059.63779786762,
- -186549.29909114336,
- -186609.05910111836,
- -188163.4372575625,
- -188178.96030772812,
- -188757.56169839122,
- -188351.81043164252,
- -188249.63103895306,
- -188730.12048244115,
- -188276.72026730192,
- -188189.30416656632,
- -188192.0034322741,
- -188290.9601897545,
- -188719.19122749128,
- -184743.18095205686,
- -186510.77814177045,
- -186573.3663340251,
- -186606.6604376666,
- -186376.56840758125,
- -186481.02628071915,
- -186270.72457911135,
- -186368.82373217016,
- -186959.9607940277,
- -186229.18141067243,
- -186563.95497765776,
- -186483.8946055219,
- -186511.39743435007,
- -186382.5747826665,
- -187046.01116874782,
- -185485.81598355123,
- -185498.34392864152,
- -185701.20064437657,
- -185624.12085151995,
- -185825.18129384934,
- -185792.9261615262,
- -185777.55867690372,
- -185599.70858937444,
- -185694.282919335,
- -185472.77572732724,
- -185549.58620082302,
- -185819.18617559347,
- -185751.22791972532,
- -185694.7882635787,
- -185592.74158341286,
- -185714.6501823629,
- -185796.95803472877,
- -185665.73353903665,
- -185590.6028889697,
- -185680.08075913816,
- -185578.91825066306,
- -185742.93606300268,
- -185770.52060652812,
- -185623.07925557217,
- -185822.61530116087,
- -185511.56454960397,
- -185722.02131296776,
- -185684.72951200834,
- -185546.35826834274,
- -185650.08701435704,
- -185542.62007957482,
- -185750.34116926818,
- -185562.20409519147,
- -185578.7055139462,
- -185625.67626786084,
- -185642.09079542043,
- -185662.28784714767,
- -185541.54208441218,
- -185668.33577293195,
- -185750.3502888854,
- -185861.49673175454,
- -185708.1687654314,
- -185618.98439702013,
- -185518.24947672113,
- -185835.7597285131,
- -185773.82512637385,
- -185512.78839085187,
- -185652.0261395966,
- -185746.51091015068,
- -185873.04603168063,
- -185361.677162874,
- -185411.21735269792,
- -185521.48335125647,
- -186857.89701196033,
- -185379.7874590432,
- -185314.1328971909,
- -185396.9854106273,
- -185739.1249763607,
- -185362.75844820152,
- -185281.317667854,
- -185272.70789378206,
- -185291.36523286297,
- -185174.38186064654,
- -184746.1499818466,
- -184689.754206081,
- -184843.0177536058,
- -184853.5029479663,
- -184718.15641227114,
- -184800.69552071634,
- -184707.82276925643,
- -184774.76972403165,
- -184826.2852678662,
- -184771.05300911746,
- -184684.19434018733,
- -185078.36462542813,
- -186687.5390903128,
- -186171.58567249685,
- -187787.56778004483,
- -187824.5134312553,
- -187833.02563482567,
- -187581.7153446357,
- -187652.55658732413,
- -187580.99353856346,
- -187754.07494608234,
- -189535.01243196902,
- -189425.32230335136,
- -189312.48116427055,
- -189513.44740838156,
- -189517.99575540732,
- -189944.012554813,
- -189496.79918659473,
- -189469.04376733972,
- -189362.47419392664,
- -189382.47630280166,
- -189485.70992618654,
- -189559.7791311184,
- -189500.13200693708,
- -189363.56864523052,
- -189453.44844629106,
- -189572.48058974993,
- -189475.58635906797,
- -189526.51874136768,
- -189367.89125734873,
- -189541.99521682394,
- -189567.65578797,
- -189471.45745863195,
- -189366.884398309,
- -189599.46915367024,
- -189455.07428863845,
- -189511.27264576766,
- -189580.51999570787,
- -189452.41670386208,
- -189357.50921074985,
- -189441.34490278744,
- -189338.2129481716,
- -189539.74164709073,
- -189596.23961239535,
- -189439.38497924476,
- -189423.64743936853,
- -189409.86495387822,
- -189539.70128887953,
- -189667.71460354235,
- -189593.34528908966,
- -189550.91913873702,
- -189351.29030582856,
- -189944.03349898005,
- -189421.9621471471,
- -189523.16925353085,
- -189362.616609502,
- -189550.7519103663,
- -189303.51340100932,
- -189504.79772117123,
- -189478.73813235975,
- -189513.39599368742,
- -189335.5119015967,
- -189566.15070619906,
- -189492.97056199546,
- -189370.19960247193,
- -185013.49245940326,
- -184958.53058641133,
- -184935.10362539484,
- -185074.06093464053,
- -184859.90571038926,
- -185383.19785552978,
- -185727.50454600956,
- -185535.53248590635,
- -186134.11497462608,
- -185680.67525457422,
- -185536.38613328367,
- -185655.1626902235,
- -185488.5778872063,
- -186105.887330311,
- -185976.58162628958,
- -186073.11253527744,
- -186128.44688249985,
- -186033.4105802999,
- -186002.9429366717,
- -186045.44966286444,
- -186081.69116184756,
- -185660.47909749488,
- -185707.75565992156,
- -185700.99602275767,
- -185718.84276913418,
- -185902.6810428331,
- -185956.2569658538,
- -185833.31614885287,
- -185851.9149913291,
- -185927.02764805633,
- -185956.9814913556,
- -185864.94860133113,
- -185974.76542021832,
- -185843.3464556168,
- -185802.44778285624,
- -185754.544341611,
- -186863.0905598625,
- -186747.14508188295,
- -186786.29748301074,
- -186598.35931928424,
- -185525.00035815442,
- -185444.044824558,
- -186566.67634397448,
- -185354.45827997458,
- -184622.6678207158,
- -184757.69014603368,
- -185572.97533470273,
- -185426.46129555986,
- -186389.46830649345,
- -186349.721133472,
- -186355.21655197296,
- -186513.88131954975,
- -186461.71104419266,
- -186495.60474119912,
- -186499.94535950987,
- -186065.51198935235,
- -186213.8074190881,
- -186160.78639569957,
- -186112.10093216717,
- -187073.89756594264,
- -186996.16233734277,
- -186997.73649561932,
- -186937.89091646543,
- -186864.95551788062,
- -186985.11266736986,
- -187030.91302532048,
- -186947.00283212372,
- -186997.2675516971,
- -186875.9473745203,
- -186901.92526942323,
- -186900.29593926048,
- -187024.62336807686,
- -187037.0011573454,
- -186832.6725820172,
- -186813.1846090411,
- -186614.42390696477,
- -186560.72865754293,
- -186461.4445482228,
- -186550.8345017166,
- -186570.36775560552,
- -186423.99947252453,
- -186628.01342634475,
- -186475.36638154497,
- -186064.49513448935,
- -186061.0704683533,
- -186156.7436722801,
- -186019.09209682065,
- -186017.97165171077,
- -184373.86341036516,
- -187019.55647718406,
- -186971.5333996734,
- -187500.48780981993,
- -186878.72794609106,
- -187396.02141762438,
- -188618.1767619867,
- -186571.8229187881,
- -186630.38236103597,
- -187104.66672028726,
- -187258.6264260895,
- -187483.32473075076,
- -188300.89497706314,
- -188042.5665423474,
- -188364.38063477044,
- -187286.4447786102,
- -187200.34425699944,
- -187965.5292712589,
- -188225.16941637502,
- -188062.36969725473,
- -188181.734542407,
- -188155.6659757379,
- -188111.17360157988,
- -188128.15679037262,
- -187472.995221879,
- -187574.469287988,
- -188062.32220423166,
- -187894.01688021977,
- -188099.19669860823,
- -188601.02966071616,
- -187946.30083110215,
- -187939.07366045075,
- -187903.16231886458,
- -188040.85490399896,
- -187860.1481306559,
- -188160.71996131094,
- -187432.15774098889,
- -187525.83126370964,
- -188031.27587781637,
- -188070.40997344436,
- -188048.3992797907,
- -187895.89321173978,
- -187936.34066587713,
- -188155.82804223945,
- -188130.31137840738,
- -188120.22345911132,
- -188032.87803354842,
- -188172.4473275845,
- -187808.99921337265,
- -187967.87420157884,
- -187734.2241532564,
- -187631.17759388033,
- -187665.10987331756,
- -187571.98956801443,
- -187705.53688735073,
- -187482.80309790745,
- -187551.0033509855,
- -188658.0072073565,
- -189077.79649620972,
- -187731.77787177297,
- -187759.8314365375,
- -187692.0166453802,
- -187044.02292752767,
- -187058.71596401595,
- -187088.50568167077,
- -187073.6774906163,
- -187239.5588897707,
- -187170.77976082207,
- -186801.35615984973,
- -187206.43231087644,
- -187147.2617761165,
- -187156.6127847207,
- -187288.92506628836,
- -187242.12665091688,
- -187173.12966849466,
- -187092.16430615127,
- -187263.40330149935,
- -187369.76914685333,
- -187198.53043071972,
- -187165.6819904993,
- -187252.84288585366,
- -187210.98676202566,
- -187153.50395988487,
- -187277.2067933512,
- -187342.80854711783,
- -187068.89280375512,
- -187238.5009002487,
- -187216.975043701,
- -187109.7384653588,
- -187259.9476909209,
- -187308.82684037564,
- -187159.23609979774,
- -187363.1881956749,
- -187159.41832586098,
- -187410.99982117375,
- -187606.8809797769,
- -187444.6011580884,
- -187390.00271703285,
- -188118.10121137855,
- -188058.55113991152,
- -188152.38460645571,
- -187998.2545058029,
- -187975.58317137446,
- -188204.5488536757,
- -188186.43905492313,
- -187962.60318830537,
- -188107.7357415216,
- -188164.08029550806,
- -188015.52564658516,
- -188145.6956721136,
- -188116.4163078441,
- -188629.10826848733,
- -188615.4770908332,
- -187617.20728946448,
- -187778.39851127946,
- -188244.79326966844,
- -188213.14960795594,
- -188231.4342562094,
- -188113.22548338465,
- -188023.6918304611,
- -188262.28974807056,
- -188215.08406320887,
- -188272.12758768487,
- -188247.52374121372,
- -188234.36159403733,
- -188185.72950550105,
- -188235.01025868888,
- -188188.26732140826,
- -187106.90783512246,
- -187129.68155894056,
- -187291.27141208755,
- -187309.56083654592,
- -188031.80187769613,
- -187966.1524006884,
- -187974.4559084142,
- -187907.4340805515,
- -187767.69283004745,
- -187180.89797155827,
- -187226.84036497626,
- -187060.70491358606,
- -187284.9913843901,
- -187186.54130078974,
- -187275.69818428368,
- -187867.79057975026,
- -187990.37417889741,
- -187368.6219077213,
- -186143.80639793802,
- -187491.1668464797,
- -186533.40398627482,
- -187180.10508663693,
- -188912.60302975413,
- -185478.86967573757,
- -186026.48205634058,
- -186004.81625674714,
- -185520.730759067,
- -185998.5887411339,
- -187137.15198455175,
- -186802.3568031418,
- -186868.89558539094,
- -187655.25025753496,
- -188776.08503380354,
- -188714.40557555703,
- -188312.61881360278,
- -188175.30943800946,
- -188163.88067313796,
- -188226.39056838182,
- -188209.27391620574,
- -188335.63051938498,
- -189088.68284567073,
- -189075.73849338002,
- -188951.38770398786,
- -188963.77157590713,
- -189065.25002395606,
- -188951.75753479835,
- -188905.5182702426,
- -188940.43452731014,
- -189039.75779005556,
- -189206.12228753112,
- -188851.90860081342,
- -189009.33129113074,
- -189075.7496586295,
- -188914.1058596282,
- -189044.50009148906,
- -188978.63723458152,
- -188869.1337570157,
- -189039.16739681517,
- -189001.4557504514,
- -188915.3021854897,
- -188715.59088057993,
- -188811.45728948622,
- -189093.52694899408,
- -188064.28392279483,
- -187758.21727978287,
- -186958.81639775305,
- -186907.28656468532,
- -186927.36304929492,
- -186672.81797529917,
- -187707.60820000168,
- -187504.85470640293,
- -188023.84131581298,
- -187790.5245520355,
- -188012.06379015357,
- -187675.9578640814,
- -187970.69994692729,
- -188070.52866315134,
- -188065.10539432376,
- -187968.263731226,
- -187700.7506709641,
- -187765.9490496175,
- -188079.28387346116,
- -187859.43582945326,
- -187881.72894882134,
- -187846.40461867992,
- -187850.35451233227,
- -188149.60791583278,
- -188022.7222170089,
- -188255.90003583845,
- -188221.7088630824,
- -188193.52566727533,
- -188355.29507459403,
- -188312.87042909442,
- -188128.3711568641,
- -188355.54500076355,
- -188736.05243360804,
- -188740.43423724885,
- -188813.8225883926,
- -189133.8473924533,
- -188770.00276586786,
- -187738.94090615874,
- -187912.43204192858,
- -188179.3106533003,
- -188134.73671238107,
- -188143.66245138436,
- -188187.54601173053,
- -187975.5749715801,
- -187947.11070160166,
- -188181.5560967198,
- -187883.27494840516,
- -188169.70603632976,
- -187970.877541831,
- -188133.03987872423,
- -188110.62617021287,
- -188151.5012872308,
- -188211.38351583906,
- -187925.41207692228,
- -187993.2042355374,
- -188267.4433579352,
- -188341.5637869163,
- -188290.85103842587,
- -188325.80348101287,
- -189041.39569706662,
- -188572.92778198744,
- -188651.52337605663,
- -188170.50337793116,
- -187892.03383253983,
- -187909.65223383403,
- -188044.8103796621,
- -188041.9401363172,
- -188262.9817529038,
- -188256.1065241927,
- -188209.65683125617,
- -188114.23360095327,
- -188697.0393909679,
- -188681.5607578964,
- -188730.09509530946,
- -190034.47824283707,
- -189435.73444291795,
- -190501.98770180898,
- -190447.71814332827,
- -188084.4049082775,
- -188259.3724547593,
- -188206.0236343385,
- -188263.0862416689,
- -187803.69675157015,
- -188242.03582545792,
- -188340.80377890947,
- -188113.01612090584,
- -188417.0385262703,
- -188371.1353376313,
- -188321.03177579722,
- -188339.34322755944,
- -188251.23458842657,
- -188337.78581776284,
- -188397.17051714816,
- -188454.9590132297,
- -188208.58303294552,
- -188169.8318157927,
- -188266.84959804747,
- -187741.94817842022,
- -187915.18145302637,
- -187730.29858536096,
- -187855.06171209805,
- -188047.300018304,
- -187808.78158663612,
- -188004.16215920547,
- -188000.00859777548,
- -188755.66928509064,
- -188641.96581119657,
- -188742.29461186353,
- -188705.16194427633,
- -189490.00008750655,
- -189693.02311333298,
- -190001.3370355461,
- -190157.89391110622,
- -190149.2470879302,
- -189853.4918559908,
- -188341.7325242664,
- -188482.59835269416,
- -188516.73245045255,
- -188462.29234457048,
- -188223.6915529377,
- -189325.9475189374,
- -189443.62330827498,
- -189362.4367816456,
- -189658.36156726885,
- -188794.21431317774,
- -188577.9696506949,
- -188698.27076012257,
- -188769.9281353376,
- -188620.52703365445,
- -188670.32476137517,
- -188707.42534730173,
- -188712.10885138786,
- -188702.73035210292,
- -188711.29676749153,
- -188103.12207565852,
- -189495.15496592113,
- -188845.87523352558,
- -189032.4074763674,
- -189112.60837969606,
- -189224.72431987463,
- -189055.63729894848,
- -189078.20075112823,
- -188970.86331049414,
- -188090.16004640074,
- -188001.36342649613,
- -188049.5792653426,
- -188098.1789861639,
- -188168.62826092765,
- -188029.9456644019,
- -188084.14766681893,
- -187984.70011229935,
- -188125.29346391422,
- -187981.62287282626,
- -188040.22076810958,
- -187946.41481497037,
- -188064.20365215855,
- -188024.33796311452,
- -188016.9967920004,
- -188156.43008065908,
- -187984.27632270768,
- -188060.64962766727,
- -188017.1144187662,
- -188113.48002990385,
- -187571.6016396001,
- -187064.19611193764,
- -188444.14506902872,
- -188879.3624434629,
- -188491.01308587843,
- -188422.62348726718,
- -188362.80673320158,
- -188367.2149491498,
- -188059.13848447741,
- -188141.38815636735,
- -188116.1496857662,
- -188396.4771118219,
- -188173.86388179136,
- -188086.05933701512,
- -188212.2979830604,
- -188225.63058791048,
- -188192.74355890218,
- -188174.69316455667,
- -188123.86206640746,
- -187930.403868511,
- -188034.7860958726,
- -188020.54736677188,
- -188377.8601678689,
- -188278.16470975717,
- -187965.47459509477,
- -188379.13752876033,
- -188291.99341747075,
- -188172.93746177154,
- -187617.11614566448,
- -187526.08903537705,
- -187674.11098333378,
- -187674.84914594653,
- -187730.26368818164,
- -187736.67929052594,
- -187773.52054137996,
- -187501.71133436213,
- -187634.29116306888,
- -187558.68805862614,
- -187669.9562295721,
- -187771.99177388693,
- -186119.52079627474,
- -186288.95960552836,
- -185999.16203666863,
- -188055.39603818467,
- -187504.9066256753,
- -186969.2603064072,
- -187082.62729634583,
- -187036.27923026812,
- -188255.60873041113,
- -187976.477714238,
- -187993.00429935096,
- -188015.18762576373,
- -188502.16698048013,
- -188537.83259610005,
- -188176.72236609916,
- -188150.16400430968,
- -188490.24496475342,
- -188463.08599731518,
- -187842.37642177322,
- -189950.42776230097,
- -190060.46897811978,
- -189981.01291727906,
- -189948.99978218455,
- -189877.31094941634,
- -190014.67649279692,
- -190053.96902679597,
- -189989.4594749927,
- -190083.1171838038,
- -190096.78467347255,
- -190096.07678832914,
- -189877.19470812628,
- -190082.79529512883,
- -189883.13957683812,
- -190115.00855424744,
- -189980.07865196207,
- -190074.83957112802,
- -190002.89388120713,
- -190028.31976652934,
- -190003.88761541533,
- -189907.48300156422,
- -189952.45096025168,
- -189952.9122595734,
- -189970.4446921895,
- -190136.23241432256,
- -189913.2901080308,
- -189912.5972757215,
- -190001.55681149926,
- -190018.83290028255,
- -190055.39543139332,
- -190102.7516358813,
- -189863.3993587257,
- -190115.46594863496,
- -190023.95702336595,
- -190012.38051216485,
- -189955.59784194958,
- -190016.798744122,
- -190038.4192383941,
- -190021.38597195703,
- -190027.5122056294,
- -189925.09260238602,
- -190005.9285941052,
- -186723.40654902256,
- -188894.53982702826,
- -189183.9255548992,
- -189128.86816413907,
- -188774.29128529222,
- -188377.4874670383,
- -188384.8221014744,
- -187892.99204450037,
- -187939.69243235173,
- -188060.7588005113,
- -188141.4683259749,
- -187985.66986119872,
- -188016.84167383236,
- -188137.77621320283,
- -188059.75644058318,
- -187963.3746181554,
- -187912.61343497797,
- -188088.04522687456,
- -188075.4069209078,
- -187967.12879439283,
- -188090.49990946325,
- -188001.86127453632,
- -188048.6921698139,
- -187956.53599492338,
- -187898.34942572337,
- -188006.12427452058,
- -187862.9006513407,
- -187947.29186367439,
- -187806.00028568978,
- -187983.9730009755,
- -187934.93717959968,
- -187909.29798849218,
- -186621.876169047,
- -186692.4367868679,
- -186741.5982248406,
- -186723.82204225528,
- -186331.92093130833,
- -186279.27655188824,
- -186388.903534561,
- -188283.31659324036,
- -188239.9298258223,
- -188237.88964578896,
- -188331.29169328697,
- -187886.85685091044,
- -187819.40370573246,
- -187820.46863147497,
- -187870.61997418042,
- -187807.5058878382,
- -187709.49216077014,
- -187741.85674802802,
- -188209.98314272103,
- -188113.20511465575,
- -188169.53042942294,
- -187971.1856885119,
- -187943.5654100888,
- -188015.82954131006,
- -187985.37244124175,
- -188948.66413662076,
- -190096.89096654434,
- -189974.37047163243,
- -189985.50358982256,
- -190018.75625555322,
- -189881.52640402465,
- -189982.52573305275,
- -190303.37435690386,
- -190129.35138968015,
- -190197.68125067052,
- -190162.71323384313,
- -190060.9219493719,
- -190109.05857624288,
- -189342.43960965818,
- -190542.72404693422,
- -190528.42189584312,
- -190387.50133943587,
- -190448.01691882563,
- -190574.95327101208,
- -190449.33451776393,
- -190511.44661767114,
- -190529.03440203832,
- -190537.75501553333,
- -189951.22738006982,
- -189973.1446726601,
- -190025.6059146946,
- -188716.242548552,
- -189704.3634728571,
- -189777.36801090316,
- -189592.89736085432,
- -188356.17431058898,
- -188274.34719061715,
- -188129.64780031645,
- -188133.9859146477,
- -188187.3712458545,
- -187998.556032186,
- -188653.13430381866,
- -188590.65193490608,
- -188642.5915163027,
- -188608.96821789932,
- -188491.18481576003,
- -188453.79791390765,
- -187621.10380116603,
- -187575.41147213435,
- -187588.09756598267,
- -187647.5494085932,
- -187611.58499095225,
- -187862.42691907028,
- -187942.80643346356,
- -187906.52592987043,
- -188604.68535202384,
- -189306.6357714241,
- -189427.61078841175,
- -189277.59357979376,
- -189487.23133315498,
- -189451.93310388672,
- -189248.95882783754,
- -189230.47303573164,
- -189293.00424421756,
- -189366.6038676548,
- -189332.9999406152,
- -189276.45932175536,
- -189403.28546952922,
- -189217.14323216394,
- -189198.15043086934,
- -189325.62242567082,
- -189384.22659187752,
- -189317.61864053438,
- -188066.67095698978,
- -189098.95554895798,
- -188975.88092212117,
- -189003.23537626144,
- -186773.96651147603,
- -186680.0988857744,
- -186763.42703853172,
- -188808.86236120248,
- -188878.37097806166,
- -189092.3160336398,
- -189091.72331575488,
- -189115.96574922363,
- -189174.7824324944,
- -189157.24885475944,
- -188896.42384657034,
- -188965.84803500844,
- -188977.29955893577,
- -188347.30539835,
- -188507.92896134197,
- -188383.06499636912,
- -188337.7090878203,
- -188463.68731936606,
- -188464.30136542933,
- -188438.85061418812,
- -188519.72994095754,
- -188078.68826342997,
- -188147.73696519702,
- -188179.73130929295,
- -188126.95002996654,
- -188067.732082051,
- -186989.19017429496,
- -186022.8484731827,
- -186582.35956467458,
- -186644.40821102815,
- -186276.30897092307,
- -186380.05426090743,
- -186366.66193073316,
- -186249.20162775152,
- -186530.9497347801,
- -186838.07892423088,
- -186782.58239993363,
- -186703.07900031318,
- -188115.43138405305,
- -186304.48945547143,
- -185894.3650318397,
- -187307.28028177153,
- -187076.1453172014,
- -186960.017269483,
- -187191.82408836586,
- -187097.05438409094,
- -187032.18336904267,
- -187633.5780712459,
- -186980.52193011073,
- -186835.21868742444,
- -186834.48131419005,
- -186896.63197455366,
- -186898.4857403215,
- -186783.15141955295,
- -187003.82345200694,
- -186930.054845507,
- -186868.36430568714,
- -183454.4556818976,
- -183948.96667538802,
- -184137.3540563784,
- -184055.31954335116,
- -183942.6631635848,
- -183991.55361005352,
- -184151.48218769403,
- -184043.4298278558,
- -184098.23387283756,
- -184011.24318851618,
- -184221.4732984055,
- -184107.8627639706,
- -184141.2115983499,
- -183965.70838288227,
- -184080.74407013148,
- -184054.17977045127,
- -184095.92236913048,
- -183427.52450741653,
- -183468.11246198523,
- -184220.86336669532,
- -183448.23675261464,
- -183478.30434363155,
- -184155.19932672151,
- -184060.82188045702,
- -183991.8487036277,
- -183408.7996719894,
- -184153.1514375469,
- -184022.7059931264,
- -184061.19109231277,
- -183653.6949449289,
- -183453.94049617794,
- -186017.78871449898,
- -188244.00313072064,
- -187642.58450439633,
- -187676.73784619576,
- -187746.50016018358,
- -187763.7880342417,
- -187815.17680412173,
- -187877.05060775447,
- -187920.4490734947,
- -186347.05945545353,
- -187220.9163611917,
- -187132.94513084943,
- -188062.16660663078,
- -188144.67010069184,
- -187401.67452925173,
- -187525.18521744406,
- -186669.07004417825,
- -185614.40716294627,
- -185192.79185703603,
- -185593.93006590506,
- -185273.47420901168,
- -185211.40111909146,
- -185190.66664916382,
- -185277.53611586575,
- -187274.1302045654,
- -187343.49249793775,
- -187394.75452353517,
- -187300.93102998807,
- -187259.70142610237,
- -187299.8777924226,
- -187244.80180643054,
- -187332.91403683388,
- -186658.96281459343,
- -186713.4375646213,
- -188457.13629440215,
- -188477.92284249174,
- -188531.03886595092,
- -188486.4372749181,
- -188377.38130930747,
- -183282.65685712005,
- -183361.18161794438,
- -183464.893368499,
- -183433.51219686866,
- -183454.83768123688,
- -183269.02525615806,
- -183232.39642749276,
- -183309.3093745461,
- -182087.23736153383,
- -182094.36855869577,
- -184069.6521547393,
- -184147.62949476115,
- -186140.23856401135,
- -186153.994068847,
- -188437.17592704867,
- -185830.8351587531,
- -186746.85165138246,
- -186884.75829816138,
- -185821.64538848578,
- -185774.3961361211,
- -185320.20394035542,
- -185425.12264167838,
- -187587.3618641956,
- -188355.0198765514,
- -188303.63550310052,
- -188084.8572338393,
- -187395.58003873198,
- -187322.44828818025,
- -187189.01895715407,
- -186418.97489203545,
- -184966.2533605747,
- -184939.83808412577,
- -184993.21116610424,
- -184884.01447443964,
- -185033.33272861876,
- -184992.49271023268,
- -185018.8411711607,
- -184014.45332893237,
- -184934.65343953003,
- -184979.51429673051,
- -189116.30601221605,
- -189212.36051423496,
- -189174.68517565948,
- -189131.0165825411,
- -189167.72369075686,
- -189167.94071155033,
- -188427.09207581004,
- -188324.23665222884,
- -188418.21913144834,
- -188441.4650250465,
- -188445.5181910649,
- -188467.52659245866,
- -188309.0577119622,
- -188432.27960119525,
- -188509.53908534927,
- -188525.32217186975,
- -188384.74779075198,
- -188435.01343296896,
- -188370.95224479612,
- -188400.71709087957,
- -188465.6069223673,
- -188308.00977643783,
- -188406.39216122098,
- -188320.2791584246,
- -188088.18070606928,
- -188328.50499043753,
- -188334.61613365755,
- -188337.0013544444,
- -188418.8611254507,
- -188272.04429126595,
- -188319.53228907965,
- -188852.30706541648,
- -188766.82769508022,
- -188762.09396253395,
- -188673.21619043712,
- -169378.16013668,
- -169344.14125408427,
- -169393.17968203666,
- -169416.96099860338,
- -169551.3818453157,
- -169348.52705148203,
- -169359.83740548883,
- -169545.8449313544,
- -169324.49667951552,
- -169436.0497249682,
- -169490.59569541228,
- -169603.0032231782,
- -169405.62489197458,
- -169343.7298139408,
- -169589.86991772245,
- -169356.23498042687,
- -169545.28212240088,
- -169280.9450788244,
- -169372.553645448,
- -169549.46033044296,
- -169468.52331958243,
- -169320.2863155955,
- -169441.31671768497,
- -169381.24488365222,
- -173635.00926671873,
- -169571.96017328865,
- -169386.7535787633,
- -169419.55932408103,
- -169652.86980383957,
- -169606.2546200287,
- -169566.43337423858,
- -169642.84989518244,
- -169277.37511423865,
- -169446.0290591557,
- -169479.8007415065,
- -169640.66377360295,
- -169398.552777607,
- -169492.6505170808,
- -169303.42487485384,
- -169438.62470300702,
- -169670.358202471,
- -169518.63445990958,
- -169458.16723794234,
- -169435.0519460718,
- -169391.18343571847,
- -169379.72481367842,
- -169331.45299684268,
- -169407.90694092953,
- -169482.87945843037,
- -169285.9559721673,
- -169264.42577758324,
- -169392.70401915823,
- -169615.727825337,
- -169495.95591972838,
- -169588.04616772282,
- -169433.95314637333,
- -169345.47056011425,
- -169496.50719911815,
- -169460.09445462836,
- -173634.2922040698,
- -169300.87184353019,
- -169354.53427482693,
- -173629.4910453442,
- -169330.76943894773,
- -169519.96951494063,
- -169501.82029113118,
- -169610.62571105798,
- -169324.25162713093,
- -169326.57314930166,
- -169431.85987472688,
- -169483.31429722917,
- -169538.3541819729,
- -169499.22972979312,
- -169404.3866338821,
- -169511.19498936835,
- -169649.91351843745,
- -169287.2120591798,
- -169311.3089851137,
- -169438.71859283923,
- -169355.24062342444,
- -169553.1803424696,
- -168624.87506894136,
- -169372.41900998444,
- -169449.22305063045,
- -169292.06106073438,
- -169144.59176013063,
- -169444.63655704536,
- -169375.8571831571,
- -169381.80418022617,
- -169399.62068739222,
- -169492.64094444556,
- -169304.5215244161,
- -169261.65588238483,
- -169329.1993639435,
- -169695.5695061532,
- -168758.49492464514,
- -169398.69256838647,
- -169358.1076510309,
- -169420.13524775338,
- -169574.74287326206,
- -169416.57296196205,
- -169515.2950036648,
- -169310.57562489106,
- -169537.50719481107,
- -169316.58449546693,
- -169448.7580978541,
- -169284.00204185088,
- -169465.03979915124,
- -169333.68269487692,
- -169296.56143188913,
- -169442.20170846063,
- -169536.4914924849,
- -169474.90139630102,
- -169626.45864951386,
- -169367.87410591237,
- -169476.10791408707,
- -169513.68386334792,
- -169578.66391360908,
- -169346.72799167415,
- -169299.96427660287,
- -169453.17177729314,
- -169376.77103179775,
- -169406.5342543557,
- -169474.3421468556,
- -178055.41538814097,
- -178014.1671556615,
- -177981.96991200637,
- -177970.49030488016,
- -178036.43547562294,
- -177949.15006345935,
- -182247.59705571106,
- -178163.6646337293,
- -178131.0253649996,
- -178108.70633296893,
- -178202.65946718425,
- -178085.69550089262,
- -188482.95193410772,
- -188419.5246448583,
- -186709.57387613264,
- -186834.0978550618,
- -188114.69040843635,
- -188021.61315320883,
- -188144.41832691527,
- -184941.34178302911,
- -185444.45812838196,
- -185677.50351590122,
- -185765.7596655601,
- -184489.2856165779,
- -184454.01464139723,
- -184498.4737922646,
- -184573.2021564755,
- -184621.93570408592,
- -184465.9277614155,
- -184029.80810323294,
- -184605.50077799056,
- -184576.40010769488,
- -184627.64145343105,
- -184506.37513977927,
- -184609.0831377138,
- -184677.96396018367,
- -184664.23676982484,
- -184556.3775650089,
- -184550.4233071596,
- -184536.88599997063,
- -184512.64018821175,
- -184543.452959208,
- -185776.6914500685,
- -185822.29164402644,
- -185696.655354225,
- -185760.94872793366,
- -185846.41148709282,
- -185909.15469419034,
- -185637.4693084021,
- -185652.67346685063,
- -185535.5286475488,
- -185602.36617438102,
- -185573.4220194495,
- -185521.9131599804,
- -185472.62564099822,
- -185760.40751850946,
- -185138.2952496597,
- -184720.63687979916,
- -185165.7311987436,
- -185893.34313629338,
- -185936.0348898676,
- -185250.60864012758,
- -185649.41923234705,
- -185429.39968634545,
- -185474.01141745676,
- -185687.14488378543,
- -185285.8440935564,
- -185453.97411013974,
- -185473.5944232423,
- -185345.18748309344,
- -185420.4043875232,
- -185496.81537077486,
- -185067.60944469785,
- -185436.550641823,
- -187619.79836570565,
- -188121.44388568716,
- -188058.76541098158,
- -188420.2067400686,
- -186640.57850765003,
- -183787.8778325471,
- -183620.92374765448,
- -183585.59515960552,
- -183702.47064300528,
- -182420.8485208509,
- -183654.7560552544,
- -183693.60669998443,
- -183744.1802364832,
- -183628.01772203547,
- -183575.58455289324,
- -183564.13613035955,
- -183676.65146323718,
- -183629.47499298933,
- -183721.38596098,
- -183666.4888270363,
- -183638.88510177907,
- -183774.8403863521,
- -183728.9159629604,
- -187943.03068637176,
- -187976.53087558964,
- -187948.27627186524,
- -187693.25148113363,
- -185511.4642967856,
- -185617.06228111294,
- -184099.48942748536,
- -185271.49815979396,
- -185091.71032325653,
- -185177.44259645653,
- -185280.3717521528,
- -185267.68557543933,
- -184652.76724765133,
- -184548.04804199652,
- -184618.82194938904,
- -184588.43758881366,
- -184540.4465197977,
- -184529.68677437576,
- -184527.59148972368,
- -184603.30224533824,
- -184695.73622553676,
- -183856.76291758567,
- -183923.04167683766,
- -183920.46827459653,
- -183942.46072287185,
- -183966.14944940363,
- -184022.37986115966,
- -183858.53808757465,
- -183856.8165942456,
- -183783.75192537752,
- -184021.05886616785,
- -183734.7000156707,
- -183874.32018150846,
- -183834.41121000051,
- -184004.2014556012,
- -183959.7185885655,
- -183918.43052226157,
- -183886.46074349398,
- -183970.12618582664,
- -184047.8385877452,
- -186182.73800954662,
- -186249.61481778725,
- -186297.75486173076,
- -186324.0305926026,
- -186236.53912128153,
- -186182.5712881453,
- -185953.14899281866,
- -185141.05742456802,
- -185439.13268669933,
- -185177.60111052875,
- -185182.7983091269,
- -184974.97222906543,
- -184279.90057619184,
- -186236.2314711706,
- -185215.91952611177,
- -188370.1764330157,
- -180909.745155569,
- -180709.71261549313,
- -180902.77547837683,
- -179952.33000867523,
- -180842.29239043556,
- -179943.77813433905,
- -180787.81029715057,
- -179964.11953050675,
- -180735.5598518938,
- -180724.51318886082,
- -180764.8170700024,
- -180785.9780778761,
- -180804.75158568795,
- -180845.41459382957,
- -180819.41967854003,
- -179924.4116050648,
- -180765.59250306184,
- -180738.89765472096,
- -180692.9880617934,
- -180666.9615653273,
- -180723.1250971798,
- -180874.4925506424,
- -179940.5474174767,
- -180670.7264006914,
- -180770.5721985639,
- -180897.94932214296,
- -180816.50719117105,
- -180840.88607907726,
- -180682.41488442908,
- -180792.44149952132,
- -180803.10102321903,
- -180659.778327287,
- -180717.96359535548,
- -183788.99096273613,
- -183779.16247176562,
- -184347.65849261818,
- -183714.67737531645,
- -186604.72926858248,
- -186567.5091645483,
- -187463.35892346295,
- -187475.19460358928,
- -184991.80627054124,
- -183461.60321590066,
- -183706.9123006825,
- -183382.93836771394,
- -182388.11368171035,
- -182529.26628902787,
- -182549.07931419823,
- -182425.7209298557,
- -182606.63936888328,
- -182486.48502463632,
- -182582.6931146041,
- -182423.89628454405,
- -182443.7956614858,
- -182486.5877240622,
- -182475.17256004427,
- -182825.80593338294,
- -180900.60175741656,
- -180824.8780152111,
- -179926.86668937167,
- -180827.0478808366,
- -179917.67228537184,
- -179903.54516782166,
- -179893.4393245515,
- -180889.41939093173,
- -178623.59690207575,
- -178554.08466333893,
- -178436.7908829831,
- -178558.0937103395,
- -178570.64648304324,
- -178488.27744802684,
- -178691.44886841782,
- -178564.94630361674,
- -178563.48522728076,
- -178717.23295975232,
- -178442.469710615,
- -178533.43895398427,
- -178405.40053992975,
- -178581.996633066,
- -178750.33119243302,
- -178518.2432508357,
- -178638.1301594935,
- -178549.44571791714,
- -178432.0352583338,
- -178460.23443320673,
- -178462.3041424345,
- -178511.13389375104,
- -178294.2997167077,
- -178542.3251145037,
- -178428.43265563578,
- -178524.70063209053,
- -178652.93553051475,
- -178564.5275489163,
- -178711.00834272362,
- -178593.38928498706,
- -178607.60033410153,
- -178697.5378154587,
- -178496.6439016545,
- -178516.70514832705,
- -178173.96397881166,
- -178630.87310248002,
- -178507.01579040708,
- -178474.2039992179,
- -178492.20167515153,
- -178637.20991508843,
- -178464.27180037618,
- -178577.39055378566,
- -178405.1247219723,
- -178601.60635392906,
- -178720.07863024718,
- -178607.70179973924,
- -177980.3058143678,
- -178516.96872389078,
- -178455.55225062207,
- -178523.4874214946,
- -178559.66565811823,
- -178654.88321266344,
- -178652.8764789972,
- -178606.5230669658,
- -178462.88979660024,
- -178505.99092471664,
- -178659.89626082158,
- -178495.2300096829,
- -178697.93002062794,
- -178570.20722506093,
- -178609.4919362779,
- -178550.05784523298,
- -178679.05433494938,
- -178439.9217113105,
- -178541.75133386956,
- -178588.50198710954,
- -178609.18224746437,
- -178608.5732692418,
- -178641.31909922665,
- -178488.30962670548,
- -178657.90280830112,
- -183289.93151228954,
- -183242.92238719485,
- -183255.82906837002,
- -182978.78721471297,
- -183038.58157721706,
- -182993.2503192717,
- -183133.59169112245,
- -183172.54648983607,
- -183115.6076721331,
- -185011.84033188224,
- -184896.9494846697,
- -184966.17232256278,
- -184963.36474706372,
- -184720.55315674286,
- -184789.59237810186,
- -184250.11601459378,
- -184840.94461722943,
- -184982.25190169932,
- -184925.3424128911,
- -185021.8294439658,
- -183109.4455208243,
- -183147.2630049226,
- -183100.15820011563,
- -183070.48614592486,
- -184756.1452888642,
- -184826.45735488343,
- -183341.5026651699,
- -183257.84783702332,
- -183511.68520968122,
- -183328.08397366235,
- -185068.01671399627,
- -184871.46409474593,
- -185052.07634225543,
- -185438.75158188608,
- -185459.31088253466,
- -183001.6851454487,
- -183076.80405507874,
- -183009.4590377982,
- -182979.24860315252,
- -183374.7939359946,
- -185093.7368725669,
- -184998.6633073986,
- -185068.85971572844,
- -184943.5809181066,
- -185023.88959588853,
- -185082.0833365548,
- -185148.40604299065,
- -184977.44409740437,
- -184997.31464103883,
- -185089.27598983576,
- -185089.0086389262,
- -184902.62901699232,
- -185079.38925215916,
- -185230.35763149426,
- -185048.74105525186,
- -185187.47949728227,
- -185150.70672626782,
- -185132.0865388388,
- -185142.57079867384,
- -184910.07141996681,
- -185010.9809112164,
- -185055.58177579596,
- -183319.82671109284,
- -183343.52858918067,
- -183540.0801197569,
- -183455.08344399888,
- -182897.35332880451,
- -183031.3680288819,
- -182899.68496868006,
- -182951.00775120725,
- -183009.0203452414,
- -182969.49503841982,
- -182961.8930869576,
- -183565.39955803388,
- -184719.2933805017,
- -184852.54846837025,
- -184771.7014457759,
- -183238.2725594145,
- -183287.3196162057,
- -183298.64678428596,
- -183179.063213912,
- -183301.19264459712,
- -183496.95058249735,
- -184843.89469543626,
- -185486.61372523938,
- -185440.07638832257,
- -184624.17550004294,
- -184691.42044326675,
- -184697.7108009961,
- -184564.4704663814,
- -184692.4146787554,
- -184745.86688139816,
- -184745.63052333257,
- -184606.98123665425,
- -184673.6351594657,
- -184648.9263016337,
- -184634.4057762235,
- -184588.40026682435,
- -184728.63779550133,
- -184697.06720197387,
- -184658.08630104552,
- -184751.42939384596,
- -184915.37938012218,
- -184915.80229910425,
- -184809.226434392,
- -184878.41272612265,
- -184781.15000342295,
- -183425.42042761206,
- -183491.17842973955,
- -183394.46490438026,
- -183482.59900076909,
- -184789.43054132286,
- -184840.87093100656,
- -184955.71478210148,
- -184853.88088084952,
- -183488.3327404413,
- -183654.62815247447,
- -183170.48934623392,
- -183544.22509648418,
- -183609.01332193392,
- -183346.06901967287,
- -183224.1180654994,
- -186119.49203913865,
- -186217.65823101738,
- -184431.29788077172,
- -183374.18390449428,
- -183323.66280121214,
- -183408.2842664633,
- -183404.54218882136,
- -184125.37656993855,
- -183193.80563843125,
- -183210.86534053346,
- -183068.9782319114,
- -183158.49383680677,
- -183278.76592303222,
- -183433.48674636218,
- -183536.10312163807,
- -183372.0424666985,
- -183231.82462614574,
- -183302.02623710444,
- -176998.64399938524,
- -177066.8720413106,
- -177022.6135091292,
- -183161.23163489092,
- -183049.5712780777,
- -183453.48204868875,
- -187890.59895818657,
- -189168.76930062557,
- -189017.94980528016,
- -189051.82394498357,
- -188584.48243914515,
- -188052.25455199185,
- -188165.97775520477,
- -188142.36563635623,
- -188219.55657425546,
- -188286.52887175203,
- -189084.5439991584,
- -190481.18414111834,
- -190194.37548906854,
- -190619.62304985526,
- -190625.60337733393,
- -190599.24045840377,
- -190226.99435288858,
- -190555.5337087257,
- -190577.08701564785,
- -190502.54227035303,
- -190701.39607546074,
- -190483.56699262653,
- -190558.59312642895,
- -190622.50020444766,
- -191956.9509027277,
- -189596.39277355725,
- -189081.37240888822,
- -189189.54697625263,
- -189022.31890019495,
- -189607.57795842667,
- -189794.93841442053,
- -189619.61208740424,
- -189757.03297088,
- -193534.58363562726,
- -193746.06656836157,
- -193536.88821662494,
- -193690.75126823565,
- -193828.1864987295,
- -193694.47134159697,
- -193908.71990085614,
- -193926.73131627264,
- -192467.37989371552,
- -193876.98390154605,
- -193937.14325502317,
- -193799.02394631426,
- -193774.27258889857,
- -193975.47469840795,
- -193668.5700211384,
- -193863.922824815,
- -193777.43216763728,
- -193702.5372609475,
- -193807.07780800795,
- -193749.23407981847,
- -193848.73115611952,
- -193829.82350082346,
- -194072.47921578164,
- -193714.61436065382,
- -193831.93364492635,
- -194022.37644342383,
- -193929.14922551668,
- -193709.41847952036,
- -193580.42749235677,
- -193673.19657366312,
- -193675.4846188424,
- -193804.38388892714,
- -193761.4245739493,
- -193832.16706009684,
- -193963.83892343825,
- -193744.99083273322,
- -193651.75122489312,
- -193746.6309587092,
- -193858.4367764975,
- -193735.9695129494,
- -193791.1955832733,
- -193759.89400756784,
- -193767.32774094612,
- -193960.03946464113,
- -193825.5996938444,
- -193646.09114384378,
- -194029.90647483527,
- -193627.99896662962,
- -193600.72359083666,
- -193919.70824670978,
- -193766.4906457397,
- -194007.48964572605,
- -193810.47215112645,
- -193844.94572726413,
- -194037.0391692495,
- -193851.06434528634,
- -193874.82215845535,
- -193723.95168770116,
- -193897.5631725786,
- -193810.2074839169,
- -193608.74043988352,
- -193894.64693893815,
- -193688.6584630469,
- -193904.11476722118,
- -193682.8928145957,
- -193820.47172546384,
- -193889.7955965534,
- -193787.85515705598,
- -193728.1477085373,
- -193937.34499460776,
- -193805.18800143278,
- -193739.99240211275,
- -193928.394955046,
- -193797.7489289576,
- -193622.61125641817,
- -193580.10680370886,
- -193821.88689952737,
- -193875.7883864531,
- -193843.667706734,
- -190942.65455718772,
- -190935.69915585697,
- -190754.12935394185,
- -190772.50006996628,
- -190718.86652711377,
- -190909.16845115123,
- -190962.44360370797,
- -190988.82032427454,
- -189666.5672120893,
- -189829.0928502695,
- -189626.70216868905,
- -189859.27408912993,
- -189749.7157783643,
- -189930.46843261595,
- -190546.38147049418,
- -190399.4126354747,
- -190728.8379457946,
- -190467.53947576138,
- -190665.37836808496,
- -190403.65729820394,
- -190572.92069195924,
- -190391.5963820497,
- -190588.72561153484,
- -189830.10127174208,
- -189867.38685376107,
- -189148.04361715776,
- -189136.8179316544,
- -189454.19264113074,
- -189592.2520227959,
- -189764.96604252383,
- -189136.14569979953,
- -189169.39385335796,
- -189852.88038329795,
- -189957.89952853756,
- -189901.24368659954,
- -189910.4178996724,
- -189999.55141092496,
- -189360.40048394818,
- -189540.12165547063,
- -189471.1548799475,
- -189457.7383592478,
- -189492.84011594678,
- -189930.6622301241,
- -190012.9729410129,
- -189643.8250184186,
- -189606.224952288,
- -189100.93180802726,
- -189069.94292362832,
- -189166.93269470712,
- -189710.98534421215,
- -189909.66210198548,
- -189800.87833115685,
- -189358.71097730752,
- -188372.40414795655,
- -188307.97072896184,
- -188449.08216930606,
- -188896.90746870203,
- -188488.92438829996,
- -188410.6282062072,
- -188423.00742554842,
- -188342.75560755408,
- -188474.5390069502,
- -188893.76273750738,
- -188383.44348380194,
- -188919.52659774327,
- -188450.24143295805,
- -188339.98623365132,
- -188920.24503447048,
- -189954.8799487552,
- -189224.8723192654,
- -189437.85306139573,
- -189128.61828617012,
- -189076.00888676112,
- -189229.93966087615,
- -189057.92180438363,
- -189159.80594753037,
- -189221.1271062979,
- -189275.09899359176,
- -189796.53172043787,
- -189179.26724934444,
- -189209.43422944171,
- -188434.3714432306,
- -188735.4427305461,
- -188852.55618795755,
- -188648.26563955305,
- -188750.48177969156,
- -188633.9067049795,
- -188963.22418785066,
- -188921.29656857427,
- -189021.56662713946,
- -188962.55017746423,
- -188997.33770734456,
- -189023.01935678284,
- -190261.8156757386,
- -190001.24087948908,
- -190205.95046477395,
- -190299.55174747857,
- -190144.7648684372,
- -190362.44164700346,
- -190189.73769569694,
- -190267.11271629602,
- -190205.97081794371,
- -190270.2885900102,
- -190214.73308856742,
- -190326.65557216902,
- -190414.88888080535,
- -190199.32333034926,
- -190282.24854628212,
- -190312.73737813003,
- -188873.8626963419,
- -188920.2684739792,
- -188858.41273348493,
- -188379.0378458674,
- -188512.27456350578,
- -188638.8220475936,
- -188851.4444004593,
- -188856.0250278521,
- -188992.6676338556,
- -188567.034494689,
- -188562.145978013,
- -188709.5724031946,
- -188583.43301745184,
- -188633.37897797985,
- -188513.3287395779,
- -188486.02304199967,
- -189455.44381807276,
- -188895.9417109116,
- -189700.65258162987,
- -189511.31796618277,
- -189314.42297487025,
- -189274.3071301368,
- -189387.76225415204,
- -189390.8243694251,
- -188565.08660170887,
- -188585.1092319325,
- -188535.84972231102,
- -188428.1636080926,
- -188480.76720246498,
- -188497.23442699056,
- -188477.61159047254,
- -188560.29997725625,
- -188469.464678068,
- -188412.24447188206,
- -188400.34769697144,
- -188326.83417554572,
- -188472.80747925534,
- -188371.0306914976,
- -188439.41147707586,
- -188460.25442393898,
- -188478.67324954533,
- -188414.5465883974,
- -188506.02275688382,
- -189533.1271418779,
- -189305.03128895749,
- -189500.05954191848,
- -190614.02637885386,
- -190408.6976223534,
- -190772.61217766535,
- -190745.8656578664,
- -190782.00210851693,
- -190713.68513502888,
- -190769.81695999636,
- -190721.68694858113,
- -190713.55530098,
- -190715.47477903482,
- -190587.36694516958,
- -190653.71505993314,
- -190733.79506238594,
- -190759.5937266005,
- -190665.1557136483,
- -189551.6404319715,
- -189175.80872704333,
- -188999.41125879882,
- -189583.71120295482,
- -189736.44355789217,
- -189721.16100992335,
- -190794.8754551881,
- -190767.60153448136,
- -190528.3678224796,
- -190527.9985717709,
- -190651.3096880947,
- -190850.62628139483,
- -190767.53942386774,
- -190178.30316847924,
- -189906.9288545038,
- -190398.25884468752,
- -189902.1572291747,
- -189756.1793300799,
- -192960.00724960802,
- -193032.32651674768,
- -194526.8572523203,
- -192970.64111818164,
- -194540.51188655684,
- -190076.97029283058,
- -190578.37958836104,
- -190633.09861453043,
- -189612.56701675983,
- -189584.85448124894,
- -189639.9730804576,
- -189726.2893258764,
- -189663.43940283198,
- -189589.25507494135,
- -189614.62635399186,
- -189158.38902759828,
- -189507.12134144705,
- -189695.59469139914,
- -189747.88347755812,
- -189662.8350739805,
- -189704.61279866777,
- -190468.9495086276,
- -190691.40485899913,
- -190602.30273507602,
- -190690.3495420362,
- -190742.67043381042,
- -190516.9103386334,
- -190625.0036216086,
- -190467.63078097987,
- -190711.89591260994,
- -190681.55111231707,
- -190714.2334944442,
- -190728.0443911054,
- -190260.22221289267,
- -190672.9365789004,
- -190463.41389632598,
- -190574.5566659715,
- -190503.87993822052,
- -190597.1290096374,
- -190738.17937622103,
- -190736.14123626714,
- -188844.49537900015,
- -189352.91617699675,
- -189293.61601165356,
- -189198.92299734885,
- -189188.6211538655,
- -189248.80812324327,
- -188903.04749914605,
- -188991.53960870573,
- -189277.4028354314,
- -189224.98825033373,
- -189320.46260078246,
- -189230.83393577425,
- -189282.98979945903,
- -185674.87055856248,
- -189767.3376516928,
- -186429.02907093416,
- -186471.6273977257,
- -186557.56944473545,
- -186373.05814148398,
- -186421.09165944587,
- -186389.60376488912,
- -186551.00981625286,
- -186485.36466106286,
- -186416.7791946597,
- -186425.80797049435,
- -186507.88074432584,
- -186483.2058758233,
- -186446.32894291877,
- -186578.13349791485,
- -188294.34254262215,
- -188903.12131841254,
- -188974.1903070274,
- -189013.00556954916,
- -188990.05786341277,
- -189283.6558680965,
- -189156.776198667,
- -189281.15801555838,
- -189229.38188445318,
- -188752.90976222482,
- -189268.83368658138,
- -189109.80505218275,
- -189263.46207696153,
- -190474.83424193788,
- -190404.0846714618,
- -189725.66534082082,
- -190387.365071224,
- -190322.7145666639,
- -190610.7397637846,
- -190530.50822368442,
- -190565.46212922395,
- -190634.5753037945,
- -190356.45986323425,
- -190391.1380994609,
- -190429.80943282603,
- -190464.96139017996,
- -190289.1133185594,
- -190367.6186600842,
- -190422.79258775173,
- -190454.50715953342,
- -190902.48296050128,
- -190846.00728882258,
- -190768.94184870122,
- -190917.1501459411,
- -190904.19225035308,
- -190869.11155008027,
- -190847.3760969188,
- -190833.92831575198,
- -190914.59919810772,
- -191003.5049998549,
- -190987.6662291279,
- -190918.1130413622,
- -190978.42508732385,
- -191045.33010704067,
- -191118.3344811227,
- -191028.42716404388,
- -191087.25231874056,
- -191063.94152141083,
- -190533.19955587725,
- -190467.77931488148,
- -190736.1226796714,
- -190650.8583482665,
- -190695.986401139,
- -190705.99136849152,
- -190727.1717134085,
- -190775.09420707048,
- -189526.2394383325,
- -189181.60084101505,
- -189185.06032392784,
- -189112.62460586315,
- -190085.7072353487,
- -190308.5994523768,
- -190398.8378197505,
- -190400.7504096945,
- -189466.40250005975,
- -188816.86933252332,
- -190594.37588089012,
- -190621.45203308872,
- -190572.00478016632,
- -190677.74061826518,
- -190777.950647815,
- -190643.4977867746,
- -190238.15773232863,
- -190074.67463959943,
- -190367.91326419555,
- -190399.54829885028,
- -190275.09228250064,
- -190306.22405632425,
- -190162.3371470009,
- -190432.7873200079,
- -190532.19121997847,
- -190494.93518483994,
- -190497.28396928875,
- -190620.24351137725,
- -190664.86329969479,
- -190574.09918967442,
- -190591.03375007253,
- -190520.7869251755,
- -190351.42834427793,
- -190301.86472867473,
- -190168.79581539883,
- -190379.19934607125,
- -190296.38287072422,
- -190225.95395946506,
- -190265.65052037945,
- -190191.99887281418,
- -190181.16020360703,
- -190253.12505174227,
- -190294.27227855046,
- -190268.58159355848,
- -190340.03937897002,
- -190049.21420073678,
- -190111.19686576354,
- -190243.76439905912,
- -190016.1087708468,
- -190165.94445480712,
- -190306.18105336872,
- -190346.03752427932,
- -189619.67419571467,
- -190167.53475611532,
- -190315.310468642,
- -190379.6458049226,
- -190388.22574712188,
- -190489.64234467523,
- -189077.9073416021,
- -189148.47818539297,
- -189076.27522030505,
- -190096.82864513667,
- -190440.0090447352,
- -190435.29393371142,
- -190435.58900957322,
- -190429.5710330078,
- -191322.5198972912,
- -191383.64086574878,
- -190438.21639421294,
- -190236.33574161452,
- -190380.63617074298,
- -190401.29010947546,
- -190331.29312605906,
- -190559.2179529797,
- -190494.5809685014,
- -190527.79502621465,
- -190152.69203156038,
- -189520.9274802002,
- -190148.86085124593,
- -190346.98044319588,
- -190273.92525879134,
- -190362.20891689835,
- -190211.2410560863,
- -190293.35532104713,
- -189532.25620878863,
- -189522.88266085237,
- -190499.65023009953,
- -190399.7332476172,
- -190462.91341077103,
- -190497.98956719536,
- -190271.89947805196,
- -189731.91642502818,
- -189365.14372923566,
- -189627.2693908589,
- -189450.8103449795,
- -189878.37777838547,
- -189606.4880574026,
- -189671.94160478926,
- -189753.5036607848,
- -189792.539377009,
- -189709.64844401702,
- -189709.42207181625,
- -189560.8040860744,
- -189639.18026060294,
- -189579.70324669065,
- -189605.1403288076,
- -189479.9373604124,
- -189676.83534590385,
- -189809.71999294424,
- -189641.32627110553,
- -189671.34718930145,
- -189694.57212468094,
- -189642.2465612403,
- -189589.32744394697,
- -189692.93760685052,
- -189782.31803998386,
- -189551.69582469424,
- -189632.7736323519,
- -189649.24507055973,
- -189551.3936761994,
- -190415.83660361098,
- -190295.38448827688,
- -190278.06551487523,
- -190602.566736292,
- -190582.58999662191,
- -190402.49114878004,
- -190640.8143948027,
- -190434.0622041177,
- -190396.1118665038,
- -190633.88684340264,
- -190033.28449762813,
- -189931.84776524975,
- -189984.33860279026,
- -189914.35806747197,
- -189913.8177868138,
- -190053.69755855628,
- -189915.13218034807,
- -189840.37838709482,
- -190003.0113512847,
- -189865.52199599275,
- -189940.86916101858,
- -189527.17241938802,
- -189574.29060602633,
- -189631.36291813108,
- -188579.02593842897,
- -188618.87056923824,
- -188604.32311363696,
- -189090.5718994998,
- -189142.3179762273,
- -189107.25327854278,
- -189187.28747484853,
- -189269.54448270632,
- -189159.14568024248,
- -189138.2076064306,
- -188076.45815998927,
- -189270.2207259438,
- -189210.2926095509,
- -188900.63432967928,
- -188932.77198095532,
- -189022.40118831143,
- -189307.27750116092,
- -189338.82125386308,
- -189289.75729540995,
- -189349.08753127913,
- -189239.27466604387,
- -189238.41421960684,
- -189412.9721563485,
- -189524.31705901856,
- -189559.7460368871,
- -189476.0747606827,
- -189570.0168598492,
- -189495.32258851867,
- -188215.8616615981,
- -188199.75814143405,
- -188123.16757309233,
- -188542.53301547328,
- -188583.50114275728,
- -188646.66744792875,
- -188627.52790190434,
- -188624.96953674362,
- -188680.12739772093,
- -188603.88153743022,
- -188717.93046449387,
- -188701.2044515723,
- -188667.65399479453,
- -188578.38898107715,
- -188162.49129769465,
- -188283.31886173566,
- -188344.14937816412,
- -188367.9220383512,
- -188429.7191107016,
- -188521.51772652115,
- -188573.1166522805,
- -188704.52880665567,
- -188739.29930100363,
- -188761.3774557424,
- -188771.39763015826,
- -187903.75952678625,
- -187774.81306834565,
- -187895.58897193626,
- -187884.75183693127,
- -187967.06818140898,
- -187951.53704565333,
- -187825.18842699032,
- -187758.29365704863,
- -187868.23432734396,
- -187895.08998922407,
- -187890.49062902073,
- -187955.65971712122,
- -187928.10424729847,
- -187989.67935819595,
- -187874.83194403967,
- -187933.04952081686,
- -187872.3771147445,
- -187856.99852649588,
- -187848.4223915153,
- -187920.79346467156,
- -187930.77700494797,
- -187895.29714433412,
- -187920.6210824505,
- -187887.69961918573,
- -187938.61799761548,
- -187848.99743691334,
- -187796.57704625433,
- -187814.10684264067,
- -187814.4228992428,
- -188045.52612894526,
- -188018.15484515057,
- -188007.98228798102,
- -187778.2567400219,
- -187853.44280984605,
- -187973.77791186082,
- -187919.99609137262,
- -187824.0586511038,
- -190307.0714778582,
- -190230.59833375542,
- -190227.19725287892,
- -190163.7718421069,
- -190243.0796793292,
- -190331.77132419008,
- -190303.73582563325,
- -190230.98203889182,
- -190163.62860191637,
- -190127.76616371796,
- -190204.7291192877,
- -190198.29510713098,
- -190038.48386398226,
- -190286.96585014055,
- -189285.5038908931,
- -189314.6925545715,
- -189322.54633697437,
- -190108.9160963181,
- -189919.7044719638,
- -189515.2170023079,
- -189696.5583651094,
- -189620.28942638537,
- -189470.10195977517,
- -190628.8763620154,
- -190540.76510119194,
- -190565.15412975918,
- -190682.29055485144,
- -190430.80151139415,
- -190521.04186612897,
- -190646.607620274,
- -190837.33673650466,
- -190630.24314895942,
- -190642.08708267138,
- -190796.54577428204,
- -190481.11319650357,
- -190589.098462086,
- -190401.1922366718,
- -190615.01500565186,
- -190603.3594025055,
- -190686.42496369162,
- -190557.064280662,
- -188092.88408938725,
- -187956.81249239156,
- -187979.11709276808,
- -187979.482131256,
- -187979.50818299758,
- -187996.93410740836,
- -187963.20107476946,
- -187929.6211213274,
- -187965.07830668992,
- -187856.64089532907,
- -187920.64538985988,
- -196635.93024140774,
- -196399.9604654788,
- -196362.5620857767,
- -196370.54701890302,
- -196328.77006002006,
- -196438.87708898322,
- -196344.7214253337,
- -196337.77592539776,
- -196516.39975494708,
- -196375.4820001025,
- -196572.13617882138,
- -196357.81249105308,
- -196402.59115033425,
- -196403.98426888036,
- -196525.95899245862,
- -196450.95791918522,
- -196516.9695874955,
- -196526.78985808208,
- -196305.99375243418,
- -196477.75824980924,
- -196371.17169785398,
- -196540.8496484741,
- -196413.56960098774,
- -196398.85033780828,
- -196519.40403056843,
- -196586.5152888427,
- -196484.0741919208,
- -196477.4423322067,
- -196580.94705004548,
- -196493.03467572184,
- -196355.35715885067,
- -196524.4255226339,
- -196575.5793318735,
- -196388.91149252217,
- -197117.95006697494,
- -196453.8097539728,
- -196411.73181172024,
- -196519.77480193917,
- -196290.0514181662,
- -196541.32332563752,
- -196408.34816477957,
- -196504.99785979235,
- -196455.70087208258,
- -196480.78836830918,
- -196623.01283625938,
- -196421.16774980287,
- -196549.77754785056,
- -196520.50848836853,
- -196460.99820681041,
- -196330.35222787867,
- -196641.30269969517,
- -196316.11984664403,
- -196615.8921314892,
- -196323.18575227895,
- -196287.24588507827,
- -196489.4637902344,
- -196592.64448067575,
- -196651.12796950675,
- -196337.7964175994,
- -196435.57903475765,
- -196425.72291655725,
- -196443.09441339519,
- -196503.89361416345,
- -196538.03796348278,
- -196407.69176682775,
- -196453.90366500575,
- -196620.4564034161,
- -196368.93578565225,
- -196336.6452604692,
- -196451.32659140672,
- -196584.13722435836,
- -196550.36163773743,
- -196467.06908865008,
- -196437.28763150718,
- -196539.00158353732,
- -196464.94812796215,
- -196628.33337194961,
- -196276.35492457935,
- -196600.84524455655,
- -196438.97737875086,
- -196542.46186392213,
- -196495.15646825332,
- -196383.44533773506,
- -196584.13630503832,
- -196435.07942520038,
- -196472.90803114063,
- -196858.56777267455,
- -196506.52317436016,
- -196423.12115615146,
- -196494.714181361,
- -196335.97571939143,
- -196257.5842439066,
- -196450.63647772084,
- -196295.25829369153,
- -196549.37678044723,
- -196353.43409226913,
- -196392.21021078614,
- -196509.71950499725,
- -196444.19108020968,
- -196816.3663020291,
- -196254.53937207581,
- -196401.17859141144,
- -196582.62604443275,
- -196375.1204955413,
- -196306.78705593187,
- -196556.263798411,
- -196481.2520604121,
- -196387.3684123011,
- -196594.68433771073,
- -196534.56974015787,
- -196598.3252346663,
- -196432.1174841255,
- -196371.8701767749,
- -196561.82015946324,
- -196474.51192388064,
- -196410.2165088565,
- -196488.0490661285,
- -196601.67402550596,
- -196270.8076973989,
- -191218.29792273082,
- -190773.35143504693,
- -190584.05715662817,
- -190474.82891365502,
- -190627.12273639874,
- -190565.5574961089,
- -190511.04042249869,
- -190665.9029325363,
- -190549.36495173737,
- -190603.2646405981,
- -190467.50067797417,
- -190576.57553214984,
- -190445.9979986217,
- -190683.8285149941,
- -190852.38090816615,
- -190728.73035462684,
- -190883.16828134973,
- -190787.82297448965,
- -190803.13129126374,
- -192061.2139999865,
- -192043.71626047432,
- -191964.647756764,
- -190891.79490739512,
- -190894.2735892318,
- -190940.53838586452,
- -190816.47205959816,
- -190853.98202544727,
- -190769.52819472074,
- -190711.82282255974,
- -190786.15393264592,
- -190715.2106409246,
- -190927.8131014321,
- -190983.24181297334,
- -185652.40467809694,
- -185945.5150238995,
- -186214.06819645717,
- -186216.50602458388,
- -191856.6763200281,
- -191865.84986712263,
- -191865.61681838395,
- -191828.29448063852,
- -191764.30286109785,
- -191718.61375219104,
- -191653.1809436873,
- -191743.9925516096,
- -191796.13851196037,
- -191702.30279357143,
- -191702.69456493555,
- -191978.06283560264,
- -191767.79566278576,
- -191879.5988250336,
- -191816.39414215,
- -191761.08538711286,
- -191848.65283808287,
- -191632.82192091842,
- -187554.55535205672,
- -187589.65761840937,
- -187526.1000837456,
- -188247.63095166776,
- -188253.21810837943,
- -188166.64910838503,
- -188229.09502381584,
- -188212.53536496227,
- -188349.5439406991,
- -188074.9390005927,
- -188040.12515643216,
- -187845.35077936196,
- -189215.35398462103,
- -189123.84104439258,
- -189194.488756125,
- -189196.6452778848,
- -188323.24737628445,
- -188332.4255229405,
- -188370.9159487689,
- -188370.28768893745,
- -188283.69853709696,
- -188297.15304957947,
- -188298.3598862649,
- -188283.09308279172,
- -188237.7610465607,
- -188292.3058890195,
- -188271.55860805113,
- -188027.126623048,
- -187972.38221218612,
- -188083.56553678407,
- -188122.50775063198,
- -187561.3376490592,
- -187629.0390798209,
- -187535.8662195509,
- -187668.81541389253,
- -187621.53310971783,
- -187601.9133239069,
- -188283.31658936644,
- -188095.2939063459,
- -188048.40563093848,
- -188029.4813787521,
- -188259.8008772253,
- -187942.90402075808,
- -188111.32098520146,
- -188269.27401706978,
- -188038.668261585,
- -188021.35599826832,
- -188145.63669386692,
- -188154.92217313207,
- -188285.04208775162,
- -188032.76818274957,
- -188202.108708612,
- -188548.4840723725,
- -188370.81304855144,
- -188435.5287980957,
- -188539.16539749154,
- -188406.0852420654,
- -188375.41608470536,
- -188033.49918109106,
- -188141.9406256535,
- -188213.16505670684,
- -188299.90754175812,
- -188055.18840825645,
- -188010.80106167274,
- -188288.30179744438,
- -188172.62871077625,
- -188028.9956217424,
- -187979.16806459098,
- -188201.16967686315,
- -188402.8210414287,
- -188218.0680871657,
- -188209.99551585125,
- -188252.8925638619,
- -189858.4613268521,
- -188378.5507944686,
- -188392.59520295658,
- -188340.82295965083,
- -188344.25051226772,
- -188447.38244263985,
- -188321.4992550657,
- -188290.03028204778,
- -188276.1905836357,
- -188426.3163433966,
- -188379.43972742173,
- -188940.39294818317,
- -188487.06747544595,
- -188591.84517673572,
- -188430.72620436488,
- -188444.0235731584,
- -188596.05013602367,
- -188512.54177513707,
- -188699.77662528763,
- -188625.63379156328,
- -188612.0962266196,
- -188650.9029571649,
- -188231.5422576223,
- -188240.22615160185,
- -188094.17418821002,
- -188268.16708529167,
- -188277.69161143652,
- -188126.03656747416,
- -187773.89161390605,
- -187768.02879467254,
- -188801.4210158928,
- -188767.41641843505,
- -188890.03400560268,
- -187968.55426813365,
- -188033.3870086141,
- -188007.0926605345,
- -188162.9565995668,
- -188185.8360206985,
- -188045.48630401408,
- -188111.84876750235,
- -188003.5861127096,
- -188087.67081568346,
- -188058.20794789607,
- -188039.71959966994,
- -188083.6924472722,
- -187974.56083652587,
- -188200.24848876594,
- -188146.93600360025,
- -188144.75157425427,
- -188145.70803974595,
- -188106.29213649518,
- -188082.19662846022,
- -187968.96276014342,
- -188086.97635425016,
- -188104.29806410245,
- -188043.63936497684,
- -188006.95668439232,
- -188139.7614408556,
- -187885.68037084257,
- -188103.01400066275,
- -188117.5227897902,
- -188046.5415193328,
- -187934.88019874017,
- -187902.2258420666,
- -188060.24566124828,
- -188138.19385150683,
- -187992.70459943428,
- -188100.83145626815,
- -187918.62888498866,
- -188026.76554396577,
- -187996.96960220046,
- -187979.69368844153,
- -188054.69156568003,
- -187927.8824349312,
- -187981.00449699291,
- -189589.74977397075,
- -189522.47085552436,
- -188307.32313826354,
- -188432.78907464017,
- -188326.60982191455,
- -188354.1811308593,
- -188533.53409693413,
- -187800.99882697721,
- -187868.5464667596,
- -187753.06096357654,
- -187717.91851693625,
- -187695.8720814455,
- -187675.48095937257,
- -187700.15324202535,
- -187783.07389216768,
- -187780.48748696045,
- -187828.2195422653,
- -187833.51705638343,
- -187721.85004660045,
- -187660.64237843428,
- -187715.7343131632,
- -187780.5533465789,
- -187753.63706882135,
- -190192.99199780272,
- -189790.89938445395,
- -190212.54156170116,
- -189775.7899940225,
- -189039.90533258254,
- -189023.69513390047,
- -189295.93670652222,
- -189291.79965791342,
- -189200.57330304422,
- -189225.44343217573,
- -189655.76464204327,
- -189705.95770007666,
- -189643.5524444072,
- -189130.97364801675,
- -189116.34404480382,
- -187593.07759266367,
- -187846.51677388168,
- -187788.46861765772,
- -187757.48312437613,
- -187811.00235893583,
- -187835.38918713373,
- -188503.3820257475,
- -188608.75666870267,
- -188659.3952954119,
- -188533.61152171314,
- -188473.738548232,
- -188446.22688801138,
- -188324.66509707412,
- -190227.9999344756,
- -190209.6170070622,
- -190419.3938255866,
- -189358.54226131324,
- -189455.7501465173,
- -187851.21871572215,
- -187789.48509271396,
- -186169.3625546227,
- -190884.92755364833,
- -190852.65448954437,
- -190676.0383364286,
- -190794.98816362483,
- -190875.6299963171,
- -190881.4195072494,
- -190800.5661891712,
- -190967.90324167695,
- -190796.21734701467,
- -190849.80556299916,
- -190850.39999002474,
- -190705.93683743462,
- -190771.58442055932,
- -190703.81262351107,
- -190937.47881374045,
- -190805.20644104716,
- -190692.507124959,
- -190908.47378217717,
- -190864.96463177202,
- -190737.8835624348,
- -190739.5724284781,
- -190802.30922898772,
- -190698.23881648583,
- -190929.66979578658,
- -190729.50539915852,
- -190844.91909849216,
- -190813.14436611588,
- -190895.66896662925,
- -190908.32604239337,
- -190964.17059618633,
- -190762.50171806797,
- -190994.52260283855,
- -190768.6419722291,
- -190804.9616245743,
- -190962.8796978228,
- -190835.27084363703,
- -190974.33881747143,
- -190876.57184446702,
- -190834.01009906843,
- -190933.9534077934,
- -190909.64976137923,
- -190913.5105326216,
- -190796.94141805047,
- -190781.4409062239,
- -190923.8425100799,
- -191035.1109422804,
- -190908.71441964828,
- -190741.38638934697,
- -190885.78296118212,
- -190993.37192165887,
- -190961.12960518763,
- -190763.67489496517,
- -191006.89775095775,
- -190709.62985214093,
- -190934.3591051317,
- -190851.954708939,
- -190837.31528721907,
- -190807.84919101253,
- -190878.46789065155,
- -190967.49452304916,
- -190762.08180819644,
- -189505.9875498694,
- -189535.1434064379,
- -189668.16727616882,
- -189616.60988648146,
- -189638.23178416977,
- -189570.86066694462,
- -189576.08308589703,
- -189155.14860018887,
- -189239.60796500134,
- -187880.24230509295,
- -187644.4018088615,
- -187728.90535634218,
- -187852.92563407216,
- -187906.33280999027,
- -187894.400024042,
- -187929.1853205998,
- -187896.99301672008,
- -187640.26178314057,
- -187703.77673713973,
- -188077.23734942425,
- -187999.18462355132,
- -188092.18378419022,
- -188515.5010910575,
- -188574.65523758496,
- -190098.24210039582,
- -190295.73742487756,
- -190147.97551236962,
- -190113.79330947442,
- -189595.58720010423,
- -191048.32021429407,
- -191088.9053977869,
- -191072.42749505086,
- -188779.56731104586,
- -188683.22659860307,
- -188728.41122024317,
- -188799.83721849287,
- -188762.11742505888,
- -188619.68472282932,
- -188694.51829272378,
- -188750.53984223565
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 933483.4567391834,
- 95962.08383797004
- ],
- "y": [
- -841989.31294275,
- -188630.5751925975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 933483.4567391834,
- 95958.17194866823
- ],
- "y": [
- -841989.31294275,
- -188333.01761814565
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 96588.81767117835
- ],
- "y": [
- -775095.2833023075,
- -188120.26418891654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 95948.88284577774
- ],
- "y": [
- -775095.2833023075,
- -188484.3860102188
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 95880.89608253656
- ],
- "y": [
- -775095.2833023075,
- -188495.23201231525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 96750.96023331824
- ],
- "y": [
- -775095.2833023075,
- -188320.30928268767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 96510.55405575983
- ],
- "y": [
- -775095.2833023075,
- -188483.56766699257
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -366283.69394185964,
- 95767.91624828705
- ],
- "y": [
- -775095.2833023075,
- -187939.12845477546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -181700.15961593334,
- 96740.50167159707
- ],
- "y": [
- -623621.8672748602,
- -187818.23537279075
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -181700.15961593334,
- 97209.95143029183
- ],
- "y": [
- -623621.8672748602,
- -187946.7603080632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 429817.1381553038,
- 95962.08383797004
- ],
- "y": [
- -508933.80539782916,
- -188630.5751925975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 429817.1381553038,
- 95958.17194866823
- ],
- "y": [
- -508933.80539782916,
- -188333.01761814565
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97361.55787856234
- ],
- "y": [
- -785168.8110406864,
- -188197.8301536245
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96730.38048016379
- ],
- "y": [
- -785168.8110406864,
- -188683.2303206299
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96981.97292405601
- ],
- "y": [
- -785168.8110406864,
- -188503.10517806208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97064.56846526945
- ],
- "y": [
- -785168.8110406864,
- -188860.7645077761
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96996.94863760758
- ],
- "y": [
- -785168.8110406864,
- -188943.16984077886
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95612.3798589922
- ],
- "y": [
- -785168.8110406864,
- -189195.75127467563
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97025.10002004895
- ],
- "y": [
- -785168.8110406864,
- -188593.0213982362
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97085.03905872672
- ],
- "y": [
- -785168.8110406864,
- -188664.20873805106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97181.50823801635
- ],
- "y": [
- -785168.8110406864,
- -188389.7264047301
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97107.98327536366
- ],
- "y": [
- -785168.8110406864,
- -188531.62632111614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96671.54609170722
- ],
- "y": [
- -785168.8110406864,
- -188870.3516127079
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96264.44273321965
- ],
- "y": [
- -785168.8110406864,
- -188193.26327558464
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97372.74334299575
- ],
- "y": [
- -785168.8110406864,
- -187318.35447427825
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97234.35747194423
- ],
- "y": [
- -785168.8110406864,
- -189806.69206404962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97271.91592592461
- ],
- "y": [
- -785168.8110406864,
- -188090.2894991313
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97377.86830334815
- ],
- "y": [
- -785168.8110406864,
- -188100.01616886404
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97325.9129722734
- ],
- "y": [
- -785168.8110406864,
- -188174.55996141888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97061.7840428774
- ],
- "y": [
- -785168.8110406864,
- -188463.2031115645
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97215.01978405566
- ],
- "y": [
- -785168.8110406864,
- -188363.74532847013
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97358.31856309062
- ],
- "y": [
- -785168.8110406864,
- -187605.6195439504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97190.77820654793
- ],
- "y": [
- -785168.8110406864,
- -188732.3518539843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96441.85290714615
- ],
- "y": [
- -785168.8110406864,
- -184365.92318507173
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97203.18137378134
- ],
- "y": [
- -785168.8110406864,
- -188187.27869729063
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96615.52267587048
- ],
- "y": [
- -785168.8110406864,
- -188342.5253574899
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97362.57990476971
- ],
- "y": [
- -785168.8110406864,
- -187588.75004952576
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96430.3182329276
- ],
- "y": [
- -785168.8110406864,
- -189081.41342393393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97216.0877466562
- ],
- "y": [
- -785168.8110406864,
- -188060.79254294612
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97087.72560216134
- ],
- "y": [
- -785168.8110406864,
- -188845.78996045736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96827.37265721356
- ],
- "y": [
- -785168.8110406864,
- -188800.35117287276
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97471.93322774443
- ],
- "y": [
- -785168.8110406864,
- -188205.98013851763
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96478.42530029602
- ],
- "y": [
- -785168.8110406864,
- -188992.01175242575
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97500.18404094946
- ],
- "y": [
- -785168.8110406864,
- -188221.79324811854
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96989.78155035034
- ],
- "y": [
- -785168.8110406864,
- -188559.27230275373
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98448.42923749553
- ],
- "y": [
- -785168.8110406864,
- -188136.72692104083
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97143.83269179585
- ],
- "y": [
- -785168.8110406864,
- -187550.377833089
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97369.40146033755
- ],
- "y": [
- -785168.8110406864,
- -188302.59803287973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97339.71103793576
- ],
- "y": [
- -785168.8110406864,
- -187581.63192013613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96553.64509810388
- ],
- "y": [
- -785168.8110406864,
- -187717.56726598475
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97302.65739635656
- ],
- "y": [
- -785168.8110406864,
- -188480.64988687172
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97335.30821090189
- ],
- "y": [
- -785168.8110406864,
- -188160.1723451082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96554.76711541406
- ],
- "y": [
- -785168.8110406864,
- -188798.2366179604
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97344.39094759998
- ],
- "y": [
- -785168.8110406864,
- -188090.79273053954
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98269.13543855402
- ],
- "y": [
- -785168.8110406864,
- -187779.636684694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97120.93183600294
- ],
- "y": [
- -785168.8110406864,
- -188782.71424431694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97096.28494217026
- ],
- "y": [
- -785168.8110406864,
- -187419.76550716007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96822.6506902651
- ],
- "y": [
- -785168.8110406864,
- -188621.19074517605
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97442.83746991267
- ],
- "y": [
- -785168.8110406864,
- -187478.37592567242
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96832.47969398995
- ],
- "y": [
- -785168.8110406864,
- -187971.61344319995
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97815.81719436
- ],
- "y": [
- -785168.8110406864,
- -187778.30145997382
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98066.53944077659
- ],
- "y": [
- -785168.8110406864,
- -187625.15506672708
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97949.99254977489
- ],
- "y": [
- -785168.8110406864,
- -186611.5059282818
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97258.58975162834
- ],
- "y": [
- -785168.8110406864,
- -188003.31924616438
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97072.87553268592
- ],
- "y": [
- -785168.8110406864,
- -188139.1086900214
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97177.44060503879
- ],
- "y": [
- -785168.8110406864,
- -188172.13924848195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98940.06816975218
- ],
- "y": [
- -785168.8110406864,
- -187348.161691788
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98016.83324711236
- ],
- "y": [
- -785168.8110406864,
- -188223.82733587097
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97830.47996234937
- ],
- "y": [
- -785168.8110406864,
- -188730.91358476676
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97767.76658830828
- ],
- "y": [
- -785168.8110406864,
- -187886.4063756375
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96641.47157063635
- ],
- "y": [
- -785168.8110406864,
- -188597.83399210958
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97299.95033359852
- ],
- "y": [
- -785168.8110406864,
- -188057.1917578529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97365.44574077036
- ],
- "y": [
- -785168.8110406864,
- -188218.10363143042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97290.08489077912
- ],
- "y": [
- -785168.8110406864,
- -188210.32065825685
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97322.93543564298
- ],
- "y": [
- -785168.8110406864,
- -188129.95134955403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97060.5787311115
- ],
- "y": [
- -785168.8110406864,
- -188196.78625864437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97049.53534278259
- ],
- "y": [
- -785168.8110406864,
- -188493.78120901805
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97242.69405553193
- ],
- "y": [
- -785168.8110406864,
- -188034.45615562776
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98081.17812602762
- ],
- "y": [
- -785168.8110406864,
- -188161.6224994722
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97249.66244594876
- ],
- "y": [
- -785168.8110406864,
- -188173.13991697345
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97854.52508088839
- ],
- "y": [
- -785168.8110406864,
- -188249.23314484346
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97955.02720756274
- ],
- "y": [
- -785168.8110406864,
- -188327.77303545873
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97077.71122197901
- ],
- "y": [
- -785168.8110406864,
- -188516.92372013946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96385.16496434633
- ],
- "y": [
- -785168.8110406864,
- -189362.5154690305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97510.89358759671
- ],
- "y": [
- -785168.8110406864,
- -188432.70004235505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98459.92232309152
- ],
- "y": [
- -785168.8110406864,
- -188115.43097167817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97615.68830856765
- ],
- "y": [
- -785168.8110406864,
- -188400.87592482337
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98138.33403478275
- ],
- "y": [
- -785168.8110406864,
- -188482.24258789566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97827.98206777098
- ],
- "y": [
- -785168.8110406864,
- -188788.26218175198
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96467.8745823571
- ],
- "y": [
- -785168.8110406864,
- -189293.36061735288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95886.51435711926
- ],
- "y": [
- -785168.8110406864,
- -189227.5443430391
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98461.45076976992
- ],
- "y": [
- -785168.8110406864,
- -188131.32433438205
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98367.57183739317
- ],
- "y": [
- -785168.8110406864,
- -188109.2701383384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96854.14568860013
- ],
- "y": [
- -785168.8110406864,
- -188095.6269492578
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97266.32321649927
- ],
- "y": [
- -785168.8110406864,
- -188368.0469139002
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97363.0231077364
- ],
- "y": [
- -785168.8110406864,
- -188160.44816852582
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97395.40628065314
- ],
- "y": [
- -785168.8110406864,
- -188198.66663852846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96172.41683035072
- ],
- "y": [
- -785168.8110406864,
- -188806.49024330094
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96250.45766620964
- ],
- "y": [
- -785168.8110406864,
- -189163.69044909158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95520.1645763566
- ],
- "y": [
- -785168.8110406864,
- -185208.78508001886
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98448.70225290018
- ],
- "y": [
- -785168.8110406864,
- -188125.1114877186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96321.45254240566
- ],
- "y": [
- -785168.8110406864,
- -188534.0512551924
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97264.50790734109
- ],
- "y": [
- -785168.8110406864,
- -188177.51543305253
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97236.52009824176
- ],
- "y": [
- -785168.8110406864,
- -188133.61205856866
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97339.43922054533
- ],
- "y": [
- -785168.8110406864,
- -188047.21116345978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97243.18425457999
- ],
- "y": [
- -785168.8110406864,
- -188112.59605802642
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97315.50747893736
- ],
- "y": [
- -785168.8110406864,
- -188194.2363318084
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97215.05533166551
- ],
- "y": [
- -785168.8110406864,
- -188117.56111774204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96750.67919465902
- ],
- "y": [
- -785168.8110406864,
- -188690.07025037165
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96758.2131173848
- ],
- "y": [
- -785168.8110406864,
- -188656.54845148328
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96298.09511180542
- ],
- "y": [
- -785168.8110406864,
- -188969.58942661897
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95861.24531062585
- ],
- "y": [
- -785168.8110406864,
- -188902.73804542943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96714.78752865449
- ],
- "y": [
- -785168.8110406864,
- -189437.10887228855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97410.9196281361
- ],
- "y": [
- -785168.8110406864,
- -188334.74393636227
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96859.54396498862
- ],
- "y": [
- -785168.8110406864,
- -189186.06009143573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96181.25693811684
- ],
- "y": [
- -785168.8110406864,
- -188965.52824986106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96930.48088011655
- ],
- "y": [
- -785168.8110406864,
- -188960.47562263405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97770.14515646077
- ],
- "y": [
- -785168.8110406864,
- -188470.92069224652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97490.27494702111
- ],
- "y": [
- -785168.8110406864,
- -188476.5108117482
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97286.18570891903
- ],
- "y": [
- -785168.8110406864,
- -188140.7416293255
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97389.10178705663
- ],
- "y": [
- -785168.8110406864,
- -188146.4029455515
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97331.16186692334
- ],
- "y": [
- -785168.8110406864,
- -188071.56456675925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96488.13453110759
- ],
- "y": [
- -785168.8110406864,
- -188736.90081401754
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96074.87019613585
- ],
- "y": [
- -785168.8110406864,
- -188963.01391432688
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97074.27772427908
- ],
- "y": [
- -785168.8110406864,
- -188834.10272951444
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96074.67218939119
- ],
- "y": [
- -785168.8110406864,
- -189003.73857407318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97117.04988156656
- ],
- "y": [
- -785168.8110406864,
- -187984.04010321392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96276.76290288504
- ],
- "y": [
- -785168.8110406864,
- -188504.82116380852
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96138.27909570166
- ],
- "y": [
- -785168.8110406864,
- -188905.6100788483
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97145.57365835275
- ],
- "y": [
- -785168.8110406864,
- -188469.95350641874
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96646.8046235456
- ],
- "y": [
- -785168.8110406864,
- -188517.84736046946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95954.7235059804
- ],
- "y": [
- -785168.8110406864,
- -188304.5177743197
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97344.23333565774
- ],
- "y": [
- -785168.8110406864,
- -188106.72693407602
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97312.16899856621
- ],
- "y": [
- -785168.8110406864,
- -188224.97547898805
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97226.77467613107
- ],
- "y": [
- -785168.8110406864,
- -188062.4324835948
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97363.94242415007
- ],
- "y": [
- -785168.8110406864,
- -188068.27323340887
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96602.40260405943
- ],
- "y": [
- -785168.8110406864,
- -188836.55324492624
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95405.95241141658
- ],
- "y": [
- -785168.8110406864,
- -189360.7972441431
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97026.79872519187
- ],
- "y": [
- -785168.8110406864,
- -188481.55600240765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96882.48118360608
- ],
- "y": [
- -785168.8110406864,
- -188657.5093365336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96170.99341163754
- ],
- "y": [
- -785168.8110406864,
- -188989.48748180468
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96129.26226123162
- ],
- "y": [
- -785168.8110406864,
- -186433.20819659182
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97352.31659100096
- ],
- "y": [
- -785168.8110406864,
- -187618.5955755901
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96609.21495158957
- ],
- "y": [
- -785168.8110406864,
- -188608.14004422975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98432.06023611217
- ],
- "y": [
- -785168.8110406864,
- -188103.543164194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96466.10004162915
- ],
- "y": [
- -785168.8110406864,
- -188244.1581110861
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95721.84547331538
- ],
- "y": [
- -785168.8110406864,
- -189169.82807631438
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97171.80979185148
- ],
- "y": [
- -785168.8110406864,
- -187562.6954412684
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96673.26868148368
- ],
- "y": [
- -785168.8110406864,
- -188597.59464444526
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97242.36535343947
- ],
- "y": [
- -785168.8110406864,
- -188094.93147997395
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96662.13325458604
- ],
- "y": [
- -785168.8110406864,
- -188497.24015716757
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95361.48898776405
- ],
- "y": [
- -785168.8110406864,
- -186541.63161815086
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96723.71649615404
- ],
- "y": [
- -785168.8110406864,
- -189066.48960328338
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96577.78689065653
- ],
- "y": [
- -785168.8110406864,
- -188746.57951263554
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96304.89053116819
- ],
- "y": [
- -785168.8110406864,
- -188974.92632111761
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96020.02948032114
- ],
- "y": [
- -785168.8110406864,
- -188911.8607199644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 94721.83869654656
- ],
- "y": [
- -785168.8110406864,
- -188919.7029759385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97298.65959230787
- ],
- "y": [
- -785168.8110406864,
- -188102.7775258803
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96640.12295334176
- ],
- "y": [
- -785168.8110406864,
- -188377.38150042814
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96271.64391619014
- ],
- "y": [
- -785168.8110406864,
- -188087.26616295817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96408.13622599524
- ],
- "y": [
- -785168.8110406864,
- -188979.0014231341
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97309.18348925584
- ],
- "y": [
- -785168.8110406864,
- -188075.4320336564
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97289.56699193796
- ],
- "y": [
- -785168.8110406864,
- -188078.45265644975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97270.2903153982
- ],
- "y": [
- -785168.8110406864,
- -188154.95367904997
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96874.40221688445
- ],
- "y": [
- -785168.8110406864,
- -189231.2675484738
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96746.46975225132
- ],
- "y": [
- -785168.8110406864,
- -188515.5389473062
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96348.29844805674
- ],
- "y": [
- -785168.8110406864,
- -188291.51205377275
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96668.17509388815
- ],
- "y": [
- -785168.8110406864,
- -188851.13864683165
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96090.94263214861
- ],
- "y": [
- -785168.8110406864,
- -187819.11455949367
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96360.12432055575
- ],
- "y": [
- -785168.8110406864,
- -189285.9657250609
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96792.48106870924
- ],
- "y": [
- -785168.8110406864,
- -188590.74143741513
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96829.16589823875
- ],
- "y": [
- -785168.8110406864,
- -188592.58854995444
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96813.03260829017
- ],
- "y": [
- -785168.8110406864,
- -188149.64184463344
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96852.64814433026
- ],
- "y": [
- -785168.8110406864,
- -188010.31234546934
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97324.36613168383
- ],
- "y": [
- -785168.8110406864,
- -188060.2135347956
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97379.06355223498
- ],
- "y": [
- -785168.8110406864,
- -188203.78076926843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96719.96913872726
- ],
- "y": [
- -785168.8110406864,
- -188646.02879834978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96565.3052812955
- ],
- "y": [
- -785168.8110406864,
- -188429.88264305083
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96062.65271303893
- ],
- "y": [
- -785168.8110406864,
- -188690.19852216193
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96318.63129865125
- ],
- "y": [
- -785168.8110406864,
- -189267.9620036595
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96775.11425416196
- ],
- "y": [
- -785168.8110406864,
- -188566.821774848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97357.37235340624
- ],
- "y": [
- -785168.8110406864,
- -188252.50921945827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97277.72395289454
- ],
- "y": [
- -785168.8110406864,
- -188121.3122975104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97289.76170017247
- ],
- "y": [
- -785168.8110406864,
- -188198.51232125357
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97321.48237207504
- ],
- "y": [
- -785168.8110406864,
- -188108.59779207408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97227.68741107298
- ],
- "y": [
- -785168.8110406864,
- -188127.2678753391
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97204.20955384977
- ],
- "y": [
- -785168.8110406864,
- -188081.2142320706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96229.06326601339
- ],
- "y": [
- -785168.8110406864,
- -188533.7358044206
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97325.19271104848
- ],
- "y": [
- -785168.8110406864,
- -187599.9393852977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97617.21646735941
- ],
- "y": [
- -785168.8110406864,
- -188530.48273097305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98449.27256362812
- ],
- "y": [
- -785168.8110406864,
- -188098.39897942072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96581.33099308431
- ],
- "y": [
- -785168.8110406864,
- -188674.40626418887
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97228.58212383334
- ],
- "y": [
- -785168.8110406864,
- -188083.60697520856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97299.24309043337
- ],
- "y": [
- -785168.8110406864,
- -188148.15947986252
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97252.41548140156
- ],
- "y": [
- -785168.8110406864,
- -188022.57383190584
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97357.81547028142
- ],
- "y": [
- -785168.8110406864,
- -188130.72283528827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97236.43218292532
- ],
- "y": [
- -785168.8110406864,
- -188048.00492761855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97305.00730192695
- ],
- "y": [
- -785168.8110406864,
- -188170.03703741357
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97195.88804075729
- ],
- "y": [
- -785168.8110406864,
- -188251.20192635697
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97218.59509104007
- ],
- "y": [
- -785168.8110406864,
- -188251.14135969765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96261.3196088678
- ],
- "y": [
- -785168.8110406864,
- -189072.52109977874
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 93808.41622785716
- ],
- "y": [
- -785168.8110406864,
- -189421.3965259288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96850.96393927754
- ],
- "y": [
- -785168.8110406864,
- -188487.8442985911
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96537.12189876002
- ],
- "y": [
- -785168.8110406864,
- -188909.27353199496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96361.20003453246
- ],
- "y": [
- -785168.8110406864,
- -188597.87223608652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96470.92604424445
- ],
- "y": [
- -785168.8110406864,
- -187913.85881532487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96487.89609305817
- ],
- "y": [
- -785168.8110406864,
- -188652.52674561567
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96645.9713144198
- ],
- "y": [
- -785168.8110406864,
- -188835.22735785999
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96399.42211136232
- ],
- "y": [
- -785168.8110406864,
- -188894.10833929706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96412.58182949589
- ],
- "y": [
- -785168.8110406864,
- -189390.9934105709
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95545.86201701668
- ],
- "y": [
- -785168.8110406864,
- -189304.65399711
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96748.01232561683
- ],
- "y": [
- -785168.8110406864,
- -188772.49683122957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96556.53529112086
- ],
- "y": [
- -785168.8110406864,
- -187066.75929757126
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96657.04377656122
- ],
- "y": [
- -785168.8110406864,
- -188572.61534136938
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96611.79891677048
- ],
- "y": [
- -785168.8110406864,
- -188424.95815413288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97214.1761793492
- ],
- "y": [
- -785168.8110406864,
- -188285.79535372727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96131.39404043475
- ],
- "y": [
- -785168.8110406864,
- -186683.14575150548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96721.96485809215
- ],
- "y": [
- -785168.8110406864,
- -188557.7500853805
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96569.72587527646
- ],
- "y": [
- -785168.8110406864,
- -189297.14028084598
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96176.22696258772
- ],
- "y": [
- -785168.8110406864,
- -189158.03047828437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96122.91322426367
- ],
- "y": [
- -785168.8110406864,
- -188273.612045506
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96198.64527732105
- ],
- "y": [
- -785168.8110406864,
- -187641.16543157026
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97964.68713880659
- ],
- "y": [
- -785168.8110406864,
- -188244.37359244894
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97183.30733835287
- ],
- "y": [
- -785168.8110406864,
- -188328.36296298457
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 92882.88036181602
- ],
- "y": [
- -785168.8110406864,
- -186973.0577066971
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 93947.1652778539
- ],
- "y": [
- -785168.8110406864,
- -188676.80334905128
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96330.25949972049
- ],
- "y": [
- -785168.8110406864,
- -188706.18078984448
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97170.81081425113
- ],
- "y": [
- -785168.8110406864,
- -188123.2736693611
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95845.43465437011
- ],
- "y": [
- -785168.8110406864,
- -188699.20817216582
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 94883.17834351698
- ],
- "y": [
- -785168.8110406864,
- -188902.71776057317
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96709.27952791477
- ],
- "y": [
- -785168.8110406864,
- -188705.66239081704
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96667.2918950391
- ],
- "y": [
- -785168.8110406864,
- -188651.89978288996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95837.80625601206
- ],
- "y": [
- -785168.8110406864,
- -188031.4228654602
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96820.63808370597
- ],
- "y": [
- -785168.8110406864,
- -188507.5871274623
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96806.18517489852
- ],
- "y": [
- -785168.8110406864,
- -188473.15080842157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97280.51740997269
- ],
- "y": [
- -785168.8110406864,
- -187558.11023642388
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96714.28622859313
- ],
- "y": [
- -785168.8110406864,
- -189344.7791897772
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96088.28655554891
- ],
- "y": [
- -785168.8110406864,
- -188568.03135249048
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96842.71240942011
- ],
- "y": [
- -785168.8110406864,
- -189006.15667271154
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96636.80398752526
- ],
- "y": [
- -785168.8110406864,
- -188907.33441810505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96814.47946325276
- ],
- "y": [
- -785168.8110406864,
- -188872.08380899028
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96686.4149689825
- ],
- "y": [
- -785168.8110406864,
- -189090.95733044946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96733.90105315663
- ],
- "y": [
- -785168.8110406864,
- -188466.8921120741
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96744.78801527941
- ],
- "y": [
- -785168.8110406864,
- -188916.39990961482
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96492.3193299354
- ],
- "y": [
- -785168.8110406864,
- -188890.76276156757
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96406.73123341237
- ],
- "y": [
- -785168.8110406864,
- -189031.25167023003
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96335.82539154506
- ],
- "y": [
- -785168.8110406864,
- -190718.20336678185
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96082.8637414932
- ],
- "y": [
- -785168.8110406864,
- -188924.92880801545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96567.91127200374
- ],
- "y": [
- -785168.8110406864,
- -189611.13910755786
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96501.22061638958
- ],
- "y": [
- -785168.8110406864,
- -189371.07705115504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96231.57047597128
- ],
- "y": [
- -785168.8110406864,
- -187862.73468047418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96447.73644124497
- ],
- "y": [
- -785168.8110406864,
- -188350.84668912945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96907.51876847682
- ],
- "y": [
- -785168.8110406864,
- -188435.49777233123
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96140.78208609398
- ],
- "y": [
- -785168.8110406864,
- -189286.4104808909
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96791.93089613823
- ],
- "y": [
- -785168.8110406864,
- -189329.86947105004
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96773.1294794952
- ],
- "y": [
- -785168.8110406864,
- -188827.20853608186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97215.55371993229
- ],
- "y": [
- -785168.8110406864,
- -188656.4246604865
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96989.24436251477
- ],
- "y": [
- -785168.8110406864,
- -188224.81397464138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96715.92227964214
- ],
- "y": [
- -785168.8110406864,
- -188371.826375027
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96692.76062085203
- ],
- "y": [
- -785168.8110406864,
- -188530.07168880716
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96896.91552525175
- ],
- "y": [
- -785168.8110406864,
- -188684.380536833
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96737.85869639236
- ],
- "y": [
- -785168.8110406864,
- -188809.10200272722
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 95444.01440252263
- ],
- "y": [
- -785168.8110406864,
- -189064.02055466248
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96447.8287589237
- ],
- "y": [
- -785168.8110406864,
- -188910.5188593822
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96639.08049903584
- ],
- "y": [
- -785168.8110406864,
- -187504.5939470865
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97213.58157620984
- ],
- "y": [
- -785168.8110406864,
- -188238.2747120987
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96349.45899615414
- ],
- "y": [
- -785168.8110406864,
- -189055.06434900622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96911.82889073166
- ],
- "y": [
- -785168.8110406864,
- -188985.5661371472
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96584.25000074002
- ],
- "y": [
- -785168.8110406864,
- -188817.42461554098
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97638.83972944805
- ],
- "y": [
- -785168.8110406864,
- -188328.4992507085
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97141.32121371166
- ],
- "y": [
- -785168.8110406864,
- -188032.35686812358
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97589.68831697167
- ],
- "y": [
- -785168.8110406864,
- -188989.35923942667
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96754.87507754394
- ],
- "y": [
- -785168.8110406864,
- -188537.1492944953
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 97436.04173144014
- ],
- "y": [
- -785168.8110406864,
- -188332.10285588854
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96829.7050884141
- ],
- "y": [
- -785168.8110406864,
- -188224.61386277262
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96707.30691234408
- ],
- "y": [
- -785168.8110406864,
- -188398.43069892912
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96535.511292164
- ],
- "y": [
- -785168.8110406864,
- -188690.45660123866
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96405.25838544288
- ],
- "y": [
- -785168.8110406864,
- -188764.5244681029
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96596.4969197861
- ],
- "y": [
- -785168.8110406864,
- -188476.21098523034
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 96957.15143187257
- ],
- "y": [
- -785168.8110406864,
- -188906.10027535562
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894216.5057303684,
- 98108.28736915902
- ],
- "y": [
- -785168.8110406864,
- -188598.92292480564
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -340099.1897493526,
- 97092.03590641617
- ],
- "y": [
- 438056.862237691,
- -188338.53308343157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 458352.946828549,
- 95739.18477075809
- ],
- "y": [
- -427115.71569997055,
- -188035.09619434597
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 458352.946828549,
- 95638.78273951489
- ],
- "y": [
- -427115.71569997055,
- -187471.21704082517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683996.0178905013,
- 96868.09370002619
- ],
- "y": [
- -459779.53796019853,
- -187485.8021358164
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683996.0178905013,
- 96840.061255232
- ],
- "y": [
- -459779.53796019853,
- -187835.19770223383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 233201.9544420003,
- 97740.36484145897
- ],
- "y": [
- 796480.9210348161,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -884245.3767823352,
- 97740.36484145897
- ],
- "y": [
- 16228.446847255995,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -347699.8273738099,
- 97228.17238280359
- ],
- "y": [
- -10117.113578631543,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -347699.8273738099,
- 96287.81181504241
- ],
- "y": [
- -10117.113578631543,
- -188922.89599843553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 465403.5083914787,
- 97228.17238280359
- ],
- "y": [
- -53631.432702805796,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 183588.8342892922,
- 97306.68660394431
- ],
- "y": [
- 831976.0985445925,
- -189190.69568859632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 183588.8342892922,
- 97519.14188663122
- ],
- "y": [
- 831976.0985445925,
- -188648.39727075843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 183588.8342892922,
- 96800.95464898097
- ],
- "y": [
- 831976.0985445925,
- -188995.8386599755
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 183588.8342892922,
- 96931.14707892697
- ],
- "y": [
- 831976.0985445925,
- -188818.68200287974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -554819.1953686934,
- 96653.93028602129
- ],
- "y": [
- 159844.88204567993,
- -189419.4844744169
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -554819.1953686934,
- 97306.68660394431
- ],
- "y": [
- 159844.88204567993,
- -189190.69568859632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -554819.1953686934,
- 97519.14188663122
- ],
- "y": [
- 159844.88204567993,
- -188648.39727075843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -554819.1953686934,
- 96800.95464898097
- ],
- "y": [
- 159844.88204567993,
- -188995.8386599755
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -554819.1953686934,
- 96931.14707892697
- ],
- "y": [
- 159844.88204567993,
- -188818.68200287974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 96612.17178282065
- ],
- "y": [
- -6243.166011681511,
- -188681.37081393888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 94019.39320785269
- ],
- "y": [
- -6243.166011681511,
- -190034.5154898649
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 96918.79607718707
- ],
- "y": [
- -6243.166011681511,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 95778.09112358528
- ],
- "y": [
- -6243.166011681511,
- -188332.3887565364
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 94801.82599832956
- ],
- "y": [
- -6243.166011681511,
- -189148.08464521947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 94998.66487738185
- ],
- "y": [
- -6243.166011681511,
- -189778.0564884073
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 95681.96009977852
- ],
- "y": [
- -6243.166011681511,
- -188895.1305372902
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 95501.99445714205
- ],
- "y": [
- -6243.166011681511,
- -189361.39928674913
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 950439.392680525,
- 95451.74998648891
- ],
- "y": [
- -6243.166011681511,
- -189514.26395840745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -956642.0026505338,
- 97377.6500584912
- ],
- "y": [
- -521021.30094780907,
- -188424.82223649055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -956642.0026505338,
- 96918.79607718707
- ],
- "y": [
- -521021.30094780907,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -956642.0026505338,
- 96959.17409848377
- ],
- "y": [
- -521021.30094780907,
- -188154.87099078548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 801315.0897775844,
- 97453.56935622763
- ],
- "y": [
- 694713.1899190526,
- -188823.15900221813
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 856763.4161872992,
- 97492.36374902399
- ],
- "y": [
- -910162.6660223072,
- -188236.33672313037
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 856763.4161872992,
- 97452.67144706869
- ],
- "y": [
- -910162.6660223072,
- -188290.4882788216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 543040.1381149603,
- 97467.97384514623
- ],
- "y": [
- -774909.9996208384,
- -188591.75199645569
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -190477.9447491629,
- 96643.07015445872
- ],
- "y": [
- 320117.776495078,
- -188345.75062919507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -190477.9447491629,
- 96616.28197124632
- ],
- "y": [
- 320117.776495078,
- -189486.94419473826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -190477.9447491629,
- 96611.07880435153
- ],
- "y": [
- 320117.776495078,
- -189045.68105489522
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -316220.8201520302,
- 95591.49480913648
- ],
- "y": [
- -547323.1177429256,
- -188680.97177115767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -316220.8201520302,
- 96743.02101349403
- ],
- "y": [
- -547323.1177429256,
- -187854.13914095613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -316220.8201520302,
- 96450.68991158345
- ],
- "y": [
- -547323.1177429256,
- -187620.89247314315
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 470707.5911725738,
- 96877.98110658897
- ],
- "y": [
- 654473.3768154809,
- -187749.7848825597
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 470707.5911725738,
- 97082.82303991095
- ],
- "y": [
- 654473.3768154809,
- -187628.5971893858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 470707.5911725738,
- 98237.07311872549
- ],
- "y": [
- 654473.3768154809,
- -186283.60700347682
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 470707.5911725738,
- 97435.85714721317
- ],
- "y": [
- 654473.3768154809,
- -186870.78214397354
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 96347.73945345664
- ],
- "y": [
- -554026.6105989073,
- -189075.78000835242
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 98753.0342330029
- ],
- "y": [
- -554026.6105989073,
- -189556.635346552
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 97389.05654094371
- ],
- "y": [
- -554026.6105989073,
- -190524.42466711518
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 97350.06903114164
- ],
- "y": [
- -554026.6105989073,
- -189972.3782485477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 97254.23934987192
- ],
- "y": [
- -554026.6105989073,
- -190110.09263707226
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 96919.826641072
- ],
- "y": [
- -554026.6105989073,
- -189723.06164490216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 97357.32608817489
- ],
- "y": [
- -554026.6105989073,
- -190104.18934124312
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 97311.70614692672
- ],
- "y": [
- -554026.6105989073,
- -191447.36757318178
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -40084.87664969729,
- 96312.49145069612
- ],
- "y": [
- -554026.6105989073,
- -189487.1728230268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 330812.40467371355,
- 97740.36484145897
- ],
- "y": [
- 40335.22057385208,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 332347.5294036897,
- 97740.36484145897
- ],
- "y": [
- 774172.9920404115,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -968835.1525967998,
- 97740.36484145897
- ],
- "y": [
- -279877.61613975046,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 902764.2360196946,
- 97342.74090899815
- ],
- "y": [
- 585072.4377650085,
- -188337.61728350184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 896641.9692342175,
- 97676.19241492003
- ],
- "y": [
- 405049.85986093513,
- -188634.22396120222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 896641.9692342175,
- 97533.87560124022
- ],
- "y": [
- 405049.85986093513,
- -188577.10958302955
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 896641.9692342175,
- 96983.61207113188
- ],
- "y": [
- 405049.85986093513,
- -188609.33112603877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 896641.9692342175,
- 97042.01258952515
- ],
- "y": [
- 405049.85986093513,
- -187678.114505735
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97651.32746016643
- ],
- "y": [
- 232440.3037218077,
- -187393.45287008572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97136.55546326986
- ],
- "y": [
- 232440.3037218077,
- -187444.98398375107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97605.64203060168
- ],
- "y": [
- 232440.3037218077,
- -187212.75750088846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97499.57548817585
- ],
- "y": [
- 232440.3037218077,
- -187430.50547179487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97615.00090956
- ],
- "y": [
- 232440.3037218077,
- -187206.375494998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21448.410189587543,
- 97672.92128722146
- ],
- "y": [
- 232440.3037218077,
- -187142.3027271855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 957697.1302399324,
- 97634.83104178979
- ],
- "y": [
- -25362.31872866912,
- -189125.41464985392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95512.48672079766
- ],
- "y": [
- -248481.98492127337,
- -185759.04101010459
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95520.58581704031
- ],
- "y": [
- -248481.98492127337,
- -184987.91450924633
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96295.26828740547
- ],
- "y": [
- -248481.98492127337,
- -186636.99979215744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96282.43445699873
- ],
- "y": [
- -248481.98492127337,
- -187026.07843949736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96568.35948892368
- ],
- "y": [
- -248481.98492127337,
- -186362.3442443084
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96305.70007753118
- ],
- "y": [
- -248481.98492127337,
- -184641.7612714999
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96281.6988740464
- ],
- "y": [
- -248481.98492127337,
- -186631.89998789044
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96634.97232577665
- ],
- "y": [
- -248481.98492127337,
- -185684.77267411654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96658.50723704832
- ],
- "y": [
- -248481.98492127337,
- -185952.0045384303
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96327.25960947742
- ],
- "y": [
- -248481.98492127337,
- -184904.78554636845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96412.87128274282
- ],
- "y": [
- -248481.98492127337,
- -184466.17568020654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95612.05251687022
- ],
- "y": [
- -248481.98492127337,
- -187733.16720291993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96308.17494820403
- ],
- "y": [
- -248481.98492127337,
- -186005.44685669165
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96460.09274444025
- ],
- "y": [
- -248481.98492127337,
- -185619.78884854354
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96049.36643690022
- ],
- "y": [
- -248481.98492127337,
- -185702.8268145955
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96412.62955632774
- ],
- "y": [
- -248481.98492127337,
- -186641.42486820777
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96616.7559403405
- ],
- "y": [
- -248481.98492127337,
- -186086.34378531418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96519.5204681799
- ],
- "y": [
- -248481.98492127337,
- -186293.45287911844
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97093.69642855125
- ],
- "y": [
- -248481.98492127337,
- -186774.72272855093
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96679.99009179635
- ],
- "y": [
- -248481.98492127337,
- -186590.54840473336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95633.12109295135
- ],
- "y": [
- -248481.98492127337,
- -185178.65674855074
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96619.3340165115
- ],
- "y": [
- -248481.98492127337,
- -185915.41451703524
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96150.03424362313
- ],
- "y": [
- -248481.98492127337,
- -185024.2525256191
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95937.7713444444
- ],
- "y": [
- -248481.98492127337,
- -187101.25689315388
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96585.71992460922
- ],
- "y": [
- -248481.98492127337,
- -186246.8336915767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96491.68898578656
- ],
- "y": [
- -248481.98492127337,
- -185785.58597568647
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95350.83394336532
- ],
- "y": [
- -248481.98492127337,
- -186910.03493563386
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96134.20248253406
- ],
- "y": [
- -248481.98492127337,
- -184853.0590167661
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96072.38567279669
- ],
- "y": [
- -248481.98492127337,
- -186226.79838547923
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96772.82588738113
- ],
- "y": [
- -248481.98492127337,
- -186901.84865346336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96977.58687203821
- ],
- "y": [
- -248481.98492127337,
- -186721.96101630855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96304.58681365351
- ],
- "y": [
- -248481.98492127337,
- -184537.33337450697
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96251.19968281969
- ],
- "y": [
- -248481.98492127337,
- -185045.17257071825
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96108.91834438108
- ],
- "y": [
- -248481.98492127337,
- -185015.8206856978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96778.70350523331
- ],
- "y": [
- -248481.98492127337,
- -186804.32931589548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96382.02705846845
- ],
- "y": [
- -248481.98492127337,
- -184581.5176270497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 94634.35092199444
- ],
- "y": [
- -248481.98492127337,
- -185481.01398954104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96601.97537172223
- ],
- "y": [
- -248481.98492127337,
- -186732.67988941015
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96473.43688595422
- ],
- "y": [
- -248481.98492127337,
- -184625.82608792314
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96422.64317562626
- ],
- "y": [
- -248481.98492127337,
- -186816.72669112886
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96431.47888012671
- ],
- "y": [
- -248481.98492127337,
- -184583.06480907716
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96636.83424445745
- ],
- "y": [
- -248481.98492127337,
- -185882.0659107163
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96056.19248735494
- ],
- "y": [
- -248481.98492127337,
- -185038.89476309827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96515.11905526402
- ],
- "y": [
- -248481.98492127337,
- -185605.49639890593
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96660.38035113053
- ],
- "y": [
- -248481.98492127337,
- -186050.83831655356
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95774.24926109349
- ],
- "y": [
- -248481.98492127337,
- -185545.91429343188
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97585.87618383576
- ],
- "y": [
- -248481.98492127337,
- -185541.4531936617
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96583.5257472604
- ],
- "y": [
- -248481.98492127337,
- -186168.82581792577
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95122.89837108535
- ],
- "y": [
- -248481.98492127337,
- -186748.98809619094
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96605.90599322402
- ],
- "y": [
- -248481.98492127337,
- -186212.79235782122
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96038.36554774032
- ],
- "y": [
- -248481.98492127337,
- -185138.3043013017
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96031.4993704607
- ],
- "y": [
- -248481.98492127337,
- -185886.66303952422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96675.71260270195
- ],
- "y": [
- -248481.98492127337,
- -185943.81351701595
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97049.512435505
- ],
- "y": [
- -248481.98492127337,
- -187223.2607479505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96433.845799983
- ],
- "y": [
- -248481.98492127337,
- -186155.98693221714
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95897.07037264043
- ],
- "y": [
- -248481.98492127337,
- -186745.5325164879
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96960.27176327427
- ],
- "y": [
- -248481.98492127337,
- -185873.2153007946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96307.85692216411
- ],
- "y": [
- -248481.98492127337,
- -184956.02375735843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96242.35848519257
- ],
- "y": [
- -248481.98492127337,
- -184916.01122916443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96819.81129369602
- ],
- "y": [
- -248481.98492127337,
- -187298.0167096983
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97249.8102467086
- ],
- "y": [
- -248481.98492127337,
- -186400.0437673064
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96108.87427334944
- ],
- "y": [
- -248481.98492127337,
- -186436.31884006507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97349.66316971318
- ],
- "y": [
- -248481.98492127337,
- -186909.73673779095
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97012.3360267975
- ],
- "y": [
- -248481.98492127337,
- -185995.1502748551
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96330.17839103569
- ],
- "y": [
- -248481.98492127337,
- -184615.0971850325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 98400.16393508099
- ],
- "y": [
- -248481.98492127337,
- -187360.11530786066
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96728.43531848033
- ],
- "y": [
- -248481.98492127337,
- -185731.06588292573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95819.22417527653
- ],
- "y": [
- -248481.98492127337,
- -185203.40536363234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97357.92552252565
- ],
- "y": [
- -248481.98492127337,
- -186738.0081330498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96299.78998071494
- ],
- "y": [
- -248481.98492127337,
- -184452.34215766398
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97385.46389592621
- ],
- "y": [
- -248481.98492127337,
- -186427.8924649136
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97411.8360170104
- ],
- "y": [
- -248481.98492127337,
- -185642.1433378504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97204.89839977278
- ],
- "y": [
- -248481.98492127337,
- -186666.6053800214
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96463.30750173924
- ],
- "y": [
- -248481.98492127337,
- -185815.18416524283
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96598.60562028212
- ],
- "y": [
- -248481.98492127337,
- -186758.5541269017
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95896.43296916565
- ],
- "y": [
- -248481.98492127337,
- -187178.7309685011
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96091.45432140626
- ],
- "y": [
- -248481.98492127337,
- -185344.84167674318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97311.35174306807
- ],
- "y": [
- -248481.98492127337,
- -186299.91453282413
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96200.70472225144
- ],
- "y": [
- -248481.98492127337,
- -184913.47542316676
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97500.53674710442
- ],
- "y": [
- -248481.98492127337,
- -186120.90133707918
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96082.33537164425
- ],
- "y": [
- -248481.98492127337,
- -186355.57333992186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96477.12621197902
- ],
- "y": [
- -248481.98492127337,
- -186189.16120161928
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96347.4403938442
- ],
- "y": [
- -248481.98492127337,
- -184489.52291589003
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96763.1280194511
- ],
- "y": [
- -248481.98492127337,
- -186020.49632337195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96773.35799206587
- ],
- "y": [
- -248481.98492127337,
- -185978.46454360176
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96670.27291581893
- ],
- "y": [
- -248481.98492127337,
- -186423.1890183184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 94870.7294183785
- ],
- "y": [
- -248481.98492127337,
- -186357.39136631842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96530.4881400899
- ],
- "y": [
- -248481.98492127337,
- -186197.9689961989
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95996.08028297019
- ],
- "y": [
- -248481.98492127337,
- -185022.86408063665
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95648.0622321095
- ],
- "y": [
- -248481.98492127337,
- -187501.80648056217
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95765.59330845765
- ],
- "y": [
- -248481.98492127337,
- -184448.27042316197
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96347.57634764894
- ],
- "y": [
- -248481.98492127337,
- -185456.1454266718
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96313.51649151853
- ],
- "y": [
- -248481.98492127337,
- -186332.64294302047
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96240.89790514634
- ],
- "y": [
- -248481.98492127337,
- -184782.3347015735
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97253.59328958677
- ],
- "y": [
- -248481.98492127337,
- -186335.73632380622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96585.02524485815
- ],
- "y": [
- -248481.98492127337,
- -186471.46349538234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97110.64567914454
- ],
- "y": [
- -248481.98492127337,
- -186139.010172475
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96401.05087142391
- ],
- "y": [
- -248481.98492127337,
- -186316.0422884422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97634.16117706981
- ],
- "y": [
- -248481.98492127337,
- -185427.96582922543
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97632.23610323192
- ],
- "y": [
- -248481.98492127337,
- -185447.0419864294
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96476.9266197321
- ],
- "y": [
- -248481.98492127337,
- -184490.70631354378
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96143.59715704634
- ],
- "y": [
- -248481.98492127337,
- -184939.12159409848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96442.3959926909
- ],
- "y": [
- -248481.98492127337,
- -185499.81083646082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97173.67520609817
- ],
- "y": [
- -248481.98492127337,
- -185420.27932112452
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97452.54296459325
- ],
- "y": [
- -248481.98492127337,
- -186178.47202606747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 98764.71093073962
- ],
- "y": [
- -248481.98492127337,
- -185579.11398649425
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 94675.58068459465
- ],
- "y": [
- -248481.98492127337,
- -162543.04429998007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96584.45858311476
- ],
- "y": [
- -248481.98492127337,
- -185402.97734600544
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96074.51018899358
- ],
- "y": [
- -248481.98492127337,
- -184648.39875714693
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96941.3855747379
- ],
- "y": [
- -248481.98492127337,
- -185873.0454380232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96481.93148257826
- ],
- "y": [
- -248481.98492127337,
- -185520.70192438262
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96194.20097196527
- ],
- "y": [
- -248481.98492127337,
- -185045.13302486815
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96410.63417003947
- ],
- "y": [
- -248481.98492127337,
- -184686.93743150224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96268.58433157318
- ],
- "y": [
- -248481.98492127337,
- -184749.34739859024
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96844.08726268722
- ],
- "y": [
- -248481.98492127337,
- -184975.0257556787
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96732.61589548577
- ],
- "y": [
- -248481.98492127337,
- -186494.74258418888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97054.54306076036
- ],
- "y": [
- -248481.98492127337,
- -186002.60660400984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96736.36947326055
- ],
- "y": [
- -248481.98492127337,
- -185421.69274864852
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95950.87856285187
- ],
- "y": [
- -248481.98492127337,
- -184586.8813999643
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96058.5884161396
- ],
- "y": [
- -248481.98492127337,
- -185681.38668976224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96074.46008448287
- ],
- "y": [
- -248481.98492127337,
- -186353.07679074036
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96373.61215631547
- ],
- "y": [
- -248481.98492127337,
- -185564.40303426507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96774.68889401545
- ],
- "y": [
- -248481.98492127337,
- -186002.1139085686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95954.6226953649
- ],
- "y": [
- -248481.98492127337,
- -185305.14466217102
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97375.91125894338
- ],
- "y": [
- -248481.98492127337,
- -185778.17229121647
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96762.60907180404
- ],
- "y": [
- -248481.98492127337,
- -186985.55167581502
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96892.63356474544
- ],
- "y": [
- -248481.98492127337,
- -186263.96942212473
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96499.75723381033
- ],
- "y": [
- -248481.98492127337,
- -185857.1772490468
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96294.09088720444
- ],
- "y": [
- -248481.98492127337,
- -185285.2393191878
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96966.39468034501
- ],
- "y": [
- -248481.98492127337,
- -187056.932365551
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96109.50994722702
- ],
- "y": [
- -248481.98492127337,
- -184676.4950788661
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96088.99615148573
- ],
- "y": [
- -248481.98492127337,
- -184930.69103318956
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96447.29551553998
- ],
- "y": [
- -248481.98492127337,
- -185654.1953572347
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95819.44644735986
- ],
- "y": [
- -248481.98492127337,
- -184539.2197937198
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96218.35482989937
- ],
- "y": [
- -248481.98492127337,
- -185426.67525594652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95899.18906383448
- ],
- "y": [
- -248481.98492127337,
- -185125.95912239008
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96769.01595020863
- ],
- "y": [
- -248481.98492127337,
- -186228.52516030474
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96274.30300397708
- ],
- "y": [
- -248481.98492127337,
- -185197.58467855424
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96042.0069575773
- ],
- "y": [
- -248481.98492127337,
- -184440.56367975674
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97385.79270355738
- ],
- "y": [
- -248481.98492127337,
- -185759.1915587864
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96229.39248836122
- ],
- "y": [
- -248481.98492127337,
- -185972.1252497052
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96126.32784334563
- ],
- "y": [
- -248481.98492127337,
- -186192.2420612465
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96635.17803046739
- ],
- "y": [
- -248481.98492127337,
- -185572.22568055146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96526.03756640776
- ],
- "y": [
- -248481.98492127337,
- -184521.98992331282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96032.39838433285
- ],
- "y": [
- -248481.98492127337,
- -184716.55236438496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97463.6827927217
- ],
- "y": [
- -248481.98492127337,
- -187315.42788165333
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 95854.85581067526
- ],
- "y": [
- -248481.98492127337,
- -186517.17238975927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96404.04885412315
- ],
- "y": [
- -248481.98492127337,
- -185020.17742510125
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96940.5437378161
- ],
- "y": [
- -248481.98492127337,
- -186047.50278945875
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96906.44900909
- ],
- "y": [
- -248481.98492127337,
- -186067.006560711
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96406.17290872385
- ],
- "y": [
- -248481.98492127337,
- -185935.95217366592
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97193.59098538685
- ],
- "y": [
- -248481.98492127337,
- -187267.3268205127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97229.6312230193
- ],
- "y": [
- -248481.98492127337,
- -186480.07163780744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96433.95166449582
- ],
- "y": [
- -248481.98492127337,
- -185251.66599737256
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97275.9101009866
- ],
- "y": [
- -248481.98492127337,
- -186588.42377164616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96243.29294451735
- ],
- "y": [
- -248481.98492127337,
- -185212.56249281162
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97395.09075685765
- ],
- "y": [
- -248481.98492127337,
- -185768.74376793872
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96491.31294403854
- ],
- "y": [
- -248481.98492127337,
- -184566.5211927391
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96377.89286649457
- ],
- "y": [
- -248481.98492127337,
- -184641.3699119499
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 96395.26906016511
- ],
- "y": [
- -248481.98492127337,
- -184521.26817218866
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 482919.71377339005,
- 97324.02537320471
- ],
- "y": [
- -248481.98492127337,
- -187072.0455521363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -922113.7465409437,
- 97620.07637011069
- ],
- "y": [
- -560953.9048498886,
- -187795.37604648358
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97651.32746016643
- ],
- "y": [
- -519433.26064300345,
- -187393.45287008572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97136.55546326986
- ],
- "y": [
- -519433.26064300345,
- -187444.98398375107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97605.64203060168
- ],
- "y": [
- -519433.26064300345,
- -187212.75750088846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97499.57548817585
- ],
- "y": [
- -519433.26064300345,
- -187430.50547179487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97615.00090956
- ],
- "y": [
- -519433.26064300345,
- -187206.375494998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -115988.0603293435,
- 97672.92128722146
- ],
- "y": [
- -519433.26064300345,
- -187142.3027271855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 320720.9523268768,
- 96147.39169169297
- ],
- "y": [
- 184701.89774695545,
- -189725.6419856943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -183915.13182539286,
- 97643.64988982778
- ],
- "y": [
- 893827.7421553927,
- -187757.4125399983
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -183915.13182539286,
- 97033.93508477152
- ],
- "y": [
- 893827.7421553927,
- -187976.81833544138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -183915.13182539286,
- 97602.881367329
- ],
- "y": [
- 893827.7421553927,
- -187648.12160933763
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 467586.5371865227,
- 97306.68660394431
- ],
- "y": [
- -828817.328114863,
- -189190.69568859632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 467586.5371865227,
- 97519.14188663122
- ],
- "y": [
- -828817.328114863,
- -188648.39727075843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 467586.5371865227,
- 96800.95464898097
- ],
- "y": [
- -828817.328114863,
- -188995.8386599755
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 467586.5371865227,
- 96931.14707892697
- ],
- "y": [
- -828817.328114863,
- -188818.68200287974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155810.07246206168,
- 97155.50811563137
- ],
- "y": [
- 750487.891196061,
- -188696.13322752403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155810.07246206168,
- 96918.79607718707
- ],
- "y": [
- 750487.891196061,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155810.07246206168,
- 96612.17178282065
- ],
- "y": [
- 750487.891196061,
- -188681.37081393888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -255273.7184953122,
- 98171.17574764158
- ],
- "y": [
- 508993.2816321345,
- -188070.50402783387
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 96541.43397278279
- ],
- "y": [
- 540210.7149106248,
- -189274.10474049454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 96167.45474416234
- ],
- "y": [
- 540210.7149106248,
- -189265.0331807753
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 95870.52327035548
- ],
- "y": [
- 540210.7149106248,
- -189023.51159242663
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 96926.74644690406
- ],
- "y": [
- 540210.7149106248,
- -189150.0722038921
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 96878.0650637567
- ],
- "y": [
- 540210.7149106248,
- -188785.27223021127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 683377.9850822419,
- 96356.62202527624
- ],
- "y": [
- 540210.7149106248,
- -189202.4647666379
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -820786.1217632035,
- 97610.48729478249
- ],
- "y": [
- -373173.5110220982,
- -188283.2622476873
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -820786.1217632035,
- 97375.10606040448
- ],
- "y": [
- -373173.5110220982,
- -188647.58850257998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -820786.1217632035,
- 98168.55916640947
- ],
- "y": [
- -373173.5110220982,
- -187775.4606762898
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -514479.34659976815,
- 97401.99871940678
- ],
- "y": [
- -303596.317152965,
- -189047.84983436737
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -514479.34659976815,
- 96722.2929728447
- ],
- "y": [
- -303596.317152965,
- -188214.95290711892
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -514479.34659976815,
- 97054.36607374287
- ],
- "y": [
- -303596.317152965,
- -187829.60079496383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -514479.34659976815,
- 96603.25260090239
- ],
- "y": [
- -303596.317152965,
- -188860.81131323622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98932.31091884513
- ],
- "y": [
- 414595.30767788057,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98926.20655583622
- ],
- "y": [
- 414595.30767788057,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98881.20399257346
- ],
- "y": [
- 414595.30767788057,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98873.6590998779
- ],
- "y": [
- 414595.30767788057,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98776.08147395353
- ],
- "y": [
- 414595.30767788057,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98916.08043593282
- ],
- "y": [
- 414595.30767788057,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98775.64297666437
- ],
- "y": [
- 414595.30767788057,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98833.5386160878
- ],
- "y": [
- 414595.30767788057,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98779.4951496633
- ],
- "y": [
- 414595.30767788057,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98769.87019965112
- ],
- "y": [
- 414595.30767788057,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98763.69912444155
- ],
- "y": [
- 414595.30767788057,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98715.38337956829
- ],
- "y": [
- 414595.30767788057,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98838.01226486915
- ],
- "y": [
- 414595.30767788057,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98731.25835265023
- ],
- "y": [
- 414595.30767788057,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98794.9356782363
- ],
- "y": [
- 414595.30767788057,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98875.12446310604
- ],
- "y": [
- 414595.30767788057,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -158992.66117613608,
- 98845.6917714939
- ],
- "y": [
- 414595.30767788057,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 674390.0901959051,
- 97598.41715003968
- ],
- "y": [
- 19484.603545775193,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 674390.0901959051,
- 97191.15673842629
- ],
- "y": [
- 19484.603545775193,
- -186870.85476427
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -545638.2423811845,
- 97554.49945784982
- ],
- "y": [
- -461024.5494484895,
- -188380.61838572615
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97136.55546326986
- ],
- "y": [
- -47611.78987915504,
- -187444.98398375107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97605.64203060168
- ],
- "y": [
- -47611.78987915504,
- -187212.75750088846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97651.32746016643
- ],
- "y": [
- -47611.78987915504,
- -187393.45287008572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97499.57548817585
- ],
- "y": [
- -47611.78987915504,
- -187430.50547179487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97615.00090956
- ],
- "y": [
- -47611.78987915504,
- -187206.375494998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 604934.7306536661,
- 97672.92128722146
- ],
- "y": [
- -47611.78987915504,
- -187142.3027271855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -162966.46759127188,
- 96994.3545714313
- ],
- "y": [
- 88180.55865862906,
- -187896.4403547719
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -162966.46759127188,
- 96415.73464421919
- ],
- "y": [
- 88180.55865862906,
- -186832.87175251383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -162966.46759127188,
- 96234.84158094184
- ],
- "y": [
- 88180.55865862906,
- -188228.79178433472
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 914467.6632273761,
- 97792.47295206528
- ],
- "y": [
- 988228.6950640721,
- -188560.0382335581
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -881198.5201276346,
- 97740.36484145897
- ],
- "y": [
- 357677.7559037796,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 393875.6303361353,
- 96462.81227754163
- ],
- "y": [
- 121526.15548473045,
- -189116.42239682464
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -173691.57445018858,
- 97740.36484145897
- ],
- "y": [
- 698793.2608907002,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97852.29653105894
- ],
- "y": [
- -487152.4830132172,
- -187271.2309208508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97497.28727853562
- ],
- "y": [
- -487152.4830132172,
- -188311.63055655325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97343.57538035887
- ],
- "y": [
- -487152.4830132172,
- -187739.67693354897
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97366.39316478191
- ],
- "y": [
- -487152.4830132172,
- -187063.92444055318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97781.84828947709
- ],
- "y": [
- -487152.4830132172,
- -187917.59257197715
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98514.4612858039
- ],
- "y": [
- -487152.4830132172,
- -187718.91875175654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98281.43831840085
- ],
- "y": [
- -487152.4830132172,
- -187835.8854861633
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97921.70930511011
- ],
- "y": [
- -487152.4830132172,
- -186803.90033266746
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97902.18401137421
- ],
- "y": [
- -487152.4830132172,
- -186803.59234443662
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98983.632695647
- ],
- "y": [
- -487152.4830132172,
- -187788.5747429511
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99203.2809335762
- ],
- "y": [
- -487152.4830132172,
- -187893.88302668915
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98509.44614370928
- ],
- "y": [
- -487152.4830132172,
- -187975.0076209473
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 96494.98600367835
- ],
- "y": [
- -487152.4830132172,
- -188925.1717325238
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98740.78608913493
- ],
- "y": [
- -487152.4830132172,
- -188021.2228785292
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99612.16066233935
- ],
- "y": [
- -487152.4830132172,
- -187932.34492398132
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 100399.53610597138
- ],
- "y": [
- -487152.4830132172,
- -188182.1801783731
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99242.27473376936
- ],
- "y": [
- -487152.4830132172,
- -187688.50752132258
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97873.62352691275
- ],
- "y": [
- -487152.4830132172,
- -188117.50710319917
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98601.01896303026
- ],
- "y": [
- -487152.4830132172,
- -187793.53772320974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97723.80989181406
- ],
- "y": [
- -487152.4830132172,
- -188261.16935105162
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98367.93488464183
- ],
- "y": [
- -487152.4830132172,
- -187834.80609488173
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98698.73643764145
- ],
- "y": [
- -487152.4830132172,
- -188539.05431916684
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98474.73668821216
- ],
- "y": [
- -487152.4830132172,
- -187997.42121583116
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97769.5225019777
- ],
- "y": [
- -487152.4830132172,
- -187612.6161505803
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98424.79828892439
- ],
- "y": [
- -487152.4830132172,
- -187887.72467534128
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98849.99134497087
- ],
- "y": [
- -487152.4830132172,
- -187994.01573117293
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97153.8202347327
- ],
- "y": [
- -487152.4830132172,
- -186612.36184898173
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97784.87511330319
- ],
- "y": [
- -487152.4830132172,
- -187574.2721654691
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98488.59232974793
- ],
- "y": [
- -487152.4830132172,
- -188185.43487919736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97835.98880603131
- ],
- "y": [
- -487152.4830132172,
- -187645.64505814915
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98697.76296828069
- ],
- "y": [
- -487152.4830132172,
- -187791.77040384425
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98425.30418388022
- ],
- "y": [
- -487152.4830132172,
- -187981.65234561847
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97352.5478411118
- ],
- "y": [
- -487152.4830132172,
- -188328.62880040111
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99087.60514794616
- ],
- "y": [
- -487152.4830132172,
- -186953.31740903624
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99562.51936967154
- ],
- "y": [
- -487152.4830132172,
- -188465.46750448947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97438.32392949228
- ],
- "y": [
- -487152.4830132172,
- -187228.86858406416
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99581.18821252153
- ],
- "y": [
- -487152.4830132172,
- -187937.28779075225
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98484.49246054886
- ],
- "y": [
- -487152.4830132172,
- -187728.251997722
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98589.19418356709
- ],
- "y": [
- -487152.4830132172,
- -187741.77573005384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 99047.9458477898
- ],
- "y": [
- -487152.4830132172,
- -187158.59874792627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97904.87372888521
- ],
- "y": [
- -487152.4830132172,
- -187975.58965748092
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98685.34030967425
- ],
- "y": [
- -487152.4830132172,
- -187927.83620065072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 97236.56543939441
- ],
- "y": [
- -487152.4830132172,
- -186563.98191544128
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 101734.4186530189,
- 98552.63522931661
- ],
- "y": [
- -487152.4830132172,
- -187904.33904992894
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102890.59825682867,
- 97306.68660394431
- ],
- "y": [
- -955940.2429958172,
- -189190.69568859632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102890.59825682867,
- 97519.14188663122
- ],
- "y": [
- -955940.2429958172,
- -188648.39727075843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102890.59825682867,
- 96931.14707892697
- ],
- "y": [
- -955940.2429958172,
- -188818.68200287974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -709061.166520672,
- 97440.7506574999
- ],
- "y": [
- -701703.5223337576,
- -186517.6751626997
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -704117.2696122591,
- 97375.10606040448
- ],
- "y": [
- 229654.94053449653,
- -188647.58850257998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -704117.2696122591,
- 96448.97691094204
- ],
- "y": [
- 229654.94053449653,
- -188788.84774377767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -704117.2696122591,
- 96722.2929728447
- ],
- "y": [
- 229654.94053449653,
- -188214.95290711892
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 82695.01147360781,
- 97272.57643613985
- ],
- "y": [
- -395110.0598072463,
- -187457.0743764612
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 82695.01147360781,
- 96709.59744547942
- ],
- "y": [
- -395110.0598072463,
- -187427.58017047317
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 82695.01147360781,
- 98547.70620576198
- ],
- "y": [
- -395110.0598072463,
- -186780.2984968334
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 82695.01147360781,
- 97115.24870623546
- ],
- "y": [
- -395110.0598072463,
- -187516.61720349116
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 892639.6045231073,
- 96930.11819667481
- ],
- "y": [
- 257602.165830513,
- -188036.28044668204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 892639.6045231073,
- 97074.16623154836
- ],
- "y": [
- 257602.165830513,
- -187566.1094978599
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 892639.6045231073,
- 96568.92366528956
- ],
- "y": [
- 257602.165830513,
- -187881.7928789883
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -407373.19441791973,
- 98713.83774017166
- ],
- "y": [
- 121612.0765485973,
- -187307.95076337553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -407373.19441791973,
- 98345.9554260893
- ],
- "y": [
- 121612.0765485973,
- -187950.03622824297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -407373.19441791973,
- 97740.55752143663
- ],
- "y": [
- 121612.0765485973,
- -187244.0460795401
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -542090.163883535,
- 97988.18684320113
- ],
- "y": [
- 406139.1365539877,
- -187306.8260455551
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -542090.163883535,
- 99349.28939642792
- ],
- "y": [
- 406139.1365539877,
- -186941.09836380862
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 383602.4527648727,
- 96556.14889918086
- ],
- "y": [
- 873399.66086256,
- -187281.55271362027
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 383602.4527648727,
- 99625.77747749203
- ],
- "y": [
- 873399.66086256,
- -184627.2559353374
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 383602.4527648727,
- 98427.86290460796
- ],
- "y": [
- 873399.66086256,
- -187265.23927959087
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 587710.1196072107,
- 97740.36484145897
- ],
- "y": [
- 948537.932093139,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 326147.5533448339,
- 97468.41119559384
- ],
- "y": [
- 925076.9258288649,
- -187879.37136154508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -995533.7825129096,
- 97532.46968364714
- ],
- "y": [
- -94842.01072127352,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -995533.7825129096,
- 97025.5243570638
- ],
- "y": [
- -94842.01072127352,
- -188384.35926426292
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97403.19800982128
- ],
- "y": [
- -172396.12733221232,
- -187883.60479267285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99189.38105820611
- ],
- "y": [
- -172396.12733221232,
- -187489.15417484118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99130.3078520612
- ],
- "y": [
- -172396.12733221232,
- -186717.18778761072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98512.10297397664
- ],
- "y": [
- -172396.12733221232,
- -186287.99929102132
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98519.8177010953
- ],
- "y": [
- -172396.12733221232,
- -187805.10710923118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99017.67985713482
- ],
- "y": [
- -172396.12733221232,
- -187648.9973224916
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97619.72683427205
- ],
- "y": [
- -172396.12733221232,
- -186146.62535800086
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98914.83209812317
- ],
- "y": [
- -172396.12733221232,
- -187493.66055654176
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98147.84267591721
- ],
- "y": [
- -172396.12733221232,
- -187627.45216360627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97949.55637290105
- ],
- "y": [
- -172396.12733221232,
- -187246.44784323307
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99502.83924873942
- ],
- "y": [
- -172396.12733221232,
- -186544.6994452667
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98872.0205731119
- ],
- "y": [
- -172396.12733221232,
- -188210.8583614681
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98390.87404103394
- ],
- "y": [
- -172396.12733221232,
- -187744.5423702615
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99053.11429206465
- ],
- "y": [
- -172396.12733221232,
- -188036.86055892534
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 102016.60254936705
- ],
- "y": [
- -172396.12733221232,
- -179133.13735543872
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98075.21405525423
- ],
- "y": [
- -172396.12733221232,
- -187953.2923392146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99162.58751241713
- ],
- "y": [
- -172396.12733221232,
- -187258.52951028265
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99982.38307176298
- ],
- "y": [
- -172396.12733221232,
- -186551.5718918603
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98292.59127337417
- ],
- "y": [
- -172396.12733221232,
- -186296.09077217794
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100060.98457894419
- ],
- "y": [
- -172396.12733221232,
- -185926.73089974615
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99185.22072761349
- ],
- "y": [
- -172396.12733221232,
- -185395.93395849012
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97947.04358444022
- ],
- "y": [
- -172396.12733221232,
- -185879.15090298475
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97474.60738990385
- ],
- "y": [
- -172396.12733221232,
- -186605.81963314634
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99170.7047386012
- ],
- "y": [
- -172396.12733221232,
- -186705.75237789055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98052.15218821482
- ],
- "y": [
- -172396.12733221232,
- -186345.44096085647
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98616.68136712202
- ],
- "y": [
- -172396.12733221232,
- -186875.28527664224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99500.63364741569
- ],
- "y": [
- -172396.12733221232,
- -187527.73357511935
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98316.9751512879
- ],
- "y": [
- -172396.12733221232,
- -187567.52052119686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99176.98993944687
- ],
- "y": [
- -172396.12733221232,
- -187774.1615382006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99162.04598470115
- ],
- "y": [
- -172396.12733221232,
- -187413.64255787656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97788.31675277463
- ],
- "y": [
- -172396.12733221232,
- -186699.2701887279
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100348.89954635833
- ],
- "y": [
- -172396.12733221232,
- -185739.58717722545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99148.26930216937
- ],
- "y": [
- -172396.12733221232,
- -187270.5390270905
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100486.82668676783
- ],
- "y": [
- -172396.12733221232,
- -185576.15263923115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99758.98817475478
- ],
- "y": [
- -172396.12733221232,
- -186350.72668639437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 96889.7794321626
- ],
- "y": [
- -172396.12733221232,
- -185754.93903104283
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99026.6226858807
- ],
- "y": [
- -172396.12733221232,
- -187305.67084880813
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99069.25619307961
- ],
- "y": [
- -172396.12733221232,
- -187046.43325413764
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 101823.31476410347
- ],
- "y": [
- -172396.12733221232,
- -184234.61115541728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98379.14339417113
- ],
- "y": [
- -172396.12733221232,
- -186972.57418070477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 101380.81652138675
- ],
- "y": [
- -172396.12733221232,
- -183824.5305223081
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99254.27452910501
- ],
- "y": [
- -172396.12733221232,
- -188073.66592800152
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99227.13583415966
- ],
- "y": [
- -172396.12733221232,
- -187728.06688195525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98212.04884196128
- ],
- "y": [
- -172396.12733221232,
- -188874.14340416354
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99094.77135415385
- ],
- "y": [
- -172396.12733221232,
- -188459.36009707808
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98915.86627395742
- ],
- "y": [
- -172396.12733221232,
- -190374.15560172813
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98121.78812235915
- ],
- "y": [
- -172396.12733221232,
- -189063.428793386
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99010.43098706538
- ],
- "y": [
- -172396.12733221232,
- -188003.3208638465
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99006.76819217965
- ],
- "y": [
- -172396.12733221232,
- -187986.19049612174
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98421.28339426052
- ],
- "y": [
- -172396.12733221232,
- -189149.42833616625
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98918.94691074
- ],
- "y": [
- -172396.12733221232,
- -188614.21318785282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98809.12475691538
- ],
- "y": [
- -172396.12733221232,
- -188591.14091919875
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99070.331362437
- ],
- "y": [
- -172396.12733221232,
- -187899.4374158756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97874.19535094783
- ],
- "y": [
- -172396.12733221232,
- -187973.27776270141
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98942.96036569965
- ],
- "y": [
- -172396.12733221232,
- -188306.96972666128
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98368.76399286573
- ],
- "y": [
- -172396.12733221232,
- -188623.6166852075
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97911.02555719024
- ],
- "y": [
- -172396.12733221232,
- -188689.9069400571
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98818.24534258251
- ],
- "y": [
- -172396.12733221232,
- -188243.41945504982
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99191.65795239966
- ],
- "y": [
- -172396.12733221232,
- -187366.96961790608
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99272.95214509276
- ],
- "y": [
- -172396.12733221232,
- -188433.4935194492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98629.16309416488
- ],
- "y": [
- -172396.12733221232,
- -188344.57017201104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98896.61825153053
- ],
- "y": [
- -172396.12733221232,
- -188096.6720864056
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97353.8831923671
- ],
- "y": [
- -172396.12733221232,
- -190042.38359170523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98413.72450899602
- ],
- "y": [
- -172396.12733221232,
- -187776.081074906
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99048.52954857876
- ],
- "y": [
- -172396.12733221232,
- -188131.29016873462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99860.44427206193
- ],
- "y": [
- -172396.12733221232,
- -188443.1461449862
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99875.65907184825
- ],
- "y": [
- -172396.12733221232,
- -186553.62133220496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98991.31426615387
- ],
- "y": [
- -172396.12733221232,
- -188002.51793235893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98545.72335094343
- ],
- "y": [
- -172396.12733221232,
- -187969.50621106548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99143.15955432564
- ],
- "y": [
- -172396.12733221232,
- -187790.99540247666
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97910.12779784399
- ],
- "y": [
- -172396.12733221232,
- -187346.30214189566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98656.64266720755
- ],
- "y": [
- -172396.12733221232,
- -188420.23770977926
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98406.94597948619
- ],
- "y": [
- -172396.12733221232,
- -189713.61547225437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97476.14534117641
- ],
- "y": [
- -172396.12733221232,
- -189579.9504364677
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97524.08090876219
- ],
- "y": [
- -172396.12733221232,
- -189111.4078263055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99171.65872471192
- ],
- "y": [
- -172396.12733221232,
- -187949.63698018505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99548.50572708945
- ],
- "y": [
- -172396.12733221232,
- -188522.7223023232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97949.35571979226
- ],
- "y": [
- -172396.12733221232,
- -187937.26783141587
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99391.34679357102
- ],
- "y": [
- -172396.12733221232,
- -188130.4537181713
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98722.02495329459
- ],
- "y": [
- -172396.12733221232,
- -187934.23814137233
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99374.50165106604
- ],
- "y": [
- -172396.12733221232,
- -188172.74538859082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97825.10446462789
- ],
- "y": [
- -172396.12733221232,
- -188739.05313596342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97650.77807951198
- ],
- "y": [
- -172396.12733221232,
- -188776.96293003074
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99091.39852136569
- ],
- "y": [
- -172396.12733221232,
- -187409.36259250416
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98663.5728126574
- ],
- "y": [
- -172396.12733221232,
- -188147.54710943915
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98159.03165818081
- ],
- "y": [
- -172396.12733221232,
- -188912.98663177204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99060.55516943279
- ],
- "y": [
- -172396.12733221232,
- -187872.6633840466
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99070.36691418258
- ],
- "y": [
- -172396.12733221232,
- -187983.6774823736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 94807.18741906618
- ],
- "y": [
- -172396.12733221232,
- -191242.41426244462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99956.68584656977
- ],
- "y": [
- -172396.12733221232,
- -186152.69967393065
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99881.38194405592
- ],
- "y": [
- -172396.12733221232,
- -189386.63393714104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99269.75421848508
- ],
- "y": [
- -172396.12733221232,
- -187511.94987432053
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98657.65560967932
- ],
- "y": [
- -172396.12733221232,
- -188311.50521847996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99187.14420424569
- ],
- "y": [
- -172396.12733221232,
- -187429.57924484243
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99130.37213728795
- ],
- "y": [
- -172396.12733221232,
- -188069.86804999335
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98433.94367818839
- ],
- "y": [
- -172396.12733221232,
- -187683.73338858323
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98598.39852284717
- ],
- "y": [
- -172396.12733221232,
- -188441.93108825223
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99397.67295607875
- ],
- "y": [
- -172396.12733221232,
- -188229.31889099232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100062.94026884029
- ],
- "y": [
- -172396.12733221232,
- -187736.63135462272
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99683.93197275087
- ],
- "y": [
- -172396.12733221232,
- -187992.83317437719
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98942.47918301482
- ],
- "y": [
- -172396.12733221232,
- -188118.8223297085
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98372.2920372052
- ],
- "y": [
- -172396.12733221232,
- -187582.59747798453
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99106.89445006047
- ],
- "y": [
- -172396.12733221232,
- -187476.39314391202
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99057.76069575727
- ],
- "y": [
- -172396.12733221232,
- -187234.4612318493
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98225.6719769043
- ],
- "y": [
- -172396.12733221232,
- -188221.49233807725
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98965.17216239334
- ],
- "y": [
- -172396.12733221232,
- -188309.63351146277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99161.06627467804
- ],
- "y": [
- -172396.12733221232,
- -187764.81958165232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100038.45200630881
- ],
- "y": [
- -172396.12733221232,
- -188226.41949047343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99231.69745173643
- ],
- "y": [
- -172396.12733221232,
- -188297.22695862473
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99643.13410786055
- ],
- "y": [
- -172396.12733221232,
- -186800.93628583517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99121.89628822553
- ],
- "y": [
- -172396.12733221232,
- -188080.7633837035
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98896.0953062042
- ],
- "y": [
- -172396.12733221232,
- -187297.44363830626
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98996.3949186886
- ],
- "y": [
- -172396.12733221232,
- -187963.97664086308
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99010.23040006083
- ],
- "y": [
- -172396.12733221232,
- -187969.50842343477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99067.43224177675
- ],
- "y": [
- -172396.12733221232,
- -188021.3687563727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98982.5538246546
- ],
- "y": [
- -172396.12733221232,
- -187972.53307352384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99326.93888038411
- ],
- "y": [
- -172396.12733221232,
- -188078.52295971283
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 97455.17599729972
- ],
- "y": [
- -172396.12733221232,
- -188978.81025809547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98980.69875328755
- ],
- "y": [
- -172396.12733221232,
- -188226.32844361593
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99685.34161040152
- ],
- "y": [
- -172396.12733221232,
- -187679.47433074287
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 100612.93716200726
- ],
- "y": [
- -172396.12733221232,
- -188763.44516650846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99244.69832153102
- ],
- "y": [
- -172396.12733221232,
- -187724.4325574573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99226.22079845401
- ],
- "y": [
- -172396.12733221232,
- -187610.1377688772
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99091.55472439228
- ],
- "y": [
- -172396.12733221232,
- -187354.91901122752
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99026.64548034257
- ],
- "y": [
- -172396.12733221232,
- -187993.51411086737
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98688.75667619119
- ],
- "y": [
- -172396.12733221232,
- -187185.02879405092
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99060.11730816362
- ],
- "y": [
- -172396.12733221232,
- -188028.29034553113
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99629.11999021804
- ],
- "y": [
- -172396.12733221232,
- -188188.52643226265
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99571.7539254891
- ],
- "y": [
- -172396.12733221232,
- -187803.06549553943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99395.9830884571
- ],
- "y": [
- -172396.12733221232,
- -188463.31349680066
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99183.91384425001
- ],
- "y": [
- -172396.12733221232,
- -187834.08698576453
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99022.60912279715
- ],
- "y": [
- -172396.12733221232,
- -187975.40467572561
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 98991.26055747598
- ],
- "y": [
- -172396.12733221232,
- -187987.12541376214
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -534018.0751121859,
- 99097.9010589485
- ],
- "y": [
- -172396.12733221232,
- -187517.9128709205
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -830220.9718566176,
- 98904.92041991555
- ],
- "y": [
- 160389.7146379405,
- -188097.1885506176
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -830220.9718566176,
- 98790.64444216965
- ],
- "y": [
- 160389.7146379405,
- -188083.10255481664
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 736765.1546685816,
- 98653.03461351694
- ],
- "y": [
- -373730.5674296345,
- -188183.12236589222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 736765.1546685816,
- 98528.28228471124
- ],
- "y": [
- -373730.5674296345,
- -188158.79572465117
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 736765.1546685816,
- 96470.76012407262
- ],
- "y": [
- -373730.5674296345,
- -189953.43285506195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 736765.1546685816,
- 98077.79681744472
- ],
- "y": [
- -373730.5674296345,
- -187785.39966082262
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 736765.1546685816,
- 99214.362436891
- ],
- "y": [
- -373730.5674296345,
- -188776.05672438274
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -377702.94197033683,
- 98581.61307739322
- ],
- "y": [
- 505960.80348878325,
- -187556.7890851402
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -377702.94197033683,
- 97662.82472168292
- ],
- "y": [
- 505960.80348878325,
- -187788.15822833957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -377702.94197033683,
- 97762.19782518726
- ],
- "y": [
- 505960.80348878325,
- -187203.12559746174
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -377702.94197033683,
- 98322.0050156767
- ],
- "y": [
- 505960.80348878325,
- -188208.85344747134
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 662042.6234050796,
- 97740.36484145897
- ],
- "y": [
- 722670.2405123094,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 487333.2756261608,
- 97740.36484145897
- ],
- "y": [
- -884989.3737237633,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 793285.0618945669,
- 97740.36484145897
- ],
- "y": [
- 5179.2626380713355,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 884802.6012272596,
- 97740.36484145897
- ],
- "y": [
- 701035.689142802,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -600937.0920693981,
- 97468.41119559384
- ],
- "y": [
- 499722.50452963763,
- -187879.37136154508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 379335.77436914813,
- 97228.17238280359
- ],
- "y": [
- 106126.88316707186,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -840629.2261889379,
- 97740.36484145897
- ],
- "y": [
- -820824.4388997552,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 360724.37328794546,
- 98186.65877994802
- ],
- "y": [
- 928534.9602815487,
- -188387.13883004195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 360724.37328794546,
- 98241.1113495342
- ],
- "y": [
- 928534.9602815487,
- -187775.03036984504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 360724.37328794546,
- 98809.36210538005
- ],
- "y": [
- 928534.9602815487,
- -188034.61082553468
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 360724.37328794546,
- 98799.40792106478
- ],
- "y": [
- 928534.9602815487,
- -188046.35626590863
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 360724.37328794546,
- 98692.54803294275
- ],
- "y": [
- 928534.9602815487,
- -188101.37584040826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 881922.3999063373,
- 97740.36484145897
- ],
- "y": [
- 218781.86384893983,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -78715.90056435295,
- 98857.10511058902
- ],
- "y": [
- 11373.293613078373,
- -188094.00217598723
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -188072.50905787342,
- 98692.54803294275
- ],
- "y": [
- 41947.26905584045,
- -188101.37584040826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -188072.50905787342,
- 98818.13714193161
- ],
- "y": [
- 41947.26905584045,
- -188407.58725157817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 93214.08443516676,
- 97358.46679886585
- ],
- "y": [
- 425564.55518506933,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 212406.3833148444,
- 96071.64726551576
- ],
- "y": [
- -285905.4255897964,
- -190270.05275175368
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 42356.860080162485,
- 98184.18254674674
- ],
- "y": [
- -144410.63028630795,
- -188517.9738436573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98932.31091884513
- ],
- "y": [
- -740040.9963485603,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98926.20655583622
- ],
- "y": [
- -740040.9963485603,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98881.20399257346
- ],
- "y": [
- -740040.9963485603,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98873.6590998779
- ],
- "y": [
- -740040.9963485603,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98776.08147395353
- ],
- "y": [
- -740040.9963485603,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98916.08043593282
- ],
- "y": [
- -740040.9963485603,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98775.64297666437
- ],
- "y": [
- -740040.9963485603,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98833.5386160878
- ],
- "y": [
- -740040.9963485603,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98779.4951496633
- ],
- "y": [
- -740040.9963485603,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98769.87019965112
- ],
- "y": [
- -740040.9963485603,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98763.69912444155
- ],
- "y": [
- -740040.9963485603,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98715.38337956829
- ],
- "y": [
- -740040.9963485603,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98838.01226486915
- ],
- "y": [
- -740040.9963485603,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98731.25835265023
- ],
- "y": [
- -740040.9963485603,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98794.9356782363
- ],
- "y": [
- -740040.9963485603,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98875.12446310604
- ],
- "y": [
- -740040.9963485603,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 864742.738718304,
- 98845.6917714939
- ],
- "y": [
- -740040.9963485603,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -78921.56012487228,
- 98420.51887894224
- ],
- "y": [
- 513842.68831132515,
- -188362.35931727977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 909323.2027302729,
- 99085.54243090276
- ],
- "y": [
- 135508.08662869086,
- -188526.0290014248
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 909323.2027302729,
- 99105.27578480003
- ],
- "y": [
- 135508.08662869086,
- -188562.5678949605
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98161.02751086211
- ],
- "y": [
- -191699.3365552453,
- -188777.68796030607
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98705.71088691853
- ],
- "y": [
- -191699.3365552453,
- -188198.9950582187
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 97375.10606040448
- ],
- "y": [
- -191699.3365552453,
- -188647.58850257998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98721.31378803315
- ],
- "y": [
- -191699.3365552453,
- -188204.97639419296
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98128.91359559372
- ],
- "y": [
- -191699.3365552453,
- -188894.20780772806
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98293.07266113821
- ],
- "y": [
- -191699.3365552453,
- -188877.75447919974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 97827.63907828067
- ],
- "y": [
- -191699.3365552453,
- -189462.90626881117
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98054.0065827654
- ],
- "y": [
- -191699.3365552453,
- -188932.21737437064
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 96722.2929728447
- ],
- "y": [
- -191699.3365552453,
- -188214.95290711892
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98251.89202247094
- ],
- "y": [
- -191699.3365552453,
- -188795.16991496552
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98211.55320628641
- ],
- "y": [
- -191699.3365552453,
- -188977.4576085
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 97401.99871940678
- ],
- "y": [
- -191699.3365552453,
- -189047.84983436737
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 96475.17933169345
- ],
- "y": [
- -191699.3365552453,
- -190074.33054887285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98168.55916640947
- ],
- "y": [
- -191699.3365552453,
- -187775.4606762898
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98568.00044350624
- ],
- "y": [
- -191699.3365552453,
- -188697.3813039972
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98364.36914082733
- ],
- "y": [
- -191699.3365552453,
- -188898.08155878072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98331.41182590384
- ],
- "y": [
- -191699.3365552453,
- -189113.8715419739
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98163.10895570937
- ],
- "y": [
- -191699.3365552453,
- -188845.84495555653
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 97554.9960699299
- ],
- "y": [
- -191699.3365552453,
- -189204.34458726516
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98038.14058948433
- ],
- "y": [
- -191699.3365552453,
- -189029.22851713432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98858.81885856122
- ],
- "y": [
- -191699.3365552453,
- -188216.02236323402
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 96255.92043157357
- ],
- "y": [
- -191699.3365552453,
- -190233.5032244461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98120.00401419179
- ],
- "y": [
- -191699.3365552453,
- -188846.81963719826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 99907.08283776883
- ],
- "y": [
- -191699.3365552453,
- -186096.45797461583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 97770.11547186453
- ],
- "y": [
- -191699.3365552453,
- -189624.14425346788
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98260.97237711879
- ],
- "y": [
- -191699.3365552453,
- -188972.66635322545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98649.88742805325
- ],
- "y": [
- -191699.3365552453,
- -188756.88925757885
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98112.09979592523
- ],
- "y": [
- -191699.3365552453,
- -188954.19885795217
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98728.80932783807
- ],
- "y": [
- -191699.3365552453,
- -188231.47750730137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98743.18237840163
- ],
- "y": [
- -191699.3365552453,
- -188228.14569705023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 96497.28753916033
- ],
- "y": [
- -191699.3365552453,
- -190039.66227026214
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 99041.0309662276
- ],
- "y": [
- -191699.3365552453,
- -188955.70075548417
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98538.18176070268
- ],
- "y": [
- -191699.3365552453,
- -188817.15343371764
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98404.5074674531
- ],
- "y": [
- -191699.3365552453,
- -188911.31765919903
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98168.58123872355
- ],
- "y": [
- -191699.3365552453,
- -188817.64018552104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 99485.28366531829
- ],
- "y": [
- -191699.3365552453,
- -188387.0195355698
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98727.3121423661
- ],
- "y": [
- -191699.3365552453,
- -188217.19279192775
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98706.38695246876
- ],
- "y": [
- -191699.3365552453,
- -188215.48726479657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98212.5660722969
- ],
- "y": [
- -191699.3365552453,
- -188940.66433230025
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 96338.9907537572
- ],
- "y": [
- -191699.3365552453,
- -189435.39611651178
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 94647.79050717162
- ],
- "y": [
- -191699.3365552453,
- -190181.63074577937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -72851.75443980707,
- 98994.41997788764
- ],
- "y": [
- -191699.3365552453,
- -188605.13434911743
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 296865.7210732206,
- 96237.3014003704
- ],
- "y": [
- 970316.6821376963,
- -190160.9077330154
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 201690.5001386915,
- 94688.11906145522
- ],
- "y": [
- -838140.8058459905,
- -189966.56620810815
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 201690.5001386915,
- 96639.48963731402
- ],
- "y": [
- -838140.8058459905,
- -189999.31667014628
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 201690.5001386915,
- 95635.79388111227
- ],
- "y": [
- -838140.8058459905,
- -188266.23380139962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 201690.5001386915,
- 95971.63945756324
- ],
- "y": [
- -838140.8058459905,
- -189466.79866331397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 201690.5001386915,
- 96148.36985614852
- ],
- "y": [
- -838140.8058459905,
- -188990.40385466997
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98932.31091884513
- ],
- "y": [
- -466086.6372245687,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98926.20655583622
- ],
- "y": [
- -466086.6372245687,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98881.20399257346
- ],
- "y": [
- -466086.6372245687,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98873.6590998779
- ],
- "y": [
- -466086.6372245687,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98776.08147395353
- ],
- "y": [
- -466086.6372245687,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98916.08043593282
- ],
- "y": [
- -466086.6372245687,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98775.64297666437
- ],
- "y": [
- -466086.6372245687,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98833.5386160878
- ],
- "y": [
- -466086.6372245687,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98779.4951496633
- ],
- "y": [
- -466086.6372245687,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98769.87019965112
- ],
- "y": [
- -466086.6372245687,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98763.69912444155
- ],
- "y": [
- -466086.6372245687,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98715.38337956829
- ],
- "y": [
- -466086.6372245687,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98838.01226486915
- ],
- "y": [
- -466086.6372245687,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98731.25835265023
- ],
- "y": [
- -466086.6372245687,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98794.9356782363
- ],
- "y": [
- -466086.6372245687,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98875.12446310604
- ],
- "y": [
- -466086.6372245687,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -809602.3854719092,
- 98845.6917714939
- ],
- "y": [
- -466086.6372245687,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98932.31091884513
- ],
- "y": [
- 786495.8184204455,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98926.20655583622
- ],
- "y": [
- 786495.8184204455,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98881.20399257346
- ],
- "y": [
- 786495.8184204455,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98873.6590998779
- ],
- "y": [
- 786495.8184204455,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98776.08147395353
- ],
- "y": [
- 786495.8184204455,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98916.08043593282
- ],
- "y": [
- 786495.8184204455,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 97265.23793720463
- ],
- "y": [
- 786495.8184204455,
- -188104.07716877718
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98833.5386160878
- ],
- "y": [
- 786495.8184204455,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98779.4951496633
- ],
- "y": [
- 786495.8184204455,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98769.87019965112
- ],
- "y": [
- 786495.8184204455,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98763.69912444155
- ],
- "y": [
- 786495.8184204455,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98715.38337956829
- ],
- "y": [
- 786495.8184204455,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98838.01226486915
- ],
- "y": [
- 786495.8184204455,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98731.25835265023
- ],
- "y": [
- 786495.8184204455,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98794.9356782363
- ],
- "y": [
- 786495.8184204455,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98875.12446310604
- ],
- "y": [
- 786495.8184204455,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 455089.0566991821,
- 98845.6917714939
- ],
- "y": [
- 786495.8184204455,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 96877.98110658897
- ],
- "y": [
- -136641.84111491195,
- -187749.7848825597
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 97082.82303991095
- ],
- "y": [
- -136641.84111491195,
- -187628.5971893858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 96888.812856475
- ],
- "y": [
- -136641.84111491195,
- -188549.88759442163
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 96702.93382964614
- ],
- "y": [
- -136641.84111491195,
- -188275.44850877777
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 96685.11446346446
- ],
- "y": [
- -136641.84111491195,
- -188155.0331583998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -421789.7677491984,
- 96692.14973493623
- ],
- "y": [
- -136641.84111491195,
- -188220.5960329952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -730099.8140962289,
- 97854.41540216467
- ],
- "y": [
- 551026.796179372,
- -188295.15735575298
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -730099.8140962289,
- 96886.64740803099
- ],
- "y": [
- 551026.796179372,
- -188327.76182227116
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 941129.1135389946,
- 97740.36484145897
- ],
- "y": [
- -118245.65945172361,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 869007.5350815292,
- 97740.36484145897
- ],
- "y": [
- -429303.758173051,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 717990.2465833629,
- 96012.22372465217
- ],
- "y": [
- 289274.8799673728,
- -189229.17376885633
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 717990.2465833629,
- 95855.37346994528
- ],
- "y": [
- 289274.8799673728,
- -188397.25088022946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 717990.2465833629,
- 96019.51490257688
- ],
- "y": [
- 289274.8799673728,
- -188984.20542329797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 717990.2465833629,
- 95928.73602388412
- ],
- "y": [
- 289274.8799673728,
- -189302.6007381189
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 197134.69020416553,
- 95655.37022945724
- ],
- "y": [
- 370829.5671062389,
- -189570.55632521573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 197134.69020416553,
- 96175.94057358746
- ],
- "y": [
- 370829.5671062389,
- -189768.79952321426
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894718.6391275503,
- 98401.53156330762
- ],
- "y": [
- 112566.34725016635,
- -187278.70253330644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894718.6391275503,
- 95386.7915315098
- ],
- "y": [
- 112566.34725016635,
- -186223.42382426502
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894718.6391275503,
- 95383.19508052658
- ],
- "y": [
- 112566.34725016635,
- -185538.47106454833
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -894718.6391275503,
- 92604.63107627998
- ],
- "y": [
- 112566.34725016635,
- -181316.88675453834
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98932.31091884513
- ],
- "y": [
- 938564.7538542207,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98926.20655583622
- ],
- "y": [
- 938564.7538542207,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98881.20399257346
- ],
- "y": [
- 938564.7538542207,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98873.6590998779
- ],
- "y": [
- 938564.7538542207,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98776.08147395353
- ],
- "y": [
- 938564.7538542207,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98916.08043593282
- ],
- "y": [
- 938564.7538542207,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98775.64297666437
- ],
- "y": [
- 938564.7538542207,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98833.5386160878
- ],
- "y": [
- 938564.7538542207,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98779.4951496633
- ],
- "y": [
- 938564.7538542207,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98769.87019965112
- ],
- "y": [
- 938564.7538542207,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98763.69912444155
- ],
- "y": [
- 938564.7538542207,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98715.38337956829
- ],
- "y": [
- 938564.7538542207,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98838.01226486915
- ],
- "y": [
- 938564.7538542207,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98731.25835265023
- ],
- "y": [
- 938564.7538542207,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98794.9356782363
- ],
- "y": [
- 938564.7538542207,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98875.12446310604
- ],
- "y": [
- 938564.7538542207,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -723155.4734128875,
- 98845.6917714939
- ],
- "y": [
- 938564.7538542207,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -8379.412339935,
- 95893.574265848
- ],
- "y": [
- -458932.0946854003,
- -188577.68911072935
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 153864.8390642192,
- 97740.36484145897
- ],
- "y": [
- -979024.3953836804,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712361.2951724086,
- 97740.36484145897
- ],
- "y": [
- 935855.7791733175,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 914316.0572963407,
- 97740.36484145897
- ],
- "y": [
- 392777.02472150634,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -919652.1895690879,
- 97740.36484145897
- ],
- "y": [
- -634539.2530658016,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 626046.287861095,
- 97740.36484145897
- ],
- "y": [
- -733324.4431803057,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -671624.2805811912,
- 97740.36484145897
- ],
- "y": [
- -721643.7739481903,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -564517.9022853523,
- 97228.17238280359
- ],
- "y": [
- 227876.3792840539,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -564517.9022853523,
- 96287.81181504241
- ],
- "y": [
- 227876.3792840539,
- -188922.89599843553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -836089.2335397754,
- 97228.17238280359
- ],
- "y": [
- -232102.3256213983,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -836089.2335397754,
- 96287.81181504241
- ],
- "y": [
- -232102.3256213983,
- -188922.89599843553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -727307.2831803005,
- 96026.40843242637
- ],
- "y": [
- -971248.6088668206,
- -189429.78822251226
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -727307.2831803005,
- 96114.05896419227
- ],
- "y": [
- -971248.6088668206,
- -189243.0403538959
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95834.93768300924
- ],
- "y": [
- 715376.7179565134,
- -189251.3089257868
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95619.17778565394
- ],
- "y": [
- 715376.7179565134,
- -188563.19407494835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 96108.40628370653
- ],
- "y": [
- 715376.7179565134,
- -188854.39170410443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95731.71785167878
- ],
- "y": [
- 715376.7179565134,
- -189260.15851219348
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95777.00472574684
- ],
- "y": [
- 715376.7179565134,
- -189231.4279713372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95353.54589236321
- ],
- "y": [
- 715376.7179565134,
- -188786.31293626514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95800.17831353597
- ],
- "y": [
- 715376.7179565134,
- -189104.52316957942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95203.24310226098
- ],
- "y": [
- 715376.7179565134,
- -189182.68148483842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95930.34153333298
- ],
- "y": [
- 715376.7179565134,
- -189072.0465506361
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -63184.91059391906,
- 95903.12103009703
- ],
- "y": [
- 715376.7179565134,
- -188705.65600489438
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96914.4073833856
- ],
- "y": [
- 959367.4194005737,
- -189967.28432425318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 97103.69288164194
- ],
- "y": [
- 959367.4194005737,
- -189454.98816233617
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96898.52471952
- ],
- "y": [
- 959367.4194005737,
- -189757.15706957557
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96820.8105552239
- ],
- "y": [
- 959367.4194005737,
- -189951.737106575
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96112.34947297389
- ],
- "y": [
- 959367.4194005737,
- -188991.42081728007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96008.4744666249
- ],
- "y": [
- 959367.4194005737,
- -189636.0078208734
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96893.41939654587
- ],
- "y": [
- 959367.4194005737,
- -190209.4983373492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96865.8409444725
- ],
- "y": [
- 959367.4194005737,
- -190012.9068404736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 97240.38028997074
- ],
- "y": [
- 959367.4194005737,
- -189864.05117757033
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96876.82259242256
- ],
- "y": [
- 959367.4194005737,
- -190050.28712576124
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96619.39742322621
- ],
- "y": [
- 959367.4194005737,
- -188866.95996207467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96882.99940588712
- ],
- "y": [
- 959367.4194005737,
- -189208.00816211943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96861.44317975816
- ],
- "y": [
- 959367.4194005737,
- -189099.37048930768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96768.5817251259
- ],
- "y": [
- 959367.4194005737,
- -188483.7955207067
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96559.08563953191
- ],
- "y": [
- 959367.4194005737,
- -188865.2383597738
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96649.40356388739
- ],
- "y": [
- 959367.4194005737,
- -188899.90215259913
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 168229.98075621086,
- 96625.72014898527
- ],
- "y": [
- 959367.4194005737,
- -188841.91500915465
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 645979.5543442839,
- 97992.50506999153
- ],
- "y": [
- -373546.1317002338,
- -188310.94209393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 438081.87126206444,
- 97617.39505268811
- ],
- "y": [
- -700231.0711965273,
- -189567.91347630875
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 438081.87126206444,
- 96070.12571463303
- ],
- "y": [
- -700231.0711965273,
- -189475.84370340698
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 826920.9352810534,
- 95866.20481677107
- ],
- "y": [
- -963576.0897303212,
- -189256.76102591655
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 826920.9352810534,
- 95662.62644960554
- ],
- "y": [
- -963576.0897303212,
- -189118.55548115997
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 826920.9352810534,
- 96100.86678198376
- ],
- "y": [
- -963576.0897303212,
- -189287.09541988553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -909596.9341151802,
- 95405.1846400074
- ],
- "y": [
- -112653.8955686256,
- -189836.02265256474
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -909596.9341151802,
- 98524.57731541038
- ],
- "y": [
- -112653.8955686256,
- -188267.79946330914
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 631265.6698211387,
- 98061.51654616423
- ],
- "y": [
- 100376.22156342186,
- -188734.64348648756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 631265.6698211387,
- 98127.50014794023
- ],
- "y": [
- 100376.22156342186,
- -188499.89103916325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 631265.6698211387,
- 98433.46713226559
- ],
- "y": [
- 100376.22156342186,
- -188424.26831552497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 631265.6698211387,
- 98303.3954720316
- ],
- "y": [
- 100376.22156342186,
- -188471.16226267573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 777914.9540390078,
- 98184.18254674674
- ],
- "y": [
- -326112.20207237767,
- -188517.9738436573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -547642.2852201579,
- 97740.36484145897
- ],
- "y": [
- 981521.6684350774,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 526877.4573910712,
- 97740.36484145897
- ],
- "y": [
- -482595.47826915927,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -38327.955008397694,
- 97740.36484145897
- ],
- "y": [
- 648660.3447864088,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 418566.19868298183,
- 96465.29272664362
- ],
- "y": [
- 843644.3832424028,
- -188555.01680973297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 418566.19868298183,
- 96421.49499570957
- ],
- "y": [
- 843644.3832424028,
- -189062.6660397884
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 197973.49488166915,
- 95652.29809552783
- ],
- "y": [
- 732209.4835010477,
- -189368.04321790536
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 197973.49488166915,
- 95574.25352251745
- ],
- "y": [
- 732209.4835010477,
- -189207.12335782725
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 184766.2002418735,
- 97306.68660394431
- ],
- "y": [
- -153041.8691462083,
- -189190.69568859632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 184766.2002418735,
- 97519.14188663122
- ],
- "y": [
- -153041.8691462083,
- -188648.39727075843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 184766.2002418735,
- 96800.95464898097
- ],
- "y": [
- -153041.8691462083,
- -188995.8386599755
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 184766.2002418735,
- 96931.14707892697
- ],
- "y": [
- -153041.8691462083,
- -188818.68200287974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 715784.4905156529,
- 94671.14162737239
- ],
- "y": [
- -599028.9563257105,
- -189901.5373675402
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 715784.4905156529,
- 96918.79607718707
- ],
- "y": [
- -599028.9563257105,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 715784.4905156529,
- 96959.17409848377
- ],
- "y": [
- -599028.9563257105,
- -188154.87099078548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -516221.8913464849,
- 97196.83695998523
- ],
- "y": [
- -296776.4651412641,
- -187627.1081749794
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -516221.8913464849,
- 97409.25368271414
- ],
- "y": [
- -296776.4651412641,
- -187857.75124697632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -516221.8913464849,
- 97234.04346137235
- ],
- "y": [
- -296776.4651412641,
- -187760.40303329699
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -516221.8913464849,
- 97434.01515339047
- ],
- "y": [
- -296776.4651412641,
- -187858.44732430877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -516221.8913464849,
- 97272.13864563021
- ],
- "y": [
- -296776.4651412641,
- -187957.10022871735
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -434623.4691013651,
- 95962.08383797004
- ],
- "y": [
- 859557.5830612996,
- -188630.5751925975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -434623.4691013651,
- 95958.17194866823
- ],
- "y": [
- 859557.5830612996,
- -188333.01761814565
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 97155.50811563137
- ],
- "y": [
- 965780.9909117548,
- -188696.13322752403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 96918.79607718707
- ],
- "y": [
- 965780.9909117548,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 95778.09112358528
- ],
- "y": [
- 965780.9909117548,
- -188332.3887565364
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 95567.54268381129
- ],
- "y": [
- 965780.9909117548,
- -188486.6627500266
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 95681.96009977852
- ],
- "y": [
- 965780.9909117548,
- -188895.1305372902
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 95501.99445714205
- ],
- "y": [
- 965780.9909117548,
- -189361.39928674913
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -5596.113939467129,
- 95451.74998648891
- ],
- "y": [
- 965780.9909117548,
- -189514.26395840745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -400567.27083104127,
- 97324.16299961129
- ],
- "y": [
- 477161.9168648309,
- -188672.58677714274
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -400567.27083104127,
- 97481.45108043253
- ],
- "y": [
- 477161.9168648309,
- -188275.58704858087
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 663904.7617724848,
- 95459.71080597503
- ],
- "y": [
- -632418.384718779,
- -187965.95478834442
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 663904.7617724848,
- 95638.78273951489
- ],
- "y": [
- -632418.384718779,
- -187471.21704082517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 663904.7617724848,
- 95521.93192587548
- ],
- "y": [
- -632418.384718779,
- -189024.27048204138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 663904.7617724848,
- 96559.7026621268
- ],
- "y": [
- -632418.384718779,
- -188563.84477598095
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -897623.4682337678,
- 97740.36484145897
- ],
- "y": [
- -365382.38695398584,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -857957.9247302185,
- 97740.36484145897
- ],
- "y": [
- -239563.19322688025,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 517837.1986306305,
- 97740.36484145897
- ],
- "y": [
- -239304.6913621528,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 232161.74846487082,
- 97740.36484145897
- ],
- "y": [
- 432969.83003249887,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -321727.77392575116,
- 96622.87666955806
- ],
- "y": [
- -615440.0230895698,
- -189010.6567271695
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -321727.77392575116,
- 96449.25631444062
- ],
- "y": [
- -615440.0230895698,
- -189191.62724059867
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 538787.438030321,
- 94919.54440569754
- ],
- "y": [
- -554931.4032421844,
- -189723.8971601925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 538787.438030321,
- 94171.18973519026
- ],
- "y": [
- -554931.4032421844,
- -190283.4150628221
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 617187.9259473727,
- 97228.17238280359
- ],
- "y": [
- 896897.3146678181,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 704105.6988044545,
- 96959.17409848377
- ],
- "y": [
- -346647.9730130474,
- -188154.87099078548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 704105.6988044545,
- 96918.79607718707
- ],
- "y": [
- -346647.9730130474,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 98378.94284214679
- ],
- "y": [
- 64189.91681325048,
- -188285.74392279977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 94645.87712676502
- ],
- "y": [
- 64189.91681325048,
- -190048.63972499638
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95834.93768300924
- ],
- "y": [
- 64189.91681325048,
- -189251.3089257868
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95619.17778565394
- ],
- "y": [
- 64189.91681325048,
- -188563.19407494835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 96108.40628370653
- ],
- "y": [
- 64189.91681325048,
- -188854.39170410443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95731.71785167878
- ],
- "y": [
- 64189.91681325048,
- -189260.15851219348
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95777.00472574684
- ],
- "y": [
- 64189.91681325048,
- -189231.4279713372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95353.54589236321
- ],
- "y": [
- 64189.91681325048,
- -188786.31293626514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95800.17831353597
- ],
- "y": [
- 64189.91681325048,
- -189104.52316957942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95203.24310226098
- ],
- "y": [
- 64189.91681325048,
- -189182.68148483842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -169312.1842001153,
- 95930.34153333298
- ],
- "y": [
- 64189.91681325048,
- -189072.0465506361
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 96735.91203018947
- ],
- "y": [
- -38732.925036637054,
- -186790.41009242184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 97334.69528656456
- ],
- "y": [
- -38732.925036637054,
- -187248.01430917686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 95915.62243658677
- ],
- "y": [
- -38732.925036637054,
- -186364.1134175767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 94473.57318014126
- ],
- "y": [
- -38732.925036637054,
- -184046.07233791953
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 96498.2979299931
- ],
- "y": [
- -38732.925036637054,
- -187468.17123172226
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 739393.8950776226,
- 97046.83129228091
- ],
- "y": [
- -38732.925036637054,
- -187004.07979892765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97136.55546326986
- ],
- "y": [
- -537662.0371003775,
- -187444.98398375107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97605.64203060168
- ],
- "y": [
- -537662.0371003775,
- -187212.75750088846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97651.32746016643
- ],
- "y": [
- -537662.0371003775,
- -187393.45287008572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97499.57548817585
- ],
- "y": [
- -537662.0371003775,
- -187430.50547179487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97615.00090956
- ],
- "y": [
- -537662.0371003775,
- -187206.375494998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27058.202771294447,
- 97672.92128722146
- ],
- "y": [
- -537662.0371003775,
- -187142.3027271855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 21387.915970575654,
- 96532.6646683294
- ],
- "y": [
- 966495.4235025916,
- -188726.61235021544
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98932.31091884513
- ],
- "y": [
- 783870.0048633596,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98926.20655583622
- ],
- "y": [
- 783870.0048633596,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98881.20399257346
- ],
- "y": [
- 783870.0048633596,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98873.6590998779
- ],
- "y": [
- 783870.0048633596,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98776.08147395353
- ],
- "y": [
- 783870.0048633596,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98916.08043593282
- ],
- "y": [
- 783870.0048633596,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98775.64297666437
- ],
- "y": [
- 783870.0048633596,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98833.5386160878
- ],
- "y": [
- 783870.0048633596,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98779.4951496633
- ],
- "y": [
- 783870.0048633596,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98769.87019965112
- ],
- "y": [
- 783870.0048633596,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98763.69912444155
- ],
- "y": [
- 783870.0048633596,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98715.38337956829
- ],
- "y": [
- 783870.0048633596,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98838.01226486915
- ],
- "y": [
- 783870.0048633596,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98731.25835265023
- ],
- "y": [
- 783870.0048633596,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98794.9356782363
- ],
- "y": [
- 783870.0048633596,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98875.12446310604
- ],
- "y": [
- 783870.0048633596,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96792.91913518484,
- 98845.6917714939
- ],
- "y": [
- 783870.0048633596,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -21227.49778743449,
- 96214.62212633847
- ],
- "y": [
- -74587.61620013266,
- -188040.02763009068
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 96146.8337078855
- ],
- "y": [
- 831651.3050455592,
- -188376.78890401422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 95343.9410888273
- ],
- "y": [
- 831651.3050455592,
- -189797.29543539853
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 95506.46666204746
- ],
- "y": [
- 831651.3050455592,
- -188727.56930522466
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 95380.57975889063
- ],
- "y": [
- 831651.3050455592,
- -189767.66077987218
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 95213.69401511893
- ],
- "y": [
- 831651.3050455592,
- -189402.54379102314
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 94761.32003739124
- ],
- "y": [
- 831651.3050455592,
- -189855.4536758818
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 276976.17238035274,
- 96370.41426861439
- ],
- "y": [
- 831651.3050455592,
- -188921.83564302602
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -755074.7222507059,
- 97598.41715003968
- ],
- "y": [
- -34707.954877353455,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -755074.7222507059,
- 97191.15673842629
- ],
- "y": [
- -34707.954877353455,
- -186870.85476427
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -3151.853730977372,
- 96556.18686331193
- ],
- "y": [
- 132464.72896881544,
- -188744.70646205018
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 447205.8626187305,
- 97740.36484145897
- ],
- "y": [
- 244292.06611394117,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -409297.7949012127,
- 96600.23269030724
- ],
- "y": [
- -723699.6589583688,
- -188570.19383203107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 721040.7630583367,
- 95312.03621158424
- ],
- "y": [
- -289391.2403450825,
- -187452.2953444194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 721040.7630583367,
- 95103.86724211255
- ],
- "y": [
- -289391.2403450825,
- -186432.95981047777
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 721040.7630583367,
- 94154.4683582202
- ],
- "y": [
- -289391.2403450825,
- -184493.4638333277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -551799.6409460857,
- 96651.05281133259
- ],
- "y": [
- 382873.505401377,
- -189681.03829755695
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -495134.76313686476,
- 95926.00835539421
- ],
- "y": [
- -182000.41286751878,
- -189180.69142051495
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -495134.76313686476,
- 96918.79607718707
- ],
- "y": [
- -182000.41286751878,
- -189093.07196799477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -495134.76313686476,
- 96959.17409848377
- ],
- "y": [
- -182000.41286751878,
- -188154.87099078548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -566236.2561708712,
- 95794.56902475153
- ],
- "y": [
- 714299.0223519965,
- -189494.99190465917
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -383589.25783163536,
- 95275.96542639584
- ],
- "y": [
- 26156.182082637035,
- -189418.3150618224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 520674.05570668046,
- 92619.51334005372
- ],
- "y": [
- 294215.4611805308,
- -189406.1804548177
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 520674.05570668046,
- 95388.1231928088
- ],
- "y": [
- 294215.4611805308,
- -188956.60901643464
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -379083.4425797596,
- 97740.36484145897
- ],
- "y": [
- 200268.81118485073,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 714780.540659039,
- 96533.09552389133
- ],
- "y": [
- -640258.5646004735,
- -188286.47377093224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 792749.3740975467,
- 96602.4666381394
- ],
- "y": [
- 45655.76911556612,
- -187847.91597445504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 792749.3740975467,
- 95710.95963260993
- ],
- "y": [
- 45655.76911556612,
- -187772.9366644242
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -695748.732719113,
- 96173.23715080458
- ],
- "y": [
- -792789.8279053174,
- -189454.44287559506
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -695748.732719113,
- 96169.80106348639
- ],
- "y": [
- -792789.8279053174,
- -189336.90265698743
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -841161.2589156998,
- 97740.36484145897
- ],
- "y": [
- 101492.81294258627,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -195189.11757277558,
- 97740.36484145897
- ],
- "y": [
- -146176.85529026692,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 431924.74953544035,
- 97740.36484145897
- ],
- "y": [
- -30810.42899432007,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 876253.9237453884,
- 96919.26178312073
- ],
- "y": [
- 435382.93784721714,
- -189688.38226235847
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 876253.9237453884,
- 96999.24006270662
- ],
- "y": [
- 435382.93784721714,
- -189642.32271672558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 876253.9237453884,
- 96911.02758063171
- ],
- "y": [
- 435382.93784721714,
- -189773.80511431769
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -969676.0286274004,
- 96767.7608495193
- ],
- "y": [
- -322459.2340622958,
- -188623.37539469652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -814469.2956539985,
- 97228.17238280359
- ],
- "y": [
- -174970.74177023242,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -814469.2956539985,
- 95402.18303854323
- ],
- "y": [
- -174970.74177023242,
- -188059.06910793387
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -203858.51979069636,
- 96616.28197124632
- ],
- "y": [
- 26905.66458774213,
- -189486.94419473826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -203858.51979069636,
- 96643.07015445872
- ],
- "y": [
- 26905.66458774213,
- -188345.75062919507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -203858.51979069636,
- 96611.07880435153
- ],
- "y": [
- 26905.66458774213,
- -189045.68105489522
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 987883.3246678433,
- 95963.6655367038
- ],
- "y": [
- -947156.7174291624,
- -186490.92481183048
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 987883.3246678433,
- 96323.93164666534
- ],
- "y": [
- -947156.7174291624,
- -188035.43847485105
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 987883.3246678433,
- 96035.94449947504
- ],
- "y": [
- -947156.7174291624,
- -187899.97545537198
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 987883.3246678433,
- 95826.13450428299
- ],
- "y": [
- -947156.7174291624,
- -188759.4892448286
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -754434.0508021094,
- 95894.3821805092
- ],
- "y": [
- 548994.2918747881,
- -189867.76456386773
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -754434.0508021094,
- 96167.45474416234
- ],
- "y": [
- 548994.2918747881,
- -189265.0331807753
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -754434.0508021094,
- 96878.0650637567
- ],
- "y": [
- 548994.2918747881,
- -188785.27223021127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -754434.0508021094,
- 96926.74644690406
- ],
- "y": [
- 548994.2918747881,
- -189150.0722038921
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -754434.0508021094,
- 95735.81320135522
- ],
- "y": [
- 548994.2918747881,
- -189966.51788839934
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -877967.6203988978,
- 96785.2273252981
- ],
- "y": [
- 933396.9389264802,
- -187864.57873495863
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -616004.2932641512,
- 96844.44949459478
- ],
- "y": [
- -298576.4863351168,
- -188459.5042273985
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -616004.2932641512,
- 96868.09370002619
- ],
- "y": [
- -298576.4863351168,
- -187485.8021358164
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -616004.2932641512,
- 96840.061255232
- ],
- "y": [
- -298576.4863351168,
- -187835.19770223383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 650337.6304247482,
- 97740.36484145897
- ],
- "y": [
- 981905.2432800552,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 615619.3556276786,
- 97740.36484145897
- ],
- "y": [
- 672698.2694803685,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -205710.37365605726,
- 97228.17238280359
- ],
- "y": [
- 269049.57331865886,
- -188471.24794147993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -205710.37365605726,
- 96287.81181504241
- ],
- "y": [
- 269049.57331865886,
- -188922.89599843553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452877.2624604085,
- 96450.55318015978
- ],
- "y": [
- 82853.81087077859,
- -188339.61248515616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 170430.45436057568,
- 96234.86536056163
- ],
- "y": [
- 867446.6458449088,
- -188482.4680775093
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 170430.45436057568,
- 95388.1231928088
- ],
- "y": [
- 867446.6458449088,
- -188956.60901643464
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 66750.84993936031,
- 95910.45905898156
- ],
- "y": [
- 730782.4794822566,
- -190059.0897295911
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -76184.7834570475,
- 97740.36484145897
- ],
- "y": [
- 636929.57350753,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 223240.49951923918,
- 97740.36484145897
- ],
- "y": [
- 529693.9688298834,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 47468.46409605654,
- 97740.36484145897
- ],
- "y": [
- -258215.03400263525,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 47468.46409605654,
- 97216.8097752767
- ],
- "y": [
- -258215.03400263525,
- -188449.63396273268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -900078.2113245784,
- 97740.36484145897
- ],
- "y": [
- -697221.9707553786,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -707282.1263826032,
- 97740.36484145897
- ],
- "y": [
- 508239.4434232529,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 498738.2468210295,
- 97740.36484145897
- ],
- "y": [
- -22932.213957937318,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 623681.4455269715,
- 95733.15082062641
- ],
- "y": [
- -441964.9317826,
- -188564.80121031718
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97651.32746016643
- ],
- "y": [
- 173346.7010389238,
- -187393.45287008572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97136.55546326986
- ],
- "y": [
- 173346.7010389238,
- -187444.98398375107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97605.64203060168
- ],
- "y": [
- 173346.7010389238,
- -187212.75750088846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97499.57548817585
- ],
- "y": [
- 173346.7010389238,
- -187430.50547179487
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97615.00090956
- ],
- "y": [
- 173346.7010389238,
- -187206.375494998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -903849.429763719,
- 97672.92128722146
- ],
- "y": [
- 173346.7010389238,
- -187142.3027271855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -761921.4177536746,
- 98127.50014794023
- ],
- "y": [
- -532732.7823888039,
- -188499.89103916325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -761921.4177536746,
- 97623.71573684271
- ],
- "y": [
- -532732.7823888039,
- -188934.75013167982
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -761921.4177536746,
- 98303.3954720316
- ],
- "y": [
- -532732.7823888039,
- -188471.16226267573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98932.31091884513
- ],
- "y": [
- 922786.3563789611,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98926.20655583622
- ],
- "y": [
- 922786.3563789611,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98881.20399257346
- ],
- "y": [
- 922786.3563789611,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98873.6590998779
- ],
- "y": [
- 922786.3563789611,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98776.08147395353
- ],
- "y": [
- 922786.3563789611,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98916.08043593282
- ],
- "y": [
- 922786.3563789611,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98775.64297666437
- ],
- "y": [
- 922786.3563789611,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98833.5386160878
- ],
- "y": [
- 922786.3563789611,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98779.4951496633
- ],
- "y": [
- 922786.3563789611,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98769.87019965112
- ],
- "y": [
- 922786.3563789611,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98763.69912444155
- ],
- "y": [
- 922786.3563789611,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98715.38337956829
- ],
- "y": [
- 922786.3563789611,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98838.01226486915
- ],
- "y": [
- 922786.3563789611,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98731.25835265023
- ],
- "y": [
- 922786.3563789611,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98794.9356782363
- ],
- "y": [
- 922786.3563789611,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98875.12446310604
- ],
- "y": [
- 922786.3563789611,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -289319.9518633871,
- 98845.6917714939
- ],
- "y": [
- 922786.3563789611,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 430326.2401265009,
- 96556.18686331193
- ],
- "y": [
- -644701.2051098609,
- -188744.70646205018
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 526519.186730167,
- 97740.36484145897
- ],
- "y": [
- 94435.49249267735,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 628334.3788628908,
- 97740.36484145897
- ],
- "y": [
- -347927.73612048425,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 141499.46505001077,
- 97740.36484145897
- ],
- "y": [
- -590558.1079634632,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -25360.886258957606,
- 97740.36484145897
- ],
- "y": [
- 436659.297220233,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -709849.9682138389,
- 97740.36484145897
- ],
- "y": [
- -123683.88473853997,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 472144.8048529735,
- 97740.36484145897
- ],
- "y": [
- -688526.3661659575,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 642676.881996413,
- 97532.46968364714
- ],
- "y": [
- 316655.25208180136,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 642676.881996413,
- 97358.46679886585
- ],
- "y": [
- 316655.25208180136,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 985082.8450351985,
- 97532.46968364714
- ],
- "y": [
- 916492.8733069033,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 985082.8450351985,
- 97358.46679886585
- ],
- "y": [
- 916492.8733069033,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 767568.1344808547,
- 96003.07301754713
- ],
- "y": [
- -386181.65959297324,
- -189407.17407776418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 767568.1344808547,
- 95855.84606940606
- ],
- "y": [
- -386181.65959297324,
- -189594.04877099616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -439114.2156817536,
- 90620.59321338178
- ],
- "y": [
- -487813.6298938742,
- -189928.77888545024
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -439114.2156817536,
- 94139.8012458913
- ],
- "y": [
- -487813.6298938742,
- -190063.494640501
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -439114.2156817536,
- 94032.80335215264
- ],
- "y": [
- -487813.6298938742,
- -190324.0838511919
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -439114.2156817536,
- 93807.67468704915
- ],
- "y": [
- -487813.6298938742,
- -190002.50380021115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -439114.2156817536,
- 94732.86002550159
- ],
- "y": [
- -487813.6298938742,
- -189351.62227285848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712395.3589967475,
- 96955.0168977828
- ],
- "y": [
- -354283.3441196564,
- -188667.17352392792
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -67881.32275742265,
- 96373.51181593174
- ],
- "y": [
- 596646.8317409,
- -189386.891690723
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 324337.7237462275,
- 96024.31193605777
- ],
- "y": [
- 522818.3144789189,
- -188871.73421564943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177913.9037321007,
- 96039.53114090665
- ],
- "y": [
- -384164.92908829,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177913.9037321007,
- 96558.40139577903
- ],
- "y": [
- -384164.92908829,
- -187369.8494239768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -475020.10876459733,
- 96648.53242134354
- ],
- "y": [
- 320792.0802057198,
- -188047.51511369456
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -475020.10876459733,
- 96344.26723680123
- ],
- "y": [
- 320792.0802057198,
- -188898.55180012845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -475020.10876459733,
- 96248.28034246547
- ],
- "y": [
- 320792.0802057198,
- -189023.57039513884
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 829759.5568487745,
- 96483.28090692386
- ],
- "y": [
- 779329.0476945671,
- -189300.64988114213
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 621840.5604610262,
- 96054.44520130524
- ],
- "y": [
- 45889.27917682817,
- -189304.23943329643
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 241848.8026121215,
- 96524.24227801626
- ],
- "y": [
- -253784.5924087889,
- -189802.91324633866
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 241848.8026121215,
- 96583.58536032659
- ],
- "y": [
- -253784.5924087889,
- -189198.96904724132
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 241848.8026121215,
- 95881.63940456003
- ],
- "y": [
- -253784.5924087889,
- -190149.611876793
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 272875.8067462236,
- 95096.87780489783
- ],
- "y": [
- -934164.0465042376,
- -189688.97127087243
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 272875.8067462236,
- 94429.634403017
- ],
- "y": [
- -934164.0465042376,
- -190162.42457619242
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -434770.8766206291,
- 96769.24653086865
- ],
- "y": [
- -656028.3240911526,
- -189121.32206798793
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 806359.0699789898,
- 95885.77494615254
- ],
- "y": [
- 248447.30831388495,
- -185673.72485317432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 806359.0699789898,
- 97401.66966851291
- ],
- "y": [
- 248447.30831388495,
- -187602.98284577316
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 806359.0699789898,
- 96529.94166735753
- ],
- "y": [
- 248447.30831388495,
- -187118.0943589478
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 806359.0699789898,
- 96400.6315649038
- ],
- "y": [
- 248447.30831388495,
- -187049.29511418982
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -863812.5608722302,
- 96701.50888855853
- ],
- "y": [
- -189224.20790707073,
- -188760.63914555783
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -863812.5608722302,
- 96563.36738665988
- ],
- "y": [
- -189224.20790707073,
- -188352.16461745944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -863812.5608722302,
- 96663.0086169134
- ],
- "y": [
- -189224.20790707073,
- -188788.10931841948
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 675721.386773738,
- 96404.13831153684
- ],
- "y": [
- 822378.6475941191,
- -188307.55943122407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -792990.950272441,
- 97358.46679886585
- ],
- "y": [
- -411076.1745670002,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -792990.950272441,
- 97532.46968364714
- ],
- "y": [
- -411076.1745670002,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79002.14739262879,
- 95923.70592479738
- ],
- "y": [
- 632391.1711196257,
- -185447.3982690385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79002.14739262879,
- 95540.24503251979
- ],
- "y": [
- 632391.1711196257,
- -185647.43874032347
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79002.14739262879,
- 95920.065981809
- ],
- "y": [
- 632391.1711196257,
- -186600.68816277097
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79002.14739262879,
- 95963.6655367038
- ],
- "y": [
- 632391.1711196257,
- -186490.92481183048
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 267310.8001232671,
- 96456.96747554903
- ],
- "y": [
- -234070.1943759147,
- -190030.77698961753
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 267310.8001232671,
- 96427.6516351581
- ],
- "y": [
- -234070.1943759147,
- -189844.44305599996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 267310.8001232671,
- 96826.02448370877
- ],
- "y": [
- -234070.1943759147,
- -189312.96716657415
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -49360.913627868984,
- 95922.0581596575
- ],
- "y": [
- -988385.3949405677,
- -188863.83470003767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -49360.913627868984,
- 95802.9629154136
- ],
- "y": [
- -988385.3949405677,
- -190030.6059389626
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -49360.913627868984,
- 95957.78104570328
- ],
- "y": [
- -988385.3949405677,
- -188831.9884617397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -49360.913627868984,
- 96331.52105283472
- ],
- "y": [
- -988385.3949405677,
- -188800.5645587159
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 81010.32478152437,
- 96392.03219267243
- ],
- "y": [
- -256534.5830081587,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 81010.32478152437,
- 96039.53114090665
- ],
- "y": [
- -256534.5830081587,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 81010.32478152437,
- 95481.26094749449
- ],
- "y": [
- -256534.5830081587,
- -188288.73056814942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 81010.32478152437,
- 96072.651127653
- ],
- "y": [
- -256534.5830081587,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698548.8043876948,
- 96107.71912624051
- ],
- "y": [
- -581501.1925851901,
- -187036.11661907207
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698548.8043876948,
- 95682.31879557903
- ],
- "y": [
- -581501.1925851901,
- -187430.4310402768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698548.8043876948,
- 96011.6169628847
- ],
- "y": [
- -581501.1925851901,
- -187168.63791618857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -777612.1742197457,
- 98745.28871415959
- ],
- "y": [
- 101762.26026891544,
- -188085.78649439852
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -777612.1742197457,
- 98737.9075507478
- ],
- "y": [
- 101762.26026891544,
- -188069.8757916443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -777612.1742197457,
- 98260.19273313228
- ],
- "y": [
- 101762.26026891544,
- -188377.16521032414
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 25182.32358250505,
- 97358.46679886585
- ],
- "y": [
- -640495.1551968363,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 25182.32358250505,
- 97532.46968364714
- ],
- "y": [
- -640495.1551968363,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92403.72030892958
- ],
- "y": [
- -204040.0324043048,
- -181388.6636291559
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92552.59924319923
- ],
- "y": [
- -204040.0324043048,
- -186958.0626639662
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94130.55860663287
- ],
- "y": [
- -204040.0324043048,
- -187792.11829844635
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92453.32910364396
- ],
- "y": [
- -204040.0324043048,
- -186964.88142731908
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92636.97281790803
- ],
- "y": [
- -204040.0324043048,
- -186890.040734751
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94694.68806398017
- ],
- "y": [
- -204040.0324043048,
- -187516.96845806637
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93639.94569899137
- ],
- "y": [
- -204040.0324043048,
- -187371.3989655883
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94259.03278558327
- ],
- "y": [
- -204040.0324043048,
- -187673.56257634406
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 91080.58784143622
- ],
- "y": [
- -204040.0324043048,
- -188468.66418560426
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93850.41662442079
- ],
- "y": [
- -204040.0324043048,
- -187827.28797163125
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92357.81244688503
- ],
- "y": [
- -204040.0324043048,
- -188015.37292595976
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92015.08959235293
- ],
- "y": [
- -204040.0324043048,
- -186963.61210988168
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92793.59818111316
- ],
- "y": [
- -204040.0324043048,
- -186909.75756834846
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94015.54400806065
- ],
- "y": [
- -204040.0324043048,
- -188500.0586157652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93415.0685794173
- ],
- "y": [
- -204040.0324043048,
- -187625.4001681701
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92661.92845541582
- ],
- "y": [
- -204040.0324043048,
- -186957.07730695538
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92700.30450697383
- ],
- "y": [
- -204040.0324043048,
- -187126.5717021234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92811.56373493784
- ],
- "y": [
- -204040.0324043048,
- -187092.89589648045
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 88980.87619367571
- ],
- "y": [
- -204040.0324043048,
- -187547.0278070721
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93666.16904241925
- ],
- "y": [
- -204040.0324043048,
- -186215.06335089865
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92727.31906879041
- ],
- "y": [
- -204040.0324043048,
- -186961.92845610308
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92625.18394918887
- ],
- "y": [
- -204040.0324043048,
- -187072.4040574778
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92710.21548334243
- ],
- "y": [
- -204040.0324043048,
- -186908.50557712573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92730.67067426581
- ],
- "y": [
- -204040.0324043048,
- -187018.58994966594
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92599.58217260841
- ],
- "y": [
- -204040.0324043048,
- -186937.57642460006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92761.81424118878
- ],
- "y": [
- -204040.0324043048,
- -187082.89602712472
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92651.26372829395
- ],
- "y": [
- -204040.0324043048,
- -186995.12405826268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92548.69810217191
- ],
- "y": [
- -204040.0324043048,
- -187033.26399727527
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94753.5297564697
- ],
- "y": [
- -204040.0324043048,
- -187917.0637720583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92642.4602856306
- ],
- "y": [
- -204040.0324043048,
- -187031.77413979647
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 91676.43793576607
- ],
- "y": [
- -204040.0324043048,
- -188265.26483815484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92695.15487336805
- ],
- "y": [
- -204040.0324043048,
- -186858.39035521806
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93155.38758721903
- ],
- "y": [
- -204040.0324043048,
- -188079.2339962156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 89305.71197876369
- ],
- "y": [
- -204040.0324043048,
- -187486.7108342232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 94890.65745591454
- ],
- "y": [
- -204040.0324043048,
- -187583.99768382817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93887.36045593988
- ],
- "y": [
- -204040.0324043048,
- -187642.49697600745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93682.44991506475
- ],
- "y": [
- -204040.0324043048,
- -186233.90314590227
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92689.24617566908
- ],
- "y": [
- -204040.0324043048,
- -187072.79060259266
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93904.56333636155
- ],
- "y": [
- -204040.0324043048,
- -187621.1473503119
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 92764.63612228677
- ],
- "y": [
- -204040.0324043048,
- -187006.72435799113
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93226.39690794115
- ],
- "y": [
- -204040.0324043048,
- -187790.78028682835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -459999.322682785,
- 93143.11311426201
- ],
- "y": [
- -204040.0324043048,
- -187892.14861530808
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 94983.58739011025
- ],
- "y": [
- 267036.07940844476,
- -188892.18297269146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 93345.5384733388
- ],
- "y": [
- 267036.07940844476,
- -188905.7409194041
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 93475.56240329082
- ],
- "y": [
- 267036.07940844476,
- -189138.7526208499
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 93855.61888073095
- ],
- "y": [
- 267036.07940844476,
- -189186.7934963984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 95749.39705457314
- ],
- "y": [
- 267036.07940844476,
- -188827.6268164547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 94465.17063363985
- ],
- "y": [
- 267036.07940844476,
- -188634.27361204935
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 92913.17761014139
- ],
- "y": [
- 267036.07940844476,
- -188976.67306946605
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 91312.64033973779
- ],
- "y": [
- 267036.07940844476,
- -188450.6558889738
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 92365.60828492136
- ],
- "y": [
- 267036.07940844476,
- -188410.6730522339
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -530206.2725823066,
- 93034.01413382801
- ],
- "y": [
- 267036.07940844476,
- -188982.28023135234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -285897.65920436603,
- 95922.0581596575
- ],
- "y": [
- 577995.7473875738,
- -188863.83470003767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -285897.65920436603,
- 96232.6883024668
- ],
- "y": [
- 577995.7473875738,
- -188901.95839418104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -898957.63764533,
- 97197.31119879312
- ],
- "y": [
- 969717.6194514378,
- -188293.05528383492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -898957.63764533,
- 97345.58098981141
- ],
- "y": [
- 969717.6194514378,
- -188304.60597921925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -898957.63764533,
- 97401.66966851291
- ],
- "y": [
- 969717.6194514378,
- -187602.98284577316
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -338463.1555088351,
- 96319.04144083924
- ],
- "y": [
- -176993.74511697164,
- -189027.32662829437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -338463.1555088351,
- 94787.68098338218
- ],
- "y": [
- -176993.74511697164,
- -188703.02110051003
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96392.03219267243
- ],
- "y": [
- 327564.2604767903,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94304.28587484072
- ],
- "y": [
- 327564.2604767903,
- -189670.30367153513
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95375.71980775791
- ],
- "y": [
- 327564.2604767903,
- -187994.90708299744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96010.91751038717
- ],
- "y": [
- 327564.2604767903,
- -188227.91479363065
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94846.74238052499
- ],
- "y": [
- 327564.2604767903,
- -188959.37304124728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95360.36419013362
- ],
- "y": [
- 327564.2604767903,
- -188384.46387554856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95443.67008227661
- ],
- "y": [
- 327564.2604767903,
- -188423.99184216498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95781.4838692387
- ],
- "y": [
- 327564.2604767903,
- -188238.2147196666
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95621.74045129302
- ],
- "y": [
- 327564.2604767903,
- -189253.3339606655
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94709.05739456239
- ],
- "y": [
- 327564.2604767903,
- -189185.39353573837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95069.66525755977
- ],
- "y": [
- 327564.2604767903,
- -189354.40611590687
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95628.14642198732
- ],
- "y": [
- 327564.2604767903,
- -189275.31015895875
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94459.15082891459
- ],
- "y": [
- 327564.2604767903,
- -189331.45564091532
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95527.20667464145
- ],
- "y": [
- 327564.2604767903,
- -188567.58941515462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94762.37057915328
- ],
- "y": [
- 327564.2604767903,
- -189030.19349696804
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94658.19240918643
- ],
- "y": [
- 327564.2604767903,
- -189196.05341570152
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94716.98202491149
- ],
- "y": [
- 327564.2604767903,
- -189004.60313990066
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94759.00609204093
- ],
- "y": [
- 327564.2604767903,
- -189177.62541549082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94646.88730549908
- ],
- "y": [
- 327564.2604767903,
- -189238.99357410418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95292.52782742439
- ],
- "y": [
- 327564.2604767903,
- -188534.02363205954
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95093.22706462545
- ],
- "y": [
- 327564.2604767903,
- -189103.72355039057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 98085.07588417802
- ],
- "y": [
- 327564.2604767903,
- -188253.45353298465
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95163.75908553116
- ],
- "y": [
- 327564.2604767903,
- -188413.92210597807
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96006.77287976355
- ],
- "y": [
- 327564.2604767903,
- -188679.23184501874
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95274.60828290615
- ],
- "y": [
- 327564.2604767903,
- -188187.00891794523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94773.27914431288
- ],
- "y": [
- 327564.2604767903,
- -189002.36578898947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94843.32769305678
- ],
- "y": [
- 327564.2604767903,
- -189314.34425935848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94756.04785280023
- ],
- "y": [
- 327564.2604767903,
- -189077.88806110198
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94693.04021624882
- ],
- "y": [
- 327564.2604767903,
- -189112.1678726178
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95274.55463163379
- ],
- "y": [
- 327564.2604767903,
- -188644.9068178371
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94205.42306946588
- ],
- "y": [
- 327564.2604767903,
- -188854.15596558747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94740.62358451245
- ],
- "y": [
- 327564.2604767903,
- -189111.59184893724
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94914.46333674647
- ],
- "y": [
- 327564.2604767903,
- -188992.06395225637
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95731.94340542807
- ],
- "y": [
- 327564.2604767903,
- -189040.44316666905
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94554.58874211222
- ],
- "y": [
- 327564.2604767903,
- -189146.26340260505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96091.204926268
- ],
- "y": [
- 327564.2604767903,
- -188960.36420407722
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95643.38624755875
- ],
- "y": [
- 327564.2604767903,
- -188977.27182089942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95405.5970323345
- ],
- "y": [
- 327564.2604767903,
- -190700.1111637919
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94965.90340529142
- ],
- "y": [
- 327564.2604767903,
- -189013.04796735963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94090.45690331612
- ],
- "y": [
- 327564.2604767903,
- -189379.49234130658
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 92687.32405817328
- ],
- "y": [
- 327564.2604767903,
- -188621.49299553412
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94400.56846677243
- ],
- "y": [
- 327564.2604767903,
- -189304.65394903507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94532.99011271482
- ],
- "y": [
- 327564.2604767903,
- -189125.53360787733
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94838.88278888688
- ],
- "y": [
- 327564.2604767903,
- -189135.01597268603
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94912.71843664766
- ],
- "y": [
- 327564.2604767903,
- -189115.81575099364
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94702.53619375687
- ],
- "y": [
- 327564.2604767903,
- -189157.19198902682
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94259.06712940332
- ],
- "y": [
- 327564.2604767903,
- -188738.48340001726
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95687.5583436565
- ],
- "y": [
- 327564.2604767903,
- -188921.90699962387
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94745.48610069028
- ],
- "y": [
- 327564.2604767903,
- -189360.31796682146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94924.7628056497
- ],
- "y": [
- 327564.2604767903,
- -189070.91343901315
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94836.83100987966
- ],
- "y": [
- 327564.2604767903,
- -190093.18905705298
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94635.31494511566
- ],
- "y": [
- 327564.2604767903,
- -189047.08598048709
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95171.36460552194
- ],
- "y": [
- 327564.2604767903,
- -189299.65616548483
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94428.00833897035
- ],
- "y": [
- 327564.2604767903,
- -189095.541722688
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 91875.6118444357
- ],
- "y": [
- 327564.2604767903,
- -188344.0930836277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94818.5478788063
- ],
- "y": [
- 327564.2604767903,
- -189171.19029766714
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94803.47505405096
- ],
- "y": [
- 327564.2604767903,
- -189042.28405360697
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94609.06856092627
- ],
- "y": [
- 327564.2604767903,
- -189119.99497062556
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95243.05174065192
- ],
- "y": [
- 327564.2604767903,
- -188237.25251034857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94579.1668497888
- ],
- "y": [
- 327564.2604767903,
- -189195.42176761568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94710.98077661607
- ],
- "y": [
- 327564.2604767903,
- -189062.39520516488
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94636.4031377064
- ],
- "y": [
- 327564.2604767903,
- -189376.82012229282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95594.04154313843
- ],
- "y": [
- 327564.2604767903,
- -188752.9247450727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94853.46116542409
- ],
- "y": [
- 327564.2604767903,
- -189405.91331066622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95262.41295878915
- ],
- "y": [
- 327564.2604767903,
- -189552.3086334869
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94996.61867838957
- ],
- "y": [
- 327564.2604767903,
- -189502.59770853355
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95427.51893881544
- ],
- "y": [
- 327564.2604767903,
- -189170.9678004025
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95141.30835602302
- ],
- "y": [
- 327564.2604767903,
- -189264.0420911513
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95135.73958053072
- ],
- "y": [
- 327564.2604767903,
- -189503.85032749924
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94811.20964058898
- ],
- "y": [
- 327564.2604767903,
- -189204.769419827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95308.98963794683
- ],
- "y": [
- 327564.2604767903,
- -188590.4523846817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95213.77887412795
- ],
- "y": [
- 327564.2604767903,
- -188232.11752967277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94550.01100453151
- ],
- "y": [
- 327564.2604767903,
- -189226.9114919114
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94616.6585852082
- ],
- "y": [
- 327564.2604767903,
- -189164.54245151358
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94915.01791906256
- ],
- "y": [
- 327564.2604767903,
- -189027.77132385422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94779.60175355068
- ],
- "y": [
- 327564.2604767903,
- -189230.86162244383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95651.87929649846
- ],
- "y": [
- 327564.2604767903,
- -189066.13649801663
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94969.43121341393
- ],
- "y": [
- 327564.2604767903,
- -188975.60125457792
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94871.66004225804
- ],
- "y": [
- 327564.2604767903,
- -189062.5039727102
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94698.2564749882
- ],
- "y": [
- 327564.2604767903,
- -189350.8806358681
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 98122.6370414771
- ],
- "y": [
- 327564.2604767903,
- -188269.15616936548
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94609.75573408123
- ],
- "y": [
- 327564.2604767903,
- -188968.20482936336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95744.51531875192
- ],
- "y": [
- 327564.2604767903,
- -188815.02865766146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95569.49080974681
- ],
- "y": [
- 327564.2604767903,
- -189043.76513096062
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94553.34862649688
- ],
- "y": [
- 327564.2604767903,
- -189256.66974275385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94068.90013805934
- ],
- "y": [
- 327564.2604767903,
- -189395.66537570828
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94911.10914154527
- ],
- "y": [
- 327564.2604767903,
- -189168.39200200443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 93841.09081628201
- ],
- "y": [
- 327564.2604767903,
- -189180.9410564133
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95055.96301467503
- ],
- "y": [
- 327564.2604767903,
- -189294.69067324145
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94973.76103672285
- ],
- "y": [
- 327564.2604767903,
- -189527.4692278551
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 93860.33853556491
- ],
- "y": [
- 327564.2604767903,
- -188818.7674323714
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94666.08189515283
- ],
- "y": [
- 327564.2604767903,
- -189257.13683550936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94804.05777877627
- ],
- "y": [
- 327564.2604767903,
- -189100.23306250124
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95192.48874345585
- ],
- "y": [
- 327564.2604767903,
- -189550.2287127826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94682.03972500942
- ],
- "y": [
- 327564.2604767903,
- -189290.7525839601
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94318.87336662205
- ],
- "y": [
- 327564.2604767903,
- -189267.28726523466
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 98071.86657727559
- ],
- "y": [
- 327564.2604767903,
- -188239.65910895087
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95074.67859421566
- ],
- "y": [
- 327564.2604767903,
- -187509.8701143695
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95052.34933786246
- ],
- "y": [
- 327564.2604767903,
- -187500.4930551508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94847.03071224976
- ],
- "y": [
- 327564.2604767903,
- -189204.5507592727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94712.39449672872
- ],
- "y": [
- 327564.2604767903,
- -189093.8532022557
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94681.03509595625
- ],
- "y": [
- 327564.2604767903,
- -189171.2221999843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94662.70335696908
- ],
- "y": [
- 327564.2604767903,
- -189071.60158787234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94530.9667988148
- ],
- "y": [
- 327564.2604767903,
- -189093.08976506037
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94394.743184273
- ],
- "y": [
- 327564.2604767903,
- -189407.5843037053
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 93236.21560331441
- ],
- "y": [
- 327564.2604767903,
- -189481.84477904785
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95228.59152965351
- ],
- "y": [
- 327564.2604767903,
- -188480.6248001793
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95599.18088294458
- ],
- "y": [
- 327564.2604767903,
- -187643.83786716606
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 92172.3185204082
- ],
- "y": [
- 327564.2604767903,
- -188410.19015950867
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94730.79640190289
- ],
- "y": [
- 327564.2604767903,
- -189244.75125275418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95015.49625623692
- ],
- "y": [
- 327564.2604767903,
- -189322.13919379382
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94674.89580671789
- ],
- "y": [
- 327564.2604767903,
- -189036.37157464225
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95460.7576657949
- ],
- "y": [
- 327564.2604767903,
- -188851.6819268115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95481.26094749449
- ],
- "y": [
- 327564.2604767903,
- -188288.73056814942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94694.88936601186
- ],
- "y": [
- 327564.2604767903,
- -189227.67375761928
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94637.44384110306
- ],
- "y": [
- 327564.2604767903,
- -189075.98850339456
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94023.65044193376
- ],
- "y": [
- 327564.2604767903,
- -188744.13909734573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94711.8919185092
- ],
- "y": [
- 327564.2604767903,
- -189286.49138647597
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94639.7976547818
- ],
- "y": [
- 327564.2604767903,
- -189153.23345672205
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94969.34668009236
- ],
- "y": [
- 327564.2604767903,
- -187858.47857020143
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94867.71860626241
- ],
- "y": [
- 327564.2604767903,
- -189295.42475244775
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96039.53114090665
- ],
- "y": [
- 327564.2604767903,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94499.29954296813
- ],
- "y": [
- 327564.2604767903,
- -189309.40406356056
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94412.16071475198
- ],
- "y": [
- 327564.2604767903,
- -189446.06561523385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94500.6446202604
- ],
- "y": [
- 327564.2604767903,
- -189270.95690073894
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94316.72565507321
- ],
- "y": [
- 327564.2604767903,
- -189371.36833568558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94747.77428662438
- ],
- "y": [
- 327564.2604767903,
- -189045.81476778517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94831.09840327874
- ],
- "y": [
- 327564.2604767903,
- -189090.02633489924
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94872.79287174557
- ],
- "y": [
- 327564.2604767903,
- -189167.51060793153
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94598.10840219341
- ],
- "y": [
- 327564.2604767903,
- -188997.7891351952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94789.93569354182
- ],
- "y": [
- 327564.2604767903,
- -189166.2520355059
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94645.92150016353
- ],
- "y": [
- 327564.2604767903,
- -189128.02287472552
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94772.43466967792
- ],
- "y": [
- 327564.2604767903,
- -189377.71392390993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94783.49907630085
- ],
- "y": [
- 327564.2604767903,
- -189261.63282785052
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94624.56371474003
- ],
- "y": [
- 327564.2604767903,
- -189189.44204252012
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95782.49090316397
- ],
- "y": [
- 327564.2604767903,
- -188832.0659363745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94352.71458049152
- ],
- "y": [
- 327564.2604767903,
- -189372.78444553076
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94039.43659745945
- ],
- "y": [
- 327564.2604767903,
- -189522.90111062877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94724.12280359474
- ],
- "y": [
- 327564.2604767903,
- -189215.01194453132
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94549.95722461416
- ],
- "y": [
- 327564.2604767903,
- -189188.26284097042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95172.62949097781
- ],
- "y": [
- 327564.2604767903,
- -190170.23694941032
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94748.03678735308
- ],
- "y": [
- 327564.2604767903,
- -189137.65822856384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95142.30696566738
- ],
- "y": [
- 327564.2604767903,
- -189532.13206147918
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94079.97573473441
- ],
- "y": [
- 327564.2604767903,
- -189244.33702691298
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 92867.65170326555
- ],
- "y": [
- 327564.2604767903,
- -189342.90886317022
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95137.86898625335
- ],
- "y": [
- 327564.2604767903,
- -189601.42301397282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94657.09089040948
- ],
- "y": [
- 327564.2604767903,
- -189001.4148694418
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94592.18007251328
- ],
- "y": [
- 327564.2604767903,
- -189031.42372914587
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 91386.79521336866
- ],
- "y": [
- 327564.2604767903,
- -188346.60400362083
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94302.9983659527
- ],
- "y": [
- 327564.2604767903,
- -189432.19725203505
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95035.60486780475
- ],
- "y": [
- 327564.2604767903,
- -189383.60172976655
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95213.0622434433
- ],
- "y": [
- 327564.2604767903,
- -188396.23465801778
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95306.71022996533
- ],
- "y": [
- 327564.2604767903,
- -188159.4341766519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94700.77181220899
- ],
- "y": [
- 327564.2604767903,
- -188977.16363192897
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94617.81259757694
- ],
- "y": [
- 327564.2604767903,
- -188924.8418972556
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94535.68576734806
- ],
- "y": [
- 327564.2604767903,
- -189025.99171597915
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94750.88896059677
- ],
- "y": [
- 327564.2604767903,
- -189271.29959663784
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94470.20509490756
- ],
- "y": [
- 327564.2604767903,
- -188897.62049298765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94511.66669647257
- ],
- "y": [
- 327564.2604767903,
- -188978.69804431516
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94490.98493329533
- ],
- "y": [
- 327564.2604767903,
- -188947.4139822555
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94846.70037648812
- ],
- "y": [
- 327564.2604767903,
- -189026.34351702797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94034.72001872609
- ],
- "y": [
- 327564.2604767903,
- -188711.72538129365
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94559.50779408682
- ],
- "y": [
- 327564.2604767903,
- -189104.3400123642
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94466.7376842554
- ],
- "y": [
- 327564.2604767903,
- -189226.8573059561
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95513.58278963793
- ],
- "y": [
- 327564.2604767903,
- -188884.40182536017
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94305.51369188944
- ],
- "y": [
- 327564.2604767903,
- -189212.70822393885
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94851.28150629238
- ],
- "y": [
- 327564.2604767903,
- -189665.23911238607
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94772.25786639804
- ],
- "y": [
- 327564.2604767903,
- -188941.9994408223
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94518.72288699445
- ],
- "y": [
- 327564.2604767903,
- -189434.8299251847
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 92600.87220891484
- ],
- "y": [
- 327564.2604767903,
- -188586.70146604645
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94385.63245566067
- ],
- "y": [
- 327564.2604767903,
- -189292.63817566453
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96765.01998356344
- ],
- "y": [
- 327564.2604767903,
- -188468.64488827685
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94624.67668233525
- ],
- "y": [
- 327564.2604767903,
- -188955.28240884622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 95320.26347648272
- ],
- "y": [
- 327564.2604767903,
- -188530.70142542297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 94187.4208589902
- ],
- "y": [
- 327564.2604767903,
- -188888.66487646574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 96407.8149457741
- ],
- "y": [
- 327564.2604767903,
- -189282.2219107152
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -441941.0409727664,
- 93866.57023587385
- ],
- "y": [
- 327564.2604767903,
- -189684.28770806687
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 507573.35056005995,
- 96732.86821624868
- ],
- "y": [
- 376214.41089156637,
- -188955.7460585158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95848.64233101926
- ],
- "y": [
- 303277.8993777547,
- -188128.57240646365
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 96229.66105626737
- ],
- "y": [
- 303277.8993777547,
- -187792.9688123335
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 98178.17510730785
- ],
- "y": [
- 303277.8993777547,
- -187942.22047264426
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 96273.17959649833
- ],
- "y": [
- 303277.8993777547,
- -188476.1018531056
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 92820.89814897874
- ],
- "y": [
- 303277.8993777547,
- -187953.14158568936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 96599.13805686972
- ],
- "y": [
- 303277.8993777547,
- -188243.55188231324
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95659.94479562767
- ],
- "y": [
- 303277.8993777547,
- -188224.56475781766
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 96357.58676902352
- ],
- "y": [
- 303277.8993777547,
- -187566.37581145845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95689.95404916865
- ],
- "y": [
- 303277.8993777547,
- -188187.95018705592
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95858.68960868126
- ],
- "y": [
- 303277.8993777547,
- -188277.6495023525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95814.95649081406
- ],
- "y": [
- 303277.8993777547,
- -188172.14856838898
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 97069.64943071302
- ],
- "y": [
- 303277.8993777547,
- -187507.9968975285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 690145.8497871232,
- 95560.28088297267
- ],
- "y": [
- 303277.8993777547,
- -188728.81774535606
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -89085.74572926975,
- 96806.8541605258
- ],
- "y": [
- 549892.402684508,
- -188290.08218015765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 915263.3573844782,
- 96947.40675273385
- ],
- "y": [
- -44412.02884230089,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 915263.3573844782,
- 96920.50398772888
- ],
- "y": [
- -44412.02884230089,
- -188848.55062442037
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 915263.3573844782,
- 96767.50358245717
- ],
- "y": [
- -44412.02884230089,
- -188717.3203540903
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 915263.3573844782,
- 96817.66055571858
- ],
- "y": [
- -44412.02884230089,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97237.89195347154
- ],
- "y": [
- 541172.2541876618,
- -187856.58036489805
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96947.40675273385
- ],
- "y": [
- 541172.2541876618,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96817.66055571858
- ],
- "y": [
- 541172.2541876618,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96888.97576383248
- ],
- "y": [
- 541172.2541876618,
- -188204.3724056574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97141.56965571626
- ],
- "y": [
- 541172.2541876618,
- -188169.14538504407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97272.16196531034
- ],
- "y": [
- 541172.2541876618,
- -187899.237151973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97095.49525391203
- ],
- "y": [
- 541172.2541876618,
- -188069.92329870115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96704.00303777175
- ],
- "y": [
- 541172.2541876618,
- -188430.55900018988
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97189.19276118421
- ],
- "y": [
- 541172.2541876618,
- -187701.5703586604
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97208.55798356787
- ],
- "y": [
- 541172.2541876618,
- -187761.59383487626
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97237.84080032888
- ],
- "y": [
- 541172.2541876618,
- -187872.25388739264
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97406.36037264415
- ],
- "y": [
- 541172.2541876618,
- -187753.2084302758
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97126.32920940703
- ],
- "y": [
- 541172.2541876618,
- -187765.59237745742
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97194.39851002919
- ],
- "y": [
- 541172.2541876618,
- -187809.27238686706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96183.9812972283
- ],
- "y": [
- 541172.2541876618,
- -188024.30685571092
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96795.31918949624
- ],
- "y": [
- 541172.2541876618,
- -188424.35361027447
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97051.71285679028
- ],
- "y": [
- 541172.2541876618,
- -187977.63799550864
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 96645.4446535775
- ],
- "y": [
- 541172.2541876618,
- -188680.41340104947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 97016.89968225527
- ],
- "y": [
- 541172.2541876618,
- -188480.5260935519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 713479.5856259892,
- 98970.15914526228
- ],
- "y": [
- 541172.2541876618,
- -184929.26330034356
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96164.31165177577
- ],
- "y": [
- -871317.3856770733,
- -191630.47589507297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96955.80310269099
- ],
- "y": [
- -871317.3856770733,
- -189739.38463051288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96766.57575414197
- ],
- "y": [
- -871317.3856770733,
- -189873.68737482626
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96880.45975619479
- ],
- "y": [
- -871317.3856770733,
- -189708.2272477365
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 97320.49185837018
- ],
- "y": [
- -871317.3856770733,
- -187892.65214688177
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96510.18842656737
- ],
- "y": [
- -871317.3856770733,
- -187863.91165705194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 97003.43303968408
- ],
- "y": [
- -871317.3856770733,
- -189505.58704021748
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96660.51533943972
- ],
- "y": [
- -871317.3856770733,
- -189880.0757312348
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96966.02647052168
- ],
- "y": [
- -871317.3856770733,
- -189842.1324431489
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96859.70450714213
- ],
- "y": [
- -871317.3856770733,
- -188854.43713783327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96932.30642163414
- ],
- "y": [
- -871317.3856770733,
- -189536.13208955494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -767480.6633687961,
- 96852.77079415339
- ],
- "y": [
- -871317.3856770733,
- -188299.83165938678
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359558.8897121338,
- 96039.53114090665
- ],
- "y": [
- 569631.0496447363,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359558.8897121338,
- 95460.7576657949
- ],
- "y": [
- 569631.0496447363,
- -188851.6819268115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359558.8897121338,
- 96081.2975453023
- ],
- "y": [
- 569631.0496447363,
- -189105.21478588888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 202408.6912441687,
- 97015.25817987997
- ],
- "y": [
- 576377.5612561785,
- -189296.96733505363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 202408.6912441687,
- 96839.05193444177
- ],
- "y": [
- 576377.5612561785,
- -189498.98953316532
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 96392.03219267243
- ],
- "y": [
- -957608.7704076947,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 97817.707556705
- ],
- "y": [
- -957608.7704076947,
- -188836.9731938192
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 96743.47300321168
- ],
- "y": [
- -957608.7704076947,
- -189477.9687240938
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 96633.1960028662
- ],
- "y": [
- -957608.7704076947,
- -189686.82438527062
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 95731.94340542807
- ],
- "y": [
- -957608.7704076947,
- -189040.44316666905
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -472765.09146025503,
- 96072.651127653
- ],
- "y": [
- -957608.7704076947,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -224465.75825735682,
- 96915.22190900354
- ],
- "y": [
- -773571.3315946127,
- -189266.72814157297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 40079.99249920036,
- 96645.1229128067
- ],
- "y": [
- 79467.55808399919,
- -189703.45302802385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850913.531484576,
- 97004.95986761729
- ],
- "y": [
- -511913.7106276921,
- -189135.00336817247
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850913.531484576,
- 96566.99750987656
- ],
- "y": [
- -511913.7106276921,
- -189278.65997138573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -907282.0446569585,
- 96241.34047154605
- ],
- "y": [
- -363660.75017817743,
- -189241.36313499292
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 843622.9094645538,
- 96094.8508150237
- ],
- "y": [
- 258840.60215001003,
- -189561.96308897558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 843622.9094645538,
- 96329.29923380495
- ],
- "y": [
- 258840.60215001003,
- -189390.3446237331
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 115292.52144101188,
- 96303.92041500923
- ],
- "y": [
- 774502.1446493892,
- -191279.9278832995
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 115292.52144101188,
- 95909.7739787418
- ],
- "y": [
- 774502.1446493892,
- -193001.23653771952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -604109.0475752635,
- 96400.51278286969
- ],
- "y": [
- -807273.5584057267,
- -187859.86995225446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -604109.0475752635,
- 95574.39534418302
- ],
- "y": [
- -807273.5584057267,
- -189738.0525135467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -604109.0475752635,
- 95694.79665191291
- ],
- "y": [
- -807273.5584057267,
- -189517.96720841108
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 284988.9338097777,
- 96078.87408767999
- ],
- "y": [
- 281063.3683157227,
- -190973.23484101656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 284988.9338097777,
- 96745.54904144225
- ],
- "y": [
- 281063.3683157227,
- -189777.8358685715
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 284988.9338097777,
- 96885.45509832901
- ],
- "y": [
- 281063.3683157227,
- -188921.5431373296
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 284988.9338097777,
- 96570.03585592323
- ],
- "y": [
- 281063.3683157227,
- -190144.75403043907
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 284988.9338097777,
- 96847.7893432129
- ],
- "y": [
- 281063.3683157227,
- -188947.86956916028
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -401281.38711647975,
- 96580.26314007488
- ],
- "y": [
- 74526.5651385103,
- -189742.155668336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -401281.38711647975,
- 96283.38222595652
- ],
- "y": [
- 74526.5651385103,
- -189692.5200326185
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -401281.38711647975,
- 96330.75641404516
- ],
- "y": [
- 74526.5651385103,
- -190156.38084035812
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -401281.38711647975,
- 96505.76788267054
- ],
- "y": [
- 74526.5651385103,
- -189713.56303116062
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -486049.0391869989,
- 95933.78130606312
- ],
- "y": [
- -44382.38128250083,
- -187405.71770728158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -486049.0391869989,
- 95969.93628717288
- ],
- "y": [
- -44382.38128250083,
- -187389.66797592156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -623176.5609360784,
- 96392.03219267243
- ],
- "y": [
- 444682.40044604125,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -623176.5609360784,
- 96241.8368167467
- ],
- "y": [
- 444682.40044604125,
- -188640.45100665794
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -623176.5609360784,
- 96516.24082699847
- ],
- "y": [
- 444682.40044604125,
- -187622.41354491585
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -623176.5609360784,
- 96352.37619288662
- ],
- "y": [
- 444682.40044604125,
- -188826.8178670996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 95527.20667464145
- ],
- "y": [
- -299820.94540707394,
- -188567.58941515462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 95977.4908427389
- ],
- "y": [
- -299820.94540707394,
- -189837.0067281555
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96086.9490860762
- ],
- "y": [
- -299820.94540707394,
- -189774.66595851514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96094.51833331272
- ],
- "y": [
- -299820.94540707394,
- -189615.88052612924
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96758.39095887466
- ],
- "y": [
- -299820.94540707394,
- -189272.23379027276
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96034.32749733706
- ],
- "y": [
- -299820.94540707394,
- -190029.28538193705
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96026.76816689323
- ],
- "y": [
- -299820.94540707394,
- -189844.7798702007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96158.4488359556
- ],
- "y": [
- -299820.94540707394,
- -189790.5959091938
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96072.651127653
- ],
- "y": [
- -299820.94540707394,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978318.5934822272,
- 96031.66005598055
- ],
- "y": [
- -299820.94540707394,
- -189991.2311607774
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -822372.6879477986,
- 97015.25817987997
- ],
- "y": [
- -852890.6146932214,
- -189296.96733505363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -822372.6879477986,
- 97015.25817987997
- ],
- "y": [
- -852890.6146932214,
- -189296.96733505363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -822372.6879477986,
- 96839.05193444177
- ],
- "y": [
- -852890.6146932214,
- -189498.98953316532
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -822372.6879477986,
- 96864.42186310086
- ],
- "y": [
- -852890.6146932214,
- -189682.05578414822
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -822372.6879477986,
- 96587.15552488458
- ],
- "y": [
- -852890.6146932214,
- -189987.64885100897
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 625086.0530151355,
- 96788.89525885877
- ],
- "y": [
- 163635.05716330896,
- -189360.52446627786
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 398851.1180425776,
- 97189.5131054329
- ],
- "y": [
- 910905.3678832464,
- -188528.04369924997
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 398851.1180425776,
- 97669.69791198618
- ],
- "y": [
- 910905.3678832464,
- -188875.90551008
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -982531.8952967137,
- 97278.5656163335
- ],
- "y": [
- 648026.9528531422,
- -188016.10442522762
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 829256.0232519812,
- 96896.58750176255
- ],
- "y": [
- 140476.45945029764,
- -188167.02460559944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 829256.0232519812,
- 97154.72425616732
- ],
- "y": [
- 140476.45945029764,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 829256.0232519812,
- 96987.80225378742
- ],
- "y": [
- 140476.45945029764,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 829256.0232519812,
- 96695.54475332797
- ],
- "y": [
- 140476.45945029764,
- -188987.74156072343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 157263.60815314978,
- 96726.40817559678
- ],
- "y": [
- -303089.9316090217,
- -189303.08944739285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 157263.60815314978,
- 96767.46602322998
- ],
- "y": [
- -303089.9316090217,
- -189317.7229192206
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 157263.60815314978,
- 96813.4343547639
- ],
- "y": [
- -303089.9316090217,
- -189250.6861714318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 157263.60815314978,
- 96791.18101461837
- ],
- "y": [
- -303089.9316090217,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 157263.60815314978,
- 96817.66055571858
- ],
- "y": [
- -303089.9316090217,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95443.67008227661
- ],
- "y": [
- 702957.956639624,
- -188423.99184216498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95141.30835602302
- ],
- "y": [
- 702957.956639624,
- -189264.0420911513
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95262.41295878915
- ],
- "y": [
- 702957.956639624,
- -189552.3086334869
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95292.52782742439
- ],
- "y": [
- 702957.956639624,
- -188534.02363205954
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95274.55463163379
- ],
- "y": [
- 702957.956639624,
- -188644.9068178371
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95389.10664694483
- ],
- "y": [
- 702957.956639624,
- -189577.61389462257
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95093.22706462545
- ],
- "y": [
- 702957.956639624,
- -189103.72355039057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 94205.42306946588
- ],
- "y": [
- 702957.956639624,
- -188854.15596558747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95308.98963794683
- ],
- "y": [
- 702957.956639624,
- -188590.4523846817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95527.20667464145
- ],
- "y": [
- 702957.956639624,
- -188567.58941515462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95360.36419013362
- ],
- "y": [
- 702957.956639624,
- -188384.46387554856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95472.00274613315
- ],
- "y": [
- 702957.956639624,
- -188477.95331527485
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95405.5970323345
- ],
- "y": [
- 702957.956639624,
- -190700.1111637919
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95935.5419641612
- ],
- "y": [
- 702957.956639624,
- -189378.03325846698
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95035.60486780475
- ],
- "y": [
- 702957.956639624,
- -189383.60172976655
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 95320.26347648272
- ],
- "y": [
- 702957.956639624,
- -188530.70142542297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 850940.5457161552,
- 96072.651127653
- ],
- "y": [
- 702957.956639624,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -652873.5736363298,
- 96253.58305118927
- ],
- "y": [
- 535360.6304546237,
- -189231.051408616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -652873.5736363298,
- 96263.70637434645
- ],
- "y": [
- 535360.6304546237,
- -189290.40865383588
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -165877.75686732464,
- 96534.04849627241
- ],
- "y": [
- -582178.1698576073,
- -186632.56137489137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 400648.1628683858,
- 97358.46679886585
- ],
- "y": [
- -122981.7689829138,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 400648.1628683858,
- 97532.46968364714
- ],
- "y": [
- -122981.7689829138,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -844246.5819693888,
- 96198.74714645866
- ],
- "y": [
- 975052.8974165997,
- -189396.51935593525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -844246.5819693888,
- 96023.10216322435
- ],
- "y": [
- 975052.8974165997,
- -189490.2551625836
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -484658.3050507276,
- 97066.1566770924
- ],
- "y": [
- -580163.7149676814,
- -189589.28553677927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27244.414390010574,
- 96512.6439304231
- ],
- "y": [
- -763095.0042941425,
- -189048.4956879801
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 27244.414390010574,
- 96656.65493202257
- ],
- "y": [
- -763095.0042941425,
- -189131.92422966988
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 98642.78682170947
- ],
- "y": [
- -24819.552881023334,
- -188104.6983502157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 98026.80584910973
- ],
- "y": [
- -24819.552881023334,
- -187704.763876957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 97317.9470175812
- ],
- "y": [
- -24819.552881023334,
- -189015.4951605007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 97272.16196531034
- ],
- "y": [
- -24819.552881023334,
- -187899.237151973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 97558.53189592143
- ],
- "y": [
- -24819.552881023334,
- -188563.3727238801
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 97141.56965571626
- ],
- "y": [
- -24819.552881023334,
- -188169.14538504407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 97354.04987112107
- ],
- "y": [
- -24819.552881023334,
- -188868.86823729656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -235998.43433836033,
- 98156.10361722215
- ],
- "y": [
- -24819.552881023334,
- -188185.3569399699
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 832880.6118917629,
- 97559.12810431966
- ],
- "y": [
- -173346.57451710323,
- -187448.3572804437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 832880.6118917629,
- 97016.89968225527
- ],
- "y": [
- -173346.57451710323,
- -188480.5260935519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 98672.80035077463
- ],
- "y": [
- -417201.7659561833,
- -188272.94824742872
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97608.46722365031
- ],
- "y": [
- -417201.7659561833,
- -189247.54195982916
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97720.70350653208
- ],
- "y": [
- -417201.7659561833,
- -189033.53333615928
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97761.99442165645
- ],
- "y": [
- -417201.7659561833,
- -189071.23203874825
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 96752.4665017377
- ],
- "y": [
- -417201.7659561833,
- -188876.74592565937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97746.8391580485
- ],
- "y": [
- -417201.7659561833,
- -189238.02623730994
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97819.4972376039
- ],
- "y": [
- -417201.7659561833,
- -189115.05770210535
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97811.11864279254
- ],
- "y": [
- -417201.7659561833,
- -189231.03855465443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97693.57749236286
- ],
- "y": [
- -417201.7659561833,
- -189259.5246750294
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97735.9507021614
- ],
- "y": [
- -417201.7659561833,
- -189305.01453652733
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97384.36803091576
- ],
- "y": [
- -417201.7659561833,
- -189185.22678595383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97155.80752875579
- ],
- "y": [
- -417201.7659561833,
- -189778.15834495376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 990684.9044964272,
- 97787.10318478926
- ],
- "y": [
- -417201.7659561833,
- -189298.76112672515
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96806.8541605258
- ],
- "y": [
- 440051.72985487495,
- -188290.08218015765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96725.27797613826
- ],
- "y": [
- 440051.72985487495,
- -188757.12524904165
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96947.40675273385
- ],
- "y": [
- 440051.72985487495,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96656.51605951994
- ],
- "y": [
- 440051.72985487495,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96621.34244090467
- ],
- "y": [
- 440051.72985487495,
- -188760.00770833693
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -878821.3304950048,
- 96787.80852813035
- ],
- "y": [
- 440051.72985487495,
- -188933.22539579918
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 97481.5752702023
- ],
- "y": [
- 167007.07363240785,
- -188674.7471497121
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 96896.58750176255
- ],
- "y": [
- 167007.07363240785,
- -188167.02460559944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 97154.72425616732
- ],
- "y": [
- 167007.07363240785,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 96763.64967872995
- ],
- "y": [
- 167007.07363240785,
- -188336.20643323814
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 98517.20808727229
- ],
- "y": [
- 167007.07363240785,
- -188180.73220770183
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -458711.1024669723,
- 97409.50882998393
- ],
- "y": [
- 167007.07363240785,
- -188519.90581438286
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 802251.3174304304,
- 96746.40104686156
- ],
- "y": [
- 844123.2156411576,
- -187932.28950243027
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -504542.1352043298,
- 96387.0378486012
- ],
- "y": [
- -441582.8475081609,
- -188952.85593883562
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561261.9310804654,
- 96137.27428645456
- ],
- "y": [
- -202506.6013903658,
- -189097.48187960163
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 97633.05212708894,
- 96447.65576692639
- ],
- "y": [
- -716399.6943027051,
- -188308.2995444295
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 97633.05212708894,
- 96500.05485471405
- ],
- "y": [
- -716399.6943027051,
- -188124.98331170535
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 97633.05212708894,
- 96602.41413482858
- ],
- "y": [
- -716399.6943027051,
- -188393.99052171747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 97633.05212708894,
- 96347.26384012886
- ],
- "y": [
- -716399.6943027051,
- -188347.58050575748
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 97633.05212708894,
- 96798.05259841571
- ],
- "y": [
- -716399.6943027051,
- -188876.59928470026
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 502900.9484947351,
- 97123.64353111561
- ],
- "y": [
- 256931.79497122642,
- -189345.9124851909
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405277.08141188713,
- 98810.40128605721
- ],
- "y": [
- 666829.5187873732,
- -188180.15644195993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405277.08141188713,
- 98748.83379870633
- ],
- "y": [
- 666829.5187873732,
- -189045.54815632163
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405277.08141188713,
- 98766.84037371344
- ],
- "y": [
- 666829.5187873732,
- -188937.80405805522
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405277.08141188713,
- 98595.68155874425
- ],
- "y": [
- 666829.5187873732,
- -188767.47226676266
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 15427.685521914647,
- 97358.46679886585
- ],
- "y": [
- 227772.45012929238,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 15427.685521914647,
- 97532.46968364714
- ],
- "y": [
- 227772.45012929238,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942482.3561708895,
- 95432.28216788654
- ],
- "y": [
- 894017.2524725694,
- -187601.13526565803
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942482.3561708895,
- 95102.33265077158
- ],
- "y": [
- 894017.2524725694,
- -187830.46815133246
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 324668.65708667634,
- 96969.06747778888
- ],
- "y": [
- 826749.0806877838,
- -186931.52009524958
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 280237.001949774,
- 98047.49514396398
- ],
- "y": [
- -149638.04410942073,
- -187722.01964145992
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 280237.001949774,
- 97477.31474980435
- ],
- "y": [
- -149638.04410942073,
- -188625.28745242656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -823020.539712868,
- 97384.80366070305
- ],
- "y": [
- 892984.7573596186,
- -188602.07939852623
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -823020.539712868,
- 98571.74309474658
- ],
- "y": [
- 892984.7573596186,
- -188156.60345261396
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -970779.9930329554,
- 95476.30474211962
- ],
- "y": [
- -446380.38475321437,
- -189331.9915999827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -970779.9930329554,
- 96247.39210484998
- ],
- "y": [
- -446380.38475321437,
- -188984.34951568441
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -970779.9930329554,
- 95988.61012463992
- ],
- "y": [
- -446380.38475321437,
- -189094.7454633695
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -486550.24362551223,
- 97164.97647400496
- ],
- "y": [
- 348686.85801109846,
- -189479.30333773256
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 231074.82024078374,
- 97510.69098668513
- ],
- "y": [
- 555197.2759476387,
- -188834.4604537936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 231074.82024078374,
- 98349.87077216271
- ],
- "y": [
- 555197.2759476387,
- -187923.30486023927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 231074.82024078374,
- 98009.1006468227
- ],
- "y": [
- 555197.2759476387,
- -188635.053643839
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -547870.9118915705,
- 96616.28197124632
- ],
- "y": [
- 858631.2968465331,
- -189486.94419473826
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -547870.9118915705,
- 96611.07880435153
- ],
- "y": [
- 858631.2968465331,
- -189045.68105489522
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -547870.9118915705,
- 96643.07015445872
- ],
- "y": [
- 858631.2968465331,
- -188345.75062919507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96860.00354930486
- ],
- "y": [
- -535266.8793977569,
- -188696.782377594
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 97218.18359466371
- ],
- "y": [
- -535266.8793977569,
- -189006.25883621728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96656.51605951994
- ],
- "y": [
- -535266.8793977569,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 97154.72425616732
- ],
- "y": [
- -535266.8793977569,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96987.80225378742
- ],
- "y": [
- -535266.8793977569,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96947.40675273385
- ],
- "y": [
- -535266.8793977569,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96791.18101461837
- ],
- "y": [
- -535266.8793977569,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702264.0646188254,
- 96532.6513290047
- ],
- "y": [
- -535266.8793977569,
- -189387.78435538372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 158951.22444749888,
- 96476.99449429182
- ],
- "y": [
- 347729.6376490493,
- -189801.49095297614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 158951.22444749888,
- 96460.3440809962
- ],
- "y": [
- 347729.6376490493,
- -189489.71907673345
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96817.66055571858
- ],
- "y": [
- 155824.0474256294,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96896.58750176255
- ],
- "y": [
- 155824.0474256294,
- -188167.02460559944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96656.51605951994
- ],
- "y": [
- 155824.0474256294,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 97154.72425616732
- ],
- "y": [
- 155824.0474256294,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96987.80225378742
- ],
- "y": [
- 155824.0474256294,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96947.40675273385
- ],
- "y": [
- 155824.0474256294,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96791.18101461837
- ],
- "y": [
- 155824.0474256294,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96695.54475332797
- ],
- "y": [
- 155824.0474256294,
- -188987.74156072343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573579.8815497239,
- 96532.6513290047
- ],
- "y": [
- 155824.0474256294,
- -189387.78435538372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 291482.05335721734,
- 93363.71919768747
- ],
- "y": [
- 289323.7154408901,
- -190382.19427593888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 291482.05335721734,
- 93502.02146333765
- ],
- "y": [
- 289323.7154408901,
- -190294.21864983928
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 291482.05335721734,
- 93218.26568575818
- ],
- "y": [
- 289323.7154408901,
- -190368.25817851265
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96605.96850560357
- ],
- "y": [
- 229215.98538537679,
- -189554.68072761627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96834.80703834713
- ],
- "y": [
- 229215.98538537679,
- -189522.66677498195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95965.26838759349
- ],
- "y": [
- 229215.98538537679,
- -189623.56254580448
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 94954.26355620637
- ],
- "y": [
- 229215.98538537679,
- -188251.55613681383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96061.1094111204
- ],
- "y": [
- 229215.98538537679,
- -189916.311805951
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98472.89573129527
- ],
- "y": [
- 229215.98538537679,
- -188292.3869375497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96860.00354930486
- ],
- "y": [
- 229215.98538537679,
- -188696.782377594
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96947.40675273385
- ],
- "y": [
- 229215.98538537679,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98477.25442843478
- ],
- "y": [
- 229215.98538537679,
- -188271.77595069932
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96663.3347349886
- ],
- "y": [
- 229215.98538537679,
- -189041.9225197264
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97182.40630309808
- ],
- "y": [
- 229215.98538537679,
- -189199.17908190106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98498.41434807747
- ],
- "y": [
- 229215.98538537679,
- -188285.76996994668
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96705.80879914662
- ],
- "y": [
- 229215.98538537679,
- -189537.7817031003
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96932.7889750408
- ],
- "y": [
- 229215.98538537679,
- -189352.73404518928
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96884.50148839512
- ],
- "y": [
- 229215.98538537679,
- -189471.04120599278
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96614.16469347998
- ],
- "y": [
- 229215.98538537679,
- -189679.53787245677
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96666.70966909935
- ],
- "y": [
- 229215.98538537679,
- -189408.21023611428
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96700.68589331902
- ],
- "y": [
- 229215.98538537679,
- -188999.3408802612
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96896.58750176255
- ],
- "y": [
- 229215.98538537679,
- -188167.02460559944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96888.97576383248
- ],
- "y": [
- 229215.98538537679,
- -188204.3724056574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96643.9005120101
- ],
- "y": [
- 229215.98538537679,
- -189645.5000292996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96541.9681406362
- ],
- "y": [
- 229215.98538537679,
- -189431.51059923717
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97087.54671590365
- ],
- "y": [
- 229215.98538537679,
- -189615.4869081341
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96751.41823297429
- ],
- "y": [
- 229215.98538537679,
- -189750.14044068835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97088.14880740178
- ],
- "y": [
- 229215.98538537679,
- -189801.76573120884
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96691.22132401943
- ],
- "y": [
- 229215.98538537679,
- -189558.55733558614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96817.66055571858
- ],
- "y": [
- 229215.98538537679,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96809.66561279182
- ],
- "y": [
- 229215.98538537679,
- -189504.89278882294
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96774.85380189044
- ],
- "y": [
- 229215.98538537679,
- -189522.26639614848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96773.12113524246
- ],
- "y": [
- 229215.98538537679,
- -189536.3625339415
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96537.39245144221
- ],
- "y": [
- 229215.98538537679,
- -189750.30848512865
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96631.60109535737
- ],
- "y": [
- 229215.98538537679,
- -189442.69507087598
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96479.84660377468
- ],
- "y": [
- 229215.98538537679,
- -190034.61897906184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97272.16196531034
- ],
- "y": [
- 229215.98538537679,
- -187899.237151973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96957.50399046045
- ],
- "y": [
- 229215.98538537679,
- -188801.60294815066
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96802.58799326436
- ],
- "y": [
- 229215.98538537679,
- -189834.3163791867
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96813.4343547639
- ],
- "y": [
- 229215.98538537679,
- -189250.6861714318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97026.39229748285
- ],
- "y": [
- 229215.98538537679,
- -189257.69084732296
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97321.50714071444
- ],
- "y": [
- 229215.98538537679,
- -188954.66274327494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96685.14736048535
- ],
- "y": [
- 229215.98538537679,
- -189640.1945004268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96659.44539572205
- ],
- "y": [
- 229215.98538537679,
- -190115.39552164622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96476.29445285945
- ],
- "y": [
- 229215.98538537679,
- -188306.66890581805
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98504.94937934296
- ],
- "y": [
- 229215.98538537679,
- -188312.41502651962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96505.43473450017
- ],
- "y": [
- 229215.98538537679,
- -189659.46917226465
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96630.14481112546
- ],
- "y": [
- 229215.98538537679,
- -189317.8406785239
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97079.77003968997
- ],
- "y": [
- 229215.98538537679,
- -189302.72898643688
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97164.16435672548
- ],
- "y": [
- 229215.98538537679,
- -189169.03781422778
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96758.34868779706
- ],
- "y": [
- 229215.98538537679,
- -189731.85447908618
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96814.38545725966
- ],
- "y": [
- 229215.98538537679,
- -189446.80721719595
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97131.06442362265
- ],
- "y": [
- 229215.98538537679,
- -189275.603776678
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96587.63072624992
- ],
- "y": [
- 229215.98538537679,
- -189693.2055888678
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96701.44181961339
- ],
- "y": [
- 229215.98538537679,
- -189753.59627716336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96868.32753094017
- ],
- "y": [
- 229215.98538537679,
- -189523.92981689292
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96485.2623043036
- ],
- "y": [
- 229215.98538537679,
- -189582.96181379963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96544.79575713704
- ],
- "y": [
- 229215.98538537679,
- -190328.62833538937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96879.06539514555
- ],
- "y": [
- 229215.98538537679,
- -189786.84207760714
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96650.5251142157
- ],
- "y": [
- 229215.98538537679,
- -189751.89635663538
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97056.66087663827
- ],
- "y": [
- 229215.98538537679,
- -188815.1944085261
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97018.7876594228
- ],
- "y": [
- 229215.98538537679,
- -189224.11613190582
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96726.97841332003
- ],
- "y": [
- 229215.98538537679,
- -189796.11674781732
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96785.79342645025
- ],
- "y": [
- 229215.98538537679,
- -189932.6237612485
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96719.79877048176
- ],
- "y": [
- 229215.98538537679,
- -189552.86218391886
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96656.51605951994
- ],
- "y": [
- 229215.98538537679,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96500.3647531615
- ],
- "y": [
- 229215.98538537679,
- -189830.91246389045
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96920.00376965974
- ],
- "y": [
- 229215.98538537679,
- -189498.42730696275
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96805.25180958064
- ],
- "y": [
- 229215.98538537679,
- -189646.04277723422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96511.27388316976
- ],
- "y": [
- 229215.98538537679,
- -189493.25493438917
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97143.69979917424
- ],
- "y": [
- 229215.98538537679,
- -188868.21171990343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96785.52822630318
- ],
- "y": [
- 229215.98538537679,
- -189430.8749071048
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96751.7242293975
- ],
- "y": [
- 229215.98538537679,
- -189418.3979333305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98488.89658362548
- ],
- "y": [
- 229215.98538537679,
- -188294.41257727327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96527.82964364873
- ],
- "y": [
- 229215.98538537679,
- -188804.39291762855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96815.18595416151
- ],
- "y": [
- 229215.98538537679,
- -189383.2134141077
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96727.94539580634
- ],
- "y": [
- 229215.98538537679,
- -189408.30108345978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96877.61190695128
- ],
- "y": [
- 229215.98538537679,
- -189622.2992613024
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96674.53853073626
- ],
- "y": [
- 229215.98538537679,
- -189336.00050606855
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96755.77967969238
- ],
- "y": [
- 229215.98538537679,
- -189494.18089072162
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97629.85915951653
- ],
- "y": [
- 229215.98538537679,
- -189346.3496150686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96896.55417266351
- ],
- "y": [
- 229215.98538537679,
- -189517.63745548116
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96874.61155723894
- ],
- "y": [
- 229215.98538537679,
- -189562.47650992335
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96781.7373211774
- ],
- "y": [
- 229215.98538537679,
- -189732.76841517194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96671.25152661269
- ],
- "y": [
- 229215.98538537679,
- -189536.8343224868
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96934.94898597764
- ],
- "y": [
- 229215.98538537679,
- -189457.759153216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97005.77074047142
- ],
- "y": [
- 229215.98538537679,
- -189532.57203367492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96964.78110583073
- ],
- "y": [
- 229215.98538537679,
- -189507.00155087592
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96640.3915108683
- ],
- "y": [
- 229215.98538537679,
- -189055.85878078622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96561.11544487227
- ],
- "y": [
- 229215.98538537679,
- -190253.9554374968
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96787.83212641206
- ],
- "y": [
- 229215.98538537679,
- -189453.52787322368
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97117.91370467145
- ],
- "y": [
- 229215.98538537679,
- -189199.04942802034
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96752.7630566314
- ],
- "y": [
- 229215.98538537679,
- -189518.1963457777
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97904.95870247688
- ],
- "y": [
- 229215.98538537679,
- -188415.7452673843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97287.61876639193
- ],
- "y": [
- 229215.98538537679,
- -188922.00741313785
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96977.41506513029
- ],
- "y": [
- 229215.98538537679,
- -189565.95036095765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96672.9812022687
- ],
- "y": [
- 229215.98538537679,
- -189599.43976925078
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96586.3268270632
- ],
- "y": [
- 229215.98538537679,
- -189447.3213721349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96797.33031385214
- ],
- "y": [
- 229215.98538537679,
- -189592.0253847243
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96770.78381407568
- ],
- "y": [
- 229215.98538537679,
- -189704.67210231442
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96767.69056492882
- ],
- "y": [
- 229215.98538537679,
- -189429.51527102874
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96916.62444917303
- ],
- "y": [
- 229215.98538537679,
- -189549.2248295347
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96736.187248987
- ],
- "y": [
- 229215.98538537679,
- -189732.63425983736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96497.40326486343
- ],
- "y": [
- 229215.98538537679,
- -189156.18143433816
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96981.69606403777
- ],
- "y": [
- 229215.98538537679,
- -189593.73394135686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97757.99670975313
- ],
- "y": [
- 229215.98538537679,
- -189255.76286114688
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97360.13554374868
- ],
- "y": [
- 229215.98538537679,
- -188480.57065962657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96792.24969134637
- ],
- "y": [
- 229215.98538537679,
- -189396.15620173485
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97386.8040364756
- ],
- "y": [
- 229215.98538537679,
- -189119.4502426223
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97041.45585776801
- ],
- "y": [
- 229215.98538537679,
- -189099.2895300957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96624.01938254207
- ],
- "y": [
- 229215.98538537679,
- -189372.92718386388
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96974.28350714296
- ],
- "y": [
- 229215.98538537679,
- -189530.79236599515
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97156.22383491664
- ],
- "y": [
- 229215.98538537679,
- -189323.80480814414
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96954.62064886169
- ],
- "y": [
- 229215.98538537679,
- -189638.78145869536
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97046.79482101345
- ],
- "y": [
- 229215.98538537679,
- -189285.81117966407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95844.28052724677
- ],
- "y": [
- 229215.98538537679,
- -189920.08786925004
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96795.23928720718
- ],
- "y": [
- 229215.98538537679,
- -189568.58179882303
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96772.56610132441
- ],
- "y": [
- 229215.98538537679,
- -189490.09496069627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96821.18944890518
- ],
- "y": [
- 229215.98538537679,
- -189529.25512316148
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97037.54167528427
- ],
- "y": [
- 229215.98538537679,
- -189325.65832119124
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97304.17187437204
- ],
- "y": [
- 229215.98538537679,
- -188851.56730320977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97045.7174310999
- ],
- "y": [
- 229215.98538537679,
- -189408.06502858872
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97031.3088470609
- ],
- "y": [
- 229215.98538537679,
- -189515.4108281232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96645.4446535775
- ],
- "y": [
- 229215.98538537679,
- -188680.41340104947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96973.7313647934
- ],
- "y": [
- 229215.98538537679,
- -189356.0500464047
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96827.27721865964
- ],
- "y": [
- 229215.98538537679,
- -188887.3973668111
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96836.63104835567
- ],
- "y": [
- 229215.98538537679,
- -189225.07031019146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96915.11359133502
- ],
- "y": [
- 229215.98538537679,
- -188770.14684657753
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96603.10265344591
- ],
- "y": [
- 229215.98538537679,
- -189474.47554588024
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96572.35122948136
- ],
- "y": [
- 229215.98538537679,
- -189774.7476661943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97218.18359466371
- ],
- "y": [
- 229215.98538537679,
- -189006.25883621728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96562.71215702499
- ],
- "y": [
- 229215.98538537679,
- -189656.34211244347
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96669.45654037285
- ],
- "y": [
- 229215.98538537679,
- -189485.92172726392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96608.97450213194
- ],
- "y": [
- 229215.98538537679,
- -189381.9654969643
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96780.12324046777
- ],
- "y": [
- 229215.98538537679,
- -189641.00924985827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96759.8367076845
- ],
- "y": [
- 229215.98538537679,
- -189677.82690449522
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96729.07888575827
- ],
- "y": [
- 229215.98538537679,
- -189393.09189406977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96451.36476325426
- ],
- "y": [
- 229215.98538537679,
- -189725.99119278492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96426.58864894029
- ],
- "y": [
- 229215.98538537679,
- -187911.2710909405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96654.61006042475
- ],
- "y": [
- 229215.98538537679,
- -189560.62472315767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98502.39684963804
- ],
- "y": [
- 229215.98538537679,
- -188296.21414801962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96710.20852553143
- ],
- "y": [
- 229215.98538537679,
- -189686.30027570974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97529.59178857305
- ],
- "y": [
- 229215.98538537679,
- -189068.82122443494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98492.45967203799
- ],
- "y": [
- 229215.98538537679,
- -188278.08712796614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96763.64967872995
- ],
- "y": [
- 229215.98538537679,
- -188336.20643323814
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97097.47714912827
- ],
- "y": [
- 229215.98538537679,
- -189634.1669562323
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96726.40817559678
- ],
- "y": [
- 229215.98538537679,
- -189303.08944739285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96949.62066620833
- ],
- "y": [
- 229215.98538537679,
- -189557.7983769141
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96872.36708461096
- ],
- "y": [
- 229215.98538537679,
- -189363.34000394432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97572.7954448912
- ],
- "y": [
- 229215.98538537679,
- -187689.0483805537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96534.13113359883
- ],
- "y": [
- 229215.98538537679,
- -189640.61261352964
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96670.03282167818
- ],
- "y": [
- 229215.98538537679,
- -189583.51700064118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96915.56474058192
- ],
- "y": [
- 229215.98538537679,
- -189321.36395637903
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96690.79996780091
- ],
- "y": [
- 229215.98538537679,
- -189328.29367726677
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97081.73959470788
- ],
- "y": [
- 229215.98538537679,
- -188925.91974127013
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96645.28675952984
- ],
- "y": [
- 229215.98538537679,
- -189730.37815090845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96845.49984264001
- ],
- "y": [
- 229215.98538537679,
- -188921.42443902968
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96791.42873166909
- ],
- "y": [
- 229215.98538537679,
- -189511.2209653839
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96848.6019348336
- ],
- "y": [
- 229215.98538537679,
- -189692.25637540634
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96653.33167046132
- ],
- "y": [
- 229215.98538537679,
- -189322.72491470815
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96798.09730894824
- ],
- "y": [
- 229215.98538537679,
- -189703.6139847984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96830.20824198317
- ],
- "y": [
- 229215.98538537679,
- -189590.25078595642
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96974.68588435129
- ],
- "y": [
- 229215.98538537679,
- -188547.46824695042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96920.50398772888
- ],
- "y": [
- 229215.98538537679,
- -188848.55062442037
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97141.56965571626
- ],
- "y": [
- 229215.98538537679,
- -188169.14538504407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95329.09589374838
- ],
- "y": [
- 229215.98538537679,
- -189621.15970611246
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96625.20312840438
- ],
- "y": [
- 229215.98538537679,
- -189554.07262256934
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96583.08101942415
- ],
- "y": [
- 229215.98538537679,
- -188935.33612228493
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97317.9470175812
- ],
- "y": [
- 229215.98538537679,
- -189015.4951605007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96848.58357963007
- ],
- "y": [
- 229215.98538537679,
- -189468.52121776558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96685.21610856292
- ],
- "y": [
- 229215.98538537679,
- -189726.9839142311
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96647.86296497285
- ],
- "y": [
- 229215.98538537679,
- -189604.051822791
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96749.19177745887
- ],
- "y": [
- 229215.98538537679,
- -189172.60980398947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96667.27172199388
- ],
- "y": [
- 229215.98538537679,
- -189516.1723814726
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96915.00366898013
- ],
- "y": [
- 229215.98538537679,
- -189606.13981497308
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95683.09108910317
- ],
- "y": [
- 229215.98538537679,
- -189818.32592583625
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96463.21403142411
- ],
- "y": [
- 229215.98538537679,
- -189832.11385822124
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96884.74639022724
- ],
- "y": [
- 229215.98538537679,
- -188799.02956322636
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97951.06604016566
- ],
- "y": [
- 229215.98538537679,
- -189141.57950872142
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96603.17113805444
- ],
- "y": [
- 229215.98538537679,
- -189643.42341201042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95950.60579597944
- ],
- "y": [
- 229215.98538537679,
- -189659.6677604097
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96582.65960470523
- ],
- "y": [
- 229215.98538537679,
- -189525.22410298133
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96319.04144083924
- ],
- "y": [
- 229215.98538537679,
- -189027.32662829437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97016.89968225527
- ],
- "y": [
- 229215.98538537679,
- -188480.5260935519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96864.74890763631
- ],
- "y": [
- 229215.98538537679,
- -189794.1589935236
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96899.74561231451
- ],
- "y": [
- 229215.98538537679,
- -189493.67651902192
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96767.43202743762
- ],
- "y": [
- 229215.98538537679,
- -189257.11848075397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96984.0156607433
- ],
- "y": [
- 229215.98538537679,
- -189190.8420644383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96697.59306293263
- ],
- "y": [
- 229215.98538537679,
- -189427.21294576538
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96742.76428952735
- ],
- "y": [
- 229215.98538537679,
- -189688.7712261936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96935.54268135317
- ],
- "y": [
- 229215.98538537679,
- -189402.41667130496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95574.39534418302
- ],
- "y": [
- 229215.98538537679,
- -189738.0525135467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96991.60346683899
- ],
- "y": [
- 229215.98538537679,
- -188695.04808894158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96580.8583468943
- ],
- "y": [
- 229215.98538537679,
- -189566.4665127886
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96987.80225378742
- ],
- "y": [
- 229215.98538537679,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96480.30494028228
- ],
- "y": [
- 229215.98538537679,
- -187695.57614406702
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97026.73007218333
- ],
- "y": [
- 229215.98538537679,
- -188758.55641030593
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96873.58873560156
- ],
- "y": [
- 229215.98538537679,
- -189744.39363754724
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97154.72425616732
- ],
- "y": [
- 229215.98538537679,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97214.28101702654
- ],
- "y": [
- 229215.98538537679,
- -188470.03479631987
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96962.13430709024
- ],
- "y": [
- 229215.98538537679,
- -189424.87314537496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96445.14131578358
- ],
- "y": [
- 229215.98538537679,
- -189689.52817768222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96952.0852964525
- ],
- "y": [
- 229215.98538537679,
- -189447.98748217383
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96485.30175383571
- ],
- "y": [
- 229215.98538537679,
- -189736.91566883595
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98188.17126174309
- ],
- "y": [
- 229215.98538537679,
- -187803.1415402722
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98087.3338631131
- ],
- "y": [
- 229215.98538537679,
- -188615.64024283146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97264.08371499478
- ],
- "y": [
- 229215.98538537679,
- -188516.52943830803
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96567.84669526415
- ],
- "y": [
- 229215.98538537679,
- -189681.64351749184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96692.64254266855
- ],
- "y": [
- 229215.98538537679,
- -189583.2115684275
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96954.5126568193
- ],
- "y": [
- 229215.98538537679,
- -188560.8123839254
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96442.24721615986
- ],
- "y": [
- 229215.98538537679,
- -188808.58568177576
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96675.1674827983
- ],
- "y": [
- 229215.98538537679,
- -189710.93255919393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96911.71700742826
- ],
- "y": [
- 229215.98538537679,
- -189406.02024615998
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96559.09520602223
- ],
- "y": [
- 229215.98538537679,
- -189499.59645998385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96964.90990095795
- ],
- "y": [
- 229215.98538537679,
- -189483.72175297773
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96368.1267297445
- ],
- "y": [
- 229215.98538537679,
- -189357.24837546385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96354.29226248538
- ],
- "y": [
- 229215.98538537679,
- -189474.95530109046
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95704.0871202312
- ],
- "y": [
- 229215.98538537679,
- -189782.36536876537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96138.82096969092
- ],
- "y": [
- 229215.98538537679,
- -189258.09496306165
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96702.30104154837
- ],
- "y": [
- 229215.98538537679,
- -189596.714753665
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95863.078617055
- ],
- "y": [
- 229215.98538537679,
- -188890.3664574394
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96928.70418989572
- ],
- "y": [
- 229215.98538537679,
- -188764.91305512202
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96875.43456713467
- ],
- "y": [
- 229215.98538537679,
- -189282.2159957167
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96712.85163544948
- ],
- "y": [
- 229215.98538537679,
- -188923.44433292217
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96210.68445716402
- ],
- "y": [
- 229215.98538537679,
- -188971.43179267063
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97643.43217333438
- ],
- "y": [
- 229215.98538537679,
- -188253.40886764217
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96875.38177626212
- ],
- "y": [
- 229215.98538537679,
- -189394.1110529634
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97277.67379891923
- ],
- "y": [
- 229215.98538537679,
- -188553.8667206884
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97650.21348938807
- ],
- "y": [
- 229215.98538537679,
- -188247.0553738609
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97380.97035221593
- ],
- "y": [
- 229215.98538537679,
- -188500.12824679536
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96767.46602322998
- ],
- "y": [
- 229215.98538537679,
- -189317.7229192206
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95912.88033660327
- ],
- "y": [
- 229215.98538537679,
- -188900.62386161956
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96875.44858847588
- ],
- "y": [
- 229215.98538537679,
- -188881.29006931305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97090.26472678532
- ],
- "y": [
- 229215.98538537679,
- -189122.419390301
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96986.78948010856
- ],
- "y": [
- 229215.98538537679,
- -189049.75416535302
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96355.34401319342
- ],
- "y": [
- 229215.98538537679,
- -190290.13307072833
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98484.83314214389
- ],
- "y": [
- 229215.98538537679,
- -188263.30442852018
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96480.80058099459
- ],
- "y": [
- 229215.98538537679,
- -189655.53739052103
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96582.01402568171
- ],
- "y": [
- 229215.98538537679,
- -189593.4766049247
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96882.04031575473
- ],
- "y": [
- 229215.98538537679,
- -189658.27998301366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96747.25944879792
- ],
- "y": [
- 229215.98538537679,
- -189608.43740396632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96853.94619098958
- ],
- "y": [
- 229215.98538537679,
- -189240.7395503507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95902.58151687872
- ],
- "y": [
- 229215.98538537679,
- -189401.6122354161
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98205.92395781298
- ],
- "y": [
- 229215.98538537679,
- -187798.89120280318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97674.61704340234
- ],
- "y": [
- 229215.98538537679,
- -189230.37339317877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96816.42131470822
- ],
- "y": [
- 229215.98538537679,
- -189545.16625437708
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96625.30102032366
- ],
- "y": [
- 229215.98538537679,
- -189612.82599109344
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96574.89605254125
- ],
- "y": [
- 229215.98538537679,
- -189466.51428955715
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96695.54475332797
- ],
- "y": [
- 229215.98538537679,
- -188987.74156072343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97026.03297053343
- ],
- "y": [
- 229215.98538537679,
- -189424.6200709084
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96755.84845242432
- ],
- "y": [
- 229215.98538537679,
- -189622.41040500058
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96494.99482485962
- ],
- "y": [
- 229215.98538537679,
- -189883.7142335665
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96639.0949732792
- ],
- "y": [
- 229215.98538537679,
- -189350.129160721
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96550.01108530164
- ],
- "y": [
- 229215.98538537679,
- -189397.67019498325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96575.31613115326
- ],
- "y": [
- 229215.98538537679,
- -189374.36013442566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96810.72873758491
- ],
- "y": [
- 229215.98538537679,
- -189312.9879746982
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96896.94014138209
- ],
- "y": [
- 229215.98538537679,
- -189387.4220162738
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96693.47055992209
- ],
- "y": [
- 229215.98538537679,
- -189456.31330892164
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96951.68482481911
- ],
- "y": [
- 229215.98538537679,
- -188757.97295287042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97105.86446933058
- ],
- "y": [
- 229215.98538537679,
- -189874.7197630853
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96683.343489294
- ],
- "y": [
- 229215.98538537679,
- -188938.53921387976
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96700.50651493037
- ],
- "y": [
- 229215.98538537679,
- -189174.94373042753
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97613.5093531771
- ],
- "y": [
- 229215.98538537679,
- -188249.57030670525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97632.10124528216
- ],
- "y": [
- 229215.98538537679,
- -188260.60515116138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96831.69055597908
- ],
- "y": [
- 229215.98538537679,
- -188336.6986691293
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96828.99548296859
- ],
- "y": [
- 229215.98538537679,
- -187680.87764689644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97813.18960016311
- ],
- "y": [
- 229215.98538537679,
- -187251.2510294042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97805.18437428074
- ],
- "y": [
- 229215.98538537679,
- -187262.66438443118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96640.17245945708
- ],
- "y": [
- 229215.98538537679,
- -189570.2833336003
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96731.09231285357
- ],
- "y": [
- 229215.98538537679,
- -189763.14706397685
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96542.83564645311
- ],
- "y": [
- 229215.98538537679,
- -189566.8655000776
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95421.91735289371
- ],
- "y": [
- 229215.98538537679,
- -189779.29013892455
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96934.21301456064
- ],
- "y": [
- 229215.98538537679,
- -189298.26902639432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96053.80630400538
- ],
- "y": [
- 229215.98538537679,
- -189143.0578281467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96579.76590487406
- ],
- "y": [
- 229215.98538537679,
- -189430.35956357492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96621.95641731111
- ],
- "y": [
- 229215.98538537679,
- -189539.6584614828
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96695.15836873942
- ],
- "y": [
- 229215.98538537679,
- -189404.9591139528
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96467.60417095249
- ],
- "y": [
- 229215.98538537679,
- -189661.95294361803
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97510.01962082756
- ],
- "y": [
- 229215.98538537679,
- -188758.00763305573
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96836.22412942452
- ],
- "y": [
- 229215.98538537679,
- -189602.10511057184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96686.3684942306
- ],
- "y": [
- 229215.98538537679,
- -189832.73284060266
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97774.42866113664
- ],
- "y": [
- 229215.98538537679,
- -187986.2925046758
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96427.1842433544
- ],
- "y": [
- 229215.98538537679,
- -189638.5204736213
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96602.9455448259
- ],
- "y": [
- 229215.98538537679,
- -189307.41763655184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98341.41820230329
- ],
- "y": [
- 229215.98538537679,
- -187325.8474831565
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96759.39098466327
- ],
- "y": [
- 229215.98538537679,
- -188953.73820219914
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96654.14513994215
- ],
- "y": [
- 229215.98538537679,
- -189477.09111556568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97094.20573290615
- ],
- "y": [
- 229215.98538537679,
- -188608.7669540309
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96534.89129183585
- ],
- "y": [
- 229215.98538537679,
- -189663.5967077643
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97845.68054608024
- ],
- "y": [
- 229215.98538537679,
- -187902.1950427761
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96714.32338601344
- ],
- "y": [
- 229215.98538537679,
- -189204.27918840424
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97354.04987112107
- ],
- "y": [
- 229215.98538537679,
- -188868.86823729656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 98362.46614454236
- ],
- "y": [
- 229215.98538537679,
- -187963.18284034188
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96555.05094020838
- ],
- "y": [
- 229215.98538537679,
- -189589.51983073587
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96417.4243506057
- ],
- "y": [
- 229215.98538537679,
- -190125.8549583156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96624.55409529047
- ],
- "y": [
- 229215.98538537679,
- -189597.31022038838
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96913.27672047008
- ],
- "y": [
- 229215.98538537679,
- -189659.42206924004
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96613.64565810803
- ],
- "y": [
- 229215.98538537679,
- -187522.90987740675
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96882.63562796098
- ],
- "y": [
- 229215.98538537679,
- -189314.3318274669
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97785.31723795002
- ],
- "y": [
- 229215.98538537679,
- -189123.09886013696
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96921.65832155356
- ],
- "y": [
- 229215.98538537679,
- -189438.33583540513
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96574.44776110545
- ],
- "y": [
- 229215.98538537679,
- -189190.64141113937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96826.02448370877
- ],
- "y": [
- 229215.98538537679,
- -189312.96716657415
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96722.32663398494
- ],
- "y": [
- 229215.98538537679,
- -189506.4879067685
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96695.61808666041
- ],
- "y": [
- 229215.98538537679,
- -189996.88173583825
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97113.91196565128
- ],
- "y": [
- 229215.98538537679,
- -189506.9208114558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96976.68282643448
- ],
- "y": [
- 229215.98538537679,
- -188577.0164252054
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96054.400615084
- ],
- "y": [
- 229215.98538537679,
- -189355.94588633478
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96278.15788483768
- ],
- "y": [
- 229215.98538537679,
- -189514.97306091062
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96861.56370770434
- ],
- "y": [
- 229215.98538537679,
- -189411.36286505614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97796.07080948977
- ],
- "y": [
- 229215.98538537679,
- -188802.23079391493
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96611.246762707
- ],
- "y": [
- 229215.98538537679,
- -189518.63063531838
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96530.79253993953
- ],
- "y": [
- 229215.98538537679,
- -189595.0859664761
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 95901.82083235442
- ],
- "y": [
- 229215.98538537679,
- -188849.11552920155
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96962.41375364321
- ],
- "y": [
- 229215.98538537679,
- -188741.18667656466
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96900.49410984787
- ],
- "y": [
- 229215.98538537679,
- -189712.08090202446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96440.3614255588
- ],
- "y": [
- 229215.98538537679,
- -190133.98681796715
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96738.66732022622
- ],
- "y": [
- 229215.98538537679,
- -189423.36465952417
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97200.14076518768
- ],
- "y": [
- 229215.98538537679,
- -190181.23310247317
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96926.75612600744
- ],
- "y": [
- 229215.98538537679,
- -188309.38290130332
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96532.6513290047
- ],
- "y": [
- 229215.98538537679,
- -189387.78435538372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96651.84522301337
- ],
- "y": [
- 229215.98538537679,
- -189261.45093796574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97627.58936686792
- ],
- "y": [
- 229215.98538537679,
- -188229.01322122104
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97563.98838997139
- ],
- "y": [
- 229215.98538537679,
- -188225.00588929723
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96560.8916778657
- ],
- "y": [
- 229215.98538537679,
- -187746.04762354173
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96729.69482051903
- ],
- "y": [
- 229215.98538537679,
- -189649.05343454154
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 96715.7628390581
- ],
- "y": [
- 229215.98538537679,
- -189292.69033396387
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -662208.9345963952,
- 97379.01812972916
- ],
- "y": [
- 229215.98538537679,
- -190439.80952772064
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 113379.54184456533,
- 95933.78130606312
- ],
- "y": [
- -118967.65056689085,
- -187405.71770728158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 113379.54184456533,
- 95969.93628717288
- ],
- "y": [
- -118967.65056689085,
- -187389.66797592156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 718826.5521028038,
- 94205.42306946588
- ],
- "y": [
- 710262.5151851682,
- -188854.15596558747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 670560.6168920255,
- 94485.92993817783
- ],
- "y": [
- -838054.4841425869,
- -190167.4618217757
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 670560.6168920255,
- 95302.46268343864
- ],
- "y": [
- -838054.4841425869,
- -189777.63112573957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381475.48544957186,
- 95505.88427993505
- ],
- "y": [
- -896069.0167068348,
- -188400.0367418278
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -964533.0899372523,
- 95182.96656441354
- ],
- "y": [
- 980573.850637422,
- -189502.7870754483
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -964533.0899372523,
- 95083.07696160226
- ],
- "y": [
- 980573.850637422,
- -189631.87542889913
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -964533.0899372523,
- 95260.63775038713
- ],
- "y": [
- 980573.850637422,
- -189379.6564968773
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573964.3844729715,
- 95343.04710668822
- ],
- "y": [
- -951730.5169718482,
- -189825.04437502267
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573964.3844729715,
- 95077.9137547502
- ],
- "y": [
- -951730.5169718482,
- -189697.85110122422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -573964.3844729715,
- 95200.52568374142
- ],
- "y": [
- -951730.5169718482,
- -189730.2105260354
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -641961.420259417,
- 97358.46679886585
- ],
- "y": [
- -540573.4524308392,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -641961.420259417,
- 97532.46968364714
- ],
- "y": [
- -540573.4524308392,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 940801.7662788922,
- 95457.42674465815
- ],
- "y": [
- 362491.91229326796,
- -188642.19864755738
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 940801.7662788922,
- 98692.43143064567
- ],
- "y": [
- 362491.91229326796,
- -186804.33417873908
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97571.51683328462
- ],
- "y": [
- 739083.9627370343,
- -189138.6052683931
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97321.50714071444
- ],
- "y": [
- 739083.9627370343,
- -188954.66274327494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97304.17187437204
- ],
- "y": [
- 739083.9627370343,
- -188851.56730320977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97558.53189592143
- ],
- "y": [
- 739083.9627370343,
- -188563.3727238801
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97529.59178857305
- ],
- "y": [
- 739083.9627370343,
- -189068.82122443494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97573.23040616274
- ],
- "y": [
- 739083.9627370343,
- -189186.61889509932
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97317.9470175812
- ],
- "y": [
- 739083.9627370343,
- -189015.4951605007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97722.41636121254
- ],
- "y": [
- 739083.9627370343,
- -189212.86844851545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 96711.97005754894
- ],
- "y": [
- 739083.9627370343,
- -188462.65509945378
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 96888.97576383248
- ],
- "y": [
- 739083.9627370343,
- -188204.3724056574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 97182.40630309808
- ],
- "y": [
- 739083.9627370343,
- -189199.17908190106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 444032.79606093984,
- 98202.27708314388
- ],
- "y": [
- 739083.9627370343,
- -188255.37224721114
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -484224.4518047343,
- 97358.46679886585
- ],
- "y": [
- -875175.6763282787,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -484224.4518047343,
- 97532.46968364714
- ],
- "y": [
- -875175.6763282787,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -149110.68317453036,
- 97358.46679886585
- ],
- "y": [
- 761101.2880335036,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -149110.68317453036,
- 97532.46968364714
- ],
- "y": [
- 761101.2880335036,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97820.56830441093
- ],
- "y": [
- -542593.2626462264,
- -188039.00270855022
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 98259.11178546748
- ],
- "y": [
- -542593.2626462264,
- -188214.46720173355
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97235.2488696914
- ],
- "y": [
- -542593.2626462264,
- -188543.17964185297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97297.7274926661
- ],
- "y": [
- -542593.2626462264,
- -188551.65872850412
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97293.5203062695
- ],
- "y": [
- -542593.2626462264,
- -187924.76781139948
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 98708.3190257109
- ],
- "y": [
- -542593.2626462264,
- -188265.91476313816
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97802.97859779913
- ],
- "y": [
- -542593.2626462264,
- -188620.13710179558
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97828.5668503006
- ],
- "y": [
- -542593.2626462264,
- -188797.5960817814
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97770.18528248275
- ],
- "y": [
- -542593.2626462264,
- -188675.01145983627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97622.16011647054
- ],
- "y": [
- -542593.2626462264,
- -189585.23416607562
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 96887.45716809586
- ],
- "y": [
- -542593.2626462264,
- -189073.2131275974
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97090.03432996322
- ],
- "y": [
- -542593.2626462264,
- -187778.6034982877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97697.42848707616
- ],
- "y": [
- -542593.2626462264,
- -188715.31186791277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97701.66892815946
- ],
- "y": [
- -542593.2626462264,
- -188783.67793234484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97585.79298176516
- ],
- "y": [
- -542593.2626462264,
- -188686.17124409127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 96404.13831153684
- ],
- "y": [
- -542593.2626462264,
- -188307.55943122407
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97486.26616142577
- ],
- "y": [
- -542593.2626462264,
- -188717.35827303602
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 96505.5934631506
- ],
- "y": [
- -542593.2626462264,
- -189175.1779532503
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97579.4448614383
- ],
- "y": [
- -542593.2626462264,
- -188752.45189673398
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 975774.1818193704,
- 97691.63703682291
- ],
- "y": [
- -542593.2626462264,
- -188617.7522841282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 900636.500591634,
- 96515.60149309262
- ],
- "y": [
- 653538.7381658673,
- -187330.48424043634
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 725677.6911089884,
- 96526.16766938524
- ],
- "y": [
- -41310.81616053112,
- -190049.08294096706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 725677.6911089884,
- 96542.88730412883
- ],
- "y": [
- -41310.81616053112,
- -190134.12788602014
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95826.70973681552
- ],
- "y": [
- -276889.34631344833,
- -189436.51072175297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95195.45569059276
- ],
- "y": [
- -276889.34631344833,
- -188825.24595688403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95229.32767677493
- ],
- "y": [
- -276889.34631344833,
- -188748.41080724396
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 94971.08522590312
- ],
- "y": [
- -276889.34631344833,
- -188632.32322923772
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95259.91296974945
- ],
- "y": [
- -276889.34631344833,
- -188755.87124533966
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95151.27865865134
- ],
- "y": [
- -276889.34631344833,
- -188739.89476481508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 328217.0229704833,
- 95457.42579193789
- ],
- "y": [
- -276889.34631344833,
- -188763.09490078397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 431602.0630810575,
- 96817.66055571858
- ],
- "y": [
- -789429.4666513097,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 431602.0630810575,
- 96806.8541605258
- ],
- "y": [
- -789429.4666513097,
- -188290.08218015765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 431602.0630810575,
- 96791.18101461837
- ],
- "y": [
- -789429.4666513097,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96395.66533854649,
- 96625.91253011048
- ],
- "y": [
- -969264.7181389591,
- -187046.38487493325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96395.66533854649,
- 96516.24082699847
- ],
- "y": [
- -969264.7181389591,
- -187622.41354491585
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -230307.1527079439,
- 96650.26887770933
- ],
- "y": [
- -199631.75714235005,
- -187967.45205088542
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -230307.1527079439,
- 95953.43758977612
- ],
- "y": [
- -199631.75714235005,
- -188236.06352852797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -230307.1527079439,
- 96414.9173008834
- ],
- "y": [
- -199631.75714235005,
- -187916.56938459937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -866085.6054143156,
- 96657.44331032071
- ],
- "y": [
- -899703.0741891128,
- -188277.7110845498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -866085.6054143156,
- 96774.09206013042
- ],
- "y": [
- -899703.0741891128,
- -187856.57507774787
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 728757.2302041758,
- 98370.08752364217
- ],
- "y": [
- 11381.849727401639,
- -186309.0004789828
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 728757.2302041758,
- 98185.39228188255
- ],
- "y": [
- 11381.849727401639,
- -186448.0761262461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 728757.2302041758,
- 97572.7954448912
- ],
- "y": [
- 11381.849727401639,
- -187689.0483805537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 96888.97576383248
- ],
- "y": [
- -597056.648969767,
- -188204.3724056574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 96866.57408532791
- ],
- "y": [
- -597056.648969767,
- -187372.14693328072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 97930.86589331932
- ],
- "y": [
- -597056.648969767,
- -186713.31626898306
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 96177.19856058512
- ],
- "y": [
- -597056.648969767,
- -188161.6300058421
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 97176.04373508078
- ],
- "y": [
- -597056.648969767,
- -187294.3067848806
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185469.61189416988,
- 97153.25597882869
- ],
- "y": [
- -597056.648969767,
- -187587.45047793945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 506079.2433519592,
- 95574.39534418302
- ],
- "y": [
- -147378.84394593493,
- -189738.0525135467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 506079.2433519592,
- 95838.54674259001
- ],
- "y": [
- -147378.84394593493,
- -189873.55077472897
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 506079.2433519592,
- 96532.8341303869
- ],
- "y": [
- -147378.84394593493,
- -187521.8824872184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 186411.39583669396,
- 98997.74271020413
- ],
- "y": [
- -998483.13613964,
- -188348.79948910305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 186411.39583669396,
- 99362.59751327203
- ],
- "y": [
- -998483.13613964,
- -189862.6413098155
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 186411.39583669396,
- 99276.9196152002
- ],
- "y": [
- -998483.13613964,
- -189857.14185344288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 186411.39583669396,
- 99226.83402346286
- ],
- "y": [
- -998483.13613964,
- -189824.66753653612
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 186411.39583669396,
- 99522.14887276676
- ],
- "y": [
- -998483.13613964,
- -189879.5254089133
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 661913.0057686664,
- 97465.09518672612
- ],
- "y": [
- -634279.3874322197,
- -190932.80865181403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -134443.11900166151,
- 96648.9363700922
- ],
- "y": [
- -521723.8195950371,
- -189214.1812788162
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 6274.1707185636205,
- 97362.29677323089
- ],
- "y": [
- 833605.513880483,
- -192162.3269836861
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 6274.1707185636205,
- 97352.27827718583
- ],
- "y": [
- 833605.513880483,
- -192524.44290793836
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 6274.1707185636205,
- 97314.13790026988
- ],
- "y": [
- 833605.513880483,
- -192115.1138136991
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 505074.68310500745,
- 95480.79812433262
- ],
- "y": [
- 353085.1610704648,
- -188972.92135698648
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -640937.7577869985,
- 97358.46679886585
- ],
- "y": [
- -183570.00335379926,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -640937.7577869985,
- 97532.46968364714
- ],
- "y": [
- -183570.00335379926,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 98668.36393861687
- ],
- "y": [
- -107725.31857915646,
- -188186.38974025362
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97272.16196531034
- ],
- "y": [
- -107725.31857915646,
- -187899.237151973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97838.4175081634
- ],
- "y": [
- -107725.31857915646,
- -189043.94703463372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97754.15865943547
- ],
- "y": [
- -107725.31857915646,
- -188886.17592031375
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97321.50714071444
- ],
- "y": [
- -107725.31857915646,
- -188954.66274327494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97287.61876639193
- ],
- "y": [
- -107725.31857915646,
- -188922.00741313785
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97387.10298484987
- ],
- "y": [
- -107725.31857915646,
- -189232.21457982747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 348115.135016678,
- 97354.04987112107
- ],
- "y": [
- -107725.31857915646,
- -188868.86823729656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 752993.026601618,
- 96987.80225378742
- ],
- "y": [
- 899733.8398479873,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 752993.026601618,
- 97218.18359466371
- ],
- "y": [
- 899733.8398479873,
- -189006.25883621728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 752993.026601618,
- 98517.20808727229
- ],
- "y": [
- 899733.8398479873,
- -188180.73220770183
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 752993.026601618,
- 96947.40675273385
- ],
- "y": [
- 899733.8398479873,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -798864.8616855099,
- 96947.40675273385
- ],
- "y": [
- -582787.3823669469,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -798864.8616855099,
- 96987.80225378742
- ],
- "y": [
- -582787.3823669469,
- -189105.2816803546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -798864.8616855099,
- 96791.18101461837
- ],
- "y": [
- -582787.3823669469,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 96888.97576383248
- ],
- "y": [
- -494752.4029342287,
- -188204.3724056574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 97017.6751012583
- ],
- "y": [
- -494752.4029342287,
- -187820.75210574528
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 96866.57408532791
- ],
- "y": [
- -494752.4029342287,
- -187372.14693328072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 97930.86589331932
- ],
- "y": [
- -494752.4029342287,
- -186713.31626898306
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 96177.19856058512
- ],
- "y": [
- -494752.4029342287,
- -188161.6300058421
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 97176.04373508078
- ],
- "y": [
- -494752.4029342287,
- -187294.3067848806
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -862762.1182790956,
- 97153.25597882869
- ],
- "y": [
- -494752.4029342287,
- -187587.45047793945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -356820.70111571206,
- 97715.03542524244
- ],
- "y": [
- 951061.619790907,
- -187459.03461725367
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -356820.70111571206,
- 97428.2088550206
- ],
- "y": [
- 951061.619790907,
- -188430.993490856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 96010.91751038717
- ],
- "y": [
- 892548.3513514869,
- -188227.91479363065
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 96392.03219267243
- ],
- "y": [
- 892548.3513514869,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 97045.79560002222
- ],
- "y": [
- 892548.3513514869,
- -187553.03431553903
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 96039.53114090665
- ],
- "y": [
- 892548.3513514869,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 96558.40139577903
- ],
- "y": [
- 892548.3513514869,
- -187369.8494239768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 177560.89683188248,
- 96072.651127653
- ],
- "y": [
- 892548.3513514869,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -697806.9091883699,
- 97717.63943455054
- ],
- "y": [
- 943135.0387208643,
- -187734.42575994402
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 96392.03219267243
- ],
- "y": [
- -392684.0079784355,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 97512.25460842131
- ],
- "y": [
- -392684.0079784355,
- -187621.21937398304
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 97068.03081922044
- ],
- "y": [
- -392684.0079784355,
- -187659.66124892057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 97443.46951981564
- ],
- "y": [
- -392684.0079784355,
- -187626.4788257705
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 97329.89355877684
- ],
- "y": [
- -392684.0079784355,
- -188263.86255790308
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 228554.08877429407,
- 97519.79955646732
- ],
- "y": [
- -392684.0079784355,
- -187368.52340470123
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -104591.68288544696,
- 97844.94572301708
- ],
- "y": [
- 277405.723798744,
- -187348.7681817943
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -104591.68288544696,
- 97678.1464428742
- ],
- "y": [
- 277405.723798744,
- -187682.18281394336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 596758.7520509677,
- 98526.54572504741
- ],
- "y": [
- 852722.9520124804,
- -186584.2836090355
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 684264.4055752846,
- 98430.07797759793
- ],
- "y": [
- -9577.618462380588,
- -188630.62199919912
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 684264.4055752846,
- 97500.16873207534
- ],
- "y": [
- -9577.618462380588,
- -189687.1717524016
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 684264.4055752846,
- 96981.97321773143
- ],
- "y": [
- -9577.618462380588,
- -189392.44618215397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 38860.38466092723,
- 94617.5959694371
- ],
- "y": [
- -196380.71636330645,
- -187036.08464524065
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -293966.9337601134,
- 95301.3607194778
- ],
- "y": [
- -843456.7971308902,
- -185139.07792481993
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -293966.9337601134,
- 95227.77092314835
- ],
- "y": [
- -843456.7971308902,
- -185139.72357748792
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -293966.9337601134,
- 95402.52158220478
- ],
- "y": [
- -843456.7971308902,
- -185172.0562297005
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -293966.9337601134,
- 95276.97798041081
- ],
- "y": [
- -843456.7971308902,
- -185223.1558109515
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -293966.9337601134,
- 94853.13681242797
- ],
- "y": [
- -843456.7971308902,
- -185302.5690199798
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 205575.50894640197,
- 96400.51278286969
- ],
- "y": [
- 984973.4491142076,
- -187859.86995225446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 205575.50894640197,
- 96480.30494028228
- ],
- "y": [
- 984973.4491142076,
- -187695.57614406702
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 205575.50894640197,
- 96019.73206058989
- ],
- "y": [
- 984973.4491142076,
- -187760.736691232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 95949.12131101474
- ],
- "y": [
- -385401.5701649929,
- -187476.2628433151
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 95997.16066474574
- ],
- "y": [
- -385401.5701649929,
- -187427.76982279553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 95427.65531943327
- ],
- "y": [
- -385401.5701649929,
- -187674.51102416526
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 96645.63733017922
- ],
- "y": [
- -385401.5701649929,
- -188223.1502255291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 96622.44802724649
- ],
- "y": [
- -385401.5701649929,
- -188223.8025959115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 96637.20944908995
- ],
- "y": [
- -385401.5701649929,
- -188238.87170758605
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -238955.24483877773,
- 96402.067408069
- ],
- "y": [
- -385401.5701649929,
- -187003.89280649187
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -887559.5147387895,
- 96546.81074094832
- ],
- "y": [
- 168756.03714719633,
- -186542.96075744857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -887559.5147387895,
- 96396.69753430235
- ],
- "y": [
- 168756.03714719633,
- -186761.60951942398
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -887559.5147387895,
- 96935.23882458691
- ],
- "y": [
- 168756.03714719633,
- -187272.80604379578
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -887559.5147387895,
- 96582.14749337402
- ],
- "y": [
- 168756.03714719633,
- -187924.91100981052
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -810392.7287200175,
- 96220.7703218342
- ],
- "y": [
- -941058.7217523911,
- -184843.25042613945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -384269.55450074596,
- 96400.51278286969
- ],
- "y": [
- 173992.82715078935,
- -187859.86995225446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -384269.55450074596,
- 96480.30494028228
- ],
- "y": [
- 173992.82715078935,
- -187695.57614406702
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -384269.55450074596,
- 96019.73206058989
- ],
- "y": [
- 173992.82715078935,
- -187760.736691232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 825928.0205778476,
- 96871.32320011256
- ],
- "y": [
- -928462.3937940064,
- -186903.6585095412
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -630743.5726622504,
- 96963.41552878823
- ],
- "y": [
- -650586.8280954399,
- -187363.62555888496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 602845.2465308853,
- 96210.59439600962
- ],
- "y": [
- -316288.188440164,
- -185290.586235629
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 602845.2465308853,
- 96315.24613181091
- ],
- "y": [
- -316288.188440164,
- -185165.9576632683
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 96028.2888002032
- ],
- "y": [
- -138.98425530056713,
- -187636.6401471091
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95489.22963590887
- ],
- "y": [
- -138.98425530056713,
- -187838.56400906073
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95828.46924619444
- ],
- "y": [
- -138.98425530056713,
- -187819.29574656484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95482.44304451962
- ],
- "y": [
- -138.98425530056713,
- -188059.9314632963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95066.06523441382
- ],
- "y": [
- -138.98425530056713,
- -188290.363652496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95163.75908553116
- ],
- "y": [
- -138.98425530056713,
- -188413.92210597807
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95488.52095752831
- ],
- "y": [
- -138.98425530056713,
- -187943.2258883462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 96006.77287976355
- ],
- "y": [
- -138.98425530056713,
- -188679.23184501874
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95443.67008227661
- ],
- "y": [
- -138.98425530056713,
- -188423.99184216498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95274.60828290615
- ],
- "y": [
- -138.98425530056713,
- -188187.00891794523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95505.50501741502
- ],
- "y": [
- -138.98425530056713,
- -188099.9720945511
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95274.55463163379
- ],
- "y": [
- -138.98425530056713,
- -188644.9068178371
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95360.36419013362
- ],
- "y": [
- -138.98425530056713,
- -188384.46387554856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95292.52782742439
- ],
- "y": [
- -138.98425530056713,
- -188534.02363205954
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95472.00274613315
- ],
- "y": [
- -138.98425530056713,
- -188477.95331527485
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95308.98963794683
- ],
- "y": [
- -138.98425530056713,
- -188590.4523846817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95397.10356995185
- ],
- "y": [
- -138.98425530056713,
- -187941.9237365848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95504.42605081353
- ],
- "y": [
- -138.98425530056713,
- -188412.73187816486
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95949.84954429526
- ],
- "y": [
- -138.98425530056713,
- -188208.82409906888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95527.20667464145
- ],
- "y": [
- -138.98425530056713,
- -188567.58941515462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95213.0622434433
- ],
- "y": [
- -138.98425530056713,
- -188396.23465801778
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95306.71022996533
- ],
- "y": [
- -138.98425530056713,
- -188159.4341766519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95320.26347648272
- ],
- "y": [
- -138.98425530056713,
- -188530.70142542297
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 95510.02889292239
- ],
- "y": [
- -138.98425530056713,
- -187463.4585977219
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -223735.95682974058,
- 96072.651127653
- ],
- "y": [
- -138.98425530056713,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -641913.5259541672,
- 96156.074298552
- ],
- "y": [
- -149172.65446396644,
- -186479.6446350026
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -641913.5259541672,
- 96344.83157727902
- ],
- "y": [
- -149172.65446396644,
- -187298.47957976593
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -641913.5259541672,
- 96192.16190696902
- ],
- "y": [
- -149172.65446396644,
- -186539.61527157956
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 860516.1611720189,
- 96534.04849627241
- ],
- "y": [
- -972626.8602657677,
- -186632.56137489137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 857326.5405612354,
- 95914.16367038043
- ],
- "y": [
- -488546.23140684003,
- -186056.69045446397
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 857326.5405612354,
- 95991.06452640316
- ],
- "y": [
- -488546.23140684003,
- -185951.46023938467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 857326.5405612354,
- 95745.4694082097
- ],
- "y": [
- -488546.23140684003,
- -186802.7182162248
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 857326.5405612354,
- 96072.76062132008
- ],
- "y": [
- -488546.23140684003,
- -185550.27627308652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -606908.4936988576,
- 96296.57518040262
- ],
- "y": [
- 718066.3755134307,
- -187045.1102206911
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -606908.4936988576,
- 96237.23840449286
- ],
- "y": [
- 718066.3755134307,
- -187073.15041134102
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -606908.4936988576,
- 96100.16964314734
- ],
- "y": [
- 718066.3755134307,
- -187254.26535223567
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -606908.4936988576,
- 96577.18594978366
- ],
- "y": [
- 718066.3755134307,
- -187989.30944414838
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -606908.4936988576,
- 96564.47351993735
- ],
- "y": [
- 718066.3755134307,
- -188000.4487104779
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 327038.5420484947,
- 96828.99548296859
- ],
- "y": [
- -329842.4340128823,
- -187680.87764689644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 900407.8115062198,
- 96768.15156923435
- ],
- "y": [
- 859589.5780032114,
- -187906.78280195483
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 900407.8115062198,
- 96405.88036665124
- ],
- "y": [
- 859589.5780032114,
- -186681.1635380391
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 900407.8115062198,
- 96370.19303826737
- ],
- "y": [
- 859589.5780032114,
- -186905.37079495806
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 570248.7195378274,
- 97409.25368271414
- ],
- "y": [
- 900770.1960220302,
- -187857.75124697632
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 570248.7195378274,
- 97234.04346137235
- ],
- "y": [
- 900770.1960220302,
- -187760.40303329699
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 570248.7195378274,
- 97545.38850460328
- ],
- "y": [
- 900770.1960220302,
- -187920.62374587829
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 570248.7195378274,
- 97434.01515339047
- ],
- "y": [
- 900770.1960220302,
- -187858.44732430877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96249.72659060232
- ],
- "y": [
- 325060.2886201035,
- -187659.66132080328
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 97705.70304050583
- ],
- "y": [
- 325060.2886201035,
- -187484.91206357404
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96625.91253011048
- ],
- "y": [
- 325060.2886201035,
- -187046.38487493325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96516.24082699847
- ],
- "y": [
- 325060.2886201035,
- -187622.41354491585
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96647.32091240633
- ],
- "y": [
- 325060.2886201035,
- -186546.9811101811
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96573.99731256816
- ],
- "y": [
- 325060.2886201035,
- -187389.5387646811
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -196417.42374274827,
- 96536.36409486223
- ],
- "y": [
- 325060.2886201035,
- -186874.71930400067
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 302746.5200068291,
- 94888.48155674861
- ],
- "y": [
- 848396.560279614,
- -185839.00663893652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 302746.5200068291,
- 95501.8125864358
- ],
- "y": [
- 848396.560279614,
- -185362.02426270678
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -185247.41886056017,
- 96398.60994140033
- ],
- "y": [
- 888292.8972825181,
- -186743.67631044146
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -185247.41886056017,
- 97087.09725827706
- ],
- "y": [
- 888292.8972825181,
- -186943.91875814958
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 661833.7999114355,
- 95858.67269394762
- ],
- "y": [
- 621808.7016435225,
- -185611.65728113687
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 342718.2897794898,
- 94889.58026607656
- ],
- "y": [
- -427243.4059970509,
- -189084.9074632962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 342718.2897794898,
- 95744.0722676581
- ],
- "y": [
- -427243.4059970509,
- -187484.60913141377
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 342718.2897794898,
- 96100.16964314734
- ],
- "y": [
- -427243.4059970509,
- -187254.26535223567
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 342718.2897794898,
- 96577.18594978366
- ],
- "y": [
- -427243.4059970509,
- -187989.30944414838
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 342718.2897794898,
- 96564.47351993735
- ],
- "y": [
- -427243.4059970509,
- -188000.4487104779
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 21877.881505122376,
- 96817.66055571858
- ],
- "y": [
- 681698.0658289792,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 21877.881505122376,
- 96539.2876843912
- ],
- "y": [
- 681698.0658289792,
- -186793.02846859442
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 21877.881505122376,
- 96488.71126504915
- ],
- "y": [
- 681698.0658289792,
- -186643.42136934042
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 897967.5960706323,
- 96574.07459048775
- ],
- "y": [
- -544882.6051615201,
- -187063.1911515589
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426984.0513968357,
- 94476.68554039652
- ],
- "y": [
- -238668.58589913577,
- -188748.28453514946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426984.0513968357,
- 94952.05763640381
- ],
- "y": [
- -238668.58589913577,
- -188439.97049711825
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426984.0513968357,
- 94960.14806309502
- ],
- "y": [
- -238668.58589913577,
- -187368.1489177038
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -910074.4476692642,
- 95868.93237525053
- ],
- "y": [
- 168749.41483386618,
- -185263.2297970409
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 290487.3206044216,
- 95682.31879557903
- ],
- "y": [
- -89607.81465368229,
- -187430.4310402768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 290487.3206044216,
- 96011.6169628847
- ],
- "y": [
- -89607.81465368229,
- -187168.63791618857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 290487.3206044216,
- 96107.71912624051
- ],
- "y": [
- -89607.81465368229,
- -187036.11661907207
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648161.226738482,
- 96229.66105626737
- ],
- "y": [
- -702869.8868079968,
- -187792.9688123335
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648161.226738482,
- 96357.58676902352
- ],
- "y": [
- -702869.8868079968,
- -187566.37581145845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648161.226738482,
- 98178.17510730785
- ],
- "y": [
- -702869.8868079968,
- -187942.22047264426
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648161.226738482,
- 96273.17959649833
- ],
- "y": [
- -702869.8868079968,
- -188476.1018531056
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96665.56418908923,
- 97358.46679886585
- ],
- "y": [
- 800160.8210043467,
- -188482.5310615353
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -96665.56418908923,
- 97532.46968364714
- ],
- "y": [
- 800160.8210043467,
- -187821.3765527352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -597264.9068567748,
- 96072.76062132008
- ],
- "y": [
- 622638.0385672044,
- -185550.27627308652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -837885.1665043108,
- 95844.61270594754
- ],
- "y": [
- -929952.2855720208,
- -185482.56088321618
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -837885.1665043108,
- 95987.03936165375
- ],
- "y": [
- -929952.2855720208,
- -185326.3459551552
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 882596.9345251996,
- 96947.40675273385
- ],
- "y": [
- -800941.8133173318,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 882596.9345251996,
- 96896.58750176255
- ],
- "y": [
- -800941.8133173318,
- -188167.02460559944
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 882596.9345251996,
- 97154.72425616732
- ],
- "y": [
- -800941.8133173318,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381868.0890948134,
- 94066.51607848209
- ],
- "y": [
- -845799.5709180704,
- -185673.3450969795
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381868.0890948134,
- 93666.16904241925
- ],
- "y": [
- -845799.5709180704,
- -186215.06335089865
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381868.0890948134,
- 93682.44991506475
- ],
- "y": [
- -845799.5709180704,
- -186233.90314590227
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381868.0890948134,
- 93976.18462674941
- ],
- "y": [
- -845799.5709180704,
- -185642.18789406322
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 97272.16196531034
- ],
- "y": [
- 902372.4385321912,
- -187899.237151973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96656.51605951994
- ],
- "y": [
- 902372.4385321912,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96358.25249911078
- ],
- "y": [
- 902372.4385321912,
- -186143.89671308498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96321.80373689976
- ],
- "y": [
- 902372.4385321912,
- -186797.5306394901
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96114.11946368766
- ],
- "y": [
- 902372.4385321912,
- -186312.18585102723
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 95768.86401324993
- ],
- "y": [
- 902372.4385321912,
- -185867.34727359438
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96245.67690227392
- ],
- "y": [
- 902372.4385321912,
- -186375.3612237879
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 97449.2228277016
- ],
- "y": [
- 902372.4385321912,
- -187561.3991996525
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 978774.8671757412,
- 96791.18101461837
- ],
- "y": [
- 902372.4385321912,
- -188349.47236547497
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -194279.80743491635,
- 96763.64967872995
- ],
- "y": [
- 479812.5750510687,
- -188336.20643323814
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -194279.80743491635,
- 96400.51278286969
- ],
- "y": [
- 479812.5750510687,
- -187859.86995225446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -194279.80743491635,
- 96480.30494028228
- ],
- "y": [
- 479812.5750510687,
- -187695.57614406702
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -194279.80743491635,
- 96019.73206058989
- ],
- "y": [
- 479812.5750510687,
- -187760.736691232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -520404.53542439133,
- 96919.80862750238
- ],
- "y": [
- 891543.560257879,
- -187194.3312948634
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 839521.0558089447,
- 95714.35022151601
- ],
- "y": [
- 309357.5824183621,
- -185589.1946310685
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288080.60505450726,
- 96636.93741201112
- ],
- "y": [
- 875070.4434268685,
- -186662.39995437322
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215057.2188755595,
- 96668.40960032
- ],
- "y": [
- -152933.8315019162,
- -186235.288447879
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215057.2188755595,
- 96517.34543879435
- ],
- "y": [
- -152933.8315019162,
- -186405.03105329376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215057.2188755595,
- 97008.15894636505
- ],
- "y": [
- -152933.8315019162,
- -186892.55000415185
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215057.2188755595,
- 96807.74423569046
- ],
- "y": [
- -152933.8315019162,
- -187294.12286925653
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -102229.42822348347,
- 95387.72814612064
- ],
- "y": [
- 94206.78527900539,
- -186270.0295100747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -102229.42822348347,
- 95418.41077655359
- ],
- "y": [
- 94206.78527900539,
- -186078.48063323216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -102229.42822348347,
- 95472.67938384521
- ],
- "y": [
- 94206.78527900539,
- -186075.9211697261
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 98114.52152816013
- ],
- "y": [
- 349569.01094111404,
- -185912.47186195152
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 98111.97280969669
- ],
- "y": [
- 349569.01094111404,
- -185961.2957648515
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 97753.21078683695
- ],
- "y": [
- 349569.01094111404,
- -186232.2255226064
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 98142.06219207752
- ],
- "y": [
- 349569.01094111404,
- -185912.22434019603
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 97488.66800355395
- ],
- "y": [
- 349569.01094111404,
- -185580.70430677492
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 376753.80948773184,
- 98144.87686544789
- ],
- "y": [
- 349569.01094111404,
- -185946.11501890482
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -25705.236251931663,
- 96528.57510021586
- ],
- "y": [
- -533399.1458938323,
- -187393.59499414876
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -25705.236251931663,
- 96901.55938078823
- ],
- "y": [
- -533399.1458938323,
- -187309.87049034002
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 235382.84267939447,
- 94256.97992301545
- ],
- "y": [
- -397745.37628812244,
- -187472.30498547002
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 235382.84267939447,
- 94390.62485294472
- ],
- "y": [
- -397745.37628812244,
- -188817.03562402542
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 235382.84267939447,
- 94474.18506646619
- ],
- "y": [
- -397745.37628812244,
- -187333.3919005783
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -768077.3568489492,
- 96818.20189981317
- ],
- "y": [
- -484725.09919369535,
- -187868.89767386837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -768077.3568489492,
- 96638.80405463175
- ],
- "y": [
- -484725.09919369535,
- -186633.25689314547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -13964.755390297512,
- 95888.00973910451
- ],
- "y": [
- 144159.2999215613,
- -185460.96898446843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -13964.755390297512,
- 95799.49717635973
- ],
- "y": [
- 144159.2999215613,
- -185628.17632635156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 660747.1133854709,
- 95761.360020285
- ],
- "y": [
- 694026.5122361657,
- -186311.45221873518
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 660747.1133854709,
- 95802.05331128874
- ],
- "y": [
- 694026.5122361657,
- -187196.24604930566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -435531.37121292826,
- 96973.49939574185
- ],
- "y": [
- -882195.7653029837,
- -187276.60266658547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -435531.37121292826,
- 96633.26092124682
- ],
- "y": [
- -882195.7653029837,
- -186565.47062728266
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97052.8332660283
- ],
- "y": [
- -254949.26705717092,
- -187852.313928534
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97011.81451068369
- ],
- "y": [
- -254949.26705717092,
- -187557.78543535888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97113.70285257122
- ],
- "y": [
- -254949.26705717092,
- -187719.1913994157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97210.3004088966
- ],
- "y": [
- -254949.26705717092,
- -187972.83650257328
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97188.26787866931
- ],
- "y": [
- -254949.26705717092,
- -187960.29676871523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97011.81451068369
- ],
- "y": [
- -254949.26705717092,
- -187557.78543535888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97113.70285257122
- ],
- "y": [
- -254949.26705717092,
- -187719.1913994157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97056.56327204366
- ],
- "y": [
- -254949.26705717092,
- -187911.10264278692
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97626.44431224155
- ],
- "y": [
- -254949.26705717092,
- -188630.8453506235
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97350.90150160708
- ],
- "y": [
- -254949.26705717092,
- -187496.3832271789
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97188.26787866931
- ],
- "y": [
- -254949.26705717092,
- -187960.29676871523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97350.90150160708
- ],
- "y": [
- -254949.26705717092,
- -187496.3832271789
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97162.69508453069
- ],
- "y": [
- -254949.26705717092,
- -188349.65680053786
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 988256.9959860345,
- 97210.3004088966
- ],
- "y": [
- -254949.26705717092,
- -187972.83650257328
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 28339.46953594202,
- 97817.20098235017
- ],
- "y": [
- -462491.0589268401,
- -185809.88961724282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 28339.46953594202,
- 96022.18132064518
- ],
- "y": [
- -462491.0589268401,
- -186934.3360415499
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 28339.46953594202,
- 95599.18088294458
- ],
- "y": [
- -462491.0589268401,
- -187643.83786716606
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 967043.4622880626,
- 95375.71980775791
- ],
- "y": [
- -430007.8911960938,
- -187994.90708299744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 967043.4622880626,
- 95781.4838692387
- ],
- "y": [
- -430007.8911960938,
- -188238.2147196666
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 967043.4622880626,
- 95680.02527851156
- ],
- "y": [
- -430007.8911960938,
- -187629.56098631225
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 967043.4622880626,
- 95894.41366117746
- ],
- "y": [
- -430007.8911960938,
- -187007.5772303797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 967043.4622880626,
- 95794.3620644187
- ],
- "y": [
- -430007.8911960938,
- -187291.49824795782
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 926635.0133391499,
- 96845.07860198681
- ],
- "y": [
- -536448.641531344,
- -186121.19306263936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 926635.0133391499,
- 97276.29878619949
- ],
- "y": [
- -536448.641531344,
- -187012.46365318543
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 926635.0133391499,
- 97481.0467852597
- ],
- "y": [
- -536448.641531344,
- -186679.30936474973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -535039.744551085,
- 96200.64224390368
- ],
- "y": [
- -564353.4323777468,
- -185419.46969980895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -666783.5869524132,
- 96069.95563247148
- ],
- "y": [
- 349059.9686039351,
- -185379.2656174194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -212732.11676849678,
- 96759.80185472532
- ],
- "y": [
- -514225.7770431149,
- -186901.45563588393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -212732.11676849678,
- 97151.48266936177
- ],
- "y": [
- -514225.7770431149,
- -187807.15683063408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359443.6248692099,
- 97525.66398682565
- ],
- "y": [
- 757689.3317536355,
- -187994.28122602464
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359443.6248692099,
- 98129.8335044742
- ],
- "y": [
- 757689.3317536355,
- -187308.64998441696
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -150943.60975530808,
- 95869.4969027973
- ],
- "y": [
- -430408.69367142377,
- -188350.75252464804
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -150943.60975530808,
- 95947.6612354604
- ],
- "y": [
- -430408.69367142377,
- -186863.31396841115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97219.2344849453
- ],
- "y": [
- 86268.5009564601,
- -187720.11017674877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97524.9702327776
- ],
- "y": [
- 86268.5009564601,
- -187287.84841348106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 96743.02101349403
- ],
- "y": [
- 86268.5009564601,
- -187854.13914095613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97462.76341227313
- ],
- "y": [
- 86268.5009564601,
- -187014.84911061524
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97570.78852224046
- ],
- "y": [
- 86268.5009564601,
- -187234.71318697152
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97965.90473223805
- ],
- "y": [
- 86268.5009564601,
- -187204.27240844848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 98426.11814680099
- ],
- "y": [
- 86268.5009564601,
- -187291.09671769937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97400.88013760047
- ],
- "y": [
- 86268.5009564601,
- -187094.25690049428
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97830.50425286932
- ],
- "y": [
- 86268.5009564601,
- -187609.4187582251
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97563.51909740941
- ],
- "y": [
- 86268.5009564601,
- -187718.59193484212
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97959.05424320973
- ],
- "y": [
- 86268.5009564601,
- -186509.34289278075
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 942137.0889056928,
- 97250.30982328247
- ],
- "y": [
- 86268.5009564601,
- -188147.50652534553
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 263248.3851843943,
- 97598.41715003968
- ],
- "y": [
- -156068.9752368236,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 263248.3851843943,
- 97191.15673842629
- ],
- "y": [
- -156068.9752368236,
- -186870.85476427
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 263248.3851843943,
- 96876.62587606598
- ],
- "y": [
- -156068.9752368236,
- -186342.25549461835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 263248.3851843943,
- 97177.84417040872
- ],
- "y": [
- -156068.9752368236,
- -186442.0690847481
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98932.31091884513
- ],
- "y": [
- -246207.73709491672,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98926.20655583622
- ],
- "y": [
- -246207.73709491672,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98881.20399257346
- ],
- "y": [
- -246207.73709491672,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98873.6590998779
- ],
- "y": [
- -246207.73709491672,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98776.08147395353
- ],
- "y": [
- -246207.73709491672,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98916.08043593282
- ],
- "y": [
- -246207.73709491672,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98775.64297666437
- ],
- "y": [
- -246207.73709491672,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98833.5386160878
- ],
- "y": [
- -246207.73709491672,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98779.4951496633
- ],
- "y": [
- -246207.73709491672,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98769.87019965112
- ],
- "y": [
- -246207.73709491672,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98763.69912444155
- ],
- "y": [
- -246207.73709491672,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98715.38337956829
- ],
- "y": [
- -246207.73709491672,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98838.01226486915
- ],
- "y": [
- -246207.73709491672,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98731.25835265023
- ],
- "y": [
- -246207.73709491672,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98794.9356782363
- ],
- "y": [
- -246207.73709491672,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98875.12446310604
- ],
- "y": [
- -246207.73709491672,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435040.8329212534,
- 98845.6917714939
- ],
- "y": [
- -246207.73709491672,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -268079.75936596474,
- 97044.98522321004
- ],
- "y": [
- 478973.0794877556,
- -186558.77337581848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -268079.75936596474,
- 96890.44446357607
- ],
- "y": [
- 478973.0794877556,
- -186655.24842534095
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 403899.78181010886,
- 95746.74077759727
- ],
- "y": [
- 119281.5836990242,
- -185972.4842459763
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 403899.78181010886,
- 95514.38455692613
- ],
- "y": [
- 119281.5836990242,
- -185153.37826635112
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 403899.78181010886,
- 96085.91161839501
- ],
- "y": [
- 119281.5836990242,
- -185765.32519087984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 403899.78181010886,
- 95540.81075134124
- ],
- "y": [
- 119281.5836990242,
- -185186.70637920234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 403899.78181010886,
- 95161.64737314533
- ],
- "y": [
- 119281.5836990242,
- -185070.59019309614
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97743.37633435942
- ],
- "y": [
- 388189.0314436558,
- -187673.30496193952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97368.18786729996
- ],
- "y": [
- 388189.0314436558,
- -187761.64483234545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97400.16397729573
- ],
- "y": [
- 388189.0314436558,
- -187256.5867709403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97615.97056569872
- ],
- "y": [
- 388189.0314436558,
- -187366.18291352072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97788.7651245566
- ],
- "y": [
- 388189.0314436558,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97923.16505107327
- ],
- "y": [
- 388189.0314436558,
- -187510.56934074408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97749.77214743374
- ],
- "y": [
- 388189.0314436558,
- -187529.40680193529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -405306.02044891764,
- 97737.47168433828
- ],
- "y": [
- 388189.0314436558,
- -187454.64105987392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -88739.66357379004,
- 97643.42074759667
- ],
- "y": [
- -524230.97112853,
- -187519.31181360115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -88739.66357379004,
- 97749.29069670282
- ],
- "y": [
- -524230.97112853,
- -187123.06288107514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -88739.66357379004,
- 98137.79198213125
- ],
- "y": [
- -524230.97112853,
- -187477.63157623674
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -88739.66357379004,
- 97782.44112987598
- ],
- "y": [
- -524230.97112853,
- -187257.24688779732
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -88739.66357379004,
- 97566.10709216155
- ],
- "y": [
- -524230.97112853,
- -186882.32732606877
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -655098.6365330735,
- 97247.41509419652
- ],
- "y": [
- -17390.03349064716,
- -185744.03743667188
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -655098.6365330735,
- 98703.6866543077
- ],
- "y": [
- -17390.03349064716,
- -185647.84002902228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -655098.6365330735,
- 97300.96068285858
- ],
- "y": [
- -17390.03349064716,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -655098.6365330735,
- 97415.93818773415
- ],
- "y": [
- -17390.03349064716,
- -185902.72286645
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97789.92707115466
- ],
- "y": [
- -791736.2387877613,
- -187303.182190925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 96750.40498635444
- ],
- "y": [
- -791736.2387877613,
- -188126.80564361744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97809.32654645263
- ],
- "y": [
- -791736.2387877613,
- -187360.58931040493
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97809.59302628535
- ],
- "y": [
- -791736.2387877613,
- -186921.38953855107
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97788.58031988013
- ],
- "y": [
- -791736.2387877613,
- -186929.557108324
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97768.46861576667
- ],
- "y": [
- -791736.2387877613,
- -187311.67435395776
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 286552.26150755887,
- 97504.52578621544
- ],
- "y": [
- -791736.2387877613,
- -187395.2983959365
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -252963.25799429885,
- 96578.02421964555
- ],
- "y": [
- -249018.1239022182,
- -187080.93819916193
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -252963.25799429885,
- 96409.96532967011
- ],
- "y": [
- -249018.1239022182,
- -186222.8395883536
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 486620.05816211493,
- 96325.12988946559
- ],
- "y": [
- 425687.551390582,
- -187442.89148744586
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 486620.05816211493,
- 96767.96478692938
- ],
- "y": [
- 425687.551390582,
- -188140.00051928166
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 486620.05816211493,
- 96753.02617057231
- ],
- "y": [
- 425687.551390582,
- -188151.46145141035
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 486620.05816211493,
- 96869.39684947954
- ],
- "y": [
- 425687.551390582,
- -187564.53232755137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 95763.40443589797
- ],
- "y": [
- 541551.3039466413,
- -188215.09477527425
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 95719.63523794102
- ],
- "y": [
- 541551.3039466413,
- -187376.35249447948
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 95771.1095203462
- ],
- "y": [
- 541551.3039466413,
- -188189.81482384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 95203.1376507783
- ],
- "y": [
- 541551.3039466413,
- -188034.83047066652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 96270.15699232905
- ],
- "y": [
- 541551.3039466413,
- -187747.06924668472
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 95244.0575474311
- ],
- "y": [
- 541551.3039466413,
- -188800.80256482895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 96476.2244248884
- ],
- "y": [
- 541551.3039466413,
- -187102.12973368363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -328431.293413165,
- 96533.83917036175
- ],
- "y": [
- 541551.3039466413,
- -187917.99657074743
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 986835.0736272966,
- 95627.6655653288
- ],
- "y": [
- 777474.9590574694,
- -185057.76047148168
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 986835.0736272966,
- 96487.74751288781
- ],
- "y": [
- 777474.9590574694,
- -186486.71688355424
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 986835.0736272966,
- 95709.93291907338
- ],
- "y": [
- 777474.9590574694,
- -185130.529001914
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 986835.0736272966,
- 95658.32063821593
- ],
- "y": [
- 777474.9590574694,
- -185147.71919034136
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -41600.750115048155,
- 97536.70985088356
- ],
- "y": [
- -308779.8303713793,
- -187135.60577403157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -41600.750115048155,
- 98229.18483310309
- ],
- "y": [
- -308779.8303713793,
- -187646.46474410285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -41600.750115048155,
- 97334.69528656456
- ],
- "y": [
- -308779.8303713793,
- -187248.01430917686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 629509.3608464187,
- 95989.76467211267
- ],
- "y": [
- -585205.0374690447,
- -185284.9406615433
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -653765.5633018771,
- 97600.72228126202
- ],
- "y": [
- -109038.59249090897,
- -186286.42140426437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -653765.5633018771,
- 97959.01602952153
- ],
- "y": [
- -109038.59249090897,
- -186595.59491334032
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -653765.5633018771,
- 98371.01061870782
- ],
- "y": [
- -109038.59249090897,
- -187638.170551301
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -653765.5633018771,
- 97789.64547242364
- ],
- "y": [
- -109038.59249090897,
- -186478.24245183423
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 487810.7120183575,
- 95737.0210501743
- ],
- "y": [
- -476955.21757166047,
- -187993.35866484616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 487810.7120183575,
- 96247.5730261708
- ],
- "y": [
- -476955.21757166047,
- -187229.13331112568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79696.72280020501,
- 96716.89120782126
- ],
- "y": [
- 89599.82920407894,
- -187938.08243107222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 79696.72280020501,
- 96085.91161839501
- ],
- "y": [
- 89599.82920407894,
- -185765.32519087984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 93058.14653318057,
- 97052.70205106144
- ],
- "y": [
- -202663.00039897067,
- -186825.88912431858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 93058.14653318057,
- 96826.71329736618
- ],
- "y": [
- -202663.00039897067,
- -186708.8994492446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 93058.14653318057,
- 96991.17451689237
- ],
- "y": [
- -202663.00039897067,
- -187164.0688469574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 792119.881503258,
- 97052.70205106144
- ],
- "y": [
- 40745.30815238342,
- -186825.88912431858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 792119.881503258,
- 96991.17451689237
- ],
- "y": [
- 40745.30815238342,
- -187164.0688469574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167826.07426211916,
- 96760.3513556949
- ],
- "y": [
- -984531.7167255103,
- -187461.08290298193
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167826.07426211916,
- 96464.55718535923
- ],
- "y": [
- -984531.7167255103,
- -187221.3523749667
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167826.07426211916,
- 96534.278171482
- ],
- "y": [
- -984531.7167255103,
- -186992.1811585919
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167826.07426211916,
- 96405.88296277358
- ],
- "y": [
- -984531.7167255103,
- -187142.28778417234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167826.07426211916,
- 97516.13365436997
- ],
- "y": [
- -984531.7167255103,
- -187056.31471454934
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -38509.35045387782,
- 94593.1532092616
- ],
- "y": [
- -972130.0647174548,
- -186746.17776224224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -38509.35045387782,
- 94062.66633331862
- ],
- "y": [
- -972130.0647174548,
- -187434.38846414318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -38509.35045387782,
- 93616.21500771031
- ],
- "y": [
- -972130.0647174548,
- -187826.61084050385
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 464766.31972976757,
- 96780.96571153034
- ],
- "y": [
- 273270.0597006592,
- -187003.93902302586
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 464766.31972976757,
- 96527.45528447787
- ],
- "y": [
- 273270.0597006592,
- -187742.596093895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 502981.5468323673,
- 95617.05222697879
- ],
- "y": [
- -599291.6704083991,
- -185540.26300420432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 502981.5468323673,
- 96115.57754246322
- ],
- "y": [
- -599291.6704083991,
- -185199.27035351453
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95481.26094749449
- ],
- "y": [
- 750002.6005460201,
- -188288.73056814942
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 96350.897783121
- ],
- "y": [
- 750002.6005460201,
- -186980.8144633269
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95443.67008227661
- ],
- "y": [
- 750002.6005460201,
- -188423.99184216498
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95360.36419013362
- ],
- "y": [
- 750002.6005460201,
- -188384.46387554856
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95505.50501741502
- ],
- "y": [
- 750002.6005460201,
- -188099.9720945511
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95828.46924619444
- ],
- "y": [
- 750002.6005460201,
- -187819.29574656484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95163.75908553116
- ],
- "y": [
- 750002.6005460201,
- -188413.92210597807
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95489.22963590887
- ],
- "y": [
- 750002.6005460201,
- -187838.56400906073
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95274.60828290615
- ],
- "y": [
- 750002.6005460201,
- -188187.00891794523
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95527.20667464145
- ],
- "y": [
- 750002.6005460201,
- -188567.58941515462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95397.10356995185
- ],
- "y": [
- 750002.6005460201,
- -187941.9237365848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95228.59152965351
- ],
- "y": [
- 750002.6005460201,
- -188480.6248001793
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95594.04154313843
- ],
- "y": [
- 750002.6005460201,
- -188752.9247450727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95243.05174065192
- ],
- "y": [
- 750002.6005460201,
- -188237.25251034857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95213.77887412795
- ],
- "y": [
- 750002.6005460201,
- -188232.11752967277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95713.33557938566
- ],
- "y": [
- 750002.6005460201,
- -186369.47424236263
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95510.02889292239
- ],
- "y": [
- 750002.6005460201,
- -187463.4585977219
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 96022.18132064518
- ],
- "y": [
- 750002.6005460201,
- -186934.3360415499
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 95306.71022996533
- ],
- "y": [
- 750002.6005460201,
- -188159.4341766519
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 868139.6588996886,
- 96072.651127653
- ],
- "y": [
- 750002.6005460201,
- -188325.90735821644
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -170207.19763056102,
- 95448.68746731608
- ],
- "y": [
- 756890.1641414585,
- -184908.1166309739
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -170207.19763056102,
- 95293.92851935429
- ],
- "y": [
- 756890.1641414585,
- -184198.70078145587
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -443329.20444239624,
- 96424.48707246192
- ],
- "y": [
- 264180.56110761315,
- -186439.9649841702
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -525909.7546974054,
- 96039.53114090665
- ],
- "y": [
- 804859.604823416,
- -187862.98846391006
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -525909.7546974054,
- 96558.40139577903
- ],
- "y": [
- 804859.604823416,
- -187369.8494239768
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 578051.3518156023,
- 96049.17164979059
- ],
- "y": [
- -178356.25676065582,
- -185019.88314560454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 61547.78938514394,
- 97598.41715003968
- ],
- "y": [
- 707865.61845407,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 61547.78938514394,
- 97200.7730276014
- ],
- "y": [
- 707865.61845407,
- -187639.15760068822
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 61547.78938514394,
- 97446.90168966807
- ],
- "y": [
- 707865.61845407,
- -186765.58714734673
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 61547.78938514394,
- 97965.90473223805
- ],
- "y": [
- 707865.61845407,
- -187204.27240844848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 61547.78938514394,
- 97959.05424320973
- ],
- "y": [
- 707865.61845407,
- -186509.34289278075
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 522257.1386652817,
- 96440.9774229316
- ],
- "y": [
- -119638.06642065445,
- -187686.9419411423
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 522257.1386652817,
- 97474.17223906965
- ],
- "y": [
- -119638.06642065445,
- -187048.28032769196
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 522257.1386652817,
- 96627.09595023748
- ],
- "y": [
- -119638.06642065445,
- -186794.89125618731
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 522257.1386652817,
- 96508.0649915055
- ],
- "y": [
- -119638.06642065445,
- -186822.41511138683
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 522257.1386652817,
- 96252.73601927159
- ],
- "y": [
- -119638.06642065445,
- -187563.39014736656
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97191.15673842629
- ],
- "y": [
- 896088.1357434693,
- -186870.85476427
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97598.41715003968
- ],
- "y": [
- 896088.1357434693,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96912.8602518081
- ],
- "y": [
- 896088.1357434693,
- -187385.0923661435
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96640.9561634297
- ],
- "y": [
- 896088.1357434693,
- -186888.21059285887
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96548.78849614567
- ],
- "y": [
- 896088.1357434693,
- -185829.80948671233
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97092.6033555316
- ],
- "y": [
- 896088.1357434693,
- -187041.9723647092
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96137.93531003897
- ],
- "y": [
- 896088.1357434693,
- -185125.23152722794
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97681.82650463261
- ],
- "y": [
- 896088.1357434693,
- -187095.6197581376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96900.36956234596
- ],
- "y": [
- 896088.1357434693,
- -185897.53117830772
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 99054.93251049488
- ],
- "y": [
- 896088.1357434693,
- -185769.0972955552
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97621.5308801509
- ],
- "y": [
- 896088.1357434693,
- -186826.48542049516
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96840.81091989319
- ],
- "y": [
- 896088.1357434693,
- -185756.5836062822
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97398.68149419299
- ],
- "y": [
- 896088.1357434693,
- -186973.73232271746
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96052.90997742687
- ],
- "y": [
- 896088.1357434693,
- -185101.1509899331
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97140.91541633583
- ],
- "y": [
- 896088.1357434693,
- -186015.29034764567
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96883.35271778212
- ],
- "y": [
- 896088.1357434693,
- -186628.54466062496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96961.63219735424
- ],
- "y": [
- 896088.1357434693,
- -185868.99053592625
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96593.15685874
- ],
- "y": [
- 896088.1357434693,
- -185892.3867642372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 96942.49668912489
- ],
- "y": [
- 896088.1357434693,
- -185982.92772953527
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97329.44637332104
- ],
- "y": [
- 896088.1357434693,
- -186563.35158898422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 577392.8090613643,
- 97283.72077280736
- ],
- "y": [
- 896088.1357434693,
- -186333.64344871804
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 665091.1247342328,
- 96411.51796021752
- ],
- "y": [
- 764306.5082644378,
- -188137.57555694113
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 665091.1247342328,
- 96339.24938310328
- ],
- "y": [
- 764306.5082644378,
- -186649.44372244837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 786778.6542879742,
- 97736.94813016456
- ],
- "y": [
- 738347.6293918168,
- -185398.36138060363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 786778.6542879742,
- 97910.96993785165
- ],
- "y": [
- 738347.6293918168,
- -186628.42409363462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 786778.6542879742,
- 96786.0414096176
- ],
- "y": [
- 738347.6293918168,
- -185328.69791728977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 786778.6542879742,
- 99128.8683145138
- ],
- "y": [
- 738347.6293918168,
- -185645.35316113118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 815950.3189379036,
- 97910.96993785165
- ],
- "y": [
- 298009.30941031687,
- -186628.42409363462
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 815950.3189379036,
- 99128.8683145138
- ],
- "y": [
- 298009.30941031687,
- -185645.35316113118
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 815950.3189379036,
- 96786.0414096176
- ],
- "y": [
- 298009.30941031687,
- -185328.69791728977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 38830.39103194141,
- 96211.67174914089
- ],
- "y": [
- 876862.1278722695,
- -185190.4973312962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 38830.39103194141,
- 95720.51419720666
- ],
- "y": [
- 876862.1278722695,
- -184810.0609463012
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 38830.39103194141,
- 96607.09318109117
- ],
- "y": [
- 876862.1278722695,
- -185673.16887228226
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 38830.39103194141,
- 95599.53684369884
- ],
- "y": [
- 876862.1278722695,
- -184555.20493347468
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 97078.78573950223
- ],
- "y": [
- -996033.6480989374,
- -186603.54049738206
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 95886.98258580548
- ],
- "y": [
- -996033.6480989374,
- -185000.47819436324
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 96463.65900406071
- ],
- "y": [
- -996033.6480989374,
- -185769.4575393162
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 96509.39820433313
- ],
- "y": [
- -996033.6480989374,
- -185778.33475206984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 96509.4296845907
- ],
- "y": [
- -996033.6480989374,
- -185864.6939073649
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -635979.9761410847,
- 96099.61138898744
- ],
- "y": [
- -996033.6480989374,
- -185242.38515533158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -651013.7192327545,
- 97122.96681206446
- ],
- "y": [
- 960523.7131412292,
- -185902.13729941534
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -651013.7192327545,
- 95950.47769478709
- ],
- "y": [
- 960523.7131412292,
- -184710.20690531647
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -651013.7192327545,
- 98675.12932763455
- ],
- "y": [
- 960523.7131412292,
- -186336.77161351635
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -651013.7192327545,
- 97289.15046436754
- ],
- "y": [
- 960523.7131412292,
- -186119.94401614703
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97014.53523334138
- ],
- "y": [
- -380830.05584140925,
- -185893.69281000222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97526.53767625983
- ],
- "y": [
- -380830.05584140925,
- -187563.04088038372
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97181.11827309501
- ],
- "y": [
- -380830.05584140925,
- -186983.54442722624
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 98660.63217404629
- ],
- "y": [
- -380830.05584140925,
- -187703.92647279546
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 98412.44821844941
- ],
- "y": [
- -380830.05584140925,
- -185743.6029551579
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97765.48056752425
- ],
- "y": [
- -380830.05584140925,
- -185968.90039689335
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97130.87354039263
- ],
- "y": [
- -380830.05584140925,
- -186108.22088459652
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97611.64317798252
- ],
- "y": [
- -380830.05584140925,
- -186089.89882082163
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 96607.81846515763
- ],
- "y": [
- -380830.05584140925,
- -185308.25354167318
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 811131.8183294842,
- 97565.68134613338
- ],
- "y": [
- -380830.05584140925,
- -186216.4074492947
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 97878.18936700777
- ],
- "y": [
- 166563.21910749128,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 98088.69457083048
- ],
- "y": [
- 166563.21910749128,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 102537.64337792993
- ],
- "y": [
- 166563.21910749128,
- -184684.6304903929
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 97336.72314742803
- ],
- "y": [
- 166563.21910749128,
- -186003.21438929535
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 97384.85502032931
- ],
- "y": [
- 166563.21910749128,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 97739.50461726454
- ],
- "y": [
- 166563.21910749128,
- -186120.97182205616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 97790.18756915494
- ],
- "y": [
- 166563.21910749128,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 190593.36686297934,
- 98423.75905911079
- ],
- "y": [
- 166563.21910749128,
- -186722.7974234636
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588024.254014322,
- 92914.29701391104
- ],
- "y": [
- 534859.9422349943,
- -140718.26168474945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588024.254014322,
- 94521.0965568673
- ],
- "y": [
- 534859.9422349943,
- -162271.2627223581
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 316053.7349427122,
- 96813.45598094136
- ],
- "y": [
- -132114.9342579806,
- -186085.13248614842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 316053.7349427122,
- 96835.92874774396
- ],
- "y": [
- -132114.9342579806,
- -186068.28536481576
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 316053.7349427122,
- 96172.09176973494
- ],
- "y": [
- -132114.9342579806,
- -185427.49168366197
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 587577.2507856083,
- 96100.97014585767
- ],
- "y": [
- 80900.4134705249,
- -184985.73631769797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 587577.2507856083,
- 95705.40993449507
- ],
- "y": [
- 80900.4134705249,
- -184766.12089212818
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 351301.77422378736,
- 96845.07860198681
- ],
- "y": [
- -579394.7183499117,
- -186121.19306263936
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 351301.77422378736,
- 97276.29878619949
- ],
- "y": [
- -579394.7183499117,
- -187012.46365318543
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 351301.77422378736,
- 97481.0467852597
- ],
- "y": [
- -579394.7183499117,
- -186679.30936474973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 848868.644806498,
- 96827.38300101372
- ],
- "y": [
- 819699.6980095763,
- -185693.59243815514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 848868.644806498,
- 96461.24693139427
- ],
- "y": [
- 819699.6980095763,
- -186460.20786475393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 848868.644806498,
- 96535.82894445845
- ],
- "y": [
- 819699.6980095763,
- -186037.59716773787
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -299923.25938496925,
- 96054.16110461712
- ],
- "y": [
- 386546.83880120324,
- -185450.5833065486
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -299923.25938496925,
- 96003.46856538253
- ],
- "y": [
- 386546.83880120324,
- -185396.0966615638
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -299923.25938496925,
- 96117.67522368413
- ],
- "y": [
- 386546.83880120324,
- -185276.4054007422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -360885.8773834229,
- 96380.27321562011
- ],
- "y": [
- 821573.6475867204,
- -184847.09039631113
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -345441.7571526054,
- 96039.52555482746
- ],
- "y": [
- 981695.7421767967,
- -184823.61753243406
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -345441.7571526054,
- 96091.70581400175
- ],
- "y": [
- 981695.7421767967,
- -184778.45025064657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -345441.7571526054,
- 96269.04428473447
- ],
- "y": [
- 981695.7421767967,
- -185109.39166642443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 437694.3292319815,
- 97245.37390852053
- ],
- "y": [
- 614305.8973532458,
- -185556.4843562863
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 96333.93226534751
- ],
- "y": [
- 77534.99257079021,
- -186719.88216859457
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 96524.6669755778
- ],
- "y": [
- 77534.99257079021,
- -186773.59087394056
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 96558.43883318681
- ],
- "y": [
- 77534.99257079021,
- -186505.48261010222
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 97209.46385807885
- ],
- "y": [
- 77534.99257079021,
- -187516.20202739417
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 96281.59320080571
- ],
- "y": [
- 77534.99257079021,
- -188001.86892294977
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 96876.62587606598
- ],
- "y": [
- 77534.99257079021,
- -186342.25549461835
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 947333.3380176532,
- 97681.82650463261
- ],
- "y": [
- 77534.99257079021,
- -187095.6197581376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 916183.0371557598,
- 97191.15673842629
- ],
- "y": [
- 626708.9342158604,
- -186870.85476427
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 916183.0371557598,
- 97598.41715003968
- ],
- "y": [
- 626708.9342158604,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 916183.0371557598,
- 97177.84417040872
- ],
- "y": [
- 626708.9342158604,
- -186442.0690847481
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 916183.0371557598,
- 97329.44637332104
- ],
- "y": [
- 626708.9342158604,
- -186563.35158898422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 388152.5796828631,
- 97334.199382075
- ],
- "y": [
- 952690.7658094943,
- -186684.80121130878
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 388152.5796828631,
- 96164.9303846309
- ],
- "y": [
- 952690.7658094943,
- -184705.8070100957
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -789394.6420817033,
- 95667.80679021226
- ],
- "y": [
- 116504.86283671646,
- -184864.84138353547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -789394.6420817033,
- 95658.32343165908
- ],
- "y": [
- 116504.86283671646,
- -184566.07730183762
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -84551.7835832943,
- 95648.34307354958
- ],
- "y": [
- -420122.1368730317,
- -186337.80196089507
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -84551.7835832943,
- 95901.87035986596
- ],
- "y": [
- -420122.1368730317,
- -185906.65861356055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -84551.7835832943,
- 95796.6220412549
- ],
- "y": [
- -420122.1368730317,
- -186150.906960568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -84551.7835832943,
- 95732.4030502184
- ],
- "y": [
- -420122.1368730317,
- -186089.31929989046
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -84551.7835832943,
- 96335.57621806604
- ],
- "y": [
- -420122.1368730317,
- -186474.6235265719
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 946906.6064106144,
- 95737.0210501743
- ],
- "y": [
- -538892.5293056685,
- -187993.35866484616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 946906.6064106144,
- 96247.5730261708
- ],
- "y": [
- -538892.5293056685,
- -187229.13331112568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 608890.8180953821,
- 96407.22560594323
- ],
- "y": [
- 171879.1916242357,
- -186468.51753357225
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 608890.8180953821,
- 96440.07084499848
- ],
- "y": [
- 171879.1916242357,
- -186122.9165758566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 677591.4524686069,
- 96991.17451689237
- ],
- "y": [
- -584452.5975392128,
- -187164.0688469574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 677591.4524686069,
- 97052.70205106144
- ],
- "y": [
- -584452.5975392128,
- -186825.88912431858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 521072.90601517487,
- 95514.95574487532
- ],
- "y": [
- 573054.9331839461,
- -186174.69969704037
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -178216.50664417076,
- 97878.18936700777
- ],
- "y": [
- 884904.7618596369,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -178216.50664417076,
- 97384.85502032931
- ],
- "y": [
- 884904.7618596369,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -178216.50664417076,
- 98088.69457083048
- ],
- "y": [
- 884904.7618596369,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -178216.50664417076,
- 97790.18756915494
- ],
- "y": [
- 884904.7618596369,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 96947.40675273385
- ],
- "y": [
- 72455.83117650512,
- -188107.46199151454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 96817.66055571858
- ],
- "y": [
- 72455.83117650512,
- -187899.4158525461
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 96400.51278286969
- ],
- "y": [
- 72455.83117650512,
- -187859.86995225446
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 96656.51605951994
- ],
- "y": [
- 72455.83117650512,
- -188126.8200295349
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 97154.72425616732
- ],
- "y": [
- 72455.83117650512,
- -188123.19483452023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -14463.351502338017,
- 97559.12810431966
- ],
- "y": [
- 72455.83117650512,
- -187448.3572804437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 554892.5945752865,
- 97442.1178182285
- ],
- "y": [
- 829740.9884726934,
- -187820.43378501857
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 554892.5945752865,
- 96871.98342831364
- ],
- "y": [
- 829740.9884726934,
- -186775.64544110073
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96189.19527054564
- ],
- "y": [
- -331959.35190203565,
- -185619.5302422243
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 97753.78297929207
- ],
- "y": [
- -331959.35190203565,
- -185704.2175677414
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96341.35508815081
- ],
- "y": [
- -331959.35190203565,
- -185937.20459336432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 95819.77591622746
- ],
- "y": [
- -331959.35190203565,
- -185523.5880471388
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 95836.41008943335
- ],
- "y": [
- -331959.35190203565,
- -185073.60125989263
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96259.9082581497
- ],
- "y": [
- -331959.35190203565,
- -185681.62401491503
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96624.18025269137
- ],
- "y": [
- -331959.35190203565,
- -185755.25804511458
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96869.39684947954
- ],
- "y": [
- -331959.35190203565,
- -187564.53232755137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96595.38846744089
- ],
- "y": [
- -331959.35190203565,
- -185742.32278142963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96273.9014736457
- ],
- "y": [
- -331959.35190203565,
- -185812.36978806616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 97698.15736668535
- ],
- "y": [
- -331959.35190203565,
- -186839.17366214117
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96237.38326345755
- ],
- "y": [
- -331959.35190203565,
- -185460.24572993352
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96272.62459980143
- ],
- "y": [
- -331959.35190203565,
- -185767.89203574616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96297.69636707871
- ],
- "y": [
- -331959.35190203565,
- -185411.53656573629
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 95372.37969661041
- ],
- "y": [
- -331959.35190203565,
- -186079.66390792772
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96464.1710890281
- ],
- "y": [
- -331959.35190203565,
- -185233.48683497915
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96300.0043841075
- ],
- "y": [
- -331959.35190203565,
- -184948.90466462815
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 95976.46298115156
- ],
- "y": [
- -331959.35190203565,
- -185247.7806087925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96423.89730001795
- ],
- "y": [
- -331959.35190203565,
- -186549.85209355422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 95705.40993449507
- ],
- "y": [
- -331959.35190203565,
- -184766.12089212818
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 97225.12273154467
- ],
- "y": [
- -331959.35190203565,
- -186917.39214776302
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -387963.4681192348,
- 96380.40661308727
- ],
- "y": [
- -331959.35190203565,
- -186657.063249416
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 717447.7001192871,
- 96196.257368652
- ],
- "y": [
- -428399.58301674377,
- -186137.98831876533
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97687.97327166176
- ],
- "y": [
- -679954.6677934721,
- -187630.12975349987
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97598.41715003968
- ],
- "y": [
- -679954.6677934721,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97764.93718471118
- ],
- "y": [
- -679954.6677934721,
- -187687.3081902085
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97964.99194759796
- ],
- "y": [
- -679954.6677934721,
- -187525.68775441864
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97077.67459906588
- ],
- "y": [
- -679954.6677934721,
- -187326.55715253745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 96053.464316358
- ],
- "y": [
- -679954.6677934721,
- -189245.3547860996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 180005.58774911758,
- 97681.82650463261
- ],
- "y": [
- -679954.6677934721,
- -187095.6197581376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698099.5531065653,
- 95950.13199504191
- ],
- "y": [
- 84986.55436247282,
- -184795.0131029055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698099.5531065653,
- 95847.60434582221
- ],
- "y": [
- 84986.55436247282,
- -184934.10299478343
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 698099.5531065653,
- 96119.17908740342
- ],
- "y": [
- 84986.55436247282,
- -184595.03593603414
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -656436.9674364273,
- 95905.42580827077
- ],
- "y": [
- -490268.42281844106,
- -185557.18603881687
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -656436.9674364273,
- 95919.99780721203
- ],
- "y": [
- -490268.42281844106,
- -184826.82895671725
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96185.37627813521
- ],
- "y": [
- -223739.6026945686,
- -185703.95718490216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 95946.3884071162
- ],
- "y": [
- -223739.6026945686,
- -185294.42224015918
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96244.27988515895
- ],
- "y": [
- -223739.6026945686,
- -185575.41563245628
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96196.74025182828
- ],
- "y": [
- -223739.6026945686,
- -185794.81985080332
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96174.10171537164
- ],
- "y": [
- -223739.6026945686,
- -186172.60986329245
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96538.8108213843
- ],
- "y": [
- -223739.6026945686,
- -185661.8516968439
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 97589.77077865561
- ],
- "y": [
- -223739.6026945686,
- -185638.24577050543
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96255.53165206172
- ],
- "y": [
- -223739.6026945686,
- -185965.40347835567
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96989.12139942696
- ],
- "y": [
- -223739.6026945686,
- -186004.1374210784
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96386.3485642869
- ],
- "y": [
- -223739.6026945686,
- -185781.3584731582
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96209.17705200447
- ],
- "y": [
- -223739.6026945686,
- -185664.76866772544
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96404.94279951866
- ],
- "y": [
- -223739.6026945686,
- -185815.6127283012
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 95582.13652811556
- ],
- "y": [
- -223739.6026945686,
- -184723.17471127305
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96075.92114230867
- ],
- "y": [
- -223739.6026945686,
- -186009.95200031195
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96933.47649225005
- ],
- "y": [
- -223739.6026945686,
- -186195.38531040744
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96208.32555016727
- ],
- "y": [
- -223739.6026945686,
- -185753.05619845918
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96486.76296481364
- ],
- "y": [
- -223739.6026945686,
- -185703.19314166557
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96310.8706914388
- ],
- "y": [
- -223739.6026945686,
- -186594.9114183287
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96156.77295171334
- ],
- "y": [
- -223739.6026945686,
- -185580.15593113314
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96208.35637264428
- ],
- "y": [
- -223739.6026945686,
- -185541.68129385356
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96987.0677801975
- ],
- "y": [
- -223739.6026945686,
- -186549.16628896404
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -580427.8565184487,
- 96412.81309344785
- ],
- "y": [
- -223739.6026945686,
- -185479.2357860194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95605.5078529397
- ],
- "y": [
- 406002.0457023177,
- -184578.21753488245
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95576.46893477392
- ],
- "y": [
- 406002.0457023177,
- -184618.35740420443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95889.53071914573
- ],
- "y": [
- 406002.0457023177,
- -184441.46870504398
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95560.7221366576
- ],
- "y": [
- 406002.0457023177,
- -184568.61994464282
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95552.49574202929
- ],
- "y": [
- 406002.0457023177,
- -184661.85928366336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 345722.8774127468,
- 95550.8641318485
- ],
- "y": [
- 406002.0457023177,
- -184523.38966404533
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -150377.71014886748,
- 96405.3198620752
- ],
- "y": [
- 665655.8201887235,
- -185717.16624584142
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -150377.71014886748,
- 95915.425645233
- ],
- "y": [
- 665655.8201887235,
- -185483.3295420938
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -150377.71014886748,
- 96264.80700176922
- ],
- "y": [
- 665655.8201887235,
- -186417.94305405728
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155998.46897914205,
- 96174.34018844058
- ],
- "y": [
- -527494.4459784911,
- -186246.51492087843
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155998.46897914205,
- 95670.97648775595
- ],
- "y": [
- -527494.4459784911,
- -184845.9682979859
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 155998.46897914205,
- 95372.88665283406
- ],
- "y": [
- -527494.4459784911,
- -184540.75647463603
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 65171.48029580055,
- 96759.80185472532
- ],
- "y": [
- 982085.9587471285,
- -186901.45563588393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 65171.48029580055,
- 97151.48266936177
- ],
- "y": [
- 982085.9587471285,
- -187807.15683063408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -181637.07161457854,
- 95667.97156819428
- ],
- "y": [
- -488694.0909168389,
- -184666.37763325783
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -181637.07161457854,
- 96281.8187118494
- ],
- "y": [
- -488694.0909168389,
- -185185.18619115572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -181637.07161457854,
- 96786.33551603762
- ],
- "y": [
- -488694.0909168389,
- -186199.38823877013
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 308041.3932794368,
- 95652.45140521994
- ],
- "y": [
- -583140.1465101166,
- -184507.9099237428
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -287412.34625400434,
- 97878.18936700777
- ],
- "y": [
- 354225.66150667076,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -287412.34625400434,
- 97384.85502032931
- ],
- "y": [
- 354225.66150667076,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -287412.34625400434,
- 98088.69457083048
- ],
- "y": [
- 354225.66150667076,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -287412.34625400434,
- 97790.18756915494
- ],
- "y": [
- 354225.66150667076,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -656253.5214717102,
- 96204.29166956923
- ],
- "y": [
- 216506.6744153916,
- -187003.43820973596
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -656253.5214717102,
- 96273.36385473177
- ],
- "y": [
- 216506.6744153916,
- -186545.16136884323
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -656253.5214717102,
- 96163.50814490586
- ],
- "y": [
- 216506.6744153916,
- -186951.0722009215
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 96142.15372609507
- ],
- "y": [
- 154619.27963724674,
- -186588.34259437467
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 96246.21706337249
- ],
- "y": [
- 154619.27963724674,
- -185936.8747686248
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 95604.22358935632
- ],
- "y": [
- 154619.27963724674,
- -186443.85498753583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 96630.39978608028
- ],
- "y": [
- 154619.27963724674,
- -186141.55895141896
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 95933.78130606312
- ],
- "y": [
- 154619.27963724674,
- -187405.71770728158
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -648310.0496600611,
- 95969.93628717288
- ],
- "y": [
- 154619.27963724674,
- -187389.66797592156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -746381.2366853913,
- 96866.28592075064
- ],
- "y": [
- 25136.598539379218,
- -186647.18276851127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -746381.2366853913,
- 96564.72992711587
- ],
- "y": [
- 25136.598539379218,
- -185889.87833542484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -19364.354844584097,
- 95596.36627113551
- ],
- "y": [
- -433884.56447279954,
- -184523.06400318502
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -19364.354844584097,
- 96182.32358713142
- ],
- "y": [
- -433884.56447279954,
- -185073.57268297486
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -19364.354844584097,
- 96286.66809125463
- ],
- "y": [
- -433884.56447279954,
- -185077.8905521608
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -19364.354844584097,
- 95814.45750461605
- ],
- "y": [
- -433884.56447279954,
- -184685.0000328583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97301.69481913165
- ],
- "y": [
- 234279.8583667003,
- -187192.2975120381
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 96886.2262880243
- ],
- "y": [
- 234279.8583667003,
- -187002.80523749278
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 96912.85156473947
- ],
- "y": [
- 234279.8583667003,
- -187003.69318072736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97085.38663455553
- ],
- "y": [
- 234279.8583667003,
- -186907.3329708996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97355.69179208958
- ],
- "y": [
- 234279.8583667003,
- -187388.2617066739
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97043.19055357405
- ],
- "y": [
- 234279.8583667003,
- -186950.9060841143
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97406.83103336953
- ],
- "y": [
- 234279.8583667003,
- -187426.40772893745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97508.64091238416
- ],
- "y": [
- 234279.8583667003,
- -188015.87833895627
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97596.85822151981
- ],
- "y": [
- 234279.8583667003,
- -187456.03533027926
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97281.93703232154
- ],
- "y": [
- 234279.8583667003,
- -186718.14847004472
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97339.53315472855
- ],
- "y": [
- 234279.8583667003,
- -187192.52823779927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97182.15385952276
- ],
- "y": [
- 234279.8583667003,
- -187430.84477593255
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98255.45010528169
- ],
- "y": [
- 234279.8583667003,
- -188090.9736323963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 96708.5597033612
- ],
- "y": [
- 234279.8583667003,
- -187057.4226896695
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97342.9103563253
- ],
- "y": [
- 234279.8583667003,
- -187299.00679136443
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97298.42341187966
- ],
- "y": [
- 234279.8583667003,
- -187898.09108993356
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98020.16838808233
- ],
- "y": [
- 234279.8583667003,
- -187800.71024494842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97476.84212265511
- ],
- "y": [
- 234279.8583667003,
- -187578.7945424208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97585.2552421273
- ],
- "y": [
- 234279.8583667003,
- -187852.2157456399
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97850.09960847285
- ],
- "y": [
- 234279.8583667003,
- -188445.4527261622
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97800.77052809988
- ],
- "y": [
- 234279.8583667003,
- -187821.0464781729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97497.40137546581
- ],
- "y": [
- 234279.8583667003,
- -187538.8698057885
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97172.85679925286
- ],
- "y": [
- 234279.8583667003,
- -187904.2446480533
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97230.27471512488
- ],
- "y": [
- 234279.8583667003,
- -187707.84632557898
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97465.08902518246
- ],
- "y": [
- 234279.8583667003,
- -187515.5351218408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97572.7293771363
- ],
- "y": [
- 234279.8583667003,
- -187294.31909113945
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97060.83487204376
- ],
- "y": [
- 234279.8583667003,
- -188304.55925484645
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97373.64682205649
- ],
- "y": [
- 234279.8583667003,
- -186927.86579355603
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97530.9950602946
- ],
- "y": [
- 234279.8583667003,
- -187675.71540639747
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97230.78206970361
- ],
- "y": [
- 234279.8583667003,
- -187132.18270199542
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97683.2450611929
- ],
- "y": [
- 234279.8583667003,
- -186661.11383538053
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97367.93418176113
- ],
- "y": [
- 234279.8583667003,
- -187238.4395913106
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97194.9145170215
- ],
- "y": [
- 234279.8583667003,
- -186711.99171266862
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98030.3922687115
- ],
- "y": [
- 234279.8583667003,
- -187274.8884360902
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98164.50513674611
- ],
- "y": [
- 234279.8583667003,
- -187605.70324073057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97211.33338583425
- ],
- "y": [
- 234279.8583667003,
- -187459.62733920277
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97167.07602680264
- ],
- "y": [
- 234279.8583667003,
- -187350.64454981094
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98102.01760177093
- ],
- "y": [
- 234279.8583667003,
- -187987.25877007708
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97473.4025173577
- ],
- "y": [
- 234279.8583667003,
- -187340.14536462337
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 96869.55087283194
- ],
- "y": [
- 234279.8583667003,
- -188133.99953381368
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98618.6314379455
- ],
- "y": [
- 234279.8583667003,
- -187908.8502698971
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97980.37305163042
- ],
- "y": [
- 234279.8583667003,
- -187974.06713440962
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98040.98610521741
- ],
- "y": [
- 234279.8583667003,
- -188174.96094340537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97099.06003533595
- ],
- "y": [
- 234279.8583667003,
- -187654.68501915902
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 98609.76983635421
- ],
- "y": [
- 234279.8583667003,
- -187919.67545603745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97732.09002327014
- ],
- "y": [
- 234279.8583667003,
- -188033.5893052449
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97154.99065747266
- ],
- "y": [
- 234279.8583667003,
- -187179.74870279036
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97218.35146138504
- ],
- "y": [
- 234279.8583667003,
- -187958.6837154068
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97299.95816584109
- ],
- "y": [
- 234279.8583667003,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97300.96068285858
- ],
- "y": [
- 234279.8583667003,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97626.13132471772
- ],
- "y": [
- 234279.8583667003,
- -187817.05963383534
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97112.35613433391
- ],
- "y": [
- 234279.8583667003,
- -187227.08326375764
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97560.98718189307
- ],
- "y": [
- 234279.8583667003,
- -187840.08914857774
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97185.7097878747
- ],
- "y": [
- 234279.8583667003,
- -187243.47707715337
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97559.13458489727
- ],
- "y": [
- 234279.8583667003,
- -187358.05164964797
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97201.16002150408
- ],
- "y": [
- 234279.8583667003,
- -187870.53601201336
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97516.02947908005
- ],
- "y": [
- 234279.8583667003,
- -187247.9917175175
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97270.02110151788
- ],
- "y": [
- 234279.8583667003,
- -187825.62181611278
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97433.41068898393
- ],
- "y": [
- 234279.8583667003,
- -187383.08957187168
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97833.68675936971
- ],
- "y": [
- 234279.8583667003,
- -186137.40837100832
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97325.64609840355
- ],
- "y": [
- 234279.8583667003,
- -187368.8604475479
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97103.12815964877
- ],
- "y": [
- 234279.8583667003,
- -186975.18042715648
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 97473.72704771126
- ],
- "y": [
- 234279.8583667003,
- -187218.33649070092
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -625569.4912948359,
- 96893.86441244776
- ],
- "y": [
- 234279.8583667003,
- -187115.92005878876
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 185128.5230804234,
- 95331.67170746473
- ],
- "y": [
- -703929.9198451278,
- -188577.08388106618
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 733527.2827753351,
- 96586.20076828018
- ],
- "y": [
- -763867.361534357,
- -185632.1535476023
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 733527.2827753351,
- 96137.68930318531
- ],
- "y": [
- -763867.361534357,
- -185003.46048722725
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -502221.2423468795,
- 97194.9145170215
- ],
- "y": [
- 943963.3176441911,
- -186711.99171266862
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -502221.2423468795,
- 97299.95816584109
- ],
- "y": [
- 943963.3176441911,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -502221.2423468795,
- 97300.96068285858
- ],
- "y": [
- 943963.3176441911,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -233364.95639678233,
- 96950.1808551135
- ],
- "y": [
- -325456.00848321256,
- -186782.64173592345
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -233364.95639678233,
- 97299.95816584109
- ],
- "y": [
- -325456.00848321256,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -233364.95639678233,
- 97300.96068285858
- ],
- "y": [
- -325456.00848321256,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -941688.012740526,
- 96390.43113801478
- ],
- "y": [
- 172395.02771845582,
- -187389.2021586
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 96858.54175843939
- ],
- "y": [
- 749192.7196467996,
- -188364.15112362726
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 97167.39841072715
- ],
- "y": [
- 749192.7196467996,
- -188088.5917691664
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 97743.58448295263
- ],
- "y": [
- 749192.7196467996,
- -187984.06459012086
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 97449.0985514171
- ],
- "y": [
- 749192.7196467996,
- -188713.3588507996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 97642.36452938811
- ],
- "y": [
- 749192.7196467996,
- -188624.00866552212
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 561686.4496072094,
- 97990.33956338989
- ],
- "y": [
- 749192.7196467996,
- -188363.5387691212
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 98636.37989407925
- ],
- "y": [
- 624359.6727765179,
- -187634.18143546607
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 97499.45757321935
- ],
- "y": [
- 624359.6727765179,
- -186777.46669602653
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 97494.95806383107
- ],
- "y": [
- 624359.6727765179,
- -186820.56521939114
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 96707.92401672102
- ],
- "y": [
- 624359.6727765179,
- -186867.77653250156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 97387.15964980441
- ],
- "y": [
- 624359.6727765179,
- -186618.4433734245
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 961212.1187088809,
- 96595.88973241366
- ],
- "y": [
- 624359.6727765179,
- -187699.43272561228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 755173.4644584443,
- 96547.16032979287
- ],
- "y": [
- 480229.27434392227,
- -185956.04238149663
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 755173.4644584443,
- 96300.87116130441
- ],
- "y": [
- 480229.27434392227,
- -185637.3755433982
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -476509.16832876677,
- 97788.7651245566
- ],
- "y": [
- -696677.5803865421,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -476509.16832876677,
- 97368.18786729996
- ],
- "y": [
- -696677.5803865421,
- -187761.64483234545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -476509.16832876677,
- 97615.97056569872
- ],
- "y": [
- -696677.5803865421,
- -187366.18291352072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -476509.16832876677,
- 97749.77214743374
- ],
- "y": [
- -696677.5803865421,
- -187529.40680193529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -476509.16832876677,
- 97737.47168433828
- ],
- "y": [
- -696677.5803865421,
- -187454.64105987392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 287186.1271102667,
- 95667.97156819428
- ],
- "y": [
- 293712.9911647245,
- -184666.37763325783
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 287186.1271102667,
- 96281.8187118494
- ],
- "y": [
- 293712.9911647245,
- -185185.18619115572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 287186.1271102667,
- 96004.06807647034
- ],
- "y": [
- 293712.9911647245,
- -185160.1993215984
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 287186.1271102667,
- 96786.33551603762
- ],
- "y": [
- 293712.9911647245,
- -186199.38823877013
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -561334.5561021474,
- 97878.18936700777
- ],
- "y": [
- 387741.5291431936,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -561334.5561021474,
- 97384.85502032931
- ],
- "y": [
- 387741.5291431936,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -561334.5561021474,
- 98088.69457083048
- ],
- "y": [
- 387741.5291431936,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -561334.5561021474,
- 97790.18756915494
- ],
- "y": [
- 387741.5291431936,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97334.69528656456
- ],
- "y": [
- -232458.25080596138,
- -187248.01430917686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97343.70893048414
- ],
- "y": [
- -232458.25080596138,
- -187466.71062113094
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 98022.64385800273
- ],
- "y": [
- -232458.25080596138,
- -188115.28176793884
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97909.08890877801
- ],
- "y": [
- -232458.25080596138,
- -187716.48506167036
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 96735.91203018947
- ],
- "y": [
- -232458.25080596138,
- -186790.41009242184
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97379.30529940335
- ],
- "y": [
- -232458.25080596138,
- -188144.50874112692
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97912.68866754905
- ],
- "y": [
- -232458.25080596138,
- -187644.81497540837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97483.5508578201
- ],
- "y": [
- -232458.25080596138,
- -187452.13970792587
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97453.80616460227
- ],
- "y": [
- -232458.25080596138,
- -187779.38447152777
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97390.56459064402
- ],
- "y": [
- -232458.25080596138,
- -187503.58157137837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97854.95892464767
- ],
- "y": [
- -232458.25080596138,
- -187819.7552003765
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 98229.18483310309
- ],
- "y": [
- -232458.25080596138,
- -187646.46474410285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 97689.45585714692
- ],
- "y": [
- -232458.25080596138,
- -187727.83570354496
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 485523.02644619404,
- 96459.9064706218
- ],
- "y": [
- -232458.25080596138,
- -187950.17000928946
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97368.18786729996
- ],
- "y": [
- -387304.96830664296,
- -187761.64483234545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98220.8617121839
- ],
- "y": [
- -387304.96830664296,
- -187918.25825739285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97743.37633435942
- ],
- "y": [
- -387304.96830664296,
- -187673.30496193952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97896.16988465277
- ],
- "y": [
- -387304.96830664296,
- -188059.71110303834
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97276.66123026267
- ],
- "y": [
- -387304.96830664296,
- -188071.01532488095
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97720.29522867472
- ],
- "y": [
- -387304.96830664296,
- -188007.70634351147
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97788.7651245566
- ],
- "y": [
- -387304.96830664296,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97988.47049740942
- ],
- "y": [
- -387304.96830664296,
- -188127.41684105122
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 96786.33551603762
- ],
- "y": [
- -387304.96830664296,
- -186199.38823877013
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97334.69528656456
- ],
- "y": [
- -387304.96830664296,
- -187248.01430917686
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98169.99665670788
- ],
- "y": [
- -387304.96830664296,
- -188138.2687240919
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97706.1575554865
- ],
- "y": [
- -387304.96830664296,
- -187963.5766486151
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97314.87265253808
- ],
- "y": [
- -387304.96830664296,
- -188544.97753253547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97929.82001151697
- ],
- "y": [
- -387304.96830664296,
- -187850.79133717477
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97400.16397729573
- ],
- "y": [
- -387304.96830664296,
- -187256.5867709403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97928.27341274354
- ],
- "y": [
- -387304.96830664296,
- -188029.4838038799
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97615.97056569872
- ],
- "y": [
- -387304.96830664296,
- -187366.18291352072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97923.16505107327
- ],
- "y": [
- -387304.96830664296,
- -187510.56934074408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97607.80752654132
- ],
- "y": [
- -387304.96830664296,
- -187927.5772533455
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97786.29869250092
- ],
- "y": [
- -387304.96830664296,
- -188053.78221453892
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97805.14139405916
- ],
- "y": [
- -387304.96830664296,
- -187985.91644521983
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98093.39526957169
- ],
- "y": [
- -387304.96830664296,
- -188319.77932730978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97448.93124443709
- ],
- "y": [
- -387304.96830664296,
- -188058.86903379706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97659.20648661858
- ],
- "y": [
- -387304.96830664296,
- -187950.90711760413
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97773.13707838414
- ],
- "y": [
- -387304.96830664296,
- -188156.86956179672
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97290.81332207196
- ],
- "y": [
- -387304.96830664296,
- -188229.6880717756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97691.44923546405
- ],
- "y": [
- -387304.96830664296,
- -187953.60593885268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97536.70985088356
- ],
- "y": [
- -387304.96830664296,
- -187135.60577403157
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98040.70809859729
- ],
- "y": [
- -387304.96830664296,
- -188484.82353855815
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97682.17810885303
- ],
- "y": [
- -387304.96830664296,
- -188095.58751833517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97902.9875639131
- ],
- "y": [
- -387304.96830664296,
- -187872.1074932044
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98103.51583993803
- ],
- "y": [
- -387304.96830664296,
- -187955.31108521658
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97737.47168433828
- ],
- "y": [
- -387304.96830664296,
- -187454.64105987392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97433.16878255778
- ],
- "y": [
- -387304.96830664296,
- -188110.34340208996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 98011.69742537098
- ],
- "y": [
- -387304.96830664296,
- -188020.26106810436
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97956.78235187841
- ],
- "y": [
- -387304.96830664296,
- -188084.40086565504
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97712.75424892707
- ],
- "y": [
- -387304.96830664296,
- -188071.6303022562
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -374210.50593961857,
- 97337.3673240496
- ],
- "y": [
- -387304.96830664296,
- -188480.56911294378
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712593.3587444853,
- 96357.32745947987
- ],
- "y": [
- 2464.0321624218586,
- -189671.69440695026
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712593.3587444853,
- 96262.42166171632
- ],
- "y": [
- 2464.0321624218586,
- -189769.90898797516
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712593.3587444853,
- 95826.03997621946
- ],
- "y": [
- 2464.0321624218586,
- -190284.9707253069
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -482613.4945723788,
- 98066.1726574899
- ],
- "y": [
- -546694.4807160796,
- -188031.62889293503
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -482613.4945723788,
- 97701.3804478227
- ],
- "y": [
- -546694.4807160796,
- -186743.00019037828
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -482613.4945723788,
- 98084.85055027793
- ],
- "y": [
- -546694.4807160796,
- -188003.55552109788
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -482613.4945723788,
- 97165.59160948182
- ],
- "y": [
- -546694.4807160796,
- -188363.56661918454
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97497.40137546581
- ],
- "y": [
- -18247.514801625897,
- -187538.8698057885
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97476.84212265511
- ],
- "y": [
- -18247.514801625897,
- -187578.7945424208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97172.85679925286
- ],
- "y": [
- -18247.514801625897,
- -187904.2446480533
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97585.2552421273
- ],
- "y": [
- -18247.514801625897,
- -187852.2157456399
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 98255.45010528169
- ],
- "y": [
- -18247.514801625897,
- -188090.9736323963
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97482.29772041427
- ],
- "y": [
- -18247.514801625897,
- -187746.85639765018
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97230.27471512488
- ],
- "y": [
- -18247.514801625897,
- -187707.84632557898
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97465.08902518246
- ],
- "y": [
- -18247.514801625897,
- -187515.5351218408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 98030.3922687115
- ],
- "y": [
- -18247.514801625897,
- -187274.8884360902
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 98164.50513674611
- ],
- "y": [
- -18247.514801625897,
- -187605.70324073057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 98102.01760177093
- ],
- "y": [
- -18247.514801625897,
- -187987.25877007708
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 98040.98610521741
- ],
- "y": [
- -18247.514801625897,
- -188174.96094340537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97300.96068285858
- ],
- "y": [
- -18247.514801625897,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 97299.95816584109
- ],
- "y": [
- -18247.514801625897,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -452038.74419801694,
- 96893.86441244776
- ],
- "y": [
- -18247.514801625897,
- -187115.92005878876
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -535310.6977113642,
- 98201.32974009505
- ],
- "y": [
- 194804.46059409328,
- -188346.87533387216
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381373.32463077886,
- 98883.68742329624
- ],
- "y": [
- 772791.1447093579,
- -187903.51839239706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381373.32463077886,
- 98667.49767503393
- ],
- "y": [
- 772791.1447093579,
- -188043.9321563204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 381373.32463077886,
- 97488.73626458432
- ],
- "y": [
- 772791.1447093579,
- -188112.71027176845
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -974324.3390105796,
- 97162.69508453069
- ],
- "y": [
- 235715.32964076058,
- -188349.65680053786
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 806644.7911977044,
- 96010.7115980084
- ],
- "y": [
- -491094.78861466685,
- -188550.03414205718
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 127035.20726680085,
- 95771.1095203462
- ],
- "y": [
- 4389.73784561969,
- -188189.81482384
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 127035.20726680085,
- 95763.40443589797
- ],
- "y": [
- 4389.73784561969,
- -188215.09477527425
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 127035.20726680085,
- 95244.0575474311
- ],
- "y": [
- 4389.73784561969,
- -188800.80256482895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 96872.15210964113
- ],
- "y": [
- 833497.7104795736,
- -189449.1232264199
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 96379.22200820879
- ],
- "y": [
- 833497.7104795736,
- -189768.43355961813
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 96906.24888628504
- ],
- "y": [
- 833497.7104795736,
- -188740.94405652286
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 96854.63537850163
- ],
- "y": [
- 833497.7104795736,
- -189567.65591494428
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 97264.45498533218
- ],
- "y": [
- 833497.7104795736,
- -188309.81027713025
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 98010.49563338193
- ],
- "y": [
- 833497.7104795736,
- -188392.79233416848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -613747.5981969669,
- 97612.43902974202
- ],
- "y": [
- 833497.7104795736,
- -189319.79863515618
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 97623.61756268641
- ],
- "y": [
- 408212.97885851806,
- -189378.6089809849
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 97499.04801278567
- ],
- "y": [
- 408212.97885851806,
- -189178.14899455837
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 97608.46277176453
- ],
- "y": [
- 408212.97885851806,
- -188386.42729721224
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 97167.39841072715
- ],
- "y": [
- 408212.97885851806,
- -188088.5917691664
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 95934.14872105536
- ],
- "y": [
- 408212.97885851806,
- -189445.19176040665
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -825092.242771966,
- 97455.35219073194
- ],
- "y": [
- 408212.97885851806,
- -187087.48998708234
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 820212.0126397252,
- 97335.19348886795
- ],
- "y": [
- 49207.25516157076,
- -188826.42779028194
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -911815.111465116,
- 98225.34302642361
- ],
- "y": [
- -33771.355710310316,
- -188553.87487120138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -911815.111465116,
- 98229.77888928792
- ],
- "y": [
- -33771.355710310316,
- -187941.06540326262
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -911815.111465116,
- 98675.12932763455
- ],
- "y": [
- -33771.355710310316,
- -186336.77161351635
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 489670.6800430286,
- 97482.53862767345
- ],
- "y": [
- 496911.4186762655,
- -189771.93099297164
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 489670.6800430286,
- 97276.46828922024
- ],
- "y": [
- 496911.4186762655,
- -188529.93400312582
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 489670.6800430286,
- 97499.88151314572
- ],
- "y": [
- 496911.4186762655,
- -189358.06753687156
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 959231.5187373273,
- 95737.0210501743
- ],
- "y": [
- 154504.9866469945,
- -187993.35866484616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 959231.5187373273,
- 96247.5730261708
- ],
- "y": [
- 154504.9866469945,
- -187229.13331112568
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -927929.0330374057,
- 96991.17451689237
- ],
- "y": [
- -912578.2146259764,
- -187164.0688469574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -927929.0330374057,
- 97052.70205106144
- ],
- "y": [
- -912578.2146259764,
- -186825.88912431858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588029.7165107527,
- 96299.26984037684
- ],
- "y": [
- -452817.84163980297,
- -188609.42242236514
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588029.7165107527,
- 96500.32458861038
- ],
- "y": [
- -452817.84163980297,
- -188787.1864357604
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588029.7165107527,
- 96778.83528846483
- ],
- "y": [
- -452817.84163980297,
- -188843.1765843312
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 588029.7165107527,
- 96483.80491367223
- ],
- "y": [
- -452817.84163980297,
- -188754.528514879
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 97878.18936700777
- ],
- "y": [
- 887978.6196577046,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 98088.69457083048
- ],
- "y": [
- 887978.6196577046,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 102537.64337792993
- ],
- "y": [
- 887978.6196577046,
- -184684.6304903929
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 97336.72314742803
- ],
- "y": [
- 887978.6196577046,
- -186003.21438929535
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 97384.85502032931
- ],
- "y": [
- 887978.6196577046,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 97739.50461726454
- ],
- "y": [
- 887978.6196577046,
- -186120.97182205616
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 97790.18756915494
- ],
- "y": [
- 887978.6196577046,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -426997.16687418986,
- 98423.75905911079
- ],
- "y": [
- 887978.6196577046,
- -186722.7974234636
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712085.8290284196,
- 100136.85344995526
- ],
- "y": [
- -661416.3336804246,
- -188094.74107414478
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712085.8290284196,
- 99551.68465587133
- ],
- "y": [
- -661416.3336804246,
- -188088.6155039975
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712085.8290284196,
- 100437.39062185503
- ],
- "y": [
- -661416.3336804246,
- -188060.38234672905
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712085.8290284196,
- 99551.98543303015
- ],
- "y": [
- -661416.3336804246,
- -188067.26794690712
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 712085.8290284196,
- 99562.25712118535
- ],
- "y": [
- -661416.3336804246,
- -187621.21847052537
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 435772.6139411109,
- 99359.06703624275
- ],
- "y": [
- -428227.62305677007,
- -188157.58246492682
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -440084.7440775184,
- 98574.50972172228
- ],
- "y": [
- -98018.59328603357,
- -188516.84498886167
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -440084.7440775184,
- 98667.49767503393
- ],
- "y": [
- -98018.59328603357,
- -188043.9321563204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -440084.7440775184,
- 98883.68742329624
- ],
- "y": [
- -98018.59328603357,
- -187903.51839239706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -440084.7440775184,
- 98538.96596090084
- ],
- "y": [
- -98018.59328603357,
- -187915.12744256484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -440084.7440775184,
- 99762.90131115422
- ],
- "y": [
- -98018.59328603357,
- -188443.7578148925
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 710759.9155269597,
- 98977.8256826855
- ],
- "y": [
- 661880.6475154626,
- -188116.10771085072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 710759.9155269597,
- 97325.59157415244
- ],
- "y": [
- 661880.6475154626,
- -187264.47609357847
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215550.8344180117,
- 100141.87894949828
- ],
- "y": [
- -117998.84324321552,
- -188176.21031836848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -215550.8344180117,
- 99845.35414701192
- ],
- "y": [
- -117998.84324321552,
- -188170.57903762278
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 891032.4039561477,
- 98971.68304848456
- ],
- "y": [
- -483940.39773233776,
- -188294.6644996429
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 790332.191399174,
- 99673.93123472382
- ],
- "y": [
- 945279.7207307717,
- -188036.63953174325
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 790332.191399174,
- 99291.99320881635
- ],
- "y": [
- 945279.7207307717,
- -188101.5543653428
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 963066.2603491714,
- 99276.35931151945
- ],
- "y": [
- 493187.76874040184,
- -188248.6764013949
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -685442.0011943391,
- 99120.91791864607
- ],
- "y": [
- -998343.7313215322,
- -188319.83415129757
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 57957.366801817625,
- 98129.8335044742
- ],
- "y": [
- 213652.26322442287,
- -187308.64998441696
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 57957.366801817625,
- 99397.55134035554
- ],
- "y": [
- 213652.26322442287,
- -188097.50692052435
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -730374.7417052435,
- 97698.15736668535
- ],
- "y": [
- 392420.49640112574,
- -186839.17366214117
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -47892.04997571828,
- 97598.41715003968
- ],
- "y": [
- -399813.58192147256,
- -187109.55145493208
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -47892.04997571828,
- 97965.90473223805
- ],
- "y": [
- -399813.58192147256,
- -187204.27240844848
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -47892.04997571828,
- 98426.11814680099
- ],
- "y": [
- -399813.58192147256,
- -187291.09671769937
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 610875.7945680574,
- 97740.36484145897
- ],
- "y": [
- 847862.16445857,
- -187808.73897039745
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 632616.1117033211,
- 99184.60882109228
- ],
- "y": [
- 252398.00249854306,
- -188134.4762723594
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 632616.1117033211,
- 99142.08519452307
- ],
- "y": [
- 252398.00249854306,
- -188272.49029985358
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 632616.1117033211,
- 99316.2243501031
- ],
- "y": [
- 252398.00249854306,
- -188206.77019901376
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -105937.42716478017,
- 98622.91972235353
- ],
- "y": [
- -122681.34997729407,
- -188508.96860365788
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -105937.42716478017,
- 98628.35943001318
- ],
- "y": [
- -122681.34997729407,
- -188262.8988252888
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 993726.2469277983,
- 97052.70205106144
- ],
- "y": [
- -220228.04861147137,
- -186825.88912431858
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 993726.2469277983,
- 96991.17451689237
- ],
- "y": [
- -220228.04861147137,
- -187164.0688469574
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 669797.903895613,
- 96995.58808119217
- ],
- "y": [
- 366595.0386351318,
- -187569.11179548127
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 669797.903895613,
- 96874.32517213062
- ],
- "y": [
- 366595.0386351318,
- -186292.02017205243
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 669797.903895613,
- 96984.11595684849
- ],
- "y": [
- 366595.0386351318,
- -187472.02889830602
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 669797.903895613,
- 97109.16179890749
- ],
- "y": [
- 366595.0386351318,
- -187099.9147383517
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 669797.903895613,
- 97136.19437689305
- ],
- "y": [
- 366595.0386351318,
- -186900.76235636437
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -610474.3031996711,
- 97491.9260662067
- ],
- "y": [
- 478391.1169981494,
- -188027.44881588852
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -359953.17372292135,
- 96341.35508815081
- ],
- "y": [
- -477039.16144049476,
- -185937.20459336432
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 800919.0893525608,
- 95591.49480913648
- ],
- "y": [
- -66359.28264260315,
- -188680.97177115767
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 800919.0893525608,
- 96362.21507081333
- ],
- "y": [
- -66359.28264260315,
- -188432.67762655424
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 800919.0893525608,
- 96805.5627237504
- ],
- "y": [
- -66359.28264260315,
- -188121.5471579039
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 800919.0893525608,
- 96743.02101349403
- ],
- "y": [
- -66359.28264260315,
- -187854.13914095613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288707.8838759225,
- 98077.79681744472
- ],
- "y": [
- -666477.8792067101,
- -187785.39966082262
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288707.8838759225,
- 98078.46725482005
- ],
- "y": [
- -666477.8792067101,
- -188432.80628645205
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288707.8838759225,
- 97340.80449807804
- ],
- "y": [
- -666477.8792067101,
- -187926.7782463939
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288707.8838759225,
- 98528.28228471124
- ],
- "y": [
- -666477.8792067101,
- -188158.79572465117
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 288707.8838759225,
- 97488.0322813689
- ],
- "y": [
- -666477.8792067101,
- -189762.7876085155
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -788593.7694426945,
- 96435.9592073502
- ],
- "y": [
- 927578.3245770739,
- -189266.35842376057
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -699791.7379094269,
- 97411.333447029
- ],
- "y": [
- 223346.97203642075,
- -186732.12278519588
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97430.46651931974
- ],
- "y": [
- 417199.34494340996,
- -188614.55061231283
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97362.69630546733
- ],
- "y": [
- 417199.34494340996,
- -188647.95316923055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97147.4098591697
- ],
- "y": [
- 417199.34494340996,
- -187592.5524397363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 96935.63520473371
- ],
- "y": [
- 417199.34494340996,
- -188932.9501046265
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97289.22073553668
- ],
- "y": [
- 417199.34494340996,
- -188606.43169921683
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97850.12598200802
- ],
- "y": [
- 417199.34494340996,
- -188170.21924476055
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -576254.7272775868,
- 97597.36616865019
- ],
- "y": [
- 417199.34494340996,
- -188549.55255864532
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 962442.7194031442,
- 96412.37649005053
- ],
- "y": [
- -588673.8683068216,
- -187962.6323277363
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 962442.7194031442,
- 97375.63672739729
- ],
- "y": [
- -588673.8683068216,
- -187191.96052360526
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 193663.74090908578,
- 96830.34367432375
- ],
- "y": [
- -579415.6741968989,
- -186920.5220397891
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 193663.74090908578,
- 96727.0857416317
- ],
- "y": [
- -579415.6741968989,
- -186786.62616005604
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 193663.74090908578,
- 96968.7576874346
- ],
- "y": [
- -579415.6741968989,
- -186385.05781979268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97743.37633435942
- ],
- "y": [
- -326642.1044466499,
- -187673.30496193952
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97788.7651245566
- ],
- "y": [
- -326642.1044466499,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97706.1575554865
- ],
- "y": [
- -326642.1044466499,
- -187963.5766486151
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97773.13707838414
- ],
- "y": [
- -326642.1044466499,
- -188156.86956179672
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98028.98765417963
- ],
- "y": [
- -326642.1044466499,
- -188061.28832562154
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97254.19037202669
- ],
- "y": [
- -326642.1044466499,
- -187390.1456922822
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98343.20918176853
- ],
- "y": [
- -326642.1044466499,
- -188062.07603085358
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97314.87265253808
- ],
- "y": [
- -326642.1044466499,
- -188544.97753253547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97448.93124443709
- ],
- "y": [
- -326642.1044466499,
- -188058.86903379706
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97720.29522867472
- ],
- "y": [
- -326642.1044466499,
- -188007.70634351147
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98178.54170307206
- ],
- "y": [
- -326642.1044466499,
- -188037.6869183598
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98199.86102071151
- ],
- "y": [
- -326642.1044466499,
- -188212.0229575658
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97368.18786729996
- ],
- "y": [
- -326642.1044466499,
- -187761.64483234545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97400.16397729573
- ],
- "y": [
- -326642.1044466499,
- -187256.5867709403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97928.27341274354
- ],
- "y": [
- -326642.1044466499,
- -188029.4838038799
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98220.8617121839
- ],
- "y": [
- -326642.1044466499,
- -187918.25825739285
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97691.44923546405
- ],
- "y": [
- -326642.1044466499,
- -187953.60593885268
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97744.85805549823
- ],
- "y": [
- -326642.1044466499,
- -187930.06229443732
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98056.94048479544
- ],
- "y": [
- -326642.1044466499,
- -188090.36866231312
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97615.97056569872
- ],
- "y": [
- -326642.1044466499,
- -187366.18291352072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97951.56325025932
- ],
- "y": [
- -326642.1044466499,
- -188036.00538210757
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98093.39526957169
- ],
- "y": [
- -326642.1044466499,
- -188319.77932730978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97888.06964139262
- ],
- "y": [
- -326642.1044466499,
- -188133.31477841723
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97749.77214743374
- ],
- "y": [
- -326642.1044466499,
- -187529.40680193529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97737.47168433828
- ],
- "y": [
- -326642.1044466499,
- -187454.64105987392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 98115.52004533702
- ],
- "y": [
- -326642.1044466499,
- -188173.70843883988
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 192898.7761189127,
- 97337.3673240496
- ],
- "y": [
- -326642.1044466499,
- -188480.56911294378
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -636627.180160112,
- 99023.4635169911
- ],
- "y": [
- -650987.8956618933,
- -187844.47640926004
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -636627.180160112,
- 97788.7651245566
- ],
- "y": [
- -650987.8956618933,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -636627.180160112,
- 99401.61250638886
- ],
- "y": [
- -650987.8956618933,
- -187872.30401330232
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -636627.180160112,
- 97749.77214743374
- ],
- "y": [
- -650987.8956618933,
- -187529.40680193529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 823874.0941544147,
- 97878.18936700777
- ],
- "y": [
- 764290.832324826,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 823874.0941544147,
- 97384.85502032931
- ],
- "y": [
- 764290.832324826,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 823874.0941544147,
- 98088.69457083048
- ],
- "y": [
- 764290.832324826,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 823874.0941544147,
- 97790.18756915494
- ],
- "y": [
- 764290.832324826,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787091.7877283216,
- 97878.18936700777
- ],
- "y": [
- -965373.510477915,
- -186691.95573974657
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787091.7877283216,
- 97384.85502032931
- ],
- "y": [
- -965373.510477915,
- -186109.56426562366
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787091.7877283216,
- 98088.69457083048
- ],
- "y": [
- -965373.510477915,
- -186418.54900034756
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787091.7877283216,
- 97790.18756915494
- ],
- "y": [
- -965373.510477915,
- -186324.3395864327
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -678923.3564325646,
- 98987.744183523
- ],
- "y": [
- 7794.401001574247,
- -187796.24083019167
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -678923.3564325646,
- 99579.00966292991
- ],
- "y": [
- 7794.401001574247,
- -187732.98575521674
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -678923.3564325646,
- 98635.38198452107
- ],
- "y": [
- 7794.401001574247,
- -187983.71489758827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -536139.8345770207,
- 100098.40192877872
- ],
- "y": [
- -692135.5560318063,
- -188083.6875223691
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 483038.4019771743,
- 98017.95961808166
- ],
- "y": [
- 862693.8081331758,
- -187897.73274734168
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 483038.4019771743,
- 99022.78768529206
- ],
- "y": [
- 862693.8081331758,
- -188059.30925306716
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96435.29713124092
- ],
- "y": [
- -737450.0551246805,
- -189142.09064355088
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96392.03219267243
- ],
- "y": [
- -737450.0551246805,
- -188270.16098356986
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96931.12324851674
- ],
- "y": [
- -737450.0551246805,
- -188583.01081795827
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 95651.87929649846
- ],
- "y": [
- -737450.0551246805,
- -189066.13649801663
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 95594.04154313843
- ],
- "y": [
- -737450.0551246805,
- -188752.9247450727
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96463.50079272543
- ],
- "y": [
- -737450.0551246805,
- -187487.7635363833
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96120.0822298696
- ],
- "y": [
- -737450.0551246805,
- -189713.64541984547
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96240.44430881485
- ],
- "y": [
- -737450.0551246805,
- -189555.82412272718
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96101.99869734746
- ],
- "y": [
- -737450.0551246805,
- -189852.59554859076
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96315.36819369205
- ],
- "y": [
- -737450.0551246805,
- -189218.8087403817
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 95937.25203342551
- ],
- "y": [
- -737450.0551246805,
- -190167.76777641778
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96235.33414286007
- ],
- "y": [
- -737450.0551246805,
- -189645.6152674434
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96530.33748860421
- ],
- "y": [
- -737450.0551246805,
- -188532.9554546275
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96182.08723044166
- ],
- "y": [
- -737450.0551246805,
- -189523.58352465904
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -615542.8321597268,
- 96258.26403190757
- ],
- "y": [
- -737450.0551246805,
- -189343.14144035138
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -425154.8175794468,
- 98709.8651975024
- ],
- "y": [
- -475462.72028761625,
- -188235.48072958956
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -425154.8175794468,
- 99109.15521458666
- ],
- "y": [
- -475462.72028761625,
- -188180.02447286362
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 389129.0935796654,
- 100640.4787093486
- ],
- "y": [
- -878946.7812968763,
- -188078.15933603563
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 389129.0935796654,
- 100235.20982182995
- ],
- "y": [
- -878946.7812968763,
- -187990.69685232927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -622531.8936491543,
- 102213.573130387
- ],
- "y": [
- -960923.7018518934,
- -188502.1043309098
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -622531.8936491543,
- 100665.20298807592
- ],
- "y": [
- -960923.7018518934,
- -188206.01901300566
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -622531.8936491543,
- 101380.72545035236
- ],
- "y": [
- -960923.7018518934,
- -188368.05619089317
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -942230.4813874803,
- 99856.27897972005
- ],
- "y": [
- -309835.924111922,
- -187629.39631769145
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -942230.4813874803,
- 99786.36456658994
- ],
- "y": [
- -309835.924111922,
- -187643.6924245978
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -942230.4813874803,
- 99683.00699846164
- ],
- "y": [
- -309835.924111922,
- -187638.51851489613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -702245.1002356531,
- 97369.40146033755
- ],
- "y": [
- -581931.2077126874,
- -188302.59803287973
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 167597.5150278466,
- 98812.91818171015
- ],
- "y": [
- -193151.43113910628,
- -187804.318709099
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426236.00695759256,
- 97843.27029212235
- ],
- "y": [
- -320810.1968006805,
- -188499.9137700682
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426236.00695759256,
- 97167.39841072715
- ],
- "y": [
- -320810.1968006805,
- -188088.5917691664
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426236.00695759256,
- 97743.58448295263
- ],
- "y": [
- -320810.1968006805,
- -187984.06459012086
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426236.00695759256,
- 97449.0985514171
- ],
- "y": [
- -320810.1968006805,
- -188713.3588507996
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 426236.00695759256,
- 97728.72992702796
- ],
- "y": [
- -320810.1968006805,
- -188417.0795439115
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102710.81065561782,
- 98904.72563619397
- ],
- "y": [
- 735584.2491990248,
- -188684.44500197342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102710.81065561782,
- 98942.09530630929
- ],
- "y": [
- 735584.2491990248,
- -188616.47166411072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 102710.81065561782,
- 98891.2416273708
- ],
- "y": [
- 735584.2491990248,
- -189238.12878373484
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97368.18786729996
- ],
- "y": [
- 571406.0633091565,
- -187761.64483234545
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97400.16397729573
- ],
- "y": [
- 571406.0633091565,
- -187256.5867709403
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97615.97056569872
- ],
- "y": [
- 571406.0633091565,
- -187366.18291352072
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97923.16505107327
- ],
- "y": [
- 571406.0633091565,
- -187510.56934074408
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97788.7651245566
- ],
- "y": [
- 571406.0633091565,
- -187524.54517428228
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97749.77214743374
- ],
- "y": [
- 571406.0633091565,
- -187529.40680193529
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 772772.6984495806,
- 97737.47168433828
- ],
- "y": [
- 571406.0633091565,
- -187454.64105987392
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 966475.7136151139,
- 98417.88816057792
- ],
- "y": [
- -31191.862881997156,
- -187745.42964825404
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98932.31091884513
- ],
- "y": [
- -482301.2879788475,
- -187594.8777657927
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98926.20655583622
- ],
- "y": [
- -482301.2879788475,
- -188109.5947916895
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98881.20399257346
- ],
- "y": [
- -482301.2879788475,
- -188135.7951117508
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98873.6590998779
- ],
- "y": [
- -482301.2879788475,
- -188126.67429510137
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98776.08147395353
- ],
- "y": [
- -482301.2879788475,
- -188068.89540782082
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98916.08043593282
- ],
- "y": [
- -482301.2879788475,
- -188138.17806449422
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98775.64297666437
- ],
- "y": [
- -482301.2879788475,
- -188113.8147030654
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98833.5386160878
- ],
- "y": [
- -482301.2879788475,
- -188119.49823623613
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98779.4951496633
- ],
- "y": [
- -482301.2879788475,
- -188123.9780570342
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98769.87019965112
- ],
- "y": [
- -482301.2879788475,
- -188121.51859750494
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98763.69912444155
- ],
- "y": [
- -482301.2879788475,
- -188082.81454332572
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98715.38337956829
- ],
- "y": [
- -482301.2879788475,
- -188023.85098966694
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98838.01226486915
- ],
- "y": [
- -482301.2879788475,
- -188038.4334288893
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98731.25835265023
- ],
- "y": [
- -482301.2879788475,
- -188097.6602407291
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98794.9356782363
- ],
- "y": [
- -482301.2879788475,
- -188124.65543545736
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98875.12446310604
- ],
- "y": [
- -482301.2879788475,
- -188079.8329504583
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 787936.2857831245,
- 98845.6917714939
- ],
- "y": [
- -482301.2879788475,
- -188129.3743830729
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 417358.92862643854,
- 96813.45598094136
- ],
- "y": [
- -273644.2666449306,
- -186085.13248614842
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 417358.92862643854,
- 96835.92874774396
- ],
- "y": [
- -273644.2666449306,
- -186068.28536481576
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 417358.92862643854,
- 97299.95816584109
- ],
- "y": [
- -273644.2666449306,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 417358.92862643854,
- 97300.96068285858
- ],
- "y": [
- -273644.2666449306,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 417358.92862643854,
- 96172.09176973494
- ],
- "y": [
- -273644.2666449306,
- -185427.49168366197
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 530081.4122312207,
- 97988.12714007127
- ],
- "y": [
- -564572.1511337791,
- -187642.84655158204
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 530081.4122312207,
- 98185.14683392025
- ],
- "y": [
- -564572.1511337791,
- -188287.79217814526
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 530081.4122312207,
- 97299.95816584109
- ],
- "y": [
- -564572.1511337791,
- -187098.08472081405
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- 530081.4122312207,
- 97300.96068285858
- ],
- "y": [
- -564572.1511337791,
- -186969.98767638186
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -761342.1567954683,
- 98502.26373555082
- ],
- "y": [
- -879096.8240374251,
- -188549.32629648288
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -761342.1567954683,
- 98563.51548863579
- ],
- "y": [
- -879096.8240374251,
- -188250.077786393
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -290976.6678246506,
- 98515.43976060345
- ],
- "y": [
- 379673.6622571082,
- -188161.7726015361
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -290976.6678246506,
- 96994.13649214181
- ],
- "y": [
- 379673.6622571082,
- -187116.7595416007
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -532125.9656384134,
- 98899.25788886541
- ],
- "y": [
- 793099.5767054925,
- -187821.31284373655
- ]
- },
- {
- "line": {
- "color": "blue"
- },
- "mode": "lines",
- "name": "Line DataFrame 1",
- "type": "scatter",
- "x": [
- -532125.9656384134,
- 98911.1768536842
- ],
- "y": [
- 793099.5767054925,
- -187704.11156844525
+ -8.70931314589988,
+ 12.357392504358657,
+ -8.7260826919713,
+ 4.065662271629381,
+ 11.294776229121352,
+ -4.877931126317019,
+ 10.735464773050758,
+ 1.9766510721255532,
+ -14.105337760358532,
+ 1.2006505986338571,
+ -3.6207033444239403,
+ -14.257892192218716,
+ -8.873848187901249,
+ -8.587682700115721,
+ 4.143478005080861,
+ -16.49575122113392,
+ -7.341442978207376,
+ 13.518267765132038,
+ 3.3062214109117107,
+ -10.550472542112104,
+ -13.43842367977979,
+ -17.775724172886815,
+ -16.88866457323332,
+ -20.078458535264446,
+ -13.609089026692189,
+ 15.214928548030311,
+ -4.696595772523521,
+ -11.034798616634593,
+ -15.133094058459976,
+ 12.062508703553217,
+ 12.264858481554377,
+ 8.160790367423271,
+ -14.017523904948444,
+ -9.351947080727468,
+ -21.044655379361654,
+ -11.812617437253277,
+ -16.66777117612361,
+ 4.854968322661051,
+ -0.8717312459872724,
+ -15.864865885806555,
+ -10.341430318799459,
+ 6.364427526291246,
+ -9.779926270341624,
+ 12.007482847799901,
+ 5.837901720619523,
+ 13.238289425446844,
+ -14.892826048440316,
+ 8.856427933715622,
+ 4.463646735471876,
+ -9.319094966806064,
+ 5.54577061950271,
+ 7.434816853042825,
+ 4.419861800187942,
+ 8.13056547226624,
+ -18.90667680998491,
+ 12.088650427686154,
+ -16.51737999240955,
+ -21.808337431736717,
+ 10.99395947595549,
+ 12.56133355227103,
+ 10.346063966531668,
+ 15.372542787508928,
+ 11.817896192030677,
+ 3.856271667229114,
+ 13.994654703623123,
+ 2.9343925315942663,
+ 12.534847587601611,
+ 13.857943359616616,
+ 9.554993646994419,
+ -19.082548783402974,
+ 9.818094885655874,
+ 13.019268697290483,
+ 3.036991151725595,
+ 15.638529308307785,
+ -15.120708026130123,
+ 14.47648272320709,
+ 11.259746152967812,
+ -1.3794830129963682,
+ 16.026250170033155,
+ 15.564078242959852,
+ 9.046492633179005,
+ 8.482889237255252,
+ 13.13334138439849,
+ 4.922850862135011,
+ -0.7961280922069971,
+ -0.4996169964954393,
+ 0.05568140637087626,
+ 3.903929720733026,
+ -0.46294198742947523,
+ 3.6953497415283403,
+ 0.18662774037102353,
+ -9.818550566141576,
+ 10.55842539554966,
+ 3.678222001524373,
+ 0.053550297367818356,
+ 0.856621852687763,
+ 1.3912104527253701,
+ -0.4770555615368528,
+ 2.615400798349391,
+ 4.267118850106493,
+ 0.19554905389570348,
+ 2.9394073765534405,
+ 11.767112148395785,
+ 14.833519421498904,
+ 0.7384287997164202,
+ 1.5156603317139905,
+ -0.3322021397899909,
+ 5.1789753436846775,
+ 2.6724256762134506,
+ 1.8367614336416924,
+ -0.45136395640744087,
+ 8.81221207135692,
+ 15.619567609992188,
+ 0.6600766914421633,
+ 2.504070335996154,
+ 5.036301217583687,
+ 10.125420984567317,
+ 2.3475194746754497,
+ 1.8578277047182765,
+ 16.22703998820127,
+ 10.330950595269826,
+ -2.7658971358148947,
+ -1.3469441536515045,
+ 1.1884262032218091,
+ 1.34723325947132,
+ -7.899634721756038,
+ 13.436293495916102,
+ 4.876856900595087,
+ 2.2165170496703444,
+ 4.688434393568661,
+ 1.5781068877957782,
+ 10.664924867260249,
+ -1.9650770136308156,
+ 3.4031726727872074,
+ 4.46791567217323,
+ 2.423269620133291,
+ -1.3214351689180779,
+ -0.6852965869211495,
+ 1.5519172594409865,
+ -14.833371203957313,
+ 3.3083445120368262,
+ 3.2264285628784295,
+ 2.4091441663593947,
+ -1.068433738119321,
+ 5.2801480504009435,
+ -22.29012892624258,
+ -20.36215617292208,
+ 7.913823981349797,
+ 13.222084019474261,
+ 12.138422273046151,
+ -0.67044427073447,
+ 3.023087990068201,
+ 3.5667918078441505,
+ 4.259583645214979,
+ 9.10959051456911,
+ -6.382156388167953,
+ 0.2433322479630976,
+ 0.02380349387082925,
+ 8.699575474266641,
+ 12.517071438970168,
+ -1.146229319688388,
+ 3.9370581924207073,
+ 0.5444623587075397,
+ 4.0915415204171675,
+ 4.545978277158587,
+ 3.4401847524258296,
+ 4.94332601132337,
+ -1.192610228575491,
+ 4.507364771453263,
+ 1.031823335220865,
+ 0.7348280496172432,
+ 3.634152715842353,
+ 16.329629911080218,
+ -3.1009710458980595,
+ -20.811748719318366,
+ -12.895238590095774,
+ -17.002840880938518,
+ -18.003098440617467,
+ 16.701297491241327,
+ -12.480679773055163,
+ -7.382931085378695,
+ -19.421273330321846,
+ -20.691366867499276,
+ -9.645100687981396,
+ -19.88295886227899,
+ -1.9168963496698936,
+ -10.390701474402691,
+ 1.5398298287809027,
+ 3.0899835481113476,
+ -9.922275324532277,
+ -19.826918228187647,
+ -1.557939548523383,
+ -8.463521824269321,
+ -8.011035787283092,
+ -12.78697697521233,
+ -9.305441849488401,
+ 1.8524320463766142,
+ -11.773686494743433,
+ -17.665719101726783,
+ -14.072787864498226,
+ -11.097063964411257,
+ -13.61492915791775,
+ -21.62141110792667,
+ -20.386059685612544,
+ -11.094633503074649,
+ 4.5578433839924655,
+ 14.117319922685468,
+ -20.164417924327868,
+ 6.667110055897602,
+ 11.890236135239256,
+ -21.652278956892705,
+ 11.007447112644039,
+ -3.5930927319462813,
+ -18.6964820290189,
+ 3.084027228630518,
+ 0.97624240082111,
+ -11.766265266493022,
+ 14.24741948194107,
+ -17.979596873501833,
+ -6.820653777368942,
+ -10.77574769400655,
+ -21.745942294135354,
+ -3.531764696083626,
+ -10.92073044683601,
+ 14.869539287780078,
+ -18.821957729217324,
+ -22.421792234858035,
+ -6.745269020436412,
+ -21.149513383400866,
+ 6.858066475130007,
+ 8.104064627387435,
+ 5.619239138287458,
+ -19.989999481225084,
+ -22.614370116233452,
+ 5.779903158930537,
+ -14.690034116642924,
+ -19.923354296149782,
+ -5.526254591027005,
+ -8.098925907478591,
+ -9.576328369821745,
+ -18.706584753985204,
+ 0.48854393504266813,
+ -1.1039008970779172,
+ -15.401206383320957,
+ -12.304562961281185,
+ -18.06631769066562,
+ -15.149575442226098,
+ -10.871376901885002,
+ -7.778928421150651,
+ -8.752639112894949,
+ -15.903931115499725,
+ 15.609346006545493,
+ 1.5684760085920115,
+ -8.484597070741174,
+ -5.358300982736624,
+ -15.633581302070548,
+ 10.042667039743908,
+ -5.026990040957724,
+ -19.098378201640987,
+ -12.667427561341837,
+ -8.143815192571171,
+ -17.044979383409984,
+ -5.989201968263571,
+ 2.363041898277314,
+ 11.077943004444244,
+ 4.869763475100926,
+ -6.891484104463479,
+ 11.228732658549816,
+ -11.300917366159346,
+ -10.968335135708738,
+ 3.562939649882624,
+ -1.0682502288603475,
+ -9.777165755904662,
+ 1.7239387147090457,
+ -12.871013065755452,
+ 14.967139301367737,
+ -3.0291294985260704,
+ -13.422449302999599,
+ -17.286588360084316,
+ 7.9355349788978415,
+ -17.12555340084468,
+ -19.59883316402109,
+ -20.43662854571034,
+ 8.21393396333229,
+ 13.376046786916863,
+ -8.462507797486271,
+ 12.493705074878276,
+ -19.681819792477782,
+ 16.02685507047808,
+ 2.104592168482062,
+ -20.89283130051644,
+ -17.307425668424838,
+ -21.494525576807252,
+ 10.006171063011177,
+ 0.21220123988181472,
+ -20.993335047761455,
+ -1.3818741523014602,
+ 6.719216204864578,
+ -17.469818897962714,
+ 15.50842228219919,
+ 4.681434482402857,
+ 9.082369476186,
+ 11.790746027326676,
+ -16.88850776851199,
+ -8.459815579199368,
+ -13.712982036242966,
+ -9.13963699288518,
+ 10.555938436544011,
+ -6.3910984391749635,
+ -14.409926567080209,
+ -12.98892143086912,
+ 10.932611287510872,
+ -18.68338908240872,
+ -12.620772053109167,
+ -7.01079485915003,
+ -16.196594781142146,
+ -18.49803243754904,
+ -3.709575119780668,
+ -7.296028518713889,
+ -15.80676283008967,
+ -6.298434965886316,
+ 7.093355773757125,
+ -17.4962316246469,
+ 11.690563392102176,
+ -15.116993281123253,
+ -3.034696504248963,
+ -13.908851939488352,
+ 4.133263320515565,
+ -9.379632668231089,
+ -3.7125233612740947,
+ 3.947054364112706,
+ 15.897727748859731,
+ -20.177657876026064,
+ -4.706734631277135,
+ -4.00309733359404,
+ -19.651474048276775,
+ -1.4923075915022013,
+ -5.608873812184631,
+ 3.1332077429638634,
+ 14.09475540936056,
+ -11.67638321800429,
+ 11.49537123276815,
+ 4.46094807351154,
+ -22.038311752593305,
+ -9.119484339706066,
+ -12.77939001745422,
+ 13.787941597861545,
+ -16.133541414710997,
+ -20.343425721138352,
+ -19.1453352760063,
+ -10.728995901369837,
+ -12.827619657844297,
+ -12.261340069009742,
+ -7.9391584995377364,
+ -8.695070081779994,
+ -12.800156967487696,
+ -15.292661853197743,
+ -5.03321986359075,
+ -12.17454724263504,
+ -18.17962214270138,
+ 1.4502256073328483,
+ -17.779940043559343,
+ -21.135681044425418,
+ -4.645162072696039,
+ -7.347029070418839,
+ -7.527058336170182,
+ -1.9964816595471717,
+ -7.823569674801347,
+ -14.593758817239356,
+ -9.279228283652973,
+ -13.45733067489019,
+ -16.656508006139845,
+ -0.6624460657751019,
+ -1.6670677064266997,
+ -16.923732291878377,
+ -13.432933117193492,
+ -12.716616283024235,
+ -12.576267823874279,
+ -4.988851174421002,
+ -18.604913420528128,
+ -14.219844714485582,
+ -5.49676867848029,
+ -1.782262802725937,
+ -6.043547508660142,
+ -16.187835821681944,
+ -17.55721376048522,
+ -9.903426371738261,
+ -15.42783370989261,
+ -8.467677097413748,
+ 13.055924620493657,
+ -11.30389562151104,
+ 2.401716763258838,
+ 13.186981664800506,
+ -6.154949374809172,
+ 11.682472035258993,
+ -0.2904245132883371,
+ -0.4066190229151898,
+ -6.089232444725925,
+ -16.171254207712238,
+ -12.641486554711227,
+ -8.924539853173204,
+ 2.6594948351133105,
+ -17.399809247665026,
+ 12.946886580090768,
+ 0.9296285821773804,
+ -8.165134748977561,
+ -8.31123907060137,
+ -14.827710046890484,
+ -18.77373065630167,
+ 13.454883339680299,
+ -5.335036210575371,
+ -12.918878789025223,
+ -8.786027517833004,
+ -13.073799543345432,
+ 13.525214186802927,
+ 14.1424983821946,
+ 14.568357886697154,
+ -13.422176469509925,
+ -13.775765496084412,
+ 8.387901149093713,
+ -3.2021831256890922,
+ -12.174437423792877,
+ -13.131805829829121,
+ -11.222157816000808,
+ -7.297077243601035,
+ 14.470594296805228,
+ 3.784022178353783,
+ 15.9435485636315,
+ -16.9272715960945,
+ 11.276910781514232,
+ 5.030557141304843,
+ 5.281623231902232,
+ 9.463974500180829,
+ 6.91603816914483,
+ 10.087304118769962,
+ -16.26485387584271,
+ -18.539285817819707,
+ 12.36789644876426,
+ 10.074147960343135,
+ -17.621025032978338,
+ -20.63061229727116,
+ -22.0372705783538,
+ 13.652308260668319,
+ 13.554212564980395,
+ 11.262722144984231,
+ 1.0820851096858084,
+ 0.3351226422782401,
+ 11.257550918740437,
+ 14.81007903132706,
+ 13.16529376284697,
+ 11.747579677576784,
+ -17.230274581024116,
+ -20.99368417153712,
+ 11.039454894775762,
+ 5.448264249663503,
+ 0.8433811243550915,
+ -13.12269150574086,
+ -15.084685984163059,
+ 1.001446291610431,
+ -2.979824350857239,
+ 16.034607951559245,
+ 14.646230575375679,
+ 10.746949145559208,
+ 2.0750960065294444,
+ 1.9210624105784522,
+ 17.091860288961655,
+ -4.8014607974495505,
+ -4.121682094168807,
+ -9.211712305067408,
+ -0.9647141359114324,
+ -12.770043278028636,
+ -22.14947240734907,
+ -21.662760215424292,
+ 10.042245008033184,
+ 9.00591792915805,
+ -8.114924620385013,
+ -4.09014144613155,
+ 17.441033667083897,
+ 14.210332439646615,
+ -5.205440506820717,
+ -22.424846474687104,
+ -19.333643113939573,
+ -15.6485410514355,
+ -17.602424048420065,
+ 16.452169485318528,
+ -10.315126466090584,
+ -19.211557661416975,
+ -11.574766578920022,
+ -2.836225991117213,
+ 3.525145431665082,
+ 5.369682545555909,
+ -7.233663409839164,
+ -3.830378203270949,
+ -8.70415109596094,
+ -5.564640261992574,
+ -0.24304139083144172,
+ -20.286273678708202,
+ -19.227328493292394,
+ -8.644619795574375,
+ -12.01044336192099,
+ 3.5635661792162865,
+ 6.0655381802650865,
+ 16.27121152709186,
+ 8.921549326543447,
+ 11.940944669003084,
+ 10.862739022277392,
+ 12.500834520805466,
+ -2.834194264885367,
+ -4.849203406582981,
+ -1.8783040633672548,
+ -5.9138526823356266,
+ 1.2672067779403606,
+ 1.9527502164133757,
+ 15.16111670911235,
+ -7.228500587324407,
+ -8.223763239439526,
+ -12.93018385197875,
+ -4.130858921918941,
+ -12.560295003820366,
+ 12.495171965866554,
+ -20.344640829601293,
+ 7.620310212411023,
+ 5.971239979286481,
+ 6.156588825490022,
+ 8.169773290644287,
+ 5.746694681873156,
+ -17.289323099523585,
+ -6.926326206032475,
+ -6.341107086583359,
+ -9.622695772412136,
+ 2.4822510615899143,
+ 0.8238680595058228,
+ -14.002763598385519,
+ -6.4793879657592806,
+ -6.178625902126945,
+ -8.021165590309865,
+ 16.47227486042157,
+ 1.0597336630653893,
+ -3.239099820874423,
+ 11.764837233757895,
+ -17.208626664696368,
+ 4.9942257378006065,
+ 12.698764574124928,
+ 7.0907603766426215,
+ 10.212933849734718,
+ 2.3693097894164348,
+ 5.614858725722992,
+ -0.09033420362344827,
+ -0.29399017359151897,
+ -11.864982489192727,
+ -15.041400491254338,
+ 17.055148995726,
+ 16.041813776705418,
+ -0.7417165954447063,
+ 8.571520874518438,
+ 8.034520839978383,
+ 5.953088650224671,
+ -19.493438139991042,
+ -17.680271835579358,
+ -21.709865075054704,
+ -18.98434991865462,
+ 9.479003699248967,
+ 15.360819858645495,
+ 13.553752573797507,
+ -18.012269836447572,
+ -20.67399971981301,
+ 14.142723120662852,
+ 4.158855987079716,
+ -19.30823670467353,
+ 1.345571334092393,
+ -3.765932094845125,
+ 8.450856515397396,
+ -15.483504593073866,
+ 16.917009682577252,
+ 16.710656712387618,
+ 4.931777769677826,
+ 8.423106436504714,
+ 9.362651807048024,
+ -17.09384139910882,
+ -6.3020986051103085,
+ -15.512660010110848,
+ -16.253458215614497,
+ 9.216705572804882,
+ -5.90915471623139,
+ -12.491614119138562,
+ 10.608264638226434,
+ -11.207167007021848,
+ -5.492779155501329,
+ -6.7591565356014,
+ -17.76062376092856,
+ -7.997026832563643,
+ 8.541739412405914,
+ -20.004160335697236,
+ 9.60797710877932,
+ -0.9552211375723392,
+ -16.06949059338767,
+ 5.5986955025103615,
+ -9.801914302966575,
+ -6.387257207079732,
+ 4.182109903014407,
+ 14.913534821560878,
+ 16.0907165727309,
+ -2.651460477752816,
+ -3.122504065930367,
+ 6.282395561912272,
+ 0.05304739933493979,
+ 14.52797473671664,
+ 12.782916372914405,
+ 9.900486173985867,
+ 6.7117061951169745,
+ 16.55342736700985,
+ 15.207573339010693,
+ -21.192548496878892,
+ -9.935989549568063,
+ -11.421331187302464,
+ -19.236373535869173,
+ -2.889253833789248,
+ -7.00867095864509,
+ -3.45112685549332,
+ -7.581652107499191,
+ -7.763126090292656,
+ -6.810269075767733
+ ],
+ "y": [
+ -11.41784983119164,
+ -0.3191505947266975,
+ 14.563425157507346,
+ -14.928767740995028,
+ 12.441412417665292,
+ 7.376415353965956,
+ 3.1129060197666063,
+ 2.4908144892083617,
+ 15.021482056662148,
+ 5.897594291101676,
+ 9.169651932528753,
+ -11.095225685990275,
+ 6.693421850634913,
+ 17.163084400516215,
+ -6.199672663045915,
+ -9.54475726221417,
+ 7.606682919608337,
+ -8.643131136849384,
+ 4.4281959742181645,
+ -13.039917034599503,
+ -13.354513757095816,
+ 11.615308535874595,
+ 8.319431909230527,
+ 6.747021989871167,
+ 20.151129500861902,
+ -1.014117560634313,
+ 4.085374440780235,
+ 1.6983783682866247,
+ 17.704182771702758,
+ -1.836988980241852,
+ -5.410646669470725,
+ 5.905584742205971,
+ 16.9116407836773,
+ 13.909649050767086,
+ 7.392943235225893,
+ -9.191426851740902,
+ 10.566212120275992,
+ 5.845138209038488,
+ -15.932478831348119,
+ 8.42095163109347,
+ -4.181749506074347,
+ 5.616088042149204,
+ -13.49113086692568,
+ 6.2948126612798845,
+ 6.056565991339081,
+ -3.3158603968515785,
+ 5.773101343260647,
+ 1.910696527206486,
+ -14.101186632430181,
+ 17.923977436957234,
+ 8.917560715652067,
+ -13.47987385198965,
+ 8.811181639309124,
+ 7.056190518170468,
+ -4.152181388798178,
+ 9.461127802230648,
+ 16.485115557937508,
+ -1.738626111239635,
+ 8.679631193800969,
+ 10.752214832019265,
+ 13.360092859217884,
+ 10.384122617117338,
+ 7.3790355399426995,
+ -9.605448470353792,
+ 11.031621934991103,
+ -15.30414419254827,
+ 12.936896688477757,
+ -4.9201950168038575,
+ -6.44799110247403,
+ -4.522168668775065,
+ 17.086728149022562,
+ 5.670674427131997,
+ -1.933629726538972,
+ 7.224926490329623,
+ -9.033684219439134,
+ 6.762715777282194,
+ 9.382733033619129,
+ -16.407119973387434,
+ 8.771990720473475,
+ -3.5321037127623613,
+ 16.81988748065873,
+ 14.128778297663642,
+ 14.402004531741376,
+ 19.10560462635729,
+ 18.06774414259654,
+ 17.24649423926348,
+ 19.705241285603314,
+ 15.313781231311406,
+ 16.65288149533023,
+ 19.890667328757683,
+ 15.187491838181332,
+ 13.465769372913718,
+ 12.002018544424272,
+ 15.799421584936406,
+ 20.72323475585315,
+ 21.04587969061181,
+ 19.784811122815363,
+ 19.22959731105091,
+ 13.826408481082314,
+ 18.767952289812886,
+ 18.923223236650237,
+ 18.967765523636846,
+ 17.082484524005473,
+ 11.73220387244621,
+ 16.763848269032998,
+ 14.45042316563831,
+ 15.416673504931964,
+ 17.04525839776579,
+ 15.198173033933289,
+ 15.509850138532327,
+ 20.422046276551164,
+ 15.348587334764682,
+ -1.4367253891208716,
+ 18.230755152738165,
+ 15.96080110929009,
+ 18.591443566385063,
+ 17.7984951942672,
+ 20.2870334481428,
+ 20.266847151047724,
+ 6.168592644825372,
+ 12.929917572172492,
+ -16.188840259217496,
+ 17.45326422341904,
+ 15.891006930342767,
+ 18.94508784767475,
+ 10.519721483283934,
+ 13.129230606375554,
+ 16.52347396583559,
+ 19.316441539819415,
+ 17.808924366013617,
+ 21.1696840444441,
+ 16.61831528214116,
+ -7.976749825501475,
+ 19.290346621460948,
+ 16.15731021460754,
+ 21.13336581239527,
+ 18.234061804870244,
+ 15.856463382283577,
+ 13.784212418396557,
+ -1.6621571889152875,
+ 18.01643640847642,
+ 16.36563488724154,
+ 14.483331231403675,
+ 16.218797803880534,
+ 17.97344143563745,
+ 3.2435804153559262,
+ -1.7190425033339873,
+ -11.538314826060407,
+ 14.968050808360838,
+ 13.268802148583784,
+ 18.60267962239572,
+ 20.241728533750628,
+ 20.79853884709638,
+ 19.918504409491106,
+ -8.075294952812861,
+ -9.043276446002867,
+ 15.933681725807805,
+ 17.696627605097554,
+ 12.882281213462367,
+ 15.84746212104952,
+ 19.671110638083217,
+ 17.726574132118806,
+ 14.563940628397631,
+ 16.82537621991663,
+ 15.685902967095739,
+ 14.741924159224842,
+ 17.288374628006324,
+ 16.955054852390468,
+ 19.417153998704617,
+ 15.121700721238964,
+ 20.01606645238458,
+ 14.037141024682432,
+ 3.1544494401128524,
+ -13.066661108968566,
+ 4.745329252150413,
+ -8.940121902174184,
+ 7.359370399973077,
+ 7.860345828704119,
+ -1.0483669419973778,
+ -7.239415659631179,
+ 21.38196294430897,
+ 11.756915677045937,
+ 8.766139719613324,
+ 21.267192965189107,
+ 4.000910950487333,
+ -3.050984643079521,
+ 19.113938239837466,
+ -5.727282121791605,
+ -5.014213553729322,
+ -14.635024378506934,
+ 8.565962804238229,
+ -15.890185356621734,
+ -4.731768730493457,
+ 1.6977476489656436,
+ 18.154860779828756,
+ 18.653276009869735,
+ -10.497077346193414,
+ 18.288498919448255,
+ 0.7431060248201902,
+ 15.886827429789896,
+ 17.675491799855113,
+ 17.91680762187519,
+ 3.2801266702880763,
+ 2.682790066877558,
+ 6.919921812362842,
+ -10.352351904705175,
+ -0.2167048632130567,
+ -1.4437986078242833,
+ -13.213591629517639,
+ -9.095416110157403,
+ 2.200082949398928,
+ -10.977681433120315,
+ -4.139923708678614,
+ 13.755204787793724,
+ -9.389375362580894,
+ -4.650678621741309,
+ 13.14269509207124,
+ -7.08587920068209,
+ -1.3993516846995084,
+ -5.791712433332692,
+ -6.6247330469256465,
+ -1.329606090751159,
+ 3.2313711640535168,
+ 9.361342440809858,
+ 0.09293232147749464,
+ 1.209753793553072,
+ -0.48006248890437775,
+ 6.970146957973679,
+ 10.658134422431962,
+ -10.745486365243181,
+ -2.630122160653607,
+ -13.37817835195691,
+ -2.6488870588261384,
+ 1.1284637138203344,
+ -7.849639953321988,
+ 18.205149271954912,
+ 11.194279832169235,
+ 18.11772973076478,
+ 18.36869277547518,
+ 17.01996907089426,
+ 11.595139790769299,
+ -7.13790715441922,
+ 8.315845491584616,
+ 15.240022562465837,
+ 0.39921210150761577,
+ 15.456749694177255,
+ 10.683686813836902,
+ 19.259948835927116,
+ 20.292814361341577,
+ -15.13948322261798,
+ 11.845588325612976,
+ 5.160496908475858,
+ -13.419203553399395,
+ 21.208861475687293,
+ -1.722835548838387,
+ 17.442848322188567,
+ -10.116396077525179,
+ 19.497724196889425,
+ 12.754326143960697,
+ 19.297972378051927,
+ 15.550864910877822,
+ -7.424206763444326,
+ 16.346818810590605,
+ 0.3714925176070536,
+ -8.336425792587137,
+ -11.851964883592148,
+ 15.481065975422577,
+ -1.6608044293760673,
+ 14.536521168193532,
+ 18.749575040736318,
+ -14.784209689560061,
+ -10.765615145602576,
+ 15.823112383588235,
+ -16.107136771139988,
+ 2.905998540799444,
+ 3.4067017305617755,
+ -9.996322178397245,
+ 14.68692773332524,
+ 6.62722182039912,
+ -8.00184431026471,
+ 3.0133512901104416,
+ -4.992963192827679,
+ 5.065105885279123,
+ -10.738172367472357,
+ -4.848489410736379,
+ 15.742705654242956,
+ 2.7142673474102605,
+ -7.740250027484222,
+ 0.6549196038858884,
+ -15.481322262367849,
+ 9.9270695544927,
+ 0.8165423895756174,
+ 6.154284321913229,
+ 9.736984239596191,
+ 4.5636886300375465,
+ 0.957578190014004,
+ -5.085998787236029,
+ -3.42059900122231,
+ -9.972130387891122,
+ 1.8662812888160822,
+ 1.3915121325117346,
+ -0.7897807487357376,
+ 3.867034254303558,
+ 14.660023764695653,
+ 10.723050937671145,
+ 9.058664593148738,
+ 15.92515851367293,
+ 17.192715010497217,
+ 2.1783236015756544,
+ 13.556809084666387,
+ 16.61552754959879,
+ -1.05163940544016,
+ 6.600757008000865,
+ -3.4904908702143596,
+ -1.3510602959274558,
+ 12.541822085749827,
+ 9.993919349668218,
+ 22.451348423362106,
+ -4.453520432336367,
+ -2.737929922909383,
+ 20.929839497344,
+ -0.38977616922758296,
+ 2.4761426404672013,
+ -3.5658825848012548,
+ 7.917490080628118,
+ 6.316864787134258,
+ 2.302973690967117,
+ 2.0018042499974964,
+ -15.718792057509107,
+ -16.671786382411057,
+ -0.2712384574698234,
+ 7.928407480010116,
+ -6.123839096600868,
+ -17.75345309979954,
+ 11.059371438887155,
+ -6.111187613432292,
+ 2.792614522565272,
+ -13.430216856829446,
+ 22.569969063829703,
+ 12.35995628928166,
+ 10.933227463611694,
+ -8.647443133101893,
+ 9.298780186928086,
+ 7.104101159161629,
+ -11.39984200097884,
+ 13.621527099783169,
+ 8.995856150249049,
+ 16.803115192697085,
+ 10.592206668431514,
+ -1.9774734854256746,
+ 13.175545340601293,
+ 20.460968550160327,
+ 4.123014882661909,
+ -15.589877724228934,
+ 5.642890983127066,
+ -9.952608788794125,
+ -8.027540649214833,
+ -15.245004444152267,
+ -12.013371409411429,
+ -8.489446195769464,
+ 7.740284024415618,
+ 2.118950875491419,
+ 8.528902493244408,
+ 22.1115530105183,
+ -14.689872352838838,
+ -15.730989259150421,
+ -11.715116762578333,
+ -16.100362768181665,
+ -12.72139878404941,
+ 0.30177859190882206,
+ -8.84370468778664,
+ -8.79150611597912,
+ -14.130351738362913,
+ -12.48992128848705,
+ -11.037333912370942,
+ -11.638205856093446,
+ 14.505756784524383,
+ -13.764879078951406,
+ -12.615899599100104,
+ 13.384150927324999,
+ -8.156655997559467,
+ 20.455257782435655,
+ -13.222703067642193,
+ -10.415070747007382,
+ -12.049238335779727,
+ -11.054362849273527,
+ -2.29826269288487,
+ -12.886462232672827,
+ -8.962574775452547,
+ -2.604066672961298,
+ 16.078387958536506,
+ -16.360725881299764,
+ 13.839564531885683,
+ 9.174864958103376,
+ 4.919768640720008,
+ 4.2130750579698475,
+ 4.101848982924817,
+ 9.690925923418042,
+ -11.744992766532496,
+ -12.698211541781175,
+ 4.194904762733609,
+ -4.106378991622533,
+ -7.400154004532124,
+ -6.6930990946675495,
+ 3.4439382386814943,
+ -12.302528127312577,
+ -13.292069671287392,
+ -10.774500868334462,
+ 8.990022300149276,
+ -0.04352563651214125,
+ 1.6391872487208237,
+ 0.504982924224546,
+ 1.920744405013267,
+ 18.28180496454909,
+ -3.8614397542849295,
+ -6.859599605804259,
+ -3.4534760131959032,
+ -7.0968268976059985,
+ -11.01675292462399,
+ 5.863529078603385,
+ -15.904988146291458,
+ -3.8384112563004393,
+ -2.880988053557643,
+ -11.892204745738725,
+ -13.116468577073746,
+ 5.829409441710796,
+ 7.462056618188281,
+ -4.374446904936558,
+ 4.910742427380435,
+ 2.2862185828963737,
+ -11.664393213523676,
+ -14.23523543135729,
+ -12.422118088881579,
+ 8.938100151401368,
+ 7.742192455313083,
+ -4.303139873798181,
+ -1.5118495976447555,
+ 11.676701598709945,
+ 11.370588014134997,
+ 14.088120902236506,
+ -3.551830416019878,
+ 0.7047065127334191,
+ 9.038760739212032,
+ 8.360793323455896,
+ 15.992541251517293,
+ -9.32085385524294,
+ -15.997752088226333,
+ 15.327026748623167,
+ 11.592669628746695,
+ -7.226419867543482,
+ -6.477102282615005,
+ -5.646043711423109,
+ -3.8886481272351925,
+ 4.372486305461426,
+ -1.4379178178425596,
+ -1.4425445909517411,
+ -10.81042580912902,
+ -6.2593714609761815,
+ -16.10780131409305,
+ -14.472775071887039,
+ -1.4285436402094343,
+ -5.932149619974707,
+ 14.767233791165753,
+ 17.383012919612007,
+ 17.793796128062674,
+ 4.465129675313559,
+ -16.73740628526125,
+ -13.883035825147553,
+ 8.358374475986748,
+ -5.305916009062771,
+ -1.6958707182869648,
+ 5.402907007667126,
+ -3.3418825609902427,
+ -11.29234486182441,
+ -9.859605488067325,
+ -10.51850244110427,
+ -9.137995914259335,
+ 1.3912666665754576,
+ 2.1956684246829385,
+ -11.24334686975556,
+ 4.479700722985545,
+ 6.283133275145741,
+ -7.663941780080888,
+ 10.013353150820242,
+ 1.1675351373220524,
+ -8.560329019195615,
+ 11.019231894500201,
+ 20.679356598004702,
+ -5.604837463318379,
+ -7.6127595670645505,
+ -5.1689120628515735,
+ -15.112705528427458,
+ -15.704248476240835,
+ -7.2437152921068275,
+ 2.606777360852669,
+ -9.501494765019928,
+ 0.3487538143716118,
+ 3.5750093576229536,
+ 6.955454609372014,
+ 4.533380670144705,
+ -12.815773744324012,
+ -11.560932832329058,
+ -1.5838117775480958,
+ -12.563721614285875,
+ -7.191672826830745,
+ -10.877664984855699,
+ -9.264580390810654,
+ -6.544841250435663,
+ -2.092282979040595,
+ -2.229840974733451,
+ -4.930437010354747,
+ -11.666001141543395,
+ -6.788614306827233,
+ -5.061312454241081,
+ -8.037705508396558,
+ -3.4856970302562065,
+ -5.084769748144755,
+ 5.761312303766434,
+ 7.3392480990631235,
+ -0.21275192955190647,
+ 12.562034505438607,
+ -13.289357761350335,
+ -4.224096997078707,
+ -15.046861827955759,
+ -12.943459755203083,
+ -5.666385925283225,
+ 13.124838098488237,
+ 17.39378749907511,
+ 20.005484246747542,
+ 20.19044152278915,
+ -8.959712560695248,
+ 7.2628399837274245,
+ -1.3539356618448246,
+ 22.30931842201065,
+ -15.82253266396615,
+ -13.007901951342296,
+ 3.057344673704041,
+ -15.6883445079686,
+ -0.6457974802125008,
+ -10.90056189569408,
+ -5.328887492705765,
+ 0.8171930358840568,
+ -9.5871294091661,
+ -12.576677283266495,
+ 0.6717530029196913,
+ -13.083035600058789,
+ -15.039225888857187,
+ -12.904548579206185,
+ -16.40188908183957,
+ 5.081672141197279,
+ 1.9637307033203717,
+ 4.053067206800075,
+ 5.70560209996295,
+ -11.788105138110016,
+ -10.210094274413706,
+ -5.810879984265869,
+ -8.903823997123547,
+ 1.9311378293970232,
+ -3.6299632351379643,
+ 6.612356435898742,
+ 3.058246733183386,
+ -11.984368454287786,
+ -4.214243832496144,
+ 4.753799496196119,
+ -6.794048016799521,
+ -4.831987792200215,
+ 2.069421512594827,
+ -15.74961543883628,
+ -0.6038874973527248,
+ 2.6835145948445223,
+ -6.047965183738679,
+ -1.5891407097654695,
+ -10.080675555238377,
+ 0.03081158009237195,
+ 3.5652763931909393,
+ 3.535429334045448,
+ -3.380320358295136,
+ 3.3720009773173993,
+ 16.40909862876928,
+ 11.740285647534707,
+ 10.271599739081877,
+ 10.15798883846539,
+ 18.647618505991836,
+ -0.24052084790888673,
+ 14.322218902949006,
+ -3.796144110693343,
+ -5.416392097389759,
+ 21.994882085341327,
+ -6.480360143131765,
+ -3.7384427182958966,
+ 21.92974993447186,
+ -2.7658430560231495,
+ 2.77885309140947,
+ -4.882469985148913,
+ 6.7657793056473725,
+ 2.5222424384617113,
+ 4.019933376936817,
+ -16.787552544072025,
+ -16.856805274678862,
+ -2.4479939519338654,
+ 9.862183182215059,
+ 5.820481650095663,
+ 4.998308370682041,
+ -14.041780289094081,
+ 21.0132610212424,
+ 22.924746987035036,
+ 10.038326449843389,
+ 13.727303787440793,
+ -7.397820564553798,
+ 9.71706183696487,
+ 7.837269659316131,
+ 8.604227898026458,
+ -0.22142264816660884,
+ 3.5809436333777107,
+ -14.248065303563243,
+ -6.745753018806202,
+ 22.697040180978924,
+ 21.174580092028506,
+ -10.680153816736555,
+ -13.927652348215837,
+ -1.1287029101082857,
+ 22.671018755703376
]
}
],
"layout": {
- "showlegend": true,
+ "hovermode": "closest",
+ "margin": {
+ "b": 0,
+ "l": 0,
+ "r": 0,
+ "t": 0
+ },
+ "showlegend": false,
"template": {
"data": {
"bar": [
@@ -90566,18 +10076,13 @@
}
}
},
- "title": {
- "text": "Overlayed Scatter Plot"
- },
"xaxis": {
- "title": {
- "text": "X-axis Label"
- }
+ "showgrid": false,
+ "zeroline": false
},
"yaxis": {
- "title": {
- "text": "Y-axis Label"
- }
+ "showgrid": false,
+ "zeroline": false
}
}
}
@@ -90586,6 +10091,180 @@
"output_type": "display_data"
}
],
+ "source": [
+ "edge_x = []\n",
+ "edge_y = []\n",
+ "\n",
+ "for edge in g.get_edgelist():\n",
+ " source, target = edge\n",
+ " x0, y0 = layout[source]\n",
+ " x1, y1 = layout[target]\n",
+ " edge_x.append(x0)\n",
+ " edge_x.append(x1)\n",
+ " edge_x.append(None)\n",
+ " edge_y.append(y0)\n",
+ " edge_y.append(y1)\n",
+ " edge_y.append(None)\n",
+ "\n",
+ "edge_trace = go.Scatter(\n",
+ " x=edge_x,\n",
+ " y=edge_y,\n",
+ " line=dict(width=0.5, color=\"#888\"),\n",
+ " hoverinfo=\"none\",\n",
+ " mode=\"lines\",\n",
+ ")\n",
+ "\n",
+ "node_x = []\n",
+ "node_y = []\n",
+ "\n",
+ "for node_position in layout:\n",
+ " x, y = node_position\n",
+ " node_x.append(x)\n",
+ " node_y.append(y)\n",
+ "\n",
+ "node_trace = go.Scatter(\n",
+ " x=node_x,\n",
+ " y=node_y,\n",
+ " mode=\"markers\",\n",
+ " hoverinfo=\"text\",\n",
+ " marker=dict(\n",
+ " showscale=True,\n",
+ " colorscale=\"YlGnBu\",\n",
+ " size=10,\n",
+ " colorbar=dict(\n",
+ " thickness=15, title=\"Node Connections\", xanchor=\"left\", titleside=\"right\"\n",
+ " ),\n",
+ " ),\n",
+ ")\n",
+ "\n",
+ "# Create a Plotly figure\n",
+ "fig = go.Figure(\n",
+ " data=[edge_trace, node_trace],\n",
+ " layout=go.Layout(\n",
+ " showlegend=False,\n",
+ " hovermode=\"closest\",\n",
+ " margin=dict(b=0, l=0, r=0, t=0),\n",
+ " xaxis=dict(showgrid=False, zeroline=False),\n",
+ " yaxis=dict(showgrid=False, zeroline=False),\n",
+ " ),\n",
+ ")\n",
+ "\n",
+ "# Show the plot\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 66,
+ "id": "f23dbd06",
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "NameError",
+ "evalue": "name 'company_df' is not defined",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)",
+ "\u001b[1;32mc:\\Users\\trimr\\Projekte\\aki_prj23_transparenzregister\\src\\aki_prj23_transparenzregister\\utils\\networkx\\sql_alchemy_to_networkx.ipynb Cell 23\u001b[0m line \u001b[0;36m1\n\u001b[1;32m----> 1\u001b[0m person_relations_df[[\u001b[39m\"\u001b[39m\u001b[39mfrom_x\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39m\"\u001b[39m\u001b[39mfrom_y\u001b[39m\u001b[39m\"\u001b[39m]] \u001b[39m=\u001b[39m (company_df\u001b[39m.\u001b[39mset_index(\u001b[39m\"\u001b[39m\u001b[39mid\u001b[39m\u001b[39m\"\u001b[39m, drop\u001b[39m=\u001b[39m\u001b[39mTrue\u001b[39;00m))\u001b[39m.\u001b[39mloc[person_relations_df[\u001b[39m\"\u001b[39m\u001b[39mcompany_id\u001b[39m\u001b[39m\"\u001b[39m], [\u001b[39m\"\u001b[39m\u001b[39mx\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39m\"\u001b[39m\u001b[39my\u001b[39m\u001b[39m\"\u001b[39m]]\n\u001b[0;32m 2\u001b[0m person_relations_df\u001b[39m.\u001b[39mhead()\u001b[39m.\u001b[39mT\n",
+ "\u001b[1;31mNameError\u001b[0m: name 'company_df' is not defined"
+ ]
+ }
+ ],
+ "source": [
+ "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n",
+ "person_relations_df.head().T"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f3a4e1c1",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "b9a7841b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "company_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6ddddb3e",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n",
+ "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "4b999165",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n",
+ "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ef674aaf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "person_relations_df"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "d7eb8ef9",
+ "metadata": {},
+ "source": [
+ "# Für Company_relation anpassen:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "4420b55f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n",
+ "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n",
+ "\n",
+ "\n",
+ "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n",
+ "company_relations_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1ba09996",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "company_relations_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "0bd027cd",
+ "metadata": {},
+ "outputs": [],
"source": [
"import plotly.express as px\n",
"import plotly.graph_objects as go\n",
@@ -90656,7 +10335,7 @@
},
{
"cell_type": "code",
- "execution_count": 61,
+ "execution_count": null,
"id": "aba6f3786cd18e89",
"metadata": {
"ExecuteTime": {
diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb
new file mode 100644
index 0000000..af6b13f
--- /dev/null
+++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb
@@ -0,0 +1,834 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "68a5fc0a3d3f7c63",
+ "metadata": {
+ "collapsed": false
+ },
+ "source": [
+ "# Relation queries via SQLAlchemy for networkx"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "b6eea59adeae27d4",
+ "metadata": {
+ "ExecuteTime": {
+ "end_time": "2023-10-07T13:25:27.888866200Z",
+ "start_time": "2023-10-07T13:25:27.704284300Z"
+ },
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import os.path\n",
+ "\n",
+ "import pandas as pd\n",
+ "\n",
+ "if not os.path.exists(\"src\"):\n",
+ " %cd \"../\"\n",
+ "os.path.abspath(\".\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "eb9498d3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from aki_prj23_transparenzregister.utils.sql import entities\n",
+ "from sqlalchemy.orm import aliased\n",
+ "from sqlalchemy import func, text\n",
+ "\n",
+ "# Alias for Company table for the base company\n",
+ "to_company = aliased(entities.Company, name=\"to_company\")\n",
+ "\n",
+ "# Alias for Company table for the head company\n",
+ "from_company = aliased(entities.Company, name=\"from_company\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "6a317af6",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n",
+ "from aki_prj23_transparenzregister.utils.sql.connector import get_session\n",
+ "\n",
+ "session = get_session(JsonFileConfigProvider(\"secrets.json\"))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "814d5edb",
+ "metadata": {},
+ "source": [
+ "# All Company Relations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "id": "2d17651a",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'"
+ ]
+ },
+ "execution_count": 32,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Query to fetch relations between companies\n",
+ "relations_company_query = (\n",
+ " session.query(\n",
+ " to_company.id.label(\"id_company_to\"),\n",
+ " to_company.name.label(\"name_company_to\"),\n",
+ " entities.CompanyRelation.relation.label(\"relation_type\"),\n",
+ " from_company.name.label(\"name_company_from\"),\n",
+ " from_company.id.label(\"id_company_from\"),\n",
+ " )\n",
+ " .join(\n",
+ " entities.CompanyRelation,\n",
+ " entities.CompanyRelation.company_id == to_company.id,\n",
+ " )\n",
+ " .join(\n",
+ " from_company,\n",
+ " entities.CompanyRelation.company2_id == from_company.id,\n",
+ " )\n",
+ ")\n",
+ "str(relations_company_query)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "id": "f1f0f2de",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "89.3 ms ± 1.99 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
+ ]
+ }
+ ],
+ "source": [
+ "# str(relations_query.filter((entities.CompanyRelation.company_id == 2) or (entities.CompanyRelation.company2_id == 2)))\n",
+ "%timeit pd.read_sql_query(str(relations_company_query), session.bind)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "id": "444cd402",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id_company_to | \n",
+ " name_company_to | \n",
+ " relation_type | \n",
+ " name_company_from | \n",
+ " id_company_from | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 5 | \n",
+ " 2. Schaper Objekt GmbH & Co. Kiel KG | \n",
+ " KOMMANDITIST | \n",
+ " Multi-Center Warenvertriebs GmbH | \n",
+ " 2213 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 32 | \n",
+ " Alb-Windkraft GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " EnBW Windkraftprojekte GmbH | \n",
+ " 845 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 34 | \n",
+ " Anneliese Köster GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " INDUS Holding Aktiengesellschaft | \n",
+ " 1903 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 74 | \n",
+ " AURELIUS Equity Opportunities SE & Co. KGaA | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " AURELIUS Management SE | \n",
+ " 163 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 77 | \n",
+ " Aurelius KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Aurelius Verwaltungs GmbH | \n",
+ " 80 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 573 | \n",
+ " 3137 | \n",
+ " Zalando BTD 011 SE & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Zalando SE | \n",
+ " 3112 | \n",
+ "
\n",
+ " \n",
+ " 574 | \n",
+ " 3137 | \n",
+ " Zalando BTD 011 SE & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " Zalando Operations GmbH | \n",
+ " 3103 | \n",
+ "
\n",
+ " \n",
+ " 575 | \n",
+ " 3138 | \n",
+ " zLabels Creation & Sales GmbH & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " zLabels GmbH | \n",
+ " 3113 | \n",
+ "
\n",
+ " \n",
+ " 576 | \n",
+ " 3145 | \n",
+ " Zalando Customer Care International SE & Co. KG | \n",
+ " HAFTENDER_GESELLSCHAFTER | \n",
+ " Zalando SE | \n",
+ " 3112 | \n",
+ "
\n",
+ " \n",
+ " 577 | \n",
+ " 3145 | \n",
+ " Zalando Customer Care International SE & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " Zalando Operations GmbH | \n",
+ " 3103 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
578 rows × 5 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id_company_to name_company_to \\\n",
+ "0 5 2. Schaper Objekt GmbH & Co. Kiel KG \n",
+ "1 32 Alb-Windkraft GmbH & Co. KG \n",
+ "2 34 Anneliese Köster GmbH & Co. KG \n",
+ "3 74 AURELIUS Equity Opportunities SE & Co. KGaA \n",
+ "4 77 Aurelius KG \n",
+ ".. ... ... \n",
+ "573 3137 Zalando BTD 011 SE & Co. KG \n",
+ "574 3137 Zalando BTD 011 SE & Co. KG \n",
+ "575 3138 zLabels Creation & Sales GmbH & Co. KG \n",
+ "576 3145 Zalando Customer Care International SE & Co. KG \n",
+ "577 3145 Zalando Customer Care International SE & Co. KG \n",
+ "\n",
+ " relation_type name_company_from \\\n",
+ "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n",
+ "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n",
+ "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n",
+ "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n",
+ "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n",
+ ".. ... ... \n",
+ "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n",
+ "574 KOMMANDITIST Zalando Operations GmbH \n",
+ "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n",
+ "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n",
+ "577 KOMMANDITIST Zalando Operations GmbH \n",
+ "\n",
+ " id_company_from \n",
+ "0 2213 \n",
+ "1 845 \n",
+ "2 1903 \n",
+ "3 163 \n",
+ "4 80 \n",
+ ".. ... \n",
+ "573 3112 \n",
+ "574 3103 \n",
+ "575 3113 \n",
+ "576 3112 \n",
+ "577 3103 \n",
+ "\n",
+ "[578 rows x 5 columns]"
+ ]
+ },
+ "execution_count": 33,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "company_relations = pd.read_sql_query(str(relations_company_query), session.bind)\n",
+ "company_relations"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b27d6532",
+ "metadata": {},
+ "source": [
+ "# All person relations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "id": "52af1d30",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "relations_person_query = (\n",
+ " session.query(\n",
+ " entities.Company.id.label(\"id_company\"),\n",
+ " entities.Company.name.label(\"name_company\"),\n",
+ " entities.PersonRelation.relation.label(\"relation_type\"),\n",
+ " entities.Person.id.label(\"id_person\"),\n",
+ " entities.Person.lastname.label(\"lastname\"),\n",
+ " entities.Person.firstname.label(\"firstname\"),\n",
+ " entities.Person.date_of_birth.label(\"date_of_birth\"),\n",
+ " )\n",
+ " .join(\n",
+ " entities.PersonRelation,\n",
+ " entities.PersonRelation.company_id == entities.Company.id,\n",
+ " )\n",
+ " .join(\n",
+ " entities.Person,\n",
+ " entities.PersonRelation.person_id == entities.Person.id,\n",
+ " )\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "id": "4f5ab3b2",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "259 ms ± 23 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
+ ]
+ }
+ ],
+ "source": [
+ "%timeit pd.read_sql_query(str(relations_person_query), session.bind)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "id": "c78b3e65",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id_company | \n",
+ " name_company | \n",
+ " relation_type | \n",
+ " id_person | \n",
+ " lastname | \n",
+ " firstname | \n",
+ " date_of_birth | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 1 | \n",
+ " Tetau | \n",
+ " Nicolas | \n",
+ " 1971-01-02 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " PROKURIST | \n",
+ " 2 | \n",
+ " Dammast | \n",
+ " Lutz | \n",
+ " 1966-12-06 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 3 | \n",
+ " Tutsch | \n",
+ " Rosemarie | \n",
+ " 1941-10-09 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 4 | \n",
+ " Staiger | \n",
+ " Marc | \n",
+ " 1969-10-22 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " 5 | \n",
+ " Staiger | \n",
+ " Michaela | \n",
+ " 1971-03-03 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 14891 | \n",
+ " 3144 | \n",
+ " Wohnungsbaugesellschaft mit beschränkter Haftu... | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 878 | \n",
+ " Weirich | \n",
+ " Torsten | \n",
+ " 1975-07-21 | \n",
+ "
\n",
+ " \n",
+ " 14892 | \n",
+ " 3144 | \n",
+ " Wohnungsbaugesellschaft mit beschränkter Haftu... | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 1840 | \n",
+ " Brusinski | \n",
+ " Bastian | \n",
+ " 1980-10-29 | \n",
+ "
\n",
+ " \n",
+ " 14893 | \n",
+ " 3145 | \n",
+ " Zalando Customer Care International SE & Co. KG | \n",
+ " PROKURIST | \n",
+ " 9359 | \n",
+ " Pape | \n",
+ " Ute | \n",
+ " 1978-12-13 | \n",
+ "
\n",
+ " \n",
+ " 14894 | \n",
+ " 3146 | \n",
+ " zebotec GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 9628 | \n",
+ " Neff | \n",
+ " Werner | \n",
+ " 1981-11-24 | \n",
+ "
\n",
+ " \n",
+ " 14895 | \n",
+ " 3146 | \n",
+ " zebotec GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " 9629 | \n",
+ " Morris | \n",
+ " Richard | \n",
+ " 1971-01-02 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
14896 rows × 7 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id_company name_company \\\n",
+ "0 1 0 10 24 Telefondienste GmbH \n",
+ "1 1 0 10 24 Telefondienste GmbH \n",
+ "2 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "3 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "4 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "... ... ... \n",
+ "14891 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
+ "14892 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n",
+ "14893 3145 Zalando Customer Care International SE & Co. KG \n",
+ "14894 3146 zebotec GmbH \n",
+ "14895 3146 zebotec GmbH \n",
+ "\n",
+ " relation_type id_person lastname firstname date_of_birth \n",
+ "0 GESCHAEFTSFUEHRER 1 Tetau Nicolas 1971-01-02 \n",
+ "1 PROKURIST 2 Dammast Lutz 1966-12-06 \n",
+ "2 KOMMANDITIST 3 Tutsch Rosemarie 1941-10-09 \n",
+ "3 KOMMANDITIST 4 Staiger Marc 1969-10-22 \n",
+ "4 KOMMANDITIST 5 Staiger Michaela 1971-03-03 \n",
+ "... ... ... ... ... ... \n",
+ "14891 GESCHAEFTSFUEHRER 878 Weirich Torsten 1975-07-21 \n",
+ "14892 GESCHAEFTSFUEHRER 1840 Brusinski Bastian 1980-10-29 \n",
+ "14893 PROKURIST 9359 Pape Ute 1978-12-13 \n",
+ "14894 GESCHAEFTSFUEHRER 9628 Neff Werner 1981-11-24 \n",
+ "14895 GESCHAEFTSFUEHRER 9629 Morris Richard 1971-01-02 \n",
+ "\n",
+ "[14896 rows x 7 columns]"
+ ]
+ },
+ "execution_count": 38,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "person_relations = pd.read_sql_query(str(relations_person_query), session.bind)\n",
+ "person_relations"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "id": "9887d1f0",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " id_company | \n",
+ " name_company | \n",
+ " relation_type | \n",
+ " id_person | \n",
+ " lastname | \n",
+ " firstname | \n",
+ " date_of_birth | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " c_1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " GESCHAEFTSFUEHRER | \n",
+ " p_1 | \n",
+ " Tetau | \n",
+ " Nicolas | \n",
+ " 1971-01-02 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " c_1 | \n",
+ " 0 10 24 Telefondienste GmbH | \n",
+ " PROKURIST | \n",
+ " p_2 | \n",
+ " Dammast | \n",
+ " Lutz | \n",
+ " 1966-12-06 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_3 | \n",
+ " Tutsch | \n",
+ " Rosemarie | \n",
+ " 1941-10-09 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_4 | \n",
+ " Staiger | \n",
+ " Marc | \n",
+ " 1969-10-22 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " c_2 | \n",
+ " 1. Staiger Grundstücksverwaltung GmbH & Co. KG | \n",
+ " KOMMANDITIST | \n",
+ " p_5 | \n",
+ " Staiger | \n",
+ " Michaela | \n",
+ " 1971-03-03 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id_company name_company \\\n",
+ "0 c_1 0 10 24 Telefondienste GmbH \n",
+ "1 c_1 0 10 24 Telefondienste GmbH \n",
+ "2 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "3 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "4 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n",
+ "\n",
+ " relation_type id_person lastname firstname date_of_birth \n",
+ "0 GESCHAEFTSFUEHRER p_1 Tetau Nicolas 1971-01-02 \n",
+ "1 PROKURIST p_2 Dammast Lutz 1966-12-06 \n",
+ "2 KOMMANDITIST p_3 Tutsch Rosemarie 1941-10-09 \n",
+ "3 KOMMANDITIST p_4 Staiger Marc 1969-10-22 \n",
+ "4 KOMMANDITIST p_5 Staiger Michaela 1971-03-03 "
+ ]
+ },
+ "execution_count": 39,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n",
+ "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n",
+ "person_relations.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "f448841c",
+ "metadata": {},
+ "source": [
+ "# Person relations filtered and fitted that are nodes not leaves"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "id": "52dad02d",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " person_id | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 2520 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 4993 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 3202 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 4611 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 4095 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 1804 | \n",
+ " 3565 | \n",
+ "
\n",
+ " \n",
+ " 1805 | \n",
+ " 3510 | \n",
+ "
\n",
+ " \n",
+ " 1806 | \n",
+ " 530 | \n",
+ "
\n",
+ " \n",
+ " 1807 | \n",
+ " 536 | \n",
+ "
\n",
+ " \n",
+ " 1808 | \n",
+ " 4617 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
1809 rows × 1 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " person_id\n",
+ "0 2520\n",
+ "1 4993\n",
+ "2 3202\n",
+ "3 4611\n",
+ "4 4095\n",
+ "... ...\n",
+ "1804 3565\n",
+ "1805 3510\n",
+ "1806 530\n",
+ "1807 536\n",
+ "1808 4617\n",
+ "\n",
+ "[1809 rows x 1 columns]"
+ ]
+ },
+ "execution_count": 23,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from sqlalchemy import func, text\n",
+ "\n",
+ "# Subquery to group and count the relations without joins\n",
+ "grouped_relations_subquery = (\n",
+ " session.query(\n",
+ " entities.PersonRelation.person_id,\n",
+ " )\n",
+ " .group_by(entities.PersonRelation.person_id)\n",
+ " .having(func.count() > 1)\n",
+ ")\n",
+ "pd.DataFrame(grouped_relations_subquery.all())"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.4"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}