diff --git a/bibliographies/DP.bib b/bibliographies/DP.bib new file mode 100644 index 0000000..6bd112c --- /dev/null +++ b/bibliographies/DP.bib @@ -0,0 +1,38 @@ +@Manual{pc16550, + title = {PC16550D Universal Asynchronous Receiver/Transmitter With FIFOs}, + organization = {Texas Instruments Inc.}, + year = {1995}, + url = {https://www.scs.stanford.edu/10wi-cs140/pintos/specs/pc16550d.pdf}, +} + +@Manual{idt7201, + title = {CMOS ASYNCHRONOUS FIFO}, + author = {{Integrated Device Technology, Inc.}}, + organization = {RENESAS}, + year = {2002}, + url = {http://www.komponenten.es.aau.dk/fileadmin/komponenten/Data_Sheet/Memory/IDT7201.pdf}, +} + +@Manual{tlc7528, + title = {DUAL 8-BIT MUTLIPLYING DIGITAL-TO-ANALOG CONVERTERS}, + organization = {Texas Instruments Inc.}, + year = {1987}, + url = {http://www.komponenten.es.aau.dk/fileadmin/komponenten/Data_Sheet/Memory/IDT7201.pdf}, +} + +@techreport{rs232, + type = {Standard}, + key = {TIA-/EIA-232-F}, + month = October, + year = {1997}, + title = {Interface Between Data Terminal Equipment and Data Circuit- Terminating Equipment Employing Serial Binary Data Interchange}, + volume = {1997} +} + +@Manual{max232, + month = February, + year = {1989}, + title = {MAX232x Dual EIA-232 Drivers/Receivers}, + organization = {Texas Instruments Inc.}, + url = {https://www.ti.com/lit/ds/symlink/max232.pdf} +} diff --git a/code/16550/echo/src/main.c b/code/16550/echo/src/main.c index 96477fe..b324753 100644 --- a/code/16550/echo/src/main.c +++ b/code/16550/echo/src/main.c @@ -1,31 +1,14 @@ -/* Copyright © 2020 tyrolyean - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - #define F_CPU 16000000UL #include #include #include -#include #include #include #define BUS_HOLD_US 1 -/* Shift values inside the PORTK Register */ +/* Shift values inside the PORTL Register */ #define WR_SHIFT 1 #define RD_SHIFT 2 #define MR_SHIFT 0 @@ -45,21 +28,6 @@ #define UART_REG_MSR 6 #define UART_REG_SCR 7 - -uint8_t mcusr_mirror __attribute__ ((section (".noinit"))); -void get_mcusr(void) \ - __attribute__((naked)) \ - __attribute__((section(".init3"))); - -void get_mcusr(void) -{ - mcusr_mirror = MCUSR; - MCUSR = 0; - wdt_disable(); -} - -int routine(); - void set_addr(uint8_t addr){ PORTK = addr; @@ -75,7 +43,7 @@ void write_to_16550(uint8_t addr, uint8_t data){ PORTF = data; PORTL &= ~(1<. - */ - #define F_CPU 16000000UL -#include -#include -#include -#include +#include #include -#include -/* Shift values inside the PORTK Register */ +#define BUS_HOLD_US 1 + +/* Shift values inside the PORTL Register */ #define WR_SHIFT 1 #define RD_SHIFT 2 #define MR_SHIFT 0 #define CS_SHIFT 3 +#define CS_ADC_SHIFT 4 /* Registers in the 16550 UART */ @@ -42,21 +25,6 @@ #define UART_REG_MSR 6 #define UART_REG_SCR 7 - -uint8_t mcusr_mirror __attribute__ ((section (".noinit"))); -void get_mcusr(void) \ - __attribute__((naked)) \ - __attribute__((section(".init3"))); - -void get_mcusr(void) -{ - mcusr_mirror = MCUSR; - MCUSR = 0; - wdt_disable(); -} - -int routine(); - void set_addr(uint8_t addr){ PORTK = addr; @@ -67,11 +35,12 @@ void write_to_16550(uint8_t addr, uint8_t data){ set_addr(addr); + DDRF = 0xFF; PORTL &= ~(1< +#include extern char command_buffer[100]; extern uint8_t command_buffer_pointer; @@ -28,5 +29,12 @@ void routine_game(); void prepare_command_buffer(); void ingest_user_char(char in); void perform_action(uint8_t action_id); +void move_direction(uint8_t direction); +void describe_room(uint8_t room, bool auto_desc); +void print_inventory(); +void print_room_item(); +void consume_room_item(); +void use_item(const char* item_name); +void use_item_id(uint8_t item_id); #endif diff --git a/code/textadv/include/structures.h b/code/textadv/include/structures.h index b9f07d4..0b57e00 100644 --- a/code/textadv/include/structures.h +++ b/code/textadv/include/structures.h @@ -17,11 +17,13 @@ #ifndef _STRUCTURES_H #define _STRUCTURES_H +#include + #include #include #include -#define NUM_ACTIONS 0x07 +#define NUM_ACTIONS 0x0A #define ACTION_HELP 0x00 #define ACTION_NORTH 0x01 #define ACTION_SOUTH 0x02 @@ -29,6 +31,36 @@ #define ACTION_EAST 0x04 #define ACTION_DESCRIBE 0x05 #define ACTION_USE 0x06 +#define ACTION_INVENTORY 0x07 +#define ACTION_SEARCH 0x08 +#define ACTION_TAKE 0x09 + +/* The direction in the direction table is the action_id - 1 */ +#define DIRECTION_NORTH 0x00 +#define DIRECTION_SOUTH 0x01 +#define DIRECTION_WEST 0x02 +#define DIRECTION_EAST 0x03 + +#define NUM_ROOMS 0x0A +#define ROOM_NOTHING 0x00 +#define ROOM_LONELYROAD 0x01 +#define ROOM_SNDIRTROAD 0x02 +#define ROOM_FIREPLACE 0x03 +#define ROOM_EWSTREET 0x04 +#define ROOM_OLDHOUSE 0x05 +#define ROOM_LIVINGROOM 0x06 +#define ROOM_ATTIC 0x07 +#define ROOM_BASEMENT 0x08 +#define ROOM_COMPUTERROM 0x09 + +#define NUM_ITEMS 0x07 +#define ITEM_FLOPPY 0x00 +#define ITEM_SCREWDRIVER 0x01 +#define ITEM_KEY 0x02 +#define ITEM_SAUSAGE 0x03 +#define ITEM_FLESH 0x04 +#define ITEM_KEYBOARD 0x05 +#define ITEM_PISTOL 0x06 extern const uint8_t sine_table[256] PROGMEM; extern const uint8_t noise_table[1024] PROGMEM; @@ -36,9 +68,12 @@ extern const char* text_table[]; extern const char* info_table[]; extern const char* action_table[NUM_ACTIONS]; -extern const char* room_table[]; -extern const char* room_description_table[]; -extern const bool room_action_table[][NUM_ACTIONS]; -extern const char* item_table[]; - +extern const char* room_table[NUM_ROOMS]; +extern const char* room_description_table[NUM_ROOMS]; +extern uint8_t room_map_table[NUM_ROOMS][4]; +extern bool room_visited_table[NUM_ROOMS]; +extern const char* item_table[NUM_ITEMS]; +extern bool inventory[NUM_ITEMS]; +extern int8_t item_room_map[NUM_ROOMS]; +extern const struct tone_t * room_track_map[NUM_ROOMS]; #endif diff --git a/code/textadv/src/game.c b/code/textadv/src/game.c index 47f7350..e6ba361 100644 --- a/code/textadv/src/game.c +++ b/code/textadv/src/game.c @@ -25,7 +25,7 @@ char command_buffer[100]; uint8_t command_buffer_pointer = 0x00; -uint8_t current_room = 0x00; +uint8_t current_room = ROOM_LONELYROAD; void routine_game(){ @@ -69,7 +69,12 @@ void routine_game(){ } void ingest_user_char(char in){ - command_buffer[command_buffer_pointer++] = in; + if(in == 0x7F /* DELETE CHAR */){ + command_buffer[command_buffer_pointer--] = 0x00; + + }else{ + command_buffer[command_buffer_pointer++] = in; + } return; } @@ -85,11 +90,141 @@ void perform_action(uint8_t action_id){ break; case ACTION_DESCRIBE: - println(room_table[current_room]); - putchar_16550('\n', NULL); - println(room_description_table[current_room]); + describe_room(current_room, false); break; + + case ACTION_NORTH: + case ACTION_SOUTH: + case ACTION_WEST: + case ACTION_EAST: + move_direction(action_id -1); + break; + case ACTION_INVENTORY: + print_inventory(); + break; + case ACTION_SEARCH: + print_room_item(); + break; + case ACTION_TAKE: + consume_room_item(); + break; + case ACTION_USE: + use_item(command_buffer+ + strlen(action_table[ACTION_USE])+1); + break; + }; + println(info_table[3]); return; } + +void move_direction(uint8_t direction){ + if(!room_map_table[current_room][direction]){ + println(info_table[4]); + return; + } + println("Moving towards %s",action_table[direction+1]); + current_room = room_map_table[current_room][direction]; + describe_room(current_room,true); + current_track = room_track_map[current_room]; + return; +} + +void describe_room(uint8_t room, bool auto_desc){ + + println(room_table[room]); + if(room_visited_table[room] && auto_desc){ + room_visited_table[room] = true; + return; + } + room_visited_table[room] = true; + putchar_16550('\n', NULL); + println(room_description_table[room]); + + return; +} + +void print_inventory(){ + bool found_item = false; + for(size_t i = 0; i < NUM_ITEMS; i++){ + if(inventory[i]){ + found_item = true; + break; + } + } + if(found_item){ + println("You have:"); + for(size_t i = 0; i < NUM_ITEMS; i++){ + if(inventory[i]){ + println(" %s",item_table[i]); + } + } + + }else{ + println("Your inventory is empty"); + } + + return; +} + +void print_room_item(){ + if(item_room_map[current_room] < 0){ + println(info_table[6]); + }else{ + println("You found a %s", + item_table[item_room_map[current_room]]); + } + return; +} + +void consume_room_item(){ + if(item_room_map[current_room] < 0){ + println(info_table[6]); + }else{ + println("You took the %s", + item_table[item_room_map[current_room]]); + + inventory[item_room_map[current_room]] = true; + item_room_map[current_room] = -1; + } + return; +} +void use_item(const char* item_name){ + + for(size_t i = 0; i < NUM_ITEMS; i++){ + if(strncasecmp(item_table[i], item_name, + strlen(item_table[i])) == 0){ + use_item_id(i); + return; + } + + } + println(info_table[2]); + return; + +} + +void use_item_id(uint8_t item_id){ + if(!inventory[item_id]){ + println(info_table[2]); + return; + } + + + switch(item_id){ + case ITEM_SAUSAGE: + if(current_room == ROOM_SNDIRTROAD){ + inventory[ITEM_SAUSAGE] = false; + room_map_table[current_room][DIRECTION_NORTH] = + ROOM_FIREPLACE; + println(info_table[10]); + return; + } + break; + }; + println(info_table[2]); + + return; +} + diff --git a/code/textadv/src/main.c b/code/textadv/src/main.c index c2fa01f..700efbc 100644 --- a/code/textadv/src/main.c +++ b/code/textadv/src/main.c @@ -84,8 +84,10 @@ int main(){ init_uart(); init_interrupts(); current_track = intro_track; + memset(room_visited_table, 0, NUM_ROOMS); + memset(inventory, 0, NUM_ITEMS); + describe_room(current_room,false); sei(); - println(room_description_table[0]); /* Enable the hardware watchdog. In case the microcontroller fails to * finish it's task within the specified time, the watchdog will reset * the atmel cookie. diff --git a/code/textadv/src/structures.c b/code/textadv/src/structures.c index d09f7f5..2bfbd76 100644 --- a/code/textadv/src/structures.c +++ b/code/textadv/src/structures.c @@ -343,22 +343,19 @@ const uint8_t noise_table[1024] PROGMEM = { }; const char* info_table[] = { - "ERROR", - "Invalid command!", - "You can't use that!", - "What are you going to do?", - "going ", - "NORTH", - "SOUTH", - "EAST", - "WEST", - "YOU MAY ACT NOW!", - "it died", - "it survived", - "a bear blocks the way", - "it ran away...", - "it won't start", - "you can't type" + "ERROR", // 0 + "Invalid command!", // 1 + "You can't use that!", // 2 + "What are you going to do?", // 3 + "You can't go that way!", // 4 + "YOU MAY ACT NOW!", // 5 + "There is nothing here..", // 6 + "it died", // 7 + "it survived", // 8 + "a bear blocks the way", // 9 + "it ran away...", // 10 + "it won't start", // 11 + "you can't type" // 12 }; const char* action_table[NUM_ACTIONS] = { @@ -368,7 +365,10 @@ const char* action_table[NUM_ACTIONS] = { "west", "east", "describe", - "use" + "use", + "inventory", + "search", + "take", }; const char* room_table[] = { @@ -376,7 +376,7 @@ const char* room_table[] = { "LONELY ROAD", "S/N DIRT ROAD", "FIREPLACE", - "N/W Street", + "E/W Street", "OLD HOUSE", "LIVING ROOM", "ATTIC", @@ -386,12 +386,14 @@ const char* room_table[] = { const char* room_description_table[sizeof(room_table)/sizeof(const char*)] = { "You stare into a void of nothingness. You see noone, you hear noone," - "you feel someone.\n You look around, and see nothing, yet " + "you feel someone.\nYou look around, and see nothing, yet " "you are no less scared. You have won..", - "LONELY ROAD", - "S/N DIRT ROAD", + "You are on the dead end of a lonely road. You look right and left of" + "you, but\nyou cannot remember why you are here... You are terrified.", + "You travel a bit towards the moon, you think that's the way to go. You" + " find a \nbear in the middle of the road sleeping seemingly in peace.", "FIREPLACE", - "N/W Street", + "W/W STREET", "OLD HOUSE", "LIVING ROOM", "ATTIC", @@ -399,19 +401,43 @@ const char* room_description_table[sizeof(room_table)/sizeof(const char*)] = { "COMPUTER ROOM" }; -const bool room_action_table[sizeof(room_table)/sizeof(const char*)] - [NUM_ACTIONS] = { - {1, 1,0,0,0,1,0} +bool room_visited_table[sizeof(room_table)/sizeof(const char*)]; + +uint8_t room_map_table[sizeof(room_table)/sizeof(const char*)] + [4] = { + {0,0,0,0}, + {2,0,0,0}, /* S/N DIRT ROAD */ + {/*3*/0,1,0,0}, /* FIREPLACE, Progress locked until bear tamed */ + {0,0,4,2}, /* E/W STREET */ }; -const char* item_table[] = { +const char* item_table[NUM_ITEMS] = { "FLOPPY DISK", "SCREW DRIVER", "KEY", "SAUSAGE", - "ROTTEN FLESH", + "FLESH", "KEYBOARD", "PISTOL" }; +bool inventory[sizeof(item_table)/sizeof(const char*)]; + +int8_t item_room_map[NUM_ROOMS] = { + -1, + 6, + 3, + -1, + -1, + -1, + -1, + -1, + -1, + -1 +}; +const struct tone_t * room_track_map[NUM_ROOMS] = { + intro_track, + lonely_road_track, + computer_room_track +}; diff --git a/main.aux b/main.aux index 1a9e038..52e6db9 100644 --- a/main.aux +++ b/main.aux @@ -3,7 +3,7 @@ \providecommand\zref@newlabel[2]{} \bbl@beforestart \catcode `"\active -\abx@aux@refcontext{nty/global//global/global} +\abx@aux@refcontext{none/global//global/global} \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined \global\let\oldcontentsline\contentsline @@ -20,6 +20,7 @@ \gdef\HyperFirstAtBeginDocument#1{#1} \providecommand*\HyPL@Entry[1]{} \HyPL@Entry{0<>} +\babel@aux{english}{} \@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } \@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } \@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } @@ -31,12 +32,90 @@ \babel@aux{ngerman}{} \babel@aux{ngerman}{} \@writefile{toc}{\contentsline {section}{Projektergebnis}{iii}{Doc-Start}\protected@file@percent } +\babel@aux{english}{} \HyPL@Entry{4<>} -\@writefile{toc}{\contentsline {section}{\numberline {1}Aufgabenstellung}{1}{section.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Daniel Plank}{1}{subsection.1.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2}Erkl"arung der Eigenst"andigkeit der Arbeit}{2}{section.2}\protected@file@percent } -\HyPL@Entry{6<>} -\@writefile{toc}{\contentsline {section}{\numberline {I\tmspace +\thickmuskip {.2777em}}Abbildungsverzeichnis}{I}{section.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {II\tmspace +\thickmuskip {.2777em}}Tabellenverzeichnis}{I}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {1}Task description}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Hardware}{1}{subsection.1.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Hardware peripherials}{2}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Parallel bus}{2}{subsection.2.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Atari PBI Pinout;Source: \url {https://www.atarimagazines.com}\relax }}{2}{figure.caption.1}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} +\newlabel{fig:atari_pbi}{{1}{2}{Atari PBI Pinout;Source: \url {https://www.atarimagazines.com}\relax }{figure.caption.1}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.1.1}Address Bus}{2}{subsubsection.2.1.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Data Bus}{3}{subsection.2.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Control Bus}{3}{subsection.2.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1}Master Reset}{3}{subsubsection.2.3.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.2}Write Not}{3}{subsubsection.2.3.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.3}Read Not}{3}{subsubsection.2.3.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.4}Module Select 1 and 2 Not}{3}{subsubsection.2.3.4}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Testing and Measurement}{4}{subsection.2.4}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.4.1}Measurements}{4}{subsubsection.2.4.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Digilent Analog Discovery 2;Source: \url {https://www.sparkfun.com/}\relax }}{4}{figure.caption.2}\protected@file@percent } +\newlabel{fig:ad2}{{2}{4}{Digilent Analog Discovery 2;Source: \url {https://www.sparkfun.com/}\relax }{figure.caption.2}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.4.2}Testing}{4}{subsubsection.2.4.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.5}Backplane}{5}{subsection.2.5}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Layout of the DIN41612 Connectors on the Backplane\relax }}{5}{figure.caption.3}\protected@file@percent } +\newlabel{fig:schem_back_conn}{{3}{5}{Layout of the DIN41612 Connectors on the Backplane\relax }{figure.caption.3}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.5.1}Termination resistors}{5}{subsubsection.2.5.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Measurement at around 1MHz bus clock on MS1\relax }}{6}{figure.caption.4}\protected@file@percent } +\newlabel{fig:reflex}{{4}{6}{Measurement at around 1MHz bus clock on MS1\relax }{figure.caption.4}{}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.6}Case}{6}{subsection.2.6}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces The case with installed backplane\relax }}{7}{figure.caption.5}\protected@file@percent } +\newlabel{fig:case}{{5}{7}{The case with installed backplane\relax }{figure.caption.5}{}} +\abx@aux@cite{pc16550} +\abx@aux@segm{0}{0}{pc16550} +\abx@aux@cite{pc16550} +\abx@aux@segm{0}{0}{pc16550} +\abx@aux@cite{max232} +\abx@aux@segm{0}{0}{max232} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.7}Serial Console}{8}{subsection.2.7}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.7.1}16550 UART}{8}{subsubsection.2.7.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces PC-16550D Pinout\cite {pc16550}\relax }}{8}{figure.caption.6}\protected@file@percent } +\newlabel{fig:16550_pinout}{{6}{8}{PC-16550D Pinout\cite {pc16550}\relax }{figure.caption.6}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.7.2}MAX-232}{9}{subsubsection.2.7.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.7.3}Schematics}{9}{subsubsection.2.7.3}\protected@file@percent } +\abx@aux@cite{pc16550} +\abx@aux@segm{0}{0}{pc16550} +\abx@aux@cite{pc16550} +\abx@aux@segm{0}{0}{pc16550} +\abx@aux@cite{max232} +\abx@aux@segm{0}{0}{max232} +\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces The schematic of the UART Module\relax }}{10}{figure.caption.7}\protected@file@percent } +\newlabel{fig:schem_uart}{{7}{10}{The schematic of the UART Module\relax }{figure.caption.7}{}} +\@writefile{toc}{\contentsline {paragraph}{Element Description}{11}{figure.caption.7}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces Measurement of the 1.8432 MHz Output on J1\relax }}{11}{figure.caption.8}\protected@file@percent } +\newlabel{fig:uartquartz}{{8}{11}{Measurement of the 1.8432 MHz Output on J1\relax }{figure.caption.8}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces Measurement of a character transmission before and after MAX-232\relax }}{12}{figure.caption.9}\protected@file@percent } +\newlabel{fig:uart232}{{9}{12}{Measurement of a character transmission before and after MAX-232\relax }{figure.caption.9}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces Pinout of the RJ-45 Plug; Src: \url {https://www.wti.com/}\relax }}{12}{figure.caption.10}\protected@file@percent } +\newlabel{fig:rs232rj45}{{10}{12}{Pinout of the RJ-45 Plug; Src: \url {https://www.wti.com/}\relax }{figure.caption.10}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.7.4}Demonstration Software}{13}{subsubsection.2.7.4}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {11}{\ignorespaces Measurement of a character echo\relax }}{13}{figure.caption.11}\protected@file@percent } +\newlabel{fig:232_echo}{{11}{13}{Measurement of a character echo\relax }{figure.caption.11}{}} +\@writefile{toc}{\contentsline {paragraph}{Transmit code}{13}{figure.caption.11}\protected@file@percent } +\newlabel{lst:16550-general}{{1}{13}{Read and write routines for the 16550 UART}{lstlisting.1}{}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {1}Read and write routines for the 16550 UART}{13}{lstlisting.1}\protected@file@percent } +\abx@aux@cite{pc16550} +\abx@aux@segm{0}{0}{pc16550} +\newlabel{lst:16550-transmit}{{2}{15}{16550 INIT routines and single char transmission}{lstlisting.2}{}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {2}16550 INIT routines and single char transmission}{15}{lstlisting.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {12}{\ignorespaces Transmission of character A via the 16550 UART\relax }}{16}{figure.caption.12}\protected@file@percent } +\newlabel{fig:16550A}{{12}{16}{Transmission of character A via the 16550 UART\relax }{figure.caption.12}{}} +\@writefile{toc}{\contentsline {paragraph}{Echo code}{16}{figure.caption.12}\protected@file@percent } +\newlabel{lst:16550-echo}{{3}{16}{16550 character echo}{lstlisting.3}{}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {3}16550 character echo}{16}{lstlisting.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3}Textadventure}{17}{section.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}General Implementation details}{18}{subsection.3.1}\protected@file@percent } +\newlabel{lst:textadv-avr.h}{{4}{18}{The avr.h header file}{lstlisting.4}{}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {4}The avr.h header file}{18}{lstlisting.4}\protected@file@percent } +\babel@aux{ngerman}{} +\@writefile{toc}{\contentsline {section}{\numberline {4}Erkl"arung der Eigenst"andigkeit der Arbeit}{20}{section.4}\protected@file@percent } +\HyPL@Entry{24<>} +\babel@aux{english}{} +\@writefile{toc}{\contentsline {section}{\numberline {I\tmspace +\thickmuskip {.2777em}}List of Figures}{I}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {II\tmspace +\thickmuskip {.2777em}}List of Tables}{I}{section.2}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {III\tmspace +\thickmuskip {.2777em}}Listings}{I}{section.3}\protected@file@percent } \@writefile{toc}{\contentsline {section}{Anhang}{II}{section.3}\protected@file@percent } +\abx@aux@refcontextdefaultsdone +\abx@aux@defaultrefcontext{0}{pc16550}{none/global//global/global} +\abx@aux@defaultrefcontext{0}{max232}{none/global//global/global} diff --git a/main.bbl b/main.bbl new file mode 100644 index 0000000..86d2200 --- /dev/null +++ b/main.bbl @@ -0,0 +1,57 @@ +% $ biblatex auxiliary file $ +% $ biblatex bbl format version 3.1 $ +% Do not modify the above lines! +% +% This is an auxiliary file used by the 'biblatex' package. +% This file may safely be deleted. It will be recreated by +% biber as required. +% +\begingroup +\makeatletter +\@ifundefined{ver@biblatex.sty} + {\@latex@error + {Missing 'biblatex' package} + {The bibliography requires the 'biblatex' package.} + \aftergroup\endinput} + {} +\endgroup + + +\refsection{0} + \datalist[entry]{none/global//global/global} + \entry{pc16550}{manual}{} + \list{organization}{1}{% + {Texas Instruments Inc.}% + } + \field{sortinit}{1} + \field{sortinithash}{50c6687d7fc80f50136d75228e3c59ba} + \field{labeltitlesource}{title} + \field{title}{PC16550D Universal Asynchronous Receiver/Transmitter With FIFOs} + \field{year}{1995} + \verb{urlraw} + \verb https://www.scs.stanford.edu/10wi-cs140/pintos/specs/pc16550d.pdf + \endverb + \verb{url} + \verb https://www.scs.stanford.edu/10wi-cs140/pintos/specs/pc16550d.pdf + \endverb + \endentry + \entry{max232}{manual}{} + \list{organization}{1}{% + {Texas Instruments Inc.}% + } + \field{sortinit}{3} + \field{sortinithash}{a37a8ef248a93c322189792c34fc68c9} + \field{labeltitlesource}{title} + \field{title}{MAX232x Dual EIA-232 Drivers/Receivers} + \field{year}{1989} + \verb{urlraw} + \verb https://www.ti.com/lit/ds/symlink/max232.pdf + \endverb + \verb{url} + \verb https://www.ti.com/lit/ds/symlink/max232.pdf + \endverb + \endentry + \enddatalist +\endrefsection +\endinput + diff --git a/main.bcf b/main.bcf index 4f23b28..8cc5a2e 100644 --- a/main.bcf +++ b/main.bcf @@ -66,7 +66,7 @@ labeldateparts - 1 + 0 labeldatespec @@ -95,7 +95,7 @@ maxcitenames - 1 + 3 maxsortnames @@ -111,15 +111,15 @@ minbibnames - 1 + 3 mincitenames - 1 + 3 minsortnames - 1 + 3 minitems @@ -163,7 +163,7 @@ sortingtemplatename - nty + none sortsets @@ -171,11 +171,11 @@ uniquelist - true + false uniquename - full + false uniqueprimaryauthor @@ -412,8 +412,7 @@ doi eprint related - dashed - ibidpage + subentry mincrossrefs minxrefs maxnames @@ -494,6 +493,7 @@ doi eprint related + subentry labelalphatemplate translit sortexclusion @@ -579,6 +579,7 @@ doi eprint related + subentry maxnames minnames maxbibnames @@ -2125,43 +2126,28 @@ + ./bibliographies/DP.bib + pc16550 + pc16550 + max232 + pc16550 + pc16550 + max232 + pc16550 - + - presort - - - sortkey - - - sortname - author - editor - translator - sorttitle - title - - - sorttitle - title - - - sortyear - year - - - volume - 0 + citeorder INFO - This is Biber 2.13 +[0] Config.pm:307> INFO - Logfile is 'main.blg' +[28] biber:315> INFO - === Thu Mar 19, 2020, 23:48:20 +[48] Biber.pm:375> INFO - Reading 'main.bcf' +[105] Biber.pm:905> INFO - Found 2 citekeys in bib section 0 +[116] Biber.pm:4196> INFO - Processing section 0 +[117] Utils.pm:75> INFO - Globbing data source './bibliographies/DP.bib' +[117] Utils.pm:91> INFO - Globbed data source './bibliographies/DP.bib' to ./bibliographies/DP.bib +[128] Biber.pm:4373> INFO - Looking for bibtex format file './bibliographies/DP.bib' for section 0 +[133] bibtex.pm:1462> INFO - LaTeX decoding ... +[140] bibtex.pm:1281> INFO - Found BibTeX data source './bibliographies/DP.bib' +[141] Utils.pm:300> WARN - BibTeX subsystem: /tmp/fPv9oRu8Nq/DP.bib_66732.utf8, line 26, warning: undefined macro "October" +[142] Utils.pm:300> WARN - BibTeX subsystem: /tmp/fPv9oRu8Nq/DP.bib_66732.utf8, line 33, warning: undefined macro "February" +[148] UCollate.pm:68> INFO - Overriding locale 'de-DE' defaults 'variable = shifted' with 'variable = non-ignorable' +[148] UCollate.pm:68> INFO - Overriding locale 'de-DE' defaults 'normalization = NFD' with 'normalization = prenormalized' +[148] Biber.pm:4024> INFO - Sorting list 'none/global//global/global' of type 'entry' with template 'none' and locale 'de-DE' +[148] Biber.pm:4030> INFO - No sort tailoring available for locale 'de-DE' +[158] bbl.pm:648> INFO - Writing 'main.bbl' with encoding 'UTF-8' +[158] bbl.pm:751> INFO - Output to main.bbl +[159] Biber.pm:110> INFO - WARNINGS: 2 diff --git a/main.lof b/main.lof index 9766587..bc6ff19 100644 --- a/main.lof +++ b/main.lof @@ -1,5 +1,21 @@ +\babel@toc {english}{} \boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} +\babel@toc {english}{} +\contentsline {figure}{\numberline {1}{\ignorespaces Atari PBI Pinout;Source: \url {https://www.atarimagazines.com}\relax }}{2}{figure.caption.1}% +\contentsline {figure}{\numberline {2}{\ignorespaces Digilent Analog Discovery 2;Source: \url {https://www.sparkfun.com/}\relax }}{4}{figure.caption.2}% +\contentsline {figure}{\numberline {3}{\ignorespaces Layout of the DIN41612 Connectors on the Backplane\relax }}{5}{figure.caption.3}% +\contentsline {figure}{\numberline {4}{\ignorespaces Measurement at around 1MHz bus clock on MS1\relax }}{6}{figure.caption.4}% +\contentsline {figure}{\numberline {5}{\ignorespaces The case with installed backplane\relax }}{7}{figure.caption.5}% +\contentsline {figure}{\numberline {6}{\ignorespaces PC-16550D Pinout\cite {pc16550}\relax }}{8}{figure.caption.6}% +\contentsline {figure}{\numberline {7}{\ignorespaces The schematic of the UART Module\relax }}{10}{figure.caption.7}% +\contentsline {figure}{\numberline {8}{\ignorespaces Measurement of the 1.8432 MHz Output on J1\relax }}{11}{figure.caption.8}% +\contentsline {figure}{\numberline {9}{\ignorespaces Measurement of a character transmission before and after MAX-232\relax }}{12}{figure.caption.9}% +\contentsline {figure}{\numberline {10}{\ignorespaces Pinout of the RJ-45 Plug; Src: \url {https://www.wti.com/}\relax }}{12}{figure.caption.10}% +\contentsline {figure}{\numberline {11}{\ignorespaces Measurement of a character echo\relax }}{13}{figure.caption.11}% +\contentsline {figure}{\numberline {12}{\ignorespaces Transmission of character A via the 16550 UART\relax }}{16}{figure.caption.12}% +\babel@toc {ngerman}{} +\babel@toc {english}{} diff --git a/main.log b/main.log index 639b7fd..89d9939 100644 --- a/main.log +++ b/main.log @@ -1,4 +1,4 @@ -This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Arch Linux) (preloaded format=xelatex 2020.3.9) 16 MAR 2020 00:22 +This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Arch Linux) (preloaded format=xelatex 2020.3.10) 20 MAR 2020 00:08 entering extended mode \write18 enabled. %&-line parsing enabled. @@ -1017,8 +1017,8 @@ Package biblatex Info: ... file 'blx-dm.def' found. (/usr/share/texmf-dist/tex/latex/biblatex/blx-dm.def File: blx-dm.def 2019/08/31 v3.13a biblatex localization (PK/MW) ) -Package biblatex Info: Trying to load biblatex style data model... -Package biblatex Info: ... file 'verbose.dbx' not found. +Package biblatex Info: Trying to load biblatex citestyle data model... +Package biblatex Info: ... file 'ieee.dbx' not found. Package biblatex Info: Trying to load biblatex custom data model... Package biblatex Info: ... file 'biblatex-dm.cfg' not found. \c@afterword=\count321 @@ -1132,16 +1132,11 @@ File: biblatex.def 2019/08/31 v3.13a biblatex compatibility (PK/MW) \biburllcskip=\muskip15 \c@smartand=\count397 ) -Package biblatex Info: Trying to load bibliography style 'verbose'... -Package biblatex Info: ... file 'verbose.bbx' found. +Package biblatex Info: Trying to load bibliography style 'numeric'... +Package biblatex Info: ... file 'numeric.bbx' found. -(/usr/share/texmf-dist/tex/latex/biblatex/bbx/verbose.bbx -File: verbose.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) -Package biblatex Info: Trying to load bibliography style 'authortitle'... -Package biblatex Info: ... file 'authortitle.bbx' found. - -(/usr/share/texmf-dist/tex/latex/biblatex/bbx/authortitle.bbx -File: authortitle.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) +(/usr/share/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx +File: numeric.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) Package biblatex Info: Trying to load bibliography style 'standard'... Package biblatex Info: ... file 'standard.bbx' found. @@ -1149,19 +1144,33 @@ Package biblatex Info: ... file 'standard.bbx' found. File: standard.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) \c@bbx:relatedcount=\count398 \c@bbx:relatedtotal=\count399 -))) -Package biblatex Info: Trying to load citation style 'authoryear-ibid'... -Package biblatex Info: ... file 'authoryear-ibid.cbx' found. +)) +Package biblatex Info: Trying to load citation style 'ieee'... +Package biblatex Info: ... file 'ieee.cbx' found. -(/usr/share/texmf-dist/tex/latex/biblatex/cbx/authoryear-ibid.cbx -File: authoryear-ibid.cbx 2019/08/31 v3.13a biblatex citation style (PK/MW) +(/usr/share/texmf-dist/tex/latex/biblatex-ieee/ieee.cbx +File: ieee.cbx 2019/06/19 v1.3a biblatex citation style +Package biblatex Info: Trying to load citation style 'numeric-comp'... +Package biblatex Info: ... file 'numeric-comp.cbx' found. + +(/usr/share/texmf-dist/tex/latex/biblatex/cbx/numeric-comp.cbx +File: numeric-comp.cbx 2019/08/31 v3.13a biblatex citation style (PK/MW) +\c@cbx@tempcnta=\count400 +\c@cbx@tempcntb=\count401 Package biblatex Info: Redefining '\cite'. Package biblatex Info: Redefining '\parencite'. Package biblatex Info: Redefining '\footcite'. Package biblatex Info: Redefining '\footcitetext'. Package biblatex Info: Redefining '\smartcite'. +Package biblatex Info: Redefining '\supercite'. Package biblatex Info: Redefining '\textcite'. Package biblatex Info: Redefining '\textcites'. +Package biblatex Info: Redefining '\cites'. +Package biblatex Info: Redefining '\parencites'. +Package biblatex Info: Redefining '\smartcites'. +) +Package biblatex Info: Redefining '\cite'. +Package biblatex Info: Redefining '\cites'. ) Package biblatex Info: Trying to load configuration file... Package biblatex Info: ... file 'biblatex.cfg' found. @@ -1171,12 +1180,12 @@ File: biblatex.cfg )) (/usr/share/texmf-dist/tex/latex/csquotes/csquotes.sty Package: csquotes 2019/05/10 v5.2e context-sensitive quotations (JAW) -\csq@reset=\count400 -\csq@gtype=\count401 -\csq@glevel=\count402 -\csq@qlevel=\count403 -\csq@maxlvl=\count404 -\csq@tshold=\count405 +\csq@reset=\count402 +\csq@gtype=\count403 +\csq@glevel=\count404 +\csq@qlevel=\count405 +\csq@maxlvl=\count406 +\csq@tshold=\count407 \csq@ltx@everypar=\toks48 (/usr/share/texmf-dist/tex/latex/csquotes/csquotes.def @@ -1190,7 +1199,7 @@ File: csquotes.cfg )) (/usr/share/texmf-dist/tex/latex/float/float.sty Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count406 +\c@float@type=\count408 \float@exts=\toks49 \float@box=\box81 \@float@everytoks=\toks50 @@ -1203,14 +1212,14 @@ Package: tabularx 2016/02/03 v2.11b `tabularx' package (DPC) \TX@old@col=\dimen266 \TX@target=\dimen267 \TX@delta=\dimen268 -\TX@cols=\count407 +\TX@cols=\count409 \TX@ftn=\toks51 ) (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty Package: geometry 2018/04/16 v5.8 Page Geometry -\Gm@cnth=\count408 -\Gm@cntv=\count409 -\c@Gm@tempcnt=\count410 +\Gm@cnth=\count410 +\Gm@cntv=\count411 +\c@Gm@tempcnt=\count412 \Gm@bindingoffset=\dimen269 \Gm@wd@mp=\dimen270 \Gm@odd@mp=\dimen271 @@ -1260,13 +1269,13 @@ Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) ) \@linkdim=\dimen277 -\Hy@linkcounter=\count411 -\Hy@pagecounter=\count412 +\Hy@linkcounter=\count413 +\Hy@pagecounter=\count414 (/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def File: pd1enc.def 2019/09/28 v7.00a Hyperref: PDFDocEncoding definition (HO) ) -\Hy@SavedSpaceFactor=\count413 +\Hy@SavedSpaceFactor=\count415 (/usr/share/texmf-dist/tex/latex/latexconfig/hyperref.cfg File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive @@ -1287,10 +1296,10 @@ Package hyperref Info: Plain pages OFF on input line 4555. Package hyperref Info: Backreferencing OFF on input line 4560. Package hyperref Info: Implicit mode ON; LaTeX internals redefined. Package hyperref Info: Bookmarks ON on input line 4793. -\c@Hy@tempcnt=\count414 +\c@Hy@tempcnt=\count416 LaTeX Info: Redefining \url on input line 5152. \XeTeXLinkMargin=\dimen278 -\Fld@menulength=\count415 +\Fld@menulength=\count417 \Field@Width=\dimen279 \Fld@charsize=\dimen280 Package hyperref Info: Hyper figures OFF on input line 6423. @@ -1302,9 +1311,9 @@ Package hyperref Info: Link coloring with OCG OFF on input line 6448. Package hyperref Info: PDF/A mode OFF on input line 6453. LaTeX Info: Redefining \ref on input line 6493. LaTeX Info: Redefining \pageref on input line 6497. -\Hy@abspage=\count416 -\c@Item=\count417 -\c@Hfootnote=\count418 +\Hy@abspage=\count418 +\c@Item=\count419 +\c@Hfootnote=\count420 ) Package hyperref Info: Driver (autodetected): hxetex. @@ -1316,10 +1325,10 @@ Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO ) ) \pdfm@box=\box83 -\c@Hy@AnnotLevel=\count419 -\HyField@AnnotCount=\count420 -\Fld@listcount=\count421 -\c@bookmark@seq@number=\count422 +\c@Hy@AnnotLevel=\count421 +\HyField@AnnotCount=\count422 +\Fld@listcount=\count423 +\c@bookmark@seq@number=\count424 (/usr/share/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) @@ -1367,14 +1376,14 @@ Package: pgfsys 2019/08/03 v3.1.4b (3.1.4b) \pgf@yd=\dimen292 \w@pgf@writea=\write5 \r@pgf@reada=\read4 -\c@pgf@counta=\count423 -\c@pgf@countb=\count424 -\c@pgf@countc=\count425 -\c@pgf@countd=\count426 +\c@pgf@counta=\count425 +\c@pgf@countb=\count426 +\c@pgf@countc=\count427 +\c@pgf@countd=\count428 \t@pgf@toka=\toks54 \t@pgf@tokb=\toks55 \t@pgf@tokc=\toks56 -\pgf@sys@id@count=\count427 +\pgf@sys@id@count=\count429 (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg File: pgf.cfg 2019/08/03 v3.1.4b (3.1.4b) @@ -1390,12 +1399,12 @@ File: pgfsys-dvipdfmx.def 2019/08/03 v3.1.4b (3.1.4b) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def File: pgfsys-common-pdf.def 2019/08/03 v3.1.4b (3.1.4b) ) -\pgfsys@objnum=\count428 +\pgfsys@objnum=\count430 ))) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex File: pgfsyssoftpath.code.tex 2019/08/03 v3.1.4b (3.1.4b) -\pgfsyssoftpath@smallbuffer@items=\count429 -\pgfsyssoftpath@bigbuffer@items=\count430 +\pgfsyssoftpath@smallbuffer@items=\count431 +\pgfsyssoftpath@bigbuffer@items=\count432 ) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex File: pgfsysprotocol.code.tex 2019/08/03 v3.1.4b (3.1.4b) @@ -1436,7 +1445,7 @@ File: pgfcorescopes.code.tex 2019/08/03 v3.1.4b (3.1.4b) \pgfpic=\box85 \pgf@hbox=\box86 \pgf@layerbox@main=\box87 -\pgf@picture@serial@count=\count431 +\pgf@picture@serial@count=\count433 ) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex File: pgfcoregraphicstate.code.tex 2019/08/03 v3.1.4b (3.1.4b) @@ -1464,8 +1473,8 @@ File: pgfcorearrows.code.tex 2019/08/03 v3.1.4b (3.1.4b) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex File: pgfcoreshade.code.tex 2019/08/03 v3.1.4b (3.1.4b) \pgf@max=\dimen316 -\pgf@sys@shading@range@num=\count432 -\pgf@shadingcount=\count433 +\pgf@sys@shading@range@num=\count434 +\pgf@shadingcount=\count435 ) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex File: pgfcoreimage.code.tex 2019/08/03 v3.1.4b (3.1.4b) @@ -1520,7 +1529,7 @@ Package: tikz 2019/08/03 v3.1.4b (3.1.4b) (/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te x File: pgflibraryplothandlers.code.tex 2019/08/03 v3.1.4b (3.1.4b) -\pgf@plot@mark@count=\count434 +\pgf@plot@mark@count=\count436 \pgfplotmarksize=\dimen321 ) \tikz@lastx=\dimen322 @@ -1535,17 +1544,17 @@ File: pgflibraryplothandlers.code.tex 2019/08/03 v3.1.4b (3.1.4b) \tikz@figbox@bg=\box91 \tikz@tempbox=\box92 \tikz@tempbox@bg=\box93 -\tikztreelevel=\count435 -\tikznumberofchildren=\count436 -\tikznumberofcurrentchild=\count437 -\tikz@fig@count=\count438 +\tikztreelevel=\count437 +\tikznumberofchildren=\count438 +\tikznumberofcurrentchild=\count439 +\tikz@fig@count=\count440 (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex File: pgfmodulematrix.code.tex 2019/08/03 v3.1.4b (3.1.4b) -\pgfmatrixcurrentrow=\count439 -\pgfmatrixcurrentcolumn=\count440 -\pgf@matrix@numberofcolumns=\count441 +\pgfmatrixcurrentrow=\count441 +\pgfmatrixcurrentcolumn=\count442 +\pgf@matrix@numberofcolumns=\count443 ) -\tikz@expandcount=\count442 +\tikz@expandcount=\count444 (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary topaths.code.tex @@ -1560,8 +1569,8 @@ Package: pgfplots 2018/03/28 v1.16 Data Visualization (1.16) \t@pgfplots@tokb=\toks60 \t@pgfplots@tokc=\toks61 \pgfplots@tmpa=\dimen330 -\c@pgfplots@coordindex=\count443 -\c@pgfplots@scanlineindex=\count444 +\c@pgfplots@coordindex=\count445 +\c@pgfplots@scanlineindex=\count446 (/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) (/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) @@ -1575,13 +1584,13 @@ oader.code.tex ext.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te x -\c@pgfplotsarray@tmp=\count445 +\c@pgfplotsarray@tmp=\count447 ) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t ex) (/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t ex -\c@pgfplotstable@counta=\count446 +\c@pgfplotstable@counta=\count448 \t@pgfplotstable@a=\toks62 ) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te @@ -1590,13 +1599,13 @@ x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading .code.tex -\c@pgfplotslibrarysurf@no=\count447 +\c@pgfplotslibrarysurf@no=\count449 (/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. pgfsys-xetex.def (/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. pgfsys-dvipdfmx.def -\c@pgfplotslibrarysurf@streamlen=\count448 +\c@pgfplotslibrarysurf@streamlen=\count450 )))) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) @@ -1618,7 +1627,7 @@ decorations.code.tex \pgfdecoratedinputsegmentcompleteddistance=\dimen333 \pgfdecoratedinputsegmentremainingdistance=\dimen334 \pgf@decorate@distancetomove=\dimen335 -\pgf@decorate@repeatstate=\count449 +\pgf@decorate@repeatstate=\count451 \pgfdecorationsegmentamplitude=\dimen336 \pgfdecorationsegmentlength=\dimen337 ) @@ -1632,7 +1641,7 @@ ons.pathmorphing.code.tex)) decorations.pathreplacing.code.tex (/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati ons.pathreplacing.code.tex)) -\pgfplots@numplots=\count450 +\pgfplots@numplots=\count452 \pgfplots@xmin@reg=\dimen338 \pgfplots@xmax@reg=\dimen339 \pgfplots@ymin@reg=\dimen340 @@ -1751,17 +1760,20 @@ File: tikzlibrarybackgrounds.code.tex 2019/08/03 v3.1.4b (3.1.4b) \pgf@layerbox@background=\box115 \pgf@layerboxsaved@background=\box116 ) -\tikztiming@numint=\count451 -\tikztiming@numfrac=\count452 +\tikztiming@numint=\count453 +\tikztiming@numfrac=\count454 \tikztiming@xunit=\skip112 \tikztiming@yunit=\skip113 -\tikztiming@debug=\count453 -\c@tikztiming@nrows=\count454 -\c@tikztimingrows=\count455 -\c@tikztimingtrans=\count456 -\c@tikztimingtranspos=\count457 +\tikztiming@debug=\count455 +\c@tikztiming@nrows=\count456 +\c@tikztimingrows=\count457 +\c@tikztimingtrans=\count458 +\c@tikztimingtranspos=\count459 ) -(/usr/share/texmf-dist/tex/latex/circuitikz/circuitikz.sty +(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/libraries/tikzlibraryexterna +l.code.tex +(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzexterna +lshared.code.tex)) (/usr/share/texmf-dist/tex/latex/circuitikz/circuitikz.sty Package: circuitikz 2019/10/12{} The CircuiTikz circuit drawing package version 0.9.5 @@ -1794,9 +1806,9 @@ File: pgflibrarycurvilinear.code.tex 2019/08/03 v3.1.4b (3.1.4b) ) \pgf@arrows@the@rigidity=\dimen355 )) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcirc.defines.tex -\pgf@circ@count@a=\count458 -\pgf@circ@count@b=\count459 -\pgf@circ@count@c=\count460 +\pgf@circ@count@a=\count460 +\pgf@circ@count@b=\count461 +\pgf@circ@count@c=\count462 \pgf@circ@res@up=\dimen356 \pgf@circ@res@down=\dimen357 \pgf@circ@res@zero=\dimen358 @@ -1814,7 +1826,7 @@ File: pgflibrarycurvilinear.code.tex 2019/08/03 v3.1.4b (3.1.4b) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcircmonopoles.tex) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcircbipoles.tex) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcirctripoles.tex -\pgf@circ@res@count=\count461 +\pgf@circ@res@count=\count463 ) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcircquadpoles.tex) (/usr/share/texmf-dist/tex/generic/circuitikz/pgfcircmultipoles.tex) @@ -1836,20 +1848,20 @@ Package: expl3 2019-10-28 L3 programming layer (loader) (/usr/share/texmf-dist/tex/latex/l3kernel/expl3-code.tex Package: expl3 2019-10-28 L3 programming layer (code) -\c_max_int=\count462 -\l_tmpa_int=\count463 -\l_tmpb_int=\count464 -\g_tmpa_int=\count465 -\g_tmpb_int=\count466 -\l__seq_internal_a_int=\count467 -\l__seq_internal_b_int=\count468 -\g__kernel_prg_map_int=\count469 -\c__ior_term_noprompt_ior=\count470 -\c_log_iow=\count471 -\l_iow_line_count_int=\count472 -\l__iow_line_target_int=\count473 -\l__iow_one_indent_int=\count474 -\l__iow_indent_int=\count475 +\c_max_int=\count464 +\l_tmpa_int=\count465 +\l_tmpb_int=\count466 +\g_tmpa_int=\count467 +\g_tmpb_int=\count468 +\l__seq_internal_a_int=\count469 +\l__seq_internal_b_int=\count470 +\g__kernel_prg_map_int=\count471 +\c__ior_term_noprompt_ior=\count472 +\c_log_iow=\count473 +\l_iow_line_count_int=\count474 +\l__iow_line_target_int=\count475 +\l__iow_one_indent_int=\count476 +\l__iow_indent_int=\count477 \c_zero_dim=\dimen367 \c_max_dim=\dimen368 \l_tmpa_dim=\dimen369 @@ -1868,76 +1880,76 @@ Package: expl3 2019-10-28 L3 programming layer (code) \l_tmpb_muskip=\muskip19 \g_tmpa_muskip=\muskip20 \g_tmpb_muskip=\muskip21 -\l_keys_choice_int=\count476 -\l__intarray_loop_int=\count477 +\l_keys_choice_int=\count478 +\l__intarray_loop_int=\count479 \c__intarray_sp_dim=\dimen373 -\g__intarray_font_int=\count478 -\c__fp_leading_shift_int=\count479 -\c__fp_middle_shift_int=\count480 -\c__fp_trailing_shift_int=\count481 -\c__fp_big_leading_shift_int=\count482 -\c__fp_big_middle_shift_int=\count483 -\c__fp_big_trailing_shift_int=\count484 -\c__fp_Bigg_leading_shift_int=\count485 -\c__fp_Bigg_middle_shift_int=\count486 -\c__fp_Bigg_trailing_shift_int=\count487 -\g__fp_array_int=\count488 -\l__fp_array_loop_int=\count489 -\l__sort_length_int=\count490 -\l__sort_min_int=\count491 -\l__sort_top_int=\count492 -\l__sort_max_int=\count493 -\l__sort_true_max_int=\count494 -\l__sort_block_int=\count495 -\l__sort_begin_int=\count496 -\l__sort_end_int=\count497 -\l__sort_A_int=\count498 -\l__sort_B_int=\count499 -\l__sort_C_int=\count500 -\l__str_internal_int=\count501 -\l__tl_analysis_normal_int=\count502 -\l__tl_analysis_index_int=\count503 -\l__tl_analysis_nesting_int=\count504 -\l__tl_analysis_type_int=\count505 -\l__regex_internal_a_int=\count506 -\l__regex_internal_b_int=\count507 -\l__regex_internal_c_int=\count508 -\l__regex_balance_int=\count509 -\l__regex_group_level_int=\count510 -\l__regex_mode_int=\count511 -\c__regex_cs_in_class_mode_int=\count512 -\c__regex_cs_mode_int=\count513 -\l__regex_catcodes_int=\count514 -\l__regex_default_catcodes_int=\count515 -\c__regex_catcode_L_int=\count516 -\c__regex_catcode_O_int=\count517 -\c__regex_catcode_A_int=\count518 -\c__regex_all_catcodes_int=\count519 -\l__regex_show_lines_int=\count520 -\l__regex_min_state_int=\count521 -\l__regex_max_state_int=\count522 -\l__regex_left_state_int=\count523 -\l__regex_right_state_int=\count524 -\l__regex_capturing_group_int=\count525 -\l__regex_min_pos_int=\count526 -\l__regex_max_pos_int=\count527 -\l__regex_curr_pos_int=\count528 -\l__regex_start_pos_int=\count529 -\l__regex_success_pos_int=\count530 -\l__regex_curr_char_int=\count531 -\l__regex_curr_catcode_int=\count532 -\l__regex_last_char_int=\count533 -\l__regex_case_changed_char_int=\count534 -\l__regex_curr_state_int=\count535 -\l__regex_step_int=\count536 -\l__regex_min_active_int=\count537 -\l__regex_max_active_int=\count538 -\l__regex_replacement_csnames_int=\count539 -\l__regex_match_count_int=\count540 -\l__regex_min_submatch_int=\count541 -\l__regex_submatch_int=\count542 -\l__regex_zeroth_submatch_int=\count543 -\g__regex_trace_regex_int=\count544 +\g__intarray_font_int=\count480 +\c__fp_leading_shift_int=\count481 +\c__fp_middle_shift_int=\count482 +\c__fp_trailing_shift_int=\count483 +\c__fp_big_leading_shift_int=\count484 +\c__fp_big_middle_shift_int=\count485 +\c__fp_big_trailing_shift_int=\count486 +\c__fp_Bigg_leading_shift_int=\count487 +\c__fp_Bigg_middle_shift_int=\count488 +\c__fp_Bigg_trailing_shift_int=\count489 +\g__fp_array_int=\count490 +\l__fp_array_loop_int=\count491 +\l__sort_length_int=\count492 +\l__sort_min_int=\count493 +\l__sort_top_int=\count494 +\l__sort_max_int=\count495 +\l__sort_true_max_int=\count496 +\l__sort_block_int=\count497 +\l__sort_begin_int=\count498 +\l__sort_end_int=\count499 +\l__sort_A_int=\count500 +\l__sort_B_int=\count501 +\l__sort_C_int=\count502 +\l__str_internal_int=\count503 +\l__tl_analysis_normal_int=\count504 +\l__tl_analysis_index_int=\count505 +\l__tl_analysis_nesting_int=\count506 +\l__tl_analysis_type_int=\count507 +\l__regex_internal_a_int=\count508 +\l__regex_internal_b_int=\count509 +\l__regex_internal_c_int=\count510 +\l__regex_balance_int=\count511 +\l__regex_group_level_int=\count512 +\l__regex_mode_int=\count513 +\c__regex_cs_in_class_mode_int=\count514 +\c__regex_cs_mode_int=\count515 +\l__regex_catcodes_int=\count516 +\l__regex_default_catcodes_int=\count517 +\c__regex_catcode_L_int=\count518 +\c__regex_catcode_O_int=\count519 +\c__regex_catcode_A_int=\count520 +\c__regex_all_catcodes_int=\count521 +\l__regex_show_lines_int=\count522 +\l__regex_min_state_int=\count523 +\l__regex_max_state_int=\count524 +\l__regex_left_state_int=\count525 +\l__regex_right_state_int=\count526 +\l__regex_capturing_group_int=\count527 +\l__regex_min_pos_int=\count528 +\l__regex_max_pos_int=\count529 +\l__regex_curr_pos_int=\count530 +\l__regex_start_pos_int=\count531 +\l__regex_success_pos_int=\count532 +\l__regex_curr_char_int=\count533 +\l__regex_curr_catcode_int=\count534 +\l__regex_last_char_int=\count535 +\l__regex_case_changed_char_int=\count536 +\l__regex_curr_state_int=\count537 +\l__regex_step_int=\count538 +\l__regex_min_active_int=\count539 +\l__regex_max_active_int=\count540 +\l__regex_replacement_csnames_int=\count541 +\l__regex_match_count_int=\count542 +\l__regex_min_submatch_int=\count543 +\l__regex_submatch_int=\count544 +\l__regex_zeroth_submatch_int=\count545 +\g__regex_trace_regex_int=\count546 \c_empty_box=\box117 \l_tmpa_box=\box118 \l_tmpb_box=\box119 @@ -1988,17 +2000,17 @@ File: l3deprecation.def 2019-04-06 v L3 Deprecated functions )) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-xdvipdfmx.def File: l3backend-xdvipdfmx.def 2019-04-06 L3 backend support: xdvipdfmx -\g__graphics_track_int=\count545 +\g__graphics_track_int=\count547 \l__pdf_internal_box=\box135 -\g__pdf_backend_object_int=\count546 -\g__pdf_backend_annotation_int=\count547 +\g__pdf_backend_object_int=\count548 +\g__pdf_backend_annotation_int=\count549 )) (/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty Package: xparse 2019-10-11 L3 Experimental document command parser -\l__xparse_current_arg_int=\count548 -\g__xparse_grabber_int=\count549 -\l__xparse_m_args_int=\count550 -\l__xparse_v_nesting_int=\count551 +\l__xparse_current_arg_int=\count550 +\g__xparse_grabber_int=\count551 +\l__xparse_m_args_int=\count552 +\l__xparse_v_nesting_int=\count553 ) Package: siunitx 2019/10/10 v2.7t A comprehensive (SI) units package @@ -2007,27 +2019,27 @@ Package: l3keys2e 2019-10-11 LaTeX2e option processing using LaTeX3 keys ) \l__siunitx_tmp_box=\box136 \l__siunitx_tmp_dim=\dimen399 -\l__siunitx_tmp_int=\count552 -\l__siunitx_number_mantissa_length_int=\count553 -\l__siunitx_number_uncert_length_int=\count554 -\l__siunitx_round_int=\count555 -\l__siunitx_process_decimal_int=\count556 -\l__siunitx_process_uncertainty_int=\count557 -\l__siunitx_process_fixed_int=\count558 -\l__siunitx_process_integer_min_int=\count559 -\l__siunitx_process_precision_int=\count560 -\l__siunitx_group_min_int=\count561 +\l__siunitx_tmp_int=\count554 +\l__siunitx_number_mantissa_length_int=\count555 +\l__siunitx_number_uncert_length_int=\count556 +\l__siunitx_round_int=\count557 +\l__siunitx_process_decimal_int=\count558 +\l__siunitx_process_uncertainty_int=\count559 +\l__siunitx_process_fixed_int=\count560 +\l__siunitx_process_integer_min_int=\count561 +\l__siunitx_process_precision_int=\count562 +\l__siunitx_group_min_int=\count563 \l__siunitx_angle_marker_box=\box137 \l__siunitx_angle_unit_box=\box138 \l__siunitx_angle_marker_dim=\dimen400 \l__siunitx_angle_unit_dim=\dimen401 -\l__siunitx_unit_int=\count562 -\l__siunitx_unit_denominator_int=\count563 -\l__siunitx_unit_numerator_int=\count564 -\l__siunitx_unit_prefix_int=\count565 -\l__siunitx_unit_prefix_base_int=\count566 -\l__siunitx_unit_prefix_gram_int=\count567 -\l__siunitx_number_product_int=\count568 +\l__siunitx_unit_int=\count564 +\l__siunitx_unit_denominator_int=\count565 +\l__siunitx_unit_numerator_int=\count566 +\l__siunitx_unit_prefix_int=\count567 +\l__siunitx_unit_prefix_base_int=\count568 +\l__siunitx_unit_prefix_gram_int=\count569 +\l__siunitx_number_product_int=\count570 \c__siunitx_one_fill_skip=\skip120 \l__siunitx_table_unit_align_skip=\skip121 \l__siunitx_table_exponent_dim=\dimen402 @@ -2091,8 +2103,8 @@ LaTeX Info: Redefining \scriptstyle on input line 97. LaTeX Info: Redefining \scriptscriptstyle on input line 99. LaTeX Info: Redefining \genfrac on input line 145. )) -\inf@bad=\count569 -\maxint=\count570 +\inf@bad=\count571 +\maxint=\count572 \listwidth=\dimen411 \eqnumsep=\dimen412 \eqmargin=\dimen413 @@ -2103,12 +2115,12 @@ LaTeX Info: Redefining \genfrac on input line 145. \eqdelimoffset=\muskip23 \eqindentstep=\dimen415 \eqstyle=\toks63 -\eqbreakdepth=\count571 -\eqinterlinepenalty=\count572 -\intereqpenalty=\count573 +\eqbreakdepth=\count573 +\eqinterlinepenalty=\count574 +\intereqpenalty=\count575 \intereqskip=\skip126 -\prerelpenalty=\count574 -\prebinoppenalty=\count575 +\prerelpenalty=\count576 +\prebinoppenalty=\count577 \Dmedmuskip=\muskip24 \Dthickmuskip=\muskip25 \eqleftskip=\skip127 @@ -2121,10 +2133,10 @@ LaTeX Info: Redefining \genfrac on input line 145. \eq@wdNum=\dimen416 \GRP@numbox=\box146 \grp@wdNum=\dimen417 -\eq@lines=\count576 -\eq@curline=\count577 -\eq@badness=\count578 -\EQ@vims=\count579 +\eq@lines=\count578 +\eq@curline=\count579 +\eq@badness=\count580 +\EQ@vims=\count581 \eq@dp=\dimen418 \eq@wdL=\dimen419 \eq@wdT=\dimen420 @@ -2141,16 +2153,16 @@ LaTeX Info: Redefining \genfrac on input line 145. \eq@hshift=\dimen431 \eq@given@sidespace=\dimen432 \mathindent=\dimen433 -\eq@final@linecount=\count580 +\eq@final@linecount=\count582 \eq@wdR=\dimen434 \EQ@continue=\toks64 -\lr@level=\count581 +\lr@level=\count583 \GRP@queue=\toks65 \GRP@box=\box147 \GRP@wholebox=\box148 \darraycolsep=\skip130 -\cur@row=\count582 -\cur@col=\count583 +\cur@row=\count584 +\cur@col=\count585 \conditionsep=\skip131 ) (/usr/share/texmf-dist/tex/latex/physics/physics.sty @@ -2170,8 +2182,8 @@ Package caption3 Info: TeX engine: e-TeX on input line 64. \caption@parindent=\dimen440 \caption@hangindent=\dimen441 ) -\c@caption@flags=\count584 -\c@ContinuedFloat=\count585 +\c@caption@flags=\count586 +\c@ContinuedFloat=\count587 Package caption Info: float package is loaded. Package caption Info: hyperref package is loaded. Package caption Info: listings package is loaded. @@ -2193,17 +2205,17 @@ Version of January 7th, 2002 by Andreas W. Wieland, awwieland@gmx.de \kvunitlength=\dimen442 -\kvrecursiondepth=\count586 -\kvindexcounter=\count587 -\kvxsize=\count588 -\kvysize=\count589 -\kvvarno=\count590 -\kvxvarno=\count591 -\kvyvarno=\count592 -\kvmarkstart=\count593 -\kvmarklength=\count594 -\kvmarknum=\count595 -\kvmarkmove=\count596 +\kvrecursiondepth=\count588 +\kvindexcounter=\count589 +\kvxsize=\count590 +\kvysize=\count591 +\kvvarno=\count592 +\kvxvarno=\count593 +\kvyvarno=\count594 +\kvmarkstart=\count595 +\kvmarklength=\count596 +\kvmarknum=\count597 +\kvmarkmove=\count598 \kvsavebox=\box149 ) (/usr/share/texmf-dist/tex/latex/mdframed/mdframed.sty Package: mdframed 2013/07/01 1.9b: mdframed @@ -2217,14 +2229,14 @@ Package zref Info: New property list: main on input line 759. Package zref Info: New property: default on input line 760. Package zref Info: New property: page on input line 761. ) -\c@abspage=\count597 +\c@abspage=\count599 Package zref Info: New property: abspage on input line 62. ) (/usr/share/texmf-dist/tex/latex/needspace/needspace.sty Package: needspace 2010/09/12 v1.3d reserve vertical space ) \mdf@templength=\skip132 -\c@mdf@globalstyle@cnt=\count598 +\c@mdf@globalstyle@cnt=\count600 \mdf@skipabove@length=\skip133 \mdf@skipbelow@length=\skip134 \mdf@leftmargin@length=\skip135 @@ -2300,16 +2312,16 @@ File: md-frame-0.mdf 2013/07/01\ 1.9b: md-frame-0 \mdf@horizontalspaceofbox=\skip196 \mdfsubtitleheight=\skip197 \mdfsubsubtitleheight=\skip198 -\c@mdfcountframes=\count599 +\c@mdfcountframes=\count601 ****** mdframed patching \endmdf@trivlist ****** -- success****** -\mdf@envdepth=\count600 -\c@mdf@env@i=\count601 -\c@mdf@env@ii=\count602 -\c@mdf@zref@counter=\count603 +\mdf@envdepth=\count602 +\c@mdf@env@i=\count603 +\c@mdf@env@ii=\count604 +\c@mdf@zref@counter=\count605 Package zref Info: New property: mdf@pagevalue on input line 895. ) (/usr/share/texmf-dist/tex/latex/lipsum/lipsum.sty @@ -2324,24 +2336,24 @@ Package: blindtext 2012/01/06 V2.0 blindtext-Package (/usr/share/texmf-dist/tex/latex/tools/xspace.sty Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) ) -\c@blindtext=\count604 -\c@Blindtext=\count605 -\c@blind@countparstart=\count606 -\blind@countxx=\count607 -\blindtext@numBlindtext=\count608 -\blind@countyy=\count609 -\c@blindlist=\count610 -\c@blindlistlevel=\count611 -\c@blindlist@level=\count612 -\blind@listitem=\count613 -\c@blind@listcount=\count614 -\c@blind@levelcount=\count615 -\blind@mathformula=\count616 -\blind@Mathformula=\count617 -\c@blind@randomcount=\count618 -\c@blind@randommax=\count619 -\c@blind@pangramcount=\count620 -\c@blind@pangrammax=\count621 +\c@blindtext=\count606 +\c@Blindtext=\count607 +\c@blind@countparstart=\count608 +\blind@countxx=\count609 +\blindtext@numBlindtext=\count610 +\blind@countyy=\count611 +\c@blindlist=\count612 +\c@blindlistlevel=\count613 +\c@blindlist@level=\count614 +\blind@listitem=\count615 +\c@blind@listcount=\count616 +\c@blind@levelcount=\count617 +\blind@mathformula=\count618 +\blind@Mathformula=\count619 +\c@blind@randomcount=\count620 +\c@blind@randommax=\count621 +\c@blind@pangramcount=\count622 +\c@blind@pangrammax=\count623 ) (/usr/share/texmf-dist/tex/latex/titlesec/titlesec.sty Package: titlesec 2019/10/16 v2.13 Sectioning titles @@ -2370,34 +2382,34 @@ File: pgflibrarypatterns.code.tex 2019/08/03 v3.1.4b (3.1.4b) File: pgfcalendar.code.tex 2019/08/03 v3.1.4b (3.1.4b) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -\pgfcalendarcurrentjulian=\count622 -\pgf@cal@easter@Y=\count623 -\pgf@cal@easter@G=\count624 -\pgf@cal@easter@C=\count625 -\pgf@cal@easter@X=\count626 -\pgf@cal@easter@Z=\count627 -\pgf@cal@easter@D=\count628 -\pgf@cal@easter@E=\count629 -\pgf@cal@easter@N=\count630 -\pgf@cal@easter@M=\count631 -\pgf@cal@easter@julianday=\count632 +\pgfcalendarcurrentjulian=\count624 +\pgf@cal@easter@Y=\count625 +\pgf@cal@easter@G=\count626 +\pgf@cal@easter@C=\count627 +\pgf@cal@easter@X=\count628 +\pgf@cal@easter@Z=\count629 +\pgf@cal@easter@D=\count630 +\pgf@cal@easter@E=\count631 +\pgf@cal@easter@N=\count632 +\pgf@cal@easter@M=\count633 +\pgf@cal@easter@julianday=\count634 )) -\gtt@currentline=\count633 -\gtt@lasttitleline=\count634 -\gtt@currgrid=\count635 -\gtt@chartwidth=\count636 -\gtt@lasttitleslot=\count637 -\gtt@elementid=\count638 -\gtt@today@slot=\count639 -\gtt@startjulian=\count640 -\gtt@endjulian=\count641 -\gtt@chartid=\count642 -\gtt@vrule@slot=\count643 -\gtt@calendar@slots=\count644 -\gtt@calendar@weeknumber=\count645 -\gtt@calendar@startofweek=\count646 -\gtt@left@slot=\count647 -\gtt@right@slot=\count648 +\gtt@currentline=\count635 +\gtt@lasttitleline=\count636 +\gtt@currgrid=\count637 +\gtt@chartwidth=\count638 +\gtt@lasttitleslot=\count639 +\gtt@elementid=\count640 +\gtt@today@slot=\count641 +\gtt@startjulian=\count642 +\gtt@endjulian=\count643 +\gtt@chartid=\count644 +\gtt@vrule@slot=\count645 +\gtt@calendar@slots=\count646 +\gtt@calendar@weeknumber=\count647 +\gtt@calendar@startofweek=\count648 +\gtt@left@slot=\count649 +\gtt@right@slot=\count650 ) (/usr/share/texmf-dist/tex/latex/tocloft/tocloft.sty Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting @@ -2428,8 +2440,8 @@ Package tocloft Info: The document has section divisions on input line 51. \cftbeforefigskip=\skip280 \cftfigindent=\skip281 \cftfignumwidth=\skip282 -\c@lofdepth=\count649 -\c@lotdepth=\count650 +\c@lofdepth=\count651 +\c@lotdepth=\count652 \cftbeforelottitleskip=\skip283 \cftafterlottitleskip=\skip284 \cftbeforetabskip=\skip285 @@ -2532,7 +2544,7 @@ LaTeX Font Info: Trying to load font information for T1+pxss on input line 2 (/usr/share/texmf-dist/tex/latex/pxfonts/t1pxss.fd File: t1pxss.fd 2000/12/14 v1.0 ) -\c@lstlisting=\count651 +\c@lstlisting=\count653 Package biblatex Info: XeTeX detected. (biblatex) Assuming input encoding 'utf8'. Package biblatex Info: Automatic encoding selection. @@ -2540,11 +2552,11 @@ Package biblatex Info: Automatic encoding selection. \openout4 = `main.bcf'. Package biblatex Info: Trying to load bibliographic data... -Package biblatex Info: ... file 'main.bbl' not found. - -No file main.bbl. +Package biblatex Info: ... file 'main.bbl' found. + (./main.bbl) Package biblatex Info: Reference section=0 on input line 2. Package biblatex Info: Reference segment=0 on input line 2. + *geometry* driver: auto-detecting *geometry* detected driver: xetex *geometry* verbose mode - [ preamble ] result: @@ -2587,7 +2599,7 @@ Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section (/usr/share/texmf-dist/tex/generic/oberdiek/gettitlestring.sty Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) ) -\c@section@level=\count652 +\c@section@level=\count654 ) LaTeX Info: Redefining \ref on input line 2. LaTeX Info: Redefining \pageref on input line 2. @@ -2679,13 +2691,13 @@ File: pics/HTLgenlogo02.png Graphic file (type bmp) ] [1 ] (./sections/abstract.tex) -Underfull \hbox (badness 1168) in paragraph at lines 3--92 +Underfull \hbox (badness 1168) in paragraph at lines 3--96 \T1/pxss/m/n/12 Diese Di-plom-ar-beit be-schäf-tigt sich mit der Ar-beits-wei-s e von Pro-zes-so-ren und [] -Underfull \hbox (badness 10000) in paragraph at lines 3--92 +Underfull \hbox (badness 10000) in paragraph at lines 3--96 [] @@ -2696,7 +2708,7 @@ Underfull \hbox (badness 10000) in paragraph at lines 3--92 \openout7 = `main.toc'. Package svg Info: Last page of `./svg-inkscape/logoBpdf_svg-tex.pdf' is 1 on in -put line 100. +put line 104. (./svg-inkscape/logoBpdf_svg-tex.pdf_tex File: ./svg-inkscape/logoBpdf_svg-tex.pdf Graphic file (type pdf) @@ -2710,18 +2722,93 @@ Make it at least 67.34535pt. We now make it that large for the rest of the document. This may cause the page layout to be inconsistent, however. -[3] (./planung/DP/aufgabenstellung.tex) [1] -Overfull \hbox (2.54398pt too wide) in paragraph at lines 133--158 +[3] (./planung/DP/aufgabenstellung.tex) [1] (./sections/DP/PARALLELBUS/main.tex +File: pics/atari_pbi.png Graphic file (type bmp) + +LaTeX Font Info: Trying to load font information for T1+fvm on input line 19 +. +(/usr/share/texmf-dist/tex/latex/bera/t1fvm.fd +File: t1fvm.fd 2004/09/07 scalable font definitions for T1/fvm. +) [2 + +] +LaTeX Font Info: Trying to load font information for OMS+pxss on input line +46. +LaTeX Font Info: No file OMSpxss.fd. on input line 46. + + +LaTeX Font Warning: Font shape `OMS/pxss/m/n' undefined +(Font) using `OMS/pxsy/m/n' instead +(Font) for symbol `textbullet' on input line 46. + +) (./sections/DP/MEAS_TEST/main.tex [3] +File: pics/ad2.jpg Graphic file (type bmp) + +) (./sections/DP/CASE_BACKPLANE/main.tex [4] +File: schem_pdf/backplane_conn.pdf Graphic file (type pdf) + +PGFPlots: reading {meas/20200319reflexions.csv} + +Overfull \hbox (6.6012pt too wide) in paragraph at lines 37--38 +[][] + [] + +[5] +File: pics/case.jpg Graphic file (type bmp) + + [6]) (./sections/DP/UART/main.tex [7] +Package svg Info: Last page of `./svg-inkscape/pc16550d_pinout_svg-tex.pdf' is +1 on input line 29. + +(./svg-inkscape/pc16550d_pinout_svg-tex.pdf_tex +File: ./svg-inkscape/pc16550d_pinout_svg-tex.pdf Graphic file (type pdf) + +) [8] +File: schem_pdf/16550.pdf Graphic file (type pdf) + + +Overfull \hbox (1.5606pt too wide) in paragraph at lines 50--51 + [][] + [] + +[9] [10] +PGFPlots: reading {meas/20200319uartquartz.csv} +PGFPlots: reading {meas/20200218ttluart.csv} +PGFPlots: reading {meas/20200218ttluart.csv} + [11] +File: pics/rj45-consoleport-iface-500.png Graphic file (type bmp) + + [12] +PGFPlots: reading {meas/20200218echo.csv} +PGFPlots: reading {meas/20200218echo.csv} + (/usr/share/texmf-dist/tex/latex/listings/lstlang1.sty +File: lstlang1.sty 2019/09/10 1.8c listings language file +) +(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +) +(./code/16550/transmit/src/main.c [13] [14]) (./code/16550/transmit/src/main.c +[15]) +File: meas/20200211_first_trans.png Graphic file (type bmp) + + (./code/16550/echo/src/main.c [16])) (./sections/DP/textadv/main.tex +[17] (./code/textadv/include/avr.h [18]) +Underfull \hbox (badness 10000) in paragraph at lines 18--22 +[]\T1/pxss/m/n/12 The in list-ing []4[] shown de-fines MR_SHIFT, WR_SHIFT, RD_S +HIFT, + [] + +) [19] +Overfull \hbox (2.54398pt too wide) in paragraph at lines 145--170 []$ $[]$ [] -Overfull \hbox (2.54398pt too wide) in paragraph at lines 133--158 +Overfull \hbox (2.54398pt too wide) in paragraph at lines 145--170 []$ $[]$ [] -[2 - +[20 @@ -2737,19 +2824,15 @@ Overfull \hbox (2.54398pt too wide) in paragraph at lines 133--158 \tf@lol=\write10 \openout10 = `main.lol'. - - -LaTeX Warning: Empty bibliography on input line 168. - -[1 + [1 ] [2 ] -Package atveryend Info: Empty hook `BeforeClearDocument' on input line 201. -Package atveryend Info: Empty hook `AfterLastShipout' on input line 201. +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 214. +Package atveryend Info: Empty hook `AfterLastShipout' on input line 214. (./main.aux) -Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 201. +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 214. *File List* @@ -2871,9 +2954,9 @@ blx-unicode.def blx-compat.def 2019/08/31 v3.13a biblatex compatibility (PK/MW) biblatex.def 2019/08/31 v3.13a biblatex compatibility (PK/MW) standard.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) -authortitle.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) - verbose.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) -authoryear-ibid.cbx 2019/08/31 v3.13a biblatex citation style (PK/MW) + numeric.bbx 2019/08/31 v3.13a biblatex bibliography style (PK/MW) +numeric-comp.cbx 2019/08/31 v3.13a biblatex citation style (PK/MW) + ieee.cbx 2019/06/19 v1.3a biblatex citation style biblatex.cfg csquotes.sty 2019/05/10 v5.2e context-sensitive quotations (JAW) csquotes.def 2019/05/10 v5.2e csquotes generic definitions (JAW) @@ -2971,6 +3054,7 @@ setspace.sty 2011/12/19 v6.7a set line spacing upxexa.fd 2000/12/14 v1.0 ot2cmr.fd 2001/08/11 v3.2c Computer Modern Cyrillic font definitions t1pxss.fd 2000/12/14 v1.0 + main.bbl nameref.sty 2019/09/16 v2.46 Cross-referencing by name of section gettitlestring.sty 2016/05/16 v1.5 Cleanup title references (HO) main.out @@ -2994,11 +3078,35 @@ sections/abstract.tex ./svg-inkscape/logoBpdf_svg-tex.pdf pics/HTLgenlogo02.png planung/DP/aufgabenstellung.tex +sections/DP/PARALLELBUS/main.tex +pics/atari_pbi.png + t1fvm.fd 2004/09/07 scalable font definitions for T1/fvm. +sections/DP/MEAS_TEST/main.tex +pics/ad2.jpg +sections/DP/CASE_BACKPLANE/main.tex +schem_pdf/backplane_conn.pdf +pics/case.jpg +sections/DP/UART/main.tex +./svg-inkscape/pc16550d_pinout_svg-tex.pdf_tex +./svg-inkscape/pc16550d_pinout_svg-tex.pdf +schem_pdf/16550.pdf +pics/rj45-consoleport-iface-500.png +lstlang1.sty 2019/09/10 1.8c listings language file + lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +code/16550/transmit/src/main.c +code/16550/transmit/src/main.c +meas/20200211_first_trans.png +code/16550/echo/src/main.c +sections/DP/textadv/main.tex +./code/textadv/include/avr.h *********** -Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 201. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 214. Package rerunfilecheck Info: File `main.out' has not changed. -(rerunfilecheck) Checksum: 6E1DE2855F120EB5A138FDE3527982B4. +(rerunfilecheck) Checksum: 70016B18B3D3B15CD82406346449A284. + +LaTeX Font Warning: Some font shapes were not available, defaults substituted. + Package logreq Info: Writing requests to 'main.run.xml'. \openout1 = `main.run.xml'. @@ -3008,12 +3116,12 @@ Package logreq Info: Writing requests to 'main.run.xml'. ### semi simple group (level 1) entered at line 70 (\begingroup) ### bottom level Here is how much of TeX's memory you used: - 80293 strings out of 492483 - 1781125 string characters out of 6134980 - 2839048 words of memory out of 5000000 - 83601 multiletter control sequences out of 15000+600000 - 605667 words of font info for 115 fonts, out of 8000000 for 9000 + 81789 strings out of 492483 + 1818622 string characters out of 6134979 + 4934719 words of memory out of 5000000 + 85021 multiletter control sequences out of 15000+600000 + 615741 words of font info for 133 fonts, out of 8000000 for 9000 1350 hyphenation exceptions out of 8191 - 67i,18n,108p,1149b,7104s stack positions out of 5000i,500n,10000p,200000b,80000s + 67i,18n,108p,1149b,7721s stack positions out of 5000i,500n,10000p,200000b,80000s -Output written on main.pdf (8 pages). +Output written on main.pdf (26 pages). diff --git a/main.lol b/main.lol index 2d52636..1ae73b2 100644 --- a/main.lol +++ b/main.lol @@ -1,4 +1,12 @@ +\babel@toc {english}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} +\babel@toc {english}{} +\contentsline {lstlisting}{\numberline {1}Read and write routines for the 16550 UART}{13}{lstlisting.1}% +\contentsline {lstlisting}{\numberline {2}16550 INIT routines and single char transmission}{15}{lstlisting.2}% +\contentsline {lstlisting}{\numberline {3}16550 character echo}{16}{lstlisting.3}% +\contentsline {lstlisting}{\numberline {4}The avr.h header file}{18}{lstlisting.4}% +\babel@toc {ngerman}{} +\babel@toc {english}{} diff --git a/main.lot b/main.lot index 9766587..bc67a04 100644 --- a/main.lot +++ b/main.lot @@ -1,5 +1,9 @@ +\babel@toc {english}{} \boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} \babel@toc {ngerman}{} +\babel@toc {english}{} +\babel@toc {ngerman}{} +\babel@toc {english}{} diff --git a/main.out b/main.out index 5c64004..64906cd 100644 --- a/main.out +++ b/main.out @@ -1,10 +1,32 @@ \BOOKMARK [1][-]{Doc-Start}{\376\377\000G\000e\000n\000d\000e\000r\000e\000r\000k\000l\000\344\000r\000u\000n\000g}{}% 1 \BOOKMARK [1][-]{Doc-Start}{\376\377\000K\000u\000r\000z\000f\000a\000s\000s\000u\000n\000g\000/\000A\000b\000s\000t\000r\000a\000c\000t}{}% 2 \BOOKMARK [1][-]{Doc-Start}{\376\377\000P\000r\000o\000j\000e\000k\000t\000e\000r\000g\000e\000b\000n\000i\000s}{}% 3 -\BOOKMARK [1][-]{section.1}{\376\377\000A\000u\000f\000g\000a\000b\000e\000n\000s\000t\000e\000l\000l\000u\000n\000g}{}% 4 -\BOOKMARK [2][-]{subsection.1.1}{\376\377\000D\000a\000n\000i\000e\000l\000\040\000P\000l\000a\000n\000k}{section.1}% 5 -\BOOKMARK [1][-]{section.2}{\376\377\000E\000r\000k\000l\000\344\000r\000u\000n\000g\000\040\000d\000e\000r\000\040\000E\000i\000g\000e\000n\000s\000t\000\344\000n\000d\000i\000g\000k\000e\000i\000t\000\040\000d\000e\000r\000\040\000A\000r\000b\000e\000i\000t}{}% 6 -\BOOKMARK [1][-]{section.1}{\376\377\000A\000b\000b\000i\000l\000d\000u\000n\000g\000s\000v\000e\000r\000z\000e\000i\000c\000h\000n\000i\000s}{}% 7 -\BOOKMARK [1][-]{section.2}{\376\377\000T\000a\000b\000e\000l\000l\000e\000n\000v\000e\000r\000z\000e\000i\000c\000h\000n\000i\000s}{}% 8 -\BOOKMARK [1][-]{section.3}{\376\377\000L\000i\000s\000t\000i\000n\000g\000s}{}% 9 -\BOOKMARK [1][-]{section.3}{\376\377\000A\000n\000h\000a\000n\000g}{}% 10 +\BOOKMARK [1][-]{section.1}{\376\377\000T\000a\000s\000k\000\040\000d\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{}% 4 +\BOOKMARK [2][-]{subsection.1.1}{\376\377\000H\000a\000r\000d\000w\000a\000r\000e}{section.1}% 5 +\BOOKMARK [1][-]{section.2}{\376\377\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000p\000e\000r\000i\000p\000h\000e\000r\000i\000a\000l\000s}{}% 6 +\BOOKMARK [2][-]{subsection.2.1}{\376\377\000P\000a\000r\000a\000l\000l\000e\000l\000\040\000b\000u\000s}{section.2}% 7 +\BOOKMARK [3][-]{subsubsection.2.1.1}{\376\377\000A\000d\000d\000r\000e\000s\000s\000\040\000B\000u\000s}{subsection.2.1}% 8 +\BOOKMARK [2][-]{subsection.2.2}{\376\377\000D\000a\000t\000a\000\040\000B\000u\000s}{section.2}% 9 +\BOOKMARK [2][-]{subsection.2.3}{\376\377\000C\000o\000n\000t\000r\000o\000l\000\040\000B\000u\000s}{section.2}% 10 +\BOOKMARK [3][-]{subsubsection.2.3.1}{\376\377\000M\000a\000s\000t\000e\000r\000\040\000R\000e\000s\000e\000t}{subsection.2.3}% 11 +\BOOKMARK [3][-]{subsubsection.2.3.2}{\376\377\000W\000r\000i\000t\000e\000\040\000N\000o\000t}{subsection.2.3}% 12 +\BOOKMARK [3][-]{subsubsection.2.3.3}{\376\377\000R\000e\000a\000d\000\040\000N\000o\000t}{subsection.2.3}% 13 +\BOOKMARK [3][-]{subsubsection.2.3.4}{\376\377\000M\000o\000d\000u\000l\000e\000\040\000S\000e\000l\000e\000c\000t\000\040\0001\000\040\000a\000n\000d\000\040\0002\000\040\000N\000o\000t}{subsection.2.3}% 14 +\BOOKMARK [2][-]{subsection.2.4}{\376\377\000T\000e\000s\000t\000i\000n\000g\000\040\000a\000n\000d\000\040\000M\000e\000a\000s\000u\000r\000e\000m\000e\000n\000t}{section.2}% 15 +\BOOKMARK [3][-]{subsubsection.2.4.1}{\376\377\000M\000e\000a\000s\000u\000r\000e\000m\000e\000n\000t\000s}{subsection.2.4}% 16 +\BOOKMARK [3][-]{subsubsection.2.4.2}{\376\377\000T\000e\000s\000t\000i\000n\000g}{subsection.2.4}% 17 +\BOOKMARK [2][-]{subsection.2.5}{\376\377\000B\000a\000c\000k\000p\000l\000a\000n\000e}{section.2}% 18 +\BOOKMARK [3][-]{subsubsection.2.5.1}{\376\377\000T\000e\000r\000m\000i\000n\000a\000t\000i\000o\000n\000\040\000r\000e\000s\000i\000s\000t\000o\000r\000s}{subsection.2.5}% 19 +\BOOKMARK [2][-]{subsection.2.6}{\376\377\000C\000a\000s\000e}{section.2}% 20 +\BOOKMARK [2][-]{subsection.2.7}{\376\377\000S\000e\000r\000i\000a\000l\000\040\000C\000o\000n\000s\000o\000l\000e}{section.2}% 21 +\BOOKMARK [3][-]{subsubsection.2.7.1}{\376\377\0001\0006\0005\0005\0000\000\040\000U\000A\000R\000T}{subsection.2.7}% 22 +\BOOKMARK [3][-]{subsubsection.2.7.2}{\376\377\000M\000A\000X\000-\0002\0003\0002}{subsection.2.7}% 23 +\BOOKMARK [3][-]{subsubsection.2.7.3}{\376\377\000S\000c\000h\000e\000m\000a\000t\000i\000c\000s}{subsection.2.7}% 24 +\BOOKMARK [3][-]{subsubsection.2.7.4}{\376\377\000D\000e\000m\000o\000n\000s\000t\000r\000a\000t\000i\000o\000n\000\040\000S\000o\000f\000t\000w\000a\000r\000e}{subsection.2.7}% 25 +\BOOKMARK [1][-]{section.3}{\376\377\000T\000e\000x\000t\000a\000d\000v\000e\000n\000t\000u\000r\000e}{}% 26 +\BOOKMARK [2][-]{subsection.3.1}{\376\377\000G\000e\000n\000e\000r\000a\000l\000\040\000I\000m\000p\000l\000e\000m\000e\000n\000t\000a\000t\000i\000o\000n\000\040\000d\000e\000t\000a\000i\000l\000s}{section.3}% 27 +\BOOKMARK [1][-]{section.4}{\376\377\000E\000r\000k\000l\000\344\000r\000u\000n\000g\000\040\000d\000e\000r\000\040\000E\000i\000g\000e\000n\000s\000t\000\344\000n\000d\000i\000g\000k\000e\000i\000t\000\040\000d\000e\000r\000\040\000A\000r\000b\000e\000i\000t}{}% 28 +\BOOKMARK [1][-]{section.1}{\376\377\000L\000i\000s\000t\000\040\000o\000f\000\040\000F\000i\000g\000u\000r\000e\000s}{}% 29 +\BOOKMARK [1][-]{section.2}{\376\377\000L\000i\000s\000t\000\040\000o\000f\000\040\000T\000a\000b\000l\000e\000s}{}% 30 +\BOOKMARK [1][-]{section.3}{\376\377\000L\000i\000s\000t\000i\000n\000g\000s}{}% 31 +\BOOKMARK [1][-]{section.3}{\376\377\000A\000n\000h\000a\000n\000g}{}% 32 diff --git a/main.pdf b/main.pdf index 143e621..a430bfa 100644 --- a/main.pdf +++ b/main.pdf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c41ebfb3de56d4cb5e8cc0eb1cb5bcab161a24249bff156d6cbfe2b30ad9cc2 -size 24274 +oid sha256:ecaafdc2e0854e9544fbeea9fddfdbce554d6b957b9c4467ec179635534835f1 +size 856725 diff --git a/main.run.xml b/main.run.xml index d8b1dcd..79c2ecf 100644 --- a/main.run.xml +++ b/main.run.xml @@ -55,9 +55,9 @@ blx-compat.def biblatex.def standard.bbx - authortitle.bbx - verbose.bbx - authoryear-ibid.cbx + numeric.bbx + numeric-comp.cbx + ieee.cbx biblatex.cfg german.lbx ngerman.lbx @@ -82,5 +82,8 @@ main.bcf + + ./bibliographies/DP.bib + diff --git a/main.tex b/main.tex index 897b622..e63a207 100644 --- a/main.tex +++ b/main.tex @@ -83,19 +83,23 @@ des generischen Maskulinums angewendet. Es wird an dieser Stelle darauf hingewiesen, dass die ausschlie"sliche Verwendung der m"annlichen Form geschlechtsunabh"angig verstanden werden soll. +This thesis is written in the language form if the generic masculin for improved +readability. It is pointed out that all masculin-only uses may and should be +interpreted as gender neutral. + %==================================================================================== \clearpage\vfill\newpage{} %==================================================================================== \subsection*{Kurzfassung/Abstract\markboth{}{Kurzfassung/Abstract}} \addcontentsline{toc}{section}{Kurzfassung/Abstract} \input{sections/abstract.tex} - \newpage \subsection*{Projektergebnis\markboth{}{Projektergebnis}} \addcontentsline{toc}{section}{Projektergebnis} %\input{sections/ergebnis.tex} TODO %==================================================================================== \pagestyle{plain} +\selectlanguage{english} \tableofcontents \newpage \pagestyle{fancy} @@ -109,15 +113,22 @@ geschlechtsunabh"angig verstanden werden soll. %\section{Einleitung} %\input{sections/einleitung.tex} TODO -\section{Aufgabenstellung} +\section{Task description} \DP\input{planung/DP/aufgabenstellung.tex} %\section{Planung} %\DP\input{planung/DP/planung.tex} \clearpage -% \MR\input{sections/Kapitel/MR/planungAufgabengenerator.tex} +\pagestyle{fancy} +\section{Hardware peripherials} +\DP\input{sections/DP/PARALLELBUS/main.tex} +\DP\input{sections/DP/MEAS_TEST/main.tex} +\DP\input{sections/DP/CASE_BACKPLANE/main.tex} +\DP\input{sections/DP/UART/main.tex} +\section{Textadventure} +\DP\input{sections/DP/textadv/main.tex} \clearpage %\MR\input{sections/Kapitel/MR/Aufgabengeneration.tex} @@ -127,6 +138,7 @@ geschlechtsunabh"angig verstanden werden soll. %==================================================================================== \allAuth +\selectlanguage{ngerman} \clearpage\vfill\newpage{} %==================================================================================== \section{Erkl"arung der Eigenst"andigkeit der Arbeit} @@ -160,12 +172,13 @@ geschlechtsunabh"angig verstanden werden soll. \clearpage\vfill\newpage{} \pagenumbering{Roman} %==================================================================================== +\selectlanguage{english} \renewcommand{\thesection}{\Roman{section}\;} \setcounter{section}{0} \listoffigures\thispagestyle{fancy} \listoftables\thispagestyle{fancy} \lstlistoflistings\thispagestyle{fancy} -\printbibliography[title={Literaturverzeichnis},heading=bibnumbered] +\printbibliography[title={Literaturverzeichnis}] %==================================================================================== \clearpage\vfill\newpage{} diff --git a/main.toc b/main.toc index 0428926..7307723 100644 --- a/main.toc +++ b/main.toc @@ -1,3 +1,4 @@ +\babel@toc {english}{} \boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax \babel@toc {ngerman}{} \babel@toc {ngerman}{} @@ -6,10 +7,38 @@ \babel@toc {ngerman}{} \babel@toc {ngerman}{} \contentsline {section}{Projektergebnis}{iii}{Doc-Start}% -\contentsline {section}{\numberline {1}Aufgabenstellung}{1}{section.1}% -\contentsline {subsection}{\numberline {1.1}Daniel Plank}{1}{subsection.1.1}% -\contentsline {section}{\numberline {2}Erkl"arung der Eigenst"andigkeit der Arbeit}{2}{section.2}% -\contentsline {section}{\numberline {I\tmspace +\thickmuskip {.2777em}}Abbildungsverzeichnis}{I}{section.1}% -\contentsline {section}{\numberline {II\tmspace +\thickmuskip {.2777em}}Tabellenverzeichnis}{I}{section.2}% +\babel@toc {english}{} +\contentsline {section}{\numberline {1}Task description}{1}{section.1}% +\contentsline {subsection}{\numberline {1.1}Hardware}{1}{subsection.1.1}% +\contentsline {section}{\numberline {2}Hardware peripherials}{2}{section.2}% +\contentsline {subsection}{\numberline {2.1}Parallel bus}{2}{subsection.2.1}% +\contentsline {subsubsection}{\numberline {2.1.1}Address Bus}{2}{subsubsection.2.1.1}% +\contentsline {subsection}{\numberline {2.2}Data Bus}{3}{subsection.2.2}% +\contentsline {subsection}{\numberline {2.3}Control Bus}{3}{subsection.2.3}% +\contentsline {subsubsection}{\numberline {2.3.1}Master Reset}{3}{subsubsection.2.3.1}% +\contentsline {subsubsection}{\numberline {2.3.2}Write Not}{3}{subsubsection.2.3.2}% +\contentsline {subsubsection}{\numberline {2.3.3}Read Not}{3}{subsubsection.2.3.3}% +\contentsline {subsubsection}{\numberline {2.3.4}Module Select 1 and 2 Not}{3}{subsubsection.2.3.4}% +\contentsline {subsection}{\numberline {2.4}Testing and Measurement}{4}{subsection.2.4}% +\contentsline {subsubsection}{\numberline {2.4.1}Measurements}{4}{subsubsection.2.4.1}% +\contentsline {subsubsection}{\numberline {2.4.2}Testing}{4}{subsubsection.2.4.2}% +\contentsline {subsection}{\numberline {2.5}Backplane}{5}{subsection.2.5}% +\contentsline {subsubsection}{\numberline {2.5.1}Termination resistors}{5}{subsubsection.2.5.1}% +\contentsline {subsection}{\numberline {2.6}Case}{6}{subsection.2.6}% +\contentsline {subsection}{\numberline {2.7}Serial Console}{8}{subsection.2.7}% +\contentsline {subsubsection}{\numberline {2.7.1}16550 UART}{8}{subsubsection.2.7.1}% +\contentsline {subsubsection}{\numberline {2.7.2}MAX-232}{9}{subsubsection.2.7.2}% +\contentsline {subsubsection}{\numberline {2.7.3}Schematics}{9}{subsubsection.2.7.3}% +\contentsline {paragraph}{Element Description}{11}{figure.caption.7}% +\contentsline {subsubsection}{\numberline {2.7.4}Demonstration Software}{13}{subsubsection.2.7.4}% +\contentsline {paragraph}{Transmit code}{13}{figure.caption.11}% +\contentsline {paragraph}{Echo code}{16}{figure.caption.12}% +\contentsline {section}{\numberline {3}Textadventure}{17}{section.3}% +\contentsline {subsection}{\numberline {3.1}General Implementation details}{18}{subsection.3.1}% +\babel@toc {ngerman}{} +\contentsline {section}{\numberline {4}Erkl"arung der Eigenst"andigkeit der Arbeit}{20}{section.4}% +\babel@toc {english}{} +\contentsline {section}{\numberline {I\tmspace +\thickmuskip {.2777em}}List of Figures}{I}{section.1}% +\contentsline {section}{\numberline {II\tmspace +\thickmuskip {.2777em}}List of Tables}{I}{section.2}% \contentsline {section}{\numberline {III\tmspace +\thickmuskip {.2777em}}Listings}{I}{section.3}% \contentsline {section}{Anhang}{II}{section.3}% diff --git a/meas/20200218echo.csv b/meas/20200218echo.csv index db82333..a52f097 100644 --- a/meas/20200218echo.csv +++ b/meas/20200218echo.csv @@ -1,8193 +1,4097 @@ -Time (s),Channel 1 (V),Channel 2 (V) --0.0002425644460856721,-5.590842845945429,-6.189190631740201 +t,c1,c2 -0.0002424344460856721,-5.590842845945429,-6.189190631740201 --0.0002423044460856721,-5.59452209856021,-6.189190631740201 -0.0002421744460856721,-5.590842845945429,-6.196627933481501 --0.0002420444460856722,-5.605559856404549,-6.211502536964095 -0.0002419144460856722,-5.579805088101095,-6.166878726516321 --0.0002417844460856721,-5.583484340715867,-6.211502536964097 -0.0002416544460856721,-5.587163593330647,-6.200346584352151 --0.0002415244460856721,-5.587163593330647,-6.200346584352151 -0.0002413944460856721,-5.587163593330647,-6.192909282610851 --0.0002412644460856721,-5.583484340715865,-6.200346584352151 -0.0002411344460856721,-5.579805088101083,-6.192909282610851 --0.0002410044460856722,-5.583484340715865,-6.192909282610851 -0.0002408744460856722,-5.583484340715865,-6.185471980869555 --0.0002407444460856722,-5.583484340715865,-6.1891906317402 -0.0002406144460856721,-5.565088077641962,-6.181753329998904 --0.0002404844460856721,-5.576125835486302,-6.189190631740201 -0.0002403544460856721,-5.572446582871519,-6.185471980869552 --0.0002402244460856721,-5.576125835486302,-6.189190631740201 -0.0002400944460856721,-5.565088077641956,-6.185471980869552 --0.0002399644460856722,-5.572446582871519,-6.181753329998901 -0.0002398344460856722,-5.572446582871519,-6.18547198086955 --0.0002397044460856722,-5.572446582871519,-6.181753329998902 -0.0002395744460856721,-5.57980508810108,-6.181753329998902 --0.0002394444460856721,-5.572446582871519,-6.18547198086955 -0.0002393144460856721,-5.572446582871519,-6.181753329998901 --0.0002391844460856721,-5.568767330256738,-6.185471980869552 -0.0002390544460856721,-5.572446582871519,-6.181753329998901 --0.0002389244460856721,-5.561408825027174,-6.1520041230337 -0.0002387944460856722,-5.561408825027174,-6.166878726516294 --0.0002386644460856722,-5.561408825027174,-6.174316028257597 -0.0002385344460856721,-5.554050319797613,-6.178034679128254 --0.0002384044460856721,-5.557729572412392,-6.185471980869553 -0.0002382744460856721,-5.557729572412392,-6.189190631740201 --0.0002381444460856721,-5.557729572412392,-6.189190631740201 -0.0002380144460856721,-5.557729572412392,-6.196627933481501 --0.0002378844460856721,-5.550371067182828,-6.192909282610851 -0.0002377544460856722,-5.554050319797611,-6.192909282610851 --0.0002376244460856722,-5.554050319797611,-6.200346584352148 -0.0002374944460856721,-5.550371067182827,-6.196627933481501 --0.0002373644460856721,-5.546691814568047,-6.196627933481501 -0.0002372344460856721,-5.546691814568047,-6.196627933481501 --0.0002371044460856721,-5.546691814568047,-6.196627933481501 -0.0002369744460856721,-5.550371067182828,-6.204065235222801 --0.0002368444460856721,-5.535654056723701,-6.200346584352151 -0.0002367144460856722,-5.543012561953264,-6.200346584352151 --0.0002365844460856722,-5.539333309338485,-6.200346584352151 -0.0002364544460856722,-5.539333309338483,-6.200346584352151 --0.0002363244460856721,-5.543012561953263,-6.204065235222798 -0.0002361944460856721,-5.539333309338481,-6.196627933481515 --0.0002360644460856721,-5.535654056723701,-6.226377140446703 -0.0002359344460856721,-5.550371067182828,-6.174316028257601 --0.0002358044460856721,-5.539333309338483,-6.200346584352151 -0.0002356744460856722,-5.535654056723701,-6.200346584352151 --0.0002355444460856722,-5.535654056723701,-6.200346584352151 -0.0002354144460856722,-5.535654056723701,-6.204065235222799 --0.0002352844460856721,-5.531974804108917,-6.204065235222801 -0.0002351544460856721,-5.528295551494137,-6.204065235222801 --0.0002350244460856721,-5.528295551494137,-6.204065235222801 -0.0002348944460856721,-5.528295551494137,-6.200346584352151 --0.0002347644460856721,-5.524616298879356,-6.200346584352151 -0.0002346344460856721,-5.524616298879356,-6.200346584352151 --0.0002345044460856722,-5.528295551494136,-6.200346584352151 -0.0002343744460856722,-5.528295551494137,-6.211502536964097 --0.0002342444460856721,-5.528295551494136,-6.211502536964098 -0.0002341144460856721,-5.524616298879354,-6.204065235222801 --0.0002339844460856721,-5.520937046264573,-6.204065235222801 -0.0002338544460856721,-5.520937046264573,-6.200346584352151 --0.0002337244460856721,-5.517257793649792,-6.200346584352151 -0.0002335944460856721,-5.520937046264573,-6.196627933481501 --0.0002334644460856722,-5.520937046264573,-6.192909282610851 -0.0002333344460856722,-5.520937046264573,-6.1966279334815 --0.0002332044460856722,-5.517257793649794,-6.192909282610853 -0.0002330744460856721,-5.50989928842023,-6.192909282610851 --0.0002329444460856721,-5.51357854103501,-6.192909282610851 -0.0002328144460856721,-5.506220035805446,-6.185471980869552 --0.0002326844460856721,-5.506220035805446,-6.200346584352151 -0.0002325544460856721,-5.502540783190665,-6.196627933481501 --0.0002324244460856722,-5.502540783190665,-6.192909282610851 -0.0002322944460856722,-5.502540783190665,-6.192909282610851 --0.0002321644460856722,-5.498861530575884,-6.189190631740203 -0.0002320344460856721,-5.495182277961101,-6.19290928261085 --0.0002319044460856721,-5.495182277961101,-6.189190631740201 -0.0002317744460856721,-5.495182277961101,-6.189190631740201 --0.0002316444460856721,-5.487823772731537,-6.185471980869552 -0.0002315144460856721,-5.487823772731537,-6.185471980869552 --0.0002313844460856722,-5.495182277961101,-6.185471980869552 -0.0002312544460856722,-5.491503025346321,-6.181753329998902 --0.0002311244460856722,-5.49150302534632,-6.18547198086955 -0.0002309944460856721,-5.495182277961097,-6.185471980869548 --0.0002308644460856721,-5.487823772731537,-6.178034679128249 -0.0002307344460856721,-5.487823772731537,-6.174316028257601 --0.0002306044460856721,-5.487823772731537,-6.178034679128251 -0.0002304744460856721,-5.484144520116756,-6.178034679128251 --0.0002303444460856721,-5.49150302534632,-6.185471980869552 -0.0002302144460856722,-5.49150302534632,-6.1891906317402 --0.0002300844460856722,-5.487823772731539,-6.19290928261085 -0.0002299544460856721,-5.484144520116754,-6.174316028257603 --0.0002298244460856721,-5.480465267501971,-6.178034679128258 -0.0002296944460856721,-5.476786014887192,-6.192909282610851 --0.0002295644460856721,-5.543012561953264,-6.181753329998901 -0.0002294344460856721,-5.657069393011501,-6.189190631740201 --0.0002293044460856721,-5.726975192692357,-6.192909282610851 -0.0002291744460856722,-5.763767718840175,-6.166878726516301 --0.0002290444460856722,-5.782163981914076,-6.163160075645652 -0.0002289144460856722,-5.796880992373205,-6.170597377386947 --0.0002287844460856721,-5.796880992373207,-6.17431602825761 -0.0002286544460856721,-5.785843234528866,-6.192909282610851 --0.0002285244460856721,-5.778484729299302,-6.181753329998901 -0.0002283944460856721,-5.774805476684521,-6.189190631740201 --0.0002282644460856721,-5.778484729299302,-6.185471980869552 -0.0002281344460856722,-5.774805476684521,-6.192909282610851 --0.0002280044460856722,-5.778484729299301,-6.1966279334815 -0.0002278744460856722,-5.774805476684523,-6.196627933481501 --0.0002277444460856721,-5.774805476684521,-6.204065235222799 -0.0002276144460856721,-5.774805476684519,-6.200346584352153 --0.0002274844460856721,-5.771126224069739,-6.204065235222801 -0.0002273544460856721,-5.771126224069739,-6.204065235222801 --0.0002272244460856721,-5.778484729299302,-6.200346584352151 -0.0002270944460856721,-5.774805476684521,-6.204065235222801 --0.0002269644460856722,-5.774805476684521,-6.204065235222801 -0.0002268344460856722,-5.77112622406974,-6.200346584352153 --0.0002267044460856721,-5.767446971454959,-6.196627933481503 -0.0002265744460856721,-5.771126224069737,-6.200346584352153 --0.0002264444460856721,-5.767446971454957,-6.204065235222801 -0.0002263144460856721,-5.763767718840175,-6.200346584352151 --0.0002261844460856721,-5.763767718840175,-6.204065235222801 -0.0002260544460856721,-5.75272996099583,-6.200346584352151 --0.0002259244460856722,-5.760088466225393,-6.204065235222801 -0.0002257944460856722,-5.756409213610613,-6.204065235222801 --0.0002256644460856721,-5.760088466225391,-6.196627933481501 -0.0002255344460856721,-5.756409213610608,-6.196627933481505 --0.0002254044460856721,-5.749050708381048,-6.204065235222801 -0.0002252744460856721,-5.756409213610612,-6.196627933481501 --0.0002251444460856721,-5.749050708381048,-6.204065235222801 -0.0002250144460856721,-5.75272996099583,-6.207783886093452 --0.0002248844460856722,-5.745371455766266,-6.215221187834752 -0.0002247544460856722,-5.749050708381046,-6.207783886093456 --0.0002246244460856722,-5.749050708381048,-6.204065235222803 -0.0002244944460856721,-5.749050708381046,-6.204065235222805 --0.0002243644460856721,-5.74537145576627,-6.211502536964105 -0.0002242344460856721,-5.75272996099583,-6.218939838705402 --0.0002241044460856721,-5.741692203151485,-6.185471980869552 -0.0002239744460856721,-5.741692203151485,-6.215221187834752 --0.0002238444460856722,-5.745371455766266,-6.200346584352151 -0.0002237144460856722,-5.741692203151486,-6.196627933481503 --0.0002235844460856722,-5.734333697921924,-6.192909282610853 -0.0002234544460856721,-5.734333697921921,-6.192909282610851 --0.0002233244460856721,-5.734333697921922,-6.19290928261085 -0.0002231944460856721,-5.738012950536702,-6.189190631740201 --0.0002230644460856721,-5.726975192692357,-6.200346584352151 -0.0002229344460856721,-5.730654445307139,-6.189190631740201 --0.0002228044460856721,-5.723295940077575,-6.181753329998901 -0.0002226744460856722,-5.726975192692355,-6.192909282610846 --0.0002225444460856722,-5.730654445307137,-6.1966279334815 -0.0002224144460856721,-5.726975192692351,-6.192909282610853 --0.0002222844460856721,-5.715937434848017,-6.196627933481498 -0.0002221544460856721,-5.726975192692357,-6.189190631740201 --0.0002220244460856721,-5.715937434848011,-6.196627933481501 -0.0002218944460856721,-5.719616687462793,-6.196627933481501 --0.0002217644460856721,-5.71225818223323,-6.196627933481501 -0.0002216344460856722,-5.71225818223323,-6.196627933481501 --0.0002215044460856722,-5.719616687462789,-6.200346584352149 -0.0002213744460856721,-5.708578929618449,-6.196627933481503 --0.0002212444460856721,-5.712258182233226,-6.200346584352149 -0.0002211144460856721,-5.704899677003666,-6.196627933481501 --0.0002209844460856721,-5.71225818223323,-6.192909282610851 -0.0002208544460856721,-5.71225818223323,-6.192909282610851 --0.0002207244460856721,-5.708578929618447,-6.196627933481501 -0.0002205944460856722,-5.704899677003666,-6.192909282610851 --0.0002204644460856722,-5.704899677003666,-6.1966279334815 -0.0002203344460856722,-5.704899677003666,-6.192909282610853 --0.0002202044460856721,-5.697541171774105,-6.200346584352148 -0.0002200744460856721,-5.704899677003666,-6.192909282610853 --0.0002199444460856721,-5.704899677003666,-6.196627933481501 -0.0002198144460856721,-5.704899677003666,-6.196627933481501 --0.0002196844460856721,-5.708578929618447,-6.204065235222801 -0.0002195544460856722,-5.701220424388884,-6.200346584352151 --0.0002194244460856722,-5.708578929618444,-6.178034679128261 -0.0002192944460856722,-5.708578929618447,-6.178034679128251 --0.0002191644460856721,-5.704899677003664,-6.1966279334815 -0.0002190344460856721,-5.701220424388884,-6.192909282610855 --0.0002189044460856721,-5.701220424388884,-6.200346584352151 -0.0002187744460856721,-5.697541171774102,-6.200346584352151 --0.0002186444460856721,-5.690182666544539,-6.204065235222801 -0.0002185144460856721,-5.686503413929756,-6.207783886093452 --0.0002183844460856722,-5.686503413929756,-6.204065235222803 -0.0002182544460856722,-5.679144908700197,-6.230095791317341 --0.0002181244460856721,-5.693861919159315,-6.181753329998912 -0.0002179944460856721,-5.682824161314978,-6.207783886093452 --0.0002178644460856721,-5.690182666544539,-6.207783886093452 -0.0002177344460856721,-5.679144908700193,-6.200346584352151 --0.0002176044460856721,-5.686503413929756,-6.204065235222801 -0.0002174744460856721,-5.686503413929756,-6.204065235222801 --0.0002173444460856722,-5.675465656085411,-6.204065235222801 -0.0002172144460856722,-5.675465656085411,-6.196627933481505 --0.0002170844460856722,-5.675465656085411,-6.200346584352149 -0.0002169544460856721,-5.668107150855848,-6.1966279334815 --0.0002168244460856721,-5.668107150855848,-6.192909282610851 -0.0002166944460856721,-5.668107150855848,-6.192909282610851 --0.0002165644460856721,-5.668107150855848,-6.204065235222801 -0.0002164344460856721,-5.668107150855848,-6.200346584352151 --0.0002163044460856722,-5.664427898241065,-6.200346584352151 -0.0002161744460856722,-5.668107150855846,-6.192909282610855 --0.0002160444460856722,-5.664427898241067,-6.1966279334815 -0.0002159144460856721,-5.675465656085407,-6.200346584352153 --0.0002157844460856721,-5.668107150855846,-6.204065235222799 -0.0002156544460856721,-5.664427898241065,-6.200346584352151 --0.0002155244460856721,-5.668107150855848,-6.204065235222801 -0.0002153944460856721,-5.660748645626284,-6.196627933481501 --0.0002152644460856721,-5.664427898241065,-6.204065235222801 -0.0002151344460856722,-5.660748645626286,-6.200346584352153 --0.0002150044460856722,-5.660748645626284,-6.204065235222799 -0.0002148744460856721,-5.653390140396722,-6.204065235222803 --0.0002147444460856721,-5.657069393011498,-6.207783886093448 -0.0002146144460856721,-5.649710887781938,-6.200346584352151 --0.0002144844460856721,-5.646031635167156,-6.207783886093452 -0.0002143544460856721,-5.649710887781938,-6.200346584352151 --0.0002142244460856721,-5.646031635167156,-6.207783886093452 -0.0002140944460856722,-5.646031635167156,-6.200346584352151 --0.0002139644460856722,-5.646031635167156,-6.192909282610855 -0.0002138344460856721,-5.638673129937593,-6.19290928261085 --0.0002137044460856721,-5.638673129937593,-6.189190631740207 -0.0002135744460856721,-5.638673129937593,-6.200346584352151 --0.0002134444460856721,-5.634993877322811,-6.196627933481501 -0.0002133144460856721,-5.634993877322811,-6.200346584352151 --0.0002131844460856721,-5.634993877322811,-6.200346584352151 -0.0002130544460856722,-5.631314624708029,-6.200346584352151 --0.0002129244460856722,-5.634993877322809,-6.192909282610855 -0.0002127944460856722,-5.627635372093251,-6.204065235222796 --0.0002126644460856721,-5.627635372093251,-6.196627933481501 -0.0002125344460856721,-5.634993877322807,-6.196627933481505 --0.0002124044460856721,-5.627635372093247,-6.204065235222801 -0.0002122744460856721,-5.627635372093247,-6.211502536964102 --0.0002121444460856721,-5.616597614248902,-6.181753329998901 -0.0002120144460856722,-5.623956119478465,-6.189190631740201 --0.0002118844460856722,-5.620276866863685,-6.19290928261085 -0.0002117544460856722,-5.627635372093244,-6.1966279334815 --0.0002116244460856721,-5.620276866863682,-6.189190631740201 -0.0002114944460856721,-5.6165976142489,-6.189190631740205 --0.0002113644460856721,-5.61291836163412,-6.196627933481501 -0.0002112344460856721,-5.620276866863684,-6.192909282610851 --0.0002111044460856721,-5.620276866863684,-6.189190631740201 -0.0002109744460856721,-5.61291836163412,-6.185471980869552 --0.0002108444460856722,-5.61291836163412,-6.1891906317402 -0.0002107144460856722,-5.62395611947846,-6.181753329998904 --0.0002105844460856721,-5.612918361634121,-6.189190631740198 -0.0002104544460856721,-5.616597614248898,-6.181753329998904 --0.0002103244460856721,-5.609239109019338,-6.189190631740201 -0.0002101944460856721,-5.61291836163412,-6.189190631740201 --0.0002100644460856721,-5.609239109019338,-6.185471980869552 -0.0002099344460856721,-5.605559856404557,-6.185471980869552 --0.0002098044460856722,-5.605559856404557,-6.185471980869552 -0.0002096744460856722,-5.605559856404557,-6.170597377386958 --0.0002095444460856721,-5.609239109019335,-6.163160075645655 -0.0002094144460856721,-5.601880603789774,-6.174316028257606 --0.0002092844460856721,-5.601880603789774,-6.185471980869552 -0.0002091544460856721,-5.598201351174993,-6.189190631740201 --0.0002090244460856721,-5.59452209856021,-6.196627933481501 -0.0002088944460856721,-5.59452209856021,-6.189190631740201 --0.0002087644460856722,-5.59452209856021,-6.192909282610851 -0.0002086344460856722,-5.59084284594543,-6.200346584352148 --0.0002085044460856722,-5.598201351174989,-6.200346584352151 -0.0002083744460856721,-5.59452209856021,-6.204065235222799 --0.0002082444460856721,-5.594522098560208,-6.200346584352148 -0.0002081144460856721,-5.590842845945429,-6.192909282610851 --0.0002079844460856721,-5.59452209856021,-6.200346584352151 -0.0002078544460856721,-5.590842845945429,-6.192909282610851 --0.0002077244460856722,-5.590842845945429,-6.196627933481501 -0.0002075944460856722,-5.583484340715868,-6.200346584352149 --0.0002074644460856722,-5.579805088101085,-6.200346584352151 -0.0002073344460856721,-5.583484340715868,-6.200346584352153 --0.0002072044460856721,-5.590842845945423,-6.204065235222801 -0.0002070744460856721,-5.579805088101083,-6.204065235222801 --0.0002069444460856721,-5.583484340715865,-6.207783886093452 -0.0002068144460856721,-5.583484340715865,-6.204065235222801 --0.0002066844460856721,-5.576125835486302,-6.211502536964102 -0.0002065544460856722,-5.576125835486302,-6.200346584352157 --0.0002064244460856722,-5.576125835486302,-6.211502536964097 -0.0002062944460856721,-5.568767330256736,-6.196627933481507 --0.0002061644460856721,-5.565088077641956,-6.20778388609345 -0.0002060344460856721,-5.565088077641956,-6.204065235222801 --0.0002059044460856721,-5.565088077641956,-6.204065235222801 -0.0002057744460856721,-5.565088077641956,-6.211502536964102 --0.0002056444460856721,-5.561408825027174,-6.204065235222801 -0.0002055144460856722,-5.565088077641956,-6.207783886093452 --0.0002053844460856722,-5.561408825027176,-6.207783886093452 -0.0002052544460856722,-5.557729572412394,-6.207783886093452 --0.0002051244460856721,-5.557729572412391,-6.204065235222798 -0.0002049944460856721,-5.554050319797611,-6.196627933481501 --0.0002048644460856721,-5.557729572412392,-6.200346584352151 -0.0002047344460856721,-5.554050319797611,-6.207783886093452 --0.0002046044460856721,-5.561408825027174,-6.211502536964102 -0.0002044744460856722,-5.554050319797611,-6.204065235222801 --0.0002043444460856722,-5.554050319797611,-6.204065235222801 -0.0002042144460856722,-5.55037106718283,-6.189190631740209 --0.0002040844460856721,-5.546691814568049,-6.189190631740203 -0.0002039544460856721,-5.550371067182827,-6.192909282610848 --0.0002038244460856721,-5.546691814568047,-6.185471980869552 -0.0002036944460856721,-5.543012561953264,-6.189190631740201 --0.0002035644460856721,-5.546691814568047,-6.189190631740201 -0.0002034344460856721,-5.543012561953264,-6.192909282610851 --0.0002033044460856722,-5.539333309338485,-6.189190631740203 -0.0002031744460856722,-5.539333309338483,-6.189190631740201 --0.0002030444460856721,-5.539333309338485,-6.200346584352149 -0.0002029144460856721,-5.543012561953264,-6.196627933481501 --0.0002027844460856721,-5.543012561953264,-6.196627933481501 -0.0002026544460856721,-5.539333309338483,-6.200346584352151 --0.0002025244460856721,-5.543012561953264,-6.200346584352151 -0.0002023944460856721,-5.531974804108919,-6.200346584352151 --0.0002022644460856722,-5.531974804108919,-6.196627933481503 -0.0002021344460856722,-5.531974804108919,-6.196627933481501 --0.0002020044460856721,-5.531974804108921,-6.192909282610851 -0.0002018744460856721,-5.5356540567237,-6.192909282610855 --0.0002017444460856721,-5.531974804108919,-6.200346584352151 -0.0002016144460856721,-5.524616298879356,-6.196627933481501 --0.0002014844460856721,-5.524616298879356,-6.200346584352151 -0.0002013544460856721,-5.528295551494137,-6.204065235222801 --0.0002012244460856722,-5.520937046264573,-6.189190631740201 -0.0002010944460856722,-5.517257793649794,-6.19290928261085 --0.0002009644460856722,-5.520937046264572,-6.189190631740203 -0.0002008344460856721,-5.520937046264573,-6.196627933481501 --0.0002007044460856721,-5.520937046264573,-6.196627933481501 -0.0002005744460856721,-5.520937046264573,-6.196627933481501 --0.0002004444460856721,-5.509899288420228,-6.204065235222801 -0.0002003144460856721,-5.524616298879356,-6.178034679128251 --0.0002001844460856722,-5.51357854103501,-6.192909282610851 -0.0002000544460856722,-5.50622003580545,-6.189190631740203 --0.0001999244460856722,-5.517257793649787,-6.185471980869553 -0.0001997944460856721,-5.513578541035009,-6.166878726516306 --0.0001996644460856721,-5.509899288420228,-6.17803467912826 -0.0001995344460856721,-5.509899288420228,-6.196627933481501 --0.0001994044460856721,-5.506220035805446,-6.189190631740201 -0.0001992744460856721,-5.506220035805446,-6.200346584352151 --0.0001991444460856721,-5.506220035805446,-6.200346584352151 -0.0001990144460856722,-5.506220035805446,-6.196627933481503 --0.0001988844460856722,-5.509899288420226,-6.196627933481501 -0.0001987544460856721,-5.498861530575884,-6.204065235222796 --0.0001986244460856721,-5.50254078319066,-6.192909282610858 -0.0001984944460856721,-5.49150302534632,-6.207783886093452 --0.0001983644460856721,-5.502540783190665,-6.189190631740201 -0.0001982344460856721,-5.49150302534632,-6.200346584352151 --0.0001981044460856721,-5.49150302534632,-6.196627933481501 -0.0001979744460856721,-5.495182277961101,-6.196627933481501 --0.0001978444460856721,-5.495182277961101,-6.200346584352151 -0.0001977144460856721,-5.49150302534632,-6.207783886093452 --0.0001975844460856721,-5.49150302534632,-6.200346584352151 -0.0001974544460856722,-5.487823772731537,-6.200346584352151 --0.0001973244460856721,-5.484144520116756,-6.204065235222801 -0.0001971944460856721,-5.487823772731537,-6.204065235222801 --0.0001970644460856721,-5.480465267501973,-6.200346584352151 -0.0001969344460856722,-5.484144520116756,-6.204065235222801 --0.0001968044460856721,-5.480465267501973,-6.204065235222801 -0.0001966744460856721,-5.476786014887192,-6.204065235222801 --0.0001965444460856721,-5.476786014887192,-6.204065235222801 -0.0001964144460856722,-5.47310676227241,-6.204065235222801 --0.0001962844460856721,-5.476786014887192,-6.207783886093452 -0.0001961544460856721,-5.487823772731537,-6.207783886093452 --0.0001960244460856721,-5.601880603789774,-6.215221187834752 -0.0001958944460856721,-5.686503413929756,-6.218939838705402 --0.0001957644460856721,-5.741692203151485,-6.215221187834752 -0.0001956344460856721,-5.771126224069739,-6.218939838705402 --0.0001955044460856721,-5.79320173975843,-6.211502536964102 -0.0001953744460856721,-5.800560244987993,-6.204065235222801 --0.0001952444460856721,-5.785843234528866,-6.204065235222801 -0.0001951144460856721,-5.785843234528866,-6.196627933481501 --0.0001949844460856721,-5.789522487143648,-6.196627933481501 -0.0001948544460856721,-5.785843234528866,-6.196627933481501 --0.0001947244460856721,-5.785843234528866,-6.200346584352151 -0.0001945944460856721,-5.785843234528866,-6.200346584352151 --0.0001944644460856721,-5.789522487143648,-6.207783886093452 -0.0001943344460856721,-5.782163981914084,-6.166878726516301 --0.0001942044460856721,-5.774805476684521,-6.178034679128251 -0.0001940744460856721,-5.778484729299302,-6.192909282610851 --0.0001939444460856721,-5.774805476684521,-6.192909282610851 -0.0001938144460856721,-5.767446971454957,-6.185471980869552 --0.0001936844460856721,-5.774805476684521,-6.192909282610851 -0.0001935544460856721,-5.771126224069739,-6.196627933481501 --0.0001934244460856721,-5.767446971454957,-6.196627933481501 -0.0001932944460856721,-5.767446971454957,-6.196627933481501 --0.0001931644460856722,-5.760088466225393,-6.189190631740201 -0.0001930344460856721,-5.763767718840175,-6.196627933481501 --0.0001929044460856721,-5.774805476684521,-6.189190631740201 -0.0001927744460856721,-5.771126224069739,-6.192909282610851 --0.0001926444460856722,-5.756409213610612,-6.196627933481501 -0.0001925144460856721,-5.760088466225393,-6.196627933481501 --0.0001923844460856721,-5.760088466225393,-6.200346584352151 -0.0001922544460856721,-5.756409213610612,-6.200346584352151 --0.0001921244460856722,-5.756409213610612,-6.196627933481501 -0.0001919944460856721,-5.756409213610612,-6.196627933481501 --0.0001918644460856721,-5.75272996099583,-6.189190631740201 -0.0001917344460856721,-5.749050708381048,-6.192909282610851 --0.0001916044460856721,-5.749050708381048,-6.181753329998901 -0.0001914744460856721,-5.749050708381048,-6.185471980869552 --0.0001913444460856721,-5.749050708381048,-6.189190631740201 -0.0001912144460856721,-5.75272996099583,-6.192909282610851 --0.0001910844460856721,-5.749050708381048,-6.192909282610851 -0.0001909544460856721,-5.75272996099583,-6.185471980869552 --0.0001908244460856721,-5.749050708381048,-6.189190631740201 -0.0001906944460856721,-5.741692203151485,-6.189190631740201 --0.0001905644460856721,-5.749050708381048,-6.192909282610851 -0.0001904344460856721,-5.745371455766266,-6.196627933481501 --0.0001903044460856721,-5.738012950536702,-6.192909282610851 -0.0001901744460856721,-5.734333697921921,-6.174316028257601 --0.0001900444460856721,-5.734333697921921,-6.1520041230337 -0.0001899144460856721,-5.726975192692357,-6.166878726516301 --0.0001897844460856721,-5.726975192692357,-6.178034679128251 -0.0001896544460856721,-5.730654445307139,-6.189190631740201 --0.0001895244460856721,-5.734333697921921,-6.189190631740201 -0.0001893944460856722,-5.730654445307139,-6.196627933481501 --0.0001892644460856721,-5.730654445307139,-6.192909282610851 -0.0001891344460856721,-5.730654445307139,-6.192909282610851 --0.0001890044460856721,-5.734333697921921,-6.204065235222801 -0.0001888744460856722,-5.730654445307139,-6.196627933481501 --0.0001887444460856721,-5.723295940077575,-6.200346584352151 -0.0001886144460856721,-5.719616687462793,-6.196627933481501 --0.0001884844460856721,-5.719616687462793,-6.192909282610851 -0.0001883544460856722,-5.715937434848011,-6.204065235222801 --0.0001882244460856721,-5.719616687462793,-6.200346584352151 -0.0001880944460856721,-5.715937434848011,-6.200346584352151 --0.0001879644460856721,-5.71225818223323,-6.200346584352151 -0.0001878344460856721,-5.715937434848011,-6.207783886093452 --0.0001877044460856721,-5.71225818223323,-6.200346584352151 -0.0001875744460856721,-5.71225818223323,-6.200346584352151 --0.0001874444460856721,-5.71225818223323,-6.204065235222801 -0.0001873144460856721,-5.708578929618447,-6.211502536964102 --0.0001871844460856721,-5.708578929618447,-6.200346584352151 -0.0001870544460856721,-5.704899677003666,-6.207783886093452 --0.0001869244460856721,-5.704899677003666,-6.200346584352151 -0.0001867944460856721,-5.715937434848011,-6.207783886093452 --0.0001866644460856721,-5.69386191915932,-6.192909282610851 -0.0001865344460856721,-5.704899677003666,-6.204065235222801 --0.0001864044460856721,-5.701220424388884,-6.204065235222801 -0.0001862744460856721,-5.697541171774102,-6.200346584352151 --0.0001861444460856721,-5.697541171774102,-6.200346584352151 -0.0001860144460856721,-5.697541171774102,-6.196627933481501 --0.0001858844460856721,-5.697541171774102,-6.200346584352151 -0.0001857544460856721,-5.701220424388884,-6.204065235222801 --0.0001856244460856722,-5.69386191915932,-6.204065235222801 -0.0001854944460856721,-5.697541171774102,-6.200346584352151 --0.0001853644460856721,-5.690182666544539,-6.200346584352151 -0.0001852344460856721,-5.690182666544539,-6.211502536964102 --0.0001851044460856722,-5.69386191915932,-6.211502536964102 -0.0001849744460856721,-5.686503413929756,-6.211502536964102 --0.0001848444460856721,-5.682824161314975,-6.207783886093452 -0.0001847144460856721,-5.686503413929756,-6.196627933481501 --0.0001845844460856722,-5.686503413929756,-6.185471980869552 -0.0001844544460856721,-5.686503413929756,-6.192909282610851 --0.0001843244460856721,-5.686503413929756,-6.192909282610851 -0.0001841944460856721,-5.679144908700193,-6.196627933481501 --0.0001840644460856721,-5.682824161314975,-6.192909282610851 -0.0001839344460856721,-5.675465656085411,-6.189190631740201 --0.0001838044460856721,-5.671786403470629,-6.189190631740201 -0.0001836744460856721,-5.671786403470629,-6.192909282610851 --0.0001835444460856721,-5.679144908700193,-6.204065235222801 -0.0001834144460856721,-5.664427898241065,-6.185471980869552 --0.0001832844460856721,-5.668107150855848,-6.196627933481501 -0.0001831544460856721,-5.668107150855848,-6.192909282610851 --0.0001830244460856721,-5.671786403470629,-6.192909282610851 -0.0001828944460856721,-5.660748645626284,-6.192909282610851 --0.0001827644460856721,-5.668107150855848,-6.196627933481501 -0.0001826344460856721,-5.649710887781938,-6.200346584352151 --0.0001825044460856721,-5.671786403470629,-6.185471980869552 -0.0001823744460856721,-5.660748645626284,-6.192909282610851 --0.0001822444460856721,-5.660748645626284,-6.196627933481501 -0.0001821144460856721,-5.649710887781938,-6.192909282610851 --0.0001819844460856721,-5.65339014039672,-6.196627933481501 -0.0001818544460856721,-5.646031635167156,-6.189190631740201 --0.0001817244460856721,-5.65339014039672,-6.192909282610851 -0.0001815944460856721,-5.657069393011501,-6.200346584352151 --0.0001814644460856721,-5.646031635167156,-6.192909282610851 -0.0001813344460856722,-5.649710887781938,-6.196627933481501 --0.0001812044460856721,-5.649710887781938,-6.185471980869552 -0.0001810744460856721,-5.646031635167156,-6.192909282610851 --0.0001809444460856721,-5.642352382552374,-6.196627933481501 -0.0001808144460856722,-5.649710887781938,-6.192909282610851 --0.0001806844460856721,-5.638673129937593,-6.192909282610851 -0.0001805544460856721,-5.638673129937593,-6.181753329998901 --0.0001804244460856721,-5.642352382552374,-6.192909282610851 -0.0001802944460856722,-5.634993877322811,-6.159441424775 --0.0001801644460856721,-5.638673129937593,-6.170597377386951 -0.0001800344460856721,-5.638673129937593,-6.181753329998901 --0.0001799044460856721,-5.638673129937593,-6.192909282610851 -0.0001797744460856721,-5.642352382552374,-6.196627933481501 --0.0001796444460856721,-5.634993877322811,-6.196627933481501 -0.0001795144460856721,-5.634993877322811,-6.196627933481501 --0.0001793844460856721,-5.627635372093247,-6.192909282610851 -0.0001792544460856721,-5.627635372093247,-6.204065235222801 --0.0001791244460856721,-5.627635372093247,-6.196627933481501 -0.0001789944460856721,-5.631314624708029,-6.196627933481501 --0.0001788644460856721,-5.627635372093247,-6.196627933481501 -0.0001787344460856721,-5.627635372093247,-6.196627933481501 --0.0001786044460856721,-5.627635372093247,-6.192909282610851 -0.0001784744460856721,-5.620276866863684,-6.192909282610851 --0.0001783444460856721,-5.620276866863684,-6.196627933481501 -0.0001782144460856721,-5.623956119478465,-6.196627933481501 --0.0001780844460856721,-5.616597614248902,-6.200346584352151 -0.0001779544460856721,-5.620276866863684,-6.196627933481501 --0.0001778244460856721,-5.616597614248902,-6.200346584352151 -0.0001776944460856721,-5.616597614248902,-6.192909282610851 --0.0001775644460856722,-5.620276866863684,-6.204065235222801 -0.0001774344460856721,-5.609239109019338,-6.204065235222801 --0.0001773044460856721,-5.609239109019338,-6.204065235222801 -0.0001771744460856721,-5.61291836163412,-6.207783886093452 --0.0001770444460856722,-5.61291836163412,-6.200346584352151 -0.0001769144460856721,-5.616597614248902,-6.211502536964102 --0.0001767844460856721,-5.61291836163412,-6.207783886093452 -0.0001766544460856721,-5.609239109019338,-6.222658489576052 --0.0001765244460856722,-5.609239109019338,-6.185471980869552 -0.0001763944460856721,-5.601880603789774,-6.200346584352151 --0.0001762644460856721,-5.605559856404557,-6.204065235222801 -0.0001761344460856721,-5.601880603789774,-6.200346584352151 --0.0001760044460856721,-5.601880603789774,-6.192909282610851 -0.0001758744460856721,-5.601880603789774,-6.200346584352151 --0.0001757444460856721,-5.598201351174993,-6.200346584352151 -0.0001756144460856721,-5.598201351174993,-6.200346584352151 --0.0001754844460856721,-5.598201351174993,-6.204065235222801 -0.0001753544460856721,-5.598201351174993,-6.196627933481501 --0.0001752244460856721,-5.590842845945429,-6.200346584352151 -0.0001750944460856721,-5.598201351174993,-6.200346584352151 --0.0001749644460856721,-5.587163593330647,-6.200346584352151 -0.0001748344460856721,-5.59452209856021,-6.185471980869552 --0.0001747044460856721,-5.59452209856021,-6.189190631740201 -0.0001745744460856721,-5.59452209856021,-6.185471980869552 --0.0001744444460856721,-5.590842845945429,-6.185471980869552 -0.0001743144460856721,-5.587163593330647,-6.189190631740201 --0.0001741844460856721,-5.583484340715865,-6.185471980869552 -0.0001740544460856721,-5.587163593330647,-6.192909282610851 --0.0001739244460856721,-5.587163593330647,-6.192909282610851 -0.0001737944460856721,-5.583484340715865,-6.189190631740201 --0.0001736644460856721,-5.583484340715865,-6.189190631740201 -0.0001735344460856721,-5.587163593330647,-6.196627933481501 --0.0001734044460856721,-5.579805088101083,-6.196627933481501 -0.0001732744460856722,-5.579805088101083,-6.196627933481501 --0.0001731444460856721,-5.572446582871519,-6.192909282610851 -0.0001730144460856721,-5.579805088101083,-6.192909282610851 --0.0001728844460856721,-5.576125835486302,-6.192909282610851 -0.0001727544460856722,-5.576125835486302,-6.192909282610851 --0.0001726244460856721,-5.568767330256738,-6.192909282610851 -0.0001724944460856721,-5.568767330256738,-6.192909282610851 --0.0001723644460856721,-5.565088077641956,-6.196627933481501 -0.0001722344460856721,-5.565088077641956,-6.185471980869552 --0.0001721044460856721,-5.565088077641956,-6.192909282610851 -0.0001719744460856721,-5.561408825027174,-6.192909282610851 --0.0001718444460856721,-5.557729572412392,-6.189190631740201 -0.0001717144460856721,-5.554050319797611,-6.189190631740201 --0.0001715844460856721,-5.561408825027174,-6.192909282610851 -0.0001714544460856721,-5.557729572412392,-6.196627933481501 --0.0001713244460856721,-5.557729572412392,-6.189190631740201 -0.0001711944460856721,-5.561408825027174,-6.185471980869552 --0.0001710644460856721,-5.554050319797611,-6.181753329998901 -0.0001709344460856721,-5.557729572412392,-6.185471980869552 --0.0001708044460856721,-5.561408825027174,-6.185471980869552 -0.0001706744460856721,-5.554050319797611,-6.181753329998901 --0.0001705444460856721,-5.550371067182828,-6.16316007564565 -0.0001704144460856721,-5.550371067182828,-6.159441424775 --0.0001702844460856721,-5.554050319797611,-6.178034679128251 -0.0001701544460856721,-5.550371067182828,-6.185471980869552 --0.0001700244460856721,-5.550371067182828,-6.192909282610851 -0.0001698944460856721,-5.543012561953264,-6.196627933481501 --0.0001697644460856721,-5.543012561953264,-6.196627933481501 -0.0001696344460856721,-5.539333309338483,-6.196627933481501 --0.0001695044460856722,-5.539333309338483,-6.192909282610851 -0.0001693744460856721,-5.535654056723701,-6.196627933481501 --0.0001692444460856721,-5.535654056723701,-6.204065235222801 -0.0001691144460856721,-5.531974804108919,-6.200346584352151 --0.0001689844460856722,-5.539333309338483,-6.207783886093452 -0.0001688544460856721,-5.524616298879356,-6.192909282610851 --0.0001687244460856721,-5.539333309338483,-6.204065235222801 -0.0001685944460856721,-5.535654056723701,-6.207783886093452 --0.0001684644460856721,-5.531974804108919,-6.200346584352151 -0.0001683344460856721,-5.535654056723701,-6.204065235222801 --0.0001682044460856721,-5.531974804108919,-6.204065235222801 -0.0001680744460856721,-5.528295551494137,-6.207783886093452 --0.0001679444460856721,-5.535654056723701,-6.204065235222801 -0.0001678144460856721,-5.531974804108919,-6.207783886093452 --0.0001676844460856721,-5.531974804108919,-6.207783886093452 -0.0001675544460856721,-5.531974804108919,-6.204065235222801 --0.0001674244460856721,-5.524616298879356,-6.204065235222801 -0.0001672944460856721,-5.524616298879356,-6.207783886093452 --0.0001671644460856721,-5.520937046264573,-6.204065235222801 -0.0001670344460856721,-5.524616298879356,-6.211502536964102 --0.0001669044460856721,-5.517257793649792,-6.211502536964102 -0.0001667744460856721,-5.524616298879356,-6.215221187834752 --0.0001666444460856721,-5.524616298879356,-6.207783886093452 -0.0001665144460856721,-5.517257793649792,-6.211502536964102 --0.0001663844460856721,-5.51357854103501,-6.207783886093452 -0.0001662544460856721,-5.517257793649792,-6.211502536964102 --0.0001661244460856721,-5.509899288420228,-6.211502536964102 -0.0001659944460856721,-5.51357854103501,-6.215221187834752 --0.0001658644460856721,-5.506220035805446,-6.207783886093452 -0.0001657344460856722,-5.506220035805446,-6.218939838705402 --0.0001656044460856721,-5.498861530575883,-6.204065235222801 -0.0001654744460856721,-5.498861530575883,-6.211502536964102 --0.0001653444460856721,-5.498861530575883,-6.218939838705402 -0.0001652144460856722,-5.498861530575883,-6.204065235222801 --0.0001650844460856721,-5.498861530575883,-6.192909282610851 -0.0001649544460856721,-5.495182277961101,-6.192909282610851 --0.0001648244460856721,-5.484144520116756,-6.196627933481501 -0.0001646944460856722,-5.498861530575883,-6.192909282610851 --0.0001645644460856721,-5.487823772731537,-6.200346584352151 -0.0001644344460856721,-5.487823772731537,-6.196627933481501 --0.0001643044460856721,-5.480465267501973,-6.192909282610851 -0.0001641744460856721,-5.480465267501973,-6.189190631740201 --0.0001640444460856721,-5.480465267501973,-6.192909282610851 -0.0001639144460856721,-5.476786014887192,-6.192909282610851 --0.0001637844460856721,-5.476786014887192,-6.192909282610851 -0.0001636544460856721,-5.480465267501973,-6.200346584352151 --0.0001635244460856721,-5.480465267501973,-6.192909282610851 -0.0001633944460856721,-5.47310676227241,-6.189190631740201 --0.0001632644460856721,-5.480465267501973,-6.192909282610851 -0.0001631344460856721,-5.47310676227241,-6.196627933481501 --0.0001630044460856721,-5.47310676227241,-6.196627933481501 -0.0001628744460856721,-5.469427509657628,-6.200346584352151 --0.0001627444460856721,-5.469427509657628,-6.185471980869552 -0.0001626144460856721,-5.524616298879356,-6.189190631740201 --0.0001624844460856721,-5.642352382552374,-6.196627933481501 -0.0001623544460856721,-5.715937434848011,-6.196627933481501 --0.0001622244460856721,-5.767446971454957,-6.196627933481501 -0.0001620944460856721,-5.789522487143648,-6.196627933481501 --0.0001619644460856721,-5.800560244987993,-6.196627933481501 -0.0001618344460856721,-5.804239497602776,-6.192909282610851 --0.0001617044460856721,-5.789522487143648,-6.181753329998901 -0.0001615744460856721,-5.782163981914084,-6.181753329998901 --0.0001614444460856722,-5.785843234528866,-6.189190631740201 -0.0001613144460856721,-5.782163981914084,-6.189190631740201 --0.0001611844460856721,-5.785843234528866,-6.192909282610851 -0.0001610544460856721,-5.782163981914084,-6.185471980869552 --0.0001609244460856722,-5.774805476684521,-6.189190631740201 -0.0001607944460856721,-5.774805476684521,-6.170597377386951 --0.0001606644460856721,-5.774805476684521,-6.166878726516301 -0.0001605344460856721,-5.771126224069739,-6.174316028257601 --0.0001604044460856721,-5.771126224069739,-6.181753329998901 -0.0001602744460856721,-5.767446971454957,-6.185471980869552 --0.0001601444460856721,-5.767446971454957,-6.185471980869552 -0.0001600144460856721,-5.767446971454957,-6.196627933481501 --0.0001598844460856721,-5.763767718840175,-6.192909282610851 -0.0001597544460856721,-5.763767718840175,-6.200346584352151 --0.0001596244460856721,-5.763767718840175,-6.200346584352151 -0.0001594944460856721,-5.756409213610612,-6.196627933481501 --0.0001593644460856721,-5.763767718840175,-6.204065235222801 -0.0001592344460856721,-5.760088466225393,-6.204065235222801 --0.0001591044460856721,-5.760088466225393,-6.211502536964102 -0.0001589744460856721,-5.75272996099583,-6.204065235222801 --0.0001588444460856721,-5.749050708381048,-6.233814442188002 -0.0001587144460856721,-5.75272996099583,-6.192909282610851 --0.0001585844460856721,-5.756409213610612,-6.218939838705402 -0.0001584544460856721,-5.75272996099583,-6.211502536964102 --0.0001583244460856721,-5.756409213610612,-6.207783886093452 -0.0001581944460856721,-5.749050708381048,-6.204065235222801 --0.0001580644460856721,-5.749050708381048,-6.204065235222801 -0.0001579344460856721,-5.741692203151485,-6.204065235222801 --0.0001578044460856721,-5.745371455766266,-6.200346584352151 -0.0001576744460856722,-5.749050708381048,-6.200346584352151 --0.0001575444460856721,-5.741692203151485,-6.211502536964102 -0.0001574144460856721,-5.741692203151485,-6.200346584352151 --0.0001572844460856721,-5.756409213610612,-6.204065235222801 -0.0001571544460856722,-5.749050708381048,-6.211502536964102 --0.0001570244460856721,-5.741692203151485,-6.200346584352151 -0.0001568944460856721,-5.738012950536702,-6.207783886093452 --0.0001567644460856721,-5.738012950536702,-6.204065235222801 -0.0001566344460856721,-5.738012950536702,-6.207783886093452 --0.0001565044460856721,-5.734333697921921,-6.192909282610851 -0.0001563744460856721,-5.734333697921921,-6.196627933481501 --0.0001562444460856721,-5.734333697921921,-6.192909282610851 -0.0001561144460856721,-5.730654445307139,-6.204065235222801 --0.0001559844460856721,-5.726975192692357,-6.196627933481501 -0.0001558544460856721,-5.730654445307139,-6.200346584352151 --0.0001557244460856721,-5.723295940077575,-6.204065235222801 -0.0001555944460856721,-5.726975192692357,-6.204065235222801 --0.0001554644460856721,-5.719616687462793,-6.196627933481501 -0.0001553344460856721,-5.719616687462793,-6.189190631740201 --0.0001552044460856721,-5.715937434848011,-6.185471980869552 -0.0001550744460856721,-5.715937434848011,-6.185471980869552 --0.0001549444460856721,-5.715937434848011,-6.185471980869552 -0.0001548144460856721,-5.723295940077575,-6.192909282610851 --0.0001546844460856721,-5.715937434848011,-6.196627933481501 -0.0001545544460856721,-5.708578929618447,-6.192909282610851 --0.0001544244460856721,-5.71225818223323,-6.196627933481501 -0.0001542944460856721,-5.71225818223323,-6.192909282610851 --0.0001541644460856721,-5.708578929618447,-6.189190631740201 -0.0001540344460856721,-5.71225818223323,-6.192909282610851 --0.0001539044460856722,-5.715937434848011,-6.192909282610851 -0.0001537744460856721,-5.708578929618447,-6.192909282610851 --0.0001536444460856721,-5.708578929618447,-6.196627933481501 -0.0001535144460856721,-5.704899677003666,-6.192909282610851 --0.0001533844460856722,-5.704899677003666,-6.192909282610851 -0.0001532544460856721,-5.708578929618447,-6.196627933481501 --0.0001531244460856721,-5.701220424388884,-6.196627933481501 -0.0001529944460856721,-5.704899677003666,-6.185471980869552 --0.0001528644460856722,-5.701220424388884,-6.196627933481501 -0.0001527344460856721,-5.701220424388884,-6.181753329998901 --0.0001526044460856721,-5.701220424388884,-6.192909282610851 -0.0001524744460856721,-5.701220424388884,-6.189190631740201 --0.0001523444460856721,-5.69386191915932,-6.189190631740201 -0.0001522144460856721,-5.69386191915932,-6.196627933481501 --0.0001520844460856721,-5.69386191915932,-6.189190631740201 -0.0001519544460856721,-5.69386191915932,-6.189190631740201 --0.0001518244460856721,-5.697541171774102,-6.192909282610851 -0.0001516944460856721,-5.682824161314975,-6.189190631740201 --0.0001515644460856721,-5.686503413929756,-6.185471980869552 -0.0001514344460856721,-5.686503413929756,-6.189190631740201 --0.0001513044460856721,-5.686503413929756,-6.181753329998901 -0.0001511744460856721,-5.682824161314975,-6.192909282610851 --0.0001510444460856721,-5.671786403470629,-6.159441424775 -0.0001509144460856721,-5.679144908700193,-6.166878726516301 --0.0001507844460856721,-5.679144908700193,-6.174316028257601 -0.0001506544460856721,-5.679144908700193,-6.178034679128251 --0.0001505244460856721,-5.679144908700193,-6.192909282610851 -0.0001503944460856721,-5.679144908700193,-6.192909282610851 --0.0001502644460856721,-5.679144908700193,-6.192909282610851 -0.0001501344460856721,-5.686503413929756,-6.200346584352151 --0.0001500044460856721,-5.682824161314975,-6.200346584352151 -0.0001498744460856721,-5.679144908700193,-6.204065235222801 --0.0001497444460856721,-5.679144908700193,-6.196627933481501 -0.0001496144460856722,-5.668107150855848,-6.200346584352151 --0.0001494844460856721,-5.675465656085411,-6.196627933481501 -0.0001493544460856721,-5.671786403470629,-6.200346584352151 --0.0001492244460856721,-5.664427898241065,-6.196627933481501 -0.0001490944460856722,-5.657069393011501,-6.200346584352151 --0.0001489644460856721,-5.664427898241065,-6.204065235222801 -0.0001488344460856721,-5.660748645626284,-6.204065235222801 --0.0001487044460856721,-5.657069393011501,-6.200346584352151 -0.0001485744460856721,-5.664427898241065,-6.196627933481501 --0.0001484444460856721,-5.660748645626284,-6.204065235222801 -0.0001483144460856721,-5.660748645626284,-6.207783886093452 --0.0001481844460856721,-5.660748645626284,-6.200346584352151 -0.0001480544460856721,-5.657069393011501,-6.204065235222801 --0.0001479244460856721,-5.660748645626284,-6.211502536964102 -0.0001477944460856721,-5.649710887781938,-6.196627933481501 --0.0001476644460856721,-5.65339014039672,-6.204065235222801 -0.0001475344460856721,-5.649710887781938,-6.211502536964102 --0.0001474044460856721,-5.65339014039672,-6.211502536964102 -0.0001472744460856721,-5.649710887781938,-6.211502536964102 --0.0001471444460856721,-5.646031635167156,-6.204065235222801 -0.0001470144460856721,-5.646031635167156,-6.192909282610851 --0.0001468844460856721,-5.646031635167156,-6.215221187834752 -0.0001467544460856721,-5.642352382552374,-6.215221187834752 --0.0001466244460856721,-5.634993877322811,-6.211502536964102 -0.0001464944460856721,-5.642352382552374,-6.207783886093452 --0.0001463644460856721,-5.642352382552374,-6.207783886093452 -0.0001462344460856721,-5.642352382552374,-6.207783886093452 --0.0001461044460856721,-5.638673129937593,-6.207783886093452 -0.0001459744460856721,-5.634993877322811,-6.204065235222801 --0.0001458444460856722,-5.631314624708029,-6.207783886093452 -0.0001457144460856721,-5.634993877322811,-6.207783886093452 --0.0001455844460856721,-5.623956119478465,-6.189190631740201 -0.0001454544460856721,-5.627635372093247,-6.196627933481501 --0.0001453244460856722,-5.631314624708029,-6.189190631740201 -0.0001451944460856721,-5.623956119478465,-6.196627933481501 --0.0001450644460856721,-5.620276866863684,-6.192909282610851 -0.0001449344460856721,-5.623956119478465,-6.192909282610851 --0.0001448044460856721,-5.623956119478465,-6.196627933481501 -0.0001446744460856721,-5.623956119478465,-6.192909282610851 --0.0001445444460856721,-5.620276866863684,-6.192909282610851 -0.0001444144460856721,-5.620276866863684,-6.189190631740201 --0.0001442844460856721,-5.616597614248902,-6.192909282610851 -0.0001441544460856721,-5.616597614248902,-6.192909282610851 --0.0001440244460856721,-5.61291836163412,-6.196627933481501 -0.0001438944460856721,-5.616597614248902,-6.192909282610851 --0.0001437644460856721,-5.616597614248902,-6.192909282610851 -0.0001436344460856721,-5.620276866863684,-6.192909282610851 --0.0001435044460856721,-5.620276866863684,-6.192909282610851 -0.0001433744460856721,-5.609239109019338,-6.196627933481501 --0.0001432444460856721,-5.609239109019338,-6.192909282610851 -0.0001431144460856721,-5.605559856404557,-6.189190631740201 --0.0001429844460856721,-5.609239109019338,-6.185471980869552 -0.0001428544460856721,-5.61291836163412,-6.189190631740201 --0.0001427244460856721,-5.605559856404557,-6.189190631740201 -0.0001425944460856721,-5.605559856404557,-6.192909282610851 --0.0001424644460856721,-5.598201351174993,-6.185471980869552 -0.0001423344460856721,-5.601880603789774,-6.185471980869552 --0.0001422044460856721,-5.601880603789774,-6.189190631740201 -0.0001420744460856721,-5.598201351174993,-6.185471980869552 --0.0001419444460856721,-5.598201351174993,-6.185471980869552 -0.0001418144460856721,-5.590842845945429,-6.189190631740201 --0.0001416844460856721,-5.590842845945429,-6.189190631740201 -0.0001415544460856722,-5.590842845945429,-6.185471980869552 --0.0001414244460856721,-5.587163593330647,-6.181753329998901 -0.0001412944460856721,-5.590842845945429,-6.185471980869552 --0.0001411644460856721,-5.59452209856021,-6.159441424775 -0.0001410344460856721,-5.587163593330647,-6.192909282610851 --0.0001409044460856721,-5.590842845945429,-6.16316007564565 -0.0001407744460856721,-5.587163593330647,-6.189190631740201 --0.0001406444460856721,-5.583484340715865,-6.196627933481501 -0.0001405144460856721,-5.583484340715865,-6.200346584352151 --0.0001403844460856721,-5.579805088101083,-6.196627933481501 -0.0001402544460856721,-5.583484340715865,-6.196627933481501 --0.0001401244460856721,-5.587163593330647,-6.200346584352151 -0.0001399944460856721,-5.576125835486302,-6.200346584352151 --0.0001398644460856721,-5.579805088101083,-6.200346584352151 -0.0001397344460856721,-5.576125835486302,-6.204065235222801 --0.0001396044460856721,-5.576125835486302,-6.196627933481501 -0.0001394744460856721,-5.572446582871519,-6.200346584352151 --0.0001393444460856721,-5.572446582871519,-6.204065235222801 -0.0001392144460856721,-5.565088077641956,-6.200346584352151 --0.0001390844460856721,-5.572446582871519,-6.207783886093452 -0.0001389544460856721,-5.565088077641956,-6.204065235222801 --0.0001388244460856721,-5.565088077641956,-6.207783886093452 -0.0001386944460856721,-5.565088077641956,-6.207783886093452 --0.0001385644460856721,-5.557729572412392,-6.207783886093452 -0.0001384344460856721,-5.561408825027174,-6.204065235222801 --0.0001383044460856721,-5.557729572412392,-6.211502536964102 -0.0001381744460856721,-5.550371067182828,-6.207783886093452 --0.0001380444460856721,-5.554050319797611,-6.211502536964102 -0.0001379144460856721,-5.557729572412392,-6.211502536964102 --0.0001377844460856722,-5.554050319797611,-6.207783886093452 -0.0001376544460856721,-5.554050319797611,-6.211502536964102 --0.0001375244460856721,-5.557729572412392,-6.215221187834752 -0.0001373944460856721,-5.557729572412392,-6.211502536964102 --0.0001372644460856722,-5.550371067182828,-6.211502536964102 -0.0001371344460856721,-5.554050319797611,-6.207783886093452 --0.0001370044460856721,-5.550371067182828,-6.215221187834752 -0.0001368744460856721,-5.554050319797611,-6.207783886093452 --0.0001367444460856721,-5.546691814568047,-6.204065235222801 -0.0001366144460856721,-5.550371067182828,-6.200346584352151 --0.0001364844460856721,-5.550371067182828,-6.207783886093452 -0.0001363544460856721,-5.550371067182828,-6.204065235222801 --0.0001362244460856721,-5.554050319797611,-6.207783886093452 -0.0001360944460856721,-5.550371067182828,-6.204065235222801 --0.0001359644460856721,-5.543012561953264,-6.207783886093452 -0.0001358344460856721,-5.546691814568047,-6.196627933481501 --0.0001357044460856721,-5.543012561953264,-6.192909282610851 -0.0001355744460856721,-5.543012561953264,-6.196627933481501 --0.0001354444460856721,-5.539333309338483,-6.189190631740201 -0.0001353144460856721,-5.543012561953264,-6.200346584352151 --0.0001351844460856721,-5.539333309338483,-6.189190631740201 -0.0001350544460856721,-5.535654056723701,-6.204065235222801 --0.0001349244460856721,-5.531974804108919,-6.185471980869552 -0.0001347944460856721,-5.528295551494137,-6.189190631740201 --0.0001346644460856721,-5.535654056723701,-6.192909282610851 -0.0001345344460856721,-5.524616298879356,-6.189190631740201 --0.0001344044460856721,-5.531974804108919,-6.200346584352151 -0.0001342744460856721,-5.528295551494137,-6.189190631740201 --0.0001341444460856721,-5.524616298879356,-6.196627933481501 -0.0001340144460856722,-5.520937046264573,-6.189190631740201 --0.0001338844460856721,-5.520937046264573,-6.196627933481501 -0.0001337544460856721,-5.51357854103501,-6.181753329998901 --0.0001336244460856721,-5.517257793649792,-6.192909282610851 -0.0001334944460856722,-5.520937046264573,-6.185471980869552 --0.0001333644460856721,-5.51357854103501,-6.192909282610851 -0.0001332344460856721,-5.51357854103501,-6.185471980869552 --0.0001331044460856721,-5.517257793649792,-6.192909282610851 -0.0001329744460856721,-5.506220035805446,-6.192909282610851 --0.0001328444460856721,-5.509899288420228,-6.196627933481501 -0.0001327144460856721,-5.502540783190665,-6.196627933481501 --0.0001325844460856721,-5.502540783190665,-6.196627933481501 -0.0001324544460856721,-5.506220035805446,-6.192909282610851 --0.0001323244460856721,-5.506220035805446,-6.192909282610851 -0.0001321944460856721,-5.506220035805446,-6.192909282610851 --0.0001320644460856721,-5.502540783190665,-6.189190631740201 -0.0001319344460856721,-5.509899288420228,-6.192909282610851 --0.0001318044460856721,-5.502540783190665,-6.192909282610851 -0.0001316744460856721,-5.498861530575883,-6.192909282610851 --0.0001315444460856721,-5.502540783190665,-6.185471980869552 -0.0001314144460856721,-5.502540783190665,-6.16316007564565 --0.0001312844460856721,-5.502540783190665,-6.174316028257601 -0.0001311544460856721,-5.498861530575883,-6.189190631740201 --0.0001310244460856721,-5.498861530575883,-6.196627933481501 -0.0001308944460856721,-5.498861530575883,-6.192909282610851 --0.0001307644460856721,-5.495182277961101,-6.189190631740201 -0.0001306344460856721,-5.502540783190665,-6.200346584352151 --0.0001305044460856721,-5.49150302534632,-6.192909282610851 -0.0001303744460856721,-5.498861530575883,-6.196627933481501 --0.0001302444460856721,-5.49150302534632,-6.196627933481501 -0.0001301144460856721,-5.495182277961101,-6.204065235222801 --0.0001299844460856721,-5.484144520116756,-6.189190631740201 -0.0001298544460856721,-5.49150302534632,-6.192909282610851 --0.0001297244460856722,-5.484144520116756,-6.196627933481501 -0.0001295944460856721,-5.484144520116756,-6.200346584352151 --0.0001294644460856721,-5.476786014887192,-6.204065235222801 -0.0001293344460856721,-5.480465267501973,-6.200346584352151 --0.0001292044460856721,-5.469427509657628,-6.185471980869552 -0.0001290744460856721,-5.568767330256738,-6.215221187834752 --0.0001289444460856721,-5.668107150855848,-6.211502536964102 -0.0001288144460856721,-5.730654445307139,-6.211502536964102 --0.0001286844460856721,-5.763767718840175,-6.207783886093452 -0.0001285544460856721,-5.789522487143648,-6.207783886093452 --0.0001284244460856721,-5.79320173975843,-6.207783886093452 -0.0001282944460856721,-5.800560244987993,-6.207783886093452 --0.0001281644460856721,-5.782163981914084,-6.204065235222801 -0.0001280344460856721,-5.771126224069739,-6.204065235222801 --0.0001279044460856721,-5.774805476684521,-6.200346584352151 -0.0001277744460856721,-5.771126224069739,-6.192909282610851 --0.0001276444460856721,-5.782163981914084,-6.204065235222801 -0.0001275144460856721,-5.778484729299302,-6.200346584352151 --0.0001273844460856721,-5.774805476684521,-6.200346584352151 -0.0001272544460856721,-5.771126224069739,-6.196627933481501 --0.0001271244460856721,-5.774805476684521,-6.207783886093452 -0.0001269944460856721,-5.767446971454957,-6.192909282610851 --0.0001268644460856721,-5.778484729299302,-6.200346584352151 -0.0001267344460856721,-5.763767718840175,-6.196627933481501 --0.0001266044460856721,-5.771126224069739,-6.200346584352151 -0.0001264744460856721,-5.771126224069739,-6.200346584352151 --0.0001263444460856721,-5.771126224069739,-6.204065235222801 -0.0001262144460856721,-5.767446971454957,-6.204065235222801 --0.0001260844460856721,-5.760088466225393,-6.185471980869552 -0.0001259544460856722,-5.763767718840175,-6.185471980869552 --0.0001258244460856721,-5.760088466225393,-6.192909282610851 -0.0001256944460856721,-5.760088466225393,-6.192909282610851 --0.0001255644460856721,-5.763767718840175,-6.196627933481501 -0.0001254344460856722,-5.760088466225393,-6.196627933481501 --0.0001253044460856721,-5.760088466225393,-6.196627933481501 -0.0001251744460856721,-5.760088466225393,-6.196627933481501 --0.0001250444460856721,-5.756409213610612,-6.192909282610851 -0.0001249144460856721,-5.760088466225393,-6.192909282610851 --0.0001247844460856721,-5.760088466225393,-6.189190631740201 -0.0001246544460856721,-5.75272996099583,-6.189190631740201 --0.0001245244460856721,-5.75272996099583,-6.192909282610851 -0.0001243944460856721,-5.75272996099583,-6.189190631740201 --0.0001242644460856721,-5.738012950536702,-6.185471980869552 -0.0001241344460856721,-5.745371455766266,-6.192909282610851 --0.0001240044460856721,-5.745371455766266,-6.189190631740201 -0.0001238744460856721,-5.745371455766266,-6.185471980869552 --0.0001237444460856721,-5.734333697921921,-6.185471980869552 -0.0001236144460856721,-5.734333697921921,-6.185471980869552 --0.0001234844460856721,-5.745371455766266,-6.192909282610851 -0.0001233544460856721,-5.745371455766266,-6.189190631740201 --0.0001232244460856721,-5.738012950536702,-6.204065235222801 -0.0001230944460856721,-5.745371455766266,-6.166878726516301 --0.0001229644460856721,-5.730654445307139,-6.185471980869552 -0.0001228344460856721,-5.738012950536702,-6.189190631740201 --0.0001227044460856721,-5.734333697921921,-6.189190631740201 -0.0001225744460856721,-5.730654445307139,-6.189190631740201 --0.0001224444460856721,-5.730654445307139,-6.192909282610851 -0.0001223144460856721,-5.730654445307139,-6.192909282610851 --0.0001221844460856722,-5.726975192692357,-6.189190631740201 -0.0001220544460856721,-5.723295940077575,-6.185471980869552 --0.0001219244460856721,-5.719616687462793,-6.189190631740201 -0.0001217944460856721,-5.719616687462793,-6.174316028257601 --0.0001216644460856722,-5.723295940077575,-6.1520041230337 -0.0001215344460856721,-5.719616687462793,-6.170597377386951 --0.0001214044460856721,-5.708578929618447,-6.178034679128251 -0.0001212744460856721,-5.708578929618447,-6.185471980869552 --0.0001211444460856721,-5.71225818223323,-6.189190631740201 -0.0001210144460856721,-5.704899677003666,-6.189190631740201 --0.0001208844460856721,-5.708578929618447,-6.192909282610851 -0.0001207544460856721,-5.708578929618447,-6.189190631740201 --0.0001206244460856721,-5.71225818223323,-6.192909282610851 -0.0001204944460856721,-5.71225818223323,-6.192909282610851 --0.0001203644460856721,-5.71225818223323,-6.196627933481501 -0.0001202344460856721,-5.708578929618447,-6.192909282610851 --0.0001201044460856721,-5.708578929618447,-6.200346584352151 -0.0001199744460856721,-5.708578929618447,-6.196627933481501 --0.0001198444460856721,-5.704899677003666,-6.200346584352151 -0.0001197144460856721,-5.701220424388884,-6.200346584352151 --0.0001195844460856721,-5.701220424388884,-6.200346584352151 -0.0001194544460856721,-5.704899677003666,-6.200346584352151 --0.0001193244460856721,-5.697541171774102,-6.200346584352151 -0.0001191944460856721,-5.69386191915932,-6.200346584352151 --0.0001190644460856721,-5.69386191915932,-6.204065235222801 -0.0001189344460856721,-5.701220424388884,-6.207783886093452 --0.0001188044460856721,-5.697541171774102,-6.196627933481501 -0.0001186744460856721,-5.69386191915932,-6.200346584352151 --0.0001185444460856721,-5.690182666544539,-6.207783886093452 -0.0001184144460856721,-5.69386191915932,-6.207783886093452 --0.0001182844460856721,-5.686503413929756,-6.211502536964102 -0.0001181544460856721,-5.686503413929756,-6.215221187834752 --0.0001180244460856721,-5.686503413929756,-6.207783886093452 -0.0001178944460856722,-5.686503413929756,-6.207783886093452 --0.0001177644460856721,-5.675465656085411,-6.207783886093452 -0.0001176344460856721,-5.682824161314975,-6.211502536964102 --0.0001175044460856721,-5.679144908700193,-6.215221187834752 -0.0001173744460856721,-5.682824161314975,-6.207783886093452 --0.0001172444460856721,-5.668107150855848,-6.218939838705402 -0.0001171144460856721,-5.664427898241065,-6.207783886093452 --0.0001169844460856721,-5.675465656085411,-6.204065235222801 -0.0001168544460856721,-5.671786403470629,-6.215221187834752 --0.0001167244460856721,-5.671786403470629,-6.211502536964102 -0.0001165944460856721,-5.668107150855848,-6.211502536964102 --0.0001164644460856721,-5.675465656085411,-6.218939838705402 -0.0001163344460856721,-5.671786403470629,-6.200346584352151 --0.0001162044460856721,-5.671786403470629,-6.189190631740201 -0.0001160744460856721,-5.668107150855848,-6.192909282610851 --0.0001159444460856721,-5.660748645626284,-6.181753329998901 -0.0001158144460856721,-5.660748645626284,-6.196627933481501 --0.0001156844460856721,-5.668107150855848,-6.189190631740201 -0.0001155544460856721,-5.668107150855848,-6.192909282610851 --0.0001154244460856721,-5.660748645626284,-6.181753329998901 -0.0001152944460856721,-5.664427898241065,-6.196627933481501 --0.0001151644460856721,-5.664427898241065,-6.189190631740201 -0.0001150344460856721,-5.65339014039672,-6.189190631740201 --0.0001149044460856721,-5.649710887781938,-6.192909282610851 -0.0001147744460856721,-5.649710887781938,-6.189190631740201 --0.0001146444460856721,-5.649710887781938,-6.192909282610851 -0.0001145144460856721,-5.649710887781938,-6.185471980869552 --0.0001143844460856721,-5.642352382552374,-6.181753329998901 -0.0001142544460856721,-5.65339014039672,-6.192909282610851 --0.0001141244460856722,-5.649710887781938,-6.200346584352151 -0.0001139944460856721,-5.649710887781938,-6.196627933481501 --0.0001138644460856721,-5.649710887781938,-6.192909282610851 -0.0001137344460856721,-5.646031635167156,-6.185471980869552 --0.0001136044460856721,-5.646031635167156,-6.192909282610851 -0.0001134744460856721,-5.646031635167156,-6.189190631740201 --0.0001133444460856721,-5.638673129937593,-6.189190631740201 -0.0001132144460856721,-5.638673129937593,-6.189190631740201 --0.0001130844460856721,-5.642352382552374,-6.185471980869552 -0.0001129544460856721,-5.646031635167156,-6.185471980869552 --0.0001128244460856721,-5.638673129937593,-6.185471980869552 -0.0001126944460856721,-5.638673129937593,-6.181753329998901 --0.0001125644460856721,-5.634993877322811,-6.185471980869552 -0.0001124344460856721,-5.634993877322811,-6.185471980869552 --0.0001123044460856721,-5.634993877322811,-6.192909282610851 -0.0001121744460856721,-5.631314624708029,-6.181753329998901 --0.0001120444460856721,-5.631314624708029,-6.189190631740201 -0.0001119144460856721,-5.634993877322811,-6.16316007564565 --0.0001117844460856721,-5.631314624708029,-6.166878726516301 -0.0001116544460856721,-5.631314624708029,-6.181753329998901 --0.0001115244460856721,-5.623956119478465,-6.185471980869552 -0.0001113944460856721,-5.627635372093247,-6.174316028257601 --0.0001112644460856721,-5.631314624708029,-6.211502536964102 -0.0001111344460856721,-5.623956119478465,-6.200346584352151 --0.0001110044460856721,-5.627635372093247,-6.200346584352151 -0.0001108744460856721,-5.620276866863684,-6.204065235222801 --0.0001107444460856721,-5.620276866863684,-6.200346584352151 -0.0001106144460856721,-5.623956119478465,-6.207783886093452 --0.0001104844460856721,-5.616597614248902,-6.196627933481501 -0.0001103544460856722,-5.616597614248902,-6.207783886093452 --0.0001102244460856721,-5.609239109019338,-6.211502536964102 -0.0001100944460856721,-5.609239109019338,-6.207783886093452 --0.0001099644460856721,-5.598201351174993,-6.200346584352151 -0.0001098344460856722,-5.605559856404557,-6.211502536964102 --0.0001097044460856721,-5.609239109019338,-6.204065235222801 -0.0001095744460856721,-5.605559856404557,-6.207783886093452 --0.0001094444460856721,-5.605559856404557,-6.200346584352151 -0.0001093144460856721,-5.61291836163412,-6.200346584352151 --0.0001091844460856721,-5.605559856404557,-6.200346584352151 -0.0001090544460856721,-5.601880603789774,-6.207783886093452 --0.0001089244460856721,-5.601880603789774,-6.207783886093452 -0.0001087944460856721,-5.601880603789774,-6.204065235222801 --0.0001086644460856721,-5.601880603789774,-6.204065235222801 -0.0001085344460856721,-5.598201351174993,-6.207783886093452 --0.0001084044460856721,-5.601880603789774,-6.207783886093452 -0.0001082744460856721,-5.598201351174993,-6.204065235222801 --0.0001081444460856721,-5.598201351174993,-6.200346584352151 -0.0001080144460856721,-5.59452209856021,-6.200346584352151 --0.0001078844460856721,-5.598201351174993,-6.196627933481501 -0.0001077544460856721,-5.587163593330647,-6.204065235222801 --0.0001076244460856721,-5.590842845945429,-6.200346584352151 -0.0001074944460856721,-5.590842845945429,-6.204065235222801 --0.0001073644460856721,-5.590842845945429,-6.200346584352151 -0.0001072344460856721,-5.590842845945429,-6.200346584352151 --0.0001071044460856721,-5.587163593330647,-6.200346584352151 -0.0001069744460856721,-5.583484340715865,-6.200346584352151 --0.0001068444460856721,-5.583484340715865,-6.204065235222801 -0.0001067144460856721,-5.579805088101083,-6.204065235222801 --0.0001065844460856721,-5.579805088101083,-6.200346584352151 -0.0001064544460856721,-5.587163593330647,-6.189190631740201 --0.0001063244460856721,-5.583484340715865,-6.192909282610851 -0.0001061944460856721,-5.583484340715865,-6.192909282610851 --0.0001060644460856722,-5.583484340715865,-6.200346584352151 -0.0001059344460856721,-5.579805088101083,-6.200346584352151 --0.0001058044460856721,-5.576125835486302,-6.189190631740201 -0.0001056744460856721,-5.576125835486302,-6.200346584352151 --0.0001055444460856721,-5.572446582871519,-6.185471980869552 -0.0001054144460856721,-5.568767330256738,-6.196627933481501 --0.0001052844460856721,-5.572446582871519,-6.174316028257601 -0.0001051544460856721,-5.565088077641956,-6.192909282610851 --0.0001050244460856721,-5.565088077641956,-6.189190631740201 -0.0001048944460856721,-5.565088077641956,-6.185471980869552 --0.0001047644460856721,-5.568767330256738,-6.192909282610851 -0.0001046344460856721,-5.565088077641956,-6.189190631740201 --0.0001045044460856721,-5.557729572412392,-6.189190631740201 -0.0001043744460856721,-5.557729572412392,-6.189190631740201 --0.0001042444460856721,-5.554050319797611,-6.192909282610851 -0.0001041144460856721,-5.561408825027174,-6.192909282610851 --0.0001039844460856721,-5.550371067182828,-6.178034679128251 -0.0001038544460856721,-5.561408825027174,-6.192909282610851 --0.0001037244460856721,-5.550371067182828,-6.196627933481501 -0.0001035944460856721,-5.557729572412392,-6.196627933481501 --0.0001034644460856721,-5.554050319797611,-6.200346584352151 -0.0001033344460856721,-5.550371067182828,-6.192909282610851 --0.0001032044460856721,-5.550371067182828,-6.192909282610851 -0.0001030744460856721,-5.546691814568047,-6.189190631740201 --0.0001029444460856721,-5.546691814568047,-6.192909282610851 -0.0001028144460856721,-5.546691814568047,-6.196627933481501 --0.0001026844460856721,-5.539333309338483,-6.192909282610851 -0.0001025544460856721,-5.539333309338483,-6.200346584352151 --0.0001024244460856721,-5.535654056723701,-6.189190631740201 -0.0001022944460856722,-5.543012561953264,-6.185471980869552 --0.0001021644460856721,-5.543012561953264,-6.166878726516301 -0.0001020344460856721,-5.531974804108919,-6.166878726516301 --0.0001019044460856721,-5.535654056723701,-6.174316028257601 -0.0001017744460856721,-5.535654056723701,-6.185471980869552 --0.0001016444460856721,-5.535654056723701,-6.185471980869552 -0.0001015144460856721,-5.535654056723701,-6.196627933481501 --0.0001013844460856721,-5.535654056723701,-6.189190631740201 -0.0001012544460856721,-5.528295551494137,-6.196627933481501 --0.0001011244460856721,-5.528295551494137,-6.200346584352151 -0.0001009944460856721,-5.524616298879356,-6.196627933481501 --0.0001008644460856721,-5.528295551494137,-6.196627933481501 -0.0001007344460856721,-5.528295551494137,-6.196627933481501 --0.0001006044460856721,-5.520937046264573,-6.204065235222801 -0.0001004744460856721,-5.520937046264573,-6.204065235222801 --0.0001003444460856721,-5.51357854103501,-6.204065235222801 -0.0001002144460856721,-5.517257793649792,-6.207783886093452 --0.0001000844460856721,-5.51357854103501,-6.204065235222801 -9.995444608567212e-05,-5.517257793649792,-6.204065235222801 --9.982444608567213e-05,-5.517257793649792,-6.196627933481501 -9.969444608567214e-05,-5.509899288420228,-6.207783886093452 --9.95644460856721e-05,-5.520937046264573,-6.204065235222801 -9.943444608567211e-05,-5.506220035805446,-6.215221187834752 --9.930444608567213e-05,-5.502540783190665,-6.192909282610851 -9.917444608567214e-05,-5.502540783190665,-6.200346584352151 --9.90444460856721e-05,-5.502540783190665,-6.204065235222801 -9.891444608567211e-05,-5.502540783190665,-6.204065235222801 --9.878444608567213e-05,-5.502540783190665,-6.204065235222801 -9.865444608567214e-05,-5.498861530575883,-6.207783886093452 --9.85244460856721e-05,-5.498861530575883,-6.204065235222801 -9.839444608567211e-05,-5.498861530575883,-6.204065235222801 --9.826444608567212e-05,-5.495182277961101,-6.204065235222801 -9.813444608567214e-05,-5.495182277961101,-6.196627933481501 --9.800444608567215e-05,-5.495182277961101,-6.200346584352151 -9.787444608567211e-05,-5.502540783190665,-6.200346584352151 --9.774444608567212e-05,-5.498861530575883,-6.215221187834752 -9.761444608567214e-05,-5.495182277961101,-6.189190631740201 --9.748444608567215e-05,-5.495182277961101,-6.204065235222801 -9.735444608567211e-05,-5.498861530575883,-6.207783886093452 --9.722444608567212e-05,-5.49150302534632,-6.207783886093452 -9.709444608567213e-05,-5.495182277961101,-6.204065235222801 --9.696444608567215e-05,-5.487823772731537,-6.204065235222801 -9.683444608567211e-05,-5.495182277961101,-6.196627933481501 --9.670444608567212e-05,-5.49150302534632,-6.189190631740201 -9.657444608567213e-05,-5.487823772731537,-6.189190631740201 --9.644444608567214e-05,-5.480465267501973,-6.185471980869552 -9.63144460856721e-05,-5.484144520116756,-6.192909282610851 --9.618444608567212e-05,-5.487823772731537,-6.189190631740201 -9.605444608567213e-05,-5.476786014887192,-6.185471980869552 --9.592444608567214e-05,-5.480465267501973,-6.178034679128251 -9.57944460856721e-05,-5.469427509657628,-6.178034679128251 --9.566444608567212e-05,-5.51357854103501,-6.185471980869552 -9.553444608567213e-05,-5.634993877322811,-6.185471980869552 --9.540444608567214e-05,-5.708578929618447,-6.192909282610851 -9.52744460856721e-05,-5.756409213610612,-6.192909282610851 --9.514444608567211e-05,-5.789522487143648,-6.192909282610851 -9.501444608567213e-05,-5.800560244987993,-6.192909282610851 --9.488444608567214e-05,-5.804239497602776,-6.192909282610851 -9.47544460856721e-05,-5.79320173975843,-6.189190631740201 --9.462444608567211e-05,-5.785843234528866,-6.189190631740201 -9.449444608567212e-05,-5.782163981914084,-6.192909282610851 --9.436444608567214e-05,-5.778484729299302,-6.181753329998901 -9.423444608567215e-05,-5.782163981914084,-6.192909282610851 --9.410444608567211e-05,-5.782163981914084,-6.192909282610851 -9.397444608567212e-05,-5.782163981914084,-6.196627933481501 --9.384444608567214e-05,-5.778484729299302,-6.192909282610851 -9.371444608567215e-05,-5.771126224069739,-6.192909282610851 --9.358444608567211e-05,-5.771126224069739,-6.166878726516301 -9.345444608567212e-05,-5.774805476684521,-6.207783886093452 --9.332444608567213e-05,-5.771126224069739,-6.196627933481501 -9.319444608567215e-05,-5.771126224069739,-6.192909282610851 --9.306444608567211e-05,-5.767446971454957,-6.192909282610851 -9.293444608567212e-05,-5.763767718840175,-6.189190631740201 --9.280444608567213e-05,-5.756409213610612,-6.192909282610851 -9.267444608567215e-05,-5.760088466225393,-6.185471980869552 --9.25444460856721e-05,-5.760088466225393,-6.185471980869552 -9.241444608567212e-05,-5.756409213610612,-6.170597377386951 --9.228444608567213e-05,-5.760088466225393,-6.16316007564565 -9.215444608567214e-05,-5.756409213610612,-6.170597377386951 --9.20244460856721e-05,-5.75272996099583,-6.192909282610851 -9.189444608567212e-05,-5.760088466225393,-6.189190631740201 --9.176444608567213e-05,-5.756409213610612,-6.196627933481501 -9.163444608567214e-05,-5.756409213610612,-6.200346584352151 --9.15044460856721e-05,-5.749050708381048,-6.200346584352151 -9.137444608567211e-05,-5.749050708381048,-6.200346584352151 --9.124444608567213e-05,-5.749050708381048,-6.207783886093452 -9.111444608567214e-05,-5.745371455766266,-6.211502536964102 --9.09844460856721e-05,-5.75272996099583,-6.207783886093452 -9.085444608567211e-05,-5.75272996099583,-6.207783886093452 --9.072444608567213e-05,-5.745371455766266,-6.211502536964102 -9.059444608567214e-05,-5.749050708381048,-6.211502536964102 --9.046444608567215e-05,-5.741692203151485,-6.204065235222801 -9.033444608567211e-05,-5.741692203151485,-6.204065235222801 --9.020444608567212e-05,-5.738012950536702,-6.207783886093452 -9.007444608567214e-05,-5.734333697921921,-6.207783886093452 --8.994444608567215e-05,-5.734333697921921,-6.207783886093452 -8.981444608567211e-05,-5.734333697921921,-6.200346584352151 --8.968444608567212e-05,-5.738012950536702,-6.207783886093452 -8.955444608567213e-05,-5.738012950536702,-6.200346584352151 --8.942444608567215e-05,-5.734333697921921,-6.207783886093452 -8.929444608567211e-05,-5.734333697921921,-6.204065235222801 --8.916444608567212e-05,-5.730654445307139,-6.200346584352151 -8.903444608567213e-05,-5.730654445307139,-6.200346584352151 --8.890444608567215e-05,-5.730654445307139,-6.196627933481501 -8.87744460856721e-05,-5.730654445307139,-6.204065235222801 --8.864444608567212e-05,-5.730654445307139,-6.204065235222801 -8.851444608567213e-05,-5.726975192692357,-6.215221187834752 --8.838444608567214e-05,-5.730654445307139,-6.200346584352151 -8.82544460856721e-05,-5.723295940077575,-6.204065235222801 --8.812444608567212e-05,-5.726975192692357,-6.204065235222801 -8.799444608567213e-05,-5.719616687462793,-6.196627933481501 --8.786444608567214e-05,-5.723295940077575,-6.207783886093452 -8.77344460856721e-05,-5.715937434848011,-6.200346584352151 --8.760444608567211e-05,-5.71225818223323,-6.200346584352151 -8.747444608567213e-05,-5.726975192692357,-6.192909282610851 --8.734444608567214e-05,-5.719616687462793,-6.204065235222801 -8.72144460856721e-05,-5.719616687462793,-6.204065235222801 --8.708444608567211e-05,-5.719616687462793,-6.207783886093452 -8.695444608567213e-05,-5.71225818223323,-6.196627933481501 --8.682444608567214e-05,-5.708578929618447,-6.192909282610851 -8.66944460856721e-05,-5.708578929618447,-6.189190631740201 --8.656444608567211e-05,-5.708578929618447,-6.189190631740201 -8.643444608567212e-05,-5.71225818223323,-6.192909282610851 --8.630444608567214e-05,-5.708578929618447,-6.196627933481501 -8.617444608567215e-05,-5.701220424388884,-6.181753329998901 --8.604444608567211e-05,-5.704899677003666,-6.196627933481501 -8.591444608567212e-05,-5.704899677003666,-6.189190631740201 --8.578444608567214e-05,-5.704899677003666,-6.192909282610851 -8.565444608567215e-05,-5.697541171774102,-6.196627933481501 --8.552444608567211e-05,-5.69386191915932,-6.189190631740201 -8.539444608567212e-05,-5.697541171774102,-6.196627933481501 --8.526444608567213e-05,-5.69386191915932,-6.192909282610851 -8.513444608567215e-05,-5.69386191915932,-6.192909282610851 --8.500444608567211e-05,-5.690182666544539,-6.192909282610851 -8.487444608567212e-05,-5.690182666544539,-6.192909282610851 --8.474444608567213e-05,-5.690182666544539,-6.189190631740201 -8.461444608567214e-05,-5.686503413929756,-6.189190631740201 --8.44844460856721e-05,-5.682824161314975,-6.192909282610851 -8.435444608567212e-05,-5.682824161314975,-6.192909282610851 --8.422444608567213e-05,-5.682824161314975,-6.192909282610851 -8.409444608567214e-05,-5.682824161314975,-6.196627933481501 --8.39644460856721e-05,-5.682824161314975,-6.189190631740201 -8.383444608567211e-05,-5.682824161314975,-6.192909282610851 --8.370444608567213e-05,-5.679144908700193,-6.192909282610851 -8.357444608567214e-05,-5.675465656085411,-6.189190631740201 --8.34444460856721e-05,-5.671786403470629,-6.192909282610851 -8.331444608567211e-05,-5.671786403470629,-6.196627933481501 --8.318444608567213e-05,-5.671786403470629,-6.196627933481501 -8.305444608567214e-05,-5.671786403470629,-6.192909282610851 --8.29244460856721e-05,-5.679144908700193,-6.200346584352151 -8.279444608567211e-05,-5.668107150855848,-6.189190631740201 --8.266444608567212e-05,-5.671786403470629,-6.189190631740201 -8.253444608567214e-05,-5.668107150855848,-6.170597377386951 --8.240444608567215e-05,-5.671786403470629,-6.178034679128251 -8.227444608567211e-05,-5.668107150855848,-6.192909282610851 --8.214444608567212e-05,-5.664427898241065,-6.196627933481501 -8.201444608567214e-05,-5.664427898241065,-6.196627933481501 --8.188444608567215e-05,-5.664427898241065,-6.200346584352151 -8.175444608567211e-05,-5.664427898241065,-6.200346584352151 --8.162444608567212e-05,-5.657069393011501,-6.215221187834752 -8.149444608567213e-05,-5.65339014039672,-6.189190631740201 --8.136444608567215e-05,-5.657069393011501,-6.192909282610851 -8.123444608567211e-05,-5.657069393011501,-6.189190631740201 --8.110444608567212e-05,-5.649710887781938,-6.196627933481501 -8.097444608567213e-05,-5.649710887781938,-6.196627933481501 --8.084444608567215e-05,-5.646031635167156,-6.204065235222801 -8.07144460856721e-05,-5.65339014039672,-6.204065235222801 --8.058444608567212e-05,-5.646031635167156,-6.204065235222801 -8.045444608567213e-05,-5.646031635167156,-6.207783886093452 --8.032444608567214e-05,-5.642352382552374,-6.196627933481501 -8.01944460856721e-05,-5.638673129937593,-6.204065235222801 --8.006444608567212e-05,-5.646031635167156,-6.204065235222801 -7.993444608567213e-05,-5.638673129937593,-6.215221187834752 --7.980444608567214e-05,-5.634993877322811,-6.200346584352151 -7.96744460856721e-05,-5.642352382552374,-6.207783886093452 --7.954444608567211e-05,-5.634993877322811,-6.196627933481501 -7.941444608567213e-05,-5.634993877322811,-6.204065235222801 --7.928444608567214e-05,-5.634993877322811,-6.207783886093452 -7.91544460856721e-05,-5.631314624708029,-6.207783886093452 --7.902444608567211e-05,-5.634993877322811,-6.207783886093452 -7.889444608567212e-05,-5.634993877322811,-6.196627933481501 --7.876444608567214e-05,-5.634993877322811,-6.204065235222801 -7.863444608567215e-05,-5.634993877322811,-6.200346584352151 --7.850444608567211e-05,-5.631314624708029,-6.200346584352151 -7.837444608567212e-05,-5.627635372093247,-6.200346584352151 --7.824444608567214e-05,-5.627635372093247,-6.200346584352151 -7.811444608567215e-05,-5.620276866863684,-6.200346584352151 --7.798444608567211e-05,-5.623956119478465,-6.196627933481501 -7.785444608567212e-05,-5.616597614248902,-6.207783886093452 --7.772444608567213e-05,-5.620276866863684,-6.200346584352151 -7.759444608567215e-05,-5.61291836163412,-6.200346584352151 --7.746444608567211e-05,-5.616597614248902,-6.207783886093452 -7.733444608567212e-05,-5.620276866863684,-6.200346584352151 --7.720444608567213e-05,-5.616597614248902,-6.189190631740201 -7.707444608567215e-05,-5.61291836163412,-6.181753329998901 --7.69444460856721e-05,-5.61291836163412,-6.185471980869552 -7.681444608567212e-05,-5.61291836163412,-6.189190631740201 --7.668444608567213e-05,-5.609239109019338,-6.196627933481501 -7.655444608567214e-05,-5.61291836163412,-6.185471980869552 --7.64244460856721e-05,-5.609239109019338,-6.192909282610851 -7.629444608567212e-05,-5.601880603789774,-6.185471980869552 --7.616444608567213e-05,-5.601880603789774,-6.192909282610851 -7.603444608567214e-05,-5.601880603789774,-6.185471980869552 --7.59044460856721e-05,-5.605559856404557,-6.192909282610851 -7.577444608567211e-05,-5.601880603789774,-6.170597377386951 --7.564444608567213e-05,-5.601880603789774,-6.218939838705402 -7.551444608567214e-05,-5.598201351174993,-6.189190631740201 --7.53844460856721e-05,-5.590842845945429,-6.192909282610851 -7.525444608567211e-05,-5.59452209856021,-6.185471980869552 --7.512444608567213e-05,-5.590842845945429,-6.192909282610851 -7.499444608567214e-05,-5.598201351174993,-6.192909282610851 --7.48644460856721e-05,-5.587163593330647,-6.189190631740201 -7.473444608567211e-05,-5.587163593330647,-6.185471980869552 --7.460444608567212e-05,-5.587163593330647,-6.185471980869552 -7.447444608567214e-05,-5.590842845945429,-6.189190631740201 --7.434444608567215e-05,-5.587163593330647,-6.178034679128251 -7.421444608567211e-05,-5.59452209856021,-6.196627933481501 --7.408444608567212e-05,-5.59452209856021,-6.185471980869552 -7.395444608567213e-05,-5.590842845945429,-6.192909282610851 --7.382444608567215e-05,-5.587163593330647,-6.181753329998901 -7.369444608567211e-05,-5.590842845945429,-6.189190631740201 --7.356444608567212e-05,-5.587163593330647,-6.189190631740201 -7.343444608567213e-05,-5.583484340715865,-6.192909282610851 --7.330444608567215e-05,-5.583484340715865,-6.189190631740201 -7.317444608567211e-05,-5.579805088101083,-6.189190631740201 --7.304444608567212e-05,-5.572446582871519,-6.189190631740201 -7.291444608567213e-05,-5.579805088101083,-6.189190631740201 --7.278444608567214e-05,-5.576125835486302,-6.159441424775 -7.26544460856721e-05,-5.579805088101083,-6.174316028257601 --7.252444608567212e-05,-5.572446582871519,-6.181753329998901 -7.239444608567213e-05,-5.572446582871519,-6.189190631740201 --7.226444608567214e-05,-5.572446582871519,-6.189190631740201 -7.21344460856721e-05,-5.572446582871519,-6.192909282610851 --7.200444608567211e-05,-5.565088077641956,-6.192909282610851 -7.187444608567213e-05,-5.572446582871519,-6.196627933481501 --7.174444608567214e-05,-5.565088077641956,-6.196627933481501 -7.16144460856721e-05,-5.568767330256738,-6.192909282610851 --7.148444608567211e-05,-5.561408825027174,-6.189190631740201 -7.135444608567213e-05,-5.561408825027174,-6.196627933481501 --7.122444608567214e-05,-5.557729572412392,-6.196627933481501 -7.10944460856721e-05,-5.557729572412392,-6.192909282610851 --7.096444608567211e-05,-5.554050319797611,-6.192909282610851 -7.083444608567212e-05,-5.554050319797611,-6.196627933481501 --7.070444608567214e-05,-5.550371067182828,-6.207783886093452 -7.057444608567215e-05,-5.550371067182828,-6.196627933481501 --7.044444608567211e-05,-5.546691814568047,-6.200346584352151 -7.031444608567212e-05,-5.550371067182828,-6.196627933481501 --7.018444608567214e-05,-5.546691814568047,-6.196627933481501 -7.005444608567215e-05,-5.539333309338483,-6.204065235222801 --6.992444608567211e-05,-5.539333309338483,-6.196627933481501 -6.979444608567212e-05,-5.539333309338483,-6.192909282610851 --6.966444608567213e-05,-5.539333309338483,-6.189190631740201 -6.953444608567215e-05,-5.539333309338483,-6.196627933481501 --6.940444608567211e-05,-5.539333309338483,-6.196627933481501 -6.927444608567212e-05,-5.539333309338483,-6.196627933481501 --6.914444608567213e-05,-5.543012561953264,-6.196627933481501 -6.901444608567214e-05,-5.539333309338483,-6.200346584352151 --6.88844460856721e-05,-5.539333309338483,-6.204065235222801 -6.875444608567212e-05,-5.535654056723701,-6.204065235222801 --6.862444608567213e-05,-5.535654056723701,-6.196627933481501 -6.849444608567214e-05,-5.535654056723701,-6.204065235222801 --6.83644460856721e-05,-5.524616298879356,-6.185471980869552 -6.823444608567212e-05,-5.539333309338483,-6.215221187834752 --6.810444608567213e-05,-5.524616298879356,-6.196627933481501 -6.797444608567214e-05,-5.531974804108919,-6.200346584352151 --6.78444460856721e-05,-5.528295551494137,-6.204065235222801 -6.771444608567211e-05,-5.524616298879356,-6.200346584352151 --6.758444608567213e-05,-5.520937046264573,-6.204065235222801 -6.745444608567214e-05,-5.520937046264573,-6.189190631740201 --6.73244460856721e-05,-5.524616298879356,-6.185471980869552 -6.719444608567211e-05,-5.524616298879356,-6.196627933481501 --6.706444608567212e-05,-5.517257793649792,-6.192909282610851 -6.693444608567214e-05,-5.517257793649792,-6.196627933481501 --6.68044460856721e-05,-5.51357854103501,-6.189190631740201 -6.667444608567211e-05,-5.51357854103501,-6.192909282610851 --6.654444608567212e-05,-5.509899288420228,-6.196627933481501 -6.641444608567214e-05,-5.517257793649792,-6.189190631740201 --6.628444608567215e-05,-5.509899288420228,-6.192909282610851 -6.615444608567211e-05,-5.506220035805446,-6.196627933481501 --6.602444608567212e-05,-5.509899288420228,-6.192909282610851 -6.589444608567213e-05,-5.51357854103501,-6.189190631740201 --6.576444608567215e-05,-5.51357854103501,-6.196627933481501 -6.563444608567211e-05,-5.509899288420228,-6.196627933481501 --6.550444608567212e-05,-5.506220035805446,-6.189190631740201 -6.537444608567213e-05,-5.509899288420228,-6.189190631740201 --6.524444608567215e-05,-5.506220035805446,-6.189190631740201 -6.51144460856721e-05,-5.509899288420228,-6.185471980869552 --6.498444608567212e-05,-5.509899288420228,-6.196627933481501 -6.485444608567213e-05,-5.502540783190665,-6.185471980869552 --6.472444608567214e-05,-5.506220035805446,-6.192909282610851 -6.45944460856721e-05,-5.498861530575883,-6.189190631740201 --6.446444608567212e-05,-5.502540783190665,-6.192909282610851 -6.433444608567213e-05,-5.502540783190665,-6.196627933481501 --6.420444608567214e-05,-5.495182277961101,-6.189190631740201 -6.40744460856721e-05,-5.495182277961101,-6.196627933481501 --6.394444608567211e-05,-5.502540783190665,-6.189190631740201 -6.381444608567213e-05,-5.487823772731537,-6.207783886093452 --6.368444608567214e-05,-5.487823772731537,-6.178034679128251 -6.35544460856721e-05,-5.487823772731537,-6.196627933481501 --6.342444608567211e-05,-5.487823772731537,-6.185471980869552 -6.329444608567213e-05,-5.484144520116756,-6.185471980869552 --6.316444608567214e-05,-5.484144520116756,-6.185471980869552 -6.30344460856721e-05,-5.476786014887192,-6.159441424775 --6.290444608567211e-05,-5.480465267501973,-6.170597377386951 -6.277444608567212e-05,-5.47310676227241,-6.178034679128251 --6.264444608567214e-05,-5.480465267501973,-6.185471980869552 -6.251444608567215e-05,-5.476786014887192,-6.185471980869552 --6.238444608567211e-05,-5.47310676227241,-6.181753329998901 -6.225444608567212e-05,-5.480465267501973,-6.189190631740201 --6.212444608567213e-05,-5.576125835486302,-6.200346584352151 -6.199444608567215e-05,-5.675465656085411,-6.189190631740201 --6.186444608567211e-05,-5.738012950536702,-6.204065235222801 -6.173444608567212e-05,-5.767446971454957,-6.200346584352151 --6.160444608567213e-05,-5.79320173975843,-6.196627933481501 -6.147444608567215e-05,-5.800560244987993,-6.196627933481501 --6.13444460856721e-05,-5.800560244987993,-6.196627933481501 -6.121444608567212e-05,-5.782163981914084,-6.192909282610851 --6.108444608567213e-05,-5.778484729299302,-6.192909282610851 -6.095444608567214e-05,-5.778484729299302,-6.196627933481501 --6.08244460856721e-05,-5.785843234528866,-6.200346584352151 -6.069444608567212e-05,-5.785843234528866,-6.196627933481501 --6.056444608567213e-05,-5.774805476684521,-6.200346584352151 -6.043444608567214e-05,-5.778484729299302,-6.204065235222801 --6.03044460856721e-05,-5.774805476684521,-6.196627933481501 -6.017444608567211e-05,-5.778484729299302,-6.200346584352151 --6.004444608567213e-05,-5.771126224069739,-6.196627933481501 -5.991444608567214e-05,-5.774805476684521,-6.196627933481501 --5.97844460856721e-05,-5.767446971454957,-6.196627933481501 -5.965444608567211e-05,-5.771126224069739,-6.196627933481501 --5.952444608567213e-05,-5.763767718840175,-6.200346584352151 -5.939444608567214e-05,-5.763767718840175,-6.200346584352151 --5.92644460856721e-05,-5.763767718840175,-6.196627933481501 -5.913444608567211e-05,-5.763767718840175,-6.204065235222801 --5.900444608567212e-05,-5.767446971454957,-6.204065235222801 -5.887444608567214e-05,-5.760088466225393,-6.215221187834752 --5.874444608567215e-05,-5.760088466225393,-6.200346584352151 -5.861444608567211e-05,-5.75272996099583,-6.211502536964102 --5.848444608567212e-05,-5.75272996099583,-6.204065235222801 -5.835444608567214e-05,-5.756409213610612,-6.207783886093452 --5.822444608567215e-05,-5.756409213610612,-6.207783886093452 -5.809444608567211e-05,-5.75272996099583,-6.200346584352151 --5.796444608567212e-05,-5.745371455766266,-6.178034679128251 -5.783444608567213e-05,-5.75272996099583,-6.233814442188002 --5.770444608567215e-05,-5.741692203151485,-6.196627933481501 -5.757444608567211e-05,-5.745371455766266,-6.189190631740201 --5.744444608567212e-05,-5.745371455766266,-6.196627933481501 -5.731444608567213e-05,-5.745371455766266,-6.200346584352151 --5.718444608567214e-05,-5.741692203151485,-6.189190631740201 -5.70544460856721e-05,-5.738012950536702,-6.196627933481501 --5.692444608567212e-05,-5.738012950536702,-6.192909282610851 -5.679444608567213e-05,-5.741692203151485,-6.185471980869552 --5.666444608567214e-05,-5.734333697921921,-6.192909282610851 -5.65344460856721e-05,-5.734333697921921,-6.185471980869552 --5.640444608567211e-05,-5.734333697921921,-6.192909282610851 -5.627444608567213e-05,-5.734333697921921,-6.192909282610851 --5.614444608567214e-05,-5.734333697921921,-6.192909282610851 -5.60144460856721e-05,-5.741692203151485,-6.181753329998901 --5.588444608567211e-05,-5.738012950536702,-6.189190631740201 -5.575444608567213e-05,-5.726975192692357,-6.189190631740201 --5.562444608567214e-05,-5.726975192692357,-6.189190631740201 -5.54944460856721e-05,-5.726975192692357,-6.196627933481501 --5.536444608567211e-05,-5.719616687462793,-6.196627933481501 -5.523444608567212e-05,-5.715937434848011,-6.192909282610851 --5.510444608567214e-05,-5.719616687462793,-6.196627933481501 -5.49744460856721e-05,-5.715937434848011,-6.196627933481501 --5.484444608567211e-05,-5.71225818223323,-6.196627933481501 -5.471444608567212e-05,-5.715937434848011,-6.189190631740201 --5.458444608567214e-05,-5.715937434848011,-6.192909282610851 -5.445444608567215e-05,-5.71225818223323,-6.189190631740201 --5.432444608567211e-05,-5.708578929618447,-6.185471980869552 -5.419444608567212e-05,-5.71225818223323,-6.189190631740201 --5.406444608567213e-05,-5.71225818223323,-6.192909282610851 -5.393444608567215e-05,-5.71225818223323,-6.192909282610851 --5.380444608567211e-05,-5.71225818223323,-6.189190631740201 -5.367444608567212e-05,-5.708578929618447,-6.185471980869552 --5.354444608567213e-05,-5.704899677003666,-6.185471980869552 -5.341444608567215e-05,-5.708578929618447,-6.192909282610851 --5.32844460856721e-05,-5.704899677003666,-6.159441424775 -5.315444608567212e-05,-5.701220424388884,-6.174316028257601 --5.302444608567213e-05,-5.704899677003666,-6.181753329998901 -5.289444608567214e-05,-5.701220424388884,-6.196627933481501 --5.27644460856721e-05,-5.704899677003666,-6.189190631740201 -5.263444608567212e-05,-5.701220424388884,-6.192909282610851 --5.250444608567213e-05,-5.697541171774102,-6.196627933481501 -5.237444608567214e-05,-5.697541171774102,-6.192909282610851 --5.22444460856721e-05,-5.701220424388884,-6.207783886093452 -5.211444608567211e-05,-5.69386191915932,-6.200346584352151 --5.198444608567213e-05,-5.697541171774102,-6.189190631740201 -5.185444608567214e-05,-5.690182666544539,-6.200346584352151 --5.17244460856721e-05,-5.69386191915932,-6.204065235222801 -5.159444608567211e-05,-5.69386191915932,-6.204065235222801 --5.146444608567212e-05,-5.690182666544539,-6.204065235222801 -5.133444608567214e-05,-5.690182666544539,-6.200346584352151 --5.12044460856721e-05,-5.690182666544539,-6.200346584352151 -5.107444608567211e-05,-5.686503413929756,-6.204065235222801 --5.094444608567212e-05,-5.686503413929756,-6.207783886093452 -5.081444608567214e-05,-5.686503413929756,-6.204065235222801 --5.068444608567215e-05,-5.686503413929756,-6.204065235222801 -5.055444608567211e-05,-5.675465656085411,-6.185471980869552 --5.042444608567212e-05,-5.682824161314975,-6.211502536964102 -5.029444608567213e-05,-5.675465656085411,-6.204065235222801 --5.016444608567215e-05,-5.675465656085411,-6.207783886093452 -5.003444608567211e-05,-5.679144908700193,-6.211502536964102 --4.990444608567212e-05,-5.671786403470629,-6.200346584352151 -4.977444608567213e-05,-5.675465656085411,-6.204065235222801 --4.964444608567215e-05,-5.668107150855848,-6.204065235222801 -4.95144460856721e-05,-5.668107150855848,-6.207783886093452 --4.938444608567212e-05,-5.668107150855848,-6.204065235222801 -4.925444608567213e-05,-5.668107150855848,-6.211502536964102 --4.912444608567214e-05,-5.668107150855848,-6.211502536964102 -4.89944460856721e-05,-5.668107150855848,-6.207783886093452 --4.886444608567212e-05,-5.660748645626284,-6.204065235222801 -4.873444608567213e-05,-5.664427898241065,-6.200346584352151 --4.860444608567214e-05,-5.664427898241065,-6.204065235222801 -4.84744460856721e-05,-5.664427898241065,-6.204065235222801 --4.834444608567211e-05,-5.664427898241065,-6.204065235222801 -4.821444608567213e-05,-5.664427898241065,-6.207783886093452 --4.808444608567214e-05,-5.660748645626284,-6.204065235222801 -4.79544460856721e-05,-5.664427898241065,-6.196627933481501 --4.782444608567211e-05,-5.657069393011501,-6.185471980869552 -4.769444608567213e-05,-5.660748645626284,-6.185471980869552 --4.756444608567214e-05,-5.657069393011501,-6.189190631740201 -4.74344460856721e-05,-5.657069393011501,-6.189190631740201 --4.730444608567211e-05,-5.657069393011501,-6.185471980869552 -4.717444608567212e-05,-5.660748645626284,-6.192909282610851 --4.704444608567214e-05,-5.649710887781938,-6.189190631740201 -4.691444608567215e-05,-5.649710887781938,-6.189190631740201 --4.678444608567211e-05,-5.646031635167156,-6.185471980869552 -4.665444608567212e-05,-5.649710887781938,-6.189190631740201 --4.652444608567213e-05,-5.649710887781938,-6.196627933481501 -4.639444608567215e-05,-5.649710887781938,-6.189190631740201 --4.626444608567211e-05,-5.649710887781938,-6.196627933481501 -4.613444608567212e-05,-5.649710887781938,-6.196627933481501 --4.600444608567213e-05,-5.646031635167156,-6.211502536964102 -4.587444608567215e-05,-5.649710887781938,-6.181753329998901 --4.574444608567211e-05,-5.646031635167156,-6.196627933481501 -4.561444608567212e-05,-5.646031635167156,-6.192909282610851 --4.548444608567213e-05,-5.638673129937593,-6.189190631740201 -4.535444608567214e-05,-5.638673129937593,-6.189190631740201 --4.52244460856721e-05,-5.634993877322811,-6.196627933481501 -4.509444608567212e-05,-5.634993877322811,-6.192909282610851 --4.496444608567213e-05,-5.627635372093247,-6.192909282610851 -4.483444608567214e-05,-5.627635372093247,-6.189190631740201 --4.47044460856721e-05,-5.627635372093247,-6.189190631740201 -4.457444608567211e-05,-5.623956119478465,-6.189190631740201 --4.444444608567213e-05,-5.631314624708029,-6.189190631740201 -4.431444608567214e-05,-5.620276866863684,-6.192909282610851 --4.41844460856721e-05,-5.627635372093247,-6.181753329998901 -4.405444608567211e-05,-5.627635372093247,-6.196627933481501 --4.392444608567213e-05,-5.616597614248902,-6.185471980869552 -4.379444608567214e-05,-5.616597614248902,-6.192909282610851 --4.36644460856721e-05,-5.620276866863684,-6.185471980869552 -4.353444608567211e-05,-5.616597614248902,-6.174316028257601 --4.340444608567212e-05,-5.616597614248902,-6.174316028257601 -4.327444608567214e-05,-5.61291836163412,-6.181753329998901 --4.31444460856721e-05,-5.609239109019338,-6.192909282610851 -4.301444608567211e-05,-5.601880603789774,-6.200346584352151 --4.288444608567212e-05,-5.601880603789774,-6.192909282610851 -4.275444608567214e-05,-5.601880603789774,-6.204065235222801 --4.262444608567215e-05,-5.605559856404557,-6.207783886093452 -4.249444608567211e-05,-5.601880603789774,-6.204065235222801 --4.236444608567212e-05,-5.59452209856021,-6.196627933481501 -4.223444608567213e-05,-5.601880603789774,-6.207783886093452 --4.210444608567215e-05,-5.59452209856021,-6.207783886093452 -4.197444608567211e-05,-5.601880603789774,-6.207783886093452 --4.184444608567212e-05,-5.601880603789774,-6.204065235222801 -4.171444608567213e-05,-5.601880603789774,-6.207783886093452 --4.158444608567214e-05,-5.598201351174993,-6.211502536964102 -4.14544460856721e-05,-5.59452209856021,-6.204065235222801 --4.132444608567212e-05,-5.59452209856021,-6.207783886093452 -4.119444608567213e-05,-5.59452209856021,-6.204065235222801 --4.106444608567214e-05,-5.587163593330647,-6.207783886093452 -4.09344460856721e-05,-5.587163593330647,-6.196627933481501 --4.080444608567212e-05,-5.590842845945429,-6.204065235222801 -4.067444608567213e-05,-5.583484340715865,-6.196627933481501 --4.054444608567214e-05,-5.583484340715865,-6.200346584352151 -4.04144460856721e-05,-5.576125835486302,-6.200346584352151 --4.028444608567211e-05,-5.572446582871519,-6.204065235222801 -4.015444608567213e-05,-5.579805088101083,-6.178034679128251 --4.002444608567214e-05,-5.583484340715865,-6.230095791317352 -3.98944460856721e-05,-5.572446582871519,-6.204065235222801 --3.976444608567211e-05,-5.579805088101083,-6.200346584352151 -3.963444608567212e-05,-5.576125835486302,-6.204065235222801 --3.950444608567214e-05,-5.572446582871519,-6.200346584352151 -3.93744460856721e-05,-5.568767330256738,-6.196627933481501 --3.924444608567211e-05,-5.565088077641956,-6.200346584352151 -3.911444608567212e-05,-5.565088077641956,-6.192909282610851 --3.898444608567214e-05,-5.568767330256738,-6.200346584352151 -3.885444608567215e-05,-5.568767330256738,-6.192909282610851 --3.872444608567211e-05,-5.557729572412392,-6.189190631740201 -3.859444608567212e-05,-5.568767330256738,-6.196627933481501 --3.846444608567213e-05,-5.568767330256738,-6.196627933481501 -3.833444608567215e-05,-5.565088077641956,-6.200346584352151 --3.820444608567211e-05,-5.568767330256738,-6.181753329998901 -3.807444608567212e-05,-5.561408825027174,-6.181753329998901 --3.794444608567213e-05,-5.557729572412392,-6.185471980869552 -3.781444608567215e-05,-5.557729572412392,-6.189190631740201 --3.76844460856721e-05,-5.568767330256738,-6.185471980869552 -3.755444608567212e-05,-5.561408825027174,-6.196627933481501 --3.742444608567213e-05,-5.561408825027174,-6.192909282610851 -3.729444608567214e-05,-5.561408825027174,-6.189190631740201 --3.71644460856721e-05,-5.561408825027174,-6.192909282610851 -3.703444608567212e-05,-5.561408825027174,-6.192909282610851 --3.690444608567213e-05,-5.554050319797611,-6.189190631740201 -3.677444608567214e-05,-5.557729572412392,-6.189190631740201 --3.66444460856721e-05,-5.546691814568047,-6.189190631740201 -3.651444608567211e-05,-5.550371067182828,-6.192909282610851 --3.638444608567213e-05,-5.543012561953264,-6.189190631740201 -3.625444608567214e-05,-5.543012561953264,-6.192909282610851 --3.61244460856721e-05,-5.550371067182828,-6.189190631740201 -3.599444608567211e-05,-5.550371067182828,-6.192909282610851 --3.586444608567213e-05,-5.546691814568047,-6.185471980869552 -3.573444608567214e-05,-5.546691814568047,-6.181753329998901 --3.56044460856721e-05,-5.543012561953264,-6.185471980869552 -3.547444608567211e-05,-5.539333309338483,-6.189190631740201 --3.534444608567212e-05,-5.539333309338483,-6.189190631740201 -3.521444608567214e-05,-5.539333309338483,-6.189190631740201 --3.50844460856721e-05,-5.528295551494137,-6.192909282610851 -3.495444608567211e-05,-5.539333309338483,-6.189190631740201 --3.482444608567212e-05,-5.531974804108919,-6.192909282610851 -3.469444608567213e-05,-5.535654056723701,-6.192909282610851 --3.456444608567215e-05,-5.535654056723701,-6.189190631740201 -3.443444608567211e-05,-5.531974804108919,-6.196627933481501 --3.430444608567212e-05,-5.531974804108919,-6.196627933481501 -3.417444608567213e-05,-5.535654056723701,-6.178034679128251 --3.404444608567215e-05,-5.517257793649792,-6.192909282610851 -3.39144460856721e-05,-5.531974804108919,-6.192909282610851 --3.378444608567212e-05,-5.524616298879356,-6.166878726516301 -3.365444608567213e-05,-5.531974804108919,-6.16316007564565 --3.352444608567214e-05,-5.528295551494137,-6.178034679128251 -3.33944460856721e-05,-5.524616298879356,-6.189190631740201 --3.326444608567212e-05,-5.520937046264573,-6.181753329998901 -3.313444608567213e-05,-5.517257793649792,-6.189190631740201 --3.300444608567214e-05,-5.509899288420228,-6.200346584352151 -3.28744460856721e-05,-5.51357854103501,-6.196627933481501 --3.274444608567211e-05,-5.502540783190665,-6.178034679128251 -3.261444608567213e-05,-5.517257793649792,-6.204065235222801 --3.248444608567214e-05,-5.51357854103501,-6.196627933481501 -3.23544460856721e-05,-5.506220035805446,-6.200346584352151 --3.222444608567211e-05,-5.509899288420228,-6.200346584352151 -3.209444608567213e-05,-5.506220035805446,-6.196627933481501 --3.196444608567214e-05,-5.509899288420228,-6.200346584352151 -3.18344460856721e-05,-5.506220035805446,-6.207783886093452 --3.170444608567211e-05,-5.506220035805446,-6.200346584352151 -3.157444608567212e-05,-5.509899288420228,-6.200346584352151 --3.144444608567214e-05,-5.506220035805446,-6.204065235222801 -3.13144460856721e-05,-5.502540783190665,-6.204065235222801 --3.118444608567211e-05,-5.502540783190665,-6.207783886093452 -3.105444608567212e-05,-5.502540783190665,-6.204065235222801 --3.092444608567214e-05,-5.502540783190665,-6.200346584352151 -3.079444608567215e-05,-5.502540783190665,-6.204065235222801 --3.066444608567211e-05,-5.498861530575883,-6.207783886093452 -3.053444608567212e-05,-5.506220035805446,-6.207783886093452 --3.040444608567213e-05,-5.49150302534632,-6.200346584352151 -3.027444608567215e-05,-5.502540783190665,-6.211502536964102 --3.014444608567211e-05,-5.495182277961101,-6.207783886093452 -3.001444608567212e-05,-5.498861530575883,-6.207783886093452 --2.988444608567213e-05,-5.498861530575883,-6.207783886093452 -2.975444608567214e-05,-5.498861530575883,-6.207783886093452 --2.96244460856721e-05,-5.487823772731537,-6.207783886093452 -2.949444608567212e-05,-5.487823772731537,-6.200346584352151 --2.936444608567213e-05,-5.484144520116756,-6.200346584352151 -2.923444608567214e-05,-5.487823772731537,-6.204065235222801 --2.91044460856721e-05,-5.484144520116756,-6.204065235222801 -2.897444608567211e-05,-5.484144520116756,-6.200346584352151 --2.884444608567213e-05,-5.476786014887192,-6.204065235222801 -2.871444608567214e-05,-5.476786014887192,-6.204065235222801 --2.85844460856721e-05,-5.568767330256738,-6.207783886093452 -2.845444608567211e-05,-5.668107150855848,-6.215221187834752 --2.832444608567213e-05,-5.734333697921921,-6.196627933481501 -2.819444608567214e-05,-5.767446971454957,-6.211502536964102 --2.80644460856721e-05,-5.785843234528866,-6.181753329998901 -2.793444608567211e-05,-5.804239497602776,-6.200346584352151 --2.780444608567212e-05,-5.804239497602776,-6.200346584352151 -2.767444608567214e-05,-5.782163981914084,-6.196627933481501 --2.75444460856721e-05,-5.782163981914084,-6.189190631740201 -2.741444608567211e-05,-5.782163981914084,-6.192909282610851 --2.728444608567212e-05,-5.789522487143648,-6.189190631740201 -2.715444608567214e-05,-5.778484729299302,-6.192909282610851 --2.702444608567215e-05,-5.782163981914084,-6.192909282610851 -2.689444608567211e-05,-5.774805476684521,-6.189190631740201 --2.676444608567212e-05,-5.774805476684521,-6.189190631740201 -2.663444608567213e-05,-5.778484729299302,-6.196627933481501 --2.650444608567215e-05,-5.771126224069739,-6.196627933481501 -2.637444608567211e-05,-5.771126224069739,-6.185471980869552 --2.624444608567212e-05,-5.767446971454957,-6.200346584352151 -2.611444608567213e-05,-5.771126224069739,-6.185471980869552 --2.598444608567215e-05,-5.767446971454957,-6.192909282610851 -2.58544460856721e-05,-5.767446971454957,-6.192909282610851 --2.572444608567212e-05,-5.763767718840175,-6.192909282610851 -2.559444608567213e-05,-5.763767718840175,-6.192909282610851 --2.546444608567214e-05,-5.763767718840175,-6.196627933481501 -2.53344460856721e-05,-5.760088466225393,-6.196627933481501 --2.520444608567212e-05,-5.760088466225393,-6.200346584352151 -2.507444608567213e-05,-5.763767718840175,-6.196627933481501 --2.494444608567214e-05,-5.760088466225393,-6.196627933481501 -2.48144460856721e-05,-5.756409213610612,-6.196627933481501 --2.468444608567211e-05,-5.756409213610612,-6.192909282610851 -2.455444608567213e-05,-5.75272996099583,-6.189190631740201 --2.442444608567214e-05,-5.75272996099583,-6.189190631740201 -2.42944460856721e-05,-5.75272996099583,-6.192909282610851 --2.416444608567211e-05,-5.745371455766266,-6.185471980869552 -2.403444608567212e-05,-5.749050708381048,-6.181753329998901 --2.390444608567214e-05,-5.745371455766266,-6.15572277390435 -2.37744460856721e-05,-5.745371455766266,-6.16316007564565 --2.364444608567211e-05,-5.745371455766266,-6.174316028257601 -2.351444608567212e-05,-5.745371455766266,-6.181753329998901 --2.338444608567214e-05,-5.741692203151485,-6.181753329998901 -2.32544460856721e-05,-5.738012950536702,-6.189190631740201 --2.312444608567211e-05,-5.745371455766266,-6.185471980869552 -2.299444608567212e-05,-5.745371455766266,-6.189190631740201 --2.286444608567213e-05,-5.730654445307139,-6.196627933481501 -2.273444608567215e-05,-5.741692203151485,-6.196627933481501 --2.260444608567211e-05,-5.741692203151485,-6.192909282610851 -2.247444608567212e-05,-5.738012950536702,-6.200346584352151 --2.234444608567213e-05,-5.734333697921921,-6.178034679128251 -2.221444608567215e-05,-5.734333697921921,-6.226377140446703 --2.20844460856721e-05,-5.730654445307139,-6.200346584352151 -2.195444608567212e-05,-5.730654445307139,-6.204065235222801 --2.182444608567213e-05,-5.723295940077575,-6.211502536964102 -2.169444608567214e-05,-5.723295940077575,-6.207783886093452 --2.15644460856721e-05,-5.719616687462793,-6.211502536964102 -2.143444608567212e-05,-5.726975192692357,-6.207783886093452 --2.130444608567213e-05,-5.726975192692357,-6.200346584352151 -2.117444608567214e-05,-5.719616687462793,-6.200346584352151 --2.10444460856721e-05,-5.723295940077575,-6.207783886093452 -2.091444608567211e-05,-5.715937434848011,-6.196627933481501 --2.078444608567213e-05,-5.719616687462793,-6.207783886093452 -2.065444608567214e-05,-5.715937434848011,-6.211502536964102 --2.05244460856721e-05,-5.715937434848011,-6.207783886093452 -2.039444608567211e-05,-5.719616687462793,-6.204065235222801 --2.026444608567213e-05,-5.708578929618447,-6.215221187834752 -2.013444608567214e-05,-5.704899677003666,-6.207783886093452 --2.00044460856721e-05,-5.708578929618447,-6.211502536964102 -1.987444608567211e-05,-5.697541171774102,-6.204065235222801 --1.974444608567212e-05,-5.704899677003666,-6.204065235222801 -1.961444608567214e-05,-5.697541171774102,-6.207783886093452 --1.94844460856721e-05,-5.697541171774102,-6.204065235222801 -1.935444608567211e-05,-5.69386191915932,-6.207783886093452 --1.922444608567212e-05,-5.697541171774102,-6.207783886093452 -1.909444608567213e-05,-5.697541171774102,-6.211502536964102 --1.896444608567215e-05,-5.69386191915932,-6.207783886093452 -1.883444608567211e-05,-5.686503413929756,-6.204065235222801 --1.870444608567212e-05,-5.69386191915932,-6.204065235222801 -1.857444608567213e-05,-5.69386191915932,-6.185471980869552 --1.844444608567215e-05,-5.690182666544539,-6.185471980869552 -1.831444608567211e-05,-5.69386191915932,-6.189190631740201 --1.818444608567212e-05,-5.69386191915932,-6.196627933481501 -1.805444608567213e-05,-5.690182666544539,-6.196627933481501 --1.792444608567214e-05,-5.69386191915932,-6.192909282610851 -1.77944460856721e-05,-5.69386191915932,-6.196627933481501 --1.766444608567212e-05,-5.69386191915932,-6.189190631740201 -1.753444608567213e-05,-5.686503413929756,-6.196627933481501 --1.740444608567214e-05,-5.686503413929756,-6.196627933481501 -1.72744460856721e-05,-5.682824161314975,-6.204065235222801 --1.714444608567211e-05,-5.682824161314975,-6.196627933481501 -1.701444608567213e-05,-5.682824161314975,-6.196627933481501 --1.688444608567214e-05,-5.675465656085411,-6.200346584352151 -1.67544460856721e-05,-5.679144908700193,-6.200346584352151 --1.662444608567211e-05,-5.671786403470629,-6.204065235222801 -1.649444608567213e-05,-5.679144908700193,-6.200346584352151 --1.636444608567214e-05,-5.682824161314975,-6.189190631740201 -1.62344460856721e-05,-5.664427898241065,-6.204065235222801 --1.610444608567211e-05,-5.668107150855848,-6.189190631740201 -1.597444608567212e-05,-5.671786403470629,-6.192909282610851 --1.584444608567214e-05,-5.675465656085411,-6.189190631740201 -1.57144460856721e-05,-5.671786403470629,-6.192909282610851 --1.558444608567211e-05,-5.671786403470629,-6.189190631740201 -1.545444608567212e-05,-5.668107150855848,-6.192909282610851 --1.532444608567214e-05,-5.664427898241065,-6.196627933481501 -1.519444608567215e-05,-5.660748645626284,-6.192909282610851 --1.506444608567211e-05,-5.664427898241065,-6.196627933481501 -1.493444608567212e-05,-5.65339014039672,-6.174316028257601 --1.480444608567213e-05,-5.671786403470629,-6.204065235222801 -1.467444608567215e-05,-5.660748645626284,-6.192909282610851 --1.454444608567211e-05,-5.65339014039672,-6.192909282610851 -1.441444608567212e-05,-5.657069393011501,-6.185471980869552 --1.428444608567213e-05,-5.649710887781938,-6.178034679128251 -1.415444608567214e-05,-5.649710887781938,-6.15572277390435 --1.40244460856721e-05,-5.649710887781938,-6.166878726516301 -1.389444608567212e-05,-5.649710887781938,-6.181753329998901 --1.376444608567213e-05,-5.657069393011501,-6.189190631740201 -1.363444608567214e-05,-5.649710887781938,-6.200346584352151 --1.35044460856721e-05,-5.649710887781938,-6.196627933481501 -1.337444608567212e-05,-5.649710887781938,-6.204065235222801 --1.324444608567213e-05,-5.642352382552374,-6.200346584352151 -1.311444608567214e-05,-5.642352382552374,-6.200346584352151 --1.29844460856721e-05,-5.646031635167156,-6.204065235222801 -1.285444608567211e-05,-5.649710887781938,-6.196627933481501 --1.272444608567213e-05,-5.646031635167156,-6.204065235222801 -1.259444608567214e-05,-5.646031635167156,-6.204065235222801 --1.24644460856721e-05,-5.638673129937593,-6.196627933481501 -1.233444608567211e-05,-5.638673129937593,-6.204065235222801 --1.220444608567212e-05,-5.642352382552374,-6.196627933481501 -1.207444608567214e-05,-5.634993877322811,-6.200346584352151 --1.19444460856721e-05,-5.627635372093247,-6.200346584352151 -1.181444608567211e-05,-5.631314624708029,-6.200346584352151 --1.168444608567212e-05,-5.627635372093247,-6.204065235222801 -1.155444608567214e-05,-5.631314624708029,-6.200346584352151 --1.142444608567209e-05,-5.627635372093247,-6.196627933481501 -1.129444608567211e-05,-5.634993877322811,-6.204065235222801 --1.116444608567212e-05,-5.627635372093247,-6.200346584352151 -1.103444608567213e-05,-5.631314624708029,-6.204065235222801 --1.090444608567215e-05,-5.634993877322811,-6.204065235222801 -1.077444608567211e-05,-5.623956119478465,-6.207783886093452 --1.064444608567212e-05,-5.627635372093247,-6.204065235222801 -1.051444608567213e-05,-5.634993877322811,-6.200346584352151 --1.038444608567215e-05,-5.623956119478465,-6.215221187834752 -1.02544460856721e-05,-5.623956119478465,-6.192909282610851 --1.012444608567212e-05,-5.620276866863684,-6.200346584352151 -9.994446085672131e-06,-5.61291836163412,-6.204065235222801 --9.864446085672144e-06,-5.616597614248902,-6.200346584352151 -9.734446085672103e-06,-5.616597614248902,-6.196627933481501 --9.604446085672116e-06,-5.61291836163412,-6.204065235222801 -9.474446085672129e-06,-5.61291836163412,-6.204065235222801 --9.344446085672142e-06,-5.61291836163412,-6.207783886093452 -9.214446085672101e-06,-5.605559856404557,-6.207783886093452 --9.084446085672114e-06,-5.601880603789774,-6.204065235222801 -8.954446085672127e-06,-5.605559856404557,-6.189190631740201 --8.82444608567214e-06,-5.609239109019338,-6.192909282610851 -8.694446085672099e-06,-5.601880603789774,-6.192909282610851 --8.564446085672112e-06,-5.601880603789774,-6.185471980869552 -8.434446085672125e-06,-5.605559856404557,-6.196627933481501 --8.304446085672138e-06,-5.598201351174993,-6.192909282610851 -8.174446085672097e-06,-5.598201351174993,-6.192909282610851 --8.04444608567211e-06,-5.59452209856021,-6.189190631740201 -7.914446085672123e-06,-5.601880603789774,-6.200346584352151 --7.784446085672136e-06,-5.59452209856021,-6.196627933481501 -7.654446085672095e-06,-5.587163593330647,-6.192909282610851 --7.524446085672108e-06,-5.587163593330647,-6.196627933481501 -7.394446085672122e-06,-5.587163593330647,-6.196627933481501 --7.264446085672135e-06,-5.587163593330647,-6.196627933481501 -7.134446085672148e-06,-5.587163593330647,-6.196627933481501 --7.004446085672107e-06,-5.579805088101083,-6.196627933481501 -6.87444608567212e-06,-5.579805088101083,-6.196627933481501 --6.744446085672133e-06,-5.572446582871519,-6.196627933481501 -6.614446085672146e-06,-5.572446582871519,-6.196627933481501 --6.484446085672105e-06,-5.572446582871519,-6.192909282610851 -6.354446085672118e-06,-5.572446582871519,-6.189190631740201 --6.224446085672131e-06,-5.572446582871519,-6.189190631740201 -6.094446085672144e-06,-5.572446582871519,-6.185471980869552 --5.964446085672103e-06,-5.568767330256738,-6.189190631740201 -5.834446085672116e-06,-5.572446582871519,-6.189190631740201 --5.704446085672129e-06,-5.572446582871519,-6.192909282610851 -5.574446085672142e-06,-5.572446582871519,-6.189190631740201 --5.444446085672101e-06,-5.565088077641956,-6.192909282610851 -5.314446085672114e-06,-5.579805088101083,-6.185471980869552 --5.184446085672127e-06,-5.572446582871519,-6.185471980869552 -5.054446085672141e-06,-5.572446582871519,-6.189190631740201 --4.924446085672099e-06,-5.565088077641956,-6.185471980869552 -4.794446085672113e-06,-5.568767330256738,-6.189190631740201 --4.664446085672126e-06,-5.572446582871519,-6.189190631740201 -4.534446085672139e-06,-5.565088077641956,-6.178034679128251 --4.404446085672098e-06,-5.568767330256738,-6.174316028257601 -4.274446085672111e-06,-5.561408825027174,-6.166878726516301 --4.144446085672124e-06,-5.561408825027174,-6.181753329998901 -4.014446085672137e-06,-5.550371067182828,-6.185471980869552 --3.884446085672096e-06,-5.561408825027174,-6.192909282610851 -3.754446085672109e-06,-5.557729572412392,-6.196627933481501 --3.624446085672122e-06,-5.550371067182828,-6.196627933481501 -3.494446085672135e-06,-5.554050319797611,-6.192909282610851 --3.364446085672094e-06,-5.550371067182828,-6.196627933481501 -3.234446085672107e-06,-5.550371067182828,-6.204065235222801 --3.10444608567212e-06,-5.546691814568047,-6.192909282610851 -2.974446085672133e-06,-5.550371067182828,-6.196627933481501 --2.844446085672147e-06,-5.546691814568047,-6.196627933481501 -2.714446085672105e-06,-5.546691814568047,-6.200346584352151 --2.584446085672118e-06,-5.546691814568047,-6.200346584352151 -2.454446085672132e-06,-5.546691814568047,-6.207783886093452 --2.324446085672145e-06,-5.546691814568047,-6.204065235222801 -2.194446085672104e-06,-5.543012561953264,-6.207783886093452 --2.064446085672117e-06,-5.539333309338483,-6.207783886093452 -1.93444608567213e-06,-5.539333309338483,-6.200346584352151 --1.804446085672143e-06,-5.539333309338483,-6.204065235222801 -1.674446085672102e-06,-5.535654056723701,-6.200346584352151 --1.544446085672115e-06,-5.539333309338483,-6.207783886093452 -1.414446085672128e-06,-5.535654056723701,-6.200346584352151 --1.284446085672141e-06,-5.531974804108919,-6.200346584352151 -1.1544460856721e-06,-5.531974804108919,-6.207783886093452 --1.024446085672113e-06,-5.524616298879356,-6.204065235222801 -8.944460856721262e-07,-5.528295551494137,-6.200346584352151 --7.644460856721393e-07,-5.528295551494137,-6.204065235222801 -6.344460856720982e-07,-5.528295551494137,-6.211502536964102 --5.044460856721113e-07,-5.458389751813282,-6.204065235222801 -3.744460856721244e-07,-4.55329360857695,-6.13341086868045 --2.444460856721375e-07,-2.584893459668666,-6.033007295172897 -1.144460856720964e-07,0.005300381137749314,-5.932603721665345 -1.555391432789049e-08,2.496154401345055,-5.902854514700144 1.455539143278774e-07,4.471913055482903,-5.902854514700144 -2.755539143278643e-07,5.836915775566965,-5.943759674277295 4.055539143279054e-07,6.12757673213473,-6.040444596914197 -5.355539143278923e-07,6.179086268741676,-6.099943010844599 6.655539143278792e-07,6.197482531815585,-6.1371295195511 -7.955539143278661e-07,6.215878794889495,-6.16316007564565 9.25553914327853e-07,6.223237300119059,-6.16316007564565 -1.055553914327894e-06,6.230595805348622,-6.166878726516301 1.185553914327881e-06,6.237954310578186,-6.178034679128251 -1.315553914327868e-06,6.237954310578186,-6.181753329998901 1.445553914327855e-06,6.230595805348622,-6.174316028257601 -1.575553914327896e-06,6.24531281580775,-6.200346584352151 1.705553914327883e-06,6.22691655273384,-6.192909282610851 -1.83555391432787e-06,6.230595805348622,-6.189190631740201 1.965553914327857e-06,6.230595805348622,-6.192909282610851 -2.095553914327898e-06,6.230595805348622,-6.196627933481501 2.225553914327885e-06,6.219558047504276,-6.192909282610851 -2.355553914327871e-06,6.22691655273384,-6.200346584352151 2.485553914327858e-06,6.223237300119059,-6.196627933481501 -2.615553914327899e-06,6.223237300119059,-6.192909282610851 2.745553914327886e-06,6.223237300119059,-6.196627933481501 -2.875553914327873e-06,6.230595805348622,-6.178034679128251 3.00555391432786e-06,6.208520289659931,-6.207783886093452 -3.135553914327901e-06,6.215878794889495,-6.196627933481501 3.265553914327888e-06,6.223237300119059,-6.200346584352151 -3.395553914327875e-06,6.223237300119059,-6.185471980869552 3.525553914327862e-06,6.212199542274713,-6.192909282610851 -3.655553914327903e-06,6.212199542274713,-6.189190631740201 3.78555391432789e-06,6.215878794889495,-6.192909282610851 -3.915553914327877e-06,6.212199542274713,-6.192909282610851 4.045553914327864e-06,6.212199542274713,-6.192909282610851 -4.175553914327905e-06,6.212199542274713,-6.192909282610851 4.305553914327892e-06,6.212199542274713,-6.189190631740201 -4.435553914327879e-06,6.212199542274713,-6.189190631740201 4.565553914327866e-06,6.212199542274713,-6.185471980869552 -4.695553914327852e-06,6.208520289659931,-6.192909282610851 4.825553914327894e-06,6.204841037045149,-6.189190631740201 -4.95555391432788e-06,6.212199542274713,-6.196627933481501 5.085553914327867e-06,6.212199542274713,-6.189190631740201 -5.215553914327854e-06,6.208520289659931,-6.196627933481501 5.345553914327895e-06,6.208520289659931,-6.166878726516301 -5.475553914327882e-06,6.212199542274713,-6.166878726516301 5.605553914327869e-06,6.18644477397124,-6.181753329998901 -5.735553914327856e-06,6.171727763512113,-6.192909282610851 5.865553914327897e-06,6.171727763512113,-6.192909282610851 -5.995553914327884e-06,6.16804851089733,-6.192909282610851 6.125553914327871e-06,6.171727763512113,-6.196627933481501 -6.255553914327858e-06,6.16804851089733,-6.192909282610851 6.385553914327899e-06,6.164369258282549,-6.196627933481501 -6.515553914327886e-06,6.157010753052985,-6.204065235222801 6.645553914327873e-06,6.175407016126894,-6.189190631740201 -6.77555391432786e-06,6.219558047504276,-6.189190631740201 6.905553914327901e-06,6.230595805348622,-6.189190631740201 -7.035553914327888e-06,6.24531281580775,-6.192909282610851 7.165553914327875e-06,6.248992068422531,-6.204065235222801 -7.295553914327861e-06,6.248992068422531,-6.196627933481501 7.425553914327903e-06,6.24531281580775,-6.207783886093452 -7.555553914327889e-06,6.252671321037313,-6.185471980869552 7.685553914327876e-06,6.252671321037313,-6.204065235222801 -7.815553914327863e-06,6.252671321037313,-6.200346584352151 7.945553914327904e-06,6.252671321037313,-6.200346584352151 -8.075553914327891e-06,6.248992068422531,-6.200346584352151 8.205553914327878e-06,6.241633563192967,-6.196627933481501 -8.335553914327865e-06,6.248992068422531,-6.192909282610851 8.465553914327906e-06,6.252671321037313,-6.200346584352151 -8.595553914327893e-06,6.248992068422531,-6.200346584352151 8.72555391432788e-06,6.256350573652095,-6.196627933481501 -8.855553914327867e-06,6.252671321037313,-6.189190631740201 8.985553914327854e-06,6.260029826266877,-6.207783886093452 -9.115553914327895e-06,6.256350573652095,-6.204065235222801 9.245553914327882e-06,6.24531281580775,-6.192909282610851 -9.375553914327869e-06,6.252671321037313,-6.207783886093452 9.505553914327856e-06,6.248992068422531,-6.200346584352151 -9.635553914327897e-06,6.248992068422531,-6.200346584352151 9.765553914327884e-06,6.248992068422531,-6.200346584352151 -9.89555391432787e-06,6.248992068422531,-6.196627933481501 1.002555391432786e-05,6.24531281580775,-6.207783886093452 -1.01555539143279e-05,6.248992068422531,-6.207783886093452 1.028555391432789e-05,6.252671321037313,-6.204065235222801 -1.041555391432787e-05,6.248992068422531,-6.207783886093452 1.054555391432786e-05,6.248992068422531,-6.204065235222801 -1.06755539143279e-05,6.248992068422531,-6.200346584352151 1.080555391432789e-05,6.252671321037313,-6.185471980869552 -1.093555391432787e-05,6.252671321037313,-6.189190631740201 1.106555391432786e-05,6.256350573652095,-6.185471980869552 -1.11955539143279e-05,6.252671321037313,-6.181753329998901 1.132555391432789e-05,6.252671321037313,-6.192909282610851 -1.145555391432788e-05,6.252671321037313,-6.192909282610851 1.158555391432786e-05,6.252671321037313,-6.192909282610851 -1.17155539143279e-05,6.252671321037313,-6.189190631740201 1.184555391432789e-05,6.24531281580775,-6.192909282610851 -1.197555391432788e-05,6.248992068422531,-6.192909282610851 1.210555391432786e-05,6.252671321037313,-6.189190631740201 -1.223555391432791e-05,6.256350573652095,-6.192909282610851 1.236555391432789e-05,6.260029826266877,-6.196627933481501 -1.249555391432788e-05,6.248992068422531,-6.189190631740201 1.262555391432787e-05,6.248992068422531,-6.192909282610851 -1.275555391432785e-05,6.248992068422531,-6.189190631740201 1.288555391432789e-05,6.248992068422531,-6.189190631740201 -1.301555391432788e-05,6.248992068422531,-6.185471980869552 1.314555391432787e-05,6.252671321037313,-6.192909282610851 -1.327555391432786e-05,6.24531281580775,-6.189190631740201 1.34055539143279e-05,6.252671321037313,-6.189190631740201 -1.353555391432788e-05,6.252671321037313,-6.174316028257601 1.366555391432787e-05,6.248992068422531,-6.185471980869552 -1.379555391432786e-05,6.24531281580775,-6.189190631740201 1.39255539143279e-05,6.248992068422531,-6.181753329998901 -1.405555391432788e-05,6.252671321037313,-6.189190631740201 1.418555391432787e-05,6.248992068422531,-6.185471980869552 -1.431555391432786e-05,6.248992068422531,-6.181753329998901 1.44455539143279e-05,6.252671321037313,-6.185471980869552 -1.457555391432789e-05,6.252671321037313,-6.181753329998901 1.470555391432787e-05,6.252671321037313,-6.181753329998901 -1.483555391432786e-05,6.252671321037313,-6.189190631740201 1.49655539143279e-05,6.252671321037313,-6.189190631740201 -1.509555391432789e-05,6.252671321037313,-6.170597377386951 1.522555391432788e-05,6.248992068422531,-6.159441424775 -1.535555391432786e-05,6.260029826266877,-6.178034679128251 1.54855539143279e-05,6.248992068422531,-6.189190631740201 -1.561555391432789e-05,6.252671321037313,-6.192909282610851 1.574555391432788e-05,6.248992068422531,-6.192909282610851 -1.587555391432786e-05,6.248992068422531,-6.192909282610851 1.600555391432791e-05,6.24531281580775,-6.200346584352151 -1.613555391432789e-05,6.248992068422531,-6.189190631740201 1.626555391432788e-05,6.248992068422531,-6.192909282610851 -1.639555391432787e-05,6.24531281580775,-6.196627933481501 1.652555391432785e-05,6.252671321037313,-6.192909282610851 -1.665555391432789e-05,6.24531281580775,-6.192909282610851 1.678555391432788e-05,6.248992068422531,-6.192909282610851 -1.691555391432787e-05,6.241633563192967,-6.196627933481501 1.704555391432785e-05,6.248992068422531,-6.204065235222801 -1.71755539143279e-05,6.24531281580775,-6.200346584352151 1.730555391432788e-05,6.24531281580775,-6.204065235222801 -1.743555391432787e-05,6.241633563192967,-6.196627933481501 1.756555391432786e-05,6.24531281580775,-6.196627933481501 -1.76955539143279e-05,6.241633563192967,-6.200346584352151 1.782555391432788e-05,6.24531281580775,-6.196627933481501 -1.795555391432787e-05,6.24531281580775,-6.196627933481501 1.808555391432786e-05,6.237954310578186,-6.200346584352151 -1.82155539143279e-05,6.24531281580775,-6.196627933481501 1.834555391432789e-05,6.248992068422531,-6.200346584352151 -1.847555391432787e-05,6.241633563192967,-6.196627933481501 1.860555391432786e-05,6.241633563192967,-6.192909282610851 -1.87355539143279e-05,6.237954310578186,-6.200346584352151 1.886555391432789e-05,6.234275057963404,-6.192909282610851 -1.899555391432787e-05,6.248992068422531,-6.204065235222801 1.912555391432786e-05,6.241633563192967,-6.200346584352151 -1.92555539143279e-05,6.230595805348622,-6.185471980869552 1.938555391432789e-05,6.252671321037313,-6.211502536964102 -1.951555391432788e-05,6.24531281580775,-6.200346584352151 1.964555391432786e-05,6.24531281580775,-6.200346584352151 -1.97755539143279e-05,6.241633563192967,-6.196627933481501 1.990555391432789e-05,6.241633563192967,-6.200346584352151 -2.003555391432788e-05,6.24531281580775,-6.204065235222801 2.016555391432787e-05,6.24531281580775,-6.200346584352151 -2.029555391432791e-05,6.237954310578186,-6.207783886093452 2.042555391432789e-05,6.24531281580775,-6.204065235222801 -2.055555391432788e-05,6.24531281580775,-6.192909282610851 2.068555391432787e-05,6.248992068422531,-6.178034679128251 -2.081555391432785e-05,6.230595805348622,-6.207783886093452 2.09455539143279e-05,6.234275057963404,-6.196627933481501 -2.107555391432788e-05,6.234275057963404,-6.200346584352151 2.120555391432787e-05,6.230595805348622,-6.200346584352151 -2.133555391432786e-05,6.234275057963404,-6.196627933481501 2.14655539143279e-05,6.230595805348622,-6.192909282610851 -2.159555391432788e-05,6.234275057963404,-6.192909282610851 2.172555391432787e-05,6.230595805348622,-6.192909282610851 -2.185555391432786e-05,6.22691655273384,-6.192909282610851 2.19855539143279e-05,6.223237300119059,-6.196627933481501 -2.211555391432789e-05,6.223237300119059,-6.196627933481501 2.224555391432787e-05,6.223237300119059,-6.189190631740201 -2.237555391432786e-05,6.219558047504276,-6.192909282610851 2.25055539143279e-05,6.223237300119059,-6.189190631740201 -2.263555391432789e-05,6.219558047504276,-6.189190631740201 2.276555391432787e-05,6.22691655273384,-6.189190631740201 -2.289555391432786e-05,6.223237300119059,-6.189190631740201 2.30255539143279e-05,6.219558047504276,-6.185471980869552 -2.315555391432789e-05,6.212199542274713,-6.189190631740201 2.328555391432788e-05,6.215878794889495,-6.181753329998901 -2.341555391432786e-05,6.215878794889495,-6.185471980869552 2.35455539143279e-05,6.219558047504276,-6.181753329998901 -2.367555391432789e-05,6.223237300119059,-6.192909282610851 2.380555391432788e-05,6.219558047504276,-6.185471980869552 -2.393555391432786e-05,6.219558047504276,-6.185471980869552 2.406555391432791e-05,6.215878794889495,-6.189190631740201 -2.419555391432789e-05,6.215878794889495,-6.192909282610851 2.432555391432788e-05,6.215878794889495,-6.196627933481501 -2.445555391432787e-05,6.212199542274713,-6.189190631740201 2.458555391432785e-05,6.215878794889495,-6.189190631740201 -2.471555391432789e-05,6.212199542274713,-6.192909282610851 2.484555391432788e-05,6.212199542274713,-6.174316028257601 -2.497555391432787e-05,6.212199542274713,-6.166878726516301 2.510555391432786e-05,6.212199542274713,-6.174316028257601 -2.52355539143279e-05,6.204841037045149,-6.185471980869552 2.536555391432788e-05,6.208520289659931,-6.181753329998901 -2.549555391432787e-05,6.215878794889495,-6.189190631740201 2.562555391432786e-05,5.796443996804365,-6.222658489576052 -2.57555539143279e-05,4.66691344406634,-6.289594205247754 2.588555391432789e-05,2.864079662823239,-6.363967222660755 -2.601555391432787e-05,0.7153961357906443,-6.427184287461807 2.614555391432786e-05,-1.521589453996714,-6.468089447038958 -2.62755539143279e-05,-3.423763055838925,-6.479245399650909 2.640555391432789e-05,-5.042634206342934,-6.464370796168308 -2.653555391432787e-05,-5.601880603789774,-6.378841826143356 2.666555391432786e-05,-5.664427898241065,-6.304468808730354 -2.67955539143279e-05,-5.686503413929756,-6.274719601765153 2.692555391432789e-05,-5.701220424388884,-6.252407696541253 -2.705555391432788e-05,-5.715937434848011,-6.226377140446703 2.718555391432786e-05,-5.715937434848011,-6.226377140446703 -2.73155539143279e-05,-5.715937434848011,-6.207783886093452 2.744555391432789e-05,-5.719616687462793,-6.211502536964102 -2.757555391432788e-05,-5.715937434848011,-6.207783886093452 2.770555391432786e-05,-5.715937434848011,-6.207783886093452 -2.783555391432791e-05,-5.708578929618447,-6.204065235222801 2.796555391432789e-05,-5.708578929618447,-6.207783886093452 -2.809555391432788e-05,-5.704899677003666,-6.204065235222801 2.822555391432787e-05,-5.701220424388884,-6.207783886093452 -2.835555391432785e-05,-5.697541171774102,-6.204065235222801 2.848555391432789e-05,-5.701220424388884,-6.200346584352151 -2.861555391432788e-05,-5.697541171774102,-6.207783886093452 2.874555391432787e-05,-5.69386191915932,-6.207783886093452 -2.887555391432785e-05,-5.69386191915932,-6.207783886093452 2.90055539143279e-05,-5.686503413929756,-6.204065235222801 -2.913555391432788e-05,-5.690182666544539,-6.207783886093452 2.926555391432787e-05,-5.690182666544539,-6.200346584352151 -2.939555391432786e-05,-5.682824161314975,-6.207783886093452 2.95255539143279e-05,-5.686503413929756,-6.207783886093452 -2.965555391432788e-05,-5.686503413929756,-6.200346584352151 2.978555391432787e-05,-5.682824161314975,-6.204065235222801 -2.991555391432786e-05,-5.686503413929756,-6.207783886093452 3.00455539143279e-05,-5.682824161314975,-6.207783886093452 -3.017555391432789e-05,-5.675465656085411,-6.204065235222801 3.030555391432787e-05,-5.690182666544539,-6.196627933481501 -3.043555391432786e-05,-5.679144908700193,-6.192909282610851 3.05655539143279e-05,-5.686503413929756,-6.185471980869552 -3.069555391432789e-05,-5.686503413929756,-6.192909282610851 3.082555391432788e-05,-5.679144908700193,-6.196627933481501 -3.095555391432786e-05,-5.682824161314975,-6.200346584352151 3.10855539143279e-05,-5.682824161314975,-6.204065235222801 -3.121555391432789e-05,-5.675465656085411,-6.196627933481501 3.134555391432788e-05,-5.679144908700193,-6.185471980869552 -3.147555391432786e-05,-5.675465656085411,-6.189190631740201 3.16055539143279e-05,-5.679144908700193,-6.196627933481501 -3.173555391432789e-05,-5.675465656085411,-6.196627933481501 3.186555391432788e-05,-5.682824161314975,-6.200346584352151 -3.199555391432787e-05,-5.675465656085411,-6.192909282610851 3.212555391432791e-05,-5.671786403470629,-6.196627933481501 -3.225555391432789e-05,-5.675465656085411,-6.196627933481501 3.238555391432788e-05,-5.675465656085411,-6.192909282610851 -3.251555391432787e-05,-5.668107150855848,-6.189190631740201 3.264555391432785e-05,-5.668107150855848,-6.189190631740201 -3.27755539143279e-05,-5.675465656085411,-6.192909282610851 3.290555391432788e-05,-5.671786403470629,-6.192909282610851 -3.303555391432787e-05,-5.675465656085411,-6.192909282610851 3.316555391432786e-05,-5.668107150855848,-6.196627933481501 -3.32955539143279e-05,-5.675465656085411,-6.196627933481501 3.342555391432788e-05,-5.671786403470629,-6.192909282610851 -3.355555391432787e-05,-5.671786403470629,-6.196627933481501 3.368555391432786e-05,-5.675465656085411,-6.192909282610851 -3.38155539143279e-05,-5.668107150855848,-6.192909282610851 3.394555391432789e-05,-5.668107150855848,-6.200346584352151 -3.407555391432787e-05,-5.664427898241065,-6.196627933481501 3.420555391432786e-05,-5.671786403470629,-6.204065235222801 -3.43355539143279e-05,-5.671786403470629,-6.200346584352151 3.446555391432789e-05,-5.664427898241065,-6.196627933481501 -3.459555391432787e-05,-5.664427898241065,-6.189190631740201 3.472555391432786e-05,-5.664427898241065,-6.166878726516301 -3.48555539143279e-05,-5.671786403470629,-6.178034679128251 3.498555391432789e-05,-5.668107150855848,-6.181753329998901 -3.511555391432788e-05,-5.664427898241065,-6.189190631740201 3.524555391432786e-05,-5.664427898241065,-6.192909282610851 -3.53755539143279e-05,-5.664427898241065,-6.196627933481501 3.550555391432789e-05,-5.664427898241065,-6.192909282610851 -3.563555391432788e-05,-5.668107150855848,-6.200346584352151 3.576555391432786e-05,-5.660748645626284,-6.196627933481501 -3.589555391432791e-05,-5.657069393011501,-6.204065235222801 3.602555391432789e-05,-5.664427898241065,-6.204065235222801 -3.615555391432788e-05,-5.657069393011501,-6.204065235222801 3.628555391432787e-05,-5.660748645626284,-6.204065235222801 -3.641555391432785e-05,-5.660748645626284,-6.200346584352151 3.654555391432789e-05,-5.664427898241065,-6.207783886093452 -3.667555391432788e-05,-5.668107150855848,-6.207783886093452 3.680555391432787e-05,-5.660748645626284,-6.204065235222801 -3.693555391432786e-05,-5.664427898241065,-6.204065235222801 3.70655539143279e-05,-5.675465656085411,-6.185471980869552 -3.719555391432788e-05,-5.65339014039672,-6.215221187834752 3.732555391432787e-05,-5.664427898241065,-6.200346584352151 -3.745555391432786e-05,-5.664427898241065,-6.204065235222801 3.75855539143279e-05,-5.664427898241065,-6.207783886093452 -3.771555391432789e-05,-5.664427898241065,-6.207783886093452 3.784555391432787e-05,-5.660748645626284,-6.200346584352151 -3.797555391432786e-05,-5.668107150855848,-6.204065235222801 3.81055539143279e-05,-5.660748645626284,-6.204065235222801 -3.823555391432789e-05,-5.664427898241065,-6.204065235222801 3.836555391432787e-05,-5.657069393011501,-6.204065235222801 -3.849555391432786e-05,-5.657069393011501,-6.189190631740201 3.86255539143279e-05,-5.660748645626284,-6.218939838705402 -3.875555391432789e-05,-5.65339014039672,-6.204065235222801 3.888555391432788e-05,-5.657069393011501,-6.211502536964102 -3.901555391432786e-05,-5.65339014039672,-6.196627933481501 3.91455539143279e-05,-5.657069393011501,-6.211502536964102 -3.927555391432789e-05,-5.65339014039672,-6.204065235222801 3.940555391432788e-05,-5.65339014039672,-6.211502536964102 -3.953555391432786e-05,-5.649710887781938,-6.204065235222801 3.966555391432791e-05,-5.65339014039672,-6.207783886093452 -3.979555391432789e-05,-5.649710887781938,-6.211502536964102 3.992555391432788e-05,-5.649710887781938,-6.204065235222801 -4.005555391432787e-05,-5.646031635167156,-6.189190631740201 4.018555391432791e-05,-5.646031635167156,-6.189190631740201 -4.031555391432789e-05,-5.649710887781938,-6.189190631740201 4.044555391432788e-05,-5.646031635167156,-6.189190631740201 -4.057555391432787e-05,-5.649710887781938,-6.189190631740201 4.070555391432785e-05,-5.646031635167156,-6.189190631740201 -4.08355539143279e-05,-5.646031635167156,-6.189190631740201 4.096555391432788e-05,-5.646031635167156,-6.185471980869552 -4.109555391432787e-05,-5.638673129937593,-6.192909282610851 4.122555391432786e-05,-5.638673129937593,-6.196627933481501 -4.13555539143279e-05,-5.642352382552374,-6.189190631740201 4.148555391432788e-05,-5.642352382552374,-6.196627933481501 -4.161555391432787e-05,-5.638673129937593,-6.196627933481501 4.174555391432786e-05,-5.642352382552374,-6.196627933481501 -4.18755539143279e-05,-5.634993877322811,-6.192909282610851 4.200555391432789e-05,-5.638673129937593,-6.200346584352151 -4.213555391432787e-05,-5.642352382552374,-6.204065235222801 4.226555391432786e-05,-5.638673129937593,-6.192909282610851 -4.23955539143279e-05,-5.646031635167156,-6.196627933481501 4.252555391432789e-05,-5.627635372093247,-6.185471980869552 -4.265555391432788e-05,-5.631314624708029,-6.189190631740201 4.278555391432786e-05,-5.631314624708029,-6.189190631740201 -4.29155539143279e-05,-5.638673129937593,-6.189190631740201 4.304555391432789e-05,-5.638673129937593,-6.181753329998901 -4.317555391432788e-05,-5.634993877322811,-6.189190631740201 4.330555391432786e-05,-5.631314624708029,-6.192909282610851 -4.343555391432791e-05,-5.627635372093247,-6.189190631740201 4.356555391432789e-05,-5.631314624708029,-6.189190631740201 -4.369555391432788e-05,-5.634993877322811,-6.189190631740201 4.382555391432787e-05,-5.634993877322811,-6.192909282610851 -4.395555391432791e-05,-5.631314624708029,-6.192909282610851 4.408555391432789e-05,-5.627635372093247,-6.192909282610851 -4.421555391432788e-05,-5.627635372093247,-6.196627933481501 4.434555391432787e-05,-5.627635372093247,-6.189190631740201 -4.447555391432785e-05,-5.631314624708029,-6.15572277390435 4.46055539143279e-05,-5.620276866863684,-6.181753329998901 -4.473555391432788e-05,-5.616597614248902,-6.185471980869552 4.486555391432787e-05,-5.631314624708029,-6.192909282610851 -4.499555391432786e-05,-5.620276866863684,-6.196627933481501 4.51255539143279e-05,-5.623956119478465,-6.196627933481501 -4.525555391432788e-05,-5.620276866863684,-6.196627933481501 4.538555391432787e-05,-5.61291836163412,-6.204065235222801 -4.551555391432786e-05,-5.623956119478465,-6.200346584352151 4.56455539143279e-05,-5.620276866863684,-6.207783886093452 -4.577555391432789e-05,-5.616597614248902,-6.196627933481501 4.590555391432787e-05,-5.61291836163412,-6.204065235222801 -4.603555391432789e-05,-5.61291836163412,-6.204065235222801 4.616555391432787e-05,-5.620276866863684,-6.200346584352151 -4.629555391432789e-05,-5.616597614248902,-6.200346584352151 4.642555391432787e-05,-5.620276866863684,-6.207783886093452 -4.655555391432789e-05,-5.623956119478465,-6.204065235222801 4.668555391432788e-05,-5.616597614248902,-6.204065235222801 -4.681555391432789e-05,-5.61291836163412,-6.204065235222801 4.694555391432788e-05,-5.616597614248902,-6.204065235222801 -4.707555391432789e-05,-5.61291836163412,-6.207783886093452 4.720555391432788e-05,-5.620276866863684,-6.207783886093452 -4.733555391432789e-05,-5.61291836163412,-6.204065235222801 4.746555391432788e-05,-5.609239109019338,-6.204065235222801 -4.759555391432789e-05,-5.609239109019338,-6.204065235222801 4.772555391432788e-05,-5.601880603789774,-6.207783886093452 -4.785555391432789e-05,-5.605559856404557,-6.207783886093452 4.798555391432788e-05,-5.598201351174993,-6.200346584352151 -4.811555391432789e-05,-5.609239109019338,-6.204065235222801 4.824555391432788e-05,-5.601880603789774,-6.200346584352151 -4.837555391432787e-05,-5.605559856404557,-6.204065235222801 4.850555391432788e-05,-5.601880603789774,-6.204065235222801 -4.863555391432787e-05,-5.598201351174993,-6.204065235222801 4.876555391432788e-05,-5.601880603789774,-6.204065235222801 -4.889555391432787e-05,-5.61291836163412,-6.222658489576052 4.902555391432788e-05,-5.583484340715865,-6.192909282610851 -4.915555391432787e-05,-5.59452209856021,-6.185471980869552 4.928555391432788e-05,-5.59452209856021,-6.200346584352151 -4.941555391432787e-05,-5.59452209856021,-6.207783886093452 4.954555391432789e-05,-5.59452209856021,-6.207783886093452 -4.967555391432787e-05,-5.59452209856021,-6.215221187834752 4.980555391432789e-05,-5.59452209856021,-6.196627933481501 -4.993555391432787e-05,-5.587163593330647,-6.200346584352151 5.006555391432789e-05,-5.587163593330647,-6.196627933481501 -5.019555391432787e-05,-5.590842845945429,-6.200346584352151 5.032555391432789e-05,-5.583484340715865,-6.189190631740201 -5.045555391432788e-05,-5.579805088101083,-6.189190631740201 5.058555391432789e-05,-5.583484340715865,-6.200346584352151 -5.071555391432788e-05,-5.579805088101083,-6.200346584352151 5.084555391432789e-05,-5.587163593330647,-6.196627933481501 -5.097555391432788e-05,-5.579805088101083,-6.196627933481501 5.110555391432789e-05,-5.579805088101083,-6.200346584352151 -5.123555391432788e-05,-5.576125835486302,-6.196627933481501 5.136555391432789e-05,-5.576125835486302,-6.196627933481501 -5.149555391432788e-05,-5.590842845945429,-6.192909282610851 5.162555391432789e-05,-5.233955342311591,-6.170597377386951 -5.175555391432788e-05,-3.8542356117684,-6.085068407361999 5.188555391432789e-05,-1.602533011521915,-5.980946182983796 -5.201555391432788e-05,1.028132608047101,-5.899135863829494 5.214555391432787e-05,3.232004924301423,-5.891698562088194 -5.227555391432788e-05,5.016442442470615,-5.902854514700144 5.240555391432787e-05,5.895783817403474,-5.969790230371846 -5.253555391432788e-05,6.00616139584693,-6.051600549526148 5.266555391432787e-05,6.042953921994748,-6.099943010844599 -5.279555391432788e-05,6.068708690298221,-6.13341086868045 5.292555391432787e-05,6.079746448142567,-6.14828547216305 -5.305555391432788e-05,6.083425700757348,-6.16316007564565 5.318555391432787e-05,6.083425700757348,-6.170597377386951 -5.331555391432789e-05,6.090784205986912,-6.174316028257601 5.344555391432787e-05,6.087104953372131,-6.174316028257601 -5.357555391432789e-05,6.083425700757348,-6.178034679128251 5.370555391432787e-05,6.087104953372131,-6.174316028257601 -5.383555391432789e-05,6.087104953372131,-6.174316028257601 5.396555391432787e-05,6.098142711216476,-6.185471980869552 -5.409555391432789e-05,6.083425700757348,-6.185471980869552 5.422555391432787e-05,6.079746448142567,-6.15572277390435 -5.435555391432789e-05,6.083425700757348,-6.166878726516301 5.448555391432788e-05,6.083425700757348,-6.174316028257601 -5.461555391432789e-05,6.090784205986912,-6.185471980869552 5.474555391432788e-05,6.079746448142567,-6.192909282610851 -5.487555391432789e-05,6.072387942913003,-6.181753329998901 5.500555391432788e-05,6.079746448142567,-6.215221187834752 -5.513555391432789e-05,6.076067195527784,-6.196627933481501 5.526555391432788e-05,6.076067195527784,-6.196627933481501 -5.539555391432789e-05,6.072387942913003,-6.192909282610851 5.552555391432788e-05,6.076067195527784,-6.196627933481501 -5.565555391432789e-05,6.072387942913003,-6.200346584352151 5.578555391432788e-05,6.076067195527784,-6.196627933481501 -5.591555391432789e-05,6.072387942913003,-6.196627933481501 5.604555391432788e-05,6.072387942913003,-6.200346584352151 -5.617555391432787e-05,6.076067195527784,-6.200346584352151 5.630555391432788e-05,6.061350185068657,-6.178034679128251 -5.643555391432787e-05,6.076067195527784,-6.207783886093452 5.656555391432788e-05,6.065029437683439,-6.196627933481501 -5.669555391432787e-05,6.068708690298221,-6.200346584352151 5.682555391432788e-05,6.050312427224312,-6.192909282610851 -5.695555391432787e-05,6.028236911535621,-6.204065235222801 5.708555391432788e-05,6.028236911535621,-6.192909282610851 -5.721555391432787e-05,6.031916164150402,-6.189190631740201 5.734555391432789e-05,6.028236911535621,-6.196627933481501 -5.747555391432787e-05,6.035595416765185,-6.192909282610851 5.760555391432789e-05,6.028236911535621,-6.200346584352151 -5.773555391432787e-05,6.028236911535621,-6.196627933481501 5.786555391432789e-05,6.039274669379966,-6.200346584352151 -5.799555391432787e-05,6.090784205986912,-6.196627933481501 5.812555391432789e-05,6.112859721675603,-6.192909282610851 -5.825555391432787e-05,6.138614489979076,-6.192909282610851 5.838555391432789e-05,6.142293742593858,-6.192909282610851 -5.851555391432788e-05,6.145972995208639,-6.196627933481501 5.864555391432789e-05,6.149652247823422,-6.200346584352151 -5.877555391432788e-05,6.149652247823422,-6.204065235222801 5.890555391432789e-05,6.145972995208639,-6.200346584352151 -5.903555391432788e-05,6.149652247823422,-6.192909282610851 5.916555391432789e-05,6.142293742593858,-6.196627933481501 -5.929555391432788e-05,6.149652247823422,-6.200346584352151 5.942555391432789e-05,6.142293742593858,-6.200346584352151 -5.955555391432788e-05,6.145972995208639,-6.192909282610851 5.968555391432789e-05,6.142293742593858,-6.181753329998901 -5.981555391432788e-05,6.149652247823422,-6.178034679128251 5.994555391432789e-05,6.145972995208639,-6.189190631740201 -6.007555391432788e-05,6.142293742593858,-6.178034679128251 6.020555391432787e-05,6.138614489979076,-6.189190631740201 -6.033555391432788e-05,6.142293742593858,-6.189190631740201 6.046555391432787e-05,6.138614489979076,-6.178034679128251 -6.059555391432788e-05,6.142293742593858,-6.181753329998901 6.072555391432787e-05,6.142293742593858,-6.181753329998901 -6.085555391432788e-05,6.138614489979076,-6.178034679128251 6.098555391432787e-05,6.142293742593858,-6.189190631740201 -6.111555391432788e-05,6.142293742593858,-6.185471980869552 6.124555391432787e-05,6.149652247823422,-6.185471980869552 -6.137555391432789e-05,6.138614489979076,-6.185471980869552 6.150555391432787e-05,6.142293742593858,-6.189190631740201 -6.163555391432789e-05,6.145972995208639,-6.189190631740201 6.176555391432787e-05,6.149652247823422,-6.181753329998901 -6.189555391432789e-05,6.145972995208639,-6.189190631740201 6.202555391432787e-05,6.149652247823422,-6.185471980869552 -6.215555391432789e-05,6.149652247823422,-6.185471980869552 6.228555391432788e-05,6.138614489979076,-6.174316028257601 -6.241555391432789e-05,6.142293742593858,-6.192909282610851 6.254555391432788e-05,6.145972995208639,-6.189190631740201 -6.267555391432789e-05,6.138614489979076,-6.192909282610851 6.280555391432788e-05,6.149652247823422,-6.189190631740201 -6.293555391432789e-05,6.145972995208639,-6.189190631740201 6.306555391432788e-05,6.149652247823422,-6.189190631740201 -6.319555391432789e-05,6.142293742593858,-6.192909282610851 6.332555391432788e-05,6.142293742593858,-6.192909282610851 -6.345555391432789e-05,6.134935237364294,-6.192909282610851 6.358555391432788e-05,6.142293742593858,-6.196627933481501 -6.371555391432789e-05,6.145972995208639,-6.189190631740201 6.384555391432788e-05,6.142293742593858,-6.192909282610851 -6.397555391432789e-05,6.142293742593858,-6.170597377386951 6.410555391432788e-05,6.142293742593858,-6.170597377386951 -6.423555391432787e-05,6.145972995208639,-6.181753329998901 6.436555391432788e-05,6.149652247823422,-6.189190631740201 -6.449555391432787e-05,6.153331500438203,-6.192909282610851 6.462555391432788e-05,6.149652247823422,-6.189190631740201 -6.475555391432787e-05,6.149652247823422,-6.189190631740201 6.488555391432788e-05,6.149652247823422,-6.192909282610851 -6.501555391432787e-05,6.149652247823422,-6.189190631740201 6.514555391432789e-05,6.149652247823422,-6.196627933481501 -6.527555391432787e-05,6.145972995208639,-6.196627933481501 6.540555391432789e-05,6.149652247823422,-6.192909282610851 -6.553555391432787e-05,6.149652247823422,-6.189190631740201 6.566555391432789e-05,6.142293742593858,-6.189190631740201 -6.579555391432787e-05,6.149652247823422,-6.196627933481501 6.592555391432789e-05,6.138614489979076,-6.200346584352151 -6.605555391432787e-05,6.149652247823422,-6.192909282610851 6.618555391432789e-05,6.142293742593858,-6.196627933481501 -6.631555391432788e-05,6.142293742593858,-6.204065235222801 6.644555391432789e-05,6.142293742593858,-6.200346584352151 -6.657555391432788e-05,6.145972995208639,-6.204065235222801 6.670555391432789e-05,6.123897479519949,-6.233814442188002 -6.683555391432788e-05,6.164369258282549,-6.181753329998901 6.696555391432789e-05,6.145972995208639,-6.189190631740201 -6.709555391432788e-05,6.145972995208639,-6.207783886093452 6.722555391432789e-05,6.149652247823422,-6.207783886093452 -6.735555391432788e-05,6.149652247823422,-6.200346584352151 6.748555391432789e-05,6.149652247823422,-6.207783886093452 -6.761555391432788e-05,6.145972995208639,-6.207783886093452 6.774555391432789e-05,6.149652247823422,-6.200346584352151 -6.787555391432788e-05,6.142293742593858,-6.204065235222801 6.800555391432787e-05,6.142293742593858,-6.200346584352151 -6.813555391432788e-05,6.149652247823422,-6.196627933481501 6.826555391432787e-05,6.142293742593858,-6.192909282610851 -6.839555391432788e-05,6.149652247823422,-6.200346584352151 6.852555391432787e-05,6.149652247823422,-6.189190631740201 -6.865555391432788e-05,6.149652247823422,-6.192909282610851 6.878555391432787e-05,6.149652247823422,-6.196627933481501 -6.891555391432788e-05,6.149652247823422,-6.192909282610851 6.904555391432787e-05,6.145972995208639,-6.200346584352151 -6.917555391432789e-05,6.149652247823422,-6.200346584352151 6.930555391432787e-05,6.145972995208639,-6.192909282610851 -6.943555391432789e-05,6.145972995208639,-6.185471980869552 6.956555391432787e-05,6.149652247823422,-6.189190631740201 -6.969555391432789e-05,6.145972995208639,-6.185471980869552 6.982555391432787e-05,6.145972995208639,-6.189190631740201 -6.995555391432789e-05,6.145972995208639,-6.192909282610851 7.008555391432788e-05,6.145972995208639,-6.192909282610851 -7.021555391432789e-05,6.142293742593858,-6.192909282610851 7.034555391432788e-05,6.149652247823422,-6.200346584352151 -7.047555391432789e-05,6.149652247823422,-6.185471980869552 7.060555391432788e-05,6.145972995208639,-6.196627933481501 -7.073555391432789e-05,6.145972995208639,-6.200346584352151 7.086555391432788e-05,6.145972995208639,-6.196627933481501 -7.099555391432789e-05,6.142293742593858,-6.192909282610851 7.112555391432788e-05,6.142293742593858,-6.192909282610851 -7.125555391432789e-05,6.142293742593858,-6.200346584352151 7.138555391432788e-05,6.138614489979076,-6.192909282610851 -7.151555391432789e-05,6.134935237364294,-6.189190631740201 7.164555391432788e-05,6.138614489979076,-6.189190631740201 -7.177555391432789e-05,6.145972995208639,-6.185471980869552 7.190555391432788e-05,6.134935237364294,-6.200346584352151 -7.203555391432787e-05,6.134935237364294,-6.196627933481501 7.216555391432788e-05,6.134935237364294,-6.196627933481501 -7.229555391432787e-05,6.12757673213473,-6.196627933481501 7.242555391432788e-05,6.134935237364294,-6.196627933481501 -7.255555391432787e-05,6.134935237364294,-6.200346584352151 7.268555391432788e-05,6.123897479519949,-6.185471980869552 -7.281555391432787e-05,6.138614489979076,-6.204065235222801 7.294555391432789e-05,6.134935237364294,-6.185471980869552 -7.307555391432787e-05,6.12757673213473,-6.192909282610851 7.320555391432789e-05,6.131255984749512,-6.192909282610851 -7.333555391432787e-05,6.131255984749512,-6.189190631740201 7.346555391432789e-05,6.134935237364294,-6.189190631740201 -7.359555391432787e-05,6.131255984749512,-6.192909282610851 7.372555391432789e-05,6.131255984749512,-6.174316028257601 -7.385555391432787e-05,6.131255984749512,-6.16316007564565 7.398555391432789e-05,6.131255984749512,-6.174316028257601 -7.411555391432788e-05,6.120218226905167,-6.174316028257601 7.424555391432789e-05,6.134935237364294,-6.200346584352151 -7.437555391432788e-05,6.123897479519949,-6.196627933481501 7.450555391432789e-05,6.131255984749512,-6.200346584352151 -7.463555391432788e-05,6.131255984749512,-6.185471980869552 7.476555391432789e-05,6.131255984749512,-6.204065235222801 -7.489555391432788e-05,6.123897479519949,-6.196627933481501 7.502555391432789e-05,6.120218226905167,-6.192909282610851 -7.515555391432788e-05,6.120218226905167,-6.204065235222801 7.528555391432789e-05,6.120218226905167,-6.207783886093452 -7.541555391432788e-05,6.112859721675603,-6.204065235222801 7.554555391432789e-05,6.112859721675603,-6.204065235222801 -7.567555391432788e-05,6.112859721675603,-6.207783886093452 7.580555391432789e-05,6.120218226905167,-6.207783886093452 -7.593555391432788e-05,6.116538974290385,-6.207783886093452 7.606555391432787e-05,6.131255984749512,-6.200346584352151 -7.619555391432788e-05,6.120218226905167,-6.196627933481501 7.632555391432787e-05,6.116538974290385,-6.204065235222801 -7.645555391432788e-05,6.123897479519949,-6.192909282610851 7.658555391432787e-05,6.112859721675603,-6.196627933481501 -7.671555391432788e-05,6.116538974290385,-6.200346584352151 7.684555391432787e-05,6.116538974290385,-6.200346584352151 -7.697555391432789e-05,6.120218226905167,-6.200346584352151 7.710555391432787e-05,6.112859721675603,-6.204065235222801 -7.723555391432789e-05,6.112859721675603,-6.207783886093452 7.736555391432787e-05,6.109180469060822,-6.204065235222801 -7.749555391432789e-05,6.116538974290385,-6.207783886093452 7.762555391432787e-05,6.112859721675603,-6.207783886093452 -7.775555391432789e-05,6.116538974290385,-6.211502536964102 7.788555391432788e-05,6.109180469060822,-6.200346584352151 -7.801555391432789e-05,6.112859721675603,-6.207783886093452 7.814555391432788e-05,6.112859721675603,-6.211502536964102 -7.827555391432789e-05,6.120218226905167,-6.207783886093452 7.840555391432788e-05,6.112859721675603,-6.200346584352151 -7.853555391432789e-05,6.116538974290385,-6.200346584352151 7.866555391432788e-05,6.112859721675603,-6.192909282610851 -7.879555391432789e-05,6.116538974290385,-6.207783886093452 7.892555391432788e-05,6.112859721675603,-6.207783886093452 -7.905555391432789e-05,6.105501216446039,-6.204065235222801 7.918555391432788e-05,6.112859721675603,-6.185471980869552 -7.931555391432789e-05,6.109180469060822,-6.185471980869552 7.944555391432788e-05,6.109180469060822,-6.185471980869552 -7.957555391432789e-05,6.105501216446039,-6.189190631740201 7.970555391432788e-05,6.109180469060822,-6.192909282610851 -7.98355539143279e-05,6.105501216446039,-6.189190631740201 7.996555391432788e-05,6.112859721675603,-6.185471980869552 -8.009555391432787e-05,6.105501216446039,-6.178034679128251 8.022555391432788e-05,6.105501216446039,-6.192909282610851 -8.035555391432787e-05,6.105501216446039,-6.189190631740201 8.048555391432788e-05,6.094463458601694,-6.189190631740201 -8.061555391432787e-05,6.109180469060822,-6.189190631740201 8.074555391432788e-05,6.105501216446039,-6.189190631740201 -8.087555391432787e-05,6.098142711216476,-6.189190631740201 8.100555391432789e-05,6.105501216446039,-6.192909282610851 -8.113555391432787e-05,6.098142711216476,-6.192909282610851 8.126555391432789e-05,6.098142711216476,-6.185471980869552 -8.139555391432787e-05,6.098142711216476,-6.189190631740201 8.152555391432789e-05,6.098142711216476,-6.189190631740201 -8.165555391432787e-05,6.105501216446039,-6.185471980869552 8.178555391432789e-05,6.098142711216476,-6.185471980869552 -8.191555391432788e-05,6.101821963831258,-6.189190631740201 8.204555391432789e-05,6.105501216446039,-6.192909282610851 -8.217555391432788e-05,6.101821963831258,-6.192909282610851 8.230555391432789e-05,6.101821963831258,-6.189190631740201 -8.243555391432788e-05,6.101821963831258,-6.189190631740201 8.256555391432789e-05,6.101821963831258,-6.185471980869552 -8.269555391432788e-05,6.098142711216476,-6.185471980869552 8.282555391432789e-05,6.098142711216476,-6.189190631740201 -8.295555391432788e-05,6.094463458601694,-6.185471980869552 8.308555391432789e-05,6.094463458601694,-6.192909282610851 -8.321555391432788e-05,6.094463458601694,-6.189190631740201 8.334555391432789e-05,6.090784205986912,-6.185471980869552 -8.347555391432788e-05,6.094463458601694,-6.170597377386951 8.360555391432789e-05,6.098142711216476,-6.15572277390435 -8.373555391432788e-05,6.094463458601694,-6.181753329998901 8.386555391432787e-05,6.098142711216476,-6.185471980869552 -8.399555391432788e-05,6.090784205986912,-6.189190631740201 8.412555391432787e-05,6.087104953372131,-6.196627933481501 -8.425555391432788e-05,6.090784205986912,-6.196627933481501 8.438555391432787e-05,6.094463458601694,-6.196627933481501 -8.451555391432788e-05,6.068708690298221,-6.226377140446703 8.464555391432787e-05,6.116538974290385,-6.16316007564565 -8.477555391432789e-05,6.090784205986912,-6.185471980869552 8.490555391432787e-05,6.087104953372131,-6.200346584352151 -8.503555391432789e-05,6.090784205986912,-6.200346584352151 8.516555391432787e-05,6.090784205986912,-6.200346584352151 -8.529555391432789e-05,6.087104953372131,-6.200346584352151 8.542555391432787e-05,6.083425700757348,-6.207783886093452 -8.555555391432789e-05,6.087104953372131,-6.207783886093452 8.568555391432787e-05,6.087104953372131,-6.207783886093452 -8.581555391432789e-05,6.083425700757348,-6.196627933481501 8.594555391432788e-05,6.087104953372131,-6.196627933481501 -8.607555391432789e-05,6.076067195527784,-6.196627933481501 8.620555391432788e-05,6.083425700757348,-6.196627933481501 -8.633555391432789e-05,6.083425700757348,-6.200346584352151 8.646555391432788e-05,6.087104953372131,-6.196627933481501 -8.659555391432789e-05,6.079746448142567,-6.204065235222801 8.672555391432788e-05,6.076067195527784,-6.200346584352151 -8.685555391432789e-05,6.072387942913003,-6.207783886093452 8.698555391432788e-05,6.079746448142567,-6.207783886093452 -8.711555391432789e-05,6.079746448142567,-6.211502536964102 8.724555391432788e-05,6.079746448142567,-6.207783886093452 -8.737555391432789e-05,6.079746448142567,-6.207783886093452 8.750555391432788e-05,6.072387942913003,-6.211502536964102 -8.76355539143279e-05,6.076067195527784,-6.207783886093452 8.776555391432788e-05,6.076067195527784,-6.207783886093452 -8.789555391432787e-05,6.068708690298221,-6.211502536964102 8.802555391432788e-05,6.079746448142567,-6.211502536964102 -8.815555391432787e-05,6.072387942913003,-6.204065235222801 8.828555391432788e-05,6.072387942913003,-6.211502536964102 -8.841555391432787e-05,6.072387942913003,-6.207783886093452 8.854555391432788e-05,6.065029437683439,-6.204065235222801 -8.867555391432787e-05,6.072387942913003,-6.204065235222801 8.880555391432789e-05,6.072387942913003,-6.200346584352151 -8.893555391432787e-05,6.072387942913003,-6.185471980869552 8.906555391432789e-05,6.068708690298221,-6.178034679128251 -8.919555391432787e-05,6.068708690298221,-6.185471980869552 8.932555391432789e-05,6.068708690298221,-6.192909282610851 -8.945555391432787e-05,6.065029437683439,-6.189190631740201 8.958555391432789e-05,6.061350185068657,-6.192909282610851 -8.971555391432788e-05,6.061350185068657,-6.192909282610851 8.984555391432789e-05,6.061350185068657,-6.192909282610851 -8.997555391432788e-05,6.061350185068657,-6.192909282610851 9.010555391432789e-05,6.053991679839093,-6.185471980869552 -9.023555391432788e-05,6.061350185068657,-6.192909282610851 9.036555391432789e-05,6.053991679839093,-6.192909282610851 -9.049555391432788e-05,6.050312427224312,-6.185471980869552 9.062555391432789e-05,6.061350185068657,-6.204065235222801 -9.075555391432788e-05,6.057670932453876,-6.189190631740201 9.088555391432789e-05,6.053991679839093,-6.192909282610851 -9.101555391432788e-05,6.057670932453876,-6.189190631740201 9.114555391432789e-05,6.053991679839093,-6.192909282610851 -9.127555391432788e-05,6.057670932453876,-6.181753329998901 9.140555391432789e-05,6.053991679839093,-6.185471980869552 -9.153555391432788e-05,6.053991679839093,-6.185471980869552 9.16655539143279e-05,6.057670932453876,-6.185471980869552 -9.179555391432788e-05,6.057670932453876,-6.189190631740201 9.192555391432787e-05,6.053991679839093,-6.174316028257601 -9.205555391432788e-05,6.061350185068657,-6.192909282610851 9.218555391432787e-05,6.057670932453876,-6.181753329998901 -9.231555391432788e-05,6.050312427224312,-6.185471980869552 9.244555391432787e-05,6.053991679839093,-6.178034679128251 -9.257555391432789e-05,6.050312427224312,-6.192909282610851 9.270555391432787e-05,6.057670932453876,-6.185471980869552 -9.283555391432789e-05,6.053991679839093,-6.185471980869552 9.296555391432787e-05,6.04663317460953,-6.181753329998901 -9.309555391432789e-05,6.050312427224312,-6.181753329998901 9.322555391432787e-05,6.050312427224312,-6.178034679128251 -9.335555391432789e-05,6.050312427224312,-6.15572277390435 9.348555391432787e-05,6.04663317460953,-6.174316028257601 -9.361555391432789e-05,6.042953921994748,-6.170597377386951 9.374555391432788e-05,6.042953921994748,-6.181753329998901 -9.387555391432789e-05,6.04663317460953,-6.192909282610851 9.400555391432788e-05,6.04663317460953,-6.196627933481501 -9.413555391432789e-05,6.042953921994748,-6.189190631740201 9.426555391432788e-05,6.039274669379966,-6.192909282610851 -9.439555391432789e-05,6.035595416765185,-6.196627933481501 9.452555391432788e-05,6.035595416765185,-6.192909282610851 -9.465555391432789e-05,6.031916164150402,-6.196627933481501 9.478555391432788e-05,6.028236911535621,-6.196627933481501 -9.491555391432789e-05,6.035595416765185,-6.189190631740201 9.504555391432788e-05,6.028236911535621,-6.192909282610851 -9.517555391432789e-05,6.028236911535621,-6.196627933481501 9.530555391432788e-05,6.028236911535621,-6.204065235222801 -9.54355539143279e-05,6.028236911535621,-6.204065235222801 9.556555391432788e-05,6.024557658920839,-6.207783886093452 -9.56955539143279e-05,6.028236911535621,-6.204065235222801 9.582555391432788e-05,6.031916164150402,-6.207783886093452 -9.595555391432787e-05,6.031916164150402,-6.204065235222801 9.608555391432788e-05,6.024557658920839,-6.207783886093452 -9.621555391432787e-05,6.024557658920839,-6.204065235222801 9.634555391432788e-05,6.028236911535621,-6.207783886093452 -9.647555391432787e-05,6.028236911535621,-6.189190631740201 9.660555391432789e-05,6.031916164150402,-6.211502536964102 -9.673555391432787e-05,6.031916164150402,-6.200346584352151 9.686555391432789e-05,6.028236911535621,-6.200346584352151 -9.699555391432787e-05,6.031916164150402,-6.196627933481501 9.712555391432789e-05,6.028236911535621,-6.196627933481501 -9.725555391432787e-05,6.024557658920839,-6.200346584352151 9.738555391432789e-05,6.024557658920839,-6.200346584352151 -9.751555391432788e-05,6.024557658920839,-6.200346584352151 9.764555391432789e-05,6.028236911535621,-6.196627933481501 -9.777555391432788e-05,6.028236911535621,-6.196627933481501 9.790555391432789e-05,6.024557658920839,-6.204065235222801 -9.803555391432788e-05,6.017199153691275,-6.207783886093452 9.816555391432789e-05,6.020878406306057,-6.204065235222801 -9.829555391432788e-05,6.009840648461712,-6.211502536964102 9.842555391432789e-05,6.017199153691275,-6.200346584352151 -9.855555391432788e-05,6.013519901076493,-6.207783886093452 9.868555391432789e-05,6.020878406306057,-6.192909282610851 -9.881555391432788e-05,6.020878406306057,-6.185471980869552 9.894555391432789e-05,6.013519901076493,-6.181753329998901 -9.907555391432788e-05,6.009840648461712,-6.189190631740201 9.920555391432789e-05,6.009840648461712,-6.192909282610851 -9.933555391432788e-05,6.013519901076493,-6.196627933481501 9.94655539143279e-05,6.009840648461712,-6.189190631740201 -9.959555391432788e-05,6.009840648461712,-6.185471980869552 9.972555391432787e-05,6.00616139584693,-6.192909282610851 -9.985555391432788e-05,6.009840648461712,-6.192909282610851 9.998555391432787e-05,6.009840648461712,-6.196627933481501 -0.0001001155539143279,6.00616139584693,-6.192909282610851 0.0001002455539143279,6.002482143232148,-6.189190631740201 -0.0001003755539143279,6.00616139584693,-6.189190631740201 0.0001005055539143279,6.002482143232148,-6.189190631740201 -0.0001006355539143279,6.009840648461712,-6.181753329998901 0.0001007655539143279,6.00616139584693,-6.181753329998901 -0.0001008955539143279,6.00616139584693,-6.189190631740201 0.0001010255539143279,6.009840648461712,-6.189190631740201 -0.0001011555539143279,6.009840648461712,-6.185471980869552 0.0001012855539143279,6.009840648461712,-6.192909282610851 -0.0001014155539143279,6.00616139584693,-6.181753329998901 0.0001015455539143279,6.002482143232148,-6.192909282610851 -0.0001016755539143279,6.00616139584693,-6.185471980869552 0.0001018055539143279,6.002482143232148,-6.189190631740201 -0.0001019355539143279,5.998802890617366,-6.185471980869552 0.0001020655539143279,5.995123638002585,-6.181753329998901 -0.0001021955539143279,5.998802890617366,-6.189190631740201 0.0001023255539143279,5.962010364469547,-6.230095791317352 -0.0001024555539143279,6.031916164150402,-6.1520041230337 0.0001025855539143279,6.002482143232148,-6.185471980869552 -0.0001027155539143279,6.002482143232148,-6.192909282610851 0.0001028455539143279,5.998802890617366,-6.181753329998901 -0.0001029755539143279,5.995123638002585,-6.189190631740201 0.0001031055539143279,5.998802890617366,-6.166878726516301 -0.0001032355539143279,5.998802890617366,-6.170597377386951 0.0001033655539143279,5.995123638002585,-6.178034679128251 -0.0001034955539143279,5.998802890617366,-6.185471980869552 0.0001036255539143279,5.995123638002585,-6.185471980869552 -0.0001037555539143279,6.002482143232148,-6.189190631740201 0.0001038855539143279,5.995123638002585,-6.178034679128251 -0.0001040155539143279,5.995123638002585,-6.192909282610851 0.0001041455539143279,5.995123638002585,-6.196627933481501 -0.0001042755539143279,5.991444385387802,-6.200346584352151 0.0001044055539143279,5.998802890617366,-6.192909282610851 -0.0001045355539143279,5.991444385387802,-6.200346584352151 0.0001046655539143279,5.991444385387802,-6.192909282610851 -0.0001047955539143279,5.987765132773021,-6.196627933481501 0.0001049255539143279,5.980406627543457,-6.200346584352151 -0.0001050555539143279,5.991444385387802,-6.196627933481501 0.0001051855539143279,5.991444385387802,-6.196627933481501 -0.0001053155539143279,5.991444385387802,-6.192909282610851 0.0001054455539143279,5.987765132773021,-6.196627933481501 -0.0001055755539143279,5.987765132773021,-6.196627933481501 0.0001057055539143279,5.984085880158239,-6.200346584352151 -0.0001058355539143279,5.984085880158239,-6.200346584352151 0.0001059655539143279,5.976727374928675,-6.200346584352151 -0.0001060955539143279,5.984085880158239,-6.196627933481501 0.0001062255539143279,5.984085880158239,-6.196627933481501 -0.0001063555539143279,5.984085880158239,-6.200346584352151 0.0001064855539143279,5.976727374928675,-6.200346584352151 -0.0001066155539143279,5.980406627543457,-6.204065235222801 0.0001067455539143279,5.980406627543457,-6.204065235222801 -0.0001068755539143279,5.980406627543457,-6.200346584352151 0.0001070055539143279,5.976727374928675,-6.204065235222801 -0.0001071355539143279,5.976727374928675,-6.200346584352151 0.0001072655539143279,5.976727374928675,-6.200346584352151 -0.0001073955539143279,5.980406627543457,-6.196627933481501 0.0001075255539143279,5.976727374928675,-6.211502536964102 -0.0001076555539143279,5.969368869699111,-6.196627933481501 0.0001077855539143279,5.976727374928675,-6.196627933481501 -0.0001079155539143279,5.969368869699111,-6.196627933481501 0.0001080455539143279,5.969368869699111,-6.196627933481501 -0.0001081755539143279,5.969368869699111,-6.204065235222801 0.0001083055539143279,5.962010364469547,-6.204065235222801 -0.0001084355539143279,5.976727374928675,-6.196627933481501 0.0001085655539143279,5.969368869699111,-6.181753329998901 -0.0001086955539143279,5.969368869699111,-6.181753329998901 0.0001088255539143279,5.973048122313894,-6.192909282610851 -0.0001089555539143279,5.969368869699111,-6.181753329998901 0.0001090855539143279,5.969368869699111,-6.185471980869552 -0.0001092155539143279,5.969368869699111,-6.185471980869552 0.0001093455539143279,5.962010364469547,-6.178034679128251 -0.0001094755539143279,5.96568961708433,-6.185471980869552 0.0001096055539143279,5.96568961708433,-6.185471980869552 -0.0001097355539143279,5.950972606625202,-6.174316028257601 0.0001098655539143279,5.976727374928675,-6.192909282610851 -0.0001099955539143279,5.962010364469547,-6.189190631740201 0.0001101255539143279,5.962010364469547,-6.189190631740201 -0.0001102555539143279,5.958331111854766,-6.181753329998901 0.0001103855539143279,5.962010364469547,-6.192909282610851 -0.0001105155539143279,5.962010364469547,-6.189190631740201 0.0001106455539143279,5.96568961708433,-6.189190631740201 -0.0001107755539143279,5.962010364469547,-6.189190631740201 0.0001109055539143279,5.954651859239984,-6.185471980869552 -0.0001110355539143279,5.954651859239984,-6.189190631740201 0.0001111655539143279,5.950972606625202,-6.192909282610851 -0.0001112955539143279,5.954651859239984,-6.196627933481501 0.0001114255539143279,5.954651859239984,-6.189190631740201 -0.0001115555539143279,5.954651859239984,-6.185471980869552 0.0001116855539143279,5.958331111854766,-6.189190631740201 -0.0001118155539143279,5.954651859239984,-6.185471980869552 0.0001119455539143279,5.958331111854766,-6.185471980869552 -0.0001120755539143279,5.950972606625202,-6.189190631740201 0.0001122055539143279,5.94729335401042,-6.185471980869552 -0.0001123355539143279,5.94729335401042,-6.185471980869552 0.0001124655539143279,5.950972606625202,-6.181753329998901 -0.0001125955539143279,5.94729335401042,-6.181753329998901 0.0001127255539143279,5.94729335401042,-6.189190631740201 -0.0001128555539143279,5.943614101395639,-6.16316007564565 0.0001129855539143279,5.950972606625202,-6.166878726516301 -0.0001131155539143279,5.954651859239984,-6.178034679128251 0.0001132455539143279,5.950972606625202,-6.189190631740201 -0.0001133755539143279,5.950972606625202,-6.192909282610851 0.0001135055539143279,5.943614101395639,-6.189190631740201 -0.0001136355539143279,5.94729335401042,-6.192909282610851 0.0001137655539143279,5.950972606625202,-6.196627933481501 -0.0001138955539143279,5.94729335401042,-6.196627933481501 0.0001140255539143279,5.94729335401042,-6.200346584352151 -0.0001141555539143279,5.943614101395639,-6.196627933481501 0.0001142855539143279,5.936255596166075,-6.181753329998901 -0.0001144155539143279,5.939934848780856,-6.207783886093452 0.0001145455539143279,5.936255596166075,-6.192909282610851 -0.0001146755539143279,5.936255596166075,-6.200346584352151 0.0001148055539143279,5.939934848780856,-6.196627933481501 -0.0001149355539143279,5.936255596166075,-6.204065235222801 0.0001150655539143279,5.936255596166075,-6.204065235222801 -0.0001151955539143279,5.936255596166075,-6.200346584352151 0.0001153255539143279,5.932576343551293,-6.204065235222801 -0.0001154555539143279,5.928897090936511,-6.204065235222801 0.0001155855539143279,5.939934848780856,-6.196627933481501 -0.0001157155539143279,5.932576343551293,-6.189190631740201 0.0001158455539143279,5.921538585706948,-6.211502536964102 -0.0001159755539143279,5.932576343551293,-6.200346584352151 0.0001161055539143279,5.928897090936511,-6.200346584352151 -0.0001162355539143279,5.936255596166075,-6.204065235222801 0.0001163655539143279,5.928897090936511,-6.196627933481501 -0.0001164955539143279,5.928897090936511,-6.200346584352151 0.0001166255539143279,5.928897090936511,-6.196627933481501 -0.0001167555539143279,5.932576343551293,-6.200346584352151 0.0001168855539143279,5.928897090936511,-6.204065235222801 -0.0001170155539143279,5.932576343551293,-6.207783886093452 0.0001171455539143279,5.936255596166075,-6.204065235222801 -0.0001172755539143279,5.928897090936511,-6.196627933481501 0.0001174055539143279,5.928897090936511,-6.204065235222801 -0.0001175355539143279,5.932576343551293,-6.200346584352151 0.0001176655539143279,5.925217838321729,-6.200346584352151 -0.0001177955539143279,5.921538585706948,-6.204065235222801 0.0001179255539143279,5.921538585706948,-6.204065235222801 -0.0001180555539143279,5.921538585706948,-6.204065235222801 0.0001181855539143279,5.921538585706948,-6.189190631740201 -0.0001183155539143279,5.921538585706948,-6.185471980869552 0.0001184455539143279,5.921538585706948,-6.181753329998901 -0.0001185755539143279,5.921538585706948,-6.185471980869552 0.0001187055539143279,5.921538585706948,-6.192909282610851 -0.0001188355539143279,5.921538585706948,-6.192909282610851 0.0001189655539143279,5.921538585706948,-6.192909282610851 -0.0001190955539143279,5.917859333092165,-6.189190631740201 0.0001192255539143279,5.910500827862602,-6.192909282610851 -0.0001193555539143279,5.910500827862602,-6.192909282610851 0.0001194855539143279,5.914180080477384,-6.189190631740201 -0.0001196155539143279,5.917859333092165,-6.189190631740201 0.0001197455539143279,5.910500827862602,-6.196627933481501 -0.0001198755539143279,5.914180080477384,-6.196627933481501 0.0001200055539143279,5.914180080477384,-6.196627933481501 -0.0001201355539143279,5.881066806944347,-6.237533093058652 0.0001202655539143279,5.943614101395639,-6.14828547216305 -0.0001203955539143279,5.910500827862602,-6.189190631740201 0.0001205255539143279,5.914180080477384,-6.192909282610851 -0.0001206555539143279,5.90682157524782,-6.192909282610851 0.0001207855539143279,5.910500827862602,-6.189190631740201 -0.0001209155539143279,5.90682157524782,-6.189190631740201 0.0001210455539143279,5.903142322633038,-6.192909282610851 -0.0001211755539143279,5.914180080477384,-6.189190631740201 0.0001213055539143279,5.910500827862602,-6.189190631740201 -0.0001214355539143279,5.910500827862602,-6.189190631740201 0.0001215655539143279,5.914180080477384,-6.181753329998901 -0.0001216955539143279,5.90682157524782,-6.181753329998901 0.0001218255539143279,5.903142322633038,-6.185471980869552 -0.0001219555539143279,5.90682157524782,-6.178034679128251 0.0001220855539143279,5.910500827862602,-6.185471980869552 -0.0001222155539143279,5.910500827862602,-6.189190631740201 0.0001223455539143279,5.903142322633038,-6.181753329998901 -0.0001224755539143279,5.899463070018256,-6.189190631740201 0.0001226055539143279,5.892104564788693,-6.174316028257601 -0.0001227355539143279,5.892104564788693,-6.16316007564565 0.0001228655539143279,5.895783817403474,-6.170597377386951 -0.0001229955539143279,5.892104564788693,-6.181753329998901 0.0001231255539143279,5.892104564788693,-6.189190631740201 -0.0001232555539143279,5.892104564788693,-6.192909282610851 0.0001233855539143279,5.892104564788693,-6.189190631740201 -0.0001235155539143279,5.892104564788693,-6.192909282610851 0.0001236455539143279,5.895783817403474,-6.192909282610851 -0.0001237755539143279,5.892104564788693,-6.192909282610851 0.0001239055539143279,5.892104564788693,-6.192909282610851 -0.0001240355539143279,5.892104564788693,-6.181753329998901 0.0001241655539143279,5.899463070018256,-6.185471980869552 -0.0001242955539143279,5.892104564788693,-6.196627933481501 0.0001244255539143279,5.895783817403474,-6.196627933481501 -0.0001245555539143279,5.892104564788693,-6.196627933481501 0.0001246855539143279,5.888425312173911,-6.200346584352151 -0.0001248155539143279,5.892104564788693,-6.192909282610851 0.0001249455539143279,5.892104564788693,-6.192909282610851 -0.0001250755539143279,5.895783817403474,-6.196627933481501 0.0001252055539143279,5.895783817403474,-6.196627933481501 -0.0001253355539143279,5.895783817403474,-6.211502536964102 0.0001254655539143279,5.892104564788693,-6.200346584352151 -0.0001255955539143279,5.892104564788693,-6.204065235222801 0.0001257255539143279,5.892104564788693,-6.200346584352151 -0.0001258555539143279,5.888425312173911,-6.204065235222801 0.0001259855539143279,5.884746059559129,-6.204065235222801 -0.0001261155539143279,5.881066806944347,-6.211502536964102 0.0001262455539143279,5.884746059559129,-6.211502536964102 -0.0001263755539143279,5.888425312173911,-6.200346584352151 0.0001265055539143279,5.884746059559129,-6.207783886093452 -0.0001266355539143279,5.881066806944347,-6.207783886093452 0.0001267655539143279,5.877387554329565,-6.207783886093452 -0.0001268955539143279,5.881066806944347,-6.200346584352151 0.0001270255539143279,5.881066806944347,-6.207783886093452 -0.0001271555539143279,5.881066806944347,-6.204065235222801 0.0001272855539143279,5.881066806944347,-6.196627933481501 -0.0001274155539143279,5.881066806944347,-6.207783886093452 0.0001275455539143279,5.873708301714784,-6.204065235222801 -0.0001276755539143279,5.888425312173911,-6.211502536964102 0.0001278055539143279,5.881066806944347,-6.211502536964102 -0.0001279355539143279,5.877387554329565,-6.215221187834752 0.0001280655539143279,5.877387554329565,-6.192909282610851 -0.0001281955539143279,5.884746059559129,-6.192909282610851 0.0001283255539143279,5.881066806944347,-6.196627933481501 -0.0001284555539143279,5.877387554329565,-6.196627933481501 0.0001285855539143279,5.877387554329565,-6.200346584352151 -0.0001287155539143279,5.873708301714784,-6.200346584352151 0.0001288455539143279,5.870029049100002,-6.196627933481501 -0.0001289755539143279,5.870029049100002,-6.200346584352151 0.0001291055539143279,5.870029049100002,-6.196627933481501 -0.0001292355539143279,5.86634979648522,-6.200346584352151 0.0001293655539143279,5.870029049100002,-6.200346584352151 -0.0001294955539143279,5.86634979648522,-6.189190631740201 0.0001296255539143279,5.862670543870438,-6.196627933481501 -0.0001297555539143279,5.86634979648522,-6.192909282610851 0.0001298855539143279,5.862670543870438,-6.189190631740201 -0.0001300155539143279,5.862670543870438,-6.192909282610851 0.0001301455539143279,5.86634979648522,-6.192909282610851 -0.0001302755539143279,5.862670543870438,-6.196627933481501 0.0001304055539143279,5.86634979648522,-6.192909282610851 -0.0001305355539143279,5.870029049100002,-6.185471980869552 0.0001306655539143279,5.86634979648522,-6.185471980869552 -0.0001307955539143279,5.86634979648522,-6.189190631740201 0.0001309255539143279,5.862670543870438,-6.196627933481501 -0.0001310555539143279,5.862670543870438,-6.192909282610851 0.0001311855539143279,5.86634979648522,-6.192909282610851 -0.0001313155539143279,5.862670543870438,-6.189190631740201 0.0001314455539143279,5.86634979648522,-6.196627933481501 -0.0001315755539143279,5.855312038640874,-6.192909282610851 0.0001317055539143279,5.862670543870438,-6.192909282610851 -0.0001318355539143279,5.86634979648522,-6.185471980869552 0.0001319655539143279,5.862670543870438,-6.185471980869552 -0.0001320955539143279,5.862670543870438,-6.170597377386951 0.0001322255539143279,5.86634979648522,-6.196627933481501 -0.0001323555539143279,5.858991291255657,-6.181753329998901 0.0001324855539143279,5.855312038640874,-6.15572277390435 -0.0001326155539143279,5.86634979648522,-6.170597377386951 0.0001327455539143279,5.858991291255657,-6.181753329998901 -0.0001328755539143279,5.862670543870438,-6.185471980869552 0.0001330055539143279,5.858991291255657,-6.185471980869552 -0.0001331355539143279,5.862670543870438,-6.189190631740201 0.0001332655539143279,5.862670543870438,-6.192909282610851 -0.0001333955539143279,5.870029049100002,-6.189190631740201 0.0001335255539143279,5.855312038640874,-6.200346584352151 -0.0001336555539143279,5.862670543870438,-6.192909282610851 0.0001337855539143279,5.851632786026093,-6.204065235222801 -0.0001339155539143279,5.851632786026093,-6.200346584352151 0.0001340455539143279,5.858991291255657,-6.200346584352151 -0.0001341755539143279,5.858991291255657,-6.211502536964102 0.0001343055539143279,5.858991291255657,-6.200346584352151 -0.0001344355539143279,5.855312038640874,-6.204065235222801 0.0001345655539143279,5.855312038640874,-6.204065235222801 -0.0001346955539143279,5.851632786026093,-6.200346584352151 0.0001348255539143279,5.851632786026093,-6.200346584352151 -0.0001349555539143279,5.847953533411311,-6.200346584352151 0.0001350855539143279,5.851632786026093,-6.196627933481501 -0.0001352155539143279,5.847953533411311,-6.192909282610851 0.0001353455539143279,5.851632786026093,-6.204065235222801 -0.0001354755539143279,5.847953533411311,-6.196627933481501 0.0001356055539143279,5.851632786026093,-6.200346584352151 -0.0001357355539143279,5.844274280796529,-6.204065235222801 0.0001358655539143279,5.847953533411311,-6.200346584352151 -0.0001359955539143279,5.851632786026093,-6.200346584352151 0.0001361255539143279,5.844274280796529,-6.196627933481501 -0.0001362555539143279,5.840595028181747,-6.200346584352151 0.0001363855539143279,5.844274280796529,-6.204065235222801 -0.0001365155539143279,5.844274280796529,-6.204065235222801 0.0001366455539143279,5.844274280796529,-6.204065235222801 -0.0001367755539143279,5.840595028181747,-6.200346584352151 0.0001369055539143279,5.836915775566965,-6.192909282610851 -0.0001370355539143279,5.840595028181747,-6.196627933481501 0.0001371655539143279,5.833236522952183,-6.204065235222801 -0.0001372955539143279,5.833236522952183,-6.196627933481501 0.0001374255539143279,5.840595028181747,-6.204065235222801 -0.0001375555539143279,5.836915775566965,-6.200346584352151 0.0001376855539143279,5.836915775566965,-6.200346584352151 -0.0001378155539143279,5.840595028181747,-6.189190631740201 0.0001379455539143279,5.792764744189583,-6.226377140446703 -0.0001380755539143279,5.873708301714784,-6.14084817042175 0.0001382055539143279,5.836915775566965,-6.189190631740201 -0.0001383355539143279,5.836915775566965,-6.192909282610851 0.0001384655539143279,5.833236522952183,-6.196627933481501 -0.0001385955539143279,5.833236522952183,-6.189190631740201 0.0001387255539143279,5.833236522952183,-6.192909282610851 -0.0001388555539143279,5.836915775566965,-6.189190631740201 0.0001389855539143279,5.836915775566965,-6.200346584352151 -0.0001391155539143279,5.836915775566965,-6.192909282610851 0.0001392455539143279,5.829557270337402,-6.192909282610851 -0.0001393755539143279,5.833236522952183,-6.189190631740201 0.0001395055539143279,5.825878017722619,-6.181753329998901 -0.0001396355539143279,5.822198765107838,-6.196627933481501 0.0001397655539143279,5.825878017722619,-6.189190631740201 -0.0001398955539143279,5.825878017722619,-6.192909282610851 0.0001400255539143279,5.822198765107838,-6.192909282610851 -0.0001401555539143279,5.825878017722619,-6.192909282610851 0.0001402855539143279,5.825878017722619,-6.200346584352151 -0.0001404155539143279,5.818519512493056,-6.192909282610851 0.0001405455539143279,5.818519512493056,-6.192909282610851 -0.0001406755539143279,5.822198765107838,-6.192909282610851 0.0001408055539143279,5.822198765107838,-6.192909282610851 -0.0001409355539143279,5.818519512493056,-6.189190631740201 0.0001410655539143279,5.818519512493056,-6.185471980869552 -0.0001411955539143279,5.818519512493056,-6.185471980869552 0.0001413255539143279,5.822198765107838,-6.185471980869552 -0.0001414555539143279,5.818519512493056,-6.189190631740201 0.0001415855539143279,5.818519512493056,-6.181753329998901 -0.0001417155539143279,5.822198765107838,-6.192909282610851 0.0001418455539143279,5.825878017722619,-6.189190631740201 -0.0001419755539143279,5.825878017722619,-6.189190631740201 0.0001421055539143279,5.818519512493056,-6.185471980869552 -0.0001422355539143279,5.829557270337402,-6.15572277390435 0.0001423655539143279,5.829557270337402,-6.170597377386951 -0.0001424955539143279,5.825878017722619,-6.178034679128251 0.0001426255539143279,5.829557270337402,-6.189190631740201 -0.0001427555539143279,5.818519512493056,-6.192909282610851 0.0001428855539143279,5.825878017722619,-6.196627933481501 -0.0001430155539143279,5.825878017722619,-6.189190631740201 0.0001431455539143279,5.825878017722619,-6.204065235222801 -0.0001432755539143279,5.822198765107838,-6.196627933481501 0.0001434055539143279,5.814840259878274,-6.196627933481501 -0.0001435355539143279,5.814840259878274,-6.196627933481501 0.0001436655539143279,5.807481754648711,-6.196627933481501 -0.0001437955539143279,5.811161007263492,-6.204065235222801 0.0001439255539143279,5.807481754648711,-6.211502536964102 -0.0001440555539143279,5.814840259878274,-6.196627933481501 0.0001441855539143279,5.811161007263492,-6.200346584352151 -0.0001443155539143279,5.807481754648711,-6.204065235222801 0.0001444455539143279,5.814840259878274,-6.207783886093452 -0.0001445755539143279,5.811161007263492,-6.204065235222801 0.0001447055539143279,5.803802502033928,-6.196627933481501 -0.0001448355539143279,5.811161007263492,-6.204065235222801 0.0001449655539143279,5.807481754648711,-6.204065235222801 -0.0001450955539143279,5.807481754648711,-6.200346584352151 0.0001452255539143279,5.803802502033928,-6.204065235222801 -0.0001453555539143279,5.807481754648711,-6.192909282610851 0.0001454855539143279,5.818519512493056,-6.204065235222801 -0.0001456155539143279,5.807481754648711,-6.204065235222801 0.0001457455539143279,5.807481754648711,-6.211502536964102 -0.0001458755539143279,5.811161007263492,-6.204065235222801 0.0001460055539143279,5.807481754648711,-6.211502536964102 -0.0001461355539143279,5.807481754648711,-6.200346584352151 0.0001462655539143279,5.803802502033928,-6.207783886093452 -0.0001463955539143279,5.803802502033928,-6.207783886093452 0.0001465255539143279,5.807481754648711,-6.207783886093452 -0.0001466555539143279,5.811161007263492,-6.200346584352151 0.0001467855539143279,5.811161007263492,-6.204065235222801 -0.0001469155539143279,5.803802502033928,-6.204065235222801 0.0001470455539143279,5.803802502033928,-6.204065235222801 -0.0001471755539143279,5.807481754648711,-6.207783886093452 0.0001473055539143279,5.811161007263492,-6.215221187834752 -0.0001474355539143279,5.800123249419147,-6.211502536964102 0.0001475655539143279,5.803802502033928,-6.200346584352151 -0.0001476955539143279,5.803802502033928,-6.196627933481501 0.0001478255539143279,5.803802502033928,-6.196627933481501 -0.0001479555539143279,5.792764744189583,-6.196627933481501 0.0001480855539143279,5.796443996804365,-6.196627933481501 -0.0001482155539143279,5.792764744189583,-6.196627933481501 0.0001483455539143279,5.792764744189583,-6.192909282610851 -0.0001484755539143279,5.800123249419147,-6.196627933481501 0.0001486055539143279,5.800123249419147,-6.192909282610851 -0.0001487355539143279,5.800123249419147,-6.200346584352151 0.0001488655539143279,5.800123249419147,-6.196627933481501 -0.0001489955539143279,5.796443996804365,-6.196627933481501 0.0001491255539143279,5.800123249419147,-6.189190631740201 -0.0001492555539143279,5.789085491574801,-6.196627933481501 0.0001493855539143279,5.796443996804365,-6.192909282610851 -0.0001495155539143279,5.792764744189583,-6.192909282610851 0.0001496455539143279,5.792764744189583,-6.185471980869552 -0.0001497755539143279,5.796443996804365,-6.181753329998901 0.0001499055539143279,5.796443996804365,-6.174316028257601 -0.0001500355539143279,5.792764744189583,-6.196627933481501 0.0001501655539143279,5.792764744189583,-6.192909282610851 -0.0001502955539143279,5.789085491574801,-6.189190631740201 0.0001504255539143279,5.792764744189583,-6.196627933481501 -0.0001505555539143279,5.789085491574801,-6.192909282610851 0.0001506855539143279,5.792764744189583,-6.196627933481501 -0.0001508155539143279,5.785406238960019,-6.189190631740201 0.0001509455539143279,5.789085491574801,-6.192909282610851 -0.0001510755539143279,5.789085491574801,-6.192909282610851 0.0001512055539143279,5.796443996804365,-6.185471980869552 -0.0001513355539143279,5.785406238960019,-6.192909282610851 0.0001514655539143279,5.792764744189583,-6.192909282610851 -0.0001515955539143279,5.785406238960019,-6.192909282610851 0.0001517255539143279,5.789085491574801,-6.192909282610851 -0.0001518555539143279,5.796443996804365,-6.185471980869552 0.0001519855539143279,5.792764744189583,-6.166878726516301 -0.0001521155539143279,5.792764744189583,-6.166878726516301 0.0001522455539143279,5.796443996804365,-6.170597377386951 -0.0001523755539143279,5.789085491574801,-6.181753329998901 0.0001525055539143279,5.792764744189583,-6.181753329998901 -0.0001526355539143279,5.785406238960019,-6.189190631740201 0.0001527655539143279,5.781726986345237,-6.192909282610851 -0.0001528955539143279,5.781726986345237,-6.196627933481501 0.0001530255539143279,5.785406238960019,-6.192909282610851 -0.0001531555539143279,5.785406238960019,-6.192909282610851 0.0001532855539143279,5.781726986345237,-6.192909282610851 -0.0001534155539143279,5.781726986345237,-6.196627933481501 0.0001535455539143279,5.781726986345237,-6.200346584352151 -0.0001536755539143279,5.778047733730456,-6.204065235222801 0.0001538055539143279,5.778047733730456,-6.200346584352151 -0.0001539355539143279,5.781726986345237,-6.196627933481501 0.0001540655539143279,5.781726986345237,-6.200346584352151 -0.0001541955539143279,5.774368481115673,-6.200346584352151 0.0001543255539143279,5.781726986345237,-6.200346584352151 -0.0001544555539143279,5.774368481115673,-6.204065235222801 0.0001545855539143279,5.778047733730456,-6.200346584352151 -0.0001547155539143279,5.770689228500892,-6.196627933481501 0.0001548455539143279,5.774368481115673,-6.200346584352151 -0.0001549755539143279,5.76700997588611,-6.207783886093452 0.0001551055539143279,5.774368481115673,-6.196627933481501 -0.0001552355539143279,5.774368481115673,-6.204065235222801 0.0001553655539143279,5.770689228500892,-6.207783886093452 -0.0001554955539143279,5.774368481115673,-6.200346584352151 0.0001556255539143279,5.785406238960019,-6.200346584352151 -0.0001557555539143279,5.568330334687891,-6.259844998282553 0.0001558855539143279,4.909744116641941,-6.211502536964102 -0.0001560155539143279,3.489552607336151,-6.334218015695555 0.0001561455539143279,1.649926299945232,-6.397435080496606 -0.0001562755539143279,-0.4178136695621623,-6.442058890944407 0.0001564055539143279,-2.349421292322628,-6.464370796168308 -0.0001565355539143279,-4.012443474204019,-6.460652145297658 0.0001566655539143279,-5.3332951629107,-6.434621589203108 -0.0001567955539143279,-5.649710887781938,-6.345373968307505 0.0001569255539143279,-5.697541171774102,-6.300750157859704 -0.0001570555539143279,-5.715937434848011,-6.271000950894503 0.0001571855539143279,-5.719616687462793,-6.237533093058652 -0.0001573155539143279,-5.734333697921921,-6.215221187834752 0.0001574455539143279,-5.738012950536702,-6.211502536964102 -0.0001575755539143279,-5.741692203151485,-6.200346584352151 0.0001577055539143279,-5.745371455766266,-6.211502536964102 -0.0001578355539143279,-5.726975192692357,-6.192909282610851 0.0001579655539143279,-5.734333697921921,-6.189190631740201 -0.0001580955539143279,-5.738012950536702,-6.200346584352151 0.0001582255539143279,-5.730654445307139,-6.192909282610851 -0.0001583555539143279,-5.730654445307139,-6.189190631740201 0.0001584855539143279,-5.726975192692357,-6.192909282610851 -0.0001586155539143279,-5.726975192692357,-6.189190631740201 0.0001587455539143279,-5.723295940077575,-6.189190631740201 -0.0001588755539143279,-5.723295940077575,-6.185471980869552 0.0001590055539143279,-5.715937434848011,-6.192909282610851 -0.0001591355539143279,-5.719616687462793,-6.192909282610851 0.0001592655539143279,-5.71225818223323,-6.192909282610851 -0.0001593955539143279,-5.708578929618447,-6.192909282610851 0.0001595255539143279,-5.708578929618447,-6.192909282610851 -0.0001596555539143279,-5.708578929618447,-6.189190631740201 0.0001597855539143279,-5.708578929618447,-6.189190631740201 -0.0001599155539143279,-5.704899677003666,-6.189190631740201 0.0001600455539143279,-5.704899677003666,-6.192909282610851 -0.0001601755539143279,-5.701220424388884,-6.192909282610851 0.0001603055539143279,-5.704899677003666,-6.185471980869552 -0.0001604355539143279,-5.704899677003666,-6.189190631740201 0.0001605655539143279,-5.69386191915932,-6.185471980869552 -0.0001606955539143279,-5.697541171774102,-6.189190631740201 0.0001608255539143279,-5.69386191915932,-6.185471980869552 -0.0001609555539143279,-5.69386191915932,-6.189190631740201 0.0001610855539143279,-5.69386191915932,-6.189190631740201 -0.0001612155539143279,-5.690182666544539,-6.189190631740201 0.0001613455539143279,-5.69386191915932,-6.192909282610851 -0.0001614755539143279,-5.69386191915932,-6.185471980869552 0.0001616055539143279,-5.682824161314975,-6.196627933481501 -0.0001617355539143279,-5.690182666544539,-6.192909282610851 0.0001618655539143279,-5.679144908700193,-6.159441424775 -0.0001619955539143279,-5.690182666544539,-6.178034679128251 0.0001621255539143279,-5.69386191915932,-6.192909282610851 -0.0001622555539143279,-5.686503413929756,-6.192909282610851 0.0001623855539143279,-5.690182666544539,-6.192909282610851 -0.0001625155539143279,-5.69386191915932,-6.192909282610851 0.0001626455539143279,-5.697541171774102,-6.196627933481501 -0.0001627755539143279,-5.686503413929756,-6.196627933481501 0.0001629055539143279,-5.690182666544539,-6.196627933481501 -0.0001630355539143279,-5.686503413929756,-6.200346584352151 0.0001631655539143279,-5.686503413929756,-6.196627933481501 -0.0001632955539143279,-5.675465656085411,-6.196627933481501 0.0001634255539143279,-5.686503413929756,-6.200346584352151 -0.0001635555539143279,-5.679144908700193,-6.200346584352151 0.0001636855539143279,-5.686503413929756,-6.196627933481501 -0.0001638155539143279,-5.682824161314975,-6.200346584352151 0.0001639455539143279,-5.675465656085411,-6.200346584352151 -0.0001640755539143279,-5.679144908700193,-6.204065235222801 0.0001642055539143279,-5.679144908700193,-6.207783886093452 -0.0001643355539143279,-5.675465656085411,-6.204065235222801 0.0001644655539143279,-5.675465656085411,-6.204065235222801 -0.0001645955539143279,-5.682824161314975,-6.204065235222801 0.0001647255539143279,-5.679144908700193,-6.200346584352151 -0.0001648555539143279,-5.679144908700193,-6.204065235222801 0.0001649855539143279,-5.671786403470629,-6.207783886093452 -0.0001651155539143279,-5.668107150855848,-6.204065235222801 0.0001652455539143279,-5.675465656085411,-6.200346584352151 -0.0001653755539143279,-5.679144908700193,-6.200346584352151 0.0001655055539143279,-5.679144908700193,-6.200346584352151 -0.0001656355539143279,-5.675465656085411,-6.200346584352151 0.0001657655539143279,-5.671786403470629,-6.204065235222801 -0.0001658955539143279,-5.675465656085411,-6.204065235222801 0.0001660255539143279,-5.679144908700193,-6.200346584352151 -0.0001661555539143279,-5.675465656085411,-6.204065235222801 0.0001662855539143279,-5.675465656085411,-6.200346584352151 -0.0001664155539143279,-5.679144908700193,-6.204065235222801 0.0001665455539143279,-5.664427898241065,-6.207783886093452 -0.0001666755539143279,-5.668107150855848,-6.204065235222801 0.0001668055539143279,-5.671786403470629,-6.207783886093452 -0.0001669355539143279,-5.671786403470629,-6.207783886093452 0.0001670655539143279,-5.675465656085411,-6.204065235222801 -0.0001671955539143279,-5.668107150855848,-6.189190631740201 0.0001673255539143279,-5.671786403470629,-6.192909282610851 -0.0001674555539143279,-5.671786403470629,-6.189190631740201 0.0001675855539143279,-5.671786403470629,-6.192909282610851 -0.0001677155539143279,-5.675465656085411,-6.192909282610851 0.0001678455539143279,-5.671786403470629,-6.204065235222801 -0.0001679755539143279,-5.671786403470629,-6.196627933481501 0.0001681055539143279,-5.668107150855848,-6.192909282610851 -0.0001682355539143279,-5.671786403470629,-6.200346584352151 0.0001683655539143279,-5.660748645626284,-6.196627933481501 -0.0001684955539143279,-5.664427898241065,-6.200346584352151 0.0001686255539143279,-5.664427898241065,-6.196627933481501 -0.0001687555539143279,-5.660748645626284,-6.196627933481501 0.0001688855539143279,-5.664427898241065,-6.196627933481501 -0.0001690155539143279,-5.660748645626284,-6.192909282610851 0.0001691455539143279,-5.671786403470629,-6.204065235222801 -0.0001692755539143279,-5.657069393011501,-6.192909282610851 0.0001694055539143279,-5.657069393011501,-6.192909282610851 -0.0001695355539143279,-5.660748645626284,-6.189190631740201 0.0001696655539143279,-5.657069393011501,-6.185471980869552 -0.0001697955539143279,-5.660748645626284,-6.192909282610851 0.0001699255539143279,-5.65339014039672,-6.192909282610851 -0.0001700555539143279,-5.649710887781938,-6.185471980869552 0.0001701855539143279,-5.657069393011501,-6.189190631740201 -0.0001703155539143279,-5.65339014039672,-6.181753329998901 0.0001704455539143279,-5.65339014039672,-6.192909282610851 -0.0001705755539143279,-5.65339014039672,-6.189190631740201 0.0001707055539143279,-5.657069393011501,-6.189190631740201 -0.0001708355539143279,-5.649710887781938,-6.189190631740201 0.0001709655539143279,-5.649710887781938,-6.189190631740201 -0.0001710955539143279,-5.649710887781938,-6.185471980869552 0.0001712255539143279,-5.642352382552374,-6.189190631740201 -0.0001713555539143279,-5.646031635167156,-6.185471980869552 0.0001714855539143279,-5.646031635167156,-6.178034679128251 -0.0001716155539143279,-5.642352382552374,-6.166878726516301 0.0001717455539143279,-5.646031635167156,-6.178034679128251 -0.0001718755539143279,-5.642352382552374,-6.185471980869552 0.0001720055539143279,-5.642352382552374,-6.189190631740201 -0.0001721355539143279,-5.642352382552374,-6.189190631740201 0.0001722655539143279,-5.642352382552374,-6.196627933481501 -0.0001723955539143279,-5.638673129937593,-6.200346584352151 0.0001725255539143279,-5.642352382552374,-6.200346584352151 -0.0001726555539143279,-5.642352382552374,-6.196627933481501 0.0001727855539143279,-5.642352382552374,-6.196627933481501 -0.0001729155539143279,-5.642352382552374,-6.192909282610851 0.0001730455539143279,-5.638673129937593,-6.200346584352151 -0.0001731755539143279,-5.634993877322811,-6.204065235222801 0.0001733055539143279,-5.634993877322811,-6.207783886093452 -0.0001734355539143279,-5.642352382552374,-6.200346584352151 0.0001735655539143279,-5.668107150855848,-6.237533093058652 -0.0001736955539143279,-5.598201351174993,-6.1520041230337 0.0001738255539143279,-5.627635372093247,-6.204065235222801 -0.0001739555539143279,-5.627635372093247,-6.200346584352151 0.0001740855539143279,-5.623956119478465,-6.196627933481501 -0.0001742155539143279,-5.620276866863684,-6.200346584352151 0.0001743455539143279,-5.620276866863684,-6.196627933481501 -0.0001744755539143279,-5.620276866863684,-6.196627933481501 0.0001746055539143279,-5.620276866863684,-6.196627933481501 -0.0001747355539143279,-5.616597614248902,-6.200346584352151 0.0001748655539143279,-5.61291836163412,-6.204065235222801 -0.0001749955539143279,-5.609239109019338,-6.196627933481501 0.0001751255539143279,-5.616597614248902,-6.200346584352151 -0.0001752555539143279,-5.616597614248902,-6.204065235222801 0.0001753855539143279,-5.609239109019338,-6.200346584352151 -0.0001755155539143279,-5.616597614248902,-6.211502536964102 0.0001756455539143279,-5.660748645626284,-6.204065235222801 -0.0001757755539143279,-5.704899677003666,-6.211502536964102 0.0001759055539143279,-5.730654445307139,-6.211502536964102 -0.0001760355539143279,-5.745371455766266,-6.211502536964102 0.0001761655539143279,-5.756409213610612,-6.215221187834752 -0.0001762955539143279,-5.763767718840175,-6.211502536964102 0.0001764255539143279,-5.749050708381048,-6.211502536964102 -0.0001765555539143279,-5.741692203151485,-6.204065235222801 0.0001766855539143279,-5.738012950536702,-6.204065235222801 -0.0001768155539143279,-5.734333697921921,-6.200346584352151 0.0001769455539143279,-5.730654445307139,-6.189190631740201 -0.0001770755539143279,-5.726975192692357,-6.189190631740201 0.0001772055539143279,-5.726975192692357,-6.192909282610851 -0.0001773355539143279,-5.719616687462793,-6.192909282610851 0.0001774655539143279,-5.75272996099583,-6.189190631740201 -0.0001775955539143279,-5.804239497602776,-6.196627933481501 0.0001777255539143279,-5.841032023750594,-6.196627933481501 -0.0001778555539143279,-5.848390528980158,-6.196627933481501 0.0001779855539143279,-5.863107539439285,-6.196627933481501 -0.0001781155539143279,-5.863107539439285,-6.196627933481501 0.0001782455539143279,-5.863107539439285,-6.192909282610851 -0.0001783755539143279,-5.848390528980158,-6.192909282610851 0.0001785055539143279,-5.841032023750594,-6.200346584352151 -0.0001786355539143279,-5.841032023750594,-6.196627933481501 0.0001787655539143279,-5.841032023750594,-6.204065235222801 -0.0001788955539143279,-5.837352771135812,-6.200346584352151 0.0001790255539143279,-5.841032023750594,-6.196627933481501 -0.0001791555539143279,-5.837352771135812,-6.196627933481501 0.0001792855539143279,-5.837352771135812,-6.192909282610851 -0.0001794155539143279,-5.89254156035754,-6.196627933481501 0.0001795455539143279,-5.929334086505358,-6.218939838705402 -0.0001796755539143279,-5.944051096964485,-6.178034679128251 0.0001798055539143279,-5.966126612653176,-6.189190631740201 -0.0001799355539143279,-5.977164370497522,-6.196627933481501 0.0001800655539143279,-5.977164370497522,-6.192909282610851 -0.0001801955539143279,-5.958768107423612,-6.185471980869552 0.0001803255539143279,-5.951409602194049,-6.185471980869552 -0.0001804555539143279,-5.947730349579267,-6.189190631740201 0.0001805855539143279,-5.947730349579267,-6.185471980869552 -0.0001807155539143279,-5.944051096964485,-6.185471980869552 0.0001808455539143279,-5.944051096964485,-6.181753329998901 -0.0001809755539143279,-5.944051096964485,-6.185471980869552 0.0001811055539143279,-5.940371844349704,-6.185471980869552 -0.0001812355539143279,-5.940371844349704,-6.178034679128251 0.0001813655539143279,-5.929334086505358,-6.15572277390435 -0.0001814955539143279,-5.936692591734921,-6.170597377386951 0.0001816255539143279,-5.93301333912014,-6.185471980869552 -0.0001817555539143279,-5.807918750217557,-6.178034679128251 0.0001818855539143279,-4.722539228856915,-6.107380312585899 -0.0001820155539143279,-2.618006733201702,-6.006976739078347 0.0001821455539143279,0.03473440205600403,-5.917729118182744 -0.0001822755539143279,2.503512906574618,-5.880542609476243 0.0001824055539143279,4.453516792408993,-5.887979911217544 -0.0001825355539143279,5.744934460197419,-5.940041023406645 0.0001826655539143279,5.980406627543457,-6.036725946043547 -0.0001827955539143279,6.028236911535621,-6.096224359973949 0.0001829255539143279,6.050312427224312,-6.13341086868045 -0.0001830555539143279,6.068708690298221,-6.14828547216305 0.0001831855539143279,6.076067195527784,-6.16316007564565 -0.0001833155539143279,6.087104953372131,-6.174316028257601 0.0001834455539143279,6.087104953372131,-6.178034679128251 -0.0001835755539143279,6.094463458601694,-6.185471980869552 0.0001837055539143279,6.090784205986912,-6.189190631740201 -0.0001838355539143279,6.083425700757348,-6.185471980869552 0.0001839655539143279,6.079746448142567,-6.192909282610851 -0.0001840955539143279,6.079746448142567,-6.192909282610851 0.0001842255539143279,6.079746448142567,-6.196627933481501 -0.0001843555539143279,6.076067195527784,-6.196627933481501 0.0001844855539143279,6.076067195527784,-6.200346584352151 -0.0001846155539143279,6.072387942913003,-6.204065235222801 0.0001847455539143279,6.072387942913003,-6.200346584352151 -0.0001848755539143279,6.068708690298221,-6.200346584352151 0.0001850055539143279,6.076067195527784,-6.196627933481501 -0.0001851355539143279,6.072387942913003,-6.207783886093452 0.0001852655539143279,6.068708690298221,-6.192909282610851 -0.0001853955539143279,6.065029437683439,-6.200346584352151 0.0001855255539143279,6.065029437683439,-6.196627933481501 -0.0001856555539143279,6.068708690298221,-6.204065235222801 0.0001857855539143279,6.068708690298221,-6.192909282610851 -0.0001859155539143279,6.065029437683439,-6.200346584352151 0.0001860455539143279,6.068708690298221,-6.196627933481501 -0.0001861755539143279,6.068708690298221,-6.207783886093452 0.0001863055539143279,6.072387942913003,-6.204065235222801 -0.0001864355539143279,6.068708690298221,-6.207783886093452 0.0001865655539143279,6.068708690298221,-6.204065235222801 -0.0001866955539143279,6.072387942913003,-6.192909282610851 0.0001868255539143279,6.076067195527784,-6.178034679128251 -0.0001869555539143279,6.065029437683439,-6.196627933481501 0.0001870855539143279,6.065029437683439,-6.189190631740201 -0.0001872155539143279,6.065029437683439,-6.189190631740201 0.0001873455539143279,6.065029437683439,-6.192909282610851 -0.0001874755539143279,6.068708690298221,-6.189190631740201 0.0001876055539143279,6.065029437683439,-6.196627933481501 -0.0001877355539143279,6.068708690298221,-6.196627933481501 0.0001878655539143279,6.072387942913003,-6.192909282610851 -0.0001879955539143279,6.065029437683439,-6.196627933481501 0.0001881255539143279,6.072387942913003,-6.196627933481501 -0.0001882555539143279,6.065029437683439,-6.192909282610851 0.0001883855539143279,6.068708690298221,-6.189190631740201 -0.0001885155539143279,6.072387942913003,-6.185471980869552 0.0001886455539143279,6.076067195527784,-6.189190631740201 -0.0001887755539143279,6.072387942913003,-6.189190631740201 0.0001889055539143279,6.068708690298221,-6.185471980869552 -0.0001890355539143279,6.076067195527784,-6.185471980869552 0.0001891655539143279,6.076067195527784,-6.189190631740201 -0.0001892955539143279,6.072387942913003,-6.189190631740201 0.0001894255539143279,6.072387942913003,-6.192909282610851 -0.0001895555539143279,6.072387942913003,-6.192909282610851 0.0001896855539143279,6.072387942913003,-6.189190631740201 -0.0001898155539143279,6.076067195527784,-6.189190631740201 0.0001899455539143279,6.072387942913003,-6.189190631740201 -0.0001900755539143279,6.079746448142567,-6.185471980869552 0.0001902055539143279,6.076067195527784,-6.192909282610851 -0.0001903355539143279,6.079746448142567,-6.192909282610851 0.0001904655539143279,6.076067195527784,-6.192909282610851 -0.0001905955539143279,6.076067195527784,-6.189190631740201 0.0001907255539143279,6.076067195527784,-6.185471980869552 -0.0001908555539143279,6.076067195527784,-6.185471980869552 0.0001909855539143279,6.083425700757348,-6.189190631740201 -0.0001911155539143279,6.083425700757348,-6.15572277390435 0.0001912455539143279,6.079746448142567,-6.166878726516301 -0.0001913755539143279,6.053991679839093,-6.215221187834752 0.0001915055539143279,6.112859721675603,-6.1371295195511 -0.0001916355539143279,6.087104953372131,-6.189190631740201 0.0001917655539143279,6.087104953372131,-6.185471980869552 -0.0001918955539143279,6.083425700757348,-6.192909282610851 0.0001920255539143279,6.079746448142567,-6.192909282610851 -0.0001921555539143279,6.079746448142567,-6.192909282610851 0.0001922855539143279,6.083425700757348,-6.189190631740201 -0.0001924155539143279,6.076067195527784,-6.192909282610851 0.0001925455539143279,6.079746448142567,-6.200346584352151 -0.0001926755539143279,6.083425700757348,-6.200346584352151 0.0001928055539143279,6.094463458601694,-6.196627933481501 -0.0001929355539143279,6.087104953372131,-6.196627933481501 0.0001930655539143279,6.090784205986912,-6.204065235222801 -0.0001931955539143279,6.079746448142567,-6.204065235222801 0.0001933255539143279,6.090784205986912,-6.211502536964102 -0.0001934555539143279,6.094463458601694,-6.200346584352151 0.0001935855539143279,6.087104953372131,-6.204065235222801 -0.0001937155539143279,6.087104953372131,-6.200346584352151 0.0001938455539143279,6.094463458601694,-6.200346584352151 -0.0001939755539143279,6.083425700757348,-6.204065235222801 0.0001941055539143279,6.083425700757348,-6.211502536964102 -0.0001942355539143279,6.087104953372131,-6.207783886093452 0.0001943655539143279,6.083425700757348,-6.207783886093452 -0.0001944955539143279,6.083425700757348,-6.204065235222801 0.0001946255539143279,6.083425700757348,-6.207783886093452 -0.0001947555539143279,6.079746448142567,-6.207783886093452 0.0001948855539143279,6.079746448142567,-6.204065235222801 -0.0001950155539143279,6.083425700757348,-6.211502536964102 0.0001951455539143279,6.087104953372131,-6.211502536964102 -0.0001952755539143279,6.087104953372131,-6.204065235222801 0.0001954055539143279,6.090784205986912,-6.200346584352151 -0.0001955355539143279,6.087104953372131,-6.196627933481501 0.0001956655539143279,6.083425700757348,-6.204065235222801 -0.0001957955539143279,6.087104953372131,-6.200346584352151 0.0001959255539143279,6.087104953372131,-6.204065235222801 -0.0001960555539143279,6.094463458601694,-6.200346584352151 0.0001961855539143279,6.083425700757348,-6.200346584352151 -0.0001963155539143279,6.090784205986912,-6.204065235222801 0.0001964455539143279,6.087104953372131,-6.196627933481501 -0.0001965755539143279,6.094463458601694,-6.196627933481501 0.0001967055539143279,6.087104953372131,-6.189190631740201 -0.0001968355539143279,6.090784205986912,-6.185471980869552 0.0001969655539143279,6.083425700757348,-6.196627933481501 -0.0001970955539143279,6.090784205986912,-6.189190631740201 0.0001972255539143279,6.090784205986912,-6.189190631740201 -0.0001973555539143279,6.087104953372131,-6.218939838705402 0.0001974855539143279,6.090784205986912,-6.166878726516301 -0.0001976155539143279,6.094463458601694,-6.192909282610851 0.0001977455539143279,6.083425700757348,-6.192909282610851 -0.0001978755539143279,6.090784205986912,-6.192909282610851 0.0001980055539143279,6.090784205986912,-6.189190631740201 -0.0001981355539143279,6.087104953372131,-6.192909282610851 0.0001982655539143279,6.090784205986912,-6.192909282610851 -0.0001983955539143279,6.094463458601694,-6.192909282610851 0.0001985255539143279,6.094463458601694,-6.185471980869552 -0.0001986555539143279,6.098142711216476,-6.192909282610851 0.0001987855539143279,6.098142711216476,-6.189190631740201 -0.0001989155539143279,6.098142711216476,-6.181753329998901 0.0001990455539143279,6.094463458601694,-6.192909282610851 -0.0001991755539143279,6.087104953372131,-6.196627933481501 0.0001993055539143279,6.094463458601694,-6.200346584352151 -0.0001994355539143279,6.087104953372131,-6.192909282610851 0.0001995655539143279,6.083425700757348,-6.192909282610851 -0.0001996955539143279,6.087104953372131,-6.200346584352151 0.0001998255539143279,6.087104953372131,-6.196627933481501 -0.0001999555539143279,6.087104953372131,-6.196627933481501 0.0002000855539143279,6.083425700757348,-6.196627933481501 -0.0002002155539143279,6.090784205986912,-6.192909282610851 0.0002003455539143279,6.087104953372131,-6.189190631740201 -0.0002004755539143279,6.087104953372131,-6.196627933481501 0.0002006055539143279,6.087104953372131,-6.192909282610851 -0.0002007355539143279,6.090784205986912,-6.196627933481501 0.0002008655539143279,6.090784205986912,-6.166878726516301 -0.0002009955539143279,6.094463458601694,-6.170597377386951 0.0002011255539143279,6.090784205986912,-6.178034679128251 -0.0002012555539143279,6.087104953372131,-6.185471980869552 0.0002013855539143279,6.090784205986912,-6.192909282610851 -0.0002015155539143279,6.087104953372131,-6.192909282610851 0.0002016455539143279,6.087104953372131,-6.189190631740201 -0.0002017755539143279,6.090784205986912,-6.192909282610851 0.0002019055539143279,6.087104953372131,-6.192909282610851 -0.0002020355539143279,6.083425700757348,-6.196627933481501 0.0002021655539143279,6.087104953372131,-6.196627933481501 -0.0002022955539143279,6.090784205986912,-6.192909282610851 0.0002024255539143279,6.087104953372131,-6.200346584352151 -0.0002025555539143279,6.090784205986912,-6.200346584352151 0.0002026855539143279,6.083425700757348,-6.207783886093452 -0.0002028155539143279,6.087104953372131,-6.196627933481501 0.0002029455539143279,6.087104953372131,-6.204065235222801 -0.0002030755539143279,6.083425700757348,-6.200346584352151 0.0002032055539143279,6.087104953372131,-6.204065235222801 -0.0002033355539143279,6.076067195527784,-6.207783886093452 0.0002034655539143279,6.083425700757348,-6.211502536964102 -0.0002035955539143279,6.083425700757348,-6.200346584352151 0.0002037255539143279,6.076067195527784,-6.204065235222801 -0.0002038555539143279,6.083425700757348,-6.207783886093452 0.0002039855539143279,6.083425700757348,-6.204065235222801 -0.0002041155539143279,6.087104953372131,-6.204065235222801 0.0002042455539143279,6.087104953372131,-6.200346584352151 -0.0002043755539143279,6.083425700757348,-6.207783886093452 0.0002045055539143279,6.083425700757348,-6.200346584352151 -0.0002046355539143279,6.087104953372131,-6.196627933481501 0.0002047655539143279,6.079746448142567,-6.211502536964102 -0.0002048955539143279,6.087104953372131,-6.204065235222801 0.0002050255539143279,6.083425700757348,-6.200346584352151 -0.0002051555539143279,6.079746448142567,-6.207783886093452 0.0002052855539143279,6.079746448142567,-6.207783886093452 -0.0002054155539143279,6.083425700757348,-6.207783886093452 0.0002055455539143279,6.079746448142567,-6.207783886093452 -0.0002056755539143279,6.068708690298221,-6.204065235222801 0.0002058055539143279,6.076067195527784,-6.207783886093452 -0.0002059355539143279,6.068708690298221,-6.207783886093452 0.0002060655539143279,6.076067195527784,-6.204065235222801 -0.0002061955539143279,6.068708690298221,-6.192909282610851 0.0002063255539143279,6.083425700757348,-6.185471980869552 -0.0002064555539143279,6.083425700757348,-6.192909282610851 0.0002065855539143279,6.083425700757348,-6.192909282610851 -0.0002067155539143279,6.072387942913003,-6.189190631740201 0.0002068455539143279,6.076067195527784,-6.185471980869552 -0.0002069755539143279,6.079746448142567,-6.181753329998901 0.0002071055539143279,6.079746448142567,-6.189190631740201 -0.0002072355539143279,6.072387942913003,-6.192909282610851 0.0002073655539143279,6.072387942913003,-6.189190631740201 -0.0002074955539143279,6.076067195527784,-6.189190631740201 0.0002076255539143279,6.079746448142567,-6.189190631740201 -0.0002077555539143279,6.076067195527784,-6.189190631740201 0.0002078855539143279,6.068708690298221,-6.196627933481501 -0.0002080155539143279,6.072387942913003,-6.196627933481501 0.0002081455539143279,6.072387942913003,-6.200346584352151 -0.0002082755539143279,6.079746448142567,-6.185471980869552 0.0002084055539143279,6.072387942913003,-6.192909282610851 -0.0002085355539143279,6.079746448142567,-6.185471980869552 0.0002086655539143279,6.072387942913003,-6.196627933481501 -0.0002087955539143279,6.072387942913003,-6.192909282610851 0.0002089255539143279,6.068708690298221,-6.189190631740201 -0.0002090555539143279,6.072387942913003,-6.189190631740201 0.0002091855539143279,6.042953921994748,-6.222658489576052 -0.0002093155539143279,6.087104953372131,-6.14828547216305 0.0002094455539143279,6.065029437683439,-6.189190631740201 -0.0002095755539143279,6.072387942913003,-6.185471980869552 0.0002097055539143279,6.068708690298221,-6.185471980869552 -0.0002098355539143279,6.076067195527784,-6.185471980869552 0.0002099655539143279,6.072387942913003,-6.185471980869552 -0.0002100955539143279,6.072387942913003,-6.185471980869552 0.0002102255539143279,6.072387942913003,-6.178034679128251 -0.0002103555539143279,6.068708690298221,-6.189190631740201 0.0002104855539143279,6.076067195527784,-6.181753329998901 -0.0002106155539143279,6.079746448142567,-6.159441424775 0.0002107455539143279,6.068708690298221,-6.16316007564565 -0.0002108755539143279,6.068708690298221,-6.185471980869552 0.0002110055539143279,6.068708690298221,-6.189190631740201 -0.0002111355539143279,6.061350185068657,-6.200346584352151 0.0002112655539143279,6.072387942913003,-6.192909282610851 -0.0002113955539143279,6.065029437683439,-6.196627933481501 0.0002115255539143279,6.072387942913003,-6.200346584352151 -0.0002116555539143279,6.065029437683439,-6.204065235222801 0.0002117855539143279,6.068708690298221,-6.196627933481501 -0.0002119155539143279,6.053991679839093,-6.200346584352151 0.0002120455539143279,6.057670932453876,-6.204065235222801 -0.0002121755539143279,6.057670932453876,-6.200346584352151 0.0002123055539143279,6.057670932453876,-6.196627933481501 -0.0002124355539143279,6.057670932453876,-6.204065235222801 0.0002125655539143279,6.057670932453876,-6.196627933481501 -0.0002126955539143279,6.053991679839093,-6.204065235222801 0.0002128255539143279,6.053991679839093,-6.200346584352151 -0.0002129555539143279,6.057670932453876,-6.204065235222801 0.0002130855539143279,6.050312427224312,-6.200346584352151 -0.0002132155539143279,6.057670932453876,-6.204065235222801 0.0002133455539143279,6.061350185068657,-6.207783886093452 -0.0002134755539143279,6.050312427224312,-6.200346584352151 0.0002136055539143279,6.053991679839093,-6.204065235222801 -0.0002137355539143279,6.057670932453876,-6.211502536964102 0.0002138655539143279,6.053991679839093,-6.200346584352151 -0.0002139955539143279,6.04663317460953,-6.204065235222801 0.0002141255539143279,6.04663317460953,-6.200346584352151 -0.0002142555539143279,6.053991679839093,-6.204065235222801 0.0002143855539143279,6.050312427224312,-6.204065235222801 -0.0002145155539143279,6.050312427224312,-6.204065235222801 0.0002146455539143279,6.050312427224312,-6.204065235222801 -0.0002147755539143279,6.04663317460953,-6.204065235222801 0.0002149055539143279,6.050312427224312,-6.207783886093452 -0.0002150355539143279,6.04663317460953,-6.204065235222801 0.0002151655539143279,6.053991679839093,-6.237533093058652 -0.0002152955539143279,6.050312427224312,-6.178034679128251 0.0002154255539143279,6.050312427224312,-6.200346584352151 -0.0002155555539143279,6.050312427224312,-6.207783886093452 0.0002156855539143279,6.04663317460953,-6.204065235222801 -0.0002158155539143279,6.04663317460953,-6.211502536964102 0.0002159455539143279,6.050312427224312,-6.192909282610851 -0.0002160755539143279,6.04663317460953,-6.192909282610851 0.0002162055539143279,6.053991679839093,-6.189190631740201 -0.0002163355539143279,6.04663317460953,-6.192909282610851 0.0002164655539143279,6.050312427224312,-6.196627933481501 -0.0002165955539143279,6.053991679839093,-6.196627933481501 0.0002167255539143279,6.04663317460953,-6.189190631740201 -0.0002168555539143279,6.039274669379966,-6.204065235222801 0.0002169855539143279,6.042953921994748,-6.196627933481501 -0.0002171155539143279,6.042953921994748,-6.196627933481501 0.0002172455539143279,6.035595416765185,-6.192909282610851 -0.0002173755539143279,6.039274669379966,-6.192909282610851 0.0002175055539143279,6.042953921994748,-6.185471980869552 -0.0002176355539143279,6.042953921994748,-6.189190631740201 0.0002177655539143279,6.035595416765185,-6.181753329998901 -0.0002178955539143279,6.035595416765185,-6.185471980869552 0.0002180255539143279,6.031916164150402,-6.185471980869552 -0.0002181555539143279,6.031916164150402,-6.189190631740201 0.0002182855539143279,6.039274669379966,-6.181753329998901 -0.0002184155539143279,6.031916164150402,-6.189190631740201 0.0002185455539143279,6.035595416765185,-6.185471980869552 -0.0002186755539143279,6.039274669379966,-6.178034679128251 0.0002188055539143279,6.035595416765185,-6.189190631740201 -0.0002189355539143279,6.035595416765185,-6.189190631740201 0.0002190655539143279,6.028236911535621,-6.189190631740201 -0.0002191955539143279,6.028236911535621,-6.192909282610851 0.0002193255539143279,6.031916164150402,-6.192909282610851 -0.0002194555539143279,6.028236911535621,-6.189190631740201 0.0002195855539143279,6.028236911535621,-6.189190631740201 -0.0002197155539143279,6.031916164150402,-6.189190631740201 0.0002198455539143279,6.031916164150402,-6.189190631740201 -0.0002199755539143279,6.031916164150402,-6.189190631740201 0.0002201055539143279,6.035595416765185,-6.192909282610851 -0.0002202355539143279,6.035595416765185,-6.185471980869552 0.0002203655539143279,6.031916164150402,-6.181753329998901 -0.0002204955539143279,6.031916164150402,-6.166878726516301 0.0002206255539143279,6.031916164150402,-6.181753329998901 -0.0002207555539143279,6.039274669379966,-6.181753329998901 0.0002208855539143279,6.031916164150402,-6.189190631740201 -0.0002210155539143279,6.024557658920839,-6.196627933481501 0.0002211455539143279,6.020878406306057,-6.192909282610851 -0.0002212755539143279,6.028236911535621,-6.196627933481501 0.0002214055539143279,6.024557658920839,-6.192909282610851 -0.0002215355539143279,6.020878406306057,-6.200346584352151 0.0002216655539143279,6.013519901076493,-6.200346584352151 -0.0002217955539143279,6.013519901076493,-6.204065235222801 0.0002219255539143279,6.020878406306057,-6.196627933481501 -0.0002220555539143279,6.013519901076493,-6.204065235222801 0.0002221855539143279,6.013519901076493,-6.200346584352151 -0.0002223155539143279,6.020878406306057,-6.200346584352151 0.0002224455539143279,6.017199153691275,-6.189190631740201 -0.0002225755539143279,6.017199153691275,-6.207783886093452 0.0002227055539143279,6.017199153691275,-6.196627933481501 -0.0002228355539143279,6.017199153691275,-6.200346584352151 0.0002229655539143279,6.017199153691275,-6.196627933481501 -0.0002230955539143279,6.020878406306057,-6.196627933481501 0.0002232255539143279,6.017199153691275,-6.200346584352151 -0.0002233555539143279,6.013519901076493,-6.200346584352151 0.0002234855539143279,6.017199153691275,-6.204065235222801 -0.0002236155539143279,6.013519901076493,-6.196627933481501 0.0002237455539143279,6.017199153691275,-6.200346584352151 -0.0002238755539143279,6.020878406306057,-6.200346584352151 0.0002240055539143279,6.013519901076493,-6.200346584352151 -0.0002241355539143279,6.020878406306057,-6.200346584352151 0.0002242655539143279,6.013519901076493,-6.204065235222801 -0.0002243955539143279,6.020878406306057,-6.204065235222801 0.0002245255539143279,6.013519901076493,-6.204065235222801 -0.0002246555539143279,6.013519901076493,-6.204065235222801 0.0002247855539143279,6.017199153691275,-6.200346584352151 -0.0002249155539143279,6.013519901076493,-6.207783886093452 0.0002250455539143279,6.00616139584693,-6.200346584352151 -0.0002251755539143279,6.009840648461712,-6.200346584352151 0.0002253055539143279,6.009840648461712,-6.204065235222801 -0.0002254355539143279,6.009840648461712,-6.200346584352151 0.0002255655539143279,6.00616139584693,-6.200346584352151 -0.0002256955539143279,6.002482143232148,-6.196627933481501 0.0002258255539143279,6.00616139584693,-6.185471980869552 -0.0002259555539143279,5.998802890617366,-6.185471980869552 0.0002260855539143279,6.002482143232148,-6.189190631740201 -0.0002262155539143279,5.995123638002585,-6.185471980869552 0.0002263455539143279,5.998802890617366,-6.189190631740201 -0.0002264755539143279,5.998802890617366,-6.192909282610851 0.0002266055539143279,5.995123638002585,-6.189190631740201 -0.0002267355539143279,6.00616139584693,-6.192909282610851 0.0002268655539143279,6.002482143232148,-6.189190631740201 -0.0002269955539143279,5.984085880158239,-6.211502536964102 0.0002271255539143279,6.009840648461712,-6.1520041230337 -0.0002272555539143279,5.998802890617366,-6.192909282610851 0.0002273855539143279,5.998802890617366,-6.192909282610851 -0.0002275155539143279,6.002482143232148,-6.189190631740201 0.0002276455539143279,5.998802890617366,-6.189190631740201 -0.0002277755539143279,5.995123638002585,-6.189190631740201 0.0002279055539143279,5.991444385387802,-6.181753329998901 -0.0002280355539143279,5.995123638002585,-6.181753329998901 0.0002281655539143279,5.991444385387802,-6.185471980869552 -0.0002282955539143279,5.998802890617366,-6.181753329998901 0.0002284255539143279,5.998802890617366,-6.185471980869552 -0.0002285555539143279,5.995123638002585,-6.189190631740201 0.0002286855539143279,5.991444385387802,-6.196627933481501 -0.0002288155539143279,5.995123638002585,-6.189190631740201 0.0002289455539143279,5.998802890617366,-6.196627933481501 -0.0002290755539143279,5.998802890617366,-6.185471980869552 0.0002292055539143279,5.995123638002585,-6.192909282610851 -0.0002293355539143279,6.002482143232148,-6.192909282610851 0.0002294655539143279,5.995123638002585,-6.192909282610851 -0.0002295955539143279,5.995123638002585,-6.189190631740201 0.0002297255539143279,5.991444385387802,-6.185471980869552 -0.0002298555539143279,5.987765132773021,-6.192909282610851 0.0002299855539143279,5.991444385387802,-6.185471980869552 -0.0002301155539143279,5.991444385387802,-6.170597377386951 0.0002302455539143279,5.991444385387802,-6.159441424775 -0.0002303755539143279,5.991444385387802,-6.174316028257601 0.0002305055539143279,5.991444385387802,-6.181753329998901 -0.0002306355539143279,5.991444385387802,-6.181753329998901 0.0002307655539143279,5.991444385387802,-6.185471980869552 -0.0002308955539143279,5.991444385387802,-6.189190631740201 0.0002310255539143279,5.987765132773021,-6.189190631740201 -0.0002311555539143279,5.987765132773021,-6.196627933481501 0.0002312855539143279,5.987765132773021,-6.192909282610851 -0.0002314155539143279,5.984085880158239,-6.192909282610851 0.0002315455539143279,5.980406627543457,-6.192909282610851 -0.0002316755539143279,5.980406627543457,-6.200346584352151 0.0002318055539143279,5.984085880158239,-6.192909282610851 -0.0002319355539143279,5.987765132773021,-6.200346584352151 0.0002320655539143279,5.984085880158239,-6.207783886093452 -0.0002321955539143279,5.987765132773021,-6.196627933481501 0.0002323255539143279,5.984085880158239,-6.204065235222801 -0.0002324555539143279,5.976727374928675,-6.196627933481501 0.0002325855539143279,5.976727374928675,-6.200346584352151 -0.0002327155539143279,5.976727374928675,-6.200346584352151 0.0002328455539143279,5.976727374928675,-6.204065235222801 -0.0002329755539143279,5.980406627543457,-6.230095791317352 0.0002331055539143279,5.973048122313894,-6.178034679128251 -0.0002332355539143279,5.984085880158239,-6.196627933481501 0.0002333655539143279,5.976727374928675,-6.207783886093452 -0.0002334955539143279,5.973048122313894,-6.204065235222801 0.0002336255539143279,5.980406627543457,-6.204065235222801 -0.0002337555539143279,5.995123638002585,-6.200346584352151 0.0002338855539143279,5.693424923590474,-6.226377140446703 -0.0002340155539143279,4.780970275124577,-6.278438252635803 0.0002341455539143279,3.173136882464913,-6.352811270048806 -0.0002342755539143279,1.164264954794029,-6.416028334849857 0.0002344055539143279,-1.006494087927257,-6.464370796168308 -0.0002345355539143279,-2.927063952843377,-6.471808097909609 0.0002346655539143279,-4.612161650413459,-6.468089447038958 -0.0002347955539143279,-5.59452209856021,-6.416028334849857 0.0002349255539143279,-5.71225818223323,-6.337936666566205 -0.0002350555539143279,-5.749050708381048,-6.289594205247754 0.0002351855539143279,-5.767446971454957,-6.263563649153203 -0.0002353155539143279,-5.782163981914084,-6.252407696541253 0.0002354455539143279,-5.785843234528866,-6.241251743929302 -0.0002355755539143279,-5.789522487143648,-6.215221187834752 0.0002357055539143279,-5.789522487143648,-6.207783886093452 -0.0002358355539143279,-5.79320173975843,-6.207783886093452 0.0002359655539143279,-5.785843234528866,-6.204065235222801 -0.0002360955539143279,-5.785843234528866,-6.204065235222801 0.0002362255539143279,-5.785843234528866,-6.196627933481501 -0.0002363555539143279,-5.774805476684521,-6.204065235222801 0.0002364855539143279,-5.771126224069739,-6.200346584352151 -0.0002366155539143279,-5.771126224069739,-6.196627933481501 0.0002367455539143279,-5.771126224069739,-6.196627933481501 -0.0002368755539143279,-5.767446971454957,-6.196627933481501 0.0002370055539143279,-5.760088466225393,-6.196627933481501 -0.0002371355539143279,-5.767446971454957,-6.200346584352151 0.0002372655539143279,-5.756409213610612,-6.196627933481501 -0.0002373955539143279,-5.763767718840175,-6.200346584352151 0.0002375255539143279,-5.756409213610612,-6.196627933481501 -0.0002376555539143279,-5.756409213610612,-6.196627933481501 0.0002377855539143279,-5.760088466225393,-6.192909282610851 -0.0002379155539143279,-5.756409213610612,-6.192909282610851 0.0002380455539143279,-5.75272996099583,-6.196627933481501 -0.0002381755539143279,-5.749050708381048,-6.192909282610851 0.0002383055539143279,-5.749050708381048,-6.196627933481501 -0.0002384355539143279,-5.756409213610612,-6.192909282610851 0.0002385655539143279,-5.749050708381048,-6.192909282610851 -0.0002386955539143279,-5.756409213610612,-6.185471980869552 0.0002388255539143279,-5.745371455766266,-6.192909282610851 -0.0002389555539143279,-5.749050708381048,-6.196627933481501 0.0002390855539143279,-5.749050708381048,-6.189190631740201 -0.0002392155539143279,-5.741692203151485,-6.185471980869552 0.0002393455539143279,-5.745371455766266,-6.185471980869552 -0.0002394755539143279,-5.749050708381048,-6.189190631740201 0.0002396055539143279,-5.749050708381048,-6.185471980869552 -0.0002397355539143279,-5.745371455766266,-6.181753329998901 0.0002398655539143279,-5.741692203151485,-6.181753329998901 -0.0002399955539143279,-5.738012950536702,-6.159441424775 0.0002401255539143279,-5.738012950536702,-6.166878726516301 -0.0002402555539143279,-5.723295940077575,-6.178034679128251 0.0002403855539143279,-5.734333697921921,-6.196627933481501 -0.0002405155539143279,-5.734333697921921,-6.189190631740201 0.0002406455539143279,-5.730654445307139,-6.200346584352151 -0.0002407755539143279,-5.738012950536702,-6.204065235222801 0.0002409055539143279,-5.741692203151485,-6.192909282610851 -0.0002410355539143279,-5.738012950536702,-6.200346584352151 0.0002411655539143279,-5.734333697921921,-6.204065235222801 -0.0002412955539143279,-5.730654445307139,-6.204065235222801 0.0002414255539143279,-5.738012950536702,-6.196627933481501 -0.0002415555539143279,-5.738012950536702,-6.200346584352151 0.0002416855539143279,-5.738012950536702,-6.196627933481501 -0.0002418155539143279,-5.734333697921921,-6.200346584352151 0.0002419455539143279,-5.730654445307139,-6.200346584352151 -0.0002420755539143279,-5.730654445307139,-6.200346584352151 0.0002422055539143279,-5.730654445307139,-6.200346584352151 -0.0002423355539143279,-5.730654445307139,-6.200346584352151 0.0002424655539143279,-5.719616687462793,-6.192909282610851 -0.0002425955539143279,-5.730654445307139,-6.196627933481501 0.0002427255539143279,-5.726975192692357,-6.204065235222801 -0.0002428555539143279,-5.734333697921921,-6.207783886093452 0.0002429855539143279,-5.730654445307139,-6.204065235222801 -0.0002431155539143279,-5.726975192692357,-6.204065235222801 0.0002432455539143279,-5.730654445307139,-6.204065235222801 -0.0002433755539143279,-5.726975192692357,-6.204065235222801 0.0002435055539143279,-5.726975192692357,-6.207783886093452 -0.0002436355539143279,-5.726975192692357,-6.215221187834752 0.0002437655539143279,-5.730654445307139,-6.215221187834752 -0.0002438955539143279,-5.730654445307139,-6.215221187834752 0.0002440255539143279,-5.734333697921921,-6.215221187834752 -0.0002441555539143279,-5.726975192692357,-6.215221187834752 0.0002442855539143279,-5.730654445307139,-6.207783886093452 -0.0002444155539143279,-5.726975192692357,-6.215221187834752 0.0002445455539143279,-5.726975192692357,-6.211502536964102 -0.0002446755539143279,-5.726975192692357,-6.211502536964102 0.0002448055539143279,-5.738012950536702,-6.226377140446703 -0.0002449355539143279,-5.715937434848011,-6.185471980869552 0.0002450655539143279,-5.730654445307139,-6.222658489576052 -0.0002451955539143279,-5.730654445307139,-6.215221187834752 0.0002453255539143279,-5.723295940077575,-6.196627933481501 -0.0002454555539143279,-5.726975192692357,-6.192909282610851 0.0002455855539143279,-5.723295940077575,-6.200346584352151 -0.0002457155539143279,-5.719616687462793,-6.196627933481501 0.0002458455539143279,-5.715937434848011,-6.196627933481501 -0.0002459755539143279,-5.719616687462793,-6.192909282610851 0.0002461055539143279,-5.715937434848011,-6.192909282610851 -0.0002462355539143279,-5.71225818223323,-6.189190631740201 0.0002463655539143279,-5.719616687462793,-6.196627933481501 -0.0002464955539143279,-5.719616687462793,-6.200346584352151 0.0002466255539143279,-5.723295940077575,-6.204065235222801 -0.0002467555539143279,-5.715937434848011,-6.196627933481501 0.0002468855539143279,-5.715937434848011,-6.189190631740201 -0.0002470155539143279,-5.715937434848011,-6.200346584352151 0.0002471455539143279,-5.719616687462793,-6.200346584352151 -0.0002472755539143279,-5.715937434848011,-6.189190631740201 0.0002474055539143279,-5.715937434848011,-6.200346584352151 -0.0002475355539143279,-5.71225818223323,-6.196627933481501 0.0002476655539143279,-5.704899677003666,-6.192909282610851 -0.0002477955539143279,-5.708578929618447,-6.189190631740201 0.0002479255539143279,-5.708578929618447,-6.192909282610851 -0.0002480555539143279,-5.708578929618447,-6.192909282610851 0.0002481855539143279,-5.701220424388884,-6.192909282610851 -0.0002483155539143279,-5.704899677003666,-6.189190631740201 0.0002484455539143279,-5.697541171774102,-6.192909282610851 -0.0002485755539143279,-5.697541171774102,-6.192909282610851 0.0002487055539143279,-5.69386191915932,-6.192909282610851 -0.0002488355539143279,-5.701220424388884,-6.189190631740201 0.0002489655539143279,-5.697541171774102,-6.185471980869552 -0.0002490955539143279,-5.69386191915932,-6.192909282610851 0.0002492255539143279,-5.697541171774102,-6.185471980869552 -0.0002493555539143279,-5.697541171774102,-6.189190631740201 0.0002494855539143279,-5.697541171774102,-6.181753329998901 -0.0002496155539143279,-5.69386191915932,-6.192909282610851 0.0002497455539143279,-5.686503413929756,-6.159441424775 -0.0002498755539143279,-5.697541171774102,-6.178034679128251 0.0002500055539143279,-5.69386191915932,-6.178034679128251 -0.0002501355539143279,-5.697541171774102,-6.192909282610851 0.0002502655539143279,-5.697541171774102,-6.196627933481501 -0.0002503955539143279,-5.690182666544539,-6.196627933481501 0.0002505255539143279,-5.69386191915932,-6.196627933481501 -0.0002506555539143279,-5.690182666544539,-6.200346584352151 0.0002507855539143279,-5.686503413929756,-6.222658489576052 -0.0002509155539143279,-5.69386191915932,-6.178034679128251 0.0002510455539143279,-5.686503413929756,-6.196627933481501 -0.0002511755539143279,-5.682824161314975,-6.204065235222801 0.0002513055539143279,-5.686503413929756,-6.204065235222801 -0.0002514355539143279,-5.682824161314975,-6.200346584352151 0.0002515655539143279,-5.686503413929756,-6.207783886093452 -0.0002516955539143279,-5.686503413929756,-6.207783886093452 0.0002518255539143279,-5.682824161314975,-6.211502536964102 -0.0002519555539143279,-5.682824161314975,-6.207783886093452 0.0002520855539143279,-5.682824161314975,-6.207783886093452 -0.0002522155539143279,-5.671786403470629,-6.200346584352151 0.0002523455539143279,-5.682824161314975,-6.200346584352151 -0.0002524755539143279,-5.675465656085411,-6.211502536964102 0.0002526055539143279,-5.675465656085411,-6.200346584352151 -0.0002527355539143279,-5.675465656085411,-6.207783886093452 0.0002528655539143279,-5.675465656085411,-6.204065235222801 -0.0002529955539143279,-5.671786403470629,-6.204065235222801 0.0002531255539143279,-5.671786403470629,-6.207783886093452 -0.0002532555539143279,-5.668107150855848,-6.211502536964102 0.0002533855539143279,-5.671786403470629,-6.207783886093452 -0.0002535155539143279,-5.668107150855848,-6.204065235222801 0.0002536455539143279,-5.664427898241065,-6.204065235222801 -0.0002537755539143279,-5.671786403470629,-6.200346584352151 0.0002539055539143279,-5.664427898241065,-6.200346584352151 -0.0002540355539143279,-5.668107150855848,-6.207783886093452 0.0002541655539143279,-5.660748645626284,-6.204065235222801 -0.0002542955539143279,-5.660748645626284,-6.204065235222801 0.0002544255539143279,-5.664427898241065,-6.204065235222801 -0.0002545555539143279,-5.660748645626284,-6.204065235222801 0.0002546855539143279,-5.65339014039672,-6.204065235222801 -0.0002548155539143279,-5.660748645626284,-6.207783886093452 0.0002549455539143279,-5.657069393011501,-6.204065235222801 -0.0002550755539143279,-5.657069393011501,-6.196627933481501 0.0002552055539143279,-5.657069393011501,-6.192909282610851 -0.0002553355539143279,-5.660748645626284,-6.196627933481501 0.0002554655539143279,-5.65339014039672,-6.192909282610851 -0.0002555955539143279,-5.660748645626284,-6.196627933481501 0.0002557255539143279,-5.649710887781938,-6.215221187834752 -0.0002558555539143279,-5.65339014039672,-6.166878726516301 0.0002559855539143279,-5.65339014039672,-6.192909282610851 -0.0002561155539143279,-5.65339014039672,-6.196627933481501 0.0002562455539143279,-5.649710887781938,-6.196627933481501 -0.0002563755539143279,-5.646031635167156,-6.192909282610851 0.0002565055539143279,-5.646031635167156,-6.196627933481501 -0.0002566355539143279,-5.642352382552374,-6.192909282610851 0.0002567655539143279,-5.646031635167156,-6.189190631740201 -0.0002568955539143279,-5.646031635167156,-6.196627933481501 0.0002570255539143279,-5.649710887781938,-6.192909282610851 -0.0002571555539143279,-5.638673129937593,-6.185471980869552 0.0002572855539143279,-5.634993877322811,-6.189190631740201 -0.0002574155539143279,-5.638673129937593,-6.192909282610851 0.0002575455539143279,-5.634993877322811,-6.189190631740201 -0.0002576755539143279,-5.634993877322811,-6.196627933481501 0.0002578055539143279,-5.634993877322811,-6.192909282610851 -0.0002579355539143279,-5.631314624708029,-6.196627933481501 0.0002580655539143279,-5.634993877322811,-6.196627933481501 -0.0002581955539143279,-5.623956119478465,-6.192909282610851 0.0002583255539143279,-5.623956119478465,-6.189190631740201 -0.0002584555539143279,-5.631314624708029,-6.185471980869552 0.0002585855539143279,-5.620276866863684,-6.185471980869552 -0.0002587155539143279,-5.61291836163412,-6.185471980869552 0.0002588455539143279,-5.620276866863684,-6.185471980869552 -0.0002589755539143279,-5.616597614248902,-6.181753329998901 0.0002591055539143279,-5.616597614248902,-6.189190631740201 -0.0002592355539143279,-5.609239109019338,-6.192909282610851 0.0002593655539143279,-5.61291836163412,-6.189190631740201 -0.0002594955539143279,-5.616597614248902,-6.166878726516301 0.0002596255539143279,-5.61291836163412,-6.170597377386951 -0.0002597555539143279,-5.609239109019338,-6.181753329998901 0.0002598855539143279,-5.609239109019338,-6.192909282610851 -0.0002600155539143279,-5.609239109019338,-6.196627933481501 0.0002601455539143279,-5.609239109019338,-6.192909282610851 -0.0002602755539143279,-5.609239109019338,-6.192909282610851 0.0002604055539143279,-5.601880603789774,-6.207783886093452 -0.0002605355539143279,-5.601880603789774,-6.196627933481501 0.0002606655539143279,-5.605559856404557,-6.204065235222801 -0.0002607955539143279,-5.601880603789774,-6.207783886093452 0.0002609255539143279,-5.598201351174993,-6.207783886093452 -0.0002610555539143279,-5.605559856404557,-6.204065235222801 0.0002611855539143279,-5.601880603789774,-6.200346584352151 -0.0002613155539143279,-5.59452209856021,-6.204065235222801 0.0002614455539143279,-5.583484340715865,-6.207783886093452 -0.0002615755539143279,-5.590842845945429,-6.211502536964102 0.0002617055539143279,-5.590842845945429,-6.211502536964102 -0.0002618355539143279,-5.590842845945429,-6.211502536964102 0.0002619655539143279,-5.579805088101083,-6.207783886093452 -0.0002620955539143279,-5.660748645626284,-6.204065235222801 0.0002622255539143279,-5.726975192692357,-6.207783886093452 -0.0002623555539143279,-5.760088466225393,-6.211502536964102 0.0002624855539143279,-5.785843234528866,-6.200346584352151 -0.0002626155539143279,-5.800560244987993,-6.200346584352151 0.0002627455539143279,-5.811598002832339,-6.207783886093452 -0.0002628755539143279,-5.815277255447121,-6.204065235222801 0.0002630055539143279,-5.796880992373212,-6.204065235222801 -0.0002631355539143279,-5.800560244987993,-6.204065235222801 0.0002632655539143279,-5.789522487143648,-6.204065235222801 -0.0002633955539143279,-5.785843234528866,-6.207783886093452 0.0002635255539143279,-5.79320173975843,-6.211502536964102 -0.0002636555539143279,-5.789522487143648,-6.204065235222801 0.0002637855539143279,-5.785843234528866,-6.207783886093452 -0.0002639155539143279,-5.804239497602776,-6.211502536964102 0.0002640455539143279,-5.859428286824503,-6.215221187834752 -0.0002641755539143279,-5.89254156035754,-6.215221187834752 0.0002643055539143279,-5.921975581275794,-6.226377140446703 -0.0002644355539143279,-5.925654833890576,-6.207783886093452 0.0002645655539143279,-5.936692591734921,-6.211502536964102 -0.0002646955539143279,-5.929334086505358,-6.207783886093452 0.0002648255539143279,-5.918296328661013,-6.204065235222801 -0.0002649555539143279,-5.910937823431449,-6.189190631740201 0.0002650855539143279,-5.907258570816667,-6.185471980869552 -0.0002652155539143279,-5.899900065587103,-6.204065235222801 0.0002653455539143279,-5.903579318201885,-6.166878726516301 -0.0002654755539143279,-5.899900065587103,-6.189190631740201 0.0002656055539143279,-5.899900065587103,-6.196627933481501 -0.0002657355539143279,-5.89254156035754,-6.196627933481501 0.0002658655539143279,-5.896220812972321,-6.192909282610851 -0.0002659955539143279,-5.896220812972321,-6.196627933481501 0.0002661255539143279,-5.896220812972321,-6.189190631740201 -0.0002662555539143279,-5.89254156035754,-6.192909282610851 0.0002663855539143279,-5.896220812972321,-6.200346584352151 -0.0002665155539143279,-5.896220812972321,-6.196627933481501 0.0002666455539143279,-5.888862307742758,-6.196627933481501 -0.0002667755539143279,-5.888862307742758,-6.189190631740201 0.0002669055539143279,-5.885183055127976,-6.192909282610851 -0.0002670355539143279,-5.89254156035754,-6.189190631740201 0.0002671655539143279,-5.885183055127976,-6.192909282610851 -0.0002672955539143279,-5.87414529728363,-6.192909282610851 0.0002674255539143279,-5.881503802513194,-6.192909282610851 -0.0002675555539143279,-5.877824549898413,-6.196627933481501 0.0002676855539143279,-5.877824549898413,-6.196627933481501 -0.0002678155539143279,-5.87414529728363,-6.196627933481501 0.0002679455539143279,-5.870466044668849,-6.196627933481501 -0.0002680755539143279,-5.870466044668849,-6.196627933481501 0.0002682055539143279,-5.870466044668849,-6.196627933481501 -0.0002683355539143279,-5.866786792054067,-6.192909282610851 0.0002684655539143279,-5.863107539439285,-6.189190631740201 -0.0002685955539143279,-5.863107539439285,-6.189190631740201 0.0002687255539143279,-5.859428286824503,-6.189190631740201 -0.0002688555539143279,-5.859428286824503,-6.189190631740201 0.0002689855539143279,-5.859428286824503,-6.192909282610851 -0.0002691155539143279,-5.855749034209722,-6.192909282610851 0.0002692455539143279,-5.852069781594939,-6.166878726516301 -0.0002693755539143279,-5.848390528980158,-6.166878726516301 0.0002695055539143279,-5.848390528980158,-6.178034679128251 -0.0002696355539143279,-5.855749034209722,-6.181753329998901 0.0002697655539143279,-5.852069781594939,-6.185471980869552 -0.0002698955539143279,-5.848390528980158,-6.189190631740201 0.0002700255539143279,-5.844711276365376,-6.189190631740201 -0.0002701555539143279,-5.841032023750594,-6.192909282610851 0.0002702855539143279,-5.844711276365376,-6.196627933481501 -0.0002704155539143279,-5.83367351852103,-6.196627933481501 0.0002705455539143279,-5.841032023750594,-6.200346584352151 -0.0002706755539143279,-5.841032023750594,-6.200346584352151 0.0002708055539143279,-5.837352771135812,-6.200346584352151 -0.0002709355539143279,-5.83367351852103,-6.211502536964102 0.0002710655539143279,-5.837352771135812,-6.211502536964102 -0.0002711955539143279,-5.826315013291467,-6.207783886093452 0.0002713255539143279,-5.841032023750594,-6.204065235222801 -0.0002714555539143279,-5.83367351852103,-6.211502536964102 0.0002715855539143279,-5.829994265906248,-6.207783886093452 -0.0002717155539143279,-5.826315013291467,-6.204065235222801 0.0002718455539143279,-5.829994265906248,-6.207783886093452 -0.0002719755539143279,-5.826315013291467,-6.204065235222801 0.0002721055539143279,-5.826315013291467,-6.200346584352151 -0.0002722355539143279,-5.822635760676684,-6.200346584352151 0.0002723655539143279,-5.822635760676684,-6.200346584352151 -0.0002724955539143279,-5.822635760676684,-6.204065235222801 0.0002726255539143279,-5.818956508061903,-6.196627933481501 -0.0002727555539143279,-5.815277255447121,-6.192909282610851 0.0002728855539143279,-5.815277255447121,-6.204065235222801 -0.0002730155539143279,-5.811598002832339,-6.207783886093452 0.0002731455539143279,-5.811598002832339,-6.200346584352151 -0.0002732755539143279,-5.807918750217557,-6.196627933481501 0.0002734055539143279,-5.807918750217557,-6.200346584352151 -0.0002735355539143279,-5.807918750217557,-6.204065235222801 0.0002736655539143279,-5.800560244987993,-6.196627933481501 -0.0002737955539143279,-5.800560244987993,-6.200346584352151 0.0002739255539143279,-5.79320173975843,-6.196627933481501 -0.0002740555539143279,-5.796880992373212,-6.200346584352151 0.0002741855539143279,-5.79320173975843,-6.200346584352151 -0.0002743155539143279,-5.79320173975843,-6.200346584352151 0.0002744455539143279,-5.785843234528866,-6.204065235222801 -0.0002745755539143279,-5.789522487143648,-6.200346584352151 0.0002747055539143279,-5.789522487143648,-6.185471980869552 -0.0002748355539143279,-5.785843234528866,-6.185471980869552 0.0002749655539143279,-5.789522487143648,-6.189190631740201 -0.0002750955539143279,-5.782163981914084,-6.196627933481501 0.0002752255539143279,-5.782163981914084,-6.196627933481501 -0.0002753555539143279,-5.785843234528866,-6.192909282610851 0.0002754855539143279,-5.785843234528866,-6.196627933481501 -0.0002756155539143279,-5.782163981914084,-6.196627933481501 0.0002757455539143279,-5.782163981914084,-6.189190631740201 -0.0002758755539143279,-5.774805476684521,-6.192909282610851 0.0002760055539143279,-5.782163981914084,-6.196627933481501 -0.0002761355539143279,-5.782163981914084,-6.192909282610851 0.0002762655539143279,-5.778484729299302,-6.192909282610851 -0.0002763955539143279,-5.778484729299302,-6.196627933481501 0.0002765255539143279,-5.778484729299302,-6.192909282610851 -0.0002766555539143279,-5.767446971454957,-6.189190631740201 0.0002767855539143279,-5.767446971454957,-6.192909282610851 -0.0002769155539143279,-5.763767718840175,-6.189190631740201 0.0002770455539143279,-5.771126224069739,-6.192909282610851 -0.0002771755539143279,-5.767446971454957,-6.181753329998901 0.0002773055539143279,-5.760088466225393,-6.196627933481501 -0.0002774355539143279,-5.763767718840175,-6.192909282610851 0.0002775655539143279,-5.767446971454957,-6.196627933481501 -0.0002776955539143279,-5.767446971454957,-6.192909282610851 0.0002778255539143279,-5.760088466225393,-6.192909282610851 -0.0002779555539143279,-5.760088466225393,-6.192909282610851 0.0002780855539143279,-5.756409213610612,-6.185471980869552 -0.0002782155539143279,-5.756409213610612,-6.189190631740201 0.0002783455539143279,-5.760088466225393,-6.185471980869552 -0.0002784755539143279,-5.756409213610612,-6.185471980869552 0.0002786055539143279,-5.75272996099583,-6.192909282610851 -0.0002787355539143279,-5.75272996099583,-6.181753329998901 0.0002788655539143279,-5.749050708381048,-6.192909282610851 -0.0002789955539143279,-5.745371455766266,-6.170597377386951 0.0002791255539143279,-5.749050708381048,-6.16316007564565 -0.0002792555539143279,-5.75272996099583,-6.178034679128251 0.0002793855539143279,-5.741692203151485,-6.189190631740201 -0.0002795155539143279,-5.738012950536702,-6.189190631740201 0.0002796455539143279,-5.741692203151485,-6.192909282610851 -0.0002797755539143279,-5.741692203151485,-6.196627933481501 0.0002799055539143279,-5.738012950536702,-6.200346584352151 -0.0002800355539143279,-5.738012950536702,-6.200346584352151 0.0002801655539143279,-5.738012950536702,-6.200346584352151 -0.0002802955539143279,-5.734333697921921,-6.200346584352151 0.0002804255539143279,-5.734333697921921,-6.204065235222801 -0.0002805555539143279,-5.738012950536702,-6.200346584352151 0.0002806855539143279,-5.726975192692357,-6.200346584352151 -0.0002808155539143279,-5.726975192692357,-6.204065235222801 0.0002809455539143279,-5.723295940077575,-6.207783886093452 -0.0002810755539143279,-5.719616687462793,-6.211502536964102 0.0002812055539143279,-5.71225818223323,-6.200346584352151 -0.0002813355539143279,-5.719616687462793,-6.200346584352151 0.0002814655539143279,-5.719616687462793,-6.211502536964102 -0.0002815955539143279,-5.723295940077575,-6.200346584352151 0.0002817255539143279,-5.71225818223323,-6.200346584352151 -0.0002818555539143279,-5.715937434848011,-6.204065235222801 0.0002819855539143279,-5.708578929618447,-6.200346584352151 -0.0002821155539143279,-5.71225818223323,-6.207783886093452 0.0002822455539143279,-5.704899677003666,-6.200346584352151 -0.0002823755539143279,-5.708578929618447,-6.207783886093452 0.0002825055539143279,-5.71225818223323,-6.207783886093452 -0.0002826355539143279,-5.708578929618447,-6.207783886093452 0.0002827655539143279,-5.704899677003666,-6.207783886093452 -0.0002828955539143279,-5.708578929618447,-6.204065235222801 0.0002830255539143279,-5.708578929618447,-6.215221187834752 -0.0002831555539143279,-5.704899677003666,-6.192909282610851 0.0002832855539143279,-5.701220424388884,-6.204065235222801 -0.0002834155539143279,-5.701220424388884,-6.204065235222801 0.0002835455539143279,-5.701220424388884,-6.204065235222801 -0.0002836755539143279,-5.690182666544539,-6.207783886093452 0.0002838055539143279,-5.69386191915932,-6.204065235222801 -0.0002839355539143279,-5.686503413929756,-6.204065235222801 0.0002840655539143279,-5.690182666544539,-6.207783886093452 -0.0002841955539143279,-5.686503413929756,-6.200346584352151 0.0002843255539143279,-5.686503413929756,-6.200346584352151 -0.0002844555539143279,-5.679144908700193,-6.185471980869552 0.0002845855539143279,-5.675465656085411,-6.189190631740201 -0.0002847155539143279,-5.682824161314975,-6.189190631740201 0.0002848455539143279,-5.679144908700193,-6.185471980869552 -0.0002849755539143279,-5.679144908700193,-6.185471980869552 0.0002851055539143279,-5.679144908700193,-6.192909282610851 -0.0002852355539143279,-5.679144908700193,-6.192909282610851 0.0002853655539143279,-5.679144908700193,-6.189190631740201 -0.0002854955539143279,-5.682824161314975,-6.196627933481501 0.0002856255539143279,-5.679144908700193,-6.192909282610851 -0.0002857555539143279,-5.675465656085411,-6.192909282610851 0.0002858855539143279,-5.675465656085411,-6.196627933481501 -0.0002860155539143279,-5.679144908700193,-6.196627933481501 0.0002861455539143279,-5.671786403470629,-6.189190631740201 -0.0002862755539143279,-5.668107150855848,-6.189190631740201 0.0002864055539143279,-5.664427898241065,-6.185471980869552 -0.0002865355539143279,-5.664427898241065,-6.185471980869552 0.0002866655539143279,-5.668107150855848,-6.192909282610851 -0.0002867955539143279,-5.657069393011501,-6.189190631740201 0.0002869255539143279,-5.657069393011501,-6.189190631740201 -0.0002870555539143279,-5.65339014039672,-6.189190631740201 0.0002871855539143279,-5.657069393011501,-6.189190631740201 -0.0002873155539143279,-5.65339014039672,-6.189190631740201 0.0002874455539143279,-5.657069393011501,-6.185471980869552 -0.0002875755539143279,-5.660748645626284,-6.189190631740201 0.0002877055539143279,-5.660748645626284,-6.192909282610851 -0.0002878355539143279,-5.65339014039672,-6.185471980869552 0.0002879655539143279,-5.65339014039672,-6.185471980869552 -0.0002880955539143279,-5.649710887781938,-6.196627933481501 0.0002882255539143279,-5.649710887781938,-6.189190631740201 -0.0002883555539143279,-5.649710887781938,-6.189190631740201 0.0002884855539143279,-5.649710887781938,-6.189190631740201 -0.0002886155539143279,-5.646031635167156,-6.178034679128251 0.0002887455539143279,-5.649710887781938,-6.181753329998901 -0.0002888755539143279,-5.642352382552374,-6.159441424775 0.0002890055539143279,-5.627635372093247,-6.174316028257601 -0.0002891355539143279,-5.642352382552374,-6.170597377386951 0.0002892655539143279,-5.634993877322811,-6.185471980869552 -0.0002893955539143279,-5.623956119478465,-6.189190631740201 0.0002895255539143279,-5.631314624708029,-6.189190631740201 -0.0002896555539143279,-5.623956119478465,-6.196627933481501 0.0002897855539143279,-5.620276866863684,-6.196627933481501 -0.0002899155539143279,-5.623956119478465,-6.200346584352151 0.0002900455539143279,-5.620276866863684,-6.196627933481501 -0.0002901755539143279,-5.616597614248902,-6.204065235222801 0.0002903055539143279,-5.616597614248902,-6.207783886093452 -0.0002904355539143279,-5.605559856404557,-6.189190631740201 0.0002905655539143279,-5.616597614248902,-6.196627933481501 -0.0002906955539143279,-5.61291836163412,-6.207783886093452 0.0002908255539143279,-5.609239109019338,-6.211502536964102 -0.0002909555539143279,-5.609239109019338,-6.204065235222801 0.0002910855539143279,-5.616597614248902,-6.204065235222801 -0.0002912155539143279,-5.616597614248902,-6.196627933481501 0.0002913455539143279,-5.616597614248902,-6.204065235222801 -0.0002914755539143279,-5.61291836163412,-6.200346584352151 0.0002916055539143279,-5.61291836163412,-6.211502536964102 -0.0002917355539143279,-5.609239109019338,-6.204065235222801 0.0002918655539143279,-5.609239109019338,-6.204065235222801 -0.0002919955539143279,-5.605559856404557,-6.204065235222801 0.0002921255539143279,-5.609239109019338,-6.207783886093452 -0.0002922555539143279,-5.605559856404557,-6.200346584352151 0.0002923855539143279,-5.605559856404557,-6.207783886093452 -0.0002925155539143279,-5.605559856404557,-6.211502536964102 0.0002926455539143279,-5.598201351174993,-6.204065235222801 -0.0002927755539143279,-5.598201351174993,-6.211502536964102 0.0002929055539143279,-5.590842845945429,-6.196627933481501 -0.0002930355539143279,-5.590842845945429,-6.204065235222801 0.0002931655539143279,-5.587163593330647,-6.207783886093452 -0.0002932955539143279,-5.587163593330647,-6.204065235222801 0.0002934255539143279,-5.583484340715865,-6.200346584352151 -0.0002935555539143279,-5.583484340715865,-6.196627933481501 0.0002936855539143279,-5.587163593330647,-6.200346584352151 -0.0002938155539143279,-5.587163593330647,-6.204065235222801 0.0002939455539143279,-5.579805088101083,-6.204065235222801 -0.0002940755539143279,-5.576125835486302,-6.200346584352151 0.0002942055539143279,-5.576125835486302,-6.185471980869552 -0.0002943355539143279,-5.576125835486302,-6.185471980869552 0.0002944655539143279,-5.572446582871519,-6.185471980869552 -0.0002945955539143279,-5.572446582871519,-6.189190631740201 0.0002947255539143279,-5.576125835486302,-6.196627933481501 -0.0002948555539143279,-5.572446582871519,-6.185471980869552 0.0002949855539143279,-5.568767330256738,-6.189190631740201 -0.0002951155539143279,-5.568767330256738,-6.200346584352151 0.0002952455539143279,-5.565088077641956,-6.192909282610851 -0.0002953755539143279,-5.568767330256738,-6.192909282610851 0.0002955055539143279,-5.565088077641956,-6.189190631740201 -0.0002956355539143279,-5.557729572412392,-6.189190631740201 0.0002957655539143279,-5.557729572412392,-6.189190631740201 -0.0002958955539143279,-5.557729572412392,-6.189190631740201 0.0002960255539143279,-5.554050319797611,-6.192909282610851 -0.0002961555539143279,-5.550371067182828,-6.189190631740201 0.0002962855539143279,-5.557729572412392,-6.192909282610851 -0.0002964155539143279,-5.535654056723701,-6.189190631740201 0.0002965455539143279,-5.543012561953264,-6.185471980869552 -0.0002966755539143279,-5.546691814568047,-6.196627933481501 0.0002968055539143279,-5.543012561953264,-6.181753329998901 -0.0002969355539143279,-5.543012561953264,-6.189190631740201 0.0002970655539143279,-5.539333309338483,-6.192909282610851 -0.0002971955539143279,-5.546691814568047,-6.189190631740201 0.0002973255539143279,-5.546691814568047,-6.192909282610851 -0.0002974555539143279,-5.543012561953264,-6.189190631740201 0.0002975855539143279,-5.543012561953264,-6.189190631740201 -0.0002977155539143279,-5.543012561953264,-6.192909282610851 0.0002978455539143279,-5.531974804108919,-6.196627933481501 -0.0002979755539143279,-5.531974804108919,-6.185471980869552 0.0002981055539143279,-5.535654056723701,-6.185471980869552 -0.0002982355539143279,-5.535654056723701,-6.185471980869552 0.0002983655539143279,-5.528295551494137,-6.185471980869552 -0.0002984955539143279,-5.528295551494137,-6.178034679128251 0.0002986255539143279,-5.520937046264573,-6.14828547216305 -0.0002987555539143279,-5.531974804108919,-6.166878726516301 0.0002988855539143279,-5.528295551494137,-6.170597377386951 -0.0002990155539143279,-5.642352382552374,-6.185471980869552 0.0002991455539143279,-5.719616687462793,-6.189190631740201 -0.0002992755539143279,-5.774805476684521,-6.192909282610851 0.0002994055539143279,-5.804239497602776,-6.196627933481501 -0.0002995355539143279,-5.818956508061903,-6.200346584352151 0.0002996655539143279,-5.826315013291467,-6.196627933481501 -0.0002997955539143279,-5.818956508061903,-6.192909282610851 0.0002999255539143279,-5.815277255447121,-6.196627933481501 -0.0003000555539143279,-5.807918750217557,-6.166878726516301 0.0003001855539143279,-5.804239497602776,-6.044163247784848 -0.0003003155539143279,-5.804239497602776,-5.441741806739532 0.0003004455539143279,-5.800560244987993,-4.590170757360661 -0.0003005755539143279,-5.804239497602776,-3.615884229250335 0.0003007055539143279,-5.800560244987993,-2.552350080244409 -0.0003008355539143279,-5.800560244987993,-1.41072426295483 0.0003009655539143279,-5.796880992373212,-0.1612575704163983 -0.0003010955539143279,-5.79320173975843,1.151426186923085 0.0003012255539143279,-5.785843234528866,2.505015103839719 -0.0003013555539143279,-5.79320173975843,3.654078222870599 0.0003014855539143279,-5.79320173975843,4.483337367025569 -0.0003016155539143279,-5.796880992373212,5.056009601105684 0.0003017455539143279,-5.789522487143648,5.446467942523944 -0.0003018755539143279,-5.785843234528866,5.7179294560814 0.0003020055539143279,-5.79320173975843,5.896424697872605 -0.0003021355539143279,-5.785843234528866,6.007984223992108 0.0003022655539143279,-5.782163981914084,6.071201288793159 -0.0003023955539143279,-5.778484729299302,6.086075892275759 0.0003025255539143279,-5.785843234528866,6.078638590534459 -0.0003026555539143279,-5.778484729299302,6.037733430957308 0.0003027855539143279,-5.774805476684521,5.981953667897557 -0.0003029155539143279,-5.771126224069739,5.933611206579106 0.0003030455539143279,-5.774805476684521,5.885268745260654 -0.0003031755539143279,-5.774805476684521,5.870394141778054 0.0003033055539143279,-5.767446971454957,5.851800887424804 -0.0003034355539143279,-5.763767718840175,5.840644934812853 0.0003035655539143279,-5.767446971454957,5.829488982200903 -0.0003036955539143279,-5.763767718840175,5.829488982200903 0.0003038255539143279,-5.760088466225393,5.818333029588953 -0.0003039555539143279,-5.756409213610612,5.807177076977003 0.0003040855539143279,-5.760088466225393,5.796021124365052 -0.0003042155539143279,-5.760088466225393,5.784865171753101 0.0003043455539143279,-5.763767718840175,5.788583822623752 -0.0003044755539143279,-5.756409213610612,5.792302473494402 0.0003046055539143279,-5.756409213610612,5.784865171753101 -0.0003047355539143279,-5.749050708381048,5.781146520882452 0.0003048655539143279,-5.75272996099583,5.784865171753101 -0.0003049955539143279,-5.756409213610612,5.777427870011802 0.0003051255539143279,-5.756409213610612,5.773709219141152 -0.0003052555539143279,-5.75272996099583,5.762553266529201 0.0003053855539143279,-5.745371455766266,5.769990568270502 -0.0003055155539143279,-5.75272996099583,5.766271917399852 0.0003056455539143279,-5.75272996099583,5.766271917399852 -0.0003057755539143279,-5.745371455766266,5.766271917399852 0.0003059055539143279,-5.745371455766266,5.766271917399852 -0.0003060355539143279,-5.741692203151485,5.769990568270502 0.0003061655539143279,-5.741692203151485,5.766271917399852 -0.0003062955539143279,-5.730654445307139,5.758834615658551 0.0003064255539143279,-5.734333697921921,5.769990568270502 -0.0003065555539143279,-5.734333697921921,5.762553266529201 0.0003066855539143279,-5.726975192692357,5.766271917399852 -0.0003068155539143279,-5.715937434848011,5.755115964787901 0.0003069455539143279,-5.738012950536702,5.777427870011802 -0.0003070755539143279,-5.730654445307139,5.766271917399852 0.0003072055539143279,-5.726975192692357,5.769990568270502 -0.0003073355539143279,-5.723295940077575,5.762553266529201 0.0003074655539143279,-5.726975192692357,5.762553266529201 -0.0003075955539143279,-5.719616687462793,5.766271917399852 0.0003077255539143279,-5.723295940077575,5.766271917399852 -0.0003078555539143279,-5.723295940077575,5.758834615658551 0.0003079855539143279,-5.719616687462793,5.762553266529201 -0.0003081155539143279,-5.719616687462793,5.755115964787901 0.0003082455539143279,-5.71225818223323,5.769990568270502 -0.0003083755539143279,-5.71225818223323,5.747678663046601 0.0003085055539143279,-5.71225818223323,5.7402413613053 -0.0003086355539143279,-5.704899677003666,5.766271917399852 0.0003087655539143279,-5.71225818223323,5.777427870011802 -0.0003088955539143279,-5.708578929618447,5.781146520882452 0.0003090255539143279,-5.71225818223323,5.788583822623752 -0.0003091555539143279,-5.71225818223323,5.792302473494402 0.0003092855539143279,-5.708578929618447,5.792302473494402 -0.0003094155539143279,-5.704899677003666,5.792302473494402 0.0003095455539143279,-5.704899677003666,5.792302473494402 -0.0003096755539143279,-5.708578929618447,5.796021124365052 0.0003098055539143279,-5.704899677003666,5.792302473494402 -0.0003099355539143279,-5.701220424388884,5.796021124365052 0.0003100655539143279,-5.697541171774102,5.792302473494402 -0.0003101955539143279,-5.697541171774102,5.796021124365052 0.0003103255539143279,-5.69386191915932,5.788583822623752 -0.0003104555539143279,-5.69386191915932,5.792302473494402 0.0003105855539143279,-5.690182666544539,5.796021124365052 -0.0003107155539143279,-5.69386191915932,5.796021124365052 0.0003108455539143279,-5.69386191915932,5.792302473494402 -0.0003109755539143279,-5.69386191915932,5.788583822623752 0.0003111055539143279,-5.679144908700193,5.792302473494402 -0.0003112355539143279,-5.686503413929756,5.792302473494402 0.0003113655539143279,-5.690182666544539,5.796021124365052 -0.0003114955539143279,-5.686503413929756,5.799739775235702 0.0003116255539143279,-5.682824161314975,5.803458426106352 -0.0003117555539143279,-5.679144908700193,5.799739775235702 0.0003118855539143279,-5.675465656085411,5.803458426106352 -0.0003120155539143279,-5.675465656085411,5.799739775235702 0.0003121455539143279,-5.671786403470629,5.803458426106352 -0.0003122755539143279,-5.671786403470629,5.799739775235702 0.0003124055539143279,-5.675465656085411,5.803458426106352 -0.0003125355539143279,-5.671786403470629,5.799739775235702 0.0003126655539143279,-5.675465656085411,5.803458426106352 -0.0003127955539143279,-5.657069393011501,5.792302473494402 0.0003129255539143279,-5.657069393011501,5.814614378718303 -0.0003130555539143279,-5.664427898241065,5.799739775235702 0.0003131855539143279,-5.660748645626284,5.803458426106352 -0.0003133155539143279,-5.664427898241065,5.792302473494402 0.0003134455539143279,-5.660748645626284,5.799739775235702 -0.0003135755539143279,-5.660748645626284,5.792302473494402 0.0003137055539143279,-5.657069393011501,5.792302473494402 -0.0003138355539143279,-5.65339014039672,5.784865171753101 0.0003139655539143279,-5.660748645626284,5.777427870011802 -0.0003140955539143279,-5.65339014039672,5.781146520882452 0.0003142255539143279,-5.649710887781938,5.769990568270502 -0.0003143555539143279,-5.649710887781938,5.769990568270502 0.0003144855539143279,-5.657069393011501,5.758834615658551 -0.0003146155539143279,-5.646031635167156,5.769990568270502 0.0003147455539143279,-5.649710887781938,5.762553266529201 -0.0003148755539143279,-5.65339014039672,5.751397313917251 0.0003150055539143279,-5.649710887781938,5.751397313917251 -0.0003151355539143279,-5.646031635167156,5.755115964787901 0.0003152655539143279,-5.649710887781938,5.762553266529201 -0.0003153955539143279,-5.649710887781938,5.762553266529201 0.0003155255539143279,-5.646031635167156,5.762553266529201 -0.0003156555539143279,-5.646031635167156,5.766271917399852 0.0003157855539143279,-5.642352382552374,5.758834615658551 -0.0003159155539143279,-5.638673129937593,5.758834615658551 0.0003160455539143279,-5.634993877322811,5.758834615658551 -0.0003161755539143279,-5.638673129937593,5.755115964787901 0.0003163055539143279,-5.638673129937593,5.751397313917251 -0.0003164355539143279,-5.634993877322811,5.747678663046601 0.0003165655539143279,-5.627635372093247,5.747678663046601 -0.0003166955539143279,-5.627635372093247,5.74396001217595 0.0003168255539143279,-5.627635372093247,5.747678663046601 -0.0003169555539143279,-5.623956119478465,5.747678663046601 0.0003170855539143279,-5.627635372093247,5.751397313917251 -0.0003172155539143279,-5.623956119478465,5.747678663046601 0.0003173455539143279,-5.616597614248902,5.74396001217595 -0.0003174755539143279,-5.61291836163412,5.74396001217595 0.0003176055539143279,-5.61291836163412,5.747678663046601 -0.0003177355539143279,-5.620276866863684,5.736522710434651 0.0003178655539143279,-5.601880603789774,5.751397313917251 -0.0003179955539143279,-5.609239109019338,5.74396001217595 0.0003181255539143279,-5.616597614248902,5.736522710434651 -0.0003182555539143279,-5.605559856404557,5.72164810695205 0.0003183855539143279,-5.605559856404557,5.725366757822701 -0.0003185155539143279,-5.605559856404557,5.74396001217595 0.0003186455539143279,-5.601880603789774,5.769990568270502 -0.0003187755539143279,-5.61291836163412,5.74396001217595 0.0003189055539143279,-5.609239109019338,5.762553266529201 -0.0003190355539143279,-5.609239109019338,5.762553266529201 0.0003191655539143279,-5.605559856404557,5.769990568270502 -0.0003192955539143279,-5.601880603789774,5.769990568270502 0.0003194255539143279,-5.601880603789774,5.773709219141152 -0.0003195555539143279,-5.605559856404557,5.777427870011802 0.0003196855539143279,-5.605559856404557,5.773709219141152 -0.0003198155539143279,-5.598201351174993,5.773709219141152 0.0003199455539143279,-5.598201351174993,5.773709219141152 -0.0003200755539143279,-5.598201351174993,5.777427870011802 0.0003202055539143279,-5.59452209856021,5.769990568270502 -0.0003203355539143279,-5.59452209856021,5.773709219141152 0.0003204655539143279,-5.598201351174993,5.769990568270502 -0.0003205955539143279,-5.590842845945429,5.777427870011802 0.0003207255539143279,-5.583484340715865,5.777427870011802 -0.0003208555539143279,-5.583484340715865,5.781146520882452 0.0003209855539143279,-5.587163593330647,5.784865171753101 -0.0003211155539143279,-5.587163593330647,5.781146520882452 0.0003212455539143279,-5.587163593330647,5.781146520882452 -0.0003213755539143279,-5.576125835486302,5.773709219141152 0.0003215055539143279,-5.587163593330647,5.781146520882452 -0.0003216355539143279,-5.576125835486302,5.773709219141152 0.0003217655539143279,-5.576125835486302,5.773709219141152 -0.0003218955539143279,-5.572446582871519,5.773709219141152 0.0003220255539143279,-5.576125835486302,5.773709219141152 -0.0003221555539143279,-5.579805088101083,5.777427870011802 0.0003222855539143279,-5.576125835486302,5.773709219141152 -0.0003224155539143279,-5.565088077641956,5.781146520882452 0.0003225455539143279,-5.565088077641956,5.773709219141152 -0.0003226755539143279,-5.568767330256738,5.777427870011802 0.0003228055539143279,-5.565088077641956,5.781146520882452 -0.0003229355539143279,-5.565088077641956,5.773709219141152 0.0003230655539143279,-5.561408825027174,5.773709219141152 -0.0003231955539143279,-5.561408825027174,5.769990568270502 0.0003233255539143279,-5.557729572412392,5.769990568270502 -0.0003234555539143279,-5.554050319797611,5.773709219141152 0.0003235855539143279,-5.561408825027174,5.766271917399852 -0.0003237155539143279,-5.557729572412392,5.747678663046601 0.0003238455539143279,-5.550371067182828,5.747678663046601 -0.0003239755539143279,-5.550371067182828,5.751397313917251 0.0003241055539143279,-5.550371067182828,5.736522710434651 -0.0003242355539143279,-5.550371067182828,5.7402413613053 0.0003243655539143279,-5.550371067182828,5.725366757822701 -0.0003244955539143279,-5.550371067182828,5.732804059564001 0.0003246255539143279,-5.539333309338483,5.72164810695205 -0.0003247555539143279,-5.557729572412392,5.747678663046601 0.0003248855539143279,-5.550371067182828,5.732804059564001 -0.0003250155539143279,-5.543012561953264,5.732804059564001 0.0003251455539143279,-5.543012561953264,5.729085408693351 -0.0003252755539143279,-5.539333309338483,5.729085408693351 0.0003254055539143279,-5.543012561953264,5.729085408693351 -0.0003255355539143279,-5.539333309338483,5.729085408693351 0.0003256655539143279,-5.535654056723701,5.732804059564001 -0.0003257955539143279,-5.539333309338483,5.70677350346945 0.0003259255539143279,-5.543012561953264,5.416718735558742 -0.0003260555539143279,-5.535654056723701,4.754798880583026 0.0003261855539143279,-5.543012561953264,3.802824257696602 -0.0003263155539143279,-5.535654056723701,2.731852806949375 0.0003264455539143279,-5.535654056723701,1.582789687918496 -0.0003265755539143279,-5.543012561953264,0.3965400601811158 0.0003267055539143279,-5.543012561953264,-0.7934282184269142 -0.0003268355539143279,-5.543012561953264,-2.039176260094696 0.0003269655539143279,-5.543012561953264,-3.273768349150527 -0.0003270955539143279,-5.531974804108919,-4.158807256365249 0.0003272255539143279,-5.535654056723701,-4.768665999151866 -0.0003273555539143279,-5.524616298879356,-5.188873547535326 0.0003274855539143279,-5.531974804108919,-5.482646966316683 -0.0003276155539143279,-5.531974804108919,-5.690891415073088 0.0003277455539143279,-5.524616298879356,-5.835918799028442 -0.0003278755539143279,-5.520937046264573,-5.943759674277295 0.0003280055539143279,-5.528295551494137,-6.014414040819647 -0.0003281355539143279,-5.517257793649792,-6.059037851267448 0.0003282655539143279,-5.517257793649792,-6.114817614327199 -0.0003283955539143279,-5.535654056723701,-6.1520041230337 0.0003285255539143279,-5.657069393011501,-6.185471980869552 -0.0003286555539143279,-5.734333697921921,-6.218939838705402 0.0003287855539143279,-5.778484729299302,-6.230095791317352 -0.0003289155539143279,-5.800560244987993,-6.237533093058652 0.0003290455539143279,-5.818956508061903,-6.248689045670603 -0.0003291755539143279,-5.829994265906248,-6.252407696541253 0.0003293055539143279,-5.807918750217557,-6.248689045670603 -0.0003294355539143279,-5.800560244987993,-6.259844998282553 0.0003295655539143279,-5.79320173975843,-6.259844998282553 -0.0003296955539143279,-5.796880992373212,-6.267282300023854 0.0003298255539143279,-5.800560244987993,-6.263563649153203 -0.0003299555539143279,-5.796880992373212,-6.278438252635803 0.0003300855539143279,-5.796880992373212,-6.271000950894503 -0.0003302155539143279,-5.800560244987993,-6.274719601765153 0.0003303455539143279,-5.79320173975843,-6.271000950894503 -0.0003304755539143279,-5.796880992373212,-6.267282300023854 0.0003306055539143279,-5.789522487143648,-6.289594205247754 -0.0003307355539143279,-5.789522487143648,-6.271000950894503 0.0003308655539143279,-5.789522487143648,-6.274719601765153 -0.0003309955539143279,-5.785843234528866,-6.274719601765153 0.0003311255539143279,-5.782163981914084,-6.274719601765153 -0.0003312555539143279,-5.782163981914084,-6.271000950894503 0.0003313855539143279,-5.778484729299302,-6.274719601765153 -0.0003315155539143279,-5.785843234528866,-6.271000950894503 0.0003316455539143279,-5.782163981914084,-6.271000950894503 -0.0003317755539143279,-5.778484729299302,-6.271000950894503 0.0003319055539143279,-5.771126224069739,-6.274719601765153 -0.0003320355539143279,-5.767446971454957,-6.271000950894503 0.0003321655539143279,-5.771126224069739,-6.271000950894503 -0.0003322955539143279,-5.767446971454957,-6.278438252635803 0.0003324255539143279,-5.763767718840175,-6.259844998282553 -0.0003325555539143279,-5.774805476684521,-6.271000950894503 0.0003326855539143279,-5.771126224069739,-6.271000950894503 -0.0003328155539143279,-5.760088466225393,-6.282156903506453 0.0003329455539143279,-5.767446971454957,-6.282156903506453 -0.0003330755539143279,-5.763767718840175,-6.285875554377103 0.0003332055539143279,-5.760088466225393,-6.282156903506453 -0.0003333355539143279,-5.767446971454957,-6.278438252635803 0.0003334655539143279,-5.763767718840175,-6.267282300023854 -0.0003335955539143279,-5.760088466225393,-6.267282300023854 0.0003337255539143279,-5.756409213610612,-6.271000950894503 -0.0003338555539143279,-5.756409213610612,-6.274719601765153 0.0003339855539143279,-5.756409213610612,-6.274719601765153 -0.0003341155539143279,-5.756409213610612,-6.271000950894503 0.0003342455539143279,-5.756409213610612,-6.278438252635803 -0.0003343755539143279,-5.75272996099583,-6.285875554377103 0.0003345055539143279,-5.745371455766266,-6.285875554377103 -0.0003346355539143279,-5.741692203151485,-6.278438252635803 0.0003347655539143279,-5.741692203151485,-6.285875554377103 -0.0003348955539143279,-5.734333697921921,-6.282156903506453 0.0003350255539143279,-5.738012950536702,-6.282156903506453 -0.0003351555539143279,-5.734333697921921,-6.285875554377103 0.0003352855539143279,-5.734333697921921,-6.285875554377103 -0.0003354155539143279,-5.734333697921921,-6.289594205247754 0.0003355455539143279,-5.738012950536702,-6.289594205247754 -0.0003356755539143279,-5.734333697921921,-6.274719601765153 0.0003358055539143279,-5.738012950536702,-6.278438252635803 -0.0003359355539143279,-5.734333697921921,-6.282156903506453 0.0003360655539143279,-5.738012950536702,-6.282156903506453 -0.0003361955539143279,-5.734333697921921,-6.278438252635803 0.0003363255539143279,-5.734333697921921,-6.278438252635803 -0.0003364555539143279,-5.726975192692357,-6.252407696541253 0.0003365855539143279,-5.730654445307139,-6.304468808730354 -0.0003367155539143279,-5.723295940077575,-6.285875554377103 0.0003368455539143279,-5.726975192692357,-6.282156903506453 -0.0003369755539143279,-5.719616687462793,-6.285875554377103 0.0003371055539143279,-5.719616687462793,-6.278438252635803 -0.0003372355539143279,-5.719616687462793,-6.282156903506453 0.0003373655539143279,-5.719616687462793,-6.278438252635803 -0.0003374955539143279,-5.715937434848011,-6.278438252635803 0.0003376255539143279,-5.708578929618447,-6.278438252635803 -0.0003377555539143279,-5.715937434848011,-6.271000950894503 0.0003378855539143279,-5.71225818223323,-6.248689045670603 -0.0003380155539143279,-5.71225818223323,-6.267282300023854 0.0003381455539143279,-5.708578929618447,-6.278438252635803 -0.0003382755539143279,-5.708578929618447,-6.285875554377103 0.0003384055539143279,-5.708578929618447,-6.282156903506453 -0.0003385355539143279,-5.71225818223323,-6.293312856118404 0.0003386655539143279,-5.701220424388884,-6.289594205247754 -0.0003387955539143279,-5.701220424388884,-6.293312856118404 0.0003389255539143279,-5.701220424388884,-6.289594205247754 -0.0003390555539143279,-5.704899677003666,-6.289594205247754 0.0003391855539143279,-5.701220424388884,-6.293312856118404 -0.0003393155539143279,-5.697541171774102,-6.300750157859704 0.0003394455539143279,-5.701220424388884,-6.300750157859704 -0.0003395755539143279,-5.697541171774102,-6.300750157859704 0.0003397055539143279,-5.701220424388884,-6.304468808730354 -0.0003398355539143279,-5.697541171774102,-6.300750157859704 0.0003399655539143279,-5.697541171774102,-6.300750157859704 -0.0003400955539143279,-5.690182666544539,-6.297031506989054 0.0003402255539143279,-5.690182666544539,-6.300750157859704 -0.0003403555539143279,-5.686503413929756,-6.297031506989054 0.0003404855539143279,-5.686503413929756,-6.297031506989054 -0.0003406155539143279,-5.686503413929756,-6.297031506989054 0.0003407455539143279,-5.686503413929756,-6.297031506989054 -0.0003408755539143279,-5.686503413929756,-6.304468808730354 0.0003410055539143279,-5.686503413929756,-6.300750157859704 -0.0003411355539143279,-5.686503413929756,-6.297031506989054 0.0003412655539143279,-5.682824161314975,-6.297031506989054 -0.0003413955539143279,-5.675465656085411,-6.300750157859704 0.0003415255539143279,-5.679144908700193,-6.300750157859704 -0.0003416555539143279,-5.682824161314975,-6.297031506989054 0.0003417855539143279,-5.679144908700193,-6.300750157859704 -0.0003419155539143279,-5.671786403470629,-6.304468808730354 0.0003420455539143279,-5.671786403470629,-6.300750157859704 -0.0003421755539143279,-5.682824161314975,-6.315624761342304 0.0003423055539143279,-5.675465656085411,-6.304468808730354 -0.0003424355539143279,-5.664427898241065,-6.308187459601005 0.0003425655539143279,-5.675465656085411,-6.297031506989054 -0.0003426955539143279,-5.668107150855848,-6.311906110471655 0.0003428255539143279,-5.660748645626284,-6.304468808730354 -0.0003429555539143279,-5.668107150855848,-6.308187459601005 0.0003430855539143279,-5.660748645626284,-6.304468808730354 -0.0003432155539143279,-5.660748645626284,-6.293312856118404 0.0003433455539143279,-5.660748645626284,-6.293312856118404 -0.0003434755539143279,-5.65339014039672,-6.297031506989054 0.0003436055539143279,-5.65339014039672,-6.293312856118404 -0.0003437355539143279,-5.65339014039672,-6.300750157859704 0.0003438655539143279,-5.646031635167156,-6.282156903506453 -0.0003439955539143279,-5.65339014039672,-6.300750157859704 0.0003441255539143279,-5.65339014039672,-6.304468808730354 -0.0003442555539143279,-5.65339014039672,-6.297031506989054 0.0003443855539143279,-5.657069393011501,-6.297031506989054 -0.0003445155539143279,-5.649710887781938,-6.297031506989054 0.0003446455539143279,-5.642352382552374,-6.300750157859704 -0.0003447755539143279,-5.642352382552374,-6.293312856118404 0.0003449055539143279,-5.642352382552374,-6.304468808730354 -0.0003450355539143279,-5.638673129937593,-6.297031506989054 0.0003451655539143279,-5.642352382552374,-6.297031506989054 -0.0003452955539143279,-5.638673129937593,-6.297031506989054 0.0003454255539143279,-5.642352382552374,-6.297031506989054 -0.0003455555539143279,-5.638673129937593,-6.293312856118404 0.0003456855539143279,-5.631314624708029,-6.297031506989054 -0.0003458155539143279,-5.631314624708029,-6.293312856118404 0.0003459455539143279,-5.634993877322811,-6.289594205247754 -0.0003460755539143279,-5.627635372093247,-6.289594205247754 0.0003462055539143279,-5.634993877322811,-6.289594205247754 -0.0003463355539143279,-5.634993877322811,-6.293312856118404 0.0003464655539143279,-5.631314624708029,-6.293312856118404 -0.0003465955539143279,-5.631314624708029,-6.293312856118404 0.0003467255539143279,-5.634993877322811,-6.289594205247754 -0.0003468555539143279,-5.623956119478465,-6.293312856118404 0.0003469855539143279,-5.627635372093247,-6.293312856118404 -0.0003471155539143279,-5.620276866863684,-6.289594205247754 0.0003472455539143279,-5.623956119478465,-6.289594205247754 -0.0003473755539143279,-5.623956119478465,-6.297031506989054 0.0003475055539143279,-5.623956119478465,-6.285875554377103 -0.0003476355539143279,-5.627635372093247,-6.263563649153203 0.0003477655539143279,-5.627635372093247,-6.282156903506453 -0.0003478955539143279,-5.623956119478465,-6.285875554377103 0.0003480255539143279,-5.623956119478465,-6.285875554377103 -0.0003481555539143279,-5.616597614248902,-6.293312856118404 0.0003482855539143279,-5.616597614248902,-6.293312856118404 -0.0003484155539143279,-5.609239109019338,-6.300750157859704 0.0003485455539143279,-5.61291836163412,-6.293312856118404 -0.0003486755539143279,-5.620276866863684,-6.297031506989054 0.0003488055539143279,-5.609239109019338,-6.300750157859704 -0.0003489355539143279,-5.61291836163412,-6.304468808730354 0.0003490655539143279,-5.61291836163412,-6.300750157859704 -0.0003491955539143279,-5.609239109019338,-6.300750157859704 0.0003493255539143279,-5.605559856404557,-6.304468808730354 -0.0003494555539143279,-5.601880603789774,-6.300750157859704 0.0003495855539143279,-5.605559856404557,-6.300750157859704 -0.0003497155539143279,-5.598201351174993,-6.300750157859704 0.0003498455539143279,-5.601880603789774,-6.304468808730354 -0.0003499755539143279,-5.609239109019338,-6.300750157859704 0.0003501055539143279,-5.598201351174993,-6.311906110471655 -0.0003502355539143279,-5.598201351174993,-6.297031506989054 0.0003503655539143279,-5.601880603789774,-6.308187459601005 -0.0003504955539143279,-5.598201351174993,-6.304468808730354 0.0003506255539143279,-5.587163593330647,-6.300750157859704 -0.0003507555539143279,-5.590842845945429,-6.297031506989054 0.0003508855539143279,-5.587163593330647,-6.304468808730354 -0.0003510155539143279,-5.583484340715865,-6.297031506989054 0.0003511455539143279,-5.579805088101083,-6.297031506989054 -0.0003512755539143279,-5.579805088101083,-6.300750157859704 0.0003514055539143279,-5.579805088101083,-6.300750157859704 -0.0003515355539143279,-5.579805088101083,-6.300750157859704 0.0003516655539143279,-5.576125835486302,-6.304468808730354 -0.0003517955539143279,-5.576125835486302,-6.304468808730354 0.0003519255539143279,-5.576125835486302,-6.304468808730354 -0.0003520555539143279,-5.576125835486302,-6.293312856118404 0.0003521855539143279,-5.572446582871519,-6.278438252635803 -0.0003523155539143279,-5.561408825027174,-5.973508881242496 0.0003524455539143279,-5.561408825027174,-5.240934659724427 -0.0003525755539143279,-5.557729572412392,-4.326146545544504 0.0003527055539143279,-5.557729572412392,-3.307236206986378 -0.0003528355539143279,-5.557729572412392,-2.2102342001446 0.0003529655539143279,-5.554050319797611,-1.01654727066592 -0.0003530955539143279,-5.554050319797611,0.2775432323203128 0.0003532255539143279,-5.550371067182828,1.631132149236947 -0.0003533555539143279,-5.543012561953264,2.92150400135253 0.0003534855539143279,-5.546691814568047,3.940414339910656 -0.0003536155539143279,-5.557729572412392,4.628364750980922 0.0003537455539143279,-5.554050319797611,5.119226665906735 -0.0003538755539143279,-5.554050319797611,5.453905244265243 0.0003540055539143279,-5.557729572412392,5.677024296504249 -0.0003541355539143279,-5.554050319797611,5.825770331330253 0.0003542655539143279,-5.554050319797611,5.948485810061706 -0.0003543955539143279,-5.561408825027174,5.926173904837805 0.0003545255539143279,-5.546691814568047,5.959641762673656 -0.0003546555539143279,-5.550371067182828,5.941048508320406 0.0003547855539143279,-5.550371067182828,5.892706047001955 -0.0003549155539143279,-5.550371067182828,5.833207633071553 0.0003550455539143279,-5.546691814568047,5.781146520882452 -0.0003551755539143279,-5.546691814568047,5.751397313917251 0.0003553055539143279,-5.539333309338483,5.732804059564001 -0.0003554355539143279,-5.543012561953264,5.7179294560814 0.0003555655539143279,-5.543012561953264,5.70677350346945 -0.0003556955539143279,-5.539333309338483,5.699336201728149 0.0003558255539143279,-5.539333309338483,5.6956175508575 -0.0003559555539143279,-5.539333309338483,5.69189889998685 0.0003560855539143279,-5.531974804108919,5.68446159824555 -0.0003562155539143279,-5.528295551494137,5.68446159824555 0.0003563455539143279,-5.528295551494137,5.680742947374899 -0.0003564755539143279,-5.528295551494137,5.677024296504249 0.0003566055539143279,-5.528295551494137,5.677024296504249 -0.0003567355539143279,-5.524616298879356,5.680742947374899 0.0003568655539143279,-5.520937046264573,5.680742947374899 -0.0003569955539143279,-5.517257793649792,5.669586994762949 0.0003571255539143279,-5.517257793649792,5.677024296504249 -0.0003572555539143279,-5.517257793649792,5.669586994762949 0.0003573855539143279,-5.517257793649792,5.654712391280349 -0.0003575155539143279,-5.517257793649792,5.662149693021648 0.0003576455539143279,-5.509899288420228,5.68446159824555 -0.0003577755539143279,-5.509899288420228,5.6956175508575 0.0003579055539143279,-5.509899288420228,5.6956175508575 -0.0003580355539143279,-5.51357854103501,5.699336201728149 0.0003581655539143279,-5.51357854103501,5.699336201728149 -0.0003582955539143279,-5.509899288420228,5.70677350346945 0.0003584255539143279,-5.51357854103501,5.703054852598799 -0.0003585555539143279,-5.509899288420228,5.7104921543401 0.0003586855539143279,-5.506220035805446,5.7104921543401 -0.0003588155539143279,-5.502540783190665,5.70677350346945 0.0003589455539143279,-5.502540783190665,5.70677350346945 -0.0003590755539143279,-5.498861530575883,5.7104921543401 0.0003592055539143279,-5.495182277961101,5.7104921543401 -0.0003593355539143279,-5.49150302534632,5.703054852598799 0.0003594655539143279,-5.502540783190665,5.7104921543401 -0.0003595955539143279,-5.498861530575883,5.7104921543401 0.0003597255539143279,-5.498861530575883,5.7104921543401 -0.0003598555539143279,-5.49150302534632,5.71421080521075 0.0003599855539143279,-5.502540783190665,5.70677350346945 -0.0003601155539143279,-5.498861530575883,5.7104921543401 0.0003602455539143279,-5.495182277961101,5.71421080521075 -0.0003603755539143279,-5.498861530575883,5.72164810695205 0.0003605055539143279,-5.495182277961101,5.70677350346945 -0.0003606355539143279,-5.495182277961101,5.71421080521075 0.0003607655539143279,-5.495182277961101,5.71421080521075 -0.0003608955539143279,-5.487823772731537,5.71421080521075 0.0003610255539143279,-5.49150302534632,5.7179294560814 -0.0003611555539143279,-5.49150302534632,5.71421080521075 0.0003612855539143279,-5.535654056723701,5.7104921543401 -0.0003614155539143279,-5.65339014039672,5.70677350346945 0.0003615455539143279,-5.719616687462793,5.71421080521075 -0.0003616755539143279,-5.75272996099583,5.729085408693351 0.0003618055539143279,-5.789522487143648,5.70677350346945 -0.0003619355539143279,-5.796880992373212,5.72164810695205 0.0003620655539143279,-5.804239497602776,5.7179294560814 -0.0003621955539143279,-5.785843234528866,5.72164810695205 0.0003623255539143279,-5.782163981914084,5.725366757822701 -0.0003624555539143279,-5.789522487143648,5.725366757822701 0.0003625855539143279,-5.785843234528866,5.72164810695205 -0.0003627155539143279,-5.782163981914084,5.7179294560814 0.0003628455539143279,-5.778484729299302,5.703054852598799 -0.0003629755539143279,-5.778484729299302,5.69189889998685 0.0003631055539143279,-5.774805476684521,5.6881802491162 -0.0003632355539143279,-5.771126224069739,5.69189889998685 0.0003633655539143279,-5.774805476684521,5.6881802491162 -0.0003634955539143279,-5.774805476684521,5.69189889998685 0.0003636255539143279,-5.767446971454957,5.6881802491162 -0.0003637555539143279,-5.767446971454957,5.69189889998685 0.0003638855539143279,-5.774805476684521,5.680742947374899 -0.0003640155539143279,-5.767446971454957,5.68446159824555 0.0003641455539143279,-5.763767718840175,5.68446159824555 -0.0003642755539143279,-5.771126224069739,5.680742947374899 0.0003644055539143279,-5.760088466225393,5.677024296504249 -0.0003645355539143279,-5.760088466225393,5.68446159824555 0.0003646655539143279,-5.760088466225393,5.680742947374899 -0.0003647955539143279,-5.756409213610612,5.680742947374899 0.0003649255539143279,-5.760088466225393,5.669586994762949 -0.0003650555539143279,-5.756409213610612,5.677024296504249 0.0003651855539143279,-5.760088466225393,5.680742947374899 -0.0003653155539143279,-5.756409213610612,5.673305645633599 0.0003654455539143279,-5.75272996099583,5.673305645633599 -0.0003655755539143279,-5.760088466225393,5.677024296504249 0.0003657055539143279,-5.756409213610612,5.677024296504249 -0.0003658355539143279,-5.756409213610612,5.68446159824555 0.0003659655539143279,-5.75272996099583,5.68446159824555 -0.0003660955539143279,-5.75272996099583,5.680742947374899 0.0003662255539143279,-5.738012950536702,5.669586994762949 -0.0003663555539143279,-5.749050708381048,5.699336201728149 0.0003664855539143279,-5.745371455766266,5.68446159824555 -0.0003666155539143279,-5.741692203151485,5.673305645633599 0.0003667455539143279,-5.738012950536702,5.677024296504249 -0.0003668755539143279,-5.738012950536702,5.677024296504249 0.0003670055539143279,-5.738012950536702,5.677024296504249 -0.0003671355539143279,-5.734333697921921,5.665868343892299 0.0003672655539143279,-5.730654445307139,5.647275089539049 -0.0003673955539143279,-5.730654445307139,5.665868343892299 0.0003675255539143279,-5.734333697921921,5.680742947374899 -0.0003676555539143279,-5.726975192692357,5.699336201728149 0.0003677855539143279,-5.730654445307139,5.6956175508575 -0.0003679155539143279,-5.726975192692357,5.69189889998685 0.0003680455539143279,-5.723295940077575,5.7104921543401 -0.0003681755539143279,-5.726975192692357,5.6956175508575 0.0003683055539143279,-5.726975192692357,5.703054852598799 -0.0003684355539143279,-5.726975192692357,5.699336201728149 0.0003685655539143279,-5.726975192692357,5.699336201728149 -0.0003686955539143279,-5.715937434848011,5.703054852598799 0.0003688255539143279,-5.723295940077575,5.703054852598799 -0.0003689555539143279,-5.726975192692357,5.70677350346945 0.0003690855539143279,-5.723295940077575,5.7104921543401 -0.0003692155539143279,-5.715937434848011,5.7104921543401 0.0003693455539143279,-5.723295940077575,5.71421080521075 -0.0003694755539143279,-5.723295940077575,5.7104921543401 0.0003696055539143279,-5.719616687462793,5.71421080521075 -0.0003697355539143279,-5.715937434848011,5.7104921543401 0.0003698655539143279,-5.708578929618447,5.7104921543401 -0.0003699955539143279,-5.704899677003666,5.71421080521075 0.0003701255539143279,-5.704899677003666,5.7104921543401 -0.0003702555539143279,-5.701220424388884,5.7179294560814 0.0003703855539143279,-5.704899677003666,5.7179294560814 -0.0003705155539143279,-5.701220424388884,5.7179294560814 0.0003706455539143279,-5.701220424388884,5.71421080521075 -0.0003707755539143279,-5.697541171774102,5.7179294560814 0.0003709055539143279,-5.701220424388884,5.71421080521075 -0.0003710355539143279,-5.697541171774102,5.7104921543401 0.0003711655539143279,-5.697541171774102,5.7104921543401 -0.0003712955539143279,-5.701220424388884,5.71421080521075 0.0003714255539143279,-5.697541171774102,5.7104921543401 -0.0003715555539143279,-5.704899677003666,5.7179294560814 0.0003716855539143279,-5.701220424388884,5.71421080521075 -0.0003718155539143279,-5.697541171774102,5.7179294560814 0.0003719455539143279,-5.697541171774102,5.71421080521075 -0.0003720755539143279,-5.679144908700193,5.74396001217595 0.0003722055539143279,-5.69386191915932,5.6881802491162 -0.0003723355539143279,-5.686503413929756,5.72164810695205 0.0003724655539143279,-5.686503413929756,5.72164810695205 -0.0003725955539143279,-5.682824161314975,5.7104921543401 0.0003727255539143279,-5.690182666544539,5.6956175508575 -0.0003728555539143279,-5.682824161314975,5.68446159824555 0.0003729855539143279,-5.686503413929756,5.680742947374899 -0.0003731155539143279,-5.682824161314975,5.68446159824555 0.0003732455539143279,-5.679144908700193,5.680742947374899 -0.0003733755539143279,-5.679144908700193,5.673305645633599 0.0003735055539143279,-5.679144908700193,5.677024296504249 -0.0003736355539143279,-5.668107150855848,5.680742947374899 0.0003737655539143279,-5.668107150855848,5.673305645633599 -0.0003738955539143279,-5.668107150855848,5.673305645633599 0.0003740255539143279,-5.668107150855848,5.680742947374899 -0.0003741555539143279,-5.671786403470629,5.677024296504249 0.0003742855539143279,-5.660748645626284,5.677024296504249 -0.0003744155539143279,-5.660748645626284,5.677024296504249 0.0003745455539143279,-5.660748645626284,5.673305645633599 -0.0003746755539143279,-5.660748645626284,5.677024296504249 0.0003748055539143279,-5.660748645626284,5.677024296504249 -0.0003749355539143279,-5.668107150855848,5.665868343892299 0.0003750655539143279,-5.660748645626284,5.669586994762949 -0.0003751955539143279,-5.660748645626284,5.662149693021648 0.0003753255539143279,-5.657069393011501,5.662149693021648 -0.0003754555539143279,-5.646031635167156,5.662149693021648 0.0003755855539143279,-5.65339014039672,5.665868343892299 -0.0003757155539143279,-5.65339014039672,5.665868343892299 0.0003758455539143279,-5.657069393011501,5.665868343892299 -0.0003759755539143279,-5.649710887781938,5.665868343892299 0.0003761055539143279,-5.65339014039672,5.662149693021648 -0.0003762355539143279,-5.649710887781938,5.665868343892299 0.0003763655539143279,-5.646031635167156,5.665868343892299 -0.0003764955539143279,-5.646031635167156,5.665868343892299 0.0003766255539143279,-5.646031635167156,5.662149693021648 -0.0003767555539143279,-5.642352382552374,5.662149693021648 0.0003768855539143279,-5.642352382552374,5.654712391280349 -0.0003770155539143279,-5.642352382552374,5.650993740409699 0.0003771455539143279,-5.634993877322811,5.636119136927098 -0.0003772755539143279,-5.642352382552374,5.662149693021648 0.0003774055539143279,-5.638673129937593,5.673305645633599 -0.0003775355539143279,-5.634993877322811,5.680742947374899 0.0003776655539143279,-5.631314624708029,5.6881802491162 -0.0003777955539143279,-5.638673129937593,5.677024296504249 0.0003779255539143279,-5.634993877322811,5.6881802491162 -0.0003780555539143279,-5.620276866863684,5.6956175508575 0.0003781855539143279,-5.627635372093247,5.69189889998685 -0.0003783155539143279,-5.627635372093247,5.6881802491162 0.0003784455539143279,-5.623956119478465,5.699336201728149 -0.0003785755539143279,-5.627635372093247,5.6881802491162 0.0003787055539143279,-5.620276866863684,5.6956175508575 -0.0003788355539143279,-5.616597614248902,5.6956175508575 0.0003789655539143279,-5.620276866863684,5.69189889998685 -0.0003790955539143279,-5.620276866863684,5.69189889998685 0.0003792255539143279,-5.616597614248902,5.6881802491162 -0.0003793555539143279,-5.616597614248902,5.6881802491162 0.0003794855539143279,-5.609239109019338,5.7104921543401 -0.0003796155539143279,-5.620276866863684,5.6881802491162 0.0003797455539143279,-5.616597614248902,5.6956175508575 -0.0003798755539143279,-5.620276866863684,5.6956175508575 0.0003800055539143279,-5.609239109019338,5.69189889998685 -0.0003801355539143279,-5.609239109019338,5.6956175508575 0.0003802655539143279,-5.605559856404557,5.699336201728149 -0.0003803955539143279,-5.601880603789774,5.699336201728149 0.0003805255539143279,-5.61291836163412,5.6956175508575 -0.0003806555539143279,-5.609239109019338,5.699336201728149 0.0003807855539143279,-5.609239109019338,5.6956175508575 -0.0003809155539143279,-5.609239109019338,5.6956175508575 0.0003810455539143279,-5.598201351174993,5.699336201728149 -0.0003811755539143279,-5.605559856404557,5.699336201728149 0.0003813055539143279,-5.601880603789774,5.699336201728149 -0.0003814355539143279,-5.605559856404557,5.6956175508575 0.0003815655539143279,-5.598201351174993,5.6956175508575 -0.0003816955539143279,-5.601880603789774,5.6956175508575 0.0003818255539143279,-5.59452209856021,5.6956175508575 -0.0003819555539143279,-5.59452209856021,5.6956175508575 0.0003820855539143279,-5.59452209856021,5.699336201728149 -0.0003822155539143279,-5.598201351174993,5.6956175508575 0.0003823455539143279,-5.59452209856021,5.69189889998685 -0.0003824755539143279,-5.587163593330647,5.680742947374899 0.0003826055539143279,-5.590842845945429,5.669586994762949 -0.0003827355539143279,-5.59452209856021,5.669586994762949 0.0003828655539143279,-5.587163593330647,5.665868343892299 -0.0003829955539143279,-5.583484340715865,5.662149693021648 0.0003831255539143279,-5.583484340715865,5.658431042150998 -0.0003832555539143279,-5.579805088101083,5.665868343892299 0.0003833855539143279,-5.583484340715865,5.658431042150998 -0.0003835155539143279,-5.576125835486302,5.658431042150998 0.0003836455539143279,-5.583484340715865,5.658431042150998 -0.0003837755539143279,-5.576125835486302,5.647275089539049 0.0003839055539143279,-5.572446582871519,5.647275089539049 -0.0003840355539143279,-5.565088077641956,5.639837787797748 0.0003841655539143279,-5.572446582871519,5.662149693021648 -0.0003842955539143279,-5.572446582871519,5.654712391280349 0.0003844255539143279,-5.572446582871519,5.643556438668399 -0.0003845555539143279,-5.565088077641956,5.643556438668399 0.0003846855539143279,-5.568767330256738,5.643556438668399 -0.0003848155539143279,-5.565088077641956,5.639837787797748 0.0003849455539143279,-5.565088077641956,5.636119136927098 -0.0003850755539143279,-5.565088077641956,5.639837787797748 0.0003852055539143279,-5.561408825027174,5.643556438668399 -0.0003853355539143279,-5.557729572412392,5.639837787797748 0.0003854655539143279,-5.557729572412392,5.647275089539049 -0.0003855955539143279,-5.565088077641956,5.639837787797748 0.0003857255539143279,-5.550371067182828,5.639837787797748 -0.0003858555539143279,-5.546691814568047,5.654712391280349 0.0003859855539143279,-5.550371067182828,5.639837787797748 -0.0003861155539143279,-5.550371067182828,5.647275089539049 0.0003862455539143279,-5.550371067182828,5.643556438668399 -0.0003863755539143279,-5.550371067182828,5.639837787797748 0.0003865055539143279,-5.546691814568047,5.643556438668399 -0.0003866355539143279,-5.554050319797611,5.643556438668399 0.0003867655539143279,-5.554050319797611,5.643556438668399 -0.0003868955539143279,-5.550371067182828,5.621244533444497 0.0003870255539143279,-5.543012561953264,5.624963184315148 -0.0003871555539143279,-5.543012561953264,5.639837787797748 0.0003872855539143279,-5.543012561953264,5.647275089539049 -0.0003874155539143279,-5.539333309338483,5.658431042150998 0.0003875455539143279,-5.543012561953264,5.665868343892299 -0.0003876755539143279,-5.539333309338483,5.662149693021648 0.0003878055539143279,-5.535654056723701,5.665868343892299 -0.0003879355539143279,-5.535654056723701,5.665868343892299 0.0003880655539143279,-5.535654056723701,5.662149693021648 -0.0003881955539143279,-5.531974804108919,5.665868343892299 0.0003883255539143279,-5.535654056723701,5.665868343892299 -0.0003884555539143279,-5.535654056723701,5.665868343892299 0.0003885855539143279,-5.535654056723701,5.662149693021648 -0.0003887155539143279,-5.535654056723701,5.665868343892299 0.0003888455539143279,-5.528295551494137,5.658431042150998 -0.0003889755539143279,-5.520937046264573,5.658431042150998 0.0003891055539143279,-5.528295551494137,5.673305645633599 -0.0003892355539143279,-5.528295551494137,5.665868343892299 0.0003893655539143279,-5.528295551494137,5.669586994762949 -0.0003894955539143279,-5.524616298879356,5.673305645633599 0.0003896255539143279,-5.524616298879356,5.673305645633599 -0.0003897555539143279,-5.520937046264573,5.669586994762949 0.0003898855539143279,-5.51357854103501,5.6956175508575 -0.0003900155539143279,-5.520937046264573,5.639837787797748 0.0003901455539143279,-5.51357854103501,5.673305645633599 -0.0003902755539143279,-5.517257793649792,5.677024296504249 0.0003904055539143279,-5.509899288420228,5.673305645633599 -0.0003905355539143279,-5.509899288420228,5.669586994762949 0.0003906655539143279,-5.509899288420228,5.673305645633599 -0.0003907955539143279,-5.509899288420228,5.677024296504249 0.0003909255539143279,-5.502540783190665,5.677024296504249 -0.0003910555539143279,-5.502540783190665,5.673305645633599 0.0003911855539143279,-5.498861530575883,5.673305645633599 -0.0003913155539143279,-5.502540783190665,5.673305645633599 0.0003914455539143279,-5.498861530575883,5.669586994762949 -0.0003915755539143279,-5.495182277961101,5.669586994762949 0.0003917055539143279,-5.495182277961101,5.662149693021648 -0.0003918355539143279,-5.495182277961101,5.677024296504249 0.0003919655539143279,-5.498861530575883,5.665868343892299 -0.0003920955539143279,-5.495182277961101,5.665868343892299 0.0003922255539143279,-5.495182277961101,5.669586994762949 -0.0003923555539143279,-5.49150302534632,5.658431042150998 0.0003924855539143279,-5.487823772731537,5.647275089539049 -0.0003926155539143279,-5.487823772731537,5.639837787797748 0.0003927455539143279,-5.487823772731537,5.639837787797748 -0.0003928755539143279,-5.487823772731537,5.639837787797748 0.0003930055539143279,-5.484144520116756,5.636119136927098 -0.0003931355539143279,-5.484144520116756,5.636119136927098 0.0003932655539143279,-5.487823772731537,5.636119136927098 -0.0003933955539143279,-5.49150302534632,5.628681835185798 0.0003935255539143279,-5.487823772731537,5.636119136927098 -0.0003936555539143279,-5.487823772731537,5.632400486056448 0.0003937855539143279,-5.484144520116756,5.628681835185798 -0.0003939155539143279,-5.502540783190665,5.624963184315148 0.0003940455539143279,-5.620276866863684,5.628681835185798 -0.0003941755539143279,-5.704899677003666,5.617525882573847 0.0003943055539143279,-5.749050708381048,5.621244533444497 -0.0003944355539143279,-5.778484729299302,5.617525882573847 0.0003945655539143279,-5.79320173975843,5.617525882573847 -0.0003946955539143279,-5.804239497602776,5.617525882573847 0.0003948255539143279,-5.789522487143648,5.628681835185798 -0.0003949555539143279,-5.778484729299302,5.617525882573847 0.0003950855539143279,-5.789522487143648,5.624963184315148 -0.0003952155539143279,-5.778484729299302,5.624963184315148 0.0003953455539143279,-5.778484729299302,5.621244533444497 -0.0003954755539143279,-5.782163981914084,5.617525882573847 0.0003956055539143279,-5.782163981914084,5.610088580832548 -0.0003957355539143279,-5.774805476684521,5.617525882573847 0.0003958655539143279,-5.774805476684521,5.621244533444497 -0.0003959955539143279,-5.767446971454957,5.613807231703198 0.0003961255539143279,-5.771126224069739,5.610088580832548 -0.0003962555539143279,-5.767446971454957,5.613807231703198 0.0003963855539143279,-5.760088466225393,5.613807231703198 -0.0003965155539143279,-5.763767718840175,5.613807231703198 0.0003966455539143279,-5.763767718840175,5.613807231703198 -0.0003967755539143279,-5.760088466225393,5.587776675608647 0.0003969055539143279,-5.756409213610612,5.610088580832548 -0.0003970355539143279,-5.760088466225393,5.621244533444497 0.0003971655539143279,-5.760088466225393,5.628681835185798 -0.0003972955539143279,-5.75272996099583,5.654712391280349 0.0003974255539143279,-5.774805476684521,5.628681835185798 -0.0003975555539143279,-5.760088466225393,5.643556438668399 0.0003976855539143279,-5.75272996099583,5.643556438668399 -0.0003978155539143279,-5.760088466225393,5.650993740409699 0.0003979455539143279,-5.75272996099583,5.647275089539049 -0.0003980755539143279,-5.75272996099583,5.647275089539049 0.0003982055539143279,-5.75272996099583,5.650993740409699 -0.0003983355539143279,-5.745371455766266,5.650993740409699 0.0003984655539143279,-5.745371455766266,5.643556438668399 -0.0003985955539143279,-5.745371455766266,5.650993740409699 0.0003987255539143279,-5.738012950536702,5.647275089539049 -0.0003988555539143279,-5.741692203151485,5.650993740409699 0.0003989855539143279,-5.741692203151485,5.647275089539049 -0.0003991155539143279,-5.741692203151485,5.647275089539049 0.0003992455539143279,-5.741692203151485,5.647275089539049 -0.0003993755539143279,-5.741692203151485,5.643556438668399 0.0003995055539143279,-5.741692203151485,5.643556438668399 -0.0003996355539143279,-5.738012950536702,5.643556438668399 0.0003997655539143279,-5.734333697921921,5.643556438668399 -0.0003998955539143279,-5.730654445307139,5.639837787797748 0.0004000255539143279,-5.734333697921921,5.639837787797748 -0.0004001555539143279,-5.734333697921921,5.636119136927098 0.0004002855539143279,-5.730654445307139,5.639837787797748 -0.0004004155539143279,-5.730654445307139,5.643556438668399 0.0004005455539143279,-5.723295940077575,5.647275089539049 -0.0004006755539143279,-5.719616687462793,5.650993740409699 0.0004008055539143279,-5.723295940077575,5.647275089539049 -0.0004009355539143279,-5.719616687462793,5.643556438668399 0.0004010655539143279,-5.719616687462793,5.643556438668399 -0.0004011955539143279,-5.719616687462793,5.639837787797748 0.0004013255539143279,-5.719616687462793,5.636119136927098 -0.0004014555539143279,-5.726975192692357,5.647275089539049 0.0004015855539143279,-5.723295940077575,5.643556438668399 -0.0004017155539143279,-5.726975192692357,5.647275089539049 0.0004018455539143279,-5.715937434848011,5.639837787797748 -0.0004019755539143279,-5.715937434848011,5.658431042150998 0.0004021055539143279,-5.715937434848011,5.636119136927098 -0.0004022355539143279,-5.719616687462793,5.632400486056448 0.0004023655539143279,-5.715937434848011,5.621244533444497 -0.0004024955539143279,-5.708578929618447,5.624963184315148 0.0004026255539143279,-5.708578929618447,5.621244533444497 -0.0004027555539143279,-5.708578929618447,5.613807231703198 0.0004028855539143279,-5.708578929618447,5.610088580832548 -0.0004030155539143279,-5.71225818223323,5.610088580832548 0.0004031455539143279,-5.704899677003666,5.606369929961898 -0.0004032755539143279,-5.708578929618447,5.617525882573847 0.0004034055539143279,-5.71225818223323,5.606369929961898 -0.0004035355539143279,-5.704899677003666,5.602651279091247 0.0004036655539143279,-5.704899677003666,5.613807231703198 -0.0004037955539143279,-5.701220424388884,5.602651279091247 0.0004039255539143279,-5.701220424388884,5.602651279091247 -0.0004040555539143279,-5.697541171774102,5.598932628220597 0.0004041855539143279,-5.701220424388884,5.598932628220597 -0.0004043155539143279,-5.697541171774102,5.598932628220597 0.0004044455539143279,-5.69386191915932,5.587776675608647 -0.0004045755539143279,-5.697541171774102,5.595213977349947 0.0004047055539143279,-5.69386191915932,5.595213977349947 -0.0004048355539143279,-5.690182666544539,5.595213977349947 0.0004049655539143279,-5.686503413929756,5.595213977349947 -0.0004050955539143279,-5.682824161314975,5.591495326479297 0.0004052255539143279,-5.682824161314975,5.595213977349947 -0.0004053555539143279,-5.675465656085411,5.595213977349947 0.0004054855539143279,-5.686503413929756,5.598932628220597 -0.0004056155539143279,-5.679144908700193,5.598932628220597 0.0004057455539143279,-5.682824161314975,5.595213977349947 -0.0004058755539143279,-5.682824161314975,5.595213977349947 0.0004060055539143279,-5.679144908700193,5.591495326479297 -0.0004061355539143279,-5.679144908700193,5.591495326479297 0.0004062655539143279,-5.671786403470629,5.598932628220597 -0.0004063955539143279,-5.671786403470629,5.595213977349947 0.0004065255539143279,-5.675465656085411,5.587776675608647 -0.0004066555539143279,-5.671786403470629,5.569183421255397 0.0004067855539143279,-5.657069393011501,5.584058024737997 -0.0004069155539143279,-5.668107150855848,5.606369929961898 0.0004070455539143279,-5.668107150855848,5.610088580832548 -0.0004071755539143279,-5.664427898241065,5.613807231703198 0.0004073055539143279,-5.668107150855848,5.613807231703198 -0.0004074355539143279,-5.664427898241065,5.621244533444497 0.0004075655539143279,-5.660748645626284,5.617525882573847 -0.0004076955539143279,-5.649710887781938,5.650993740409699 0.0004078255539143279,-5.671786403470629,5.591495326479297 -0.0004079555539143279,-5.657069393011501,5.628681835185798 0.0004080855539143279,-5.660748645626284,5.628681835185798 -0.0004082155539143279,-5.664427898241065,5.621244533444497 0.0004083455539143279,-5.664427898241065,5.621244533444497 -0.0004084755539143279,-5.657069393011501,5.624963184315148 0.0004086055539143279,-5.65339014039672,5.624963184315148 -0.0004087355539143279,-5.65339014039672,5.624963184315148 0.0004088655539143279,-5.646031635167156,5.621244533444497 -0.0004089955539143279,-5.646031635167156,5.624963184315148 0.0004091255539143279,-5.649710887781938,5.621244533444497 -0.0004092555539143279,-5.642352382552374,5.628681835185798 0.0004093855539143279,-5.638673129937593,5.624963184315148 -0.0004095155539143279,-5.638673129937593,5.624963184315148 0.0004096455539143279,-5.646031635167156,5.632400486056448 -0.0004097755539143279,-5.642352382552374,5.617525882573847 0.0004099055539143279,-5.646031635167156,5.624963184315148 -0.0004100355539143279,-5.642352382552374,5.624963184315148 0.0004101655539143279,-5.638673129937593,5.624963184315148 -0.0004102955539143279,-5.634993877322811,5.632400486056448 0.0004104255539143279,-5.642352382552374,5.621244533444497 -0.0004105555539143279,-5.638673129937593,5.624963184315148 0.0004106855539143279,-5.634993877322811,5.624963184315148 -0.0004108155539143279,-5.638673129937593,5.621244533444497 0.0004109455539143279,-5.634993877322811,5.621244533444497 -0.0004110755539143279,-5.634993877322811,5.624963184315148 0.0004112055539143279,-5.631314624708029,5.624963184315148 -0.0004113355539143279,-5.627635372093247,5.628681835185798 0.0004114655539143279,-5.623956119478465,5.624963184315148 -0.0004115955539143279,-5.623956119478465,5.628681835185798 0.0004117255539143279,-5.623956119478465,5.628681835185798 -0.0004118555539143279,-5.616597614248902,5.621244533444497 0.0004119855539143279,-5.61291836163412,5.606369929961898 -0.0004121155539143279,-5.616597614248902,5.598932628220597 0.0004122455539143279,-5.609239109019338,5.598932628220597 -0.0004123755539143279,-5.61291836163412,5.591495326479297 0.0004125055539143279,-5.616597614248902,5.595213977349947 -0.0004126355539143279,-5.61291836163412,5.587776675608647 0.0004127655539143279,-5.609239109019338,5.587776675608647 -0.0004128955539143279,-5.61291836163412,5.595213977349947 0.0004130255539143279,-5.609239109019338,5.587776675608647 -0.0004131555539143279,-5.609239109019338,5.584058024737997 0.0004132855539143279,-5.605559856404557,5.587776675608647 -0.0004134155539143279,-5.609239109019338,5.584058024737997 0.0004135455539143279,-5.605559856404557,5.591495326479297 -0.0004136755539143279,-5.609239109019338,5.598932628220597 0.0004138055539143279,-5.59452209856021,5.580339373867346 -0.0004139355539143279,-5.601880603789774,5.584058024737997 0.0004140655539143279,-5.598201351174993,5.587776675608647 -0.0004141955539143279,-5.598201351174993,5.587776675608647 0.0004143255539143279,-5.59452209856021,5.587776675608647 -0.0004144555539143279,-5.590842845945429,5.587776675608647 0.0004145855539143279,-5.590842845945429,5.584058024737997 -0.0004147155539143279,-5.587163593330647,5.587776675608647 0.0004148455539143279,-5.587163593330647,5.576620722996696 -0.0004149755539143279,-5.587163593330647,5.576620722996696 0.0004151055539143279,-5.572446582871519,5.591495326479297 -0.0004152355539143279,-5.598201351174993,5.561746119514096 0.0004153655539143279,-5.587163593330647,5.576620722996696 -0.0004154955539143279,-5.579805088101083,5.572902072126046 0.0004156255539143279,-5.579805088101083,5.576620722996696 -0.0004157555539143279,-5.576125835486302,5.572902072126046 0.0004158855539143279,-5.579805088101083,5.569183421255397 -0.0004160155539143279,-5.579805088101083,5.580339373867346 0.0004161455539143279,-5.576125835486302,5.576620722996696 -0.0004162755539143279,-5.576125835486302,5.572902072126046 0.0004164055539143279,-5.576125835486302,5.558027468643446 -0.0004165355539143279,-5.572446582871519,5.558027468643446 0.0004166655539143279,-5.576125835486302,5.576620722996696 -0.0004167955539143279,-5.576125835486302,5.591495326479297 0.0004169255539143279,-5.572446582871519,5.598932628220597 -0.0004170555539143279,-5.576125835486302,5.595213977349947 0.0004171855539143279,-5.572446582871519,5.598932628220597 -0.0004173155539143279,-5.568767330256738,5.598932628220597 0.0004174455539143279,-5.565088077641956,5.595213977349947 -0.0004175755539143279,-5.568767330256738,5.606369929961898 0.0004177055539143279,-5.561408825027174,5.602651279091247 -0.0004178355539143279,-5.565088077641956,5.602651279091247 0.0004179655539143279,-5.561408825027174,5.606369929961898 -0.0004180955539143279,-5.561408825027174,5.595213977349947 0.0004182255539143279,-5.557729572412392,5.606369929961898 -0.0004183555539143279,-5.554050319797611,5.606369929961898 0.0004184855539143279,-5.561408825027174,5.606369929961898 -0.0004186155539143279,-5.557729572412392,5.613807231703198 0.0004187455539143279,-5.550371067182828,5.610088580832548 -0.0004188755539143279,-5.554050319797611,5.610088580832548 0.0004190055539143279,-5.546691814568047,5.602651279091247 -0.0004191355539143279,-5.554050319797611,5.602651279091247 0.0004192655539143279,-5.554050319797611,5.610088580832548 -0.0004193955539143279,-5.543012561953264,5.606369929961898 0.0004195255539143279,-5.550371067182828,5.613807231703198 -0.0004196555539143279,-5.543012561953264,5.606369929961898 0.0004197855539143279,-5.543012561953264,5.628681835185798 -0.0004199155539143279,-5.546691814568047,5.610088580832548 0.0004200455539143279,-5.546691814568047,5.610088580832548 -0.0004201755539143279,-5.543012561953264,5.613807231703198 0.0004203055539143279,-5.550371067182828,5.610088580832548 -0.0004204355539143279,-5.546691814568047,5.613807231703198 0.0004205655539143279,-5.543012561953264,5.606369929961898 -0.0004206955539143279,-5.543012561953264,5.598932628220597 0.0004208255539143279,-5.535654056723701,5.598932628220597 -0.0004209555539143279,-5.531974804108919,5.606369929961898 0.0004210855539143279,-5.539333309338483,5.613807231703198 -0.0004212155539143279,-5.535654056723701,5.606369929961898 0.0004213455539143279,-5.531974804108919,5.602651279091247 -0.0004214755539143279,-5.531974804108919,5.617525882573847 0.0004216055539143279,-5.528295551494137,5.602651279091247 -0.0004217355539143279,-5.531974804108919,5.613807231703198 0.0004218655539143279,-5.531974804108919,5.602651279091247 -0.0004219955539143279,-5.528295551494137,5.602651279091247 0.0004221255539143279,-5.524616298879356,5.591495326479297 -0.0004222555539143279,-5.528295551494137,5.587776675608647 0.0004223855539143279,-5.528295551494137,5.587776675608647 -0.0004225155539143279,-5.524616298879356,5.591495326479297 0.0004226455539143279,-5.528295551494137,5.587776675608647 -0.0004227755539143279,-5.524616298879356,5.587776675608647 0.0004229055539143279,-5.524616298879356,5.580339373867346 -0.0004230355539143279,-5.520937046264573,5.584058024737997 0.0004231655539143279,-5.517257793649792,5.580339373867346 -0.0004232955539143279,-5.517257793649792,5.576620722996696 0.0004234255539143279,-5.51357854103501,5.576620722996696 -0.0004235555539143279,-5.520937046264573,5.572902072126046 0.0004236855539143279,-5.51357854103501,5.569183421255397 -0.0004238155539143279,-5.517257793649792,5.572902072126046 0.0004239455539143279,-5.51357854103501,5.565464770384747 -0.0004240755539143279,-5.509899288420228,5.565464770384747 0.0004242055539143279,-5.509899288420228,5.565464770384747 -0.0004243355539143279,-5.509899288420228,5.565464770384747 0.0004244655539143279,-5.509899288420228,5.569183421255397 -0.0004245955539143279,-5.498861530575883,5.554308817772796 0.0004247255539143279,-5.506220035805446,5.561746119514096 -0.0004248555539143279,-5.502540783190665,5.558027468643446 0.0004249855539143279,-5.498861530575883,5.569183421255397 -0.0004251155539143279,-5.502540783190665,5.569183421255397 0.0004252455539143279,-5.495182277961101,5.569183421255397 -0.0004253755539143279,-5.495182277961101,5.561746119514096 0.0004255055539143279,-5.49150302534632,5.580339373867346 -0.0004256355539143279,-5.509899288420228,5.543152865160846 0.0004257655539143279,-5.495182277961101,5.569183421255397 -0.0004258955539143279,-5.498861530575883,5.569183421255397 0.0004260255539143279,-5.495182277961101,5.565464770384747 -0.0004261555539143279,-5.49150302534632,5.558027468643446 0.0004262855539143279,-5.49150302534632,5.531996912548895 -0.0004264155539143279,-5.487823772731537,5.550590166902146 0.0004265455539143279,-5.487823772731537,5.565464770384747 -0.0004266755539143279,-5.487823772731537,5.580339373867346 0.0004268055539143279,-5.487823772731537,5.587776675608647 -0.0004269355539143279,-5.487823772731537,5.587776675608647 0.0004270655539143279,-5.484144520116756,5.595213977349947 -0.0004271955539143279,-5.528295551494137,5.584058024737997 0.0004273255539143279,-5.65339014039672,5.576620722996696 -0.0004274555539143279,-5.723295940077575,5.591495326479297 0.0004275855539143279,-5.767446971454957,5.584058024737997 -0.0004277155539143279,-5.79320173975843,5.587776675608647 0.0004278455539143279,-5.807918750217557,5.584058024737997 -0.0004279755539143279,-5.800560244987993,5.587776675608647 0.0004281055539143279,-5.79320173975843,5.591495326479297 -0.0004282355539143279,-5.782163981914084,5.602651279091247 0.0004283655539143279,-5.785843234528866,5.595213977349947 -0.0004284955539143279,-5.778484729299302,5.595213977349947 0.0004286255539143279,-5.778484729299302,5.602651279091247 -0.0004287555539143279,-5.774805476684521,5.598932628220597 0.0004288855539143279,-5.774805476684521,5.598932628220597 -0.0004290155539143279,-5.771126224069739,5.598932628220597 0.0004291455539143279,-5.774805476684521,5.595213977349947 -0.0004292755539143279,-5.774805476684521,5.595213977349947 0.0004294055539143279,-5.767446971454957,5.595213977349947 -0.0004295355539143279,-5.763767718840175,5.587776675608647 0.0004296655539143279,-5.767446971454957,5.591495326479297 -0.0004297955539143279,-5.763767718840175,5.598932628220597 0.0004299255539143279,-5.767446971454957,5.595213977349947 -0.0004300555539143279,-5.767446971454957,5.587776675608647 0.0004301855539143279,-5.767446971454957,5.587776675608647 -0.0004303155539143279,-5.756409213610612,5.591495326479297 0.0004304455539143279,-5.763767718840175,5.591495326479297 -0.0004305755539143279,-5.760088466225393,5.587776675608647 0.0004307055539143279,-5.756409213610612,5.598932628220597 -0.0004308355539143279,-5.756409213610612,5.595213977349947 0.0004309655539143279,-5.75272996099583,5.595213977349947 -0.0004310955539143279,-5.75272996099583,5.598932628220597 0.0004312255539143279,-5.745371455766266,5.591495326479297 -0.0004313555539143279,-5.749050708381048,5.591495326479297 0.0004314855539143279,-5.749050708381048,5.613807231703198 -0.0004316155539143279,-5.741692203151485,5.580339373867346 0.0004317455539143279,-5.745371455766266,5.580339373867346 -0.0004318755539143279,-5.75272996099583,5.580339373867346 0.0004320055539143279,-5.741692203151485,5.576620722996696 -0.0004321355539143279,-5.741692203151485,5.576620722996696 0.0004322655539143279,-5.741692203151485,5.576620722996696 -0.0004323955539143279,-5.745371455766266,5.572902072126046 0.0004325255539143279,-5.741692203151485,5.565464770384747 -0.0004326555539143279,-5.741692203151485,5.569183421255397 0.0004327855539143279,-5.738012950536702,5.565464770384747 -0.0004329155539143279,-5.730654445307139,5.576620722996696 0.0004330455539143279,-5.749050708381048,5.550590166902146 -0.0004331755539143279,-5.738012950536702,5.565464770384747 0.0004333055539143279,-5.734333697921921,5.558027468643446 -0.0004334355539143279,-5.730654445307139,5.569183421255397 0.0004335655539143279,-5.730654445307139,5.561746119514096 -0.0004336955539143279,-5.738012950536702,5.565464770384747 0.0004338255539143279,-5.730654445307139,5.554308817772796 -0.0004339555539143279,-5.726975192692357,5.558027468643446 0.0004340855539143279,-5.726975192692357,5.558027468643446 -0.0004342155539143279,-5.726975192692357,5.558027468643446 0.0004343455539143279,-5.726975192692357,5.550590166902146 -0.0004344755539143279,-5.723295940077575,5.558027468643446 0.0004346055539143279,-5.726975192692357,5.554308817772796 -0.0004347355539143279,-5.723295940077575,5.558027468643446 0.0004348655539143279,-5.723295940077575,5.558027468643446 -0.0004349955539143279,-5.719616687462793,5.554308817772796 0.0004351255539143279,-5.726975192692357,5.558027468643446 -0.0004352555539143279,-5.719616687462793,5.554308817772796 0.0004353855539143279,-5.723295940077575,5.550590166902146 -0.0004355155539143279,-5.71225818223323,5.554308817772796 0.0004356455539143279,-5.71225818223323,5.546871516031496 -0.0004357755539143279,-5.71225818223323,5.550590166902146 0.0004359055539143279,-5.708578929618447,5.550590166902146 -0.0004360355539143279,-5.71225818223323,5.539434214290195 0.0004361655539143279,-5.704899677003666,5.528278261678246 -0.0004362955539143279,-5.704899677003666,5.550590166902146 0.0004364255539143279,-5.701220424388884,5.558027468643446 -0.0004365555539143279,-5.701220424388884,5.565464770384747 0.0004366855539143279,-5.701220424388884,5.576620722996696 -0.0004368155539143279,-5.697541171774102,5.580339373867346 0.0004369455539143279,-5.701220424388884,5.572902072126046 -0.0004370755539143279,-5.704899677003666,5.576620722996696 0.0004372055539143279,-5.701220424388884,5.569183421255397 -0.0004373355539143279,-5.697541171774102,5.576620722996696 0.0004374655539143279,-5.69386191915932,5.572902072126046 -0.0004375955539143279,-5.690182666544539,5.598932628220597 0.0004377255539143279,-5.690182666544539,5.584058024737997 -0.0004378555539143279,-5.686503413929756,5.584058024737997 0.0004379855539143279,-5.686503413929756,5.580339373867346 -0.0004381155539143279,-5.690182666544539,5.584058024737997 0.0004382455539143279,-5.690182666544539,5.587776675608647 -0.0004383755539143279,-5.686503413929756,5.591495326479297 0.0004385055539143279,-5.682824161314975,5.595213977349947 -0.0004386355539143279,-5.686503413929756,5.591495326479297 0.0004387655539143279,-5.679144908700193,5.587776675608647 -0.0004388955539143279,-5.679144908700193,5.598932628220597 0.0004390255539143279,-5.679144908700193,5.587776675608647 -0.0004391555539143279,-5.679144908700193,5.587776675608647 0.0004392855539143279,-5.682824161314975,5.595213977349947 -0.0004394155539143279,-5.679144908700193,5.584058024737997 0.0004395455539143279,-5.671786403470629,5.591495326479297 -0.0004396755539143279,-5.675465656085411,5.591495326479297 0.0004398055539143279,-5.675465656085411,5.591495326479297 -0.0004399355539143279,-5.671786403470629,5.598932628220597 0.0004400655539143279,-5.668107150855848,5.587776675608647 -0.0004401955539143279,-5.668107150855848,5.591495326479297 0.0004403255539143279,-5.668107150855848,5.595213977349947 -0.0004404555539143279,-5.668107150855848,5.591495326479297 0.0004405855539143279,-5.668107150855848,5.591495326479297 -0.0004407155539143279,-5.664427898241065,5.584058024737997 0.0004408455539143279,-5.664427898241065,5.584058024737997 -0.0004409755539143279,-5.664427898241065,5.595213977349947 0.0004411055539143279,-5.660748645626284,5.587776675608647 -0.0004412355539143279,-5.657069393011501,5.591495326479297 0.0004413655539143279,-5.660748645626284,5.587776675608647 -0.0004414955539143279,-5.660748645626284,5.584058024737997 0.0004416255539143279,-5.657069393011501,5.572902072126046 -0.0004417555539143279,-5.65339014039672,5.572902072126046 0.0004418855539143279,-5.657069393011501,5.565464770384747 -0.0004420155539143279,-5.65339014039672,5.565464770384747 0.0004421455539143279,-5.649710887781938,5.561746119514096 -0.0004422755539143279,-5.646031635167156,5.561746119514096 0.0004424055539143279,-5.638673129937593,5.554308817772796 -0.0004425355539143279,-5.646031635167156,5.554308817772796 0.0004426655539143279,-5.642352382552374,5.554308817772796 -0.0004427955539143279,-5.634993877322811,5.550590166902146 0.0004429255539143279,-5.638673129937593,5.558027468643446 -0.0004430555539143279,-5.634993877322811,5.554308817772796 0.0004431855539143279,-5.631314624708029,5.550590166902146 -0.0004433155539143279,-5.627635372093247,5.565464770384747 0.0004434455539143279,-5.638673129937593,5.535715563419545 -0.0004435755539143279,-5.623956119478465,5.561746119514096 0.0004437055539143279,-5.627635372093247,5.558027468643446 -0.0004438355539143279,-5.627635372093247,5.554308817772796 0.0004439655539143279,-5.627635372093247,5.558027468643446 -0.0004440955539143279,-5.631314624708029,5.550590166902146 0.0004442255539143279,-5.623956119478465,5.550590166902146 -0.0004443555539143279,-5.627635372093247,5.550590166902146 0.0004444855539143279,-5.623956119478465,5.554308817772796 -0.0004446155539143279,-5.616597614248902,5.554308817772796 0.0004447455539143279,-5.620276866863684,5.550590166902146 -0.0004448755539143279,-5.620276866863684,5.550590166902146 0.0004450055539143279,-5.616597614248902,5.546871516031496 -0.0004451355539143279,-5.61291836163412,5.539434214290195 0.0004452655539143279,-5.616597614248902,5.554308817772796 -0.0004453955539143279,-5.61291836163412,5.546871516031496 0.0004455255539143279,-5.61291836163412,5.550590166902146 -0.0004456555539143279,-5.616597614248902,5.550590166902146 0.0004457855539143279,-5.609239109019338,5.554308817772796 -0.0004459155539143279,-5.616597614248902,5.528278261678246 0.0004460455539143279,-5.61291836163412,5.528278261678246 -0.0004461755539143279,-5.61291836163412,5.546871516031496 0.0004463055539143279,-5.609239109019338,5.554308817772796 -0.0004464355539143279,-5.605559856404557,5.561746119514096 0.0004465655539143279,-5.601880603789774,5.561746119514096 -0.0004466955539143279,-5.601880603789774,5.569183421255397 0.0004468255539143279,-5.605559856404557,5.572902072126046 -0.0004469555539143279,-5.598201351174993,5.576620722996696 0.0004470855539143279,-5.605559856404557,5.576620722996696 -0.0004472155539143279,-5.609239109019338,5.572902072126046 0.0004473455539143279,-5.601880603789774,5.572902072126046 -0.0004474755539143279,-5.601880603789774,5.572902072126046 0.0004476055539143279,-5.605559856404557,5.576620722996696 -0.0004477355539143279,-5.605559856404557,5.580339373867346 0.0004478655539143279,-5.601880603789774,5.580339373867346 -0.0004479955539143279,-5.598201351174993,5.584058024737997 0.0004481255539143279,-5.598201351174993,5.580339373867346 -0.0004482555539143279,-5.59452209856021,5.584058024737997 0.0004483855539143279,-5.590842845945429,5.580339373867346 -0.0004485155539143279,-5.590842845945429,5.584058024737997 0.0004486455539143279,-5.587163593330647,5.580339373867346 -0.0004487755539143279,-5.59452209856021,5.580339373867346 0.0004489055539143279,-5.59452209856021,5.584058024737997 -0.0004490355539143279,-5.576125835486302,5.580339373867346 0.0004491655539143279,-5.583484340715865,5.580339373867346 -0.0004492955539143279,-5.587163593330647,5.595213977349947 0.0004494255539143279,-5.572446582871519,5.572902072126046 -0.0004495555539143279,-5.579805088101083,5.584058024737997 0.0004496855539143279,-5.579805088101083,5.584058024737997 -0.0004498155539143279,-5.579805088101083,5.584058024737997 0.0004499455539143279,-5.579805088101083,5.584058024737997 -0.0004500755539143279,-5.583484340715865,5.584058024737997 0.0004502055539143279,-5.579805088101083,5.576620722996696 -0.0004503355539143279,-5.583484340715865,5.576620722996696 0.0004504655539143279,-5.576125835486302,5.580339373867346 -0.0004505955539143279,-5.565088077641956,5.580339373867346 0.0004507255539143279,-5.565088077641956,5.587776675608647 -0.0004508555539143279,-5.576125835486302,5.561746119514096 0.0004509855539143279,-5.568767330256738,5.580339373867346 -0.0004511155539143279,-5.565088077641956,5.572902072126046 0.0004512455539143279,-5.568767330256738,5.584058024737997 -0.0004513755539143279,-5.561408825027174,5.561746119514096 0.0004515055539143279,-5.557729572412392,5.561746119514096 -0.0004516355539143279,-5.561408825027174,5.561746119514096 0.0004517655539143279,-5.557729572412392,5.558027468643446 -0.0004518955539143279,-5.557729572412392,5.558027468643446 0.0004520255539143279,-5.557729572412392,5.558027468643446 -0.0004521555539143279,-5.550371067182828,5.558027468643446 0.0004522855539143279,-5.550371067182828,5.558027468643446 -0.0004524155539143279,-5.543012561953264,5.558027468643446 0.0004525455539143279,-5.543012561953264,5.554308817772796 -0.0004526755539143279,-5.543012561953264,5.554308817772796 0.0004528055539143279,-5.543012561953264,5.554308817772796 -0.0004529355539143279,-5.546691814568047,5.554308817772796 0.0004530655539143279,-5.543012561953264,5.546871516031496 -0.0004531955539143279,-5.539333309338483,5.546871516031496 0.0004533255539143279,-5.543012561953264,5.543152865160846 -0.0004534555539143279,-5.539333309338483,5.546871516031496 0.0004535855539143279,-5.543012561953264,5.539434214290195 -0.0004537155539143279,-5.539333309338483,5.543152865160846 0.0004538455539143279,-5.535654056723701,5.546871516031496 -0.0004539755539143279,-5.535654056723701,5.543152865160846 0.0004541055539143279,-5.535654056723701,5.543152865160846 -0.0004542355539143279,-5.531974804108919,5.546871516031496 0.0004543655539143279,-5.535654056723701,5.535715563419545 -0.0004544955539143279,-5.535654056723701,5.546871516031496 0.0004546255539143279,-5.531974804108919,5.546871516031496 -0.0004547555539143279,-5.535654056723701,5.543152865160846 0.0004548855539143279,-5.531974804108919,5.546871516031496 -0.0004550155539143279,-5.531974804108919,5.539434214290195 0.0004551455539143279,-5.535654056723701,5.539434214290195 -0.0004552755539143279,-5.535654056723701,5.539434214290195 0.0004554055539143279,-5.528295551494137,5.550590166902146 -0.0004555355539143279,-5.528295551494137,5.543152865160846 0.0004556655539143279,-5.520937046264573,5.539434214290195 -0.0004557955539143279,-5.520937046264573,5.524559610807596 0.0004559255539143279,-5.524616298879356,5.535715563419545 -0.0004560555539143279,-5.528295551494137,5.435311989911993 0.0004561855539143279,-5.520937046264573,4.955606027598131 -0.0004563155539143279,-5.524616298879356,4.13750283605511 0.0004564455539143279,-5.524616298879356,3.126029799238285 -0.0004565755539143279,-5.520937046264573,2.002997236301957 0.0004567055539143279,-5.524616298879356,0.8427781646591271 -0.0004568355539143279,-5.517257793649792,-0.3583460665608533 0.0004569655539143279,-5.51357854103501,-1.563188948651484 -0.0004570955539143279,-5.517257793649792,-2.842404848155116 0.0004572255539143279,-5.509899288420228,-3.939406854996894 -0.0004573555539143279,-5.506220035805446,-4.686855679997564 0.0004574855539143279,-5.509899288420228,-5.188873547535326 -0.0004576155539143279,-5.51357854103501,-5.545864031117735 0.0004577455539143279,-5.509899288420228,-5.798732290321941 -0.0004578755539143279,-5.502540783190665,-5.973508881242496 0.0004580055539143279,-5.502540783190665,-6.103661661715249 -0.0004581355539143279,-5.502540783190665,-6.196627933481501 0.0004582655539143279,-5.502540783190665,-6.263563649153203 -0.0004583955539143279,-5.495182277961101,-6.315624761342304 0.0004585255539143279,-5.495182277961101,-6.349092619178156 -0.0004586555539143279,-5.495182277961101,-6.378841826143356 0.0004587855539143279,-5.495182277961101,-6.404872382237906 -0.0004589155539143279,-5.487823772731537,-6.412309683979207 0.0004590455539143279,-5.487823772731537,-6.427184287461807 -0.0004591755539143279,-5.487823772731537,-6.438340240073757 0.0004593055539143279,-5.487823772731537,-6.445777541815057 -0.0004594355539143279,-5.487823772731537,-6.453214843556358 0.0004595655539143279,-5.49150302534632,-6.456933494427008 -0.0004596955539143279,-5.49150302534632,-6.460652145297658 0.0004598255539143279,-5.487823772731537,-6.456933494427008 -0.0004599555539143279,-5.484144520116756,-6.456933494427008 0.0004600855539143279,-5.49150302534632,-6.456933494427008 -0.0004602155539143279,-5.480465267501973,-6.464370796168308 0.0004603455539143279,-5.49150302534632,-6.464370796168308 -0.0004604755539143279,-5.502540783190665,-6.468089447038958 0.0004606055539143279,-5.620276866863684,-6.468089447038958 -0.0004607355539143279,-5.701220424388884,-6.471808097909609 0.0004608655539143279,-5.749050708381048,-6.468089447038958 -0.0004609955539143279,-5.782163981914084,-6.468089447038958 0.0004611255539143279,-5.796880992373212,-6.449496192685708 -0.0004612555539143279,-5.811598002832339,-6.464370796168308 0.0004613855539143279,-5.785843234528866,-6.442058890944407 -0.0004615155539143279,-5.785843234528866,-6.445777541815057 0.0004616455539143279,-5.782163981914084,-6.453214843556358 -0.0004617755539143279,-5.778484729299302,-6.449496192685708 0.0004619055539143279,-5.785843234528866,-6.456933494427008 -0.0004620355539143279,-5.782163981914084,-6.456933494427008 0.0004621655539143279,-5.774805476684521,-6.453214843556358 -0.0004622955539143279,-5.778484729299302,-6.460652145297658 0.0004624255539143279,-5.774805476684521,-6.453214843556358 -0.0004625555539143279,-5.774805476684521,-6.453214843556358 0.0004626855539143279,-5.771126224069739,-6.445777541815057 -0.0004628155539143279,-5.774805476684521,-6.453214843556358 0.0004629455539143279,-5.763767718840175,-6.460652145297658 -0.0004630755539143279,-5.771126224069739,-6.445777541815057 0.0004632055539143279,-5.767446971454957,-6.456933494427008 -0.0004633355539143279,-5.763767718840175,-6.453214843556358 0.0004634655539143279,-5.763767718840175,-6.449496192685708 -0.0004635955539143279,-5.760088466225393,-6.453214843556358 0.0004637255539143279,-5.763767718840175,-6.445777541815057 -0.0004638555539143279,-5.760088466225393,-6.445777541815057 0.0004639855539143279,-5.760088466225393,-6.445777541815057 -0.0004641155539143279,-5.763767718840175,-6.442058890944407 0.0004642455539143279,-5.756409213610612,-6.449496192685708 -0.0004643755539143279,-5.756409213610612,-6.453214843556358 0.0004645055539143279,-5.760088466225393,-6.449496192685708 -0.0004646355539143279,-5.749050708381048,-6.453214843556358 0.0004647655539143279,-5.75272996099583,-6.445777541815057 -0.0004648955539143279,-5.75272996099583,-6.445777541815057 0.0004650255539143279,-5.749050708381048,-6.453214843556358 -0.0004651555539143279,-5.745371455766266,-6.456933494427008 0.0004652855539143279,-5.75272996099583,-6.456933494427008 -0.0004654155539143279,-5.749050708381048,-6.442058890944407 0.0004655455539143279,-5.749050708381048,-6.423465636591157 -0.0004656755539143279,-5.741692203151485,-6.430902938332458 0.0004658055539143279,-5.738012950536702,-6.442058890944407 -0.0004659355539143279,-5.738012950536702,-6.449496192685708 0.0004660655539143279,-5.734333697921921,-6.460652145297658 -0.0004661955539143279,-5.738012950536702,-6.460652145297658 0.0004663255539143279,-5.741692203151485,-6.460652145297658 -0.0004664555539143279,-5.741692203151485,-6.460652145297658 0.0004665855539143279,-5.730654445307139,-6.460652145297658 -0.0004667155539143279,-5.741692203151485,-6.460652145297658 0.0004668455539143279,-5.723295940077575,-6.460652145297658 -0.0004669755539143279,-5.726975192692357,-6.456933494427008 0.0004671055539143279,-5.738012950536702,-6.442058890944407 -0.0004672355539143279,-5.715937434848011,-6.475526748780259 0.0004673655539143279,-5.719616687462793,-6.460652145297658 -0.0004674955539143279,-5.723295940077575,-6.460652145297658 0.0004676255539143279,-5.71225818223323,-6.464370796168308 -0.0004677555539143279,-5.719616687462793,-6.464370796168308 0.0004678855539143279,-5.715937434848011,-6.464370796168308 -0.0004680155539143279,-5.723295940077575,-6.464370796168308 0.0004681455539143279,-5.71225818223323,-6.460652145297658 -0.0004682755539143279,-5.715937434848011,-6.464370796168308 0.0004684055539143279,-5.708578929618447,-6.460652145297658 -0.0004685355539143279,-5.71225818223323,-6.449496192685708 0.0004686655539143279,-5.715937434848011,-6.464370796168308 -0.0004687955539143279,-5.715937434848011,-6.460652145297658 0.0004689255539143279,-5.71225818223323,-6.453214843556358 -0.0004690555539143279,-5.708578929618447,-6.453214843556358 0.0004691855539143279,-5.71225818223323,-6.460652145297658 -0.0004693155539143279,-5.708578929618447,-6.468089447038958 0.0004694455539143279,-5.708578929618447,-6.456933494427008 -0.0004695755539143279,-5.704899677003666,-6.456933494427008 0.0004697055539143279,-5.708578929618447,-6.460652145297658 -0.0004698355539143279,-5.708578929618447,-6.460652145297658 0.0004699655539143279,-5.704899677003666,-6.460652145297658 -0.0004700955539143279,-5.704899677003666,-6.460652145297658 0.0004702255539143279,-5.701220424388884,-6.464370796168308 -0.0004703555539143279,-5.701220424388884,-6.464370796168308 0.0004704855539143279,-5.704899677003666,-6.464370796168308 -0.0004706155539143279,-5.701220424388884,-6.460652145297658 0.0004707455539143279,-5.701220424388884,-6.460652145297658 -0.0004708755539143279,-5.69386191915932,-6.453214843556358 0.0004710055539143279,-5.69386191915932,-6.449496192685708 -0.0004711355539143279,-5.697541171774102,-6.445777541815057 0.0004712655539143279,-5.686503413929756,-6.445777541815057 -0.0004713955539143279,-5.690182666544539,-6.445777541815057 0.0004715255539143279,-5.686503413929756,-6.445777541815057 -0.0004716555539143279,-5.686503413929756,-6.445777541815057 0.0004717855539143279,-5.690182666544539,-6.445777541815057 -0.0004719155539143279,-5.679144908700193,-6.445777541815057 0.0004720455539143279,-5.682824161314975,-6.445777541815057 -0.0004721755539143279,-5.671786403470629,-6.438340240073757 0.0004723055539143279,-5.675465656085411,-6.438340240073757 -0.0004724355539143279,-5.675465656085411,-6.442058890944407 0.0004725655539143279,-5.675465656085411,-6.442058890944407 -0.0004726955539143279,-5.675465656085411,-6.445777541815057 0.0004728255539143279,-5.682824161314975,-6.442058890944407 -0.0004729555539143279,-5.679144908700193,-6.438340240073757 0.0004730855539143279,-5.675465656085411,-6.434621589203108 -0.0004732155539143279,-5.671786403470629,-6.430902938332458 0.0004733455539143279,-5.675465656085411,-6.442058890944407 -0.0004734755539143279,-5.668107150855848,-6.442058890944407 0.0004736055539143279,-5.671786403470629,-6.438340240073757 -0.0004737355539143279,-5.671786403470629,-6.438340240073757 0.0004738655539143279,-5.668107150855848,-6.438340240073757 -0.0004739955539143279,-5.675465656085411,-6.438340240073757 0.0004741255539143279,-5.668107150855848,-6.438340240073757 -0.0004742555539143279,-5.664427898241065,-6.438340240073757 0.0004743855539143279,-5.664427898241065,-6.434621589203108 -0.0004745155539143279,-5.671786403470629,-6.419746985720507 0.0004746455539143279,-5.657069393011501,-6.434621589203108 -0.0004747755539143279,-5.65339014039672,-6.434621589203108 0.0004749055539143279,-5.664427898241065,-6.434621589203108 -0.0004750355539143279,-5.657069393011501,-6.434621589203108 0.0004751655539143279,-5.660748645626284,-6.430902938332458 -0.0004752955539143279,-5.660748645626284,-6.412309683979207 0.0004754255539143279,-5.65339014039672,-6.408591033108557 -0.0004755555539143279,-5.657069393011501,-6.430902938332458 0.0004756855539143279,-5.65339014039672,-6.434621589203108 -0.0004758155539143279,-5.657069393011501,-6.434621589203108 0.0004759455539143279,-5.646031635167156,-6.445777541815057 -0.0004760755539143279,-5.649710887781938,-6.442058890944407 0.0004762055539143279,-5.649710887781938,-6.434621589203108 -0.0004763355539143279,-5.646031635167156,-6.438340240073757 0.0004764655539143279,-5.642352382552374,-6.438340240073757 -0.0004765955539143279,-5.638673129937593,-6.438340240073757 0.0004767255539143279,-5.638673129937593,-6.438340240073757 -0.0004768555539143279,-5.638673129937593,-6.438340240073757 0.0004769855539143279,-5.631314624708029,-6.438340240073757 -0.0004771155539143279,-5.634993877322811,-6.438340240073757 0.0004772455539143279,-5.638673129937593,-6.442058890944407 -0.0004773755539143279,-5.631314624708029,-6.442058890944407 0.0004775055539143279,-5.634993877322811,-6.445777541815057 -0.0004776355539143279,-5.634993877322811,-6.434621589203108 0.0004777655539143279,-5.631314624708029,-6.434621589203108 -0.0004778955539143279,-5.623956119478465,-6.438340240073757 0.0004780255539143279,-5.620276866863684,-6.434621589203108 -0.0004781555539143279,-5.631314624708029,-6.434621589203108 0.0004782855539143279,-5.623956119478465,-6.430902938332458 -0.0004784155539143279,-5.620276866863684,-6.434621589203108 0.0004785455539143279,-5.623956119478465,-6.438340240073757 -0.0004786755539143279,-5.620276866863684,-6.427184287461807 0.0004788055539143279,-5.616597614248902,-6.434621589203108 -0.0004789355539143279,-5.616597614248902,-6.434621589203108 0.0004790655539143279,-5.616597614248902,-6.434621589203108 -0.0004791955539143279,-5.61291836163412,-6.427184287461807 0.0004793255539143279,-5.61291836163412,-6.434621589203108 -0.0004794555539143279,-5.61291836163412,-6.434621589203108 0.0004795855539143279,-5.61291836163412,-6.430902938332458 -0.0004797155539143279,-5.609239109019338,-6.430902938332458 0.0004798455539143279,-5.601880603789774,-6.430902938332458 -0.0004799755539143279,-5.601880603789774,-6.430902938332458 0.0004801055539143279,-5.598201351174993,-6.427184287461807 -0.0004802355539143279,-5.605559856404557,-6.423465636591157 0.0004803655539143279,-5.601880603789774,-6.427184287461807 -0.0004804955539143279,-5.601880603789774,-6.423465636591157 0.0004806255539143279,-5.598201351174993,-6.416028334849857 -0.0004807555539143279,-5.601880603789774,-6.412309683979207 0.0004808855539143279,-5.59452209856021,-6.408591033108557 -0.0004810155539143279,-5.598201351174993,-6.419746985720507 0.0004811455539143279,-5.601880603789774,-6.419746985720507 -0.0004812755539143279,-5.601880603789774,-6.416028334849857 0.0004814055539143279,-5.601880603789774,-6.423465636591157 -0.0004815355539143279,-5.59452209856021,-6.423465636591157 0.0004816655539143279,-5.59452209856021,-6.416028334849857 -0.0004817955539143279,-5.59452209856021,-6.419746985720507 0.0004819255539143279,-5.59452209856021,-6.419746985720507 -0.0004820555539143279,-5.590842845945429,-6.416028334849857 0.0004821855539143279,-5.590842845945429,-6.412309683979207 -0.0004823155539143279,-5.587163593330647,-6.404872382237906 0.0004824455539143279,-5.583484340715865,-6.300750157859704 -0.0004825755539143279,-5.576125835486302,-5.75410847987414 0.0004827055539143279,-5.572446582871519,-4.913693383107219 -0.0004828355539143279,-5.572446582871519,-3.950562807608844 0.0004829655539143279,-5.568767330256738,-2.883310007732267 -0.0004830955539143279,-5.568767330256738,-1.749121492183988 0.0004832255539143279,-5.565088077641956,-0.5219667048694574 -0.0004833555539143279,-5.561408825027174,0.798154354211326 0.0004834855539143279,-5.557729572412392,2.15174327112796 -0.0004836155539143279,-5.565088077641956,3.33055559712404 0.0004837455539143279,-5.565088077641956,4.185845297373562 -0.0004838755539143279,-5.561408825027174,4.780829436677577 0.0004840055539143279,-5.565088077641956,5.197318334190387 -0.0004841355539143279,-5.568767330256738,5.476217149489144 0.0004842655539143279,-5.576125835486302,5.665868343892299 -0.0004843955539143279,-5.572446582871519,5.784865171753101 0.0004845255539143279,-5.579805088101083,5.855519538295454 -0.0004846555539143279,-5.565088077641956,5.881550094390004 0.0004847855539143279,-5.568767330256738,5.874112792648704 -0.0004849155539143279,-5.576125835486302,5.848082236554154 0.0004850455539143279,-5.554050319797611,5.758834615658551 -0.0004851755539143279,-5.557729572412392,5.7104921543401 0.0004853055539143279,-5.557729572412392,5.6881802491162 -0.0004854355539143279,-5.557729572412392,5.658431042150998 0.0004855655539143279,-5.554050319797611,5.662149693021648 -0.0004856955539143279,-5.546691814568047,5.658431042150998 0.0004858255539143279,-5.550371067182828,5.647275089539049 -0.0004859555539143279,-5.554050319797611,5.639837787797748 0.0004860855539143279,-5.550371067182828,5.643556438668399 -0.0004862155539143279,-5.539333309338483,5.636119136927098 0.0004863455539143279,-5.550371067182828,5.643556438668399 -0.0004864755539143279,-5.535654056723701,5.624963184315148 0.0004866055539143279,-5.543012561953264,5.636119136927098 -0.0004867355539143279,-5.531974804108919,5.632400486056448 0.0004868655539143279,-5.535654056723701,5.647275089539049 -0.0004869955539143279,-5.539333309338483,5.636119136927098 0.0004871255539143279,-5.539333309338483,5.636119136927098 -0.0004872555539143279,-5.535654056723701,5.636119136927098 0.0004873855539143279,-5.535654056723701,5.636119136927098 -0.0004875155539143279,-5.539333309338483,5.636119136927098 0.0004876455539143279,-5.531974804108919,5.639837787797748 -0.0004877755539143279,-5.535654056723701,5.639837787797748 0.0004879055539143279,-5.528295551494137,5.636119136927098 -0.0004880355539143279,-5.524616298879356,5.636119136927098 0.0004881655539143279,-5.528295551494137,5.639837787797748 -0.000488295553914328,-5.528295551494137,5.643556438668399 0.0004884255539143278,-5.524616298879356,5.647275089539049 -0.0004885555539143279,-5.528295551494137,5.643556438668399 0.0004886855539143279,-5.524616298879356,5.647275089539049 -0.0004888155539143279,-5.520937046264573,5.643556438668399 0.0004889455539143279,-5.524616298879356,5.636119136927098 -0.0004890755539143279,-5.524616298879356,5.636119136927098 0.0004892055539143279,-5.524616298879356,5.643556438668399 -0.0004893355539143278,-5.517257793649792,5.643556438668399 0.0004894655539143279,-5.520937046264573,5.643556438668399 -0.0004895955539143279,-5.517257793649792,5.647275089539049 0.0004897255539143279,-5.517257793649792,5.650993740409699 -0.0004898555539143279,-5.51357854103501,5.647275089539049 0.0004899855539143279,-5.51357854103501,5.643556438668399 -0.0004901155539143279,-5.51357854103501,5.654712391280349 0.0004902455539143279,-5.51357854103501,5.647275089539049 -0.000490375553914328,-5.517257793649792,5.643556438668399 0.0004905055539143278,-5.509899288420228,5.639837787797748 -0.0004906355539143279,-5.506220035805446,5.624963184315148 0.0004907655539143279,-5.509899288420228,5.624963184315148 -0.0004908955539143279,-5.509899288420228,5.632400486056448 0.0004910255539143279,-5.502540783190665,5.621244533444497 -0.0004911555539143279,-5.506220035805446,5.624963184315148 0.0004912855539143279,-5.506220035805446,5.624963184315148 -0.0004914155539143279,-5.498861530575883,5.617525882573847 0.0004915455539143279,-5.502540783190665,5.624963184315148 -0.0004916755539143279,-5.498861530575883,5.632400486056448 0.0004918055539143279,-5.506220035805446,5.621244533444497 -0.0004919355539143279,-5.502540783190665,5.621244533444497 0.0004920655539143279,-5.502540783190665,5.617525882573847 -0.0004921955539143279,-5.495182277961101,5.624963184315148 0.0004923255539143279,-5.502540783190665,5.628681835185798 -0.0004924555539143279,-5.495182277961101,5.613807231703198 0.0004925855539143278,-5.487823772731537,5.617525882573847 -0.0004927155539143279,-5.495182277961101,5.610088580832548 0.0004928455539143279,-5.49150302534632,5.610088580832548 -0.0004929755539143279,-5.487823772731537,5.613807231703198 0.0004931055539143279,-5.484144520116756,5.613807231703198 -0.0004932355539143279,-5.484144520116756,5.617525882573847 0.0004933655539143279,-5.487823772731537,5.617525882573847 -0.0004934955539143279,-5.480465267501973,5.617525882573847 0.000493625553914328,-5.476786014887192,5.621244533444497 -0.0004937555539143278,-5.480465267501973,5.617525882573847 0.0004938855539143279,-5.476786014887192,5.617525882573847 -0.0004940155539143279,-5.579805088101083,5.613807231703198 0.0004941455539143279,-5.686503413929756,5.613807231703198 -0.0004942755539143279,-5.738012950536702,5.613807231703198 0.0004944055539143279,-5.771126224069739,5.613807231703198 -0.0004945355539143279,-5.789522487143648,5.613807231703198 0.0004946655539143279,-5.807918750217557,5.621244533444497 -0.0004947955539143279,-5.800560244987993,5.624963184315148 0.0004949255539143279,-5.789522487143648,5.617525882573847 -0.0004950555539143279,-5.785843234528866,5.613807231703198 0.0004951855539143279,-5.789522487143648,5.628681835185798 -0.0004953155539143279,-5.785843234528866,5.643556438668399 0.0004954455539143279,-5.789522487143648,5.647275089539049 -0.0004955755539143279,-5.785843234528866,5.654712391280349 0.000495705553914328,-5.785843234528866,5.654712391280349 -0.0004958355539143278,-5.782163981914084,5.654712391280349 0.0004959655539143279,-5.79320173975843,5.650993740409699 -0.0004960955539143279,-5.782163981914084,5.654712391280349 0.0004962255539143279,-5.782163981914084,5.650993740409699 -0.0004963555539143279,-5.778484729299302,5.654712391280349 0.0004964855539143279,-5.778484729299302,5.665868343892299 -0.0004966155539143279,-5.771126224069739,5.654712391280349 0.0004967455539143279,-5.782163981914084,5.643556438668399 -0.000496875553914328,-5.763767718840175,5.665868343892299 0.0004970055539143278,-5.771126224069739,5.673305645633599 -0.0004971355539143279,-5.760088466225393,5.658431042150998 0.0004972655539143279,-5.767446971454957,5.662149693021648 -0.0004973955539143279,-5.763767718840175,5.662149693021648 0.0004975255539143279,-5.763767718840175,5.658431042150998 -0.0004976555539143279,-5.756409213610612,5.658431042150998 0.0004977855539143279,-5.760088466225393,5.658431042150998 -0.0004979155539143278,-5.75272996099583,5.665868343892299 0.0004980455539143279,-5.75272996099583,5.662149693021648 -0.0004981755539143279,-5.745371455766266,5.669586994762949 0.0004983055539143279,-5.745371455766266,5.665868343892299 -0.0004984355539143279,-5.745371455766266,5.662149693021648 0.0004985655539143279,-5.741692203151485,5.662149693021648 -0.0004986955539143279,-5.749050708381048,5.658431042150998 0.0004988255539143279,-5.741692203151485,5.669586994762949 -0.000498955553914328,-5.741692203151485,5.669586994762949 0.0004990855539143278,-5.738012950536702,5.665868343892299 -0.0004992155539143279,-5.738012950536702,5.662149693021648 0.0004993455539143279,-5.738012950536702,5.665868343892299 -0.0004994755539143279,-5.738012950536702,5.662149693021648 0.0004996055539143279,-5.730654445307139,5.665868343892299 -0.0004997355539143279,-5.734333697921921,5.665868343892299 0.0004998655539143279,-5.726975192692357,5.669586994762949 -0.0004999955539143279,-5.730654445307139,5.669586994762949 0.000500125553914328,-5.730654445307139,5.669586994762949 -0.0005002555539143278,-5.730654445307139,5.662149693021648 0.0005003855539143279,-5.726975192692357,5.654712391280349 -0.0005005155539143279,-5.726975192692357,5.643556438668399 0.0005006455539143279,-5.723295940077575,5.647275089539049 -0.0005007755539143279,-5.723295940077575,5.647275089539049 0.0005009055539143279,-5.723295940077575,5.647275089539049 -0.0005010355539143279,-5.719616687462793,5.647275089539049 0.0005011655539143278,-5.715937434848011,5.647275089539049 -0.0005012955539143279,-5.71225818223323,5.639837787797748 0.0005014255539143279,-5.715937434848011,5.639837787797748 -0.0005015555539143279,-5.71225818223323,5.639837787797748 0.0005016855539143279,-5.71225818223323,5.643556438668399 -0.0005018155539143279,-5.71225818223323,5.647275089539049 0.0005019455539143279,-5.708578929618447,5.636119136927098 -0.0005020755539143279,-5.71225818223323,5.639837787797748 0.000502205553914328,-5.715937434848011,5.643556438668399 -0.0005023355539143278,-5.71225818223323,5.639837787797748 0.0005024655539143279,-5.708578929618447,5.639837787797748 -0.0005025955539143279,-5.71225818223323,5.639837787797748 0.0005027255539143279,-5.715937434848011,5.643556438668399 -0.0005028555539143279,-5.697541171774102,5.632400486056448 0.0005029855539143279,-5.704899677003666,5.643556438668399 -0.0005031155539143279,-5.708578929618447,5.636119136927098 0.0005032455539143279,-5.701220424388884,5.639837787797748 -0.000503375553914328,-5.697541171774102,5.639837787797748 0.0005035055539143279,-5.697541171774102,5.636119136927098 -0.0005036355539143279,-5.704899677003666,5.636119136927098 0.0005037655539143279,-5.697541171774102,5.636119136927098 -0.0005038955539143279,-5.697541171774102,5.639837787797748 0.0005040255539143279,-5.697541171774102,5.639837787797748 -0.0005041555539143279,-5.701220424388884,5.643556438668399 0.0005042855539143279,-5.686503413929756,5.624963184315148 -0.0005044155539143278,-5.690182666544539,5.639837787797748 0.0005045455539143279,-5.686503413929756,5.632400486056448 -0.0005046755539143279,-5.686503413929756,5.639837787797748 0.0005048055539143279,-5.686503413929756,5.610088580832548 -0.0005049355539143279,-5.682824161314975,5.617525882573847 0.0005050655539143279,-5.682824161314975,5.636119136927098 -0.0005051955539143279,-5.686503413929756,5.647275089539049 0.0005053255539143279,-5.682824161314975,5.647275089539049 -0.000505455553914328,-5.686503413929756,5.650993740409699 0.0005055855539143278,-5.675465656085411,5.654712391280349 -0.0005057155539143279,-5.679144908700193,5.654712391280349 0.0005058455539143279,-5.675465656085411,5.658431042150998 -0.0005059755539143279,-5.675465656085411,5.654712391280349 0.0005061055539143279,-5.675465656085411,5.662149693021648 -0.0005062355539143279,-5.675465656085411,5.662149693021648 0.0005063655539143279,-5.668107150855848,5.662149693021648 -0.0005064955539143279,-5.668107150855848,5.665868343892299 0.0005066255539143279,-5.671786403470629,5.658431042150998 -0.0005067555539143279,-5.671786403470629,5.662149693021648 0.0005068855539143279,-5.671786403470629,5.662149693021648 -0.0005070155539143279,-5.671786403470629,5.658431042150998 0.0005071455539143279,-5.671786403470629,5.650993740409699 -0.0005072755539143279,-5.668107150855848,5.658431042150998 0.0005074055539143279,-5.664427898241065,5.658431042150998 -0.000507535553914328,-5.660748645626284,5.662149693021648 0.0005076655539143278,-5.657069393011501,5.658431042150998 -0.0005077955539143279,-5.660748645626284,5.662149693021648 0.0005079255539143279,-5.657069393011501,5.658431042150998 -0.0005080555539143279,-5.657069393011501,5.665868343892299 0.0005081855539143279,-5.660748645626284,5.669586994762949 -0.0005083155539143279,-5.65339014039672,5.658431042150998 0.0005084455539143279,-5.660748645626284,5.665868343892299 -0.0005085755539143279,-5.65339014039672,5.658431042150998 0.000508705553914328,-5.65339014039672,5.673305645633599 -0.0005088355539143278,-5.646031635167156,5.662149693021648 0.0005089655539143279,-5.646031635167156,5.669586994762949 -0.0005090955539143279,-5.642352382552374,5.665868343892299 0.0005092255539143279,-5.634993877322811,5.669586994762949 -0.0005093555539143279,-5.642352382552374,5.665868343892299 0.0005094855539143279,-5.642352382552374,5.665868343892299 -0.0005096155539143279,-5.638673129937593,5.665868343892299 0.0005097455539143279,-5.638673129937593,5.662149693021648 -0.0005098755539143279,-5.627635372093247,5.673305645633599 0.0005100055539143279,-5.631314624708029,5.669586994762949 -0.0005101355539143279,-5.631314624708029,5.669586994762949 0.0005102655539143279,-5.627635372093247,5.647275089539049 -0.0005103955539143279,-5.627635372093247,5.647275089539049 0.0005105255539143279,-5.631314624708029,5.639837787797748 -0.0005106555539143279,-5.627635372093247,5.639837787797748 0.000510785553914328,-5.623956119478465,5.639837787797748 -0.0005109155539143278,-5.631314624708029,5.636119136927098 0.0005110455539143279,-5.631314624708029,5.632400486056448 -0.0005111755539143279,-5.627635372093247,5.632400486056448 0.0005113055539143279,-5.631314624708029,5.632400486056448 -0.0005114355539143279,-5.634993877322811,5.632400486056448 0.0005115655539143279,-5.623956119478465,5.624963184315148 -0.0005116955539143279,-5.623956119478465,5.628681835185798 0.0005118255539143279,-5.627635372093247,5.632400486056448 -0.000511955553914328,-5.623956119478465,5.639837787797748 0.0005120855539143278,-5.616597614248902,5.636119136927098 -0.0005122155539143279,-5.620276866863684,5.632400486056448 0.0005123455539143279,-5.620276866863684,5.632400486056448 -0.0005124755539143279,-5.616597614248902,5.628681835185798 0.0005126055539143279,-5.61291836163412,5.632400486056448 -0.0005127355539143279,-5.620276866863684,5.632400486056448 0.0005128655539143279,-5.609239109019338,5.632400486056448 -0.0005129955539143278,-5.609239109019338,5.628681835185798 0.0005131255539143279,-5.609239109019338,5.624963184315148 -0.0005132555539143279,-5.609239109019338,5.617525882573847 0.0005133855539143279,-5.601880603789774,5.624963184315148 -0.0005135155539143279,-5.601880603789774,5.621244533444497 0.0005136455539143279,-5.598201351174993,5.624963184315148 -0.0005137755539143279,-5.609239109019338,5.621244533444497 0.0005139055539143279,-5.598201351174993,5.621244533444497 -0.000514035553914328,-5.59452209856021,5.617525882573847 0.0005141655539143278,-5.598201351174993,5.621244533444497 -0.0005142955539143279,-5.601880603789774,5.621244533444497 0.0005144255539143279,-5.598201351174993,5.624963184315148 -0.0005145555539143279,-5.61291836163412,5.602651279091247 0.0005146855539143279,-5.576125835486302,5.613807231703198 -0.0005148155539143279,-5.590842845945429,5.624963184315148 0.0005149455539143279,-5.590842845945429,5.632400486056448 -0.0005150755539143279,-5.587163593330647,5.636119136927098 0.000515205553914328,-5.590842845945429,5.639837787797748 -0.0005153355539143279,-5.583484340715865,5.647275089539049 0.0005154655539143279,-5.579805088101083,5.639837787797748 -0.0005155955539143279,-5.579805088101083,5.643556438668399 0.0005157255539143279,-5.579805088101083,5.647275089539049 -0.0005158555539143279,-5.583484340715865,5.647275089539049 0.0005159855539143279,-5.576125835486302,5.650993740409699 -0.0005161155539143279,-5.579805088101083,5.654712391280349 0.0005162455539143278,-5.587163593330647,5.643556438668399 -0.0005163755539143279,-5.572446582871519,5.647275089539049 0.0005165055539143279,-5.576125835486302,5.650993740409699 -0.0005166355539143279,-5.579805088101083,5.643556438668399 0.0005167655539143279,-5.579805088101083,5.654712391280349 -0.0005168955539143279,-5.576125835486302,5.650993740409699 0.0005170255539143279,-5.576125835486302,5.643556438668399 -0.0005171555539143279,-5.568767330256738,5.647275089539049 0.000517285553914328,-5.572446582871519,5.650993740409699 -0.0005174155539143278,-5.572446582871519,5.654712391280349 0.0005175455539143279,-5.572446582871519,5.654712391280349 -0.0005176755539143279,-5.568767330256738,5.654712391280349 0.0005178055539143279,-5.561408825027174,5.647275089539049 -0.0005179355539143279,-5.561408825027174,5.650993740409699 0.0005180655539143279,-5.561408825027174,5.654712391280349 -0.0005181955539143279,-5.565088077641956,5.647275089539049 0.0005183255539143279,-5.557729572412392,5.654712391280349 -0.0005184555539143279,-5.561408825027174,5.647275089539049 0.0005185855539143279,-5.557729572412392,5.647275089539049 -0.0005187155539143279,-5.561408825027174,5.650993740409699 0.0005188455539143279,-5.554050319797611,5.654712391280349 -0.0005189755539143279,-5.554050319797611,5.650993740409699 0.0005191055539143279,-5.550371067182828,5.654712391280349 -0.0005192355539143279,-5.550371067182828,5.654712391280349 0.000519365553914328,-5.554050319797611,5.654712391280349 -0.0005194955539143278,-5.554050319797611,5.654712391280349 0.0005196255539143279,-5.546691814568047,5.654712391280349 -0.0005197555539143279,-5.554050319797611,5.650993740409699 0.0005198855539143279,-5.550371067182828,5.654712391280349 -0.0005200155539143279,-5.543012561953264,5.647275089539049 0.0005201455539143279,-5.546691814568047,5.632400486056448 -0.0005202755539143279,-5.539333309338483,5.632400486056448 0.0005204055539143279,-5.543012561953264,5.628681835185798 -0.000520535553914328,-5.550371067182828,5.628681835185798 0.0005206655539143278,-5.531974804108919,5.621244533444497 -0.0005207955539143279,-5.539333309338483,5.628681835185798 0.0005209255539143279,-5.531974804108919,5.632400486056448 -0.0005210555539143279,-5.531974804108919,5.628681835185798 0.0005211855539143279,-5.539333309338483,5.621244533444497 -0.0005213155539143279,-5.528295551494137,5.624963184315148 0.0005214455539143279,-5.531974804108919,5.617525882573847 -0.0005215755539143279,-5.531974804108919,5.621244533444497 0.0005217055539143279,-5.531974804108919,5.624963184315148 -0.0005218355539143279,-5.531974804108919,5.617525882573847 0.0005219655539143279,-5.543012561953264,5.621244533444497 -0.0005220955539143279,-5.520937046264573,5.613807231703198 0.0005222255539143279,-5.524616298879356,5.621244533444497 -0.0005223555539143279,-5.524616298879356,5.617525882573847 0.0005224855539143279,-5.528295551494137,5.624963184315148 -0.000522615553914328,-5.524616298879356,5.610088580832548 0.0005227455539143278,-5.524616298879356,5.613807231703198 -0.0005228755539143279,-5.524616298879356,5.613807231703198 0.0005230055539143279,-5.520937046264573,5.621244533444497 -0.0005231355539143279,-5.517257793649792,5.617525882573847 0.0005232655539143279,-5.517257793649792,5.613807231703198 -0.0005233955539143279,-5.51357854103501,5.613807231703198 0.0005235255539143279,-5.517257793649792,5.610088580832548 -0.0005236555539143279,-5.509899288420228,5.610088580832548 0.000523785553914328,-5.509899288420228,5.617525882573847 -0.0005239155539143278,-5.51357854103501,5.610088580832548 0.0005240455539143279,-5.506220035805446,5.606369929961898 -0.0005241755539143279,-5.509899288420228,5.606369929961898 0.0005243055539143279,-5.502540783190665,5.602651279091247 -0.0005244355539143279,-5.506220035805446,5.595213977349947 0.0005245655539143279,-5.49150302534632,5.587776675608647 -0.0005246955539143279,-5.502540783190665,5.602651279091247 0.0005248255539143278,-5.498861530575883,5.610088580832548 -0.0005249555539143279,-5.498861530575883,5.621244533444497 0.0005250855539143279,-5.498861530575883,5.624963184315148 -0.0005252155539143279,-5.495182277961101,5.624963184315148 0.0005253455539143279,-5.495182277961101,5.628681835185798 -0.0005254755539143279,-5.498861530575883,5.636119136927098 0.0005256055539143279,-5.495182277961101,5.628681835185798 -0.0005257355539143279,-5.502540783190665,5.628681835185798 0.000525865553914328,-5.495182277961101,5.632400486056448 -0.0005259955539143278,-5.49150302534632,5.639837787797748 0.0005261255539143279,-5.49150302534632,5.639837787797748 -0.0005262555539143279,-5.49150302534632,5.639837787797748 0.0005263855539143279,-5.487823772731537,5.639837787797748 -0.0005265155539143279,-5.49150302534632,5.650993740409699 0.0005266455539143279,-5.484144520116756,5.639837787797748 -0.0005267755539143279,-5.480465267501973,5.647275089539049 0.0005269055539143279,-5.480465267501973,5.643556438668399 -0.000527035553914328,-5.476786014887192,5.639837787797748 0.0005271655539143279,-5.476786014887192,5.643556438668399 -0.0005272955539143279,-5.524616298879356,5.639837787797748 0.0005274255539143279,-5.642352382552374,5.639837787797748 -0.0005275555539143279,-5.715937434848011,5.639837787797748 0.0005276855539143279,-5.760088466225393,5.632400486056448 -0.0005278155539143279,-5.782163981914084,5.639837787797748 0.0005279455539143279,-5.796880992373212,5.643556438668399 -0.0005280755539143278,-5.796880992373212,5.639837787797748 0.0005282055539143279,-5.782163981914084,5.647275089539049 -0.0005283355539143279,-5.782163981914084,5.647275089539049 0.0005284655539143279,-5.774805476684521,5.643556438668399 -0.0005285955539143279,-5.774805476684521,5.639837787797748 0.0005287255539143279,-5.774805476684521,5.643556438668399 -0.0005288555539143279,-5.778484729299302,5.647275089539049 0.0005289855539143279,-5.771126224069739,5.647275089539049 -0.000529115553914328,-5.774805476684521,5.643556438668399 0.0005292455539143278,-5.771126224069739,5.647275089539049 -0.0005293755539143279,-5.774805476684521,5.643556438668399 0.0005295055539143279,-5.774805476684521,5.639837787797748 -0.0005296355539143279,-5.771126224069739,5.643556438668399 0.0005297655539143279,-5.778484729299302,5.643556438668399 -0.0005298955539143279,-5.771126224069739,5.632400486056448 0.0005300255539143279,-5.771126224069739,5.621244533444497 -0.0005301555539143279,-5.767446971454957,5.610088580832548 0.0005302855539143279,-5.771126224069739,5.613807231703198 -0.0005304155539143279,-5.771126224069739,5.613807231703198 0.0005305455539143279,-5.763767718840175,5.602651279091247 -0.0005306755539143279,-5.767446971454957,5.602651279091247 0.0005308055539143279,-5.760088466225393,5.610088580832548 -0.0005309355539143279,-5.767446971454957,5.602651279091247 0.0005310655539143279,-5.75272996099583,5.606369929961898 -0.000531195553914328,-5.760088466225393,5.610088580832548 0.0005313255539143278,-5.760088466225393,5.598932628220597 -0.0005314555539143279,-5.749050708381048,5.598932628220597 0.0005315855539143279,-5.749050708381048,5.598932628220597 -0.0005317155539143279,-5.749050708381048,5.602651279091247 0.0005318455539143279,-5.745371455766266,5.595213977349947 -0.0005319755539143279,-5.75272996099583,5.595213977349947 0.0005321055539143279,-5.745371455766266,5.598932628220597 -0.0005322355539143279,-5.745371455766266,5.591495326479297 0.000532365553914328,-5.760088466225393,5.580339373867346 -0.0005324955539143278,-5.715937434848011,5.617525882573847 0.0005326255539143279,-5.741692203151485,5.610088580832548 -0.0005327555539143279,-5.734333697921921,5.598932628220597 0.0005328855539143279,-5.734333697921921,5.598932628220597 -0.0005330155539143279,-5.734333697921921,5.602651279091247 0.0005331455539143279,-5.738012950536702,5.595213977349947 -0.0005332755539143279,-5.730654445307139,5.595213977349947 0.0005334055539143279,-5.730654445307139,5.595213977349947 -0.0005335355539143279,-5.726975192692357,5.595213977349947 0.0005336655539143279,-5.734333697921921,5.591495326479297 -0.0005337955539143279,-5.723295940077575,5.595213977349947 0.0005339255539143279,-5.719616687462793,5.602651279091247 -0.0005340555539143279,-5.726975192692357,5.591495326479297 0.0005341855539143279,-5.734333697921921,5.468779847747844 -0.0005343155539143279,-5.734333697921921,4.977917932822032 0.000534445553914328,-5.738012950536702,4.13750283605511 -0.0005345755539143278,-5.734333697921921,3.103717894014384 0.0005347055539143279,-5.734333697921921,1.954654774983505 -0.0005348355539143279,-5.730654445307139,0.7869984015993757 0.0005349655539143279,-5.730654445307139,-0.4178444804912548 -0.0005350955539143279,-5.730654445307139,-1.633843315193836 0.0005352255539143279,-5.734333697921921,-2.920496516438768 -0.000535355553914328,-5.730654445307132,-3.980312014574698 0.0005354855539143279,-5.723295940077575,-4.698011632609513 -0.000535615553914328,-5.715937434848011,-5.188873547535326 0.0005357455539143278,-5.719616687462793,-5.534708078505784 -0.0005358755539143279,-5.715937434848011,-5.77642038509804 0.0005360055539143279,-5.708578929618447,-5.951196976018595 -0.0005361355539143279,-5.715937434848011,-6.070193803879398 0.0005362655539143279,-5.71225818223323,-6.166878726516301 -0.0005363955539143279,-5.71225818223323,-6.233814442188002 0.000536525553914328,-5.708578929618447,-6.285875554377103 -0.0005366555539143278,-5.708578929618447,-6.319343412212954 0.0005367855539143279,-5.708578929618447,-6.349092619178156 -0.0005369155539143278,-5.712258182233226,-6.363967222660742 0.0005370455539143279,-5.701220424388884,-6.382560477014006 -0.0005371755539143279,-5.704899677003666,-6.393716429625957 0.0005373055539143279,-5.704899677003666,-6.404872382237906 -0.0005374355539143279,-5.697541171774102,-6.408591033108557 0.0005375655539143279,-5.69386191915932,-6.412309683979207 -0.000537695553914328,-5.697541171774102,-6.412309683979207 0.0005378255539143278,-5.701220424388884,-6.419746985720507 -0.0005379555539143279,-5.701220424388884,-6.423465636591157 0.0005380855539143279,-5.69386191915932,-6.419746985720507 -0.0005382155539143279,-5.697541171774102,-6.427184287461807 0.0005383455539143279,-5.697541171774102,-6.419746985720507 -0.0005384755539143279,-5.686503413929756,-6.427184287461807 0.000538605553914328,-5.690182666544535,-6.419746985720507 -0.0005387355539143279,-5.686503413929756,-6.419746985720507 0.000538865553914328,-5.682824161314975,-6.416028334849857 -0.0005389955539143278,-5.679144908700193,-6.430902938332458 0.0005391255539143279,-5.679144908700193,-6.427184287461807 -0.0005392555539143279,-5.679144908700193,-6.427184287461807 0.0005393855539143279,-5.686503413929756,-6.430902938332458 -0.0005395155539143279,-5.679144908700193,-6.419746985720507 0.0005396455539143279,-5.679144908700193,-6.423465636591157 -0.000539775553914328,-5.686503413929756,-6.408591033108557 0.0005399055539143278,-5.668107150855848,-6.419746985720507 -0.0005400355539143279,-5.671786403470629,-6.416028334849857 0.0005401655539143278,-5.675465656085407,-6.42346563659115 -0.0005402955539143279,-5.668107150855848,-6.408591033108557 0.0005404255539143279,-5.664427898241065,-6.416028334849857 -0.0005405555539143279,-5.668107150855848,-6.423465636591157 0.0005406855539143279,-5.664427898241065,-6.423465636591157 -0.0005408155539143279,-5.664427898241065,-6.419746985720507 0.000540945553914328,-5.660748645626284,-6.423465636591157 -0.0005410755539143278,-5.668107150855848,-6.423465636591157 0.0005412055539143279,-5.664427898241065,-6.423465636591157 -0.0005413355539143279,-5.664427898241065,-6.416028334849857 0.0005414655539143279,-5.660748645626284,-6.423465636591157 -0.0005415955539143279,-5.660748645626284,-6.416028334849857 0.0005417255539143279,-5.664427898241065,-6.419746985720507 -0.000541855553914328,-5.657069393011505,-6.41602833484985 0.0005419855539143279,-5.660748645626284,-6.408591033108557 -0.0005421155539143279,-5.65339014039672,-6.412309683979207 0.0005422455539143278,-5.65339014039672,-6.416028334849857 -0.0005423755539143279,-5.660748645626284,-6.416028334849857 0.0005425055539143279,-5.657069393011501,-6.412309683979207 -0.0005426355539143279,-5.657069393011501,-6.416028334849857 0.0005427655539143279,-5.657069393011501,-6.419746985720507 -0.0005428955539143279,-5.649710887781938,-6.412309683979207 0.000543025553914328,-5.649710887781938,-6.419746985720507 -0.0005431555539143278,-5.646031635167156,-6.419746985720507 0.0005432855539143279,-5.649710887781938,-6.412309683979207 -0.0005434155539143279,-5.657069393011501,-6.416028334849857 0.0005435455539143279,-5.642352382552374,-6.416028334849857 -0.0005436755539143279,-5.642352382552374,-6.412309683979207 0.0005438055539143279,-5.642352382552374,-6.419746985720507 -0.0005439355539143279,-5.638673129937593,-6.419746985720507 0.0005440655539143279,-5.638673129937593,-6.401153731367256 -0.000544195553914328,-5.638673129937593,-6.397435080496606 0.0005443255539143278,-5.638673129937593,-6.401153731367256 -0.0005444555539143279,-5.634993877322811,-6.423465636591157 0.0005445855539143279,-5.634993877322811,-6.423465636591157 -0.0005447155539143279,-5.638673129937593,-6.423465636591157 0.0005448455539143279,-5.631314624708029,-6.423465636591157 -0.0005449755539143279,-5.631314624708029,-6.423465636591157 0.000545105553914328,-5.634993877322811,-6.427184287461807 -0.0005452355539143279,-5.631314624708029,-6.427184287461807 0.0005453655539143279,-5.631314624708029,-6.427184287461807 -0.0005454955539143278,-5.623956119478472,-6.419746985720514 0.0005456255539143279,-5.620276866863684,-6.419746985720507 -0.0005457555539143279,-5.623956119478465,-6.423465636591157 0.0005458855539143279,-5.620276866863684,-6.430902938332458 -0.0005460155539143279,-5.620276866863684,-6.430902938332458 0.0005461455539143279,-5.616597614248902,-6.434621589203108 -0.000546275553914328,-5.605559856404557,-6.427184287461807 0.0005464055539143278,-5.61291836163412,-6.430902938332458 -0.0005465355539143279,-5.61291836163412,-6.430902938332458 0.0005466655539143279,-5.61291836163412,-6.430902938332458 -0.0005467955539143279,-5.609239109019338,-6.434621589203108 0.0005469255539143279,-5.61291836163412,-6.434621589203108 -0.0005470555539143279,-5.605559856404557,-6.434621589203108 0.000547185553914328,-5.609239109019335,-6.430902938332461 -0.0005473155539143279,-5.605559856404557,-6.434621589203108 0.000547445553914328,-5.601880603789774,-6.434621589203108 -0.0005475755539143278,-5.605559856404557,-6.430902938332458 0.0005477055539143279,-5.605559856404557,-6.434621589203108 -0.0005478355539143279,-5.598201351174993,-6.434621589203108 0.0005479655539143279,-5.598201351174993,-6.430902938332458 -0.0005480955539143279,-5.59452209856021,-6.438340240073757 0.0005482255539143279,-5.590842845945429,-6.434621589203108 -0.000548355553914328,-5.590842845945429,-6.434621589203108 0.0005484855539143278,-5.59452209856021,-6.438340240073757 -0.0005486155539143279,-5.590842845945429,-6.438340240073757 0.0005487455539143278,-5.590842845945429,-6.438340240073757 -0.0005488755539143279,-5.587163593330647,-6.442058890944407 0.0005490055539143279,-5.583484340715865,-6.438340240073757 -0.0005491355539143279,-5.590842845945429,-6.438340240073757 0.0005492655539143279,-5.587163593330647,-6.442058890944407 -0.0005493955539143279,-5.590842845945429,-6.434621589203108 0.000549525553914328,-5.579805088101083,-6.416028334849857 -0.0005496555539143278,-5.579805088101083,-6.416028334849857 0.0005497855539143279,-5.579805088101083,-6.416028334849857 -0.0005499155539143279,-5.579805088101083,-6.416028334849857 0.0005500455539143279,-5.583484340715865,-6.412309683979207 -0.0005501755539143279,-5.605559856404557,-6.445777541815057 0.0005503055539143279,-5.543012561953264,-6.389997778755307 -0.000550435553914328,-5.576125835486302,-6.419746985720503 0.0005505655539143279,-5.576125835486302,-6.416028334849857 -0.000550695553914328,-5.572446582871519,-6.412309683979207 0.0005508255539143278,-5.572446582871519,-6.412309683979207 -0.0005509555539143279,-5.561408825027174,-6.412309683979207 0.0005510855539143279,-5.565088077641956,-6.412309683979207 -0.0005512155539143279,-5.565088077641956,-6.416028334849857 0.0005513455539143279,-5.561408825027174,-6.412309683979207 -0.0005514755539143279,-5.561408825027174,-6.416028334849857 0.000551605553914328,-5.550371067182828,-6.416028334849857 -0.0005517355539143278,-5.561408825027174,-6.404872382237906 0.0005518655539143279,-5.550371067182828,-6.416028334849857 -0.0005519955539143278,-5.550371067182828,-6.416028334849857 0.0005521255539143279,-5.554050319797611,-6.419746985720507 -0.0005522555539143279,-5.546691814568047,-6.412309683979207 0.0005523855539143279,-5.546691814568047,-6.412309683979207 -0.0005525155539143279,-5.550371067182828,-6.416028334849857 0.0005526455539143279,-5.554050319797611,-6.416028334849857 -0.000552775553914328,-5.554050319797611,-6.416028334849857 0.0005529055539143278,-5.554050319797611,-6.416028334849857 -0.0005530355539143279,-5.550371067182828,-6.423465636591157 0.0005531655539143279,-5.550371067182828,-6.412309683979207 -0.0005532955539143279,-5.550371067182828,-6.412309683979207 0.0005534255539143279,-5.550371067182828,-6.412309683979207 -0.0005535555539143279,-5.546691814568047,-6.404872382237906 0.000553685553914328,-5.546691814568047,-6.408591033108547 -0.0005538155539143279,-5.546691814568047,-6.397435080496606 0.0005539455539143279,-5.550371067182828,-6.382560477014006 -0.0005540755539143278,-5.550371067182828,-6.393716429625957 0.0005542055539143279,-5.546691814568047,-6.404872382237906 -0.0005543355539143279,-5.539333309338483,-6.412309683979207 0.0005544655539143279,-5.543012561953264,-6.412309683979207 -0.0005545955539143279,-5.535654056723701,-6.412309683979207 0.0005547255539143279,-5.539333309338483,-6.416028334849857 -0.000554855553914328,-5.531974804108919,-6.416028334849857 0.0005549855539143278,-5.539333309338483,-6.412309683979207 -0.0005551155539143279,-5.535654056723701,-6.408591033108557 0.0005552455539143279,-5.539333309338483,-6.412309683979207 -0.0005553755539143279,-5.535654056723701,-6.423465636591157 0.0005555055539143279,-5.535654056723701,-6.416028334849857 -0.0005556355539143279,-5.528295551494137,-6.412309683979207 0.0005557655539143279,-5.535654056723701,-6.412309683979207 -0.0005558955539143279,-5.528295551494137,-6.408591033108557 0.000556025553914328,-5.524616298879356,-6.416028334849857 -0.0005561555539143278,-5.531974804108919,-6.412309683979207 0.0005562855539143279,-5.51357854103501,-6.412309683979207 -0.0005564155539143279,-5.520937046264573,-6.408591033108557 0.0005565455539143279,-5.520937046264573,-6.412309683979207 -0.0005566755539143279,-5.517257793649792,-6.419746985720507 0.0005568055539143279,-5.517257793649792,-6.412309683979207 -0.000556935553914328,-5.517257793649792,-6.419746985720507 0.0005570655539143279,-5.520937046264573,-6.416028334849857 -0.0005571955539143279,-5.517257793649792,-6.412309683979207 0.0005573255539143278,-5.517257793649792,-6.416028334849857 -0.0005574555539143279,-5.517257793649792,-6.416028334849857 0.0005575855539143279,-5.524616298879356,-6.408591033108557 -0.0005577155539143279,-5.509899288420228,-6.412309683979207 0.0005578455539143279,-5.509899288420228,-6.412309683979207 -0.0005579755539143279,-5.509899288420228,-6.408591033108557 0.000558105553914328,-5.51357854103501,-6.408591033108557 -0.0005582355539143278,-5.506220035805446,-6.412309683979207 0.0005583655539143279,-5.506220035805446,-6.408591033108557 -0.0005584955539143279,-5.506220035805446,-6.416028334849857 0.0005586255539143279,-5.506220035805446,-6.408591033108557 -0.0005587555539143279,-5.502540783190665,-6.404872382237906 0.0005588855539143279,-5.502540783190665,-6.408591033108557 -0.000559015553914328,-5.502540783190665,-6.408591033108557 0.0005591455539143279,-5.502540783190665,-6.408591033108557 -0.000559275553914328,-5.495182277961101,-6.393716429625957 0.0005594055539143278,-5.502540783190665,-6.393716429625957 -0.0005595355539143279,-5.49150302534632,-6.393716429625957 0.0005596655539143279,-5.487823772731537,-6.397435080496606 -0.0005597955539143279,-5.49150302534632,-6.393716429625957 0.0005599255539143279,-5.487823772731537,-6.393716429625957 -0.0005600555539143279,-5.49150302534632,-6.389997778755307 0.000560185553914328,-5.487823772731537,-6.393716429625957 -0.0005603155539143278,-5.487823772731537,-6.386279127884656 0.0005604455539143279,-5.480465267501973,-6.382560477014006 -0.0005605755539143278,-5.476786014887192,-6.393716429625957 0.0005607055539143279,-5.484144520116756,-6.386279127884656 -0.0005608355539143279,-5.476786014887192,-6.382560477014006 0.0005609655539143279,-5.49150302534632,-6.389997778755307 -0.0005610955539143279,-5.609239109019338,-6.397435080496606 0.0005612255539143279,-5.69386191915932,-6.401153731367256 -0.000561355553914328,-5.741692203151485,-6.393716429625957 0.0005614855539143278,-5.778484729299302,-6.393716429625957 -0.0005616155539143279,-5.789522487143648,-6.393716429625957 0.0005617455539143279,-5.804239497602776,-6.397435080496606 -0.0005618755539143279,-5.79320173975843,-6.393716429625957 0.0005620055539143279,-5.778484729299302,-6.389997778755307 -0.0005621355539143279,-5.785843234528866,-6.382560477014006 0.000562265553914328,-5.778484729299302,-6.393716429625957 -0.0005623955539143279,-5.778484729299302,-6.389997778755307 0.000562525553914328,-5.782163981914084,-6.389997778755307 -0.0005626555539143278,-5.778484729299302,-6.393716429625957 0.0005627855539143279,-5.778484729299302,-6.389997778755307 -0.0005629155539143279,-5.778484729299302,-6.386279127884656 0.0005630455539143279,-5.774805476684521,-6.378841826143356 -0.0005631755539143279,-5.778484729299302,-6.382560477014006 0.0005633055539143279,-5.774805476684521,-6.375123175272706 -0.000563435553914328,-5.774805476684521,-6.371404524402056 0.0005635655539143278,-5.774805476684521,-6.367685873531405 -0.0005636955539143279,-5.767446971454957,-6.352811270048806 0.0005638255539143278,-5.774805476684521,-6.356529920919455 -0.0005639555539143279,-5.771126224069739,-6.371404524402056 0.0005640855539143279,-5.760088466225393,-6.367685873531405 -0.0005642155539143279,-5.760088466225393,-6.375123175272706 0.0005643455539143279,-5.763767718840175,-6.378841826143356 -0.0005644755539143279,-5.760088466225393,-6.375123175272706 0.000564605553914328,-5.756409213610612,-6.382560477014006 -0.0005647355539143278,-5.760088466225393,-6.382560477014006 0.0005648655539143279,-5.75272996099583,-6.386279127884656 -0.0005649955539143279,-5.756409213610612,-6.386279127884656 0.0005651255539143279,-5.756409213610612,-6.378841826143356 -0.0005652555539143279,-5.749050708381048,-6.382560477014006 0.0005653855539143279,-5.756409213610612,-6.378841826143356 -0.000565515553914328,-5.75272996099583,-6.386279127884656 0.0005656455539143279,-5.75272996099583,-6.386279127884656 -0.0005657755539143279,-5.741692203151485,-6.382560477014006 0.0005659055539143278,-5.745371455766266,-6.389997778755307 -0.0005660355539143279,-5.741692203151485,-6.386279127884656 0.0005661655539143279,-5.749050708381048,-6.386279127884656 -0.0005662955539143279,-5.741692203151485,-6.386279127884656 0.0005664255539143279,-5.741692203151485,-6.382560477014006 -0.0005665555539143279,-5.741692203151485,-6.382560477014006 0.000566685553914328,-5.738012950536702,-6.382560477014006 -0.0005668155539143278,-5.741692203151485,-6.378841826143356 0.0005669455539143279,-5.738012950536702,-6.378841826143356 -0.0005670755539143279,-5.738012950536702,-6.375123175272706 0.0005672055539143279,-5.738012950536702,-6.386279127884656 -0.0005673355539143279,-5.738012950536702,-6.378841826143356 0.0005674655539143279,-5.738012950536702,-6.378841826143356 -0.0005675955539143279,-5.730654445307139,-6.378841826143356 0.0005677255539143279,-5.730654445307139,-6.378841826143356 -0.000567855553914328,-5.730654445307139,-6.375123175272706 0.0005679855539143278,-5.763767718840175,-6.430902938332458 -0.0005681155539143279,-5.682824161314975,-6.334218015695555 0.0005682455539143279,-5.726975192692357,-6.371404524402056 -0.0005683755539143279,-5.723295940077575,-6.378841826143356 0.0005685055539143279,-5.723295940077575,-6.375123175272706 -0.0005686355539143279,-5.719616687462793,-6.378841826143356 0.000568765553914328,-5.723295940077575,-6.382560477014006 -0.0005688955539143279,-5.715937434848011,-6.378841826143356 0.0005690255539143279,-5.715937434848011,-6.367685873531405 -0.0005691555539143278,-5.715937434848011,-6.363967222660755 0.0005692855539143279,-5.71225818223323,-6.371404524402056 -0.0005694155539143279,-5.704899677003666,-6.363967222660755 0.0005695455539143279,-5.715937434848011,-6.360248571790105 -0.0005696755539143279,-5.704899677003666,-6.367685873531405 0.0005698055539143279,-5.708578929618447,-6.363967222660755 -0.000569935553914328,-5.71225818223323,-6.371404524402056 0.0005700655539143278,-5.704899677003666,-6.363967222660755 -0.0005701955539143279,-5.704899677003666,-6.363967222660755 0.0005703255539143279,-5.704899677003666,-6.360248571790105 -0.0005704555539143279,-5.704899677003666,-6.363967222660755 0.0005705855539143279,-5.704899677003666,-6.360248571790105 -0.0005707155539143279,-5.704899677003666,-6.363967222660755 0.000570845553914328,-5.708578929618447,-6.360248571790105 -0.0005709755539143279,-5.697541171774102,-6.356529920919455 0.000571105553914328,-5.701220424388884,-6.356529920919455 -0.0005712355539143278,-5.697541171774102,-6.352811270048806 0.0005713655539143279,-5.69386191915932,-6.356529920919455 -0.0005714955539143279,-5.690182666544539,-6.356529920919455 0.0005716255539143279,-5.69386191915932,-6.356529920919455 -0.0005717555539143279,-5.686503413929756,-6.356529920919455 0.0005718855539143279,-5.686503413929756,-6.356529920919455 -0.000572015553914328,-5.69386191915932,-6.352811270048806 0.0005721455539143278,-5.686503413929756,-6.349092619178156 -0.0005722755539143279,-5.679144908700193,-6.352811270048806 0.0005724055539143278,-5.682824161314975,-6.352811270048806 -0.0005725355539143279,-5.679144908700193,-6.349092619178156 0.0005726655539143279,-5.682824161314975,-6.349092619178156 -0.0005727955539143279,-5.679144908700193,-6.349092619178156 0.0005729255539143279,-5.682824161314975,-6.352811270048806 -0.0005730555539143279,-5.682824161314975,-6.349092619178156 0.000573185553914328,-5.682824161314975,-6.352811270048806 -0.0005733155539143278,-5.675465656085411,-6.352811270048806 0.0005734455539143279,-5.675465656085411,-6.326780713954254 -0.0005735755539143279,-5.675465656085411,-6.334218015695555 0.0005737055539143279,-5.675465656085411,-6.341655317436855 -0.0005738355539143279,-5.675465656085411,-6.345373968307505 0.0005739655539143279,-5.671786403470629,-6.360248571790105 -0.000574095553914328,-5.668107150855848,-6.337936666566205 0.0005742255539143279,-5.668107150855848,-6.341655317436855 -0.000574355553914328,-5.668107150855848,-6.349092619178156 0.0005744855539143278,-5.664427898241065,-6.349092619178156 -0.0005746155539143279,-5.664427898241065,-6.352811270048806 0.0005747455539143279,-5.660748645626284,-6.345373968307505 -0.0005748755539143279,-5.660748645626284,-6.352811270048806 0.0005750055539143279,-5.660748645626284,-6.345373968307505 -0.0005751355539143279,-5.664427898241065,-6.349092619178156 0.000575265553914328,-5.660748645626284,-6.352811270048806 -0.0005753955539143278,-5.668107150855848,-6.349092619178156 0.0005755255539143279,-5.646031635167156,-6.356529920919455 -0.0005756555539143278,-5.65339014039672,-6.349092619178156 0.0005757855539143279,-5.649710887781938,-6.349092619178156 -0.0005759155539143279,-5.65339014039672,-6.349092619178156 0.0005760455539143279,-5.646031635167156,-6.349092619178156 -0.0005761755539143279,-5.646031635167156,-6.341655317436855 0.0005763055539143279,-5.646031635167156,-6.341655317436855 -0.000576435553914328,-5.646031635167156,-6.345373968307505 0.0005765655539143278,-5.638673129937593,-6.349092619178156 -0.0005766955539143279,-5.638673129937593,-6.352811270048806 0.0005768255539143279,-5.646031635167156,-6.352811270048806 -0.0005769555539143279,-5.649710887781938,-6.352811270048806 0.0005770855539143279,-5.642352382552374,-6.352811270048806 -0.0005772155539143279,-5.638673129937593,-6.345373968307505 0.000577345553914328,-5.631314624708029,-6.349092619178156 -0.0005774755539143279,-5.631314624708029,-6.349092619178156 0.0005776055539143279,-5.638673129937593,-6.349092619178156 -0.0005777355539143278,-5.634993877322811,-6.349092619178156 0.0005778655539143279,-5.631314624708029,-6.349092619178156 -0.0005779955539143279,-5.631314624708029,-6.345373968307505 0.0005781255539143279,-5.627635372093247,-6.352811270048806 -0.0005782555539143279,-5.631314624708029,-6.345373968307505 0.0005783855539143279,-5.631314624708029,-6.345373968307505 -0.000578515553914328,-5.623956119478465,-6.341655317436855 0.0005786455539143278,-5.631314624708029,-6.341655317436855 -0.0005787755539143279,-5.623956119478465,-6.334218015695555 0.0005789055539143279,-5.623956119478465,-6.330499364824905 -0.0005790355539143279,-5.620276866863684,-6.334218015695555 0.0005791655539143279,-5.620276866863684,-6.323062063083604 -0.0005792955539143279,-5.627635372093247,-6.334218015695555 0.0005794255539143279,-5.623956119478465,-6.330499364824905 -0.0005795555539143279,-5.620276866863684,-6.334218015695555 0.000579685553914328,-5.616597614248902,-6.330499364824905 -0.0005798155539143278,-5.61291836163412,-6.334218015695555 0.0005799455539143279,-5.620276866863684,-6.319343412212954 -0.0005800755539143279,-5.609239109019338,-6.345373968307505 0.0005802055539143279,-5.605559856404557,-6.330499364824905 -0.0005803355539143279,-5.605559856404557,-6.334218015695555 0.0005804655539143279,-5.601880603789774,-6.330499364824905 -0.000580595553914328,-5.605559856404557,-6.330499364824905 0.0005807255539143279,-5.601880603789774,-6.326780713954254 -0.0005808555539143279,-5.609239109019338,-6.330499364824905 0.0005809855539143278,-5.601880603789774,-6.326780713954254 -0.0005811155539143279,-5.605559856404557,-6.326780713954254 0.0005812455539143279,-5.59452209856021,-6.315624761342304 -0.0005813755539143279,-5.605559856404557,-6.326780713954254 0.0005815055539143279,-5.59452209856021,-6.323062063083604 -0.0005816355539143279,-5.59452209856021,-6.323062063083604 0.000581765553914328,-5.601880603789774,-6.330499364824905 -0.0005818955539143278,-5.59452209856021,-6.319343412212954 0.0005820255539143279,-5.59452209856021,-6.323062063083604 -0.0005821555539143279,-5.590842845945429,-6.326780713954254 0.0005822855539143279,-5.590842845945429,-6.323062063083604 -0.0005824155539143279,-5.583484340715865,-6.323062063083604 0.0005825455539143279,-5.590842845945429,-6.315624761342304 -0.000582675553914328,-5.590842845945429,-6.323062063083604 0.0005828055539143279,-5.587163593330647,-6.315624761342304 -0.000582935553914328,-5.579805088101083,-6.319343412212954 0.0005830655539143278,-5.579805088101083,-6.319343412212954 -0.0005831955539143279,-5.579805088101083,-6.293312856118404 0.0005833255539143279,-5.583484340715865,-6.297031506989054 -0.0005834555539143279,-5.579805088101083,-6.304468808730354 0.0005835855539143279,-5.583484340715865,-6.319343412212954 -0.0005837155539143279,-5.579805088101083,-6.326780713954254 0.000583845553914328,-5.576125835486302,-6.326780713954254 -0.0005839755539143278,-5.576125835486302,-6.323062063083604 0.0005841055539143279,-5.576125835486302,-6.326780713954254 -0.0005842355539143278,-5.579805088101083,-6.319343412212954 0.0005843655539143279,-5.572446582871519,-6.323062063083604 -0.0005844955539143279,-5.572446582871519,-6.326780713954254 0.0005846255539143279,-5.568767330256738,-6.315624761342304 -0.0005847555539143279,-5.565088077641956,-6.319343412212954 0.0005848855539143279,-5.565088077641956,-6.323062063083604 -0.000585015553914328,-5.565088077641956,-6.323062063083604 0.0005851455539143278,-5.561408825027174,-6.323062063083604 -0.0005852755539143279,-5.561408825027174,-6.323062063083604 0.0005854055539143279,-5.561408825027174,-6.326780713954254 -0.0005855355539143279,-5.561408825027174,-6.326780713954254 0.0005856655539143279,-5.565088077641956,-6.326780713954254 -0.0005857955539143279,-5.598201351174993,-6.367685873531405 0.000585925553914328,-5.520937046264573,-6.278438252635803 -0.0005860555539143279,-5.554050319797611,-6.323062063083604 0.000586185553914328,-5.557729572412392,-6.323062063083604 -0.0005863155539143278,-5.561408825027174,-6.323062063083604 0.0005864455539143279,-5.550371067182828,-6.319343412212954 -0.0005865755539143279,-5.550371067182828,-6.326780713954254 0.0005867055539143279,-5.546691814568047,-6.323062063083604 -0.0005868355539143279,-5.550371067182828,-6.319343412212954 0.0005869655539143279,-5.546691814568047,-6.319343412212954 -0.000587095553914328,-5.550371067182828,-6.319343412212954 0.0005872255539143278,-5.550371067182828,-6.319343412212954 -0.0005873555539143279,-5.546691814568047,-6.323062063083604 0.0005874855539143278,-5.546691814568047,-6.319343412212954 -0.0005876155539143279,-5.539333309338483,-6.315624761342304 0.0005877455539143279,-5.546691814568047,-6.330499364824905 -0.0005878755539143279,-5.535654056723701,-6.308187459601005 0.0005880055539143279,-5.539333309338483,-6.311906110471655 -0.0005881355539143279,-5.535654056723701,-6.319343412212954 0.000588265553914328,-5.531974804108919,-6.315624761342304 -0.0005883955539143278,-5.535654056723701,-6.323062063083604 0.0005885255539143279,-5.535654056723701,-6.308187459601005 -0.0005886555539143279,-5.535654056723701,-6.300750157859704 0.0005887855539143279,-5.531974804108919,-6.304468808730354 -0.0005889155539143279,-5.535654056723701,-6.304468808730354 0.0005890455539143279,-5.531974804108919,-6.304468808730354 -0.000589175553914328,-5.531974804108919,-6.311906110471655 0.0005893055539143279,-5.531974804108919,-6.311906110471655 -0.0005894355539143279,-5.524616298879356,-6.304468808730354 0.0005895655539143278,-5.524616298879356,-6.308187459601005 -0.0005896955539143279,-5.520937046264573,-6.304468808730354 0.0005898255539143279,-5.524616298879356,-6.300750157859704 -0.0005899555539143279,-5.524616298879356,-6.308187459601005 0.0005900855539143279,-5.524616298879356,-6.304468808730354 -0.0005902155539143279,-5.517257793649792,-6.300750157859704 0.000590345553914328,-5.51357854103501,-6.297031506989054 -0.0005904755539143278,-5.520937046264573,-6.289594205247754 0.0005906055539143279,-5.509899288420228,-6.293312856118404 -0.0005907355539143279,-5.517257793649792,-6.293312856118404 0.0005908655539143279,-5.509899288420228,-6.293312856118404 -0.0005909955539143279,-5.509899288420228,-6.304468808730354 0.0005911255539143279,-5.51357854103501,-6.293312856118404 -0.0005912555539143279,-5.506220035805446,-6.297031506989054 0.0005913855539143279,-5.509899288420228,-6.297031506989054 -0.000591515553914328,-5.498861530575883,-6.293312856118404 0.0005916455539143278,-5.509899288420228,-6.300750157859704 -0.0005917755539143279,-5.506220035805446,-6.315624761342304 0.0005919055539143279,-5.498861530575883,-6.293312856118404 -0.0005920355539143279,-5.502540783190665,-6.293312856118404 0.0005921655539143279,-5.498861530575883,-6.300750157859704 -0.0005922955539143279,-5.502540783190665,-6.293312856118404 0.000592425553914328,-5.502540783190665,-6.300750157859704 -0.0005925555539143279,-5.498861530575883,-6.297031506989054 0.0005926855539143279,-5.506220035805446,-6.293312856118404 -0.0005928155539143278,-5.495182277961101,-6.293312856118404 0.0005929455539143279,-5.495182277961101,-6.278438252635803 -0.0005930755539143279,-5.495182277961101,-6.267282300023854 0.0005932055539143279,-5.49150302534632,-6.278438252635803 -0.0005933355539143279,-5.484144520116756,-6.289594205247754 0.0005934655539143279,-5.487823772731537,-6.289594205247754 -0.000593595553914328,-5.487823772731537,-6.297031506989054 0.0005937255539143278,-5.484144520116756,-6.297031506989054 -0.0005938555539143279,-5.484144520116756,-6.300750157859704 0.0005939855539143279,-5.480465267501973,-6.293312856118404 -0.0005941155539143279,-5.480465267501973,-6.300750157859704 0.0005942455539143279,-5.469427509657628,-6.293312856118404 -0.0005943755539143279,-5.568767330256738,-6.300750157859704 0.000594505553914328,-5.675465656085411,-6.300750157859704 -0.0005946355539143279,-5.730654445307139,-6.304468808730354 0.000594765553914328,-5.767446971454957,-6.304468808730354 -0.0005948955539143278,-5.79320173975843,-6.304468808730354 0.0005950255539143279,-5.796880992373212,-6.304468808730354 -0.0005951555539143279,-5.800560244987993,-6.300750157859704 0.0005952855539143279,-5.785843234528866,-6.293312856118404 -0.0005954155539143279,-5.79320173975843,-6.297031506989054 0.0005955455539143279,-5.785843234528866,-6.293312856118404 -0.000595675553914328,-5.782163981914084,-6.297031506989054 0.0005958055539143278,-5.789522487143648,-6.300750157859704 -0.0005959355539143279,-5.789522487143648,-6.300750157859704 0.0005960655539143278,-5.789522487143648,-6.297031506989054 -0.0005961955539143279,-5.778484729299302,-6.293312856118404 0.0005963255539143279,-5.785843234528866,-6.297031506989054 -0.0005964555539143279,-5.778484729299302,-6.297031506989054 0.0005965855539143279,-5.782163981914084,-6.300750157859704 -0.0005967155539143279,-5.774805476684521,-6.300750157859704 0.000596845553914328,-5.767446971454957,-6.304468808730354 -0.0005969755539143278,-5.774805476684521,-6.297031506989054 0.0005971055539143279,-5.774805476684521,-6.297031506989054 -0.0005972355539143279,-5.767446971454957,-6.297031506989054 0.0005973655539143279,-5.767446971454957,-6.311906110471655 -0.0005974955539143279,-5.756409213610612,-6.285875554377103 0.0005976255539143279,-5.760088466225393,-6.297031506989054 -0.000597755553914328,-5.763767718840175,-6.285875554377103 0.0005978855539143279,-5.756409213610612,-6.304468808730354 -0.000598015553914328,-5.749050708381048,-6.293312856118404 0.0005981455539143278,-5.749050708381048,-6.300750157859704 -0.0005982755539143279,-5.749050708381048,-6.300750157859704 0.0005984055539143279,-5.75272996099583,-6.289594205247754 -0.0005985355539143279,-5.75272996099583,-6.289594205247754 0.0005986655539143279,-5.749050708381048,-6.285875554377103 -0.0005987955539143279,-5.745371455766266,-6.285875554377103 0.000598925553914328,-5.745371455766266,-6.285875554377103 -0.0005990555539143278,-5.745371455766266,-6.274719601765153 0.0005991855539143279,-5.745371455766266,-6.285875554377103 -0.0005993155539143278,-5.741692203151485,-6.282156903506453 0.0005994455539143279,-5.741692203151485,-6.285875554377103 -0.0005995755539143279,-5.738012950536702,-6.282156903506453 0.0005997055539143279,-5.738012950536702,-6.274719601765153 -0.0005998355539143279,-5.738012950536702,-6.278438252635803 0.0005999655539143279,-5.734333697921921,-6.278438252635803 -0.000600095553914328,-5.741692203151485,-6.278438252635803 0.0006002255539143278,-5.734333697921921,-6.274719601765153 -0.0006003555539143279,-5.741692203151485,-6.278438252635803 0.0006004855539143279,-5.741692203151485,-6.282156903506453 -0.0006006155539143279,-5.738012950536702,-6.278438252635803 0.0006007455539143279,-5.730654445307139,-6.274719601765153 -0.0006008755539143279,-5.738012950536702,-6.278438252635803 0.000601005553914328,-5.734333697921921,-6.274719601765153 -0.0006011355539143279,-5.738012950536702,-6.278438252635803 0.0006012655539143279,-5.734333697921921,-6.274719601765153 -0.0006013955539143278,-5.730654445307139,-6.271000950894503 0.0006015255539143279,-5.726975192692357,-6.271000950894503 -0.0006016555539143279,-5.726975192692357,-6.274719601765153 0.0006017855539143279,-5.723295940077575,-6.274719601765153 -0.0006019155539143279,-5.719616687462793,-6.274719601765153 0.0006020455539143279,-5.719616687462793,-6.278438252635803 -0.000602175553914328,-5.719616687462793,-6.267282300023854 0.0006023055539143278,-5.719616687462793,-6.271000950894503 -0.0006024355539143279,-5.71225818223323,-6.278438252635803 0.0006025655539143279,-5.708578929618447,-6.274719601765153 -0.0006026955539143279,-5.708578929618447,-6.259844998282553 0.0006028255539143279,-5.704899677003666,-6.252407696541253 -0.0006029555539143279,-5.704899677003666,-6.259844998282553 0.0006030855539143279,-5.708578929618447,-6.267282300023854 -0.0006032155539143279,-5.704899677003666,-6.271000950894503 0.000603345553914328,-5.704899677003666,-6.274719601765153 -0.0006034755539143278,-5.71225818223323,-6.274719601765153 0.0006036055539143279,-5.738012950536702,-6.323062063083604 -0.0006037355539143279,-5.668107150855848,-6.241251743929302 0.0006038655539143279,-5.69386191915932,-6.285875554377103 -0.0006039955539143279,-5.701220424388884,-6.278438252635803 0.0006041255539143279,-5.697541171774102,-6.282156903506453 -0.000604255553914328,-5.697541171774102,-6.289594205247754 0.0006043855539143279,-5.704899677003666,-6.282156903506453 -0.0006045155539143279,-5.69386191915932,-6.274719601765153 0.0006046455539143278,-5.697541171774102,-6.278438252635803 -0.0006047755539143279,-5.690182666544539,-6.278438252635803 0.0006049055539143279,-5.690182666544539,-6.278438252635803 -0.0006050355539143279,-5.682824161314975,-6.278438252635803 0.0006051655539143279,-5.690182666544539,-6.271000950894503 -0.0006052955539143279,-5.682824161314975,-6.289594205247754 0.000605425553914328,-5.690182666544539,-6.278438252635803 -0.0006055555539143278,-5.69386191915932,-6.285875554377103 0.0006056855539143279,-5.682824161314975,-6.278438252635803 -0.0006058155539143279,-5.682824161314975,-6.285875554377103 0.0006059455539143279,-5.675465656085411,-6.282156903506453 -0.0006060755539143279,-5.679144908700193,-6.285875554377103 0.0006062055539143279,-5.682824161314975,-6.282156903506453 -0.000606335553914328,-5.682824161314975,-6.289594205247754 0.0006064655539143279,-5.671786403470629,-6.285875554377103 -0.000606595553914328,-5.675465656085411,-6.285875554377103 0.0006067255539143278,-5.679144908700193,-6.285875554377103 -0.0006068555539143279,-5.682824161314975,-6.282156903506453 0.0006069855539143279,-5.682824161314975,-6.274719601765153 -0.0006071155539143279,-5.675465656085411,-6.278438252635803 0.0006072455539143279,-5.675465656085411,-6.278438252635803 -0.0006073755539143279,-5.671786403470629,-6.278438252635803 0.000607505553914328,-5.671786403470629,-6.278438252635803 -0.0006076355539143278,-5.671786403470629,-6.274719601765153 0.0006077655539143279,-5.664427898241065,-6.274719601765153 -0.0006078955539143278,-5.664427898241065,-6.271000950894503 0.0006080255539143279,-5.660748645626284,-6.274719601765153 -0.0006081555539143279,-5.668107150855848,-6.267282300023854 0.0006082855539143279,-5.664427898241065,-6.259844998282553 -0.0006084155539143279,-5.657069393011501,-6.259844998282553 0.0006085455539143279,-5.657069393011501,-6.259844998282553 -0.000608675553914328,-5.660748645626284,-6.267282300023854 0.0006088055539143278,-5.657069393011501,-6.267282300023854 -0.0006089355539143279,-5.65339014039672,-6.267282300023854 0.0006090655539143279,-5.657069393011501,-6.267282300023854 -0.0006091955539143279,-5.65339014039672,-6.259844998282553 0.0006093255539143279,-5.657069393011501,-6.259844998282553 -0.0006094555539143279,-5.649710887781938,-6.263563649153203 0.000609585553914328,-5.657069393011501,-6.289594205247754 -0.0006097155539143279,-5.642352382552374,-6.241251743929302 0.000609845553914328,-5.649710887781938,-6.256126347411903 -0.0006099755539143278,-5.646031635167156,-6.256126347411903 0.0006101055539143279,-5.642352382552374,-6.259844998282553 -0.0006102355539143279,-5.634993877322811,-6.252407696541253 0.0006103655539143279,-5.642352382552374,-6.256126347411903 -0.0006104955539143279,-5.642352382552374,-6.256126347411903 0.0006106255539143279,-5.638673129937593,-6.252407696541253 -0.000610755553914328,-5.634993877322811,-6.259844998282553 0.0006108855539143278,-5.638673129937593,-6.256126347411903 -0.0006110155539143279,-5.638673129937593,-6.248689045670603 0.0006111455539143278,-5.631314624708029,-6.256126347411903 -0.0006112755539143279,-5.634993877322811,-6.263563649153203 0.0006114055539143279,-5.631314624708029,-6.263563649153203 -0.0006115355539143279,-5.627635372093247,-6.263563649153203 0.0006116655539143279,-5.631314624708029,-6.263563649153203 -0.0006117955539143279,-5.631314624708029,-6.259844998282553 0.000611925553914328,-5.627635372093247,-6.263563649153203 -0.0006120555539143278,-5.623956119478465,-6.263563649153203 0.0006121855539143279,-5.620276866863684,-6.256126347411903 -0.0006123155539143279,-5.623956119478465,-6.256126347411903 0.0006124455539143279,-5.616597614248902,-6.256126347411903 -0.0006125755539143279,-5.616597614248902,-6.222658489576052 0.0006127055539143279,-5.620276866863684,-6.237533093058652 -0.000612835553914328,-5.616597614248902,-6.256126347411903 0.0006129655539143279,-5.616597614248902,-6.252407696541253 -0.0006130955539143279,-5.61291836163412,-6.256126347411903 0.0006132255539143278,-5.609239109019338,-6.252407696541253 -0.0006133555539143279,-5.61291836163412,-6.263563649153203 0.0006134855539143279,-5.61291836163412,-6.263563649153203 -0.0006136155539143279,-5.609239109019338,-6.263563649153203 0.0006137455539143279,-5.609239109019338,-6.263563649153203 -0.0006138755539143279,-5.605559856404557,-6.263563649153203 0.000614005553914328,-5.609239109019338,-6.263563649153203 -0.0006141355539143278,-5.601880603789774,-6.267282300023854 0.0006142655539143279,-5.601880603789774,-6.259844998282553 -0.0006143955539143279,-5.598201351174993,-6.267282300023854 0.0006145255539143279,-5.598201351174993,-6.263563649153203 -0.0006146555539143279,-5.601880603789774,-6.263563649153203 0.0006147855539143279,-5.59452209856021,-6.263563649153203 -0.0006149155539143279,-5.598201351174993,-6.259844998282553 0.0006150455539143279,-5.601880603789774,-6.259844998282553 -0.000615175553914328,-5.59452209856021,-6.267282300023854 0.0006153055539143278,-5.590842845945429,-6.263563649153203 -0.0006154355539143279,-5.587163593330647,-6.259844998282553 0.0006155655539143279,-5.59452209856021,-6.256126347411903 -0.0006156955539143279,-5.583484340715865,-6.263563649153203 0.0006158255539143279,-5.587163593330647,-6.259844998282553 -0.0006159555539143279,-5.590842845945429,-6.259844998282553 0.000616085553914328,-5.590842845945429,-6.267282300023854 -0.0006162155539143279,-5.587163593330647,-6.267282300023854 0.0006163455539143279,-5.587163593330647,-6.267282300023854 -0.0006164755539143278,-5.579805088101083,-6.267282300023854 0.0006166055539143279,-5.587163593330647,-6.267282300023854 -0.0006167355539143279,-5.579805088101083,-6.267282300023854 0.0006168655539143279,-5.576125835486302,-6.256126347411903 -0.0006169955539143279,-5.587163593330647,-6.271000950894503 0.0006171255539143279,-5.576125835486302,-6.267282300023854 -0.000617255553914328,-5.576125835486302,-6.267282300023854 0.0006173855539143278,-5.572446582871519,-6.271000950894503 -0.0006175155539143279,-5.572446582871519,-6.271000950894503 0.0006176455539143279,-5.576125835486302,-6.274719601765153 -0.0006177755539143279,-5.572446582871519,-6.271000950894503 0.0006179055539143279,-5.568767330256738,-6.263563649153203 -0.0006180355539143279,-5.568767330256738,-6.248689045670603 0.000618165553914328,-5.568767330256738,-6.252407696541253 -0.0006182955539143279,-5.568767330256738,-6.252407696541253 0.000618425553914328,-5.565088077641956,-6.252407696541253 -0.0006185555539143278,-5.561408825027174,-6.248689045670603 0.0006186855539143279,-5.565088077641956,-6.252407696541253 -0.0006188155539143279,-5.565088077641956,-6.248689045670603 0.0006189455539143279,-5.557729572412392,-6.248689045670603 -0.0006190755539143279,-5.557729572412392,-6.248689045670603 0.0006192055539143279,-5.554050319797611,-6.252407696541253 -0.000619335553914328,-5.557729572412392,-6.248689045670603 0.0006194655539143278,-5.554050319797611,-6.244970394799952 -0.0006195955539143279,-5.554050319797611,-6.244970394799952 0.0006197255539143278,-5.554050319797611,-6.248689045670603 -0.0006198555539143279,-5.550371067182828,-6.244970394799952 0.0006199855539143279,-5.550371067182828,-6.248689045670603 -0.0006201155539143279,-5.550371067182828,-6.248689045670603 0.0006202455539143279,-5.550371067182828,-6.248689045670603 -0.0006203755539143279,-5.550371067182828,-6.248689045670603 0.000620505553914328,-5.539333309338483,-6.248689045670603 -0.0006206355539143278,-5.546691814568047,-6.252407696541253 0.0006207655539143279,-5.543012561953264,-6.248689045670603 -0.0006208955539143279,-5.546691814568047,-6.252407696541253 0.0006210255539143279,-5.546691814568047,-6.248689045670603 -0.0006211555539143279,-5.546691814568047,-6.248689045670603 0.0006212855539143279,-5.550371067182828,-6.244970394799952 -0.000621415553914328,-5.568767330256738,-6.282156903506453 0.0006215455539143279,-5.517257793649792,-6.204065235222801 -0.000621675553914328,-5.531974804108919,-6.252407696541253 0.0006218055539143278,-5.535654056723701,-6.244970394799952 -0.0006219355539143279,-5.531974804108919,-6.248689045670603 0.0006220655539143279,-5.531974804108919,-6.244970394799952 -0.0006221955539143279,-5.535654056723701,-6.248689045670603 0.0006223255539143279,-5.531974804108919,-6.226377140446703 -0.0006224555539143279,-5.535654056723701,-6.230095791317352 0.000622585553914328,-5.531974804108919,-6.237533093058652 -0.0006227155539143278,-5.535654056723701,-6.241251743929302 0.0006228455539143279,-5.535654056723701,-6.237533093058652 -0.0006229755539143278,-5.535654056723701,-6.244970394799952 0.0006231055539143279,-5.528295551494137,-6.252407696541253 -0.0006232355539143279,-5.531974804108919,-6.248689045670603 0.0006233655539143279,-5.531974804108919,-6.256126347411903 -0.0006234955539143279,-5.517257793649792,-6.244970394799952 0.0006236255539143279,-5.517257793649792,-6.248689045670603 -0.000623755553914328,-5.517257793649792,-6.252407696541253 0.0006238855539143278,-5.51357854103501,-6.244970394799952 -0.0006240155539143279,-5.517257793649792,-6.244970394799952 0.0006241455539143279,-5.51357854103501,-6.248689045670603 -0.0006242755539143279,-5.51357854103501,-6.248689045670603 0.0006244055539143279,-5.509899288420228,-6.248689045670603 -0.0006245355539143279,-5.509899288420228,-6.248689045670603 0.000624665553914328,-5.509899288420228,-6.252407696541253 -0.0006247955539143279,-5.51357854103501,-6.248689045670603 0.000624925553914328,-5.502540783190665,-6.252407696541253 -0.0006250555539143278,-5.506220035805446,-6.244970394799952 0.0006251855539143279,-5.506220035805446,-6.252407696541253 -0.0006253155539143279,-5.502540783190665,-6.248689045670603 0.0006254455539143279,-5.498861530575883,-6.248689045670603 -0.0006255755539143279,-5.502540783190665,-6.252407696541253 0.0006257055539143279,-5.502540783190665,-6.252407696541253 -0.000625835553914328,-5.498861530575883,-6.252407696541253 0.0006259655539143278,-5.498861530575883,-6.252407696541253 -0.0006260955539143279,-5.49150302534632,-6.252407696541253 0.0006262255539143279,-5.495182277961101,-6.244970394799952 -0.0006263555539143279,-5.502540783190665,-6.252407696541253 0.0006264855539143279,-5.502540783190665,-6.252407696541253 -0.0006266155539143279,-5.495182277961101,-6.256126347411903 0.000626745553914328,-5.495182277961101,-6.248689045670603 -0.0006268755539143279,-5.49150302534632,-6.248689045670603 0.000627005553914328,-5.495182277961101,-6.252407696541253 -0.0006271355539143278,-5.49150302534632,-6.241251743929302 0.0006272655539143279,-5.487823772731537,-6.252407696541253 -0.0006273955539143279,-5.487823772731537,-6.274719601765153 0.0006275255539143279,-5.476786014887192,-6.230095791317352 -0.0006276555539143279,-5.47310676227241,-6.241251743929302 0.0006277855539143279,-5.524616298879356,-6.244970394799952 -0.000627915553914328,-5.642352382552374,-6.244970394799952 0.0006280455539143279,-5.719616687462793,-6.248689045670603 -0.0006281755539143279,-5.756409213610612,-6.252407696541253 0.0006283055539143278,-5.785843234528866,-6.244970394799952 -0.0006284355539143279,-5.800560244987993,-6.248689045670603 0.0006285655539143279,-5.800560244987993,-6.244970394799952 -0.0006286955539143279,-5.782163981914084,-6.237533093058652 0.0006288255539143279,-5.782163981914084,-6.233814442188002 -0.0006289555539143279,-5.774805476684521,-6.233814442188002 0.000629085553914328,-5.778484729299302,-6.241251743929302 -0.0006292155539143278,-5.774805476684521,-6.237533093058652 0.0006293455539143279,-5.771126224069739,-6.244970394799952 -0.0006294755539143279,-5.771126224069739,-6.233814442188002 0.0006296055539143279,-5.774805476684521,-6.237533093058652 -0.0006297355539143279,-5.778484729299302,-6.237533093058652 0.0006298655539143279,-5.778484729299302,-6.237533093058652 -0.000629995553914328,-5.771126224069739,-6.237533093058652 0.0006301255539143279,-5.774805476684521,-6.233814442188002 -0.000630255553914328,-5.774805476684521,-6.237533093058652 0.0006303855539143278,-5.771126224069739,-6.237533093058652 -0.0006305155539143279,-5.767446971454957,-6.237533093058652 0.0006306455539143279,-5.767446971454957,-6.241251743929302 -0.0006307755539143279,-5.767446971454957,-6.244970394799952 0.0006309055539143279,-5.767446971454957,-6.237533093058652 -0.0006310355539143279,-5.756409213610612,-6.237533093058652 0.000631165553914328,-5.756409213610612,-6.237533093058652 -0.0006312955539143279,-5.760088466225393,-6.237533093058652 0.0006314255539143279,-5.760088466225393,-6.237533093058652 -0.0006315555539143278,-5.756409213610612,-6.237533093058652 0.0006316855539143279,-5.760088466225393,-6.237533093058652 -0.0006318155539143279,-5.75272996099583,-6.233814442188002 0.0006319455539143279,-5.749050708381048,-6.237533093058652 -0.0006320755539143279,-5.760088466225393,-6.226377140446703 0.0006322055539143279,-5.749050708381048,-6.211502536964102 -0.000632335553914328,-5.749050708381048,-6.218939838705402 0.0006324655539143278,-5.749050708381048,-6.226377140446703 -0.0006325955539143279,-5.745371455766266,-6.233814442188002 0.0006327255539143279,-5.745371455766266,-6.237533093058652 -0.0006328555539143279,-5.75272996099583,-6.241251743929302 0.0006329855539143279,-5.745371455766266,-6.241251743929302 -0.0006331155539143279,-5.75272996099583,-6.237533093058652 0.000633245553914328,-5.745371455766266,-6.244970394799952 -0.0006333755539143279,-5.745371455766266,-6.241251743929302 0.000633505553914328,-5.738012950536702,-6.252407696541253 -0.0006336355539143278,-5.745371455766266,-6.244970394799952 0.0006337655539143279,-5.738012950536702,-6.244970394799952 -0.0006338955539143279,-5.738012950536702,-6.248689045670603 0.0006340255539143279,-5.738012950536702,-6.248689045670603 -0.0006341555539143279,-5.738012950536702,-6.241251743929302 0.0006342855539143279,-5.734333697921921,-6.244970394799952 -0.000634415553914328,-5.730654445307139,-6.241251743929302 0.0006345455539143278,-5.726975192692357,-6.241251743929302 -0.0006346755539143279,-5.723295940077575,-6.237533093058652 0.0006348055539143278,-5.734333697921921,-6.252407696541253 -0.0006349355539143279,-5.719616687462793,-6.237533093058652 0.0006350655539143279,-5.726975192692357,-6.248689045670603 -0.0006351955539143279,-5.723295940077575,-6.248689045670603 0.0006353255539143279,-5.719616687462793,-6.244970394799952 -0.0006354555539143279,-5.719616687462793,-6.248689045670603 0.000635585553914328,-5.723295940077575,-6.256126347411903 -0.0006357155539143278,-5.719616687462793,-6.252407696541253 0.0006358455539143279,-5.715937434848011,-6.248689045670603 -0.0006359755539143279,-5.715937434848011,-6.241251743929302 0.0006361055539143279,-5.708578929618447,-6.252407696541253 -0.0006362355539143279,-5.71225818223323,-6.248689045670603 0.0006363655539143279,-5.71225818223323,-6.252407696541253 -0.000636495553914328,-5.708578929618447,-6.248689045670603 0.0006366255539143279,-5.708578929618447,-6.252407696541253 -0.000636755553914328,-5.71225818223323,-6.248689045670603 0.0006368855539143278,-5.71225818223323,-6.244970394799952 -0.0006370155539143279,-5.701220424388884,-6.241251743929302 0.0006371455539143279,-5.704899677003666,-6.244970394799952 -0.0006372755539143279,-5.704899677003666,-6.248689045670603 0.0006374055539143279,-5.69386191915932,-6.241251743929302 -0.0006375355539143279,-5.69386191915932,-6.226377140446703 0.000637665553914328,-5.690182666544539,-6.233814442188002 -0.0006377955539143278,-5.69386191915932,-6.233814442188002 0.0006379255539143279,-5.690182666544539,-6.237533093058652 -0.0006380555539143279,-5.690182666544539,-6.244970394799952 0.0006381855539143279,-5.686503413929756,-6.230095791317352 -0.0006383155539143279,-5.690182666544539,-6.237533093058652 0.0006384455539143279,-5.690182666544539,-6.237533093058652 -0.000638575553914328,-5.697541171774102,-6.233814442188002 0.0006387055539143279,-5.69386191915932,-6.233814442188002 -0.000638835553914328,-5.697541171774102,-6.233814442188002 0.0006389655539143278,-5.69386191915932,-6.230095791317352 -0.0006390955539143279,-5.69386191915932,-6.230095791317352 0.0006392255539143279,-5.715937434848011,-6.263563649153203 -0.0006393555539143279,-5.671786403470629,-6.196627933481501 0.0006394855539143279,-5.686503413929756,-6.237533093058652 -0.0006396155539143279,-5.679144908700193,-6.233814442188002 0.000639745553914328,-5.682824161314975,-6.230095791317352 -0.0006398755539143279,-5.679144908700193,-6.233814442188002 0.0006400055539143279,-5.671786403470629,-6.233814442188002 -0.0006401355539143278,-5.675465656085411,-6.237533093058652 0.0006402655539143279,-5.671786403470629,-6.230095791317352 -0.0006403955539143279,-5.671786403470629,-6.237533093058652 0.0006405255539143279,-5.675465656085411,-6.237533093058652 -0.0006406555539143279,-5.657069393011501,-6.230095791317352 0.0006407855539143279,-5.668107150855848,-6.230095791317352 -0.000640915553914328,-5.668107150855848,-6.233814442188002 0.0006410455539143278,-5.668107150855848,-6.237533093058652 -0.0006411755539143279,-5.668107150855848,-6.237533093058652 0.0006413055539143279,-5.657069393011501,-6.233814442188002 -0.0006414355539143279,-5.657069393011501,-6.230095791317352 0.0006415655539143279,-5.664427898241065,-6.226377140446703 -0.0006416955539143279,-5.657069393011501,-6.230095791317352 0.000641825553914328,-5.668107150855848,-6.222658489576052 -0.0006419555539143279,-5.660748645626284,-6.207783886093452 0.000642085553914328,-5.657069393011501,-6.215221187834752 -0.0006422155539143278,-5.65339014039672,-6.215221187834752 0.0006423455539143279,-5.65339014039672,-6.230095791317352 -0.0006424755539143279,-5.649710887781938,-6.230095791317352 0.0006426055539143279,-5.649710887781938,-6.226377140446703 -0.0006427355539143279,-5.649710887781938,-6.233814442188002 0.0006428655539143279,-5.646031635167156,-6.237533093058652 -0.000642995553914328,-5.646031635167156,-6.226377140446703 0.0006431255539143279,-5.649710887781938,-6.233814442188002 -0.0006432555539143279,-5.649710887781938,-6.230095791317352 0.0006433855539143278,-5.646031635167156,-6.233814442188002 -0.0006435155539143279,-5.646031635167156,-6.241251743929302 0.0006436455539143279,-5.646031635167156,-6.237533093058652 -0.0006437755539143279,-5.646031635167156,-6.237533093058652 0.0006439055539143279,-5.646031635167156,-6.241251743929302 -0.0006440355539143279,-5.642352382552374,-6.233814442188002 0.000644165553914328,-5.642352382552374,-6.233814442188002 -0.0006442955539143278,-5.638673129937593,-6.237533093058652 0.0006444255539143279,-5.631314624708029,-6.237533093058652 -0.0006445555539143279,-5.631314624708029,-6.233814442188002 0.0006446855539143279,-5.634993877322811,-6.233814442188002 -0.0006448155539143279,-5.631314624708029,-6.241251743929302 0.0006449455539143279,-5.631314624708029,-6.237533093058652 -0.000645075553914328,-5.631314624708029,-6.237533093058652 0.0006452055539143279,-5.620276866863684,-6.271000950894503 -0.000645335553914328,-5.623956119478465,-6.211502536964102 0.0006454655539143278,-5.620276866863684,-6.233814442188002 -0.0006455955539143279,-5.620276866863684,-6.237533093058652 0.0006457255539143279,-5.616597614248902,-6.241251743929302 -0.0006458555539143279,-5.620276866863684,-6.241251743929302 0.0006459855539143279,-5.620276866863684,-6.241251743929302 -0.0006461155539143279,-5.61291836163412,-6.248689045670603 0.000646245553914328,-5.61291836163412,-6.244970394799952 -0.0006463755539143278,-5.616597614248902,-6.244970394799952 0.0006465055539143279,-5.61291836163412,-6.248689045670603 -0.0006466355539143278,-5.605559856404557,-6.241251743929302 0.0006467655539143279,-5.609239109019338,-6.237533093058652 -0.0006468955539143279,-5.61291836163412,-6.244970394799952 0.0006470255539143279,-5.609239109019338,-6.248689045670603 -0.0006471555539143279,-5.605559856404557,-6.241251743929302 0.0006472855539143279,-5.598201351174993,-6.230095791317352 -0.000647415553914328,-5.605559856404557,-6.226377140446703 0.0006475455539143278,-5.609239109019338,-6.222658489576052 -0.0006476755539143279,-5.609239109019338,-6.222658489576052 0.0006478055539143279,-5.61291836163412,-6.230095791317352 -0.0006479355539143279,-5.609239109019338,-6.230095791317352 0.0006480655539143279,-5.605559856404557,-6.226377140446703 -0.0006481955539143279,-5.601880603789774,-6.222658489576052 0.000648325553914328,-5.605559856404557,-6.226377140446703 -0.0006484555539143279,-5.598201351174993,-6.230095791317352 0.000648585553914328,-5.598201351174993,-6.230095791317352 -0.0006487155539143278,-5.59452209856021,-6.222658489576052 0.0006488455539143279,-5.590842845945429,-6.230095791317352 -0.0006489755539143279,-5.590842845945429,-6.226377140446703 0.0006491055539143279,-5.590842845945429,-6.222658489576052 -0.0006492355539143279,-5.587163593330647,-6.226377140446703 0.0006493655539143279,-5.587163593330647,-6.218939838705402 -0.000649495553914328,-5.579805088101083,-6.218939838705402 0.0006496255539143278,-5.587163593330647,-6.215221187834752 -0.0006497555539143279,-5.590842845945429,-6.218939838705402 0.0006498855539143279,-5.590842845945429,-6.215221187834752 -0.0006500155539143279,-5.587163593330647,-6.215221187834752 0.0006501455539143279,-5.583484340715865,-6.222658489576052 -0.0006502755539143279,-5.583484340715865,-6.226377140446703 0.000650405553914328,-5.576125835486302,-6.222658489576052 -0.0006505355539143279,-5.579805088101083,-6.222658489576052 0.000650665553914328,-5.583484340715865,-6.222658489576052 -0.0006507955539143278,-5.583484340715865,-6.226377140446703 0.0006509255539143279,-5.576125835486302,-6.218939838705402 -0.0006510555539143279,-5.565088077641956,-6.222658489576052 0.0006511855539143279,-5.572446582871519,-6.226377140446703 -0.0006513155539143279,-5.565088077641956,-6.233814442188002 0.0006514455539143279,-5.568767330256738,-6.222658489576052 -0.000651575553914328,-5.576125835486302,-6.222658489576052 0.0006517055539143279,-5.572446582871519,-6.196627933481501 -0.0006518355539143279,-5.576125835486302,-6.207783886093452 0.0006519655539143278,-5.565088077641956,-6.211502536964102 -0.0006520955539143279,-5.565088077641956,-6.222658489576052 0.0006522255539143279,-5.561408825027174,-6.222658489576052 -0.0006523555539143279,-5.554050319797611,-6.222658489576052 0.0006524855539143279,-5.565088077641956,-6.222658489576052 -0.0006526155539143279,-5.565088077641956,-6.241251743929302 0.000652745553914328,-5.554050319797611,-6.222658489576052 -0.0006528755539143278,-5.557729572412392,-6.226377140446703 0.0006530055539143279,-5.561408825027174,-6.226377140446703 -0.0006531355539143279,-5.554050319797611,-6.218939838705402 0.0006532655539143279,-5.550371067182828,-6.230095791317352 -0.0006533955539143279,-5.554050319797611,-6.233814442188002 0.0006535255539143279,-5.550371067182828,-6.233814442188002 -0.000653655553914328,-5.539333309338483,-6.233814442188002 0.0006537855539143279,-5.543012561953264,-6.233814442188002 -0.000653915553914328,-5.543012561953264,-6.230095791317352 0.0006540455539143278,-5.543012561953264,-6.237533093058652 -0.0006541755539143279,-5.546691814568047,-6.237533093058652 0.0006543055539143279,-5.539333309338483,-6.244970394799952 -0.0006544355539143279,-5.535654056723701,-6.233814442188002 0.0006545655539143279,-5.531974804108919,-6.233814442188002 -0.0006546955539143279,-5.539333309338483,-6.233814442188002 0.000654825553914328,-5.539333309338483,-6.233814442188002 -0.0006549555539143279,-5.539333309338483,-6.230095791317352 0.0006550855539143279,-5.531974804108919,-6.233814442188002 -0.0006552155539143278,-5.535654056723701,-6.237533093058652 0.0006553455539143279,-5.535654056723701,-6.230095791317352 -0.0006554755539143279,-5.528295551494137,-6.233814442188002 0.0006556055539143279,-5.520937046264573,-6.233814442188002 -0.0006557355539143279,-5.528295551494137,-6.233814442188002 0.0006558655539143279,-5.528295551494137,-6.230095791317352 -0.000655995553914328,-5.520937046264573,-6.230095791317352 0.0006561255539143278,-5.524616298879356,-6.222658489576052 -0.0006562555539143279,-5.528295551494137,-6.237533093058652 0.0006563855539143279,-5.524616298879356,-6.233814442188002 -0.0006565155539143279,-5.524616298879356,-6.233814442188002 0.0006566455539143279,-5.528295551494137,-6.233814442188002 -0.0006567755539143279,-5.520937046264573,-6.237533093058652 0.000656905553914328,-5.528295551494137,-6.233814442188002 -0.0006570355539143279,-5.539333309338483,-6.259844998282553 0.000657165553914328,-5.509899288420228,-6.185471980869552 -0.0006572955539143278,-5.517257793649792,-6.226377140446703 0.0006574255539143279,-5.517257793649792,-6.222658489576052 -0.0006575555539143279,-5.517257793649792,-6.226377140446703 0.0006576855539143279,-5.517257793649792,-6.222658489576052 -0.0006578155539143279,-5.51357854103501,-6.222658489576052 0.0006579455539143279,-5.51357854103501,-6.222658489576052 -0.000658075553914328,-5.51357854103501,-6.230095791317352 0.0006582055539143278,-5.509899288420228,-6.222658489576052 -0.0006583355539143279,-5.509899288420228,-6.230095791317352 0.0006584655539143279,-5.506220035805446,-6.218939838705402 -0.0006585955539143279,-5.498861530575883,-6.218939838705402 0.0006587255539143279,-5.502540783190665,-6.226377140446703 -0.0006588555539143279,-5.502540783190665,-6.226377140446703 0.0006589855539143279,-5.495182277961101,-6.233814442188002 -0.0006591155539143279,-5.49150302534632,-6.218939838705402 0.000659245553914328,-5.498861530575883,-6.226377140446703 -0.0006593755539143278,-5.498861530575883,-6.218939838705402 0.0006595055539143279,-5.495182277961101,-6.226377140446703 -0.0006596355539143279,-5.487823772731537,-6.226377140446703 0.0006597655539143279,-5.49150302534632,-6.226377140446703 -0.0006598955539143279,-5.487823772731537,-6.226377140446703 0.0006600255539143279,-5.484144520116756,-6.218939838705402 -0.000660155553914328,-5.484144520116756,-6.215221187834752 0.0006602855539143279,-5.487823772731537,-6.215221187834752 -0.000660415553914328,-5.484144520116756,-6.215221187834752 0.0006605455539143278,-5.484144520116756,-6.218939838705402 -0.0006606755539143279,-5.480465267501973,-6.218939838705402 0.0006608055539143279,-5.480465267501973,-6.215221187834752 -0.0006609355539143279,-5.480465267501973,-6.215221187834752 0.0006610655539143279,-5.484144520116756,-6.218939838705402 -0.0006611955539143279,-5.487823772731537,-6.215221187834752 0.000661325553914328,-5.59452209856021,-6.226377140446703 -0.0006614555539143278,-5.690182666544539,-6.215221187834752 0.0006615855539143279,-5.745371455766266,-6.200346584352151 -0.0006617155539143279,-5.774805476684521,-6.211502536964102 0.0006618455539143279,-5.796880992373212,-6.218939838705402 -0.0006619755539143279,-5.804239497602776,-6.226377140446703 0.0006621055539143279,-5.800560244987993,-6.237533093058652 -0.000662235553914328,-5.778484729299302,-6.230095791317352 0.0006623655539143279,-5.782163981914084,-6.222658489576052 -0.000662495553914328,-5.782163981914084,-6.233814442188002 0.0006626255539143278,-5.789522487143648,-6.237533093058652 -0.0006627555539143279,-5.778484729299302,-6.237533093058652 0.0006628855539143279,-5.771126224069739,-6.233814442188002 -0.0006630155539143279,-5.771126224069739,-6.263563649153203 0.0006631455539143279,-5.774805476684521,-6.207783886093452 -0.0006632755539143279,-5.763767718840175,-6.230095791317352 0.000663405553914328,-5.763767718840175,-6.233814442188002 -0.0006635355539143279,-5.767446971454957,-6.233814442188002 0.0006636655539143279,-5.771126224069739,-6.230095791317352 -0.0006637955539143278,-5.767446971454957,-6.233814442188002 0.0006639255539143279,-5.760088466225393,-6.230095791317352 -0.0006640555539143279,-5.763767718840175,-6.230095791317352 0.0006641855539143279,-5.763767718840175,-6.226377140446703 -0.0006643155539143279,-5.760088466225393,-6.230095791317352 0.0006644455539143279,-5.75272996099583,-6.226377140446703 -0.000664575553914328,-5.760088466225393,-6.218939838705402 0.0006647055539143278,-5.756409213610612,-6.233814442188002 -0.0006648355539143279,-5.760088466225393,-6.230095791317352 0.0006649655539143279,-5.760088466225393,-6.237533093058652 -0.0006650955539143279,-5.756409213610612,-6.233814442188002 0.0006652255539143279,-5.756409213610612,-6.230095791317352 -0.0006653555539143279,-5.75272996099583,-6.233814442188002 0.000665485553914328,-5.760088466225393,-6.233814442188002 -0.0006656155539143279,-5.760088466225393,-6.233814442188002 0.000665745553914328,-5.75272996099583,-6.226377140446703 -0.0006658755539143278,-5.749050708381048,-6.233814442188002 0.0006660055539143279,-5.75272996099583,-6.233814442188002 -0.0006661355539143279,-5.75272996099583,-6.230095791317352 0.0006662655539143279,-5.75272996099583,-6.241251743929302 -0.0006663955539143279,-5.75272996099583,-6.237533093058652 0.0006665255539143279,-5.749050708381048,-6.237533093058652 -0.000666655553914328,-5.745371455766266,-6.241251743929302 0.0006667855539143279,-5.738012950536702,-6.237533093058652 -0.0006669155539143279,-5.738012950536702,-6.218939838705402 0.0006670455539143278,-5.734333697921921,-6.226377140446703 -0.0006671755539143279,-5.738012950536702,-6.222658489576052 0.0006673055539143279,-5.738012950536702,-6.222658489576052 -0.0006674355539143279,-5.723295940077575,-6.215221187834752 0.0006675655539143279,-5.730654445307139,-6.226377140446703 -0.0006676955539143279,-5.723295940077575,-6.222658489576052 0.000667825553914328,-5.730654445307139,-6.226377140446703 -0.0006679555539143278,-5.719616687462793,-6.226377140446703 0.0006680855539143279,-5.726975192692357,-6.230095791317352 -0.0006682155539143279,-5.726975192692357,-6.222658489576052 0.0006683455539143279,-5.723295940077575,-6.230095791317352 -0.0006684755539143279,-5.719616687462793,-6.222658489576052 0.0006686055539143279,-5.719616687462793,-6.226377140446703 -0.000668735553914328,-5.723295940077575,-6.222658489576052 0.0006688655539143279,-5.719616687462793,-6.230095791317352 -0.000668995553914328,-5.715937434848011,-6.233814442188002 0.0006691255539143278,-5.715937434848011,-6.230095791317352 -0.0006692555539143279,-5.719616687462793,-6.226377140446703 0.0006693855539143279,-5.715937434848011,-6.226377140446703 -0.0006695155539143279,-5.719616687462793,-6.226377140446703 0.0006696455539143279,-5.708578929618447,-6.226377140446703 -0.0006697755539143279,-5.708578929618447,-6.222658489576052 0.000669905553914328,-5.71225818223323,-6.226377140446703 -0.0006700355539143278,-5.71225818223323,-6.226377140446703 0.0006701655539143279,-5.701220424388884,-6.226377140446703 -0.0006702955539143279,-5.704899677003666,-6.215221187834752 0.0006704255539143279,-5.704899677003666,-6.230095791317352 -0.0006705555539143279,-5.704899677003666,-6.218939838705402 0.0006706855539143279,-5.708578929618447,-6.222658489576052 -0.0006708155539143279,-5.701220424388884,-6.226377140446703 0.0006709455539143279,-5.701220424388884,-6.222658489576052 -0.000671075553914328,-5.697541171774102,-6.222658489576052 0.0006712055539143278,-5.69386191915932,-6.211502536964102 -0.0006713355539143279,-5.701220424388884,-6.192909282610851 0.0006714655539143279,-5.701220424388884,-6.196627933481501 -0.0006715955539143279,-5.704899677003666,-6.218939838705402 0.0006717255539143279,-5.701220424388884,-6.222658489576052 -0.0006718555539143279,-5.697541171774102,-6.226377140446703 0.000671985553914328,-5.690182666544539,-6.226377140446703 -0.0006721155539143279,-5.686503413929756,-6.222658489576052 0.000672245553914328,-5.690182666544539,-6.222658489576052 -0.0006723755539143278,-5.690182666544539,-6.226377140446703 0.0006725055539143279,-5.682824161314975,-6.230095791317352 -0.0006726355539143279,-5.682824161314975,-6.230095791317352 0.0006727655539143279,-5.686503413929756,-6.230095791317352 -0.0006728955539143279,-5.671786403470629,-6.222658489576052 0.0006730255539143279,-5.682824161314975,-6.233814442188002 -0.000673155553914328,-5.679144908700193,-6.230095791317352 0.0006732855539143278,-5.679144908700193,-6.233814442188002 -0.0006734155539143279,-5.679144908700193,-6.233814442188002 0.0006735455539143279,-5.682824161314975,-6.233814442188002 -0.0006736755539143279,-5.675465656085411,-6.233814442188002 0.0006738055539143279,-5.679144908700193,-6.226377140446703 -0.0006739355539143279,-5.671786403470629,-6.222658489576052 0.000674065553914328,-5.671786403470629,-6.222658489576052 -0.0006741955539143279,-5.675465656085411,-6.222658489576052 0.000674325553914328,-5.671786403470629,-6.230095791317352 -0.0006744555539143278,-5.671786403470629,-6.233814442188002 0.0006745855539143279,-5.675465656085411,-6.233814442188002 -0.0006747155539143279,-5.671786403470629,-6.233814442188002 0.0006748455539143279,-5.679144908700193,-6.252407696541253 -0.0006749755539143279,-5.657069393011501,-6.211502536964102 0.0006751055539143279,-5.660748645626284,-6.241251743929302 -0.000675235553914328,-5.664427898241065,-6.237533093058652 0.0006753655539143279,-5.668107150855848,-6.230095791317352 -0.0006754955539143279,-5.660748645626284,-6.233814442188002 0.0006756255539143278,-5.657069393011501,-6.230095791317352 -0.0006757555539143279,-5.657069393011501,-6.226377140446703 0.0006758855539143279,-5.664427898241065,-6.233814442188002 -0.0006760155539143279,-5.660748645626284,-6.226377140446703 0.0006761455539143279,-5.657069393011501,-6.233814442188002 -0.0006762755539143279,-5.649710887781938,-6.222658489576052 0.000676405553914328,-5.649710887781938,-6.230095791317352 -0.0006765355539143278,-5.65339014039672,-6.222658489576052 0.0006766655539143279,-5.65339014039672,-6.215221187834752 -0.0006767955539143279,-5.646031635167156,-6.218939838705402 0.0006769255539143279,-5.642352382552374,-6.207783886093452 -0.0006770555539143279,-5.642352382552374,-6.218939838705402 0.0006771855539143279,-5.638673129937593,-6.215221187834752 -0.000677315553914328,-5.631314624708029,-6.215221187834752 0.0006774455539143279,-5.631314624708029,-6.215221187834752 -0.000677575553914328,-5.634993877322811,-6.218939838705402 0.0006777055539143278,-5.634993877322811,-6.215221187834752 -0.0006778355539143279,-5.634993877322811,-6.226377140446703 0.0006779655539143279,-5.627635372093247,-6.218939838705402 -0.0006780955539143279,-5.634993877322811,-6.226377140446703 0.0006782255539143279,-5.631314624708029,-6.218939838705402 -0.0006783555539143279,-5.631314624708029,-6.215221187834752 0.000678485553914328,-5.634993877322811,-6.222658489576052 -0.0006786155539143279,-5.627635372093247,-6.222658489576052 0.0006787455539143279,-5.627635372093247,-6.226377140446703 -0.0006788755539143278,-5.620276866863684,-6.215221187834752 0.0006790055539143279,-5.623956119478465,-6.215221187834752 -0.0006791355539143279,-5.620276866863684,-6.215221187834752 0.0006792655539143279,-5.616597614248902,-6.218939838705402 -0.0006793955539143279,-5.620276866863684,-6.222658489576052 0.0006795255539143279,-5.620276866863684,-6.222658489576052 -0.000679655553914328,-5.616597614248902,-6.218939838705402 0.0006797855539143278,-5.616597614248902,-6.218939838705402 -0.0006799155539143279,-5.61291836163412,-6.222658489576052 0.0006800455539143279,-5.616597614248902,-6.222658489576052 -0.0006801755539143279,-5.620276866863684,-6.218939838705402 0.0006803055539143279,-5.616597614248902,-6.218939838705402 -0.0006804355539143279,-5.61291836163412,-6.218939838705402 0.000680565553914328,-5.61291836163412,-6.207783886093452 -0.0006806955539143279,-5.609239109019338,-6.218939838705402 0.000680825553914328,-5.605559856404557,-6.233814442188002 -0.0006809555539143278,-5.61291836163412,-6.185471980869552 0.0006810855539143279,-5.609239109019338,-6.185471980869552 -0.0006812155539143279,-5.601880603789774,-6.192909282610851 0.0006813455539143279,-5.598201351174993,-6.200346584352151 -0.0006814755539143279,-5.601880603789774,-6.207783886093452 0.0006816055539143279,-5.601880603789774,-6.211502536964102 -0.000681735553914328,-5.601880603789774,-6.218939838705402 0.0006818655539143278,-5.601880603789774,-6.222658489576052 -0.0006819955539143279,-5.601880603789774,-6.226377140446703 0.0006821255539143279,-5.590842845945429,-6.222658489576052 -0.0006822555539143279,-5.598201351174993,-6.226377140446703 0.0006823855539143279,-5.598201351174993,-6.222658489576052 -0.0006825155539143279,-5.598201351174993,-6.233814442188002 0.0006826455539143279,-5.59452209856021,-6.230095791317352 -0.0006827755539143279,-5.590842845945429,-6.233814442188002 0.000682905553914328,-5.590842845945429,-6.226377140446703 -0.0006830355539143278,-5.587163593330647,-6.230095791317352 0.0006831655539143279,-5.587163593330647,-6.226377140446703 -0.0006832955539143279,-5.583484340715865,-6.233814442188002 0.0006834255539143279,-5.587163593330647,-6.233814442188002 -0.0006835555539143279,-5.579805088101083,-6.233814442188002 0.0006836855539143279,-5.583484340715865,-6.230095791317352 -0.000683815553914328,-5.583484340715865,-6.241251743929302 0.0006839455539143279,-5.576125835486302,-6.233814442188002 -0.000684075553914328,-5.576125835486302,-6.226377140446703 0.0006842055539143278,-5.576125835486302,-6.233814442188002 -0.0006843355539143279,-5.576125835486302,-6.233814442188002 0.0006844655539143279,-5.568767330256738,-6.233814442188002 -0.0006845955539143279,-5.565088077641956,-6.233814442188002 0.0006847255539143279,-5.568767330256738,-6.230095791317352 -0.0006848555539143279,-5.568767330256738,-6.230095791317352 0.000684985553914328,-5.565088077641956,-6.233814442188002 -0.0006851155539143278,-5.565088077641956,-6.233814442188002 0.0006852455539143279,-5.568767330256738,-6.233814442188002 -0.0006853755539143279,-5.565088077641956,-6.226377140446703 0.0006855055539143279,-5.565088077641956,-6.230095791317352 -0.0006856355539143279,-5.568767330256738,-6.237533093058652 0.0006857655539143279,-5.561408825027174,-6.237533093058652 -0.000685895553914328,-5.557729572412392,-6.233814442188002 0.0006860255539143279,-5.557729572412392,-6.233814442188002 -0.000686155553914328,-5.561408825027174,-6.230095791317352 0.0006862855539143278,-5.554050319797611,-6.233814442188002 -0.0006864155539143279,-5.550371067182828,-6.222658489576052 0.0006865455539143279,-5.550371067182828,-6.218939838705402 -0.0006866755539143279,-5.550371067182828,-6.215221187834752 0.0006868055539143279,-5.550371067182828,-6.230095791317352 -0.0006869355539143279,-5.546691814568047,-6.211502536964102 0.000687065553914328,-5.546691814568047,-6.211502536964102 -0.0006871955539143279,-5.550371067182828,-6.218939838705402 0.0006873255539143279,-5.546691814568047,-6.218939838705402 -0.0006874555539143278,-5.546691814568047,-6.222658489576052 0.0006875855539143279,-5.546691814568047,-6.222658489576052 -0.0006877155539143279,-5.546691814568047,-6.218939838705402 0.0006878455539143279,-5.546691814568047,-6.222658489576052 -0.0006879755539143279,-5.543012561953264,-6.215221187834752 0.0006881055539143279,-5.535654056723701,-6.215221187834752 -0.000688235553914328,-5.543012561953264,-6.237533093058652 0.0006883655539143278,-5.539333309338483,-6.211502536964102 -0.0006884955539143279,-5.543012561953264,-6.222658489576052 0.0006886255539143279,-5.535654056723701,-6.218939838705402 -0.0006887555539143279,-5.535654056723701,-6.215221187834752 0.0006888855539143279,-5.535654056723701,-6.218939838705402 -0.0006890155539143279,-5.539333309338483,-6.218939838705402 0.000689145553914328,-5.531974804108919,-6.226377140446703 -0.0006892755539143279,-5.535654056723701,-6.218939838705402 0.000689405553914328,-5.528295551494137,-6.215221187834752 -0.0006895355539143278,-5.528295551494137,-6.215221187834752 0.0006896655539143279,-5.524616298879356,-6.215221187834752 -0.0006897955539143279,-5.524616298879356,-6.215221187834752 0.0006899255539143279,-5.520937046264573,-6.215221187834752 -0.0006900555539143279,-5.520937046264573,-6.211502536964102 0.0006901855539143279,-5.520937046264573,-6.211502536964102 -0.000690315553914328,-5.517257793649792,-6.211502536964102 0.0006904455539143279,-5.520937046264573,-6.215221187834752 -0.0006905755539143279,-5.51357854103501,-6.207783886093452 0.0006907055539143278,-5.51357854103501,-6.211502536964102 -0.0006908355539143279,-5.509899288420228,-6.192909282610851 0.0006909655539143279,-5.51357854103501,-6.192909282610851 -0.0006910955539143279,-5.502540783190665,-6.207783886093452 0.0006912255539143279,-5.509899288420228,-6.215221187834752 -0.0006913555539143279,-5.506220035805446,-6.211502536964102 0.000691485553914328,-5.506220035805446,-6.215221187834752 -0.0006916155539143278,-5.502540783190665,-6.215221187834752 0.0006917455539143279,-5.506220035805446,-6.218939838705402 -0.0006918755539143279,-5.509899288420228,-6.215221187834752 0.0006920055539143279,-5.506220035805446,-6.218939838705402 -0.0006921355539143279,-5.502540783190665,-6.222658489576052 0.0006922655539143279,-5.506220035805446,-6.215221187834752 -0.000692395553914328,-5.502540783190665,-6.226377140446703 0.0006925255539143279,-5.498861530575883,-6.226377140446703 -0.000692655553914328,-5.509899288420228,-6.237533093058652 0.0006927855539143278,-5.498861530575883,-6.207783886093452 -0.0006929155539143279,-5.495182277961101,-6.237533093058652 0.0006930455539143279,-5.495182277961101,-6.222658489576052 -0.0006931755539143279,-5.487823772731537,-6.230095791317352 0.0006933055539143279,-5.498861530575883,-6.226377140446703 -0.0006934355539143279,-5.487823772731537,-6.222658489576052 0.000693565553914328,-5.487823772731537,-6.218939838705402 -0.0006936955539143278,-5.49150302534632,-6.230095791317352 0.0006938255539143279,-5.480465267501973,-6.222658489576052 -0.0006939555539143279,-5.484144520116756,-6.233814442188002 0.0006940855539143279,-5.480465267501973,-6.218939838705402 -0.0006942155539143279,-5.476786014887192,-6.230095791317352 0.0006943455539143279,-5.484144520116756,-6.230095791317352 -0.0006944755539143279,-5.480465267501973,-6.226377140446703 0.0006946055539143279,-5.47310676227241,-6.230095791317352 -0.000694735553914328,-5.502540783190665,-6.218939838705402 0.0006948655539143278,-5.623956119478465,-6.233814442188002 -0.0006949955539143279,-5.701220424388884,-6.244970394799952 0.0006951255539143279,-5.75272996099583,-6.244970394799952 -0.0006952555539143279,-5.778484729299302,-6.237533093058652 0.0006953855539143279,-5.796880992373212,-6.233814442188002 -0.0006955155539143279,-5.807918750217557,-6.233814442188002 0.000695645553914328,-5.789522487143648,-6.230095791317352 -0.0006957755539143279,-5.782163981914084,-6.226377140446703 0.000695905553914328,-5.782163981914084,-6.226377140446703 -0.0006960355539143278,-5.782163981914084,-6.222658489576052 0.0006961655539143279,-5.785843234528866,-6.218939838705402 -0.0006962955539143279,-5.782163981914084,-6.211502536964102 0.0006964255539143279,-5.785843234528866,-6.207783886093452 -0.0006965555539143279,-5.774805476684521,-6.215221187834752 0.0006966855539143279,-5.778484729299302,-6.218939838705402 -0.000696815553914328,-5.774805476684521,-6.211502536964102 0.0006969455539143278,-5.778484729299302,-6.211502536964102 -0.0006970755539143279,-5.778484729299302,-6.215221187834752 0.0006972055539143279,-5.774805476684521,-6.218939838705402 -0.0006973355539143279,-5.771126224069739,-6.218939838705402 0.0006974655539143279,-5.774805476684521,-6.211502536964102 -0.0006975955539143279,-5.771126224069739,-6.215221187834752 0.000697725553914328,-5.771126224069739,-6.218939838705402 -0.0006978555539143279,-5.763767718840175,-6.211502536964102 0.000697985553914328,-5.763767718840175,-6.211502536964102 -0.0006981155539143278,-5.760088466225393,-6.218939838705402 0.0006982455539143279,-5.760088466225393,-6.218939838705402 -0.0006983755539143279,-5.75272996099583,-6.215221187834752 0.0006985055539143279,-5.756409213610612,-6.215221187834752 -0.0006986355539143279,-5.749050708381048,-6.233814442188002 0.0006987655539143279,-5.771126224069739,-6.185471980869552 -0.000698895553914328,-5.75272996099583,-6.211502536964102 0.0006990255539143279,-5.75272996099583,-6.211502536964102 -0.0006991555539143279,-5.75272996099583,-6.215221187834752 0.0006992855539143278,-5.749050708381048,-6.218939838705402 -0.0006994155539143279,-5.745371455766266,-6.218939838705402 0.0006995455539143279,-5.741692203151485,-6.218939838705402 -0.0006996755539143279,-5.741692203151485,-6.222658489576052 0.0006998055539143279,-5.738012950536702,-6.215221187834752 -0.0006999355539143279,-5.738012950536702,-6.215221187834752 0.000700065553914328,-5.734333697921921,-6.204065235222801 -0.0007001955539143278,-5.738012950536702,-6.207783886093452 0.0007003255539143279,-5.734333697921921,-6.222658489576052 -0.0007004555539143279,-5.734333697921921,-6.215221187834752 0.0007005855539143279,-5.734333697921921,-6.200346584352151 -0.0007007155539143279,-5.730654445307139,-6.189190631740201 0.0007008455539143279,-5.730654445307139,-6.200346584352151 -0.000700975553914328,-5.730654445307139,-6.211502536964102 0.0007011055539143279,-5.734333697921921,-6.215221187834752 -0.000701235553914328,-5.738012950536702,-6.215221187834752 0.0007013655539143278,-5.734333697921921,-6.218939838705402 -0.0007014955539143279,-5.734333697921921,-6.218939838705402 0.0007016255539143279,-5.730654445307139,-6.222658489576052 -0.0007017555539143279,-5.726975192692357,-6.226377140446703 0.0007018855539143279,-5.726975192692357,-6.226377140446703 -0.0007020155539143279,-5.726975192692357,-6.226377140446703 0.000702145553914328,-5.723295940077575,-6.230095791317352 -0.0007022755539143279,-5.71225818223323,-6.230095791317352 0.0007024055539143279,-5.719616687462793,-6.222658489576052 -0.0007025355539143278,-5.715937434848011,-6.226377140446703 0.0007026655539143279,-5.715937434848011,-6.230095791317352 -0.0007027955539143279,-5.723295940077575,-6.233814442188002 0.0007029255539143279,-5.715937434848011,-6.226377140446703 -0.0007030555539143279,-5.708578929618447,-6.230095791317352 0.0007031855539143279,-5.71225818223323,-6.233814442188002 -0.000703315553914328,-5.708578929618447,-6.233814442188002 0.0007034455539143278,-5.708578929618447,-6.233814442188002 -0.0007035755539143279,-5.697541171774102,-6.226377140446703 0.0007037055539143279,-5.704899677003666,-6.237533093058652 -0.0007038355539143279,-5.701220424388884,-6.237533093058652 0.0007039655539143279,-5.704899677003666,-6.230095791317352 -0.0007040955539143279,-5.704899677003666,-6.230095791317352 0.000704225553914328,-5.69386191915932,-6.222658489576052 -0.0007043555539143279,-5.704899677003666,-6.233814442188002 0.000704485553914328,-5.697541171774102,-6.230095791317352 -0.0007046155539143278,-5.69386191915932,-6.241251743929302 0.0007047455539143279,-5.69386191915932,-6.211502536964102 -0.0007048755539143279,-5.69386191915932,-6.215221187834752 0.0007050055539143279,-5.69386191915932,-6.226377140446703 -0.0007051355539143279,-5.697541171774102,-6.222658489576052 0.0007052655539143279,-5.690182666544539,-6.222658489576052 -0.000705395553914328,-5.690182666544539,-6.226377140446703 0.0007055255539143278,-5.686503413929756,-6.226377140446703 -0.0007056555539143279,-5.686503413929756,-6.230095791317352 0.0007057855539143279,-5.686503413929756,-6.226377140446703 -0.0007059155539143279,-5.682824161314975,-6.215221187834752 0.0007060455539143279,-5.686503413929756,-6.218939838705402 -0.0007061755539143279,-5.682824161314975,-6.200346584352151 0.0007063055539143279,-5.679144908700193,-6.211502536964102 -0.0007064355539143279,-5.671786403470629,-6.211502536964102 0.000706565553914328,-5.679144908700193,-6.211502536964102 -0.0007066955539143278,-5.679144908700193,-6.211502536964102 0.0007068255539143279,-5.675465656085411,-6.211502536964102 -0.0007069555539143279,-5.679144908700193,-6.222658489576052 0.0007070855539143279,-5.668107150855848,-6.222658489576052 -0.0007072155539143279,-5.671786403470629,-6.218939838705402 0.0007073455539143279,-5.675465656085411,-6.215221187834752 -0.000707475553914328,-5.675465656085411,-6.215221187834752 0.0007076055539143279,-5.668107150855848,-6.215221187834752 -0.000707735553914328,-5.671786403470629,-6.215221187834752 0.0007078655539143278,-5.664427898241065,-6.215221187834752 -0.0007079955539143279,-5.664427898241065,-6.218939838705402 0.0007081255539143279,-5.675465656085411,-6.207783886093452 -0.0007082555539143279,-5.671786403470629,-6.215221187834752 0.0007083855539143279,-5.668107150855848,-6.211502536964102 -0.0007085155539143279,-5.664427898241065,-6.211502536964102 0.000708645553914328,-5.664427898241065,-6.211502536964102 -0.0007087755539143278,-5.664427898241065,-6.207783886093452 0.0007089055539143279,-5.660748645626284,-6.204065235222801 -0.0007090355539143279,-5.657069393011501,-6.211502536964102 0.0007091655539143279,-5.660748645626284,-6.207783886093452 -0.0007092955539143279,-5.65339014039672,-6.207783886093452 0.0007094255539143279,-5.660748645626284,-6.207783886093452 -0.000709555553914328,-5.649710887781938,-6.204065235222801 0.0007096855539143279,-5.657069393011501,-6.207783886093452 -0.000709815553914328,-5.65339014039672,-6.215221187834752 0.0007099455539143278,-5.646031635167156,-6.215221187834752 -0.0007100755539143279,-5.649710887781938,-6.211502536964102 0.0007102055539143279,-5.649710887781938,-6.211502536964102 -0.0007103355539143279,-5.646031635167156,-6.207783886093452 0.0007104655539143279,-5.649710887781938,-6.185471980869552 -0.0007105955539143279,-5.638673129937593,-6.181753329998901 0.000710725553914328,-5.638673129937593,-6.211502536964102 -0.0007108555539143279,-5.631314624708029,-6.207783886093452 0.0007109855539143279,-5.638673129937593,-6.211502536964102 -0.0007111155539143278,-5.631314624708029,-6.211502536964102 0.0007112455539143279,-5.638673129937593,-6.215221187834752 -0.0007113755539143279,-5.631314624708029,-6.215221187834752 0.0007115055539143279,-5.634993877322811,-6.218939838705402 -0.0007116355539143279,-5.631314624708029,-6.215221187834752 0.0007117655539143279,-5.631314624708029,-6.218939838705402 -0.000711895553914328,-5.631314624708029,-6.215221187834752 0.0007120255539143278,-5.627635372093247,-6.218939838705402 -0.0007121555539143279,-5.631314624708029,-6.218939838705402 0.0007122855539143279,-5.631314624708029,-6.226377140446703 -0.0007124155539143279,-5.620276866863684,-6.218939838705402 0.0007125455539143279,-5.638673129937593,-6.218939838705402 -0.0007126755539143279,-5.627635372093247,-6.222658489576052 0.000712805553914328,-5.631314624708029,-6.226377140446703 -0.0007129355539143279,-5.620276866863684,-6.215221187834752 0.000713065553914328,-5.631314624708029,-6.226377140446703 -0.0007131955539143278,-5.627635372093247,-6.222658489576052 0.0007133255539143279,-5.620276866863684,-6.222658489576052 -0.0007134555539143279,-5.620276866863684,-6.226377140446703 0.0007135855539143279,-5.61291836163412,-6.218939838705402 -0.0007137155539143279,-5.616597614248902,-6.230095791317352 0.0007138455539143279,-5.61291836163412,-6.222658489576052 -0.000713975553914328,-5.61291836163412,-6.222658489576052 0.0007141055539143279,-5.609239109019338,-6.222658489576052 -0.0007142355539143279,-5.616597614248902,-6.226377140446703 0.0007143655539143278,-5.616597614248902,-6.222658489576052 -0.0007144955539143279,-5.61291836163412,-6.222658489576052 0.0007146255539143279,-5.605559856404557,-6.226377140446703 -0.0007147555539143279,-5.605559856404557,-6.226377140446703 0.0007148855539143279,-5.609239109019338,-6.226377140446703 -0.0007150155539143279,-5.609239109019338,-6.222658489576052 0.000715145553914328,-5.601880603789774,-6.222658489576052 -0.0007152755539143278,-5.601880603789774,-6.226377140446703 0.0007154055539143279,-5.598201351174993,-6.226377140446703 -0.0007155355539143279,-5.601880603789774,-6.233814442188002 0.0007156655539143279,-5.583484340715865,-6.222658489576052 -0.0007157955539143279,-5.587163593330647,-6.218939838705402 0.0007159255539143279,-5.587163593330647,-6.215221187834752 -0.000716055553914328,-5.587163593330647,-6.211502536964102 0.0007161855539143279,-5.583484340715865,-6.215221187834752 -0.000716315553914328,-5.576125835486302,-6.218939838705402 0.0007164455539143278,-5.568767330256738,-6.230095791317352 -0.0007165755539143279,-5.583484340715865,-6.196627933481501 0.0007167055539143279,-5.579805088101083,-6.215221187834752 -0.0007168355539143279,-5.576125835486302,-6.218939838705402 0.0007169655539143279,-5.576125835486302,-6.211502536964102 -0.0007170955539143279,-5.576125835486302,-6.215221187834752 0.000717225553914328,-5.572446582871519,-6.215221187834752 -0.0007173555539143278,-5.572446582871519,-6.211502536964102 0.0007174855539143279,-5.572446582871519,-6.211502536964102 -0.0007176155539143279,-5.572446582871519,-6.211502536964102 0.0007177455539143279,-5.572446582871519,-6.211502536964102 -0.0007178755539143279,-5.572446582871519,-6.207783886093452 0.0007180055539143279,-5.572446582871519,-6.204065235222801 -0.0007181355539143279,-5.568767330256738,-6.215221187834752 0.0007182655539143279,-5.568767330256738,-6.215221187834752 -0.000718395553914328,-5.568767330256738,-6.215221187834752 0.0007185255539143278,-5.565088077641956,-6.207783886093452 -0.0007186555539143279,-5.568767330256738,-6.211502536964102 0.0007187855539143279,-5.565088077641956,-6.207783886093452 -0.0007189155539143279,-5.561408825027174,-6.207783886093452 0.0007190455539143279,-5.561408825027174,-6.211502536964102 -0.0007191755539143279,-5.565088077641956,-6.215221187834752 0.000719305553914328,-5.561408825027174,-6.207783886093452 -0.0007194355539143279,-5.568767330256738,-6.207783886093452 0.000719565553914328,-5.565088077641956,-6.204065235222801 -0.0007196955539143278,-5.561408825027174,-6.204065235222801 0.0007198255539143279,-5.561408825027174,-6.211502536964102 -0.0007199555539143279,-5.557729572412392,-6.204065235222801 0.0007200855539143279,-5.557729572412392,-6.207783886093452 -0.0007202155539143279,-5.561408825027174,-6.181753329998901 0.0007203455539143279,-5.557729572412392,-6.189190631740201 -0.000720475553914328,-5.554050319797611,-6.200346584352151 0.0007206055539143278,-5.550371067182828,-6.207783886093452 -0.0007207355539143279,-5.550371067182828,-6.207783886093452 0.0007208655539143279,-5.550371067182828,-6.215221187834752 -0.0007209955539143279,-5.546691814568047,-6.207783886093452 0.0007211255539143279,-5.546691814568047,-6.215221187834752 -0.0007212555539143279,-5.543012561953264,-6.211502536964102 0.000721385553914328,-5.546691814568047,-6.215221187834752 -0.0007215155539143279,-5.539333309338483,-6.226377140446703 0.000721645553914328,-5.535654056723701,-6.226377140446703 -0.0007217755539143278,-5.535654056723701,-6.230095791317352 0.0007219055539143279,-5.539333309338483,-6.230095791317352 -0.0007220355539143279,-5.531974804108919,-6.222658489576052 0.0007221655539143279,-5.539333309338483,-6.233814442188002 -0.0007222955539143279,-5.539333309338483,-6.230095791317352 0.0007224255539143279,-5.539333309338483,-6.244970394799952 -0.000722555553914328,-5.531974804108919,-6.215221187834752 0.0007226855539143279,-5.539333309338483,-6.230095791317352 -0.0007228155539143279,-5.531974804108919,-6.222658489576052 0.0007229455539143278,-5.535654056723701,-6.222658489576052 -0.0007230755539143279,-5.531974804108919,-6.222658489576052 0.0007232055539143279,-5.531974804108919,-6.226377140446703 -0.0007233355539143279,-5.524616298879356,-6.226377140446703 0.0007234655539143279,-5.520937046264573,-6.218939838705402 -0.0007235955539143279,-5.528295551494137,-6.222658489576052 0.000723725553914328,-5.509899288420228,-6.215221187834752 -0.0007238555539143278,-5.51357854103501,-6.226377140446703 0.0007239855539143279,-5.520937046264573,-6.215221187834752 -0.0007241155539143279,-5.520937046264573,-6.222658489576052 0.0007242455539143279,-5.517257793649792,-6.226377140446703 -0.0007243755539143279,-5.506220035805446,-6.226377140446703 0.0007245055539143279,-5.509899288420228,-6.226377140446703 -0.000724635553914328,-5.509899288420228,-6.222658489576052 0.0007247655539143279,-5.509899288420228,-6.230095791317352 -0.000724895553914328,-5.51357854103501,-6.222658489576052 0.0007250255539143278,-5.51357854103501,-6.226377140446703 -0.0007251555539143279,-5.506220035805446,-6.230095791317352 0.0007252855539143279,-5.509899288420228,-6.222658489576052 -0.0007254155539143279,-5.506220035805446,-6.230095791317352 0.0007255455539143279,-5.509899288420228,-6.222658489576052 -0.0007256755539143279,-5.506220035805446,-6.215221187834752 0.000725805553914328,-5.509899288420228,-6.215221187834752 -0.0007259355539143279,-5.509899288420228,-6.218939838705402 0.0007260655539143279,-5.506220035805446,-6.211502536964102 -0.0007261955539143278,-5.509899288420228,-6.215221187834752 0.0007263255539143279,-5.502540783190665,-6.218939838705402 -0.0007264555539143279,-5.502540783190665,-6.215221187834752 0.0007265855539143279,-5.498861530575883,-6.218939838705402 -0.0007267155539143279,-5.487823772731537,-6.218939838705402 0.0007268455539143279,-5.495182277961101,-6.218939838705402 -0.000726975553914328,-5.49150302534632,-6.215221187834752 0.0007271055539143278,-5.487823772731537,-6.218939838705402 -0.0007272355539143279,-5.487823772731537,-6.215221187834752 0.0007273655539143279,-5.487823772731537,-6.215221187834752 -0.0007274955539143279,-5.487823772731537,-6.211502536964102 0.0007276255539143279,-5.487823772731537,-6.211502536964102 -0.0007277555539143279,-5.480465267501973,-6.211502536964102 0.000727885553914328,-5.484144520116756,-6.211502536964102 -0.0007280155539143279,-5.480465267501973,-6.211502536964102 0.000728145553914328,-5.476786014887192,-6.215221187834752 -0.0007282755539143278,-5.476786014887192,-6.215221187834752 0.0007284055539143279,-5.576125835486302,-6.211502536964102 -0.0007285355539143279,-5.675465656085411,-6.226377140446703 0.0007286655539143279,-5.738012950536702,-6.226377140446703 -0.0007287955539143279,-5.774805476684521,-6.218939838705402 0.0007289255539143279,-5.79320173975843,-6.218939838705402 -0.000729055553914328,-5.804239497602776,-6.218939838705402 0.0007291855539143278,-5.804239497602776,-6.211502536964102 -0.0007293155539143279,-5.782163981914084,-6.207783886093452 0.0007294455539143279,-5.785843234528866,-6.207783886093452 -0.0007295755539143279,-5.782163981914084,-6.204065235222801 0.0007297055539143279,-5.778484729299302,-6.200346584352151 -0.0007298355539143279,-5.778484729299302,-6.204065235222801 0.0007299655539143279,-5.782163981914084,-6.181753329998901 -0.0007300955539143279,-5.789522487143648,-6.192909282610851 0.000730225553914328,-5.771126224069739,-6.189190631740201 -0.0007303555539143278,-5.785843234528866,-6.204065235222801 0.0007304855539143279,-5.774805476684521,-6.207783886093452 -0.0007306155539143279,-5.778484729299302,-6.211502536964102 0.0007307455539143279,-5.774805476684521,-6.215221187834752 -0.0007308755539143279,-5.771126224069739,-6.211502536964102 0.0007310055539143279,-5.767446971454957,-6.222658489576052 -0.000731135553914328,-5.767446971454957,-6.218939838705402 0.0007312655539143279,-5.763767718840175,-6.222658489576052 -0.000731395553914328,-5.760088466225393,-6.226377140446703 0.0007315255539143278,-5.760088466225393,-6.215221187834752 -0.0007316555539143279,-5.763767718840175,-6.218939838705402 0.0007317855539143279,-5.760088466225393,-6.218939838705402 -0.0007319155539143279,-5.756409213610612,-6.218939838705402 0.0007320455539143279,-5.756409213610612,-6.218939838705402 -0.0007321755539143279,-5.763767718840175,-6.222658489576052 0.000732305553914328,-5.75272996099583,-6.218939838705402 -0.0007324355539143278,-5.760088466225393,-6.218939838705402 0.0007325655539143279,-5.749050708381048,-6.218939838705402 -0.0007326955539143279,-5.75272996099583,-6.226377140446703 0.0007328255539143279,-5.75272996099583,-6.222658489576052 -0.0007329555539143279,-5.749050708381048,-6.222658489576052 0.0007330855539143279,-5.745371455766266,-6.226377140446703 -0.000733215553914328,-5.741692203151485,-6.226377140446703 0.0007333455539143279,-5.749050708381048,-6.230095791317352 -0.000733475553914328,-5.741692203151485,-6.222658489576052 0.0007336055539143278,-5.738012950536702,-6.226377140446703 -0.0007337355539143279,-5.741692203151485,-6.222658489576052 0.0007338655539143279,-5.738012950536702,-6.222658489576052 -0.0007339955539143279,-5.738012950536702,-6.218939838705402 0.0007341255539143279,-5.741692203151485,-6.218939838705402 -0.0007342555539143279,-5.726975192692357,-6.226377140446703 0.000734385553914328,-5.741692203151485,-6.207783886093452 -0.0007345155539143279,-5.734333697921921,-6.218939838705402 0.0007346455539143279,-5.734333697921921,-6.222658489576052 -0.0007347755539143278,-5.730654445307139,-6.218939838705402 0.0007349055539143279,-5.734333697921921,-6.215221187834752 -0.0007350355539143279,-5.726975192692357,-6.222658489576052 0.0007351655539143279,-5.734333697921921,-6.218939838705402 -0.0007352955539143279,-5.726975192692357,-6.215221187834752 0.0007354255539143279,-5.726975192692357,-6.204065235222801 -0.000735555553914328,-5.723295940077575,-6.211502536964102 0.0007356855539143278,-5.715937434848011,-6.207783886093452 -0.0007358155539143279,-5.723295940077575,-6.207783886093452 0.0007359455539143279,-5.723295940077575,-6.211502536964102 -0.0007360755539143279,-5.719616687462793,-6.211502536964102 0.0007362055539143279,-5.71225818223323,-6.215221187834752 -0.0007363355539143279,-5.719616687462793,-6.215221187834752 0.000736465553914328,-5.719616687462793,-6.218939838705402 -0.0007365955539143279,-5.719616687462793,-6.215221187834752 0.000736725553914328,-5.719616687462793,-6.215221187834752 -0.0007368555539143278,-5.715937434848011,-6.215221187834752 0.0007369855539143279,-5.719616687462793,-6.218939838705402 -0.0007371155539143279,-5.715937434848011,-6.211502536964102 0.0007372455539143279,-5.71225818223323,-6.211502536964102 -0.0007373755539143279,-5.71225818223323,-6.211502536964102 0.0007375055539143279,-5.704899677003666,-6.207783886093452 -0.000737635553914328,-5.708578929618447,-6.215221187834752 0.0007377655539143279,-5.701220424388884,-6.211502536964102 -0.0007378955539143279,-5.701220424388884,-6.207783886093452 0.0007380255539143278,-5.697541171774102,-6.215221187834752 -0.0007381555539143279,-5.704899677003666,-6.215221187834752 0.0007382855539143279,-5.69386191915932,-6.211502536964102 -0.0007384155539143279,-5.701220424388884,-6.207783886093452 0.0007385455539143279,-5.69386191915932,-6.211502536964102 -0.0007386755539143279,-5.697541171774102,-6.207783886093452 0.000738805553914328,-5.697541171774102,-6.207783886093452 -0.0007389355539143278,-5.690182666544539,-6.207783886093452 0.0007390655539143279,-5.69386191915932,-6.207783886093452 -0.0007391955539143279,-5.69386191915932,-6.200346584352151 0.0007393255539143279,-5.690182666544539,-6.207783886093452 -0.0007394555539143279,-5.690182666544539,-6.204065235222801 0.0007395855539143279,-5.690182666544539,-6.204065235222801 -0.000739715553914328,-5.686503413929756,-6.204065235222801 0.0007398455539143279,-5.679144908700193,-6.174316028257601 -0.000739975553914328,-5.679144908700193,-6.192909282610851 0.0007401055539143278,-5.682824161314975,-6.200346584352151 -0.0007402355539143279,-5.675465656085411,-6.226377140446703 0.0007403655539143279,-5.679144908700193,-6.196627933481501 -0.0007404955539143279,-5.679144908700193,-6.215221187834752 0.0007406255539143279,-5.675465656085411,-6.218939838705402 -0.0007407555539143279,-5.675465656085411,-6.211502536964102 0.000740885553914328,-5.675465656085411,-6.215221187834752 -0.0007410155539143278,-5.671786403470629,-6.218939838705402 0.0007411455539143279,-5.671786403470629,-6.218939838705402 -0.0007412755539143279,-5.668107150855848,-6.222658489576052 0.0007414055539143279,-5.668107150855848,-6.222658489576052 -0.0007415355539143279,-5.657069393011501,-6.218939838705402 0.0007416655539143279,-5.664427898241065,-6.222658489576052 -0.0007417955539143279,-5.668107150855848,-6.215221187834752 0.0007419255539143279,-5.660748645626284,-6.222658489576052 -0.000742055553914328,-5.660748645626284,-6.218939838705402 0.0007421855539143278,-5.660748645626284,-6.218939838705402 -0.0007423155539143279,-5.649710887781938,-6.218939838705402 0.0007424455539143279,-5.660748645626284,-6.218939838705402 -0.0007425755539143279,-5.65339014039672,-6.222658489576052 0.0007427055539143279,-5.657069393011501,-6.222658489576052 -0.0007428355539143279,-5.657069393011501,-6.226377140446703 0.000742965553914328,-5.65339014039672,-6.226377140446703 -0.0007430955539143279,-5.65339014039672,-6.233814442188002 0.000743225553914328,-5.649710887781938,-6.218939838705402 -0.0007433555539143278,-5.649710887781938,-6.226377140446703 0.0007434855539143279,-5.649710887781938,-6.226377140446703 -0.0007436155539143279,-5.646031635167156,-6.226377140446703 0.0007437455539143279,-5.646031635167156,-6.230095791317352 -0.0007438755539143279,-5.646031635167156,-6.226377140446703 0.0007440055539143279,-5.642352382552374,-6.222658489576052 -0.000744135553914328,-5.642352382552374,-6.226377140446703 0.0007442655539143278,-5.642352382552374,-6.226377140446703 -0.0007443955539143279,-5.642352382552374,-6.226377140446703 0.0007445255539143279,-5.638673129937593,-6.218939838705402 -0.0007446555539143279,-5.642352382552374,-6.226377140446703 0.0007447855539143279,-5.634993877322811,-6.222658489576052 -0.0007449155539143279,-5.634993877322811,-6.226377140446703 0.000745045553914328,-5.634993877322811,-6.230095791317352 -0.0007451755539143279,-5.631314624708029,-6.215221187834752 0.000745305553914328,-5.631314624708029,-6.207783886093452 -0.0007454355539143278,-5.631314624708029,-6.215221187834752 0.0007455655539143279,-5.631314624708029,-6.211502536964102 -0.0007456955539143279,-5.623956119478465,-6.211502536964102 0.0007458255539143279,-5.620276866863684,-6.218939838705402 -0.0007459555539143279,-5.623956119478465,-6.218939838705402 0.0007460855539143279,-5.620276866863684,-6.218939838705402 -0.000746215553914328,-5.623956119478465,-6.215221187834752 0.0007463455539143279,-5.61291836163412,-6.218939838705402 -0.000746475553914328,-5.61291836163412,-6.207783886093452 0.0007466055539143278,-5.61291836163412,-6.218939838705402 -0.0007467355539143279,-5.616597614248902,-6.218939838705402 0.0007468655539143279,-5.616597614248902,-6.211502536964102 -0.0007469955539143279,-5.616597614248902,-6.211502536964102 0.0007471255539143279,-5.616597614248902,-6.207783886093452 -0.0007472555539143279,-5.616597614248902,-6.211502536964102 0.000747385553914328,-5.61291836163412,-6.211502536964102 -0.0007475155539143278,-5.61291836163412,-6.207783886093452 0.0007476455539143279,-5.609239109019338,-6.218939838705402 -0.0007477755539143279,-5.616597614248902,-6.215221187834752 0.0007479055539143279,-5.61291836163412,-6.222658489576052 -0.0007480355539143279,-5.598201351174993,-6.207783886093452 0.0007481655539143279,-5.605559856404557,-6.215221187834752 -0.000748295553914328,-5.601880603789774,-6.211502536964102 0.0007484255539143279,-5.605559856404557,-6.207783886093452 -0.000748555553914328,-5.59452209856021,-6.218939838705402 0.0007486855539143278,-5.590842845945429,-6.215221187834752 -0.0007488155539143279,-5.59452209856021,-6.204065235222801 0.0007489455539143279,-5.59452209856021,-6.207783886093452 -0.0007490755539143279,-5.59452209856021,-6.207783886093452 0.0007492055539143279,-5.590842845945429,-6.211502536964102 -0.0007493355539143279,-5.587163593330647,-6.207783886093452 0.000749465553914328,-5.590842845945429,-6.204065235222801 -0.0007495955539143279,-5.590842845945429,-6.174316028257601 0.0007497255539143279,-5.587163593330647,-6.192909282610851 -0.0007498555539143278,-5.590842845945429,-6.196627933481501 0.0007499855539143279,-5.583484340715865,-6.207783886093452 -0.0007501155539143279,-5.579805088101083,-6.204065235222801 0.0007502455539143279,-5.579805088101083,-6.211502536964102 -0.0007503755539143279,-5.579805088101083,-6.211502536964102 0.0007505055539143279,-5.583484340715865,-6.211502536964102 -0.000750635553914328,-5.583484340715865,-6.215221187834752 0.0007507655539143278,-5.576125835486302,-6.218939838705402 -0.0007508955539143279,-5.576125835486302,-6.218939838705402 0.0007510255539143279,-5.572446582871519,-6.218939838705402 -0.0007511555539143279,-5.576125835486302,-6.230095791317352 0.0007512855539143279,-5.568767330256738,-6.211502536964102 -0.0007514155539143279,-5.572446582871519,-6.222658489576052 0.000751545553914328,-5.572446582871519,-6.222658489576052 -0.0007516755539143279,-5.576125835486302,-6.222658489576052 0.000751805553914328,-5.572446582871519,-6.230095791317352 -0.0007519355539143278,-5.568767330256738,-6.218939838705402 0.0007520655539143279,-5.557729572412392,-6.215221187834752 -0.0007521955539143279,-5.572446582871519,-6.222658489576052 0.0007523255539143279,-5.565088077641956,-6.222658489576052 -0.0007524555539143279,-5.561408825027174,-6.215221187834752 0.0007525855539143279,-5.557729572412392,-6.222658489576052 -0.000752715553914328,-5.557729572412392,-6.218939838705402 0.0007528455539143279,-5.565088077641956,-6.215221187834752 -0.0007529755539143279,-5.557729572412392,-6.218939838705402 0.0007531055539143279,-5.561408825027174,-6.222658489576052 -0.0007532355539143279,-5.557729572412392,-6.215221187834752 0.0007533655539143279,-5.557729572412392,-6.215221187834752 -0.0007534955539143279,-5.554050319797611,-6.211502536964102 0.0007536255539143279,-5.546691814568047,-6.218939838705402 -0.0007537555539143279,-5.550371067182828,-6.226377140446703 0.000753885553914328,-5.554050319797611,-6.226377140446703 -0.0007540155539143278,-5.543012561953264,-6.218939838705402 0.0007541455539143279,-5.543012561953264,-6.222658489576052 -0.0007542755539143279,-5.546691814568047,-6.222658489576052 0.0007544055539143279,-5.550371067182828,-6.226377140446703 -0.0007545355539143279,-5.543012561953264,-6.226377140446703 0.0007546655539143279,-5.546691814568047,-6.226377140446703 -0.000754795553914328,-5.543012561953264,-6.222658489576052 0.0007549255539143279,-5.539333309338483,-6.211502536964102 -0.000755055553914328,-5.539333309338483,-6.207783886093452 0.0007551855539143278,-5.546691814568047,-6.207783886093452 -0.0007553155539143279,-5.543012561953264,-6.211502536964102 0.0007554455539143279,-5.535654056723701,-6.215221187834752 -0.0007555755539143279,-5.539333309338483,-6.215221187834752 0.0007557055539143279,-5.528295551494137,-6.215221187834752 -0.0007558355539143279,-5.528295551494137,-6.215221187834752 0.000755965553914328,-5.535654056723701,-6.218939838705402 -0.0007560955539143278,-5.524616298879356,-6.211502536964102 0.0007562255539143279,-5.528295551494137,-6.211502536964102 -0.0007563555539143279,-5.528295551494137,-6.211502536964102 0.0007564855539143279,-5.528295551494137,-6.215221187834752 -0.0007566155539143279,-5.524616298879356,-6.218939838705402 0.0007567455539143279,-5.524616298879356,-6.215221187834752 -0.000756875553914328,-5.517257793649792,-6.211502536964102 0.0007570055539143279,-5.528295551494137,-6.218939838705402 -0.000757135553914328,-5.524616298879356,-6.211502536964102 0.0007572655539143278,-5.520937046264573,-6.211502536964102 -0.0007573955539143279,-5.520937046264573,-6.215221187834752 0.0007575255539143279,-5.517257793649792,-6.211502536964102 -0.0007576555539143279,-5.517257793649792,-6.215221187834752 0.0007577855539143279,-5.51357854103501,-6.215221187834752 -0.0007579155539143279,-5.51357854103501,-6.211502536964102 0.000758045553914328,-5.509899288420228,-6.230095791317352 -0.0007581755539143279,-5.51357854103501,-6.192909282610851 0.000758305553914328,-5.51357854103501,-6.211502536964102 -0.0007584355539143278,-5.51357854103501,-6.218939838705402 0.0007585655539143279,-5.509899288420228,-6.215221187834752 -0.0007586955539143279,-5.51357854103501,-6.211502536964102 0.0007588255539143279,-5.509899288420228,-6.211502536964102 -0.0007589555539143279,-5.506220035805446,-6.211502536964102 0.0007590855539143279,-5.502540783190665,-6.211502536964102 -0.000759215553914328,-5.502540783190665,-6.211502536964102 0.0007593455539143278,-5.498861530575883,-6.181753329998901 -0.0007594755539143279,-5.49150302534632,-6.185471980869552 0.0007596055539143279,-5.506220035805446,-6.196627933481501 -0.0007597355539143279,-5.495182277961101,-6.200346584352151 0.0007598655539143279,-5.495182277961101,-6.215221187834752 -0.0007599955539143279,-5.49150302534632,-6.215221187834752 0.000760125553914328,-5.49150302534632,-6.211502536964102 -0.0007602555539143279,-5.484144520116756,-6.218939838705402 0.000760385553914328,-5.487823772731537,-6.215221187834752 -0.0007605155539143278,-5.487823772731537,-6.215221187834752 0.0007606455539143279,-5.487823772731537,-6.222658489576052 -0.0007607755539143279,-5.480465267501973,-6.215221187834752 0.0007609055539143279,-5.484144520116756,-6.226377140446703 -0.0007610355539143279,-5.487823772731537,-6.222658489576052 0.0007611655539143279,-5.476786014887192,-6.218939838705402 -0.000761295553914328,-5.484144520116756,-6.218939838705402 0.0007614255539143279,-5.476786014887192,-6.226377140446703 -0.0007615555539143279,-5.476786014887192,-6.211502536964102 0.0007616855539143278,-5.502540783190665,-6.218939838705402 -0.0007618155539143279,-5.620276866863684,-6.230095791317352 0.0007619455539143279,-5.704899677003666,-6.226377140446703 -0.0007620755539143279,-5.75272996099583,-6.230095791317352 0.0007622055539143279,-5.785843234528866,-6.222658489576052 -0.0007623355539143279,-5.796880992373212,-6.226377140446703 0.000762465553914328,-5.807918750217557,-6.230095791317352 -0.0007625955539143278,-5.796880992373212,-6.222658489576052 0.0007627255539143279,-5.785843234528866,-6.218939838705402 -0.0007628555539143279,-5.785843234528866,-6.215221187834752 0.0007629855539143279,-5.782163981914084,-6.218939838705402 -0.0007631155539143279,-5.778484729299302,-6.226377140446703 0.0007632455539143279,-5.782163981914084,-6.226377140446703 -0.000763375553914328,-5.785843234528866,-6.230095791317352 0.0007635055539143279,-5.782163981914084,-6.218939838705402 -0.000763635553914328,-5.778484729299302,-6.222658489576052 0.0007637655539143278,-5.774805476684521,-6.218939838705402 -0.0007638955539143279,-5.782163981914084,-6.222658489576052 0.0007640255539143279,-5.778484729299302,-6.230095791317352 -0.0007641555539143279,-5.774805476684521,-6.218939838705402 0.0007642855539143279,-5.774805476684521,-6.218939838705402 -0.0007644155539143279,-5.774805476684521,-6.226377140446703 0.000764545553914328,-5.763767718840175,-6.226377140446703 -0.0007646755539143279,-5.771126224069739,-6.226377140446703 0.0007648055539143279,-5.763767718840175,-6.211502536964102 -0.0007649355539143279,-5.760088466225393,-6.211502536964102 0.0007650655539143279,-5.760088466225393,-6.211502536964102 -0.0007651955539143279,-5.760088466225393,-6.211502536964102 0.0007653255539143279,-5.756409213610612,-6.207783886093452 -0.000765455553914328,-5.756409213610612,-6.215221187834752 0.0007655855539143279,-5.760088466225393,-6.211502536964102 -0.000765715553914328,-5.756409213610612,-6.222658489576052 0.0007658455539143278,-5.75272996099583,-6.207783886093452 -0.0007659755539143279,-5.760088466225393,-6.218939838705402 0.0007661055539143279,-5.749050708381048,-6.222658489576052 -0.0007662355539143279,-5.756409213610612,-6.218939838705402 0.0007663655539143279,-5.75272996099583,-6.218939838705402 -0.0007664955539143279,-5.741692203151485,-6.215221187834752 0.000766625553914328,-5.741692203151485,-6.218939838705402 -0.0007667555539143279,-5.738012950536702,-6.204065235222801 0.000766885553914328,-5.738012950536702,-6.211502536964102 -0.0007670155539143278,-5.738012950536702,-6.211502536964102 0.0007671455539143279,-5.741692203151485,-6.207783886093452 -0.0007672755539143279,-5.738012950536702,-6.215221187834752 0.0007674055539143279,-5.734333697921921,-6.211502536964102 -0.0007675355539143279,-5.738012950536702,-6.204065235222801 0.0007676655539143279,-5.738012950536702,-6.207783886093452 -0.000767795553914328,-5.734333697921921,-6.207783886093452 0.0007679255539143278,-5.730654445307139,-6.211502536964102 -0.0007680555539143279,-5.734333697921921,-6.207783886093452 0.0007681855539143279,-5.730654445307139,-6.207783886093452 -0.0007683155539143279,-5.726975192692357,-6.200346584352151 0.0007684455539143279,-5.726975192692357,-6.207783886093452 -0.0007685755539143279,-5.723295940077575,-6.204065235222801 0.000768705553914328,-5.723295940077575,-6.207783886093452 -0.0007688355539143279,-5.723295940077575,-6.207783886093452 0.000768965553914328,-5.723295940077575,-6.207783886093452 -0.0007690955539143278,-5.719616687462793,-6.181753329998901 0.0007692255539143279,-5.719616687462793,-6.178034679128251 -0.0007693555539143279,-5.71225818223323,-6.189190631740201 0.0007694855539143279,-5.715937434848011,-6.204065235222801 -0.0007696155539143279,-5.715937434848011,-6.211502536964102 0.0007697455539143279,-5.719616687462793,-6.204065235222801 -0.000769875553914328,-5.71225818223323,-6.200346584352151 0.0007700055539143279,-5.715937434848011,-6.215221187834752 -0.000770135553914328,-5.708578929618447,-6.218939838705402 0.0007702655539143278,-5.71225818223323,-6.215221187834752 -0.0007703955539143279,-5.708578929618447,-6.218939838705402 0.0007705255539143279,-5.708578929618447,-6.222658489576052 -0.0007706555539143279,-5.701220424388884,-6.218939838705402 0.0007707855539143279,-5.708578929618447,-6.226377140446703 -0.0007709155539143279,-5.71225818223323,-6.226377140446703 0.000771045553914328,-5.708578929618447,-6.222658489576052 -0.0007711755539143278,-5.704899677003666,-6.218939838705402 0.0007713055539143279,-5.704899677003666,-6.215221187834752 -0.0007714355539143279,-5.704899677003666,-6.218939838705402 0.0007715655539143279,-5.704899677003666,-6.215221187834752 -0.0007716955539143279,-5.697541171774102,-6.222658489576052 0.0007718255539143279,-5.701220424388884,-6.222658489576052 -0.000771955553914328,-5.701220424388884,-6.215221187834752 0.0007720855539143279,-5.697541171774102,-6.222658489576052 -0.000772215553914328,-5.697541171774102,-6.218939838705402 0.0007723455539143278,-5.697541171774102,-6.226377140446703 -0.0007724755539143279,-5.697541171774102,-6.226377140446703 0.0007726055539143279,-5.697541171774102,-6.226377140446703 -0.0007727355539143279,-5.69386191915932,-6.226377140446703 0.0007728655539143279,-5.697541171774102,-6.226377140446703 -0.0007729955539143279,-5.69386191915932,-6.226377140446703 0.000773125553914328,-5.690182666544539,-6.222658489576052 -0.0007732555539143279,-5.690182666544539,-6.218939838705402 0.0007733855539143279,-5.690182666544539,-6.226377140446703 -0.0007735155539143278,-5.679144908700193,-6.230095791317352 0.0007736455539143279,-5.679144908700193,-6.230095791317352 -0.0007737755539143279,-5.675465656085411,-6.226377140446703 0.0007739055539143279,-5.682824161314975,-6.226377140446703 -0.0007740355539143279,-5.679144908700193,-6.226377140446703 0.0007741655539143279,-5.675465656085411,-6.226377140446703 -0.000774295553914328,-5.675465656085411,-6.226377140446703 0.0007744255539143278,-5.671786403470629,-6.230095791317352 -0.0007745555539143279,-5.664427898241065,-6.211502536964102 0.0007746855539143279,-5.671786403470629,-6.196627933481501 -0.0007748155539143279,-5.671786403470629,-6.204065235222801 0.0007749455539143279,-5.668107150855848,-6.215221187834752 -0.0007750755539143279,-5.664427898241065,-6.207783886093452 0.000775205553914328,-5.671786403470629,-6.211502536964102 -0.0007753355539143279,-5.668107150855848,-6.211502536964102 0.000775465553914328,-5.660748645626284,-6.204065235222801 -0.0007755955539143278,-5.664427898241065,-6.215221187834752 0.0007757255539143279,-5.660748645626284,-6.207783886093452 -0.0007758555539143279,-5.65339014039672,-6.230095791317352 0.0007759855539143279,-5.657069393011501,-6.181753329998901 -0.0007761155539143279,-5.657069393011501,-6.207783886093452 0.0007762455539143279,-5.657069393011501,-6.207783886093452 -0.000776375553914328,-5.657069393011501,-6.211502536964102 0.0007765055539143279,-5.649710887781938,-6.215221187834752 -0.0007766355539143279,-5.65339014039672,-6.207783886093452 0.0007767655539143279,-5.646031635167156,-6.207783886093452 -0.0007768955539143279,-5.646031635167156,-6.207783886093452 0.0007770255539143279,-5.646031635167156,-6.211502536964102 -0.0007771555539143279,-5.646031635167156,-6.207783886093452 0.000777285553914328,-5.638673129937593,-6.200346584352151 -0.0007774155539143279,-5.646031635167156,-6.204065235222801 0.000777545553914328,-5.638673129937593,-6.207783886093452 -0.0007776755539143278,-5.638673129937593,-6.207783886093452 0.0007778055539143279,-5.634993877322811,-6.211502536964102 -0.0007779355539143279,-5.638673129937593,-6.207783886093452 0.0007780655539143279,-5.634993877322811,-6.207783886093452 -0.0007781955539143279,-5.642352382552374,-6.204065235222801 0.0007783255539143279,-5.634993877322811,-6.200346584352151 -0.0007784555539143279,-5.631314624708029,-6.204065235222801 0.0007785855539143279,-5.634993877322811,-6.204065235222801 -0.000778715553914328,-5.631314624708029,-6.207783886093452 0.0007788455539143279,-5.634993877322811,-6.200346584352151 -0.0007789755539143279,-5.634993877322811,-6.178034679128251 0.0007791055539143279,-5.631314624708029,-6.189190631740201 -0.0007792355539143279,-5.631314624708029,-6.196627933481501 0.0007793655539143279,-5.627635372093247,-6.211502536964102 -0.0007794955539143279,-5.623956119478465,-6.207783886093452 0.0007796255539143279,-5.623956119478465,-6.215221187834752 -0.000779755553914328,-5.623956119478465,-6.218939838705402 0.0007798855539143279,-5.627635372093247,-6.215221187834752 -0.0007800155539143279,-5.623956119478465,-6.215221187834752 0.0007801455539143279,-5.616597614248902,-6.218939838705402 -0.0007802755539143279,-5.620276866863684,-6.215221187834752 0.0007804055539143279,-5.616597614248902,-6.222658489576052 -0.0007805355539143279,-5.616597614248902,-6.215221187834752 0.0007806655539143279,-5.616597614248902,-6.222658489576052 -0.000780795553914328,-5.616597614248902,-6.222658489576052 0.0007809255539143279,-5.609239109019338,-6.222658489576052 -0.0007810555539143279,-5.620276866863684,-6.226377140446703 0.0007811855539143279,-5.623956119478465,-6.222658489576052 -0.0007813155539143279,-5.61291836163412,-6.226377140446703 0.0007814455539143279,-5.609239109019338,-6.218939838705402 -0.0007815755539143279,-5.616597614248902,-6.222658489576052 0.0007817055539143279,-5.609239109019338,-6.222658489576052 -0.0007818355539143279,-5.601880603789774,-6.233814442188002 0.000781965553914328,-5.601880603789774,-6.222658489576052 -0.0007820955539143279,-5.605559856404557,-6.226377140446703 0.0007822255539143279,-5.59452209856021,-6.222658489576052 -0.0007823555539143279,-5.598201351174993,-6.222658489576052 0.0007824855539143279,-5.590842845945429,-6.230095791317352 -0.0007826155539143279,-5.59452209856021,-6.230095791317352 0.0007827455539143279,-5.590842845945429,-6.226377140446703 -0.0007828755539143279,-5.590842845945429,-6.230095791317352 0.000783005553914328,-5.59452209856021,-6.222658489576052 -0.0007831355539143279,-5.590842845945429,-6.215221187834752 0.0007832655539143279,-5.590842845945429,-6.226377140446703 -0.0007833955539143279,-5.59452209856021,-6.222658489576052 0.0007835255539143279,-5.587163593330647,-6.230095791317352 -0.0007836555539143279,-5.583484340715865,-6.215221187834752 0.0007837855539143279,-5.59452209856021,-6.226377140446703 -0.0007839155539143279,-5.587163593330647,-6.226377140446703 0.000784045553914328,-5.587163593330647,-6.222658489576052 -0.0007841755539143279,-5.587163593330647,-6.218939838705402 0.0007843055539143279,-5.579805088101083,-6.204065235222801 -0.0007844355539143279,-5.576125835486302,-6.204065235222801 0.0007845655539143279,-5.572446582871519,-6.204065235222801 -0.0007846955539143279,-5.576125835486302,-6.200346584352151 0.0007848255539143279,-5.572446582871519,-6.207783886093452 -0.0007849555539143279,-5.572446582871519,-6.204065235222801 0.000785085553914328,-5.572446582871519,-6.204065235222801 -0.0007852155539143279,-5.572446582871519,-6.207783886093452 0.0007853455539143279,-5.565088077641956,-6.207783886093452 -0.0007854755539143279,-5.568767330256738,-6.207783886093452 0.0007856055539143279,-5.568767330256738,-6.215221187834752 -0.0007857355539143279,-5.561408825027174,-6.204065235222801 0.0007858655539143279,-5.561408825027174,-6.204065235222801 -0.0007859955539143279,-5.561408825027174,-6.204065235222801 0.0007861255539143279,-5.565088077641956,-6.204065235222801 -0.000786255553914328,-5.557729572412392,-6.204065235222801 0.0007863855539143279,-5.565088077641956,-6.207783886093452 -0.0007865155539143279,-5.557729572412392,-6.211502536964102 0.0007866455539143279,-5.557729572412392,-6.211502536964102 -0.0007867755539143279,-5.561408825027174,-6.218939838705402 0.0007869055539143279,-5.550371067182828,-6.204065235222801 -0.0007870355539143279,-5.554050319797611,-6.211502536964102 0.0007871655539143279,-5.554050319797611,-6.211502536964102 -0.000787295553914328,-5.550371067182828,-6.207783886093452 0.0007874255539143279,-5.550371067182828,-6.207783886093452 -0.0007875555539143279,-5.550371067182828,-6.211502536964102 0.0007876855539143279,-5.539333309338483,-6.196627933481501 -0.0007878155539143279,-5.546691814568047,-6.222658489576052 0.0007879455539143279,-5.539333309338483,-6.207783886093452 -0.0007880755539143279,-5.539333309338483,-6.204065235222801 0.0007882055539143279,-5.543012561953264,-6.204065235222801 -0.000788335553914328,-5.539333309338483,-6.207783886093452 0.0007884655539143279,-5.539333309338483,-6.211502536964102 -0.0007885955539143279,-5.539333309338483,-6.207783886093452 0.0007887255539143279,-5.531974804108919,-6.181753329998901 -0.0007888555539143279,-5.539333309338483,-6.189190631740201 0.0007889855539143279,-5.535654056723701,-6.196627933481501 -0.0007891155539143279,-5.531974804108919,-6.196627933481501 0.0007892455539143279,-5.539333309338483,-6.204065235222801 -0.0007893755539143279,-5.539333309338483,-6.211502536964102 0.0007895055539143279,-5.535654056723701,-6.211502536964102 -0.0007896355539143279,-5.535654056723701,-6.211502536964102 0.0007897655539143279,-5.535654056723701,-6.211502536964102 -0.0007898955539143279,-5.535654056723701,-6.211502536964102 0.0007900255539143279,-5.528295551494137,-6.211502536964102 -0.0007901555539143279,-5.531974804108919,-6.215221187834752 0.0007902855539143279,-5.524616298879356,-6.218939838705402 -0.0007904155539143279,-5.520937046264573,-6.215221187834752 0.000790545553914328,-5.524616298879356,-6.215221187834752 -0.0007906755539143279,-5.517257793649792,-6.215221187834752 0.0007908055539143279,-5.517257793649792,-6.218939838705402 -0.0007909355539143279,-5.517257793649792,-6.215221187834752 0.0007910655539143279,-5.517257793649792,-6.215221187834752 -0.0007911955539143279,-5.517257793649792,-6.222658489576052 0.0007913255539143279,-5.51357854103501,-6.222658489576052 -0.0007914555539143279,-5.51357854103501,-6.222658489576052 0.000791585553914328,-5.51357854103501,-6.218939838705402 -0.0007917155539143279,-5.509899288420228,-6.218939838705402 0.0007918455539143279,-5.509899288420228,-6.226377140446703 -0.0007919755539143279,-5.51357854103501,-6.218939838705402 0.0007921055539143279,-5.51357854103501,-6.222658489576052 -0.0007922355539143279,-5.509899288420228,-6.222658489576052 0.0007923655539143279,-5.509899288420228,-6.218939838705402 -0.0007924955539143279,-5.502540783190665,-6.222658489576052 0.000792625553914328,-5.502540783190665,-6.218939838705402 -0.0007927555539143279,-5.509899288420228,-6.222658489576052 0.0007928855539143279,-5.502540783190665,-6.226377140446703 -0.0007930155539143279,-5.509899288420228,-6.226377140446703 0.0007931455539143279,-5.502540783190665,-6.226377140446703 -0.0007932755539143279,-5.49150302534632,-6.222658489576052 0.0007934055539143279,-5.498861530575883,-6.230095791317352 -0.0007935355539143279,-5.498861530575883,-6.222658489576052 0.0007936655539143279,-5.487823772731537,-6.237533093058652 -0.000793795553914328,-5.498861530575883,-6.204065235222801 0.0007939255539143279,-5.49150302534632,-6.222658489576052 -0.0007940555539143279,-5.484144520116756,-6.215221187834752 0.0007941855539143279,-5.487823772731537,-6.204065235222801 -0.0007943155539143279,-5.484144520116756,-6.207783886093452 0.0007944455539143279,-5.484144520116756,-6.207783886093452 -0.0007945755539143279,-5.480465267501973,-6.207783886093452 0.0007947055539143279,-5.469427509657628,-6.215221187834752 -0.000794835553914328,-5.47310676227241,-6.211502536964102 0.0007949655539143279,-5.47310676227241,-6.211502536964102 -0.0007950955539143279,-5.469427509657628,-6.200346584352151 0.0007952255539143279,-5.469427509657628,-6.211502536964102 -0.0007953555539143279,-5.520937046264573,-6.215221187834752 0.0007954855539143279,-5.638673129937593,-6.215221187834752 -0.0007956155539143279,-5.708578929618447,-6.226377140446703 0.0007957455539143279,-5.756409213610612,-6.215221187834752 -0.000795875553914328,-5.782163981914084,-6.218939838705402 0.0007960055539143279,-5.796880992373212,-6.218939838705402 -0.0007961355539143279,-5.811598002832339,-6.211502536964102 0.0007962655539143279,-5.796880992373212,-6.207783886093452 -0.0007963955539143279,-5.789522487143648,-6.211502536964102 0.0007965255539143279,-5.79320173975843,-6.207783886093452 -0.0007966555539143279,-5.785843234528866,-6.200346584352151 0.0007967855539143279,-5.785843234528866,-6.204065235222801 -0.000796915553914328,-5.782163981914084,-6.211502536964102 0.0007970455539143279,-5.778484729299302,-6.215221187834752 -0.0007971755539143279,-5.778484729299302,-6.211502536964102 0.0007973055539143279,-5.782163981914084,-6.207783886093452 -0.0007974355539143279,-5.771126224069739,-6.204065235222801 0.0007975655539143279,-5.771126224069739,-6.211502536964102 -0.0007976955539143279,-5.774805476684521,-6.215221187834752 0.0007978255539143279,-5.767446971454957,-6.215221187834752 -0.0007979555539143279,-5.763767718840175,-6.207783886093452 0.000798085553914328,-5.767446971454957,-6.207783886093452 -0.0007982155539143279,-5.763767718840175,-6.207783886093452 0.0007983455539143279,-5.763767718840175,-6.207783886093452 -0.0007984755539143279,-5.763767718840175,-6.192909282610851 0.0007986055539143279,-5.760088466225393,-6.189190631740201 -0.0007987355539143279,-5.760088466225393,-6.204065235222801 0.0007988655539143279,-5.763767718840175,-6.207783886093452 -0.0007989955539143279,-5.763767718840175,-6.207783886093452 0.000799125553914328,-5.756409213610612,-6.215221187834752 -0.0007992555539143279,-5.760088466225393,-6.211502536964102 0.0007993855539143279,-5.756409213610612,-6.218939838705402 -0.0007995155539143279,-5.760088466225393,-6.211502536964102 0.0007996455539143279,-5.749050708381048,-6.226377140446703 -0.0007997755539143279,-5.745371455766266,-6.211502536964102 0.0007999055539143279,-5.749050708381048,-6.218939838705402 -0.0008000355539143279,-5.749050708381048,-6.222658489576052 0.000800165553914328,-5.741692203151485,-6.222658489576052 -0.0008002955539143279,-5.741692203151485,-6.218939838705402 0.0008004255539143279,-5.738012950536702,-6.215221187834752 -0.0008005555539143279,-5.738012950536702,-6.226377140446703 0.0008006855539143279,-5.738012950536702,-6.218939838705402 -0.0008008155539143279,-5.741692203151485,-6.211502536964102 0.0008009455539143279,-5.738012950536702,-6.215221187834752 -0.0008010755539143279,-5.738012950536702,-6.218939838705402 0.0008012055539143279,-5.741692203151485,-6.218939838705402 -0.000801335553914328,-5.75272996099583,-6.226377140446703 0.0008014655539143279,-5.734333697921921,-6.207783886093452 -0.0008015955539143279,-5.741692203151485,-6.226377140446703 0.0008017255539143279,-5.741692203151485,-6.218939838705402 -0.0008018555539143279,-5.738012950536702,-6.222658489576052 0.0008019855539143279,-5.734333697921921,-6.222658489576052 -0.0008021155539143279,-5.734333697921921,-6.211502536964102 0.0008022455539143279,-5.734333697921921,-6.218939838705402 -0.000802375553914328,-5.726975192692357,-6.215221187834752 0.0008025055539143279,-5.723295940077575,-6.218939838705402 -0.0008026355539143279,-5.726975192692357,-6.215221187834752 0.0008027655539143279,-5.723295940077575,-6.215221187834752 -0.0008028955539143279,-5.719616687462793,-6.215221187834752 0.0008030255539143279,-5.719616687462793,-6.222658489576052 -0.0008031555539143279,-5.719616687462793,-6.218939838705402 0.0008032855539143279,-5.726975192692357,-6.218939838705402 -0.000803415553914328,-5.715937434848011,-6.218939838705402 0.0008035455539143279,-5.715937434848011,-6.218939838705402 -0.0008036755539143279,-5.715937434848011,-6.222658489576052 0.0008038055539143279,-5.715937434848011,-6.222658489576052 -0.0008039355539143279,-5.715937434848011,-6.207783886093452 0.0008040655539143279,-5.71225818223323,-6.207783886093452 -0.0008041955539143279,-5.71225818223323,-6.204065235222801 0.0008043255539143279,-5.708578929618447,-6.215221187834752 -0.000804455553914328,-5.708578929618447,-6.215221187834752 0.0008045855539143279,-5.71225818223323,-6.226377140446703 -0.0008047155539143279,-5.704899677003666,-6.207783886093452 0.0008048455539143279,-5.69386191915932,-6.218939838705402 -0.0008049755539143279,-5.701220424388884,-6.215221187834752 0.0008051055539143279,-5.701220424388884,-6.215221187834752 -0.0008052355539143279,-5.701220424388884,-6.207783886093452 0.0008053655539143279,-5.701220424388884,-6.211502536964102 -0.0008054955539143279,-5.69386191915932,-6.189190631740201 0.000805625553914328,-5.704899677003666,-6.226377140446703 -0.0008057555539143279,-5.69386191915932,-6.211502536964102 0.0008058855539143279,-5.690182666544539,-6.200346584352151 -0.0008060155539143279,-5.690182666544539,-6.207783886093452 0.0008061455539143279,-5.686503413929756,-6.207783886093452 -0.0008062755539143279,-5.690182666544539,-6.204065235222801 0.0008064055539143279,-5.690182666544539,-6.207783886093452 -0.0008065355539143279,-5.682824161314975,-6.207783886093452 0.000806665553914328,-5.679144908700193,-6.200346584352151 -0.0008067955539143279,-5.682824161314975,-6.204065235222801 0.0008069255539143279,-5.675465656085411,-6.200346584352151 -0.0008070555539143279,-5.679144908700193,-6.207783886093452 0.0008071855539143279,-5.682824161314975,-6.211502536964102 -0.0008073155539143279,-5.679144908700193,-6.211502536964102 0.0008074455539143279,-5.668107150855848,-6.204065235222801 -0.0008075755539143279,-5.675465656085411,-6.204065235222801 0.000807705553914328,-5.668107150855848,-6.211502536964102 -0.0008078355539143279,-5.671786403470629,-6.207783886093452 0.0008079655539143279,-5.675465656085411,-6.207783886093452 -0.0008080955539143279,-5.679144908700193,-6.207783886093452 0.0008082255539143279,-5.675465656085411,-6.192909282610851 -0.0008083555539143279,-5.668107150855848,-6.181753329998901 0.0008084855539143279,-5.660748645626284,-6.196627933481501 -0.0008086155539143279,-5.664427898241065,-6.204065235222801 0.000808745553914328,-5.668107150855848,-6.211502536964102 -0.0008088755539143279,-5.664427898241065,-6.204065235222801 0.0008090055539143279,-5.660748645626284,-6.211502536964102 -0.0008091355539143279,-5.668107150855848,-6.211502536964102 0.0008092655539143279,-5.664427898241065,-6.215221187834752 -0.0008093955539143279,-5.657069393011501,-6.218939838705402 0.0008095255539143279,-5.660748645626284,-6.215221187834752 -0.0008096555539143279,-5.664427898241065,-6.211502536964102 0.0008097855539143279,-5.660748645626284,-6.222658489576052 -0.000809915553914328,-5.657069393011501,-6.215221187834752 0.0008100455539143279,-5.657069393011501,-6.211502536964102 -0.0008101755539143279,-5.657069393011501,-6.218939838705402 0.0008103055539143279,-5.65339014039672,-6.211502536964102 -0.0008104355539143279,-5.649710887781938,-6.211502536964102 0.0008105655539143279,-5.646031635167156,-6.222658489576052 -0.0008106955539143279,-5.646031635167156,-6.207783886093452 0.0008108255539143279,-5.649710887781938,-6.218939838705402 -0.000810955553914328,-5.646031635167156,-6.226377140446703 0.0008110855539143279,-5.646031635167156,-6.215221187834752 -0.0008112155539143279,-5.649710887781938,-6.226377140446703 0.0008113455539143279,-5.646031635167156,-6.218939838705402 -0.0008114755539143279,-5.638673129937593,-6.233814442188002 0.0008116055539143279,-5.638673129937593,-6.207783886093452 -0.0008117355539143279,-5.634993877322811,-6.222658489576052 0.0008118655539143279,-5.634993877322811,-6.218939838705402 -0.000811995553914328,-5.634993877322811,-6.215221187834752 0.0008121255539143279,-5.638673129937593,-6.222658489576052 -0.0008122555539143279,-5.631314624708029,-6.211502536964102 0.0008123855539143279,-5.634993877322811,-6.218939838705402 -0.0008125155539143279,-5.638673129937593,-6.226377140446703 0.0008126455539143279,-5.634993877322811,-6.222658489576052 -0.0008127755539143279,-5.631314624708029,-6.218939838705402 0.0008129055539143279,-5.623956119478465,-6.207783886093452 -0.000813035553914328,-5.631314624708029,-6.218939838705402 0.000813165553914328,-5.623956119478465,-6.222658489576052 -0.0008132955539143279,-5.623956119478465,-6.226377140446703 0.0008134255539143279,-5.620276866863684,-6.226377140446703 -0.0008135555539143279,-5.616597614248902,-6.226377140446703 0.0008136855539143279,-5.616597614248902,-6.215221187834752 -0.0008138155539143279,-5.623956119478465,-6.211502536964102 0.0008139455539143279,-5.627635372093247,-6.211502536964102 -0.0008140755539143279,-5.623956119478465,-6.218939838705402 0.000814205553914328,-5.620276866863684,-6.211502536964102 -0.0008143355539143279,-5.620276866863684,-6.215221187834752 0.0008144655539143279,-5.616597614248902,-6.218939838705402 -0.0008145955539143279,-5.616597614248902,-6.211502536964102 0.0008147255539143279,-5.61291836163412,-6.215221187834752 -0.0008148555539143279,-5.601880603789774,-6.215221187834752 0.0008149855539143279,-5.605559856404557,-6.215221187834752 -0.0008151155539143279,-5.601880603789774,-6.215221187834752 0.000815245553914328,-5.601880603789774,-6.207783886093452 -0.0008153755539143279,-5.601880603789774,-6.207783886093452 0.0008155055539143279,-5.605559856404557,-6.204065235222801 -0.0008156355539143279,-5.605559856404557,-6.207783886093452 0.0008157655539143279,-5.601880603789774,-6.211502536964102 -0.0008158955539143279,-5.598201351174993,-6.211502536964102 0.0008160255539143279,-5.598201351174993,-6.211502536964102 -0.0008161555539143279,-5.59452209856021,-6.207783886093452 0.000816285553914328,-5.601880603789774,-6.204065235222801 -0.0008164155539143279,-5.598201351174993,-6.204065235222801 0.0008165455539143279,-5.59452209856021,-6.204065235222801 -0.0008166755539143279,-5.598201351174993,-6.204065235222801 0.0008168055539143279,-5.59452209856021,-6.207783886093452 -0.0008169355539143279,-5.590842845945429,-6.204065235222801 0.0008170655539143279,-5.590842845945429,-6.207783886093452 -0.0008171955539143279,-5.590842845945429,-6.207783886093452 0.0008173255539143279,-5.587163593330647,-6.207783886093452 -0.000817455553914328,-5.576125835486302,-6.218939838705402 0.0008175855539143279,-5.579805088101083,-6.204065235222801 -0.0008177155539143279,-5.579805088101083,-6.204065235222801 0.0008178455539143279,-5.579805088101083,-6.204065235222801 -0.0008179755539143279,-5.579805088101083,-6.207783886093452 0.0008181055539143279,-5.572446582871519,-6.181753329998901 -0.0008182355539143279,-5.572446582871519,-6.189190631740201 0.0008183655539143279,-5.568767330256738,-6.204065235222801 -0.000818495553914328,-5.572446582871519,-6.204065235222801 0.0008186255539143279,-5.568767330256738,-6.211502536964102 -0.0008187555539143279,-5.568767330256738,-6.207783886093452 0.0008188855539143279,-5.576125835486302,-6.211502536964102 -0.0008190155539143279,-5.576125835486302,-6.218939838705402 0.0008191455539143279,-5.572446582871519,-6.222658489576052 -0.0008192755539143279,-5.568767330256738,-6.211502536964102 0.0008194055539143279,-5.565088077641956,-6.222658489576052 -0.000819535553914328,-5.568767330256738,-6.222658489576052 0.0008196655539143279,-5.557729572412392,-6.218939838705402 -0.0008197955539143279,-5.557729572412392,-6.218939838705402 0.0008199255539143279,-5.561408825027174,-6.215221187834752 -0.0008200555539143279,-5.557729572412392,-6.226377140446703 0.0008201855539143279,-5.554050319797611,-6.218939838705402 -0.0008203155539143279,-5.554050319797611,-6.222658489576052 0.0008204455539143279,-5.557729572412392,-6.218939838705402 -0.000820575553914328,-5.557729572412392,-6.215221187834752 0.0008207055539143279,-5.550371067182828,-6.218939838705402 -0.0008208355539143279,-5.550371067182828,-6.215221187834752 0.0008209655539143279,-5.550371067182828,-6.218939838705402 -0.0008210955539143279,-5.546691814568047,-6.215221187834752 0.0008212255539143279,-5.550371067182828,-6.218939838705402 -0.0008213555539143279,-5.539333309338483,-6.215221187834752 0.0008214855539143279,-5.543012561953264,-6.222658489576052 -0.0008216155539143279,-5.539333309338483,-6.218939838705402 0.000821745553914328,-5.539333309338483,-6.215221187834752 -0.0008218755539143279,-5.539333309338483,-6.215221187834752 0.0008220055539143279,-5.539333309338483,-6.222658489576052 -0.0008221355539143279,-5.539333309338483,-6.222658489576052 0.0008222655539143279,-5.535654056723701,-6.222658489576052 diff --git a/meas/20200218ttluart.csv b/meas/20200218ttluart.csv index 4b82a90..afb71e4 100644 --- a/meas/20200218ttluart.csv +++ b/meas/20200218ttluart.csv @@ -1,8193 +1,4097 @@ -Time (s),Channel 1 (V),Channel 2 (V) --0.0003937698347107439,-9.691147046395772,4.753124569506275 +t,c1,c2 -0.0003936498347107438,-9.694826299010556,4.753124569506275 --0.0003935298347107438,-9.691147046395773,4.753124569506271 -0.0003934098347107438,-9.694826299010556,4.745687267764975 --0.0003932898347107438,-9.691147046395773,4.753124569506271 -0.0003931698347107438,-9.694826299010554,4.745687267764978 --0.0003930498347107438,-9.698505551625336,4.745687267764975 -0.0003929298347107439,-9.698505551625336,4.745687267764975 --0.0003928098347107438,-9.691147046395772,4.749405918635624 -0.0003926898347107438,-9.691147046395772,4.753124569506271 --0.0003925698347107438,-9.691147046395772,4.745687267764975 -0.0003924498347107438,-9.691147046395775,4.749405918635622 --0.0003923298347107438,-9.698505551625333,4.745687267764977 -0.0003922098347107438,-9.691147046395772,4.741968616894324 --0.0003920898347107439,-9.694826299010554,4.741968616894324 -0.0003919698347107438,-9.687467793780991,4.741968616894324 --0.0003918498347107438,-9.691147046395775,4.745687267764973 -0.0003917298347107438,-9.698505551625336,4.741968616894324 --0.0003916098347107438,-9.691147046395772,4.745687267764975 -0.0003914898347107438,-9.691147046395772,4.745687267764975 --0.0003913698347107438,-9.691147046395772,4.741968616894324 -0.0003912498347107439,-9.691147046395772,4.745687267764973 --0.0003911298347107438,-9.698505551625336,4.741968616894324 -0.0003910098347107438,-9.691147046395773,4.749405918635622 --0.0003908898347107438,-9.694826299010556,4.745687267764975 -0.0003907698347107438,-9.698505551625336,4.745687267764975 --0.0003906498347107438,-9.694826299010558,4.741968616894326 -0.0003905298347107438,-9.691147046395772,4.749405918635624 --0.0003904098347107438,-9.687467793780991,4.741968616894324 -0.0003902898347107438,-9.687467793780991,4.745687267764975 --0.0003901698347107438,-9.691147046395772,4.741968616894324 -0.0003900498347107438,-9.691147046395772,4.741968616894324 --0.0003899298347107438,-9.68378854116621,4.738249966023675 -0.0003898098347107438,-9.687467793780991,4.749405918635624 --0.0003896898347107438,-9.64699601501839,4.719656711670424 -0.0003895698347107438,-9.643316762403609,4.775436474730176 --0.0003894498347107438,-9.680109288551426,4.745687267764975 -0.0003893298347107438,-9.68378854116621,4.738249966023675 --0.0003892098347107438,-9.68378854116621,4.745687267764975 -0.0003890898347107438,-9.680109288551426,4.738249966023675 --0.0003889698347107438,-9.680109288551426,4.741968616894324 -0.0003888498347107438,-9.680109288551426,4.741968616894324 --0.0003887298347107438,-9.687467793780991,4.741968616894324 -0.0003886098347107438,-9.687467793780991,4.745687267764975 --0.0003884898347107438,-9.691147046395772,4.738249966023675 -0.0003883698347107438,-9.687467793780991,4.745687267764975 --0.0003882498347107438,-9.691147046395772,4.741968616894324 -0.0003881298347107438,-9.691147046395772,4.745687267764975 --0.0003880098347107438,-9.691147046395772,4.741968616894324 -0.0003878898347107438,-9.691147046395772,4.741968616894324 --0.0003877698347107438,-9.691147046395772,4.741968616894324 -0.0003876498347107438,-9.691147046395772,4.741968616894324 --0.0003875298347107438,-9.687467793780991,4.745687267764975 -0.0003874098347107438,-9.68378854116621,4.738249966023675 --0.0003872898347107438,-9.687467793780991,4.745687267764975 -0.0003871698347107438,-9.68378854116621,4.745687267764975 --0.0003870498347107438,-9.680109288551426,4.745687267764975 -0.0003869298347107438,-9.68378854116621,4.753124569506275 --0.0003868098347107438,-9.68378854116621,4.753124569506275 -0.0003866898347107438,-9.680109288551426,4.760561871247575 --0.0003865698347107438,-9.68378854116621,4.756843220376926 -0.0003864498347107438,-9.68378854116621,4.753124569506275 --0.0003863298347107438,-9.687467793780991,4.749405918635624 -0.0003862098347107438,-9.691147046395772,4.753124569506275 --0.0003860898347107438,-9.687467793780991,4.753124569506275 -0.0003859698347107438,-9.687467793780991,4.753124569506275 --0.0003858498347107438,-9.687467793780991,4.756843220376926 -0.0003857298347107438,-9.687467793780991,4.753124569506275 --0.0003856098347107438,-9.687467793780991,4.745687267764975 -0.0003854898347107438,-9.68378854116621,4.745687267764975 --0.0003853698347107438,-9.687467793780991,4.749405918635624 -0.0003852498347107438,-9.555014699648845,4.749405918635624 --0.0003851298347107438,-9.650675267633174,4.741968616894324 -0.0003850098347107438,-9.687467793780991,4.738249966023675 --0.0003848898347107438,-9.687467793780991,4.741968616894324 -0.0003847698347107438,-9.687467793780991,4.741968616894324 --0.0003846498347107438,-9.691147046395772,4.741968616894324 -0.0003845298347107438,-9.691147046395772,4.745687267764975 --0.0003844098347107438,-9.694826299010556,4.749405918635624 -0.0003842898347107438,-9.694826299010556,4.749405918635624 --0.0003841698347107438,-9.694826299010556,4.730812664282375 -0.0003840498347107438,-9.694826299010556,4.741968616894324 --0.0003839298347107438,-9.698505551625336,4.741968616894324 -0.0003838098347107438,-9.694826299010556,4.749405918635624 --0.0003836898347107438,-9.698505551625336,4.745687267764975 -0.0003835698347107438,-9.691147046395772,4.745687267764975 --0.0003834498347107438,-9.694826299010556,4.745687267764975 -0.0003833298347107438,-9.687467793780991,4.741968616894324 --0.0003832098347107438,-9.687467793780991,4.749405918635624 -0.0003830898347107438,-9.694826299010556,4.741968616894324 --0.0003829698347107438,-9.691147046395772,4.753124569506275 -0.0003828498347107438,-9.698505551625336,4.749405918635624 --0.0003827298347107438,-9.691147046395772,4.745687267764975 -0.0003826098347107438,-9.698505551625336,4.745687267764975 --0.0003824898347107438,-9.691147046395772,4.745687267764975 -0.0003823698347107438,-9.694826299010556,4.745687267764975 --0.0003822498347107438,-9.694826299010556,4.749405918635624 -0.0003821298347107438,-9.698505551625336,4.749405918635624 --0.0003820098347107438,-9.694826299010556,4.738249966023675 -0.0003818898347107438,-9.698505551625336,4.749405918635624 --0.0003817698347107438,-9.702184804240117,4.741968616894324 -0.0003816498347107438,-9.698505551625336,4.753124569506275 --0.0003815298347107438,-9.694826299010556,4.749405918635624 -0.0003814098347107438,-9.694826299010556,4.753124569506275 --0.0003812898347107438,-9.694826299010556,4.749405918635624 -0.0003811698347107438,-9.698505551625336,4.741968616894324 --0.0003810498347107438,-9.694826299010556,4.741968616894324 -0.0003809298347107438,-9.694826299010556,4.738249966023675 --0.0003808098347107438,-9.694826299010556,4.749405918635624 -0.0003806898347107438,-9.694826299010556,4.745687267764975 --0.0003805698347107438,-9.698505551625336,4.753124569506275 -0.0003804498347107438,-9.698505551625336,4.749405918635624 --0.0003803298347107438,-9.698505551625336,4.741968616894324 -0.0003802098347107438,-9.705864056854901,4.749405918635624 --0.0003800898347107438,-9.702184804240117,4.749405918635624 -0.0003799698347107438,-9.687467793780991,4.738249966023675 --0.0003798498347107438,-9.628599751944483,4.760561871247575 -0.0003797298347107438,-9.687467793780991,4.749405918635624 --0.0003796098347107438,-9.68378854116621,4.745687267764975 -0.0003794898347107438,-9.68378854116621,4.745687267764975 --0.0003793698347107438,-9.68378854116621,4.741968616894324 -0.0003792498347107438,-9.691147046395772,4.741968616894324 --0.0003791298347107438,-9.680109288551426,4.738249966023675 -0.0003790098347107438,-9.680109288551426,4.734531315153024 --0.0003788898347107438,-9.68378854116621,4.741968616894324 -0.0003787698347107438,-9.687467793780991,4.738249966023675 --0.0003786498347107438,-9.68378854116621,4.741968616894324 -0.0003785298347107438,-9.68378854116621,4.745687267764975 --0.0003784098347107438,-9.687467793780991,4.741968616894324 -0.0003782898347107438,-9.687467793780991,4.745687267764975 --0.0003781698347107438,-9.687467793780991,4.745687267764975 -0.0003780498347107438,-9.691147046395772,4.749405918635624 --0.0003779298347107438,-9.694826299010556,4.745687267764975 -0.0003778098347107438,-9.691147046395772,4.753124569506275 --0.0003776898347107438,-9.691147046395772,4.749405918635624 -0.0003775698347107438,-9.691147046395772,4.749405918635624 --0.0003774498347107438,-9.680109288551426,4.753124569506275 -0.0003773298347107438,-9.68378854116621,4.753124569506275 --0.0003772098347107438,-9.687467793780991,4.749405918635624 -0.0003770898347107438,-9.68378854116621,4.749405918635624 --0.0003769698347107438,-9.68378854116621,4.753124569506275 -0.0003768498347107438,-9.687467793780991,4.745687267764975 --0.0003767298347107438,-9.68378854116621,4.749405918635624 -0.0003766098347107438,-9.691147046395772,4.741968616894324 --0.0003764898347107438,-9.687467793780991,4.749405918635624 -0.0003763698347107438,-9.687467793780991,4.753124569506275 --0.0003762498347107438,-9.691147046395772,4.741968616894324 -0.0003761298347107438,-9.691147046395772,4.749405918635624 --0.0003760098347107438,-9.694826299010556,4.745687267764975 -0.0003758898347107438,-9.68378854116621,4.753124569506275 --0.0003757698347107438,-9.687467793780991,4.745687267764975 -0.0003756498347107438,-9.691147046395772,4.753124569506275 --0.0003755298347107438,-9.606524236255792,4.734531315153024 -0.0003754098347107438,-9.602844983641008,4.756843220376926 --0.0003752898347107438,-9.687467793780991,4.753124569506275 -0.0003751698347107438,-9.68378854116621,4.738249966023675 --0.0003750498347107438,-9.687467793780991,4.741968616894324 -0.0003749298347107438,-9.687467793780991,4.741968616894324 --0.0003748098347107438,-9.691147046395772,4.745687267764975 -0.0003746898347107438,-9.687467793780991,4.749405918635624 --0.0003745698347107438,-9.687467793780991,4.749405918635624 -0.0003744498347107438,-9.691147046395772,4.741968616894324 --0.0003743298347107438,-9.691147046395772,4.745687267764975 -0.0003742098347107438,-9.691147046395772,4.745687267764975 --0.0003740898347107438,-9.691147046395772,4.741968616894324 -0.0003739698347107438,-9.691147046395772,4.745687267764975 --0.0003738498347107438,-9.687467793780991,4.753124569506275 -0.0003737298347107438,-9.691147046395772,4.753124569506275 --0.0003736098347107438,-9.698505551625336,4.749405918635624 -0.0003734898347107438,-9.691147046395772,4.753124569506275 --0.0003733698347107438,-9.694826299010556,4.745687267764975 -0.0003732498347107438,-9.698505551625336,4.749405918635624 --0.0003731298347107438,-9.698505551625336,4.749405918635624 -0.0003730098347107438,-9.691147046395772,4.753124569506275 --0.0003728898347107438,-9.698505551625336,4.753124569506275 -0.0003727698347107438,-9.691147046395772,4.741968616894324 --0.0003726498347107438,-9.694826299010556,4.745687267764975 -0.0003725298347107438,-9.702184804240117,4.756843220376926 --0.0003724098347107438,-9.702184804240117,4.753124569506275 -0.0003722898347107438,-9.698505551625336,4.749405918635624 --0.0003721698347107438,-9.698505551625336,4.753124569506275 -0.0003720498347107438,-9.705864056854901,4.756843220376926 --0.0003719298347107438,-9.702184804240117,4.749405918635624 -0.0003718098347107438,-9.698505551625336,4.753124569506275 --0.0003716898347107438,-9.694826299010556,4.745687267764975 -0.0003715698347107438,-9.698505551625336,4.753124569506275 --0.0003714498347107438,-9.694826299010556,4.749405918635624 -0.0003713298347107438,-9.702184804240117,4.741968616894324 --0.0003712098347107438,-9.698505551625336,4.741968616894324 -0.0003710898347107438,-9.702184804240117,4.741968616894324 --0.0003709698347107438,-9.702184804240117,4.741968616894324 -0.0003708498347107438,-9.694826299010556,4.749405918635624 --0.0003707298347107438,-9.702184804240117,4.749405918635624 -0.0003706098347107438,-9.702184804240117,4.745687267764975 --0.0003704898347107438,-9.705864056854901,4.753124569506275 -0.0003703698347107438,-9.702184804240117,4.745687267764975 --0.0003702498347107438,-9.698505551625336,4.749405918635624 -0.0003701298347107438,-9.628599751944483,4.745687267764975 --0.0003700098347107438,-9.680109288551426,4.753124569506275 -0.0003698898347107438,-9.687467793780991,4.749405918635624 --0.0003697698347107438,-9.691147046395772,4.749405918635624 -0.0003696498347107438,-9.694826299010556,4.756843220376926 --0.0003695298347107438,-9.694826299010556,4.738249966023675 -0.0003694098347107438,-9.687467793780991,4.753124569506275 --0.0003692898347107438,-9.687467793780991,4.749405918635624 -0.0003691698347107438,-9.68378854116621,4.753124569506275 --0.0003690498347107438,-9.691147046395772,4.749405918635624 -0.0003689298347107438,-9.687467793780991,4.749405918635624 --0.0003688098347107438,-9.691147046395772,4.749405918635624 -0.0003686898347107438,-9.687467793780991,4.749405918635624 --0.0003685698347107438,-9.68378854116621,4.753124569506275 -0.0003684498347107438,-9.68378854116621,4.753124569506275 --0.0003683298347107438,-9.691147046395772,4.760561871247575 -0.0003682098347107438,-9.687467793780991,4.753124569506275 --0.0003680898347107438,-9.68378854116621,4.756843220376926 -0.0003679698347107438,-9.691147046395772,4.753124569506275 --0.0003678498347107438,-9.68378854116621,4.753124569506275 -0.0003677298347107438,-9.687467793780991,4.749405918635624 --0.0003676098347107438,-9.691147046395772,4.749405918635624 -0.0003674898347107438,-9.687467793780991,4.753124569506275 --0.0003673698347107438,-9.687467793780991,4.745687267764975 -0.0003672498347107438,-9.691147046395772,4.753124569506275 --0.0003671298347107438,-9.691147046395772,4.753124569506275 -0.0003670098347107438,-9.687467793780991,4.749405918635624 --0.0003668898347107438,-9.687467793780991,4.745687267764975 -0.0003667698347107438,-9.691147046395772,4.745687267764975 --0.0003666498347107438,-9.687467793780991,4.749405918635624 -0.0003665298347107438,-9.68378854116621,4.749405918635624 --0.0003664098347107438,-9.687467793780991,4.753124569506275 -0.0003662898347107438,-9.687467793780991,4.749405918635624 --0.0003661698347107438,-9.687467793780991,4.745687267764975 -0.0003660498347107438,-9.687467793780991,4.749405918635624 --0.0003659298347107438,-9.68378854116621,4.753124569506275 -0.0003658098347107438,-9.6653922780923,4.753124569506275 --0.0003656898347107438,-9.551335447034065,4.749405918635624 -0.0003655698347107438,-9.68378854116621,4.753124569506275 --0.0003654498347107438,-9.691147046395772,4.749405918635624 -0.0003653298347107438,-9.691147046395772,4.749405918635624 --0.0003652098347107438,-9.687467793780991,4.753124569506275 -0.0003650898347107438,-9.694826299010556,4.753124569506275 --0.0003649698347107438,-9.68378854116621,4.745687267764975 -0.0003648498347107438,-9.687467793780991,4.745687267764975 --0.0003647298347107438,-9.687467793780991,4.749405918635624 -0.0003646098347107438,-9.687467793780991,4.745687267764975 --0.0003644898347107438,-9.694826299010556,4.749405918635624 -0.0003643698347107438,-9.687467793780991,4.741968616894324 --0.0003642498347107438,-9.691147046395772,4.749405918635624 -0.0003641298347107438,-9.691147046395772,4.741968616894324 --0.0003640098347107438,-9.694826299010556,4.741968616894324 -0.0003638898347107438,-9.694826299010556,4.745687267764975 --0.0003637698347107438,-9.691147046395772,4.738249966023675 -0.0003636498347107438,-9.694826299010556,4.738249966023675 --0.0003635298347107438,-9.691147046395772,4.738249966023675 -0.0003634098347107438,-9.694826299010556,4.745687267764975 --0.0003632898347107438,-9.702184804240117,4.749405918635624 -0.0003631698347107438,-9.698505551625336,4.745687267764975 --0.0003630498347107438,-9.702184804240117,4.738249966023675 -0.0003629298347107438,-9.698505551625336,4.749405918635624 --0.0003628098347107438,-9.698505551625336,4.753124569506275 -0.0003626898347107438,-9.694826299010556,4.749405918635624 --0.0003625698347107438,-9.698505551625336,4.749405918635624 -0.0003624498347107438,-9.698505551625336,4.753124569506275 --0.0003623298347107438,-9.694826299010556,4.756843220376926 -0.0003622098347107438,-9.702184804240117,4.753124569506275 --0.0003620898347107438,-9.702184804240117,4.749405918635624 -0.0003619698347107438,-9.698505551625336,4.749405918635624 --0.0003618498347107438,-9.698505551625336,4.760561871247575 -0.0003617298347107438,-9.694826299010556,4.760561871247575 --0.0003616098347107438,-9.694826299010556,4.753124569506275 -0.0003614898347107438,-9.702184804240117,4.753124569506275 --0.0003613698347107438,-9.694826299010556,4.745687267764975 -0.0003612498347107438,-9.694826299010556,4.749405918635624 --0.0003611298347107438,-9.698505551625336,4.749405918635624 -0.0003610098347107438,-9.691147046395772,4.745687267764975 --0.0003608898347107438,-9.702184804240117,4.741968616894324 -0.0003607698347107438,-9.698505551625336,4.749405918635624 --0.0003606498347107438,-9.698505551625336,4.745687267764975 -0.0003605298347107438,-9.694826299010556,4.749405918635624 --0.0003604098347107438,-9.628599751944483,4.741968616894324 -0.0003602898347107438,-9.6653922780923,4.756843220376926 --0.0003601698347107438,-9.68378854116621,4.745687267764975 -0.0003600498347107438,-9.680109288551426,4.745687267764975 --0.0003599298347107438,-9.68378854116621,4.749405918635624 -0.0003598098347107438,-9.680109288551426,4.738249966023675 --0.0003596898347107438,-9.68378854116621,4.745687267764975 -0.0003595698347107438,-9.68378854116621,4.745687267764975 --0.0003594498347107438,-9.680109288551426,4.745687267764975 -0.0003593298347107438,-9.680109288551426,4.741968616894324 --0.0003592098347107438,-9.68378854116621,4.745687267764975 -0.0003590898347107438,-9.68378854116621,4.749405918635624 --0.0003589698347107438,-9.680109288551426,4.741968616894324 -0.0003588498347107438,-9.680109288551426,4.753124569506275 --0.0003587298347107438,-9.676430035936646,4.753124569506275 -0.0003586098347107438,-9.680109288551426,4.749405918635624 --0.0003584898347107438,-9.68378854116621,4.753124569506275 -0.0003583698347107438,-9.680109288551426,4.749405918635624 --0.0003582498347107438,-9.680109288551426,4.749405918635624 -0.0003581298347107438,-9.676430035936646,4.738249966023675 --0.0003580098347107438,-9.676430035936646,4.745687267764975 -0.0003578898347107438,-9.676430035936646,4.738249966023675 --0.0003577698347107438,-9.68378854116621,4.741968616894324 -0.0003576498347107438,-9.68378854116621,4.738249966023675 --0.0003575298347107438,-9.687467793780991,4.745687267764975 -0.0003574098347107438,-9.68378854116621,4.741968616894324 --0.0003572898347107438,-9.687467793780991,4.738249966023675 -0.0003571698347107438,-9.687467793780991,4.745687267764975 --0.0003570498347107438,-9.687467793780991,4.741968616894324 -0.0003569298347107438,-9.68378854116621,4.745687267764975 --0.0003568098347107438,-9.687467793780991,4.749405918635624 -0.0003566898347107438,-9.691147046395772,4.753124569506275 --0.0003565698347107438,-9.687467793780991,4.745687267764975 -0.0003564498347107438,-9.687467793780991,4.745687267764975 --0.0003563298347107438,-9.687467793780991,4.738249966023675 -0.0003562098347107438,-9.68378854116621,4.741968616894324 --0.0003560898347107438,-9.676430035936646,4.738249966023675 -0.0003559698347107438,-9.529259931345374,4.738249966023675 --0.0003558498347107438,-9.676430035936646,4.745687267764975 -0.0003557298347107438,-9.68378854116621,4.738249966023675 --0.0003556098347107438,-9.687467793780991,4.741968616894324 -0.0003554898347107438,-9.687467793780991,4.738249966023675 --0.0003553698347107438,-9.687467793780991,4.741968616894324 -0.0003552498347107438,-9.691147046395772,4.749405918635624 --0.0003551298347107438,-9.694826299010556,4.745687267764975 -0.0003550098347107438,-9.694826299010556,4.749405918635624 --0.0003548898347107438,-9.691147046395772,4.741968616894324 -0.0003547698347107438,-9.694826299010556,4.745687267764975 --0.0003546498347107438,-9.694826299010556,4.741968616894324 -0.0003545298347107438,-9.694826299010556,4.749405918635624 --0.0003544098347107438,-9.691147046395772,4.745687267764975 -0.0003542898347107438,-9.691147046395772,4.741968616894324 --0.0003541698347107438,-9.698505551625336,4.745687267764975 -0.0003540498347107438,-9.702184804240117,4.741968616894324 --0.0003539298347107438,-9.698505551625336,4.741968616894324 -0.0003538098347107438,-9.698505551625336,4.741968616894324 --0.0003536898347107438,-9.694826299010556,4.745687267764975 -0.0003535698347107438,-9.694826299010556,4.753124569506275 --0.0003534498347107438,-9.698505551625336,4.749405918635624 -0.0003533298347107438,-9.702184804240117,4.749405918635624 --0.0003532098347107438,-9.694826299010556,4.749405918635624 -0.0003530898347107438,-9.698505551625336,4.749405918635624 --0.0003529698347107438,-9.702184804240117,4.753124569506275 -0.0003528498347107438,-9.694826299010556,4.753124569506275 --0.0003527298347107438,-9.694826299010556,4.749405918635624 -0.0003526098347107438,-9.694826299010556,4.749405918635624 --0.0003524898347107438,-9.698505551625336,4.741968616894324 -0.0003523698347107438,-9.691147046395772,4.741968616894324 --0.0003522498347107438,-9.691147046395772,4.741968616894324 -0.0003521298347107438,-9.691147046395772,4.741968616894324 --0.0003520098347107438,-9.687467793780991,4.753124569506275 -0.0003518898347107438,-9.694826299010556,4.753124569506275 --0.0003517698347107438,-9.694826299010556,4.753124569506275 -0.0003516498347107438,-9.694826299010556,4.741968616894324 --0.0003515298347107438,-9.698505551625336,4.741968616894324 -0.0003514098347107438,-9.698505551625336,4.749405918635624 --0.0003512898347107438,-9.698505551625336,4.749405918635624 -0.0003511698347107438,-9.698505551625336,4.745687267764975 --0.0003510498347107438,-9.698505551625336,4.745687267764975 -0.0003509298347107438,-9.698505551625336,4.745687267764975 --0.0003508098347107438,-9.694826299010556,4.741968616894324 -0.0003506898347107438,-9.635958257174044,4.749405918635624 --0.0003505698347107438,-9.669071530707081,4.738249966023675 -0.0003504498347107438,-9.687467793780991,4.749405918635624 --0.0003503298347107438,-9.687467793780991,4.749405918635624 -0.0003502098347107438,-9.680109288551426,4.753124569506275 --0.0003500898347107438,-9.680109288551426,4.749405918635624 -0.0003499698347107438,-9.68378854116621,4.753124569506275 --0.0003498498347107438,-9.680109288551426,4.760561871247575 -0.0003497298347107438,-9.68378854116621,4.749405918635624 --0.0003496098347107438,-9.676430035936646,4.756843220376926 -0.0003494898347107438,-9.68378854116621,4.745687267764975 --0.0003493698347107438,-9.680109288551426,4.756843220376926 -0.0003492498347107438,-9.68378854116621,4.753124569506275 --0.0003491298347107438,-9.680109288551426,4.749405918635624 -0.0003490098347107438,-9.680109288551426,4.749405918635624 --0.0003488898347107438,-9.68378854116621,4.756843220376926 -0.0003487698347107438,-9.687467793780991,4.756843220376926 --0.0003486498347107438,-9.680109288551426,4.753124569506275 -0.0003485298347107438,-9.680109288551426,4.749405918635624 --0.0003484098347107438,-9.680109288551426,4.741968616894324 -0.0003482898347107438,-9.68378854116621,4.745687267764975 --0.0003481698347107438,-9.680109288551426,4.745687267764975 -0.0003480498347107438,-9.687467793780991,4.745687267764975 --0.0003479298347107438,-9.687467793780991,4.741968616894324 -0.0003478098347107438,-9.691147046395772,4.745687267764975 --0.0003476898347107438,-9.680109288551426,4.745687267764975 -0.0003475698347107438,-9.687467793780991,4.745687267764975 --0.0003474498347107438,-9.68378854116621,4.741968616894324 -0.0003473298347107438,-9.68378854116621,4.745687267764975 --0.0003472098347107438,-9.680109288551426,4.738249966023675 -0.0003470898347107438,-9.68378854116621,4.749405918635624 --0.0003469698347107438,-9.68378854116621,4.753124569506275 -0.0003468498347107438,-9.680109288551426,4.749405918635624 --0.0003467298347107438,-9.68378854116621,4.749405918635624 -0.0003466098347107438,-9.687467793780991,4.745687267764975 --0.0003464898347107438,-9.691147046395772,4.749405918635624 -0.0003463698347107438,-9.691147046395772,4.741968616894324 --0.0003462498347107438,-9.536618436574935,4.745687267764975 -0.0003461298347107438,-9.672750783321865,4.749405918635624 --0.0003460098347107438,-9.687467793780991,4.749405918635624 -0.0003458898347107438,-9.691147046395772,4.741968616894324 --0.0003457698347107438,-9.691147046395772,4.749405918635624 -0.0003456498347107438,-9.691147046395772,4.745687267764975 --0.0003455298347107438,-9.687467793780991,4.753124569506275 -0.0003454098347107438,-9.68378854116621,4.753124569506275 --0.0003452898347107438,-9.687467793780991,4.756843220376926 -0.0003451698347107438,-9.691147046395772,4.749405918635624 --0.0003450498347107438,-9.691147046395772,4.745687267764975 -0.0003449298347107438,-9.687467793780991,4.753124569506275 --0.0003448098347107438,-9.691147046395772,4.741968616894324 -0.0003446898347107438,-9.687467793780991,4.745687267764975 --0.0003445698347107438,-9.691147046395772,4.741968616894324 -0.0003444498347107438,-9.691147046395772,4.741968616894324 --0.0003443298347107438,-9.691147046395772,4.745687267764975 -0.0003442098347107438,-9.687467793780991,4.749405918635624 --0.0003440898347107438,-9.691147046395772,4.741968616894324 -0.0003439698347107438,-9.694826299010556,4.756843220376926 --0.0003438498347107438,-9.691147046395772,4.753124569506275 -0.0003437298347107438,-9.694826299010556,4.753124569506275 --0.0003436098347107438,-9.694826299010556,4.753124569506275 -0.0003434898347107438,-9.694826299010556,4.738249966023675 --0.0003433698347107438,-9.694826299010556,4.745687267764975 -0.0003432498347107438,-9.694826299010556,4.745687267764975 --0.0003431298347107438,-9.694826299010556,4.745687267764975 -0.0003430098347107438,-9.694826299010556,4.745687267764975 --0.0003428898347107438,-9.691147046395772,4.745687267764975 -0.0003427698347107438,-9.694826299010556,4.749405918635624 --0.0003426498347107438,-9.694826299010556,4.745687267764975 -0.0003425298347107438,-9.694826299010556,4.745687267764975 --0.0003424098347107438,-9.694826299010556,4.745687267764975 -0.0003422898347107438,-9.698505551625336,4.749405918635624 --0.0003421698347107438,-9.694826299010556,4.753124569506275 -0.0003420498347107438,-9.691147046395772,4.749405918635624 --0.0003419298347107438,-9.694826299010556,4.741968616894324 -0.0003418098347107438,-9.702184804240117,4.741968616894324 --0.0003416898347107438,-9.691147046395772,4.745687267764975 -0.0003415698347107438,-9.694826299010556,4.753124569506275 --0.0003414498347107438,-9.694826299010556,4.749405918635624 -0.0003413298347107438,-9.698505551625336,4.749405918635624 --0.0003412098347107438,-9.698505551625336,4.749405918635624 -0.0003410898347107438,-9.694826299010556,4.749405918635624 --0.0003409698347107438,-9.632279004559264,4.756843220376926 -0.0003408498347107438,-9.669071530707081,4.741968616894324 --0.0003407298347107438,-9.68378854116621,4.753124569506275 -0.0003406098347107438,-9.687467793780991,4.749405918635624 --0.0003404898347107438,-9.687467793780991,4.741968616894324 -0.0003403698347107438,-9.687467793780991,4.753124569506275 --0.0003402498347107438,-9.687467793780991,4.749405918635624 -0.0003401298347107438,-9.687467793780991,4.745687267764975 --0.0003400098347107438,-9.687467793780991,4.741968616894324 -0.0003398898347107438,-9.691147046395772,4.745687267764975 --0.0003397698347107438,-9.694826299010556,4.753124569506275 -0.0003396498347107438,-9.691147046395772,4.753124569506275 --0.0003395298347107438,-9.68378854116621,4.753124569506275 -0.0003394098347107438,-9.691147046395772,4.749405918635624 --0.0003392898347107438,-9.691147046395772,4.749405918635624 -0.0003391698347107438,-9.687467793780991,4.753124569506275 --0.0003390498347107438,-9.691147046395772,4.753124569506275 -0.0003389298347107438,-9.68378854116621,4.749405918635624 --0.0003388098347107438,-9.680109288551426,4.749405918635624 -0.0003386898347107438,-9.687467793780991,4.749405918635624 --0.0003385698347107438,-9.687467793780991,4.749405918635624 -0.0003384498347107438,-9.680109288551426,4.753124569506275 --0.0003383298347107438,-9.68378854116621,4.749405918635624 -0.0003382098347107438,-9.680109288551426,4.749405918635624 --0.0003380898347107438,-9.68378854116621,4.749405918635624 -0.0003379698347107438,-9.680109288551426,4.756843220376926 --0.0003378498347107438,-9.680109288551426,4.753124569506275 -0.0003377298347107438,-9.687467793780991,4.749405918635624 --0.0003376098347107438,-9.687467793780991,4.745687267764975 -0.0003374898347107438,-9.687467793780991,4.749405918635624 --0.0003373698347107438,-9.691147046395772,4.753124569506275 -0.0003372498347107438,-9.687467793780991,4.753124569506275 --0.0003371298347107438,-9.68378854116621,4.749405918635624 -0.0003370098347107438,-9.687467793780991,4.745687267764975 --0.0003368898347107438,-9.68378854116621,4.745687267764975 -0.0003367698347107438,-9.680109288551426,4.741968616894324 --0.0003366498347107438,-9.68378854116621,4.741968616894324 -0.0003365298347107438,-9.536618436574935,4.741968616894324 --0.0003364098347107438,-9.6653922780923,4.738249966023675 -0.0003362898347107438,-9.68378854116621,4.745687267764975 --0.0003361698347107438,-9.687467793780991,4.741968616894324 -0.0003360498347107438,-9.687467793780991,4.741968616894324 --0.0003359298347107438,-9.691147046395772,4.741968616894324 -0.0003358098347107438,-9.691147046395772,4.745687267764975 --0.0003356898347107438,-9.68378854116621,4.749405918635624 -0.0003355698347107438,-9.691147046395772,4.741968616894324 --0.0003354498347107438,-9.694826299010556,4.741968616894324 -0.0003353298347107438,-9.687467793780991,4.734531315153024 --0.0003352098347107438,-9.687467793780991,4.741968616894324 -0.0003350898347107438,-9.687467793780991,4.741968616894324 --0.0003349698347107438,-9.691147046395772,4.749405918635624 -0.0003348498347107438,-9.691147046395772,4.749405918635624 --0.0003347298347107438,-9.691147046395772,4.745687267764975 -0.0003346098347107438,-9.694826299010556,4.741968616894324 --0.0003344898347107438,-9.691147046395772,4.745687267764975 -0.0003343698347107438,-9.687467793780991,4.741968616894324 --0.0003342498347107438,-9.691147046395772,4.741968616894324 -0.0003341298347107438,-9.694826299010556,4.756843220376926 --0.0003340098347107438,-9.687467793780991,4.749405918635624 -0.0003338898347107438,-9.687467793780991,4.756843220376926 --0.0003337698347107438,-9.694826299010556,4.745687267764975 -0.0003336498347107438,-9.691147046395772,4.741968616894324 --0.0003335298347107438,-9.691147046395772,4.749405918635624 -0.0003334098347107438,-9.691147046395772,4.745687267764975 --0.0003332898347107438,-9.694826299010556,4.753124569506275 -0.0003331698347107438,-9.691147046395772,4.749405918635624 --0.0003330498347107438,-9.691147046395772,4.749405918635624 -0.0003329298347107438,-9.691147046395772,4.745687267764975 --0.0003328098347107438,-9.687467793780991,4.741968616894324 -0.0003326898347107438,-9.691147046395772,4.741968616894324 --0.0003325698347107438,-9.698505551625336,4.745687267764975 -0.0003324498347107438,-9.702184804240117,4.749405918635624 --0.0003323298347107438,-9.694826299010556,4.745687267764975 -0.0003322098347107438,-9.694826299010556,4.749405918635624 --0.0003320898347107438,-9.702184804240117,4.741968616894324 -0.0003319698347107438,-9.698505551625336,4.741968616894324 --0.0003318498347107438,-9.702184804240117,4.741968616894324 -0.0003317298347107438,-9.705864056854901,4.745687267764975 --0.0003316098347107438,-9.702184804240117,4.745687267764975 -0.0003314898347107438,-9.698505551625336,4.745687267764975 --0.0003313698347107438,-9.694826299010556,4.745687267764975 -0.0003312498347107438,-9.669071530707081,4.704782108187823 --0.0003311298347107438,-9.643316762403609,4.779155125600825 -0.0003310098347107438,-9.68378854116621,4.741968616894324 --0.0003308898347107438,-9.691147046395772,4.749405918635624 -0.0003307698347107438,-9.691147046395772,4.741968616894324 --0.0003306498347107438,-9.68378854116621,4.745687267764975 -0.0003305298347107438,-9.687467793780991,4.745687267764975 --0.0003304098347107438,-9.691147046395772,4.749405918635624 -0.0003302898347107438,-9.687467793780991,4.749405918635624 --0.0003301698347107438,-9.694826299010556,4.745687267764975 -0.0003300498347107438,-9.691147046395772,4.749405918635624 --0.0003299298347107438,-9.691147046395772,4.745687267764975 -0.0003298098347107438,-9.687467793780991,4.749405918635624 --0.0003296898347107438,-9.68378854116621,4.745687267764975 -0.0003295698347107438,-9.687467793780991,4.749405918635624 --0.0003294498347107438,-9.680109288551426,4.745687267764975 -0.0003293298347107438,-9.676430035936646,4.753124569506275 --0.0003292098347107438,-9.68378854116621,4.749405918635624 -0.0003290898347107438,-9.680109288551426,4.753124569506275 --0.0003289698347107438,-9.68378854116621,4.749405918635624 -0.0003288498347107438,-9.68378854116621,4.741968616894324 --0.0003287298347107438,-9.68378854116621,4.756843220376926 -0.0003286098347107438,-9.676430035936646,4.745687267764975 --0.0003284898347107438,-9.68378854116621,4.745687267764975 -0.0003283698347107438,-9.68378854116621,4.745687267764975 --0.0003282498347107438,-9.676430035936646,4.745687267764975 -0.0003281298347107438,-9.68378854116621,4.749405918635624 --0.0003280098347107438,-9.676430035936646,4.745687267764975 -0.0003278898347107438,-9.676430035936646,4.745687267764975 --0.0003277698347107438,-9.676430035936646,4.745687267764975 -0.0003276498347107438,-9.676430035936646,4.745687267764975 --0.0003275298347107438,-9.676430035936646,4.745687267764975 -0.0003274098347107438,-9.680109288551426,4.745687267764975 --0.0003272898347107438,-9.68378854116621,4.745687267764975 -0.0003271698347107438,-9.687467793780991,4.738249966023675 --0.0003270498347107438,-9.68378854116621,4.745687267764975 -0.0003269298347107438,-9.680109288551426,4.745687267764975 --0.0003268098347107438,-9.558693952263626,4.734531315153024 -0.0003266898347107438,-9.624920499329699,4.741968616894324 --0.0003265698347107438,-9.68378854116621,4.749405918635624 -0.0003264498347107438,-9.68378854116621,4.741968616894324 --0.0003263298347107438,-9.687467793780991,4.745687267764975 -0.0003262098347107438,-9.68378854116621,4.749405918635624 --0.0003260898347107438,-9.691147046395772,4.745687267764975 -0.0003259698347107438,-9.691147046395772,4.756843220376926 --0.0003258498347107438,-9.691147046395772,4.749405918635624 -0.0003257298347107438,-9.694826299010556,4.749405918635624 --0.0003256098347107438,-9.687467793780991,4.745687267764975 -0.0003254898347107438,-9.691147046395772,4.741968616894324 --0.0003253698347107438,-9.691147046395772,4.745687267764975 -0.0003252498347107438,-9.691147046395772,4.749405918635624 --0.0003251298347107438,-9.691147046395772,4.756843220376926 -0.0003250098347107438,-9.694826299010556,4.745687267764975 --0.0003248898347107438,-9.691147046395772,4.753124569506275 -0.0003247698347107438,-9.694826299010556,4.745687267764975 --0.0003246498347107438,-9.691147046395772,4.741968616894324 -0.0003245298347107438,-9.694826299010556,4.745687267764975 --0.0003244098347107438,-9.691147046395772,4.753124569506275 -0.0003242898347107438,-9.698505551625336,4.749405918635624 --0.0003241698347107438,-9.698505551625336,4.749405918635624 -0.0003240498347107438,-9.698505551625336,4.745687267764975 --0.0003239298347107438,-9.698505551625336,4.738249966023675 -0.0003238098347107438,-9.694826299010556,4.745687267764975 --0.0003236898347107438,-9.702184804240117,4.741968616894324 -0.0003235698347107438,-9.694826299010556,4.749405918635624 --0.0003234498347107438,-9.694826299010556,4.741968616894324 -0.0003233298347107438,-9.691147046395772,4.745687267764975 --0.0003232098347107438,-9.698505551625336,4.749405918635624 -0.0003230898347107438,-9.698505551625336,4.745687267764975 --0.0003229698347107438,-9.694826299010556,4.741968616894324 -0.0003228498347107438,-9.698505551625336,4.749405918635624 --0.0003227298347107438,-9.702184804240117,4.749405918635624 -0.0003226098347107438,-9.698505551625336,4.745687267764975 --0.0003224898347107438,-9.698505551625336,4.741968616894324 -0.0003223698347107438,-9.702184804240117,4.745687267764975 --0.0003222498347107438,-9.698505551625336,4.749405918635624 -0.0003221298347107438,-9.709543309469682,4.745687267764975 --0.0003220098347107438,-9.702184804240117,4.749405918635624 -0.0003218898347107438,-9.705864056854901,4.745687267764975 --0.0003217698347107438,-9.705864056854901,4.745687267764975 -0.0003216498347107438,-9.713222562084463,4.749405918635624 --0.0003215298347107438,-9.694826299010556,4.745687267764975 -0.0003214098347107438,-9.628599751944483,4.745687267764975 --0.0003212898347107438,-9.691147046395772,4.753124569506275 -0.0003211698347107438,-9.691147046395772,4.749405918635624 --0.0003210498347107438,-9.687467793780991,4.753124569506275 -0.0003209298347107438,-9.691147046395772,4.753124569506275 --0.0003208098347107438,-9.687467793780991,4.756843220376926 -0.0003206898347107438,-9.687467793780991,4.753124569506275 --0.0003205698347107438,-9.687467793780991,4.745687267764975 -0.0003204498347107438,-9.691147046395772,4.749405918635624 --0.0003203298347107438,-9.691147046395772,4.756843220376926 -0.0003202098347107438,-9.687467793780991,4.753124569506275 --0.0003200898347107438,-9.691147046395772,4.749405918635624 -0.0003199698347107438,-9.691147046395772,4.753124569506275 --0.0003198498347107438,-9.687467793780991,4.749405918635624 -0.0003197298347107438,-9.691147046395772,4.749405918635624 --0.0003196098347107438,-9.687467793780991,4.749405918635624 -0.0003194898347107438,-9.691147046395772,4.749405918635624 --0.0003193698347107438,-9.68378854116621,4.753124569506275 -0.0003192498347107438,-9.68378854116621,4.749405918635624 --0.0003191298347107438,-9.68378854116621,4.745687267764975 -0.0003190098347107438,-9.687467793780991,4.745687267764975 --0.0003188898347107438,-9.68378854116621,4.753124569506275 -0.0003187698347107438,-9.687467793780991,4.745687267764975 --0.0003186498347107438,-9.687467793780991,4.749405918635624 -0.0003185298347107438,-9.687467793780991,4.749405918635624 --0.0003184098347107438,-9.687467793780991,4.753124569506275 -0.0003182898347107438,-9.68378854116621,4.749405918635624 --0.0003181698347107438,-9.694826299010556,4.745687267764975 -0.0003180498347107438,-9.694826299010556,4.745687267764975 --0.0003179298347107438,-9.691147046395772,4.749405918635624 -0.0003178098347107438,-9.68378854116621,4.749405918635624 --0.0003176898347107438,-9.687467793780991,4.741968616894324 -0.0003175698347107438,-9.691147046395772,4.749405918635624 --0.0003174498347107438,-9.691147046395772,4.741968616894324 -0.0003173298347107438,-9.691147046395772,4.741968616894324 --0.0003172098347107438,-9.687467793780991,4.734531315153024 -0.0003170898347107438,-9.64699601501839,4.738249966023675 --0.0003169698347107438,-9.573410962722756,4.738249966023675 -0.0003168498347107438,-9.694826299010556,4.741968616894324 --0.0003167298347107438,-9.687467793780991,4.738249966023675 -0.0003166098347107438,-9.694826299010556,4.734531315153024 --0.0003164898347107438,-9.694826299010556,4.738249966023675 -0.0003163698347107438,-9.691147046395772,4.734531315153024 --0.0003162498347107438,-9.691147046395772,4.738249966023675 -0.0003161298347107438,-9.694826299010556,4.738249966023675 --0.0003160098347107438,-9.687467793780991,4.753124569506275 -0.0003158898347107438,-9.691147046395772,4.745687267764975 --0.0003157698347107438,-9.694826299010556,4.745687267764975 -0.0003156498347107438,-9.694826299010556,4.745687267764975 --0.0003155298347107438,-9.691147046395772,4.741968616894324 -0.0003154098347107438,-9.694826299010556,4.745687267764975 --0.0003152898347107438,-9.687467793780991,4.745687267764975 -0.0003151698347107438,-9.691147046395772,4.749405918635624 --0.0003150498347107438,-9.694826299010556,4.741968616894324 -0.0003149298347107438,-9.694826299010556,4.745687267764975 --0.0003148098347107438,-9.694826299010556,4.738249966023675 -0.0003146898347107438,-9.698505551625336,4.741968616894324 --0.0003145698347107438,-9.702184804240117,4.745687267764975 -0.0003144498347107438,-9.694826299010556,4.741968616894324 --0.0003143298347107438,-9.698505551625336,4.741968616894324 -0.0003142098347107438,-9.694826299010556,4.741968616894324 --0.0003140898347107438,-9.694826299010556,4.738249966023675 -0.0003139698347107438,-9.694826299010556,4.741968616894324 --0.0003138498347107438,-9.691147046395772,4.745687267764975 -0.0003137298347107438,-9.687467793780991,4.749405918635624 --0.0003136098347107438,-9.691147046395772,4.741968616894324 -0.0003134898347107438,-9.691147046395772,4.741968616894324 --0.0003133698347107438,-9.687467793780991,4.749405918635624 -0.0003132498347107438,-9.687467793780991,4.749405918635624 --0.0003131298347107438,-9.691147046395772,4.745687267764975 -0.0003130098347107438,-9.687467793780991,4.749405918635624 --0.0003128898347107438,-9.691147046395772,4.745687267764975 -0.0003127698347107438,-9.691147046395772,4.745687267764975 --0.0003126498347107438,-9.687467793780991,4.749405918635624 -0.0003125298347107438,-9.691147046395772,4.741968616894324 --0.0003124098347107438,-9.687467793780991,4.745687267764975 -0.0003122898347107438,-9.698505551625336,4.745687267764975 --0.0003121698347107438,-9.694826299010556,4.749405918635624 -0.0003120498347107438,-9.698505551625336,4.745687267764975 --0.0003119298347107438,-9.702184804240117,4.749405918635624 -0.0003118098347107438,-9.694826299010556,4.749405918635624 --0.0003116898347107438,-9.628599751944483,4.738249966023675 -0.0003115698347107438,-9.672750783321865,4.760561871247575 --0.0003114498347107438,-9.68378854116621,4.749405918635624 -0.0003113298347107438,-9.68378854116621,4.760561871247575 --0.0003112098347107438,-9.687467793780991,4.756843220376926 -0.0003110898347107438,-9.691147046395772,4.756843220376926 --0.0003109698347107438,-9.691147046395772,4.749405918635624 -0.0003108498347107438,-9.687467793780991,4.753124569506275 --0.0003107298347107438,-9.687467793780991,4.753124569506275 -0.0003106098347107438,-9.691147046395772,4.753124569506275 --0.0003104898347107438,-9.691147046395772,4.753124569506275 -0.0003103698347107438,-9.698505551625336,4.745687267764975 --0.0003102498347107438,-9.694826299010556,4.745687267764975 -0.0003101298347107438,-9.694826299010556,4.745687267764975 --0.0003100098347107438,-9.687467793780991,4.745687267764975 -0.0003098898347107438,-9.691147046395772,4.741968616894324 --0.0003097698347107438,-9.68378854116621,4.749405918635624 -0.0003096498347107438,-9.691147046395772,4.745687267764975 --0.0003095298347107438,-9.687467793780991,4.745687267764975 -0.0003094098347107438,-9.691147046395772,4.745687267764975 --0.0003092898347107438,-9.694826299010556,4.741968616894324 -0.0003091698347107438,-9.687467793780991,4.745687267764975 --0.0003090498347107438,-9.691147046395772,4.734531315153024 -0.0003089298347107438,-9.691147046395772,4.745687267764975 --0.0003088098347107438,-9.687467793780991,4.745687267764975 -0.0003086898347107438,-9.691147046395772,4.745687267764975 --0.0003085698347107438,-9.687467793780991,4.745687267764975 -0.0003084498347107438,-9.687467793780991,4.741968616894324 --0.0003083298347107438,-9.68378854116621,4.749405918635624 -0.0003082098347107438,-9.691147046395772,4.749405918635624 --0.0003080898347107438,-9.68378854116621,4.749405918635624 -0.0003079698347107438,-9.691147046395772,4.749405918635624 --0.0003078498347107438,-9.68378854116621,4.745687267764975 -0.0003077298347107438,-9.687467793780991,4.745687267764975 --0.0003076098347107438,-9.68378854116621,4.749405918635624 -0.0003074898347107438,-9.687467793780991,4.749405918635624 --0.0003073698347107438,-9.669071530707081,4.741968616894324 -0.0003072498347107438,-9.540297689189719,4.745687267764975 --0.0003071298347107438,-9.676430035936646,4.745687267764975 -0.0003070098347107438,-9.691147046395772,4.745687267764975 --0.0003068898347107438,-9.694826299010556,4.745687267764975 -0.0003067698347107438,-9.691147046395772,4.738249966023675 --0.0003066498347107438,-9.698505551625336,4.745687267764975 -0.0003065298347107438,-9.698505551625336,4.741968616894324 --0.0003064098347107438,-9.702184804240117,4.756843220376926 -0.0003062898347107438,-9.705864056854901,4.753124569506275 --0.0003061698347107438,-9.702184804240117,4.749405918635624 -0.0003060498347107438,-9.698505551625336,4.745687267764975 --0.0003059298347107438,-9.705864056854901,4.745687267764975 -0.0003058098347107438,-9.702184804240117,4.745687267764975 --0.0003056898347107438,-9.705864056854901,4.749405918635624 -0.0003055698347107438,-9.698505551625336,4.753124569506275 --0.0003054498347107438,-9.702184804240117,4.749405918635624 -0.0003053298347107438,-9.694826299010556,4.753124569506275 --0.0003052098347107438,-9.698505551625336,4.749405918635624 -0.0003050898347107438,-9.698505551625336,4.749405918635624 --0.0003049698347107438,-9.698505551625336,4.749405918635624 -0.0003048498347107438,-9.691147046395772,4.753124569506275 --0.0003047298347107438,-9.694826299010556,4.745687267764975 -0.0003046098347107438,-9.691147046395772,4.753124569506275 --0.0003044898347107438,-9.702184804240117,4.741968616894324 -0.0003043698347107438,-9.694826299010556,4.741968616894324 --0.0003042498347107438,-9.694826299010556,4.741968616894324 -0.0003041298347107438,-9.694826299010556,4.745687267764975 --0.0003040098347107438,-9.691147046395772,4.753124569506275 -0.0003038898347107438,-9.694826299010556,4.745687267764975 --0.0003037698347107438,-9.691147046395772,4.749405918635624 -0.0003036498347107438,-9.691147046395772,4.738249966023675 --0.0003035298347107438,-9.694826299010556,4.745687267764975 -0.0003034098347107438,-9.691147046395772,4.741968616894324 --0.0003032898347107438,-9.691147046395772,4.749405918635624 -0.0003031698347107438,-9.694826299010556,4.749405918635624 --0.0003030498347107438,-9.694826299010556,4.745687267764975 -0.0003029298347107438,-9.694826299010556,4.749405918635624 --0.0003028098347107438,-9.691147046395772,4.734531315153024 -0.0003026898347107438,-9.691147046395772,4.745687267764975 --0.0003025698347107438,-9.691147046395772,4.741968616894324 -0.0003024498347107438,-9.694826299010556,4.745687267764975 --0.0003023298347107438,-9.694826299010556,4.749405918635624 -0.0003022098347107438,-9.698505551625336,4.745687267764975 --0.0003020898347107438,-9.698505551625336,4.741968616894324 -0.0003019698347107438,-9.635958257174044,4.741968616894324 --0.0003018498347107438,-9.669071530707081,4.745687267764975 -0.0003017298347107438,-9.68378854116621,4.745687267764975 --0.0003016098347107438,-9.68378854116621,4.738249966023675 -0.0003014898347107438,-9.687467793780991,4.745687267764975 --0.0003013698347107438,-9.687467793780991,4.745687267764975 -0.0003012498347107438,-9.68378854116621,4.741968616894324 --0.0003011298347107438,-9.687467793780991,4.745687267764975 -0.0003010098347107438,-9.687467793780991,4.749405918635624 --0.0003008898347107438,-9.691147046395772,4.745687267764975 -0.0003007698347107438,-9.687467793780991,4.741968616894324 --0.0003006498347107438,-9.68378854116621,4.749405918635624 -0.0003005298347107438,-9.687467793780991,4.745687267764975 --0.0003004098347107438,-9.687467793780991,4.741968616894324 -0.0003002898347107438,-9.687467793780991,4.745687267764975 --0.0003001698347107438,-9.691147046395772,4.745687267764975 -0.0003000498347107438,-9.694826299010556,4.745687267764975 --0.0002999298347107438,-9.691147046395772,4.745687267764975 -0.0002998098347107438,-9.694826299010556,4.741968616894324 --0.0002996898347107438,-9.694826299010556,4.745687267764975 -0.0002995698347107438,-9.691147046395772,4.745687267764975 --0.0002994498347107438,-9.694826299010556,4.741968616894324 -0.0002993298347107438,-9.68378854116621,4.741968616894324 --0.0002992098347107438,-9.691147046395772,4.741968616894324 -0.0002990898347107438,-9.691147046395772,4.741968616894324 --0.0002989698347107438,-9.687467793780991,4.741968616894324 -0.0002988498347107438,-9.687467793780991,4.745687267764975 --0.0002987298347107438,-9.68378854116621,4.741968616894324 -0.0002986098347107438,-9.68378854116621,4.745687267764975 --0.0002984898347107438,-9.68378854116621,4.745687267764975 -0.0002983698347107438,-9.676430035936646,4.749405918635624 --0.0002982498347107438,-9.68378854116621,4.756843220376926 -0.0002981298347107438,-9.68378854116621,4.753124569506275 --0.0002980098347107438,-9.680109288551426,4.753124569506275 -0.0002978898347107438,-9.687467793780991,4.741968616894324 --0.0002977698347107438,-9.68378854116621,4.753124569506275 -0.0002976498347107438,-9.687467793780991,4.745687267764975 --0.0002975298347107438,-9.540297689189719,4.756843220376926 -0.0002974098347107438,-9.676430035936646,4.753124569506275 --0.0002972898347107438,-9.691147046395772,4.756843220376926 -0.0002971698347107438,-9.691147046395772,4.756843220376926 --0.0002970498347107438,-9.691147046395772,4.756843220376926 -0.0002969298347107438,-9.694826299010556,4.753124569506275 --0.0002968098347107438,-9.691147046395772,4.753124569506275 -0.0002966898347107438,-9.694826299010556,4.760561871247575 --0.0002965698347107438,-9.687467793780991,4.756843220376926 -0.0002964498347107438,-9.691147046395772,4.753124569506275 --0.0002963298347107438,-9.691147046395772,4.745687267764975 -0.0002962098347107438,-9.694826299010556,4.745687267764975 --0.0002960898347107438,-9.698505551625336,4.745687267764975 -0.0002959698347107438,-9.691147046395772,4.745687267764975 --0.0002958498347107438,-9.691147046395772,4.749405918635624 -0.0002957298347107438,-9.694826299010556,4.741968616894324 --0.0002956098347107438,-9.694826299010556,4.745687267764975 -0.0002954898347107438,-9.702184804240117,4.745687267764975 --0.0002953698347107438,-9.705864056854901,4.741968616894324 -0.0002952498347107438,-9.702184804240117,4.741968616894324 --0.0002951298347107438,-9.694826299010556,4.741968616894324 -0.0002950098347107438,-9.691147046395772,4.741968616894324 --0.0002948898347107438,-9.698505551625336,4.749405918635624 -0.0002947698347107438,-9.698505551625336,4.749405918635624 --0.0002946498347107438,-9.698505551625336,4.741968616894324 -0.0002945298347107438,-9.691147046395772,4.741968616894324 --0.0002944098347107438,-9.694826299010556,4.741968616894324 -0.0002942898347107438,-9.698505551625336,4.745687267764975 --0.0002941698347107438,-9.702184804240117,4.745687267764975 -0.0002940498347107438,-9.694826299010556,4.745687267764975 --0.0002939298347107438,-9.694826299010556,4.741968616894324 -0.0002938098347107438,-9.687467793780991,4.738249966023675 --0.0002936898347107438,-9.694826299010556,4.738249966023675 -0.0002935698347107438,-9.694826299010556,4.745687267764975 --0.0002934498347107438,-9.694826299010556,4.745687267764975 -0.0002933298347107438,-9.694826299010556,4.738249966023675 --0.0002932098347107438,-9.694826299010556,4.738249966023675 -0.0002930898347107438,-9.694826299010556,4.734531315153024 --0.0002929698347107438,-9.694826299010556,4.734531315153024 -0.0002928498347107438,-9.694826299010556,4.741968616894324 --0.0002927298347107438,-9.698505551625336,4.741968616894324 -0.0002926098347107438,-9.694826299010556,4.749405918635624 --0.0002924898347107438,-9.698505551625336,4.741968616894324 -0.0002923698347107438,-9.698505551625336,4.745687267764975 --0.0002922498347107438,-9.628599751944483,4.756843220376926 -0.0002921298347107438,-9.68378854116621,4.734531315153024 --0.0002920098347107438,-9.68378854116621,4.741968616894324 -0.0002918898347107438,-9.680109288551426,4.753124569506275 --0.0002917698347107438,-9.687467793780991,4.749405918635624 -0.0002916498347107438,-9.691147046395772,4.741968616894324 --0.0002915298347107438,-9.680109288551426,4.741968616894324 -0.0002914098347107438,-9.68378854116621,4.741968616894324 --0.0002912898347107438,-9.68378854116621,4.745687267764975 -0.0002911698347107438,-9.691147046395772,4.749405918635624 --0.0002910498347107438,-9.691147046395772,4.749405918635624 -0.0002909298347107438,-9.687467793780991,4.749405918635624 --0.0002908098347107438,-9.691147046395772,4.745687267764975 -0.0002906898347107438,-9.687467793780991,4.745687267764975 --0.0002905698347107438,-9.694826299010556,4.738249966023675 -0.0002904498347107438,-9.691147046395772,4.741968616894324 --0.0002903298347107438,-9.687467793780991,4.734531315153024 -0.0002902098347107438,-9.68378854116621,4.745687267764975 --0.0002900898347107438,-9.68378854116621,4.738249966023675 -0.0002899698347107438,-9.680109288551426,4.734531315153024 --0.0002898498347107438,-9.680109288551426,4.738249966023675 -0.0002897298347107438,-9.680109288551426,4.738249966023675 --0.0002896098347107438,-9.68378854116621,4.734531315153024 -0.0002894898347107438,-9.691147046395772,4.738249966023675 --0.0002893698347107438,-9.691147046395772,4.738249966023675 -0.0002892498347107438,-9.68378854116621,4.734531315153024 --0.0002891298347107438,-9.687467793780991,4.738249966023675 -0.0002890098347107438,-9.691147046395772,4.730812664282375 --0.0002888898347107438,-9.687467793780991,4.734531315153024 -0.0002887698347107438,-9.687467793780991,4.738249966023675 --0.0002886498347107438,-9.687467793780991,4.745687267764975 -0.0002885298347107438,-9.68378854116621,4.741968616894324 --0.0002884098347107438,-9.68378854116621,4.745687267764975 -0.0002882898347107438,-9.68378854116621,4.741968616894324 --0.0002881698347107438,-9.68378854116621,4.738249966023675 -0.0002880498347107438,-9.68378854116621,4.738249966023675 --0.0002879298347107438,-9.68378854116621,4.738249966023675 -0.0002878098347107438,-9.532939183960154,4.738249966023675 --0.0002876898347107438,-9.6653922780923,4.745687267764975 -0.0002875698347107438,-9.687467793780991,4.745687267764975 --0.0002874498347107438,-9.691147046395772,4.753124569506275 -0.0002873298347107438,-9.694826299010556,4.745687267764975 --0.0002872098347107438,-9.702184804240117,4.745687267764975 -0.0002870898347107438,-9.698505551625336,4.745687267764975 --0.0002869698347107438,-9.698505551625336,4.745687267764975 -0.0002868498347107438,-9.691147046395772,4.749405918635624 --0.0002867298347107438,-9.698505551625336,4.741968616894324 -0.0002866098347107438,-9.694826299010556,4.749405918635624 --0.0002864898347107438,-9.698505551625336,4.745687267764975 -0.0002863698347107438,-9.698505551625336,4.745687267764975 --0.0002862498347107438,-9.705864056854901,4.738249966023675 -0.0002861298347107438,-9.694826299010556,4.749405918635624 --0.0002860098347107438,-9.694826299010556,4.745687267764975 -0.0002858898347107438,-9.694826299010556,4.753124569506275 --0.0002857698347107438,-9.698505551625336,4.753124569506275 -0.0002856498347107438,-9.694826299010556,4.741968616894324 --0.0002855298347107438,-9.694826299010556,4.749405918635624 -0.0002854098347107438,-9.691147046395772,4.741968616894324 --0.0002852898347107438,-9.694826299010556,4.749405918635624 -0.0002851698347107438,-9.694826299010556,4.745687267764975 --0.0002850498347107438,-9.694826299010556,4.745687267764975 -0.0002849298347107438,-9.691147046395772,4.730812664282375 --0.0002848098347107438,-9.691147046395772,4.741968616894324 -0.0002846898347107438,-9.691147046395772,4.738249966023675 --0.0002845698347107438,-9.691147046395772,4.738249966023675 -0.0002844498347107438,-9.687467793780991,4.745687267764975 --0.0002843298347107438,-9.68378854116621,4.738249966023675 -0.0002842098347107438,-9.687467793780991,4.738249966023675 --0.0002840898347107438,-9.687467793780991,4.741968616894324 -0.0002839698347107438,-9.687467793780991,4.745687267764975 --0.0002838498347107438,-9.698505551625336,4.738249966023675 -0.0002837298347107438,-9.694826299010556,4.745687267764975 --0.0002836098347107438,-9.698505551625336,4.753124569506275 -0.0002834898347107438,-9.698505551625336,4.745687267764975 --0.0002833698347107438,-9.687467793780991,4.738249966023675 -0.0002832498347107438,-9.691147046395772,4.738249966023675 --0.0002831298347107438,-9.694826299010556,4.741968616894324 -0.0002830098347107438,-9.694826299010556,4.745687267764975 --0.0002828898347107438,-9.698505551625336,4.745687267764975 -0.0002827698347107438,-9.698505551625336,4.745687267764975 --0.0002826498347107438,-9.702184804240117,4.749405918635624 -0.0002825298347107438,-9.650675267633174,4.730812664282375 --0.0002824098347107438,-9.6653922780923,4.756843220376926 -0.0002822898347107438,-9.68378854116621,4.738249966023675 --0.0002821698347107438,-9.687467793780991,4.741968616894324 -0.0002820498347107438,-9.687467793780991,4.745687267764975 --0.0002819298347107438,-9.687467793780991,4.741968616894324 -0.0002818098347107438,-9.68378854116621,4.741968616894324 --0.0002816898347107438,-9.687467793780991,4.749405918635624 -0.0002815698347107438,-9.68378854116621,4.741968616894324 --0.0002814498347107438,-9.68378854116621,4.745687267764975 -0.0002813298347107438,-9.68378854116621,4.745687267764975 --0.0002812098347107438,-9.680109288551426,4.741968616894324 -0.0002810898347107438,-9.68378854116621,4.745687267764975 --0.0002809698347107438,-9.687467793780991,4.745687267764975 -0.0002808498347107438,-9.687467793780991,4.741968616894324 --0.0002807298347107438,-9.691147046395772,4.745687267764975 -0.0002806098347107438,-9.687467793780991,4.741968616894324 --0.0002804898347107438,-9.691147046395772,4.738249966023675 -0.0002803698347107438,-9.691147046395772,4.741968616894324 --0.0002802498347107438,-9.687467793780991,4.730812664282375 -0.0002801298347107438,-9.680109288551426,4.741968616894324 --0.0002800098347107438,-9.68378854116621,4.734531315153024 -0.0002798898347107438,-9.691147046395772,4.734531315153024 --0.0002797698347107438,-9.687467793780991,4.741968616894324 -0.0002796498347107438,-9.676430035936646,4.745687267764975 --0.0002795298347107438,-9.680109288551426,4.745687267764975 -0.0002794098347107438,-9.687467793780991,4.745687267764975 --0.0002792898347107438,-9.691147046395772,4.745687267764975 -0.0002791698347107438,-9.687467793780991,4.738249966023675 --0.0002790498347107438,-9.68378854116621,4.749405918635624 -0.0002789298347107438,-9.687467793780991,4.741968616894324 --0.0002788098347107438,-9.691147046395772,4.753124569506275 -0.0002786898347107438,-9.691147046395772,4.745687267764975 --0.0002785698347107438,-9.68378854116621,4.745687267764975 -0.0002784498347107438,-9.68378854116621,4.741968616894324 --0.0002783298347107438,-9.68378854116621,4.745687267764975 -0.0002782098347107438,-9.687467793780991,4.741968616894324 --0.0002780898347107438,-9.547656194419281,4.738249966023675 -0.0002779698347107438,-9.654354520247955,4.741968616894324 --0.0002778498347107438,-9.691147046395772,4.745687267764975 -0.0002777298347107438,-9.687467793780991,4.749405918635624 --0.0002776098347107438,-9.687467793780991,4.749405918635624 -0.0002774898347107438,-9.687467793780991,4.753124569506275 --0.0002773698347107438,-9.691147046395772,4.749405918635624 -0.0002772498347107438,-9.687467793780991,4.749405918635624 --0.0002771298347107438,-9.691147046395772,4.749405918635624 -0.0002770098347107438,-9.694826299010556,4.753124569506275 --0.0002768898347107438,-9.698505551625336,4.745687267764975 -0.0002767698347107438,-9.694826299010556,4.741968616894324 --0.0002766498347107438,-9.694826299010556,4.745687267764975 -0.0002765298347107438,-9.691147046395772,4.745687267764975 --0.0002764098347107438,-9.694826299010556,4.749405918635624 -0.0002762898347107438,-9.694826299010556,4.745687267764975 --0.0002761698347107438,-9.694826299010556,4.745687267764975 -0.0002760498347107438,-9.694826299010556,4.745687267764975 --0.0002759298347107438,-9.698505551625336,4.741968616894324 -0.0002758098347107438,-9.694826299010556,4.738249966023675 --0.0002756898347107438,-9.698505551625336,4.745687267764975 -0.0002755698347107438,-9.694826299010556,4.745687267764975 --0.0002754498347107438,-9.691147046395772,4.749405918635624 -0.0002753298347107438,-9.691147046395772,4.745687267764975 --0.0002752098347107438,-9.691147046395772,4.745687267764975 -0.0002750898347107438,-9.694826299010556,4.738249966023675 --0.0002749698347107438,-9.698505551625336,4.745687267764975 -0.0002748498347107438,-9.698505551625336,4.741968616894324 --0.0002747298347107438,-9.691147046395772,4.745687267764975 -0.0002746098347107438,-9.691147046395772,4.745687267764975 --0.0002744898347107438,-9.691147046395772,4.738249966023675 -0.0002743698347107438,-9.694826299010556,4.738249966023675 --0.0002742498347107438,-9.694826299010556,4.734531315153024 -0.0002741298347107438,-9.694826299010556,4.741968616894324 --0.0002740098347107438,-9.698505551625336,4.741968616894324 -0.0002738898347107438,-9.698505551625336,4.749405918635624 --0.0002737698347107438,-9.694826299010556,4.741968616894324 -0.0002736498347107438,-9.694826299010556,4.753124569506275 --0.0002735298347107438,-9.702184804240117,4.745687267764975 -0.0002734098347107438,-9.705864056854901,4.741968616894324 --0.0002732898347107438,-9.702184804240117,4.749405918635624 -0.0002731698347107438,-9.705864056854901,4.753124569506275 --0.0002730498347107438,-9.705864056854901,4.749405918635624 -0.0002729298347107438,-9.705864056854901,4.749405918635624 --0.0002728098347107438,-9.691147046395772,4.723375362541073 -0.0002726898347107438,-9.64699601501839,4.767999172988874 --0.0002725698347107438,-9.687467793780991,4.741968616894324 -0.0002724498347107438,-9.691147046395772,4.741968616894324 --0.0002723298347107438,-9.687467793780991,4.753124569506275 -0.0002722098347107438,-9.691147046395772,4.745687267764975 --0.0002720898347107438,-9.691147046395772,4.741968616894324 -0.0002719698347107438,-9.691147046395772,4.745687267764975 --0.0002718498347107438,-9.687467793780991,4.738249966023675 -0.0002717298347107438,-9.68378854116621,4.745687267764975 --0.0002716098347107438,-9.687467793780991,4.745687267764975 -0.0002714898347107438,-9.687467793780991,4.741968616894324 --0.0002713698347107438,-9.687467793780991,4.741968616894324 -0.0002712498347107438,-9.680109288551426,4.745687267764975 --0.0002711298347107438,-9.68378854116621,4.745687267764975 -0.0002710098347107438,-9.680109288551426,4.741968616894324 --0.0002708898347107438,-9.680109288551426,4.738249966023675 -0.0002707698347107438,-9.680109288551426,4.741968616894324 --0.0002706498347107438,-9.68378854116621,4.741968616894324 -0.0002705298347107438,-9.68378854116621,4.741968616894324 --0.0002704098347107438,-9.691147046395772,4.745687267764975 -0.0002702898347107438,-9.687467793780991,4.738249966023675 --0.0002701698347107438,-9.687467793780991,4.745687267764975 -0.0002700498347107438,-9.691147046395772,4.741968616894324 --0.0002699298347107438,-9.691147046395772,4.741968616894324 -0.0002698098347107438,-9.691147046395772,4.741968616894324 --0.0002696898347107438,-9.68378854116621,4.741968616894324 -0.0002695698347107438,-9.680109288551426,4.749405918635624 --0.0002694498347107438,-9.68378854116621,4.741968616894324 -0.0002693298347107438,-9.687467793780991,4.738249966023675 --0.0002692098347107438,-9.68378854116621,4.741968616894324 -0.0002690898347107438,-9.68378854116621,4.745687267764975 --0.0002689698347107438,-9.680109288551426,4.745687267764975 -0.0002688498347107438,-9.676430035936646,4.749405918635624 --0.0002687298347107438,-9.676430035936646,4.745687267764975 -0.0002686098347107438,-9.680109288551426,4.741968616894324 --0.0002684898347107438,-9.68378854116621,4.741968616894324 -0.0002683698347107438,-9.577090215337536,4.730812664282375 --0.0002682498347107438,-9.624920499329699,4.753124569506275 -0.0002681298347107438,-9.680109288551426,4.745687267764975 --0.0002680098347107438,-9.687467793780991,4.745687267764975 -0.0002678898347107438,-9.68378854116621,4.745687267764975 --0.0002677698347107438,-9.698505551625336,4.745687267764975 -0.0002676498347107438,-9.694826299010556,4.741968616894324 --0.0002675298347107438,-9.691147046395772,4.741968616894324 -0.0002674098347107438,-9.691147046395772,4.741968616894324 --0.0002672898347107438,-9.691147046395772,4.741968616894324 -0.0002671698347107438,-9.698505551625336,4.749405918635624 --0.0002670498347107438,-9.698505551625336,4.745687267764975 -0.0002669298347107438,-9.698505551625336,4.738249966023675 --0.0002668098347107438,-9.691147046395772,4.741968616894324 -0.0002666898347107438,-9.691147046395772,4.741968616894324 --0.0002665698347107438,-9.698505551625336,4.745687267764975 -0.0002664498347107438,-9.702184804240117,4.741968616894324 --0.0002663298347107438,-9.702184804240117,4.741968616894324 -0.0002662098347107438,-9.694826299010556,4.738249966023675 --0.0002660898347107438,-9.694826299010556,4.741968616894324 -0.0002659698347107438,-9.698505551625336,4.734531315153024 --0.0002658498347107438,-9.694826299010556,4.749405918635624 -0.0002657298347107438,-9.698505551625336,4.745687267764975 --0.0002656098347107438,-9.691147046395772,4.741968616894324 -0.0002654898347107438,-9.694826299010556,4.745687267764975 --0.0002653698347107438,-9.698505551625336,4.738249966023675 -0.0002652498347107438,-9.691147046395772,4.741968616894324 --0.0002651298347107438,-9.694826299010556,4.741968616894324 -0.0002650098347107438,-9.698505551625336,4.753124569506275 --0.0002648898347107438,-9.698505551625336,4.749405918635624 -0.0002647698347107438,-9.698505551625336,4.753124569506275 --0.0002646498347107438,-9.698505551625336,4.749405918635624 -0.0002645298347107438,-9.694826299010556,4.745687267764975 --0.0002644098347107438,-9.691147046395772,4.753124569506275 -0.0002642898347107438,-9.702184804240117,4.753124569506275 --0.0002641698347107438,-9.702184804240117,4.749405918635624 -0.0002640498347107438,-9.705864056854901,4.745687267764975 --0.0002639298347107438,-9.702184804240117,4.745687267764975 -0.0002638098347107438,-9.702184804240117,4.738249966023675 --0.0002636898347107438,-9.694826299010556,4.738249966023675 -0.0002635698347107438,-9.698505551625336,4.745687267764975 --0.0002634498347107438,-9.702184804240117,4.741968616894324 -0.0002633298347107438,-9.702184804240117,4.745687267764975 --0.0002632098347107438,-9.698505551625336,4.749405918635624 -0.0002630898347107438,-9.687467793780991,4.753124569506275 --0.0002629698347107438,-9.621241246714918,4.745687267764975 -0.0002628498347107438,-9.680109288551426,4.753124569506275 --0.0002627298347107438,-9.687467793780991,4.749405918635624 -0.0002626098347107438,-9.68378854116621,4.753124569506275 --0.0002624898347107438,-9.68378854116621,4.749405918635624 -0.0002623698347107438,-9.68378854116621,4.745687267764975 --0.0002622498347107438,-9.691147046395772,4.749405918635624 -0.0002621298347107438,-9.68378854116621,4.745687267764975 --0.0002620098347107438,-9.68378854116621,4.749405918635624 -0.0002618898347107438,-9.687467793780991,4.749405918635624 --0.0002617698347107438,-9.68378854116621,4.753124569506275 -0.0002616498347107438,-9.68378854116621,4.753124569506275 --0.0002615298347107438,-9.68378854116621,4.749405918635624 -0.0002614098347107438,-9.687467793780991,4.749405918635624 --0.0002612898347107438,-9.68378854116621,4.749405918635624 -0.0002611698347107438,-9.687467793780991,4.753124569506275 --0.0002610498347107438,-9.687467793780991,4.753124569506275 -0.0002609298347107438,-9.694826299010556,4.753124569506275 --0.0002608098347107438,-9.687467793780991,4.753124569506275 -0.0002606898347107438,-9.691147046395772,4.745687267764975 --0.0002605698347107438,-9.687467793780991,4.741968616894324 -0.0002604498347107438,-9.691147046395772,4.734531315153024 --0.0002603298347107438,-9.691147046395772,4.741968616894324 -0.0002602098347107438,-9.691147046395772,4.741968616894324 --0.0002600898347107438,-9.687467793780991,4.745687267764975 -0.0002599698347107438,-9.68378854116621,4.741968616894324 --0.0002598498347107438,-9.687467793780991,4.745687267764975 -0.0002597298347107438,-9.687467793780991,4.738249966023675 --0.0002596098347107438,-9.687467793780991,4.745687267764975 -0.0002594898347107438,-9.68378854116621,4.741968616894324 --0.0002593698347107438,-9.68378854116621,4.738249966023675 -0.0002592498347107438,-9.680109288551426,4.741968616894324 --0.0002591298347107438,-9.680109288551426,4.745687267764975 -0.0002590098347107438,-9.680109288551426,4.741968616894324 --0.0002588898347107438,-9.680109288551426,4.738249966023675 -0.0002587698347107438,-9.68378854116621,4.738249966023675 --0.0002586498347107438,-9.650675267633174,4.734531315153024 -0.0002585298347107438,-9.551335447034065,4.734531315153024 --0.0002584098347107438,-9.680109288551426,4.745687267764975 -0.0002582898347107438,-9.68378854116621,4.745687267764975 --0.0002581698347107438,-9.691147046395772,4.745687267764975 -0.0002580498347107438,-9.687467793780991,4.738249966023675 --0.0002579298347107438,-9.68378854116621,4.745687267764975 -0.0002578098347107438,-9.691147046395772,4.741968616894324 --0.0002576898347107438,-9.691147046395772,4.745687267764975 -0.0002575698347107438,-9.694826299010556,4.753124569506275 --0.0002574498347107438,-9.694826299010556,4.745687267764975 -0.0002573298347107438,-9.691147046395772,4.745687267764975 --0.0002572098347107438,-9.694826299010556,4.741968616894324 -0.0002570898347107438,-9.691147046395772,4.749405918635624 --0.0002569698347107438,-9.691147046395772,4.738249966023675 -0.0002568498347107438,-9.691147046395772,4.753124569506275 --0.0002567298347107438,-9.698505551625336,4.753124569506275 -0.0002566098347107438,-9.698505551625336,4.749405918635624 --0.0002564898347107438,-9.691147046395772,4.749405918635624 -0.0002563698347107438,-9.694826299010556,4.738249966023675 --0.0002562498347107438,-9.694826299010556,4.741968616894324 -0.0002561298347107438,-9.691147046395772,4.745687267764975 --0.0002560098347107438,-9.694826299010556,4.745687267764975 -0.0002558898347107438,-9.698505551625336,4.745687267764975 --0.0002557698347107438,-9.694826299010556,4.745687267764975 -0.0002556498347107438,-9.694826299010556,4.741968616894324 --0.0002555298347107438,-9.691147046395772,4.741968616894324 -0.0002554098347107438,-9.694826299010556,4.738249966023675 --0.0002552898347107438,-9.691147046395772,4.738249966023675 -0.0002551698347107438,-9.687467793780991,4.741968616894324 --0.0002550498347107438,-9.687467793780991,4.738249966023675 -0.0002549298347107438,-9.691147046395772,4.738249966023675 --0.0002548098347107438,-9.694826299010556,4.738249966023675 -0.0002546898347107438,-9.694826299010556,4.734531315153024 --0.0002545698347107438,-9.698505551625336,4.738249966023675 -0.0002544498347107438,-9.698505551625336,4.730812664282375 --0.0002543298347107438,-9.698505551625336,4.741968616894324 -0.0002542098347107438,-9.705864056854901,4.734531315153024 --0.0002540898347107438,-9.698505551625336,4.741968616894324 -0.0002539698347107438,-9.702184804240117,4.734531315153024 --0.0002538498347107438,-9.702184804240117,4.734531315153024 -0.0002537298347107438,-9.698505551625336,4.734531315153024 --0.0002536098347107438,-9.705864056854901,4.738249966023675 -0.0002534898347107438,-9.698505551625336,4.741968616894324 --0.0002533698347107438,-9.702184804240117,4.741968616894324 -0.0002532498347107438,-9.635958257174044,4.738249966023675 --0.0002531298347107438,-9.68378854116621,4.741968616894324 -0.0002530098347107438,-9.691147046395772,4.741968616894324 --0.0002528898347107438,-9.698505551625336,4.741968616894324 -0.0002527698347107438,-9.687467793780991,4.745687267764975 --0.0002526498347107438,-9.687467793780991,4.738249966023675 -0.0002525298347107438,-9.687467793780991,4.749405918635624 --0.0002524098347107438,-9.687467793780991,4.738249966023675 -0.0002522898347107438,-9.68378854116621,4.741968616894324 --0.0002521698347107438,-9.680109288551426,4.741968616894324 -0.0002520498347107438,-9.68378854116621,4.741968616894324 --0.0002519298347107438,-9.680109288551426,4.745687267764975 -0.0002518098347107438,-9.687467793780991,4.734531315153024 --0.0002516898347107438,-9.68378854116621,4.745687267764975 -0.0002515698347107438,-9.680109288551426,4.738249966023675 --0.0002514498347107438,-9.680109288551426,4.745687267764975 -0.0002513298347107438,-9.687467793780991,4.745687267764975 --0.0002512098347107438,-9.691147046395772,4.745687267764975 -0.0002510898347107438,-9.691147046395772,4.745687267764975 --0.0002509698347107438,-9.68378854116621,4.749405918635624 -0.0002508498347107438,-9.687467793780991,4.745687267764975 --0.0002507298347107438,-9.680109288551426,4.738249966023675 -0.0002506098347107438,-9.687467793780991,4.741968616894324 --0.0002504898347107438,-9.691147046395772,4.749405918635624 -0.0002503698347107438,-9.68378854116621,4.749405918635624 --0.0002502498347107438,-9.68378854116621,4.749405918635624 -0.0002501298347107438,-9.687467793780991,4.749405918635624 --0.0002500098347107438,-9.68378854116621,4.749405918635624 -0.0002498898347107438,-9.687467793780991,4.749405918635624 --0.0002497698347107438,-9.68378854116621,4.745687267764975 -0.0002496498347107438,-9.680109288551426,4.749405918635624 --0.0002495298347107438,-9.680109288551426,4.745687267764975 -0.0002494098347107438,-9.687467793780991,4.745687267764975 --0.0002492898347107438,-9.68378854116621,4.745687267764975 -0.0002491698347107438,-9.68378854116621,4.753124569506275 --0.0002490498347107438,-9.687467793780991,4.749405918635624 -0.0002489298347107438,-9.676430035936646,4.741968616894324 --0.0002488098347107438,-9.536618436574935,4.745687267764975 -0.0002486898347107438,-9.687467793780991,4.749405918635624 --0.0002485698347107438,-9.691147046395772,4.749405918635624 -0.0002484498347107438,-9.694826299010556,4.745687267764975 --0.0002483298347107438,-9.687467793780991,4.749405918635624 -0.0002482098347107438,-9.691147046395772,4.745687267764975 --0.0002480898347107438,-9.691147046395772,4.745687267764975 -0.0002479698347107438,-9.698505551625336,4.738249966023675 --0.0002478498347107438,-9.691147046395772,4.753124569506275 -0.0002477298347107438,-9.698505551625336,4.749405918635624 --0.0002476098347107438,-9.702184804240117,4.749405918635624 -0.0002474898347107438,-9.698505551625336,4.741968616894324 --0.0002473698347107438,-9.705864056854901,4.745687267764975 -0.0002472498347107438,-9.702184804240117,4.745687267764975 --0.0002471298347107438,-9.705864056854901,4.745687267764975 -0.0002470098347107438,-9.698505551625336,4.753124569506275 --0.0002468898347107438,-9.694826299010556,4.745687267764975 -0.0002467698347107438,-9.698505551625336,4.749405918635624 --0.0002466498347107438,-9.698505551625336,4.741968616894324 -0.0002465298347107438,-9.698505551625336,4.741968616894324 --0.0002464098347107438,-9.702184804240117,4.741968616894324 -0.0002462898347107438,-9.691147046395772,4.745687267764975 --0.0002461698347107438,-9.691147046395772,4.741968616894324 -0.0002460498347107438,-9.687467793780991,4.745687267764975 --0.0002459298347107438,-9.687467793780991,4.741968616894324 -0.0002458098347107438,-9.694826299010556,4.738249966023675 --0.0002456898347107438,-9.691147046395772,4.741968616894324 -0.0002455698347107438,-9.691147046395772,4.741968616894324 --0.0002454498347107438,-9.691147046395772,4.749405918635624 -0.0002453298347107438,-9.691147046395772,4.741968616894324 --0.0002452098347107438,-9.694826299010556,4.745687267764975 -0.0002450898347107438,-9.694826299010556,4.741968616894324 --0.0002449698347107438,-9.694826299010556,4.745687267764975 -0.0002448498347107438,-9.698505551625336,4.745687267764975 --0.0002447298347107438,-9.698505551625336,4.745687267764975 -0.0002446098347107438,-9.698505551625336,4.756843220376926 --0.0002444898347107438,-9.694826299010556,4.749405918635624 -0.0002443698347107438,-9.694826299010556,4.745687267764975 --0.0002442498347107438,-9.698505551625336,4.741968616894324 -0.0002441298347107438,-9.694826299010556,4.741968616894324 --0.0002440098347107438,-9.698505551625336,4.745687267764975 -0.0002438898347107438,-9.694826299010556,4.745687267764975 --0.0002437698347107438,-9.694826299010556,4.741968616894324 -0.0002436498347107438,-9.691147046395772,4.741968616894324 --0.0002435298347107438,-9.635958257174044,4.745687267764975 -0.0002434098347107438,-9.669071530707081,4.738249966023675 --0.0002432898347107438,-9.68378854116621,4.738249966023675 -0.0002431698347107438,-9.68378854116621,4.745687267764975 --0.0002430498347107438,-9.680109288551426,4.741968616894324 -0.0002429298347107438,-9.68378854116621,4.738249966023675 --0.0002428098347107438,-9.68378854116621,4.745687267764975 -0.0002426898347107438,-9.68378854116621,4.741968616894324 --0.0002425698347107438,-9.68378854116621,4.738249966023675 -0.0002424498347107438,-9.68378854116621,4.738249966023675 --0.0002423298347107438,-9.687467793780991,4.738249966023675 -0.0002422098347107438,-9.687467793780991,4.749405918635624 --0.0002420898347107438,-9.68378854116621,4.745687267764975 -0.0002419698347107438,-9.687467793780991,4.745687267764975 --0.0002418498347107438,-9.691147046395772,4.745687267764975 -0.0002417298347107438,-9.68378854116621,4.738249966023675 --0.0002416098347107438,-9.691147046395772,4.745687267764975 -0.0002414898347107438,-9.687467793780991,4.741968616894324 --0.0002413698347107438,-9.687467793780991,4.749405918635624 -0.0002412498347107438,-9.687467793780991,4.745687267764975 --0.0002411298347107438,-9.68378854116621,4.749405918635624 -0.0002410098347107438,-9.680109288551426,4.745687267764975 --0.0002408898347107438,-9.68378854116621,4.745687267764975 -0.0002407698347107438,-9.687467793780991,4.749405918635624 --0.0002406498347107438,-9.691147046395772,4.741968616894324 -0.0002405298347107438,-9.687467793780991,4.749405918635624 --0.0002404098347107438,-9.691147046395772,4.749405918635624 -0.0002402898347107438,-9.694826299010556,4.749405918635624 --0.0002401698347107438,-9.691147046395772,4.741968616894324 -0.0002400498347107438,-9.687467793780991,4.749405918635624 --0.0002399298347107438,-9.691147046395772,4.741968616894324 -0.0002398098347107438,-9.691147046395772,4.745687267764975 --0.0002396898347107438,-9.687467793780991,4.741968616894324 -0.0002395698347107438,-9.694826299010556,4.749405918635624 --0.0002394498347107438,-9.691147046395772,4.749405918635624 -0.0002393298347107438,-9.694826299010556,4.745687267764975 --0.0002392098347107438,-9.687467793780991,4.745687267764975 -0.0002390898347107438,-9.536618436574935,4.745687267764975 --0.0002389698347107438,-9.680109288551426,4.753124569506275 -0.0002388498347107438,-9.694826299010556,4.749405918635624 --0.0002387298347107438,-9.694826299010556,4.745687267764975 -0.0002386098347107438,-9.691147046395772,4.749405918635624 --0.0002384898347107438,-9.694826299010556,4.749405918635624 -0.0002383698347107438,-9.698505551625336,4.745687267764975 --0.0002382498347107438,-9.694826299010556,4.745687267764975 -0.0002381298347107438,-9.691147046395772,4.745687267764975 --0.0002380098347107438,-9.698505551625336,4.745687267764975 -0.0002378898347107438,-9.691147046395772,4.741968616894324 --0.0002377698347107438,-9.694826299010556,4.741968616894324 -0.0002376498347107438,-9.691147046395772,4.741968616894324 --0.0002375298347107438,-9.698505551625336,4.738249966023675 -0.0002374098347107438,-9.691147046395772,4.734531315153024 --0.0002372898347107438,-9.687467793780991,4.738249966023675 -0.0002371698347107438,-9.694826299010556,4.741968616894324 --0.0002370498347107438,-9.691147046395772,4.738249966023675 -0.0002369298347107438,-9.691147046395772,4.741968616894324 --0.0002368098347107438,-9.68378854116621,4.741968616894324 -0.0002366898347107438,-9.687467793780991,4.734531315153024 --0.0002365698347107438,-9.68378854116621,4.741968616894324 -0.0002364498347107438,-9.68378854116621,4.745687267764975 --0.0002363298347107438,-9.691147046395772,4.738249966023675 -0.0002362098347107438,-9.68378854116621,4.749405918635624 --0.0002360898347107438,-9.68378854116621,4.741968616894324 -0.0002359698347107438,-9.68378854116621,4.741968616894324 --0.0002358498347107438,-9.687467793780991,4.745687267764975 -0.0002357298347107438,-9.687467793780991,4.745687267764975 --0.0002356098347107438,-9.68378854116621,4.741968616894324 -0.0002354898347107438,-9.68378854116621,4.745687267764975 --0.0002353698347107438,-9.691147046395772,4.749405918635624 -0.0002352498347107438,-9.687467793780991,4.738249966023675 --0.0002351298347107438,-9.691147046395772,4.745687267764975 -0.0002350098347107438,-9.691147046395772,4.738249966023675 --0.0002348898347107438,-9.694826299010556,4.741968616894324 -0.0002347698347107438,-9.691147046395772,4.741968616894324 --0.0002346498347107438,-9.694826299010556,4.741968616894324 -0.0002345298347107438,-9.694826299010556,4.749405918635624 --0.0002344098347107438,-9.698505551625336,4.745687267764975 -0.0002342898347107438,-9.698505551625336,4.741968616894324 --0.0002341698347107438,-9.698505551625336,4.745687267764975 -0.0002340498347107438,-9.702184804240117,4.753124569506275 --0.0002339298347107438,-9.702184804240117,4.749405918635624 -0.0002338098347107438,-9.628599751944483,4.764280522118225 --0.0002336898347107438,-9.680109288551426,4.738249966023675 -0.0002335698347107438,-9.694826299010556,4.749405918635624 --0.0002334498347107438,-9.691147046395772,4.745687267764975 -0.0002333298347107438,-9.691147046395772,4.741968616894324 --0.0002332098347107438,-9.694826299010556,4.753124569506275 -0.0002330898347107438,-9.691147046395772,4.745687267764975 --0.0002329698347107438,-9.687467793780991,4.745687267764975 -0.0002328498347107438,-9.694826299010556,4.738249966023675 --0.0002327298347107438,-9.691147046395772,4.745687267764975 -0.0002326098347107438,-9.691147046395772,4.745687267764975 --0.0002324898347107438,-9.694826299010556,4.741968616894324 -0.0002323698347107438,-9.691147046395772,4.749405918635624 --0.0002322498347107438,-9.687467793780991,4.741968616894324 -0.0002321298347107438,-9.687467793780991,4.749405918635624 --0.0002320098347107438,-9.691147046395772,4.741968616894324 -0.0002318898347107438,-9.691147046395772,4.749405918635624 --0.0002317698347107438,-9.687467793780991,4.738249966023675 -0.0002316498347107438,-9.68378854116621,4.749405918635624 --0.0002315298347107438,-9.691147046395772,4.745687267764975 -0.0002314098347107438,-9.68378854116621,4.745687267764975 --0.0002312898347107438,-9.68378854116621,4.745687267764975 -0.0002311698347107438,-9.68378854116621,4.738249966023675 --0.0002310498347107438,-9.68378854116621,4.745687267764975 -0.0002309298347107438,-9.687467793780991,4.741968616894324 --0.0002308098347107438,-9.680109288551426,4.741968616894324 -0.0002306898347107438,-9.68378854116621,4.741968616894324 --0.0002305698347107438,-9.680109288551426,4.745687267764975 -0.0002304498347107438,-9.680109288551426,4.745687267764975 --0.0002303298347107438,-9.68378854116621,4.745687267764975 -0.0002302098347107438,-9.68378854116621,4.745687267764975 --0.0002300898347107438,-9.68378854116621,4.749405918635624 -0.0002299698347107438,-9.687467793780991,4.753124569506275 --0.0002298498347107438,-9.68378854116621,4.753124569506275 -0.0002297298347107438,-9.68378854116621,4.753124569506275 --0.0002296098347107438,-9.68378854116621,4.745687267764975 -0.0002294898347107438,-9.68378854116621,4.741968616894324 --0.0002293698347107438,-9.536618436574935,4.745687267764975 -0.0002292498347107438,-9.669071530707081,4.741968616894324 --0.0002291298347107438,-9.687467793780991,4.753124569506275 -0.0002290098347107438,-9.68378854116621,4.749405918635624 --0.0002288898347107438,-9.694826299010556,4.753124569506275 -0.0002287698347107438,-9.694826299010556,4.753124569506275 --0.0002286498347107438,-9.687467793780991,4.749405918635624 -0.0002285298347107438,-9.687467793780991,4.753124569506275 --0.0002284098347107438,-9.694826299010556,4.749405918635624 -0.0002282898347107438,-9.698505551625336,4.756843220376926 --0.0002281698347107438,-9.694826299010556,4.753124569506275 -0.0002280498347107438,-9.694826299010556,4.745687267764975 --0.0002279298347107438,-9.694826299010556,4.741968616894324 -0.0002278098347107438,-9.691147046395772,4.738249966023675 --0.0002276898347107438,-9.694826299010556,4.730812664282375 -0.0002275698347107438,-9.687467793780991,4.738249966023675 --0.0002274498347107438,-9.691147046395772,4.741968616894324 -0.0002273298347107438,-9.694826299010556,4.745687267764975 --0.0002272098347107438,-9.687467793780991,4.745687267764975 -0.0002270898347107438,-9.691147046395772,4.741968616894324 --0.0002269698347107438,-9.694826299010556,4.745687267764975 -0.0002268498347107438,-9.694826299010556,4.741968616894324 --0.0002267298347107438,-9.694826299010556,4.745687267764975 -0.0002266098347107438,-9.694826299010556,4.745687267764975 --0.0002264898347107438,-9.691147046395772,4.749405918635624 -0.0002263698347107438,-9.702184804240117,4.738249966023675 --0.0002262498347107438,-9.698505551625336,4.741968616894324 -0.0002261298347107438,-9.694826299010556,4.745687267764975 --0.0002260098347107438,-9.694826299010556,4.741968616894324 -0.0002258898347107438,-9.694826299010556,4.741968616894324 --0.0002257698347107438,-9.698505551625336,4.749405918635624 -0.0002256498347107438,-9.698505551625336,4.745687267764975 --0.0002255298347107438,-9.694826299010556,4.745687267764975 -0.0002254098347107438,-9.691147046395772,4.749405918635624 --0.0002252898347107438,-9.691147046395772,4.741968616894324 -0.0002251698347107438,-9.694826299010556,4.753124569506275 --0.0002250498347107438,-9.694826299010556,4.749405918635624 -0.0002249298347107438,-9.694826299010556,4.753124569506275 --0.0002248098347107438,-9.694826299010556,4.749405918635624 -0.0002246898347107438,-9.694826299010556,4.741968616894324 --0.0002245698347107438,-9.691147046395772,4.745687267764975 -0.0002244498347107438,-9.691147046395772,4.753124569506275 --0.0002243298347107438,-9.691147046395772,4.745687267764975 -0.0002242098347107438,-9.694826299010556,4.741968616894324 --0.0002240898347107438,-9.654354520247955,4.715938060799774 -0.0002239698347107438,-9.650675267633174,4.775436474730176 --0.0002238498347107438,-9.680109288551426,4.745687267764975 -0.0002237298347107438,-9.687467793780991,4.745687267764975 --0.0002236098347107438,-9.680109288551426,4.749405918635624 -0.0002234898347107438,-9.687467793780991,4.749405918635624 --0.0002233698347107438,-9.687467793780991,4.749405918635624 -0.0002232498347107438,-9.68378854116621,4.745687267764975 --0.0002231298347107438,-9.687467793780991,4.741968616894324 -0.0002230098347107438,-9.680109288551426,4.741968616894324 --0.0002228898347107438,-9.68378854116621,4.745687267764975 -0.0002227698347107438,-9.687467793780991,4.745687267764975 --0.0002226498347107438,-9.68378854116621,4.749405918635624 -0.0002225298347107438,-9.68378854116621,4.745687267764975 --0.0002224098347107438,-9.68378854116621,4.745687267764975 -0.0002222898347107438,-9.68378854116621,4.745687267764975 --0.0002221698347107438,-9.691147046395772,4.749405918635624 -0.0002220498347107438,-9.687467793780991,4.745687267764975 --0.0002219298347107438,-9.68378854116621,4.745687267764975 -0.0002218098347107438,-9.68378854116621,4.749405918635624 --0.0002216898347107438,-9.680109288551426,4.745687267764975 -0.0002215698347107438,-9.68378854116621,4.753124569506275 --0.0002214498347107438,-9.680109288551426,4.745687267764975 -0.0002213298347107438,-9.680109288551426,4.741968616894324 --0.0002212098347107438,-9.68378854116621,4.749405918635624 -0.0002210898347107438,-9.68378854116621,4.749405918635624 --0.0002209698347107438,-9.680109288551426,4.745687267764975 -0.0002208498347107438,-9.68378854116621,4.745687267764975 --0.0002207298347107438,-9.687467793780991,4.749405918635624 -0.0002206098347107438,-9.687467793780991,4.749405918635624 --0.0002204898347107438,-9.680109288551426,4.741968616894324 -0.0002203698347107438,-9.680109288551426,4.745687267764975 --0.0002202498347107438,-9.687467793780991,4.745687267764975 -0.0002201298347107438,-9.687467793780991,4.749405918635624 --0.0002200098347107438,-9.691147046395772,4.741968616894324 -0.0002198898347107438,-9.68378854116621,4.749405918635624 --0.0002197698347107438,-9.68378854116621,4.741968616894324 -0.0002196498347107438,-9.547656194419281,4.745687267764975 --0.0002195298347107438,-9.650675267633174,4.745687267764975 -0.0002194098347107438,-9.68378854116621,4.749405918635624 --0.0002192898347107438,-9.691147046395772,4.745687267764975 -0.0002191698347107438,-9.691147046395772,4.753124569506275 --0.0002190498347107438,-9.68378854116621,4.749405918635624 -0.0002189298347107438,-9.691147046395772,4.738249966023675 --0.0002188098347107438,-9.691147046395772,4.738249966023675 -0.0002186898347107438,-9.691147046395772,4.745687267764975 --0.0002185698347107438,-9.694826299010556,4.738249966023675 -0.0002184498347107438,-9.687467793780991,4.745687267764975 --0.0002183298347107438,-9.691147046395772,4.741968616894324 -0.0002182098347107438,-9.694826299010556,4.738249966023675 --0.0002180898347107438,-9.698505551625336,4.749405918635624 -0.0002179698347107438,-9.698505551625336,4.745687267764975 --0.0002178498347107438,-9.694826299010556,4.741968616894324 -0.0002177298347107438,-9.698505551625336,4.749405918635624 --0.0002176098347107438,-9.691147046395772,4.753124569506275 -0.0002174898347107438,-9.691147046395772,4.749405918635624 --0.0002173698347107438,-9.691147046395772,4.745687267764975 -0.0002172498347107438,-9.694826299010556,4.749405918635624 --0.0002171298347107438,-9.694826299010556,4.745687267764975 -0.0002170098347107438,-9.691147046395772,4.745687267764975 --0.0002168898347107438,-9.698505551625336,4.749405918635624 -0.0002167698347107438,-9.698505551625336,4.749405918635624 --0.0002166498347107438,-9.702184804240117,4.741968616894324 -0.0002165298347107438,-9.694826299010556,4.741968616894324 --0.0002164098347107438,-9.698505551625336,4.745687267764975 -0.0002162898347107438,-9.691147046395772,4.745687267764975 --0.0002161698347107438,-9.691147046395772,4.745687267764975 -0.0002160498347107438,-9.698505551625336,4.749405918635624 --0.0002159298347107438,-9.705864056854901,4.745687267764975 -0.0002158098347107438,-9.698505551625336,4.749405918635624 --0.0002156898347107438,-9.702184804240117,4.745687267764975 -0.0002155698347107438,-9.694826299010556,4.749405918635624 --0.0002154498347107438,-9.694826299010556,4.749405918635624 -0.0002153298347107438,-9.698505551625336,4.753124569506275 --0.0002152098347107438,-9.702184804240117,4.756843220376926 -0.0002150898347107438,-9.698505551625336,4.741968616894324 --0.0002149698347107438,-9.702184804240117,4.745687267764975 -0.0002148498347107438,-9.694826299010556,4.745687267764975 --0.0002147298347107438,-9.705864056854901,4.749405918635624 -0.0002146098347107438,-9.698505551625336,4.745687267764975 --0.0002144898347107438,-9.702184804240117,4.756843220376926 -0.0002143698347107438,-9.680109288551426,4.734531315153024 --0.0002142498347107438,-9.632279004559264,4.764280522118225 -0.0002141298347107438,-9.687467793780991,4.745687267764975 --0.0002140098347107438,-9.687467793780991,4.745687267764975 -0.0002138898347107438,-9.691147046395772,4.741968616894324 --0.0002137698347107438,-9.68378854116621,4.749405918635624 -0.0002136498347107438,-9.68378854116621,4.745687267764975 --0.0002135298347107438,-9.68378854116621,4.741968616894324 -0.0002134098347107438,-9.691147046395772,4.745687267764975 --0.0002132898347107438,-9.68378854116621,4.738249966023675 -0.0002131698347107438,-9.68378854116621,4.745687267764975 --0.0002130498347107438,-9.68378854116621,4.741968616894324 -0.0002129298347107438,-9.68378854116621,4.741968616894324 --0.0002128098347107438,-9.691147046395772,4.738249966023675 -0.0002126898347107438,-9.694826299010556,4.745687267764975 --0.0002125698347107438,-9.687467793780991,4.749405918635624 -0.0002124498347107438,-9.687467793780991,4.749405918635624 --0.0002123298347107438,-9.694826299010556,4.749405918635624 -0.0002122098347107438,-9.698505551625336,4.749405918635624 --0.0002120898347107438,-9.691147046395772,4.745687267764975 -0.0002119698347107438,-9.694826299010556,4.741968616894324 --0.0002118498347107438,-9.694826299010556,4.749405918635624 -0.0002117298347107438,-9.694826299010556,4.741968616894324 --0.0002116098347107438,-9.687467793780991,4.749405918635624 -0.0002114898347107438,-9.68378854116621,4.745687267764975 --0.0002113698347107438,-9.691147046395772,4.741968616894324 -0.0002112498347107438,-9.694826299010556,4.753124569506275 --0.0002111298347107438,-9.68378854116621,4.745687267764975 -0.0002110098347107438,-9.68378854116621,4.749405918635624 --0.0002108898347107438,-9.687467793780991,4.745687267764975 -0.0002107698347107438,-9.687467793780991,4.753124569506275 --0.0002106498347107438,-9.687467793780991,4.745687267764975 -0.0002105298347107438,-9.68378854116621,4.749405918635624 --0.0002104098347107438,-9.691147046395772,4.749405918635624 -0.0002102898347107438,-9.687467793780991,4.741968616894324 --0.0002101698347107438,-9.680109288551426,4.745687267764975 -0.0002100498347107438,-9.687467793780991,4.741968616894324 --0.0002099298347107438,-9.599165731026227,4.727094013411724 -0.0002098098347107438,-9.602844983641008,4.745687267764975 --0.0002096898347107438,-9.691147046395772,4.741968616894324 -0.0002095698347107438,-9.687467793780991,4.745687267764975 --0.0002094498347107438,-9.698505551625336,4.745687267764975 -0.0002093298347107438,-9.698505551625336,4.745687267764975 --0.0002092098347107438,-9.694826299010556,4.745687267764975 -0.0002090898347107438,-9.698505551625336,4.741968616894324 --0.0002089698347107438,-9.698505551625336,4.745687267764975 -0.0002088498347107438,-9.698505551625336,4.749405918635624 --0.0002087298347107438,-9.691147046395772,4.753124569506275 -0.0002086098347107438,-9.691147046395772,4.749405918635624 --0.0002084898347107438,-9.694826299010556,4.749405918635624 -0.0002083698347107438,-9.698505551625336,4.745687267764975 --0.0002082498347107438,-9.694826299010556,4.749405918635624 -0.0002081298347107438,-9.694826299010556,4.745687267764975 --0.0002080098347107438,-9.694826299010556,4.753124569506275 -0.0002078898347107438,-9.694826299010556,4.753124569506275 --0.0002077698347107438,-9.694826299010556,4.749405918635624 -0.0002076498347107438,-9.691147046395772,4.745687267764975 --0.0002075298347107438,-9.698505551625336,4.745687267764975 -0.0002074098347107438,-9.698505551625336,4.745687267764975 --0.0002072898347107438,-9.694826299010556,4.741968616894324 -0.0002071698347107438,-9.694826299010556,4.749405918635624 --0.0002070498347107438,-9.691147046395772,4.741968616894324 -0.0002069298347107438,-9.694826299010556,4.745687267764975 --0.0002068098347107438,-9.691147046395772,4.738249966023675 -0.0002066898347107438,-9.698505551625336,4.745687267764975 --0.0002065698347107438,-9.698505551625336,4.745687267764975 -0.0002064498347107438,-9.702184804240117,4.749405918635624 --0.0002063298347107438,-9.694826299010556,4.749405918635624 -0.0002062098347107438,-9.691147046395772,4.745687267764975 --0.0002060898347107438,-9.694826299010556,4.753124569506275 -0.0002059698347107438,-9.694826299010556,4.745687267764975 --0.0002058498347107438,-9.694826299010556,4.749405918635624 -0.0002057298347107438,-9.691147046395772,4.745687267764975 --0.0002056098347107438,-9.691147046395772,4.756843220376926 -0.0002054898347107438,-9.694826299010556,4.753124569506275 --0.0002053698347107438,-9.691147046395772,4.749405918635624 -0.0002052498347107438,-9.687467793780991,4.741968616894324 --0.0002051298347107438,-9.691147046395772,4.738249966023675 -0.0002050098347107438,-9.687467793780991,4.745687267764975 --0.0002048898347107438,-9.691147046395772,4.741968616894324 -0.0002047698347107438,-9.691147046395772,4.738249966023675 --0.0002046498347107438,-9.687467793780991,4.745687267764975 -0.0002045298347107438,-9.624920499329699,4.741968616894324 --0.0002044098347107438,-9.68378854116621,4.745687267764975 -0.0002042898347107438,-9.687467793780991,4.745687267764975 --0.0002041698347107438,-9.694826299010556,4.745687267764975 -0.0002040498347107438,-9.691147046395772,4.745687267764975 --0.0002039298347107438,-9.687467793780991,4.745687267764975 -0.0002038098347107438,-9.691147046395772,4.745687267764975 --0.0002036898347107438,-9.691147046395772,4.749405918635624 -0.0002035698347107438,-9.694826299010556,4.745687267764975 --0.0002034498347107438,-9.691147046395772,4.741968616894324 -0.0002033298347107438,-9.691147046395772,4.749405918635624 --0.0002032098347107438,-9.691147046395772,4.749405918635624 -0.0002030898347107438,-9.687467793780991,4.741968616894324 --0.0002029698347107438,-9.687467793780991,4.745687267764975 -0.0002028498347107438,-9.687467793780991,4.745687267764975 --0.0002027298347107438,-9.691147046395772,4.745687267764975 -0.0002026098347107438,-9.691147046395772,4.749405918635624 --0.0002024898347107438,-9.694826299010556,4.745687267764975 -0.0002023698347107438,-9.691147046395772,4.741968616894324 --0.0002022498347107438,-9.687467793780991,4.749405918635624 -0.0002021298347107438,-9.691147046395772,4.753124569506275 --0.0002020098347107438,-9.691147046395772,4.756843220376926 -0.0002018898347107438,-9.691147046395772,4.745687267764975 --0.0002017698347107438,-9.691147046395772,4.756843220376926 -0.0002016498347107438,-9.687467793780991,4.749405918635624 --0.0002015298347107438,-9.691147046395772,4.753124569506275 -0.0002014098347107438,-9.687467793780991,4.756843220376926 --0.0002012898347107438,-9.687467793780991,4.756843220376926 -0.0002011698347107438,-9.68378854116621,4.753124569506275 --0.0002010498347107438,-9.68378854116621,4.749405918635624 -0.0002009298347107438,-9.68378854116621,4.745687267764975 --0.0002008098347107438,-9.691147046395772,4.745687267764975 -0.0002006898347107438,-9.680109288551426,4.753124569506275 --0.0002005698347107438,-9.687467793780991,4.745687267764975 -0.0002004498347107438,-9.68378854116621,4.753124569506275 --0.0002003298347107438,-9.691147046395772,4.745687267764975 -0.0002002098347107438,-9.661713025477519,4.745687267764975 --0.0002000898347107438,-9.551335447034065,4.741968616894324 -0.0001999698347107438,-9.676430035936646,4.749405918635624 --0.0001998498347107438,-9.687467793780991,4.749405918635624 -0.0001997298347107438,-9.691147046395772,4.741968616894324 --0.0001996098347107438,-9.691147046395772,4.745687267764975 -0.0001994898347107438,-9.691147046395772,4.741968616894324 --0.0001993698347107438,-9.691147046395772,4.745687267764975 -0.0001992498347107438,-9.691147046395772,4.734531315153024 --0.0001991298347107438,-9.694826299010556,4.753124569506275 -0.0001990098347107438,-9.694826299010556,4.749405918635624 --0.0001988898347107438,-9.691147046395772,4.749405918635624 -0.0001987698347107438,-9.694826299010556,4.749405918635624 --0.0001986498347107438,-9.687467793780991,4.741968616894324 -0.0001985298347107438,-9.691147046395772,4.745687267764975 --0.0001984098347107438,-9.694826299010556,4.745687267764975 -0.0001982898347107438,-9.694826299010556,4.749405918635624 --0.0001981698347107438,-9.694826299010556,4.745687267764975 -0.0001980498347107438,-9.694826299010556,4.753124569506275 --0.0001979298347107438,-9.705864056854901,4.756843220376926 -0.0001978098347107438,-9.702184804240117,4.745687267764975 --0.0001976898347107438,-9.702184804240117,4.745687267764975 -0.0001975698347107438,-9.702184804240117,4.749405918635624 --0.0001974498347107438,-9.702184804240117,4.749405918635624 -0.0001973298347107438,-9.702184804240117,4.749405918635624 --0.0001972098347107438,-9.694826299010556,4.745687267764975 -0.0001970898347107438,-9.691147046395772,4.741968616894324 --0.0001969698347107438,-9.691147046395772,4.738249966023675 -0.0001968498347107438,-9.702184804240117,4.741968616894324 --0.0001967298347107438,-9.694826299010556,4.741968616894324 -0.0001966098347107438,-9.698505551625336,4.745687267764975 --0.0001964898347107438,-9.694826299010556,4.741968616894324 -0.0001963698347107438,-9.702184804240117,4.741968616894324 --0.0001962498347107438,-9.705864056854901,4.741968616894324 -0.0001961298347107438,-9.702184804240117,4.741968616894324 --0.0001960098347107438,-9.698505551625336,4.734531315153024 -0.0001958898347107438,-9.702184804240117,4.741968616894324 --0.0001957698347107438,-9.698505551625336,4.749405918635624 -0.0001956498347107438,-9.705864056854901,4.741968616894324 --0.0001955298347107438,-9.702184804240117,4.741968616894324 -0.0001954098347107438,-9.702184804240117,4.730812664282375 --0.0001952898347107438,-9.698505551625336,4.730812664282375 -0.0001951698347107438,-9.694826299010556,4.738249966023675 --0.0001950498347107438,-9.702184804240117,4.734531315153024 -0.0001949298347107438,-9.702184804240117,4.738249966023675 --0.0001948098347107438,-9.635958257174044,4.734531315153024 -0.0001946898347107438,-9.676430035936646,4.741968616894324 --0.0001945698347107438,-9.691147046395772,4.738249966023675 -0.0001944498347107438,-9.687467793780991,4.741968616894324 --0.0001943298347107438,-9.691147046395772,4.734531315153024 -0.0001942098347107438,-9.691147046395772,4.741968616894324 --0.0001940898347107438,-9.687467793780991,4.741968616894324 -0.0001939698347107438,-9.691147046395772,4.741968616894324 --0.0001938498347107438,-9.687467793780991,4.741968616894324 -0.0001937298347107438,-9.687467793780991,4.741968616894324 --0.0001936098347107438,-9.68378854116621,4.745687267764975 -0.0001934898347107438,-9.687467793780991,4.741968616894324 --0.0001933698347107438,-9.687467793780991,4.749405918635624 -0.0001932498347107438,-9.687467793780991,4.749405918635624 --0.0001931298347107438,-9.691147046395772,4.753124569506275 -0.0001930098347107438,-9.680109288551426,4.749405918635624 --0.0001928898347107438,-9.687467793780991,4.749405918635624 -0.0001927698347107438,-9.68378854116621,4.749405918635624 --0.0001926498347107438,-9.680109288551426,4.753124569506275 -0.0001925298347107438,-9.680109288551426,4.756843220376926 --0.0001924098347107438,-9.68378854116621,4.753124569506275 -0.0001922898347107438,-9.68378854116621,4.753124569506275 --0.0001921698347107438,-9.691147046395772,4.745687267764975 -0.0001920498347107438,-9.68378854116621,4.745687267764975 --0.0001919298347107438,-9.691147046395772,4.749405918635624 -0.0001918098347107438,-9.687467793780991,4.753124569506275 --0.0001916898347107438,-9.691147046395772,4.749405918635624 -0.0001915698347107438,-9.687467793780991,4.741968616894324 --0.0001914498347107438,-9.687467793780991,4.741968616894324 -0.0001913298347107438,-9.687467793780991,4.741968616894324 --0.0001912098347107438,-9.694826299010556,4.745687267764975 -0.0001910898347107438,-9.680109288551426,4.745687267764975 --0.0001909698347107438,-9.687467793780991,4.741968616894324 -0.0001908498347107438,-9.687467793780991,4.745687267764975 --0.0001907298347107438,-9.68378854116621,4.749405918635624 -0.0001906098347107438,-9.687467793780991,4.749405918635624 --0.0001904898347107438,-9.672750783321865,4.738249966023675 -0.0001903698347107438,-9.536618436574935,4.741968616894324 --0.0001902498347107438,-9.676430035936646,4.745687267764975 -0.0001901298347107438,-9.687467793780991,4.745687267764975 --0.0001900098347107438,-9.68378854116621,4.749405918635624 -0.0001898898347107438,-9.687467793780991,4.745687267764975 --0.0001897698347107438,-9.691147046395772,4.745687267764975 -0.0001896498347107438,-9.691147046395772,4.745687267764975 --0.0001895298347107438,-9.691147046395772,4.741968616894324 -0.0001894098347107438,-9.691147046395772,4.738249966023675 --0.0001892898347107438,-9.694826299010556,4.745687267764975 -0.0001891698347107438,-9.694826299010556,4.745687267764975 --0.0001890498347107438,-9.694826299010556,4.745687267764975 -0.0001889298347107438,-9.694826299010556,4.741968616894324 --0.0001888098347107438,-9.691147046395772,4.741968616894324 -0.0001886898347107438,-9.691147046395772,4.745687267764975 --0.0001885698347107438,-9.691147046395772,4.745687267764975 -0.0001884498347107438,-9.694826299010556,4.745687267764975 --0.0001883298347107438,-9.691147046395772,4.745687267764975 -0.0001882098347107438,-9.687467793780991,4.745687267764975 --0.0001880898347107438,-9.691147046395772,4.741968616894324 -0.0001879698347107438,-9.698505551625336,4.745687267764975 --0.0001878498347107438,-9.691147046395772,4.749405918635624 -0.0001877298347107438,-9.691147046395772,4.753124569506275 --0.0001876098347107438,-9.687467793780991,4.756843220376926 -0.0001874898347107438,-9.68378854116621,4.753124569506275 --0.0001873698347107438,-9.691147046395772,4.753124569506275 -0.0001872498347107438,-9.691147046395772,4.738249966023675 --0.0001871298347107438,-9.691147046395772,4.749405918635624 -0.0001870098347107438,-9.691147046395772,4.745687267764975 --0.0001868898347107438,-9.698505551625336,4.753124569506275 -0.0001867698347107438,-9.698505551625336,4.745687267764975 --0.0001866498347107438,-9.694826299010556,4.749405918635624 -0.0001865298347107438,-9.698505551625336,4.745687267764975 --0.0001864098347107438,-9.698505551625336,4.741968616894324 -0.0001862898347107438,-9.702184804240117,4.741968616894324 --0.0001861698347107438,-9.702184804240117,4.738249966023675 -0.0001860498347107438,-9.698505551625336,4.745687267764975 --0.0001859298347107438,-9.702184804240117,4.745687267764975 -0.0001858098347107438,-9.702184804240117,4.745687267764975 --0.0001856898347107438,-9.702184804240117,4.738249966023675 -0.0001855698347107438,-9.698505551625336,4.741968616894324 --0.0001854498347107438,-9.698505551625336,4.745687267764975 -0.0001853298347107438,-9.702184804240117,4.745687267764975 --0.0001852098347107438,-9.698505551625336,4.749405918635624 -0.0001850898347107438,-9.643316762403609,4.753124569506275 --0.0001849698347107438,-9.669071530707081,4.749405918635624 -0.0001848498347107438,-9.687467793780991,4.745687267764975 --0.0001847298347107438,-9.687467793780991,4.745687267764975 -0.0001846098347107438,-9.687467793780991,4.749405918635624 --0.0001844898347107438,-9.691147046395772,4.753124569506275 -0.0001843698347107438,-9.680109288551426,4.756843220376926 --0.0001842498347107438,-9.68378854116621,4.753124569506275 -0.0001841298347107438,-9.687467793780991,4.753124569506275 --0.0001840098347107438,-9.687467793780991,4.749405918635624 -0.0001838898347107438,-9.691147046395772,4.741968616894324 --0.0001837698347107438,-9.68378854116621,4.741968616894324 -0.0001836498347107438,-9.68378854116621,4.749405918635624 --0.0001835298347107438,-9.687467793780991,4.745687267764975 -0.0001834098347107438,-9.68378854116621,4.749405918635624 --0.0001832898347107438,-9.68378854116621,4.749405918635624 -0.0001831698347107438,-9.691147046395772,4.741968616894324 --0.0001830498347107438,-9.691147046395772,4.749405918635624 -0.0001829298347107438,-9.68378854116621,4.749405918635624 --0.0001828098347107438,-9.691147046395772,4.749405918635624 -0.0001826898347107438,-9.691147046395772,4.749405918635624 --0.0001825698347107438,-9.698505551625336,4.749405918635624 -0.0001824498347107438,-9.691147046395772,4.753124569506275 --0.0001823298347107438,-9.694826299010556,4.749405918635624 -0.0001822098347107438,-9.694826299010556,4.753124569506275 --0.0001820898347107438,-9.691147046395772,4.753124569506275 -0.0001819698347107438,-9.694826299010556,4.756843220376926 --0.0001818498347107438,-9.698505551625336,4.749405918635624 -0.0001817298347107438,-9.694826299010556,4.753124569506275 --0.0001816098347107438,-9.698505551625336,4.753124569506275 -0.0001814898347107438,-9.691147046395772,4.749405918635624 --0.0001813698347107438,-9.687467793780991,4.749405918635624 -0.0001812498347107438,-9.68378854116621,4.753124569506275 --0.0001811298347107438,-9.687467793780991,4.745687267764975 -0.0001810098347107438,-9.691147046395772,4.741968616894324 --0.0001808898347107438,-9.691147046395772,4.738249966023675 -0.0001807698347107438,-9.680109288551426,4.734531315153024 --0.0001806498347107438,-9.540297689189719,4.741968616894324 -0.0001805298347107438,-9.676430035936646,4.741968616894324 --0.0001804098347107438,-9.687467793780991,4.741968616894324 -0.0001802898347107438,-9.687467793780991,4.745687267764975 --0.0001801698347107438,-9.687467793780991,4.741968616894324 -0.0001800498347107438,-9.691147046395772,4.749405918635624 --0.0001799298347107438,-9.68378854116621,4.738249966023675 -0.0001798098347107438,-9.691147046395772,4.741968616894324 --0.0001796898347107438,-9.687467793780991,4.741968616894324 -0.0001795698347107438,-9.68378854116621,4.745687267764975 --0.0001794498347107438,-9.687467793780991,4.753124569506275 -0.0001793298347107438,-9.687467793780991,4.749405918635624 --0.0001792098347107438,-9.68378854116621,4.753124569506275 -0.0001790898347107438,-9.691147046395772,4.741968616894324 --0.0001789698347107438,-9.691147046395772,4.745687267764975 -0.0001788498347107438,-9.694826299010556,4.741968616894324 --0.0001787298347107438,-9.687467793780991,4.745687267764975 -0.0001786098347107438,-9.691147046395772,4.745687267764975 --0.0001784898347107438,-9.691147046395772,4.749405918635624 -0.0001783698347107438,-9.694826299010556,4.749405918635624 --0.0001782498347107438,-9.694826299010556,4.741968616894324 -0.0001781298347107438,-9.687467793780991,4.745687267764975 --0.0001780098347107438,-9.694826299010556,4.753124569506275 -0.0001778898347107438,-9.694826299010556,4.745687267764975 --0.0001777698347107438,-9.694826299010556,4.741968616894324 -0.0001776498347107438,-9.694826299010556,4.745687267764975 --0.0001775298347107438,-9.691147046395772,4.745687267764975 -0.0001774098347107438,-9.694826299010556,4.738249966023675 --0.0001772898347107438,-9.691147046395772,4.738249966023675 -0.0001771698347107438,-9.694826299010556,4.745687267764975 --0.0001770498347107438,-9.694826299010556,4.749405918635624 -0.0001769298347107438,-9.691147046395772,4.749405918635624 --0.0001768098347107438,-9.694826299010556,4.745687267764975 -0.0001766898347107438,-9.694826299010556,4.741968616894324 --0.0001765698347107438,-9.698505551625336,4.741968616894324 -0.0001764498347107438,-9.694826299010556,4.745687267764975 --0.0001763298347107438,-9.694826299010556,4.745687267764975 -0.0001762098347107438,-9.691147046395772,4.745687267764975 --0.0001760898347107438,-9.698505551625336,4.745687267764975 -0.0001759698347107438,-9.694826299010556,4.745687267764975 --0.0001758498347107438,-9.698505551625336,4.741968616894324 -0.0001757298347107438,-9.698505551625336,4.745687267764975 --0.0001756098347107438,-9.702184804240117,4.741968616894324 -0.0001754898347107438,-9.702184804240117,4.745687267764975 --0.0001753698347107438,-9.635958257174044,4.753124569506275 -0.0001752498347107438,-9.687467793780991,4.730812664282375 --0.0001751298347107438,-9.687467793780991,4.745687267764975 -0.0001750098347107438,-9.698505551625336,4.738249966023675 --0.0001748898347107438,-9.687467793780991,4.745687267764975 -0.0001747698347107438,-9.694826299010556,4.738249966023675 --0.0001746498347107438,-9.687467793780991,4.749405918635624 -0.0001745298347107438,-9.691147046395772,4.741968616894324 --0.0001744098347107438,-9.691147046395772,4.749405918635624 -0.0001742898347107438,-9.691147046395772,4.738249966023675 --0.0001741698347107438,-9.680109288551426,4.749405918635624 -0.0001740498347107438,-9.68378854116621,4.749405918635624 --0.0001739298347107438,-9.68378854116621,4.749405918635624 -0.0001738098347107438,-9.680109288551426,4.753124569506275 --0.0001736898347107438,-9.68378854116621,4.749405918635624 -0.0001735698347107438,-9.68378854116621,4.753124569506275 --0.0001734498347107438,-9.680109288551426,4.749405918635624 -0.0001733298347107438,-9.687467793780991,4.756843220376926 --0.0001732098347107438,-9.680109288551426,4.741968616894324 -0.0001730898347107438,-9.68378854116621,4.753124569506275 --0.0001729698347107438,-9.691147046395772,4.745687267764975 -0.0001728498347107438,-9.68378854116621,4.745687267764975 --0.0001727298347107438,-9.68378854116621,4.745687267764975 -0.0001726098347107438,-9.691147046395772,4.741968616894324 --0.0001724898347107438,-9.691147046395772,4.749405918635624 -0.0001723698347107438,-9.687467793780991,4.738249966023675 --0.0001722498347107438,-9.68378854116621,4.745687267764975 -0.0001721298347107438,-9.691147046395772,4.753124569506275 --0.0001720098347107438,-9.687467793780991,4.741968616894324 -0.0001718898347107438,-9.680109288551426,4.745687267764975 --0.0001717698347107438,-9.68378854116621,4.745687267764975 -0.0001716498347107438,-9.680109288551426,4.738249966023675 --0.0001715298347107438,-9.68378854116621,4.741968616894324 -0.0001714098347107438,-9.68378854116621,4.745687267764975 --0.0001712898347107438,-9.68378854116621,4.738249966023675 -0.0001711698347107438,-9.68378854116621,4.738249966023675 --0.0001710498347107438,-9.680109288551426,4.745687267764975 -0.0001709298347107438,-9.536618436574935,4.749405918635624 --0.0001708098347107438,-9.669071530707081,4.738249966023675 -0.0001706898347107438,-9.687467793780991,4.745687267764975 --0.0001705698347107438,-9.694826299010556,4.745687267764975 -0.0001704498347107438,-9.694826299010556,4.745687267764975 --0.0001703298347107438,-9.698505551625336,4.745687267764975 -0.0001702098347107438,-9.694826299010556,4.745687267764975 --0.0001700898347107438,-9.702184804240117,4.745687267764975 -0.0001699698347107438,-9.694826299010556,4.741968616894324 --0.0001698498347107438,-9.698505551625336,4.741968616894324 -0.0001697298347107438,-9.694826299010556,4.749405918635624 --0.0001696098347107438,-9.694826299010556,4.745687267764975 -0.0001694898347107438,-9.691147046395772,4.749405918635624 --0.0001693698347107438,-9.698505551625336,4.741968616894324 -0.0001692498347107438,-9.694826299010556,4.745687267764975 --0.0001691298347107438,-9.698505551625336,4.745687267764975 -0.0001690098347107438,-9.694826299010556,4.753124569506275 --0.0001688898347107438,-9.698505551625336,4.753124569506275 -0.0001687698347107438,-9.694826299010556,4.745687267764975 --0.0001686498347107438,-9.694826299010556,4.749405918635624 -0.0001685298347107438,-9.694826299010556,4.738249966023675 --0.0001684098347107438,-9.694826299010556,4.745687267764975 -0.0001682898347107438,-9.698505551625336,4.738249966023675 --0.0001681698347107438,-9.698505551625336,4.745687267764975 -0.0001680498347107438,-9.691147046395772,4.745687267764975 --0.0001679298347107438,-9.694826299010556,4.741968616894324 -0.0001678098347107438,-9.691147046395772,4.741968616894324 --0.0001676898347107438,-9.694826299010556,4.734531315153024 -0.0001675698347107438,-9.694826299010556,4.741968616894324 --0.0001674498347107438,-9.694826299010556,4.738249966023675 -0.0001673298347107438,-9.698505551625336,4.749405918635624 --0.0001672098347107438,-9.698505551625336,4.745687267764975 -0.0001670898347107438,-9.698505551625336,4.745687267764975 --0.0001669698347107438,-9.698505551625336,4.741968616894324 -0.0001668498347107438,-9.702184804240117,4.745687267764975 --0.0001667298347107438,-9.694826299010556,4.749405918635624 -0.0001666098347107438,-9.694826299010556,4.745687267764975 --0.0001664898347107438,-9.702184804240117,4.745687267764975 -0.0001663698347107438,-9.698505551625336,4.741968616894324 --0.0001662498347107438,-9.698505551625336,4.745687267764975 -0.0001661298347107438,-9.698505551625336,4.738249966023675 --0.0001660098347107438,-9.698505551625336,4.738249966023675 -0.0001658898347107438,-9.702184804240117,4.741968616894324 --0.0001657698347107438,-9.698505551625336,4.741968616894324 -0.0001656498347107438,-9.669071530707081,4.708500759058474 --0.0001655298347107438,-9.64699601501839,4.771717823859525 -0.0001654098347107438,-9.68378854116621,4.741968616894324 --0.0001652898347107438,-9.687467793780991,4.741968616894324 -0.0001651698347107438,-9.68378854116621,4.741968616894324 --0.0001650498347107438,-9.68378854116621,4.745687267764975 -0.0001649298347107438,-9.68378854116621,4.741968616894324 --0.0001648098347107438,-9.68378854116621,4.749405918635624 -0.0001646898347107438,-9.691147046395772,4.745687267764975 --0.0001645698347107438,-9.680109288551426,4.745687267764975 -0.0001644498347107438,-9.691147046395772,4.741968616894324 --0.0001643298347107438,-9.68378854116621,4.745687267764975 -0.0001642098347107438,-9.680109288551426,4.745687267764975 --0.0001640898347107438,-9.68378854116621,4.745687267764975 -0.0001639698347107438,-9.68378854116621,4.745687267764975 --0.0001638498347107438,-9.687467793780991,4.745687267764975 -0.0001637298347107438,-9.687467793780991,4.745687267764975 --0.0001636098347107438,-9.691147046395772,4.745687267764975 -0.0001634898347107438,-9.691147046395772,4.745687267764975 --0.0001633698347107438,-9.687467793780991,4.741968616894324 -0.0001632498347107438,-9.687467793780991,4.749405918635624 --0.0001631298347107438,-9.68378854116621,4.745687267764975 -0.0001630098347107438,-9.68378854116621,4.749405918635624 --0.0001628898347107438,-9.68378854116621,4.745687267764975 -0.0001627698347107438,-9.68378854116621,4.741968616894324 --0.0001626498347107438,-9.68378854116621,4.741968616894324 -0.0001625298347107438,-9.680109288551426,4.738249966023675 --0.0001624098347107438,-9.68378854116621,4.741968616894324 -0.0001622898347107438,-9.68378854116621,4.741968616894324 --0.0001621698347107438,-9.687467793780991,4.745687267764975 -0.0001620498347107438,-9.687467793780991,4.741968616894324 --0.0001619298347107438,-9.691147046395772,4.745687267764975 -0.0001618098347107438,-9.68378854116621,4.741968616894324 --0.0001616898347107438,-9.687467793780991,4.738249966023675 -0.0001615698347107438,-9.687467793780991,4.749405918635624 --0.0001614498347107438,-9.680109288551426,4.738249966023675 -0.0001613298347107438,-9.68378854116621,4.749405918635624 --0.0001612098347107438,-9.558693952263626,4.738249966023675 -0.0001610898347107438,-9.64699601501839,4.745687267764975 --0.0001609698347107438,-9.68378854116621,4.741968616894324 -0.0001608498347107438,-9.680109288551426,4.738249966023675 --0.0001607298347107438,-9.687467793780991,4.745687267764975 -0.0001606098347107438,-9.687467793780991,4.745687267764975 --0.0001604898347107438,-9.687467793780991,4.749405918635624 -0.0001603698347107438,-9.68378854116621,4.741968616894324 --0.0001602498347107438,-9.691147046395772,4.753124569506275 -0.0001601298347107438,-9.694826299010556,4.741968616894324 --0.0001600098347107438,-9.694826299010556,4.753124569506275 -0.0001598898347107438,-9.691147046395772,4.749405918635624 --0.0001597698347107438,-9.691147046395772,4.749405918635624 -0.0001596498347107438,-9.694826299010556,4.745687267764975 --0.0001595298347107438,-9.691147046395772,4.741968616894324 -0.0001594098347107438,-9.694826299010556,4.738249966023675 --0.0001592898347107438,-9.694826299010556,4.745687267764975 -0.0001591698347107438,-9.698505551625336,4.745687267764975 --0.0001590498347107438,-9.702184804240117,4.745687267764975 -0.0001589298347107438,-9.694826299010556,4.745687267764975 --0.0001588098347107438,-9.698505551625336,4.741968616894324 -0.0001586898347107438,-9.691147046395772,4.738249966023675 --0.0001585698347107438,-9.698505551625336,4.738249966023675 -0.0001584498347107438,-9.702184804240117,4.745687267764975 --0.0001583298347107438,-9.698505551625336,4.753124569506275 -0.0001582098347107438,-9.698505551625336,4.749405918635624 --0.0001580898347107438,-9.694826299010556,4.745687267764975 -0.0001579698347107438,-9.691147046395772,4.745687267764975 --0.0001578498347107438,-9.698505551625336,4.741968616894324 -0.0001577298347107438,-9.694826299010556,4.741968616894324 --0.0001576098347107438,-9.691147046395772,4.741968616894324 -0.0001574898347107438,-9.691147046395772,4.738249966023675 --0.0001573698347107438,-9.694826299010556,4.745687267764975 -0.0001572498347107438,-9.691147046395772,4.741968616894324 --0.0001571298347107438,-9.694826299010556,4.745687267764975 -0.0001570098347107438,-9.694826299010556,4.741968616894324 --0.0001568898347107438,-9.691147046395772,4.741968616894324 -0.0001567698347107438,-9.698505551625336,4.741968616894324 --0.0001566498347107438,-9.694826299010556,4.745687267764975 -0.0001565298347107438,-9.691147046395772,4.738249966023675 --0.0001564098347107438,-9.698505551625336,4.738249966023675 -0.0001562898347107438,-9.698505551625336,4.738249966023675 --0.0001561698347107438,-9.698505551625336,4.734531315153024 -0.0001560498347107438,-9.694826299010556,4.741968616894324 --0.0001559298347107438,-9.687467793780991,4.734531315153024 -0.0001558098347107438,-9.632279004559264,4.749405918635624 --0.0001556898347107438,-9.691147046395772,4.745687267764975 -0.0001555698347107438,-9.691147046395772,4.738249966023675 --0.0001554498347107438,-9.691147046395772,4.734531315153024 -0.0001553298347107438,-9.691147046395772,4.738249966023675 --0.0001552098347107438,-9.694826299010556,4.738249966023675 -0.0001550898347107438,-9.694826299010556,4.749405918635624 --0.0001549698347107438,-9.691147046395772,4.741968616894324 -0.0001548498347107438,-9.691147046395772,4.745687267764975 --0.0001547298347107438,-9.694826299010556,4.738249966023675 -0.0001546098347107438,-9.691147046395772,4.745687267764975 --0.0001544898347107438,-9.694826299010556,4.741968616894324 -0.0001543698347107438,-9.687467793780991,4.741968616894324 --0.0001542498347107438,-9.691147046395772,4.741968616894324 -0.0001541298347107438,-9.687467793780991,4.745687267764975 --0.0001540098347107438,-9.687467793780991,4.741968616894324 -0.0001538898347107438,-9.687467793780991,4.738249966023675 --0.0001537698347107438,-9.691147046395772,4.738249966023675 -0.0001536498347107438,-9.687467793780991,4.734531315153024 --0.0001535298347107438,-9.691147046395772,4.738249966023675 -0.0001534098347107438,-9.691147046395772,4.741968616894324 --0.0001532898347107438,-9.691147046395772,4.738249966023675 -0.0001531698347107438,-9.694826299010556,4.745687267764975 --0.0001530498347107438,-9.694826299010556,4.741968616894324 -0.0001529298347107438,-9.691147046395772,4.745687267764975 --0.0001528098347107438,-9.691147046395772,4.745687267764975 -0.0001526898347107438,-9.691147046395772,4.745687267764975 --0.0001525698347107438,-9.698505551625336,4.745687267764975 -0.0001524498347107438,-9.691147046395772,4.749405918635624 --0.0001523298347107438,-9.694826299010556,4.745687267764975 -0.0001522098347107438,-9.691147046395772,4.745687267764975 --0.0001520898347107438,-9.694826299010556,4.745687267764975 -0.0001519698347107438,-9.694826299010556,4.745687267764975 --0.0001518498347107438,-9.694826299010556,4.749405918635624 -0.0001517298347107438,-9.694826299010556,4.741968616894324 --0.0001516098347107438,-9.687467793780991,4.741968616894324 -0.0001514898347107438,-9.628599751944483,4.738249966023675 --0.0001513698347107438,-9.577090215337536,4.741968616894324 -0.0001512498347107438,-9.687467793780991,4.745687267764975 --0.0001511298347107438,-9.691147046395772,4.741968616894324 -0.0001510098347107438,-9.691147046395772,4.738249966023675 --0.0001508898347107438,-9.691147046395772,4.741968616894324 -0.0001507698347107438,-9.687467793780991,4.738249966023675 --0.0001506498347107438,-9.691147046395772,4.730812664282375 -0.0001505298347107438,-9.694826299010556,4.734531315153024 --0.0001504098347107438,-9.694826299010556,4.738249966023675 -0.0001502898347107438,-9.694826299010556,4.741968616894324 --0.0001501698347107438,-9.694826299010556,4.745687267764975 -0.0001500498347107438,-9.687467793780991,4.745687267764975 --0.0001499298347107438,-9.691147046395772,4.745687267764975 -0.0001498098347107438,-9.687467793780991,4.741968616894324 --0.0001496898347107438,-9.691147046395772,4.741968616894324 -0.0001495698347107438,-9.691147046395772,4.741968616894324 --0.0001494498347107438,-9.687467793780991,4.741968616894324 -0.0001493298347107438,-9.687467793780991,4.745687267764975 --0.0001492098347107438,-9.687467793780991,4.745687267764975 -0.0001490898347107438,-9.691147046395772,4.745687267764975 --0.0001489698347107438,-9.687467793780991,4.741968616894324 -0.0001488498347107438,-9.691147046395772,4.741968616894324 --0.0001487298347107438,-9.694826299010556,4.738249966023675 -0.0001486098347107438,-9.694826299010556,4.753124569506275 --0.0001484898347107438,-9.694826299010556,4.741968616894324 -0.0001483698347107438,-9.702184804240117,4.745687267764975 --0.0001482498347107438,-9.691147046395772,4.734531315153024 -0.0001481298347107438,-9.694826299010556,4.741968616894324 --0.0001480098347107438,-9.698505551625336,4.741968616894324 -0.0001478898347107438,-9.691147046395772,4.738249966023675 --0.0001477698347107438,-9.691147046395772,4.749405918635624 -0.0001476498347107438,-9.691147046395772,4.738249966023675 --0.0001475298347107438,-9.687467793780991,4.741968616894324 -0.0001474098347107438,-9.691147046395772,4.734531315153024 --0.0001472898347107438,-9.691147046395772,4.741968616894324 -0.0001471698347107438,-9.691147046395772,4.738249966023675 --0.0001470498347107438,-9.694826299010556,4.745687267764975 -0.0001469298347107438,-9.698505551625336,4.738249966023675 --0.0001468098347107438,-9.694826299010556,4.741968616894324 -0.0001466898347107438,-9.694826299010556,4.741968616894324 --0.0001465698347107438,-9.691147046395772,4.730812664282375 -0.0001464498347107438,-9.694826299010556,4.738249966023675 --0.0001463298347107438,-9.698505551625336,4.738249966023675 -0.0001462098347107438,-9.694826299010556,4.749405918635624 --0.0001460898347107438,-9.628599751944483,4.738249966023675 -0.0001459698347107438,-9.676430035936646,4.749405918635624 --0.0001458498347107438,-9.687467793780991,4.745687267764975 -0.0001457298347107438,-9.687467793780991,4.745687267764975 --0.0001456098347107438,-9.691147046395772,4.749405918635624 -0.0001454898347107438,-9.691147046395772,4.749405918635624 --0.0001453698347107438,-9.691147046395772,4.745687267764975 -0.0001452498347107438,-9.687467793780991,4.749405918635624 --0.0001451298347107438,-9.694826299010556,4.745687267764975 -0.0001450098347107438,-9.694826299010556,4.741968616894324 --0.0001448898347107438,-9.68378854116621,4.738249966023675 -0.0001447698347107438,-9.687467793780991,4.734531315153024 --0.0001446498347107438,-9.687467793780991,4.738249966023675 -0.0001445298347107438,-9.68378854116621,4.734531315153024 --0.0001444098347107438,-9.687467793780991,4.738249966023675 -0.0001442898347107438,-9.691147046395772,4.745687267764975 --0.0001441698347107438,-9.68378854116621,4.738249966023675 -0.0001440498347107438,-9.687467793780991,4.741968616894324 --0.0001439298347107438,-9.687467793780991,4.741968616894324 -0.0001438098347107438,-9.68378854116621,4.745687267764975 --0.0001436898347107438,-9.687467793780991,4.745687267764975 -0.0001435698347107438,-9.68378854116621,4.745687267764975 --0.0001434498347107438,-9.687467793780991,4.745687267764975 -0.0001433298347107438,-9.68378854116621,4.741968616894324 --0.0001432098347107438,-9.687467793780991,4.741968616894324 -0.0001430898347107438,-9.687467793780991,4.741968616894324 --0.0001429698347107438,-9.687467793780991,4.741968616894324 -0.0001428498347107438,-9.687467793780991,4.738249966023675 --0.0001427298347107438,-9.687467793780991,4.738249966023675 -0.0001426098347107438,-9.687467793780991,4.741968616894324 --0.0001424898347107438,-9.687467793780991,4.738249966023675 -0.0001423698347107438,-9.680109288551426,4.741968616894324 --0.0001422498347107438,-9.68378854116621,4.738249966023675 -0.0001421298347107438,-9.687467793780991,4.745687267764975 --0.0001420098347107438,-9.68378854116621,4.741968616894324 -0.0001418898347107438,-9.68378854116621,4.741968616894324 --0.0001417698347107438,-9.6653922780923,4.730812664282375 -0.0001416498347107438,-9.536618436574935,4.730812664282375 --0.0001415298347107438,-9.68378854116621,4.745687267764975 -0.0001414098347107438,-9.691147046395772,4.734531315153024 --0.0001412898347107438,-9.68378854116621,4.738249966023675 -0.0001411698347107438,-9.698505551625336,4.741968616894324 --0.0001410498347107438,-9.691147046395772,4.741968616894324 -0.0001409298347107438,-9.691147046395772,4.749405918635624 --0.0001408098347107438,-9.691147046395772,4.738249966023675 -0.0001406898347107438,-9.687467793780991,4.741968616894324 --0.0001405698347107438,-9.694826299010556,4.741968616894324 -0.0001404498347107438,-9.694826299010556,4.745687267764975 --0.0001403298347107438,-9.687467793780991,4.738249966023675 -0.0001402098347107438,-9.698505551625336,4.741968616894324 --0.0001400898347107438,-9.698505551625336,4.734531315153024 -0.0001399698347107438,-9.698505551625336,4.741968616894324 --0.0001398498347107438,-9.698505551625336,4.741968616894324 -0.0001397298347107438,-9.691147046395772,4.741968616894324 --0.0001396098347107438,-9.698505551625336,4.749405918635624 -0.0001394898347107438,-9.694826299010556,4.738249966023675 --0.0001393698347107438,-9.694826299010556,4.749405918635624 -0.0001392498347107438,-9.687467793780991,4.749405918635624 --0.0001391298347107438,-9.68378854116621,4.741968616894324 -0.0001390098347107438,-9.687467793780991,4.745687267764975 --0.0001388898347107438,-9.691147046395772,4.738249966023675 -0.0001387698347107438,-9.691147046395772,4.753124569506275 --0.0001386498347107438,-9.68378854116621,4.741968616894324 -0.0001385298347107438,-9.68378854116621,4.745687267764975 --0.0001384098347107438,-9.691147046395772,4.738249966023675 -0.0001382898347107438,-9.694826299010556,4.741968616894324 --0.0001381698347107438,-9.691147046395772,4.734531315153024 -0.0001380498347107438,-9.698505551625336,4.738249966023675 --0.0001379298347107438,-9.691147046395772,4.738249966023675 -0.0001378098347107438,-9.687467793780991,4.741968616894324 --0.0001376898347107438,-9.694826299010556,4.741968616894324 -0.0001375698347107438,-9.691147046395772,4.738249966023675 --0.0001374498347107438,-9.705864056854901,4.741968616894324 -0.0001373298347107438,-9.698505551625336,4.741968616894324 --0.0001372098347107438,-9.694826299010556,4.749405918635624 -0.0001370898347107438,-9.698505551625336,4.745687267764975 --0.0001369698347107438,-9.702184804240117,4.745687267764975 -0.0001368498347107438,-9.702184804240117,4.749405918635624 --0.0001367298347107438,-9.705864056854901,4.745687267764975 -0.0001366098347107438,-9.705864056854901,4.745687267764975 --0.0001364898347107438,-9.705864056854901,4.738249966023675 -0.0001363698347107438,-9.628599751944483,4.741968616894324 --0.0001362498347107438,-9.661713025477519,4.741968616894324 -0.0001361298347107438,-9.687467793780991,4.734531315153024 --0.0001360098347107438,-9.687467793780991,4.741968616894324 -0.0001358898347107438,-9.687467793780991,4.741968616894324 --0.0001357698347107438,-9.68378854116621,4.738249966023675 -0.0001356498347107438,-9.691147046395772,4.745687267764975 --0.0001355298347107438,-9.687467793780991,4.741968616894324 -0.0001354098347107438,-9.687467793780991,4.734531315153024 --0.0001352898347107438,-9.687467793780991,4.738249966023675 -0.0001351698347107438,-9.687467793780991,4.738249966023675 --0.0001350498347107438,-9.691147046395772,4.738249966023675 -0.0001349298347107438,-9.687467793780991,4.741968616894324 --0.0001348098347107438,-9.694826299010556,4.741968616894324 -0.0001346898347107438,-9.680109288551426,4.741968616894324 --0.0001345698347107438,-9.68378854116621,4.741968616894324 -0.0001344498347107438,-9.68378854116621,4.738249966023675 --0.0001343298347107438,-9.687467793780991,4.734531315153024 -0.0001342098347107438,-9.680109288551426,4.745687267764975 --0.0001340898347107438,-9.68378854116621,4.734531315153024 -0.0001339698347107438,-9.68378854116621,4.741968616894324 --0.0001338498347107438,-9.691147046395772,4.738249966023675 -0.0001337298347107438,-9.68378854116621,4.741968616894324 --0.0001336098347107438,-9.687467793780991,4.738249966023675 -0.0001334898347107438,-9.68378854116621,4.738249966023675 --0.0001333698347107438,-9.68378854116621,4.749405918635624 -0.0001332498347107438,-9.691147046395772,4.745687267764975 --0.0001331298347107438,-9.691147046395772,4.745687267764975 -0.0001330098347107438,-9.687467793780991,4.741968616894324 --0.0001328898347107438,-9.691147046395772,4.749405918635624 -0.0001327698347107438,-9.687467793780991,4.738249966023675 --0.0001326498347107438,-9.687467793780991,4.741968616894324 -0.0001325298347107438,-9.691147046395772,4.741968616894324 --0.0001324098347107438,-9.687467793780991,4.745687267764975 -0.0001322898347107438,-9.687467793780991,4.749405918635624 --0.0001321698347107438,-9.68378854116621,4.741968616894324 -0.0001320498347107438,-9.676430035936646,4.734531315153024 --0.0001319298347107438,-9.536618436574935,4.741968616894324 -0.0001318098347107438,-9.680109288551426,4.745687267764975 --0.0001316898347107438,-9.691147046395772,4.741968616894324 -0.0001315698347107438,-9.698505551625336,4.741968616894324 --0.0001314498347107438,-9.694826299010556,4.749405918635624 -0.0001313298347107438,-9.698505551625336,4.753124569506275 --0.0001312098347107438,-9.691147046395772,4.745687267764975 -0.0001310898347107438,-9.698505551625336,4.741968616894324 --0.0001309698347107438,-9.694826299010556,4.741968616894324 -0.0001308498347107438,-9.694826299010556,4.749405918635624 --0.0001307298347107438,-9.698505551625336,4.745687267764975 -0.0001306098347107438,-9.694826299010556,4.745687267764975 --0.0001304898347107438,-9.694826299010556,4.749405918635624 -0.0001303698347107438,-9.687467793780991,4.745687267764975 --0.0001302498347107438,-9.694826299010556,4.741968616894324 -0.0001301298347107438,-9.691147046395772,4.745687267764975 --0.0001300098347107438,-9.691147046395772,4.741968616894324 -0.0001298898347107438,-9.691147046395772,4.745687267764975 --0.0001297698347107438,-9.691147046395772,4.741968616894324 -0.0001296498347107438,-9.691147046395772,4.749405918635624 --0.0001295298347107438,-9.691147046395772,4.745687267764975 -0.0001294098347107438,-9.694826299010556,4.734531315153024 --0.0001292898347107438,-9.694826299010556,4.745687267764975 -0.0001291698347107438,-9.694826299010556,4.741968616894324 --0.0001290498347107438,-9.698505551625336,4.749405918635624 -0.0001289298347107438,-9.691147046395772,4.753124569506275 --0.0001288098347107438,-9.691147046395772,4.749405918635624 -0.0001286898347107438,-9.691147046395772,4.741968616894324 --0.0001285698347107438,-9.694826299010556,4.745687267764975 -0.0001284498347107438,-9.694826299010556,4.741968616894324 --0.0001283298347107438,-9.691147046395772,4.745687267764975 -0.0001282098347107438,-9.694826299010556,4.745687267764975 --0.0001280898347107438,-9.694826299010556,4.745687267764975 -0.0001279698347107438,-9.694826299010556,4.745687267764975 --0.0001278498347107438,-9.698505551625336,4.741968616894324 -0.0001277298347107438,-9.698505551625336,4.741968616894324 --0.0001276098347107438,-9.698505551625336,4.741968616894324 -0.0001274898347107438,-9.694826299010556,4.745687267764975 --0.0001273698347107438,-9.694826299010556,4.741968616894324 -0.0001272498347107438,-9.698505551625336,4.741968616894324 --0.0001271298347107438,-9.698505551625336,4.738249966023675 -0.0001270098347107438,-9.694826299010556,4.741968616894324 --0.0001268898347107438,-9.698505551625336,4.738249966023675 -0.0001267698347107438,-9.694826299010556,4.734531315153024 --0.0001266498347107438,-9.632279004559264,4.753124569506275 -0.0001265298347107438,-9.676430035936646,4.738249966023675 --0.0001264098347107438,-9.691147046395772,4.749405918635624 -0.0001262898347107438,-9.691147046395772,4.745687267764975 --0.0001261698347107438,-9.687467793780991,4.741968616894324 -0.0001260498347107438,-9.694826299010556,4.745687267764975 --0.0001259298347107438,-9.691147046395772,4.741968616894324 -0.0001258098347107438,-9.68378854116621,4.745687267764975 --0.0001256898347107438,-9.687467793780991,4.741968616894324 -0.0001255698347107438,-9.687467793780991,4.741968616894324 --0.0001254498347107438,-9.68378854116621,4.741968616894324 -0.0001253298347107438,-9.68378854116621,4.741968616894324 --0.0001252098347107438,-9.691147046395772,4.745687267764975 -0.0001250898347107438,-9.691147046395772,4.749405918635624 --0.0001249698347107438,-9.694826299010556,4.745687267764975 -0.0001248498347107438,-9.68378854116621,4.749405918635624 --0.0001247298347107438,-9.687467793780991,4.749405918635624 -0.0001246098347107438,-9.687467793780991,4.745687267764975 --0.0001244898347107438,-9.680109288551426,4.741968616894324 -0.0001243698347107438,-9.676430035936646,4.741968616894324 --0.0001242498347107438,-9.68378854116621,4.738249966023675 -0.0001241298347107438,-9.68378854116621,4.745687267764975 --0.0001240098347107438,-9.68378854116621,4.734531315153024 -0.0001238898347107438,-9.691147046395772,4.741968616894324 --0.0001237698347107438,-9.68378854116621,4.738249966023675 -0.0001236498347107438,-9.691147046395772,4.738249966023675 --0.0001235298347107438,-9.687467793780991,4.738249966023675 -0.0001234098347107438,-9.68378854116621,4.745687267764975 --0.0001232898347107438,-9.676430035936646,4.745687267764975 -0.0001231698347107438,-9.68378854116621,4.741968616894324 --0.0001230498347107438,-9.68378854116621,4.749405918635624 -0.0001229298347107438,-9.687467793780991,4.749405918635624 --0.0001228098347107438,-9.68378854116621,4.749405918635624 -0.0001226898347107438,-9.687467793780991,4.745687267764975 --0.0001225698347107438,-9.687467793780991,4.753124569506275 -0.0001224498347107438,-9.687467793780991,4.749405918635624 --0.0001223298347107438,-9.68378854116621,4.753124569506275 -0.0001222098347107438,-9.532939183960154,4.738249966023675 --0.0001220898347107438,-9.676430035936646,4.753124569506275 -0.0001219698347107438,-9.691147046395772,4.749405918635624 --0.0001218498347107438,-9.698505551625336,4.745687267764975 -0.0001217298347107438,-9.694826299010556,4.749405918635624 --0.0001216098347107438,-9.691147046395772,4.741968616894324 -0.0001214898347107438,-9.691147046395772,4.753124569506275 --0.0001213698347107438,-9.694826299010556,4.749405918635624 -0.0001212498347107438,-9.691147046395772,4.741968616894324 --0.0001211298347107438,-9.691147046395772,4.738249966023675 -0.0001210098347107438,-9.691147046395772,4.741968616894324 --0.0001208898347107438,-9.691147046395772,4.745687267764975 -0.0001207698347107438,-9.691147046395772,4.741968616894324 --0.0001206498347107438,-9.691147046395772,4.741968616894324 -0.0001205298347107438,-9.687467793780991,4.738249966023675 --0.0001204098347107438,-9.691147046395772,4.741968616894324 -0.0001202898347107438,-9.687467793780991,4.741968616894324 --0.0001201698347107438,-9.687467793780991,4.745687267764975 -0.0001200498347107438,-9.691147046395772,4.745687267764975 --0.0001199298347107438,-9.68378854116621,4.745687267764975 -0.0001198098347107438,-9.691147046395772,4.749405918635624 --0.0001196898347107438,-9.694826299010556,4.745687267764975 -0.0001195698347107438,-9.694826299010556,4.741968616894324 --0.0001194498347107438,-9.698505551625336,4.749405918635624 -0.0001193298347107438,-9.698505551625336,4.745687267764975 --0.0001192098347107438,-9.698505551625336,4.753124569506275 -0.0001190898347107438,-9.694826299010556,4.745687267764975 --0.0001189698347107438,-9.698505551625336,4.745687267764975 -0.0001188498347107438,-9.698505551625336,4.745687267764975 --0.0001187298347107438,-9.698505551625336,4.749405918635624 -0.0001186098347107438,-9.694826299010556,4.745687267764975 --0.0001184898347107438,-9.694826299010556,4.745687267764975 -0.0001183698347107438,-9.694826299010556,4.741968616894324 --0.0001182498347107438,-9.702184804240117,4.745687267764975 -0.0001181298347107438,-9.694826299010556,4.745687267764975 --0.0001180098347107438,-9.694826299010556,4.738249966023675 -0.0001178898347107438,-9.694826299010556,4.741968616894324 --0.0001177698347107438,-9.694826299010556,4.741968616894324 -0.0001176498347107438,-9.691147046395772,4.741968616894324 --0.0001175298347107438,-9.698505551625336,4.738249966023675 -0.0001174098347107438,-9.691147046395772,4.741968616894324 --0.0001172898347107438,-9.694826299010556,4.734531315153024 -0.0001171698347107438,-9.694826299010556,4.738249966023675 --0.0001170498347107438,-9.694826299010556,4.741968616894324 -0.0001169298347107438,-9.632279004559264,4.741968616894324 --0.0001168098347107438,-9.676430035936646,4.745687267764975 -0.0001166898347107438,-9.687467793780991,4.741968616894324 --0.0001165698347107438,-9.68378854116621,4.745687267764975 -0.0001164498347107438,-9.691147046395772,4.738249966023675 --0.0001163298347107438,-9.687467793780991,4.745687267764975 -0.0001162098347107438,-9.687467793780991,4.741968616894324 --0.0001160898347107438,-9.687467793780991,4.749405918635624 -0.0001159698347107438,-9.691147046395772,4.745687267764975 --0.0001158498347107438,-9.691147046395772,4.745687267764975 -0.0001157298347107438,-9.694826299010556,4.745687267764975 --0.0001156098347107438,-9.687467793780991,4.741968616894324 -0.0001154898347107438,-9.694826299010556,4.745687267764975 --0.0001153698347107438,-9.687467793780991,4.738249966023675 -0.0001152498347107438,-9.687467793780991,4.745687267764975 --0.0001151298347107438,-9.687467793780991,4.738249966023675 -0.0001150098347107438,-9.691147046395772,4.741968616894324 --0.0001148898347107438,-9.691147046395772,4.745687267764975 -0.0001147698347107438,-9.687467793780991,4.741968616894324 --0.0001146498347107438,-9.68378854116621,4.741968616894324 -0.0001145298347107438,-9.68378854116621,4.738249966023675 --0.0001144098347107438,-9.687467793780991,4.741968616894324 -0.0001142898347107438,-9.687467793780991,4.738249966023675 --0.0001141698347107438,-9.687467793780991,4.741968616894324 -0.0001140498347107438,-9.687467793780991,4.738249966023675 --0.0001139298347107438,-9.687467793780991,4.741968616894324 -0.0001138098347107438,-9.680109288551426,4.741968616894324 --0.0001136898347107438,-9.68378854116621,4.741968616894324 -0.0001135698347107438,-9.687467793780991,4.741968616894324 --0.0001134498347107438,-9.687467793780991,4.741968616894324 -0.0001133298347107438,-9.680109288551426,4.745687267764975 --0.0001132098347107438,-9.68378854116621,4.749405918635624 -0.0001130898347107438,-9.687467793780991,4.745687267764975 --0.0001129698347107438,-9.680109288551426,4.741968616894324 -0.0001128498347107438,-9.68378854116621,4.741968616894324 --0.0001127298347107438,-9.68378854116621,4.749405918635624 -0.0001126098347107438,-9.680109288551426,4.741968616894324 --0.0001124898347107438,-9.536618436574935,4.745687267764975 -0.0001123698347107438,-9.661713025477519,4.738249966023675 --0.0001122498347107438,-9.680109288551426,4.738249966023675 -0.0001121298347107438,-9.687467793780991,4.738249966023675 --0.0001120098347107438,-9.691147046395772,4.745687267764975 -0.0001118898347107438,-9.687467793780991,4.741968616894324 --0.0001117698347107438,-9.687467793780991,4.745687267764975 -0.0001116498347107438,-9.687467793780991,4.741968616894324 --0.0001115298347107438,-9.68378854116621,4.749405918635624 -0.0001114098347107438,-9.698505551625336,4.745687267764975 --0.0001112898347107438,-9.691147046395772,4.749405918635624 -0.0001111698347107438,-9.691147046395772,4.745687267764975 --0.0001110498347107438,-9.691147046395772,4.749405918635624 -0.0001109298347107438,-9.691147046395772,4.745687267764975 --0.0001108098347107438,-9.691147046395772,4.745687267764975 -0.0001106898347107438,-9.694826299010556,4.741968616894324 --0.0001105698347107438,-9.687467793780991,4.741968616894324 -0.0001104498347107438,-9.694826299010556,4.741968616894324 --0.0001103298347107438,-9.694826299010556,4.741968616894324 -0.0001102098347107438,-9.687467793780991,4.745687267764975 --0.0001100898347107438,-9.691147046395772,4.749405918635624 -0.0001099698347107438,-9.694826299010556,4.745687267764975 --0.0001098498347107438,-9.694826299010556,4.749405918635624 -0.0001097298347107438,-9.691147046395772,4.745687267764975 --0.0001096098347107438,-9.694826299010556,4.749405918635624 -0.0001094898347107438,-9.691147046395772,4.749405918635624 --0.0001093698347107438,-9.694826299010556,4.753124569506275 -0.0001092498347107438,-9.694826299010556,4.745687267764975 --0.0001091298347107438,-9.698505551625336,4.738249966023675 -0.0001090098347107438,-9.702184804240117,4.749405918635624 --0.0001088898347107438,-9.691147046395772,4.745687267764975 -0.0001087698347107438,-9.691147046395772,4.753124569506275 --0.0001086498347107438,-9.698505551625336,4.756843220376926 -0.0001085298347107438,-9.698505551625336,4.753124569506275 --0.0001084098347107438,-9.694826299010556,4.756843220376926 -0.0001082898347107438,-9.694826299010556,4.745687267764975 --0.0001081698347107438,-9.694826299010556,4.753124569506275 -0.0001080498347107438,-9.698505551625336,4.745687267764975 --0.0001079298347107438,-9.702184804240117,4.745687267764975 -0.0001078098347107438,-9.702184804240117,4.753124569506275 --0.0001076898347107438,-9.694826299010556,4.753124569506275 -0.0001075698347107438,-9.702184804240117,4.745687267764975 --0.0001074498347107438,-9.694826299010556,4.741968616894324 -0.0001073298347107438,-9.694826299010556,4.745687267764975 --0.0001072098347107438,-9.6653922780923,4.712219409929125 -0.0001070898347107438,-9.639637509788828,4.779155125600825 --0.0001069698347107438,-9.68378854116621,4.745687267764975 -0.0001068498347107438,-9.687467793780991,4.745687267764975 --0.0001067298347107438,-9.68378854116621,4.741968616894324 -0.0001066098347107438,-9.687467793780991,4.741968616894324 --0.0001064898347107438,-9.68378854116621,4.741968616894324 -0.0001063698347107438,-9.687467793780991,4.745687267764975 --0.0001062498347107438,-9.687467793780991,4.749405918635624 -0.0001061298347107438,-9.687467793780991,4.738249966023675 --0.0001060098347107438,-9.68378854116621,4.741968616894324 -0.0001058898347107438,-9.680109288551426,4.738249966023675 --0.0001057698347107438,-9.68378854116621,4.741968616894324 -0.0001056498347107438,-9.680109288551426,4.741968616894324 --0.0001055298347107438,-9.68378854116621,4.749405918635624 -0.0001054098347107438,-9.687467793780991,4.745687267764975 --0.0001052898347107438,-9.68378854116621,4.745687267764975 -0.0001051698347107438,-9.680109288551426,4.749405918635624 --0.0001050498347107438,-9.68378854116621,4.749405918635624 -0.0001049298347107438,-9.68378854116621,4.745687267764975 --0.0001048098347107438,-9.687467793780991,4.749405918635624 -0.0001046898347107438,-9.694826299010556,4.745687267764975 --0.0001045698347107438,-9.687467793780991,4.749405918635624 -0.0001044498347107438,-9.691147046395772,4.745687267764975 --0.0001043298347107438,-9.68378854116621,4.738249966023675 -0.0001042098347107438,-9.687467793780991,4.734531315153024 --0.0001040898347107438,-9.694826299010556,4.745687267764975 -0.0001039698347107438,-9.691147046395772,4.734531315153024 --0.0001038498347107438,-9.691147046395772,4.745687267764975 -0.0001037298347107438,-9.691147046395772,4.738249966023675 --0.0001036098347107438,-9.691147046395772,4.741968616894324 -0.0001034898347107438,-9.694826299010556,4.738249966023675 --0.0001033698347107438,-9.691147046395772,4.745687267764975 -0.0001032498347107438,-9.691147046395772,4.745687267764975 --0.0001031298347107438,-9.687467793780991,4.741968616894324 -0.0001030098347107438,-9.687467793780991,4.745687267764975 --0.0001028898347107438,-9.68378854116621,4.745687267764975 -0.0001027698347107438,-9.566052457493191,4.738249966023675 --0.0001026498347107438,-9.639637509788828,4.741968616894324 -0.0001025298347107438,-9.68378854116621,4.745687267764975 --0.0001024098347107438,-9.691147046395772,4.745687267764975 -0.0001022898347107438,-9.687467793780991,4.745687267764975 --0.0001021698347107438,-9.691147046395772,4.756843220376926 -0.0001020498347107438,-9.691147046395772,4.753124569506275 --0.0001019298347107438,-9.694826299010556,4.753124569506275 -0.0001018098347107438,-9.691147046395772,4.753124569506275 --0.0001016898347107438,-9.687467793780991,4.749405918635624 -0.0001015698347107438,-9.687467793780991,4.745687267764975 --0.0001014498347107438,-9.687467793780991,4.749405918635624 -0.0001013298347107438,-9.691147046395772,4.749405918635624 --0.0001012098347107438,-9.691147046395772,4.753124569506275 -0.0001010898347107438,-9.687467793780991,4.753124569506275 --0.0001009698347107438,-9.694826299010556,4.745687267764975 -0.0001008498347107438,-9.694826299010556,4.749405918635624 --0.0001007298347107438,-9.691147046395772,4.753124569506275 -0.0001006098347107438,-9.694826299010556,4.756843220376926 --0.0001004898347107438,-9.694826299010556,4.749405918635624 -0.0001003698347107438,-9.694826299010556,4.749405918635624 --0.0001002498347107438,-9.702184804240117,4.745687267764975 -0.0001001298347107438,-9.694826299010556,4.745687267764975 --0.0001000098347107438,-9.698505551625336,4.749405918635624 -9.988983471074381e-05,-9.694826299010556,4.749405918635624 --9.976983471074382e-05,-9.694826299010556,4.753124569506275 -9.96498347107438e-05,-9.691147046395772,4.753124569506275 --9.95298347107438e-05,-9.691147046395772,4.753124569506275 -9.940983471074381e-05,-9.687467793780991,4.745687267764975 --9.928983471074379e-05,-9.691147046395772,4.741968616894324 -9.91698347107438e-05,-9.694826299010556,4.745687267764975 --9.904983471074381e-05,-9.691147046395772,4.745687267764975 -9.892983471074379e-05,-9.691147046395772,4.749405918635624 --9.88098347107438e-05,-9.691147046395772,4.741968616894324 -9.868983471074381e-05,-9.691147046395772,4.745687267764975 --9.856983471074381e-05,-9.694826299010556,4.741968616894324 -9.844983471074379e-05,-9.698505551625336,4.738249966023675 --9.83298347107438e-05,-9.698505551625336,4.741968616894324 -9.820983471074381e-05,-9.702184804240117,4.741968616894324 --9.808983471074379e-05,-9.698505551625336,4.745687267764975 -9.79698347107438e-05,-9.702184804240117,4.741968616894324 --9.784983471074381e-05,-9.698505551625336,4.749405918635624 -9.772983471074381e-05,-9.698505551625336,4.730812664282375 --9.76098347107438e-05,-9.702184804240117,4.738249966023675 -9.74898347107438e-05,-9.691147046395772,4.741968616894324 --9.736983471074381e-05,-9.624920499329699,4.749405918635624 -9.724983471074379e-05,-9.687467793780991,4.745687267764975 --9.71298347107438e-05,-9.691147046395772,4.738249966023675 -9.700983471074381e-05,-9.687467793780991,4.741968616894324 --9.688983471074382e-05,-9.687467793780991,4.738249966023675 -9.67698347107438e-05,-9.687467793780991,4.741968616894324 --9.66498347107438e-05,-9.687467793780991,4.734531315153024 -9.652983471074381e-05,-9.68378854116621,4.749405918635624 --9.640983471074379e-05,-9.687467793780991,4.738249966023675 -9.62898347107438e-05,-9.687467793780991,4.741968616894324 --9.616983471074381e-05,-9.691147046395772,4.741968616894324 -9.604983471074379e-05,-9.68378854116621,4.738249966023675 --9.59298347107438e-05,-9.68378854116621,4.738249966023675 -9.580983471074381e-05,-9.694826299010556,4.738249966023675 --9.568983471074381e-05,-9.687467793780991,4.741968616894324 -9.556983471074379e-05,-9.691147046395772,4.738249966023675 --9.54498347107438e-05,-9.68378854116621,4.738249966023675 -9.532983471074381e-05,-9.680109288551426,4.734531315153024 --9.520983471074379e-05,-9.680109288551426,4.738249966023675 -9.50898347107438e-05,-9.68378854116621,4.738249966023675 --9.496983471074381e-05,-9.68378854116621,4.745687267764975 -9.484983471074382e-05,-9.68378854116621,4.741968616894324 --9.47298347107438e-05,-9.68378854116621,4.738249966023675 -9.46098347107438e-05,-9.68378854116621,4.749405918635624 --9.448983471074381e-05,-9.68378854116621,4.734531315153024 -9.436983471074379e-05,-9.68378854116621,4.745687267764975 --9.42498347107438e-05,-9.68378854116621,4.738249966023675 -9.412983471074381e-05,-9.687467793780991,4.741968616894324 --9.400983471074379e-05,-9.68378854116621,4.745687267764975 -9.38898347107438e-05,-9.687467793780991,4.745687267764975 --9.376983471074381e-05,-9.687467793780991,4.749405918635624 -9.364983471074381e-05,-9.691147046395772,4.745687267764975 --9.352983471074379e-05,-9.694826299010556,4.741968616894324 -9.34098347107438e-05,-9.694826299010556,4.756843220376926 --9.328983471074381e-05,-9.694826299010556,4.749405918635624 -9.316983471074379e-05,-9.68378854116621,4.756843220376926 --9.30498347107438e-05,-9.635958257174044,4.741968616894324 -9.292983471074381e-05,-9.577090215337536,4.756843220376926 --9.280983471074381e-05,-9.687467793780991,4.749405918635624 -9.26898347107438e-05,-9.691147046395772,4.745687267764975 --9.25698347107438e-05,-9.687467793780991,4.741968616894324 -9.244983471074381e-05,-9.694826299010556,4.745687267764975 --9.232983471074379e-05,-9.687467793780991,4.738249966023675 -9.22098347107438e-05,-9.691147046395772,4.749405918635624 --9.208983471074381e-05,-9.694826299010556,4.741968616894324 -9.196983471074382e-05,-9.694826299010556,4.745687267764975 --9.18498347107438e-05,-9.698505551625336,4.741968616894324 -9.17298347107438e-05,-9.694826299010556,4.749405918635624 --9.160983471074381e-05,-9.698505551625336,4.749405918635624 -9.148983471074379e-05,-9.694826299010556,4.741968616894324 --9.13698347107438e-05,-9.691147046395772,4.745687267764975 -9.124983471074381e-05,-9.687467793780991,4.738249966023675 --9.112983471074379e-05,-9.691147046395772,4.741968616894324 -9.10098347107438e-05,-9.694826299010556,4.741968616894324 --9.088983471074381e-05,-9.687467793780991,4.741968616894324 -9.076983471074381e-05,-9.694826299010556,4.738249966023675 --9.064983471074379e-05,-9.691147046395772,4.749405918635624 -9.05298347107438e-05,-9.691147046395772,4.745687267764975 --9.040983471074381e-05,-9.687467793780991,4.741968616894324 -9.028983471074379e-05,-9.691147046395772,4.738249966023675 --9.01698347107438e-05,-9.702184804240117,4.734531315153024 -9.004983471074381e-05,-9.694826299010556,4.753124569506275 --8.992983471074382e-05,-9.694826299010556,4.745687267764975 -8.98098347107438e-05,-9.698505551625336,4.749405918635624 --8.96898347107438e-05,-9.694826299010556,4.745687267764975 -8.956983471074381e-05,-9.698505551625336,4.738249966023675 --8.944983471074379e-05,-9.702184804240117,4.741968616894324 -8.93298347107438e-05,-9.705864056854901,4.745687267764975 --8.920983471074381e-05,-9.698505551625336,4.745687267764975 -8.908983471074382e-05,-9.698505551625336,4.745687267764975 --8.89698347107438e-05,-9.698505551625336,4.749405918635624 -8.884983471074381e-05,-9.694826299010556,4.741968616894324 --8.872983471074381e-05,-9.702184804240117,4.741968616894324 -8.860983471074379e-05,-9.698505551625336,4.745687267764975 --8.84898347107438e-05,-9.694826299010556,4.741968616894324 -8.836983471074381e-05,-9.694826299010556,4.745687267764975 --8.824983471074379e-05,-9.694826299010556,4.741968616894324 -8.81298347107438e-05,-9.694826299010556,4.745687267764975 --8.800983471074381e-05,-9.702184804240117,4.734531315153024 -8.788983471074381e-05,-9.698505551625336,4.738249966023675 --8.77698347107438e-05,-9.698505551625336,4.741968616894324 -8.76498347107438e-05,-9.635958257174044,4.734531315153024 --8.752983471074381e-05,-9.68378854116621,4.745687267764975 -8.740983471074379e-05,-9.687467793780991,4.734531315153024 --8.72898347107438e-05,-9.691147046395772,4.745687267764975 -8.716983471074381e-05,-9.691147046395772,4.741968616894324 --8.704983471074382e-05,-9.687467793780991,4.734531315153024 -8.69298347107438e-05,-9.691147046395772,4.741968616894324 --8.68098347107438e-05,-9.691147046395772,4.741968616894324 -8.668983471074381e-05,-9.694826299010556,4.745687267764975 --8.656983471074379e-05,-9.691147046395772,4.741968616894324 -8.64498347107438e-05,-9.694826299010556,4.745687267764975 --8.632983471074381e-05,-9.691147046395772,4.741968616894324 -8.620983471074379e-05,-9.691147046395772,4.741968616894324 --8.60898347107438e-05,-9.694826299010556,4.741968616894324 -8.596983471074381e-05,-9.691147046395772,4.741968616894324 --8.584983471074381e-05,-9.691147046395772,4.745687267764975 -8.572983471074379e-05,-9.691147046395772,4.738249966023675 --8.56098347107438e-05,-9.694826299010556,4.745687267764975 -8.548983471074381e-05,-9.694826299010556,4.741968616894324 --8.536983471074379e-05,-9.687467793780991,4.738249966023675 -8.52498347107438e-05,-9.691147046395772,4.738249966023675 --8.512983471074381e-05,-9.687467793780991,4.741968616894324 -8.500983471074381e-05,-9.691147046395772,4.741968616894324 --8.48898347107438e-05,-9.68378854116621,4.745687267764975 -8.47698347107438e-05,-9.68378854116621,4.745687267764975 --8.464983471074381e-05,-9.68378854116621,4.738249966023675 -8.452983471074379e-05,-9.68378854116621,4.745687267764975 --8.44098347107438e-05,-9.687467793780991,4.741968616894324 -8.428983471074381e-05,-9.691147046395772,4.741968616894324 --8.416983471074382e-05,-9.691147046395772,4.741968616894324 -8.40498347107438e-05,-9.691147046395772,4.741968616894324 --8.39298347107438e-05,-9.68378854116621,4.738249966023675 -8.380983471074381e-05,-9.68378854116621,4.749405918635624 --8.368983471074379e-05,-9.68378854116621,4.738249966023675 -8.35698347107438e-05,-9.68378854116621,4.745687267764975 --8.344983471074381e-05,-9.68378854116621,4.745687267764975 -8.332983471074379e-05,-9.6653922780923,4.741968616894324 --8.32098347107438e-05,-9.529259931345374,4.745687267764975 -8.308983471074381e-05,-9.680109288551426,4.738249966023675 --8.296983471074381e-05,-9.68378854116621,4.741968616894324 -8.284983471074379e-05,-9.687467793780991,4.745687267764975 --8.27298347107438e-05,-9.691147046395772,4.745687267764975 -8.260983471074381e-05,-9.694826299010556,4.745687267764975 --8.248983471074379e-05,-9.691147046395772,4.741968616894324 -8.23698347107438e-05,-9.694826299010556,4.745687267764975 --8.224983471074381e-05,-9.694826299010556,4.741968616894324 -8.212983471074382e-05,-9.691147046395772,4.741968616894324 --8.20098347107438e-05,-9.694826299010556,4.738249966023675 -8.18898347107438e-05,-9.687467793780991,4.749405918635624 --8.176983471074381e-05,-9.687467793780991,4.749405918635624 -8.164983471074379e-05,-9.691147046395772,4.749405918635624 --8.15298347107438e-05,-9.694826299010556,4.749405918635624 -8.140983471074381e-05,-9.687467793780991,4.745687267764975 --8.128983471074379e-05,-9.694826299010556,4.745687267764975 -8.11698347107438e-05,-9.694826299010556,4.749405918635624 --8.104983471074381e-05,-9.694826299010556,4.749405918635624 -8.092983471074381e-05,-9.694826299010556,4.745687267764975 --8.080983471074379e-05,-9.694826299010556,4.749405918635624 -8.06898347107438e-05,-9.702184804240117,4.745687267764975 --8.056983471074381e-05,-9.698505551625336,4.741968616894324 -8.044983471074379e-05,-9.698505551625336,4.741968616894324 --8.03298347107438e-05,-9.698505551625336,4.745687267764975 -8.020983471074381e-05,-9.702184804240117,4.749405918635624 --8.008983471074381e-05,-9.698505551625336,4.745687267764975 -7.99698347107438e-05,-9.694826299010556,4.741968616894324 --7.98498347107438e-05,-9.694826299010556,4.738249966023675 -7.972983471074381e-05,-9.702184804240117,4.741968616894324 --7.960983471074379e-05,-9.698505551625336,4.738249966023675 -7.94898347107438e-05,-9.698505551625336,4.738249966023675 --7.936983471074381e-05,-9.698505551625336,4.741968616894324 -7.924983471074382e-05,-9.691147046395772,4.738249966023675 --7.91298347107438e-05,-9.698505551625336,4.749405918635624 -7.90098347107438e-05,-9.705864056854901,4.738249966023675 --7.888983471074381e-05,-9.698505551625336,4.738249966023675 -7.876983471074379e-05,-9.694826299010556,4.741968616894324 --7.86498347107438e-05,-9.698505551625336,4.745687267764975 -7.852983471074381e-05,-9.698505551625336,4.749405918635624 --7.840983471074379e-05,-9.698505551625336,4.745687267764975 -7.82898347107438e-05,-9.694826299010556,4.749405918635624 --7.816983471074381e-05,-9.694826299010556,4.745687267764975 -7.804983471074381e-05,-9.698505551625336,4.749405918635624 --7.792983471074379e-05,-9.635958257174044,4.741968616894324 -7.78098347107438e-05,-9.6653922780923,4.756843220376926 --7.768983471074381e-05,-9.687467793780991,4.741968616894324 -7.756983471074379e-05,-9.687467793780991,4.745687267764975 --7.74498347107438e-05,-9.687467793780991,4.745687267764975 -7.732983471074381e-05,-9.68378854116621,4.749405918635624 --7.720983471074381e-05,-9.687467793780991,4.749405918635624 -7.70898347107438e-05,-9.691147046395772,4.745687267764975 --7.69698347107438e-05,-9.68378854116621,4.753124569506275 -7.684983471074381e-05,-9.687467793780991,4.749405918635624 --7.672983471074379e-05,-9.691147046395772,4.745687267764975 -7.66098347107438e-05,-9.698505551625336,4.738249966023675 --7.648983471074381e-05,-9.691147046395772,4.741968616894324 -7.636983471074379e-05,-9.694826299010556,4.741968616894324 --7.62498347107438e-05,-9.691147046395772,4.738249966023675 -7.61298347107438e-05,-9.691147046395772,4.745687267764975 --7.600983471074381e-05,-9.691147046395772,4.741968616894324 -7.588983471074379e-05,-9.691147046395772,4.749405918635624 --7.57698347107438e-05,-9.694826299010556,4.745687267764975 -7.564983471074381e-05,-9.691147046395772,4.745687267764975 --7.552983471074379e-05,-9.691147046395772,4.745687267764975 -7.54098347107438e-05,-9.68378854116621,4.749405918635624 --7.528983471074381e-05,-9.691147046395772,4.753124569506275 -7.516983471074381e-05,-9.691147046395772,4.745687267764975 --7.504983471074379e-05,-9.687467793780991,4.738249966023675 -7.49298347107438e-05,-9.687467793780991,4.738249966023675 --7.480983471074381e-05,-9.68378854116621,4.749405918635624 -7.468983471074379e-05,-9.68378854116621,4.741968616894324 --7.45698347107438e-05,-9.691147046395772,4.745687267764975 -7.444983471074381e-05,-9.68378854116621,4.745687267764975 --7.432983471074382e-05,-9.68378854116621,4.745687267764975 -7.42098347107438e-05,-9.687467793780991,4.749405918635624 --7.40898347107438e-05,-9.68378854116621,4.749405918635624 -7.396983471074381e-05,-9.68378854116621,4.745687267764975 --7.384983471074379e-05,-9.691147046395772,4.741968616894324 -7.37298347107438e-05,-9.687467793780991,4.738249966023675 --7.360983471074381e-05,-9.680109288551426,4.738249966023675 -7.348983471074379e-05,-9.536618436574935,4.745687267764975 --7.33698347107438e-05,-9.676430035936646,4.745687267764975 -7.324983471074381e-05,-9.691147046395772,4.745687267764975 --7.312983471074381e-05,-9.694826299010556,4.741968616894324 -7.300983471074379e-05,-9.691147046395772,4.745687267764975 --7.28898347107438e-05,-9.687467793780991,4.745687267764975 -7.276983471074381e-05,-9.691147046395772,4.749405918635624 --7.264983471074379e-05,-9.694826299010556,4.753124569506275 -7.25298347107438e-05,-9.687467793780991,4.753124569506275 --7.240983471074381e-05,-9.691147046395772,4.749405918635624 -7.228983471074381e-05,-9.691147046395772,4.749405918635624 --7.21698347107438e-05,-9.698505551625336,4.741968616894324 -7.20498347107438e-05,-9.687467793780991,4.753124569506275 --7.192983471074381e-05,-9.691147046395772,4.753124569506275 -7.180983471074379e-05,-9.691147046395772,4.749405918635624 --7.16898347107438e-05,-9.694826299010556,4.741968616894324 -7.156983471074381e-05,-9.687467793780991,4.741968616894324 --7.144983471074379e-05,-9.691147046395772,4.749405918635624 -7.13298347107438e-05,-9.698505551625336,4.749405918635624 --7.12098347107438e-05,-9.694826299010556,4.741968616894324 -7.108983471074381e-05,-9.694826299010556,4.745687267764975 --7.096983471074379e-05,-9.694826299010556,4.741968616894324 -7.08498347107438e-05,-9.694826299010556,4.741968616894324 --7.072983471074381e-05,-9.694826299010556,4.745687267764975 -7.060983471074379e-05,-9.694826299010556,4.741968616894324 --7.04898347107438e-05,-9.687467793780991,4.753124569506275 -7.036983471074381e-05,-9.691147046395772,4.753124569506275 --7.024983471074381e-05,-9.694826299010556,4.756843220376926 -7.012983471074379e-05,-9.702184804240117,4.745687267764975 --7.00098347107438e-05,-9.698505551625336,4.741968616894324 -6.988983471074381e-05,-9.702184804240117,4.749405918635624 --6.976983471074379e-05,-9.698505551625336,4.741968616894324 -6.96498347107438e-05,-9.705864056854901,4.745687267764975 --6.952983471074381e-05,-9.705864056854901,4.741968616894324 -6.940983471074382e-05,-9.698505551625336,4.745687267764975 --6.92898347107438e-05,-9.698505551625336,4.741968616894324 -6.91698347107438e-05,-9.698505551625336,4.738249966023675 --6.904983471074381e-05,-9.694826299010556,4.730812664282375 -6.892983471074379e-05,-9.702184804240117,4.745687267764975 --6.88098347107438e-05,-9.691147046395772,4.745687267764975 -6.868983471074381e-05,-9.698505551625336,4.745687267764975 --6.856983471074379e-05,-9.691147046395772,4.741968616894324 -6.84498347107438e-05,-9.698505551625336,4.734531315153024 --6.832983471074381e-05,-9.698505551625336,4.738249966023675 -6.820983471074381e-05,-9.628599751944483,4.745687267764975 --6.808983471074379e-05,-9.672750783321865,4.730812664282375 -6.79698347107438e-05,-9.687467793780991,4.738249966023675 --6.784983471074381e-05,-9.687467793780991,4.741968616894324 -6.772983471074379e-05,-9.691147046395772,4.734531315153024 --6.76098347107438e-05,-9.691147046395772,4.730812664282375 -6.748983471074381e-05,-9.687467793780991,4.730812664282375 --6.736983471074381e-05,-9.68378854116621,4.738249966023675 -6.72498347107438e-05,-9.687467793780991,4.734531315153024 --6.71298347107438e-05,-9.691147046395772,4.738249966023675 -6.700983471074381e-05,-9.687467793780991,4.734531315153024 --6.688983471074379e-05,-9.691147046395772,4.745687267764975 -6.67698347107438e-05,-9.687467793780991,4.745687267764975 --6.664983471074381e-05,-9.698505551625336,4.738249966023675 -6.652983471074382e-05,-9.691147046395772,4.749405918635624 --6.64098347107438e-05,-9.691147046395772,4.749405918635624 -6.62898347107438e-05,-9.694826299010556,4.753124569506275 --6.616983471074381e-05,-9.687467793780991,4.745687267764975 -6.604983471074379e-05,-9.694826299010556,4.741968616894324 --6.59298347107438e-05,-9.691147046395772,4.745687267764975 -6.580983471074381e-05,-9.694826299010556,4.741968616894324 --6.568983471074379e-05,-9.691147046395772,4.745687267764975 -6.55698347107438e-05,-9.68378854116621,4.745687267764975 --6.544983471074381e-05,-9.691147046395772,4.741968616894324 -6.532983471074381e-05,-9.687467793780991,4.745687267764975 --6.520983471074379e-05,-9.68378854116621,4.745687267764975 -6.50898347107438e-05,-9.687467793780991,4.741968616894324 --6.496983471074381e-05,-9.687467793780991,4.741968616894324 -6.484983471074379e-05,-9.691147046395772,4.749405918635624 --6.47298347107438e-05,-9.691147046395772,4.741968616894324 -6.460983471074381e-05,-9.691147046395772,4.741968616894324 --6.448983471074381e-05,-9.687467793780991,4.738249966023675 -6.43698347107438e-05,-9.68378854116621,4.738249966023675 --6.42498347107438e-05,-9.680109288551426,4.738249966023675 -6.412983471074381e-05,-9.687467793780991,4.734531315153024 --6.400983471074379e-05,-9.687467793780991,4.745687267764975 -6.38898347107438e-05,-9.691147046395772,4.741968616894324 --6.376983471074381e-05,-9.536618436574935,4.738249966023675 -6.364983471074379e-05,-9.676430035936646,4.745687267764975 --6.35298347107438e-05,-9.687467793780991,4.745687267764975 -6.34098347107438e-05,-9.698505551625336,4.745687267764975 --6.328983471074381e-05,-9.702184804240117,4.745687267764975 -6.316983471074379e-05,-9.698505551625336,4.749405918635624 --6.30498347107438e-05,-9.694826299010556,4.749405918635624 -6.292983471074381e-05,-9.691147046395772,4.753124569506275 --6.280983471074379e-05,-9.694826299010556,4.745687267764975 -6.26898347107438e-05,-9.698505551625336,4.745687267764975 --6.256983471074381e-05,-9.694826299010556,4.745687267764975 -6.244983471074381e-05,-9.698505551625336,4.741968616894324 --6.232983471074379e-05,-9.691147046395772,4.745687267764975 -6.22098347107438e-05,-9.698505551625336,4.745687267764975 --6.208983471074381e-05,-9.687467793780991,4.749405918635624 -6.196983471074379e-05,-9.691147046395772,4.745687267764975 --6.18498347107438e-05,-9.691147046395772,4.745687267764975 -6.172983471074381e-05,-9.702184804240117,4.741968616894324 --6.160983471074382e-05,-9.694826299010556,4.741968616894324 -6.14898347107438e-05,-9.698505551625336,4.741968616894324 --6.13698347107438e-05,-9.698505551625336,4.745687267764975 -6.124983471074381e-05,-9.694826299010556,4.753124569506275 --6.112983471074379e-05,-9.691147046395772,4.745687267764975 -6.10098347107438e-05,-9.694826299010556,4.745687267764975 --6.088983471074381e-05,-9.694826299010556,4.745687267764975 -6.076983471074379e-05,-9.691147046395772,4.749405918635624 --6.06498347107438e-05,-9.694826299010556,4.753124569506275 -6.052983471074381e-05,-9.698505551625336,4.749405918635624 --6.040983471074381e-05,-9.687467793780991,4.753124569506275 -6.028983471074379e-05,-9.687467793780991,4.741968616894324 --6.01698347107438e-05,-9.694826299010556,4.738249966023675 -6.004983471074381e-05,-9.694826299010556,4.741968616894324 --5.992983471074379e-05,-9.694826299010556,4.745687267764975 -5.98098347107438e-05,-9.694826299010556,4.745687267764975 --5.968983471074381e-05,-9.698505551625336,4.745687267764975 -5.956983471074381e-05,-9.691147046395772,4.745687267764975 --5.94498347107438e-05,-9.702184804240117,4.741968616894324 -5.93298347107438e-05,-9.691147046395772,4.745687267764975 --5.920983471074381e-05,-9.698505551625336,4.738249966023675 -5.908983471074379e-05,-9.694826299010556,4.745687267764975 --5.89698347107438e-05,-9.694826299010556,4.738249966023675 -5.884983471074381e-05,-9.691147046395772,4.738249966023675 --5.872983471074379e-05,-9.691147046395772,4.734531315153024 -5.86098347107438e-05,-9.694826299010556,4.730812664282375 --5.84898347107438e-05,-9.628599751944483,4.738249966023675 -5.836983471074381e-05,-9.672750783321865,4.734531315153024 --5.824983471074379e-05,-9.68378854116621,4.741968616894324 -5.81298347107438e-05,-9.687467793780991,4.734531315153024 --5.800983471074381e-05,-9.691147046395772,4.745687267764975 -5.788983471074379e-05,-9.694826299010556,4.738249966023675 --5.77698347107438e-05,-9.691147046395772,4.745687267764975 -5.764983471074381e-05,-9.691147046395772,4.745687267764975 --5.752983471074381e-05,-9.687467793780991,4.745687267764975 -5.740983471074379e-05,-9.687467793780991,4.753124569506275 --5.72898347107438e-05,-9.687467793780991,4.753124569506275 -5.716983471074381e-05,-9.687467793780991,4.753124569506275 --5.704983471074379e-05,-9.687467793780991,4.741968616894324 -5.69298347107438e-05,-9.68378854116621,4.756843220376926 --5.680983471074381e-05,-9.680109288551426,4.753124569506275 -5.668983471074381e-05,-9.687467793780991,4.753124569506275 --5.65698347107438e-05,-9.68378854116621,4.741968616894324 -5.64498347107438e-05,-9.687467793780991,4.745687267764975 --5.632983471074381e-05,-9.691147046395772,4.745687267764975 -5.620983471074379e-05,-9.68378854116621,4.741968616894324 --5.60898347107438e-05,-9.687467793780991,4.745687267764975 -5.596983471074381e-05,-9.691147046395772,4.738249966023675 --5.584983471074379e-05,-9.687467793780991,4.741968616894324 -5.57298347107438e-05,-9.68378854116621,4.741968616894324 --5.56098347107438e-05,-9.68378854116621,4.745687267764975 -5.548983471074381e-05,-9.687467793780991,4.738249966023675 --5.536983471074379e-05,-9.68378854116621,4.738249966023675 -5.52498347107438e-05,-9.687467793780991,4.745687267764975 --5.512983471074381e-05,-9.68378854116621,4.745687267764975 -5.500983471074379e-05,-9.687467793780991,4.741968616894324 --5.48898347107438e-05,-9.68378854116621,4.734531315153024 -5.476983471074381e-05,-9.676430035936646,4.738249966023675 --5.464983471074381e-05,-9.680109288551426,4.734531315153024 -5.452983471074379e-05,-9.676430035936646,4.734531315153024 --5.44098347107438e-05,-9.680109288551426,4.734531315153024 -5.428983471074381e-05,-9.680109288551426,4.738249966023675 --5.416983471074379e-05,-9.676430035936646,4.738249966023675 -5.40498347107438e-05,-9.540297689189719,4.738249966023675 --5.392983471074381e-05,-9.6653922780923,4.734531315153024 -5.380983471074379e-05,-9.687467793780991,4.734531315153024 --5.36898347107438e-05,-9.68378854116621,4.734531315153024 -5.35698347107438e-05,-9.687467793780991,4.738249966023675 --5.344983471074381e-05,-9.691147046395772,4.734531315153024 -5.332983471074379e-05,-9.694826299010556,4.741968616894324 --5.32098347107438e-05,-9.698505551625336,4.741968616894324 -5.308983471074381e-05,-9.694826299010556,4.741968616894324 --5.296983471074379e-05,-9.691147046395772,4.741968616894324 -5.28498347107438e-05,-9.694826299010556,4.741968616894324 --5.272983471074381e-05,-9.691147046395772,4.738249966023675 -5.260983471074381e-05,-9.691147046395772,4.741968616894324 --5.248983471074379e-05,-9.687467793780991,4.749405918635624 -5.23698347107438e-05,-9.691147046395772,4.741968616894324 --5.224983471074381e-05,-9.694826299010556,4.749405918635624 -5.212983471074379e-05,-9.691147046395772,4.738249966023675 --5.20098347107438e-05,-9.68378854116621,4.749405918635624 -5.188983471074381e-05,-9.694826299010556,4.749405918635624 --5.176983471074381e-05,-9.691147046395772,4.753124569506275 -5.16498347107438e-05,-9.687467793780991,4.753124569506275 --5.15298347107438e-05,-9.698505551625336,4.753124569506275 -5.140983471074381e-05,-9.694826299010556,4.749405918635624 --5.128983471074379e-05,-9.698505551625336,4.749405918635624 -5.11698347107438e-05,-9.694826299010556,4.753124569506275 --5.104983471074381e-05,-9.691147046395772,4.745687267764975 -5.092983471074379e-05,-9.698505551625336,4.756843220376926 --5.08098347107438e-05,-9.694826299010556,4.753124569506275 -5.06898347107438e-05,-9.694826299010556,4.745687267764975 --5.056983471074381e-05,-9.698505551625336,4.741968616894324 -5.044983471074379e-05,-9.694826299010556,4.741968616894324 --5.03298347107438e-05,-9.694826299010556,4.738249966023675 -5.020983471074381e-05,-9.702184804240117,4.741968616894324 --5.008983471074379e-05,-9.698505551625336,4.738249966023675 -4.99698347107438e-05,-9.702184804240117,4.749405918635624 --4.984983471074381e-05,-9.702184804240117,4.741968616894324 -4.972983471074381e-05,-9.694826299010556,4.738249966023675 --4.960983471074379e-05,-9.702184804240117,4.741968616894324 -4.94898347107438e-05,-9.698505551625336,4.745687267764975 --4.936983471074381e-05,-9.698505551625336,4.745687267764975 -4.924983471074379e-05,-9.694826299010556,4.741968616894324 --4.91298347107438e-05,-9.694826299010556,4.741968616894324 -4.900983471074381e-05,-9.698505551625336,4.741968616894324 --4.888983471074379e-05,-9.694826299010556,4.734531315153024 -4.87698347107438e-05,-9.669071530707081,4.708500759058474 --4.86498347107438e-05,-9.639637509788828,4.775436474730176 -4.852983471074381e-05,-9.68378854116621,4.753124569506275 --4.840983471074379e-05,-9.687467793780991,4.749405918635624 -4.82898347107438e-05,-9.680109288551426,4.749405918635624 --4.816983471074381e-05,-9.68378854116621,4.745687267764975 -4.804983471074379e-05,-9.680109288551426,4.749405918635624 --4.79298347107438e-05,-9.680109288551426,4.749405918635624 -4.780983471074381e-05,-9.68378854116621,4.749405918635624 --4.768983471074381e-05,-9.687467793780991,4.745687267764975 -4.756983471074379e-05,-9.687467793780991,4.741968616894324 --4.74498347107438e-05,-9.687467793780991,4.741968616894324 -4.732983471074381e-05,-9.691147046395772,4.749405918635624 --4.720983471074379e-05,-9.687467793780991,4.738249966023675 -4.70898347107438e-05,-9.687467793780991,4.745687267764975 --4.696983471074381e-05,-9.68378854116621,4.741968616894324 -4.684983471074381e-05,-9.687467793780991,4.741968616894324 --4.67298347107438e-05,-9.694826299010556,4.749405918635624 -4.66098347107438e-05,-9.687467793780991,4.745687267764975 --4.648983471074381e-05,-9.691147046395772,4.745687267764975 -4.636983471074379e-05,-9.680109288551426,4.745687267764975 --4.62498347107438e-05,-9.680109288551426,4.745687267764975 -4.612983471074381e-05,-9.68378854116621,4.753124569506275 --4.600983471074379e-05,-9.680109288551426,4.753124569506275 -4.58898347107438e-05,-9.687467793780991,4.749405918635624 --4.57698347107438e-05,-9.68378854116621,4.745687267764975 -4.564983471074381e-05,-9.680109288551426,4.741968616894324 --4.552983471074379e-05,-9.68378854116621,4.745687267764975 -4.54098347107438e-05,-9.68378854116621,4.741968616894324 --4.528983471074381e-05,-9.68378854116621,4.745687267764975 -4.516983471074379e-05,-9.676430035936646,4.749405918635624 --4.50498347107438e-05,-9.680109288551426,4.741968616894324 -4.492983471074381e-05,-9.680109288551426,4.749405918635624 --4.480983471074381e-05,-9.687467793780991,4.745687267764975 -4.468983471074379e-05,-9.691147046395772,4.749405918635624 --4.45698347107438e-05,-9.687467793780991,4.745687267764975 -4.444983471074381e-05,-9.687467793780991,4.749405918635624 --4.432983471074379e-05,-9.569731710107972,4.741968616894324 -4.42098347107438e-05,-9.643316762403609,4.745687267764975 --4.408983471074381e-05,-9.68378854116621,4.741968616894324 -4.396983471074381e-05,-9.694826299010556,4.745687267764975 --4.38498347107438e-05,-9.694826299010556,4.745687267764975 -4.37298347107438e-05,-9.698505551625336,4.741968616894324 --4.360983471074381e-05,-9.698505551625336,4.745687267764975 -4.348983471074379e-05,-9.694826299010556,4.741968616894324 --4.33698347107438e-05,-9.694826299010556,4.745687267764975 -4.324983471074381e-05,-9.687467793780991,4.741968616894324 --4.312983471074379e-05,-9.698505551625336,4.749405918635624 -4.30098347107438e-05,-9.691147046395772,4.738249966023675 --4.28898347107438e-05,-9.694826299010556,4.745687267764975 -4.276983471074381e-05,-9.698505551625336,4.749405918635624 --4.264983471074379e-05,-9.694826299010556,4.745687267764975 -4.25298347107438e-05,-9.694826299010556,4.749405918635624 --4.240983471074381e-05,-9.691147046395772,4.738249966023675 -4.228983471074379e-05,-9.694826299010556,4.745687267764975 --4.21698347107438e-05,-9.694826299010556,4.738249966023675 -4.204983471074381e-05,-9.694826299010556,4.738249966023675 --4.192983471074381e-05,-9.698505551625336,4.741968616894324 -4.180983471074379e-05,-9.694826299010556,4.745687267764975 --4.16898347107438e-05,-9.698505551625336,4.745687267764975 -4.156983471074381e-05,-9.698505551625336,4.741968616894324 --4.144983471074379e-05,-9.698505551625336,4.738249966023675 -4.13298347107438e-05,-9.698505551625336,4.738249966023675 --4.120983471074381e-05,-9.702184804240117,4.738249966023675 -4.108983471074379e-05,-9.694826299010556,4.741968616894324 --4.09698347107438e-05,-9.691147046395772,4.741968616894324 -4.08498347107438e-05,-9.691147046395772,4.741968616894324 --4.072983471074381e-05,-9.694826299010556,4.738249966023675 -4.060983471074379e-05,-9.698505551625336,4.745687267764975 --4.04898347107438e-05,-9.702184804240117,4.741968616894324 -4.036983471074381e-05,-9.698505551625336,4.745687267764975 --4.024983471074379e-05,-9.694826299010556,4.741968616894324 -4.01298347107438e-05,-9.698505551625336,4.745687267764975 --4.000983471074381e-05,-9.698505551625336,4.745687267764975 -3.988983471074381e-05,-9.702184804240117,4.745687267764975 --3.976983471074379e-05,-9.698505551625336,4.741968616894324 -3.96498347107438e-05,-9.698505551625336,4.745687267764975 --3.952983471074381e-05,-9.698505551625336,4.756843220376926 -3.940983471074379e-05,-9.702184804240117,4.745687267764975 --3.92898347107438e-05,-9.694826299010556,4.749405918635624 -3.916983471074381e-05,-9.702184804240117,4.738249966023675 --3.904983471074381e-05,-9.687467793780991,4.745687267764975 -3.89298347107438e-05,-9.624920499329699,4.749405918635624 --3.88098347107438e-05,-9.691147046395772,4.745687267764975 -3.868983471074381e-05,-9.691147046395772,4.745687267764975 --3.856983471074379e-05,-9.687467793780991,4.741968616894324 -3.84498347107438e-05,-9.68378854116621,4.749405918635624 --3.832983471074381e-05,-9.694826299010556,4.738249966023675 -3.820983471074379e-05,-9.687467793780991,4.745687267764975 --3.80898347107438e-05,-9.687467793780991,4.741968616894324 -3.79698347107438e-05,-9.687467793780991,4.749405918635624 --3.784983471074381e-05,-9.68378854116621,4.745687267764975 -3.772983471074379e-05,-9.691147046395772,4.741968616894324 --3.76098347107438e-05,-9.691147046395772,4.738249966023675 -3.748983471074381e-05,-9.691147046395772,4.730812664282375 --3.736983471074379e-05,-9.68378854116621,4.738249966023675 -3.72498347107438e-05,-9.68378854116621,4.738249966023675 --3.712983471074381e-05,-9.68378854116621,4.745687267764975 -3.700983471074381e-05,-9.68378854116621,4.741968616894324 --3.688983471074379e-05,-9.68378854116621,4.741968616894324 -3.67698347107438e-05,-9.68378854116621,4.741968616894324 --3.664983471074381e-05,-9.68378854116621,4.741968616894324 -3.652983471074379e-05,-9.687467793780991,4.738249966023675 --3.64098347107438e-05,-9.687467793780991,4.738249966023675 -3.628983471074381e-05,-9.68378854116621,4.741968616894324 --3.616983471074379e-05,-9.68378854116621,4.745687267764975 -3.60498347107438e-05,-9.68378854116621,4.745687267764975 --3.59298347107438e-05,-9.68378854116621,4.741968616894324 -3.580983471074381e-05,-9.687467793780991,4.749405918635624 --3.568983471074379e-05,-9.687467793780991,4.749405918635624 -3.55698347107438e-05,-9.691147046395772,4.741968616894324 --3.544983471074381e-05,-9.691147046395772,4.749405918635624 -3.532983471074379e-05,-9.694826299010556,4.738249966023675 --3.52098347107438e-05,-9.694826299010556,4.745687267764975 -3.50898347107438e-05,-9.687467793780991,4.741968616894324 --3.496983471074381e-05,-9.687467793780991,4.745687267764975 -3.484983471074379e-05,-9.691147046395772,4.738249966023675 --3.47298347107438e-05,-9.691147046395772,4.745687267764975 -3.460983471074381e-05,-9.643316762403609,4.745687267764975 --3.448983471074379e-05,-9.566052457493191,4.745687267764975 -3.43698347107438e-05,-9.68378854116621,4.749405918635624 --3.424983471074381e-05,-9.687467793780991,4.745687267764975 -3.412983471074381e-05,-9.691147046395772,4.745687267764975 --3.400983471074379e-05,-9.694826299010556,4.745687267764975 -3.38898347107438e-05,-9.694826299010556,4.741968616894324 --3.376983471074381e-05,-9.691147046395772,4.749405918635624 -3.364983471074379e-05,-9.691147046395772,4.745687267764975 --3.35298347107438e-05,-9.691147046395772,4.745687267764975 -3.340983471074381e-05,-9.694826299010556,4.745687267764975 --3.328983471074379e-05,-9.687467793780991,4.745687267764975 -3.31698347107438e-05,-9.687467793780991,4.741968616894324 --3.30498347107438e-05,-9.694826299010556,4.749405918635624 -3.292983471074381e-05,-9.691147046395772,4.749405918635624 --3.280983471074379e-05,-9.698505551625336,4.753124569506275 -3.26898347107438e-05,-9.702184804240117,4.753124569506275 --3.256983471074381e-05,-9.698505551625336,4.749405918635624 -3.244983471074379e-05,-9.698505551625336,4.745687267764975 --3.23298347107438e-05,-9.702184804240117,4.738249966023675 -3.220983471074381e-05,-9.698505551625336,4.745687267764975 --3.208983471074381e-05,-9.698505551625336,4.741968616894324 -3.196983471074379e-05,-9.694826299010556,4.745687267764975 --3.18498347107438e-05,-9.705864056854901,4.741968616894324 -3.172983471074381e-05,-9.709543309469682,4.749405918635624 --3.160983471074379e-05,-9.702184804240117,4.745687267764975 -3.14898347107438e-05,-9.694826299010556,4.745687267764975 --3.136983471074381e-05,-9.698505551625336,4.749405918635624 -3.124983471074379e-05,-9.705864056854901,4.741968616894324 --3.11298347107438e-05,-9.694826299010556,4.756843220376926 -3.10098347107438e-05,-9.705864056854901,4.745687267764975 --3.088983471074381e-05,-9.702184804240117,4.745687267764975 -3.076983471074379e-05,-9.702184804240117,4.741968616894324 --3.06498347107438e-05,-9.698505551625336,4.745687267764975 -3.052983471074381e-05,-9.702184804240117,4.741968616894324 --3.040983471074379e-05,-9.691147046395772,4.741968616894324 -3.02898347107438e-05,-9.702184804240117,4.741968616894324 --3.01698347107438e-05,-9.702184804240117,4.741968616894324 -3.004983471074381e-05,-9.698505551625336,4.741968616894324 --2.992983471074379e-05,-9.694826299010556,4.738249966023675 -2.98098347107438e-05,-9.698505551625336,4.745687267764975 --2.968983471074381e-05,-9.694826299010556,4.741968616894324 -2.956983471074379e-05,-9.698505551625336,4.738249966023675 --2.94498347107438e-05,-9.702184804240117,4.734531315153024 -2.932983471074381e-05,-9.691147046395772,4.734531315153024 --2.920983471074381e-05,-9.628599751944483,4.727094013411724 -2.908983471074379e-05,-9.672750783321865,4.745687267764975 --2.89698347107438e-05,-9.687467793780991,4.738249966023675 -2.884983471074381e-05,-9.687467793780991,4.734531315153024 --2.872983471074379e-05,-9.68378854116621,4.741968616894324 -2.86098347107438e-05,-9.68378854116621,4.745687267764975 --2.848983471074381e-05,-9.68378854116621,4.745687267764975 -2.836983471074379e-05,-9.680109288551426,4.741968616894324 --2.82498347107438e-05,-9.691147046395772,4.745687267764975 -2.81298347107438e-05,-9.68378854116621,4.741968616894324 --2.800983471074381e-05,-9.680109288551426,4.734531315153024 -2.788983471074379e-05,-9.687467793780991,4.741968616894324 --2.77698347107438e-05,-9.680109288551426,4.738249966023675 -2.764983471074381e-05,-9.687467793780991,4.745687267764975 --2.752983471074379e-05,-9.68378854116621,4.741968616894324 -2.74098347107438e-05,-9.676430035936646,4.738249966023675 --2.72898347107438e-05,-9.687467793780991,4.741968616894324 -2.716983471074381e-05,-9.68378854116621,4.738249966023675 --2.704983471074379e-05,-9.68378854116621,4.745687267764975 -2.69298347107438e-05,-9.68378854116621,4.741968616894324 --2.680983471074381e-05,-9.687467793780991,4.753124569506275 -2.668983471074379e-05,-9.687467793780991,4.741968616894324 --2.65698347107438e-05,-9.68378854116621,4.738249966023675 -2.644983471074381e-05,-9.68378854116621,4.745687267764975 --2.632983471074379e-05,-9.687467793780991,4.738249966023675 -2.620983471074379e-05,-9.691147046395772,4.741968616894324 --2.60898347107438e-05,-9.68378854116621,4.745687267764975 -2.596983471074381e-05,-9.687467793780991,4.741968616894324 --2.584983471074379e-05,-9.68378854116621,4.741968616894324 -2.57298347107438e-05,-9.687467793780991,4.741968616894324 --2.560983471074381e-05,-9.687467793780991,4.741968616894324 -2.548983471074379e-05,-9.68378854116621,4.741968616894324 --2.53698347107438e-05,-9.68378854116621,4.745687267764975 -2.52498347107438e-05,-9.68378854116621,4.741968616894324 --2.512983471074381e-05,-9.687467793780991,4.745687267764975 -2.500983471074379e-05,-9.68378854116621,4.738249966023675 --2.48898347107438e-05,-9.672750783321865,4.741968616894324 -2.476983471074381e-05,-9.540297689189719,4.738249966023675 --2.464983471074379e-05,-9.672750783321865,4.745687267764975 -2.45298347107438e-05,-9.68378854116621,4.738249966023675 --2.440983471074381e-05,-9.680109288551426,4.745687267764975 -2.42898347107438e-05,-9.687467793780991,4.741968616894324 --2.416983471074379e-05,-9.687467793780991,4.738249966023675 -2.40498347107438e-05,-9.691147046395772,4.738249966023675 --2.39298347107438e-05,-9.68378854116621,4.741968616894324 -2.38098347107438e-05,-9.68378854116621,4.745687267764975 --2.36898347107438e-05,-9.687467793780991,4.745687267764975 -2.356983471074381e-05,-9.687467793780991,4.741968616894324 --2.34498347107438e-05,-9.698505551625336,4.734531315153024 -2.33298347107438e-05,-9.694826299010556,4.738249966023675 --2.32098347107438e-05,-9.694826299010556,4.738249966023675 -2.30898347107438e-05,-9.694826299010556,4.741968616894324 --2.296983471074381e-05,-9.694826299010556,4.741968616894324 -2.28498347107438e-05,-9.694826299010556,4.734531315153024 --2.272983471074379e-05,-9.691147046395772,4.738249966023675 -2.26098347107438e-05,-9.698505551625336,4.741968616894324 --2.24898347107438e-05,-9.694826299010556,4.745687267764975 -2.23698347107438e-05,-9.698505551625336,4.749405918635624 --2.22498347107438e-05,-9.698505551625336,4.745687267764975 -2.212983471074381e-05,-9.694826299010556,4.745687267764975 --2.20098347107438e-05,-9.702184804240117,4.749405918635624 -2.18898347107438e-05,-9.702184804240117,4.738249966023675 --2.17698347107438e-05,-9.694826299010556,4.741968616894324 -2.16498347107438e-05,-9.691147046395772,4.745687267764975 --2.152983471074381e-05,-9.691147046395772,4.745687267764975 -2.14098347107438e-05,-9.694826299010556,4.753124569506275 --2.128983471074379e-05,-9.694826299010556,4.749405918635624 -2.11698347107438e-05,-9.691147046395772,4.745687267764975 --2.10498347107438e-05,-9.691147046395772,4.749405918635624 -2.09298347107438e-05,-9.698505551625336,4.745687267764975 --2.08098347107438e-05,-9.694826299010556,4.745687267764975 -2.068983471074379e-05,-9.687467793780991,4.749405918635624 --2.05698347107438e-05,-9.694826299010556,4.749405918635624 -2.04498347107438e-05,-9.694826299010556,4.741968616894324 --2.03298347107438e-05,-9.694826299010556,4.745687267764975 -2.02098347107438e-05,-9.687467793780991,4.730812664282375 --2.008983471074381e-05,-9.698505551625336,4.730812664282375 -1.99698347107438e-05,-9.694826299010556,4.738249966023675 --1.984983471074379e-05,-9.694826299010556,4.734531315153024 -1.97298347107438e-05,-9.694826299010556,4.738249966023675 --1.96098347107438e-05,-9.694826299010556,4.734531315153024 -1.948983471074381e-05,-9.643316762403609,4.738249966023675 --1.93698347107438e-05,-9.672750783321865,4.738249966023675 -1.924983471074379e-05,-9.691147046395772,4.738249966023675 --1.91298347107438e-05,-9.687467793780991,4.745687267764975 -1.90098347107438e-05,-9.691147046395772,4.741968616894324 --1.88898347107438e-05,-9.680109288551426,4.745687267764975 -1.87698347107438e-05,-9.691147046395772,4.745687267764975 --1.864983471074381e-05,-9.687467793780991,4.745687267764975 -1.85298347107438e-05,-9.691147046395772,4.738249966023675 --1.84098347107438e-05,-9.687467793780991,4.741968616894324 -1.82898347107438e-05,-9.687467793780991,4.745687267764975 --1.81698347107438e-05,-9.68378854116621,4.749405918635624 -1.804983471074381e-05,-9.680109288551426,4.745687267764975 --1.79298347107438e-05,-9.680109288551426,4.745687267764975 -1.780983471074379e-05,-9.676430035936646,4.745687267764975 --1.76898347107438e-05,-9.680109288551426,4.741968616894324 -1.75698347107438e-05,-9.68378854116621,4.749405918635624 --1.74498347107438e-05,-9.691147046395772,4.741968616894324 -1.73298347107438e-05,-9.687467793780991,4.745687267764975 --1.720983471074381e-05,-9.687467793780991,4.745687267764975 -1.70898347107438e-05,-9.687467793780991,4.741968616894324 --1.69698347107438e-05,-9.68378854116621,4.749405918635624 -1.68498347107438e-05,-9.68378854116621,4.734531315153024 --1.67298347107438e-05,-9.687467793780991,4.741968616894324 -1.660983471074381e-05,-9.691147046395772,4.734531315153024 --1.64898347107438e-05,-9.691147046395772,4.745687267764975 -1.636983471074379e-05,-9.691147046395772,4.745687267764975 --1.62498347107438e-05,-9.68378854116621,4.745687267764975 -1.61298347107438e-05,-9.68378854116621,4.738249966023675 --1.60098347107438e-05,-9.680109288551426,4.734531315153024 -1.58898347107438e-05,-9.68378854116621,4.734531315153024 --1.576983471074381e-05,-9.68378854116621,4.745687267764975 -1.56498347107438e-05,-9.68378854116621,4.734531315153024 --1.55298347107438e-05,-9.676430035936646,4.741968616894324 -1.54098347107438e-05,-9.680109288551426,4.738249966023675 --1.52898347107438e-05,-9.68378854116621,4.738249966023675 -1.516983471074381e-05,-9.676430035936646,4.730812664282375 --1.50498347107438e-05,-9.529259931345374,4.738249966023675 -1.492983471074379e-05,-9.676430035936646,4.741968616894324 --1.48098347107438e-05,-9.68378854116621,4.741968616894324 -1.46898347107438e-05,-9.680109288551426,4.745687267764975 --1.45698347107438e-05,-9.68378854116621,4.741968616894324 -1.44498347107438e-05,-9.68378854116621,4.741968616894324 --1.432983471074379e-05,-9.687467793780991,4.738249966023675 -1.42098347107438e-05,-9.691147046395772,4.745687267764975 --1.40898347107438e-05,-9.691147046395772,4.745687267764975 -1.39698347107438e-05,-9.687467793780991,4.749405918635624 --1.38498347107438e-05,-9.691147046395772,4.741968616894324 -1.372983471074381e-05,-9.691147046395772,4.753124569506275 --1.36098347107438e-05,-9.68378854116621,4.738249966023675 -1.348983471074379e-05,-9.687467793780991,4.741968616894324 --1.33698347107438e-05,-9.694826299010556,4.741968616894324 -1.32498347107438e-05,-9.687467793780991,4.745687267764975 --1.312983471074381e-05,-9.687467793780991,4.753124569506275 -1.30098347107438e-05,-9.687467793780991,4.753124569506275 --1.288983471074379e-05,-9.687467793780991,4.741968616894324 -1.27698347107438e-05,-9.691147046395772,4.745687267764975 --1.26498347107438e-05,-9.687467793780991,4.741968616894324 -1.25298347107438e-05,-9.687467793780991,4.749405918635624 --1.24098347107438e-05,-9.691147046395772,4.749405918635624 -1.228983471074381e-05,-9.691147046395772,4.749405918635624 --1.21698347107438e-05,-9.687467793780991,4.753124569506275 -1.20498347107438e-05,-9.691147046395772,4.738249966023675 --1.19298347107438e-05,-9.687467793780991,4.738249966023675 -1.18098347107438e-05,-9.694826299010556,4.745687267764975 --1.168983471074381e-05,-9.687467793780991,4.749405918635624 -1.15698347107438e-05,-9.698505551625336,4.741968616894324 --1.144983471074379e-05,-9.691147046395772,4.738249966023675 -1.13298347107438e-05,-9.694826299010556,4.738249966023675 --1.12098347107438e-05,-9.694826299010556,4.738249966023675 -1.10898347107438e-05,-9.694826299010556,4.741968616894324 --1.09698347107438e-05,-9.698505551625336,4.734531315153024 -1.084983471074381e-05,-9.691147046395772,4.749405918635624 --1.07298347107438e-05,-9.702184804240117,4.749405918635624 -1.06098347107438e-05,-9.702184804240117,4.745687267764975 --1.04898347107438e-05,-9.698505551625336,4.749405918635624 -1.03698347107438e-05,-9.702184804240117,4.741968616894324 --1.024983471074381e-05,-9.698505551625336,4.749405918635624 -1.01298347107438e-05,-9.698505551625336,4.745687267764975 --1.000983471074379e-05,-9.698505551625336,4.745687267764975 -9.889834710743802e-06,-9.694826299010556,4.741968616894324 --9.769834710743797e-06,-9.632279004559264,4.760561871247575 -9.649834710743804e-06,-9.680109288551426,4.734531315153024 --9.529834710743799e-06,-9.68378854116621,4.745687267764975 -9.409834710743793e-06,-9.687467793780991,4.745687267764975 --9.289834710743801e-06,-9.68378854116621,4.745687267764975 -9.169834710743795e-06,-9.68378854116621,4.745687267764975 --9.049834710743803e-06,-9.687467793780991,4.745687267764975 -8.929834710743798e-06,-9.68378854116621,4.745687267764975 --8.809834710743806e-06,-9.68378854116621,4.745687267764975 -8.6898347107438e-06,-9.691147046395772,4.738249966023675 --8.569834710743794e-06,-9.694826299010556,4.738249966023675 -8.449834710743802e-06,-9.687467793780991,4.738249966023675 --8.329834710743797e-06,-9.687467793780991,4.734531315153024 -8.209834710743805e-06,-9.687467793780991,4.738249966023675 --8.089834710743799e-06,-9.687467793780991,4.741968616894324 -7.969834710743793e-06,-9.687467793780991,4.745687267764975 --7.849834710743801e-06,-9.68378854116621,4.741968616894324 -7.729834710743796e-06,-9.687467793780991,4.749405918635624 --7.609834710743804e-06,-9.687467793780991,4.745687267764975 -7.489834710743798e-06,-9.691147046395772,4.745687267764975 --7.369834710743806e-06,-9.687467793780991,4.741968616894324 -7.2498347107438e-06,-9.68378854116621,4.745687267764975 --7.129834710743795e-06,-9.68378854116621,4.738249966023675 -7.009834710743803e-06,-9.68378854116621,4.741968616894324 --6.889834710743797e-06,-9.68378854116621,4.741968616894324 -6.769834710743805e-06,-9.680109288551426,4.741968616894324 --6.649834710743799e-06,-9.68378854116621,4.741968616894324 -6.529834710743794e-06,-9.687467793780991,4.741968616894324 --6.409834710743802e-06,-9.68378854116621,4.745687267764975 -6.289834710743796e-06,-9.68378854116621,4.738249966023675 --6.169834710743804e-06,-9.68378854116621,4.734531315153024 -6.049834710743798e-06,-9.68378854116621,4.738249966023675 --5.929834710743806e-06,-9.687467793780991,4.745687267764975 -5.809834710743801e-06,-9.68378854116621,4.745687267764975 --5.689834710743795e-06,-9.676430035936646,4.741968616894324 -5.569834710743803e-06,-9.687467793780991,4.738249966023675 --5.449834710743797e-06,-9.687467793780991,4.738249966023675 -5.329834710743805e-06,-9.540297689189719,4.741968616894324 --5.2098347107438e-06,-9.669071530707081,4.730812664282375 -5.089834710743794e-06,-9.687467793780991,4.741968616894324 --4.969834710743802e-06,-9.691147046395772,4.738249966023675 -4.849834710743796e-06,-9.691147046395772,4.738249966023675 --4.729834710743804e-06,-9.694826299010556,4.734531315153024 -4.609834710743798e-06,-9.687467793780991,4.738249966023675 --4.489834710743806e-06,-9.687467793780991,4.734531315153024 -4.369834710743801e-06,-9.691147046395772,4.741968616894324 --4.249834710743795e-06,-9.694826299010556,4.745687267764975 -4.129834710743803e-06,-9.694826299010556,4.741968616894324 --4.009834710743797e-06,-9.694826299010556,4.741968616894324 -3.889834710743805e-06,-9.698505551625336,4.741968616894324 --3.7698347107438e-06,-9.694826299010556,4.741968616894324 -3.649834710743794e-06,-9.694826299010556,4.738249966023675 --3.529834710743802e-06,-9.687467793780991,4.745687267764975 -3.409834710743796e-06,-9.687467793780991,4.741968616894324 --3.289834710743804e-06,-9.691147046395772,4.749405918635624 -3.169834710743799e-06,-9.694826299010556,4.741968616894324 --3.049834710743793e-06,-9.694826299010556,4.741968616894324 -2.929834710743801e-06,-9.691147046395772,4.741968616894324 --2.809834710743795e-06,-9.691147046395772,4.738249966023675 -2.689834710743803e-06,-9.691147046395772,4.738249966023675 --2.569834710743798e-06,-9.694826299010556,4.741968616894324 -2.449834710743806e-06,-9.694826299010556,4.738249966023675 --2.3298347107438e-06,-9.694826299010556,4.734531315153024 -2.209834710743794e-06,-9.687467793780991,4.734531315153024 --2.089834710743802e-06,-9.691147046395772,4.734531315153024 -1.969834710743797e-06,-9.691147046395772,4.741968616894324 --1.849834710743805e-06,-9.694826299010556,4.741968616894324 -1.729834710743799e-06,-9.694826299010556,4.741968616894324 --1.609834710743793e-06,-9.702184804240117,4.741968616894324 -1.489834710743801e-06,-9.698505551625336,4.738249966023675 --1.369834710743796e-06,-9.702184804240117,4.741968616894324 -1.249834710743804e-06,-9.698505551625336,4.741968616894324 --1.129834710743798e-06,-9.713222562084463,0.9006022675127774 -1.009834710743806e-06,-9.713222562084463,-0.08112156233884749 --8.898347107438002e-07,-9.698505551625336,-0.09227751495079772 -7.698347107437946e-07,-9.698505551625336,-0.1071521184333983 --6.498347107438025e-07,-9.521901426115809,-0.1145894201746982 -5.298347107437969e-07,-7.108311710818922,-0.1220267219159985 --4.098347107438048e-07,-5.36434597141233,-0.1294640236572988 -2.898347107437992e-07,-3.793305104900485,-0.1369013253985987 --1.698347107437936e-07,-2.259056764536457,-0.1369013253985987 -4.98347107438015e-08,-0.739525434631557,-0.1889624375877004 -7.016528925620413e-08,1.041232830922853,-0.09227751495079772 1.901652892561962e-07,3.112652053045029,-0.144338627139899 -3.101652892562018e-07,4.952278360435948,-0.1480572780105494 4.301652892561939e-07,7.027376835172906,-0.1369013253985987 -5.501652892561995e-07,8.844927626875135,-0.140619976269249 6.701652892562052e-07,9.827288075021887,-0.140619976269249 -7.901652892561972e-07,9.908231632547086,-0.140619976269249 9.101652892562029e-07,9.933986400850559,-0.1331826745279487 -1.030165289256195e-06,9.948703411309687,-0.1369013253985987 1.150165289256201e-06,9.952382663924469,-0.1331826745279487 -1.270165289256206e-06,9.952382663924469,-0.1294640236572988 1.390165289256198e-06,9.952382663924469,-0.1294640236572988 -1.510165289256204e-06,9.952382663924469,-0.1220267219159985 1.630165289256196e-06,9.948703411309687,-0.1257453727866484 -1.750165289256202e-06,9.937665653465341,-0.1257453727866484 1.870165289256207e-06,9.937665653465341,-0.1294640236572988 -1.990165289256199e-06,9.930307148235777,-0.1220267219159985 2.110165289256205e-06,9.933986400850559,-0.1183080710453486 -2.230165289256197e-06,9.919269390391431,-0.1220267219159985 2.350165289256203e-06,9.919269390391431,-0.1257453727866484 -2.470165289256195e-06,9.91559013777665,-0.1220267219159985 2.5901652892562e-06,9.911910885161868,-0.1220267219159985 -2.710165289256206e-06,9.908231632547086,-0.1220267219159985 2.830165289256198e-06,9.904552379932305,-0.1145894201746982 -2.950165289256204e-06,9.900873127317523,-0.1183080710453486 3.070165289256196e-06,9.900873127317523,-0.1108707693040483 -3.190165289256201e-06,9.889835369473177,-0.1220267219159985 3.310165289256207e-06,9.882476864243614,-0.1257453727866484 -3.430165289256199e-06,9.886156116858395,-0.1220267219159985 3.550165289256205e-06,9.889835369473177,-0.1145894201746982 -3.670165289256197e-06,9.889835369473177,-0.1183080710453486 3.790165289256202e-06,9.889835369473177,-0.1145894201746982 -3.910165289256194e-06,9.882476864243614,-0.1145894201746982 4.0301652892562e-06,9.878797611628832,-0.1257453727866484 -4.150165289256206e-06,9.871439106399269,-0.1108707693040483 4.270165289256198e-06,9.878797611628832,-0.1220267219159985 -4.390165289256203e-06,9.875118359014049,-0.1257453727866484 4.510165289256196e-06,9.856722095940141,-0.1108707693040483 -4.630165289256201e-06,9.860401348554923,-0.1183080710453486 4.750165289256207e-06,9.875118359014049,-0.1145894201746982 -4.870165289256199e-06,9.882476864243614,-0.1183080710453486 4.990165289256204e-06,9.882476864243614,-0.1145894201746982 -5.110165289256197e-06,9.878797611628832,-0.1145894201746982 5.230165289256202e-06,9.886156116858395,-0.103433467562748 -5.350165289256194e-06,9.878797611628832,-0.1145894201746982 5.4701652892562e-06,9.886156116858395,-0.1145894201746982 -5.590165289256205e-06,9.886156116858395,-0.1108707693040483 5.710165289256198e-06,9.878797611628832,-0.1145894201746982 -5.830165289256203e-06,9.878797611628832,-0.1071521184333983 5.950165289256195e-06,9.886156116858395,-0.1108707693040483 -6.070165289256201e-06,9.882476864243614,-0.103433467562748 6.190165289256207e-06,9.878797611628832,-0.1108707693040483 -6.310165289256199e-06,9.878797611628832,-0.1145894201746982 6.430165289256204e-06,9.875118359014049,-0.1145894201746982 -6.550165289256196e-06,9.882476864243614,-0.1108707693040483 6.670165289256202e-06,9.882476864243614,-0.1071521184333983 -6.790165289256194e-06,9.878797611628832,-0.1108707693040483 6.9101652892562e-06,9.882476864243614,-0.1071521184333983 -7.030165289256205e-06,9.882476864243614,-0.1220267219159985 7.150165289256197e-06,9.878797611628832,-0.1183080710453486 -7.270165289256203e-06,9.882476864243614,-0.1145894201746982 7.390165289256195e-06,9.889835369473177,-0.1108707693040483 -7.510165289256201e-06,9.886156116858395,-0.1108707693040483 7.630165289256206e-06,9.882476864243614,-0.1145894201746982 -7.750165289256198e-06,9.886156116858395,-0.1071521184333983 7.870165289256204e-06,9.886156116858395,-0.1145894201746982 -7.990165289256196e-06,9.886156116858395,-0.1145894201746982 8.110165289256202e-06,9.882476864243614,-0.1145894201746982 -8.230165289256207e-06,9.878797611628832,-0.1145894201746982 8.350165289256199e-06,9.882476864243614,-0.1145894201746982 -8.470165289256205e-06,9.878797611628832,-0.1108707693040483 8.590165289256197e-06,9.878797611628832,-0.1108707693040483 -8.710165289256203e-06,9.878797611628832,-0.1145894201746982 8.830165289256195e-06,9.882476864243614,-0.1071521184333983 -8.9501652892562e-06,9.882476864243614,-0.1108707693040483 9.070165289256206e-06,9.886156116858395,-0.103433467562748 -9.190165289256198e-06,9.886156116858395,-0.1183080710453486 9.310165289256204e-06,9.878797611628832,-0.1145894201746982 -9.430165289256196e-06,9.878797611628832,-0.1145894201746982 9.550165289256201e-06,9.878797611628832,-0.1108707693040483 -9.670165289256207e-06,9.882476864243614,-0.1108707693040483 9.790165289256199e-06,9.860401348554923,-0.1592132306224996 -9.910165289256205e-06,9.889835369473177,-0.06996560972689725 1.00301652892562e-05,9.860401348554923,-0.1145894201746982 -1.01501652892562e-05,9.864080601169704,-0.1071521184333983 1.027016528925619e-05,9.853042843325358,-0.1183080710453486 -1.03901652892562e-05,9.860401348554923,-0.1108707693040483 1.051016528925621e-05,9.849363590710578,-0.1183080710453486 -1.06301652892562e-05,9.849363590710578,-0.1108707693040483 1.07501652892562e-05,9.849363590710578,-0.1108707693040483 -1.08701652892562e-05,9.849363590710578,-0.1145894201746982 1.09901652892562e-05,9.849363590710578,-0.1071521184333983 -1.111016528925621e-05,9.849363590710578,-0.1108707693040483 1.12301652892562e-05,9.842005085481013,-0.1071521184333983 -1.13501652892562e-05,9.838325832866232,-0.1145894201746982 1.14701652892562e-05,9.845684338095795,-0.1145894201746982 -1.15901652892562e-05,9.842005085481013,-0.1183080710453486 1.171016528925619e-05,9.838325832866232,-0.1145894201746982 -1.18301652892562e-05,9.838325832866232,-0.1183080710453486 1.195016528925621e-05,9.838325832866232,-0.1145894201746982 -1.20701652892562e-05,9.838325832866232,-0.1183080710453486 1.21901652892562e-05,9.83464658025145,-0.1145894201746982 -1.23101652892562e-05,9.830967327636667,-0.1220267219159985 1.24301652892562e-05,9.827288075021887,-0.1257453727866484 -1.255016528925621e-05,9.83464658025145,-0.1145894201746982 1.26701652892562e-05,9.83464658025145,-0.1145894201746982 -1.27901652892562e-05,9.827288075021887,-0.1145894201746982 1.29101652892562e-05,9.827288075021887,-0.1145894201746982 -1.30301652892562e-05,9.827288075021887,-0.1183080710453486 1.315016528925621e-05,9.823608822407104,-0.1183080710453486 -1.32701652892562e-05,9.823608822407104,-0.1183080710453486 1.339016528925621e-05,9.827288075021887,-0.1108707693040483 -1.35101652892562e-05,9.830967327636667,-0.1071521184333983 1.36301652892562e-05,9.816250317177541,-0.1145894201746982 -1.37501652892562e-05,9.819929569792322,-0.1108707693040483 1.38701652892562e-05,9.816250317177541,-0.1183080710453486 -1.399016528925621e-05,9.816250317177541,-0.1108707693040483 1.41101652892562e-05,9.812571064562759,-0.1071521184333983 -1.42301652892562e-05,9.801533306718413,-0.1108707693040483 1.43501652892562e-05,9.790495548874068,-0.1183080710453486 -1.44701652892562e-05,9.801533306718413,-0.1108707693040483 1.459016528925621e-05,9.801533306718413,-0.1108707693040483 -1.47101652892562e-05,9.805212559333196,-0.1108707693040483 1.483016528925621e-05,9.812571064562759,-0.1108707693040483 -1.49501652892562e-05,9.805212559333196,-0.1145894201746982 1.50701652892562e-05,9.812571064562759,-0.1071521184333983 -1.519016528925619e-05,9.808891811947976,-0.1220267219159985 1.53101652892562e-05,9.812571064562759,-0.1145894201746982 -1.543016528925621e-05,9.805212559333196,-0.1220267219159985 1.55501652892562e-05,9.808891811947976,-0.1108707693040483 -1.56701652892562e-05,9.808891811947976,-0.1145894201746982 1.57901652892562e-05,9.808891811947976,-0.1145894201746982 -1.59101652892562e-05,9.812571064562759,-0.1145894201746982 1.603016528925621e-05,9.805212559333196,-0.1145894201746982 -1.61501652892562e-05,9.805212559333196,-0.1108707693040483 1.62701652892562e-05,9.801533306718413,-0.1145894201746982 -1.63901652892562e-05,9.808891811947976,-0.1071521184333983 1.65101652892562e-05,9.805212559333196,-0.1145894201746982 -1.663016528925619e-05,9.808891811947976,-0.1071521184333983 1.67501652892562e-05,9.801533306718413,-0.1183080710453486 -1.687016528925621e-05,9.805212559333196,-0.1145894201746982 1.69901652892562e-05,9.801533306718413,-0.1145894201746982 -1.71101652892562e-05,9.801533306718413,-0.1108707693040483 1.72301652892562e-05,9.797854054103631,-0.1108707693040483 -1.73501652892562e-05,9.797854054103631,-0.1108707693040483 1.747016528925621e-05,9.786816296259286,-0.103433467562748 -1.75901652892562e-05,9.783137043644505,-0.1145894201746982 1.77101652892562e-05,9.786816296259286,-0.1108707693040483 -1.78301652892562e-05,9.786816296259286,-0.1071521184333983 1.79501652892562e-05,9.790495548874068,-0.103433467562748 -1.807016528925619e-05,9.786816296259286,-0.1108707693040483 1.81901652892562e-05,9.790495548874068,-0.1071521184333983 -1.831016528925621e-05,9.779457791029722,-0.1145894201746982 1.84301652892562e-05,9.783137043644505,-0.1071521184333983 -1.85501652892562e-05,9.783137043644505,-0.1071521184333983 1.86701652892562e-05,9.790495548874068,-0.1071521184333983 -1.87901652892562e-05,9.786816296259286,-0.1108707693040483 1.891016528925621e-05,9.772099285800159,-0.1108707693040483 -1.90301652892562e-05,9.77577853841494,-0.103433467562748 1.91501652892562e-05,9.768420033185377,-0.1071521184333983 -1.92701652892562e-05,9.772099285800159,-0.1108707693040483 1.93901652892562e-05,9.768420033185377,-0.1071521184333983 -1.951016528925621e-05,9.764740780570595,-0.1071521184333983 1.96301652892562e-05,9.753703022726249,-0.1257453727866484 -1.975016528925621e-05,9.772099285800159,-0.08112156233884749 1.98701652892562e-05,9.750023770111468,-0.1071521184333983 -1.99901652892562e-05,9.742665264881904,-0.1071521184333983 2.01101652892562e-05,9.742665264881904,-0.1071521184333983 -2.02301652892562e-05,9.742665264881904,-0.1071521184333983 2.035016528925621e-05,9.735306759652341,-0.1071521184333983 -2.04701652892562e-05,9.731627507037558,-0.09971481669209803 2.05901652892562e-05,9.731627507037558,-0.1108707693040483 -2.07101652892562e-05,9.727948254422776,-0.103433467562748 2.08301652892562e-05,9.724269001807995,-0.09971481669209803 -2.095016528925621e-05,9.720589749193213,-0.1071521184333983 2.10701652892562e-05,9.71691049657843,-0.09971481669209803 -2.119016528925621e-05,9.709551991348867,-0.103433467562748 2.13101652892562e-05,9.71323124396365,-0.103433467562748 -2.14301652892562e-05,9.709551991348867,-0.103433467562748 2.155016528925619e-05,9.709551991348867,-0.09599616582144765 -2.16701652892562e-05,9.705872738734085,-0.103433467562748 2.179016528925621e-05,9.709551991348867,-0.09971481669209803 -2.19101652892562e-05,9.702193486119302,-0.09971481669209803 2.20301652892562e-05,9.709551991348867,-0.103433467562748 -2.21501652892562e-05,9.702193486119302,-0.09227751495079772 2.22701652892562e-05,9.694834980889739,-0.103433467562748 -2.239016528925621e-05,9.691155728274957,-0.09227751495079772 2.25101652892562e-05,9.691155728274957,-0.09599616582144765 -2.26301652892562e-05,9.691155728274957,-0.08855886408014779 2.27501652892562e-05,9.687476475660176,-0.09971481669209803 -2.28701652892562e-05,9.687476475660176,-0.09227751495079772 2.299016528925619e-05,9.680117970430612,-0.09227751495079772 -2.31101652892562e-05,9.680117970430612,-0.09227751495079772 2.323016528925621e-05,9.669080212586266,-0.09227751495079772 -2.33501652892562e-05,9.676438717815831,-0.09227751495079772 2.34701652892562e-05,9.669080212586266,-0.08484021320949742 -2.35901652892562e-05,9.665400959971485,-0.09599616582144765 2.37101652892562e-05,9.661721707356703,-0.08855886408014779 -2.383016528925621e-05,9.661721707356703,-0.09599616582144765 2.39501652892562e-05,9.658042454741921,-0.08855886408014779 -2.40701652892562e-05,9.650683949512358,-0.08855886408014779 2.41901652892562e-05,9.639646191668012,-0.09599616582144765 -2.43101652892562e-05,9.639646191668012,-0.09971481669209803 2.443016528925621e-05,9.647004696897575,-0.103433467562748 -2.45501652892562e-05,9.650683949512358,-0.09971481669209803 2.467016528925621e-05,9.650683949512358,-0.09971481669209803 -2.47901652892562e-05,9.658042454741921,-0.09971481669209803 2.49101652892562e-05,9.845684338095795,3.685871769629697 -2.50301652892562e-05,9.452004308314137,4.727094013411724 2.51501652892562e-05,7.71539707413711,4.730812664282375 -2.527016528925621e-05,5.750676177843608,4.753124569506275 2.53901652892562e-05,3.697653218795341,4.764280522118225 -2.55101652892562e-05,1.644630259747075,4.767999172988874 2.56301652892562e-05,-0.2612225947099178,4.771717823859525 -2.57501652892562e-05,-1.975754313198255,4.775436474730176 2.587016528925621e-05,-3.66453126338312,4.782873776471476 -2.59901652892562e-05,-5.342270455723639,4.779155125600825 2.611016528925621e-05,-7.042085163752848,4.786592427342125 -2.62301652892562e-05,-8.900107734217677,4.779155125600825 2.63501652892562e-05,-9.4225616055167,4.786592427342125 -2.64701652892562e-05,-9.510863668271464,4.786592427342125 2.65901652892562e-05,-9.551335447034065,4.786592427342125 -2.671016528925621e-05,-9.584448720567101,4.786592427342125 2.68301652892562e-05,-9.595486478411447,4.782873776471476 -2.69501652892562e-05,-9.602844983641008,4.779155125600825 2.70701652892562e-05,-9.613882741485353,4.775436474730176 -2.71901652892562e-05,-9.617561994100138,4.782873776471476 2.731016528925621e-05,-9.621241246714918,4.779155125600825 -2.74301652892562e-05,-9.617561994100138,4.782873776471476 2.755016528925621e-05,-9.621241246714918,4.775436474730176 -2.76701652892562e-05,-9.613882741485353,4.775436474730176 2.77901652892562e-05,-9.617561994100138,4.767999172988874 -2.79101652892562e-05,-9.606524236255792,4.771717823859525 2.80301652892562e-05,-9.606524236255792,4.775436474730176 -2.815016528925621e-05,-9.610203488870573,4.775436474730176 2.82701652892562e-05,-9.606524236255792,4.775436474730176 -2.83901652892562e-05,-9.606524236255792,4.775436474730176 2.85101652892562e-05,-9.610203488870573,4.771717823859525 -2.86301652892562e-05,-9.613882741485353,4.764280522118225 2.875016528925621e-05,-9.610203488870573,4.782873776471476 -2.88701652892562e-05,-9.610203488870573,4.775436474730176 2.899016528925621e-05,-9.610203488870573,4.775436474730176 -2.91101652892562e-05,-9.613882741485353,4.775436474730176 2.92301652892562e-05,-9.613882741485353,4.764280522118225 -2.935016528925619e-05,-9.617561994100138,4.767999172988874 2.94701652892562e-05,-9.558693952263626,4.767999172988874 -2.959016528925621e-05,-9.591807225796662,4.771717823859525 2.97101652892562e-05,-9.617561994100138,4.767999172988874 -2.98301652892562e-05,-9.610203488870573,4.767999172988874 2.99501652892562e-05,-9.621241246714918,4.771717823859525 -3.00701652892562e-05,-9.610203488870573,4.767999172988874 3.019016528925621e-05,-9.613882741485353,4.764280522118225 -3.03101652892562e-05,-9.617561994100138,4.764280522118225 3.04301652892562e-05,-9.617561994100138,4.767999172988874 -3.05501652892562e-05,-9.621241246714918,4.771717823859525 3.06701652892562e-05,-9.624920499329699,4.764280522118225 -3.079016528925621e-05,-9.621241246714918,4.764280522118225 3.09101652892562e-05,-9.621241246714918,4.771717823859525 -3.103016528925621e-05,-9.624920499329699,4.775436474730176 3.11501652892562e-05,-9.628599751944483,4.767999172988874 -3.12701652892562e-05,-9.632279004559264,4.771717823859525 3.13901652892562e-05,-9.628599751944483,4.764280522118225 -3.15101652892562e-05,-9.628599751944483,4.767999172988874 3.163016528925621e-05,-9.628599751944483,4.771717823859525 -3.17501652892562e-05,-9.632279004559264,4.771717823859525 3.18701652892562e-05,-9.632279004559264,4.775436474730176 -3.19901652892562e-05,-9.639637509788828,4.767999172988874 3.21101652892562e-05,-9.635958257174044,4.771717823859525 -3.223016528925621e-05,-9.635958257174044,4.771717823859525 3.23501652892562e-05,-9.639637509788828,4.779155125600825 -3.247016528925621e-05,-9.635958257174044,4.779155125600825 3.25901652892562e-05,-9.64699601501839,4.779155125600825 -3.27101652892562e-05,-9.639637509788828,4.779155125600825 3.28301652892562e-05,-9.643316762403609,4.771717823859525 -3.29501652892562e-05,-9.650675267633174,4.771717823859525 3.307016528925621e-05,-9.658033772862735,4.767999172988874 -3.31901652892562e-05,-9.654354520247955,4.771717823859525 3.33101652892562e-05,-9.654354520247955,4.779155125600825 -3.34301652892562e-05,-9.654354520247955,4.779155125600825 3.35501652892562e-05,-9.658033772862735,4.771717823859525 -3.367016528925621e-05,-9.6653922780923,4.775436474730176 3.37901652892562e-05,-9.650675267633174,4.767999172988874 -3.391016528925621e-05,-9.514542920886244,4.779155125600825 3.40301652892562e-05,-9.658033772862735,4.782873776471476 -3.41501652892562e-05,-9.672750783321865,4.775436474730176 3.42701652892562e-05,-9.672750783321865,4.775436474730176 -3.43901652892562e-05,-9.676430035936646,4.775436474730176 3.451016528925621e-05,-9.669071530707081,4.771717823859525 -3.46301652892562e-05,-9.676430035936646,4.767999172988874 3.47501652892562e-05,-9.676430035936646,4.779155125600825 -3.48701652892562e-05,-9.680109288551426,4.771717823859525 3.49901652892562e-05,-9.68378854116621,4.767999172988874 -3.511016528925621e-05,-9.687467793780991,4.767999172988874 3.52301652892562e-05,-9.687467793780991,4.767999172988874 -3.535016528925621e-05,-9.694826299010556,4.775436474730176 3.54701652892562e-05,-9.698505551625336,4.775436474730176 -3.55901652892562e-05,-9.698505551625336,4.779155125600825 3.571016528925621e-05,-9.702184804240117,4.779155125600825 -3.58301652892562e-05,-9.698505551625336,4.775436474730176 3.595016528925621e-05,-9.702184804240117,4.779155125600825 -3.60701652892562e-05,-9.702184804240117,4.771717823859525 3.61901652892562e-05,-9.705864056854901,4.775436474730176 -3.63101652892562e-05,-9.713222562084463,4.779155125600825 3.64301652892562e-05,-9.709543309469682,4.779155125600825 -3.655016528925621e-05,-9.702184804240117,4.779155125600825 3.66701652892562e-05,-9.709543309469682,4.767999172988874 -3.67901652892562e-05,-9.705864056854901,4.771717823859525 3.69101652892562e-05,-9.713222562084463,4.775436474730176 -3.70301652892562e-05,-9.709543309469682,4.775436474730176 3.71501652892562e-05,-9.709543309469682,4.779155125600825 -3.72701652892562e-05,-9.713222562084463,4.779155125600825 3.73901652892562e-05,-9.713222562084463,4.779155125600825 -3.75101652892562e-05,-9.713222562084463,4.782873776471476 3.76301652892562e-05,-9.716901814699247,4.775436474730176 -3.77501652892562e-05,-9.716901814699247,4.779155125600825 3.78701652892562e-05,-9.716901814699247,4.775436474730176 -3.79901652892562e-05,-9.713222562084463,4.779155125600825 3.81101652892562e-05,-9.713222562084463,4.779155125600825 -3.82301652892562e-05,-9.716901814699247,4.775436474730176 3.83501652892562e-05,-9.727939572543592,4.779155125600825 -3.84701652892562e-05,-9.724260319928808,4.775436474730176 3.85901652892562e-05,-9.727939572543592,4.779155125600825 -3.87101652892562e-05,-9.724260319928808,4.782873776471476 3.88301652892562e-05,-9.727939572543592,4.790311078212776 -3.89501652892562e-05,-9.735298077773157,4.786592427342125 3.90701652892562e-05,-9.731618825158373,4.779155125600825 -3.91901652892562e-05,-9.672750783321865,4.786592427342125 3.93101652892562e-05,-9.698505551625336,4.782873776471476 -3.94301652892562e-05,-9.720581067314027,4.786592427342125 3.95501652892562e-05,-9.724260319928808,4.786592427342125 -3.96701652892562e-05,-9.727939572543592,4.790311078212776 3.97901652892562e-05,-9.724260319928808,4.786592427342125 -3.99101652892562e-05,-9.735298077773157,4.790311078212776 4.00301652892562e-05,-9.727939572543592,4.779155125600825 -4.01501652892562e-05,-9.731618825158373,4.782873776471476 4.02701652892562e-05,-9.738977330387938,4.779155125600825 -4.03901652892562e-05,-9.727939572543592,4.786592427342125 4.05101652892562e-05,-9.727939572543592,4.779155125600825 -4.06301652892562e-05,-9.735298077773157,4.779155125600825 4.07501652892562e-05,-9.738977330387938,4.775436474730176 -4.08701652892562e-05,-9.735298077773157,4.779155125600825 4.09901652892562e-05,-9.735298077773157,4.779155125600825 -4.11101652892562e-05,-9.735298077773157,4.771717823859525 4.12301652892562e-05,-9.738977330387938,4.779155125600825 -4.13501652892562e-05,-9.738977330387938,4.775436474730176 4.14701652892562e-05,-9.742656583002718,4.779155125600825 -4.15901652892562e-05,-9.738977330387938,4.775436474730176 4.171016528925621e-05,-9.742656583002718,4.767999172988874 -4.18301652892562e-05,-9.742656583002718,4.779155125600825 4.19501652892562e-05,-9.746335835617502,4.775436474730176 -4.20701652892562e-05,-9.742656583002718,4.779155125600825 4.21901652892562e-05,-9.746335835617502,4.782873776471476 -4.23101652892562e-05,-9.750015088232283,4.782873776471476 4.243016528925621e-05,-9.746335835617502,4.782873776471476 -4.25501652892562e-05,-9.750015088232283,4.790311078212776 4.26701652892562e-05,-9.753694340847064,4.790311078212776 -4.27901652892562e-05,-9.750015088232283,4.794029729083427 4.29101652892562e-05,-9.753694340847064,4.786592427342125 -4.30301652892562e-05,-9.753694340847064,4.786592427342125 4.315016528925621e-05,-9.750015088232283,4.782873776471476 -4.32701652892562e-05,-9.750015088232283,4.771717823859525 4.33901652892562e-05,-9.757373593461848,4.779155125600825 -4.35101652892562e-05,-9.757373593461848,4.775436474730176 4.36301652892562e-05,-9.599165731026227,4.782873776471476 -4.37501652892562e-05,-9.746335835617502,4.786592427342125 4.38701652892562e-05,-9.757373593461848,4.782873776471476 -4.39901652892562e-05,-9.761052846076629,4.786592427342125 4.41101652892562e-05,-9.761052846076629,4.782873776471476 -4.42301652892562e-05,-9.761052846076629,4.786592427342125 4.43501652892562e-05,-9.761052846076629,4.786592427342125 -4.44701652892562e-05,-9.768411351306193,4.782873776471476 4.45901652892562e-05,-9.764732098691409,4.794029729083427 -4.47101652892562e-05,-9.764732098691409,4.794029729083427 4.48301652892562e-05,-9.772090603920974,4.790311078212776 -4.49501652892562e-05,-9.768411351306193,4.779155125600825 4.50701652892562e-05,-9.768411351306193,4.779155125600825 -4.51901652892562e-05,-9.761052846076629,4.782873776471476 4.53101652892562e-05,-9.768411351306193,4.782873776471476 -4.54301652892562e-05,-9.761052846076629,4.779155125600825 4.55501652892562e-05,-9.761052846076629,4.782873776471476 -4.56701652892562e-05,-9.768411351306193,4.786592427342125 4.57901652892562e-05,-9.772090603920974,4.775436474730176 -4.59101652892562e-05,-9.761052846076629,4.786592427342125 4.60301652892562e-05,-9.764732098691409,4.782873776471476 -4.61501652892562e-05,-9.764732098691409,4.794029729083427 4.62701652892562e-05,-9.772090603920974,4.782873776471476 -4.63901652892562e-05,-9.775769856535755,4.779155125600825 4.65101652892562e-05,-9.772090603920974,4.775436474730176 -4.66301652892562e-05,-9.768411351306193,4.779155125600825 4.67501652892562e-05,-9.775769856535755,4.779155125600825 -4.68701652892562e-05,-9.775769856535755,4.782873776471476 4.69901652892562e-05,-9.772090603920974,4.786592427342125 -4.71101652892562e-05,-9.779449109150539,4.786592427342125 4.72301652892562e-05,-9.775769856535755,4.786592427342125 -4.735016528925621e-05,-9.772090603920974,4.775436474730176 4.74701652892562e-05,-9.775769856535755,4.775436474730176 -4.75901652892562e-05,-9.779449109150539,4.775436474730176 4.77101652892562e-05,-9.772090603920974,4.786592427342125 -4.78301652892562e-05,-9.775769856535755,4.782873776471476 4.79501652892562e-05,-9.775769856535755,4.782873776471476 -4.807016528925621e-05,-9.775769856535755,4.779155125600825 4.81901652892562e-05,-9.775769856535755,4.775436474730176 -4.83101652892562e-05,-9.775769856535755,4.782873776471476 4.84301652892562e-05,-9.779449109150539,4.775436474730176 -4.85501652892562e-05,-9.779449109150539,4.782873776471476 4.86701652892562e-05,-9.779449109150539,4.779155125600825 -4.879016528925621e-05,-9.779449109150539,4.779155125600825 4.89101652892562e-05,-9.716901814699247,4.794029729083427 -4.90301652892562e-05,-9.764732098691409,4.764280522118225 4.91501652892562e-05,-9.772090603920974,4.779155125600825 -4.92701652892562e-05,-9.772090603920974,4.779155125600825 4.93901652892562e-05,-9.772090603920974,4.775436474730176 -4.951016528925621e-05,-9.772090603920974,4.782873776471476 4.96301652892562e-05,-9.768411351306193,4.779155125600825 -4.97501652892562e-05,-9.772090603920974,4.775436474730176 4.98701652892562e-05,-9.768411351306193,4.779155125600825 -4.99901652892562e-05,-9.772090603920974,4.779155125600825 5.01101652892562e-05,-9.772090603920974,4.779155125600825 -5.02301652892562e-05,-9.772090603920974,4.775436474730176 5.03501652892562e-05,-9.768411351306193,4.775436474730176 -5.04701652892562e-05,-9.768411351306193,4.779155125600825 5.05901652892562e-05,-9.779449109150539,4.779155125600825 -5.07101652892562e-05,-9.779449109150539,4.779155125600825 5.08301652892562e-05,-9.779449109150539,4.779155125600825 -5.09501652892562e-05,-9.790486866994884,0.9786939357964295 5.10701652892562e-05,-9.790486866994884,-0.0439350536323464 -5.11901652892562e-05,-9.772090603920974,-0.05509100624429664 5.13101652892562e-05,-9.775769856535755,-0.06996560972689725 -5.14301652892562e-05,-9.591807225796662,-0.08112156233884749 5.15501652892562e-05,-7.178217510499776,-0.08112156233884749 -5.16701652892562e-05,-5.434251771093185,-0.09227751495079772 5.17901652892562e-05,-3.870569409810903,-0.08855886408014779 -5.19101652892562e-05,-2.328962564217312,-0.08855886408014779 5.20301652892562e-05,-0.8204689921567576,-0.09599616582144765 -5.21501652892562e-05,0.9308552524793976,-0.09599616582144765 5.22701652892562e-05,3.050104758593737,-0.09599616582144765 -5.23901652892562e-05,4.886051813369876,-0.09227751495079772 5.25101652892562e-05,6.950112530262487,-0.08484021320949742 -5.26301652892562e-05,8.786059585038625,-0.09227751495079772 5.27501652892562e-05,9.738986012267121,-0.09599616582144765 -5.28701652892562e-05,9.816250317177541,-0.09599616582144765 5.299016528925621e-05,9.842005085481013,-0.09599616582144765 -5.31101652892562e-05,9.856722095940141,-0.09227751495079772 5.32301652892562e-05,9.864080601169704,-0.09599616582144765 -5.33501652892562e-05,9.849363590710578,-0.1108707693040483 5.34701652892562e-05,9.838325832866232,-0.08112156233884749 -5.35901652892562e-05,9.856722095940141,-0.09599616582144765 5.371016528925621e-05,9.867759853784486,-0.09227751495079772 -5.38301652892562e-05,9.871439106399269,-0.09227751495079772 5.39501652892562e-05,9.860401348554923,-0.09599616582144765 -5.40701652892562e-05,9.860401348554923,-0.09227751495079772 5.41901652892562e-05,9.856722095940141,-0.09971481669209803 -5.43101652892562e-05,9.849363590710578,-0.09227751495079772 5.443016528925621e-05,9.842005085481013,-0.09599616582144765 -5.45501652892562e-05,9.849363590710578,-0.08484021320949742 5.46701652892562e-05,9.838325832866232,-0.08484021320949742 -5.47901652892562e-05,9.838325832866232,-0.09227751495079772 5.49101652892562e-05,9.83464658025145,-0.08484021320949742 -5.50301652892562e-05,9.830967327636667,-0.09227751495079772 5.515016528925621e-05,9.827288075021887,-0.08855886408014779 -5.52701652892562e-05,9.823608822407104,-0.08855886408014779 5.53901652892562e-05,9.819929569792322,-0.09227751495079772 -5.55101652892562e-05,9.823608822407104,-0.08855886408014779 5.56301652892562e-05,9.816250317177541,-0.08484021320949742 -5.57501652892562e-05,9.816250317177541,-0.08855886408014779 5.587016528925621e-05,9.812571064562759,-0.08855886408014779 -5.59901652892562e-05,9.816250317177541,-0.08484021320949742 5.61101652892562e-05,9.808891811947976,-0.08855886408014779 -5.62301652892562e-05,9.812571064562759,-0.07740291146819755 5.63501652892562e-05,9.816250317177541,-0.08484021320949742 -5.64701652892562e-05,9.816250317177541,-0.08484021320949742 5.659016528925621e-05,9.808891811947976,-0.08484021320949742 -5.67101652892562e-05,9.808891811947976,-0.08855886408014779 5.68301652892562e-05,9.805212559333196,-0.08484021320949742 -5.69501652892562e-05,9.805212559333196,-0.08855886408014779 5.70701652892562e-05,9.805212559333196,-0.08484021320949742 -5.71901652892562e-05,9.801533306718413,-0.08855886408014779 5.73101652892562e-05,9.797854054103631,-0.08855886408014779 -5.74301652892562e-05,9.801533306718413,-0.08855886408014779 5.75501652892562e-05,9.805212559333196,-0.08112156233884749 -5.76701652892562e-05,9.797854054103631,-0.08112156233884749 5.77901652892562e-05,9.801533306718413,-0.08112156233884749 -5.79101652892562e-05,9.801533306718413,-0.09227751495079772 5.80301652892562e-05,9.801533306718413,-0.08112156233884749 -5.81501652892562e-05,9.797854054103631,-0.07740291146819755 5.82701652892562e-05,9.797854054103631,-0.08112156233884749 -5.83901652892562e-05,9.797854054103631,-0.08112156233884749 5.85101652892562e-05,9.801533306718413,-0.08484021320949742 -5.863016528925621e-05,9.79417480148885,-0.07740291146819755 5.87501652892562e-05,9.790495548874068,-0.07740291146819755 -5.88701652892562e-05,9.797854054103631,-0.07368426059754718 5.89901652892562e-05,9.783137043644505,-0.07740291146819755 -5.91101652892562e-05,9.779457791029722,-0.08112156233884749 5.92301652892562e-05,9.779457791029722,-0.07740291146819755 -5.935016528925621e-05,9.772099285800159,-0.07368426059754718 5.94701652892562e-05,9.768420033185377,-0.08112156233884749 -5.95901652892562e-05,9.772099285800159,-0.07740291146819755 5.97101652892562e-05,9.772099285800159,-0.08112156233884749 -5.98301652892562e-05,9.772099285800159,-0.08484021320949742 5.99501652892562e-05,9.768420033185377,-0.08112156233884749 -6.007016528925621e-05,9.772099285800159,-0.08112156233884749 6.01901652892562e-05,9.764740780570595,-0.08484021320949742 -6.03101652892562e-05,9.764740780570595,-0.08484021320949742 6.04301652892562e-05,9.764740780570595,-0.08484021320949742 -6.05501652892562e-05,9.764740780570595,-0.08855886408014779 6.06701652892562e-05,9.768420033185377,-0.08112156233884749 -6.079016528925621e-05,9.772099285800159,-0.08484021320949742 6.09101652892562e-05,9.772099285800159,-0.07740291146819755 -6.10301652892562e-05,9.764740780570595,-0.08484021320949742 6.115016528925621e-05,9.764740780570595,-0.06996560972689725 -6.12701652892562e-05,9.761061527955814,-0.08855886408014779 6.139016528925619e-05,9.757382275341032,-0.08112156233884749 -6.151016528925621e-05,9.757382275341032,-0.08112156233884749 6.16301652892562e-05,9.757382275341032,-0.07740291146819755 -6.17501652892562e-05,9.757382275341032,-0.07368426059754718 6.18701652892562e-05,9.757382275341032,-0.08112156233884749 -6.199016528925621e-05,9.757382275341032,-0.08112156233884749 6.21101652892562e-05,9.757382275341032,-0.08484021320949742 -6.223016528925621e-05,9.761061527955814,-0.07368426059754718 6.235016528925621e-05,9.750023770111468,-0.08855886408014779 -6.24701652892562e-05,9.753703022726249,-0.08112156233884749 6.25901652892562e-05,9.750023770111468,-0.08484021320949742 -6.27101652892562e-05,9.750023770111468,-0.08484021320949742 6.283016528925621e-05,9.742665264881904,-0.08112156233884749 -6.29501652892562e-05,9.742665264881904,-0.08484021320949742 6.30701652892562e-05,9.746344517496686,-0.07368426059754718 -6.319016528925621e-05,9.735306759652341,-0.07740291146819755 6.33101652892562e-05,9.720589749193213,-0.09227751495079772 -6.343016528925619e-05,9.724269001807995,-0.08484021320949742 6.35501652892562e-05,9.738986012267121,-0.08855886408014779 -6.367016528925621e-05,9.746344517496686,-0.08484021320949742 6.37901652892562e-05,9.750023770111468,-0.08484021320949742 -6.39101652892562e-05,9.750023770111468,-0.08112156233884749 6.403016528925621e-05,9.757382275341032,-0.08112156233884749 -6.41501652892562e-05,9.757382275341032,-0.08484021320949742 6.427016528925621e-05,9.753703022726249,-0.08112156233884749 -6.439016528925621e-05,9.753703022726249,-0.07740291146819755 6.45101652892562e-05,9.757382275341032,-0.08112156233884749 -6.46301652892562e-05,9.753703022726249,-0.07368426059754718 6.47501652892562e-05,9.753703022726249,-0.08484021320949742 -6.487016528925621e-05,9.753703022726249,-0.08855886408014779 6.49901652892562e-05,9.750023770111468,-0.08112156233884749 -6.51101652892562e-05,9.750023770111468,-0.08112156233884749 6.523016528925621e-05,9.750023770111468,-0.08112156233884749 -6.53501652892562e-05,9.753703022726249,-0.08112156233884749 6.547016528925619e-05,9.753703022726249,-0.08855886408014779 -6.55901652892562e-05,9.753703022726249,-0.08112156233884749 6.571016528925621e-05,9.750023770111468,-0.09227751495079772 -6.58301652892562e-05,9.757382275341032,-0.08484021320949742 6.59501652892562e-05,9.746344517496686,-0.07740291146819755 -6.607016528925621e-05,9.750023770111468,-0.08484021320949742 6.61901652892562e-05,9.746344517496686,-0.08112156233884749 -6.631016528925619e-05,9.746344517496686,-0.07740291146819755 6.643016528925621e-05,9.742665264881904,-0.08112156233884749 -6.65501652892562e-05,9.742665264881904,-0.07368426059754718 6.66701652892562e-05,9.742665264881904,-0.07740291146819755 -6.67901652892562e-05,9.742665264881904,-0.07740291146819755 6.691016528925621e-05,9.742665264881904,-0.06996560972689725 -6.70301652892562e-05,9.731627507037558,-0.07740291146819755 6.715016528925621e-05,9.738986012267121,-0.07740291146819755 -6.727016528925621e-05,9.731627507037558,-0.08112156233884749 6.73901652892562e-05,9.738986012267121,-0.06996560972689725 -6.75101652892562e-05,9.735306759652341,-0.07740291146819755 6.76301652892562e-05,9.738986012267121,-0.07368426059754718 -6.775016528925621e-05,9.738986012267121,-0.07368426059754718 6.78701652892562e-05,9.735306759652341,-0.08112156233884749 -6.79901652892562e-05,9.735306759652341,-0.08112156233884749 6.811016528925621e-05,9.731627507037558,-0.07740291146819755 -6.82301652892562e-05,9.735306759652341,-0.07368426059754718 6.835016528925621e-05,9.727948254422776,-0.08484021320949742 -6.84701652892562e-05,9.724269001807995,-0.07740291146819755 6.859016528925621e-05,9.724269001807995,-0.08484021320949742 -6.87101652892562e-05,9.71323124396365,-0.08112156233884749 6.88301652892562e-05,9.71323124396365,-0.08112156233884749 -6.895016528925621e-05,9.71323124396365,-0.07368426059754718 6.90701652892562e-05,9.705872738734085,-0.07740291146819755 -6.919016528925621e-05,9.709551991348867,-0.07368426059754718 6.93101652892562e-05,9.698514233504522,-0.08112156233884749 -6.94301652892562e-05,9.694834980889739,-0.08112156233884749 6.95501652892562e-05,9.694834980889739,-0.07740291146819755 -6.96701652892562e-05,9.698514233504522,-0.07740291146819755 6.979016528925621e-05,9.691155728274957,-0.07740291146819755 -6.99101652892562e-05,9.687476475660176,-0.07740291146819755 7.003016528925621e-05,9.687476475660176,-0.07368426059754718 -7.015016528925621e-05,9.683797223045394,-0.07740291146819755 7.02701652892562e-05,9.672759465201048,-0.07740291146819755 -7.039016528925619e-05,9.672759465201048,-0.07740291146819755 7.05101652892562e-05,9.672759465201048,-0.07368426059754718 -7.063016528925621e-05,9.676438717815831,-0.07368426059754718 7.07501652892562e-05,9.672759465201048,-0.07740291146819755 -7.08701652892562e-05,9.665400959971485,-0.08112156233884749 7.099016528925621e-05,9.661721707356703,-0.07740291146819755 -7.11101652892562e-05,9.669080212586266,-0.06996560972689725 7.123016528925621e-05,9.665400959971485,-0.07740291146819755 -7.13501652892562e-05,9.661721707356703,-0.07368426059754718 7.14701652892562e-05,9.665400959971485,-0.08112156233884749 -7.15901652892562e-05,9.658042454741921,-0.08484021320949742 7.17101652892562e-05,9.658042454741921,-0.07740291146819755 -7.183016528925621e-05,9.65436320212714,-0.07740291146819755 7.19501652892562e-05,9.65436320212714,-0.07740291146819755 -7.207016528925621e-05,9.65436320212714,-0.07368426059754718 7.21901652892562e-05,9.650683949512358,-0.08484021320949742 -7.23101652892562e-05,9.650683949512358,-0.07740291146819755 7.24301652892562e-05,9.647004696897575,-0.08484021320949742 -7.25501652892562e-05,9.639646191668012,-0.08112156233884749 7.267016528925621e-05,9.650683949512358,-0.08484021320949742 -7.27901652892562e-05,9.647004696897575,-0.08112156233884749 7.29101652892562e-05,9.639646191668012,-0.07740291146819755 -7.303016528925621e-05,9.617570675979321,-0.08855886408014779 7.31501652892562e-05,9.617570675979321,-0.07368426059754718 -7.327016528925621e-05,9.621249928594104,-0.08112156233884749 7.33901652892562e-05,9.632287686438449,-0.07368426059754718 -7.351016528925621e-05,9.63596693905323,-0.08112156233884749 7.36301652892562e-05,9.63596693905323,-0.07740291146819755 -7.37501652892562e-05,9.63596693905323,-0.08112156233884749 7.387016528925621e-05,9.63596693905323,-0.07740291146819755 -7.39901652892562e-05,9.632287686438449,-0.08484021320949742 7.411016528925621e-05,9.63596693905323,-0.08112156233884749 -7.42301652892562e-05,9.639646191668012,-0.07368426059754718 7.43501652892562e-05,9.632287686438449,-0.08112156233884749 -7.44701652892562e-05,9.632287686438449,-0.07740291146819755 7.45901652892562e-05,9.632287686438449,-0.08484021320949742 -7.471016528925621e-05,9.624929181208884,-0.07740291146819755 7.48301652892562e-05,9.624929181208884,-0.08484021320949742 -7.495016528925621e-05,9.628608433823667,-0.07740291146819755 7.507016528925621e-05,9.624929181208884,-0.07740291146819755 -7.51901652892562e-05,9.628608433823667,-0.08112156233884749 7.53101652892562e-05,9.624929181208884,-0.08112156233884749 -7.54301652892562e-05,9.632287686438449,-0.07368426059754718 7.555016528925621e-05,9.624929181208884,-0.06996560972689725 -7.56701652892562e-05,9.624929181208884,-0.07368426059754718 7.57901652892562e-05,9.624929181208884,-0.06624695885624732 -7.591016528925621e-05,9.624929181208884,-0.08112156233884749 7.60301652892562e-05,9.624929181208884,-0.07740291146819755 -7.615016528925621e-05,9.617570675979321,-0.08484021320949742 7.62701652892562e-05,9.617570675979321,-0.06996560972689725 -7.639016528925621e-05,9.613891423364539,-0.06996560972689725 7.65101652892562e-05,9.610212170749758,-0.06624695885624732 -7.66301652892562e-05,9.617570675979321,-0.06996560972689725 7.675016528925621e-05,9.602853665520193,-0.07740291146819755 -7.68701652892562e-05,9.606532918134976,-0.06996560972689725 7.699016528925621e-05,9.602853665520193,-0.07368426059754718 -7.71101652892562e-05,9.599174412905413,-0.07740291146819755 7.72301652892562e-05,9.599174412905413,-0.07740291146819755 -7.73501652892562e-05,9.591815907675848,-0.07368426059754718 7.74701652892562e-05,9.584457402446285,-0.07740291146819755 -7.759016528925621e-05,9.599174412905413,-0.07368426059754718 7.77101652892562e-05,9.588136655061067,-0.07368426059754718 -7.783016528925621e-05,9.588136655061067,-0.07368426059754718 7.795016528925621e-05,9.588136655061067,-0.07368426059754718 -7.80701652892562e-05,9.584457402446285,-0.07740291146819755 7.819016528925621e-05,9.584457402446285,-0.07368426059754718 -7.83101652892562e-05,9.584457402446285,-0.06996560972689725 7.843016528925621e-05,9.577098897216722,-0.07740291146819755 -7.85501652892562e-05,9.566061139372376,-0.06252830798559694 7.86701652892562e-05,9.558702634142811,-0.07368426059754718 -7.879016528925621e-05,9.555023381528031,-0.07368426059754718 7.89101652892562e-05,9.558702634142811,-0.07740291146819755 -7.903016528925621e-05,9.551344128913248,-0.07368426059754718 7.91501652892562e-05,9.551344128913248,-0.07368426059754718 -7.92701652892562e-05,9.53662711845412,-0.07740291146819755 7.93901652892562e-05,9.543985623683685,-0.07368426059754718 -7.95101652892562e-05,9.543985623683685,-0.06996560972689725 7.963016528925621e-05,9.53662711845412,-0.07368426059754718 -7.97501652892562e-05,9.53294786583934,-0.07368426059754718 7.987016528925621e-05,9.521910107994994,-0.07368426059754718 -7.999016528925621e-05,9.525589360609775,-0.07740291146819755 8.01101652892562e-05,9.529268613224557,-0.07368426059754718 -8.02301652892562e-05,9.521910107994994,-0.06996560972689725 8.03501652892562e-05,9.518230855380212,-0.07368426059754718 -8.047016528925621e-05,9.510872350150649,-0.08112156233884749 8.05901652892562e-05,9.510872350150649,-0.07740291146819755 -8.07101652892562e-05,9.51455160276543,-0.07740291146819755 8.083016528925621e-05,9.499834592306302,-0.07368426059754718 -8.09501652892562e-05,9.503513844921084,-0.07368426059754718 8.107016528925621e-05,9.499834592306302,-0.07740291146819755 -8.11901652892562e-05,9.507193097535866,-0.07368426059754718 8.131016528925621e-05,9.496155339691521,-0.07368426059754718 -8.14301652892562e-05,9.492476087076739,-0.08112156233884749 8.15501652892562e-05,9.492476087076739,-0.07368426059754718 -8.167016528925621e-05,9.488796834461956,-0.07368426059754718 8.17901652892562e-05,9.488796834461956,-0.07740291146819755 -8.191016528925621e-05,9.485117581847176,-0.06996560972689725 8.20301652892562e-05,9.485117581847176,-0.06996560972689725 -8.21501652892562e-05,9.477759076617611,-0.08112156233884749 8.22701652892562e-05,9.477759076617611,-0.06996560972689725 -8.23901652892562e-05,9.474079824002828,-0.07368426059754718 8.251016528925621e-05,9.470400571388048,-0.06252830798559694 -8.26301652892562e-05,9.463042066158483,-0.06624695885624732 8.275016528925621e-05,9.459362813543702,-0.06624695885624732 -8.287016528925621e-05,9.448325055699357,-0.06996560972689725 8.29901652892562e-05,9.448325055699357,-0.05509100624429664 -8.311016528925621e-05,9.448325055699357,-0.06624695885624732 8.32301652892562e-05,9.452004308314137,-0.06252830798559694 -8.335016528925621e-05,9.459362813543702,-0.06252830798559694 8.34701652892562e-05,9.452004308314137,-0.06624695885624732 -8.35901652892562e-05,9.45568356092892,-0.06252830798559694 8.371016528925621e-05,9.45568356092892,-0.06252830798559694 -8.38301652892562e-05,9.45568356092892,-0.06624695885624732 8.395016528925621e-05,9.452004308314137,-0.06252830798559694 -8.40701652892562e-05,9.459362813543702,-0.05880965711494701 8.419016528925621e-05,9.45568356092892,-0.05509100624429664 -8.43101652892562e-05,9.452004308314137,-0.06996560972689725 8.44301652892562e-05,9.444645803084574,-0.06252830798559694 -8.455016528925621e-05,9.444645803084574,-0.05880965711494701 8.46701652892562e-05,9.444645803084574,-0.05880965711494701 -8.479016528925621e-05,9.437287297855011,-0.05509100624429664 8.49101652892562e-05,9.440966550469792,-0.05880965711494701 -8.50301652892562e-05,9.437287297855011,-0.05880965711494701 8.515016528925621e-05,9.433608045240229,-0.06252830798559694 -8.52701652892562e-05,9.429928792625446,-0.06624695885624732 8.539016528925621e-05,9.429928792625446,-0.06624695885624732 -8.55101652892562e-05,9.433608045240229,-0.06252830798559694 8.56301652892562e-05,9.433608045240229,-0.06252830798559694 -8.575016528925621e-05,9.426249540010666,-0.06624695885624732 8.58701652892562e-05,9.426249540010666,-0.06252830798559694 -8.599016528925621e-05,9.418891034781101,-0.06252830798559694 8.61101652892562e-05,9.411532529551538,-0.06252830798559694 -8.623016528925621e-05,9.41521178216632,-0.06996560972689725 8.63501652892562e-05,9.41521178216632,-0.06252830798559694 -8.64701652892562e-05,9.411532529551538,-0.05880965711494701 8.659016528925621e-05,9.411532529551538,-0.06624695885624732 -8.67101652892562e-05,9.407853276936756,-0.06252830798559694 8.683016528925621e-05,9.407853276936756,-0.06996560972689725 -8.69501652892562e-05,9.411532529551538,-0.05509100624429664 8.70701652892562e-05,9.400494771707192,-0.06252830798559694 -8.71901652892562e-05,9.400494771707192,-0.05137235537364671 8.73101652892562e-05,9.393136266477629,-0.06996560972689725 -8.743016528925621e-05,9.389457013862847,-0.06252830798559694 8.75501652892562e-05,9.389457013862847,-0.06252830798559694 -8.767016528925621e-05,9.385777761248065,-0.06252830798559694 8.77901652892562e-05,9.389457013862847,-0.05509100624429664 -8.79101652892562e-05,9.382098508633284,-0.05880965711494701 8.803016528925621e-05,9.382098508633284,-0.05880965711494701 -8.81501652892562e-05,9.374740003403719,-0.07368426059754718 8.827016528925621e-05,9.385777761248065,-0.0439350536323464 -8.83901652892562e-05,9.360022992944593,-0.05509100624429664 8.85101652892562e-05,9.367381498174156,-0.05137235537364671 -8.863016528925621e-05,9.352664487715028,-0.05880965711494701 8.87501652892562e-05,9.348985235100248,-0.05880965711494701 -8.887016528925621e-05,9.345305982485465,-0.05880965711494701 8.89901652892562e-05,9.337947477255902,-0.06252830798559694 -8.911016528925621e-05,9.33426822464112,-0.05880965711494701 8.92301652892562e-05,9.33426822464112,-0.06252830798559694 -8.93501652892562e-05,9.33426822464112,-0.05880965711494701 8.947016528925621e-05,9.326909719411557,-0.07368426059754718 -8.95901652892562e-05,9.326909719411557,-0.06624695885624732 8.971016528925621e-05,9.319551214181992,-0.06996560972689725 -8.98301652892562e-05,9.319551214181992,-0.05880965711494701 8.99501652892562e-05,9.312192708952429,-0.05880965711494701 -9.00701652892562e-05,9.319551214181992,-0.05880965711494701 9.01901652892562e-05,9.312192708952429,-0.06252830798559694 -9.031016528925621e-05,9.312192708952429,-0.06252830798559694 9.04301652892562e-05,9.308513456337646,-0.06252830798559694 -9.055016528925621e-05,9.308513456337646,-0.06252830798559694 9.067016528925621e-05,9.308513456337646,-0.05509100624429664 -9.07901652892562e-05,9.304834203722866,-0.05509100624429664 9.091016528925621e-05,9.301154951108083,-0.05509100624429664 -9.10301652892562e-05,9.297475698493301,-0.05880965711494701 9.115016528925621e-05,9.297475698493301,-0.04765370450299677 -9.12701652892562e-05,9.29379644587852,-0.06252830798559694 9.13901652892562e-05,9.286437940648955,-0.05880965711494701 -9.151016528925621e-05,9.286437940648955,-0.05509100624429664 9.16301652892562e-05,9.286437940648955,-0.05509100624429664 -9.175016528925621e-05,9.279079435419392,-0.05880965711494701 9.18701652892562e-05,9.279079435419392,-0.06252830798559694 -9.19901652892562e-05,9.271720930189829,-0.06624695885624732 9.21101652892562e-05,9.27540018280461,-0.06624695885624732 -9.22301652892562e-05,9.271720930189829,-0.06624695885624732 9.235016528925621e-05,9.264362424960265,-0.06624695885624732 -9.24701652892562e-05,9.257003919730701,-0.05880965711494701 9.259016528925621e-05,9.245966161886356,-0.06624695885624732 -9.27101652892562e-05,9.238607656656791,-0.06252830798559694 9.28301652892562e-05,9.234928404042009,-0.06624695885624732 -9.295016528925621e-05,9.238607656656791,-0.06624695885624732 9.30701652892562e-05,9.242286909271574,-0.06252830798559694 -9.319016528925621e-05,9.242286909271574,-0.05509100624429664 9.33101652892562e-05,9.245966161886356,-0.06252830798559694 -9.34301652892562e-05,9.242286909271574,-0.05880965711494701 9.355016528925621e-05,9.234928404042009,-0.06252830798559694 -9.36701652892562e-05,9.242286909271574,-0.05880965711494701 9.379016528925621e-05,9.242286909271574,-0.05880965711494701 -9.39101652892562e-05,9.242286909271574,-0.06252830798559694 9.403016528925621e-05,9.238607656656791,-0.06252830798559694 -9.41501652892562e-05,9.234928404042009,-0.06624695885624732 9.42701652892562e-05,9.238607656656791,-0.05509100624429664 -9.439016528925621e-05,9.231249151427228,-0.06252830798559694 9.45101652892562e-05,9.238607656656791,-0.05509100624429664 -9.463016528925621e-05,9.238607656656791,-0.05880965711494701 9.47501652892562e-05,9.234928404042009,-0.05509100624429664 -9.48701652892562e-05,9.231249151427228,-0.05880965711494701 9.499016528925621e-05,9.234928404042009,-0.05509100624429664 -9.51101652892562e-05,9.231249151427228,-0.05880965711494701 9.523016528925621e-05,9.223890646197663,-0.05137235537364671 -9.53501652892562e-05,9.227569898812446,-0.05880965711494701 9.547016528925621e-05,9.2165321409681,-0.05880965711494701 -9.55901652892562e-05,9.220211393582883,-0.05880965711494701 9.57101652892562e-05,9.212852888353318,-0.06252830798559694 -9.583016528925621e-05,9.205494383123755,-0.05137235537364671 9.59501652892562e-05,9.205494383123755,-0.05880965711494701 -9.607016528925621e-05,9.201815130508972,-0.05137235537364671 9.61901652892562e-05,9.205494383123755,-0.05509100624429664 -9.63101652892562e-05,9.198135877894192,-0.05509100624429664 9.643016528925621e-05,9.187098120049846,-0.05509100624429664 -9.65501652892562e-05,9.194456625279409,-0.05880965711494701 9.667016528925621e-05,9.194456625279409,-0.05137235537364671 -9.67901652892562e-05,9.187098120049846,-0.04765370450299677 9.691016528925621e-05,9.179739614820281,-0.05137235537364671 -9.70301652892562e-05,9.172381109590718,-0.05880965711494701 9.71501652892562e-05,9.183418867435064,-0.05137235537364671 -9.727016528925621e-05,9.172381109590718,-0.05509100624429664 9.73901652892562e-05,9.179739614820281,-0.05137235537364671 -9.751016528925621e-05,9.168701856975936,-0.04021640276169647 9.76301652892562e-05,9.172381109590718,-0.05509100624429664 -9.77501652892562e-05,9.168701856975936,-0.0439350536323464 9.787016528925621e-05,9.168701856975936,-0.05137235537364671 -9.79901652892562e-05,9.139267836057682,-0.09599616582144765 9.811016528925621e-05,9.187098120049846,-0.01046719579649569 -9.82301652892562e-05,9.150305593902027,-0.05880965711494701 9.835016528925621e-05,9.157664099131591,-0.05509100624429664 -9.847016528925621e-05,9.139267836057682,-0.06252830798559694 9.85901652892562e-05,9.131909330828119,-0.05509100624429664 -9.871016528925621e-05,9.131909330828119,-0.05509100624429664 9.88301652892562e-05,9.120871572983773,-0.06252830798559694 -9.895016528925621e-05,9.117192320368991,-0.06252830798559694 9.90701652892562e-05,9.117192320368991,-0.05880965711494701 -9.91901652892562e-05,9.109833815139428,-0.05509100624429664 9.931016528925621e-05,9.109833815139428,-0.05880965711494701 -9.94301652892562e-05,9.0951168046803,-0.04765370450299677 9.955016528925621e-05,9.102475309909863,-0.05880965711494701 -9.96701652892562e-05,9.098796057295083,-0.04765370450299677 9.97901652892562e-05,9.091437552065518,-0.05137235537364671 -9.991016528925621e-05,9.087758299450737,-0.04765370450299677 0.0001000301652892562,9.084079046835955,-0.05137235537364671 -0.0001001501652892562,9.087758299450737,-0.05509100624429664 0.0001002701652892562,9.084079046835955,-0.04765370450299677 -0.0001003901652892562,9.076720541606392,-0.05137235537364671 0.0001005101652892562,9.084079046835955,-0.0439350536323464 -0.0001006301652892562,9.076720541606392,-0.04765370450299677 0.0001007501652892562,9.076720541606392,-0.04021640276169647 -0.0001008701652892562,9.080399794221172,-0.05137235537364671 0.0001009901652892562,9.076720541606392,-0.05880965711494701 -0.0001011101652892562,9.065682783762046,-0.05137235537364671 0.0001012301652892562,9.065682783762046,-0.04765370450299677 -0.0001013501652892562,9.065682783762046,-0.05509100624429664 0.0001014701652892562,9.065682783762046,-0.05137235537364671 -0.0001015901652892562,9.058324278532481,-0.05509100624429664 0.0001017101652892562,9.054645025917701,-0.05880965711494701 -0.0001018301652892562,9.050965773302918,-0.04765370450299677 0.0001019501652892562,9.047286520688136,-0.05137235537364671 -0.0001020701652892562,9.050965773302918,-0.0439350536323464 0.0001021901652892562,9.043607268073355,-0.05137235537364671 -0.0001023101652892562,9.043607268073355,-0.0439350536323464 0.0001024301652892562,9.03256951022901,-0.05137235537364671 -0.0001025501652892562,9.017852499769882,-0.04765370450299677 0.0001026701652892562,9.017852499769882,-0.0439350536323464 -0.0001027901652892562,9.025211004999445,-0.04765370450299677 0.0001029101652892562,9.028890257614227,-0.04021640276169647 -0.0001030301652892562,9.025211004999445,-0.04765370450299677 0.0001031501652892562,9.021531752384663,-0.04765370450299677 -0.0001032701652892562,9.028890257614227,-0.05137235537364671 0.0001033901652892562,9.021531752384663,-0.05137235537364671 -0.0001035101652892562,9.021531752384663,-0.04765370450299677 0.0001036301652892562,9.03256951022901,-0.0439350536323464 -0.0001037501652892562,9.025211004999445,-0.04765370450299677 0.0001038701652892562,9.021531752384663,-0.04765370450299677 -0.0001039901652892562,9.025211004999445,-0.04765370450299677 0.0001041101652892562,9.021531752384663,-0.05137235537364671 -0.0001042301652892562,9.025211004999445,-0.05137235537364671 0.0001043501652892562,9.021531752384663,-0.05137235537364671 -0.0001044701652892562,9.017852499769882,-0.05137235537364671 0.0001045901652892562,9.014173247155099,-0.0439350536323464 -0.0001047101652892562,9.006814741925536,-0.05137235537364671 0.0001048301652892562,9.006814741925536,-0.0439350536323464 -0.0001049501652892562,9.010493994540317,-0.04765370450299677 0.0001050701652892562,9.006814741925536,-0.04765370450299677 -0.0001051901652892562,9.003135489310754,-0.04765370450299677 0.0001053101652892562,8.999456236695972,-0.05509100624429664 -0.0001054301652892562,8.995776984081191,-0.05137235537364671 0.0001055501652892562,8.984739226236846,-0.05137235537364671 -0.0001056701652892562,8.984739226236846,-0.04765370450299677 0.0001057901652892562,8.988418478851626,-0.04765370450299677 -0.0001059101652892562,8.977380721007281,-0.05137235537364671 0.0001060301652892562,8.981059973622063,-0.04021640276169647 -0.0001061501652892562,8.977380721007281,-0.0439350536323464 0.0001062701652892562,8.977380721007281,-0.05137235537364671 -0.0001063901652892562,8.977380721007281,-0.05137235537364671 0.0001065101652892562,8.977380721007281,-0.04765370450299677 -0.0001066301652892562,8.973701468392498,-0.04021640276169647 0.0001067501652892562,8.970022215777718,-0.0439350536323464 -0.0001068701652892562,8.966342963162935,-0.04765370450299677 0.0001069901652892562,8.962663710548153,-0.0439350536323464 -0.0001071101652892562,8.970022215777718,-0.04765370450299677 0.0001072301652892562,8.966342963162935,-0.04021640276169647 -0.0001073501652892562,8.958984457933372,-0.04765370450299677 0.0001074701652892562,8.962663710548153,-0.04765370450299677 -0.0001075901652892562,8.958984457933372,-0.04765370450299677 0.0001077101652892562,8.95530520531859,-0.05137235537364671 -0.0001078301652892562,8.936908942244681,-0.08484021320949742 0.0001079501652892562,8.970022215777718,-0.003029894055195381 -0.0001080701652892562,8.944267447474244,-0.04021640276169647 0.0001081901652892562,8.936908942244681,-0.0439350536323464 -0.0001083101652892562,8.929550437015116,-0.03649775189104654 0.0001084301652892562,8.929550437015116,-0.0439350536323464 -0.0001085501652892562,8.918512679170771,-0.0439350536323464 0.0001086701652892562,8.918512679170771,-0.04765370450299677 -0.0001087901652892562,8.918512679170771,-0.03649775189104654 0.0001089101652892562,8.918512679170771,-0.04021640276169647 -0.0001090301652892562,8.903795668711645,-0.0439350536323464 0.0001091501652892562,8.91483342655599,-0.04021640276169647 -0.0001092701652892562,8.907474921326425,-0.04765370450299677 0.0001093901652892562,8.907474921326425,-0.0439350536323464 -0.0001095101652892562,8.900116416096862,-0.0439350536323464 0.0001096301652892562,8.907474921326425,-0.04021640276169647 -0.0001097501652892562,8.900116416096862,-0.03649775189104654 0.0001098701652892562,8.89643716348208,-0.04765370450299677 -0.0001099901652892562,8.889078658252517,-0.05509100624429664 0.0001101101652892562,8.892757910867299,-0.04765370450299677 -0.0001102301652892562,8.889078658252517,-0.04765370450299677 0.0001103501652892562,8.889078658252517,-0.04765370450299677 -0.0001104701652892562,8.881720153022954,-0.0439350536323464 0.0001105901652892562,8.881720153022954,-0.04765370450299677 -0.0001107101652892562,8.878040900408172,-0.0439350536323464 0.0001108301652892562,8.870682395178608,-0.0439350536323464 -0.0001109501652892562,8.870682395178608,-0.04765370450299677 0.0001110701652892562,8.878040900408172,-0.0439350536323464 -0.0001111901652892562,8.874361647793389,-0.05137235537364671 0.0001113101652892562,8.867003142563826,-0.04765370450299677 -0.0001114301652892562,8.878040900408172,-0.04765370450299677 0.0001115501652892562,8.867003142563826,-0.05509100624429664 -0.0001116701652892562,8.874361647793389,-0.04765370450299677 0.0001117901652892562,8.874361647793389,-0.05137235537364671 -0.0001119101652892562,8.867003142563826,-0.04021640276169647 0.0001120301652892562,8.867003142563826,-0.04765370450299677 -0.0001121501652892562,8.863323889949044,-0.0439350536323464 0.0001122701652892562,8.863323889949044,-0.04765370450299677 -0.0001123901652892562,8.852286132104698,-0.04765370450299677 0.0001125101652892562,8.859644637334263,-0.03649775189104654 -0.0001126301652892562,8.863323889949044,-0.04021640276169647 0.0001127501652892562,8.870682395178608,-0.04021640276169647 -0.0001128701652892562,8.870682395178608,-0.05137235537364671 0.0001129901652892562,8.874361647793389,-0.04765370450299677 -0.0001131101652892562,8.874361647793389,-0.05137235537364671 0.0001132301652892562,8.881720153022954,-0.04021640276169647 -0.0001133501652892562,8.885399405637735,-0.05137235537364671 0.0001134701652892562,8.878040900408172,-0.0439350536323464 -0.0001135901652892562,8.878040900408172,-0.0439350536323464 0.0001137101652892562,8.892757910867299,-0.04765370450299677 -0.0001138301652892562,8.885399405637735,-0.0439350536323464 0.0001139501652892562,8.885399405637735,-0.0439350536323464 -0.0001140701652892562,8.889078658252517,-0.0439350536323464 0.0001141901652892562,8.885399405637735,-0.04765370450299677 -0.0001143101652892562,8.889078658252517,-0.04021640276169647 0.0001144301652892562,8.881720153022954,-0.05509100624429664 -0.0001145501652892562,8.889078658252517,-0.04021640276169647 0.0001146701652892562,8.881720153022954,-0.04021640276169647 -0.0001147901652892562,8.885399405637735,-0.04021640276169647 0.0001149101652892562,8.878040900408172,-0.03277910102039616 -0.0001150301652892562,8.878040900408172,-0.04021640276169647 0.0001151501652892562,8.878040900408172,-0.04021640276169647 -0.0001152701652892562,8.874361647793389,-0.0439350536323464 0.0001153901652892562,8.881720153022954,-0.03277910102039616 -0.0001155101652892562,8.878040900408172,-0.04021640276169647 0.0001156301652892562,8.881720153022954,-0.0439350536323464 -0.0001157501652892562,8.874361647793389,-0.04021640276169647 0.0001158701652892562,8.881720153022954,-0.04021640276169647 -0.0001159901652892562,8.878040900408172,-0.0439350536323464 0.0001161101652892562,8.885399405637735,-0.03649775189104654 -0.0001162301652892562,8.885399405637735,-0.04021640276169647 0.0001163501652892562,8.885399405637735,-0.0439350536323464 -0.0001164701652892562,8.881720153022954,-0.03649775189104654 0.0001165901652892562,8.889078658252517,-0.0439350536323464 -0.0001167101652892562,8.889078658252517,-0.03649775189104654 0.0001168301652892562,8.889078658252517,-0.04021640276169647 -0.0001169501652892562,8.892757910867299,-0.04021640276169647 0.0001170701652892562,8.889078658252517,-0.04021640276169647 -0.0001171901652892562,8.892757910867299,-0.0439350536323464 0.0001173101652892562,8.881720153022954,-0.0439350536323464 -0.0001174301652892562,8.885399405637735,-0.04765370450299677 0.0001175501652892562,8.885399405637735,-0.03649775189104654 -0.0001176701652892562,8.885399405637735,-0.04021640276169647 0.0001177901652892562,8.881720153022954,-0.04765370450299677 -0.0001179101652892562,8.874361647793389,-0.04021640276169647 0.0001180301652892562,8.870682395178608,-0.0439350536323464 -0.0001181501652892562,8.870682395178608,-0.04765370450299677 0.0001182701652892562,8.870682395178608,-0.03649775189104654 -0.0001183901652892562,8.855965384719481,-0.0439350536323464 0.0001185101652892562,8.859644637334263,-0.04021640276169647 -0.0001186301652892562,8.855965384719481,-0.04765370450299677 0.0001187501652892562,8.859644637334263,-0.04765370450299677 -0.0001188701652892562,8.855965384719481,-0.0439350536323464 0.0001189901652892562,8.859644637334263,-0.0439350536323464 -0.0001191101652892562,8.855965384719481,-0.0439350536323464 0.0001192301652892562,8.859644637334263,-0.04021640276169647 -0.0001193501652892562,8.859644637334263,-0.04021640276169647 0.0001194701652892562,8.859644637334263,-0.03277910102039616 -0.0001195901652892562,8.863323889949044,-0.0439350536323464 0.0001197101652892562,8.859644637334263,-0.03649775189104654 -0.0001198301652892562,8.852286132104698,-0.03649775189104654 0.0001199501652892562,8.848606879489918,-0.04765370450299677 -0.0001200701652892562,8.852286132104698,-0.03277910102039616 0.0001201901652892562,8.852286132104698,-0.03649775189104654 -0.0001203101652892562,8.852286132104698,-0.02906045014974623 0.0001204301652892562,8.841248374260353,-0.03649775189104654 -0.0001205501652892562,8.844927626875135,-0.04021640276169647 0.0001206701652892562,8.852286132104698,-0.04021640276169647 -0.0001207901652892562,8.844927626875135,-0.02906045014974623 0.0001209101652892562,8.844927626875135,-0.04021640276169647 -0.0001210301652892562,8.844927626875135,-0.03649775189104654 0.0001211501652892562,8.837569121645572,-0.0439350536323464 -0.0001212701652892562,8.848606879489918,-0.0439350536323464 0.0001213901652892562,8.844927626875135,-0.0439350536323464 -0.0001215101652892562,8.848606879489918,-0.04021640276169647 0.0001216301652892562,8.852286132104698,-0.03277910102039616 -0.0001217501652892562,8.844927626875135,-0.0439350536323464 0.0001218701652892562,8.852286132104698,-0.03649775189104654 -0.0001219901652892562,8.844927626875135,-0.04021640276169647 0.0001221101652892562,8.837569121645572,-0.0439350536323464 -0.0001222301652892562,8.830210616416007,-0.03649775189104654 0.0001223501652892562,8.83388986903079,-0.03277910102039616 -0.0001224701652892562,8.841248374260353,-0.03649775189104654 0.0001225901652892562,8.841248374260353,-0.03649775189104654 -0.0001227101652892562,8.848606879489918,-0.04021640276169647 0.0001228301652892562,8.855965384719481,-0.04021640276169647 -0.0001229501652892562,8.855965384719481,-0.04021640276169647 0.0001230701652892562,8.855965384719481,-0.03649775189104654 -0.0001231901652892562,8.863323889949044,-0.02534179927909586 0.0001233101652892562,8.859644637334263,-0.03277910102039616 -0.0001234301652892562,8.867003142563826,-0.03649775189104654 0.0001235501652892562,8.867003142563826,-0.03649775189104654 -0.0001236701652892562,8.867003142563826,-0.03649775189104654 0.0001237901652892562,8.874361647793389,-0.03277910102039616 -0.0001239101652892562,8.870682395178608,-0.03649775189104654 0.0001240301652892562,8.867003142563826,-0.03649775189104654 -0.0001241501652892562,8.874361647793389,-0.03649775189104654 0.0001242701652892562,8.863323889949044,-0.04021640276169647 -0.0001243901652892562,8.870682395178608,-0.04021640276169647 0.0001245101652892562,8.870682395178608,-0.03649775189104654 -0.0001246301652892562,8.874361647793389,-0.03277910102039616 0.0001247501652892562,8.878040900408172,-0.03649775189104654 -0.0001248701652892562,8.870682395178608,-0.03649775189104654 0.0001249901652892562,8.874361647793389,-0.04021640276169647 -0.0001251101652892562,8.867003142563826,-0.04765370450299677 0.0001252301652892562,8.874361647793389,-0.0439350536323464 -0.0001253501652892562,8.870682395178608,-0.04021640276169647 0.0001254701652892562,8.867003142563826,-0.03649775189104654 -0.0001255901652892562,8.867003142563826,-0.0439350536323464 0.0001257101652892562,8.867003142563826,-0.04021640276169647 -0.0001258301652892562,8.867003142563826,-0.04765370450299677 0.0001259501652892562,8.863323889949044,-0.04021640276169647 -0.0001260701652892562,8.870682395178608,-0.03649775189104654 0.0001261901652892562,8.863323889949044,-0.03649775189104654 -0.0001263101652892562,8.867003142563826,-0.03277910102039616 0.0001264301652892562,8.863323889949044,-0.04021640276169647 -0.0001265501652892562,8.870682395178608,-0.03277910102039616 0.0001266701652892562,8.867003142563826,-0.0439350536323464 -0.0001267901652892562,8.870682395178608,-0.02906045014974623 0.0001269101652892562,8.863323889949044,-0.03277910102039616 -0.0001270301652892562,8.867003142563826,-0.03277910102039616 0.0001271501652892562,8.859644637334263,-0.04021640276169647 -0.0001272701652892562,8.863323889949044,-0.03649775189104654 0.0001273901652892562,8.863323889949044,-0.04021640276169647 -0.0001275101652892562,8.885399405637735,-0.006748544925845756 0.0001276301652892562,8.848606879489918,-0.05880965711494701 -0.0001277501652892562,8.859644637334263,-0.03277910102039616 0.0001278701652892562,8.859644637334263,-0.03277910102039616 -0.0001279901652892562,8.855965384719481,-0.04765370450299677 0.0001281101652892562,8.863323889949044,-0.04021640276169647 -0.0001282301652892562,8.852286132104698,-0.03649775189104654 0.0001283501652892562,8.855965384719481,-0.0439350536323464 -0.0001284701652892562,8.852286132104698,-0.03649775189104654 0.0001285901652892562,8.848606879489918,-0.0439350536323464 -0.0001287101652892562,8.844927626875135,-0.03649775189104654 0.0001288301652892562,8.844927626875135,-0.04021640276169647 -0.0001289501652892562,8.844927626875135,-0.03649775189104654 0.0001290701652892562,8.841248374260353,-0.04021640276169647 -0.0001291901652892562,8.841248374260353,-0.03277910102039616 0.0001293101652892562,8.841248374260353,-0.03649775189104654 -0.0001294301652892562,8.837569121645572,-0.04021640276169647 0.0001295501652892562,8.826531363801227,-0.0439350536323464 -0.0001296701652892562,8.844927626875135,-0.03277910102039616 0.0001297901652892562,8.837569121645572,-0.03277910102039616 -0.0001299101652892562,8.837569121645572,-0.03649775189104654 0.0001300301652892562,8.837569121645572,-0.03277910102039616 -0.0001301501652892562,8.83388986903079,-0.0439350536323464 0.0001302701652892562,8.837569121645572,-0.04021640276169647 -0.0001303901652892562,8.841248374260353,-0.04021640276169647 0.0001305101652892562,8.837569121645572,-0.04021640276169647 -0.0001306301652892562,8.844927626875135,-0.03277910102039616 0.0001307501652892562,8.837569121645572,-0.05137235537364671 -0.0001308701652892562,8.841248374260353,-0.04021640276169647 0.0001309901652892562,8.841248374260353,-0.04765370450299677 -0.0001311101652892562,8.83388986903079,-0.0439350536323464 0.0001312301652892562,8.83388986903079,-0.0439350536323464 -0.0001313501652892562,8.83388986903079,-0.04021640276169647 0.0001314701652892562,8.841248374260353,-0.0439350536323464 -0.0001315901652892562,8.830210616416007,-0.04021640276169647 0.0001317101652892562,8.830210616416007,-0.04021640276169647 -0.0001318301652892562,8.83388986903079,-0.03649775189104654 0.0001319501652892562,8.815493605956881,-0.05137235537364671 -0.0001320701652892562,8.830210616416007,-0.02162314840844592 0.0001321901652892562,8.826531363801227,-0.03277910102039616 -0.0001323101652892562,8.830210616416007,-0.03277910102039616 0.0001324301652892562,8.837569121645572,-0.03649775189104654 -0.0001325501652892562,8.841248374260353,-0.04021640276169647 0.0001326701652892562,8.844927626875135,-0.03277910102039616 -0.0001327901652892562,8.844927626875135,-0.02906045014974623 0.0001329101652892562,8.844927626875135,-0.03277910102039616 -0.0001330301652892562,8.844927626875135,-0.02906045014974623 0.0001331501652892562,8.841248374260353,-0.02906045014974623 -0.0001332701652892562,8.848606879489918,-0.03649775189104654 0.0001333901652892562,8.855965384719481,-0.03649775189104654 -0.0001335101652892562,8.852286132104698,-0.03277910102039616 0.0001336301652892562,8.852286132104698,-0.03277910102039616 -0.0001337501652892562,8.852286132104698,-0.02906045014974623 0.0001338701652892562,8.852286132104698,-0.03649775189104654 -0.0001339901652892562,8.848606879489918,-0.02906045014974623 0.0001341101652892562,8.855965384719481,-0.02906045014974623 -0.0001342301652892562,8.852286132104698,-0.03649775189104654 0.0001343501652892562,8.855965384719481,-0.02906045014974623 -0.0001344701652892562,8.848606879489918,-0.03277910102039616 0.0001345901652892562,8.855965384719481,-0.02534179927909586 -0.0001347101652892562,8.855965384719481,-0.03277910102039616 0.0001348301652892562,8.855965384719481,-0.02906045014974623 -0.0001349501652892562,8.859644637334263,-0.02906045014974623 0.0001350701652892562,8.852286132104698,-0.02906045014974623 -0.0001351901652892562,8.859644637334263,-0.02534179927909586 0.0001353101652892562,8.859644637334263,-0.03649775189104654 -0.0001354301652892562,8.852286132104698,-0.02906045014974623 0.0001355501652892562,8.852286132104698,-0.03649775189104654 -0.0001356701652892562,8.859644637334263,-0.02162314840844592 0.0001357901652892562,8.855965384719481,-0.02534179927909586 -0.0001359101652892562,8.855965384719481,-0.03277910102039616 0.0001360301652892562,8.855965384719481,-0.03649775189104654 -0.0001361501652892562,8.855965384719481,-0.02906045014974623 0.0001362701652892562,8.855965384719481,-0.02906045014974623 -0.0001363901652892562,8.852286132104698,-0.03649775189104654 0.0001365101652892562,8.852286132104698,-0.03649775189104654 -0.0001366301652892562,8.859644637334263,-0.03649775189104654 0.0001367501652892562,8.855965384719481,-0.03649775189104654 -0.0001368701652892562,8.855965384719481,-0.03277910102039616 0.0001369901652892562,8.852286132104698,-0.03277910102039616 -0.0001371101652892562,8.852286132104698,-0.03277910102039616 0.0001372301652892562,8.855965384719481,-0.04021640276169647 -0.0001373501652892562,8.870682395178608,-0.02162314840844592 0.0001374701652892562,8.83388986903079,-0.05509100624429664 -0.0001375901652892562,8.844927626875135,-0.04021640276169647 0.0001377101652892562,8.841248374260353,-0.03649775189104654 -0.0001378301652892562,8.844927626875135,-0.04021640276169647 0.0001379501652892562,8.841248374260353,-0.03649775189104654 -0.0001380701652892562,8.841248374260353,-0.04021640276169647 0.0001381901652892562,8.837569121645572,-0.02906045014974623 -0.0001383101652892562,8.83388986903079,-0.03277910102039616 0.0001384301652892562,8.83388986903079,-0.03277910102039616 -0.0001385501652892562,8.830210616416007,-0.03277910102039616 0.0001386701652892562,8.83388986903079,-0.04021640276169647 -0.0001387901652892562,8.826531363801227,-0.03277910102039616 0.0001389101652892562,8.826531363801227,-0.03277910102039616 -0.0001390301652892562,8.826531363801227,-0.02162314840844592 0.0001391501652892562,8.826531363801227,-0.03649775189104654 -0.0001392701652892562,8.822852111186444,-0.01790449753779599 0.0001393901652892562,8.822852111186444,-0.03277910102039616 -0.0001395101652892562,8.822852111186444,-0.02534179927909586 0.0001396301652892562,8.822852111186444,-0.02534179927909586 -0.0001397501652892562,8.819172858571662,-0.03277910102039616 0.0001398701652892562,8.822852111186444,-0.03277910102039616 -0.0001399901652892562,8.822852111186444,-0.03649775189104654 0.0001401101652892562,8.826531363801227,-0.03277910102039616 -0.0001402301652892562,8.822852111186444,-0.03649775189104654 0.0001403501652892562,8.826531363801227,-0.02906045014974623 -0.0001404701652892562,8.830210616416007,-0.03277910102039616 0.0001405901652892562,8.826531363801227,-0.02162314840844592 -0.0001407101652892562,8.826531363801227,-0.02534179927909586 0.0001408301652892562,8.826531363801227,-0.02534179927909586 -0.0001409501652892562,8.822852111186444,-0.02534179927909586 0.0001410701652892562,8.83388986903079,-0.02534179927909586 -0.0001411901652892562,8.830210616416007,-0.02162314840844592 0.0001413101652892562,8.822852111186444,-0.02906045014974623 -0.0001414301652892562,8.819172858571662,-0.02906045014974623 0.0001415501652892562,8.819172858571662,-0.03277910102039616 -0.0001416701652892562,8.822852111186444,-0.03277910102039616 0.0001417901652892562,8.804455848112534,-0.04765370450299677 -0.0001419101652892562,8.804455848112534,-0.02162314840844592 0.0001420301652892562,8.811814353342099,-0.03277910102039616 -0.0001421501652892562,8.819172858571662,-0.04021640276169647 0.0001422701652892562,8.819172858571662,-0.03649775189104654 -0.0001423901652892562,8.815493605956881,-0.02906045014974623 0.0001425101652892562,8.822852111186444,-0.02534179927909586 -0.0001426301652892562,8.826531363801227,-0.02534179927909586 0.0001427501652892562,8.837569121645572,-0.02162314840844592 -0.0001428701652892562,8.837569121645572,-0.02906045014974623 0.0001429901652892562,8.841248374260353,-0.02906045014974623 -0.0001431101652892562,8.83388986903079,-0.02534179927909586 0.0001432301652892562,8.841248374260353,-0.02906045014974623 -0.0001433501652892562,8.841248374260353,-0.02534179927909586 0.0001434701652892562,8.837569121645572,-0.02906045014974623 -0.0001435901652892562,8.837569121645572,-0.02162314840844592 0.0001437101652892562,8.844927626875135,-0.02534179927909586 -0.0001438301652892562,8.837569121645572,-0.03649775189104654 0.0001439501652892562,8.844927626875135,-0.02534179927909586 -0.0001440701652892562,8.844927626875135,-0.02162314840844592 0.0001441901652892562,8.844927626875135,-0.02534179927909586 -0.0001443101652892562,8.848606879489918,-0.02162314840844592 0.0001444301652892562,8.844927626875135,-0.02534179927909586 -0.0001445501652892562,8.841248374260353,-0.02906045014974623 0.0001446701652892562,8.841248374260353,-0.02534179927909586 -0.0001447901652892562,8.844927626875135,-0.02534179927909586 0.0001449101652892562,8.844927626875135,-0.02534179927909586 -0.0001450301652892562,8.844927626875135,-0.02906045014974623 0.0001451501652892562,8.841248374260353,-0.03277910102039616 -0.0001452701652892562,8.844927626875135,-0.02534179927909586 0.0001453901652892562,8.841248374260353,-0.03277910102039616 -0.0001455101652892562,8.841248374260353,-0.02906045014974623 0.0001456301652892562,8.844927626875135,-0.03649775189104654 -0.0001457501652892562,8.848606879489918,-0.02534179927909586 0.0001458701652892562,8.848606879489918,-0.03277910102039616 -0.0001459901652892562,8.841248374260353,-0.04021640276169647 0.0001461101652892562,8.848606879489918,-0.03277910102039616 -0.0001462301652892562,8.844927626875135,-0.03277910102039616 0.0001463501652892562,8.848606879489918,-0.03277910102039616 -0.0001464701652892562,8.844927626875135,-0.02906045014974623 0.0001465901652892562,8.855965384719481,-0.02162314840844592 -0.0001467101652892562,8.841248374260353,-0.04021640276169647 0.0001468301652892562,8.848606879489918,-0.03277910102039616 -0.0001469501652892562,8.844927626875135,-0.03277910102039616 0.0001470701652892562,8.852286132104698,-0.01790449753779599 -0.0001471901652892562,8.863323889949044,-0.02534179927909586 0.0001473101652892562,8.83388986903079,-0.01790449753779599 -0.0001474301652892562,8.841248374260353,-0.03277910102039616 0.0001475501652892562,8.837569121645572,-0.03277910102039616 -0.0001476701652892562,8.841248374260353,-0.02534179927909586 0.0001477901652892562,8.83388986903079,-0.02906045014974623 -0.0001479101652892562,8.83388986903079,-0.01790449753779599 0.0001480301652892562,8.830210616416007,-0.02534179927909586 -0.0001481501652892562,8.830210616416007,-0.02534179927909586 0.0001482701652892562,8.822852111186444,-0.02906045014974623 -0.0001483901652892562,8.826531363801227,-0.02534179927909586 0.0001485101652892562,8.822852111186444,-0.02906045014974623 -0.0001486301652892562,8.830210616416007,-0.01790449753779599 0.0001487501652892562,8.826531363801227,-0.02162314840844592 -0.0001488701652892562,8.819172858571662,-0.02906045014974623 0.0001489901652892562,8.819172858571662,-0.02906045014974623 -0.0001491101652892562,8.815493605956881,-0.02534179927909586 0.0001492301652892562,8.815493605956881,-0.02162314840844592 -0.0001493501652892562,8.815493605956881,-0.02534179927909586 0.0001494701652892562,8.819172858571662,-0.02906045014974623 -0.0001495901652892562,8.815493605956881,-0.02906045014974623 0.0001497101652892562,8.815493605956881,-0.03649775189104654 -0.0001498301652892562,8.811814353342099,-0.03277910102039616 0.0001499501652892562,8.815493605956881,-0.03277910102039616 -0.0001500701652892562,8.811814353342099,-0.02906045014974623 0.0001501901652892562,8.819172858571662,-0.02906045014974623 -0.0001503101652892562,8.811814353342099,-0.03277910102039616 0.0001504301652892562,8.819172858571662,-0.02906045014974623 -0.0001505501652892562,8.811814353342099,-0.02906045014974623 0.0001506701652892562,8.815493605956881,-0.02162314840844592 -0.0001507901652892562,8.815493605956881,-0.02534179927909586 0.0001509101652892562,8.811814353342099,-0.02906045014974623 -0.0001510301652892562,8.811814353342099,-0.02906045014974623 0.0001511501652892562,8.811814353342099,-0.03277910102039616 -0.0001512701652892562,8.811814353342099,-0.03277910102039616 0.0001513901652892562,8.808135100727316,-0.03277910102039616 -0.0001515101652892562,8.811814353342099,-0.02906045014974623 0.0001516301652892562,8.804455848112534,-0.02906045014974623 -0.0001517501652892562,8.797097342882971,-0.02906045014974623 0.0001518701652892562,8.808135100727316,-0.03277910102039616 -0.0001519901652892562,8.808135100727316,-0.02534179927909586 0.0001521101652892562,8.811814353342099,-0.03277910102039616 -0.0001522301652892562,8.819172858571662,-0.02906045014974623 0.0001523501652892562,8.826531363801227,-0.02162314840844592 -0.0001524701652892562,8.826531363801227,-0.02906045014974623 0.0001525901652892562,8.830210616416007,-0.01790449753779599 -0.0001527101652892562,8.83388986903079,-0.02906045014974623 0.0001528301652892562,8.841248374260353,-0.02162314840844592 -0.0001529501652892562,8.841248374260353,-0.02534179927909586 0.0001530701652892562,8.841248374260353,-0.02162314840844592 -0.0001531901652892562,8.841248374260353,-0.02906045014974623 0.0001533101652892562,8.841248374260353,-0.01418584666714562 -0.0001534301652892562,8.841248374260353,-0.01790449753779599 0.0001535501652892562,8.841248374260353,-0.02906045014974623 -0.0001536701652892562,8.841248374260353,-0.02534179927909586 0.0001537901652892562,8.844927626875135,-0.02906045014974623 -0.0001539101652892562,8.837569121645572,-0.02162314840844592 0.0001540301652892562,8.837569121645572,-0.03277910102039616 -0.0001541501652892562,8.844927626875135,-0.02162314840844592 0.0001542701652892562,8.841248374260353,-0.02534179927909586 -0.0001543901652892562,8.844927626875135,-0.02534179927909586 0.0001545101652892562,8.841248374260353,-0.02534179927909586 -0.0001546301652892562,8.841248374260353,-0.02162314840844592 0.0001547501652892562,8.841248374260353,-0.02534179927909586 -0.0001548701652892562,8.844927626875135,-0.02906045014974623 0.0001549901652892562,8.844927626875135,-0.02534179927909586 -0.0001551101652892562,8.848606879489918,-0.02906045014974623 0.0001552301652892562,8.844927626875135,-0.02534179927909586 -0.0001553501652892562,8.844927626875135,-0.02162314840844592 0.0001554701652892562,8.844927626875135,-0.02162314840844592 -0.0001555901652892562,8.844927626875135,-0.02162314840844592 0.0001557101652892562,8.844927626875135,-0.02534179927909586 -0.0001558301652892562,8.844927626875135,-0.02162314840844592 0.0001559501652892562,8.844927626875135,-0.02534179927909586 -0.0001560701652892562,8.844927626875135,-0.02162314840844592 0.0001561901652892562,8.841248374260353,-0.01790449753779599 -0.0001563101652892562,8.848606879489918,-0.02534179927909586 0.0001564301652892562,8.844927626875135,-0.02162314840844592 -0.0001565501652892562,8.844927626875135,-0.02162314840844592 0.0001566701652892562,8.844927626875135,-0.01790449753779599 -0.0001567901652892562,8.841248374260353,-0.02534179927909586 0.0001569101652892562,8.844927626875135,-0.02534179927909586 -0.0001570301652892562,8.841248374260353,-0.03649775189104654 0.0001571501652892562,8.83388986903079,-0.01046719579649569 -0.0001572701652892562,8.826531363801227,-0.02534179927909586 0.0001573901652892562,8.826531363801227,-0.03277910102039616 -0.0001575101652892562,8.826531363801227,-0.02162314840844592 0.0001576301652892562,8.826531363801227,-0.02906045014974623 -0.0001577501652892562,8.826531363801227,-0.02534179927909586 0.0001578701652892562,8.826531363801227,-0.03277910102039616 -0.0001579901652892562,8.819172858571662,-0.02906045014974623 0.0001581101652892562,8.815493605956881,-0.03649775189104654 -0.0001582301652892562,8.815493605956881,-0.03277910102039616 0.0001583501652892562,8.822852111186444,-0.03649775189104654 -0.0001584701652892562,8.811814353342099,-0.03277910102039616 0.0001585901652892562,8.815493605956881,-0.02906045014974623 -0.0001587101652892562,8.804455848112534,-0.03649775189104654 0.0001588301652892562,8.815493605956881,-0.03277910102039616 -0.0001589501652892562,8.811814353342099,-0.03649775189104654 0.0001590701652892562,8.815493605956881,-0.03277910102039616 -0.0001591901652892562,8.815493605956881,-0.03277910102039616 0.0001593101652892562,8.815493605956881,-0.02906045014974623 -0.0001594301652892562,8.811814353342099,-0.03277910102039616 0.0001595501652892562,8.808135100727316,-0.03277910102039616 -0.0001596701652892562,8.811814353342099,-0.02906045014974623 0.0001597901652892562,8.811814353342099,-0.02534179927909586 -0.0001599101652892562,8.815493605956881,-0.02906045014974623 0.0001600301652892562,8.819172858571662,-0.02162314840844592 -0.0001601501652892562,8.815493605956881,-0.02534179927909586 0.0001602701652892562,8.808135100727316,-0.02534179927909586 -0.0001603901652892562,8.811814353342099,-0.03277910102039616 0.0001605101652892562,8.811814353342099,-0.02906045014974623 -0.0001606301652892562,8.819172858571662,-0.02534179927909586 0.0001607501652892562,8.815493605956881,-0.02534179927909586 -0.0001608701652892562,8.815493605956881,-0.01790449753779599 0.0001609901652892562,8.811814353342099,-0.02534179927909586 -0.0001611101652892562,8.808135100727316,-0.02162314840844592 0.0001612301652892562,8.815493605956881,-0.01418584666714562 -0.0001613501652892562,8.804455848112534,-0.02162314840844592 0.0001614701652892562,8.797097342882971,-0.02162314840844592 -0.0001615901652892562,8.800776595497753,-0.02534179927909586 0.0001617101652892562,8.800776595497753,-0.02534179927909586 -0.0001618301652892562,8.800776595497753,-0.02162314840844592 0.0001619501652892562,8.811814353342099,-0.02906045014974623 -0.0001620701652892562,8.811814353342099,-0.02906045014974623 0.0001621901652892562,8.819172858571662,-0.02162314840844592 -0.0001623101652892562,8.822852111186444,-0.01790449753779599 0.0001624301652892562,8.822852111186444,-0.02906045014974623 -0.0001625501652892562,8.826531363801227,-0.02534179927909586 0.0001626701652892562,8.826531363801227,-0.02534179927909586 -0.0001627901652892562,8.822852111186444,-0.02534179927909586 0.0001629101652892562,8.830210616416007,-0.01418584666714562 -0.0001630301652892562,8.830210616416007,-0.02162314840844592 0.0001631501652892562,8.830210616416007,-0.01790449753779599 -0.0001632701652892562,8.830210616416007,-0.02162314840844592 0.0001633901652892562,8.83388986903079,-0.02534179927909586 -0.0001635101652892562,8.83388986903079,-0.01790449753779599 0.0001636301652892562,8.837569121645572,-0.01790449753779599 -0.0001637501652892562,8.841248374260353,-0.01790449753779599 0.0001638701652892562,8.83388986903079,-0.01790449753779599 -0.0001639901652892562,8.83388986903079,-0.01790449753779599 0.0001641101652892562,8.830210616416007,-0.02534179927909586 -0.0001642301652892562,8.830210616416007,-0.02162314840844592 0.0001643501652892562,8.830210616416007,-0.02534179927909586 -0.0001644701652892562,8.837569121645572,-0.02534179927909586 0.0001645901652892562,8.83388986903079,-0.02906045014974623 -0.0001647101652892562,8.826531363801227,-0.02906045014974623 0.0001648301652892562,8.83388986903079,-0.02906045014974623 -0.0001649501652892562,8.830210616416007,-0.03649775189104654 0.0001650701652892562,8.830210616416007,-0.02534179927909586 -0.0001651901652892562,8.83388986903079,-0.03277910102039616 0.0001653101652892562,8.837569121645572,-0.01790449753779599 -0.0001654301652892562,8.841248374260353,-0.02906045014974623 0.0001655501652892562,8.837569121645572,-0.02534179927909586 -0.0001656701652892562,8.841248374260353,-0.02534179927909586 0.0001657901652892562,8.837569121645572,-0.02534179927909586 -0.0001659101652892562,8.841248374260353,-0.01418584666714562 0.0001660301652892562,8.83388986903079,-0.01790449753779599 -0.0001661501652892562,8.83388986903079,-0.01790449753779599 0.0001662701652892562,8.830210616416007,-0.02162314840844592 -0.0001663901652892562,8.837569121645572,-0.01418584666714562 0.0001665101652892562,8.837569121645572,-0.02534179927909586 -0.0001666301652892562,8.837569121645572,-0.01790449753779599 0.0001667501652892562,8.837569121645572,-0.02162314840844592 -0.0001668701652892562,8.83388986903079,-0.02534179927909586 0.0001669901652892562,8.83388986903079,-0.01418584666714562 -0.0001671101652892562,8.826531363801227,-0.02906045014974623 0.0001672301652892562,8.822852111186444,-0.01418584666714562 -0.0001673501652892562,8.822852111186444,-0.02162314840844592 0.0001674701652892562,8.822852111186444,-0.01418584666714562 -0.0001675901652892562,8.822852111186444,-0.02906045014974623 0.0001677101652892562,8.819172858571662,-0.01790449753779599 -0.0001678301652892562,8.819172858571662,-0.02534179927909586 0.0001679501652892562,8.815493605956881,-0.01790449753779599 -0.0001680701652892562,8.815493605956881,-0.02162314840844592 0.0001681901652892562,8.822852111186444,-0.02162314840844592 -0.0001683101652892562,8.819172858571662,-0.01790449753779599 0.0001684301652892562,8.819172858571662,-0.01790449753779599 -0.0001685501652892562,8.819172858571662,-0.02534179927909586 0.0001686701652892562,8.815493605956881,-0.02534179927909586 -0.0001687901652892562,8.822852111186444,-0.02534179927909586 0.0001689101652892562,8.811814353342099,-0.02162314840844592 -0.0001690301652892562,8.815493605956881,-0.02162314840844592 0.0001691501652892562,8.811814353342099,-0.02534179927909586 -0.0001692701652892562,8.811814353342099,-0.02906045014974623 0.0001693901652892562,8.811814353342099,-0.03277910102039616 -0.0001695101652892562,8.804455848112534,-0.02906045014974623 0.0001696301652892562,8.811814353342099,-0.02534179927909586 -0.0001697501652892562,8.811814353342099,-0.02162314840844592 0.0001698701652892562,8.808135100727316,-0.03277910102039616 -0.0001699901652892562,8.811814353342099,-0.02906045014974623 0.0001701101652892562,8.811814353342099,-0.03649775189104654 -0.0001702301652892562,8.811814353342099,-0.03277910102039616 0.0001703501652892562,8.811814353342099,-0.02906045014974623 -0.0001704701652892562,8.815493605956881,-0.02906045014974623 0.0001705901652892562,8.804455848112534,-0.02906045014974623 -0.0001707101652892562,8.804455848112534,-0.02906045014974623 0.0001708301652892562,8.811814353342099,-0.03649775189104654 -0.0001709501652892562,8.804455848112534,-0.03649775189104654 0.0001710701652892562,8.800776595497753,-0.03277910102039616 -0.0001711901652892562,8.800776595497753,-0.03277910102039616 0.0001713101652892562,8.797097342882971,-0.02162314840844592 -0.0001714301652892562,8.786059585038625,-0.04021640276169647 0.0001715501652892562,8.793418090268188,-0.03277910102039616 -0.0001716701652892562,8.804455848112534,-0.03277910102039616 0.0001717901652892562,8.800776595497753,-0.02162314840844592 -0.0001719101652892562,8.804455848112534,-0.02162314840844592 0.0001720301652892562,8.811814353342099,-0.02534179927909586 -0.0001721501652892562,8.815493605956881,-0.02534179927909586 0.0001722701652892562,8.815493605956881,-0.02906045014974623 -0.0001723901652892562,8.819172858571662,-0.02534179927909586 0.0001725101652892562,8.819172858571662,-0.02906045014974623 -0.0001726301652892562,8.822852111186444,-0.02534179927909586 0.0001727501652892562,8.822852111186444,-0.02906045014974623 -0.0001728701652892562,8.822852111186444,-0.02162314840844592 0.0001729901652892562,8.819172858571662,-0.02906045014974623 -0.0001731101652892562,8.830210616416007,-0.02534179927909586 0.0001732301652892562,8.83388986903079,-0.02534179927909586 -0.0001733501652892562,8.830210616416007,-0.02162314840844592 0.0001734701652892562,8.83388986903079,-0.01790449753779599 -0.0001735901652892562,8.83388986903079,-0.02162314840844592 0.0001737101652892562,8.837569121645572,-0.01790449753779599 -0.0001738301652892562,8.83388986903079,-0.02162314840844592 0.0001739501652892562,8.83388986903079,-0.02534179927909586 -0.0001740701652892562,8.830210616416007,-0.02162314840844592 0.0001741901652892562,8.830210616416007,-0.02162314840844592 -0.0001743101652892562,8.83388986903079,-0.02162314840844592 0.0001744301652892562,8.830210616416007,-0.02162314840844592 -0.0001745501652892562,8.830210616416007,-0.02906045014974623 0.0001746701652892562,8.830210616416007,-0.02162314840844592 -0.0001747901652892562,8.822852111186444,-0.02906045014974623 0.0001749101652892562,8.83388986903079,-0.01790449753779599 -0.0001750301652892562,8.83388986903079,-0.02534179927909586 0.0001751501652892562,8.826531363801227,-0.02906045014974623 -0.0001752701652892562,8.83388986903079,-0.01790449753779599 0.0001753901652892562,8.826531363801227,-0.03277910102039616 -0.0001755101652892562,8.83388986903079,-0.02906045014974623 0.0001756301652892562,8.830210616416007,-0.01790449753779599 -0.0001757501652892562,8.837569121645572,-0.02162314840844592 0.0001758701652892562,8.837569121645572,-0.01790449753779599 -0.0001759901652892562,8.837569121645572,-0.02534179927909586 0.0001761101652892562,8.841248374260353,-0.02534179927909586 -0.0001762301652892562,8.844927626875135,-0.02162314840844592 0.0001763501652892562,8.837569121645572,-0.02534179927909586 -0.0001764701652892562,8.841248374260353,-0.02162314840844592 0.0001765901652892562,8.837569121645572,-0.02906045014974623 -0.0001767101652892562,8.837569121645572,-0.02534179927909586 0.0001768301652892562,8.841248374260353,-0.02534179927909586 -0.0001769501652892562,8.826531363801227,-0.03649775189104654 0.0001770701652892562,8.830210616416007,-0.02906045014974623 -0.0001771901652892562,8.826531363801227,-0.02534179927909586 0.0001773101652892562,8.826531363801227,-0.02162314840844592 -0.0001774301652892562,8.819172858571662,-0.02906045014974623 0.0001775501652892562,8.822852111186444,-0.02162314840844592 -0.0001776701652892562,8.815493605956881,-0.02534179927909586 0.0001777901652892562,8.815493605956881,-0.02162314840844592 -0.0001779101652892562,8.819172858571662,-0.02906045014974623 0.0001780301652892562,8.826531363801227,-0.02162314840844592 -0.0001781501652892562,8.815493605956881,-0.02162314840844592 0.0001782701652892562,8.819172858571662,-0.02906045014974623 -0.0001783901652892562,8.819172858571662,-0.02534179927909586 0.0001785101652892562,8.800776595497753,-0.02534179927909586 -0.0001786301652892562,8.811814353342099,-0.01790449753779599 0.0001787501652892562,8.811814353342099,-0.02534179927909586 -0.0001788701652892562,8.815493605956881,-0.01418584666714562 0.0001789901652892562,8.811814353342099,-0.02534179927909586 -0.0001791101652892562,8.808135100727316,-0.02534179927909586 0.0001792301652892562,8.808135100727316,-0.02906045014974623 -0.0001793501652892562,8.811814353342099,-0.02906045014974623 0.0001794701652892562,8.804455848112534,-0.02906045014974623 -0.0001795901652892562,8.811814353342099,-0.02162314840844592 0.0001797101652892562,8.808135100727316,-0.02534179927909586 -0.0001798301652892562,8.808135100727316,-0.02906045014974623 0.0001799501652892562,8.804455848112534,-0.02162314840844592 -0.0001800701652892562,8.804455848112534,-0.03277910102039616 0.0001801901652892562,8.804455848112534,-0.01790449753779599 -0.0001803101652892562,8.800776595497753,-0.02162314840844592 0.0001804301652892562,8.804455848112534,-0.02534179927909586 -0.0001805501652892562,8.804455848112534,-0.02534179927909586 0.0001806701652892562,8.808135100727316,-0.02534179927909586 -0.0001807901652892562,8.808135100727316,-0.02534179927909586 0.0001809101652892562,8.808135100727316,-0.02534179927909586 -0.0001810301652892562,8.808135100727316,-0.01790449753779599 0.0001811501652892562,8.992097731466409,3.76396343791335 -0.0001812701652892562,8.591059196455188,4.801467030824726 0.0001813901652892562,6.887565235811196,4.808904332566026 -0.0001815101652892562,4.908127329058567,4.842372190401877 0.0001816301652892562,2.825670349092046,4.842372190401877 -0.0001817501652892562,0.8167984214211605,4.846090841272527 0.0001818701652892562,-1.011790128125414,4.857246793884478 -0.0001819901652892562,-2.715284088769405,4.853528143013827 0.0001821101652892562,-4.407740291569052,4.857246793884478 -0.0001822301652892562,-6.070762473450444,4.864684095625778 0.0001823501652892562,-7.866237749463981,4.860965444755127 -0.0001824701652892562,-9.418882352901916,4.860965444755127 0.0001825901652892562,-9.6653922780923,4.864684095625778 -0.0001827101652892562,-9.727939572543592,4.853528143013827 0.0001828301652892562,-9.772090603920974,4.864684095625778 -0.0001829501652892562,-9.794166119609665,4.868402746496427 0.0001830701652892562,-9.808883130068791,4.857246793884478 -0.0001831901652892562,-9.812562382683575,4.857246793884478 0.0001833101652892562,-9.816241635298356,4.849809492143176 -0.0001834301652892562,-9.823600140527921,4.860965444755127 0.0001835501652892562,-9.830958645757482,4.849809492143176 -0.0001836701652892562,-9.827279393142701,4.857246793884478 0.0001837901652892562,-9.827279393142701,4.853528143013827 -0.0001839101652892562,-9.827279393142701,4.857246793884478 0.0001840301652892562,-9.830958645757482,4.849809492143176 -0.0001841501652892562,-9.827279393142701,4.849809492143176 0.0001842701652892562,-9.830958645757482,4.853528143013827 -0.0001843901652892562,-9.834637898372266,4.846090841272527 0.0001845101652892562,-9.830958645757482,4.849809492143176 -0.0001846301652892562,-9.834637898372266,4.842372190401877 0.0001847501652892562,-9.830958645757482,4.838653539531228 -0.0001848701652892562,-9.841996403601827,4.834934888660577 0.0001849901652892562,-9.830958645757482,4.849809492143176 -0.0001851101652892562,-9.834637898372266,4.846090841272527 0.0001852301652892562,-9.838317150987047,4.842372190401877 -0.0001853501652892562,-9.838317150987047,4.846090841272527 0.0001854701652892562,-9.830958645757482,4.838653539531228 -0.0001855901652892562,-9.838317150987047,4.842372190401877 0.0001857101652892562,-9.830958645757482,4.842372190401877 -0.0001858301652892562,-9.841996403601827,4.842372190401877 0.0001859501652892562,-9.841996403601827,4.842372190401877 -0.0001860701652892562,-9.838317150987047,4.842372190401877 0.0001861901652892562,-9.845675656216612,4.842372190401877 -0.0001863101652892562,-9.841996403601827,4.838653539531228 0.0001864301652892562,-9.80152462483923,4.820060285177977 -0.0001865501652892562,-9.80520387745401,4.864684095625778 0.0001866701652892562,-9.838317150987047,4.842372190401877 -0.0001867901652892562,-9.838317150987047,4.846090841272527 0.0001869101652892562,-9.841996403601827,4.846090841272527 -0.0001870301652892562,-9.834637898372266,4.842372190401877 0.0001871501652892562,-9.845675656216612,4.849809492143176 -0.0001872701652892562,-9.838317150987047,4.846090841272527 0.0001873901652892562,-9.841996403601827,4.838653539531228 -0.0001875101652892562,-9.838317150987047,4.834934888660577 0.0001876301652892562,-9.841996403601827,4.842372190401877 -0.0001877501652892562,-9.841996403601827,4.846090841272527 0.0001878701652892562,-9.845675656216612,4.842372190401877 -0.0001879901652892562,-9.845675656216612,4.849809492143176 0.0001881101652892562,-9.841996403601827,4.842372190401877 -0.0001882301652892562,-9.841996403601827,4.842372190401877 0.0001883501652892562,-9.841996403601827,4.842372190401877 -0.0001884701652892562,-9.841996403601827,4.842372190401877 0.0001885901652892562,-9.841996403601827,4.842372190401877 -0.0001887101652892562,-9.841996403601827,4.846090841272527 0.0001888301652892562,-9.845675656216612,4.842372190401877 -0.0001889501652892562,-9.849354908831392,4.842372190401877 0.0001890701652892562,-9.849354908831392,4.849809492143176 -0.0001891901652892562,-9.849354908831392,4.842372190401877 0.0001893101652892562,-9.856713414060957,4.842372190401877 -0.0001894301652892562,-9.853034161446173,4.846090841272527 0.0001895501652892562,-9.853034161446173,4.846090841272527 -0.0001896701652892562,-9.860392666675738,4.846090841272527 0.0001897901652892562,-9.860392666675738,4.834934888660577 -0.0001899101652892562,-9.856713414060957,4.834934888660577 0.0001900301652892562,-9.856713414060957,4.838653539531228 -0.0001901501652892562,-9.860392666675738,4.842372190401877 0.0001902701652892562,-9.864071919290518,4.842372190401877 -0.0001903901652892562,-9.864071919290518,4.846090841272527 0.0001905101652892562,-9.860392666675738,4.846090841272527 -0.0001906301652892562,-9.864071919290518,4.834934888660577 0.0001907501652892562,-9.864071919290518,4.838653539531228 -0.0001908701652892562,-9.738977330387938,4.831216237789928 0.0001909901652892562,-9.838317150987047,4.842372190401877 -0.0001911101652892562,-9.875109677134864,4.846090841272527 0.0001912301652892562,-9.875109677134864,4.842372190401877 -0.0001913501652892562,-9.878788929749648,4.831216237789928 0.0001914701652892562,-9.878788929749648,4.838653539531228 -0.0001915901652892562,-9.878788929749648,4.834934888660577 0.0001917101652892562,-9.882468182364429,4.838653539531228 -0.0001918301652892562,-9.882468182364429,4.838653539531228 0.0001919501652892562,-9.882468182364429,4.838653539531228 -0.0001920701652892562,-9.882468182364429,4.842372190401877 0.0001921901652892562,-9.882468182364429,4.834934888660577 -0.0001923101652892562,-9.886147434979209,4.834934888660577 0.0001924301652892562,-9.889826687593994,4.831216237789928 -0.0001925501652892562,-9.889826687593994,4.846090841272527 0.0001926701652892562,-9.889826687593994,4.842372190401877 -0.0001927901652892562,-9.886147434979209,4.834934888660577 0.0001929101652892562,-9.897185192823555,4.834934888660577 -0.0001930301652892562,-9.893505940208774,4.834934888660577 0.0001931501652892562,-9.889826687593994,4.838653539531228 -0.0001932701652892562,-9.897185192823555,4.834934888660577 0.0001933901652892562,-9.90454369805312,4.834934888660577 -0.0001935101652892562,-9.90454369805312,4.834934888660577 0.0001936301652892562,-9.90454369805312,4.838653539531228 -0.0001937501652892562,-9.900864445438339,4.838653539531228 0.0001938701652892562,-9.911902203282684,4.834934888660577 -0.0001939901652892562,-9.9082229506679,4.838653539531228 0.0001941101652892562,-9.90454369805312,4.838653539531228 -0.0001942301652892562,-9.911902203282684,4.834934888660577 0.0001943501652892562,-9.9082229506679,4.846090841272527 -0.0001944701652892562,-9.90454369805312,4.842372190401877 0.0001945901652892562,-9.90454369805312,4.838653539531228 -0.0001947101652892562,-9.911902203282684,4.842372190401877 0.0001948301652892562,-9.911902203282684,4.838653539531228 -0.0001949501652892562,-9.90454369805312,4.838653539531228 0.0001950701652892562,-9.9082229506679,4.838653539531228 -0.0001951901652892562,-9.90454369805312,4.842372190401877 0.0001953101652892562,-9.911902203282684,4.842372190401877 -0.0001954301652892562,-9.911902203282684,4.838653539531228 0.0001955501652892562,-9.915581455897465,4.838653539531228 -0.0001956701652892562,-9.911902203282684,4.838653539531228 0.0001957901652892562,-9.911902203282684,4.838653539531228 -0.0001959101652892562,-9.9082229506679,4.842372190401877 0.0001960301652892562,-9.911902203282684,4.834934888660577 -0.0001961501652892562,-9.893505940208774,4.823778936048626 0.0001962701652892562,-9.841996403601827,4.846090841272527 -0.0001963901652892562,-9.893505940208774,4.834934888660577 0.0001965101652892562,-9.900864445438339,4.842372190401877 -0.0001966301652892562,-9.90454369805312,4.831216237789928 0.0001967501652892562,-9.897185192823555,4.834934888660577 -0.0001968701652892562,-9.90454369805312,4.838653539531228 0.0001969901652892562,-9.893505940208774,4.834934888660577 -0.0001971101652892562,-9.90454369805312,4.834934888660577 0.0001972301652892562,-9.900864445438339,4.834934888660577 -0.0001973501652892562,-9.90454369805312,4.827497586919277 0.0001974701652892562,-9.9082229506679,4.834934888660577 -0.0001975901652892562,-9.900864445438339,4.838653539531228 0.0001977101652892562,-9.900864445438339,4.834934888660577 -0.0001978301652892562,-9.900864445438339,4.838653539531228 0.0001979501652892562,-9.90454369805312,4.823778936048626 -0.0001980701652892562,-9.90454369805312,4.834934888660577 0.0001981901652892562,-9.9082229506679,4.838653539531228 -0.0001983101652892562,-9.911902203282684,4.834934888660577 0.0001984301652892562,-9.9082229506679,4.831216237789928 -0.0001985501652892562,-9.9082229506679,4.838653539531228 0.0001986701652892562,-9.9082229506679,4.834934888660577 -0.0001987901652892562,-9.9082229506679,4.838653539531228 0.0001989101652892562,-9.911902203282684,4.834934888660577 -0.0001990301652892562,-9.9082229506679,4.827497586919277 0.0001991501652892562,-9.911902203282684,4.831216237789928 -0.0001992701652892562,-9.90454369805312,4.831216237789928 0.0001993901652892562,-9.9082229506679,4.834934888660577 -0.0001995101652892562,-9.915581455897465,4.827497586919277 0.0001996301652892562,-9.911902203282684,4.827497586919277 -0.0001997501652892562,-9.9082229506679,4.823778936048626 0.0001998701652892562,-9.9082229506679,4.827497586919277 -0.0001999901652892562,-9.915581455897465,4.834934888660577 0.0002001101652892562,-9.9082229506679,4.827497586919277 -0.0002002301652892562,-9.9082229506679,4.831216237789928 0.0002003501652892562,-9.9082229506679,4.831216237789928 -0.0002004701652892562,-9.911902203282684,4.831216237789928 0.0002005901652892562,-9.830958645757482,4.820060285177977 -0.0002007101652892562,-9.827279393142701,4.838653539531228 0.0002008301652892562,-9.911902203282684,4.838653539531228 -0.0002009501652892562,-9.915581455897465,4.831216237789928 0.0002010701652892562,-9.911902203282684,4.838653539531228 -0.0002011901652892562,-9.915581455897465,4.834934888660577 0.0002013101652892562,-9.915581455897465,4.827497586919277 -0.0002014301652892562,-9.926619213741811,4.831216237789928 0.0002015501652892562,-9.919260708512246,4.831216237789928 -0.0002016701652892562,-9.92293996112703,4.838653539531228 0.0002017901652892562,-9.915581455897465,4.834934888660577 -0.0002019101652892562,-9.915581455897465,4.831216237789928 0.0002020301652892562,-9.919260708512246,4.827497586919277 -0.0002021501652892562,-9.919260708512246,4.831216237789928 0.0002022701652892562,-9.92293996112703,4.831216237789928 -0.0002023901652892562,-9.926619213741811,4.838653539531228 0.0002025101652892562,-9.919260708512246,4.831216237789928 -0.0002026301652892562,-9.92293996112703,4.834934888660577 0.0002027501652892562,-9.92293996112703,4.831216237789928 -0.0002028701652892562,-9.92293996112703,4.823778936048626 0.0002029901652892562,-9.919260708512246,4.834934888660577 -0.0002031101652892562,-9.915581455897465,4.831216237789928 0.0002032301652892562,-9.92293996112703,4.831216237789928 -0.0002033501652892562,-9.926619213741811,4.831216237789928 0.0002034701652892562,-9.92293996112703,4.831216237789928 -0.0002035901652892562,-9.915581455897465,4.827497586919277 0.0002037101652892562,-9.92293996112703,4.834934888660577 -0.0002038301652892562,-9.919260708512246,4.831216237789928 0.0002039501652892562,-9.919260708512246,4.838653539531228 -0.0002040701652892562,-9.919260708512246,4.834934888660577 0.0002041901652892562,-9.92293996112703,4.834934888660577 -0.0002043101652892562,-9.919260708512246,4.834934888660577 0.0002044301652892562,-9.92293996112703,4.823778936048626 -0.0002045501652892562,-9.915581455897465,4.827497586919277 0.0002046701652892562,-9.919260708512246,4.831216237789928 -0.0002047901652892562,-9.92293996112703,4.831216237789928 0.0002049101652892562,-9.915581455897465,4.831216237789928 -0.0002050301652892562,-9.92293996112703,4.823778936048626 0.0002051501652892562,-9.92293996112703,4.827497586919277 -0.0002052701652892562,-9.926619213741811,4.823778936048626 0.0002053901652892562,-9.919260708512246,4.831216237789928 -0.0002055101652892562,-9.926619213741811,4.827497586919277 0.0002056301652892562,-9.92293996112703,4.827497586919277 -0.0002057501652892562,-9.919260708512246,4.823778936048626 0.0002058701652892562,-9.915581455897465,4.823778936048626 -0.0002059901652892562,-9.853034161446173,4.820060285177977 0.0002061101652892562,-9.9082229506679,4.827497586919277 -0.0002062301652892562,-9.911902203282684,4.823778936048626 0.0002063501652892562,-9.915581455897465,4.823778936048626 -0.0002064701652892562,-9.915581455897465,4.831216237789928 0.0002065901652892562,-9.915581455897465,4.827497586919277 -0.0002067101652892562,-9.915581455897465,4.827497586919277 0.0002068301652892562,-9.911902203282684,4.827497586919277 -0.0002069501652892562,-9.915581455897465,4.827497586919277 0.0002070701652892562,-9.915581455897465,4.827497586919277 -0.0002071901652892562,-9.926619213741811,1.00472449189098 0.0002073101652892562,-9.92293996112703,-0.003029894055195381 -0.0002074301652892562,-9.911902203282684,-0.01046719579649569 0.0002075501652892562,-9.911902203282684,-0.03649775189104654 -0.0002076701652892562,-9.720581067314027,-0.0439350536323464 0.0002077901652892562,-7.30331209940236,-0.04765370450299677 -0.0002079101652892562,-5.559346359995768,-0.04765370450299677 0.0002080301652892562,-3.991984746098703,-0.05509100624429664 -0.0002081501652892562,-2.461415658349459,-0.05509100624429664 0.0002082701652892562,-0.9455635810593401,-0.05880965711494701 -0.0002083901652892562,0.8167984214211605,-0.05880965711494701 0.0002085101652892562,2.913972411846809,-0.05880965711494701 -0.0002086301652892562,4.757277971852512,-0.06252830798559694 0.0002087501652892562,6.828697193974687,-0.05137235537364671 -0.0002088701652892562,8.65360649090648,-0.05880965711494701 0.0002089901652892562,9.621249928594104,-0.05880965711494701 -0.0002091101652892562,9.705872738734085,-0.05509100624429664 0.0002092301652892562,9.727948254422776,-0.05509100624429664 -0.0002093501652892562,9.738986012267121,-0.05509100624429664 0.0002094701652892562,9.742665264881904,-0.05509100624429664 -0.0002095901652892562,9.750023770111468,-0.05137235537364671 0.0002097101652892562,9.742665264881904,-0.05509100624429664 -0.0002098301652892562,9.738986012267121,-0.05509100624429664 0.0002099501652892562,9.735306759652341,-0.05880965711494701 -0.0002100701652892562,9.738986012267121,-0.05509100624429664 0.0002101901652892562,9.735306759652341,-0.05137235537364671 -0.0002103101652892562,9.727948254422776,-0.04765370450299677 0.0002104301652892562,9.698514233504522,-0.05137235537364671 -0.0002105501652892562,9.698514233504522,-0.06252830798559694 0.0002106701652892562,9.71323124396365,-0.05509100624429664 -0.0002107901652892562,9.724269001807995,-0.05509100624429664 0.0002109101652892562,9.724269001807995,-0.05137235537364671 -0.0002110301652892562,9.71691049657843,-0.05137235537364671 0.0002111501652892562,9.720589749193213,-0.05509100624429664 -0.0002112701652892562,9.71691049657843,-0.05880965711494701 0.0002113901652892562,9.71323124396365,-0.05880965711494701 -0.0002115101652892562,9.709551991348867,-0.05880965711494701 0.0002116301652892562,9.71323124396365,-0.04765370450299677 -0.0002117501652892562,9.71323124396365,-0.05137235537364671 0.0002118701652892562,9.71323124396365,-0.0439350536323464 -0.0002119901652892562,9.705872738734085,-0.05509100624429664 0.0002121101652892562,9.705872738734085,-0.04765370450299677 -0.0002122301652892562,9.709551991348867,-0.0439350536323464 0.0002123501652892562,9.705872738734085,-0.04765370450299677 -0.0002124701652892562,9.705872738734085,-0.0439350536323464 0.0002125901652892562,9.698514233504522,-0.04765370450299677 -0.0002127101652892562,9.702193486119302,-0.04765370450299677 0.0002128301652892562,9.702193486119302,-0.05509100624429664 -0.0002129501652892562,9.694834980889739,-0.05137235537364671 0.0002130701652892562,9.698514233504522,-0.05509100624429664 -0.0002131901652892562,9.698514233504522,-0.04765370450299677 0.0002133101652892562,9.698514233504522,-0.05137235537364671 -0.0002134301652892562,9.702193486119302,-0.05137235537364671 0.0002135501652892562,9.694834980889739,-0.04765370450299677 -0.0002136701652892562,9.698514233504522,-0.05880965711494701 0.0002137901652892562,9.702193486119302,-0.05509100624429664 -0.0002139101652892562,9.698514233504522,-0.05509100624429664 0.0002140301652892562,9.705872738734085,-0.05137235537364671 -0.0002141501652892562,9.698514233504522,-0.05509100624429664 0.0002142701652892562,9.705872738734085,-0.04765370450299677 -0.0002143901652892562,9.702193486119302,-0.0439350536323464 0.0002145101652892562,9.705872738734085,-0.05509100624429664 -0.0002146301652892562,9.698514233504522,-0.0439350536323464 0.0002147501652892562,9.702193486119302,-0.05137235537364671 -0.0002148701652892562,9.702193486119302,-0.05137235537364671 0.0002149901652892562,9.698514233504522,-0.04765370450299677 -0.0002151101652892562,9.705872738734085,-0.04765370450299677 0.0002152301652892562,9.702193486119302,-0.05137235537364671 -0.0002153501652892562,9.705872738734085,-0.04765370450299677 0.0002154701652892562,9.709551991348867,-0.05509100624429664 -0.0002155901652892562,9.705872738734085,-0.05509100624429664 0.0002157101652892562,9.702193486119302,-0.05137235537364671 -0.0002158301652892562,9.705872738734085,-0.05509100624429664 0.0002159501652892562,9.687476475660176,-0.05137235537364671 -0.0002160701652892562,9.687476475660176,-0.04765370450299677 0.0002161901652892562,9.683797223045394,-0.05509100624429664 -0.0002163101652892562,9.683797223045394,-0.04765370450299677 0.0002164301652892562,9.683797223045394,-0.05880965711494701 -0.0002165501652892562,9.676438717815831,-0.05509100624429664 0.0002166701652892562,9.676438717815831,-0.05880965711494701 -0.0002167901652892562,9.669080212586266,-0.06252830798559694 0.0002169101652892562,9.676438717815831,-0.05880965711494701 -0.0002170301652892562,9.676438717815831,-0.05880965711494701 0.0002171501652892562,9.676438717815831,-0.04765370450299677 -0.0002172701652892562,9.672759465201048,-0.06252830798559694 0.0002173901652892562,9.680117970430612,-0.04765370450299677 -0.0002175101652892562,9.672759465201048,-0.06252830798559694 0.0002176301652892562,9.676438717815831,-0.04765370450299677 -0.0002177501652892562,9.669080212586266,-0.05137235537364671 0.0002178701652892562,9.676438717815831,-0.04765370450299677 -0.0002179901652892562,9.669080212586266,-0.04765370450299677 0.0002181101652892562,9.669080212586266,-0.05509100624429664 -0.0002182301652892562,9.672759465201048,-0.05137235537364671 0.0002183501652892562,9.665400959971485,-0.05880965711494701 -0.0002184701652892562,9.669080212586266,-0.0439350536323464 0.0002185901652892562,9.676438717815831,-0.05137235537364671 -0.0002187101652892562,9.672759465201048,-0.05137235537364671 0.0002188301652892562,9.669080212586266,-0.05509100624429664 -0.0002189501652892562,9.665400959971485,-0.05509100624429664 0.0002190701652892562,9.665400959971485,-0.05509100624429664 -0.0002191901652892562,9.669080212586266,-0.05880965711494701 0.0002193101652892562,9.669080212586266,-0.04765370450299677 -0.0002194301652892562,9.665400959971485,-0.05137235537364671 0.0002195501652892562,9.669080212586266,-0.05137235537364671 -0.0002196701652892562,9.661721707356703,-0.06252830798559694 0.0002197901652892562,9.658042454741921,-0.05137235537364671 -0.0002199101652892562,9.65436320212714,-0.05509100624429664 0.0002200301652892562,9.658042454741921,-0.05509100624429664 -0.0002201501652892562,9.65436320212714,-0.05880965711494701 0.0002202701652892562,9.650683949512358,-0.06252830798559694 -0.0002203901652892562,9.643325444282794,-0.05880965711494701 0.0002205101652892562,9.650683949512358,-0.06996560972689725 -0.0002206301652892562,9.65436320212714,-0.06252830798559694 0.0002207501652892562,9.658042454741921,-0.06624695885624732 -0.0002208701652892562,9.669080212586266,-0.05880965711494701 0.0002209901652892562,9.669080212586266,-0.06252830798559694 -0.0002211101652892562,9.672759465201048,-0.06624695885624732 0.0002212301652892562,9.669080212586266,-0.06252830798559694 -0.0002213501652892562,9.676438717815831,-0.05880965711494701 0.0002214701652892562,9.672759465201048,-0.06252830798559694 -0.0002215901652892562,9.672759465201048,-0.06624695885624732 0.0002217101652892562,9.669080212586266,-0.05880965711494701 -0.0002218301652892562,9.665400959971485,-0.06252830798559694 0.0002219501652892562,9.672759465201048,-0.07368426059754718 -0.0002220701652892562,9.672759465201048,-0.06624695885624732 0.0002221901652892562,9.676438717815831,-0.06252830798559694 -0.0002223101652892562,9.676438717815831,-0.06252830798559694 0.0002224301652892562,9.676438717815831,-0.06624695885624732 -0.0002225501652892562,9.665400959971485,-0.06624695885624732 0.0002226701652892562,9.665400959971485,-0.07368426059754718 -0.0002227901652892562,9.665400959971485,-0.06624695885624732 0.0002229101652892562,9.669080212586266,-0.06624695885624732 -0.0002230301652892562,9.665400959971485,-0.06252830798559694 0.0002231501652892562,9.669080212586266,-0.06252830798559694 -0.0002232701652892562,9.661721707356703,-0.06624695885624732 0.0002233901652892562,9.661721707356703,-0.06252830798559694 -0.0002235101652892562,9.658042454741921,-0.06624695885624732 0.0002236301652892562,9.665400959971485,-0.06624695885624732 -0.0002237501652892562,9.658042454741921,-0.06252830798559694 0.0002238701652892562,9.661721707356703,-0.06252830798559694 -0.0002239901652892562,9.665400959971485,-0.06252830798559694 0.0002241101652892562,9.661721707356703,-0.06252830798559694 -0.0002242301652892562,9.661721707356703,-0.06624695885624732 0.0002243501652892562,9.658042454741921,-0.06252830798559694 -0.0002244701652892562,9.665400959971485,-0.05509100624429664 0.0002245901652892562,9.661721707356703,-0.06252830798559694 -0.0002247101652892562,9.65436320212714,-0.06252830798559694 0.0002248301652892562,9.650683949512358,-0.06624695885624732 -0.0002249501652892562,9.658042454741921,-0.05880965711494701 0.0002250701652892562,9.650683949512358,-0.06624695885624732 -0.0002251901652892562,9.65436320212714,-0.05509100624429664 0.0002253101652892562,9.65436320212714,-0.05509100624429664 -0.0002254301652892562,9.650683949512358,-0.05880965711494701 0.0002255501652892562,9.643325444282794,-0.07368426059754718 -0.0002256701652892562,9.650683949512358,-0.05509100624429664 0.0002257901652892562,9.639646191668012,-0.05509100624429664 -0.0002259101652892562,9.628608433823667,-0.06252830798559694 0.0002260301652892562,9.63596693905323,-0.05880965711494701 -0.0002261501652892562,9.624929181208884,-0.06252830798559694 0.0002262701652892562,9.628608433823667,-0.06252830798559694 -0.0002263901652892562,9.617570675979321,-0.06624695885624732 0.0002265101652892562,9.621249928594104,-0.06252830798559694 -0.0002266301652892562,9.617570675979321,-0.06624695885624732 0.0002267501652892562,9.621249928594104,-0.06252830798559694 -0.0002268701652892562,9.613891423364539,-0.06252830798559694 0.0002269901652892562,9.617570675979321,-0.06624695885624732 -0.0002271101652892562,9.617570675979321,-0.06624695885624732 0.0002272301652892562,9.610212170749758,-0.06996560972689725 -0.0002273501652892562,9.610212170749758,-0.05880965711494701 0.0002274701652892562,9.610212170749758,-0.06624695885624732 -0.0002275901652892562,9.602853665520193,-0.05880965711494701 0.0002277101652892562,9.602853665520193,-0.06252830798559694 -0.0002278301652892562,9.610212170749758,-0.06252830798559694 0.0002279501652892562,9.602853665520193,-0.06252830798559694 -0.0002280701652892562,9.606532918134976,-0.06624695885624732 0.0002281901652892562,9.602853665520193,-0.05880965711494701 -0.0002283101652892562,9.602853665520193,-0.05880965711494701 0.0002284301652892562,9.599174412905413,-0.06624695885624732 -0.0002285501652892562,9.59549516029063,-0.06252830798559694 0.0002286701652892562,9.599174412905413,-0.06624695885624732 -0.0002287901652892562,9.591815907675848,-0.06996560972689725 0.0002289101652892562,9.591815907675848,-0.06624695885624732 -0.0002290301652892562,9.588136655061067,-0.05880965711494701 0.0002291501652892562,9.580778149831502,-0.06252830798559694 -0.0002292701652892562,9.577098897216722,-0.06624695885624732 0.0002293901652892562,9.573419644601939,-0.06252830798559694 -0.0002295101652892562,9.573419644601939,-0.06624695885624732 0.0002296301652892562,9.577098897216722,-0.05880965711494701 -0.0002297501652892562,9.573419644601939,-0.06252830798559694 0.0002298701652892562,9.569740391987157,-0.05509100624429664 -0.0002299901652892562,9.558702634142811,-0.07368426059754718 0.0002301101652892562,9.551344128913248,-0.05880965711494701 -0.0002302301652892562,9.551344128913248,-0.06996560972689725 0.0002303501652892562,9.562381886757594,-0.05880965711494701 -0.0002304701652892562,9.566061139372376,-0.05509100624429664 0.0002305901652892562,9.562381886757594,-0.05880965711494701 -0.0002307101652892562,9.569740391987157,-0.05509100624429664 0.0002308301652892562,9.566061139372376,-0.06252830798559694 -0.0002309501652892562,9.569740391987157,-0.05509100624429664 0.0002310701652892562,9.573419644601939,-0.05880965711494701 -0.0002311901652892562,9.569740391987157,-0.05137235537364671 0.0002313101652892562,9.573419644601939,-0.06252830798559694 -0.0002314301652892562,9.573419644601939,-0.05509100624429664 0.0002315501652892562,9.562381886757594,-0.06624695885624732 -0.0002316701652892562,9.566061139372376,-0.05880965711494701 0.0002317901652892562,9.566061139372376,-0.05880965711494701 -0.0002319101652892562,9.566061139372376,-0.06252830798559694 0.0002320301652892562,9.562381886757594,-0.05137235537364671 -0.0002321501652892562,9.558702634142811,-0.06624695885624732 0.0002322701652892562,9.558702634142811,-0.05509100624429664 -0.0002323901652892562,9.555023381528031,-0.05880965711494701 0.0002325101652892562,9.555023381528031,-0.05509100624429664 -0.0002326301652892562,9.547664876298466,-0.05509100624429664 0.0002327501652892562,9.551344128913248,-0.05509100624429664 -0.0002328701652892562,9.551344128913248,-0.05509100624429664 0.0002329901652892562,9.543985623683685,-0.06252830798559694 -0.0002331101652892562,9.543985623683685,-0.05509100624429664 0.0002332301652892562,9.735306759652341,3.75652613617205 -0.0002333501652892562,9.345305982485465,4.775436474730176 0.0002334701652892562,7.597660990464091,4.779155125600825 -0.0002335901652892562,5.629260841555807,4.805185681695376 0.0002337101652892562,3.587275640351886,4.812622983436677 -0.0002338301652892562,1.534252681303619,4.820060285177977 0.0002339501652892562,-0.3752794257681549,4.827497586919277 -0.0002340701652892562,-2.093490396871275,4.823778936048626 0.0002341901652892562,-3.78594659967092,4.827497586919277 -0.0002343101652892562,-5.463685792011439,4.827497586919277 0.0002344301652892562,-7.156141994811085,4.831216237789928 -0.0002345501652892562,-9.017843817890695,4.827497586919277 0.0002346701652892562,-9.56237320487841,4.831216237789928 -0.0002347901652892562,-9.635958257174044,4.831216237789928 0.0002349101652892562,-9.680109288551426,4.827497586919277 -0.0002350301652892562,-9.705864056854901,4.831216237789928 0.0002351501652892562,-9.724260319928808,4.823778936048626 -0.0002352701652892562,-9.738977330387938,4.827497586919277 0.0002353901652892562,-9.68378854116621,4.816341634307326 -0.0002355101652892562,-9.709543309469682,4.834934888660577 0.0002356301652892562,-9.731618825158373,4.823778936048626 -0.0002357501652892562,-9.735298077773157,4.823778936048626 0.0002358701652892562,-9.735298077773157,4.823778936048626 -0.0002359901652892562,-9.738977330387938,4.827497586919277 0.0002361101652892562,-9.735298077773157,4.823778936048626 -0.0002362301652892562,-9.738977330387938,4.820060285177977 0.0002363501652892562,-9.735298077773157,4.827497586919277 -0.0002364701652892562,-9.731618825158373,4.816341634307326 0.0002365901652892562,-9.731618825158373,4.823778936048626 -0.0002367101652892562,-9.735298077773157,4.823778936048626 0.0002368301652892562,-9.735298077773157,4.820060285177977 -0.0002369501652892562,-9.735298077773157,4.812622983436677 0.0002370701652892562,-9.735298077773157,4.820060285177977 -0.0002371901652892562,-9.731618825158373,4.823778936048626 0.0002373101652892562,-9.731618825158373,4.812622983436677 -0.0002374301652892562,-9.731618825158373,4.816341634307326 0.0002375501652892562,-9.735298077773157,4.816341634307326 -0.0002376701652892562,-9.731618825158373,4.812622983436677 0.0002377901652892562,-9.727939572543592,4.805185681695376 -0.0002379101652892562,-9.731618825158373,4.808904332566026 0.0002380301652892562,-9.727939572543592,4.808904332566026 -0.0002381501652892562,-9.727939572543592,4.805185681695376 0.0002382701652892562,-9.727939572543592,4.812622983436677 -0.0002383901652892562,-9.731618825158373,4.805185681695376 0.0002385101652892562,-9.731618825158373,4.808904332566026 -0.0002386301652892562,-9.735298077773157,4.805185681695376 0.0002387501652892562,-9.735298077773157,4.805185681695376 -0.0002388701652892562,-9.738977330387938,4.805185681695376 0.0002389901652892562,-9.735298077773157,4.808904332566026 -0.0002391101652892562,-9.738977330387938,4.805185681695376 0.0002392301652892562,-9.746335835617502,4.812622983436677 -0.0002393501652892562,-9.738977330387938,4.812622983436677 0.0002394701652892562,-9.742656583002718,4.808904332566026 -0.0002395901652892562,-9.753694340847064,4.816341634307326 0.0002397101652892562,-9.753694340847064,4.808904332566026 -0.0002398301652892562,-9.606524236255792,4.816341634307326 0.0002399501652892562,-9.731618825158373,4.812622983436677 -0.0002400701652892562,-9.753694340847064,4.816341634307326 0.0002401901652892562,-9.753694340847064,4.816341634307326 -0.0002403101652892562,-9.757373593461848,4.812622983436677 0.0002404301652892562,-9.761052846076629,4.808904332566026 -0.0002405501652892562,-9.761052846076629,4.808904332566026 0.0002406701652892562,-9.757373593461848,4.812622983436677 -0.0002407901652892562,-9.764732098691409,4.812622983436677 0.0002409101652892562,-9.764732098691409,4.812622983436677 -0.0002410301652892562,-9.768411351306193,4.805185681695376 0.0002411501652892562,-9.775769856535755,4.808904332566026 -0.0002412701652892562,-9.772090603920974,4.805185681695376 0.0002413901652892562,-9.775769856535755,4.808904332566026 -0.0002415101652892562,-9.775769856535755,4.808904332566026 0.0002416301652892562,-9.775769856535755,4.805185681695376 -0.0002417501652892562,-9.775769856535755,4.808904332566026 0.0002418701652892562,-9.779449109150539,4.797748379954076 -0.0002419901652892562,-9.779449109150539,4.805185681695376 0.0002421101652892562,-9.779449109150539,4.805185681695376 -0.0002422301652892562,-9.775769856535755,4.808904332566026 0.0002423501652892562,-9.78312836176532,4.805185681695376 -0.0002424701652892562,-9.7868076143801,4.805185681695376 0.0002425901652892562,-9.78312836176532,4.808904332566026 -0.0002427101652892562,-9.78312836176532,4.805185681695376 0.0002428301652892562,-9.78312836176532,4.808904332566026 -0.0002429501652892562,-9.7868076143801,4.808904332566026 0.0002430701652892562,-9.78312836176532,4.816341634307326 -0.0002431901652892562,-9.790486866994884,4.812622983436677 0.0002433101652892562,-9.790486866994884,4.812622983436677 -0.0002434301652892562,-9.794166119609665,4.805185681695376 0.0002435501652892562,-9.794166119609665,4.808904332566026 -0.0002436701652892562,-9.80152462483923,4.808904332566026 0.0002437901652892562,-9.797845372224446,4.805185681695376 -0.0002439101652892562,-9.80152462483923,4.816341634307326 0.0002440301652892562,-9.80152462483923,4.812622983436677 -0.0002441501652892562,-9.80520387745401,4.808904332566026 0.0002442701652892562,-9.808883130068791,4.808904332566026 -0.0002443901652892562,-9.812562382683575,4.812622983436677 0.0002445101652892562,-9.808883130068791,4.808904332566026 -0.0002446301652892562,-9.808883130068791,4.820060285177977 0.0002447501652892562,-9.808883130068791,4.816341634307326 -0.0002448701652892562,-9.812562382683575,4.812622983436677 0.0002449901652892562,-9.808883130068791,4.820060285177977 -0.0002451101652892562,-9.772090603920974,4.782873776471476 0.0002452301652892562,-9.761052846076629,4.846090841272527 -0.0002453501652892562,-9.797845372224446,4.812622983436677 0.0002454701652892562,-9.797845372224446,4.820060285177977 -0.0002455901652892562,-9.797845372224446,4.816341634307326 0.0002457101652892562,-9.797845372224446,4.816341634307326 -0.0002458301652892562,-9.80152462483923,4.823778936048626 0.0002459501652892562,-9.80520387745401,4.820060285177977 -0.0002460701652892562,-9.80152462483923,4.812622983436677 0.0002461901652892562,-9.80520387745401,4.812622983436677 -0.0002463101652892562,-9.80520387745401,4.812622983436677 0.0002464301652892562,-9.808883130068791,4.808904332566026 -0.0002465501652892562,-9.80520387745401,4.812622983436677 0.0002466701652892562,-9.808883130068791,4.812622983436677 -0.0002467901652892562,-9.808883130068791,4.808904332566026 0.0002469101652892562,-9.808883130068791,4.812622983436677 -0.0002470301652892562,-9.80520387745401,4.808904332566026 0.0002471501652892562,-9.812562382683575,4.812622983436677 -0.0002472701652892562,-9.80520387745401,4.816341634307326 0.0002473901652892562,-9.812562382683575,4.812622983436677 -0.0002475101652892562,-9.812562382683575,4.805185681695376 0.0002476301652892562,-9.812562382683575,4.801467030824726 -0.0002477501652892562,-9.812562382683575,4.805185681695376 0.0002478701652892562,-9.812562382683575,4.805185681695376 -0.0002479901652892562,-9.816241635298356,4.805185681695376 0.0002481101652892562,-9.808883130068791,4.805185681695376 -0.0002482301652892562,-9.819920887913137,4.808904332566026 0.0002483501652892562,-9.823600140527921,4.808904332566026 -0.0002484701652892562,-9.819920887913137,4.808904332566026 0.0002485901652892562,-9.823600140527921,4.808904332566026 -0.0002487101652892562,-9.823600140527921,4.816341634307326 0.0002488301652892562,-9.819920887913137,4.816341634307326 -0.0002489501652892562,-9.819920887913137,4.812622983436677 0.0002490701652892562,-9.816241635298356,4.820060285177977 -0.0002491901652892562,-9.819920887913137,4.812622983436677 0.0002493101652892562,-9.823600140527921,4.812622983436677 -0.0002494301652892562,-9.827279393142701,4.816341634307326 0.0002495501652892562,-9.694826299010556,4.816341634307326 -0.0002496701652892562,-9.779449109150539,4.816341634307326 0.0002497901652892562,-9.827279393142701,4.808904332566026 -0.0002499101652892562,-9.823600140527921,4.812622983436677 0.0002500301652892562,-9.830958645757482,4.805185681695376 -0.0002501501652892562,-9.834637898372266,4.808904332566026 0.0002502701652892562,-9.834637898372266,4.805185681695376 -0.0002503901652892562,-9.834637898372266,4.808904332566026 0.0002505101652892562,-9.838317150987047,4.808904332566026 -0.0002506301652892562,-9.827279393142701,4.808904332566026 0.0002507501652892562,-9.834637898372266,4.808904332566026 -0.0002508701652892562,-9.838317150987047,4.808904332566026 0.0002509901652892562,-9.841996403601827,4.805185681695376 -0.0002511101652892562,-9.834637898372266,4.812622983436677 0.0002512301652892562,-9.830958645757482,4.816341634307326 -0.0002513501652892562,-9.838317150987047,4.812622983436677 0.0002514701652892562,-9.845675656216612,4.808904332566026 -0.0002515901652892562,-9.834637898372266,4.808904332566026 0.0002517101652892562,-9.838317150987047,4.808904332566026 -0.0002518301652892562,-9.841996403601827,4.812622983436677 0.0002519501652892562,-9.834637898372266,4.812622983436677 -0.0002520701652892562,-9.838317150987047,4.820060285177977 0.0002521901652892563,-9.838317150987047,4.816341634307326 -0.0002523101652892562,-9.841996403601827,4.816341634307326 0.0002524301652892562,-9.830958645757482,4.805185681695376 -0.0002525501652892562,-9.841996403601827,4.801467030824726 0.0002526701652892562,-9.841996403601827,4.808904332566026 -0.0002527901652892562,-9.841996403601827,4.808904332566026 0.0002529101652892562,-9.841996403601827,4.808904332566026 -0.0002530301652892562,-9.845675656216612,4.801467030824726 0.0002531501652892562,-9.849354908831392,4.805185681695376 -0.0002532701652892562,-9.845675656216612,4.801467030824726 0.0002533901652892562,-9.845675656216612,4.797748379954076 -0.0002535101652892562,-9.845675656216612,4.801467030824726 0.0002536301652892562,-9.849354908831392,4.805185681695376 -0.0002537501652892562,-9.841996403601827,4.805185681695376 0.0002538701652892562,-9.849354908831392,4.801467030824726 -0.0002539901652892562,-9.845675656216612,4.812622983436677 0.0002541101652892562,-9.853034161446173,4.812622983436677 -0.0002542301652892562,-9.849354908831392,4.812622983436677 0.0002543501652892562,-9.845675656216612,4.808904332566026 -0.0002544701652892562,-9.841996403601827,4.812622983436677 0.0002545901652892562,-9.845675656216612,4.812622983436677 -0.0002547101652892562,-9.849354908831392,4.805185681695376 0.0002548301652892562,-9.830958645757482,4.801467030824726 -0.0002549501652892562,-9.772090603920974,4.812622983436677 0.0002550701652892562,-9.830958645757482,4.808904332566026 -0.0002551901652892562,-9.834637898372266,4.808904332566026 0.0002553101652892562,-9.838317150987047,4.812622983436677 -0.0002554301652892562,-9.834637898372266,4.801467030824726 0.0002555501652892562,-9.838317150987047,4.805185681695376 -0.0002556701652892562,-9.834637898372266,4.808904332566026 0.0002557901652892562,-9.838317150987047,4.801467030824726 -0.0002559101652892562,-9.838317150987047,4.797748379954076 0.0002560301652892562,-9.841996403601827,4.805185681695376 -0.0002561501652892562,-9.841996403601827,4.801467030824726 0.0002562701652892562,-9.849354908831392,4.801467030824726 -0.0002563901652892562,-9.849354908831392,4.805185681695376 0.0002565101652892562,-9.845675656216612,4.794029729083427 -0.0002566301652892562,-9.849354908831392,4.801467030824726 0.0002567501652892562,-9.841996403601827,4.797748379954076 -0.0002568701652892562,-9.853034161446173,4.808904332566026 0.0002569901652892562,-9.849354908831392,4.797748379954076 -0.0002571101652892562,-9.849354908831392,4.805185681695376 0.0002572301652892562,-9.849354908831392,4.808904332566026 -0.0002573501652892562,-9.849354908831392,4.801467030824726 0.0002574701652892562,-9.845675656216612,4.805185681695376 -0.0002575901652892562,-9.845675656216612,4.805185681695376 0.0002577101652892562,-9.841996403601827,4.797748379954076 -0.0002578301652892562,-9.838317150987047,4.808904332566026 0.0002579501652892562,-9.849354908831392,4.808904332566026 -0.0002580701652892562,-9.845675656216612,4.805185681695376 0.0002581901652892562,-9.838317150987047,4.801467030824726 -0.0002583101652892562,-9.845675656216612,4.805185681695376 0.0002584301652892562,-9.845675656216612,4.805185681695376 -0.0002585501652892562,-9.841996403601827,4.805185681695376 0.0002586701652892562,-9.841996403601827,4.805185681695376 -0.0002587901652892562,-9.845675656216612,4.805185681695376 0.0002589101652892562,-9.841996403601827,4.805185681695376 -0.0002590301652892562,-9.841996403601827,4.801467030824726 0.0002591501652892562,-9.845675656216612,4.801467030824726 -0.0002592701652892562,-9.78312836176532,4.797748379954076 0.0002593901652892562,-9.738977330387938,4.812622983436677 -0.0002595101652892562,-9.845675656216612,4.812622983436677 0.0002596301652892562,-9.845675656216612,4.801467030824726 -0.0002597501652892562,-9.845675656216612,4.801467030824726 0.0002598701652892562,-9.849354908831392,4.805185681695376 -0.0002599901652892562,-9.845675656216612,4.808904332566026 0.0002601101652892562,-9.849354908831392,4.805185681695376 -0.0002602301652892562,-9.849354908831392,4.812622983436677 0.0002603501652892562,-9.853034161446173,4.808904332566026 -0.0002604701652892562,-9.853034161446173,4.816341634307326 0.0002605901652892562,-9.849354908831392,4.801467030824726 -0.0002607101652892562,-9.853034161446173,4.805185681695376 0.0002608301652892562,-9.849354908831392,4.805185681695376 -0.0002609501652892562,-9.845675656216612,4.805185681695376 0.0002610701652892562,-9.853034161446173,4.808904332566026 -0.0002611901652892562,-9.853034161446173,4.801467030824726 0.0002613101652892562,-9.853034161446173,4.805185681695376 -0.0002614301652892562,-9.845675656216612,4.794029729083427 0.0002615501652892562,-9.849354908831392,4.801467030824726 -0.0002616701652892562,-9.853034161446173,4.797748379954076 0.0002617901652892562,-9.849354908831392,4.805185681695376 -0.0002619101652892562,-9.845675656216612,4.801467030824726 0.0002620301652892563,-9.853034161446173,4.801467030824726 -0.0002621501652892562,-9.853034161446173,4.794029729083427 0.0002622701652892562,-9.853034161446173,4.797748379954076 -0.0002623901652892562,-9.849354908831392,4.797748379954076 0.0002625101652892562,-9.849354908831392,4.801467030824726 -0.0002626301652892562,-9.853034161446173,4.801467030824726 0.0002627501652892562,-9.853034161446173,4.801467030824726 -0.0002628701652892562,-9.849354908831392,4.790311078212776 0.0002629901652892562,-9.853034161446173,4.790311078212776 -0.0002631101652892562,-9.849354908831392,4.797748379954076 0.0002632301652892562,-9.853034161446173,4.797748379954076 -0.0002633501652892562,-9.853034161446173,4.797748379954076 0.0002634701652892562,-9.853034161446173,4.801467030824726 -0.0002635901652892562,-9.845675656216612,4.797748379954076 0.0002637101652892562,-9.845675656216612,4.797748379954076 -0.0002638301652892562,-9.845675656216612,4.794029729083427 0.0002639501652892562,-9.845675656216612,4.801467030824726 -0.0002640701652892562,-9.849354908831392,4.794029729083427 0.0002641901652892562,-9.849354908831392,4.794029729083427 -0.0002643101652892562,-9.849354908831392,4.801467030824726 0.0002644301652892562,-9.845675656216612,4.790311078212776 -0.0002645501652892562,-9.841996403601827,4.801467030824726 0.0002646701652892562,-9.779449109150539,4.790311078212776 -0.0002647901652892562,-9.823600140527921,4.812622983436677 0.0002649101652892562,-9.834637898372266,4.801467030824726 -0.0002650301652892562,-9.834637898372266,4.805185681695376 0.0002651501652892562,-9.834637898372266,4.797748379954076 -0.0002652701652892562,-9.834637898372266,4.797748379954076 0.0002653901652892562,-9.834637898372266,4.794029729083427 -0.0002655101652892562,-9.834637898372266,4.797748379954076 0.0002656301652892562,-9.838317150987047,4.801467030824726 -0.0002657501652892562,-9.834637898372266,4.797748379954076 0.0002658701652892562,-9.838317150987047,4.797748379954076 -0.0002659901652892562,-9.830958645757482,4.794029729083427 0.0002661101652892562,-9.838317150987047,4.801467030824726 -0.0002662301652892562,-9.827279393142701,4.797748379954076 0.0002663501652892562,-9.827279393142701,4.790311078212776 -0.0002664701652892562,-9.830958645757482,4.794029729083427 0.0002665901652892562,-9.830958645757482,4.794029729083427 -0.0002667101652892562,-9.823600140527921,4.805185681695376 0.0002668301652892562,-9.830958645757482,4.797748379954076 -0.0002669501652892562,-9.834637898372266,4.797748379954076 0.0002670701652892562,-9.823600140527921,4.797748379954076 -0.0002671901652892562,-9.823600140527921,4.797748379954076 0.0002673101652892562,-9.823600140527921,4.794029729083427 -0.0002674301652892562,-9.834637898372266,4.797748379954076 0.0002675501652892562,-9.827279393142701,4.801467030824726 -0.0002676701652892562,-9.830958645757482,4.797748379954076 0.0002677901652892562,-9.834637898372266,4.797748379954076 -0.0002679101652892562,-9.827279393142701,4.790311078212776 0.0002680301652892562,-9.827279393142701,4.797748379954076 -0.0002681501652892562,-9.823600140527921,4.794029729083427 0.0002682701652892562,-9.823600140527921,4.794029729083427 -0.0002683901652892562,-9.823600140527921,4.801467030824726 0.0002685101652892562,-9.823600140527921,4.797748379954076 -0.0002686301652892562,-9.823600140527921,4.805185681695376 0.0002687501652892562,-9.823600140527921,4.797748379954076 -0.0002688701652892562,-9.823600140527921,4.801467030824726 0.0002689901652892562,-9.80520387745401,4.794029729083427 -0.0002691101652892562,-9.672750783321865,4.794029729083427 0.0002692301652892562,-9.819920887913137,4.801467030824726 -0.0002693501652892562,-9.827279393142701,4.797748379954076 0.0002694701652892562,-9.830958645757482,4.790311078212776 -0.0002695901652892562,-9.827279393142701,4.790311078212776 0.0002697101652892562,-9.834637898372266,4.794029729083427 -0.0002698301652892562,-9.834637898372266,4.790311078212776 0.0002699501652892562,-9.830958645757482,4.797748379954076 -0.0002700701652892562,-9.830958645757482,4.790311078212776 0.0002701901652892562,-9.838317150987047,4.794029729083427 -0.0002703101652892562,-9.834637898372266,4.790311078212776 0.0002704301652892562,-9.830958645757482,4.786592427342125 -0.0002705501652892562,-9.834637898372266,4.786592427342125 0.0002706701652892562,-9.830958645757482,4.797748379954076 -0.0002707901652892562,-9.830958645757482,4.801467030824726 0.0002709101652892562,-9.834637898372266,4.801467030824726 -0.0002710301652892562,-9.834637898372266,4.794029729083427 0.0002711501652892562,-9.834637898372266,4.790311078212776 -0.0002712701652892562,-9.830958645757482,4.797748379954076 0.0002713901652892562,-9.830958645757482,4.790311078212776 -0.0002715101652892562,-9.830958645757482,4.797748379954076 0.0002716301652892562,-9.830958645757482,4.797748379954076 -0.0002717501652892562,-9.827279393142701,4.797748379954076 0.0002718701652892562,-9.830958645757482,4.797748379954076 -0.0002719901652892562,-9.830958645757482,4.790311078212776 0.0002721101652892562,-9.827279393142701,4.790311078212776 -0.0002722301652892562,-9.827279393142701,4.794029729083427 0.0002723501652892562,-9.827279393142701,4.794029729083427 -0.0002724701652892562,-9.827279393142701,4.790311078212776 0.0002725901652892562,-9.827279393142701,4.790311078212776 -0.0002727101652892563,-9.827279393142701,4.790311078212776 0.0002728301652892562,-9.827279393142701,4.790311078212776 -0.0002729501652892562,-9.830958645757482,4.794029729083427 0.0002730701652892562,-9.830958645757482,4.790311078212776 -0.0002731901652892562,-9.830958645757482,4.790311078212776 0.0002733101652892562,-9.834637898372266,4.794029729083427 -0.0002734301652892562,-9.834637898372266,4.790311078212776 0.0002735501652892562,-9.838317150987047,4.794029729083427 -0.0002736701652892562,-9.830958645757482,4.794029729083427 0.0002737901652892562,-9.830958645757482,4.794029729083427 -0.0002739101652892562,-9.834637898372266,4.790311078212776 0.0002740301652892562,-9.834637898372266,4.801467030824726 -0.0002741501652892562,-9.834637898372266,4.790311078212776 0.0002742701652892562,-9.834637898372266,4.797748379954076 -0.0002743901652892562,-9.772090603920974,4.790311078212776 0.0002745101652892562,-9.80520387745401,4.801467030824726 -0.0002746301652892562,-9.827279393142701,4.790311078212776 0.0002747501652892562,-9.823600140527921,4.794029729083427 -0.0002748701652892562,-9.819920887913137,4.790311078212776 0.0002749901652892562,-9.816241635298356,4.786592427342125 -0.0002751101652892562,-9.816241635298356,4.797748379954076 0.0002752301652892562,-9.816241635298356,4.786592427342125 -0.0002753501652892562,-9.812562382683575,4.790311078212776 0.0002754701652892562,-9.808883130068791,4.786592427342125 -0.0002755901652892562,-9.812562382683575,4.790311078212776 0.0002757101652892562,-9.812562382683575,4.794029729083427 -0.0002758301652892562,-9.819920887913137,4.790311078212776 0.0002759501652892562,-9.819920887913137,4.790311078212776 -0.0002760701652892562,-9.816241635298356,4.779155125600825 0.0002761901652892562,-9.819920887913137,4.786592427342125 -0.0002763101652892562,-9.816241635298356,4.782873776471476 0.0002764301652892562,-9.812562382683575,4.786592427342125 -0.0002765501652892562,-9.812562382683575,4.786592427342125 0.0002766701652892562,-9.812562382683575,4.786592427342125 -0.0002767901652892562,-9.816241635298356,4.786592427342125 0.0002769101652892562,-9.812562382683575,4.786592427342125 -0.0002770301652892562,-9.812562382683575,4.782873776471476 0.0002771501652892562,-9.812562382683575,4.786592427342125 -0.0002772701652892562,-9.812562382683575,4.786592427342125 0.0002773901652892562,-9.812562382683575,4.786592427342125 -0.0002775101652892562,-9.808883130068791,4.786592427342125 0.0002776301652892562,-9.80520387745401,4.794029729083427 -0.0002777501652892562,-9.808883130068791,4.794029729083427 0.0002778701652892562,-9.808883130068791,4.786592427342125 -0.0002779901652892562,-9.80520387745401,4.794029729083427 0.0002781101652892562,-9.80152462483923,4.790311078212776 -0.0002782301652892562,-9.80152462483923,4.786592427342125 0.0002783501652892562,-9.808883130068791,4.794029729083427 -0.0002784701652892562,-9.80520387745401,4.794029729083427 0.0002785901652892562,-9.808883130068791,4.782873776471476 -0.0002787101652892562,-9.797845372224446,4.779155125600825 0.0002788301652892562,-9.654354520247955,4.782873776471476 -0.0002789501652892562,-9.794166119609665,4.794029729083427 0.0002790701652892562,-9.80520387745401,4.779155125600825 -0.0002791901652892562,-9.808883130068791,4.786592427342125 0.0002793101652892562,-9.80520387745401,4.779155125600825 -0.0002794301652892562,-9.80520387745401,4.786592427342125 0.0002795501652892562,-9.80520387745401,4.786592427342125 -0.0002796701652892562,-9.808883130068791,4.786592427342125 0.0002797901652892562,-9.808883130068791,4.790311078212776 -0.0002799101652892562,-9.812562382683575,4.786592427342125 0.0002800301652892562,-9.80152462483923,4.786592427342125 -0.0002801501652892562,-9.808883130068791,4.775436474730176 0.0002802701652892562,-9.80520387745401,4.782873776471476 -0.0002803901652892562,-9.80520387745401,4.782873776471476 0.0002805101652892562,-9.808883130068791,4.790311078212776 -0.0002806301652892562,-9.80152462483923,4.782873776471476 0.0002807501652892562,-9.80152462483923,4.790311078212776 -0.0002808701652892562,-9.808883130068791,4.782873776471476 0.0002809901652892562,-9.808883130068791,4.782873776471476 -0.0002811101652892562,-9.812562382683575,4.790311078212776 0.0002812301652892562,-9.808883130068791,4.782873776471476 -0.0002813501652892562,-9.808883130068791,4.790311078212776 0.0002814701652892562,-9.80520387745401,4.786592427342125 -0.0002815901652892562,-9.80152462483923,4.790311078212776 0.0002817101652892562,-9.808883130068791,4.779155125600825 -0.0002818301652892562,-9.812562382683575,4.782873776471476 0.0002819501652892562,-9.80520387745401,4.775436474730176 -0.0002820701652892562,-9.80520387745401,4.782873776471476 0.0002821901652892562,-9.808883130068791,4.779155125600825 -0.0002823101652892562,-9.80152462483923,4.779155125600825 0.0002824301652892562,-9.80152462483923,4.782873776471476 -0.0002825501652892563,-9.797845372224446,4.767999172988874 0.0002826701652892562,-9.80152462483923,4.782873776471476 -0.0002827901652892562,-9.80520387745401,4.779155125600825 0.0002829101652892562,-9.80152462483923,4.786592427342125 -0.0002830301652892562,-9.80152462483923,4.786592427342125 0.0002831501652892562,-9.808883130068791,4.786592427342125 -0.0002832701652892562,-9.80520387745401,4.782873776471476 0.0002833901652892562,-9.808883130068791,4.782873776471476 -0.0002835101652892562,-9.80152462483923,4.786592427342125 0.0002836301652892562,-9.797845372224446,4.782873776471476 -0.0002837501652892562,-9.808883130068791,4.782873776471476 0.0002838701652892562,-9.80520387745401,4.779155125600825 -0.0002839901652892562,-9.80152462483923,4.779155125600825 0.0002841101652892562,-9.735298077773157,4.790311078212776 -0.0002842301652892562,-9.772090603920974,4.767999172988874 0.0002843501652892562,-9.790486866994884,4.782873776471476 -0.0002844701652892562,-9.7868076143801,4.786592427342125 0.0002845901652892562,-9.78312836176532,4.786592427342125 -0.0002847101652892562,-9.7868076143801,4.779155125600825 0.0002848301652892562,-9.7868076143801,4.775436474730176 -0.0002849501652892562,-9.790486866994884,4.771717823859525 0.0002850701652892562,-9.794166119609665,4.779155125600825 -0.0002851901652892562,-9.78312836176532,4.771717823859525 0.0002853101652892562,-9.7868076143801,4.775436474730176 -0.0002854301652892562,-9.7868076143801,4.771717823859525 0.0002855501652892562,-9.7868076143801,4.775436474730176 -0.0002856701652892562,-9.794166119609665,4.779155125600825 0.0002857901652892562,-9.790486866994884,4.779155125600825 -0.0002859101652892562,-9.790486866994884,4.782873776471476 0.0002860301652892562,-9.790486866994884,4.782873776471476 -0.0002861501652892562,-9.794166119609665,4.782873776471476 0.0002862701652892562,-9.7868076143801,4.782873776471476 -0.0002863901652892562,-9.794166119609665,4.786592427342125 0.0002865101652892562,-9.794166119609665,4.790311078212776 -0.0002866301652892562,-9.790486866994884,4.782873776471476 0.0002867501652892562,-9.790486866994884,4.786592427342125 -0.0002868701652892562,-9.797845372224446,4.779155125600825 0.0002869901652892562,-9.794166119609665,4.779155125600825 -0.0002871101652892562,-9.790486866994884,4.786592427342125 0.0002872301652892562,-9.790486866994884,4.786592427342125 -0.0002873501652892562,-9.7868076143801,4.779155125600825 0.0002874701652892562,-9.790486866994884,4.775436474730176 -0.0002875901652892562,-9.790486866994884,4.779155125600825 0.0002877101652892562,-9.794166119609665,4.775436474730176 -0.0002878301652892562,-9.790486866994884,4.782873776471476 0.0002879501652892562,-9.7868076143801,4.779155125600825 -0.0002880701652892562,-9.78312836176532,4.779155125600825 0.0002881901652892562,-9.78312836176532,4.779155125600825 -0.0002883101652892562,-9.78312836176532,4.771717823859525 0.0002884301652892562,-9.78312836176532,4.771717823859525 -0.0002885501652892562,-9.624920499329699,4.767999172988874 0.0002886701652892562,-9.764732098691409,4.771717823859525 -0.0002887901652892562,-9.779449109150539,4.775436474730176 0.0002889101652892562,-9.775769856535755,4.771717823859525 -0.0002890301652892562,-9.78312836176532,4.767999172988874 0.0002891501652892562,-9.78312836176532,4.771717823859525 -0.0002892701652892562,-9.78312836176532,4.775436474730176 0.0002893901652892562,-9.7868076143801,4.779155125600825 -0.0002895101652892562,-9.7868076143801,4.782873776471476 0.0002896301652892562,-9.7868076143801,4.779155125600825 -0.0002897501652892562,-9.78312836176532,4.782873776471476 0.0002898701652892562,-9.7868076143801,4.779155125600825 -0.0002899901652892562,-9.790486866994884,4.779155125600825 0.0002901101652892562,-9.790486866994884,4.782873776471476 -0.0002902301652892562,-9.7868076143801,4.786592427342125 0.0002903501652892562,-9.790486866994884,4.779155125600825 -0.0002904701652892562,-9.790486866994884,4.782873776471476 0.0002905901652892562,-9.7868076143801,4.782873776471476 -0.0002907101652892562,-9.790486866994884,4.771717823859525 0.0002908301652892562,-9.790486866994884,4.771717823859525 -0.0002909501652892562,-9.794166119609665,4.775436474730176 0.0002910701652892562,-9.794166119609665,4.775436474730176 -0.0002911901652892562,-9.7868076143801,4.779155125600825 0.0002913101652892562,-9.78312836176532,4.779155125600825 -0.0002914301652892562,-9.790486866994884,4.779155125600825 0.0002915501652892562,-9.7868076143801,4.775436474730176 -0.0002916701652892562,-9.790486866994884,4.775436474730176 0.0002917901652892562,-9.78312836176532,4.775436474730176 -0.0002919101652892562,-9.790486866994884,4.786592427342125 0.0002920301652892562,-9.790486866994884,4.775436474730176 -0.0002921501652892562,-9.7868076143801,4.779155125600825 0.0002922701652892562,-9.78312836176532,4.779155125600825 -0.0002923901652892563,-9.775769856535755,4.767999172988874 0.0002925101652892562,-9.775769856535755,4.775436474730176 -0.0002926301652892562,-9.779449109150539,4.782873776471476 0.0002927501652892562,-9.779449109150539,4.779155125600825 -0.0002928701652892562,-9.7868076143801,4.775436474730176 0.0002929901652892562,-9.78312836176532,4.779155125600825 -0.0002931101652892562,-9.78312836176532,4.775436474730176 0.0002932301652892563,-9.78312836176532,4.775436474730176 -0.0002933501652892562,-9.7868076143801,4.771717823859525 0.0002934701652892562,-9.779449109150539,4.775436474730176 -0.0002935901652892562,-9.775769856535755,4.779155125600825 0.0002937101652892562,-9.779449109150539,4.771717823859525 -0.0002938301652892562,-9.724260319928808,4.764280522118225 0.0002939501652892562,-9.750015088232283,4.771717823859525 -0.0002940701652892562,-9.761052846076629,4.771717823859525 0.0002941901652892562,-9.764732098691409,4.767999172988874 -0.0002943101652892562,-9.768411351306193,4.771717823859525 0.0002944301652892562,-9.764732098691409,4.771717823859525 -0.0002945501652892562,-9.768411351306193,4.764280522118225 0.0002946701652892562,-9.768411351306193,4.771717823859525 -0.0002947901652892562,-9.768411351306193,4.771717823859525 0.0002949101652892562,-9.764732098691409,4.775436474730176 -0.0002950301652892562,-9.764732098691409,4.767999172988874 0.0002951501652892562,-9.761052846076629,4.771717823859525 -0.0002952701652892562,-9.768411351306193,4.775436474730176 0.0002953901652892562,-9.764732098691409,4.775436474730176 -0.0002955101652892562,-9.768411351306193,4.767999172988874 0.0002956301652892562,-9.768411351306193,4.764280522118225 -0.0002957501652892562,-9.764732098691409,4.764280522118225 0.0002958701652892562,-9.772090603920974,4.764280522118225 -0.0002959901652892562,-9.772090603920974,4.771717823859525 0.0002961101652892562,-9.775769856535755,4.764280522118225 -0.0002962301652892562,-9.768411351306193,4.779155125600825 0.0002963501652892562,-9.772090603920974,4.764280522118225 -0.0002964701652892562,-9.768411351306193,4.767999172988874 0.0002965901652892562,-9.772090603920974,4.767999172988874 -0.0002967101652892562,-9.768411351306193,4.764280522118225 0.0002968301652892562,-9.772090603920974,4.767999172988874 -0.0002969501652892562,-9.761052846076629,4.771717823859525 0.0002970701652892562,-9.764732098691409,4.767999172988874 -0.0002971901652892562,-9.768411351306193,4.767999172988874 0.0002973101652892562,-9.764732098691409,4.764280522118225 -0.0002974301652892562,-9.772090603920974,4.764280522118225 0.0002975501652892562,-9.764732098691409,4.771717823859525 -0.0002976701652892562,-9.764732098691409,4.767999172988874 0.0002977901652892562,-9.761052846076629,4.767999172988874 -0.0002979101652892562,-9.768411351306193,4.767999172988874 0.0002980301652892562,-9.764732098691409,4.764280522118225 -0.0002981501652892562,-9.757373593461848,4.767999172988874 0.0002982701652892562,-9.617561994100138,4.767999172988874 -0.0002983901652892562,-9.746335835617502,4.767999172988874 0.0002985101652892562,-9.772090603920974,4.764280522118225 -0.0002986301652892562,-9.768411351306193,4.764280522118225 0.0002987501652892562,-9.772090603920974,4.771717823859525 -0.0002988701652892562,-9.768411351306193,4.760561871247575 0.0002989901652892562,-9.768411351306193,4.764280522118225 -0.0002991101652892562,-9.768411351306193,4.767999172988874 0.0002992301652892562,-9.764732098691409,4.767999172988874 -0.0002993501652892562,-9.772090603920974,4.779155125600825 0.0002994701652892562,-9.768411351306193,4.771717823859525 -0.0002995901652892562,-9.772090603920974,4.767999172988874 0.0002997101652892562,-9.764732098691409,4.760561871247575 -0.0002998301652892562,-9.768411351306193,4.767999172988874 0.0002999501652892562,-9.764732098691409,4.767999172988874 -0.0003000701652892562,-9.764732098691409,4.771717823859525 0.0003001901652892562,-9.764732098691409,4.764280522118225 -0.0003003101652892562,-9.772090603920974,4.764280522118225 0.0003004301652892562,-9.768411351306193,4.767999172988874 -0.0003005501652892562,-9.764732098691409,4.764280522118225 0.0003006701652892562,-9.764732098691409,4.767999172988874 -0.0003007901652892562,-9.764732098691409,4.764280522118225 0.0003009101652892562,-9.761052846076629,4.771717823859525 -0.0003010301652892562,-9.772090603920974,4.771717823859525 0.0003011501652892562,-9.764732098691409,4.767999172988874 -0.0003012701652892562,-9.761052846076629,4.767999172988874 0.0003013901652892562,-9.757373593461848,4.767999172988874 -0.0003015101652892562,-9.764732098691409,4.764280522118225 0.0003016301652892562,-9.764732098691409,4.771717823859525 -0.0003017501652892562,-9.757373593461848,4.771717823859525 0.0003018701652892562,-9.761052846076629,4.767999172988874 -0.0003019901652892562,-9.764732098691409,4.771717823859525 0.0003021101652892562,-9.761052846076629,4.764280522118225 -0.0003022301652892563,-9.753694340847064,4.775436474730176 0.0003023501652892562,-9.753694340847064,4.767999172988874 -0.0003024701652892562,-9.757373593461848,4.779155125600825 0.0003025901652892562,-9.757373593461848,4.771717823859525 -0.0003027101652892562,-9.761052846076629,4.775436474730176 0.0003028301652892562,-9.761052846076629,4.767999172988874 -0.0003029501652892562,-9.757373593461848,4.771717823859525 0.0003030701652892563,-9.764732098691409,4.775436474730176 -0.0003031901652892562,-9.757373593461848,4.779155125600825 0.0003033101652892562,-9.761052846076629,4.775436474730176 -0.0003034301652892562,-9.757373593461848,4.775436474730176 0.0003035501652892562,-9.738977330387938,4.745687267764975 -0.0003036701652892562,-9.698505551625336,4.801467030824726 0.0003037901652892562,-9.742656583002718,4.771717823859525 -0.0003039101652892562,-9.746335835617502,4.764280522118225 0.0003040301652892562,-9.746335835617502,4.764280522118225 -0.0003041501652892562,-9.753694340847064,4.767999172988874 0.0003042701652892562,-9.753694340847064,4.771717823859525 -0.0003043901652892562,-9.750015088232283,4.771717823859525 0.0003045101652892562,-9.750015088232283,4.771717823859525 -0.0003046301652892562,-9.746335835617502,4.767999172988874 0.0003047501652892562,-9.746335835617502,4.764280522118225 -0.0003048701652892562,-9.750015088232283,4.764280522118225 0.0003049901652892562,-9.746335835617502,4.767999172988874 -0.0003051101652892562,-9.746335835617502,4.764280522118225 0.0003052301652892562,-9.746335835617502,4.764280522118225 -0.0003053501652892562,-9.750015088232283,4.760561871247575 0.0003054701652892562,-9.750015088232283,4.771717823859525 -0.0003055901652892562,-9.750015088232283,4.767999172988874 0.0003057101652892562,-9.750015088232283,4.764280522118225 -0.0003058301652892562,-9.750015088232283,4.767999172988874 0.0003059501652892562,-9.750015088232283,4.764280522118225 -0.0003060701652892562,-9.746335835617502,4.771717823859525 0.0003061901652892562,-9.746335835617502,4.764280522118225 -0.0003063101652892562,-9.746335835617502,4.767999172988874 0.0003064301652892562,-9.746335835617502,4.760561871247575 -0.0003065501652892562,-9.753694340847064,4.771717823859525 0.0003066701652892562,-9.750015088232283,4.767999172988874 -0.0003067901652892562,-9.750015088232283,4.771717823859525 0.0003069101652892562,-9.746335835617502,4.764280522118225 -0.0003070301652892562,-9.750015088232283,4.760561871247575 0.0003071501652892562,-9.746335835617502,4.760561871247575 -0.0003072701652892562,-9.742656583002718,4.771717823859525 0.0003073901652892562,-9.746335835617502,4.767999172988874 -0.0003075101652892562,-9.742656583002718,4.767999172988874 0.0003076301652892562,-9.746335835617502,4.764280522118225 -0.0003077501652892562,-9.750015088232283,4.771717823859525 0.0003078701652892562,-9.742656583002718,4.767999172988874 -0.0003079901652892562,-9.635958257174044,4.753124569506275 0.0003081101652892562,-9.687467793780991,4.771717823859525 -0.0003082301652892562,-9.746335835617502,4.767999172988874 0.0003083501652892562,-9.742656583002718,4.764280522118225 -0.0003084701652892562,-9.746335835617502,4.767999172988874 0.0003085901652892562,-9.750015088232283,4.753124569506275 -0.0003087101652892562,-9.750015088232283,4.764280522118225 0.0003088301652892562,-9.746335835617502,4.760561871247575 -0.0003089501652892562,-9.746335835617502,4.760561871247575 0.0003090701652892562,-9.746335835617502,4.760561871247575 -0.0003091901652892562,-9.746335835617502,4.760561871247575 0.0003093101652892562,-9.750015088232283,4.767999172988874 -0.0003094301652892562,-9.750015088232283,4.764280522118225 0.0003095501652892562,-9.750015088232283,4.764280522118225 -0.0003096701652892562,-9.746335835617502,4.760561871247575 0.0003097901652892562,-9.750015088232283,4.764280522118225 -0.0003099101652892562,-9.746335835617502,4.764280522118225 0.0003100301652892562,-9.735298077773157,4.767999172988874 -0.0003101501652892562,-9.750015088232283,4.760561871247575 0.0003102701652892562,-9.746335835617502,4.756843220376926 -0.0003103901652892562,-9.746335835617502,4.767999172988874 0.0003105101652892562,-9.738977330387938,4.764280522118225 -0.0003106301652892562,-9.746335835617502,4.764280522118225 0.0003107501652892562,-9.746335835617502,4.756843220376926 -0.0003108701652892562,-9.750015088232283,4.764280522118225 0.0003109901652892562,-9.750015088232283,4.764280522118225 -0.0003111101652892562,-9.746335835617502,4.760561871247575 0.0003112301652892562,-9.746335835617502,4.764280522118225 -0.0003113501652892562,-9.746335835617502,4.764280522118225 0.0003114701652892562,-9.750015088232283,4.767999172988874 -0.0003115901652892562,-9.742656583002718,4.764280522118225 0.0003117101652892562,-9.746335835617502,4.760561871247575 -0.0003118301652892562,-9.742656583002718,4.760561871247575 0.0003119501652892562,-9.746335835617502,4.756843220376926 -0.0003120701652892562,-9.742656583002718,4.760561871247575 0.0003121901652892562,-9.742656583002718,4.760561871247575 -0.0003123101652892562,-9.746335835617502,4.756843220376926 0.0003124301652892562,-9.742656583002718,4.760561871247575 -0.0003125501652892562,-9.742656583002718,4.760561871247575 0.0003126701652892562,-9.746335835617502,4.767999172988874 -0.0003127901652892562,-9.746335835617502,4.764280522118225 0.0003129101652892563,-9.746335835617502,4.756843220376926 -0.0003130301652892562,-9.750015088232283,4.767999172988874 0.0003131501652892562,-9.750015088232283,4.764280522118225 -0.0003132701652892562,-9.738977330387938,4.760561871247575 0.0003133901652892562,-9.676430035936646,4.760561871247575 -0.0003135101652892562,-9.735298077773157,4.760561871247575 0.0003136301652892562,-9.738977330387938,4.764280522118225 -0.0003137501652892563,-9.735298077773157,4.756843220376926 0.0003138701652892562,-9.735298077773157,4.760561871247575 -0.0003139901652892562,-9.731618825158373,4.749405918635624 0.0003141101652892562,-9.735298077773157,4.756843220376926 -0.0003142301652892562,-9.735298077773157,4.764280522118225 0.0003143501652892562,-9.727939572543592,4.753124569506275 -0.0003144701652892562,-9.731618825158373,4.753124569506275 0.0003145901652892562,-9.731618825158373,4.753124569506275 -0.0003147101652892562,-9.731618825158373,4.767999172988874 0.0003148301652892562,-9.731618825158373,4.760561871247575 -0.0003149501652892562,-9.731618825158373,4.760561871247575 0.0003150701652892562,-9.727939572543592,4.749405918635624 -0.0003151901652892562,-9.727939572543592,4.764280522118225 0.0003153101652892562,-9.727939572543592,4.771717823859525 -0.0003154301652892562,-9.731618825158373,4.760561871247575 0.0003155501652892562,-9.731618825158373,4.753124569506275 -0.0003156701652892562,-9.727939572543592,4.756843220376926 0.0003157901652892562,-9.731618825158373,4.756843220376926 -0.0003159101652892562,-9.735298077773157,4.760561871247575 0.0003160301652892562,-9.735298077773157,4.760561871247575 -0.0003161501652892562,-9.735298077773157,4.753124569506275 0.0003162701652892562,-9.731618825158373,4.760561871247575 -0.0003163901652892562,-9.731618825158373,4.760561871247575 0.0003165101652892562,-9.727939572543592,4.760561871247575 -0.0003166301652892562,-9.727939572543592,4.764280522118225 0.0003167501652892562,-9.731618825158373,4.756843220376926 -0.0003168701652892562,-9.731618825158373,4.760561871247575 0.0003169901652892562,-9.720581067314027,4.756843220376926 -0.0003171101652892562,-9.724260319928808,4.760561871247575 0.0003172301652892562,-9.727939572543592,4.764280522118225 -0.0003173501652892562,-9.724260319928808,4.764280522118225 0.0003174701652892562,-9.731618825158373,4.767999172988874 -0.0003175901652892562,-9.727939572543592,4.764280522118225 0.0003177101652892562,-9.705864056854901,4.760561871247575 -0.0003178301652892562,-9.599165731026227,4.753124569506275 0.0003179501652892562,-9.727939572543592,4.760561871247575 -0.0003180701652892562,-9.731618825158373,4.760561871247575 0.0003181901652892562,-9.735298077773157,4.756843220376926 -0.0003183101652892562,-9.738977330387938,4.760561871247575 0.0003184301652892562,-9.742656583002718,4.753124569506275 -0.0003185501652892562,-9.742656583002718,4.756843220376926 0.0003186701652892562,-9.738977330387938,4.753124569506275 -0.0003187901652892562,-9.738977330387938,4.760561871247575 0.0003189101652892562,-9.738977330387938,4.760561871247575 -0.0003190301652892562,-9.738977330387938,4.756843220376926 0.0003191501652892562,-9.738977330387938,4.760561871247575 -0.0003192701652892562,-9.742656583002718,4.760561871247575 0.0003193901652892562,-9.735298077773157,4.760561871247575 -0.0003195101652892562,-9.738977330387938,4.760561871247575 0.0003196301652892562,-9.731618825158373,4.760561871247575 -0.0003197501652892562,-9.738977330387938,4.756843220376926 0.0003198701652892562,-9.738977330387938,4.760561871247575 -0.0003199901652892562,-9.738977330387938,4.753124569506275 0.0003201101652892562,-9.735298077773157,4.764280522118225 -0.0003202301652892562,-9.731618825158373,4.756843220376926 0.0003203501652892562,-9.731618825158373,4.767999172988874 -0.0003204701652892562,-9.731618825158373,4.764280522118225 0.0003205901652892562,-9.731618825158373,4.764280522118225 -0.0003207101652892562,-9.735298077773157,4.756843220376926 0.0003208301652892562,-9.738977330387938,4.753124569506275 -0.0003209501652892562,-9.742656583002718,4.753124569506275 0.0003210701652892562,-9.738977330387938,4.753124569506275 -0.0003211901652892562,-9.731618825158373,4.760561871247575 0.0003213101652892562,-9.735298077773157,4.756843220376926 -0.0003214301652892562,-9.735298077773157,4.760561871247575 0.0003215501652892562,-9.735298077773157,4.753124569506275 -0.0003216701652892562,-9.738977330387938,4.756843220376926 0.0003217901652892562,-9.738977330387938,4.760561871247575 -0.0003219101652892562,-9.738977330387938,4.764280522118225 0.0003220301652892562,-9.738977330387938,4.767999172988874 -0.0003221501652892562,-9.738977330387938,4.764280522118225 0.0003222701652892562,-9.742656583002718,4.764280522118225 -0.0003223901652892562,-9.735298077773157,4.760561871247575 0.0003225101652892562,-9.738977330387938,4.764280522118225 -0.0003226301652892562,-9.738977330387938,4.760561871247575 0.0003227501652892563,-9.738977330387938,4.767999172988874 -0.0003228701652892562,-9.742656583002718,4.764280522118225 0.0003229901652892562,-9.731618825158373,4.771717823859525 -0.0003231101652892562,-9.669071530707081,4.760561871247575 0.0003232301652892562,-9.709543309469682,4.767999172988874 -0.0003233501652892562,-9.720581067314027,4.764280522118225 0.0003234701652892562,-9.724260319928808,4.756843220376926 -0.0003235901652892563,-9.724260319928808,4.760561871247575 0.0003237101652892562,-9.731618825158373,4.753124569506275 -0.0003238301652892562,-9.720581067314027,4.756843220376926 0.0003239501652892562,-9.724260319928808,4.760561871247575 -0.0003240701652892562,-9.724260319928808,4.753124569506275 0.0003241901652892562,-9.724260319928808,4.764280522118225 -0.0003243101652892562,-9.720581067314027,4.764280522118225 0.0003244301652892562,-9.724260319928808,4.760561871247575 -0.0003245501652892562,-9.724260319928808,4.764280522118225 0.0003246701652892562,-9.720581067314027,4.760561871247575 -0.0003247901652892562,-9.724260319928808,4.760561871247575 0.0003249101652892562,-9.716901814699247,4.764280522118225 -0.0003250301652892562,-9.713222562084463,4.764280522118225 0.0003251501652892562,-9.716901814699247,4.760561871247575 -0.0003252701652892562,-9.716901814699247,4.764280522118225 0.0003253901652892562,-9.720581067314027,4.764280522118225 -0.0003255101652892562,-9.716901814699247,4.764280522118225 0.0003256301652892562,-9.713222562084463,4.764280522118225 -0.0003257501652892562,-9.720581067314027,4.753124569506275 0.0003258701652892562,-9.720581067314027,4.756843220376926 -0.0003259901652892562,-9.720581067314027,4.749405918635624 0.0003261101652892562,-9.720581067314027,4.756843220376926 -0.0003262301652892562,-9.716901814699247,4.753124569506275 0.0003263501652892562,-9.720581067314027,4.756843220376926 -0.0003264701652892562,-9.716901814699247,4.753124569506275 0.0003265901652892562,-9.709543309469682,4.753124569506275 -0.0003267101652892562,-9.716901814699247,4.756843220376926 0.0003268301652892562,-9.720581067314027,4.749405918635624 -0.0003269501652892562,-9.716901814699247,4.753124569506275 0.0003270701652892562,-9.724260319928808,4.760561871247575 -0.0003271901652892562,-9.720581067314027,4.764280522118225 0.0003273101652892562,-9.724260319928808,4.767999172988874 -0.0003274301652892562,-9.709543309469682,4.764280522118225 0.0003275501652892562,-9.566052457493191,4.764280522118225 -0.0003276701652892562,-9.713222562084463,4.767999172988874 0.0003277901652892562,-9.720581067314027,4.767999172988874 -0.0003279101652892562,-9.727939572543592,4.764280522118225 0.0003280301652892562,-9.724260319928808,4.760561871247575 -0.0003281501652892562,-9.724260319928808,4.756843220376926 0.0003282701652892562,-9.716901814699247,4.767999172988874 -0.0003283901652892562,-9.716901814699247,4.764280522118225 0.0003285101652892562,-9.716901814699247,4.764280522118225 -0.0003286301652892562,-9.720581067314027,4.760561871247575 0.0003287501652892562,-9.724260319928808,4.760561871247575 -0.0003288701652892562,-9.724260319928808,4.756843220376926 0.0003289901652892562,-9.724260319928808,4.756843220376926 -0.0003291101652892562,-9.724260319928808,4.756843220376926 0.0003292301652892562,-9.724260319928808,4.756843220376926 -0.0003293501652892562,-9.727939572543592,4.764280522118225 0.0003294701652892562,-9.724260319928808,4.760561871247575 -0.0003295901652892562,-9.724260319928808,4.760561871247575 0.0003297101652892562,-9.724260319928808,4.753124569506275 -0.0003298301652892562,-9.727939572543592,4.756843220376926 0.0003299501652892562,-9.727939572543592,4.760561871247575 -0.0003300701652892562,-9.727939572543592,4.760561871247575 0.0003301901652892562,-9.727939572543592,4.760561871247575 -0.0003303101652892562,-9.731618825158373,4.749405918635624 0.0003304301652892562,-9.727939572543592,4.760561871247575 -0.0003305501652892562,-9.731618825158373,4.753124569506275 0.0003306701652892562,-9.735298077773157,4.756843220376926 -0.0003307901652892562,-9.731618825158373,4.756843220376926 0.0003309101652892562,-9.727939572543592,4.756843220376926 -0.0003310301652892562,-9.731618825158373,4.760561871247575 0.0003311501652892562,-9.727939572543592,4.756843220376926 -0.0003312701652892562,-9.727939572543592,4.756843220376926 0.0003313901652892562,-9.727939572543592,4.749405918635624 -0.0003315101652892562,-9.731618825158373,4.753124569506275 0.0003316301652892562,-9.727939572543592,4.753124569506275 -0.0003317501652892562,-9.735298077773157,4.756843220376926 0.0003318701652892562,-9.731618825158373,4.753124569506275 -0.0003319901652892562,-9.727939572543592,4.749405918635624 0.0003321101652892562,-9.731618825158373,4.749405918635624 -0.0003322301652892562,-9.727939572543592,4.749405918635624 0.0003323501652892562,-9.731618825158373,4.749405918635624 -0.0003324701652892562,-9.727939572543592,4.745687267764975 0.0003325901652892563,-9.724260319928808,4.756843220376926 -0.0003327101652892562,-9.731618825158373,4.753124569506275 0.0003328301652892562,-9.669071530707081,4.760561871247575 -0.0003329501652892562,-9.694826299010556,4.749405918635624 0.0003330701652892562,-9.705864056854901,4.753124569506275 -0.0003331901652892562,-9.705864056854901,4.760561871247575 0.0003333101652892562,-9.705864056854901,4.753124569506275 -0.0003334301652892563,-9.713222562084463,4.760561871247575 0.0003335501652892562,-9.713222562084463,4.756843220376926 -0.0003336701652892562,-9.709543309469682,4.760561871247575 0.0003337901652892562,-9.709543309469682,4.756843220376926 -0.0003339101652892562,-9.713222562084463,4.753124569506275 0.0003340301652892562,-9.716901814699247,4.756843220376926 -0.0003341501652892562,-9.720581067314027,4.756843220376926 0.0003342701652892563,-9.713222562084463,4.760561871247575 -0.0003343901652892562,-9.713222562084463,4.753124569506275 0.0003345101652892562,-9.716901814699247,4.760561871247575 -0.0003346301652892562,-9.720581067314027,4.753124569506275 0.0003347501652892562,-9.716901814699247,4.760561871247575 -0.0003348701652892562,-9.724260319928808,4.760561871247575 0.0003349901652892562,-9.720581067314027,4.760561871247575 -0.0003351101652892562,-9.716901814699247,4.756843220376926 0.0003352301652892562,-9.716901814699247,4.760561871247575 -0.0003353501652892562,-9.716901814699247,4.760561871247575 0.0003354701652892562,-9.720581067314027,4.753124569506275 -0.0003355901652892562,-9.716901814699247,4.756843220376926 0.0003357101652892562,-9.716901814699247,4.745687267764975 -0.0003358301652892562,-9.720581067314027,4.753124569506275 0.0003359501652892562,-9.720581067314027,4.753124569506275 -0.0003360701652892562,-9.716901814699247,4.756843220376926 0.0003361901652892562,-9.713222562084463,4.756843220376926 -0.0003363101652892562,-9.713222562084463,4.753124569506275 0.0003364301652892562,-9.705864056854901,4.756843220376926 -0.0003365501652892562,-9.702184804240117,4.756843220376926 0.0003366701652892562,-9.705864056854901,4.753124569506275 -0.0003367901652892562,-9.702184804240117,4.753124569506275 0.0003369101652892562,-9.709543309469682,4.753124569506275 -0.0003370301652892562,-9.709543309469682,4.749405918635624 0.0003371501652892562,-9.702184804240117,4.760561871247575 -0.0003372701652892562,-9.56237320487841,4.753124569506275 0.0003373901652892562,-9.694826299010556,4.756843220376926 -0.0003375101652892562,-9.713222562084463,4.767999172988874 0.0003376301652892562,-9.716901814699247,4.764280522118225 -0.0003377501652892562,-9.713222562084463,4.767999172988874 0.0003378701652892562,-9.720581067314027,4.764280522118225 -0.0003379901652892562,-9.713222562084463,4.760561871247575 0.0003381101652892562,-9.709543309469682,4.756843220376926 -0.0003382301652892562,-9.716901814699247,4.764280522118225 0.0003383501652892562,-9.716901814699247,4.756843220376926 -0.0003384701652892562,-9.713222562084463,4.764280522118225 0.0003385901652892562,-9.713222562084463,4.756843220376926 -0.0003387101652892562,-9.720581067314027,4.756843220376926 0.0003388301652892562,-9.727939572543592,4.756843220376926 -0.0003389501652892562,-9.724260319928808,4.756843220376926 0.0003390701652892562,-9.720581067314027,4.756843220376926 -0.0003391901652892562,-9.720581067314027,4.760561871247575 0.0003393101652892562,-9.720581067314027,4.753124569506275 -0.0003394301652892562,-9.716901814699247,4.753124569506275 0.0003395501652892562,-9.727939572543592,4.745687267764975 -0.0003396701652892562,-9.724260319928808,4.760561871247575 0.0003397901652892562,-9.727939572543592,4.753124569506275 -0.0003399101652892562,-9.724260319928808,4.756843220376926 0.0003400301652892562,-9.727939572543592,4.756843220376926 -0.0003401501652892562,-9.727939572543592,4.756843220376926 0.0003402701652892562,-9.731618825158373,4.753124569506275 -0.0003403901652892562,-9.731618825158373,4.745687267764975 0.0003405101652892562,-9.724260319928808,4.753124569506275 -0.0003406301652892562,-9.727939572543592,4.753124569506275 0.0003407501652892562,-9.724260319928808,4.760561871247575 -0.0003408701652892562,-9.724260319928808,4.756843220376926 0.0003409901652892562,-9.727939572543592,4.753124569506275 -0.0003411101652892562,-9.727939572543592,4.745687267764975 0.0003412301652892562,-9.724260319928808,4.756843220376926 -0.0003413501652892562,-9.724260319928808,4.756843220376926 0.0003414701652892562,-9.724260319928808,4.753124569506275 -0.0003415901652892562,-9.724260319928808,4.753124569506275 0.0003417101652892562,-9.727939572543592,4.753124569506275 -0.0003418301652892562,-9.727939572543592,4.760561871247575 0.0003419501652892562,-9.727939572543592,4.753124569506275 -0.0003420701652892562,-9.720581067314027,4.753124569506275 0.0003421901652892562,-9.727939572543592,4.760561871247575 -0.0003423101652892562,-9.727939572543592,4.756843220376926 0.0003424301652892562,-9.720581067314027,4.756843220376926 -0.0003425501652892562,-9.658033772862735,4.771717823859525 0.0003426701652892562,-9.705864056854901,4.745687267764975 -0.0003427901652892562,-9.705864056854901,4.749405918635624 0.0003429101652892562,-9.705864056854901,4.753124569506275 -0.0003430301652892562,-9.705864056854901,4.756843220376926 0.0003431501652892562,-9.705864056854901,4.753124569506275 -0.0003432701652892562,-9.702184804240117,4.753124569506275 0.0003433901652892562,-9.705864056854901,4.756843220376926 -0.0003435101652892562,-9.705864056854901,4.760561871247575 0.0003436301652892562,-9.702184804240117,4.749405918635624 -0.0003437501652892562,-9.702184804240117,4.756843220376926 0.0003438701652892562,-9.702184804240117,4.753124569506275 -0.0003439901652892562,-9.705864056854901,4.760561871247575 0.0003441101652892562,-9.698505551625336,4.764280522118225 -0.0003442301652892562,-9.705864056854901,4.760561871247575 0.0003443501652892562,-9.705864056854901,4.753124569506275 -0.0003444701652892562,-9.702184804240117,4.749405918635624 0.0003445901652892562,-9.709543309469682,4.756843220376926 -0.0003447101652892562,-9.705864056854901,4.756843220376926 0.0003448301652892562,-9.709543309469682,4.756843220376926 -0.0003449501652892562,-9.709543309469682,4.760561871247575 0.0003450701652892562,-9.709543309469682,4.760561871247575 -0.0003451901652892562,-9.709543309469682,4.756843220376926 0.0003453101652892562,-9.709543309469682,4.760561871247575 -0.0003454301652892562,-9.702184804240117,4.756843220376926 0.0003455501652892562,-9.705864056854901,4.764280522118225 -0.0003456701652892562,-9.705864056854901,4.764280522118225 0.0003457901652892562,-9.702184804240117,4.760561871247575 -0.0003459101652892562,-9.705864056854901,4.764280522118225 0.0003460301652892562,-9.709543309469682,4.749405918635624 -0.0003461501652892562,-9.709543309469682,4.753124569506275 0.0003462701652892562,-9.702184804240117,4.749405918635624 -0.0003463901652892562,-9.705864056854901,4.753124569506275 0.0003465101652892562,-9.698505551625336,4.753124569506275 -0.0003466301652892562,-9.698505551625336,4.756843220376926 0.0003467501652892562,-9.702184804240117,4.756843220376926 -0.0003468701652892562,-9.702184804240117,4.753124569506275 0.0003469901652892562,-9.555014699648845,4.749405918635624 -0.0003471101652892562,-9.680109288551426,4.741968616894324 0.0003472301652892562,-9.705864056854901,4.756843220376926 -0.0003473501652892562,-9.705864056854901,4.749405918635624 0.0003474701652892562,-9.705864056854901,4.753124569506275 -0.0003475901652892562,-9.709543309469682,4.745687267764975 0.0003477101652892562,-9.705864056854901,4.745687267764975 -0.0003478301652892562,-9.705864056854901,4.756843220376926 0.0003479501652892562,-9.713222562084463,4.756843220376926 -0.0003480701652892562,-9.713222562084463,4.756843220376926 0.0003481901652892562,-9.709543309469682,4.760561871247575 -0.0003483101652892562,-9.713222562084463,4.756843220376926 0.0003484301652892562,-9.709543309469682,4.753124569506275 -0.0003485501652892562,-9.713222562084463,4.753124569506275 0.0003486701652892562,-9.713222562084463,4.753124569506275 -0.0003487901652892562,-9.709543309469682,4.749405918635624 0.0003489101652892562,-9.705864056854901,4.753124569506275 -0.0003490301652892562,-9.705864056854901,4.753124569506275 0.0003491501652892562,-9.713222562084463,4.745687267764975 -0.0003492701652892562,-9.709543309469682,4.749405918635624 0.0003493901652892562,-9.705864056854901,4.753124569506275 -0.0003495101652892562,-9.709543309469682,4.756843220376926 0.0003496301652892562,-9.705864056854901,4.756843220376926 -0.0003497501652892562,-9.705864056854901,4.756843220376926 0.0003498701652892562,-9.709543309469682,4.760561871247575 -0.0003499901652892562,-9.709543309469682,4.753124569506275 0.0003501101652892562,-9.705864056854901,4.753124569506275 -0.0003502301652892562,-9.709543309469682,4.753124569506275 0.0003503501652892562,-9.716901814699247,4.753124569506275 -0.0003504701652892562,-9.713222562084463,4.753124569506275 0.0003505901652892562,-9.709543309469682,4.760561871247575 -0.0003507101652892562,-9.716901814699247,4.760561871247575 0.0003508301652892562,-9.716901814699247,4.753124569506275 -0.0003509501652892562,-9.713222562084463,4.749405918635624 0.0003510701652892562,-9.705864056854901,4.753124569506275 -0.0003511901652892562,-9.709543309469682,4.753124569506275 0.0003513101652892562,-9.713222562084463,4.756843220376926 -0.0003514301652892562,-9.713222562084463,4.753124569506275 0.0003515501652892562,-9.713222562084463,4.756843220376926 -0.0003516701652892562,-9.709543309469682,4.753124569506275 0.0003517901652892562,-9.709543309469682,4.753124569506275 -0.0003519101652892562,-9.709543309469682,4.756843220376926 0.0003520301652892562,-9.716901814699247,4.756843220376926 -0.0003521501652892562,-9.716901814699247,4.760561871247575 0.0003522701652892562,-9.691147046395772,4.723375362541073 -0.0003523901652892562,-9.6653922780923,4.790311078212776 0.0003525101652892562,-9.705864056854901,4.756843220376926 -0.0003526301652892562,-9.705864056854901,4.753124569506275 0.0003527501652892562,-9.709543309469682,4.756843220376926 -0.0003528701652892562,-9.705864056854901,4.760561871247575 0.0003529901652892562,-9.705864056854901,4.760561871247575 -0.0003531101652892562,-9.705864056854901,4.760561871247575 0.0003532301652892562,-9.698505551625336,4.756843220376926 -0.0003533501652892562,-9.702184804240117,4.764280522118225 0.0003534701652892562,-9.698505551625336,4.760561871247575 -0.0003535901652892562,-9.702184804240117,4.756843220376926 0.0003537101652892562,-9.705864056854901,4.760561871247575 -0.0003538301652892562,-9.698505551625336,4.760561871247575 0.0003539501652892562,-9.694826299010556,4.753124569506275 -0.0003540701652892562,-9.694826299010556,4.756843220376926 0.0003541901652892562,-9.694826299010556,4.749405918635624 -0.0003543101652892562,-9.698505551625336,4.753124569506275 0.0003544301652892562,-9.702184804240117,4.760561871247575 -0.0003545501652892562,-9.698505551625336,4.756843220376926 0.0003546701652892562,-9.698505551625336,4.749405918635624 -0.0003547901652892562,-9.702184804240117,4.756843220376926 0.0003549101652892562,-9.698505551625336,4.756843220376926 -0.0003550301652892562,-9.698505551625336,4.760561871247575 0.0003551501652892562,-9.702184804240117,4.753124569506275 -0.0003552701652892562,-9.694826299010556,4.753124569506275 0.0003553901652892562,-9.698505551625336,4.756843220376926 -0.0003555101652892562,-9.698505551625336,4.764280522118225 0.0003556301652892562,-9.694826299010556,4.756843220376926 -0.0003557501652892562,-9.698505551625336,4.753124569506275 0.0003558701652892562,-9.698505551625336,4.753124569506275 -0.0003559901652892562,-9.702184804240117,4.753124569506275 0.0003561101652892562,-9.694826299010556,4.749405918635624 -0.0003562301652892562,-9.698505551625336,4.749405918635624 0.0003563501652892562,-9.705864056854901,4.753124569506275 -0.0003564701652892562,-9.702184804240117,4.753124569506275 0.0003565901652892562,-9.698505551625336,4.749405918635624 -0.0003567101652892562,-9.580769467952317,4.749405918635624 0.0003568301652892562,-9.650675267633174,4.756843220376926 -0.0003569501652892562,-9.698505551625336,4.753124569506275 0.0003570701652892562,-9.702184804240117,4.753124569506275 -0.0003571901652892562,-9.709543309469682,4.760561871247575 0.0003573101652892562,-9.705864056854901,4.760561871247575 -0.0003574301652892562,-9.709543309469682,4.756843220376926 0.0003575501652892562,-9.709543309469682,4.749405918635624 -0.0003576701652892562,-9.705864056854901,4.753124569506275 0.0003577901652892562,-9.709543309469682,4.760561871247575 -0.0003579101652892562,-9.709543309469682,4.760561871247575 0.0003580301652892562,-9.705864056854901,4.760561871247575 -0.0003581501652892562,-9.705864056854901,4.756843220376926 0.0003582701652892562,-9.705864056854901,4.753124569506275 -0.0003583901652892562,-9.709543309469682,4.756843220376926 0.0003585101652892562,-9.709543309469682,4.753124569506275 -0.0003586301652892562,-9.705864056854901,4.760561871247575 0.0003587501652892562,-9.705864056854901,4.753124569506275 -0.0003588701652892562,-9.709543309469682,4.756843220376926 0.0003589901652892562,-9.705864056854901,4.756843220376926 -0.0003591101652892562,-9.709543309469682,4.745687267764975 0.0003592301652892562,-9.705864056854901,4.749405918635624 -0.0003593501652892562,-9.709543309469682,4.749405918635624 0.0003594701652892562,-9.705864056854901,4.753124569506275 -0.0003595901652892562,-9.713222562084463,4.753124569506275 0.0003597101652892562,-9.713222562084463,4.756843220376926 -0.0003598301652892562,-9.716901814699247,4.749405918635624 0.0003599501652892562,-9.713222562084463,4.745687267764975 -0.0003600701652892562,-9.705864056854901,4.741968616894324 0.0003601901652892562,-9.705864056854901,4.756843220376926 -0.0003603101652892562,-9.705864056854901,4.753124569506275 0.0003604301652892562,-9.705864056854901,4.753124569506275 -0.0003605501652892562,-9.702184804240117,4.749405918635624 0.0003606701652892562,-9.705864056854901,4.745687267764975 -0.0003607901652892562,-9.705864056854901,4.756843220376926 0.0003609101652892562,-9.709543309469682,4.756843220376926 -0.0003610301652892562,-9.709543309469682,4.753124569506275 0.0003611501652892562,-9.702184804240117,4.753124569506275 -0.0003612701652892562,-9.705864056854901,4.756843220376926 0.0003613901652892562,-9.713222562084463,4.760561871247575 -0.0003615101652892562,-9.709543309469682,4.756843220376926 0.0003616301652892562,-9.713222562084463,4.764280522118225 -0.0003617501652892562,-9.705864056854901,4.760561871247575 0.0003618701652892562,-9.709543309469682,4.753124569506275 -0.0003619901652892562,-9.702184804240117,4.753124569506275 0.0003621101652892562,-9.639637509788828,4.756843220376926 -0.0003622301652892562,-9.698505551625336,4.753124569506275 0.0003623501652892562,-9.702184804240117,4.753124569506275 -0.0003624701652892562,-9.698505551625336,4.753124569506275 0.0003625901652892562,-9.702184804240117,4.756843220376926 -0.0003627101652892562,-9.705864056854901,4.756843220376926 0.0003628301652892562,-9.702184804240117,4.753124569506275 -0.0003629501652892562,-9.705864056854901,4.760561871247575 0.0003630701652892562,-9.702184804240117,4.756843220376926 -0.0003631901652892562,-9.698505551625336,4.756843220376926 0.0003633101652892562,-9.698505551625336,4.753124569506275 -0.0003634301652892562,-9.698505551625336,4.753124569506275 0.0003635501652892562,-9.698505551625336,4.756843220376926 -0.0003636701652892562,-9.698505551625336,4.756843220376926 0.0003637901652892562,-9.698505551625336,4.756843220376926 -0.0003639101652892562,-9.698505551625336,4.753124569506275 0.0003640301652892562,-9.698505551625336,4.753124569506275 -0.0003641501652892562,-9.698505551625336,4.753124569506275 0.0003642701652892562,-9.694826299010556,4.756843220376926 -0.0003643901652892562,-9.691147046395772,4.760561871247575 0.0003645101652892562,-9.694826299010556,4.756843220376926 -0.0003646301652892562,-9.694826299010556,4.756843220376926 0.0003647501652892562,-9.694826299010556,4.756843220376926 -0.0003648701652892562,-9.691147046395772,4.756843220376926 0.0003649901652892562,-9.691147046395772,4.749405918635624 -0.0003651101652892562,-9.68378854116621,4.760561871247575 0.0003652301652892562,-9.687467793780991,4.760561871247575 -0.0003653501652892562,-9.694826299010556,4.753124569506275 0.0003654701652892562,-9.691147046395772,4.749405918635624 -0.0003655901652892562,-9.694826299010556,4.745687267764975 0.0003657101652892562,-9.694826299010556,4.749405918635624 -0.0003658301652892562,-9.698505551625336,4.749405918635624 0.0003659501652892562,-9.694826299010556,4.753124569506275 -0.0003660701652892562,-9.698505551625336,4.753124569506275 0.0003661901652892562,-9.702184804240117,4.760561871247575 -0.0003663101652892562,-9.694826299010556,4.756843220376926 0.0003664301652892562,-9.654354520247955,4.749405918635624 -0.0003665501652892562,-9.573410962722756,4.753124569506275 0.0003666701652892562,-9.698505551625336,4.756843220376926 -0.0003667901652892562,-9.694826299010556,4.760561871247575 0.0003669101652892562,-9.709543309469682,4.756843220376926 -0.0003670301652892562,-9.702184804240117,4.756843220376926 0.0003671501652892562,-9.709543309469682,4.745687267764975 -0.0003672701652892562,-9.709543309469682,4.756843220376926 0.0003673901652892562,-9.705864056854901,4.749405918635624 -0.0003675101652892562,-9.709543309469682,4.756843220376926 0.0003676301652892562,-9.713222562084463,4.756843220376926 -0.0003677501652892562,-9.713222562084463,4.760561871247575 0.0003678701652892562,-9.705864056854901,4.756843220376926 -0.0003679901652892562,-9.709543309469682,4.749405918635624 0.0003681101652892562,-9.713222562084463,4.753124569506275 -0.0003682301652892562,-9.713222562084463,4.749405918635624 0.0003683501652892562,-9.709543309469682,4.756843220376926 -0.0003684701652892562,-9.709543309469682,4.753124569506275 0.0003685901652892562,-9.705864056854901,4.749405918635624 -0.0003687101652892562,-9.709543309469682,4.749405918635624 0.0003688301652892562,-9.705864056854901,4.749405918635624 -0.0003689501652892562,-9.705864056854901,4.749405918635624 0.0003690701652892562,-9.705864056854901,4.756843220376926 -0.0003691901652892562,-9.705864056854901,4.753124569506275 0.0003693101652892562,-9.705864056854901,4.760561871247575 -0.0003694301652892562,-9.698505551625336,4.753124569506275 0.0003695501652892562,-9.698505551625336,4.756843220376926 -0.0003696701652892562,-9.698505551625336,4.760561871247575 0.0003697901652892562,-9.705864056854901,4.760561871247575 -0.0003699101652892562,-9.698505551625336,4.756843220376926 0.0003700301652892562,-9.702184804240117,4.760561871247575 -0.0003701501652892562,-9.702184804240117,4.753124569506275 0.0003702701652892562,-9.702184804240117,4.756843220376926 -0.0003703901652892562,-9.702184804240117,4.749405918635624 0.0003705101652892562,-9.709543309469682,4.745687267764975 -0.0003706301652892562,-9.709543309469682,4.753124569506275 0.0003707501652892562,-9.709543309469682,4.753124569506275 -0.0003708701652892562,-9.702184804240117,4.753124569506275 0.0003709901652892562,-9.705864056854901,4.749405918635624 -0.0003711101652892562,-9.709543309469682,4.749405918635624 0.0003712301652892562,-9.705864056854901,4.749405918635624 -0.0003713501652892562,-9.702184804240117,4.749405918635624 0.0003714701652892562,-9.705864056854901,4.745687267764975 -0.0003715901652892562,-9.705864056854901,4.749405918635624 0.0003717101652892562,-9.702184804240117,4.753124569506275 -0.0003718301652892562,-9.635958257174044,4.745687267764975 0.0003719501652892562,-9.680109288551426,4.756843220376926 -0.0003720701652892562,-9.691147046395772,4.745687267764975 0.0003721901652892562,-9.698505551625336,4.756843220376926 -0.0003723101652892562,-9.698505551625336,4.756843220376926 0.0003724301652892562,-9.698505551625336,4.756843220376926 -0.0003725501652892562,-9.698505551625336,4.753124569506275 0.0003726701652892562,-9.702184804240117,4.749405918635624 -0.0003727901652892562,-9.698505551625336,4.760561871247575 0.0003729101652892562,-9.698505551625336,4.756843220376926 -0.0003730301652892562,-9.694826299010556,4.756843220376926 0.0003731501652892562,-9.698505551625336,4.756843220376926 -0.0003732701652892562,-9.694826299010556,4.756843220376926 0.0003733901652892562,-9.702184804240117,4.753124569506275 -0.0003735101652892562,-9.694826299010556,4.756843220376926 0.0003736301652892562,-9.698505551625336,4.753124569506275 -0.0003737501652892562,-9.698505551625336,4.756843220376926 0.0003738701652892562,-9.698505551625336,4.753124569506275 -0.0003739901652892562,-9.702184804240117,4.756843220376926 0.0003741101652892562,-9.694826299010556,4.753124569506275 -0.0003742301652892562,-9.702184804240117,4.749405918635624 0.0003743501652892562,-9.694826299010556,4.756843220376926 -0.0003744701652892562,-9.694826299010556,4.745687267764975 0.0003745901652892562,-9.702184804240117,4.756843220376926 -0.0003747101652892562,-9.698505551625336,4.753124569506275 0.0003748301652892562,-9.698505551625336,4.760561871247575 -0.0003749501652892562,-9.702184804240117,4.753124569506275 0.0003750701652892562,-9.687467793780991,4.760561871247575 -0.0003751901652892562,-9.694826299010556,4.756843220376926 0.0003753101652892562,-9.698505551625336,4.753124569506275 -0.0003754301652892562,-9.702184804240117,4.756843220376926 0.0003755501652892562,-9.698505551625336,4.749405918635624 -0.0003756701652892562,-9.698505551625336,4.760561871247575 0.0003757901652892562,-9.702184804240117,4.753124569506275 -0.0003759101652892562,-9.698505551625336,4.760561871247575 0.0003760301652892562,-9.698505551625336,4.764280522118225 -0.0003761501652892562,-9.68378854116621,4.756843220376926 0.0003762701652892562,-9.547656194419281,4.753124569506275 -0.0003763901652892562,-9.691147046395772,4.749405918635624 0.0003765101652892562,-9.705864056854901,4.749405918635624 -0.0003766301652892562,-9.705864056854901,4.756843220376926 0.0003767501652892562,-9.705864056854901,4.756843220376926 -0.0003768701652892562,-9.698505551625336,4.756843220376926 0.0003769901652892562,-9.705864056854901,4.749405918635624 -0.0003771101652892562,-9.705864056854901,4.745687267764975 0.0003772301652892562,-9.705864056854901,4.745687267764975 -0.0003773501652892562,-9.702184804240117,4.749405918635624 0.0003774701652892562,-9.709543309469682,4.753124569506275 -0.0003775901652892562,-9.705864056854901,4.749405918635624 0.0003777101652892562,-9.702184804240117,4.749405918635624 -0.0003778301652892562,-9.698505551625336,4.745687267764975 0.0003779501652892562,-9.702184804240117,4.753124569506275 -0.0003780701652892562,-9.702184804240117,4.753124569506275 0.0003781901652892562,-9.705864056854901,4.756843220376926 -0.0003783101652892562,-9.705864056854901,4.753124569506275 0.0003784301652892562,-9.702184804240117,4.753124569506275 -0.0003785501652892562,-9.702184804240117,4.745687267764975 0.0003786701652892562,-9.705864056854901,4.749405918635624 -0.0003787901652892562,-9.705864056854901,4.749405918635624 0.0003789101652892562,-9.702184804240117,4.753124569506275 -0.0003790301652892562,-9.705864056854901,4.749405918635624 0.0003791501652892562,-9.705864056854901,4.741968616894324 -0.0003792701652892562,-9.702184804240117,4.745687267764975 0.0003793901652892562,-9.705864056854901,4.738249966023675 -0.0003795101652892562,-9.709543309469682,4.749405918635624 0.0003796301652892562,-9.702184804240117,4.741968616894324 -0.0003797501652892562,-9.698505551625336,4.753124569506275 0.0003798701652892562,-9.702184804240117,4.749405918635624 -0.0003799901652892562,-9.702184804240117,4.741968616894324 0.0003801101652892562,-9.705864056854901,4.741968616894324 -0.0003802301652892562,-9.705864056854901,4.749405918635624 0.0003803501652892562,-9.698505551625336,4.753124569506275 -0.0003804701652892562,-9.705864056854901,4.749405918635624 0.0003805901652892562,-9.709543309469682,4.753124569506275 -0.0003807101652892562,-9.705864056854901,4.749405918635624 0.0003808301652892562,-9.702184804240117,4.764280522118225 -0.0003809501652892562,-9.705864056854901,4.753124569506275 0.0003810701652892562,-9.702184804240117,4.756843220376926 -0.0003811901652892562,-9.709543309469682,4.753124569506275 0.0003813101652892562,-9.705864056854901,4.764280522118225 -0.0003814301652892562,-9.705864056854901,4.760561871247575 0.0003815501652892562,-9.64699601501839,4.760561871247575 -0.0003816701652892562,-9.676430035936646,4.756843220376926 0.0003817901652892562,-9.694826299010556,4.753124569506275 -0.0003819101652892562,-9.694826299010556,4.756843220376926 0.0003820301652892562,-9.694826299010556,4.753124569506275 -0.0003821501652892562,-9.694826299010556,4.756843220376926 0.0003822701652892562,-9.694826299010556,4.756843220376926 -0.0003823901652892562,-9.698505551625336,4.749405918635624 0.0003825101652892562,-9.698505551625336,4.753124569506275 -0.0003826301652892562,-9.694826299010556,4.753124569506275 0.0003827501652892562,-9.694826299010556,4.753124569506275 -0.0003828701652892562,-9.698505551625336,4.760561871247575 0.0003829901652892562,-9.694826299010556,4.756843220376926 -0.0003831101652892562,-9.698505551625336,4.753124569506275 0.0003832301652892562,-9.698505551625336,4.753124569506275 -0.0003833501652892562,-9.694826299010556,4.753124569506275 0.0003834701652892562,-9.694826299010556,4.749405918635624 -0.0003835901652892562,-9.694826299010556,4.745687267764975 0.0003837101652892562,-9.694826299010556,4.741968616894324 -0.0003838301652892562,-9.698505551625336,4.749405918635624 0.0003839501652892562,-9.694826299010556,4.749405918635624 -0.0003840701652892562,-9.698505551625336,4.753124569506275 0.0003841901652892562,-9.691147046395772,4.753124569506275 -0.0003843101652892562,-9.698505551625336,4.749405918635624 0.0003844301652892562,-9.691147046395772,4.753124569506275 -0.0003845501652892562,-9.694826299010556,4.745687267764975 0.0003846701652892562,-9.694826299010556,4.756843220376926 -0.0003847901652892562,-9.698505551625336,4.753124569506275 0.0003849101652892562,-9.687467793780991,4.756843220376926 -0.0003850301652892562,-9.694826299010556,4.753124569506275 0.0003851501652892562,-9.687467793780991,4.753124569506275 -0.0003852701652892562,-9.691147046395772,4.753124569506275 0.0003853901652892562,-9.691147046395772,4.749405918635624 -0.0003855101652892562,-9.687467793780991,4.756843220376926 0.0003856301652892562,-9.691147046395772,4.756843220376926 -0.0003857501652892562,-9.691147046395772,4.753124569506275 0.0003858701652892562,-9.691147046395772,4.749405918635624 -0.0003859901652892562,-9.532939183960154,4.745687267764975 0.0003861101652892562,-9.687467793780991,4.749405918635624 -0.0003862301652892562,-9.694826299010556,4.753124569506275 0.0003863501652892562,-9.702184804240117,4.756843220376926 -0.0003864701652892562,-9.698505551625336,4.749405918635624 0.0003865901652892562,-9.702184804240117,4.753124569506275 -0.0003867101652892562,-9.709543309469682,4.741968616894324 0.0003868301652892562,-9.702184804240117,4.756843220376926 -0.0003869501652892562,-9.702184804240117,4.749405918635624 0.0003870701652892562,-9.694826299010556,4.749405918635624 -0.0003871901652892562,-9.698505551625336,4.753124569506275 0.0003873101652892562,-9.702184804240117,4.756843220376926 -0.0003874301652892562,-9.698505551625336,4.760561871247575 0.0003875501652892562,-9.702184804240117,4.749405918635624 -0.0003876701652892562,-9.702184804240117,4.753124569506275 0.0003877901652892562,-9.698505551625336,4.745687267764975 -0.0003879101652892562,-9.702184804240117,4.753124569506275 0.0003880301652892562,-9.702184804240117,4.753124569506275 -0.0003881501652892562,-9.702184804240117,4.753124569506275 0.0003882701652892562,-9.702184804240117,4.753124569506275 -0.0003883901652892562,-9.702184804240117,4.745687267764975 0.0003885101652892562,-9.698505551625336,4.753124569506275 -0.0003886301652892562,-9.698505551625336,4.749405918635624 0.0003887501652892562,-9.702184804240117,4.753124569506275 -0.0003888701652892562,-9.702184804240117,4.749405918635624 0.0003889901652892562,-9.698505551625336,4.756843220376926 -0.0003891101652892562,-9.698505551625336,4.749405918635624 0.0003892301652892562,-9.702184804240117,4.753124569506275 -0.0003893501652892562,-9.698505551625336,4.749405918635624 0.0003894701652892562,-9.698505551625336,4.753124569506275 -0.0003895901652892562,-9.698505551625336,4.756843220376926 0.0003897101652892562,-9.702184804240117,4.749405918635624 -0.0003898301652892562,-9.705864056854901,4.749405918635624 0.0003899501652892562,-9.698505551625336,4.749405918635624 -0.0003900701652892562,-9.705864056854901,4.745687267764975 0.0003901901652892562,-9.702184804240117,4.753124569506275 -0.0003903101652892562,-9.698505551625336,4.745687267764975 0.0003904301652892562,-9.705864056854901,4.749405918635624 -0.0003905501652892562,-9.705864056854901,4.749405918635624 0.0003906701652892562,-9.705864056854901,4.756843220376926 -0.0003907901652892562,-9.702184804240117,4.745687267764975 0.0003909101652892562,-9.702184804240117,4.753124569506275 -0.0003910301652892562,-9.705864056854901,4.745687267764975 0.0003911501652892562,-9.709543309469682,4.753124569506275 -0.0003912701652892562,-9.635958257174044,4.775436474730176 0.0003913901652892562,-9.691147046395772,4.738249966023675 -0.0003915101652892562,-9.698505551625336,4.760561871247575 0.0003916301652892562,-9.698505551625336,4.753124569506275 -0.0003917501652892562,-9.698505551625336,4.756843220376926 0.0003918701652892562,-9.698505551625336,4.756843220376926 -0.0003919901652892562,-9.698505551625336,4.756843220376926 0.0003921101652892562,-9.709543309469682,4.749405918635624 -0.0003922301652892562,-9.698505551625336,4.756843220376926 0.0003923501652892562,-9.702184804240117,4.749405918635624 -0.0003924701652892562,-9.698505551625336,4.753124569506275 0.0003925901652892562,-9.698505551625336,4.756843220376926 -0.0003927101652892562,-9.702184804240117,4.756843220376926 0.0003928301652892562,-9.702184804240117,4.753124569506275 -0.0003929501652892562,-9.698505551625336,4.753124569506275 0.0003930701652892562,-9.702184804240117,4.756843220376926 -0.0003931901652892562,-9.705864056854901,4.745687267764975 0.0003933101652892562,-9.702184804240117,4.760561871247575 -0.0003934301652892562,-9.694826299010556,4.753124569506275 0.0003935501652892562,-9.691147046395772,4.753124569506275 -0.0003936701652892562,-9.694826299010556,4.749405918635624 0.0003937901652892562,-9.694826299010556,4.749405918635624 -0.0003939101652892562,-9.698505551625336,4.753124569506275 0.0003940301652892562,-9.694826299010556,4.756843220376926 -0.0003941501652892562,-9.698505551625336,4.753124569506275 0.0003942701652892562,-9.691147046395772,4.756843220376926 -0.0003943901652892562,-9.698505551625336,4.756843220376926 0.0003945101652892562,-9.694826299010556,4.753124569506275 -0.0003946301652892562,-9.694826299010556,4.753124569506275 0.0003947501652892562,-9.691147046395772,4.753124569506275 -0.0003948701652892562,-9.694826299010556,4.749405918635624 0.0003949901652892562,-9.698505551625336,4.749405918635624 -0.0003951101652892562,-9.691147046395772,4.745687267764975 0.0003952301652892562,-9.694826299010556,4.745687267764975 -0.0003953501652892562,-9.691147046395772,4.753124569506275 0.0003954701652892562,-9.698505551625336,4.753124569506275 -0.0003955901652892562,-9.687467793780991,4.753124569506275 0.0003957101652892562,-9.5439769418045,4.749405918635624 -0.0003958301652892562,-9.676430035936646,4.745687267764975 0.0003959501652892562,-9.698505551625336,4.753124569506275 -0.0003960701652892562,-9.698505551625336,4.753124569506275 0.0003961901652892562,-9.698505551625336,4.756843220376926 -0.0003963101652892562,-9.694826299010556,4.756843220376926 0.0003964301652892562,-9.702184804240117,4.753124569506275 -0.0003965501652892562,-9.705864056854901,4.749405918635624 0.0003966701652892562,-9.705864056854901,4.753124569506275 -0.0003967901652892562,-9.705864056854901,4.749405918635624 0.0003969101652892562,-9.705864056854901,4.756843220376926 -0.0003970301652892562,-9.705864056854901,4.753124569506275 0.0003971501652892562,-9.705864056854901,4.753124569506275 -0.0003972701652892562,-9.709543309469682,4.749405918635624 0.0003973901652892562,-9.705864056854901,4.749405918635624 -0.0003975101652892562,-9.709543309469682,4.749405918635624 0.0003976301652892562,-9.705864056854901,4.749405918635624 -0.0003977501652892562,-9.698505551625336,4.760561871247575 0.0003978701652892562,-9.705864056854901,4.756843220376926 -0.0003979901652892562,-9.705864056854901,4.753124569506275 0.0003981101652892562,-9.698505551625336,4.753124569506275 -0.0003982301652892562,-9.709543309469682,4.749405918635624 0.0003983501652892562,-9.705864056854901,4.749405918635624 -0.0003984701652892562,-9.705864056854901,4.760561871247575 0.0003985901652892562,-9.702184804240117,4.760561871247575 -0.0003987101652892562,-9.702184804240117,4.756843220376926 0.0003988301652892562,-9.702184804240117,4.756843220376926 -0.0003989501652892562,-9.702184804240117,4.749405918635624 0.0003990701652892562,-9.702184804240117,4.753124569506275 -0.0003991901652892562,-9.702184804240117,4.753124569506275 0.0003993101652892562,-9.698505551625336,4.753124569506275 -0.0003994301652892562,-9.702184804240117,4.753124569506275 0.0003995501652892562,-9.702184804240117,4.753124569506275 -0.0003996701652892562,-9.698505551625336,4.741968616894324 0.0003997901652892562,-9.702184804240117,4.749405918635624 -0.0003999101652892562,-9.702184804240117,4.745687267764975 0.0004000301652892562,-9.698505551625336,4.745687267764975 -0.0004001501652892562,-9.702184804240117,4.756843220376926 0.0004002701652892562,-9.705864056854901,4.753124569506275 -0.0004003901652892562,-9.702184804240117,4.753124569506275 0.0004005101652892562,-9.705864056854901,4.753124569506275 -0.0004006301652892562,-9.702184804240117,4.749405918635624 0.0004007501652892562,-9.702184804240117,4.753124569506275 -0.0004008701652892562,-9.698505551625336,4.756843220376926 0.0004009901652892562,-9.654354520247955,4.734531315153024 -0.0004011101652892562,-9.658033772862735,4.779155125600825 0.0004012301652892562,-9.68378854116621,4.753124569506275 -0.0004013501652892562,-9.687467793780991,4.749405918635624 0.0004014701652892562,-9.691147046395772,4.749405918635624 -0.0004015901652892562,-9.694826299010556,4.753124569506275 0.0004017101652892562,-9.694826299010556,4.753124569506275 -0.0004018301652892562,-9.698505551625336,4.756843220376926 0.0004019501652892562,-9.687467793780991,4.749405918635624 -0.0004020701652892562,-9.694826299010556,4.753124569506275 0.0004021901652892562,-9.694826299010556,4.753124569506275 -0.0004023101652892562,-9.694826299010556,4.749405918635624 0.0004024301652892562,-9.698505551625336,4.756843220376926 -0.0004025501652892562,-9.698505551625336,4.749405918635624 0.0004026701652892562,-9.694826299010556,4.756843220376926 -0.0004027901652892562,-9.694826299010556,4.753124569506275 0.0004029101652892562,-9.691147046395772,4.753124569506275 -0.0004030301652892562,-9.691147046395772,4.745687267764975 0.0004031501652892562,-9.694826299010556,4.753124569506275 -0.0004032701652892562,-9.687467793780991,4.745687267764975 0.0004033901652892562,-9.691147046395772,4.756843220376926 -0.0004035101652892562,-9.691147046395772,4.753124569506275 0.0004036301652892562,-9.680109288551426,4.745687267764975 -0.0004037501652892562,-9.687467793780991,4.749405918635624 0.0004038701652892562,-9.687467793780991,4.749405918635624 -0.0004039901652892562,-9.68378854116621,4.749405918635624 0.0004041101652892562,-9.691147046395772,4.741968616894324 -0.0004042301652892562,-9.691147046395772,4.749405918635624 0.0004043501652892562,-9.694826299010556,4.745687267764975 -0.0004044701652892562,-9.687467793780991,4.749405918635624 0.0004045901652892562,-9.691147046395772,4.749405918635624 -0.0004047101652892562,-9.68378854116621,4.749405918635624 0.0004048301652892562,-9.694826299010556,4.749405918635624 -0.0004049501652892562,-9.694826299010556,4.749405918635624 0.0004050701652892562,-9.691147046395772,4.753124569506275 -0.0004051901652892562,-9.691147046395772,4.753124569506275 0.0004053101652892562,-9.691147046395772,4.753124569506275 -0.0004054301652892562,-9.558693952263626,4.749405918635624 0.0004055501652892562,-9.661713025477519,4.749405918635624 -0.0004056701652892562,-9.698505551625336,4.749405918635624 0.0004057901652892562,-9.698505551625336,4.749405918635624 -0.0004059101652892562,-9.698505551625336,4.753124569506275 0.0004060301652892562,-9.702184804240117,4.749405918635624 -0.0004061501652892562,-9.698505551625336,4.749405918635624 0.0004062701652892562,-9.694826299010556,4.741968616894324 -0.0004063901652892562,-9.698505551625336,4.745687267764975 0.0004065101652892562,-9.702184804240117,4.745687267764975 -0.0004066301652892562,-9.698505551625336,4.745687267764975 0.0004067501652892562,-9.709543309469682,4.745687267764975 -0.0004068701652892562,-9.698505551625336,4.749405918635624 0.0004069901652892562,-9.702184804240117,4.749405918635624 -0.0004071101652892562,-9.702184804240117,4.756843220376926 0.0004072301652892562,-9.702184804240117,4.749405918635624 -0.0004073501652892562,-9.702184804240117,4.753124569506275 0.0004074701652892562,-9.694826299010556,4.760561871247575 -0.0004075901652892562,-9.702184804240117,4.760561871247575 0.0004077101652892562,-9.698505551625336,4.753124569506275 -0.0004078301652892562,-9.702184804240117,4.753124569506275 0.0004079501652892562,-9.702184804240117,4.749405918635624 -0.0004080701652892562,-9.698505551625336,4.756843220376926 0.0004081901652892562,-9.705864056854901,4.756843220376926 -0.0004083101652892562,-9.702184804240117,4.760561871247575 0.0004084301652892562,-9.698505551625336,4.756843220376926 -0.0004085501652892562,-9.702184804240117,4.760561871247575 0.0004086701652892562,-9.698505551625336,4.756843220376926 -0.0004087901652892562,-9.702184804240117,4.764280522118225 0.0004089101652892562,-9.702184804240117,4.753124569506275 -0.0004090301652892562,-9.698505551625336,4.756843220376926 0.0004091501652892562,-9.698505551625336,4.760561871247575 -0.0004092701652892562,-9.702184804240117,4.749405918635624 0.0004093901652892562,-9.705864056854901,4.756843220376926 -0.0004095101652892562,-9.702184804240117,4.749405918635624 0.0004096301652892562,-9.702184804240117,4.745687267764975 -0.0004097501652892562,-9.705864056854901,4.749405918635624 0.0004098701652892562,-9.705864056854901,4.756843220376926 -0.0004099901652892562,-9.713222562084463,4.753124569506275 0.0004101101652892562,-9.709543309469682,4.753124569506275 -0.0004102301652892562,-9.709543309469682,4.749405918635624 0.0004103501652892562,-9.713222562084463,4.745687267764975 -0.0004104701652892562,-9.709543309469682,4.753124569506275 0.0004105901652892562,-9.709543309469682,4.745687267764975 -0.0004107101652892562,-9.687467793780991,4.745687267764975 0.0004108301652892562,-9.639637509788828,4.771717823859525 -0.0004109501652892562,-9.694826299010556,4.756843220376926 0.0004110701652892562,-9.691147046395772,4.749405918635624 -0.0004111901652892562,-9.694826299010556,4.749405918635624 0.0004113101652892562,-9.694826299010556,4.749405918635624 -0.0004114301652892562,-9.691147046395772,4.749405918635624 0.0004115501652892562,-9.698505551625336,4.756843220376926 -0.0004116701652892562,-9.698505551625336,4.753124569506275 0.0004117901652892562,-9.694826299010556,4.753124569506275 -0.0004119101652892562,-9.694826299010556,4.753124569506275 0.0004120301652892562,-9.698505551625336,4.760561871247575 -0.0004121501652892562,-9.698505551625336,4.749405918635624 0.0004122701652892562,-9.698505551625336,4.753124569506275 -0.0004123901652892562,-9.698505551625336,4.756843220376926 0.0004125101652892562,-9.691147046395772,4.756843220376926 -0.0004126301652892562,-9.694826299010556,4.753124569506275 0.0004127501652892562,-9.698505551625336,4.741968616894324 -0.0004128701652892562,-9.687467793780991,4.753124569506275 0.0004129901652892562,-9.694826299010556,4.753124569506275 -0.0004131101652892562,-9.691147046395772,4.749405918635624 0.0004132301652892562,-9.691147046395772,4.749405918635624 -0.0004133501652892562,-9.691147046395772,4.756843220376926 0.0004134701652892562,-9.691147046395772,4.753124569506275 -0.0004135901652892562,-9.691147046395772,4.749405918635624 0.0004137101652892562,-9.691147046395772,4.745687267764975 -0.0004138301652892562,-9.691147046395772,4.749405918635624 0.0004139501652892562,-9.691147046395772,4.749405918635624 -0.0004140701652892562,-9.687467793780991,4.756843220376926 0.0004141901652892562,-9.687467793780991,4.756843220376926 -0.0004143101652892562,-9.691147046395772,4.753124569506275 0.0004144301652892562,-9.687467793780991,4.753124569506275 -0.0004145501652892562,-9.687467793780991,4.753124569506275 0.0004146701652892562,-9.680109288551426,4.749405918635624 -0.0004147901652892562,-9.691147046395772,4.753124569506275 0.0004149101652892562,-9.687467793780991,4.753124569506275 -0.0004150301652892562,-9.687467793780991,4.756843220376926 0.0004151501652892562,-9.613882741485353,4.738249966023675 -0.0004152701652892562,-9.599165731026227,4.753124569506275 0.0004153901652892562,-9.687467793780991,4.745687267764975 -0.0004155101652892562,-9.694826299010556,4.741968616894324 0.0004156301652892562,-9.698505551625336,4.756843220376926 -0.0004157501652892562,-9.694826299010556,4.753124569506275 0.0004158701652892562,-9.702184804240117,4.753124569506275 -0.0004159901652892562,-9.698505551625336,4.749405918635624 0.0004161101652892562,-9.702184804240117,4.741968616894324 -0.0004162301652892562,-9.698505551625336,4.749405918635624 0.0004163501652892562,-9.698505551625336,4.749405918635624 -0.0004164701652892562,-9.698505551625336,4.756843220376926 0.0004165901652892562,-9.698505551625336,4.756843220376926 -0.0004167101652892562,-9.705864056854901,4.756843220376926 0.0004168301652892562,-9.702184804240117,4.756843220376926 -0.0004169501652892562,-9.698505551625336,4.753124569506275 0.0004170701652892562,-9.698505551625336,4.749405918635624 -0.0004171901652892562,-9.698505551625336,4.756843220376926 0.0004173101652892562,-9.702184804240117,4.753124569506275 -0.0004174301652892562,-9.698505551625336,4.753124569506275 0.0004175501652892562,-9.698505551625336,4.749405918635624 -0.0004176701652892562,-9.702184804240117,4.738249966023675 0.0004177901652892562,-9.694826299010556,4.749405918635624 -0.0004179101652892562,-9.691147046395772,4.749405918635624 0.0004180301652892562,-9.702184804240117,4.756843220376926 -0.0004181501652892562,-9.694826299010556,4.753124569506275 0.0004182701652892562,-9.694826299010556,4.753124569506275 -0.0004183901652892562,-9.698505551625336,4.749405918635624 0.0004185101652892562,-9.694826299010556,4.749405918635624 -0.0004186301652892562,-9.705864056854901,4.749405918635624 0.0004187501652892562,-9.698505551625336,4.745687267764975 -0.0004188701652892562,-9.702184804240117,4.756843220376926 0.0004189901652892562,-9.698505551625336,4.749405918635624 -0.0004191101652892562,-9.702184804240117,4.753124569506275 0.0004192301652892562,-9.705864056854901,4.745687267764975 -0.0004193501652892562,-9.698505551625336,4.749405918635624 0.0004194701652892562,-9.694826299010556,4.749405918635624 -0.0004195901652892562,-9.698505551625336,4.749405918635624 0.0004197101652892562,-9.691147046395772,4.753124569506275 -0.0004198301652892562,-9.691147046395772,4.749405918635624 0.0004199501652892562,-9.694826299010556,4.756843220376926 -0.0004200701652892562,-9.691147046395772,4.753124569506275 0.0004201901652892562,-9.694826299010556,4.753124569506275 -0.0004203101652892562,-9.691147046395772,4.756843220376926 0.0004204301652892562,-9.687467793780991,4.756843220376926 -0.0004205501652892562,-9.628599751944483,4.749405918635624 0.0004206701652892562,-9.676430035936646,4.756843220376926 -0.0004207901652892562,-9.691147046395772,4.753124569506275 0.0004209101652892562,-9.687467793780991,4.741968616894324 -0.0004210301652892562,-9.687467793780991,4.749405918635624 0.0004211501652892562,-9.691147046395772,4.753124569506275 -0.0004212701652892562,-9.687467793780991,4.749405918635624 0.0004213901652892562,-9.694826299010556,4.749405918635624 -0.0004215101652892562,-9.694826299010556,4.745687267764975 0.0004216301652892562,-9.694826299010556,4.745687267764975 -0.0004217501652892562,-9.691147046395772,4.745687267764975 0.0004218701652892562,-9.694826299010556,4.749405918635624 -0.0004219901652892562,-9.694826299010556,4.749405918635624 0.0004221101652892562,-9.698505551625336,4.749405918635624 -0.0004222301652892562,-9.702184804240117,4.749405918635624 0.0004223501652892562,-9.694826299010556,4.756843220376926 -0.0004224701652892562,-9.698505551625336,4.749405918635624 0.0004225901652892562,-9.698505551625336,4.749405918635624 -0.0004227101652892562,-9.702184804240117,4.741968616894324 0.0004228301652892562,-9.698505551625336,4.753124569506275 -0.0004229501652892562,-9.694826299010556,4.749405918635624 0.0004230701652892562,-9.702184804240117,4.749405918635624 -0.0004231901652892562,-9.691147046395772,4.756843220376926 0.0004233101652892562,-9.698505551625336,4.753124569506275 -0.0004234301652892562,-9.694826299010556,4.753124569506275 0.0004235501652892562,-9.698505551625336,4.749405918635624 -0.0004236701652892562,-9.691147046395772,4.745687267764975 0.0004237901652892562,-9.698505551625336,4.753124569506275 -0.0004239101652892562,-9.694826299010556,4.749405918635624 0.0004240301652892562,-9.691147046395772,4.756843220376926 -0.0004241501652892562,-9.694826299010556,4.745687267764975 0.0004242701652892562,-9.691147046395772,4.749405918635624 -0.0004243901652892562,-9.698505551625336,4.738249966023675 0.0004245101652892562,-9.694826299010556,4.745687267764975 -0.0004246301652892562,-9.687467793780991,4.749405918635624 0.0004247501652892562,-9.691147046395772,4.753124569506275 -0.0004248701652892562,-9.672750783321865,4.749405918635624 0.0004249901652892562,-9.540297689189719,4.745687267764975 -0.0004251101652892562,-9.68378854116621,4.760561871247575 0.0004252301652892562,-9.687467793780991,4.749405918635624 -0.0004253501652892562,-9.687467793780991,4.756843220376926 0.0004254701652892562,-9.694826299010556,4.753124569506275 -0.0004255901652892562,-9.691147046395772,4.753124569506275 0.0004257101652892562,-9.694826299010556,4.741968616894324 -0.0004258301652892562,-9.694826299010556,4.745687267764975 0.0004259501652892562,-9.694826299010556,4.749405918635624 -0.0004260701652892562,-9.694826299010556,4.756843220376926 0.0004261901652892562,-9.702184804240117,4.749405918635624 -0.0004263101652892562,-9.702184804240117,4.749405918635624 0.0004264301652892562,-9.705864056854901,4.753124569506275 -0.0004265501652892562,-9.705864056854901,4.753124569506275 0.0004266701652892562,-9.702184804240117,4.749405918635624 -0.0004267901652892562,-9.702184804240117,4.749405918635624 0.0004269101652892562,-9.698505551625336,4.753124569506275 -0.0004270301652892562,-9.702184804240117,4.749405918635624 0.0004271501652892562,-9.691147046395772,4.745687267764975 -0.0004272701652892562,-9.698505551625336,4.745687267764975 0.0004273901652892562,-9.702184804240117,4.745687267764975 -0.0004275101652892562,-9.698505551625336,4.745687267764975 0.0004276301652892562,-9.702184804240117,4.749405918635624 -0.0004277501652892562,-9.702184804240117,4.749405918635624 0.0004278701652892562,-9.702184804240117,4.741968616894324 -0.0004279901652892562,-9.705864056854901,4.745687267764975 0.0004281101652892562,-9.702184804240117,4.745687267764975 -0.0004282301652892562,-9.694826299010556,4.749405918635624 0.0004283501652892562,-9.698505551625336,4.749405918635624 -0.0004284701652892562,-9.694826299010556,4.753124569506275 0.0004285901652892562,-9.691147046395772,4.745687267764975 -0.0004287101652892562,-9.694826299010556,4.749405918635624 0.0004288301652892562,-9.694826299010556,4.749405918635624 -0.0004289501652892562,-9.694826299010556,4.753124569506275 0.0004290701652892562,-9.698505551625336,4.745687267764975 -0.0004291901652892562,-9.694826299010556,4.753124569506275 0.0004293101652892562,-9.691147046395772,4.749405918635624 -0.0004294301652892562,-9.691147046395772,4.753124569506275 0.0004295501652892562,-9.691147046395772,4.749405918635624 -0.0004296701652892562,-9.687467793780991,4.745687267764975 0.0004297901652892562,-9.694826299010556,4.753124569506275 -0.0004299101652892562,-9.694826299010556,4.745687267764975 0.0004300301652892562,-9.698505551625336,4.745687267764975 -0.0004301501652892562,-9.698505551625336,4.753124569506275 0.0004302701652892562,-9.639637509788828,4.753124569506275 -0.0004303901652892562,-9.672750783321865,4.756843220376926 0.0004305101652892562,-9.691147046395772,4.753124569506275 -0.0004306301652892562,-9.691147046395772,4.741968616894324 0.0004307501652892562,-9.687467793780991,4.749405918635624 -0.0004308701652892562,-9.698505551625336,4.745687267764975 0.0004309901652892562,-9.687467793780991,4.745687267764975 -0.0004311101652892562,-9.691147046395772,4.745687267764975 0.0004312301652892562,-9.691147046395772,4.741968616894324 -0.0004313501652892562,-9.694826299010556,4.741968616894324 0.0004314701652892562,-9.691147046395772,4.741968616894324 -0.0004315901652892562,-9.691147046395772,4.741968616894324 0.0004317101652892562,-9.687467793780991,4.738249966023675 -0.0004318301652892562,-9.687467793780991,4.749405918635624 0.0004319501652892562,-9.687467793780991,4.745687267764975 -0.0004320701652892562,-9.691147046395772,4.749405918635624 0.0004321901652892562,-9.687467793780991,4.741968616894324 -0.0004323101652892562,-9.68378854116621,4.734531315153024 0.0004324301652892562,-9.691147046395772,4.749405918635624 -0.0004325501652892562,-9.691147046395772,4.741968616894324 0.0004326701652892562,-9.687467793780991,4.749405918635624 -0.0004327901652892562,-9.687467793780991,4.745687267764975 0.0004329101652892562,-9.691147046395772,4.753124569506275 -0.0004330301652892562,-9.687467793780991,4.749405918635624 0.0004331501652892562,-9.691147046395772,4.749405918635624 -0.0004332701652892562,-9.687467793780991,4.756843220376926 0.0004333901652892562,-9.691147046395772,4.753124569506275 -0.0004335101652892562,-9.687467793780991,4.753124569506275 0.0004336301652892562,-9.691147046395772,4.749405918635624 -0.0004337501652892562,-9.691147046395772,4.753124569506275 0.0004338701652892562,-9.691147046395772,4.745687267764975 -0.0004339901652892562,-9.691147046395772,4.745687267764975 0.0004341101652892562,-9.691147046395772,4.745687267764975 -0.0004342301652892562,-9.691147046395772,4.749405918635624 0.0004343501652892562,-9.691147046395772,4.756843220376926 -0.0004344701652892562,-9.687467793780991,4.749405918635624 0.0004345901652892562,-9.68378854116621,4.745687267764975 -0.0004347101652892562,-9.540297689189719,4.745687267764975 0.0004348301652892562,-9.676430035936646,4.753124569506275 -0.0004349501652892562,-9.691147046395772,4.749405918635624 0.0004350701652892562,-9.694826299010556,4.741968616894324 -0.0004351901652892562,-9.694826299010556,4.745687267764975 0.0004353101652892562,-9.694826299010556,4.745687267764975 -0.0004354301652892562,-9.698505551625336,4.753124569506275 0.0004355501652892562,-9.694826299010556,4.749405918635624 -0.0004356701652892562,-9.694826299010556,4.745687267764975 0.0004357901652892562,-9.694826299010556,4.749405918635624 -0.0004359101652892562,-9.698505551625336,4.753124569506275 0.0004360301652892562,-9.694826299010556,4.753124569506275 -0.0004361501652892562,-9.702184804240117,4.753124569506275 0.0004362701652892562,-9.698505551625336,4.753124569506275 -0.0004363901652892562,-9.691147046395772,4.745687267764975 0.0004365101652892562,-9.694826299010556,4.749405918635624 -0.0004366301652892562,-9.698505551625336,4.749405918635624 0.0004367501652892562,-9.694826299010556,4.760561871247575 -0.0004368701652892562,-9.702184804240117,4.749405918635624 0.0004369901652892562,-9.698505551625336,4.749405918635624 -0.0004371101652892562,-9.702184804240117,4.741968616894324 0.0004372301652892562,-9.698505551625336,4.749405918635624 -0.0004373501652892562,-9.705864056854901,4.753124569506275 0.0004374701652892562,-9.705864056854901,4.749405918635624 -0.0004375901652892562,-9.702184804240117,4.749405918635624 0.0004377101652892562,-9.705864056854901,4.753124569506275 -0.0004378301652892562,-9.705864056854901,4.745687267764975 0.0004379501652892562,-9.705864056854901,4.749405918635624 -0.0004380701652892562,-9.709543309469682,4.738249966023675 0.0004381901652892562,-9.709543309469682,4.741968616894324 -0.0004383101652892562,-9.702184804240117,4.753124569506275 0.0004384301652892562,-9.705864056854901,4.756843220376926 -0.0004385501652892562,-9.709543309469682,4.749405918635624 0.0004386701652892562,-9.713222562084463,4.749405918635624 -0.0004387901652892562,-9.702184804240117,4.738249966023675 0.0004389101652892562,-9.698505551625336,4.749405918635624 -0.0004390301652892562,-9.698505551625336,4.753124569506275 0.0004391501652892562,-9.705864056854901,4.749405918635624 -0.0004392701652892562,-9.702184804240117,4.749405918635624 0.0004393901652892562,-9.702184804240117,4.749405918635624 -0.0004395101652892562,-9.702184804240117,4.753124569506275 0.0004396301652892562,-9.698505551625336,4.749405918635624 -0.0004397501652892562,-9.702184804240117,4.749405918635624 0.0004398701652892562,-9.702184804240117,4.756843220376926 -0.0004399901652892562,-9.632279004559264,4.767999172988874 0.0004401101652892562,-9.680109288551426,4.745687267764975 -0.0004402301652892562,-9.687467793780991,4.749405918635624 0.0004403501652892562,-9.687467793780991,4.753124569506275 -0.0004404701652892562,-9.687467793780991,4.753124569506275 0.0004405901652892562,-9.694826299010556,4.749405918635624 -0.0004407101652892562,-9.694826299010556,4.753124569506275 0.0004408301652892562,-9.694826299010556,4.749405918635624 -0.0004409501652892562,-9.687467793780991,4.749405918635624 0.0004410701652892562,-9.687467793780991,4.756843220376926 -0.0004411901652892562,-9.691147046395772,4.753124569506275 0.0004413101652892562,-9.691147046395772,4.745687267764975 -0.0004414301652892562,-9.687467793780991,4.753124569506275 0.0004415501652892562,-9.691147046395772,4.749405918635624 -0.0004416701652892562,-9.68378854116621,4.749405918635624 0.0004417901652892562,-9.691147046395772,4.745687267764975 -0.0004419101652892562,-9.691147046395772,4.749405918635624 0.0004420301652892562,-9.68378854116621,4.745687267764975 -0.0004421501652892562,-9.691147046395772,4.741968616894324 0.0004422701652892562,-9.698505551625336,4.741968616894324 -0.0004423901652892562,-9.691147046395772,4.738249966023675 0.0004425101652892562,-9.691147046395772,4.741968616894324 -0.0004426301652892562,-9.691147046395772,4.741968616894324 0.0004427501652892562,-9.691147046395772,4.749405918635624 -0.0004428701652892562,-9.691147046395772,4.745687267764975 0.0004429901652892562,-9.694826299010556,4.745687267764975 -0.0004431101652892562,-9.694826299010556,4.745687267764975 0.0004432301652892562,-9.694826299010556,4.745687267764975 -0.0004433501652892562,-9.694826299010556,4.753124569506275 0.0004434701652892562,-9.691147046395772,4.749405918635624 -0.0004435901652892562,-9.694826299010556,4.745687267764975 0.0004437101652892562,-9.698505551625336,4.741968616894324 -0.0004438301652892562,-9.691147046395772,4.741968616894324 0.0004439501652892562,-9.691147046395772,4.745687267764975 -0.0004440701652892562,-9.691147046395772,4.749405918635624 0.0004441901652892562,-9.694826299010556,4.749405918635624 -0.0004443101652892562,-9.698505551625336,4.753124569506275 0.0004444301652892562,-9.5439769418045,4.745687267764975 -0.0004445501652892562,-9.687467793780991,4.745687267764975 0.0004446701652892562,-9.702184804240117,4.749405918635624 -0.0004447901652892562,-9.698505551625336,4.749405918635624 0.0004449101652892562,-9.705864056854901,4.756843220376926 -0.0004450301652892562,-9.705864056854901,4.756843220376926 0.0004451501652892562,-9.705864056854901,4.756843220376926 -0.0004452701652892562,-9.709543309469682,4.749405918635624 0.0004453901652892562,-9.702184804240117,4.753124569506275 -0.0004455101652892562,-9.698505551625336,4.741968616894324 0.0004456301652892562,-9.698505551625336,4.745687267764975 -0.0004457501652892562,-9.702184804240117,4.753124569506275 0.0004458701652892562,-9.705864056854901,4.749405918635624 -0.0004459901652892562,-9.705864056854901,4.749405918635624 0.0004461101652892562,-9.705864056854901,4.745687267764975 -0.0004462301652892562,-9.705864056854901,4.741968616894324 0.0004463501652892562,-9.709543309469682,4.745687267764975 -0.0004464701652892562,-9.705864056854901,4.753124569506275 0.0004465901652892562,-9.709543309469682,4.753124569506275 -0.0004467101652892562,-9.702184804240117,4.749405918635624 0.0004468301652892562,-9.698505551625336,4.753124569506275 -0.0004469501652892562,-9.705864056854901,4.745687267764975 0.0004470701652892562,-9.702184804240117,4.745687267764975 -0.0004471901652892562,-9.698505551625336,4.745687267764975 0.0004473101652892562,-9.705864056854901,4.745687267764975 -0.0004474301652892562,-9.698505551625336,4.749405918635624 0.0004475501652892562,-9.702184804240117,4.749405918635624 -0.0004476701652892562,-9.709543309469682,4.749405918635624 0.0004477901652892562,-9.702184804240117,4.745687267764975 -0.0004479101652892562,-9.705864056854901,4.749405918635624 0.0004480301652892562,-9.702184804240117,4.749405918635624 -0.0004481501652892562,-9.705864056854901,4.753124569506275 0.0004482701652892562,-9.698505551625336,4.756843220376926 -0.0004483901652892562,-9.702184804240117,4.753124569506275 0.0004485101652892562,-9.702184804240117,4.749405918635624 -0.0004486301652892562,-9.698505551625336,4.749405918635624 0.0004487501652892562,-9.705864056854901,4.753124569506275 -0.0004488701652892562,-9.702184804240117,4.745687267764975 0.0004489901652892562,-9.702184804240117,4.749405918635624 -0.0004491101652892562,-9.702184804240117,4.741968616894324 0.0004492301652892562,-9.705864056854901,4.749405918635624 -0.0004493501652892562,-9.698505551625336,4.741968616894324 0.0004494701652892562,-9.702184804240117,4.741968616894324 -0.0004495901652892562,-9.702184804240117,4.745687267764975 0.0004497101652892562,-9.650675267633174,4.730812664282375 -0.0004498301652892562,-9.672750783321865,4.756843220376926 0.0004499501652892562,-9.691147046395772,4.749405918635624 -0.0004500701652892562,-9.691147046395772,4.745687267764975 0.0004501901652892562,-9.68378854116621,4.741968616894324 -0.0004503101652892562,-9.68378854116621,4.745687267764975 0.0004504301652892562,-9.687467793780991,4.749405918635624 -0.0004505501652892562,-9.694826299010556,4.745687267764975 0.0004506701652892562,-9.694826299010556,4.741968616894324 -0.0004507901652892562,-9.694826299010556,4.741968616894324 0.0004509101652892562,-9.691147046395772,4.749405918635624 -0.0004510301652892562,-9.687467793780991,4.738249966023675 0.0004511501652892562,-9.694826299010556,4.749405918635624 -0.0004512701652892562,-9.694826299010556,4.741968616894324 0.0004513901652892562,-9.691147046395772,4.749405918635624 -0.0004515101652892562,-9.694826299010556,4.749405918635624 0.0004516301652892562,-9.694826299010556,4.749405918635624 -0.0004517501652892562,-9.691147046395772,4.734531315153024 0.0004518701652892562,-9.687467793780991,4.749405918635624 -0.0004519901652892562,-9.691147046395772,4.745687267764975 0.0004521101652892562,-9.687467793780991,4.745687267764975 -0.0004522301652892562,-9.68378854116621,4.753124569506275 0.0004523501652892562,-9.687467793780991,4.745687267764975 -0.0004524701652892562,-9.687467793780991,4.753124569506275 0.0004525901652892562,-9.687467793780991,4.753124569506275 -0.0004527101652892562,-9.68378854116621,4.749405918635624 0.0004528301652892562,-9.687467793780991,4.749405918635624 -0.0004529501652892562,-9.687467793780991,4.749405918635624 0.0004530701652892562,-9.691147046395772,4.756843220376926 -0.0004531901652892562,-9.687467793780991,4.753124569506275 0.0004533101652892562,-9.680109288551426,4.753124569506275 -0.0004534301652892562,-9.68378854116621,4.749405918635624 0.0004535501652892562,-9.68378854116621,4.753124569506275 -0.0004536701652892562,-9.68378854116621,4.745687267764975 0.0004537901652892562,-9.687467793780991,4.745687267764975 -0.0004539101652892562,-9.687467793780991,4.741968616894324 0.0004540301652892562,-9.687467793780991,4.749405918635624 -0.0004541501652892562,-9.547656194419281,4.745687267764975 0.0004542701652892562,-9.661713025477519,4.741968616894324 -0.0004543901652892562,-9.694826299010556,4.745687267764975 0.0004545101652892562,-9.691147046395772,4.749405918635624 -0.0004546301652892562,-9.698505551625336,4.741968616894324 0.0004547501652892562,-9.694826299010556,4.745687267764975 -0.0004548701652892562,-9.702184804240117,4.749405918635624 0.0004549901652892562,-9.698505551625336,4.741968616894324 -0.0004551101652892562,-9.698505551625336,4.741968616894324 0.0004552301652892562,-9.698505551625336,4.745687267764975 -0.0004553501652892562,-9.702184804240117,4.745687267764975 0.0004554701652892562,-9.698505551625336,4.745687267764975 -0.0004555901652892562,-9.702184804240117,4.745687267764975 0.0004557101652892562,-9.702184804240117,4.749405918635624 -0.0004558301652892562,-9.694826299010556,4.741968616894324 0.0004559501652892562,-9.694826299010556,4.745687267764975 -0.0004560701652892562,-9.694826299010556,4.738249966023675 0.0004561901652892562,-9.698505551625336,4.741968616894324 -0.0004563101652892562,-9.694826299010556,4.753124569506275 0.0004564301652892562,-9.698505551625336,4.741968616894324 -0.0004565501652892562,-9.702184804240117,4.745687267764975 0.0004566701652892562,-9.698505551625336,4.741968616894324 -0.0004567901652892562,-9.702184804240117,4.741968616894324 0.0004569101652892562,-9.698505551625336,4.749405918635624 -0.0004570301652892562,-9.698505551625336,4.745687267764975 0.0004571501652892562,-9.702184804240117,4.749405918635624 -0.0004572701652892562,-9.702184804240117,4.753124569506275 0.0004573901652892562,-9.698505551625336,4.753124569506275 -0.0004575101652892562,-9.702184804240117,4.745687267764975 0.0004576301652892562,-9.702184804240117,4.745687267764975 -0.0004577501652892562,-9.705864056854901,4.741968616894324 0.0004578701652892562,-9.694826299010556,4.753124569506275 -0.0004579901652892562,-9.694826299010556,4.749405918635624 0.0004581101652892562,-9.694826299010556,4.745687267764975 -0.0004582301652892562,-9.705864056854901,4.741968616894324 0.0004583501652892562,-9.705864056854901,4.738249966023675 -0.0004584701652892562,-9.698505551625336,4.741968616894324 0.0004585901652892562,-9.702184804240117,4.738249966023675 -0.0004587101652892562,-9.705864056854901,4.749405918635624 0.0004588301652892562,-9.702184804240117,4.745687267764975 -0.0004589501652892562,-9.694826299010556,4.745687267764975 0.0004590701652892562,-9.702184804240117,4.749405918635624 -0.0004591901652892562,-9.705864056854901,4.745687267764975 0.0004593101652892562,-9.705864056854901,4.749405918635624 -0.0004594301652892562,-9.68378854116621,4.723375362541073 0.0004595501652892562,-9.64699601501839,4.775436474730176 -0.0004596701652892562,-9.687467793780991,4.749405918635624 0.0004597901652892562,-9.694826299010556,4.753124569506275 -0.0004599101652892562,-9.698505551625336,4.745687267764975 0.0004600301652892562,-9.694826299010556,4.749405918635624 -0.0004601501652892562,-9.698505551625336,4.749405918635624 0.0004602701652892562,-9.694826299010556,4.749405918635624 -0.0004603901652892562,-9.698505551625336,4.753124569506275 0.0004605101652892562,-9.698505551625336,4.753124569506275 -0.0004606301652892562,-9.698505551625336,4.753124569506275 0.0004607501652892562,-9.694826299010556,4.756843220376926 -0.0004608701652892562,-9.698505551625336,4.749405918635624 0.0004609901652892562,-9.694826299010556,4.753124569506275 -0.0004611101652892562,-9.694826299010556,4.749405918635624 0.0004612301652892562,-9.698505551625336,4.753124569506275 -0.0004613501652892562,-9.694826299010556,4.749405918635624 0.0004614701652892562,-9.694826299010556,4.756843220376926 -0.0004615901652892562,-9.691147046395772,4.753124569506275 0.0004617101652892562,-9.694826299010556,4.749405918635624 -0.0004618301652892562,-9.691147046395772,4.756843220376926 0.0004619501652892562,-9.694826299010556,4.745687267764975 -0.0004620701652892562,-9.691147046395772,4.753124569506275 0.0004621901652892562,-9.687467793780991,4.756843220376926 -0.0004623101652892562,-9.691147046395772,4.753124569506275 0.0004624301652892562,-9.691147046395772,4.749405918635624 -0.0004625501652892562,-9.691147046395772,4.749405918635624 0.0004626701652892562,-9.691147046395772,4.741968616894324 -0.0004627901652892562,-9.691147046395772,4.749405918635624 0.0004629101652892562,-9.691147046395772,4.745687267764975 -0.0004630301652892562,-9.694826299010556,4.745687267764975 0.0004631501652892562,-9.691147046395772,4.741968616894324 -0.0004632701652892562,-9.687467793780991,4.745687267764975 0.0004633901652892562,-9.687467793780991,4.753124569506275 -0.0004635101652892562,-9.691147046395772,4.745687267764975 0.0004636301652892562,-9.691147046395772,4.749405918635624 -0.0004637501652892562,-9.691147046395772,4.753124569506275 0.0004638701652892562,-9.591807225796662,4.741968616894324 -0.0004639901652892562,-9.624920499329699,4.753124569506275 0.0004641101652892562,-9.691147046395772,4.745687267764975 -0.0004642301652892562,-9.694826299010556,4.745687267764975 0.0004643501652892562,-9.698505551625336,4.753124569506275 -0.0004644701652892562,-9.702184804240117,4.749405918635624 0.0004645901652892562,-9.702184804240117,4.753124569506275 -0.0004647101652892562,-9.702184804240117,4.753124569506275 0.0004648301652892562,-9.705864056854901,4.749405918635624 -0.0004649501652892562,-9.694826299010556,4.753124569506275 0.0004650701652892562,-9.698505551625336,4.741968616894324 -0.0004651901652892562,-9.698505551625336,4.749405918635624 0.0004653101652892562,-9.694826299010556,4.745687267764975 -0.0004654301652892562,-9.694826299010556,4.749405918635624 0.0004655501652892562,-9.694826299010556,4.756843220376926 -0.0004656701652892562,-9.691147046395772,4.745687267764975 0.0004657901652892562,-9.698505551625336,4.753124569506275 -0.0004659101652892562,-9.694826299010556,4.749405918635624 0.0004660301652892562,-9.702184804240117,4.749405918635624 -0.0004661501652892562,-9.698505551625336,4.753124569506275 0.0004662701652892562,-9.698505551625336,4.749405918635624 -0.0004663901652892562,-9.694826299010556,4.745687267764975 0.0004665101652892562,-9.702184804240117,4.741968616894324 -0.0004666301652892562,-9.705864056854901,4.741968616894324 0.0004667501652892562,-9.705864056854901,4.738249966023675 -0.0004668701652892562,-9.709543309469682,4.749405918635624 0.0004669901652892562,-9.698505551625336,4.753124569506275 -0.0004671101652892562,-9.702184804240117,4.749405918635624 0.0004672301652892562,-9.705864056854901,4.753124569506275 -0.0004673501652892562,-9.702184804240117,4.749405918635624 0.0004674701652892562,-9.702184804240117,4.749405918635624 -0.0004675901652892562,-9.698505551625336,4.741968616894324 0.0004677101652892562,-9.705864056854901,4.745687267764975 -0.0004678301652892562,-9.702184804240117,4.745687267764975 0.0004679501652892562,-9.705864056854901,4.749405918635624 -0.0004680701652892562,-9.702184804240117,4.745687267764975 0.0004681901652892562,-9.705864056854901,4.745687267764975 -0.0004683101652892562,-9.705864056854901,4.745687267764975 0.0004684301652892562,-9.705864056854901,4.745687267764975 -0.0004685501652892562,-9.694826299010556,4.745687267764975 0.0004686701652892562,-9.702184804240117,4.749405918635624 -0.0004687901652892562,-9.709543309469682,4.753124569506275 0.0004689101652892562,-9.705864056854901,4.749405918635624 -0.0004690301652892562,-9.709543309469682,4.745687267764975 0.0004691501652892562,-9.698505551625336,4.745687267764975 -0.0004692701652892562,-9.635958257174044,4.741968616894324 0.0004693901652892562,-9.691147046395772,4.756843220376926 -0.0004695101652892562,-9.687467793780991,4.745687267764975 0.0004696301652892562,-9.691147046395772,4.741968616894324 -0.0004697501652892562,-9.687467793780991,4.741968616894324 0.0004698701652892562,-9.694826299010556,4.753124569506275 -0.0004699901652892562,-9.691147046395772,4.745687267764975 0.0004701101652892562,-9.691147046395772,4.753124569506275 -0.0004702301652892562,-9.691147046395772,4.741968616894324 0.0004703501652892562,-9.68378854116621,4.753124569506275 -0.0004704701652892562,-9.691147046395772,4.741968616894324 0.0004705901652892562,-9.68378854116621,4.749405918635624 -0.0004707101652892562,-9.687467793780991,4.745687267764975 0.0004708301652892562,-9.687467793780991,4.749405918635624 -0.0004709501652892562,-9.691147046395772,4.749405918635624 0.0004710701652892562,-9.680109288551426,4.753124569506275 -0.0004711901652892562,-9.68378854116621,4.756843220376926 0.0004713101652892562,-9.687467793780991,4.741968616894324 -0.0004714301652892562,-9.68378854116621,4.749405918635624 0.0004715501652892562,-9.68378854116621,4.745687267764975 -0.0004716701652892562,-9.680109288551426,4.753124569506275 0.0004717901652892562,-9.687467793780991,4.749405918635624 -0.0004719101652892562,-9.68378854116621,4.749405918635624 0.0004720301652892562,-9.68378854116621,4.749405918635624 -0.0004721501652892562,-9.68378854116621,4.745687267764975 0.0004722701652892562,-9.68378854116621,4.753124569506275 -0.0004723901652892562,-9.694826299010556,4.745687267764975 0.0004725101652892562,-9.687467793780991,4.745687267764975 -0.0004726301652892562,-9.691147046395772,4.753124569506275 0.0004727501652892562,-9.687467793780991,4.749405918635624 -0.0004728701652892562,-9.691147046395772,4.749405918635624 0.0004729901652892562,-9.691147046395772,4.738249966023675 -0.0004731101652892562,-9.687467793780991,4.745687267764975 0.0004732301652892562,-9.694826299010556,4.745687267764975 -0.0004733501652892562,-9.694826299010556,4.741968616894324 0.0004734701652892562,-9.694826299010556,4.745687267764975 -0.0004735901652892562,-9.661713025477519,4.749405918635624 0.0004737101652892562,-9.551335447034065,4.753124569506275 -0.0004738301652892562,-9.68378854116621,4.749405918635624 0.0004739501652892562,-9.694826299010556,4.749405918635624 -0.0004740701652892562,-9.687467793780991,4.753124569506275 0.0004741901652892562,-9.694826299010556,4.753124569506275 -0.0004743101652892562,-9.687467793780991,4.753124569506275 0.0004744301652892562,-9.691147046395772,4.756843220376926 -0.0004745501652892562,-9.687467793780991,4.753124569506275 0.0004746701652892562,-9.691147046395772,4.745687267764975 -0.0004747901652892562,-9.691147046395772,4.753124569506275 0.0004749101652892562,-9.694826299010556,4.749405918635624 -0.0004750301652892562,-9.698505551625336,4.753124569506275 0.0004751501652892562,-9.698505551625336,4.749405918635624 -0.0004752701652892562,-9.702184804240117,4.745687267764975 0.0004753901652892562,-9.702184804240117,4.745687267764975 -0.0004755101652892562,-9.698505551625336,4.741968616894324 0.0004756301652892562,-9.705864056854901,4.738249966023675 -0.0004757501652892562,-9.702184804240117,4.745687267764975 0.0004758701652892562,-9.702184804240117,4.753124569506275 -0.0004759901652892562,-9.698505551625336,4.741968616894324 0.0004761101652892562,-9.698505551625336,4.745687267764975 -0.0004762301652892562,-9.694826299010556,4.741968616894324 0.0004763501652892562,-9.694826299010556,4.745687267764975 -0.0004764701652892562,-9.705864056854901,4.745687267764975 0.0004765901652892562,-9.698505551625336,4.753124569506275 -0.0004767101652892562,-9.702184804240117,4.749405918635624 0.0004768301652892562,-9.702184804240117,4.741968616894324 -0.0004769501652892562,-9.694826299010556,4.741968616894324 0.0004770701652892562,-9.702184804240117,4.741968616894324 -0.0004771901652892562,-9.702184804240117,4.741968616894324 0.0004773101652892562,-9.705864056854901,4.745687267764975 -0.0004774301652892562,-9.702184804240117,4.753124569506275 0.0004775501652892562,-9.698505551625336,4.745687267764975 -0.0004776701652892562,-9.698505551625336,4.749405918635624 0.0004777901652892562,-9.702184804240117,4.741968616894324 -0.0004779101652892562,-9.698505551625336,4.745687267764975 0.0004780301652892562,-9.698505551625336,4.745687267764975 -0.0004781501652892562,-9.698505551625336,4.741968616894324 0.0004782701652892562,-9.702184804240117,4.749405918635624 -0.0004783901652892562,-9.698505551625336,4.745687267764975 0.0004785101652892562,-9.702184804240117,4.749405918635624 -0.0004786301652892562,-9.702184804240117,4.741968616894324 0.0004787501652892562,-9.705864056854901,4.741968616894324 -0.0004788701652892562,-9.702184804240117,4.741968616894324 0.0004789901652892562,-9.639637509788828,4.749405918635624 -0.0004791101652892562,-9.680109288551426,4.756843220376926 0.0004792301652892562,-9.694826299010556,4.753124569506275 -0.0004793501652892562,-9.691147046395772,4.749405918635624 0.0004794701652892562,-9.687467793780991,4.749405918635624 -0.0004795901652892562,-9.687467793780991,4.749405918635624 0.0004797101652892562,-9.691147046395772,4.753124569506275 -0.0004798301652892562,-9.687467793780991,4.749405918635624 0.0004799501652892562,-9.687467793780991,4.745687267764975 -0.0004800701652892562,-9.691147046395772,4.745687267764975 0.0004801901652892562,-9.687467793780991,4.749405918635624 -0.0004803101652892562,-9.687467793780991,4.749405918635624 0.0004804301652892562,-9.691147046395772,4.753124569506275 -0.0004805501652892562,-9.687467793780991,4.749405918635624 0.0004806701652892562,-9.687467793780991,4.745687267764975 -0.0004807901652892562,-9.691147046395772,4.756843220376926 0.0004809101652892562,-9.691147046395772,4.745687267764975 -0.0004810301652892562,-9.694826299010556,4.745687267764975 0.0004811501652892562,-9.687467793780991,4.741968616894324 -0.0004812701652892562,-9.694826299010556,4.749405918635624 0.0004813901652892562,-9.691147046395772,4.745687267764975 -0.0004815101652892562,-9.694826299010556,4.753124569506275 0.0004816301652892562,-9.694826299010556,4.749405918635624 -0.0004817501652892562,-9.694826299010556,4.749405918635624 0.0004818701652892562,-9.691147046395772,4.749405918635624 -0.0004819901652892562,-9.691147046395772,4.749405918635624 0.0004821101652892562,-9.698505551625336,4.749405918635624 -0.0004822301652892562,-9.694826299010556,4.745687267764975 0.0004823501652892562,-9.694826299010556,4.753124569506275 -0.0004824701652892562,-9.694826299010556,4.749405918635624 0.0004825901652892562,-9.694826299010556,4.756843220376926 -0.0004827101652892562,-9.698505551625336,4.741968616894324 0.0004828301652892562,-9.691147046395772,4.745687267764975 -0.0004829501652892562,-9.694826299010556,4.745687267764975 0.0004830701652892562,-9.687467793780991,4.749405918635624 -0.0004831901652892562,-9.691147046395772,4.753124569506275 0.0004833101652892562,-9.676430035936646,4.745687267764975 -0.0004834301652892562,-9.536618436574935,4.749405918635624 0.0004835501652892562,-9.680109288551426,4.749405918635624 -0.0004836701652892562,-9.691147046395772,4.745687267764975 0.0004837901652892562,-9.698505551625336,4.745687267764975 -0.0004839101652892562,-9.694826299010556,4.753124569506275 0.0004840301652892562,-9.698505551625336,4.753124569506275 -0.0004841501652892562,-9.702184804240117,4.749405918635624 0.0004842701652892562,-9.698505551625336,4.745687267764975 -0.0004843901652892562,-9.694826299010556,4.738249966023675 0.0004845101652892562,-9.698505551625336,4.741968616894324 -0.0004846301652892562,-9.698505551625336,4.745687267764975 0.0004847501652892562,-9.698505551625336,4.749405918635624 -0.0004848701652892562,-9.705864056854901,4.745687267764975 0.0004849901652892562,-9.702184804240117,4.745687267764975 -0.0004851101652892562,-9.698505551625336,4.745687267764975 0.0004852301652892562,-9.698505551625336,4.753124569506275 -0.0004853501652892562,-9.702184804240117,4.753124569506275 0.0004854701652892562,-9.702184804240117,4.745687267764975 -0.0004855901652892562,-9.705864056854901,4.749405918635624 0.0004857101652892562,-9.702184804240117,4.749405918635624 -0.0004858301652892562,-9.705864056854901,4.753124569506275 0.0004859501652892562,-9.702184804240117,4.749405918635624 -0.0004860701652892562,-9.702184804240117,4.753124569506275 0.0004861901652892562,-9.709543309469682,4.749405918635624 -0.0004863101652892562,-9.705864056854901,4.749405918635624 0.0004864301652892562,-9.698505551625336,4.745687267764975 -0.0004865501652892562,-9.705864056854901,4.745687267764975 0.0004866701652892562,-9.705864056854901,4.749405918635624 -0.0004867901652892562,-9.705864056854901,4.745687267764975 0.0004869101652892562,-9.698505551625336,4.749405918635624 -0.0004870301652892562,-9.705864056854901,4.749405918635624 0.0004871501652892562,-9.698505551625336,4.745687267764975 -0.0004872701652892562,-9.698505551625336,4.749405918635624 0.0004873901652892562,-9.698505551625336,4.745687267764975 -0.0004875101652892562,-9.698505551625336,4.753124569506275 0.0004876301652892562,-9.698505551625336,4.745687267764975 -0.0004877501652892562,-9.698505551625336,4.741968616894324 0.0004878701652892562,-9.691147046395772,4.745687267764975 -0.0004879901652892562,-9.694826299010556,4.749405918635624 0.0004881101652892562,-9.691147046395772,4.749405918635624 -0.0004882301652892562,-9.694826299010556,4.753124569506275 0.0004883501652892563,-9.698505551625336,4.749405918635624 -0.0004884701652892562,-9.698505551625336,4.745687267764975 0.0004885901652892561,-9.691147046395772,4.749405918635624 -0.0004887101652892563,-9.632279004559264,4.756843220376926 0.0004888301652892562,-9.6653922780923,4.749405918635624 -0.0004889501652892562,-9.68378854116621,4.749405918635624 0.0004890701652892562,-9.680109288551426,4.745687267764975 -0.0004891901652892563,-9.68378854116621,4.753124569506275 0.0004893101652892562,-9.687467793780991,4.749405918635624 -0.0004894301652892561,-9.691147046395772,4.753124569506275 0.0004895501652892563,-9.687467793780991,4.749405918635624 -0.0004896701652892562,-9.694826299010556,4.753124569506275 0.0004897901652892562,-9.694826299010556,4.745687267764975 -0.0004899101652892562,-9.694826299010556,4.753124569506275 0.0004900301652892563,-9.694826299010556,4.745687267764975 -0.0004901501652892562,-9.694826299010556,4.753124569506275 0.0004902701652892561,-9.694826299010556,4.745687267764975 -0.0004903901652892563,-9.68378854116621,4.753124569506275 0.0004905101652892562,-9.694826299010556,4.745687267764975 -0.0004906301652892562,-9.691147046395772,4.745687267764975 0.0004907501652892562,-9.687467793780991,4.745687267764975 -0.0004908701652892563,-9.691147046395772,4.741968616894324 0.0004909901652892562,-9.691147046395772,4.745687267764975 -0.0004911101652892561,-9.687467793780991,4.741968616894324 0.0004912301652892563,-9.687467793780991,4.741968616894324 -0.0004913501652892562,-9.687467793780991,4.741968616894324 0.0004914701652892562,-9.68378854116621,4.749405918635624 -0.0004915901652892562,-9.687467793780991,4.749405918635624 0.0004917101652892563,-9.691147046395772,4.745687267764975 -0.0004918301652892562,-9.687467793780991,4.745687267764975 0.0004919501652892562,-9.687467793780991,4.749405918635624 -0.0004920701652892563,-9.691147046395772,4.753124569506275 0.0004921901652892562,-9.691147046395772,4.753124569506275 -0.0004923101652892562,-9.691147046395772,4.749405918635624 0.0004924301652892562,-9.687467793780991,4.756843220376926 -0.0004925501652892563,-9.687467793780991,4.749405918635624 0.0004926701652892562,-9.691147046395772,4.753124569506275 -0.0004927901652892562,-9.691147046395772,4.753124569506275 0.0004929101652892563,-9.68378854116621,4.756843220376926 -0.0004930301652892562,-9.68378854116621,4.753124569506275 0.0004931501652892562,-9.532939183960154,4.753124569506275 -0.0004932701652892562,-9.669071530707081,4.749405918635624 0.0004933901652892563,-9.687467793780991,4.753124569506275 -0.0004935101652892562,-9.694826299010556,4.760561871247575 0.0004936301652892562,-9.691147046395772,4.753124569506275 -0.0004937501652892563,-9.694826299010556,4.753124569506275 0.0004938701652892562,-9.691147046395772,4.756843220376926 -0.0004939901652892562,-9.694826299010556,4.753124569506275 0.0004941101652892562,-9.691147046395772,4.749405918635624 -0.0004942301652892563,-9.691147046395772,4.749405918635624 0.0004943501652892562,-9.698505551625336,4.749405918635624 -0.0004944701652892562,-9.694826299010556,4.745687267764975 0.0004945901652892563,-9.691147046395772,4.756843220376926 -0.0004947101652892562,-9.694826299010556,4.753124569506275 0.0004948301652892562,-9.698505551625336,4.749405918635624 -0.0004949501652892562,-9.698505551625336,4.749405918635624 0.0004950701652892563,-9.698505551625336,4.749405918635624 -0.0004951901652892562,-9.691147046395772,4.749405918635624 0.0004953101652892562,-9.691147046395772,4.756843220376926 -0.0004954301652892563,-9.694826299010556,4.756843220376926 0.0004955501652892562,-9.702184804240117,4.753124569506275 -0.0004956701652892562,-9.705864056854901,4.749405918635624 0.0004957901652892562,-9.698505551625336,4.741968616894324 -0.0004959101652892563,-9.702184804240117,4.749405918635624 0.0004960301652892562,-9.702184804240117,4.745687267764975 -0.0004961501652892562,-9.702184804240117,4.753124569506275 0.0004962701652892563,-9.698505551625336,4.749405918635624 -0.0004963901652892562,-9.702184804240117,4.756843220376926 0.0004965101652892562,-9.702184804240117,4.749405918635624 -0.0004966301652892562,-9.698505551625336,4.745687267764975 0.0004967501652892563,-9.698505551625336,4.753124569506275 -0.0004968701652892562,-9.702184804240117,4.753124569506275 0.0004969901652892562,-9.698505551625336,4.756843220376926 -0.0004971101652892563,-9.702184804240117,4.756843220376926 0.0004972301652892562,-9.694826299010556,4.749405918635624 -0.0004973501652892562,-9.694826299010556,4.745687267764975 0.0004974701652892562,-9.691147046395772,4.749405918635624 -0.0004975901652892563,-9.698505551625336,4.753124569506275 0.0004977101652892562,-9.694826299010556,4.753124569506275 -0.0004978301652892562,-9.698505551625336,4.753124569506275 0.0004979501652892563,-9.702184804240117,4.741968616894324 -0.0004980701652892562,-9.698505551625336,4.753124569506275 0.0004981901652892562,-9.698505551625336,4.749405918635624 -0.0004983101652892562,-9.694826299010556,4.745687267764975 0.0004984301652892563,-9.635958257174044,4.760561871247575 -0.0004985501652892562,-9.676430035936646,4.741968616894324 0.0004986701652892562,-9.691147046395772,4.753124569506275 -0.0004987901652892563,-9.691147046395772,4.741968616894324 0.0004989101652892562,-9.687467793780991,4.741968616894324 -0.0004990301652892562,-9.691147046395772,4.738249966023675 0.0004991501652892562,-9.691147046395772,4.745687267764975 -0.0004992701652892562,-9.687467793780991,4.741968616894324 0.0004993901652892562,-9.687467793780991,4.753124569506275 -0.0004995101652892562,-9.687467793780991,4.741968616894324 0.0004996301652892563,-9.687467793780991,4.745687267764975 -0.0004997501652892562,-9.68378854116621,4.745687267764975 0.0004998701652892562,-9.680109288551426,4.745687267764975 -0.0004999901652892562,-9.68378854116621,4.753124569506275 0.0005001101652892562,-9.694826299010556,4.741968616894324 -0.0005002301652892562,-9.694826299010556,4.749405918635624 0.0005003501652892562,-9.694826299010556,4.749405918635624 -0.0005004701652892563,-9.691147046395772,4.749405918635624 0.0005005901652892562,-9.691147046395772,4.753124569506275 -0.0005007101652892562,-9.691147046395772,4.745687267764975 0.0005008301652892562,-9.68378854116621,4.749405918635624 -0.0005009501652892562,-9.68378854116621,4.749405918635624 0.0005010701652892562,-9.687467793780991,4.749405918635624 -0.0005011901652892562,-9.691147046395772,4.745687267764975 0.0005013101652892563,-9.68378854116621,4.749405918635624 -0.0005014301652892562,-9.691147046395772,4.745687267764975 0.0005015501652892562,-9.691147046395772,4.745687267764975 -0.0005016701652892562,-9.694826299010556,4.745687267764975 0.0005017901652892562,-9.691147046395772,4.749405918635624 -0.0005019101652892562,-9.691147046395772,4.749405918635624 0.0005020301652892562,-9.691147046395772,4.749405918635624 -0.0005021501652892563,-9.68378854116621,4.753124569506275 0.0005022701652892562,-9.694826299010556,4.745687267764975 -0.0005023901652892562,-9.691147046395772,4.745687267764975 0.0005025101652892562,-9.691147046395772,4.745687267764975 -0.0005026301652892562,-9.687467793780991,4.753124569506275 0.0005027501652892562,-9.68378854116621,4.749405918635624 -0.0005028701652892562,-9.540297689189719,4.753124569506275 0.0005029901652892563,-9.6653922780923,4.749405918635624 -0.0005031101652892562,-9.694826299010556,4.749405918635624 0.0005032301652892562,-9.694826299010556,4.753124569506275 -0.0005033501652892562,-9.694826299010556,4.749405918635624 0.0005034701652892562,-9.691147046395772,4.745687267764975 -0.0005035901652892562,-9.694826299010556,4.745687267764975 0.0005037101652892562,-9.694826299010556,4.749405918635624 -0.0005038301652892563,-9.698505551625336,4.745687267764975 0.0005039501652892562,-9.698505551625336,4.745687267764975 -0.0005040701652892561,-9.694826299010556,4.745687267764975 0.0005041901652892562,-9.702184804240117,4.741968616894324 -0.0005043101652892562,-9.702184804240117,4.749405918635624 0.0005044301652892562,-9.698505551625336,4.745687267764975 -0.0005045501652892562,-9.694826299010556,4.749405918635624 0.0005046701652892563,-9.698505551625336,4.749405918635624 -0.0005047901652892562,-9.694826299010556,4.745687267764975 0.0005049101652892561,-9.702184804240117,4.741968616894324 -0.0005050301652892562,-9.694826299010556,4.753124569506275 0.0005051501652892562,-9.698505551625336,4.753124569506275 -0.0005052701652892562,-9.694826299010556,4.753124569506275 0.0005053901652892562,-9.694826299010556,4.749405918635624 -0.0005055101652892563,-9.691147046395772,4.745687267764975 0.0005056301652892562,-9.694826299010556,4.749405918635624 -0.0005057501652892561,-9.694826299010556,4.749405918635624 0.0005058701652892562,-9.694826299010556,4.753124569506275 -0.0005059901652892562,-9.694826299010556,4.753124569506275 0.0005061101652892562,-9.694826299010556,4.753124569506275 -0.0005062301652892562,-9.694826299010556,4.753124569506275 0.0005063501652892563,-9.698505551625336,4.738249966023675 -0.0005064701652892562,-9.694826299010556,4.745687267764975 0.0005065901652892561,-9.698505551625336,4.749405918635624 -0.0005067101652892563,-9.702184804240117,4.745687267764975 0.0005068301652892562,-9.698505551625336,4.749405918635624 -0.0005069501652892562,-9.705864056854901,4.745687267764975 0.0005070701652892562,-9.698505551625336,4.745687267764975 -0.0005071901652892563,-9.702184804240117,4.738249966023675 0.0005073101652892562,-9.705864056854901,4.741968616894324 -0.0005074301652892561,-9.705864056854901,4.741968616894324 0.0005075501652892563,-9.705864056854901,4.741968616894324 -0.0005076701652892562,-9.702184804240117,4.738249966023675 0.0005077901652892562,-9.702184804240117,4.745687267764975 -0.0005079101652892562,-9.702184804240117,4.741968616894324 0.0005080301652892563,-9.694826299010556,4.738249966023675 -0.0005081501652892562,-9.672750783321865,4.712219409929125 0.0005082701652892561,-9.643316762403609,4.779155125600825 -0.0005083901652892563,-9.68378854116621,4.749405918635624 0.0005085101652892562,-9.68378854116621,4.749405918635624 -0.0005086301652892562,-9.68378854116621,4.741968616894324 0.0005087501652892562,-9.68378854116621,4.745687267764975 -0.0005088701652892563,-9.687467793780991,4.749405918635624 0.0005089901652892562,-9.687467793780991,4.749405918635624 -0.0005091101652892561,-9.68378854116621,4.753124569506275 0.0005092301652892563,-9.687467793780991,4.749405918635624 -0.0005093501652892562,-9.687467793780991,4.753124569506275 0.0005094701652892562,-9.68378854116621,4.749405918635624 -0.0005095901652892562,-9.687467793780991,4.745687267764975 0.0005097101652892563,-9.68378854116621,4.753124569506275 -0.0005098301652892562,-9.694826299010556,4.749405918635624 0.0005099501652892561,-9.687467793780991,4.756843220376926 -0.0005100701652892563,-9.691147046395772,4.753124569506275 0.0005101901652892562,-9.687467793780991,4.745687267764975 -0.0005103101652892562,-9.691147046395772,4.745687267764975 0.0005104301652892562,-9.691147046395772,4.741968616894324 -0.0005105501652892563,-9.687467793780991,4.745687267764975 0.0005106701652892562,-9.691147046395772,4.741968616894324 -0.0005107901652892561,-9.691147046395772,4.745687267764975 0.0005109101652892563,-9.691147046395772,4.749405918635624 -0.0005110301652892562,-9.691147046395772,4.745687267764975 0.0005111501652892562,-9.68378854116621,4.749405918635624 -0.0005112701652892562,-9.680109288551426,4.745687267764975 0.0005113901652892563,-9.687467793780991,4.749405918635624 -0.0005115101652892562,-9.691147046395772,4.745687267764975 0.0005116301652892562,-9.694826299010556,4.749405918635624 -0.0005117501652892563,-9.691147046395772,4.745687267764975 0.0005118701652892562,-9.691147046395772,4.749405918635624 -0.0005119901652892562,-9.687467793780991,4.741968616894324 0.0005121101652892562,-9.687467793780991,4.745687267764975 -0.0005122301652892563,-9.68378854116621,4.745687267764975 0.0005123501652892562,-9.680109288551426,4.741968616894324 -0.0005124701652892562,-9.687467793780991,4.745687267764975 0.0005125901652892563,-9.56237320487841,4.741968616894324 -0.0005127101652892562,-9.635958257174044,4.749405918635624 0.0005128301652892562,-9.68378854116621,4.749405918635624 -0.0005129501652892562,-9.691147046395772,4.738249966023675 0.0005130701652892563,-9.687467793780991,4.741968616894324 -0.0005131901652892562,-9.694826299010556,4.741968616894324 0.0005133101652892562,-9.691147046395772,4.753124569506275 -0.0005134301652892563,-9.691147046395772,4.745687267764975 0.0005135501652892562,-9.698505551625336,4.749405918635624 -0.0005136701652892562,-9.691147046395772,4.738249966023675 0.0005137901652892562,-9.698505551625336,4.749405918635624 -0.0005139101652892563,-9.698505551625336,4.745687267764975 0.0005140301652892562,-9.694826299010556,4.749405918635624 -0.0005141501652892562,-9.694826299010556,4.753124569506275 0.0005142701652892563,-9.698505551625336,4.745687267764975 -0.0005143901652892562,-9.698505551625336,4.745687267764975 0.0005145101652892562,-9.702184804240117,4.741968616894324 -0.0005146301652892562,-9.702184804240117,4.741968616894324 0.0005147501652892563,-9.698505551625336,4.738249966023675 -0.0005148701652892562,-9.691147046395772,4.756843220376926 0.0005149901652892562,-9.694826299010556,4.741968616894324 -0.0005151101652892563,-9.694826299010556,4.753124569506275 0.0005152301652892562,-9.694826299010556,4.745687267764975 -0.0005153501652892562,-9.691147046395772,4.741968616894324 0.0005154701652892562,-9.691147046395772,4.745687267764975 -0.0005155901652892563,-9.694826299010556,4.741968616894324 0.0005157101652892562,-9.694826299010556,4.756843220376926 -0.0005158301652892562,-9.694826299010556,4.753124569506275 0.0005159501652892563,-9.694826299010556,4.749405918635624 -0.0005160701652892562,-9.691147046395772,4.745687267764975 0.0005161901652892562,-9.698505551625336,4.756843220376926 -0.0005163101652892562,-9.694826299010556,4.749405918635624 0.0005164301652892563,-9.694826299010556,4.756843220376926 -0.0005165501652892562,-9.694826299010556,4.756843220376926 0.0005166701652892562,-9.702184804240117,4.756843220376926 -0.0005167901652892563,-9.702184804240117,4.749405918635624 0.0005169101652892562,-9.698505551625336,4.741968616894324 -0.0005170301652892562,-9.694826299010556,4.749405918635624 0.0005171501652892562,-9.698505551625336,4.745687267764975 -0.0005172701652892563,-9.698505551625336,4.753124569506275 0.0005173901652892562,-9.698505551625336,4.756843220376926 -0.0005175101652892562,-9.705864056854901,4.749405918635624 0.0005176301652892563,-9.698505551625336,4.749405918635624 -0.0005177501652892562,-9.702184804240117,4.741968616894324 0.0005178701652892562,-9.694826299010556,4.745687267764975 -0.0005179901652892562,-9.632279004559264,4.756843220376926 0.0005181101652892563,-9.691147046395772,4.753124569506275 -0.0005182301652892562,-9.694826299010556,4.756843220376926 0.0005183501652892562,-9.687467793780991,4.753124569506275 -0.0005184701652892563,-9.691147046395772,4.749405918635624 0.0005185901652892562,-9.694826299010556,4.749405918635624 -0.0005187101652892562,-9.694826299010556,4.753124569506275 0.0005188301652892562,-9.687467793780991,4.745687267764975 -0.0005189501652892563,-9.691147046395772,4.753124569506275 0.0005190701652892562,-9.68378854116621,4.741968616894324 -0.0005191901652892562,-9.694826299010556,4.745687267764975 0.0005193101652892563,-9.687467793780991,4.741968616894324 -0.0005194301652892562,-9.694826299010556,4.749405918635624 0.0005195501652892562,-9.687467793780991,4.741968616894324 -0.0005196701652892562,-9.687467793780991,4.745687267764975 0.0005197901652892562,-9.687467793780991,4.749405918635624 -0.0005199101652892562,-9.691147046395772,4.745687267764975 0.0005200301652892562,-9.687467793780991,4.745687267764975 -0.0005201501652892563,-9.687467793780991,4.738249966023675 0.0005202701652892562,-9.687467793780991,4.745687267764975 -0.0005203901652892562,-9.687467793780991,4.753124569506275 0.0005205101652892562,-9.68378854116621,4.749405918635624 -0.0005206301652892562,-9.68378854116621,4.749405918635624 0.0005207501652892562,-9.680109288551426,4.749405918635624 -0.0005208701652892562,-9.691147046395772,4.753124569506275 0.0005209901652892563,-9.680109288551426,4.749405918635624 -0.0005211101652892562,-9.687467793780991,4.749405918635624 0.0005212301652892562,-9.68378854116621,4.741968616894324 -0.0005213501652892562,-9.680109288551426,4.749405918635624 0.0005214701652892562,-9.687467793780991,4.745687267764975 -0.0005215901652892562,-9.68378854116621,4.745687267764975 0.0005217101652892562,-9.68378854116621,4.749405918635624 -0.0005218301652892563,-9.680109288551426,4.741968616894324 0.0005219501652892562,-9.680109288551426,4.745687267764975 -0.0005220701652892562,-9.680109288551426,4.738249966023675 0.0005221901652892562,-9.680109288551426,4.753124569506275 -0.0005223101652892562,-9.643316762403609,4.745687267764975 0.0005224301652892562,-9.566052457493191,4.749405918635624 -0.0005225501652892562,-9.68378854116621,4.753124569506275 0.0005226701652892563,-9.698505551625336,4.745687267764975 -0.0005227901652892562,-9.702184804240117,4.753124569506275 0.0005229101652892562,-9.694826299010556,4.753124569506275 -0.0005230301652892562,-9.698505551625336,4.756843220376926 0.0005231501652892562,-9.694826299010556,4.756843220376926 -0.0005232701652892562,-9.694826299010556,4.756843220376926 0.0005233901652892562,-9.698505551625336,4.749405918635624 -0.0005235101652892563,-9.694826299010556,4.756843220376926 0.0005236301652892562,-9.698505551625336,4.749405918635624 -0.0005237501652892562,-9.694826299010556,4.749405918635624 0.0005238701652892562,-9.698505551625336,4.753124569506275 -0.0005239901652892562,-9.698505551625336,4.760561871247575 0.0005241101652892562,-9.694826299010556,4.756843220376926 -0.0005242301652892562,-9.698505551625336,4.753124569506275 0.0005243501652892563,-9.698505551625336,4.749405918635624 -0.0005244701652892562,-9.698505551625336,4.745687267764975 0.0005245901652892561,-9.694826299010556,4.749405918635624 -0.0005247101652892562,-9.702184804240117,4.756843220376926 0.0005248301652892562,-9.698505551625336,4.760561871247575 -0.0005249501652892562,-9.694826299010556,4.753124569506275 0.0005250701652892562,-9.702184804240117,4.745687267764975 -0.0005251901652892563,-9.702184804240117,4.749405918635624 0.0005253101652892562,-9.698505551625336,4.741968616894324 -0.0005254301652892561,-9.698505551625336,4.745687267764975 0.0005255501652892562,-9.694826299010556,4.749405918635624 -0.0005256701652892562,-9.698505551625336,4.745687267764975 0.0005257901652892562,-9.698505551625336,4.745687267764975 -0.0005259101652892562,-9.698505551625336,4.749405918635624 0.0005260301652892563,-9.698505551625336,4.738249966023675 -0.0005261501652892562,-9.702184804240117,4.749405918635624 0.0005262701652892561,-9.694826299010556,4.749405918635624 -0.0005263901652892562,-9.698505551625336,4.749405918635624 0.0005265101652892562,-9.698505551625336,4.749405918635624 -0.0005266301652892562,-9.694826299010556,4.745687267764975 0.0005267501652892562,-9.705864056854901,4.738249966023675 -0.0005268701652892563,-9.698505551625336,4.749405918635624 0.0005269901652892562,-9.702184804240117,4.745687267764975 -0.0005271101652892561,-9.694826299010556,4.753124569506275 0.0005272301652892563,-9.698505551625336,4.749405918635624 -0.0005273501652892562,-9.702184804240117,4.745687267764975 0.0005274701652892562,-9.698505551625336,4.749405918635624 -0.0005275901652892562,-9.694826299010556,4.745687267764975 0.0005277101652892563,-9.628599751944483,4.741968616894324 -0.0005278301652892562,-9.676430035936646,4.756843220376926 0.0005279501652892561,-9.691147046395772,4.756843220376926 -0.0005280701652892563,-9.691147046395772,4.745687267764975 0.0005281901652892562,-9.691147046395772,4.745687267764975 -0.0005283101652892562,-9.687467793780991,4.738249966023675 0.0005284301652892562,-9.68378854116621,4.745687267764975 -0.0005285501652892563,-9.687467793780991,4.749405918635624 0.0005286701652892562,-9.691147046395772,4.745687267764975 -0.0005287901652892561,-9.687467793780991,4.749405918635624 0.0005289101652892563,-9.687467793780991,4.749405918635624 -0.0005290301652892562,-9.687467793780991,4.753124569506275 0.0005291501652892562,-9.691147046395772,4.745687267764975 -0.0005292701652892562,-9.694826299010556,4.749405918635624 0.0005293901652892563,-9.687467793780991,4.745687267764975 -0.0005295101652892562,-9.687467793780991,4.756843220376926 0.0005296301652892561,-9.694826299010556,4.745687267764975 -0.0005297501652892563,-9.694826299010556,4.753124569506275 0.0005298701652892562,-9.691147046395772,4.741968616894324 -0.0005299901652892562,-9.694826299010556,4.749405918635624 0.0005301101652892562,-9.698505551625336,4.753124569506275 -0.0005302301652892563,-9.691147046395772,4.749405918635624 0.0005303501652892562,-9.694826299010556,4.749405918635624 -0.0005304701652892561,-9.691147046395772,4.749405918635624 0.0005305901652892563,-9.694826299010556,4.749405918635624 -0.0005307101652892562,-9.694826299010556,4.745687267764975 0.0005308301652892562,-9.691147046395772,4.745687267764975 -0.0005309501652892562,-9.694826299010556,4.745687267764975 0.0005310701652892563,-9.694826299010556,4.749405918635624 -0.0005311901652892562,-9.698505551625336,4.745687267764975 0.0005313101652892561,-9.691147046395772,4.745687267764975 -0.0005314301652892563,-9.691147046395772,4.745687267764975 0.0005315501652892562,-9.691147046395772,4.741968616894324 -0.0005316701652892562,-9.691147046395772,4.745687267764975 0.0005317901652892562,-9.691147046395772,4.745687267764975 -0.0005319101652892563,-9.691147046395772,4.741968616894324 0.0005320301652892562,-9.680109288551426,4.738249966023675 -0.0005321501652892562,-9.5439769418045,4.745687267764975 0.0005322701652892563,-9.68378854116621,4.749405918635624 -0.0005323901652892562,-9.687467793780991,4.741968616894324 0.0005325101652892562,-9.687467793780991,4.741968616894324 -0.0005326301652892562,-9.691147046395772,4.741968616894324 0.0005327501652892563,-9.691147046395772,4.738249966023675 -0.0005328701652892562,-9.691147046395772,4.753124569506275 0.0005329901652892562,-9.687467793780991,4.749405918635624 -0.0005331101652892563,-9.691147046395772,4.749405918635624 0.0005332301652892562,-9.694826299010556,4.745687267764975 -0.0005333501652892562,-9.691147046395772,4.741968616894324 0.0005334701652892562,-9.694826299010556,4.741968616894324 -0.0005335901652892563,-9.698505551625336,4.756843220376926 0.0005337101652892562,-9.691147046395772,4.749405918635624 -0.0005338301652892562,-9.698505551625336,4.753124569506275 0.0005339501652892563,-9.694826299010556,4.753124569506275 -0.0005340701652892562,-9.694826299010556,4.749405918635624 0.0005341901652892562,-9.694826299010556,4.745687267764975 -0.0005343101652892562,-9.702184804240117,4.745687267764975 0.0005344301652892563,-9.702184804240117,4.749405918635624 -0.0005345501652892562,-9.702184804240117,4.749405918635624 0.0005346701652892562,-9.702184804240117,4.753124569506275 -0.0005347901652892563,-9.698505551625336,4.745687267764975 0.0005349101652892562,-9.698505551625336,4.745687267764975 -0.0005350301652892562,-9.702184804240117,4.745687267764975 0.0005351501652892562,-9.705864056854901,4.749405918635624 -0.0005352701652892563,-9.702184804240117,4.753124569506275 0.0005353901652892562,-9.694826299010556,4.749405918635624 -0.0005355101652892562,-9.698505551625336,4.749405918635624 0.0005356301652892563,-9.698505551625336,4.741968616894324 -0.0005357501652892562,-9.698505551625336,4.745687267764975 0.0005358701652892562,-9.694826299010556,4.741968616894324 -0.0005359901652892562,-9.694826299010556,4.753124569506275 0.0005361101652892563,-9.698505551625336,4.753124569506275 -0.0005362301652892562,-9.698505551625336,4.753124569506275 0.0005363501652892562,-9.698505551625336,4.753124569506275 -0.0005364701652892563,-9.705864056854901,4.753124569506275 0.0005365901652892562,-9.698505551625336,4.745687267764975 -0.0005367101652892562,-9.705864056854901,4.749405918635624 0.0005368301652892562,-9.702184804240117,4.756843220376926 -0.0005369501652892563,-9.709543309469682,4.756843220376926 0.0005370701652892562,-9.702184804240117,4.753124569506275 -0.0005371901652892562,-9.705864056854901,4.753124569506275 0.0005373101652892563,-9.698505551625336,4.756843220376926 -0.0005374301652892562,-9.643316762403609,4.756843220376926 0.0005375501652892562,-9.6653922780923,4.756843220376926 -0.0005376701652892562,-9.698505551625336,4.756843220376926 0.0005377901652892563,-9.694826299010556,4.760561871247575 -0.0005379101652892562,-9.691147046395772,4.760561871247575 0.0005380301652892562,-9.694826299010556,4.753124569506275 -0.0005381501652892563,-9.691147046395772,4.749405918635624 0.0005382701652892562,-9.687467793780991,4.756843220376926 -0.0005383901652892562,-9.691147046395772,4.753124569506275 0.0005385101652892562,-9.694826299010556,4.753124569506275 -0.0005386301652892563,-9.687467793780991,4.749405918635624 0.0005387501652892562,-9.68378854116621,4.753124569506275 -0.0005388701652892562,-9.687467793780991,4.749405918635624 0.0005389901652892563,-9.691147046395772,4.745687267764975 -0.0005391101652892562,-9.68378854116621,4.749405918635624 0.0005392301652892562,-9.691147046395772,4.753124569506275 -0.0005393501652892562,-9.68378854116621,4.749405918635624 0.0005394701652892563,-9.68378854116621,4.749405918635624 -0.0005395901652892562,-9.68378854116621,4.749405918635624 0.0005397101652892562,-9.68378854116621,4.745687267764975 -0.0005398301652892563,-9.680109288551426,4.741968616894324 0.0005399501652892562,-9.687467793780991,4.749405918635624 -0.0005400701652892562,-9.687467793780991,4.749405918635624 0.0005401901652892562,-9.68378854116621,4.753124569506275 -0.0005403101652892562,-9.68378854116621,4.745687267764975 0.0005404301652892562,-9.68378854116621,4.749405918635624 -0.0005405501652892562,-9.687467793780991,4.753124569506275 0.0005406701652892563,-9.687467793780991,4.749405918635624 -0.0005407901652892562,-9.687467793780991,4.745687267764975 0.0005409101652892562,-9.691147046395772,4.753124569506275 -0.0005410301652892562,-9.691147046395772,4.749405918635624 0.0005411501652892562,-9.68378854116621,4.756843220376926 -0.0005412701652892562,-9.691147046395772,4.753124569506275 0.0005413901652892562,-9.691147046395772,4.753124569506275 -0.0005415101652892563,-9.694826299010556,4.749405918635624 0.0005416301652892562,-9.694826299010556,4.749405918635624 -0.0005417501652892562,-9.694826299010556,4.756843220376926 0.0005418701652892562,-9.5439769418045,4.745687267764975 -0.0005419901652892562,-9.68378854116621,4.745687267764975 0.0005421101652892562,-9.694826299010556,4.749405918635624 -0.0005422301652892562,-9.702184804240117,4.749405918635624 0.0005423501652892563,-9.694826299010556,4.741968616894324 -0.0005424701652892562,-9.702184804240117,4.749405918635624 0.0005425901652892562,-9.698505551625336,4.756843220376926 -0.0005427101652892562,-9.698505551625336,4.753124569506275 0.0005428301652892562,-9.698505551625336,4.745687267764975 -0.0005429501652892562,-9.698505551625336,4.749405918635624 0.0005430701652892562,-9.694826299010556,4.749405918635624 -0.0005431901652892563,-9.694826299010556,4.741968616894324 0.0005433101652892562,-9.702184804240117,4.745687267764975 -0.0005434301652892562,-9.698505551625336,4.745687267764975 0.0005435501652892562,-9.694826299010556,4.753124569506275 -0.0005436701652892562,-9.698505551625336,4.745687267764975 0.0005437901652892562,-9.694826299010556,4.738249966023675 -0.0005439101652892562,-9.691147046395772,4.741968616894324 0.0005440301652892563,-9.698505551625336,4.749405918635624 -0.0005441501652892562,-9.702184804240117,4.753124569506275 0.0005442701652892562,-9.694826299010556,4.753124569506275 -0.0005443901652892562,-9.702184804240117,4.753124569506275 0.0005445101652892562,-9.698505551625336,4.753124569506275 -0.0005446301652892562,-9.702184804240117,4.745687267764975 0.0005447501652892562,-9.698505551625336,4.749405918635624 -0.0005448701652892563,-9.698505551625336,4.749405918635624 0.0005449901652892562,-9.694826299010556,4.756843220376926 -0.0005451101652892561,-9.698505551625336,4.756843220376926 0.0005452301652892562,-9.702184804240117,4.749405918635624 -0.0005453501652892562,-9.705864056854901,4.749405918635624 0.0005454701652892562,-9.702184804240117,4.753124569506275 -0.0005455901652892562,-9.698505551625336,4.753124569506275 0.0005457101652892563,-9.702184804240117,4.756843220376926 -0.0005458301652892562,-9.705864056854901,4.749405918635624 0.0005459501652892561,-9.702184804240117,4.745687267764975 -0.0005460701652892562,-9.705864056854901,4.741968616894324 0.0005461901652892562,-9.705864056854901,4.741968616894324 -0.0005463101652892562,-9.705864056854901,4.745687267764975 0.0005464301652892562,-9.702184804240117,4.749405918635624 -0.0005465501652892563,-9.709543309469682,4.749405918635624 0.0005466701652892562,-9.713222562084463,4.745687267764975 -0.0005467901652892561,-9.702184804240117,4.753124569506275 0.0005469101652892563,-9.698505551625336,4.745687267764975 -0.0005470301652892562,-9.698505551625336,4.738249966023675 0.0005471501652892562,-9.628599751944483,4.756843220376926 -0.0005472701652892562,-9.680109288551426,4.734531315153024 0.0005473901652892563,-9.691147046395772,4.753124569506275 -0.0005475101652892562,-9.691147046395772,4.753124569506275 0.0005476301652892561,-9.691147046395772,4.741968616894324 -0.0005477501652892563,-9.691147046395772,4.745687267764975 0.0005478701652892562,-9.694826299010556,4.745687267764975 -0.0005479901652892562,-9.687467793780991,4.749405918635624 0.0005481101652892562,-9.691147046395772,4.745687267764975 -0.0005482301652892563,-9.691147046395772,4.741968616894324 0.0005483501652892562,-9.698505551625336,4.741968616894324 -0.0005484701652892561,-9.698505551625336,4.745687267764975 0.0005485901652892563,-9.698505551625336,4.745687267764975 -0.0005487101652892562,-9.691147046395772,4.741968616894324 0.0005488301652892562,-9.694826299010556,4.749405918635624 -0.0005489501652892562,-9.687467793780991,4.749405918635624 0.0005490701652892563,-9.687467793780991,4.745687267764975 -0.0005491901652892562,-9.694826299010556,4.741968616894324 0.0005493101652892561,-9.698505551625336,4.738249966023675 -0.0005494301652892563,-9.691147046395772,4.749405918635624 0.0005495501652892562,-9.687467793780991,4.753124569506275 -0.0005496701652892562,-9.691147046395772,4.749405918635624 0.0005497901652892562,-9.691147046395772,4.749405918635624 -0.0005499101652892563,-9.694826299010556,4.749405918635624 0.0005500301652892562,-9.691147046395772,4.749405918635624 -0.0005501501652892561,-9.691147046395772,4.753124569506275 0.0005502701652892563,-9.694826299010556,4.749405918635624 -0.0005503901652892562,-9.687467793780991,4.753124569506275 0.0005505101652892562,-9.691147046395772,4.753124569506275 -0.0005506301652892562,-9.687467793780991,4.749405918635624 0.0005507501652892563,-9.691147046395772,4.756843220376926 -0.0005508701652892562,-9.691147046395772,4.749405918635624 0.0005509901652892561,-9.698505551625336,4.749405918635624 -0.0005511101652892563,-9.691147046395772,4.749405918635624 0.0005512301652892562,-9.694826299010556,4.749405918635624 -0.0005513501652892562,-9.691147046395772,4.745687267764975 0.0005514701652892562,-9.691147046395772,4.749405918635624 -0.0005515901652892563,-9.5439769418045,4.749405918635624 0.0005517101652892562,-9.672750783321865,4.753124569506275 -0.0005518301652892562,-9.694826299010556,4.753124569506275 0.0005519501652892563,-9.694826299010556,4.749405918635624 -0.0005520701652892562,-9.687467793780991,4.753124569506275 0.0005521901652892562,-9.691147046395772,4.749405918635624 -0.0005523101652892562,-9.698505551625336,4.756843220376926 0.0005524301652892563,-9.698505551625336,4.756843220376926 -0.0005525501652892562,-9.698505551625336,4.753124569506275 0.0005526701652892562,-9.691147046395772,4.753124569506275 -0.0005527901652892563,-9.694826299010556,4.749405918635624 0.0005529101652892562,-9.698505551625336,4.753124569506275 -0.0005530301652892562,-9.694826299010556,4.753124569506275 0.0005531501652892562,-9.694826299010556,4.756843220376926 -0.0005532701652892563,-9.694826299010556,4.756843220376926 0.0005533901652892562,-9.698505551625336,4.753124569506275 -0.0005535101652892562,-9.698505551625336,4.741968616894324 0.0005536301652892563,-9.702184804240117,4.749405918635624 -0.0005537501652892562,-9.694826299010556,4.749405918635624 0.0005538701652892562,-9.698505551625336,4.741968616894324 -0.0005539901652892562,-9.694826299010556,4.753124569506275 0.0005541101652892563,-9.691147046395772,4.753124569506275 -0.0005542301652892562,-9.698505551625336,4.745687267764975 0.0005543501652892562,-9.694826299010556,4.741968616894324 -0.0005544701652892563,-9.702184804240117,4.741968616894324 0.0005545901652892562,-9.698505551625336,4.741968616894324 -0.0005547101652892562,-9.698505551625336,4.749405918635624 0.0005548301652892562,-9.698505551625336,4.741968616894324 -0.0005549501652892563,-9.702184804240117,4.745687267764975 0.0005550701652892562,-9.702184804240117,4.749405918635624 -0.0005551901652892562,-9.702184804240117,4.741968616894324 0.0005553101652892563,-9.705864056854901,4.745687267764975 -0.0005554301652892562,-9.698505551625336,4.745687267764975 0.0005555501652892562,-9.702184804240117,4.749405918635624 -0.0005556701652892562,-9.705864056854901,4.749405918635624 0.0005557901652892563,-9.705864056854901,4.745687267764975 -0.0005559101652892562,-9.698505551625336,4.745687267764975 0.0005560301652892562,-9.702184804240117,4.745687267764975 -0.0005561501652892563,-9.698505551625336,4.745687267764975 0.0005562701652892562,-9.698505551625336,4.741968616894324 -0.0005563901652892562,-9.698505551625336,4.756843220376926 0.0005565101652892562,-9.698505551625336,4.745687267764975 -0.0005566301652892563,-9.694826299010556,4.745687267764975 0.0005567501652892562,-9.698505551625336,4.745687267764975 -0.0005568701652892562,-9.6653922780923,4.712219409929125 0.0005569901652892563,-9.64699601501839,4.779155125600825 -0.0005571101652892562,-9.680109288551426,4.753124569506275 0.0005572301652892562,-9.68378854116621,4.753124569506275 -0.0005573501652892562,-9.687467793780991,4.749405918635624 0.0005574701652892563,-9.687467793780991,4.749405918635624 -0.0005575901652892562,-9.68378854116621,4.745687267764975 0.0005577101652892562,-9.694826299010556,4.745687267764975 -0.0005578301652892563,-9.687467793780991,4.741968616894324 0.0005579501652892562,-9.691147046395772,4.749405918635624 -0.0005580701652892562,-9.694826299010556,4.749405918635624 0.0005581901652892562,-9.691147046395772,4.753124569506275 -0.0005583101652892563,-9.687467793780991,4.753124569506275 0.0005584301652892562,-9.687467793780991,4.753124569506275 -0.0005585501652892562,-9.687467793780991,4.749405918635624 0.0005586701652892563,-9.680109288551426,4.753124569506275 -0.0005587901652892562,-9.691147046395772,4.756843220376926 0.0005589101652892562,-9.687467793780991,4.753124569506275 -0.0005590301652892562,-9.687467793780991,4.753124569506275 0.0005591501652892563,-9.687467793780991,4.756843220376926 -0.0005592701652892562,-9.687467793780991,4.749405918635624 0.0005593901652892562,-9.687467793780991,4.749405918635624 -0.0005595101652892563,-9.691147046395772,4.749405918635624 0.0005596301652892562,-9.687467793780991,4.745687267764975 -0.0005597501652892562,-9.68378854116621,4.749405918635624 0.0005598701652892562,-9.687467793780991,4.749405918635624 -0.0005599901652892563,-9.687467793780991,4.749405918635624 0.0005601101652892562,-9.687467793780991,4.745687267764975 -0.0005602301652892562,-9.687467793780991,4.745687267764975 0.0005603501652892563,-9.691147046395772,4.741968616894324 -0.0005604701652892562,-9.68378854116621,4.753124569506275 0.0005605901652892562,-9.687467793780991,4.749405918635624 -0.0005607101652892562,-9.687467793780991,4.753124569506275 0.0005608301652892562,-9.691147046395772,4.741968616894324 -0.0005609501652892562,-9.694826299010556,4.741968616894324 0.0005610701652892562,-9.694826299010556,4.745687267764975 -0.0005611901652892563,-9.691147046395772,4.738249966023675 0.0005613101652892562,-9.56237320487841,4.741968616894324 -0.0005614301652892562,-9.64699601501839,4.741968616894324 0.0005615501652892562,-9.687467793780991,4.756843220376926 -0.0005616701652892562,-9.691147046395772,4.745687267764975 0.0005617901652892562,-9.698505551625336,4.749405918635624 -0.0005619101652892562,-9.694826299010556,4.741968616894324 0.0005620301652892563,-9.694826299010556,4.749405918635624 -0.0005621501652892562,-9.698505551625336,4.749405918635624 0.0005622701652892562,-9.694826299010556,4.749405918635624 -0.0005623901652892562,-9.694826299010556,4.753124569506275 0.0005625101652892562,-9.698505551625336,4.745687267764975 -0.0005626301652892562,-9.694826299010556,4.753124569506275 0.0005627501652892562,-9.691147046395772,4.749405918635624 -0.0005628701652892563,-9.698505551625336,4.753124569506275 0.0005629901652892562,-9.694826299010556,4.753124569506275 -0.0005631101652892562,-9.694826299010556,4.756843220376926 0.0005632301652892562,-9.698505551625336,4.756843220376926 -0.0005633501652892562,-9.702184804240117,4.749405918635624 0.0005634701652892562,-9.694826299010556,4.745687267764975 -0.0005635901652892562,-9.698505551625336,4.749405918635624 0.0005637101652892563,-9.691147046395772,4.753124569506275 -0.0005638301652892562,-9.702184804240117,4.756843220376926 0.0005639501652892562,-9.691147046395772,4.753124569506275 -0.0005640701652892562,-9.698505551625336,4.745687267764975 0.0005641901652892562,-9.702184804240117,4.745687267764975 -0.0005643101652892562,-9.698505551625336,4.745687267764975 0.0005644301652892562,-9.702184804240117,4.749405918635624 -0.0005645501652892563,-9.702184804240117,4.749405918635624 0.0005646701652892562,-9.698505551625336,4.749405918635624 -0.0005647901652892562,-9.702184804240117,4.753124569506275 0.0005649101652892562,-9.702184804240117,4.745687267764975 -0.0005650301652892562,-9.713222562084463,4.749405918635624 0.0005651501652892562,-9.705864056854901,4.753124569506275 -0.0005652701652892562,-9.709543309469682,4.749405918635624 0.0005653901652892563,-9.713222562084463,4.753124569506275 -0.0005655101652892562,-9.713222562084463,4.749405918635624 0.0005656301652892561,-9.705864056854901,4.753124569506275 -0.0005657501652892562,-9.705864056854901,4.741968616894324 0.0005658701652892562,-9.705864056854901,4.745687267764975 -0.0005659901652892562,-9.702184804240117,4.749405918635624 0.0005661101652892562,-9.705864056854901,4.753124569506275 -0.0005662301652892563,-9.709543309469682,4.749405918635624 0.0005663501652892562,-9.698505551625336,4.756843220376926 -0.0005664701652892561,-9.702184804240117,4.745687267764975 0.0005665901652892563,-9.687467793780991,4.741968616894324 -0.0005667101652892562,-9.628599751944483,4.753124569506275 0.0005668301652892562,-9.691147046395772,4.745687267764975 -0.0005669501652892562,-9.687467793780991,4.749405918635624 0.0005670701652892563,-9.694826299010556,4.745687267764975 -0.0005671901652892562,-9.687467793780991,4.749405918635624 0.0005673101652892561,-9.68378854116621,4.745687267764975 -0.0005674301652892563,-9.687467793780991,4.753124569506275 0.0005675501652892562,-9.687467793780991,4.749405918635624 -0.0005676701652892562,-9.68378854116621,4.745687267764975 0.0005677901652892562,-9.68378854116621,4.749405918635624 -0.0005679101652892563,-9.68378854116621,4.749405918635624 0.0005680301652892562,-9.68378854116621,4.745687267764975 -0.0005681501652892561,-9.68378854116621,4.741968616894324 0.0005682701652892563,-9.687467793780991,4.749405918635624 -0.0005683901652892562,-9.680109288551426,4.738249966023675 0.0005685101652892562,-9.687467793780991,4.745687267764975 -0.0005686301652892562,-9.68378854116621,4.749405918635624 0.0005687501652892563,-9.680109288551426,4.749405918635624 -0.0005688701652892562,-9.687467793780991,4.741968616894324 0.0005689901652892561,-9.687467793780991,4.738249966023675 -0.0005691101652892563,-9.68378854116621,4.745687267764975 0.0005692301652892562,-9.687467793780991,4.745687267764975 -0.0005693501652892562,-9.691147046395772,4.749405918635624 0.0005694701652892562,-9.694826299010556,4.745687267764975 -0.0005695901652892563,-9.698505551625336,4.749405918635624 0.0005697101652892562,-9.698505551625336,4.749405918635624 -0.0005698301652892561,-9.702184804240117,4.741968616894324 0.0005699501652892563,-9.698505551625336,4.738249966023675 -0.0005700701652892562,-9.691147046395772,4.741968616894324 0.0005701901652892562,-9.694826299010556,4.745687267764975 -0.0005703101652892562,-9.694826299010556,4.749405918635624 0.0005704301652892563,-9.691147046395772,4.745687267764975 -0.0005705501652892562,-9.691147046395772,4.745687267764975 0.0005706701652892561,-9.687467793780991,4.745687267764975 -0.0005707901652892563,-9.694826299010556,4.753124569506275 0.0005709101652892562,-9.694826299010556,4.745687267764975 -0.0005710301652892562,-9.635958257174044,4.738249966023675 0.0005711501652892562,-9.588127973181882,4.749405918635624 -0.0005712701652892563,-9.698505551625336,4.753124569506275 0.0005713901652892562,-9.694826299010556,4.745687267764975 -0.0005715101652892561,-9.694826299010556,4.749405918635624 0.0005716301652892563,-9.694826299010556,4.749405918635624 -0.0005717501652892562,-9.694826299010556,4.760561871247575 0.0005718701652892562,-9.702184804240117,4.756843220376926 -0.0005719901652892562,-9.691147046395772,4.756843220376926 0.0005721101652892563,-9.694826299010556,4.753124569506275 -0.0005722301652892562,-9.698505551625336,4.749405918635624 0.0005723501652892562,-9.694826299010556,4.745687267764975 -0.0005724701652892563,-9.698505551625336,4.749405918635624 0.0005725901652892562,-9.694826299010556,4.749405918635624 -0.0005727101652892562,-9.698505551625336,4.756843220376926 0.0005728301652892562,-9.694826299010556,4.756843220376926 -0.0005729501652892563,-9.694826299010556,4.753124569506275 0.0005730701652892562,-9.694826299010556,4.745687267764975 -0.0005731901652892562,-9.691147046395772,4.741968616894324 0.0005733101652892563,-9.694826299010556,4.741968616894324 -0.0005734301652892562,-9.694826299010556,4.753124569506275 0.0005735501652892562,-9.698505551625336,4.753124569506275 -0.0005736701652892562,-9.702184804240117,4.753124569506275 0.0005737901652892563,-9.698505551625336,4.749405918635624 -0.0005739101652892562,-9.698505551625336,4.741968616894324 0.0005740301652892562,-9.702184804240117,4.749405918635624 -0.0005741501652892563,-9.702184804240117,4.745687267764975 0.0005742701652892562,-9.702184804240117,4.753124569506275 -0.0005743901652892562,-9.705864056854901,4.749405918635624 0.0005745101652892562,-9.702184804240117,4.749405918635624 -0.0005746301652892563,-9.705864056854901,4.753124569506275 0.0005747501652892562,-9.709543309469682,4.745687267764975 -0.0005748701652892562,-9.705864056854901,4.749405918635624 0.0005749901652892563,-9.702184804240117,4.745687267764975 -0.0005751101652892562,-9.705864056854901,4.753124569506275 0.0005752301652892562,-9.702184804240117,4.745687267764975 -0.0005753501652892562,-9.694826299010556,4.745687267764975 0.0005754701652892563,-9.702184804240117,4.734531315153024 -0.0005755901652892562,-9.698505551625336,4.749405918635624 0.0005757101652892562,-9.698505551625336,4.745687267764975 -0.0005758301652892563,-9.702184804240117,4.753124569506275 0.0005759501652892562,-9.705864056854901,4.753124569506275 -0.0005760701652892562,-9.698505551625336,4.745687267764975 0.0005761901652892562,-9.698505551625336,4.745687267764975 -0.0005763101652892563,-9.694826299010556,4.745687267764975 0.0005764301652892562,-9.628599751944483,4.741968616894324 -0.0005765501652892562,-9.680109288551426,4.756843220376926 0.0005766701652892563,-9.687467793780991,4.749405918635624 -0.0005767901652892562,-9.687467793780991,4.749405918635624 0.0005769101652892562,-9.687467793780991,4.745687267764975 -0.0005770301652892562,-9.691147046395772,4.745687267764975 0.0005771501652892563,-9.68378854116621,4.741968616894324 -0.0005772701652892562,-9.687467793780991,4.745687267764975 0.0005773901652892562,-9.680109288551426,4.745687267764975 -0.0005775101652892563,-9.687467793780991,4.745687267764975 0.0005776301652892562,-9.687467793780991,4.745687267764975 -0.0005777501652892562,-9.687467793780991,4.745687267764975 0.0005778701652892562,-9.687467793780991,4.745687267764975 -0.0005779901652892563,-9.68378854116621,4.749405918635624 0.0005781101652892562,-9.687467793780991,4.753124569506275 -0.0005782301652892562,-9.687467793780991,4.745687267764975 0.0005783501652892563,-9.687467793780991,4.749405918635624 -0.0005784701652892562,-9.68378854116621,4.745687267764975 0.0005785901652892562,-9.68378854116621,4.741968616894324 -0.0005787101652892562,-9.68378854116621,4.745687267764975 0.0005788301652892563,-9.691147046395772,4.745687267764975 -0.0005789501652892562,-9.687467793780991,4.745687267764975 0.0005790701652892562,-9.691147046395772,4.741968616894324 -0.0005791901652892563,-9.694826299010556,4.745687267764975 0.0005793101652892562,-9.694826299010556,4.741968616894324 -0.0005794301652892562,-9.691147046395772,4.745687267764975 0.0005795501652892562,-9.691147046395772,4.753124569506275 -0.0005796701652892563,-9.691147046395772,4.745687267764975 0.0005797901652892562,-9.694826299010556,4.749405918635624 -0.0005799101652892562,-9.691147046395772,4.749405918635624 0.0005800301652892563,-9.691147046395772,4.753124569506275 -0.0005801501652892562,-9.694826299010556,4.745687267764975 0.0005802701652892562,-9.687467793780991,4.753124569506275 -0.0005803901652892562,-9.687467793780991,4.749405918635624 0.0005805101652892563,-9.687467793780991,4.753124569506275 -0.0005806301652892562,-9.691147046395772,4.749405918635624 0.0005807501652892562,-9.676430035936646,4.749405918635624 -0.0005808701652892563,-9.540297689189719,4.753124569506275 0.0005809901652892562,-9.691147046395772,4.756843220376926 -0.0005811101652892562,-9.705864056854901,4.756843220376926 0.0005812301652892562,-9.702184804240117,4.753124569506275 -0.0005813501652892562,-9.698505551625336,4.753124569506275 0.0005814701652892562,-9.702184804240117,4.749405918635624 -0.0005815901652892562,-9.698505551625336,4.753124569506275 0.0005817101652892563,-9.698505551625336,4.749405918635624 -0.0005818301652892562,-9.694826299010556,4.749405918635624 0.0005819501652892562,-9.691147046395772,4.745687267764975 -0.0005820701652892562,-9.694826299010556,4.749405918635624 0.0005821901652892562,-9.691147046395772,4.749405918635624 -0.0005823101652892562,-9.691147046395772,4.745687267764975 0.0005824301652892562,-9.694826299010556,4.749405918635624 -0.0005825501652892563,-9.694826299010556,4.749405918635624 0.0005826701652892562,-9.694826299010556,4.760561871247575 -0.0005827901652892562,-9.694826299010556,4.749405918635624 0.0005829101652892562,-9.694826299010556,4.756843220376926 -0.0005830301652892562,-9.702184804240117,4.745687267764975 0.0005831501652892562,-9.691147046395772,4.756843220376926 -0.0005832701652892562,-9.694826299010556,4.753124569506275 0.0005833901652892563,-9.698505551625336,4.749405918635624 -0.0005835101652892562,-9.698505551625336,4.749405918635624 0.0005836301652892562,-9.698505551625336,4.741968616894324 -0.0005837501652892562,-9.694826299010556,4.741968616894324 0.0005838701652892562,-9.698505551625336,4.741968616894324 -0.0005839901652892562,-9.698505551625336,4.749405918635624 0.0005841101652892562,-9.698505551625336,4.749405918635624 -0.0005842301652892563,-9.691147046395772,4.745687267764975 0.0005843501652892562,-9.694826299010556,4.749405918635624 -0.0005844701652892562,-9.698505551625336,4.745687267764975 0.0005845901652892562,-9.702184804240117,4.745687267764975 -0.0005847101652892562,-9.702184804240117,4.745687267764975 0.0005848301652892562,-9.698505551625336,4.745687267764975 -0.0005849501652892562,-9.705864056854901,4.749405918635624 0.0005850701652892563,-9.698505551625336,4.753124569506275 -0.0005851901652892562,-9.702184804240117,4.745687267764975 0.0005853101652892562,-9.698505551625336,4.745687267764975 -0.0005854301652892562,-9.705864056854901,4.753124569506275 0.0005855501652892562,-9.705864056854901,4.745687267764975 -0.0005856701652892562,-9.709543309469682,4.756843220376926 0.0005857901652892562,-9.702184804240117,4.760561871247575 -0.0005859101652892563,-9.698505551625336,4.749405918635624 0.0005860301652892562,-9.705864056854901,4.749405918635624 -0.0005861501652892563,-9.643316762403609,4.753124569506275 0.0005862701652892562,-9.669071530707081,4.753124569506275 -0.0005863901652892562,-9.694826299010556,4.753124569506275 0.0005865101652892562,-9.691147046395772,4.760561871247575 -0.0005866301652892562,-9.687467793780991,4.749405918635624 0.0005867501652892563,-9.687467793780991,4.756843220376926 -0.0005868701652892562,-9.691147046395772,4.745687267764975 0.0005869901652892563,-9.694826299010556,4.745687267764975 -0.0005871101652892562,-9.687467793780991,4.749405918635624 0.0005872301652892562,-9.687467793780991,4.745687267764975 -0.0005873501652892562,-9.691147046395772,4.753124569506275 0.0005874701652892562,-9.691147046395772,4.745687267764975 -0.0005875901652892563,-9.698505551625336,4.745687267764975 0.0005877101652892562,-9.694826299010556,4.741968616894324 -0.0005878301652892563,-9.687467793780991,4.741968616894324 0.0005879501652892562,-9.687467793780991,4.738249966023675 -0.0005880701652892562,-9.691147046395772,4.749405918635624 0.0005881901652892562,-9.691147046395772,4.741968616894324 -0.0005883101652892562,-9.691147046395772,4.745687267764975 0.0005884301652892563,-9.687467793780991,4.749405918635624 -0.0005885501652892562,-9.68378854116621,4.741968616894324 0.0005886701652892563,-9.687467793780991,4.745687267764975 -0.0005887901652892562,-9.687467793780991,4.745687267764975 0.0005889101652892562,-9.691147046395772,4.745687267764975 -0.0005890301652892562,-9.694826299010556,4.741968616894324 0.0005891501652892562,-9.691147046395772,4.753124569506275 diff --git a/meas/20200319reflexions.csv b/meas/20200319reflexions.csv new file mode 100644 index 0000000..fb22739 --- /dev/null +++ b/meas/20200319reflexions.csv @@ -0,0 +1,4097 @@ +t,c1 +-4.094280947255113e-05,4.830249611364044 +-4.092280947255113e-05,5.036287757791793 +-4.090280947255113e-05,4.944306442422281 +-4.088280947255114e-05,4.870721390126715 +-4.086280947255113e-05,5.0620425260953 +-4.084280947255113e-05,4.881759147971062 +-4.082280947255113e-05,4.885438400585771 +-4.080280947255113e-05,5.065721778710011 +-4.078280947255113e-05,4.856004379667517 +-4.076280947255113e-05,4.951664947651797 +-4.074280947255113e-05,5.017891494717918 +-4.072280947255113e-05,4.837608116593607 +-4.070280947255113e-05,4.973740463340535 +-4.068280947255113e-05,4.973740463340535 +-4.066280947255113e-05,4.867042137511862 +-4.064280947255113e-05,5.014212242103136 +-4.062280947255113e-05,4.922230926733569 +-4.060280947255113e-05,4.88175914797099 +-4.058280947255113e-05,5.02524999994743 +-4.056280947255113e-05,4.844966621823171 +-4.054280947255114e-05,4.962702705496235 +-4.052280947255113e-05,5.04364626302139 +-4.050280947255113e-05,4.859683632282374 +-4.048280947255113e-05,4.999495231644008 +-4.046280947255113e-05,4.999495231644001 +-4.044280947255113e-05,4.867042137511862 +-4.042280947255113e-05,5.039967010406524 +-4.040280947255113e-05,4.959023452881408 +-4.038280947255113e-05,4.856004379667517 +-4.036280947255113e-05,5.065721778710081 +-4.034280947255113e-05,4.88175914797099 +-4.032280947255113e-05,4.907513916274462 +-4.030280947255113e-05,5.054684020865736 +-4.028280947255113e-05,4.867042137511862 +-4.026280947255113e-05,4.940627189807499 +-4.024280947255113e-05,5.025249999947397 +-4.022280947255113e-05,4.84128736920839 +-4.020280947255114e-05,4.981098968570106 +-4.018280947255113e-05,4.96270270549619 +-4.016280947255114e-05,4.867042137511929 +-4.014280947255113e-05,4.984778221184881 +-4.012280947255113e-05,4.929589431963199 +-4.010280947255113e-05,4.88175914797099 +-4.008280947255113e-05,5.051004768250877 +-4.006280947255113e-05,4.848645874437953 +-4.004280947255113e-05,4.907513916274434 +-4.002280947255113e-05,5.017891494717918 +-4.000280947255113e-05,4.808174095675353 +-3.998280947255113e-05,4.940627189807499 +-3.996280947255113e-05,4.984778221184881 +-3.994280947255113e-05,4.848645874437953 +-3.992280947255113e-05,5.04364626302139 +-3.990280947255113e-05,4.892796905815318 +-3.988280947255113e-05,4.84128736920839 +-3.986280947255113e-05,5.028929252562208 +-3.984280947255113e-05,4.896476158430117 +-3.982280947255114e-05,4.892796905815398 +-3.980280947255113e-05,5.039967010406609 +-3.978280947255113e-05,4.867042137511922 +-3.976280947255113e-05,4.940627189807499 +-3.974280947255113e-05,5.014212242103108 +-3.972280947255113e-05,4.859683632282299 +-3.970280947255113e-05,4.988457473799603 +-3.968280947255113e-05,4.944306442422281 +-3.966280947255113e-05,4.852325127052735 +-3.964280947255113e-05,5.017891494717918 +-3.962280947255113e-05,4.933268684577936 +-3.960280947255113e-05,4.966381958110972 +-3.958280947255113e-05,5.080438789169209 +-3.956280947255113e-05,4.848645874437971 +-3.954280947255113e-05,4.96270270549619 +-3.952280947255113e-05,5.021570747332618 +-3.950280947255113e-05,4.859683632282299 +-3.948280947255114e-05,4.973740463340556 +-3.946280947255113e-05,5.006853736873572 +-3.944280947255113e-05,4.85232512705278 +-3.942280947255113e-05,5.106193557472682 +-3.940280947255113e-05,4.940627189807546 +-3.938280947255113e-05,4.867042137511862 +-3.936280947255113e-05,5.080438789169124 +-3.934280947255113e-05,4.918551674118808 +-3.932280947255113e-05,4.929589431963153 +-3.930280947255113e-05,5.065721778710081 +-3.928280947255113e-05,4.889117653200554 +-3.926280947255113e-05,4.96270270549619 +-3.924280947255113e-05,5.036287757791827 +-3.922280947255113e-05,4.889117653200554 +-3.920280947255113e-05,4.988457473799663 +-3.918280947255113e-05,4.940627189807465 +-3.916280947255113e-05,4.859683632282299 +-3.914280947255114e-05,5.039967010406567 +-3.912280947255113e-05,4.918551674118808 +-3.910280947255114e-05,4.903834663659764 +-3.908280947255113e-05,5.0620425260953 +-3.906280947255113e-05,4.885438400585857 +-3.904280947255113e-05,4.966381958110972 +-3.902280947255113e-05,5.043646263021345 +-3.900280947255113e-05,4.892796905815335 +-3.898280947255113e-05,5.135627578390768 +-3.896280947255113e-05,5.047325515636173 +-3.894280947255113e-05,4.914872421504026 +-3.892280947255113e-05,5.039967010406609 +-3.890280947255113e-05,4.966381958110972 +-3.888280947255113e-05,4.903834663659681 +-3.886280947255113e-05,5.058363273480518 +-3.884280947255113e-05,4.911193168889256 +-3.882280947255113e-05,4.929589431963153 +-3.880280947255113e-05,5.047325515636109 +-3.878280947255113e-05,4.896476158430117 +-3.876280947255114e-05,4.970061210725787 +-3.874280947255113e-05,5.039967010406609 +-3.872280947255113e-05,4.878079895356269 +-3.870280947255113e-05,4.981098968570099 +-3.868280947255113e-05,4.97374046334056 +-3.866280947255113e-05,4.892796905815335 +-3.864280947255113e-05,5.017891494717873 +-3.862280947255113e-05,4.951664947651844 +-3.860280947255113e-05,4.929589431963153 +-3.858280947255113e-05,5.028929252562263 +-3.856280947255113e-05,4.892796905815335 +-3.854280947255113e-05,4.959023452881408 +-3.852280947255113e-05,5.065721778710081 +-3.850280947255113e-05,4.907513916274462 +-3.848280947255113e-05,4.995815979029227 +-3.846280947255113e-05,4.999495231643952 +-3.844280947255113e-05,4.88175914797099 +-3.842280947255114e-05,4.98845747379967 +-3.840280947255113e-05,4.970061210725754 +-3.838280947255113e-05,4.914872421504038 +-3.836280947255113e-05,5.04364626302139 +-3.834280947255113e-05,4.911193168889307 +-3.832280947255113e-05,4.929589431963153 +-3.830280947255113e-05,5.047325515636131 +-3.828280947255113e-05,4.867042137511862 +-3.826280947255113e-05,4.959023452881408 +-3.824280947255113e-05,5.032608505177045 +-3.822280947255113e-05,4.907513916274462 +-3.820280947255113e-05,4.977419715955318 +-3.818280947255113e-05,4.995815979029227 +-3.816280947255113e-05,4.903834663659681 +-3.814280947255113e-05,5.021570747332699 +-3.812280947255113e-05,4.940627189807482 +-3.810280947255113e-05,4.907513916274462 +-3.808280947255114e-05,5.051004768250899 +-3.806280947255113e-05,4.900155411044899 +-3.804280947255114e-05,4.959023452881461 +-3.802280947255113e-05,5.058363273480518 +-3.800280947255113e-05,4.874400642741506 +-3.798280947255113e-05,4.929589431963153 +-3.796280947255113e-05,4.973740463340558 +-3.794280947255113e-05,4.878079895356208 +-3.792280947255113e-05,5.02892925256221 +-3.790280947255113e-05,4.992136726414445 +-3.788280947255113e-05,4.914872421504026 +-3.786280947255113e-05,5.069401031324864 +-3.784280947255113e-05,4.940627189807499 +-3.782280947255113e-05,4.936947937192717 +-3.780280947255113e-05,5.0620425260953 +-3.778280947255113e-05,4.856004379667581 +-3.776280947255113e-05,4.973740463340535 +-3.774280947255113e-05,5.047325515636094 +-3.772280947255113e-05,4.896476158430117 +-3.770280947255114e-05,5.010532989488359 +-3.768280947255113e-05,4.852325127052735 +-3.766280947255113e-05,4.797136337831106 +-3.764280947255113e-05,5.017891494717918 +-3.762280947255113e-05,4.947985695037111 +-3.760280947255113e-05,4.929589431963153 +-3.758280947255113e-05,5.058363273480458 +-3.756280947255113e-05,4.892796905815335 +-3.754280947255113e-05,4.959023452881408 +-3.752280947255113e-05,5.047325515636173 +-3.750280947255113e-05,4.86336288489708 +-3.748280947255113e-05,5.054684020865736 +-3.746280947255113e-05,5.003174484258791 +-3.744280947255113e-05,4.885438400585835 +-3.742280947255113e-05,5.047325515636173 +-3.740280947255113e-05,4.973740463340495 +-3.738280947255113e-05,4.911193168889245 +-3.736280947255114e-05,5.286476935596778 +-3.734280947255113e-05,5.021570747332699 +-3.732280947255113e-05,4.959023452881388 +-3.730280947255113e-05,5.069401031324864 +-3.728280947255113e-05,4.889117653200628 +-3.726280947255113e-05,4.959023452881408 +-3.724280947255113e-05,5.043646263021369 +-3.722280947255113e-05,4.856004379667517 +-3.720280947255113e-05,4.992136726414445 +-3.718280947255113e-05,4.995815979029227 +-3.716280947255113e-05,4.867042137511862 +-3.714280947255113e-05,5.047325515636173 +-3.712280947255113e-05,4.947985695037063 +-3.710280947255113e-05,4.892796905815335 +-3.708280947255113e-05,5.039967010406609 +-3.706280947255113e-05,4.907513916274472 +-3.704280947255113e-05,4.92223092673359 +-3.702280947255113e-05,5.039967010406542 +-3.700280947255113e-05,4.867042137511862 +-3.698280947255114e-05,4.973740463340562 +-3.696280947255113e-05,5.025249999947482 +-3.694280947255113e-05,4.874400642741477 +-3.692280947255113e-05,5.021570747332699 +-3.690280947255113e-05,4.970061210725807 +-3.688280947255113e-05,4.837608116593607 +-3.686280947255113e-05,5.054684020865667 +-3.684280947255113e-05,4.907513916274462 +-3.682280947255113e-05,4.907513916274462 +-3.680280947255113e-05,5.091476547013555 +-3.678280947255113e-05,4.878079895356208 +-3.676280947255113e-05,4.951664947651844 +-3.674280947255113e-05,5.028929252562263 +-3.672280947255113e-05,4.885438400585811 +-3.670280947255113e-05,4.999495231644008 +-3.668280947255113e-05,5.006853736873512 +-3.666280947255113e-05,4.874400642741426 +-3.664280947255114e-05,5.032608505177015 +-3.662280947255113e-05,4.933268684577936 +-3.660280947255113e-05,4.896476158430128 +-3.658280947255113e-05,5.051004768250954 +-3.656280947255113e-05,4.925910179348438 +-3.654280947255113e-05,4.940627189807499 +-3.652280947255113e-05,5.054684020865698 +-3.650280947255113e-05,4.867042137511862 +-3.648280947255113e-05,5.028929252562263 +-3.646280947255113e-05,5.017891494717918 +-3.644280947255113e-05,4.874400642741426 +-3.642280947255113e-05,5.0620425260953 +-3.640280947255113e-05,4.970061210725754 +-3.638280947255113e-05,4.88175914797099 +-3.636280947255113e-05,5.084118041783991 +-3.634280947255113e-05,4.944306442422258 +-3.632280947255113e-05,4.903834663659681 +-3.630280947255114e-05,5.076759536554334 +-3.628280947255113e-05,4.867042137511862 +-3.626280947255113e-05,4.966381958110934 +-3.624280947255113e-05,5.036287757791827 +-3.622280947255113e-05,4.870721390126709 +-3.620280947255113e-05,4.992136726414445 +-3.618280947255113e-05,4.999495231644032 +-3.616280947255113e-05,4.86336288489708 +-3.614280947255113e-05,5.036287757791827 +-3.612280947255113e-05,4.940627189807499 +-3.610280947255113e-05,4.907513916274462 +-3.608280947255113e-05,5.047325515636173 +-3.606280947255113e-05,4.907513916274462 +-3.604280947255113e-05,4.907513916274462 +-3.602280947255113e-05,5.047325515636173 +-3.600280947255113e-05,4.867042137511906 +-3.598280947255113e-05,5.010532989488354 +-3.596280947255113e-05,5.01053298948828 +-3.594280947255113e-05,4.867042137511862 +-3.592280947255114e-05,5.058363273480488 +-3.590280947255113e-05,4.96270270549619 +-3.588280947255113e-05,4.892796905815349 +-3.586280947255113e-05,5.0620425260953 +-3.584280947255113e-05,4.896476158430199 +-3.582280947255113e-05,4.936947937192717 +-3.580280947255113e-05,5.076759536554366 +-3.578280947255113e-05,4.874400642741426 +-3.576280947255113e-05,4.955344200266627 +-3.574280947255113e-05,5.04364626302139 +-3.572280947255113e-05,4.892796905815335 +-3.570280947255113e-05,4.995815979029227 +-3.568280947255113e-05,4.992136726414445 +-3.566280947255113e-05,4.903834663659736 +-3.564280947255113e-05,5.039967010406609 +-3.562280947255113e-05,4.914872421504015 +-3.560280947255113e-05,4.885438400585771 +-3.558280947255114e-05,5.062042526095239 +-3.556280947255113e-05,4.892796905815335 +-3.554280947255113e-05,4.933268684577914 +-3.552280947255113e-05,5.069401031324864 +-3.550280947255113e-05,4.848645874438032 +-3.548280947255113e-05,5.028929252562263 +-3.546280947255113e-05,5.003174484258787 +-3.544280947255113e-05,4.892796905815335 +-3.542280947255113e-05,5.014212242103136 +-3.540280947255113e-05,4.96270270549619 +-3.538280947255113e-05,4.896476158430117 +-3.536280947255113e-05,5.120910567931809 +-3.534280947255113e-05,4.892796905815335 +-3.532280947255113e-05,4.896476158430117 +-3.530280947255113e-05,5.065721778710081 +-3.528280947255113e-05,4.885438400585793 +-3.526280947255113e-05,4.981098968570099 +-3.524280947255114e-05,5.084118041783872 +-3.522280947255113e-05,4.867042137511862 +-3.520280947255113e-05,4.988457473799606 +-3.518280947255113e-05,4.992136726414445 +-3.516280947255113e-05,4.874400642741469 +-3.514280947255113e-05,5.032608505177045 +-3.512280947255113e-05,4.903834663659783 +-3.510280947255113e-05,4.88175914797099 +-3.508280947255113e-05,5.073080283939645 +-3.506280947255113e-05,4.892796905815335 +-3.504280947255113e-05,4.959023452881408 +-3.502280947255113e-05,5.04364626302139 +-3.500280947255113e-05,4.852325127052735 +-3.498280947255113e-05,4.995815979029227 +-3.496280947255113e-05,5.021570747332699 +-3.494280947255113e-05,4.870721390126701 +-3.492280947255113e-05,5.073080283939645 +-3.490280947255113e-05,4.92591017934835 +-3.488280947255113e-05,4.933268684577936 +-3.486280947255114e-05,5.047325515636118 +-3.484280947255113e-05,4.925910179348372 +-3.482280947255113e-05,4.936947937192699 +-3.480280947255113e-05,5.076759536554427 +-3.478280947255113e-05,4.892796905815405 +-3.476280947255113e-05,4.966381958110972 +-3.474280947255113e-05,5.039967010406573 +-3.472280947255113e-05,4.914872421504026 +-3.470280947255113e-05,4.995815979029227 +-3.468280947255113e-05,4.999495231644008 +-3.466280947255113e-05,4.889117653200554 +-3.464280947255113e-05,5.014212242103136 +-3.462280947255113e-05,4.947985695037063 +-3.460280947255113e-05,4.903834663659753 +-3.458280947255113e-05,5.036287757791827 +-3.456280947255113e-05,4.89647615843013 +-3.454280947255113e-05,4.959023452881408 +-3.452280947255114e-05,5.043646263021325 +-3.450280947255113e-05,4.874400642741426 +-3.448280947255113e-05,4.981098968570054 +-3.446280947255113e-05,5.021570747332699 +-3.444280947255113e-05,4.885438400585823 +-3.442280947255113e-05,5.021570747332699 +-3.440280947255113e-05,4.995815979029234 +-3.438280947255113e-05,4.911193168889245 +-3.436280947255113e-05,5.036287757791827 +-3.434280947255113e-05,4.940627189807499 +-3.432280947255113e-05,4.929589431963153 +-3.430280947255113e-05,5.065721778710081 +-3.428280947255113e-05,4.900155411044899 +-3.426280947255113e-05,4.970061210725754 +-3.424280947255113e-05,5.073080283939645 +-3.422280947255113e-05,4.892796905815379 +-3.420280947255113e-05,4.981098968570099 +-3.418280947255114e-05,5.010532989488305 +-3.416280947255113e-05,4.92223092673359 +-3.414280947255114e-05,5.021570747332673 +-3.412280947255113e-05,4.951664947651844 +-3.410280947255113e-05,4.925910179348373 +-3.408280947255113e-05,5.04364626302139 +-3.406280947255113e-05,4.892796905815421 +-3.404280947255113e-05,4.96270270549619 +-3.402280947255113e-05,5.028929252562263 +-3.400280947255113e-05,4.870721390126644 +-3.398280947255113e-05,4.988457473799663 +-3.396280947255113e-05,5.025249999947482 +-3.394280947255113e-05,4.88175914797099 +-3.392280947255113e-05,5.028929252562263 +-3.390280947255113e-05,4.984778221184881 +-3.388280947255113e-05,4.903834663659732 +-3.386280947255113e-05,5.039967010406609 +-3.384280947255113e-05,4.92591017934837 +-3.382280947255113e-05,4.918551674118808 +-3.380280947255114e-05,5.073080283939571 +-3.378280947255113e-05,4.88175914797099 +-3.376280947255113e-05,4.955344200266591 +-3.374280947255113e-05,5.028929252562263 +-3.372280947255113e-05,4.859683632282369 +-3.370280947255113e-05,4.999495231644008 +-3.368280947255113e-05,5.003174484258799 +-3.366280947255113e-05,4.88175914797099 +-3.364280947255113e-05,5.051004768250954 +-3.362280947255113e-05,4.764023064297971 +-3.360280947255113e-05,4.793457085216225 +-3.358280947255113e-05,5.036287757791827 +-3.356280947255113e-05,4.885438400585771 +-3.354280947255113e-05,4.94798569503711 +-3.352280947255113e-05,5.04364626302139 +-3.350280947255113e-05,4.867042137511898 +-3.348280947255113e-05,4.992136726414445 +-3.346280947255114e-05,5.021570747332635 +-3.344280947255113e-05,4.874400642741426 +-3.342280947255113e-05,5.080438789169107 +-3.340280947255113e-05,4.944306442422281 +-3.338280947255113e-05,4.89647615843014 +-3.336280947255113e-05,5.065721778710081 +-3.334280947255113e-05,4.933268684577998 +-3.332280947255113e-05,4.925910179348372 +-3.330280947255113e-05,5.220250388530919 +-3.328280947255113e-05,4.914872421504026 +-3.326280947255113e-05,4.966381958110972 +-3.324280947255113e-05,5.036287757791827 +-3.322280947255113e-05,4.885438400585771 +-3.320280947255113e-05,5.003174484258791 +-3.318280947255113e-05,5.003174484258791 +-3.316280947255113e-05,4.870721390126716 +-3.314280947255113e-05,5.04364626302139 +-3.312280947255114e-05,4.970061210725727 +-3.310280947255113e-05,4.84128736920839 +-3.308280947255114e-05,4.992136726414452 +-3.306280947255113e-05,4.900155411044899 +-3.304280947255113e-05,4.92223092673358 +-3.302280947255113e-05,5.054684020865736 +-3.300280947255113e-05,4.892796905815407 +-3.298280947255113e-05,4.973740463340535 +-3.296280947255113e-05,5.036287757791827 +-3.294280947255113e-05,4.88175914797099 +-3.292280947255113e-05,5.04364626302139 +-3.290280947255113e-05,4.984778221184881 +-3.288280947255113e-05,4.885438400585771 +-3.286280947255113e-05,5.04364626302139 +-3.284280947255113e-05,4.936947937192717 +-3.282280947255113e-05,4.922230926733657 +-3.280280947255113e-05,5.120910567931809 +-3.278280947255113e-05,4.874400642741462 +-3.276280947255113e-05,4.955344200266627 +-3.274280947255114e-05,5.043646263021318 +-3.272280947255113e-05,4.870721390126644 +-3.270280947255113e-05,4.995815979029174 +-3.268280947255113e-05,5.010532989488354 +-3.266280947255113e-05,4.856004379667573 +-3.264280947255113e-05,5.047325515636173 +-3.262280947255113e-05,4.936947937192772 +-3.260280947255113e-05,4.889117653200554 +-3.258280947255113e-05,5.065721778710081 +-3.256280947255113e-05,4.914872421504026 +-3.254280947255113e-05,4.936947937192717 +-3.252280947255113e-05,5.0620425260953 +-3.250280947255113e-05,4.892796905815335 +-3.248280947255113e-05,4.962702705496225 +-3.246280947255113e-05,5.028929252562263 +-3.244280947255113e-05,4.878079895356252 +-3.242280947255113e-05,5.032608505177045 +-3.240280947255114e-05,4.973740463340492 +-3.238280947255113e-05,4.88175914797099 +-3.236280947255113e-05,5.102514304857811 +-3.234280947255113e-05,4.925910179348372 +-3.232280947255113e-05,4.907513916274453 +-3.230280947255113e-05,5.051004768250954 +-3.228280947255113e-05,4.867042137511954 +-3.226280947255113e-05,4.959023452881408 +-3.224280947255113e-05,5.04364626302139 +-3.222280947255113e-05,4.870721390126644 +-3.220280947255113e-05,5.003174484258791 +-3.218280947255113e-05,4.995815979029227 +-3.216280947255113e-05,4.889117653200554 +-3.214280947255113e-05,5.036287757791827 +-3.212280947255113e-05,4.914872421504026 +-3.210280947255113e-05,4.940627189807564 +-3.208280947255113e-05,5.0620425260953 +-3.206280947255114e-05,4.863362884897107 +-3.204280947255113e-05,4.936947937192717 +-3.202280947255114e-05,5.054684020865654 +-3.200280947255113e-05,4.793457085216225 +-3.198280947255113e-05,4.988457473799606 +-3.196280947255113e-05,5.003174484258791 +-3.194280947255113e-05,4.892796905815387 +-3.192280947255113e-05,5.010532989488354 +-3.190280947255113e-05,4.959023452881445 +-3.188280947255113e-05,4.892796905815335 +-3.186280947255113e-05,5.0620425260953 +-3.184280947255113e-05,4.925910179348372 +-3.182280947255113e-05,4.907513916274462 +-3.180280947255113e-05,5.073080283939645 +-3.178280947255113e-05,4.885438400585771 +-3.176280947255113e-05,4.936947937192778 +-3.174280947255113e-05,5.051004768250954 +-3.172280947255113e-05,4.889117653200579 +-3.170280947255113e-05,4.995815979029227 +-3.168280947255114e-05,5.025249999947418 +-3.166280947255113e-05,4.885438400585771 +-3.164280947255113e-05,5.010532989488297 +-3.162280947255113e-05,4.92223092673359 +-3.160280947255113e-05,4.892796905815339 +-3.158280947255113e-05,5.076759536554427 +-3.156280947255113e-05,4.889117653200646 +-3.154280947255113e-05,4.933268684577936 +-3.152280947255113e-05,5.080438789169209 +-3.150280947255113e-05,4.885438400585771 +-3.148280947255113e-05,4.96270270549619 +-3.146280947255113e-05,5.095155799628337 +-3.144280947255113e-05,4.914872421504026 +-3.142280947255113e-05,5.043646263021365 +-3.140280947255113e-05,4.966381958110972 +-3.138280947255113e-05,4.867042137511939 +-3.136280947255113e-05,5.069401031324864 +-3.134280947255114e-05,4.911193168889241 +-3.132280947255113e-05,4.903834663659681 +-3.130280947255113e-05,5.065721778710028 +-3.128280947255113e-05,4.896476158430117 +-3.126280947255113e-05,4.947985695037031 +-3.124280947255113e-05,5.065721778710081 +-3.122280947255113e-05,4.852325127052814 +-3.120280947255113e-05,4.995815979029227 +-3.118280947255113e-05,5.006853736873572 +-3.116280947255113e-05,4.859683632282299 +-3.114280947255113e-05,5.021570747332699 +-3.112280947255113e-05,4.940627189807499 +-3.110280947255113e-05,4.892796905815335 +-3.108280947255113e-05,5.047325515636173 +-3.106280947255113e-05,4.892796905815335 +-3.104280947255113e-05,4.914872421504088 +-3.102280947255113e-05,5.036287757791827 +-3.100280947255114e-05,4.859683632282333 +-3.098280947255113e-05,5.003174484258791 +-3.096280947255114e-05,5.021570747332622 +-3.094280947255113e-05,4.844966621823171 +-3.092280947255113e-05,5.028929252562186 +-3.090280947255113e-05,4.970061210725754 +-3.088280947255113e-05,4.889117653200567 +-3.086280947255113e-05,5.080438789169209 +-3.084280947255113e-05,4.933268684577987 +-3.082280947255113e-05,4.903834663659681 +-3.080280947255113e-05,5.080438789169209 +-3.078280947255113e-05,4.867042137511862 +-3.076280947255113e-05,4.933268684577936 +-3.074280947255113e-05,5.054684020865736 +-3.072280947255113e-05,4.867042137511862 +-3.070280947255113e-05,4.981098968570116 +-3.068280947255113e-05,5.010532989488354 +-3.066280947255113e-05,4.837608116593692 +-3.064280947255113e-05,5.028929252562263 +-3.062280947255114e-05,4.947985695037031 +-3.060280947255113e-05,4.900155411044899 +-3.058280947255113e-05,5.047325515636109 +-3.056280947255113e-05,4.911193168889245 +-3.054280947255113e-05,4.929589431963138 +-3.052280947255113e-05,5.0620425260953 +-3.050280947255113e-05,4.859683632282299 +-3.048280947255113e-05,4.995815979029227 +-3.046280947255113e-05,5.017891494717918 +-3.044280947255113e-05,4.885438400585771 +-3.042280947255113e-05,5.028929252562263 +-3.040280947255113e-05,4.966381958110972 +-3.038280947255113e-05,4.929589431963153 +-3.036280947255113e-05,5.157703094079627 +-3.034280947255113e-05,4.88175914797099 +-3.032280947255113e-05,4.86336288489708 +-3.030280947255113e-05,5.076759536554427 +-3.028280947255113e-05,4.907513916274462 +-3.026280947255113e-05,4.944306442422281 +-3.024280947255113e-05,5.0620425260953 +-3.022280947255113e-05,4.870721390126644 +-3.020280947255113e-05,4.988457473799663 +-3.018280947255113e-05,5.010532989488354 +-3.016280947255113e-05,4.889117653200554 +-3.014280947255113e-05,5.010532989488354 +-3.012280947255113e-05,4.929589431963153 +-3.010280947255113e-05,4.874400642741426 +-3.008280947255113e-05,5.054684020865736 +-3.006280947255113e-05,4.900155411044899 +-3.004280947255113e-05,4.947985695037063 +-3.002280947255113e-05,5.065721778710081 +-3.000280947255113e-05,4.86336288489708 +-2.998280947255113e-05,5.025249999947482 +-2.996280947255113e-05,5.032608505177045 +-2.994280947255113e-05,4.867042137511862 +-2.992280947255113e-05,5.017891494717918 +-2.990280947255113e-05,4.984778221184881 +-2.988280947255113e-05,4.889117653200554 +-2.986280947255113e-05,5.128269073161373 +-2.984280947255113e-05,4.889117653200554 +-2.982280947255113e-05,4.892796905815335 +-2.980280947255113e-05,5.058363273480518 +-2.978280947255113e-05,4.889117653200554 +-2.976280947255113e-05,4.955344200266627 +-2.974280947255113e-05,5.0620425260953 +-2.972280947255113e-05,4.874400642741426 +-2.970280947255113e-05,4.999495231644008 +-2.968280947255113e-05,4.992136726414445 +-2.966280947255113e-05,4.867042137511862 +-2.964280947255113e-05,5.021570747332699 +-2.962280947255113e-05,4.918551674118808 +-2.960280947255113e-05,4.885438400585771 +-2.958280947255113e-05,5.0620425260953 +-2.956280947255113e-05,4.900155411044899 +-2.954280947255113e-05,4.955344200266627 +-2.952280947255113e-05,5.084118041783991 +-2.950280947255113e-05,4.86336288489708 +-2.948280947255113e-05,4.988457473799663 +-2.946280947255113e-05,5.04364626302139 +-2.944280947255113e-05,4.900155411044899 +-2.942280947255113e-05,5.080438789169209 +-2.940280947255113e-05,4.984778221184881 +-2.938280947255113e-05,4.92223092673359 +-2.936280947255113e-05,5.051004768250954 +-2.934280947255113e-05,4.944306442422281 +-2.932280947255113e-05,4.918551674118808 +-2.930280947255113e-05,5.069401031324864 +-2.928280947255113e-05,4.896476158430117 +-2.926280947255113e-05,4.955344200266627 +-2.924280947255113e-05,5.032608505177045 +-2.922280947255113e-05,4.88175914797099 +-2.920280947255113e-05,4.992136726414445 +-2.918280947255113e-05,5.025249999947482 +-2.916280947255113e-05,4.900155411044899 +-2.914280947255113e-05,5.032608505177045 +-2.912280947255113e-05,4.959023452881408 +-2.910280947255113e-05,4.911193168889245 +-2.908280947255113e-05,5.036287757791827 +-2.906280947255113e-05,4.940627189807499 +-2.904280947255113e-05,4.940627189807499 +-2.902280947255113e-05,5.039967010406609 +-2.900280947255113e-05,4.907513916274462 +-2.898280947255113e-05,4.977419715955318 +-2.896280947255113e-05,5.017891494717918 +-2.894280947255113e-05,4.911193168889245 +-2.892280947255113e-05,5.021570747332699 +-2.890280947255113e-05,4.981098968570099 +-2.888280947255113e-05,4.903834663659681 +-2.886280947255113e-05,5.028929252562263 +-2.884280947255113e-05,4.951664947651844 +-2.882280947255113e-05,4.918551674118808 +-2.880280947255113e-05,5.065721778710081 +-2.878280947255113e-05,4.889117653200554 +-2.876280947255113e-05,4.973740463340535 +-2.874280947255113e-05,5.010532989488354 +-2.872280947255113e-05,4.859683632282299 +-2.870280947255113e-05,4.992136726414445 +-2.868280947255113e-05,5.025249999947482 +-2.866280947255113e-05,4.918551674118808 +-2.864280947255113e-05,5.003174484258791 +-2.862280947255113e-05,4.973740463340535 +-2.860280947255113e-05,4.914872421504026 +-2.858280947255113e-05,5.036287757791827 +-2.856280947255113e-05,4.907513916274462 +-2.854280947255113e-05,4.955344200266627 +-2.852280947255113e-05,5.028929252562263 +-2.850280947255113e-05,4.844966621823171 +-2.848280947255113e-05,4.992136726414445 +-2.846280947255113e-05,5.028929252562263 +-2.844280947255113e-05,4.86336288489708 +-2.842280947255113e-05,5.006853736873572 +-2.840280947255113e-05,4.999495231644008 +-2.838280947255113e-05,4.878079895356208 +-2.836280947255113e-05,5.047325515636173 +-2.834280947255113e-05,4.933268684577936 +-2.832280947255113e-05,4.907513916274462 +-2.830280947255113e-05,5.065721778710081 +-2.828280947255113e-05,4.892796905815335 +-2.826280947255113e-05,4.925910179348372 +-2.824280947255113e-05,5.028929252562263 +-2.822280947255113e-05,4.837608116593607 +-2.820280947255113e-05,4.970061210725754 +-2.818280947255113e-05,4.988457473799663 +-2.816280947255113e-05,4.867042137511862 +-2.814280947255113e-05,5.014212242103136 +-2.812280947255113e-05,4.745626801224062 +-2.810280947255113e-05,4.745626801224062 +-2.808280947255113e-05,4.995815979029227 +-2.806280947255113e-05,4.892796905815335 +-2.804280947255113e-05,4.92223092673359 +-2.802280947255113e-05,5.036287757791827 +-2.800280947255113e-05,4.856004379667517 +-2.798280947255113e-05,4.959023452881408 +-2.796280947255113e-05,4.995815979029227 +-2.794280947255113e-05,4.86336288489708 +-2.792280947255113e-05,5.058363273480518 +-2.790280947255113e-05,4.933268684577936 +-2.788280947255113e-05,4.856004379667517 +-2.786280947255113e-05,5.039967010406609 +-2.784280947255113e-05,4.907513916274462 +-2.782280947255113e-05,4.900155411044899 +-2.780280947255113e-05,5.216571135916137 +-2.778280947255113e-05,4.925910179348372 +-2.776280947255113e-05,4.914872421504026 +-2.774280947255113e-05,5.010532989488354 +-2.772280947255113e-05,4.859683632282299 +-2.770280947255113e-05,4.955344200266627 +-2.768280947255113e-05,4.966381958110972 +-2.766280947255113e-05,4.833928863978826 +-2.764280947255113e-05,4.999495231644008 +-2.762280947255113e-05,4.929589431963153 +-2.760280947255113e-05,4.874400642741426 +-2.758280947255113e-05,5.010532989488354 +-2.756280947255113e-05,4.896476158430117 +-2.754280947255113e-05,4.907513916274462 +-2.752280947255113e-05,5.021570747332699 +-2.750280947255113e-05,4.86336288489708 +-2.748280947255113e-05,4.936947937192717 +-2.746280947255113e-05,5.006853736873572 +-2.744280947255113e-05,4.852325127052735 +-2.742280947255113e-05,5.010532989488354 +-2.740280947255113e-05,4.970061210725754 +-2.738280947255113e-05,4.859683632282299 +-2.736280947255113e-05,5.051004768250954 +-2.734280947255113e-05,4.907513916274462 +-2.732280947255113e-05,4.889117653200554 +-2.730280947255113e-05,5.073080283939645 +-2.728280947255113e-05,4.900155411044899 +-2.726280947255113e-05,4.925910179348372 +-2.724280947255113e-05,5.04364626302139 +-2.722280947255113e-05,4.852325127052735 +-2.720280947255113e-05,4.947985695037063 +-2.718280947255113e-05,4.988457473799663 +-2.716280947255113e-05,4.856004379667517 +-2.714280947255113e-05,4.995815979029227 +-2.712280947255113e-05,4.900155411044899 +-2.710280947255113e-05,4.852325127052735 +-2.708280947255113e-05,5.047325515636173 +-2.706280947255113e-05,4.907513916274462 +-2.704280947255113e-05,4.903834663659681 +-2.702280947255113e-05,5.025249999947482 +-2.700280947255113e-05,4.852325127052735 +-2.698280947255113e-05,4.92223092673359 +-2.696280947255113e-05,4.999495231644008 +-2.694280947255113e-05,4.84128736920839 +-2.692280947255113e-05,5.032608505177045 +-2.690280947255113e-05,4.944306442422281 +-2.688280947255113e-05,4.852325127052735 +-2.686280947255113e-05,5.065721778710081 +-2.684280947255113e-05,4.911193168889245 +-2.682280947255113e-05,4.885438400585771 +-2.680280947255113e-05,5.065721778710081 +-2.678280947255113e-05,4.856004379667517 +-2.676280947255113e-05,4.925910179348372 +-2.674280947255113e-05,5.039967010406609 +-2.672280947255113e-05,4.837608116593607 +-2.670280947255113e-05,4.951664947651844 +-2.668280947255113e-05,4.984778221184881 +-2.666280947255113e-05,4.859683632282299 +-2.664280947255113e-05,4.992136726414445 +-2.662280947255113e-05,4.933268684577936 +-2.660280947255113e-05,4.870721390126644 +-2.658280947255113e-05,5.098835052243118 +-2.656280947255113e-05,4.925910179348372 +-2.654280947255113e-05,4.900155411044899 +-2.652280947255113e-05,5.028929252562263 +-2.650280947255113e-05,4.856004379667517 +-2.648280947255113e-05,4.936947937192717 +-2.646280947255113e-05,4.999495231644008 +-2.644280947255113e-05,4.844966621823171 +-2.642280947255113e-05,5.017891494717918 +-2.640280947255113e-05,4.959023452881408 +-2.638280947255113e-05,4.859683632282299 +-2.636280947255113e-05,5.039967010406609 +-2.634280947255113e-05,4.896476158430117 +-2.632280947255113e-05,4.892796905815335 +-2.630280947255113e-05,5.04364626302139 +-2.628280947255113e-05,4.852325127052735 +-2.626280947255113e-05,4.929589431963153 +-2.624280947255113e-05,5.054684020865736 +-2.622280947255113e-05,4.844966621823171 +-2.620280947255113e-05,4.951664947651844 +-2.618280947255113e-05,5.003174484258791 +-2.616280947255113e-05,4.870721390126644 +-2.614280947255113e-05,4.999495231644008 +-2.612280947255113e-05,4.951664947651844 +-2.610280947255113e-05,4.88175914797099 +-2.608280947255113e-05,5.017891494717918 +-2.606280947255113e-05,4.859683632282299 +-2.604280947255113e-05,4.896476158430117 +-2.602280947255113e-05,5.047325515636173 +-2.600280947255113e-05,4.86336288489708 +-2.598280947255113e-05,4.944306442422281 +-2.596280947255113e-05,5.021570747332699 +-2.594280947255113e-05,4.844966621823171 +-2.592280947255113e-05,5.054684020865736 +-2.590280947255113e-05,4.944306442422281 +-2.588280947255113e-05,4.856004379667517 +-2.586280947255113e-05,5.032608505177045 +-2.584280947255113e-05,4.911193168889245 +-2.582280947255113e-05,4.900155411044899 +-2.580280947255113e-05,5.087797294398772 +-2.578280947255113e-05,4.833928863978826 +-2.576280947255113e-05,4.911193168889245 +-2.574280947255113e-05,5.021570747332699 +-2.572280947255113e-05,4.885438400585771 +-2.570280947255113e-05,4.940627189807499 +-2.568280947255113e-05,4.988457473799663 +-2.566280947255113e-05,4.852325127052735 +-2.564280947255113e-05,5.014212242103136 +-2.562280947255113e-05,4.947985695037063 +-2.560280947255113e-05,4.870721390126644 +-2.558280947255113e-05,5.017891494717918 +-2.556280947255113e-05,4.84128736920839 +-2.554280947255113e-05,4.900155411044899 +-2.552280947255113e-05,5.058363273480518 +-2.550280947255113e-05,4.885438400585771 +-2.548280947255113e-05,5.014212242103136 +-2.546280947255113e-05,5.025249999947482 +-2.544280947255113e-05,4.833928863978826 +-2.542280947255113e-05,5.014212242103136 +-2.540280947255113e-05,4.944306442422281 +-2.538280947255113e-05,4.86336288489708 +-2.536280947255113e-05,4.944306442422281 +-2.534280947255113e-05,4.808174095675353 +-2.532280947255113e-05,4.892796905815335 +-2.530280947255113e-05,5.039967010406609 +-2.528280947255113e-05,4.859683632282299 +-2.526280947255113e-05,4.933268684577936 +-2.524280947255113e-05,5.047325515636173 +-2.522280947255113e-05,4.859683632282299 +-2.520280947255113e-05,4.96270270549619 +-2.518280947255113e-05,4.984778221184881 +-2.516280947255113e-05,4.903834663659681 +-2.514280947255113e-05,4.992136726414445 +-2.512280947255113e-05,4.925910179348372 +-2.510280947255113e-05,4.856004379667517 +-2.508280947255113e-05,5.014212242103136 +-2.506280947255113e-05,4.874400642741426 +-2.504280947255113e-05,4.914872421504026 +-2.502280947255113e-05,5.014212242103136 +-2.500280947255113e-05,4.870721390126644 +-2.498280947255113e-05,4.914872421504026 +-2.496280947255113e-05,4.955344200266627 +-2.494280947255113e-05,4.786098579986662 +-2.492280947255113e-05,4.96270270549619 +-2.490280947255113e-05,4.981098968570099 +-2.488280947255113e-05,4.878079895356208 +-2.486280947255113e-05,5.028929252562263 +-2.484280947255113e-05,4.914872421504026 +-2.482280947255113e-05,4.907513916274462 +-2.480280947255113e-05,5.028929252562263 +-2.478280947255113e-05,4.900155411044899 +-2.476280947255113e-05,4.918551674118808 +-2.474280947255113e-05,5.014212242103136 +-2.472280947255113e-05,4.86336288489708 +-2.470280947255113e-05,4.959023452881408 +-2.468280947255113e-05,4.999495231644008 +-2.466280947255113e-05,4.867042137511862 +-2.464280947255113e-05,4.995815979029227 +-2.462280947255113e-05,4.973740463340535 +-2.460280947255113e-05,4.903834663659681 +-2.458280947255113e-05,5.017891494717918 +-2.456280947255113e-05,4.903834663659681 +-2.454280947255113e-05,4.933268684577936 +-2.452280947255113e-05,5.036287757791827 +-2.450280947255113e-05,4.874400642741426 +-2.448280947255113e-05,4.973740463340535 +-2.446280947255113e-05,5.039967010406609 +-2.444280947255113e-05,4.874400642741426 +-2.442280947255113e-05,5.014212242103136 +-2.440280947255113e-05,4.999495231644008 +-2.438280947255113e-05,4.892796905815335 +-2.436280947255113e-05,5.047325515636173 +-2.434280947255113e-05,4.940627189807499 +-2.432280947255113e-05,4.918551674118808 +-2.430280947255113e-05,5.0620425260953 +-2.428280947255113e-05,4.889117653200554 +-2.426280947255113e-05,4.940627189807499 +-2.424280947255113e-05,5.073080283939645 +-2.422280947255113e-05,4.88175914797099 +-2.420280947255113e-05,4.984778221184881 +-2.418280947255113e-05,5.010532989488354 +-2.416280947255113e-05,4.896476158430117 +-2.414280947255113e-05,5.032608505177045 +-2.412280947255113e-05,4.977419715955318 +-2.410280947255113e-05,4.918551674118808 +-2.408280947255113e-05,5.051004768250954 +-2.406280947255113e-05,4.730909790764934 +-2.404280947255113e-05,4.844966621823171 +-2.402280947255113e-05,5.036287757791827 +-2.400280947255113e-05,4.900155411044899 +-2.398280947255113e-05,4.981098968570099 +-2.396280947255113e-05,5.04364626302139 +-2.394280947255113e-05,4.878079895356208 +-2.392280947255113e-05,5.047325515636173 +-2.390280947255113e-05,4.992136726414445 +-2.388280947255113e-05,4.889117653200554 +-2.386280947255113e-05,5.014212242103136 +-2.384280947255113e-05,4.874400642741426 +-2.382280947255113e-05,4.896476158430117 +-2.380280947255113e-05,5.087797294398772 +-2.378280947255113e-05,4.878079895356208 +-2.376280947255113e-05,4.933268684577936 +-2.374280947255113e-05,5.117231315317028 +-2.372280947255113e-05,4.84128736920839 +-2.370280947255113e-05,4.96270270549619 +-2.368280947255113e-05,5.014212242103136 +-2.366280947255113e-05,4.874400642741426 +-2.364280947255113e-05,5.039967010406609 +-2.362280947255113e-05,4.959023452881408 +-2.360280947255113e-05,4.88175914797099 +-2.358280947255113e-05,5.073080283939645 +-2.356280947255113e-05,4.911193168889245 +-2.354280947255113e-05,4.92223092673359 +-2.352280947255113e-05,5.04364626302139 +-2.350280947255113e-05,4.907513916274462 +-2.348280947255113e-05,4.955344200266627 +-2.346280947255113e-05,5.04364626302139 +-2.344280947255113e-05,4.900155411044899 +-2.342280947255113e-05,5.028929252562263 +-2.340280947255113e-05,5.014212242103136 +-2.338280947255113e-05,4.896476158430117 +-2.336280947255113e-05,5.065721778710081 +-2.334280947255113e-05,4.936947937192717 +-2.332280947255113e-05,4.918551674118808 +-2.330280947255113e-05,5.065721778710081 +-2.328280947255113e-05,4.914872421504026 +-2.326280947255113e-05,4.936947937192717 +-2.324280947255113e-05,5.069401031324864 +-2.322280947255113e-05,4.848645874437953 +-2.320280947255113e-05,4.981098968570099 +-2.318280947255113e-05,5.010532989488354 +-2.316280947255113e-05,4.878079895356208 +-2.314280947255113e-05,5.032608505177045 +-2.312280947255113e-05,4.973740463340535 +-2.310280947255113e-05,4.889117653200554 +-2.308280947255113e-05,5.076759536554427 +-2.306280947255113e-05,4.892796905815335 +-2.304280947255113e-05,4.933268684577936 +-2.302280947255113e-05,5.069401031324864 +-2.300280947255113e-05,4.896476158430117 +-2.298280947255113e-05,4.973740463340535 +-2.296280947255113e-05,5.058363273480518 +-2.294280947255113e-05,4.889117653200554 +-2.292280947255113e-05,5.014212242103136 +-2.290280947255113e-05,5.006853736873572 +-2.288280947255113e-05,4.900155411044899 +-2.286280947255113e-05,5.091476547013555 +-2.284280947255113e-05,4.944306442422281 +-2.282280947255113e-05,4.903834663659681 +-2.280280947255113e-05,5.106193557472682 +-2.278280947255113e-05,4.88175914797099 +-2.276280947255113e-05,4.959023452881408 +-2.274280947255113e-05,5.065721778710081 +-2.272280947255113e-05,4.870721390126644 +-2.270280947255113e-05,4.992136726414445 +-2.268280947255113e-05,5.028929252562263 +-2.266280947255113e-05,4.86336288489708 +-2.264280947255113e-05,5.036287757791827 +-2.262280947255113e-05,4.981098968570099 +-2.260280947255113e-05,4.911193168889245 +-2.258280947255113e-05,5.032608505177045 +-2.256280947255113e-05,4.874400642741426 +-2.254280947255113e-05,5.003174484258791 +-2.252280947255113e-05,5.065721778710081 +-2.250280947255113e-05,4.859683632282299 +-2.248280947255113e-05,4.988457473799663 +-2.246280947255113e-05,5.04364626302139 +-2.244280947255113e-05,4.848645874437953 +-2.242280947255113e-05,5.091476547013555 +-2.240280947255113e-05,4.995815979029227 +-2.238280947255113e-05,4.889117653200554 +-2.236280947255113e-05,5.028929252562263 +-2.234280947255113e-05,4.940627189807499 +-2.232280947255113e-05,4.925910179348372 +-2.230280947255113e-05,5.087797294398772 +-2.228280947255113e-05,4.889117653200554 +-2.226280947255113e-05,4.925910179348372 +-2.224280947255113e-05,5.069401031324864 +-2.222280947255113e-05,4.889117653200554 +-2.220280947255113e-05,4.973740463340535 +-2.218280947255113e-05,5.017891494717918 +-2.216280947255113e-05,4.896476158430117 +-2.214280947255113e-05,5.017891494717918 +-2.212280947255113e-05,4.984778221184881 +-2.210280947255113e-05,4.907513916274462 +-2.208280947255113e-05,5.047325515636173 +-2.206280947255113e-05,4.896476158430117 +-2.204280947255113e-05,4.933268684577936 +-2.202280947255113e-05,5.069401031324864 +-2.200280947255113e-05,4.885438400585771 +-2.198280947255113e-05,4.992136726414445 +-2.196280947255113e-05,5.021570747332699 +-2.194280947255113e-05,4.878079895356208 +-2.192280947255113e-05,4.992136726414445 +-2.190280947255113e-05,4.981098968570099 +-2.188280947255113e-05,4.874400642741426 +-2.186280947255113e-05,5.073080283939645 +-2.184280947255113e-05,4.940627189807499 +-2.182280947255113e-05,4.925910179348372 +-2.180280947255113e-05,5.091476547013555 +-2.178280947255113e-05,4.911193168889245 +-2.176280947255113e-05,4.940627189807499 +-2.174280947255113e-05,5.069401031324864 +-2.172280947255113e-05,4.867042137511862 +-2.170280947255113e-05,5.003174484258791 +-2.168280947255113e-05,5.0620425260953 +-2.166280947255113e-05,4.878079895356208 +-2.164280947255113e-05,5.021570747332699 +-2.162280947255113e-05,4.970061210725754 +-2.160280947255113e-05,4.885438400585771 +-2.158280947255113e-05,5.080438789169209 +-2.156280947255113e-05,4.929589431963153 +-2.154280947255113e-05,4.918551674118808 +-2.152280947255113e-05,5.069401031324864 +-2.150280947255113e-05,4.903834663659681 +-2.148280947255113e-05,4.944306442422281 +-2.146280947255113e-05,5.047325515636173 +-2.144280947255113e-05,4.878079895356208 +-2.142280947255113e-05,5.076759536554427 +-2.140280947255113e-05,4.999495231644008 +-2.138280947255113e-05,4.896476158430117 +-2.136280947255113e-05,5.087797294398772 +-2.134280947255113e-05,4.955344200266627 +-2.132280947255113e-05,4.914872421504026 +-2.130280947255113e-05,5.095155799628337 +-2.128280947255113e-05,4.889117653200554 +-2.126280947255113e-05,4.947985695037063 +-2.124280947255113e-05,5.054684020865736 +-2.122280947255113e-05,4.885438400585771 +-2.120280947255113e-05,4.977419715955318 +-2.118280947255113e-05,5.025249999947482 +-2.116280947255113e-05,4.892796905815335 +-2.114280947255113e-05,5.025249999947482 +-2.112280947255113e-05,4.966381958110972 +-2.110280947255113e-05,4.878079895356208 +-2.108280947255113e-05,5.058363273480518 +-2.106280947255113e-05,4.933268684577936 +-2.104280947255113e-05,4.918551674118808 +-2.102280947255113e-05,5.069401031324864 +-2.100280947255113e-05,4.889117653200554 +-2.098280947255113e-05,4.966381958110972 +-2.096280947255113e-05,5.04364626302139 +-2.094280947255113e-05,4.867042137511862 +-2.092280947255113e-05,5.039967010406609 +-2.090280947255113e-05,4.988457473799663 +-2.088280947255113e-05,4.878079895356208 +-2.086280947255113e-05,5.076759536554427 +-2.084280947255113e-05,4.936947937192717 +-2.082280947255113e-05,4.911193168889245 +-2.080280947255113e-05,5.087797294398772 +-2.078280947255113e-05,4.859683632282299 +-2.076280947255113e-05,4.903834663659681 +-2.074280947255113e-05,5.0620425260953 +-2.072280947255113e-05,4.878079895356208 +-2.070280947255113e-05,4.992136726414445 +-2.068280947255113e-05,5.036287757791827 +-2.066280947255113e-05,4.900155411044899 +-2.064280947255113e-05,5.006853736873572 +-2.062280947255113e-05,5.003174484258791 +-2.060280947255113e-05,4.907513916274462 +-2.058280947255113e-05,5.039967010406609 +-2.056280947255113e-05,4.914872421504026 +-2.054280947255113e-05,4.896476158430117 +-2.052280947255113e-05,5.069401031324864 +-2.050280947255113e-05,4.885438400585771 +-2.048280947255113e-05,4.959023452881408 +-2.046280947255113e-05,5.054684020865736 +-2.044280947255113e-05,4.870721390126644 +-2.042280947255113e-05,5.065721778710081 +-2.040280947255113e-05,4.995815979029227 +-2.038280947255113e-05,4.889117653200554 +-2.036280947255113e-05,5.036287757791827 +-2.034280947255113e-05,4.96270270549619 +-2.032280947255113e-05,4.896476158430117 +-2.030280947255113e-05,5.117231315317028 +-2.028280947255113e-05,4.856004379667517 +-2.026280947255113e-05,4.918551674118808 +-2.024280947255113e-05,5.0620425260953 +-2.022280947255113e-05,4.88175914797099 +-2.020280947255113e-05,4.959023452881408 +-2.018280947255113e-05,5.010532989488354 +-2.016280947255113e-05,4.848645874437953 +-2.014280947255113e-05,5.010532989488354 +-2.012280947255113e-05,4.944306442422281 +-2.010280947255113e-05,4.896476158430117 +-2.008280947255113e-05,4.999495231644008 +-2.006280947255113e-05,4.815532600904916 +-2.004280947255113e-05,4.903834663659681 +-2.002280947255113e-05,5.069401031324864 +-2.000280947255113e-05,4.870721390126644 +-1.998280947255113e-05,4.992136726414445 +-1.996280947255113e-05,5.04364626302139 +-1.994280947255113e-05,4.867042137511862 +-1.992280947255113e-05,5.036287757791827 +-1.990280947255113e-05,4.995815979029227 +-1.988280947255113e-05,4.859683632282299 +-1.986280947255113e-05,4.988457473799663 +-1.984280947255113e-05,4.88175914797099 +-1.982280947255113e-05,4.925910179348372 +-1.980280947255113e-05,5.04364626302139 +-1.978280947255113e-05,4.914872421504026 +-1.976280947255113e-05,4.951664947651844 +-1.974280947255113e-05,5.051004768250954 +-1.972280947255113e-05,4.892796905815335 +-1.970280947255113e-05,4.96270270549619 +-1.968280947255113e-05,5.014212242103136 +-1.966280947255113e-05,4.900155411044899 +-1.964280947255113e-05,4.995815979029227 +-1.962280947255113e-05,4.966381958110972 +-1.960280947255113e-05,4.892796905815335 +-1.958280947255113e-05,5.032608505177045 +-1.956280947255113e-05,4.907513916274462 +-1.954280947255113e-05,4.936947937192717 +-1.952280947255113e-05,5.051004768250954 +-1.950280947255113e-05,4.911193168889245 +-1.948280947255113e-05,4.947985695037063 +-1.946280947255113e-05,5.047325515636173 +-1.944280947255113e-05,4.867042137511862 +-1.942280947255113e-05,4.992136726414445 +-1.940280947255113e-05,5.010532989488354 +-1.938280947255113e-05,4.892796905815335 +-1.936280947255113e-05,5.028929252562263 +-1.934280947255113e-05,4.936947937192717 +-1.932280947255113e-05,4.903834663659681 +-1.930280947255113e-05,5.04364626302139 +-1.928280947255113e-05,4.92223092673359 +-1.926280947255113e-05,4.944306442422281 +-1.924280947255113e-05,5.076759536554427 +-1.922280947255113e-05,4.878079895356208 +-1.920280947255113e-05,4.947985695037063 +-1.918280947255113e-05,5.021570747332699 +-1.916280947255113e-05,4.889117653200554 +-1.914280947255113e-05,5.003174484258791 +-1.912280947255113e-05,4.999495231644008 +-1.910280947255113e-05,4.914872421504026 +-1.908280947255113e-05,5.036287757791827 +-1.906280947255113e-05,4.918551674118808 +-1.904280947255113e-05,4.929589431963153 +-1.902280947255113e-05,5.039967010406609 +-1.900280947255113e-05,4.889117653200554 +-1.898280947255113e-05,4.918551674118808 +-1.896280947255113e-05,5.021570747332699 +-1.894280947255113e-05,4.867042137511862 +-1.892280947255113e-05,4.995815979029227 +-1.890280947255113e-05,5.010532989488354 +-1.888280947255113e-05,4.900155411044899 +-1.886280947255113e-05,5.04364626302139 +-1.884280947255113e-05,4.951664947651844 +-1.882280947255113e-05,4.907513916274462 +-1.880280947255113e-05,5.051004768250954 +-1.878280947255113e-05,4.900155411044899 +-1.876280947255113e-05,4.947985695037063 +-1.874280947255113e-05,5.073080283939645 +-1.872280947255113e-05,4.885438400585771 +-1.870280947255113e-05,4.966381958110972 +-1.868280947255113e-05,5.003174484258791 +-1.866280947255113e-05,4.892796905815335 +-1.864280947255113e-05,5.010532989488354 +-1.862280947255113e-05,4.973740463340535 +-1.860280947255113e-05,4.907513916274462 +-1.858280947255113e-05,5.051004768250954 +-1.856280947255113e-05,4.730909790764934 +-1.854280947255113e-05,4.786098579986662 +-1.852280947255113e-05,5.028929252562263 +-1.850280947255113e-05,4.903834663659681 +-1.848280947255113e-05,4.966381958110972 +-1.846280947255113e-05,5.028929252562263 +-1.844280947255113e-05,4.944306442422281 +-1.842280947255113e-05,5.025249999947482 +-1.840280947255113e-05,4.992136726414445 +-1.838280947255113e-05,4.867042137511862 +-1.836280947255113e-05,5.080438789169209 +-1.834280947255113e-05,4.903834663659681 +-1.832280947255113e-05,4.896476158430117 +-1.830280947255113e-05,5.073080283939645 +-1.828280947255113e-05,4.88175914797099 +-1.826280947255113e-05,4.929589431963153 +-1.824280947255113e-05,5.131948325776155 +-1.822280947255113e-05,4.852325127052735 +-1.820280947255113e-05,4.951664947651844 +-1.818280947255113e-05,5.028929252562263 +-1.816280947255113e-05,4.86336288489708 +-1.814280947255113e-05,5.010532989488354 +-1.812280947255113e-05,4.96270270549619 +-1.810280947255113e-05,4.878079895356208 +-1.808280947255113e-05,5.054684020865736 +-1.806280947255113e-05,4.936947937192717 +-1.804280947255113e-05,4.903834663659681 +-1.802280947255113e-05,5.04364626302139 +-1.800280947255113e-05,4.889117653200554 +-1.798280947255113e-05,4.944306442422281 +-1.796280947255113e-05,5.017891494717918 +-1.794280947255113e-05,4.900155411044899 +-1.792280947255113e-05,4.999495231644008 +-1.790280947255113e-05,4.999495231644008 +-1.788280947255113e-05,4.878079895356208 +-1.786280947255113e-05,5.054684020865736 +-1.784280947255113e-05,4.940627189807499 +-1.782280947255113e-05,4.911193168889245 +-1.780280947255113e-05,5.076759536554427 +-1.778280947255113e-05,4.911193168889245 +-1.776280947255113e-05,4.925910179348372 +-1.774280947255113e-05,5.084118041783991 +-1.772280947255113e-05,4.874400642741426 +-1.770280947255113e-05,4.96270270549619 +-1.768280947255113e-05,5.021570747332699 +-1.766280947255113e-05,4.867042137511862 +-1.764280947255113e-05,5.006853736873572 +-1.762280947255113e-05,4.981098968570099 +-1.760280947255113e-05,4.911193168889245 +-1.758280947255113e-05,5.036287757791827 +-1.756280947255113e-05,4.907513916274462 +-1.754280947255113e-05,4.911193168889245 +-1.752280947255113e-05,5.069401031324864 +-1.750280947255113e-05,4.889117653200554 +-1.748280947255113e-05,4.947985695037063 +-1.746280947255113e-05,5.054684020865736 +-1.744280947255113e-05,4.889117653200554 +-1.742280947255113e-05,4.988457473799663 +-1.740280947255113e-05,5.003174484258791 +-1.738280947255113e-05,4.870721390126644 +-1.736280947255113e-05,5.124589820546591 +-1.734280947255113e-05,4.973740463340535 +-1.732280947255113e-05,4.903834663659681 +-1.730280947255113e-05,5.084118041783991 +-1.728280947255113e-05,4.885438400585771 +-1.726280947255113e-05,4.92223092673359 +-1.724280947255113e-05,5.065721778710081 +-1.722280947255113e-05,4.852325127052735 +-1.720280947255113e-05,4.959023452881408 +-1.718280947255113e-05,5.021570747332699 +-1.716280947255113e-05,4.86336288489708 +-1.714280947255113e-05,5.003174484258791 +-1.712280947255113e-05,4.966381958110972 +-1.710280947255113e-05,4.885438400585771 +-1.708280947255113e-05,5.036287757791827 +-1.706280947255113e-05,4.911193168889245 +-1.704280947255113e-05,4.907513916274462 +-1.702280947255113e-05,5.073080283939645 +-1.700280947255113e-05,4.896476158430117 +-1.698280947255113e-05,4.940627189807499 +-1.696280947255113e-05,5.010532989488354 +-1.694280947255113e-05,4.874400642741426 +-1.692280947255113e-05,4.984778221184881 +-1.690280947255113e-05,4.999495231644008 +-1.688280947255113e-05,4.867042137511862 +-1.686280947255113e-05,5.080438789169209 +-1.684280947255113e-05,4.940627189807499 +-1.682280947255113e-05,4.885438400585771 +-1.680280947255113e-05,5.065721778710081 +-1.678280947255113e-05,4.896476158430117 +-1.676280947255113e-05,4.929589431963153 +-1.674280947255113e-05,5.054684020865736 +-1.672280947255113e-05,4.833928863978826 +-1.670280947255113e-05,4.973740463340535 +-1.668280947255113e-05,5.051004768250954 +-1.666280947255113e-05,4.870721390126644 +-1.664280947255113e-05,5.010532989488354 +-1.662280947255113e-05,4.970061210725754 +-1.660280947255113e-05,4.885438400585771 +-1.658280947255113e-05,5.036287757791827 +-1.656280947255113e-05,4.911193168889245 +-1.654280947255113e-05,4.911193168889245 +-1.652280947255113e-05,5.073080283939645 +-1.650280947255113e-05,4.874400642741426 +-1.648280947255113e-05,4.944306442422281 +-1.646280947255113e-05,5.028929252562263 +-1.644280947255113e-05,4.874400642741426 +-1.642280947255113e-05,4.999495231644008 +-1.640280947255113e-05,5.003174484258791 +-1.638280947255113e-05,4.896476158430117 +-1.636280947255113e-05,5.087797294398772 +-1.634280947255113e-05,4.940627189807499 +-1.632280947255113e-05,4.88175914797099 +-1.630280947255113e-05,5.051004768250954 +-1.628280947255113e-05,4.907513916274462 +-1.626280947255113e-05,4.918551674118808 +-1.624280947255113e-05,5.080438789169209 +-1.622280947255113e-05,4.837608116593607 +-1.620280947255113e-05,4.955344200266627 +-1.618280947255113e-05,5.032608505177045 +-1.616280947255113e-05,4.874400642741426 +-1.614280947255113e-05,4.995815979029227 +-1.612280947255113e-05,4.959023452881408 +-1.610280947255113e-05,4.859683632282299 +-1.608280947255113e-05,5.054684020865736 +-1.606280947255113e-05,4.907513916274462 +-1.604280947255113e-05,4.911193168889245 +-1.602280947255113e-05,5.054684020865736 +-1.600280947255113e-05,4.844966621823171 +-1.598280947255113e-05,4.970061210725754 +-1.596280947255113e-05,5.073080283939645 +-1.594280947255113e-05,4.84128736920839 +-1.592280947255113e-05,5.014212242103136 +-1.590280947255113e-05,4.995815979029227 +-1.588280947255113e-05,4.878079895356208 +-1.586280947255113e-05,5.0620425260953 +-1.584280947255113e-05,4.955344200266627 +-1.582280947255113e-05,4.885438400585771 +-1.580280947255113e-05,4.88175914797099 +-1.578280947255113e-05,4.760343811683189 +-1.576280947255113e-05,4.918551674118808 +-1.574280947255113e-05,5.073080283939645 +-1.572280947255113e-05,4.848645874437953 +-1.570280947255113e-05,4.959023452881408 +-1.568280947255113e-05,5.04364626302139 +-1.566280947255113e-05,4.896476158430117 +-1.564280947255113e-05,4.999495231644008 +-1.562280947255113e-05,4.992136726414445 +-1.560280947255113e-05,4.903834663659681 +-1.558280947255113e-05,4.999495231644008 +-1.556280947255113e-05,4.929589431963153 +-1.554280947255113e-05,4.929589431963153 +-1.552280947255113e-05,5.032608505177045 +-1.550280947255113e-05,4.878079895356208 +-1.548280947255113e-05,4.96270270549619 +-1.546280947255113e-05,5.028929252562263 +-1.544280947255113e-05,4.88175914797099 +-1.542280947255113e-05,4.981098968570099 +-1.540280947255113e-05,5.006853736873572 +-1.538280947255113e-05,4.896476158430117 +-1.536280947255113e-05,5.028929252562263 +-1.534280947255113e-05,4.977419715955318 +-1.532280947255113e-05,4.911193168889245 +-1.530280947255113e-05,5.069401031324864 +-1.528280947255113e-05,4.918551674118808 +-1.526280947255113e-05,4.936947937192717 +-1.524280947255113e-05,5.032608505177045 +-1.522280947255113e-05,4.907513916274462 +-1.520280947255113e-05,4.944306442422281 +-1.518280947255113e-05,5.010532989488354 +-1.516280947255113e-05,4.885438400585771 +-1.514280947255113e-05,4.984778221184881 +-1.512280947255113e-05,4.988457473799663 +-1.510280947255113e-05,4.911193168889245 +-1.508280947255113e-05,5.025249999947482 +-1.506280947255113e-05,4.955344200266627 +-1.504280947255113e-05,4.933268684577936 +-1.502280947255113e-05,5.039967010406609 +-1.500280947255113e-05,4.870721390126644 +-1.498280947255113e-05,4.966381958110972 +-1.496280947255113e-05,5.032608505177045 +-1.494280947255113e-05,4.870721390126644 +-1.492280947255113e-05,4.999495231644008 +-1.490280947255113e-05,5.006853736873572 +-1.488280947255113e-05,4.885438400585771 +-1.486280947255113e-05,5.021570747332699 +-1.484280947255113e-05,4.973740463340535 +-1.482280947255113e-05,4.911193168889245 +-1.480280947255113e-05,5.051004768250954 +-1.478280947255113e-05,4.918551674118808 +-1.476280947255113e-05,4.929589431963153 +-1.474280947255113e-05,5.039967010406609 +-1.472280947255113e-05,4.892796905815335 +-1.470280947255113e-05,4.973740463340535 +-1.468280947255113e-05,5.039967010406609 +-1.466280947255113e-05,4.88175914797099 +-1.464280947255113e-05,4.995815979029227 +-1.462280947255113e-05,4.955344200266627 +-1.460280947255113e-05,4.896476158430117 +-1.458280947255113e-05,5.028929252562263 +-1.456280947255113e-05,4.914872421504026 +-1.454280947255113e-05,4.925910179348372 +-1.452280947255113e-05,5.036287757791827 +-1.450280947255113e-05,4.741947548609279 +-1.448280947255113e-05,4.914872421504026 +-1.446280947255113e-05,5.025249999947482 +-1.444280947255113e-05,4.896476158430117 +-1.442280947255113e-05,5.010532989488354 +-1.440280947255113e-05,5.014212242103136 +-1.438280947255113e-05,4.892796905815335 +-1.436280947255113e-05,5.065721778710081 +-1.434280947255113e-05,4.959023452881408 +-1.432280947255113e-05,4.892796905815335 +-1.430280947255113e-05,5.073080283939645 +-1.428280947255113e-05,4.885438400585771 +-1.426280947255113e-05,4.944306442422281 +-1.424280947255113e-05,5.069401031324864 +-1.422280947255113e-05,4.867042137511862 +-1.420280947255113e-05,4.959023452881408 +-1.418280947255113e-05,4.995815979029227 +-1.416280947255113e-05,4.767702316912753 +-1.414280947255113e-05,4.966381958110972 +-1.412280947255113e-05,4.970061210725754 +-1.410280947255113e-05,4.874400642741426 +-1.408280947255113e-05,5.032608505177045 +-1.406280947255113e-05,4.914872421504026 +-1.404280947255113e-05,4.911193168889245 +-1.402280947255113e-05,5.047325515636173 +-1.400280947255113e-05,4.878079895356208 +-1.398280947255113e-05,4.933268684577936 +-1.396280947255113e-05,5.032608505177045 +-1.394280947255113e-05,4.867042137511862 +-1.392280947255113e-05,4.966381958110972 +-1.390280947255113e-05,4.988457473799663 +-1.388280947255113e-05,4.88175914797099 +-1.386280947255113e-05,5.028929252562263 +-1.384280947255113e-05,4.966381958110972 +-1.382280947255113e-05,4.88175914797099 +-1.380280947255113e-05,5.087797294398772 +-1.378280947255113e-05,4.903834663659681 +-1.376280947255113e-05,4.907513916274462 +-1.374280947255113e-05,5.065721778710081 +-1.372280947255113e-05,4.870721390126644 +-1.370280947255113e-05,4.947985695037063 +-1.368280947255113e-05,5.025249999947482 +-1.366280947255113e-05,4.84128736920839 +-1.364280947255113e-05,4.984778221184881 +-1.362280947255113e-05,4.959023452881408 +-1.360280947255113e-05,4.88175914797099 +-1.358280947255113e-05,5.04364626302139 +-1.356280947255113e-05,4.984778221184881 +-1.354280947255113e-05,4.925910179348372 +-1.352280947255113e-05,5.039967010406609 +-1.350280947255113e-05,4.848645874437953 +-1.348280947255113e-05,4.933268684577936 +-1.346280947255113e-05,5.036287757791827 +-1.344280947255113e-05,4.870721390126644 +-1.342280947255113e-05,4.984778221184881 +-1.340280947255113e-05,4.995815979029227 +-1.338280947255113e-05,4.852325127052735 +-1.336280947255113e-05,5.006853736873572 +-1.334280947255113e-05,4.933268684577936 +-1.332280947255113e-05,4.892796905815335 +-1.330280947255113e-05,5.058363273480518 +-1.328280947255113e-05,4.892796905815335 +-1.326280947255113e-05,4.896476158430117 +-1.324280947255113e-05,5.065721778710081 +-1.322280947255113e-05,4.859683632282299 +-1.320280947255113e-05,4.940627189807499 +-1.318280947255113e-05,4.992136726414445 +-1.316280947255113e-05,4.84128736920839 +-1.314280947255113e-05,4.995815979029227 +-1.312280947255113e-05,4.940627189807499 +-1.310280947255113e-05,4.859683632282299 +-1.308280947255113e-05,5.032608505177045 +-1.306280947255113e-05,4.900155411044899 +-1.304280947255113e-05,4.903834663659681 +-1.302280947255113e-05,5.04364626302139 +-1.300280947255113e-05,4.837608116593607 +-1.298280947255113e-05,5.006853736873572 +-1.296280947255113e-05,5.006853736873572 +-1.294280947255113e-05,4.837608116593607 +-1.292280947255113e-05,4.988457473799663 +-1.290280947255113e-05,4.973740463340535 +-1.288280947255113e-05,4.830249611364044 +-1.286280947255113e-05,5.080438789169209 +-1.284280947255113e-05,4.918551674118808 +-1.282280947255113e-05,4.889117653200554 +-1.280280947255113e-05,5.017891494717918 +-1.278280947255113e-05,4.889117653200554 +-1.276280947255113e-05,4.903834663659681 +-1.274280947255113e-05,5.04364626302139 +-1.272280947255113e-05,4.848645874437953 +-1.270280947255113e-05,4.959023452881408 +-1.268280947255113e-05,5.010532989488354 +-1.266280947255113e-05,4.837608116593607 +-1.264280947255113e-05,4.984778221184881 +-1.262280947255113e-05,4.973740463340535 +-1.260280947255113e-05,4.870721390126644 +-1.258280947255113e-05,4.995815979029227 +-1.256280947255113e-05,4.911193168889245 +-1.254280947255113e-05,4.907513916274462 +-1.252280947255113e-05,5.04364626302139 +-1.250280947255113e-05,4.837608116593607 +-1.248280947255113e-05,4.970061210725754 +-1.246280947255113e-05,5.080438789169209 +-1.244280947255113e-05,4.848645874437953 +-1.242280947255113e-05,4.973740463340535 +-1.240280947255113e-05,4.995815979029227 +-1.238280947255113e-05,4.892796905815335 +-1.236280947255113e-05,5.006853736873572 +-1.234280947255113e-05,4.929589431963153 +-1.232280947255113e-05,4.885438400585771 +-1.230280947255113e-05,5.065721778710081 +-1.228280947255113e-05,4.878079895356208 +-1.226280947255113e-05,4.885438400585771 +-1.224280947255113e-05,5.073080283939645 +-1.222280947255113e-05,4.867042137511862 +-1.220280947255113e-05,4.936947937192717 +-1.218280947255113e-05,5.017891494717918 +-1.216280947255113e-05,4.852325127052735 +-1.214280947255113e-05,4.992136726414445 +-1.212280947255113e-05,4.951664947651844 +-1.210280947255113e-05,4.844966621823171 +-1.208280947255113e-05,5.036287757791827 +-1.206280947255113e-05,4.892796905815335 +-1.204280947255113e-05,4.878079895356208 +-1.202280947255113e-05,5.0620425260953 +-1.200280947255113e-05,4.878079895356208 +-1.198280947255113e-05,4.918551674118808 +-1.196280947255113e-05,5.021570747332699 +-1.194280947255113e-05,4.808174095675353 +-1.192280947255113e-05,4.896476158430117 +-1.190280947255113e-05,4.970061210725754 +-1.188280947255113e-05,4.852325127052735 +-1.186280947255113e-05,5.058363273480518 +-1.184280947255113e-05,4.907513916274462 +-1.182280947255113e-05,4.852325127052735 +-1.180280947255113e-05,5.051004768250954 +-1.178280947255113e-05,4.870721390126644 +-1.176280947255113e-05,4.896476158430117 +-1.174280947255113e-05,5.051004768250954 +-1.172280947255113e-05,4.852325127052735 +-1.170280947255113e-05,4.933268684577936 +-1.168280947255113e-05,5.003174484258791 +-1.166280947255113e-05,4.833928863978826 +-1.164280947255113e-05,4.984778221184881 +-1.162280947255113e-05,4.951664947651844 +-1.160280947255113e-05,4.867042137511862 +-1.158280947255113e-05,5.014212242103136 +-1.156280947255113e-05,4.889117653200554 +-1.154280947255113e-05,4.859683632282299 +-1.152280947255113e-05,5.032608505177045 +-1.150280947255113e-05,4.878079895356208 +-1.148280947255113e-05,4.918551674118808 +-1.146280947255113e-05,5.021570747332699 +-1.144280947255113e-05,4.867042137511862 +-1.142280947255113e-05,4.940627189807499 +-1.140280947255113e-05,4.988457473799663 +-1.138280947255113e-05,4.844966621823171 +-1.136280947255113e-05,5.058363273480518 +-1.134280947255113e-05,4.940627189807499 +-1.132280947255113e-05,4.856004379667517 +-1.130280947255113e-05,5.051004768250954 +-1.128280947255113e-05,4.878079895356208 +-1.126280947255113e-05,4.911193168889245 +-1.124280947255113e-05,5.04364626302139 +-1.122280947255113e-05,4.826570358749262 +-1.120280947255113e-05,4.936947937192717 +-1.118280947255113e-05,5.021570747332699 +-1.116280947255113e-05,4.848645874437953 +-1.114280947255113e-05,4.988457473799663 +-1.112280947255113e-05,5.010532989488354 +-1.110280947255113e-05,4.867042137511862 +-1.108280947255113e-05,5.010532989488354 +-1.106280947255113e-05,4.907513916274462 +-1.104280947255113e-05,4.878079895356208 +-1.102280947255113e-05,5.028929252562263 +-1.100280947255113e-05,4.848645874437953 +-1.098280947255113e-05,4.925910179348372 +-1.096280947255113e-05,5.054684020865736 +-1.094280947255113e-05,4.844966621823171 +-1.092280947255113e-05,4.992136726414445 +-1.090280947255113e-05,5.003174484258791 +-1.088280947255113e-05,4.848645874437953 +-1.086280947255113e-05,5.069401031324864 +-1.084280947255113e-05,4.867042137511862 +-1.082280947255113e-05,4.848645874437953 +-1.080280947255113e-05,5.017891494717918 +-1.078280947255113e-05,4.896476158430117 +-1.076280947255113e-05,4.900155411044899 +-1.074280947255113e-05,5.069401031324864 +-1.072280947255113e-05,4.811853348290135 +-1.070280947255113e-05,4.936947937192717 +-1.068280947255113e-05,5.025249999947482 +-1.066280947255113e-05,4.86336288489708 +-1.064280947255113e-05,4.970061210725754 +-1.062280947255113e-05,4.959023452881408 +-1.060280947255113e-05,4.86336288489708 +-1.058280947255113e-05,4.999495231644008 +-1.056280947255113e-05,4.896476158430117 +-1.054280947255113e-05,4.892796905815335 +-1.052280947255113e-05,5.032608505177045 +-1.050280947255113e-05,4.844966621823171 +-1.048280947255113e-05,4.936947937192717 +-1.046280947255113e-05,5.036287757791827 +-1.044280947255113e-05,4.837608116593607 +-1.042280947255113e-05,4.995815979029227 +-1.040280947255113e-05,4.995815979029227 +-1.038280947255113e-05,4.867042137511862 +-1.036280947255113e-05,5.028929252562263 +-1.034280947255113e-05,4.940627189807499 +-1.032280947255113e-05,4.84128736920839 +-1.030280947255113e-05,4.837608116593607 +-1.028280947255113e-05,4.738268295994498 +-1.026280947255113e-05,4.900155411044899 +-1.024280947255113e-05,5.028929252562263 +-1.022280947255113e-05,4.852325127052735 +-1.020280947255113e-05,4.914872421504026 +-1.018280947255113e-05,5.010532989488354 +-1.016280947255113e-05,4.837608116593607 +-1.014280947255113e-05,4.944306442422281 +-1.012280947255113e-05,4.944306442422281 +-1.010280947255113e-05,4.86336288489708 +-1.008280947255113e-05,4.977419715955318 +-1.006280947255113e-05,4.903834663659681 +-1.004280947255113e-05,4.900155411044899 +-1.002280947255113e-05,5.021570747332699 +-1.000280947255113e-05,4.833928863978826 +-9.98280947255113e-06,4.925910179348372 +-9.96280947255113e-06,5.017891494717918 +-9.94280947255113e-06,4.86336288489708 +-9.92280947255113e-06,4.944306442422281 +-9.90280947255113e-06,4.981098968570099 +-9.882809472551131e-06,4.859683632282299 +-9.862809472551131e-06,5.006853736873572 +-9.842809472551131e-06,4.951664947651844 +-9.822809472551131e-06,4.870721390126644 +-9.80280947255113e-06,5.051004768250954 +-9.78280947255113e-06,4.896476158430117 +-9.76280947255113e-06,4.907513916274462 +-9.74280947255113e-06,5.028929252562263 +-9.72280947255113e-06,4.889117653200554 +-9.702809472551131e-06,4.944306442422281 +-9.682809472551131e-06,5.04364626302139 +-9.662809472551131e-06,4.874400642741426 +-9.642809472551131e-06,4.992136726414445 +-9.62280947255113e-06,4.988457473799663 +-9.60280947255113e-06,4.885438400585771 +-9.58280947255113e-06,5.014212242103136 +-9.56280947255113e-06,4.966381958110972 +-9.54280947255113e-06,4.918551674118808 +-9.522809472551131e-06,5.017891494717918 +-9.502809472551131e-06,4.918551674118808 +-9.482809472551131e-06,4.947985695037063 +-9.462809472551131e-06,5.032608505177045 +-9.44280947255113e-06,4.878079895356208 +-9.42280947255113e-06,4.988457473799663 +-9.40280947255113e-06,5.021570747332699 +-9.38280947255113e-06,4.892796905815335 +-9.36280947255113e-06,5.028929252562263 +-9.342809472551131e-06,4.981098968570099 +-9.322809472551131e-06,4.900155411044899 +-9.302809472551131e-06,5.039967010406609 +-9.282809472551131e-06,4.936947937192717 +-9.26280947255113e-06,4.933268684577936 +-9.24280947255113e-06,5.054684020865736 +-9.22280947255113e-06,4.907513916274462 +-9.20280947255113e-06,5.006853736873572 +-9.18280947255113e-06,5.04364626302139 +-9.162809472551131e-06,4.892796905815335 +-9.142809472551131e-06,4.984778221184881 +-9.122809472551131e-06,4.96270270549619 +-9.10280947255113e-06,4.885438400585771 +-9.08280947255113e-06,5.028929252562263 +-9.06280947255113e-06,4.933268684577936 +-9.04280947255113e-06,4.914872421504026 +-9.02280947255113e-06,5.054684020865736 +-9.002809472551131e-06,4.730909790764934 +-8.982809472551131e-06,4.88175914797099 +-8.962809472551131e-06,5.025249999947482 +-8.942809472551131e-06,4.896476158430117 +-8.92280947255113e-06,4.995815979029227 +-8.90280947255113e-06,5.017891494717918 +-8.88280947255113e-06,4.874400642741426 +-8.86280947255113e-06,5.054684020865736 +-8.84280947255113e-06,4.959023452881408 +-8.822809472551131e-06,4.889117653200554 +-8.802809472551131e-06,5.087797294398772 +-8.782809472551131e-06,4.859683632282299 +-8.762809472551131e-06,4.925910179348372 +-8.74280947255113e-06,5.0620425260953 +-8.72280947255113e-06,4.874400642741426 +-8.70280947255113e-06,4.96270270549619 +-8.68280947255113e-06,5.073080283939645 +-8.66280947255113e-06,4.800815590445789 +-8.642809472551131e-06,4.973740463340535 +-8.622809472551131e-06,4.988457473799663 +-8.602809472551131e-06,4.885438400585771 +-8.582809472551131e-06,5.032608505177045 +-8.56280947255113e-06,4.92223092673359 +-8.54280947255113e-06,4.911193168889245 +-8.52280947255113e-06,5.073080283939645 +-8.50280947255113e-06,4.896476158430117 +-8.48280947255113e-06,4.933268684577936 +-8.462809472551131e-06,5.054684020865736 +-8.442809472551131e-06,4.874400642741426 +-8.422809472551131e-06,4.966381958110972 +-8.402809472551131e-06,5.017891494717918 +-8.38280947255113e-06,4.878079895356208 +-8.36280947255113e-06,5.025249999947482 +-8.34280947255113e-06,4.966381958110972 +-8.32280947255113e-06,4.889117653200554 +-8.30280947255113e-06,5.084118041783991 +-8.282809472551131e-06,4.907513916274462 +-8.262809472551131e-06,4.918551674118808 +-8.242809472551131e-06,5.087797294398772 +-8.222809472551131e-06,4.892796905815335 +-8.20280947255113e-06,4.96270270549619 +-8.18280947255113e-06,5.058363273480518 +-8.16280947255113e-06,4.86336288489708 +-8.14280947255113e-06,4.995815979029227 +-8.12280947255113e-06,4.992136726414445 +-8.102809472551131e-06,4.885438400585771 +-8.082809472551131e-06,5.028929252562263 +-8.062809472551131e-06,4.936947937192717 +-8.04280947255113e-06,4.914872421504026 +-8.02280947255113e-06,5.051004768250954 +-8.00280947255113e-06,4.892796905815335 +-7.98280947255113e-06,4.940627189807499 +-7.96280947255113e-06,5.065721778710081 +-7.942809472551131e-06,4.885438400585771 +-7.922809472551131e-06,4.959023452881408 +-7.902809472551131e-06,5.006853736873572 +-7.882809472551131e-06,4.889117653200554 +-7.86280947255113e-06,5.021570747332699 +-7.84280947255113e-06,4.959023452881408 +-7.82280947255113e-06,4.900155411044899 +-7.80280947255113e-06,5.106193557472682 +-7.78280947255113e-06,4.896476158430117 +-7.762809472551131e-06,4.907513916274462 +-7.742809472551131e-06,5.073080283939645 +-7.722809472551131e-06,4.856004379667517 +-7.702809472551131e-06,4.940627189807499 +-7.68280947255113e-06,5.032608505177045 +-7.66280947255113e-06,4.848645874437953 +-7.64280947255113e-06,4.995815979029227 +-7.62280947255113e-06,4.96270270549619 +-7.60280947255113e-06,4.903834663659681 +-7.582809472551131e-06,5.047325515636173 +-7.562809472551131e-06,4.947985695037063 +-7.54280947255113e-06,4.911193168889245 +-7.52280947255113e-06,5.039967010406609 +-7.50280947255113e-06,4.852325127052735 +-7.482809472551131e-06,4.925910179348372 +-7.46280947255113e-06,5.054684020865736 +-7.44280947255113e-06,4.870721390126644 +-7.42280947255113e-06,4.96270270549619 +-7.402809472551131e-06,5.006853736873572 +-7.382809472551131e-06,4.859683632282299 +-7.36280947255113e-06,5.021570747332699 +-7.34280947255113e-06,4.959023452881408 +-7.322809472551131e-06,4.889117653200554 +-7.302809472551131e-06,5.076759536554427 +-7.28280947255113e-06,4.900155411044899 +-7.26280947255113e-06,4.914872421504026 +-7.24280947255113e-06,5.080438789169209 +-7.222809472551131e-06,4.867042137511862 +-7.20280947255113e-06,4.959023452881408 +-7.18280947255113e-06,5.036287757791827 +-7.16280947255113e-06,4.830249611364044 +-7.142809472551131e-06,5.021570747332699 +-7.122809472551131e-06,5.003174484258791 +-7.10280947255113e-06,4.867042137511862 +-7.08280947255113e-06,5.039967010406609 +-7.06280947255113e-06,4.896476158430117 +-7.042809472551131e-06,4.84128736920839 +-7.02280947255113e-06,5.028929252562263 +-7.00280947255113e-06,4.900155411044899 +-6.98280947255113e-06,4.933268684577936 +-6.962809472551131e-06,5.039967010406609 +-6.942809472551131e-06,4.874400642741426 +-6.92280947255113e-06,4.995815979029227 +-6.90280947255113e-06,5.028929252562263 +-6.88280947255113e-06,4.889117653200554 +-6.862809472551131e-06,5.028929252562263 +-6.84280947255113e-06,4.966381958110972 +-6.82280947255113e-06,4.892796905815335 +-6.80280947255113e-06,5.098835052243118 +-6.782809472551131e-06,4.907513916274462 +-6.762809472551131e-06,4.914872421504026 +-6.74280947255113e-06,5.0620425260953 +-6.72280947255113e-06,4.889117653200554 +-6.702809472551131e-06,4.955344200266627 +-6.682809472551131e-06,5.025249999947482 +-6.66280947255113e-06,4.830249611364044 +-6.64280947255113e-06,5.003174484258791 +-6.62280947255113e-06,4.988457473799663 +-6.602809472551131e-06,4.911193168889245 +-6.58280947255113e-06,5.021570747332699 +-6.56280947255113e-06,4.933268684577936 +-6.54280947255113e-06,4.900155411044899 +-6.522809472551131e-06,5.0620425260953 +-6.502809472551131e-06,4.889117653200554 +-6.48280947255113e-06,4.940627189807499 +-6.46280947255113e-06,5.054684020865736 +-6.44280947255113e-06,4.848645874437953 +-6.422809472551131e-06,5.014212242103136 +-6.40280947255113e-06,5.014212242103136 +-6.38280947255113e-06,4.88175914797099 +-6.36280947255113e-06,5.065721778710081 +-6.342809472551131e-06,4.947985695037063 +-6.322809472551131e-06,4.88175914797099 +-6.30280947255113e-06,5.109872810087463 +-6.28280947255113e-06,4.914872421504026 +-6.262809472551131e-06,4.907513916274462 +-6.242809472551131e-06,4.856004379667517 +-6.22280947255113e-06,4.734589043379716 +-6.20280947255113e-06,4.933268684577936 +-6.18280947255113e-06,5.036287757791827 +-6.162809472551131e-06,4.885438400585771 +-6.142809472551131e-06,4.999495231644008 +-6.12280947255113e-06,4.992136726414445 +-6.10280947255113e-06,4.907513916274462 +-6.082809472551131e-06,5.036287757791827 +-6.062809472551131e-06,4.96270270549619 +-6.04280947255113e-06,4.918551674118808 +-6.02280947255113e-06,5.017891494717918 +-6.00280947255113e-06,4.885438400585771 +-5.982809472551131e-06,4.966381958110972 +-5.96280947255113e-06,4.988457473799663 +-5.94280947255113e-06,4.859683632282299 +-5.92280947255113e-06,4.988457473799663 +-5.902809472551131e-06,5.017891494717918 +-5.882809472551131e-06,4.911193168889245 +-5.86280947255113e-06,5.003174484258791 +-5.84280947255113e-06,4.984778221184881 +-5.82280947255113e-06,4.911193168889245 +-5.802809472551131e-06,5.0620425260953 +-5.78280947255113e-06,4.92223092673359 +-5.76280947255113e-06,4.925910179348372 +-5.74280947255113e-06,5.058363273480518 +-5.722809472551131e-06,4.889117653200554 +-5.702809472551131e-06,4.96270270549619 +-5.68280947255113e-06,5.036287757791827 +-5.66280947255113e-06,4.88175914797099 +-5.642809472551131e-06,4.984778221184881 +-5.622809472551131e-06,4.992136726414445 +-5.60280947255113e-06,4.907513916274462 +-5.58280947255113e-06,5.003174484258791 +-5.56280947255113e-06,4.940627189807499 +-5.542809472551131e-06,4.918551674118808 +-5.522809472551131e-06,5.039967010406609 +-5.50280947255113e-06,4.914872421504026 +-5.48280947255113e-06,4.936947937192717 +-5.462809472551131e-06,5.032608505177045 +-5.442809472551131e-06,4.903834663659681 +-5.42280947255113e-06,5.051004768250954 +-5.40280947255113e-06,5.036287757791827 +-5.38280947255113e-06,4.859683632282299 +-5.362809472551131e-06,5.036287757791827 +-5.34280947255113e-06,4.977419715955318 +-5.32280947255113e-06,4.885438400585771 +-5.30280947255113e-06,5.039967010406609 +-5.282809472551131e-06,4.947985695037063 +-5.262809472551131e-06,4.936947937192717 +-5.24280947255113e-06,5.069401031324864 +-5.22280947255113e-06,4.889117653200554 +-5.20280947255113e-06,4.951664947651844 +-5.182809472551131e-06,5.054684020865736 +-5.16280947255113e-06,4.88175914797099 +-5.14280947255113e-06,4.995815979029227 +-5.12280947255113e-06,4.988457473799663 +-5.102809472551131e-06,4.892796905815335 +-5.082809472551131e-06,5.025249999947482 +-5.06280947255113e-06,4.933268684577936 +-5.04280947255113e-06,4.929589431963153 +-5.022809472551131e-06,5.04364626302139 +-5.002809472551131e-06,4.896476158430117 +-4.98280947255113e-06,4.970061210725754 +-4.96280947255113e-06,5.054684020865736 +-4.94280947255113e-06,4.767702316912753 +-4.922809472551131e-06,5.014212242103136 +-4.90280947255113e-06,4.984778221184881 +-4.88280947255113e-06,4.896476158430117 +-4.86280947255113e-06,5.014212242103136 +-4.842809472551131e-06,4.959023452881408 +-4.822809472551131e-06,4.896476158430117 +-4.80280947255113e-06,5.076759536554427 +-4.78280947255113e-06,4.911193168889245 +-4.76280947255113e-06,4.907513916274462 +-4.742809472551131e-06,5.065721778710081 +-4.72280947255113e-06,4.833928863978826 +-4.70280947255113e-06,4.951664947651844 +-4.68280947255113e-06,5.036287757791827 +-4.662809472551131e-06,4.859683632282299 +-4.642809472551131e-06,4.992136726414445 +-4.62280947255113e-06,4.911193168889245 +-4.60280947255113e-06,4.719872032920589 +-4.58280947255113e-06,4.981098968570099 +-4.562809472551131e-06,4.959023452881408 +-4.54280947255113e-06,4.92223092673359 +-4.52280947255113e-06,5.04364626302139 +-4.50280947255113e-06,4.878079895356208 +-4.482809472551131e-06,4.929589431963153 +-4.462809472551131e-06,5.047325515636173 +-4.44280947255113e-06,4.874400642741426 +-4.42280947255113e-06,4.951664947651844 +-4.402809472551131e-06,5.025249999947482 +-4.382809472551131e-06,4.892796905815335 +-4.36280947255113e-06,4.995815979029227 +-4.34280947255113e-06,4.995815979029227 +-4.32280947255113e-06,4.944306442422281 +-4.302809472551131e-06,5.04364626302139 +-4.28280947255113e-06,4.925910179348372 +-4.26280947255113e-06,4.907513916274462 +-4.24280947255113e-06,5.0620425260953 +-4.222809472551131e-06,4.870721390126644 +-4.202809472551131e-06,4.940627189807499 +-4.18280947255113e-06,5.051004768250954 +-4.16280947255113e-06,4.867042137511862 +-4.14280947255113e-06,4.988457473799663 +-4.122809472551131e-06,5.003174484258791 +-4.10280947255113e-06,4.844966621823171 +-4.08280947255113e-06,5.025249999947482 +-4.06280947255113e-06,4.933268684577936 +-4.042809472551131e-06,4.911193168889245 +-4.022809472551131e-06,5.0620425260953 +-4.00280947255113e-06,4.889117653200554 +-3.98280947255113e-06,4.929589431963153 +-3.962809472551131e-06,5.036287757791827 +-3.942809472551131e-06,4.867042137511862 +-3.92280947255113e-06,4.973740463340535 +-3.90280947255113e-06,4.999495231644008 +-3.88280947255113e-06,4.852325127052735 +-3.862809472551131e-06,5.028929252562263 +-3.842809472551131e-06,4.973740463340535 +-3.82280947255113e-06,4.889117653200554 +-3.80280947255113e-06,5.025249999947482 +-3.782809472551131e-06,4.92223092673359 +-3.76280947255113e-06,4.92223092673359 +-3.74280947255113e-06,5.073080283939645 +-3.72280947255113e-06,4.88175914797099 +-3.70280947255113e-06,4.929589431963153 +-3.68280947255113e-06,5.039967010406609 +-3.66280947255113e-06,4.848645874437953 +-3.642809472551131e-06,5.006853736873572 +-3.62280947255113e-06,4.973740463340535 +-3.602809472551131e-06,4.870721390126644 +-3.58280947255113e-06,5.028929252562263 +-3.562809472551131e-06,4.918551674118808 +-3.54280947255113e-06,4.900155411044899 +-3.52280947255113e-06,5.04364626302139 +-3.50280947255113e-06,4.911193168889245 +-3.48280947255113e-06,4.947985695037063 +-3.46280947255113e-06,5.028929252562263 +-3.44280947255113e-06,4.86336288489708 +-3.422809472551131e-06,5.039967010406609 +-3.40280947255113e-06,4.992136726414445 +-3.382809472551131e-06,4.84128736920839 +-3.36280947255113e-06,5.065721778710081 +-3.342809472551131e-06,4.973740463340535 +-3.32280947255113e-06,4.874400642741426 +-3.30280947255113e-06,5.106193557472682 +-3.28280947255113e-06,4.870721390126644 +-3.26280947255113e-06,4.918551674118808 +-3.24280947255113e-06,5.058363273480518 +-3.22280947255113e-06,4.907513916274462 +-3.202809472551131e-06,4.925910179348372 +-3.18280947255113e-06,5.032608505177045 +-3.162809472551131e-06,4.852325127052735 +-3.14280947255113e-06,4.984778221184881 +-3.12280947255113e-06,4.977419715955318 +-3.10280947255113e-06,4.859683632282299 +-3.08280947255113e-06,5.032608505177045 +-3.06280947255113e-06,4.933268684577936 +-3.04280947255113e-06,4.911193168889245 +-3.02280947255113e-06,5.04364626302139 +-3.00280947255113e-06,4.900155411044899 +-2.982809472551131e-06,4.936947937192717 +-2.96280947255113e-06,5.051004768250954 +-2.942809472551131e-06,4.859683632282299 +-2.92280947255113e-06,4.984778221184881 +-2.90280947255113e-06,5.017891494717918 +-2.88280947255113e-06,4.870721390126644 +-2.86280947255113e-06,5.017891494717918 +-2.84280947255113e-06,4.951664947651844 +-2.82280947255113e-06,4.88175914797099 +-2.802809472551131e-06,5.054684020865736 +-2.78280947255113e-06,4.911193168889245 +-2.762809472551131e-06,4.911193168889245 +-2.74280947255113e-06,5.076759536554427 +-2.722809472551131e-06,4.903834663659681 +-2.70280947255113e-06,4.918551674118808 +-2.68280947255113e-06,5.021570747332699 +-2.66280947255113e-06,4.819211853519699 +-2.64280947255113e-06,4.988457473799663 +-2.62280947255113e-06,4.995815979029227 +-2.60280947255113e-06,4.86336288489708 +-2.582809472551131e-06,5.028929252562263 +-2.56280947255113e-06,4.92223092673359 +-2.542809472551131e-06,4.878079895356208 +-2.52280947255113e-06,5.051004768250954 +-2.502809472551131e-06,4.874400642741426 +-2.48280947255113e-06,4.929589431963153 +-2.46280947255113e-06,5.051004768250954 +-2.44280947255113e-06,4.870721390126644 +-2.42280947255113e-06,4.988457473799663 +-2.40280947255113e-06,5.014212242103136 +-2.38280947255113e-06,4.852325127052735 +-2.362809472551131e-06,5.010532989488354 +-2.34280947255113e-06,4.977419715955318 +-2.322809472551131e-06,4.896476158430117 +-2.30280947255113e-06,5.047325515636173 +-2.28280947255113e-06,4.936947937192717 +-2.26280947255113e-06,4.907513916274462 +-2.24280947255113e-06,5.04364626302139 +-2.22280947255113e-06,4.88175914797099 +-2.20280947255113e-06,4.925910179348372 +-2.182809472551131e-06,5.025249999947482 +-2.16280947255113e-06,4.811853348290135 +-2.142809472551131e-06,4.966381958110972 +-2.12280947255113e-06,5.003174484258791 +-2.102809472551131e-06,4.878079895356208 +-2.08280947255113e-06,5.010532989488354 +-2.06280947255113e-06,4.940627189807499 +-2.04280947255113e-06,4.889117653200554 +-2.02280947255113e-06,5.039967010406609 +-2.00280947255113e-06,4.885438400585771 +-1.98280947255113e-06,4.914872421504026 +-1.962809472551131e-06,5.054684020865736 +-1.94280947255113e-06,4.878079895356208 +-1.922809472551131e-06,4.970061210725754 +-1.90280947255113e-06,5.014212242103136 +-1.88280947255113e-06,4.889117653200554 +-1.86280947255113e-06,4.995815979029227 +-1.84280947255113e-06,4.970061210725754 +-1.82280947255113e-06,4.878079895356208 +-1.80280947255113e-06,5.135627578390936 +-1.78280947255113e-06,4.874400642741426 +-1.76280947255113e-06,4.911193168889245 +-1.74280947255113e-06,5.091476547013555 +-1.72280947255113e-06,4.84128736920839 +-1.70280947255113e-06,4.947985695037063 +-1.68280947255113e-06,5.032608505177045 +-1.66280947255113e-06,4.84128736920839 +-1.64280947255113e-06,4.988457473799663 +-1.62280947255113e-06,4.973740463340535 +-1.60280947255113e-06,4.844966621823171 +-1.58280947255113e-06,5.010532989488354 +-1.56280947255113e-06,4.92223092673359 +-1.54280947255113e-06,4.870721390126644 +-1.52280947255113e-06,5.036287757791827 +-1.50280947255113e-06,4.86336288489708 +-1.48280947255113e-06,4.918551674118808 +-1.46280947255113e-06,5.054684020865736 +-1.44280947255113e-06,4.86336288489708 +-1.42280947255113e-06,4.959023452881408 +-1.40280947255113e-06,4.992136726414445 +-1.38280947255113e-06,4.874400642741426 +-1.36280947255113e-06,5.014212242103136 +-1.34280947255113e-06,4.970061210725754 +-1.32280947255113e-06,4.870721390126644 +-1.30280947255113e-06,5.04364626302139 +-1.28280947255113e-06,4.933268684577936 +-1.26280947255113e-06,4.900155411044899 +-1.24280947255113e-06,5.04364626302139 +-1.22280947255113e-06,4.892796905815335 +-1.20280947255113e-06,4.929589431963153 +-1.18280947255113e-06,5.073080283939645 +-1.16280947255113e-06,4.848645874437953 +-1.14280947255113e-06,4.977419715955318 +-1.12280947255113e-06,4.995815979029227 +-1.10280947255113e-06,4.885438400585771 +-1.08280947255113e-06,4.992136726414445 +-1.06280947255113e-06,4.929589431963153 +-1.04280947255113e-06,4.885438400585771 +-1.02280947255113e-06,5.032608505177045 +-1.00280947255113e-06,4.86336288489708 +-9.828094725511302e-07,4.929589431963153 +-9.628094725511302e-07,5.051004768250954 +-9.428094725511303e-07,4.856004379667517 +-9.228094725511303e-07,4.992136726414445 +-9.028094725511303e-07,5.014212242103136 +-8.828094725511302e-07,4.852325127052735 +-8.628094725511303e-07,4.970061210725754 +-8.428094725511303e-07,4.936947937192717 +-8.228094725511303e-07,4.859683632282299 +-8.028094725511303e-07,5.047325515636173 +-7.828094725511302e-07,4.933268684577936 +-7.628094725511303e-07,4.907513916274462 +-7.428094725511303e-07,5.036287757791827 +-7.228094725511303e-07,4.900155411044899 +-7.028094725511303e-07,4.955344200266627 +-6.828094725511302e-07,5.051004768250954 +-6.628094725511303e-07,4.885438400585771 +-6.428094725511303e-07,4.966381958110972 +-6.228094725511303e-07,4.988457473799663 +-6.028094725511303e-07,4.867042137511862 +-5.828094725511303e-07,5.04364626302139 +-5.628094725511303e-07,4.944306442422281 +-5.428094725511303e-07,4.96270270549619 +-5.228094725511303e-07,5.087797294398772 +-5.028094725511303e-07,4.925910179348372 +-4.828094725511303e-07,4.914872421504026 +-4.628094725511302e-07,5.058363273480518 +-4.428094725511302e-07,4.874400642741426 +-4.228094725511302e-07,4.999495231644008 +-4.028094725511302e-07,5.028929252562263 +-3.828094725511303e-07,4.892796905815335 +-3.628094725511302e-07,4.992136726414445 +-3.428094725511302e-07,4.995815979029227 +-3.228094725511303e-07,4.903834663659681 +-3.028094725511302e-07,5.051004768250954 +-2.828094725511302e-07,4.951664947651844 +-2.628094725511302e-07,4.900155411044899 +-2.428094725511302e-07,5.051004768250954 +-2.228094725511302e-07,4.914872421504026 +-2.028094725511302e-07,4.925910179348372 +-1.828094725511302e-07,5.065721778710081 +-1.628094725511302e-07,4.874400642741426 +-1.428094725511302e-07,4.966381958110972 +-1.228094725511302e-07,4.992136726414445 +-1.028094725511303e-07,4.878079895356208 +-8.280947255113025e-08,4.999495231644008 +-6.280947255113025e-08,4.955344200266627 +-4.280947255113025e-08,4.889117653200554 +-2.280947255113025e-08,5.032608505177045 +-2.809472551130249e-09,2.659490568642759 +1.719052744886975e-08,0.8640152926292206 +3.719052744886975e-08,0.5255240520692914 +5.719052744886975e-08,0.2495801059606535 +7.719052744886976e-08,0.1428817801319804 +9.719052744886975e-08,-0.0557978610662393 +1.171905274488698e-07,-0.03740159799232989 +1.371905274488698e-07,0.08033448568068913 +1.571905274488698e-07,-0.05947711368102082 +1.771905274488698e-07,-0.01900533491842094 +1.971905274488698e-07,0.03250420168852486 +2.171905274488698e-07,-0.011646829688857 +2.371905274488698e-07,-0.03740159799232989 +2.571905274488698e-07,-0.01900533491842094 +2.771905274488698e-07,-0.004288324459293502 +2.971905274488697e-07,-0.04843935583667536 +3.171905274488698e-07,-0.02636384014798443 +3.371905274488698e-07,-0.02268458753320246 +3.571905274488697e-07,-0.04476010322189383 +3.771905274488698e-07,-0.04476010322189383 +3.971905274488698e-07,-0.01532608230363897 +4.171905274488698e-07,-0.03740159799232989 +4.371905274488698e-07,-0.05211860845145733 +4.571905274488697e-07,-0.02636384014798443 +4.771905274488698e-07,-0.05211860845145733 +4.971905274488697e-07,-0.03740159799232989 +5.171905274488697e-07,-0.0300430927627664 +5.371905274488697e-07,-0.01532608230363897 +5.571905274488697e-07,-0.03372234537754792 +5.771905274488698e-07,-0.04108085060711186 +5.971905274488697e-07,-0.05211860845145733 +6.171905274488697e-07,-0.04108085060711186 +6.371905274488697e-07,-0.0557978610662393 +6.571905274488697e-07,-0.05947711368102082 +6.771905274488698e-07,-0.05211860845145733 +6.971905274488697e-07,-0.08523188198449372 +7.171905274488697e-07,-0.0557978610662393 +7.371905274488697e-07,-0.05947711368102082 +7.571905274488697e-07,-0.06315636629580279 +7.771905274488698e-07,-0.03740159799232989 +7.971905274488697e-07,-0.0557978610662393 +8.171905274488697e-07,-0.07051487152536628 +8.371905274488697e-07,-0.05947711368102082 +8.571905274488697e-07,-0.07051487152536628 +8.771905274488697e-07,-0.07051487152536628 +8.971905274488697e-07,-0.05947711368102082 +9.171905274488697e-07,-0.05947711368102082 +9.371905274488697e-07,-0.07051487152536628 +9.571905274488698e-07,-0.05211860845145733 +9.771905274488698e-07,-0.07787337675493022 +9.971905274488699e-07,-0.05947711368102082 +1.01719052744887e-06,-0.05211860845145733 +1.03719052744887e-06,-0.07051487152536628 +1.05719052744887e-06,-0.05947711368102082 +1.07719052744887e-06,-0.08891113459927569 +1.09719052744887e-06,-0.08523188198449372 +1.11719052744887e-06,-0.06683561891058476 +1.13719052744887e-06,-0.07051487152536628 +1.15719052744887e-06,-0.08523188198449372 +1.17719052744887e-06,-0.05211860845145733 +1.19719052744887e-06,-0.1146659029027486 +1.21719052744887e-06,-0.08523188198449372 +1.23719052744887e-06,-0.0557978610662393 +1.25719052744887e-06,-0.09259038721405766 +1.27719052744887e-06,-0.07787337675493022 +1.29719052744887e-06,-0.07787337675493022 +1.31719052744887e-06,-0.08891113459927569 +1.33719052744887e-06,-0.07419412414014825 +1.35719052744887e-06,-0.07787337675493022 +1.37719052744887e-06,4.554305665255406 +1.39719052744887e-06,4.56166417048497 +1.41719052744887e-06,4.911193168889245 +1.43719052744887e-06,4.800815590445789 +1.45719052744887e-06,4.730909790764934 +1.47719052744887e-06,5.014212242103136 +1.49719052744887e-06,4.867042137511862 +1.51719052744887e-06,4.797136337831008 +1.53719052744887e-06,4.999495231644008 +1.55719052744887e-06,4.844966621823171 +1.57719052744887e-06,4.833928863978826 +1.59719052744887e-06,4.973740463340535 +1.61719052744887e-06,4.844966621823171 +1.63719052744887e-06,4.936947937192717 +1.65719052744887e-06,4.951664947651844 +1.67719052744887e-06,4.848645874437953 +1.69719052744887e-06,4.96270270549619 +1.71719052744887e-06,4.874400642741426 +1.73719052744887e-06,4.870721390126644 +1.75719052744887e-06,5.017891494717918 +1.77719052744887e-06,4.874400642741426 +1.79719052744887e-06,4.885438400585771 +1.81719052744887e-06,5.003174484258791 +1.83719052744887e-06,4.86336288489708 +1.85719052744887e-06,4.936947937192717 +1.87719052744887e-06,4.977419715955318 +1.89719052744887e-06,4.848645874437953 +1.91719052744887e-06,4.970061210725754 +1.93719052744887e-06,4.911193168889245 +1.95719052744887e-06,4.856004379667517 +1.97719052744887e-06,4.999495231644008 +1.99719052744887e-06,4.856004379667517 +2.017190527448869e-06,4.900155411044899 +2.03719052744887e-06,5.032608505177045 +2.057190527448869e-06,4.878079895356208 +2.07719052744887e-06,4.907513916274462 +2.09719052744887e-06,4.981098968570099 +2.11719052744887e-06,4.856004379667517 +2.13719052744887e-06,4.970061210725754 +2.15719052744887e-06,4.96270270549619 +2.17719052744887e-06,4.819211853519699 +2.19719052744887e-06,4.984778221184881 +2.21719052744887e-06,4.929589431963153 +2.237190527448869e-06,4.896476158430117 +2.25719052744887e-06,5.076759536554427 +2.277190527448869e-06,4.870721390126644 +2.29719052744887e-06,4.914872421504026 +2.31719052744887e-06,5.036287757791827 +2.33719052744887e-06,4.885438400585771 +2.35719052744887e-06,4.940627189807499 +2.37719052744887e-06,4.992136726414445 +2.39719052744887e-06,4.885438400585771 +2.417190527448869e-06,4.992136726414445 +2.43719052744887e-06,4.947985695037063 +2.457190527448869e-06,4.874400642741426 +2.47719052744887e-06,5.025249999947482 +2.497190527448869e-06,4.911193168889245 +2.51719052744887e-06,4.92223092673359 +2.53719052744887e-06,5.047325515636173 +2.55719052744887e-06,4.889117653200554 +2.57719052744887e-06,4.936947937192717 +2.59719052744887e-06,5.036287757791827 +2.61719052744887e-06,4.874400642741426 +2.637190527448869e-06,5.04364626302139 +2.65719052744887e-06,4.977419715955318 +2.677190527448869e-06,4.878079895356208 +2.69719052744887e-06,5.047325515636173 +2.717190527448869e-06,4.970061210725754 +2.73719052744887e-06,4.896476158430117 +2.75719052744887e-06,5.091476547013555 +2.77719052744887e-06,4.88175914797099 +2.79719052744887e-06,4.918551674118808 +2.81719052744887e-06,5.051004768250954 +2.83719052744887e-06,4.86336288489708 +2.857190527448869e-06,4.955344200266627 +2.87719052744887e-06,4.977419715955318 +2.897190527448869e-06,4.856004379667517 +2.91719052744887e-06,4.999495231644008 +2.93719052744887e-06,4.925910179348372 +2.95719052744887e-06,4.896476158430117 +2.97719052744887e-06,5.039967010406609 +2.99719052744887e-06,4.903834663659681 +3.01719052744887e-06,4.925910179348372 +3.037190527448869e-06,5.032608505177045 +3.05719052744887e-06,4.878079895356208 +3.077190527448869e-06,4.925910179348372 +3.09719052744887e-06,5.014212242103136 +3.117190527448869e-06,4.870721390126644 +3.13719052744887e-06,5.003174484258791 +3.15719052744887e-06,4.995815979029227 +3.17719052744887e-06,4.874400642741426 +3.19719052744887e-06,5.0620425260953 +3.21719052744887e-06,4.914872421504026 +3.23719052744887e-06,4.889117653200554 +3.257190527448869e-06,5.032608505177045 +3.27719052744887e-06,4.88175914797099 +3.297190527448869e-06,4.907513916274462 +3.31719052744887e-06,5.028929252562263 +3.337190527448869e-06,4.870721390126644 +3.35719052744887e-06,4.936947937192717 +3.37719052744887e-06,5.010532989488354 +3.39719052744887e-06,4.88175914797099 +3.41719052744887e-06,4.977419715955318 +3.43719052744887e-06,4.955344200266627 +3.45719052744887e-06,4.892796905815335 +3.477190527448869e-06,5.003174484258791 +3.49719052744887e-06,4.918551674118808 +3.517190527448869e-06,4.911193168889245 +3.53719052744887e-06,5.028929252562263 +3.557190527448869e-06,4.852325127052735 +3.57719052744887e-06,4.940627189807499 +3.59719052744887e-06,5.014212242103136 +3.61719052744887e-06,4.859683632282299 +3.63719052744887e-06,4.995815979029227 +3.65719052744887e-06,4.96270270549619 +3.67719052744887e-06,4.88175914797099 +3.697190527448869e-06,5.017891494717918 +3.71719052744887e-06,4.925910179348372 +3.737190527448869e-06,4.892796905815335 +3.75719052744887e-06,5.058363273480518 +3.77719052744887e-06,4.889117653200554 +3.79719052744887e-06,4.929589431963153 +3.81719052744887e-06,5.0620425260953 +3.837190527448869e-06,4.870721390126644 +3.85719052744887e-06,4.936947937192717 +3.87719052744887e-06,4.995815979029227 +3.89719052744887e-06,4.856004379667517 +3.917190527448869e-06,4.973740463340535 +3.937190527448869e-06,4.947985695037063 +3.95719052744887e-06,4.870721390126644 +3.97719052744887e-06,4.995815979029227 +3.99719052744887e-06,4.907513916274462 +4.017190527448869e-06,4.900155411044899 +4.03719052744887e-06,5.021570747332699 +4.05719052744887e-06,4.870721390126644 +4.07719052744887e-06,4.933268684577936 +4.097190527448869e-06,5.014212242103136 +4.117190527448869e-06,4.86336288489708 +4.13719052744887e-06,4.977419715955318 +4.15719052744887e-06,4.970061210725754 +4.177190527448869e-06,4.86336288489708 +4.197190527448869e-06,5.032608505177045 +4.21719052744887e-06,4.911193168889245 +4.23719052744887e-06,4.878079895356208 +4.25719052744887e-06,5.047325515636173 +4.277190527448869e-06,4.885438400585771 +4.297190527448869e-06,4.933268684577936 +4.31719052744887e-06,5.017891494717918 +4.33719052744887e-06,4.867042137511862 +4.357190527448869e-06,4.966381958110972 +4.377190527448869e-06,5.003174484258791 +4.39719052744887e-06,4.856004379667517 +4.41719052744887e-06,4.973740463340535 +4.43719052744887e-06,4.914872421504026 +4.457190527448869e-06,4.84128736920839 +4.47719052744887e-06,4.988457473799663 +4.49719052744887e-06,4.892796905815335 +4.51719052744887e-06,4.885438400585771 +4.537190527448869e-06,4.988457473799663 +4.557190527448869e-06,4.797136337831008 +4.57719052744887e-06,4.92223092673359 +4.59719052744887e-06,4.995815979029227 +4.61719052744887e-06,4.848645874437953 +4.637190527448869e-06,4.959023452881408 +4.65719052744887e-06,4.959023452881408 +4.67719052744887e-06,4.870721390126644 +4.69719052744887e-06,4.995815979029227 +4.717190527448869e-06,4.918551674118808 +4.737190527448869e-06,4.885438400585771 +4.75719052744887e-06,4.984778221184881 +4.77719052744887e-06,4.900155411044899 +4.797190527448869e-06,4.914872421504026 +4.817190527448869e-06,5.04364626302139 +4.83719052744887e-06,4.84128736920839 +4.85719052744887e-06,4.914872421504026 +4.87719052744887e-06,4.981098968570099 +4.897190527448869e-06,4.86336288489708 +4.917190527448869e-06,4.951664947651844 +4.93719052744887e-06,4.959023452881408 +4.95719052744887e-06,4.892796905815335 +4.977190527448869e-06,5.003174484258791 +4.997190527448869e-06,4.900155411044899 +5.01719052744887e-06,4.911193168889245 +5.03719052744887e-06,5.021570747332699 +5.05719052744887e-06,4.859683632282299 +5.077190527448869e-06,4.92223092673359 +5.09719052744887e-06,5.003174484258791 +5.11719052744887e-06,4.896476158430117 +5.13719052744887e-06,4.96270270549619 +5.157190527448869e-06,4.995815979029227 +5.177190527448869e-06,4.889117653200554 +5.19719052744887e-06,5.006853736873572 +5.21719052744887e-06,4.951664947651844 +5.23719052744887e-06,4.896476158430117 +5.257190527448869e-06,5.051004768250954 +5.27719052744887e-06,4.903834663659681 +5.29719052744887e-06,4.929589431963153 +5.31719052744887e-06,5.054684020865736 +5.337190527448869e-06,4.878079895356208 +5.357190527448869e-06,4.951664947651844 +5.37719052744887e-06,5.014212242103136 +5.39719052744887e-06,4.885438400585771 +5.417190527448869e-06,5.010532989488354 +5.437190527448869e-06,4.984778221184881 +5.45719052744887e-06,4.907513916274462 +5.47719052744887e-06,5.014212242103136 +5.49719052744887e-06,4.907513916274462 +5.517190527448869e-06,4.925910179348372 +5.53719052744887e-06,5.032608505177045 +5.55719052744887e-06,4.907513916274462 +5.57719052744887e-06,4.973740463340535 +5.597190527448869e-06,5.047325515636173 +5.617190527448869e-06,4.867042137511862 +5.63719052744887e-06,5.003174484258791 +5.65719052744887e-06,5.003174484258791 +5.67719052744887e-06,4.903834663659681 +5.697190527448869e-06,5.025249999947482 +5.71719052744887e-06,4.96270270549619 +5.73719052744887e-06,4.911193168889245 +5.75719052744887e-06,5.028929252562263 +5.777190527448869e-06,4.892796905815335 +5.797190527448869e-06,4.918551674118808 +5.81719052744887e-06,5.069401031324864 +5.83719052744887e-06,4.867042137511862 +5.857190527448869e-06,4.96270270549619 +5.877190527448869e-06,5.014212242103136 +5.89719052744887e-06,4.889117653200554 +5.91719052744887e-06,4.992136726414445 +5.93719052744887e-06,4.951664947651844 +5.957190527448869e-06,4.82289110613448 +5.977190527448869e-06,4.977419715955318 +5.99719052744887e-06,4.925910179348372 +6.01719052744887e-06,4.900155411044899 +6.037190527448869e-06,5.032608505177045 +6.057190527448869e-06,4.900155411044899 +6.07719052744887e-06,4.951664947651844 +6.09719052744887e-06,5.028929252562263 +6.11719052744887e-06,4.867042137511862 +6.137190527448869e-06,4.999495231644008 +6.15719052744887e-06,4.999495231644008 +6.17719052744887e-06,4.892796905815335 +6.19719052744887e-06,5.025249999947482 +6.217190527448869e-06,4.940627189807499 +6.237190527448869e-06,4.896476158430117 +6.25719052744887e-06,5.039967010406609 +6.27719052744887e-06,4.903834663659681 +6.29719052744887e-06,4.936947937192717 +6.317190527448869e-06,5.076759536554427 +6.33719052744887e-06,4.878079895356208 +6.35719052744887e-06,4.970061210725754 +6.37719052744887e-06,5.014212242103136 +6.397190527448869e-06,4.889117653200554 +6.417190527448869e-06,5.003174484258791 +6.43719052744887e-06,4.981098968570099 +6.45719052744887e-06,4.907513916274462 +6.477190527448869e-06,5.014212242103136 +6.497190527448869e-06,4.933268684577936 +6.51719052744887e-06,4.925910179348372 +6.53719052744887e-06,5.04364626302139 +6.55719052744887e-06,4.892796905815335 +6.577190527448869e-06,4.955344200266627 +6.597190527448869e-06,5.039967010406609 +6.61719052744887e-06,4.88175914797099 +6.63719052744887e-06,4.992136726414445 +6.657190527448869e-06,4.999495231644008 +6.677190527448869e-06,4.892796905815335 +6.69719052744887e-06,5.014212242103136 +6.71719052744887e-06,4.966381958110972 +6.73719052744887e-06,4.911193168889245 +6.757190527448869e-06,5.04364626302139 +6.77719052744887e-06,4.936947937192717 +6.79719052744887e-06,4.925910179348372 +6.81719052744887e-06,5.054684020865736 +6.837190527448869e-06,4.867042137511862 +6.857190527448869e-06,4.944306442422281 +6.87719052744887e-06,5.014212242103136 +6.89719052744887e-06,4.878079895356208 +6.91719052744887e-06,4.995815979029227 +6.937190527448869e-06,4.830249611364044 +6.95719052744887e-06,4.856004379667517 +6.97719052744887e-06,5.117231315317028 +6.99719052744887e-06,4.981098968570099 +7.017190527448869e-06,4.936947937192717 +7.037190527448869e-06,5.0620425260953 +7.05719052744887e-06,4.833928863978826 +7.07719052744887e-06,4.92223092673359 +7.097190527448869e-06,5.014212242103136 +7.117190527448869e-06,4.896476158430117 +7.13719052744887e-06,4.977419715955318 +7.15719052744887e-06,4.984778221184881 +7.17719052744887e-06,4.889117653200554 +7.197190527448869e-06,5.058363273480518 +7.217190527448869e-06,4.933268684577936 +7.23719052744887e-06,4.896476158430117 +7.25719052744887e-06,5.073080283939645 +7.277190527448869e-06,4.889117653200554 +7.297190527448869e-06,4.907513916274462 +7.31719052744887e-06,5.036287757791827 +7.33719052744887e-06,4.896476158430117 +7.35719052744887e-06,4.951664947651844 +7.377190527448869e-06,5.003174484258791 +7.39719052744887e-06,4.86336288489708 +7.41719052744887e-06,4.999495231644008 +7.43719052744887e-06,4.970061210725754 +7.457190527448869e-06,4.892796905815335 +7.477190527448869e-06,5.036287757791827 +7.49719052744887e-06,4.911193168889245 +7.51719052744887e-06,4.911193168889245 +7.53719052744887e-06,5.04364626302139 +7.557190527448869e-06,4.889117653200554 +7.57719052744887e-06,4.955344200266627 +7.59719052744887e-06,5.069401031324864 +7.61719052744887e-06,4.896476158430117 +7.637190527448869e-06,4.995815979029227 +7.657190527448869e-06,5.003174484258791 +7.677190527448869e-06,4.892796905815335 +7.697190527448869e-06,5.051004768250954 +7.71719052744887e-06,4.933268684577936 +7.73719052744887e-06,4.900155411044899 +7.75719052744887e-06,5.069401031324864 +7.77719052744887e-06,4.892796905815335 +7.79719052744887e-06,4.918551674118808 +7.817190527448869e-06,4.499116876033678 +7.837190527448869e-06,4.267323961302423 +7.857190527448869e-06,5.010532989488354 +7.877190527448869e-06,4.959023452881408 +7.89719052744887e-06,4.878079895356208 +7.91719052744887e-06,5.025249999947482 +7.93719052744887e-06,4.929589431963153 +7.95719052744887e-06,4.940627189807499 +7.97719052744887e-06,5.006853736873572 +7.997190527448869e-06,4.918551674118808 +8.017190527448869e-06,4.951664947651844 +8.037190527448869e-06,5.006853736873572 +8.057190527448869e-06,4.870721390126644 +8.07719052744887e-06,4.944306442422281 +8.09719052744887e-06,4.995815979029227 +8.11719052744887e-06,4.885438400585771 +8.13719052744887e-06,4.977419715955318 +8.15719052744887e-06,4.970061210725754 +8.177190527448869e-06,4.918551674118808 +8.197190527448869e-06,4.988457473799663 +8.217190527448869e-06,4.933268684577936 +8.23719052744887e-06,4.944306442422281 +8.25719052744887e-06,5.032608505177045 +8.27719052744887e-06,4.896476158430117 +8.29719052744887e-06,4.970061210725754 +8.31719052744887e-06,5.039967010406609 +8.337190527448869e-06,4.870721390126644 +8.357190527448869e-06,4.959023452881408 +8.377190527448869e-06,5.021570747332699 +8.397190527448869e-06,4.92223092673359 +8.41719052744887e-06,4.988457473799663 +8.43719052744887e-06,4.966381958110972 +8.45719052744887e-06,4.929589431963153 +8.47719052744887e-06,4.995815979029227 +8.49719052744887e-06,4.925910179348372 +8.517190527448869e-06,4.944306442422281 +8.537190527448869e-06,5.003174484258791 +8.557190527448869e-06,4.900155411044899 +8.577190527448869e-06,4.959023452881408 +8.59719052744887e-06,5.017891494717918 +8.61719052744887e-06,4.878079895356208 +8.63719052744887e-06,4.981098968570099 +8.65719052744887e-06,4.981098968570099 +8.67719052744887e-06,4.947985695037063 +8.697190527448869e-06,5.021570747332699 +8.717190527448869e-06,4.947985695037063 +8.737190527448869e-06,4.936947937192717 +8.757190527448869e-06,5.032608505177045 +8.77719052744887e-06,4.907513916274462 +8.79719052744887e-06,4.959023452881408 +8.81719052744887e-06,5.032608505177045 +8.83719052744887e-06,4.885438400585771 +8.85719052744887e-06,4.981098968570099 +8.877190527448869e-06,4.999495231644008 +8.897190527448869e-06,4.907513916274462 +8.917190527448869e-06,4.988457473799663 +8.937190527448869e-06,4.951664947651844 +8.95719052744887e-06,4.929589431963153 +8.97719052744887e-06,5.021570747332699 +8.99719052744887e-06,4.911193168889245 +9.01719052744887e-06,4.955344200266627 +9.03719052744887e-06,5.021570747332699 +9.057190527448869e-06,4.885438400585771 +9.077190527448869e-06,4.977419715955318 +9.097190527448869e-06,5.006853736873572 +9.117190527448869e-06,4.907513916274462 +9.13719052744887e-06,4.999495231644008 +9.15719052744887e-06,4.992136726414445 +9.17719052744887e-06,4.903834663659681 +9.19719052744887e-06,5.606571913083013 +9.21719052744887e-06,5.135627578390936 +9.237190527448869e-06,4.896476158430117 +9.257190527448869e-06,4.988457473799663 +9.277190527448869e-06,4.86336288489708 +9.29719052744887e-06,4.914872421504026 +9.31719052744887e-06,5.039967010406609 +9.33719052744887e-06,4.911193168889245 +9.35719052744887e-06,4.959023452881408 +9.37719052744887e-06,5.047325515636173 +9.397190527448869e-06,4.874400642741426 +9.417190527448869e-06,5.014212242103136 +9.437190527448869e-06,4.966381958110972 +9.457190527448869e-06,4.900155411044899 +9.47719052744887e-06,5.028929252562263 +9.49719052744887e-06,4.933268684577936 +9.51719052744887e-06,4.933268684577936 +9.53719052744887e-06,5.0620425260953 +9.55719052744887e-06,4.903834663659681 +9.577190527448869e-06,4.959023452881408 +9.597190527448869e-06,5.039967010406609 +9.617190527448869e-06,4.896476158430117 +9.637190527448869e-06,4.977419715955318 +9.65719052744887e-06,4.988457473799663 +9.67719052744887e-06,4.911193168889245 +9.69719052744887e-06,5.04364626302139 +9.71719052744887e-06,4.966381958110972 +9.73719052744887e-06,4.885438400585771 +9.757190527448869e-06,5.073080283939645 +9.777190527448869e-06,4.918551674118808 +9.797190527448869e-06,4.929589431963153 +9.817190527448869e-06,5.039967010406609 +9.83719052744887e-06,4.907513916274462 +9.85719052744887e-06,4.955344200266627 +9.87719052744887e-06,5.036287757791827 +9.89719052744887e-06,4.892796905815335 +9.91719052744887e-06,4.992136726414445 +9.937190527448869e-06,4.951664947651844 +9.957190527448869e-06,4.88175914797099 +9.977190527448869e-06,5.028929252562263 +9.997190527448869e-06,4.944306442422281 +1.001719052744887e-05,4.925910179348372 +1.003719052744887e-05,5.036287757791827 +1.005719052744887e-05,4.907513916274462 +1.007719052744887e-05,4.944306442422281 +1.009719052744887e-05,5.025249999947482 +1.011719052744887e-05,4.867042137511862 +1.013719052744887e-05,5.014212242103136 +1.015719052744887e-05,4.992136726414445 +1.017719052744887e-05,4.88175914797099 +1.019719052744887e-05,5.014212242103136 +1.021719052744887e-05,4.981098968570099 +1.023719052744887e-05,4.925910179348372 +1.025719052744887e-05,5.039967010406609 +1.027719052744887e-05,4.914872421504026 +1.029719052744887e-05,4.925910179348372 +1.031719052744887e-05,5.014212242103136 +1.033719052744887e-05,4.826570358749262 +1.035719052744887e-05,4.966381958110972 +1.037719052744887e-05,5.003174484258791 +1.039719052744887e-05,4.84128736920839 +1.041719052744887e-05,5.010532989488354 +1.043719052744887e-05,4.959023452881408 +1.045719052744887e-05,4.896476158430117 +1.047719052744887e-05,5.04364626302139 +1.049719052744887e-05,4.929589431963153 +1.051719052744887e-05,4.911193168889245 +1.053719052744887e-05,5.0620425260953 +1.055719052744887e-05,4.892796905815335 +1.057719052744887e-05,4.929589431963153 +1.059719052744887e-05,5.028929252562263 +1.061719052744887e-05,4.867042137511862 +1.063719052744887e-05,4.984778221184881 +1.065719052744887e-05,4.995815979029227 +1.067719052744887e-05,4.892796905815335 +1.069719052744887e-05,4.995815979029227 +1.071719052744887e-05,4.959023452881408 +1.073719052744887e-05,4.903834663659681 +1.075719052744887e-05,5.047325515636173 +1.077719052744887e-05,4.92223092673359 +1.079719052744887e-05,4.907513916274462 +1.081719052744887e-05,5.054684020865736 +1.083719052744887e-05,4.859683632282299 +1.085719052744887e-05,4.918551674118808 +1.087719052744887e-05,4.995815979029227 +1.089719052744887e-05,4.889117653200554 +1.091719052744887e-05,4.992136726414445 +1.093719052744887e-05,4.970061210725754 +1.095719052744887e-05,4.874400642741426 +1.097719052744887e-05,5.017891494717918 +1.099719052744887e-05,4.944306442422281 +1.101719052744887e-05,4.925910179348372 +1.103719052744887e-05,5.036287757791827 +1.105719052744887e-05,4.907513916274462 +1.107719052744887e-05,4.929589431963153 +1.109719052744887e-05,5.032608505177045 +1.111719052744887e-05,4.88175914797099 +1.113719052744887e-05,4.999495231644008 +1.115719052744887e-05,4.995815979029227 +1.117719052744887e-05,4.878079895356208 +1.119719052744887e-05,5.047325515636173 +1.121719052744887e-05,4.925910179348372 +1.123719052744887e-05,4.911193168889245 +1.125719052744887e-05,4.992136726414445 +1.127719052744887e-05,4.911193168889245 +1.129719052744887e-05,4.951664947651844 +1.131719052744887e-05,5.087797294398772 +1.133719052744887e-05,4.892796905815335 +1.135719052744887e-05,4.947985695037063 +1.137719052744887e-05,5.036287757791827 +1.139719052744887e-05,4.892796905815335 +1.141719052744887e-05,4.981098968570099 +1.143719052744887e-05,4.981098968570099 +1.145719052744887e-05,4.907513916274462 +1.147719052744887e-05,5.025249999947482 +1.149719052744887e-05,4.914872421504026 +1.151719052744887e-05,4.903834663659681 +1.153719052744887e-05,5.047325515636173 +1.155719052744887e-05,4.900155411044899 +1.157719052744887e-05,4.966381958110972 +1.159719052744887e-05,5.028929252562263 +1.161719052744887e-05,4.889117653200554 +1.163719052744887e-05,4.966381958110972 +1.165719052744887e-05,4.999495231644008 +1.167719052744887e-05,4.885438400585771 +1.169719052744887e-05,5.058363273480518 +1.171719052744887e-05,4.951664947651844 +1.173719052744887e-05,4.889117653200554 +1.175719052744887e-05,5.036287757791827 +1.177719052744887e-05,4.92223092673359 +1.179719052744887e-05,4.925910179348372 +1.181719052744887e-05,5.069401031324864 +1.183719052744887e-05,4.870721390126644 +1.185719052744887e-05,4.947985695037063 +1.187719052744887e-05,5.028929252562263 +1.189719052744887e-05,4.874400642741426 +1.191719052744887e-05,4.981098968570099 +1.193719052744887e-05,4.944306442422281 +1.195719052744887e-05,4.86336288489708 +1.197719052744887e-05,5.014212242103136 +1.199719052744887e-05,4.925910179348372 +1.201719052744887e-05,4.936947937192717 +1.203719052744887e-05,5.054684020865736 +1.205719052744887e-05,4.892796905815335 +1.207719052744887e-05,4.936947937192717 +1.209719052744887e-05,5.032608505177045 +1.211719052744887e-05,4.337229760983277 +1.213719052744887e-05,0.8529775347848751 +1.215719052744887e-05,0.2311838428867445 +1.217719052744887e-05,0.09873074875459809 +1.219719052744887e-05,0.04354195953287032 +1.221719052744887e-05,0.02882494907374333 +1.223719052744887e-05,-0.08523188198449372 +1.225719052744887e-05,0.07297598045112519 +1.227719052744887e-05,-0.007967577074075027 +1.229719052744887e-05,-0.04843935583667536 +1.231719052744887e-05,0.0141079386146159 +1.233719052744887e-05,-0.0006090718445115328 +1.235719052744887e-05,-0.04108085060711186 +1.237719052744887e-05,-0.05947711368102082 +1.239719052744887e-05,0.003070180770270436 +1.241719052744887e-05,-0.04843935583667536 +1.243719052744887e-05,-0.04108085060711186 +1.245719052744887e-05,0.003070180770270436 +1.247719052744887e-05,-0.007967577074075027 +1.249719052744887e-05,-0.02268458753320246 +1.251719052744887e-05,-0.05211860845145733 +1.253719052744887e-05,-0.04476010322189383 +1.255719052744887e-05,-0.04108085060711186 +1.257719052744887e-05,-0.03740159799232989 +1.259719052744887e-05,-0.07051487152536628 +1.261719052744887e-05,-0.04108085060711186 +1.263719052744887e-05,-0.05947711368102082 +1.265719052744887e-05,-0.05947711368102082 +1.267719052744887e-05,-0.04476010322189383 +1.269719052744887e-05,-0.08155262936971219 +1.271719052744887e-05,-0.06683561891058476 +1.273719052744887e-05,-0.0557978610662393 +1.275719052744887e-05,-0.07051487152536628 +1.277719052744887e-05,-0.0557978610662393 +1.279719052744887e-05,-0.04476010322189383 +1.281719052744887e-05,-0.07419412414014825 +1.283719052744887e-05,-0.05947711368102082 +1.285719052744887e-05,-0.06315636629580279 +1.287719052744887e-05,-0.07787337675493022 +1.289719052744887e-05,-0.06315636629580279 +1.291719052744887e-05,-0.04843935583667536 +1.293719052744887e-05,-0.08891113459927569 +1.295719052744887e-05,-0.05947711368102082 +1.297719052744887e-05,-0.08155262936971219 +1.299719052744887e-05,-0.06315636629580279 +1.301719052744887e-05,-0.06683561891058476 +1.303719052744887e-05,-0.08155262936971219 +1.305719052744887e-05,-0.04843935583667536 +1.307719052744887e-05,-0.05211860845145733 +1.309719052744887e-05,-0.08155262936971219 +1.311719052744887e-05,-0.04843935583667536 +1.313719052744887e-05,-0.08155262936971219 +1.315719052744887e-05,-0.06315636629580279 +1.317719052744887e-05,-0.06315636629580279 +1.319719052744887e-05,-0.07787337675493022 +1.321719052744887e-05,-0.08155262936971219 +1.323719052744887e-05,-0.06315636629580279 +1.325719052744887e-05,-0.07787337675493022 +1.327719052744887e-05,-0.07051487152536628 +1.329719052744887e-05,-0.07787337675493022 +1.331719052744887e-05,-0.07419412414014825 +1.333719052744887e-05,-0.06315636629580279 +1.335719052744887e-05,-0.05947711368102082 +1.337719052744887e-05,-0.08523188198449372 +1.339719052744887e-05,-0.05947711368102082 +1.341719052744887e-05,-0.08523188198449372 +1.343719052744887e-05,-0.08891113459927569 +1.345719052744887e-05,-0.07051487152536628 +1.347719052744887e-05,-0.08155262936971219 +1.349719052744887e-05,2.530716727125394 +1.351719052744887e-05,4.370343034516313 +1.353719052744887e-05,5.084118041783991 +1.355719052744887e-05,4.959023452881408 +1.357719052744887e-05,4.86336288489708 +1.359719052744887e-05,5.017891494717918 +1.361719052744887e-05,4.844966621823171 +1.363719052744887e-05,4.84128736920839 +1.365719052744887e-05,4.940627189807499 +1.367719052744887e-05,4.852325127052735 +1.369719052744887e-05,4.92223092673359 +1.371719052744887e-05,4.892796905815335 +1.373719052744887e-05,4.870721390126644 +1.375719052744887e-05,5.003174484258791 +1.377719052744887e-05,4.844966621823171 +1.379719052744887e-05,4.889117653200554 +1.381719052744887e-05,4.999495231644008 +1.383719052744887e-05,4.856004379667517 +1.385719052744887e-05,4.918551674118808 +1.387719052744887e-05,4.984778221184881 +1.389719052744887e-05,4.844966621823171 +1.391719052744887e-05,4.944306442422281 +1.393719052744887e-05,4.966381958110972 +1.395719052744887e-05,4.859683632282299 +1.397719052744887e-05,4.984778221184881 +1.399719052744887e-05,4.900155411044899 +1.401719052744887e-05,4.878079895356208 +1.403719052744887e-05,5.014212242103136 +1.405719052744887e-05,4.870721390126644 +1.407719052744887e-05,4.918551674118808 +1.409719052744887e-05,4.988457473799663 +1.411719052744887e-05,4.804494843060571 +1.413719052744887e-05,4.959023452881408 +1.415719052744887e-05,4.995815979029227 +1.417719052744887e-05,4.874400642741426 +1.419719052744887e-05,4.981098968570099 +1.421719052744887e-05,4.973740463340535 +1.423719052744887e-05,4.892796905815335 +1.425719052744887e-05,5.032608505177045 +1.427719052744887e-05,4.918551674118808 +1.429719052744887e-05,4.914872421504026 +1.431719052744887e-05,5.047325515636173 +1.433719052744887e-05,4.903834663659681 +1.435719052744887e-05,4.944306442422281 +1.437719052744887e-05,5.025249999947482 +1.439719052744887e-05,4.878079895356208 +1.441719052744887e-05,4.981098968570099 +1.443719052744887e-05,5.003174484258791 +1.445719052744887e-05,4.885438400585771 +1.447719052744887e-05,5.017891494717918 +1.449719052744887e-05,4.944306442422281 +1.451719052744887e-05,4.911193168889245 +1.453719052744887e-05,5.047325515636173 +1.455719052744887e-05,4.885438400585771 +1.457719052744887e-05,4.936947937192717 +1.459719052744887e-05,5.069401031324864 +1.461719052744887e-05,4.896476158430117 +1.463719052744887e-05,5.003174484258791 +1.465719052744887e-05,5.014212242103136 +1.467719052744887e-05,4.889117653200554 +1.469719052744887e-05,5.032608505177045 +1.471719052744887e-05,4.988457473799663 +1.473719052744887e-05,4.925910179348372 +1.475719052744887e-05,5.109872810087463 +1.477719052744887e-05,4.907513916274462 +1.479719052744887e-05,4.918551674118808 +1.481719052744887e-05,5.084118041783991 +1.483719052744887e-05,4.918551674118808 +1.485719052744887e-05,4.955344200266627 +1.487719052744887e-05,5.021570747332699 +1.489719052744887e-05,4.859683632282299 +1.491719052744887e-05,5.006853736873572 +1.493719052744887e-05,4.988457473799663 +1.495719052744887e-05,4.900155411044899 +1.497719052744887e-05,5.032608505177045 +1.499719052744887e-05,4.918551674118808 +1.501719052744887e-05,4.940627189807499 +1.503719052744887e-05,5.087797294398772 +1.505719052744887e-05,4.889117653200554 +1.507719052744887e-05,4.988457473799663 +1.509719052744887e-05,5.076759536554427 +1.511719052744887e-05,4.903834663659681 +1.513719052744887e-05,5.003174484258791 +1.515719052744887e-05,5.006853736873572 +1.517719052744887e-05,4.914872421504026 +1.519719052744887e-05,4.970061210725754 +1.521719052744887e-05,4.936947937192717 +1.523719052744887e-05,4.896476158430117 +1.525719052744887e-05,5.076759536554427 +1.527719052744887e-05,4.936947937192717 +1.529719052744887e-05,4.925910179348372 +1.531719052744887e-05,5.087797294398772 +1.533719052744887e-05,4.878079895356208 +1.535719052744887e-05,4.947985695037063 +1.537719052744887e-05,5.028929252562263 +1.539719052744887e-05,4.86336288489708 +1.541719052744887e-05,4.988457473799663 +1.543719052744887e-05,4.988457473799663 +1.545719052744887e-05,4.896476158430117 +1.547719052744887e-05,5.021570747332699 +1.549719052744887e-05,4.96270270549619 +1.551719052744887e-05,4.900155411044899 +1.553719052744887e-05,5.051004768250954 +1.555719052744887e-05,4.911193168889245 +1.557719052744887e-05,4.951664947651844 +1.559719052744887e-05,5.051004768250954 +1.561719052744887e-05,4.896476158430117 +1.563719052744887e-05,4.984778221184881 +1.565719052744887e-05,5.014212242103136 +1.567719052744887e-05,4.885438400585771 +1.569719052744887e-05,5.028929252562263 +1.571719052744887e-05,4.973740463340535 +1.573719052744887e-05,4.918551674118808 +1.575719052744887e-05,5.080438789169209 +1.577719052744887e-05,4.925910179348372 +1.579719052744887e-05,4.92223092673359 +1.581719052744887e-05,5.0620425260953 +1.583719052744887e-05,4.892796905815335 +1.585719052744887e-05,4.959023452881408 +1.587719052744887e-05,5.039967010406609 +1.589719052744887e-05,4.867042137511862 +1.591719052744887e-05,4.988457473799663 +1.593719052744887e-05,4.981098968570099 +1.595719052744887e-05,4.903834663659681 +1.597719052744887e-05,5.028929252562263 +1.599719052744887e-05,4.936947937192717 +1.601719052744887e-05,4.925910179348372 +1.603719052744887e-05,5.003174484258791 +1.605719052744887e-05,4.874400642741426 +1.607719052744887e-05,4.973740463340535 +1.609719052744887e-05,5.051004768250954 +1.611719052744887e-05,4.896476158430117 +1.613719052744887e-05,4.955344200266627 +1.615719052744887e-05,4.999495231644008 +1.617719052744887e-05,4.870721390126644 +1.619719052744887e-05,5.006853736873572 +1.621719052744887e-05,4.959023452881408 +1.623719052744887e-05,4.892796905815335 +1.625719052744887e-05,5.032608505177045 +1.627719052744887e-05,4.896476158430117 +1.629719052744887e-05,4.914872421504026 +1.631719052744887e-05,5.036287757791827 +1.633719052744887e-05,4.878079895356208 +1.635719052744887e-05,4.92223092673359 +1.637719052744887e-05,5.025249999947482 +1.639719052744887e-05,4.870721390126644 +1.641719052744887e-05,4.973740463340535 +1.643719052744887e-05,4.955344200266627 +1.645719052744887e-05,4.867042137511862 +1.647719052744887e-05,4.992136726414445 +1.649719052744887e-05,4.925910179348372 +1.651719052744887e-05,4.892796905815335 +1.653719052744887e-05,5.025249999947482 +1.655719052744887e-05,4.870721390126644 +1.657719052744887e-05,4.907513916274462 +1.659719052744887e-05,5.032608505177045 +1.661719052744887e-05,4.859683632282299 +1.663719052744887e-05,4.96270270549619 +1.665719052744887e-05,4.992136726414445 +1.667719052744887e-05,4.867042137511862 +1.669719052744887e-05,5.014212242103136 +1.671719052744887e-05,4.955344200266627 +1.673719052744887e-05,4.878079895356208 +1.675719052744887e-05,5.025249999947482 +1.677719052744887e-05,4.896476158430117 +1.679719052744887e-05,4.892796905815335 +1.681719052744887e-05,5.054684020865736 +1.683719052744887e-05,4.92223092673359 +1.685719052744887e-05,4.933268684577936 +1.687719052744887e-05,5.021570747332699 +1.689719052744887e-05,4.878079895356208 +1.691719052744887e-05,4.966381958110972 +1.693719052744887e-05,4.973740463340535 +1.695719052744887e-05,4.852325127052735 +1.697719052744887e-05,4.995815979029227 +1.699719052744887e-05,4.918551674118808 +1.701719052744887e-05,4.892796905815335 +1.703719052744887e-05,5.025249999947482 +1.705719052744887e-05,4.885438400585771 +1.707719052744887e-05,4.911193168889245 +1.709719052744887e-05,5.010532989488354 +1.711719052744887e-05,4.867042137511862 +1.713719052744887e-05,4.940627189807499 +1.715719052744887e-05,4.981098968570099 +1.717719052744887e-05,4.874400642741426 +1.719719052744887e-05,5.014212242103136 +1.721719052744887e-05,4.959023452881408 +1.723719052744887e-05,4.878079895356208 +1.725719052744887e-05,5.010532989488354 +1.727719052744887e-05,4.911193168889245 +1.729719052744887e-05,4.907513916274462 +1.731719052744887e-05,5.04364626302139 +1.733719052744887e-05,4.896476158430117 +1.735719052744887e-05,4.951664947651844 +1.737719052744887e-05,5.036287757791827 +1.739719052744887e-05,4.852325127052735 +1.741719052744887e-05,4.959023452881408 +1.743719052744887e-05,4.970061210725754 +1.745719052744887e-05,4.86336288489708 +1.747719052744887e-05,5.006853736873572 +1.749719052744887e-05,4.951664947651844 +1.751719052744887e-05,4.914872421504026 +1.753719052744887e-05,5.014212242103136 +1.755719052744887e-05,4.885438400585771 +1.757719052744887e-05,4.914872421504026 +1.759719052744887e-05,5.04364626302139 +1.761719052744887e-05,4.878079895356208 +1.763719052744887e-05,4.959023452881408 +1.765719052744887e-05,4.992136726414445 +1.767719052744887e-05,4.885438400585771 +1.769719052744887e-05,4.992136726414445 +1.771719052744887e-05,4.951664947651844 +1.773719052744887e-05,4.874400642741426 +1.775719052744887e-05,5.051004768250954 +1.777719052744887e-05,4.896476158430117 +1.779719052744887e-05,4.889117653200554 +1.781719052744887e-05,5.021570747332699 +1.783719052744887e-05,4.86336288489708 +1.785719052744887e-05,4.92223092673359 +1.787719052744887e-05,5.028929252562263 +1.789719052744887e-05,4.870721390126644 +1.791719052744887e-05,4.981098968570099 +1.793719052744887e-05,4.981098968570099 +1.795719052744887e-05,4.856004379667517 +1.797719052744887e-05,5.003174484258791 +1.799719052744887e-05,4.925910179348372 +1.801719052744887e-05,4.889117653200554 +1.803719052744887e-05,5.028929252562263 +1.805719052744887e-05,4.848645874437953 +1.807719052744887e-05,4.900155411044899 +1.809719052744887e-05,5.028929252562263 +1.811719052744887e-05,4.88175914797099 +1.813719052744887e-05,4.936947937192717 +1.815719052744887e-05,5.010532989488354 +1.817719052744887e-05,4.878079895356208 +1.819719052744887e-05,4.995815979029227 +1.821719052744887e-05,4.966381958110972 +1.823719052744887e-05,4.878079895356208 +1.825719052744887e-05,5.054684020865736 +1.827719052744887e-05,4.911193168889245 +1.829719052744887e-05,4.892796905815335 +1.831719052744887e-05,5.036287757791827 +1.833719052744887e-05,4.878079895356208 +1.835719052744887e-05,4.940627189807499 +1.837719052744887e-05,5.025249999947482 +1.839719052744887e-05,4.878079895356208 +1.841719052744887e-05,4.951664947651844 +1.843719052744887e-05,5.003174484258791 +1.845719052744887e-05,4.859683632282299 +1.847719052744887e-05,5.010532989488354 +1.849719052744887e-05,4.929589431963153 +1.851719052744887e-05,4.892796905815335 +1.853719052744887e-05,5.017891494717918 +1.855719052744887e-05,4.903834663659681 +1.857719052744887e-05,4.896476158430117 +1.859719052744887e-05,5.017891494717918 +1.861719052744887e-05,4.856004379667517 +1.863719052744887e-05,4.947985695037063 +1.865719052744887e-05,4.999495231644008 +1.867719052744887e-05,4.88175914797099 +1.869719052744887e-05,4.947985695037063 +1.871719052744887e-05,4.947985695037063 +1.873719052744887e-05,4.878079895356208 +1.875719052744887e-05,5.051004768250954 +1.877719052744887e-05,4.907513916274462 +1.879719052744887e-05,4.88175914797099 +1.881719052744887e-05,5.036287757791827 +1.883719052744887e-05,4.892796905815335 +1.885719052744887e-05,4.918551674118808 +1.887719052744887e-05,5.025249999947482 +1.889719052744887e-05,4.88175914797099 +1.891719052744887e-05,4.955344200266627 +1.893719052744887e-05,4.96270270549619 +1.895719052744887e-05,4.856004379667517 +1.897719052744887e-05,4.929589431963153 +1.899719052744887e-05,4.852325127052735 +1.901719052744887e-05,4.867042137511862 +1.903719052744887e-05,5.028929252562263 +1.905719052744887e-05,4.830249611364044 +1.907719052744887e-05,4.903834663659681 +1.909719052744887e-05,5.039967010406609 +1.911719052744887e-05,4.907513916274462 +1.913719052744887e-05,4.947985695037063 +1.915719052744887e-05,5.006853736873572 +1.917719052744887e-05,4.86336288489708 +1.919719052744887e-05,4.981098968570099 +1.921719052744887e-05,4.940627189807499 +1.923719052744887e-05,4.870721390126644 +1.925719052744887e-05,5.010532989488354 +1.927719052744887e-05,4.900155411044899 +1.929719052744887e-05,4.911193168889245 +1.931719052744887e-05,5.039967010406609 +1.933719052744887e-05,4.856004379667517 +1.935719052744887e-05,4.907513916274462 +1.937719052744887e-05,4.992136726414445 +1.939719052744887e-05,4.859683632282299 +1.941719052744887e-05,4.966381958110972 +1.943719052744887e-05,4.970061210725754 +1.945719052744887e-05,4.874400642741426 +1.947719052744887e-05,4.984778221184881 +1.949719052744887e-05,4.896476158430117 +1.951719052744887e-05,4.86336288489708 +1.953719052744887e-05,5.025249999947482 +1.955719052744887e-05,4.892796905815335 +1.957719052744887e-05,4.907513916274462 +1.959719052744887e-05,5.014212242103136 +1.961719052744887e-05,4.844966621823171 +1.963719052744887e-05,4.947985695037063 +1.965719052744887e-05,4.970061210725754 +1.967719052744887e-05,4.852325127052735 +1.969719052744887e-05,4.988457473799663 +1.971719052744887e-05,4.947985695037063 +1.973719052744887e-05,4.870721390126644 +1.975719052744887e-05,5.04364626302139 +1.977719052744887e-05,4.903834663659681 +1.979719052744887e-05,4.896476158430117 +1.981719052744887e-05,5.04364626302139 +1.983719052744887e-05,4.870721390126644 +1.985719052744887e-05,4.918551674118808 +1.987719052744887e-05,5.028929252562263 +1.989719052744887e-05,4.856004379667517 +1.991719052744887e-05,4.981098968570099 +1.993719052744887e-05,4.852325127052735 +1.995719052744887e-05,4.867042137511862 +1.997719052744887e-05,5.106193557472682 +1.999719052744887e-05,4.819211853519699 +2.001719052744887e-05,4.959023452881408 +2.003719052744887e-05,5.032608505177045 +2.005719052744887e-05,4.874400642741426 +2.007719052744887e-05,4.929589431963153 +2.009719052744887e-05,5.017891494717918 +2.011719052744887e-05,4.889117653200554 +2.013719052744887e-05,4.973740463340535 +2.015719052744887e-05,5.017891494717918 +2.017719052744887e-05,4.903834663659681 +2.019719052744887e-05,4.988457473799663 +2.021719052744887e-05,4.973740463340535 +2.023719052744887e-05,4.944306442422281 +2.025719052744887e-05,5.017891494717918 +2.027719052744887e-05,4.918551674118808 +2.029719052744887e-05,4.944306442422281 +2.031719052744887e-05,5.010532989488354 +2.033719052744887e-05,4.903834663659681 +2.035719052744887e-05,4.947985695037063 +2.037719052744887e-05,5.051004768250954 +2.039719052744887e-05,4.903834663659681 +2.041719052744887e-05,4.981098968570099 +2.043719052744887e-05,4.988457473799663 +2.045719052744887e-05,4.933268684577936 +2.047719052744887e-05,5.006853736873572 +2.049719052744887e-05,4.951664947651844 +2.051719052744887e-05,4.966381958110972 +2.053719052744887e-05,5.010532989488354 +2.055719052744887e-05,4.907513916274462 +2.057719052744887e-05,4.951664947651844 +2.059719052744887e-05,5.04364626302139 +2.061719052744887e-05,4.914872421504026 +2.063719052744887e-05,4.973740463340535 +2.065719052744887e-05,4.995815979029227 +2.067719052744887e-05,4.914872421504026 +2.069719052744887e-05,4.977419715955318 +2.071719052744887e-05,4.988457473799663 +2.073719052744887e-05,4.933268684577936 +2.075719052744887e-05,5.021570747332699 +2.077719052744887e-05,4.911193168889245 +2.079719052744887e-05,4.955344200266627 +2.081719052744887e-05,5.04364626302139 +2.083719052744887e-05,4.907513916274462 +2.085719052744887e-05,4.966381958110972 +2.087719052744887e-05,5.028929252562263 +2.089719052744887e-05,4.911193168889245 +2.091719052744887e-05,4.988457473799663 +2.093719052744887e-05,4.973740463340535 +2.095719052744887e-05,4.914872421504026 +2.097719052744887e-05,4.981098968570099 +2.099719052744887e-05,4.92223092673359 +2.101719052744887e-05,4.947985695037063 +2.103719052744887e-05,5.017891494717918 +2.105719052744887e-05,4.896476158430117 +2.107719052744887e-05,4.959023452881408 +2.109719052744887e-05,5.036287757791827 +2.111719052744887e-05,4.892796905815335 +2.113719052744887e-05,4.988457473799663 +2.115719052744887e-05,5.025249999947482 +2.117719052744887e-05,4.92223092673359 +2.119719052744887e-05,5.04364626302139 +2.121719052744887e-05,4.96270270549619 +2.123719052744887e-05,4.940627189807499 +2.125719052744887e-05,5.058363273480518 +2.127719052744887e-05,4.940627189807499 +2.129719052744887e-05,4.951664947651844 +2.131719052744887e-05,5.378458250966538 +2.133719052744887e-05,4.767702316912753 +2.135719052744887e-05,4.918551674118808 +2.137719052744887e-05,5.003174484258791 +2.139719052744887e-05,4.867042137511862 +2.141719052744887e-05,4.988457473799663 +2.143719052744887e-05,5.032608505177045 +2.145719052744887e-05,4.903834663659681 +2.147719052744887e-05,5.04364626302139 +2.149719052744887e-05,4.959023452881408 +2.151719052744887e-05,4.907513916274462 +2.153719052744887e-05,5.036287757791827 +2.155719052744887e-05,4.911193168889245 +2.157719052744887e-05,4.933268684577936 +2.159719052744887e-05,5.054684020865736 +2.161719052744887e-05,4.907513916274462 +2.163719052744887e-05,4.970061210725754 +2.165719052744887e-05,5.010532989488354 +2.167719052744887e-05,4.892796905815335 +2.169719052744887e-05,5.04364626302139 +2.171719052744887e-05,5.051004768250954 +2.173719052744887e-05,4.918551674118808 +2.175719052744887e-05,5.021570747332699 +2.177719052744887e-05,4.940627189807499 +2.179719052744887e-05,4.914872421504026 +2.181719052744887e-05,5.0620425260953 +2.183719052744887e-05,4.903834663659681 +2.185719052744887e-05,4.933268684577936 +2.187719052744887e-05,5.047325515636173 +2.189719052744887e-05,4.859683632282299 +2.191719052744887e-05,4.984778221184881 +2.193719052744887e-05,4.992136726414445 +2.195719052744887e-05,4.878079895356208 +2.197719052744887e-05,5.014212242103136 +2.199719052744887e-05,4.959023452881408 +2.201719052744887e-05,4.903834663659681 +2.203719052744887e-05,5.025249999947482 +2.205719052744887e-05,4.878079895356208 +2.207719052744887e-05,4.944306442422281 +2.209719052744887e-05,5.04364626302139 +2.211719052744887e-05,4.889117653200554 +2.213719052744887e-05,4.970061210725754 +2.215719052744887e-05,5.021570747332699 +2.217719052744887e-05,4.892796905815335 +2.219719052744887e-05,5.021570747332699 +2.221719052744887e-05,4.981098968570099 +2.223719052744887e-05,4.885438400585771 +2.225719052744887e-05,5.065721778710081 +2.227719052744887e-05,4.929589431963153 +2.229719052744887e-05,4.907513916274462 +2.231719052744887e-05,5.039967010406609 +2.233719052744887e-05,4.911193168889245 +2.235719052744887e-05,4.929589431963153 +2.237719052744887e-05,5.054684020865736 +2.239719052744887e-05,4.885438400585771 +2.241719052744887e-05,4.981098968570099 +2.243719052744887e-05,4.944306442422281 +2.245719052744887e-05,4.874400642741426 +2.247719052744887e-05,5.032608505177045 +2.249719052744887e-05,4.911193168889245 +2.251719052744887e-05,4.889117653200554 +2.253719052744887e-05,5.069401031324864 +2.255719052744887e-05,4.911193168889245 +2.257719052744887e-05,4.96270270549619 +2.259719052744887e-05,5.0620425260953 +2.261719052744887e-05,4.874400642741426 +2.263719052744887e-05,4.977419715955318 +2.265719052744887e-05,5.017891494717918 +2.267719052744887e-05,4.874400642741426 +2.269719052744887e-05,5.021570747332699 +2.271719052744887e-05,4.981098968570099 +2.273719052744887e-05,4.88175914797099 +2.275719052744887e-05,5.054684020865736 +2.277719052744887e-05,4.944306442422281 +2.279719052744887e-05,4.911193168889245 +2.281719052744887e-05,5.0620425260953 +2.283719052744887e-05,4.911193168889245 +2.285719052744887e-05,4.936947937192717 +2.287719052744887e-05,5.025249999947482 +2.289719052744887e-05,4.892796905815335 +2.291719052744887e-05,4.970061210725754 +2.293719052744887e-05,4.999495231644008 +2.295719052744887e-05,4.88175914797099 +2.297719052744887e-05,5.021570747332699 +2.299719052744887e-05,4.966381958110972 +2.301719052744887e-05,4.918551674118808 +2.303719052744887e-05,5.032608505177045 +2.305719052744887e-05,4.903834663659681 +2.307719052744887e-05,4.929589431963153 +2.309719052744887e-05,5.058363273480518 +2.311719052744887e-05,4.900155411044899 +2.313719052744887e-05,4.973740463340535 +2.315719052744887e-05,5.025249999947482 +2.317719052744887e-05,4.896476158430117 +2.319719052744887e-05,4.995815979029227 +2.321719052744887e-05,4.981098968570099 +2.323719052744887e-05,4.885438400585771 +2.325719052744887e-05,5.0620425260953 +2.327719052744887e-05,4.92223092673359 +2.329719052744887e-05,4.903834663659681 +2.331719052744887e-05,5.084118041783991 +2.333719052744887e-05,4.844966621823171 +2.335719052744887e-05,4.940627189807499 +2.337719052744887e-05,5.047325515636173 +2.339719052744887e-05,4.867042137511862 +2.341719052744887e-05,4.955344200266627 +2.343719052744887e-05,5.014212242103136 +2.345719052744887e-05,4.892796905815335 +2.347719052744887e-05,5.014212242103136 +2.349719052744887e-05,4.940627189807499 +2.351719052744887e-05,4.889117653200554 +2.353719052744887e-05,5.025249999947482 +2.355719052744887e-05,4.92223092673359 +2.357719052744887e-05,4.918551674118808 +2.359719052744887e-05,5.047325515636173 +2.361719052744887e-05,4.870721390126644 +2.363719052744887e-05,4.96270270549619 +2.365719052744887e-05,5.028929252562263 +2.367719052744887e-05,4.889117653200554 +2.369719052744887e-05,5.036287757791827 +2.371719052744887e-05,4.981098968570099 +2.373719052744887e-05,4.885438400585771 +2.375719052744887e-05,5.017891494717918 +2.377719052744887e-05,4.925910179348372 +2.379719052744887e-05,4.911193168889245 +2.381719052744887e-05,5.065721778710081 +2.383719052744887e-05,4.889117653200554 +2.385719052744887e-05,4.911193168889245 +2.387719052744887e-05,5.017891494717918 +2.389719052744887e-05,4.874400642741426 +2.391719052744887e-05,4.973740463340535 +2.393719052744887e-05,4.995815979029227 +2.395719052744887e-05,4.889117653200554 +2.397719052744887e-05,4.999495231644008 +2.399719052744887e-05,4.947985695037063 +2.401719052744887e-05,4.900155411044899 +2.403719052744887e-05,5.025249999947482 +2.405719052744887e-05,4.892796905815335 +2.407719052744887e-05,4.929589431963153 +2.409719052744887e-05,5.039967010406609 +2.411719052744887e-05,4.88175914797099 +2.413719052744887e-05,4.977419715955318 +2.415719052744887e-05,5.010532989488354 +2.417719052744887e-05,4.852325127052735 +2.419719052744887e-05,5.014212242103136 +2.421719052744887e-05,4.977419715955318 +2.423719052744887e-05,4.837608116593607 +2.425719052744887e-05,-0.1588169342801304 +2.427719052744887e-05,-0.3869305963966045 +2.429719052744887e-05,-0.1220244081323121 +2.431719052744887e-05,-0.09259038721405766 +2.433719052744887e-05,0.08401373829547065 +2.435719052744887e-05,-0.1440999238210035 +2.437719052744887e-05,0.05457971737721623 +2.439719052744887e-05,0.01042868599983393 +2.441719052744887e-05,-0.05211860845145733 +2.443719052744887e-05,-0.004288324459293502 +2.445719052744887e-05,0.006749433385051962 +2.447719052744887e-05,-0.04476010322189383 +2.449719052744887e-05,-0.02636384014798443 +2.451719052744887e-05,0.02146644384417939 +2.453719052744887e-05,-0.04108085060711186 +2.455719052744887e-05,-0.03740159799232989 +2.457719052744887e-05,-0.01532608230363897 +2.459719052744887e-05,-0.05211860845145733 +2.461719052744887e-05,-0.05211860845145733 +2.463719052744887e-05,-0.02268458753320246 +2.465719052744887e-05,-0.04108085060711186 +2.467719052744887e-05,-0.04476010322189383 +2.469719052744887e-05,-0.05211860845145733 +2.471719052744887e-05,-0.05211860845145733 +2.473719052744887e-05,-0.0557978610662393 +2.475719052744887e-05,-0.05211860845145733 +2.477719052744887e-05,-0.06315636629580279 +2.479719052744887e-05,-0.0557978610662393 +2.481719052744887e-05,-0.05947711368102082 +2.483719052744887e-05,-0.0557978610662393 +2.485719052744887e-05,-0.07419412414014825 +2.487719052744887e-05,-0.07419412414014825 +2.489719052744887e-05,-0.0557978610662393 +2.491719052744887e-05,-0.06315636629580279 +2.493719052744887e-05,-0.04108085060711186 +2.495719052744887e-05,-0.05211860845145733 +2.497719052744887e-05,-0.07787337675493022 +2.499719052744887e-05,-0.06683561891058476 +2.501719052744887e-05,-0.05947711368102082 +2.503719052744887e-05,-0.08155262936971219 +2.505719052744887e-05,-0.07787337675493022 +2.507719052744887e-05,-0.08523188198449372 +2.509719052744887e-05,-0.06315636629580279 +2.511719052744887e-05,-0.06683561891058476 +2.513719052744887e-05,-0.07419412414014825 +2.515719052744887e-05,-0.09259038721405766 +2.517719052744887e-05,-0.05947711368102082 +2.519719052744887e-05,-0.05947711368102082 +2.521719052744887e-05,-0.08891113459927569 +2.523719052744887e-05,-0.05211860845145733 +2.525719052744887e-05,-0.07787337675493022 +2.527719052744887e-05,-0.07419412414014825 +2.529719052744887e-05,-0.07051487152536628 +2.531719052744887e-05,-0.09626963982883918 +2.533719052744887e-05,-0.05211860845145733 +2.535719052744887e-05,-0.08155262936971219 +2.537719052744887e-05,-0.08523188198449372 +2.539719052744887e-05,-0.07051487152536628 +2.541719052744887e-05,-0.08891113459927569 +2.543719052744887e-05,-0.08891113459927569 +2.545719052744887e-05,-0.08155262936971219 +2.547719052744887e-05,-0.07051487152536628 +2.549719052744887e-05,-0.03740159799232989 +2.551719052744887e-05,-0.07787337675493022 +2.553719052744887e-05,-0.07787337675493022 +2.555719052744887e-05,-0.05211860845145733 +2.557719052744887e-05,-0.07787337675493022 +2.559719052744887e-05,-0.07787337675493022 +2.561719052744887e-05,0.7131659354231652 +2.563719052744887e-05,4.466003602500642 +2.565719052744887e-05,5.150344588850064 +2.567719052744887e-05,4.966381958110972 +2.569719052744887e-05,4.874400642741426 +2.571719052744887e-05,4.925910179348372 +2.573719052744887e-05,4.86336288489708 +2.575719052744887e-05,4.900155411044899 +2.577719052744887e-05,4.885438400585771 +2.579719052744887e-05,4.892796905815335 +2.581719052744887e-05,4.947985695037063 +2.583719052744887e-05,4.833928863978826 +2.585719052744887e-05,4.907513916274462 +2.587719052744887e-05,4.999495231644008 +2.589719052744887e-05,4.811853348290135 +2.591719052744887e-05,4.936947937192717 +2.593719052744887e-05,4.970061210725754 +2.595719052744887e-05,4.848645874437953 +2.597719052744887e-05,4.977419715955318 +2.599719052744887e-05,4.929589431963153 +2.601719052744887e-05,4.867042137511862 +2.603719052744887e-05,5.010532989488354 +2.605719052744887e-05,4.911193168889245 +2.607719052744887e-05,4.896476158430117 +2.609719052744887e-05,5.006853736873572 +2.611719052744887e-05,4.88175914797099 +2.613719052744887e-05,4.959023452881408 +2.615719052744887e-05,5.017891494717918 +2.617719052744887e-05,4.874400642741426 +2.619719052744887e-05,5.003174484258791 +2.621719052744887e-05,4.988457473799663 +2.623719052744887e-05,4.892796905815335 +2.625719052744887e-05,5.058363273480518 +2.627719052744887e-05,4.929589431963153 +2.629719052744887e-05,4.911193168889245 +2.631719052744887e-05,5.051004768250954 +2.633719052744887e-05,4.911193168889245 +2.635719052744887e-05,4.944306442422281 +2.637719052744887e-05,5.04364626302139 +2.639719052744887e-05,4.885438400585771 +2.641719052744887e-05,4.973740463340535 +2.643719052744887e-05,5.014212242103136 +2.645719052744887e-05,4.907513916274462 +2.647719052744887e-05,5.010532989488354 +2.649719052744887e-05,4.947985695037063 +2.651719052744887e-05,4.885438400585771 +2.653719052744887e-05,5.054684020865736 +2.655719052744887e-05,4.936947937192717 +2.657719052744887e-05,4.933268684577936 +2.659719052744887e-05,5.021570747332699 +2.661719052744887e-05,4.88175914797099 +2.663719052744887e-05,4.977419715955318 +2.665719052744887e-05,5.047325515636173 +2.667719052744887e-05,4.889117653200554 +2.669719052744887e-05,5.025249999947482 +2.671719052744887e-05,5.032608505177045 +2.673719052744887e-05,4.900155411044899 +2.675719052744887e-05,5.028929252562263 +2.677719052744887e-05,4.951664947651844 +2.679719052744887e-05,4.918551674118808 +2.681719052744887e-05,5.069401031324864 +2.683719052744887e-05,4.914872421504026 +2.685719052744887e-05,4.947985695037063 +2.687719052744887e-05,5.0620425260953 +2.689719052744887e-05,4.86336288489708 +2.691719052744887e-05,4.992136726414445 +2.693719052744887e-05,5.028929252562263 +2.695719052744887e-05,4.900155411044899 +2.697719052744887e-05,5.010532989488354 +2.699719052744887e-05,4.918551674118808 +2.701719052744887e-05,4.918551674118808 +2.703719052744887e-05,5.058363273480518 +2.705719052744887e-05,4.92223092673359 +2.707719052744887e-05,4.925910179348372 +2.709719052744887e-05,5.025249999947482 +2.711719052744887e-05,4.844966621823171 +2.713719052744887e-05,5.017891494717918 +2.715719052744887e-05,5.036287757791827 +2.717719052744887e-05,4.878079895356208 +2.719719052744887e-05,5.054684020865736 +2.721719052744887e-05,4.995815979029227 +2.723719052744887e-05,4.911193168889245 +2.725719052744887e-05,5.073080283939645 +2.727719052744887e-05,4.947985695037063 +2.729719052744887e-05,4.918551674118808 +2.731719052744887e-05,5.073080283939645 +2.733719052744887e-05,4.900155411044899 +2.735719052744887e-05,4.933268684577936 +2.737719052744887e-05,5.065721778710081 +2.739719052744887e-05,4.878079895356208 +2.741719052744887e-05,4.951664947651844 +2.743719052744887e-05,5.010532989488354 +2.745719052744887e-05,4.859683632282299 +2.747719052744887e-05,5.017891494717918 +2.749719052744887e-05,4.973740463340535 +2.751719052744887e-05,4.903834663659681 +2.753719052744887e-05,5.04364626302139 +2.755719052744887e-05,4.914872421504026 +2.757719052744887e-05,4.929589431963153 +2.759719052744887e-05,5.051004768250954 +2.761719052744887e-05,4.907513916274462 +2.763719052744887e-05,4.955344200266627 +2.765719052744887e-05,5.014212242103136 +2.767719052744887e-05,4.878079895356208 +2.769719052744887e-05,4.999495231644008 +2.771719052744887e-05,4.992136726414445 +2.773719052744887e-05,4.885438400585771 +2.775719052744887e-05,5.028929252562263 +2.777719052744887e-05,4.944306442422281 +2.779719052744887e-05,4.918551674118808 +2.781719052744887e-05,5.069401031324864 +2.783719052744887e-05,4.903834663659681 +2.785719052744887e-05,4.951664947651844 +2.787719052744887e-05,5.065721778710081 +2.789719052744887e-05,4.885438400585771 +2.791719052744887e-05,4.96270270549619 +2.793719052744887e-05,5.010532989488354 +2.795719052744887e-05,4.892796905815335 +2.797719052744887e-05,5.006853736873572 +2.799719052744887e-05,4.959023452881408 +2.801719052744887e-05,4.889117653200554 +2.803719052744887e-05,5.047325515636173 +2.805719052744887e-05,4.933268684577936 +2.807719052744887e-05,4.936947937192717 +2.809719052744887e-05,5.051004768250954 +2.811719052744887e-05,4.874400642741426 +2.813719052744887e-05,4.959023452881408 +2.815719052744887e-05,5.032608505177045 +2.817719052744887e-05,4.878079895356208 +2.819719052744887e-05,4.988457473799663 +2.821719052744887e-05,4.995815979029227 +2.823719052744887e-05,4.900155411044899 +2.825719052744887e-05,5.017891494717918 +2.827719052744887e-05,4.947985695037063 +2.829719052744887e-05,4.918551674118808 +2.831719052744887e-05,5.054684020865736 +2.833719052744887e-05,4.907513916274462 +2.835719052744887e-05,4.92223092673359 +2.837719052744887e-05,5.058363273480518 +2.839719052744887e-05,4.885438400585771 +2.841719052744887e-05,4.966381958110972 +2.843719052744887e-05,4.995815979029227 +2.845719052744887e-05,4.889117653200554 +2.847719052744887e-05,5.006853736873572 +2.849719052744887e-05,4.96270270549619 +2.851719052744887e-05,4.885438400585771 +2.853719052744887e-05,5.028929252562263 +2.855719052744887e-05,4.903834663659681 +2.857719052744887e-05,4.940627189807499 +2.859719052744887e-05,5.04364626302139 +2.861719052744887e-05,4.900155411044899 +2.863719052744887e-05,4.955344200266627 +2.865719052744887e-05,5.017891494717918 +2.867719052744887e-05,4.870721390126644 +2.869719052744887e-05,5.010532989488354 +2.871719052744887e-05,5.006853736873572 +2.873719052744887e-05,4.970061210725754 +2.875719052744887e-05,5.098835052243118 +2.877719052744887e-05,4.933268684577936 +2.879719052744887e-05,4.914872421504026 +2.881719052744887e-05,5.080438789169209 +2.883719052744887e-05,4.907513916274462 +2.885719052744887e-05,4.940627189807499 +2.887719052744887e-05,5.054684020865736 +2.889719052744887e-05,4.889117653200554 +2.891719052744887e-05,4.959023452881408 +2.893719052744887e-05,5.017891494717918 +2.895719052744887e-05,4.907513916274462 +2.897719052744887e-05,4.992136726414445 +2.899719052744887e-05,4.977419715955318 +2.901719052744887e-05,4.911193168889245 +2.903719052744887e-05,5.028929252562263 +2.905719052744887e-05,4.900155411044899 +2.907719052744887e-05,4.914872421504026 +2.909719052744887e-05,5.039967010406609 +2.911719052744887e-05,4.896476158430117 +2.913719052744887e-05,4.970061210725754 +2.915719052744887e-05,5.032608505177045 +2.917719052744887e-05,4.900155411044899 +2.919719052744887e-05,4.999495231644008 +2.921719052744887e-05,4.995815979029227 +2.923719052744887e-05,4.900155411044899 +2.925719052744887e-05,5.054684020865736 +2.927719052744887e-05,4.955344200266627 +2.929719052744887e-05,4.918551674118808 +2.931719052744887e-05,5.080438789169209 +2.933719052744887e-05,4.911193168889245 +2.935719052744887e-05,4.933268684577936 +2.937719052744887e-05,5.058363273480518 +2.939719052744887e-05,4.903834663659681 +2.941719052744887e-05,4.959023452881408 +2.943719052744887e-05,5.021570747332699 +2.945719052744887e-05,4.885438400585771 +2.947719052744887e-05,5.003174484258791 +2.949719052744887e-05,4.951664947651844 +2.951719052744887e-05,4.878079895356208 +2.953719052744887e-05,5.039967010406609 +2.955719052744887e-05,4.911193168889245 +2.957719052744887e-05,4.936947937192717 +2.959719052744887e-05,5.051004768250954 +2.961719052744887e-05,4.900155411044899 +2.963719052744887e-05,4.955344200266627 +2.965719052744887e-05,5.028929252562263 +2.967719052744887e-05,4.88175914797099 +2.969719052744887e-05,4.999495231644008 +2.971719052744887e-05,4.995815979029227 +2.973719052744887e-05,4.889117653200554 +2.975719052744887e-05,5.036287757791827 +2.977719052744887e-05,4.947985695037063 +2.979719052744887e-05,4.903834663659681 +2.981719052744887e-05,5.084118041783991 +2.983719052744887e-05,4.944306442422281 +2.985719052744887e-05,4.947985695037063 +2.987719052744887e-05,5.051004768250954 +2.989719052744887e-05,4.870721390126644 +2.991719052744887e-05,4.970061210725754 +2.993719052744887e-05,5.014212242103136 +2.995719052744887e-05,4.885438400585771 +2.997719052744887e-05,4.992136726414445 +2.999719052744887e-05,4.96270270549619 +3.001719052744887e-05,4.925910179348372 +3.003719052744887e-05,5.028929252562263 +3.005719052744887e-05,4.903834663659681 +3.007719052744887e-05,4.925910179348372 +3.009719052744887e-05,5.047325515636173 +3.011719052744887e-05,4.892796905815335 +3.013719052744887e-05,4.955344200266627 +3.015719052744887e-05,5.032608505177045 +3.017719052744887e-05,4.870721390126644 +3.019719052744887e-05,5.021570747332699 +3.021719052744887e-05,5.017891494717918 +3.023719052744887e-05,4.885438400585771 +3.025719052744887e-05,5.032608505177045 +3.027719052744887e-05,4.955344200266627 +3.029719052744887e-05,4.911193168889245 +3.031719052744887e-05,5.0620425260953 +3.033719052744887e-05,4.914872421504026 +3.035719052744887e-05,4.88175914797099 +3.037719052744887e-05,4.999495231644008 +3.039719052744887e-05,4.859683632282299 +3.041719052744887e-05,4.955344200266627 +3.043719052744887e-05,5.025249999947482 +3.045719052744887e-05,4.896476158430117 +3.047719052744887e-05,4.988457473799663 +3.049719052744887e-05,4.988457473799663 +3.051719052744887e-05,4.896476158430117 +3.053719052744887e-05,5.025249999947482 +3.055719052744887e-05,4.889117653200554 +3.057719052744887e-05,4.911193168889245 +3.059719052744886e-05,5.058363273480518 +3.061719052744887e-05,4.889117653200554 +3.063719052744887e-05,4.929589431963153 +3.065719052744887e-05,5.032608505177045 +3.067719052744887e-05,4.889117653200554 +3.069719052744887e-05,4.96270270549619 +3.071719052744887e-05,5.003174484258791 +3.073719052744887e-05,4.896476158430117 +3.075719052744887e-05,5.051004768250954 +3.077719052744887e-05,4.940627189807499 +3.079719052744887e-05,4.900155411044899 +3.081719052744887e-05,5.047325515636173 +3.083719052744887e-05,4.918551674118808 +3.085719052744887e-05,4.933268684577936 +3.087719052744887e-05,5.047325515636173 +3.089719052744887e-05,4.86336288489708 +3.091719052744887e-05,4.984778221184881 +3.093719052744886e-05,5.010532989488354 +3.095719052744887e-05,4.885438400585771 +3.097719052744887e-05,4.999495231644008 +3.099719052744887e-05,4.959023452881408 +3.101719052744887e-05,4.907513916274462 +3.103719052744887e-05,5.006853736873572 +3.105719052744887e-05,4.889117653200554 +3.107719052744887e-05,4.911193168889245 +3.109719052744887e-05,5.047325515636173 +3.111719052744887e-05,4.88175914797099 +3.113719052744887e-05,4.936947937192717 +3.115719052744887e-05,5.028929252562263 +3.117719052744887e-05,4.878079895356208 +3.119719052744887e-05,5.087797294398772 +3.121719052744887e-05,4.933268684577936 +3.123719052744887e-05,4.826570358749262 +3.125719052744887e-05,5.010532989488354 +3.127719052744886e-05,4.92223092673359 +3.129719052744887e-05,4.896476158430117 +3.131719052744886e-05,5.032608505177045 +3.133719052744887e-05,4.900155411044899 +3.135719052744887e-05,4.936947937192717 +3.137719052744887e-05,5.032608505177045 +3.139719052744887e-05,4.878079895356208 +3.141719052744887e-05,4.951664947651844 +3.143719052744887e-05,4.999495231644008 +3.145719052744887e-05,4.789777832601444 +3.147719052744887e-05,4.955344200266627 +3.149719052744887e-05,4.929589431963153 +3.151719052744887e-05,4.911193168889245 +3.153719052744887e-05,5.021570747332699 +3.155719052744887e-05,4.907513916274462 +3.157719052744887e-05,4.900155411044899 +3.159719052744887e-05,5.017891494717918 +3.161719052744887e-05,4.848645874437953 +3.163719052744887e-05,4.959023452881408 +3.165719052744886e-05,5.014212242103136 +3.167719052744887e-05,4.870721390126644 +3.169719052744887e-05,4.966381958110972 +3.171719052744887e-05,4.959023452881408 +3.173719052744887e-05,4.889117653200554 +3.175719052744887e-05,5.039967010406609 +3.177719052744887e-05,4.929589431963153 +3.179719052744887e-05,4.907513916274462 +3.181719052744887e-05,5.036287757791827 +3.183719052744887e-05,4.907513916274462 +3.185719052744887e-05,4.914872421504026 +3.187719052744887e-05,5.039967010406609 +3.189719052744887e-05,4.856004379667517 +3.191719052744887e-05,4.940627189807499 +3.193719052744887e-05,4.981098968570099 +3.195719052744887e-05,4.859683632282299 +3.197719052744887e-05,4.988457473799663 +3.199719052744886e-05,4.995815979029227 +3.201719052744887e-05,4.900155411044899 +3.203719052744887e-05,5.014212242103136 +3.205719052744887e-05,5.032608505177045 +3.207719052744887e-05,5.639685186616049 +3.209719052744887e-05,5.183457862383101 +3.211719052744887e-05,4.775060822142317 +3.213719052744887e-05,4.992136726414445 +3.215719052744887e-05,4.995815979029227 +3.217719052744887e-05,4.885438400585771 +3.219719052744887e-05,4.981098968570099 +3.221719052744887e-05,4.973740463340535 +3.223719052744887e-05,4.918551674118808 +3.225719052744887e-05,4.984778221184881 +3.227719052744887e-05,4.911193168889245 +3.229719052744887e-05,4.903834663659681 +3.231719052744887e-05,5.025249999947482 +3.233719052744886e-05,4.889117653200554 +3.235719052744887e-05,4.929589431963153 +3.237719052744886e-05,5.017891494717918 +3.239719052744887e-05,4.885438400585771 +3.241719052744887e-05,4.936947937192717 +3.243719052744887e-05,4.995815979029227 +3.245719052744887e-05,4.911193168889245 +3.247719052744887e-05,4.966381958110972 +3.249719052744887e-05,4.947985695037063 +3.251719052744887e-05,4.933268684577936 +3.253719052744887e-05,4.992136726414445 +3.255719052744887e-05,4.892796905815335 +3.257719052744887e-05,4.936947937192717 +3.259719052744887e-05,5.010532989488354 +3.261719052744887e-05,4.892796905815335 +3.263719052744887e-05,4.929589431963153 +3.265719052744887e-05,4.992136726414445 +3.267719052744887e-05,4.867042137511862 +3.269719052744887e-05,4.951664947651844 +3.271719052744886e-05,4.96270270549619 +3.273719052744887e-05,4.885438400585771 +3.275719052744887e-05,5.006853736873572 +3.277719052744887e-05,4.925910179348372 +3.279719052744887e-05,4.936947937192717 +3.281719052744887e-05,4.999495231644008 +3.283719052744887e-05,4.900155411044899 +3.285719052744887e-05,4.933268684577936 +3.287719052744887e-05,5.032608505177045 +3.289719052744887e-05,4.878079895356208 +3.291719052744887e-05,4.940627189807499 +3.293719052744887e-05,4.984778221184881 +3.295719052744887e-05,4.885438400585771 +3.297719052744887e-05,4.970061210725754 +3.299719052744887e-05,4.96270270549619 +3.301719052744887e-05,4.911193168889245 +3.303719052744887e-05,4.981098968570099 +3.305719052744886e-05,4.892796905815335 +3.307719052744887e-05,4.984778221184881 +3.309719052744887e-05,5.017891494717918 +3.311719052744887e-05,4.856004379667517 +3.313719052744887e-05,4.944306442422281 +3.315719052744887e-05,4.984778221184881 +3.317719052744887e-05,4.874400642741426 +3.319719052744887e-05,4.981098968570099 +3.321719052744887e-05,4.984778221184881 +3.323719052744887e-05,4.911193168889245 +3.325719052744887e-05,4.988457473799663 +3.327719052744887e-05,4.925910179348372 +3.329719052744887e-05,4.933268684577936 +3.331719052744887e-05,5.047325515636173 +3.333719052744887e-05,4.88175914797099 +3.335719052744887e-05,4.944306442422281 +3.337719052744887e-05,5.028929252562263 +3.339719052744887e-05,4.885438400585771 +3.341719052744887e-05,4.959023452881408 +3.343719052744886e-05,4.84128736920839 +3.345719052744887e-05,4.480720612959769 +3.347719052744887e-05,4.88175914797099 +3.349719052744887e-05,4.977419715955318 +3.351719052744887e-05,4.889117653200554 +3.353719052744887e-05,5.032608505177045 +3.355719052744887e-05,4.933268684577936 +3.357719052744887e-05,4.900155411044899 +3.359719052744887e-05,5.028929252562263 +3.361719052744887e-05,4.867042137511862 +3.363719052744887e-05,4.900155411044899 +3.365719052744887e-05,5.014212242103136 +3.367719052744887e-05,4.856004379667517 +3.369719052744887e-05,4.973740463340535 +3.371719052744887e-05,4.981098968570099 +3.373719052744887e-05,4.867042137511862 +3.375719052744887e-05,5.021570747332699 +3.377719052744886e-05,4.925910179348372 +3.379719052744887e-05,4.900155411044899 +3.381719052744887e-05,5.017891494717918 +3.383719052744887e-05,4.892796905815335 +3.385719052744887e-05,4.914872421504026 +3.387719052744887e-05,5.006853736873572 +3.389719052744887e-05,4.889117653200554 +3.391719052744887e-05,4.925910179348372 +3.393719052744887e-05,5.010532989488354 +3.395719052744887e-05,4.874400642741426 +3.397719052744887e-05,4.955344200266627 +3.399719052744887e-05,4.944306442422281 +3.401719052744887e-05,4.878079895356208 +3.403719052744887e-05,5.010532989488354 +3.405719052744887e-05,4.925910179348372 +3.407719052744887e-05,4.900155411044899 +3.409719052744887e-05,5.025249999947482 +3.411719052744886e-05,4.878079895356208 +3.413719052744887e-05,4.914872421504026 +3.415719052744887e-05,5.006853736873572 +3.417719052744887e-05,4.837608116593607 +3.419719052744887e-05,4.992136726414445 +3.421719052744887e-05,4.973740463340535 +3.423719052744887e-05,4.859683632282299 +3.425719052744887e-05,5.028929252562263 +3.427719052744887e-05,4.933268684577936 +3.429719052744887e-05,4.867042137511862 +3.431719052744887e-05,5.017891494717918 +3.433719052744887e-05,4.867042137511862 +3.435719052744887e-05,4.88175914797099 +3.437719052744887e-05,5.036287757791827 +3.439719052744887e-05,4.833928863978826 +3.441719052744887e-05,4.914872421504026 +3.443719052744887e-05,4.995815979029227 +3.445719052744887e-05,4.859683632282299 +3.447719052744887e-05,4.966381958110972 +3.449719052744886e-05,4.947985695037063 +3.451719052744887e-05,4.859683632282299 +3.453719052744887e-05,5.010532989488354 +3.455719052744887e-05,4.856004379667517 +3.457719052744887e-05,4.918551674118808 +3.459719052744887e-05,5.036287757791827 +3.461719052744887e-05,4.826570358749262 +3.463719052744887e-05,4.96270270549619 +3.465719052744887e-05,5.010532989488354 +3.467719052744887e-05,4.830249611364044 +3.469719052744887e-05,4.988457473799663 +3.471719052744887e-05,4.903834663659681 +3.473719052744887e-05,4.826570358749262 +3.475719052744887e-05,5.014212242103136 +3.477719052744887e-05,4.947985695037063 +3.479719052744887e-05,4.892796905815335 +3.481719052744887e-05,5.0620425260953 +3.483719052744886e-05,4.903834663659681 +3.485719052744887e-05,4.911193168889245 +3.487719052744887e-05,5.0620425260953 +3.489719052744887e-05,4.874400642741426 +3.491719052744887e-05,4.940627189807499 +3.493719052744887e-05,5.010532989488354 +3.495719052744887e-05,4.878079895356208 +3.497719052744887e-05,4.977419715955318 +3.499719052744887e-05,4.951664947651844 +3.501719052744887e-05,4.903834663659681 +3.503719052744887e-05,4.999495231644008 +3.505719052744887e-05,4.914872421504026 +3.507719052744887e-05,4.925910179348372 +3.509719052744887e-05,5.039967010406609 +3.511719052744887e-05,4.903834663659681 +3.513719052744887e-05,4.944306442422281 +3.515719052744887e-05,5.039967010406609 +3.517719052744886e-05,4.878079895356208 +3.519719052744887e-05,5.006853736873572 +3.521719052744886e-05,5.010532989488354 +3.523719052744887e-05,4.867042137511862 +3.525719052744887e-05,5.006853736873572 +3.527719052744887e-05,4.944306442422281 +3.529719052744887e-05,4.914872421504026 +3.531719052744887e-05,5.047325515636173 +3.533719052744887e-05,4.940627189807499 +3.535719052744887e-05,4.936947937192717 +3.537719052744887e-05,5.051004768250954 +3.539719052744887e-05,4.885438400585771 +3.541719052744887e-05,4.944306442422281 +3.543719052744887e-05,4.999495231644008 +3.545719052744887e-05,4.856004379667517 +3.547719052744887e-05,5.006853736873572 +3.549719052744887e-05,5.021570747332699 +3.551719052744887e-05,4.903834663659681 +3.553719052744887e-05,4.959023452881408 +3.555719052744886e-05,4.874400642741426 +3.557719052744887e-05,4.874400642741426 +3.559719052744887e-05,5.028929252562263 +3.561719052744887e-05,4.889117653200554 +3.563719052744887e-05,4.951664947651844 +3.565719052744887e-05,5.036287757791827 +3.567719052744887e-05,4.88175914797099 +3.569719052744887e-05,4.970061210725754 +3.571719052744887e-05,5.003174484258791 +3.573719052744887e-05,4.885438400585771 +3.575719052744887e-05,5.017891494717918 +3.577719052744887e-05,4.947985695037063 +3.579719052744887e-05,4.88175914797099 +3.581719052744887e-05,5.065721778710081 +3.583719052744887e-05,4.892796905815335 +3.585719052744887e-05,4.903834663659681 +3.587719052744887e-05,5.047325515636173 +3.589719052744886e-05,4.892796905815335 +3.591719052744887e-05,4.936947937192717 +3.593719052744887e-05,5.025249999947482 +3.595719052744887e-05,4.859683632282299 +3.597719052744887e-05,4.992136726414445 +3.599719052744887e-05,4.995815979029227 +3.601719052744887e-05,4.911193168889245 +3.603719052744887e-05,5.032608505177045 +3.605719052744887e-05,4.914872421504026 +3.607719052744887e-05,4.907513916274462 +3.609719052744887e-05,5.065721778710081 +3.611719052744887e-05,4.896476158430117 +3.613719052744887e-05,4.947985695037063 +3.615719052744887e-05,5.039967010406609 +3.617719052744887e-05,4.874400642741426 +3.619719052744887e-05,5.006853736873572 +3.621719052744887e-05,5.010532989488354 +3.623719052744886e-05,4.892796905815335 +3.625719052744887e-05,5.054684020865736 +3.627719052744886e-05,4.936947937192717 +3.629719052744887e-05,4.885438400585771 +3.631719052744887e-05,5.054684020865736 +3.633719052744887e-05,4.914872421504026 +3.635719052744887e-05,4.951664947651844 +3.637719052744887e-05,-0.902025962466062 +3.639719052744887e-05,-0.6886293108087154 +3.641719052744887e-05,-0.261836007494022 +3.643719052744887e-05,-0.1404206712062215 +3.645719052744887e-05,0.1649572958206713 +3.647719052744887e-05,-0.1404206712062215 +3.649719052744887e-05,0.04354195953287032 +3.651719052744887e-05,0.02514569645896136 +3.653719052744887e-05,-0.07419412414014825 +3.655719052744887e-05,0.003070180770270436 +3.657719052744887e-05,0.01042868599983393 +3.659719052744887e-05,-0.03740159799232989 +3.661719052744886e-05,-0.01532608230363897 +3.663719052744887e-05,0.01042868599983393 +3.665719052744887e-05,-0.0300430927627664 +3.667719052744887e-05,-0.0557978610662393 +3.669719052744887e-05,-0.01900533491842094 +3.671719052744887e-05,-0.04476010322189383 +3.673719052744887e-05,-0.04108085060711186 +3.675719052744887e-05,-0.03740159799232989 +3.677719052744887e-05,-0.04108085060711186 +3.679719052744887e-05,-0.0300430927627664 +3.681719052744887e-05,-0.05211860845145733 +3.683719052744887e-05,-0.0557978610662393 +3.685719052744887e-05,-0.04843935583667536 +3.687719052744887e-05,-0.05211860845145733 +3.689719052744887e-05,-0.01900533491842094 +3.691719052744887e-05,-0.05211860845145733 +3.693719052744887e-05,-0.0557978610662393 +3.695719052744886e-05,-0.04108085060711186 +3.697719052744887e-05,-0.04843935583667536 +3.699719052744887e-05,-0.07787337675493022 +3.701719052744887e-05,-0.04108085060711186 +3.703719052744887e-05,-0.07051487152536628 +3.705719052744887e-05,-0.06683561891058476 +3.707719052744887e-05,-0.07051487152536628 +3.709719052744887e-05,-0.06683561891058476 +3.711719052744887e-05,-0.05947711368102082 +3.713719052744887e-05,-0.05947711368102082 +3.715719052744887e-05,-0.09259038721405766 +3.717719052744887e-05,-0.05947711368102082 +3.719719052744887e-05,-0.07419412414014825 +3.721719052744887e-05,-0.06683561891058476 +3.723719052744887e-05,-0.04476010322189383 +3.725719052744887e-05,-0.06683561891058476 +3.727719052744887e-05,-0.06683561891058476 +3.729719052744886e-05,-0.0557978610662393 +3.731719052744887e-05,-0.07419412414014825 +3.733719052744886e-05,-0.04843935583667536 +3.735719052744887e-05,-0.04843935583667536 +3.737719052744887e-05,-0.08155262936971219 +3.739719052744887e-05,-0.0300430927627664 +3.741719052744887e-05,-0.06683561891058476 +3.743719052744887e-05,-0.09994889244362115 +3.745719052744887e-05,-0.06315636629580279 +3.747719052744887e-05,-0.07051487152536628 +3.749719052744887e-05,-0.08155262936971219 +3.751719052744887e-05,-0.0557978610662393 +3.753719052744887e-05,-0.07419412414014825 +3.755719052744887e-05,-0.07051487152536628 +3.757719052744887e-05,-0.06683561891058476 +3.759719052744887e-05,-0.06683561891058476 +3.761719052744887e-05,-0.05947711368102082 +3.763719052744887e-05,-0.06315636629580279 +3.765719052744887e-05,-0.08523188198449372 +3.767719052744886e-05,-0.05211860845145733 +3.769719052744887e-05,-0.0557978610662393 +3.771719052744887e-05,-0.07419412414014825 +3.773719052744887e-05,0.04722121214765229 +3.775719052744887e-05,5.080438789169209 +3.777719052744887e-05,5.028929252562263 +3.779719052744887e-05,4.925910179348372 +3.781719052744887e-05,4.874400642741426 +3.783719052744887e-05,4.804494843060571 +3.785719052744887e-05,4.889117653200554 +3.787719052744887e-05,4.929589431963153 +3.789719052744887e-05,4.830249611364044 +3.791719052744887e-05,4.92223092673359 +3.793719052744887e-05,4.955344200266627 +3.795719052744887e-05,4.84128736920839 +3.797719052744887e-05,4.973740463340535 +3.799719052744887e-05,4.929589431963153 +3.801719052744886e-05,4.797136337831008 +3.803719052744887e-05,4.981098968570099 +3.805719052744887e-05,4.914872421504026 +3.807719052744887e-05,4.848645874437953 +3.809719052744887e-05,5.003174484258791 +3.811719052744887e-05,4.86336288489708 +3.813719052744887e-05,4.918551674118808 +3.815719052744887e-05,5.003174484258791 +3.817719052744887e-05,4.86336288489708 +3.819719052744887e-05,4.944306442422281 +3.821719052744887e-05,4.984778221184881 +3.823719052744887e-05,4.870721390126644 +3.825719052744887e-05,5.010532989488354 +3.827719052744887e-05,4.933268684577936 +3.829719052744887e-05,4.892796905815335 +3.831719052744887e-05,5.058363273480518 +3.833719052744887e-05,4.896476158430117 +3.835719052744886e-05,4.925910179348372 +3.837719052744887e-05,5.0620425260953 +3.839719052744886e-05,4.892796905815335 +3.841719052744887e-05,4.944306442422281 +3.843719052744887e-05,5.025249999947482 +3.845719052744887e-05,4.900155411044899 +3.847719052744887e-05,4.988457473799663 +3.849719052744887e-05,4.92223092673359 +3.851719052744887e-05,4.819211853519699 +3.853719052744887e-05,4.999495231644008 +3.855719052744887e-05,4.944306442422281 +3.857719052744887e-05,4.914872421504026 +3.859719052744887e-05,5.032608505177045 +3.861719052744887e-05,4.878079895356208 +3.863719052744887e-05,4.951664947651844 +3.865719052744887e-05,5.065721778710081 +3.867719052744887e-05,4.903834663659681 +3.869719052744887e-05,4.966381958110972 +3.871719052744887e-05,5.017891494717918 +3.873719052744886e-05,4.896476158430117 +3.875719052744887e-05,5.032608505177045 +3.877719052744887e-05,4.966381958110972 +3.879719052744887e-05,4.911193168889245 +3.881719052744887e-05,5.095155799628337 +3.883719052744887e-05,4.929589431963153 +3.885719052744887e-05,4.92223092673359 +3.887719052744887e-05,5.058363273480518 +3.889719052744887e-05,4.892796905815335 +3.891719052744887e-05,4.966381958110972 +3.893719052744887e-05,5.04364626302139 +3.895719052744887e-05,4.903834663659681 +3.897719052744887e-05,4.981098968570099 +3.899719052744887e-05,4.959023452881408 +3.901719052744887e-05,4.88175914797099 +3.903719052744887e-05,5.039967010406609 +3.905719052744887e-05,4.940627189807499 +3.907719052744886e-05,4.92223092673359 +3.909719052744887e-05,5.058363273480518 +3.911719052744887e-05,4.885438400585771 +3.913719052744887e-05,4.984778221184881 +3.915719052744887e-05,5.073080283939645 +3.917719052744887e-05,4.870721390126644 +3.919719052744887e-05,5.014212242103136 +3.921719052744887e-05,5.010532989488354 +3.923719052744887e-05,4.889117653200554 +3.925719052744887e-05,5.073080283939645 +3.927719052744887e-05,4.951664947651844 +3.929719052744887e-05,4.907513916274462 +3.931719052744887e-05,5.091476547013555 +3.933719052744887e-05,4.892796905815335 +3.935719052744887e-05,4.933268684577936 +3.937719052744887e-05,5.039967010406609 +3.939719052744887e-05,4.889117653200554 +3.941719052744886e-05,4.981098968570099 +3.943719052744887e-05,5.051004768250954 +3.945719052744886e-05,4.892796905815335 +3.947719052744887e-05,4.992136726414445 +3.949719052744887e-05,4.988457473799663 +3.951719052744887e-05,4.88175914797099 +3.953719052744887e-05,5.036287757791827 +3.955719052744887e-05,4.907513916274462 +3.957719052744887e-05,4.911193168889245 +3.959719052744887e-05,5.006853736873572 +3.961719052744887e-05,4.870721390126644 +3.963719052744887e-05,4.951664947651844 +3.965719052744887e-05,5.069401031324864 +3.967719052744887e-05,4.903834663659681 +3.969719052744887e-05,5.006853736873572 +3.971719052744887e-05,5.028929252562263 +3.973719052744887e-05,4.896476158430117 +3.975719052744887e-05,4.999495231644008 +3.977719052744887e-05,4.970061210725754 +3.979719052744886e-05,4.914872421504026 +3.981719052744887e-05,5.051004768250954 +3.983719052744887e-05,4.92223092673359 +3.985719052744887e-05,4.929589431963153 +3.987719052744887e-05,5.047325515636173 +3.989719052744887e-05,4.88175914797099 +3.991719052744887e-05,4.959023452881408 +3.993719052744887e-05,5.032608505177045 +3.995719052744887e-05,4.889117653200554 +3.997719052744887e-05,4.96270270549619 +3.999719052744887e-05,4.977419715955318 +4.001719052744887e-05,4.889117653200554 +4.003719052744887e-05,5.021570747332699 +4.005719052744887e-05,4.933268684577936 +4.007719052744887e-05,4.907513916274462 +4.009719052744887e-05,5.04364626302139 +4.011719052744887e-05,4.889117653200554 +4.013719052744886e-05,5.028929252562263 +4.015719052744887e-05,5.087797294398772 +4.017719052744887e-05,4.900155411044899 +4.019719052744887e-05,4.999495231644008 +4.021719052744887e-05,5.014212242103136 +4.023719052744887e-05,4.900155411044899 +4.025719052744887e-05,5.014212242103136 +4.027719052744887e-05,4.955344200266627 +4.029719052744887e-05,4.911193168889245 +4.031719052744887e-05,5.054684020865736 +4.033719052744887e-05,4.92223092673359 +4.035719052744887e-05,4.925910179348372 +4.037719052744887e-05,5.039967010406609 +4.039719052744887e-05,4.889117653200554 +4.041719052744887e-05,4.966381958110972 +4.043719052744887e-05,5.039967010406609 +4.045719052744887e-05,4.889117653200554 +4.047719052744886e-05,4.981098968570099 +4.049719052744887e-05,4.981098968570099 +4.051719052744886e-05,4.885438400585771 +4.053719052744887e-05,5.028929252562263 +4.055719052744887e-05,4.92223092673359 +4.057719052744887e-05,4.92223092673359 +4.059719052744887e-05,5.069401031324864 +4.061719052744887e-05,4.889117653200554 +4.063719052744887e-05,4.940627189807499 +4.065719052744887e-05,5.039967010406609 +4.067719052744887e-05,4.867042137511862 +4.069719052744887e-05,5.003174484258791 +4.071719052744887e-05,5.021570747332699 +4.073719052744887e-05,4.88175914797099 +4.075719052744887e-05,5.017891494717918 +4.077719052744887e-05,4.977419715955318 +4.079719052744887e-05,4.914872421504026 +4.081719052744887e-05,5.069401031324864 +4.083719052744887e-05,4.918551674118808 +4.085719052744886e-05,4.907513916274462 +4.087719052744887e-05,5.028929252562263 +4.089719052744887e-05,4.874400642741426 +4.091719052744887e-05,4.959023452881408 +4.093719052744887e-05,5.036287757791827 +4.095719052744887e-05,4.867042137511862 diff --git a/meas/20200319reflexions.png b/meas/20200319reflexions.png new file mode 100644 index 0000000..3e562a3 Binary files /dev/null and b/meas/20200319reflexions.png differ diff --git a/meas/20200319uartquartz.csv b/meas/20200319uartquartz.csv new file mode 100644 index 0000000..29f8410 --- /dev/null +++ b/meas/20200319uartquartz.csv @@ -0,0 +1,434 @@ +t,c1 +4.499999999999997e-09,0.1983073028825772 +1.45e-08,0.6214213535824887 +2.45e-08,1.132837467037164 +3.45e-08,1.776706674623986 +4.449999999999999e-08,2.391141861292554 +5.449999999999999e-08,2.954067511354175 +6.449999999999999e-08,3.465483624808851 +7.45e-08,3.892276928123544 +8.45e-08,4.256522936986946 +9.449999999999999e-08,4.565580156628621 +1.045e-07,4.804731576589441 +1.145e-07,4.970297944254623 +1.245e-07,5.076996270083296 +1.345e-07,5.113788796231114 +1.445e-07,5.069637764853733 +1.545e-07,4.977656449484186 +1.645e-07,4.848882607966822 +1.745e-07,4.653882219383385 +1.845e-07,4.38529677850431 +1.945e-07,4.098315074551327 +2.045e-07,3.759823833991398 +2.145e-07,3.417653340816686 +2.245e-07,3.009256300575903 +2.345e-07,2.582462997261209 +2.445e-07,2.129914925643043 +2.545e-07,1.607461054344022 +2.645e-07,0.9562333415276362 +2.745e-07,0.2350998290303956 +2.845e-07,-0.4492411573190266 +2.945e-07,-1.111506627979758 +3.045e-07,-1.692828541115288 +3.145e-07,-2.229999422873437 +3.245e-07,-2.741415536328113 +3.345e-07,-3.15717108179846 +3.445e-07,-3.525096343276645 +3.545e-07,-3.819436552459192 +3.645e-07,-4.069625730264357 +3.745e-07,-4.249909108388668 +3.845e-07,-4.345569676372995 +3.945e-07,-4.411796223439068 +4.045e-07,-4.393399960365159 +4.145e-07,-4.323494160684304 +4.245e-07,-4.183682561322594 +4.345e-07,-4.010757688427848 +4.445e-07,-3.782644026311374 +4.545e-07,-3.499341574973172 +4.645e-07,-3.193963607946279 +4.745e-07,-2.848113862156786 +4.845e-07,-2.465471590219475 +4.945e-07,-2.05707454997869 +5.045e-07,-1.641319004508343 +5.145e-07,-1.207167195964086 +5.245e-07,-0.7840531452641739 +5.345e-07,-0.3535805893346987 +5.445e-07,0.08425047182434017 +5.545e-07,0.5000060172946881 +5.645000000000001e-07,0.9709503519867635 +5.745000000000001e-07,1.60378180172924 +5.845e-07,2.236613251471717 +5.945e-07,2.810576659377683 +6.045e-07,3.340389035906268 +6.145e-07,3.785578602294871 +6.245e-07,4.153503863773055 +6.345e-07,4.517749872636457 +6.445e-07,4.749542787367712 +6.545e-07,4.948222428565932 +6.645000000000001e-07,5.051241501779823 +6.745000000000001e-07,5.102751038386769 +6.845e-07,5.091713280542423 +6.945e-07,5.018128228246787 +7.045e-07,4.878316628885077 +7.145e-07,4.679636987686858 +7.245e-07,4.462561083414729 +7.345e-07,4.153503863773055 +7.445e-07,3.855484401975726 +7.545e-07,3.498596898341887 +7.645e-07,3.126992384248921 +7.745000000000001e-07,2.707557586163792 +7.845000000000001e-07,2.255009514545625 +7.945e-07,1.754631158935295 +8.045e-07,1.140195972266728 +8.145e-07,0.4117039545399239 +8.245e-07,-0.2983918001129712 +8.345e-07,-0.9606572707737022 +8.445e-07,-1.567733952212706 +8.545e-07,-2.1159425918152 +8.645e-07,-2.608962442195966 +8.745000000000001e-07,-3.057831261199351 +8.845000000000001e-07,-3.425756522677535 +8.945e-07,-3.745851500163555 +9.045e-07,-4.007078435813066 +9.145e-07,-4.209437329626067 +9.245e-07,-4.33453191852865 +9.345e-07,-4.404437718209504 +9.445e-07,-4.408116970824286 +9.544999999999999e-07,-4.345569676372995 +9.644999999999998e-07,-4.238871350544321 +9.744999999999999e-07,-4.065946477649575 +9.844999999999998e-07,-3.845191320762665 +9.945e-07,-3.572926627268808 +1.0045e-06,-3.271227912856697 +1.0145e-06,-2.921698914452423 +1.0245e-06,-2.561132158203803 +1.0345e-06,-2.17481063365171 +1.0445e-06,-1.762734340796143 +1.0545e-06,-1.324903279637104 +1.0645e-06,-0.898109976322411 +1.0745e-06,-0.460278915163372 +1.0845e-06,-0.02244785400433319 +1.0945e-06,0.4006661966955783 +1.1045e-06,0.8495350156989628 +1.1145e-06,1.445573939293621 +1.1245e-06,2.089443146880443 +1.1345e-06,2.667085807401191 +1.1445e-06,3.215294447003686 +1.1545e-06,3.693597286925325 +1.1645e-06,4.087277316706982 +1.1745e-06,4.422089304652129 +1.1845e-06,4.70539175599033 +1.1945e-06,4.893033639344204 +1.2045e-06,5.036524491320696 +1.2145e-06,5.08435477531286 +1.2245e-06,5.091713280542423 +1.2345e-06,5.036524491320696 +1.2445e-06,4.918788407647678 +1.2545e-06,4.742184282138149 +1.2645e-06,4.521429125251238 +1.2745e-06,4.249164431757382 +1.2845e-06,3.936427959500926 +1.2945e-06,3.568502698022742 +1.3045e-06,3.215294447003686 +1.3145e-06,2.82529366983681 +1.3245e-06,2.380104103448208 +1.3345e-06,1.88340500045266 +1.3445e-06,1.305762339931911 +1.3545e-06,0.5956665852790159 +1.3645e-06,-0.1033914115295336 +1.3745e-06,-0.7730153874198284 +1.3845e-06,-1.402167584547523 +1.3945e-06,-1.979810245068272 +1.4045e-06,-2.483867853293384 +1.4145e-06,-2.95481218798546 +1.4245e-06,-3.333775207307989 +1.4345e-06,-3.686983458327045 +1.4445e-06,-3.966606657050465 +1.4545e-06,-4.165286298248684 +1.4645e-06,-4.305097897610395 +1.4745e-06,-4.389720707750377 +1.4845e-06,-4.400758465594723 +1.4945e-06,-4.360286686832122 +1.5045e-06,-4.271984624077358 +1.5145e-06,-4.106418256412176 +1.5245e-06,-3.911417867828738 +1.5345e-06,-3.668587195253136 +1.5445e-06,-3.352171470381898 +1.5545e-06,-3.021038735051532 +1.5645e-06,-2.660471978802912 +1.5745e-06,-2.266791949021255 +1.5845e-06,-1.862074161395253 +1.5945e-06,-1.427922352850996 +1.6045e-06,-0.9974497969215206 +1.6145e-06,-0.5706564936068272 +1.6245e-06,-0.1328254324477884 +1.6345e-06,0.2829301130225595 +1.6445e-06,0.7134026689520347 +1.6545e-06,1.287366076858002 +1.6645e-06,1.92387677921526 +1.6745e-06,2.523594955424699 +1.6845e-06,3.079162100256758 +1.6945e-06,3.575861203252306 +1.7045e-06,4.002654506567 +1.7145e-06,4.352183504971274 +1.7245e-06,4.62444819846513 +1.7345e-06,4.863599618425949 +1.7445e-06,5.014448975632005 +1.7545e-06,5.091713280542423 +1.7645e-06,5.095392533157206 +1.7745e-06,5.058600007009387 +1.7845e-06,4.951901681180714 +1.7945e-06,4.797373071359877 +1.8045e-06,4.561900904013839 +1.8145e-06,4.337466494512147 +1.8245e-06,4.021050769640909 +1.8345e-06,3.675201023851415 +1.8445e-06,3.318313520217577 +1.8545e-06,2.92463349043592 +1.8645e-06,2.501519439736009 +1.8745e-06,2.019537347199588 +1.8845e-06,1.478687212826657 +1.8945e-06,0.775949963403326 +1.9045e-06,0.06585420875043096 +1.9145e-06,-0.6148075249842093 +1.9245e-06,-1.221884206423213 +1.9345e-06,-1.83631939309178 +1.9445e-06,-2.35509401177602 +1.9545e-06,-2.840755356927223 +1.9645e-06,-3.249152397168007 +1.9745e-06,-3.598681395572282 +1.9845e-06,-3.896700857369611 +1.9945e-06,-4.113776761641739 +2.0045e-06,-4.279343129306922 +2.0145e-06,-4.367645192061686 +2.0245e-06,-4.415475476053849 +2.0345e-06,-4.382362202520813 +2.0445e-06,-4.305097897610395 +2.0545e-06,-4.139531529945212 +2.0645e-06,-3.981323667509593 +2.0745e-06,-3.7164174792453 +2.0845e-06,-3.440473533136662 +2.0945e-06,-3.098303039961951 +2.1045e-06,-2.745094788942895 +2.1145e-06,-2.35509401177602 +2.1245e-06,-1.950376224150017 +2.1345e-06,-1.534620678679669 +2.1445e-06,-1.093110364905848 +2.1545e-06,-0.6883925772798462 +2.1645e-06,-0.2468822635060254 +2.1745e-06,0.2056658081121409 +2.1845e-06,0.6214213535824887 +2.1945e-06,1.132837467037164 +2.2045e-06,1.765668916779641 +2.2145e-06,2.391141861292554 +2.2245e-06,2.957746763968957 +2.2345e-06,3.454445866964505 +2.2445e-06,3.888597675508763 +2.2545e-06,4.256522936986946 +2.2645e-06,4.572938661858184 +2.2745e-06,4.808410829204222 +2.2845e-06,4.970297944254623 +2.2945e-06,5.058600007009387 +2.3045e-06,5.106430291001551 +2.3145e-06,5.069637764853733 +2.3245e-06,4.992373459943314 +2.3345e-06,4.848882607966822 +2.3445e-06,4.646523714153821 +2.3545e-06,4.392655283733874 +2.3645e-06,4.098315074551327 +2.3745e-06,3.759823833991398 +2.3845e-06,3.402936330357559 +2.3945e-06,3.035011068879376 +2.4045e-06,2.608217765564683 +2.4145e-06,2.155669693946516 +2.4245e-06,1.629536570032713 +2.4345e-06,0.9709503519867635 +2.4445e-06,0.2387790816451774 +2.4545e-06,-0.4492411573190266 +2.4645e-06,-1.09678961752063 +2.4745e-06,-1.689149288500507 +2.4845e-06,-2.237357928103001 +2.4945e-06,-2.704623010180295 +2.5045e-06,-3.127737060880206 +2.5145e-06,-3.532454848506208 +2.5245e-06,-3.819436552459192 +2.5345e-06,-4.069625730264357 +2.5445e-06,-4.238871350544321 +2.5545e-06,-4.33453191852865 +2.5645e-06,-4.408116970824286 +2.5745e-06,-4.389720707750377 +2.5845e-06,-4.33453191852865 +2.5945e-06,-4.198399571781722 +2.6045e-06,-4.010757688427848 +2.6145e-06,-3.782644026311374 +2.6245e-06,-3.484624564514045 +2.6345e-06,-3.201322113175842 +2.6445e-06,-2.833396851697659 +2.6545e-06,-2.45443383237513 +2.6645e-06,-2.053395297363909 +2.6745e-06,-1.648677509737906 +2.6845e-06,-1.210846448578867 +2.6945e-06,-0.7987701557233013 +2.7045e-06,-0.3535805893346987 +2.7145e-06,0.06953346136521282 +2.7245e-06,0.4889682594503425 +2.7345e-06,0.9709503519867635 +2.7445e-06,1.60378180172924 +2.7545e-06,2.229254746242153 +2.7645e-06,2.814255911992465 +2.7745e-06,3.325672025447141 +2.7845e-06,3.796616360139216 +2.7945e-06,4.190296389920873 +2.8045e-06,4.510391367406893 +2.8145e-06,4.749542787367712 +2.8245e-06,4.929826165492023 +2.8345e-06,5.058600007009387 +2.8445e-06,5.106430291001551 +2.8545e-06,5.095392533157206 +2.8645e-06,5.018128228246787 +2.8745e-06,4.881995881499859 +2.8845e-06,4.70539175599033 +2.8945e-06,4.466240336029511 +2.9045e-06,4.179258632076528 +2.9145e-06,3.851805149360944 +2.9245e-06,3.509634656186233 +2.9345e-06,3.119633879019358 +2.9445e-06,2.718595344008137 +2.9545e-06,2.269726525004753 +2.9645e-06,1.765668916779641 +2.9745e-06,1.154912982725856 +2.9845e-06,0.433779470228615 +2.9945e-06,-0.2689577791947164 +3.0045e-06,-0.9349025024702293 +3.0145e-06,-1.523582920835324 +3.0245e-06,-2.101225581356073 +3.0345e-06,-2.586886926507275 +3.0445e-06,-3.039434998125442 +3.0545e-06,-3.422077270062753 +3.0645e-06,-3.745851500163555 +3.0745e-06,-4.007078435813066 +3.0845e-06,-4.209437329626067 +3.0945e-06,-4.323494160684304 +3.1045e-06,-4.386041455135596 +3.1145e-06,-4.404437718209504 +3.1245e-06,-4.352928181602558 +3.1345e-06,-4.224154340085194 +3.1445e-06,-4.062267225034793 +3.1545e-06,-3.837832815533101 +3.1645e-06,-3.580285132498372 +3.1745e-06,-3.282265670701043 +3.1845e-06,-2.925378167067205 +3.1945e-06,-2.564811410818584 +3.2045e-06,-2.152735117963019 +3.2145e-06,-1.748017330337016 +3.2245e-06,-1.328582532251886 +3.2345e-06,-0.8797137132485018 +3.2445e-06,-0.4529204099338084 +3.2545e-06,-0.03348561184867871 +3.2645e-06,0.4006661966955783 +3.2745e-06,0.8495350156989628 +3.2845e-06,1.456611697137966 +3.2945e-06,2.074726136421315 +3.3045e-06,2.670765060015974 +3.3145e-06,3.226332204848031 +3.3245e-06,3.678880276466198 +3.3345e-06,4.090956569321763 +3.3445e-06,4.433127062496474 +3.3545e-06,4.70539175599033 +3.3645e-06,4.896712891958987 +3.3745e-06,5.04388299655026 +3.3845e-06,5.091713280542423 +3.3945e-06,5.106430291001551 +3.4045e-06,5.04388299655026 +3.4145e-06,4.940863923336368 +3.4245e-06,4.745863534752931 +3.4345e-06,4.528787630480802 +3.4445e-06,4.26388144221651 +3.4545e-06,3.954824222574835 +3.4645e-06,3.601615971555779 +3.4745e-06,3.22265295223325 +3.4845e-06,2.840010680295938 +3.4945e-06,2.416896629596026 +3.5045e-06,1.916518273985696 +3.5145e-06,1.338875613464948 +3.5245e-06,0.6140628483529251 +3.5345e-06,-0.09971215891475183 +3.5445e-06,-0.7656568821902647 +3.5545e-06,-1.387450574088396 +3.5645e-06,-1.968772487223926 +3.5745e-06,-2.472830095449038 +3.5845e-06,-2.93641592491155 +3.5945e-06,-3.326416702078425 +3.6045e-06,-3.653870184794009 +3.6145e-06,-3.951889646591338 +3.6245e-06,-4.132173024715648 +3.6345e-06,-4.294060139766049 +3.6445e-06,-4.389720707750377 +3.6545e-06,-4.389720707750377 +3.6645e-06,-4.352928181602558 +3.6745e-06,-4.268305371462576 +3.6845e-06,-4.099059751182612 +3.6945e-06,-3.889342352140047 +3.7045e-06,-3.650190932179227 +3.7145e-06,-3.333775207307989 +3.7245e-06,-3.024717987666314 +3.7345e-06,-2.671509736647257 +3.7445e-06,-2.281508959480383 +3.7545e-06,-1.854715656165689 +3.7645e-06,-1.438960110695341 +3.7745e-06,-1.004808302151084 +3.7845e-06,-0.578014998836391 +3.7945e-06,-0.1291461798330065 +3.8045e-06,0.3013263760964687 +3.8145e-06,0.7207611741815985 +3.8245e-06,1.280007571628438 +3.834499999999999e-06,1.927556031830042 +3.844499999999999e-06,2.530953460654263 +3.8545e-06,3.097558363330667 +3.8645e-06,3.572181950637524 +3.8745e-06,4.006333759181781 +3.8845e-06,4.355862757586055 +3.8945e-06,4.642844461539039 +3.9045e-06,4.859920365811168 +3.9145e-06,4.999731965172877 +3.924499999999999e-06,5.076996270083296 +3.934499999999999e-06,5.121147301460678 +3.9445e-06,5.076996270083296 +3.9545e-06,4.962939439025059 +3.9645e-06,4.797373071359877 +3.9745e-06,4.602372682776439 +3.9845e-06,4.330107989282583 +3.9945e-06,4.039447032714818 +4.0045e-06,3.686238781695761 +4.014499999999999e-06,3.318313520217577 +4.024499999999999e-06,2.928312743050702 +4.0345e-06,2.527274208039482 +4.0445e-06,2.041612862888279 +4.0545e-06,1.486045718056221 +4.0645e-06,0.8053839843215808 +4.0745e-06,0.087929724439122 +4.0845e-06,-0.6074490197546457 +4.0945e-06,-1.229242711652777 +4.104499999999999e-06,-1.825281635247435 +4.114499999999999e-06,-2.340377001316893 +4.1245e-06,-2.818679841238532 +4.1345e-06,-3.230756134094097 +4.1445e-06,-3.576605879883591 +4.1545e-06,-3.878304594295702 +4.1645e-06,-4.099059751182612 +4.1745e-06,-4.257267613618231 +4.184499999999999e-06,-4.378682949906032 +4.194499999999999e-06,-4.404437718209504 +4.204499999999999e-06,-4.378682949906032 +4.2145e-06,-4.297739392380831 +4.2245e-06,-4.150569287789557 +4.2345e-06,-3.959248151820902 +4.2445e-06,-3.712738226630519 +4.2545e-06,-3.418398017447971 +4.2645e-06,-3.101982292576733 +4.274499999999999e-06,-2.75613254678724 +4.284499999999999e-06,-2.362452517005583 +4.294499999999999e-06,-1.968772487223926 +4.3045e-06,-1.527262173450106 +4.3145e-06,-1.107827375364976 +4.3245e-06,-0.6773548194355006 diff --git a/meas/20200319uartquartz.png b/meas/20200319uartquartz.png new file mode 100644 index 0000000..c1aab87 Binary files /dev/null and b/meas/20200319uartquartz.png differ diff --git a/pics/ad2.jpg b/pics/ad2.jpg new file mode 100644 index 0000000..7e1b72b Binary files /dev/null and b/pics/ad2.jpg differ diff --git a/pics/atari_pbi.png b/pics/atari_pbi.png new file mode 100644 index 0000000..03b1ea5 Binary files /dev/null and b/pics/atari_pbi.png differ diff --git a/pics/case.jpg b/pics/case.jpg new file mode 100644 index 0000000..41dcedb Binary files /dev/null and b/pics/case.jpg differ diff --git a/pics/pc16550d_pinout.svg b/pics/pc16550d_pinout.svg new file mode 100644 index 0000000..a5bedf7 --- /dev/null +++ b/pics/pc16550d_pinout.svg @@ -0,0 +1,161 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/pics/rj45-consoleport-iface-500.png b/pics/rj45-consoleport-iface-500.png new file mode 100644 index 0000000..c0713ea Binary files /dev/null and b/pics/rj45-consoleport-iface-500.png differ diff --git a/planung/DP/aufgabenstellung.tex b/planung/DP/aufgabenstellung.tex index 00d032b..2a3d1a2 100644 --- a/planung/DP/aufgabenstellung.tex +++ b/planung/DP/aufgabenstellung.tex @@ -1,2 +1,20 @@ -\subsection{Daniel Plank} +\subsection{Hardware} + +Due to the recurring questions in the environment of the Hackerspace Innsbruck +about the internal workings of a computer system and the lack of material to +demonstrate these, hardware should be developed for educational purposes. +This hardware should not be to complex to understand but still demonstrate basic +tasks of a computer system. The targeted computing tasks are human interface +device controllers, under which a \textbf{D}igital to \textbf{A}nalog +\textbf{C}onverter\footnote{From now on reffered to simply as DAC} and a serial +console with TIA-/EIA-232 compliant voltage levels were chosen. For these +peripherials schematics and a working implementation in the hardware building +style of the hackerspace should be built. All nescessary hardware will be +provided by the Hackerspace. If possible already present hardware should be +used, if impossible new one will be ordered. All schematics should, whenether +possible be written in open-source software such as Kicad or GNU-EDA. + +If possible software-examples should be written as well, though the complexity +of these was coupled to the time left to spend on the project. Software should +be written in C, the coding convention is left to the implementer. diff --git a/preamble.tex b/preamble.tex index 175c153..f2d0472 100644 --- a/preamble.tex +++ b/preamble.tex @@ -15,10 +15,10 @@ \usepackage[utf8]{inputenc} \usepackage[english,ngerman,]{babel} +\selectlanguage{english} \usepackage[OT2,T1]{fontenc} \usepackage{svg} % Allows the inclusion of SVG files - \usepackage{amssymb} \usepackage{ulem} \usepackage{amsmath} @@ -131,9 +131,9 @@ \makeindex %%% BibLaTeX settings -\usepackage[style = verbose, dashed=false, citestyle = authoryear-ibid, maxcitenames=1]{biblatex} +\usepackage[citestyle = ieee]{biblatex} \usepackage{csquotes} -%\addbibresource{./bibliographies/MR.bib} +\addbibresource{./bibliographies/DP.bib} \DeclareNameAlias{sortname}{family-given} \renewcommand\multinamedelim{;\ } \renewcommand\finalnamedelim{;\ } @@ -174,7 +174,7 @@ minimum height=1cm, align=center, text width=3cm, draw=black, fill=blue!30] \tikzstyle{process} = [rectangle, minimum width=3cm, minimum height=1cm, align=center, text width=3cm, draw=black, fill=orange!30] \tikzstyle{decision} = [diamond, minimum width=3cm, minimum height=1cm, align=center, text width=3cm, draw=black, fill=green!30] \tikzstyle{arrow} = [thick,->,>=latex] - +\usetikzlibrary{external} \usepackage[european, straightvoltages]{circuitikz} \usepackage[per-mode=fraction]{siunitx} \usepackage{breqn} @@ -303,16 +303,17 @@ minimum height=1cm, align=center, text width=3cm, draw=black, fill=blue!30] keywordstyle=\color{red}, numberstyle=\tiny\color{codegray}, stringstyle=\color{purple}, - basicstyle=\ttfamily, + basicstyle=\ttfamily\footnotesize, breakatwhitespace=false, breaklines=true, captionpos=b, keepspaces=true, numbers=left, + columns=fixed, showspaces=false, showstringspaces=false, showtabs=false, - tabsize=2 + tabsize=4 } \lstdefinelanguage{json}{ diff --git a/schem_pdf/16550.pdf b/schem_pdf/16550.pdf index d9180e7..fe069c5 100644 Binary files a/schem_pdf/16550.pdf and b/schem_pdf/16550.pdf differ diff --git a/schem_pdf/backplane_conn.pdf b/schem_pdf/backplane_conn.pdf new file mode 100644 index 0000000..12b7023 Binary files /dev/null and b/schem_pdf/backplane_conn.pdf differ diff --git a/sections/DP/CASE_BACKPLANE/main.tex b/sections/DP/CASE_BACKPLANE/main.tex new file mode 100644 index 0000000..42eea9b --- /dev/null +++ b/sections/DP/CASE_BACKPLANE/main.tex @@ -0,0 +1,58 @@ +\subsection{Backplane} + +To connect the modules to the microprocessor, many pins need to be connected +straight through. For this purpose a backplane was chosen where DIN41612 +connectors can be used. These connectors were chosen for their large pin count +(96 pins) and their availability. The backplane connects all 96-pins straight +through. With the 6 outer left and right pins connected for VCC and ground, +as can be seen in figure \ref{fig:schem_back_conn}. + +\begin{figure}[H] + \includegraphics[width=\textwidth, angle=0]{schem_pdf/backplane_conn.pdf} + \caption{Layout of the DIN41612 Connectors on the Backplane} + \label{fig:schem_back_conn} +\end{figure} + +\subsubsection{Termination resistors} + +In constrast to other systems using this backplane, no termination resistors +were used. This makes the bus more prone to refelctions, however these were not +a problem during development with the maximum transmission rate of 1MHz, as can +be seen in the sample recording in figure \ref{fig:reflex} + +\begin{figure}[H] +\begin{tikzpicture} + \begin{axis}[ + ylabel=Voltage on MS1, + xlabel=Time, + grid=both, + xmin = -0.000001, + xmax = 0.000002, + minor tick num=5, + width=\textwidth, + height=0.25\textheight] + + \addplot table [x=t, y=c1, col sep=comma, mark=none] {meas/20200319reflexions.csv}; + \end{axis} + \end{tikzpicture} + \caption{Measurement at around 1MHz bus clock on MS1} + \label{fig:reflex} +\end{figure} + +The ripple seen in figure \ref{fig:reflex} are most likely due to +the sample rate of the Oszilloscope, which is around 10Mhz after an average +filter has been applied. The measurement was performed on the finished project, +with all cards installed. + +\subsection{Case} + +The case for the backplane was provided by the hackerspace, and is meant for +installation in a rack. The case is meant for installation of cards in the +EUROCARD format, therfore all modules were built by this formfactor. + +\begin{figure}[H] + \includegraphics[width=\textwidth, angle=0]{pics/case} + \caption{The case with installed backplane} + \label{fig:case} +\end{figure} + diff --git a/sections/DP/MEAS_TEST/main.tex b/sections/DP/MEAS_TEST/main.tex new file mode 100644 index 0000000..f898011 --- /dev/null +++ b/sections/DP/MEAS_TEST/main.tex @@ -0,0 +1,31 @@ +\subsection{Testing and Measurement} + +For functional testing and verification of implementation goals, measurements +needed to be performed invarious different ways and testing software was +required. + +\subsubsection{Measurements} + +Measurements were performed, if not noted otherwise, with the Analog Discovery +2 from Digilent as it has 16bit digital I/O Pins as well a a Waveform generator +and 2 differential oszilloscope inputs. These were for all nescessary +measurements enough. Though due to the size and construction of the device, +which can be seen in figure \ref{fig:ad2} +errors wer encountered while performing the measurements. These are noted on +occurance. + +\begin{figure}[H] + \centering + \includegraphics[width=.6\textwidth, angle=0]{pics/ad2} + \caption{Digilent Analog Discovery 2;Source: \url{https://www.sparkfun.com/}} + \label{fig:ad2} +\end{figure} + +\subsubsection{Testing} + +All testing was performed with an Atmel ATMega2560 due to it's large amount +of I/O pins, 5V I/O which is the more common voltage level on CMOS +peripherials, way of addressing pins (8 at a time) and availability. All +testing software was written for this ATMega and compiled using the avr-gcc +from the GNU-Project. + diff --git a/sections/DP/PARALLELBUS/main.tex b/sections/DP/PARALLELBUS/main.tex index 57ddad2..091c847 100644 --- a/sections/DP/PARALLELBUS/main.tex +++ b/sections/DP/PARALLELBUS/main.tex @@ -1 +1,75 @@ -\ +\subsection{Parallel bus} + +The core part of the hardware is the interface between the microprocessor and +the hardware peripherials. This bus is delivering data in parallel and is +therefore named the ``parallel bus``. This bus has 3 different sub-parts: + +\begin{enumerate} + \item{The address bus} + \item{The data bus} + \item{The control bus} +\end{enumerate} + +This split is common in many computer architectures and bus systems used by +various microprocessor manufacturers. In figure \ref{fig:atari_pbi} the +layout of the Atari Parallel Bus Interface is shown as used on the Atari 800XL. + +\begin{figure}[H] + \includegraphics[width=\textwidth, angle=0]{pics/atari_pbi} + \caption{Atari PBI Pinout;Source: \url{https://www.atarimagazines.com}} + \label{fig:atari_pbi} +\end{figure} + +\subsubsection{Address Bus} + +The address bus contains the nescessary data lines for addressing the individual +registers of the Serial connection and the uart. On any modern system this bus +is from 16 to 64 bits wide. For our implementation the bus size was chosen to +be 8 bit, which is multiple times the amount of needed address space, but +is the smallest addressable unit on most microcontroller architectures and +therefore easy to program with. The address bus is unidirectional. + +\subsection{Data Bus} + +The data bus contains the actual data to be stored to and read from registers. +The data bus is, as well on most systems a multiple of 16 bits wide, but for the +same reasons as the data bus, was shrunk down in our case to 8 bits. The data +bus is bidirectional. + +\subsection{Control Bus} + +Control bus is a term which referes to any control lines (such as read and write +lines or clock lines) which are neither address nor data bus. The control bus +in our case needed to be 5 bits wide and consists of: + +\begin{itemize} + \item{$MR$ ... Master Reset} + \item{$\lnot WR$ ... Write Not} + \item{$\lnot RD$ ... Read Not} + \item{$\lnot MS1$ ... Module Select 1 Not} + \item{$\lnot MS2$ ... Module Select 2 Not} +\end{itemize} + +\subsubsection{Master Reset} + +A high level on the $MR$ lane signals to the peripherials that a reset of all +registers and states should occure. This is needed for the serial console and +the dac. + +\subsubsection{Write Not} +A low level on the $\lnot WR$ lane signals the corresponding modules that the +data on +the data bus should be written to the register on the address specified from the +address bus. + +\subsubsection{Read Not} +A low level on the $\lnot RD$ lane signals the corresponding modules that the +data +from the register specified by the address on the address bus should be written +to the data bus. + +\subsubsection{Module Select 1 and 2 Not} + +A low level on one of these lines signals the corresponding module that the +data on address data and the control lines is meant for it. + diff --git a/sections/DP/UART/main.tex b/sections/DP/UART/main.tex new file mode 100644 index 0000000..bdf0f5e --- /dev/null +++ b/sections/DP/UART/main.tex @@ -0,0 +1,200 @@ +\subsection{Serial Console} + +One core part of any computer systems is it's way to get human input. On older +systems, and even today on server machines, this is done via a serial console. +On this serial console, characters are transmitted in serial, which means bit +by bit over the same line. The voltage levels used in these systems vary from +5V to 3.3V or +-10V. The most common standart for these voltage levels is the +former RS-232\footnote{RS... Recommended Standard} or as it should be called +now TIA-\footnote{TIA...Telecommunications Industry +Association}/EIA-\footnote{EIA.. Electronic Industries Alliance}232. Voltage- +levels as per TIA-/EIA Standard are not practical to handle over short +distances to handle however, so other voltages are used on most interface chips +and need to be converted. + +\subsubsection{16550 UART} + +The 16550 UART\footnote{Uinversal Asynchronous Receiver and Transmitter} is a +very common interface chip for serial communications. It produces 5V logic +levels as output on TX and needs the same as input on RX. Thoug common for a +UART, these voltage levels need to be converted to TIA-/EIA-232 levels for a +more common interface. + +The 16550 UART is, in it's core a 16450 UART, but has been given a FIFO +\footnote{First-In First-Out} buffer. It needs three address lines, and 8 +data lines, which can be seen in figure \ref{fig:16550_pinout} + +\begin{figure}[H] + \centering + \includesvg[height=.3\textheight, angle=0]{pics/pc16550d_pinout.svg} + \caption{PC-16550D Pinout\cite{pc16550}} + \label{fig:16550_pinout} +\end{figure} + +In figure \ref{fig:16550_pinout} the most important lanes are the SIN and +sout lanes, as they contain the serial data to and from the 16550 UART. + +\subsubsection{MAX-232} + +To convert the voltage levels of the 16550 UART to levels compliant wit +TIA-/EIA-232 levels, the MAX-232 is used. It has two transmitters and two +receivers side and generates the needed voltage levels via an internal voltage +pump\cite{max232}. + +\subsubsection{Schematics} +Based on the descriptions in the datasheets the schematic in figure +\ref{fig:schem_uart} was developed. + +\begin{figure}[H] + \centering + \includegraphics[height=.65\textheight, angle=-90]{schem_pdf/16550.pdf} + \caption{The schematic of the UART Module} + \label{fig:schem_uart} +\end{figure} + +\paragraph{Element Description} + +The quartz oszillator Y1 is the clock source for the Baud Rate generation and +was chosen with 1.8432 MHz for availability reasons and because it is the lowest +ozillator from which all common baud rates can still be derived from +\cite{pc16550}. +Resistors R1 and R2 are for stability and functionality of the Oszillator +nescessary as per datasheet. The resulting frequency can bemeasured via +J1, the measurement can be seen in \ref{fig:uartquartz}. C1 is used to +stabilize the +voltage for the 16550 UART and is common practice. Via JP1 the UART can be +transformed into a USRT where the receiver is synchronized to the transmitter +via a clock line. This mode has, however, not been tested, and the clock needs +to be 16 times the receiver clock rate\cite{pc16550}. The final output of the +16550 UART can be used and measured via J2, as shown in figure \ref{fig:uart232} +. Before the UART on J2 can be use however, the Jumpers JP2 and JP3 need to be +removed as otherwise the MAX-232 will short out with the incoming signal. +capacitors C4, C6, C7, C7 and C8 are for the voltage pump as defined in the +datasheet\cite{max232}. R4 and R5 have been suggested by the supervisor in +order toavoid damage to the MAX-232. The RJ-45 plug is used to transmit the +TIA-/EIA-232 signal, rather than the more common D-SUB connector, because the +RJ-45 connector fits on a 2.54mm grid. The Pinout onthe RJ-45 plug can be seen +in figure \ref{fig:rs232rj45}. C5 has the same functionality for the +MAX-232 as the C1 has to the 16550-UART. + +\begin{figure}[H] +\begin{tikzpicture} + \begin{axis}[ + ylabel=Quartz Voltage, + xlabel=Time, + grid=both, + minor tick num=5, + width=\textwidth, + height=0.5\textheight] + + \addplot table [x=t, y=c1, col sep=comma, mark=none] {meas/20200319uartquartz.csv}; + \end{axis} + \end{tikzpicture} + \caption{Measurement of the 1.8432 MHz Output on J1} + \label{fig:uartquartz} +\end{figure} + +\begin{figure}[H] +\begin{tikzpicture} + \begin{axis}[ + ylabel=Lane Voltage, + xlabel=Time, + grid=both, + minor tick num=5, + width=\textwidth, + height=0.5\textheight] + + \addplot table [x=t, y=c1, col sep=comma, mark=none] {meas/20200218ttluart.csv}; + \addplot table [x=t, y=c2, col sep=comma, mark=none] {meas/20200218ttluart.csv}; + \legend{TIA-/EIA-232 level,UART level} + \end{axis} + \end{tikzpicture} + \caption{Measurement of a character transmission before and after MAX-232} + \label{fig:uart232} +\end{figure} + +\begin{figure}[H] + \centering + \includegraphics[width=\textwidth, angle=0]{pics/rj45-consoleport-iface-500.png} + \caption{Pinout of the RJ-45 Plug; Src: \url{https://www.wti.com/}} + \label{fig:rs232rj45} +\end{figure} + +\subsubsection{Demonstration Software} + +To demonstrate the functionality and prove, that the schematic has no underlying +error, a program which regularly transmits a character was written as well as +a simple echo program, which transmits all received characters. Both programs +transmit 8 bit characters without parity at 38400 Baud. The output for program +one can be seen in figure \ref{fig:uart232} and the output for program two in +figure \ref{fig:232_echo}. + +\begin{figure}[H] +\begin{tikzpicture} + \begin{axis}[ + ylabel=Lane Voltage, + xlabel=Time, + grid=both, + minor tick num=5, + width=\textwidth, + height=0.5\textheight] + + \addplot table [x=t, y=c1, col sep=comma, mark=none] {meas/20200218echo.csv}; + \addplot table [x=t, y=c2, col sep=comma, mark=none] {meas/20200218echo.csv}; + \legend{RX,TX} + \end{axis} + \end{tikzpicture} + \caption{Measurement of a character echo} + \label{fig:232_echo} +\end{figure} + +\paragraph{Transmit code} +The transmit code regularly transmits the letter capital A via the 16550 UART, +but before it can do this it needs to perform some initialisations. The +functions shown in listing \ref{lst:16550-general} are the read and write +routines for accessing the 16550 UART. These routines also apply to the echo +code. +\lstinputlisting[language=C,frame=trBL, + breaklines=true, breakautoindent=true, formfeed=\newpage, + label={lst:16550-general}, caption={Read and write routines for the + 16550 UART}, + columns=flexible, style=cstyle, firstline=0, lastline=69] + {code/16550/transmit/src/main.c} +To write to the 16550 UART, you need to perform some setup tasks. After startup, +it requires a $MR$ for at least 5µs\cite{pc16550}. The baud rate divisor latch +needs to be set to the specified divisor for the desired +baud rate, and the character width and parity control +needs to be set. The $MR$ signal is beeing generated by the AVR on bootup. To +access the divisor latch, the divisor latch access bit needs to be set and +after setting up the baud rate divisor latch, it nees to be cleared to allow +a regular transmission. This process can be seen in listing \ref{lst:16550-transmit} +\lstinputlisting[language=C,frame=trBL, + breaklines=true, breakautoindent=true, formfeed=\newpage, + label={lst:16550-transmit}, caption={16550 INIT routines and single char transmission}, + columns=flexible, style=cstyle, firstline=71, lastline=106] + {code/16550/transmit/src/main.c} + +The output of this code on the address, data and control bus as well as on the +SOUT lane of the 16550 UART can be seen in figure \ref{fig:16550A} + +\begin{figure}[H] + \centering + \includegraphics[width=\textwidth, angle=0]{meas/20200211_first_trans.png} + \caption{Transmission of character A via the 16550 UART} + \label{fig:16550A} +\end{figure} + +\paragraph{Echo code} + +The echo code permanently polls the 16550 UART wether a character has been +received, and if yes, reads it from the receiver holding register andwrites it +back to the tx holding register. The output of this code can be seen in figure +\ref{fig:232_echo}. The initialisation is practically the same as for the +transmission code, as well as the read and write routines in listing +\ref{lst:16550-general}. + +\lstinputlisting[language=C,frame=trBL, + breaklines=true, breakautoindent=true, formfeed=\newpage, + label={lst:16550-echo}, caption={16550 character echo}, + columns=flexible, style=cstyle, firstline=76, lastline=109] + {code/16550/echo/src/main.c} diff --git a/sections/DP/textadv/main.tex b/sections/DP/textadv/main.tex new file mode 100644 index 0000000..1fbb3ae --- /dev/null +++ b/sections/DP/textadv/main.tex @@ -0,0 +1,25 @@ +To illustrate how the components work together and can be used in various +different applications, a small text-adventure with audio effects was written in +C. The main goal was to show the capabilities of even small systems like the +one developed. + +\subsection{General Implementation details} + +Like the before examples, the textadventure was implemented on an ATMega2560 +and uses 3 different Registers for transmission: PORTF, PORTK and PORTL for +address bus, data bus and control bus respectively, as can be seen in listing +\ref{lst:textadv-avr.h} + +\lstinputlisting[language=C,frame=trBL, + breaklines=true, breakautoindent=true, formfeed=\newpage, + label={lst:textadv-avr.h}, caption={The avr.h header file}, + columns=flexible, style=cstyle]{./code/textadv/include/avr.h} + +The in listing \ref{lst:textadv-avr.h} shown defines MR_SHIFT, WR_SHIFT, +RD_SHIFT, CS_UART_SHIFT and CS_DAC_SHIFT are used to indicate the position of +the corresponding control lines inside the control bus register. All other +shift values are the same bitordering in input as in output. + +The BUS_HOLD_US is used to tell the avr how many microsecons it takes for the +data bus to be latched into input register of the devices on write or how long +it takes for the data bus to become stable on read. diff --git a/sections/texput.log b/sections/texput.log new file mode 100644 index 0000000..87845b5 --- /dev/null +++ b/sections/texput.log @@ -0,0 +1,21 @@ +This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Arch Linux) (preloaded format=xelatex 2020.3.10) 18 MAR 2020 19:52 +entering extended mode + restricted \write18 enabled. + %&-line parsing enabled. +**main.tec + +! Emergency stop. +<*> main.tec + +End of file on the terminal! + + +Here is how much of TeX's memory you used: + 3 strings out of 492483 + 18 string characters out of 6134979 + 66274 words of memory out of 5000000 + 4587 multiletter control sequences out of 15000+600000 + 3640 words of font info for 14 fonts, out of 8000000 for 9000 + 1348 hyphenation exceptions out of 8191 + 0i,0n,0p,1b,6s stack positions out of 5000i,500n,10000p,200000b,80000s +No pages of output. diff --git a/svg-inkscape/pc16550d_pinout_svg-tex.pdf b/svg-inkscape/pc16550d_pinout_svg-tex.pdf new file mode 100644 index 0000000..d05adee Binary files /dev/null and b/svg-inkscape/pc16550d_pinout_svg-tex.pdf differ diff --git a/svg-inkscape/pc16550d_pinout_svg-tex.pdf_tex b/svg-inkscape/pc16550d_pinout_svg-tex.pdf_tex new file mode 100644 index 0000000..c8af957 --- /dev/null +++ b/svg-inkscape/pc16550d_pinout_svg-tex.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.4, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'pc16550d_pinout_svg-tex.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{114.46999714bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,2.29603007)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{pc16550d_pinout_svg-tex.pdf}}% + \end{picture}% +\endgroup% diff --git a/texput.log b/texput.log index 0b2576d..4be882e 100644 --- a/texput.log +++ b/texput.log @@ -1,21 +1,21 @@ -This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Arch Linux) (preloaded format=xelatex 2020.2.5) 7 MAR 2020 19:44 +This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Arch Linux) (preloaded format=xelatex 2020.3.10) 19 MAR 2020 17:00 entering extended mode - restricted \write18 enabled. + \write18 enabled. %&-line parsing enabled. -**main.tec +**bericht.tex ! Emergency stop. -<*> main.tec - +<*> bericht.tex + End of file on the terminal! Here is how much of TeX's memory you used: 3 strings out of 492483 - 18 string characters out of 6134980 + 20 string characters out of 6134979 66274 words of memory out of 5000000 4587 multiletter control sequences out of 15000+600000 3640 words of font info for 14 fonts, out of 8000000 for 9000 1348 hyphenation exceptions out of 8191 - 0i,0n,0p,11b,6s stack positions out of 5000i,500n,10000p,200000b,80000s + 0i,0n,0p,17b,6s stack positions out of 5000i,500n,10000p,200000b,80000s No pages of output.