diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/README.md b/lib/node_modules/@stdlib/math/base/special/coversinf/README.md new file mode 100644 index 000000000000..e75d09253ed1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/README.md @@ -0,0 +1,205 @@ + + +# Coversine + +> Compute the [coversed sine][coversed-sine] of a single-precision floating-point number (in radians). + +
+ +The [coversed sine][coversed-sine] is defined as + + + +```math +\mathop{\mathrm{coversin}}(\theta) = 1 - \sin \theta +``` + + + + + +
+ + + +
+ +## Usage + +```javascript +var coversinf = require( '@stdlib/math/base/special/coversinf' ); +``` + +#### coversinf( x ) + +Computes the [coversed sine][coversed-sine] of a single-precision floating-point number (in radians). + +```javascript +var v = coversinf( 0.0 ); +// returns 1.0 + +v = coversinf( 3.141592653589793/2.0 ); +// returns 0.0 + +v = coversinf( -3.141592653589793/6.0 ); +// returns 1.5 +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var TWO_PI = require( '@stdlib/constants/float32/two-pi' ); +var coversinf = require( '@stdlib/math/base/special/coversinf' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'coversinf(%0.4f) = %0.4f', x, coversinf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/coversinf.h" +``` + +#### stdlib_base_coversinf( x ) + +Computes the [coversed sine][coversed-sine] of a single-precision floating-point number (in radians). + +```c +float out = stdlib_base_coversinf( 0.0f ); +// returns 1.0f + +out = stdlib_base_coversinf( 3.141592653589793f / 2.0f ); +// returns 0.0f +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_coversinf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/coversinf.h" +#include + +int main( void ) { + const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f }; + + float y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_coversinf( x[ i ] ); + printf( "coversinf(%f) = %f\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.js new file mode 100644 index 000000000000..4080a2cfbefd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.js @@ -0,0 +1,54 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var pkg = require( './../package.json' ).name; +var coversinf = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = coversinf( x[ i%x.length ] ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..15fa509ca9fc --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/benchmark.native.js @@ -0,0 +1,63 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var coversinf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( coversinf instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = coversinf( x[ i%x.length ] ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/Makefile new file mode 100644 index 000000000000..d564e8b2d6f9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/Makefile @@ -0,0 +1,127 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles C source files. +# +# @param {string} [C_COMPILER] - C compiler +# @param {string} [CFLAGS] - C compiler flags +# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler +# @param {string} CFLAGS - C compiler flags +# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/benchmark.c new file mode 100644 index 000000000000..914a36c2d73e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/benchmark.c @@ -0,0 +1,137 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include +#include +#include +#include +#include + +#define NAME "coversinf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [min,max). +* +* @param min minimum value (inclusive) +* @param max maximum value (exclusive) +* @return random number +*/ +static float random_uniform( const float min, const float max ) { + float v = (float)rand() / ( (float)RAND_MAX + 1.0f ); + return min + ( v*(max-min) ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + double t; + float y; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = random_uniform( -10.0f, 10.0f ); + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = 1.0f - sinf( x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..a4bd7b38fd74 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..165a657e88d6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/benchmark/c/native/benchmark.c @@ -0,0 +1,138 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/coversinf.h" +#include +#include +#include +#include +#include + +#define NAME "coversinf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [min,max). +* +* @param min minimum value (inclusive) +* @param max maximum value (exclusive) +* @return random number +*/ +static float random_uniform( const float min, const float max ) { + float v = (float)rand() / ( (float)RAND_MAX + 1.0f ); + return min + ( v*(max-min) ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + double t; + float y; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = random_uniform( -10.0f, 10.0f ); + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_coversinf( x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/coversinf/binding.gyp new file mode 100644 index 000000000000..68a1ca11d160 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/repl.txt new file mode 100644 index 000000000000..e3800b392781 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/repl.txt @@ -0,0 +1,33 @@ + +{{alias}}( x ) + Computes the coversed sine of a single-precision floating-point number + (in radians). + + The coversed sine is defined as `1 - sin(x)`. + + Parameters + ---------- + x: number + Input value (in radians). + + Returns + ------- + y: number + Coversed sine. + + Examples + -------- + > var y = {{alias}}( 3.14 ) + ~0.9984 + > y = {{alias}}( -4.2 ) + ~0.1284 + > y = {{alias}}( -4.6 ) + ~0.0063 + > y = {{alias}}( 9.5 ) + ~1.0752 + > y = {{alias}}( -0.0 ) + 1.0 + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/index.d.ts new file mode 100644 index 000000000000..7a0487a44036 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the coversed sine of a single-precision floating-point number (in radians). +* +* @param x - input value (in radians) +* @returns coversed sine +* +* @example +* var v = coversinf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = coversinf( 3.141592653589793/2.0 ); +* // returns 0.0 +* +* @example +* var v = coversinf( -3.141592653589793/6.0 ); +* // returns 1.5 +* +* @example +* var v = coversinf( NaN ); +* // returns NaN +*/ +declare function coversinf( x: number ): number; + + +// EXPORTS // + +export = coversinf; diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/test.ts new file mode 100644 index 000000000000..41a5e47eab25 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import coversinf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + coversinf( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + coversinf( true ); // $ExpectError + coversinf( false ); // $ExpectError + coversinf( null ); // $ExpectError + coversinf( undefined ); // $ExpectError + coversinf( '5' ); // $ExpectError + coversinf( [] ); // $ExpectError + coversinf( {} ); // $ExpectError + coversinf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + coversinf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/Makefile new file mode 100644 index 000000000000..25ced822f96a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/example.c new file mode 100644 index 000000000000..4d49733f0252 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/coversinf.h" +#include + +int main( void ) { + const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f }; + + float y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_coversinf( x[ i ] ); + printf( "coversinf(%f) = %f\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/index.js new file mode 100644 index 000000000000..9cbe529b31e8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/examples/index.js @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var TWO_PI = require( '@stdlib/constants/float32/two-pi' ); +var coversinf = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'coversinf(%0.4f) = %0.4f', x, coversinf ); diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/include.gypi b/lib/node_modules/@stdlib/math/base/special/coversinf/include.gypi new file mode 100644 index 000000000000..ecfaf82a3279 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "coversin", + "coversinf", + "coversine", + "coversed", + "coversinus", + "covers", + "cosiv", + "cvs", + "versed", + "sine", + "sin", + "trig", + "trigonometry", + "radians", + "angle" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/coversinf/src/Makefile new file mode 100644 index 000000000000..7733b6180cb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/coversinf/src/addon.c new file mode 100644 index 000000000000..fea469e6b53f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/coversinf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_coversinf ) diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/src/main.c b/lib/node_modules/@stdlib/math/base/special/coversinf/src/main.c new file mode 100644 index 000000000000..852dbd9c4eb0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/src/main.c @@ -0,0 +1,34 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/coversinf.h" +#include "stdlib/math/base/special/sinf.h" + +/** +* Computes the coversed sine of a single-precision floating-point number (in radians). +* +* @param x input value (in radians) +* @return coversed sine +* +* @example +* float y = stdlib_base_coversinf( 3.141592653589793f / 2.0f ); +* // returns 0.0f +*/ +float stdlib_base_coversinf( const float x ) { + return 1.0f - stdlib_base_sinf( x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..e4d0b9d1f061 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[1.1082817167043686,1.130976676940918,1.259696751832962,1.3839424848556519,1.5015732049942017,1.7159793972969055,1.7090319395065308,1.8727141618728638,1.8678372502326965,1.9695636630058289,1.9996811151504517,1.9998821020126343,1.999985158443451,1.9999901056289673,1.852173089981079,1.857312262058258,1.8623674511909485,1.8673380613327026,1.4747746884822845,1.4834656417369843,0.9495101496577263,0.959401335567236,0.9692965019494295,0.9791946802288294,0.9890948962420225,0.9989961825776845,1.0088975671678782,0.10374820232391357,0.10818380117416382,0.11270689964294434,0.11731696128845215,0.12201350927352905,0.1267961859703064,0.1316644549369812,0.13661783933639526,0.1697731614112854,0.16429460048675537,0.15889793634414673,0.15358376502990723,0.14835262298583984,1.100850909948349,0.1381412148475647,1.0811303853988647,0.12826776504516602,1.0613780431449413,0.11873620748519897,1.0416016317903996,1.9175032377243042,1.021808909252286,1.9094476699829102,1.0020076336804777,1.9010354280471802,0.9822055697441101,1.8922698497772217,1.7950570583343506,1.8831543922424316,1.806911587715149,1.8736925721168518,1.8184497356414795,1.8638882040977478,1.8296668529510498,1.8537449836730957,1.840558648109436,0.8784716725349426,1.8511208295822144,0.8981504440307617,1.8613492846488953,0.9178691506385803,1.8712399005889893,0.9376200623810291,0.07442045211791992,0.9573954381048679,0.08209794759750366,0.9771875217556953,0.09013539552688599,0.9969885519240052,0.0985296368598938,0.21773415803909302,0.10727739334106445,0.20555216073989868,1.200673446059227,0.1936817169189453,0.12581950426101685,1.0761268436908722,1.1617258787155151,0.17089390754699707,0.14573276042938232,1.9529366493225098,1.1225246414542198,0.1494065523147583,0.1669858694076538,1.9401851892471313,1.0831312388181686,0.12925326824188232,1.729833960533142,1.925959050655365,1.0436074435710907,0.1104656457901001,1.7563301920890808,1.9102806448936462,1.0040152594447136,0.7597191780805588,1.781640112400055,1.8931745290756226,0.9644167758524418,0.7983432561159134,1.8057241439819336,1.8746675252914429,0.03554069995880127,0.8372836112976074,1.8285444378852844,1.854788601398468,0.04675948619842529,0.8764791637659073,1.8500651717185974,0.2985219955444336,0.05947333574295044,0.9158684611320496,1.8702526688575745,0.27085262537002563,0.07366234064102173,0.955389715731144,1.8890752792358398,0.2443268895149231,0.08930426836013794,0.9949809331446886,1.2412551045417786,0.2189863920211792,0.10637450218200684,1.0345800258219242,1.2026398479938507,0.19487082958221436,0.12484633922576904,1.964724063873291,1.163706749677658,0.17201805114746094,0.1446908712387085,1.9535434246063232,1.1245169043540955,0.15046393871307373,1.7007622122764587,1.9408671855926514,1.085131749510765,0.1302422285079956,1.7284600138664246,1.9267153143882751,1.0456130802631378,0.7195443511009216,1.755015254020691,1.9111099243164062,1.0060228686779737,0.7577708512544632,1.7803863286972046,1.8940755724906921,0.02538323402404785,0.7963772714138031,1.8045334219932556,1.8756389021873474,0.03501218557357788,0.8353030532598495,1.393182784318924,1.8558288216590881,0.046154677867889404,1.9977986216545105,1.8490061163902283,0.29995423555374146,0.8481881320476532,0.9138681143522263,1.3191937506198883,1.812214970588684,0.07290792465209961,1.9894222617149353,1.8881544470787048,0.24564331769943237,1.5778025388717651,0.9929733350872993,1.243202954530716,0.5344053208827972,0.10547524690628052,1.974841058254242,1.9217329621315002,0.19606316089630127,1.6405741572380066,1.0721226185560226,1.1656869649887085,0.6058944463729858,0.14365237951278687,1.9541462659835815,0.002135336399078369,0.15152472257614136,1.699328601360321,0.48945552110671997,1.0871319249272346,0.6798551082611084,0.1871998906135559,1.9274678230285645,0.010432600975036621,0.11230731010437012,1.7536973357200623,0.42301708459854126,1.008030453696847,0.7558234930038452,1.4664828181266785,1.8949730396270752,0.02493572235107422,0.07865679264068604,1.803339421749115,0.3601970076560974,0.9288786202669144,0.8333231657743454,1.3950279355049133,1.8568655848503113,0.04555368423461914,1.9979297518730164,1.8479436039924622,0.30138927698135376,1.5096811056137085,0.911868117749691,1.3210957050323486,1.813384473323822,0.07215726375579834,1.9897115230560303,1.887230098247528,0.2469627857208252,1.5761627554893494,0.9909657649695873,1.2451498210430145,0.532629519701004,0.1045796275138855,1.9752865433692932,0.00012570619583129883,0.19725877046585083,1.6390312314033508,1.0701200664043427,1.1676665246486664,0.6040500998497009,0.1426173448562622,1.954745352268219,0.0020061731338500977,0.15258896350860596,1.6978921294212341,0.491182804107666,1.0891317501664162,0.6779537796974182,0.1860319972038269,1.9282166361808777,0.010145366191864014,0.11323344707489014,1.7523763179779053,0.424657940864563,1.0100380070507526,0.753877118229866,1.4682576954364777,1.895866870880127,0.02449214458465576,1.9998578429222107,1.8021422028541565,0.36174124479293823,0.9308813139796257,0.831343948841095,1.3968714773654938,1.8578988313674927,0.04495656490325928,1.9980568289756775,1.8468776941299438,0.3028271794319153,1.5079527497291565,0.9098684713244438,1.3229963779449463,0.4624459147453308,0.07141035795211792,1.9899967908859253,1.88630211353302,0.24828529357910156,1.5745207071304321,0.9889582311734557,1.2470956891775131,0.5308555662631989,0.103687584400177,1.975728154182434,0.0001595616340637207,0.19845759868621826,1.637485682964325,0.5627032220363617,1.1696453988552094,0.6022073328495026,0.1415858268737793,1.9553405046463013,0.0018811225891113281,0.15365660190582275,1.6964528560638428,0.4929121732711792,1.0911312103271484,0.6760537624359131,1.5384002327919006,1.92896169424057,0.009862065315246582,0.11416321992874146,1.7510523200035095,0.42630118131637573,1.012045519426465,0.7519317418336868,1.470030665397644,1.8967570662498474,0.02405250072479248,1.999821960926056,1.8009417653083801,0.3632880449295044,1.4363937973976135,0.8293654173612595,1.3987134397029877,1.8589286804199219,0.044363319873809814,1.9981799125671387,1.8458083271980286,0.30426788330078125,1.5062223672866821,0.9078691899776459,1.3248957693576813,0.4607541561126709,1.7230319380760193,0.02983015775680542,1.8853705525398254,0.2496107816696167,1.5728763341903687,0.6371067464351654,1.1323416978120804,1.7673831582069397,0.1027991771697998,1.9761658310890198,0.00019747018814086914,1.9667711853981018,0.699895441532135,1.0661141276359558,1.1716235876083374,0.6003661751747131,1.6049931049346924,0.22393816709518433,1.9476246237754822,0.15472763776779175,1.6950107216835022,0.49464356899261475,1.2870589196681976,1.6566179990768433,0.18370604515075684,1.9297029972076416,0.009582817554473877,1.9949952960014343,0.05682218074798584,1.2227031886577606,1.0140529833734035,0.7499873638153076,1.4718017578125,0.3331504464149475,1.8241007924079895,0.08101487159729004,1.7997381091117859,0.3648374080657959,1.434586524963379,0.7906215488910675,0.28505760431289673,1.859955072402954,0.04377388954162598,1.9982990026474,0.01621091365814209,1.9135187268257141,0.8561304062604904,0.9058702811598778,1.3267938196659088,0.4590644836425781,1.7244173884391785,0.030318796634674072,1.8844354748725891,0.25093936920166016,1.571229636669159,0.6389782428741455,1.1303514540195465,1.7686688899993896,0.10191434621810913,1.9765995740890503,0.00023937225341796875,1.9662559628486633,0.12201529741287231,1.0641107559204102,1.1736010909080505,0.598526656627655,1.606590449810028,0.22267359495162964,1.9469814896583557,0.15580207109451294,1.693565845489502,0.49637699127197266,1.2851352095603943,0.949513852596283,0.18254798650741577,1.9304405450820923,0.009307563304901123,1.994792640209198,0.057491183280944824,1.2207455188035965,1.0160603895783424,0.7480439841747284,1.4735709726810455,0.33165574073791504,1.8252363204956055,0.08180832862854004,1.7985312342643738,0.36638933420181274,1.4327775239944458,0.7925851047039032,0.2836553454399109,1.8609779477119446,0.04318833351135254,1.9984140396118164,0.016572952270507812,1.9127001762390137,0.8581174463033676,0.9038717523217201,1.3286905586719513,0.45737701654434204,1.7257999181747437,0.13216090202331543,1.8834968209266663,0.2522709369659424,1.569580614566803,0.6408511996269226,1.1283606886863708,1.7699515223503113,0.10103315114974976,1.9770293831825256,0.0002853274345397949,1.9657369256019592,0.1229780912399292,1.0621071197092533,1.1755778938531876,0.5966887176036835,1.6081852912902832,0.22141218185424805,1.9463345408439636,0.1568799614906311,1.6921181678771973,0.49811244010925293,1.2832103371620178,0.9515190273523331,0.18139326572418213,1.9311743378639221,0.009036242961883545,1.9945860505104065,0.058164000511169434,1.218786969780922,1.0180677324533463,0.7461016178131104,1.4753382503986359,0.33016371726989746,1.8263685703277588,0.08260548114776611,1.7973211407661438,0.36794382333755493,1.4309667646884918,0.7945494949817657,0.9682894684374332,1.861997365951538,0.0426066517829895,1.9985250234603882,0.01693892478942871,1.911877989768982,0.8601050525903702,0.9018736109137535,1.3305859863758087,0.45569175481796265,1.7271795272827148,0.13116520643234253,1.8825545907020569,0.2536054849624634,1.5679293274879456,0.6427256166934967,1.1263694018125534,1.7712310552597046,0.10015559196472168,1.9774552583694458,0.00033527612686157227,1.9652139544487,0.12394446134567261,1.0601032376289368,1.1775539815425873,0.5948524177074432,1.6097777485847473,0.22015386819839478,1.9456838369369507,0.1579611897468567,1.6906676888465881,0.49984991550445557,1.2812843322753906,0.953524399548769,0.18024182319641113,1.9319044351577759,0.008768975734710693,1.9943754076957703,0.05884063243865967,1.8345991373062134,1.0200750026851892,0.7441602945327759,1.477103590965271,0.3286743760108948,1.8274974822998047,0.08340632915496826,1.7961077690124512,0.36950087547302246,1.4291542768478394,0.796514704823494,0.9662829078733921,1.8630133271217346,0.04202878475189209,1.99863201379776,0.017308831214904785,1.9110521078109741,0.8620932251214981,0.8998758643865585,1.3324800729751587,0.45400869846343994,1.7285561561584473,0.1301729679107666,1.881608784198761,0.2549431324005127,1.5662757754325867,0.6446014642715454,1.1243776082992554,1.1136929467320442,0.0992816686630249,1.9778771996498108,0.00038927793502807617,1.9646870493888855,0.12491428852081299,1.0580991096794605,1.1795293539762497,0.5930177569389343,1.6113677024841309,0.2188987135887146,1.906562626361847,0.15904581546783447,1.6892144680023193,0.5015894174575806,1.2793571949005127,0.9555299580097198,0.17909365892410278,1.932630717754364,0.008505702018737793,1.994160771369934,0.05952101945877075,1.8334915041923523,1.0220821909606457,0.7422199845314026,1.4788670539855957,0.327187716960907,1.8286229968070984,0.08421087265014648,1.7948912382125854,0.37106043100357056,1.4273400604724884,0.798480749130249,0.9642764814198017,1.8640258312225342,0.04145479202270508,1.9987350106239319,0.01768273115158081,1.9102225303649902,0.2134629487991333,0.8978785201907158,1.3343728482723236,0.45232778787612915,1.7299299240112305,0.12918424606323242,1.8806594610214233,0.256283700466156,1.5646198987960815,0.6464787423610687,1.1223853155970573,1.11568733304739,0.09841132164001465,1.9782952070236206,0.00044733285903930664,1.9641563296318054,0.1258876919746399,1.0560947507619858,1.1815040111541748,0.5911847352981567,1.6129552125930786,0.21764671802520752,1.9074081778526306,0.16013389825820923,1.6877583861351013,0.5033309161663055,1.277428925037384,0.957535695284605,0.17794883251190186,1.9333532452583313,0.008246421813964844,1.993942141532898,0.06020522117614746,1.8323805928230286,1.024089289829135,0.7402807176113129,1.4806285500526428,0.32570379972457886,1.8297452330589294,0.06183505058288574,1.7936714887619019,0.372622549533844,1.425524115562439,0.8004475980997086,0.9622702039778233,1.865034818649292,0.04088467359542847,1.998833954334259,0.018060624599456787,1.9093892574310303,0.21470433473587036,0.8958815857768059,1.3362642228603363,0.4506491422653198,1.731300711631775,0.12819904088974,1.8797065615653992,0.25762730836868286,1.562961757183075,0.6483574509620667,1.1203925237059593,1.1176812574267387,0.09754467010498047,1.9787092208862305,0.0005093812942504883,1.9636216759681702,0.12686461210250854,1.0540901646018028,1.1834779381752014,0.5893533527851105,1.6145402193069458,0.21639788150787354,1.908250093460083,0.018580913543701172,1.9989620447158813,0.040115416049957275,0.5296107232570648,1.6656553745269775,0.17680734395980835,1.9340720176696777,0.00799107551574707,1.993719458580017,0.060893237590789795,1.8312662243843079,0.3236898183822632,1.4830213785171509,0.7376447319984436,0.001795649528503418,1.9840749502182007,0.08583104610443115,1.7924485802650452,0.374187171459198,1.423706442117691,0.8024152666330338,0.9602640755474567,1.2748043835163116,0.5057028532028198,1.6857735514640808,0.42745673656463623,1.362514615058899,0.8680610507726669,0.89388507604599,1.338154286146164,0.4489727020263672,1.7326685190200806,0.12721729278564453,1.9634281992912292,0.000532686710357666,1.978857398033142,1.4000062346458435,0.3946834206581116,1.7763180136680603,0.09668165445327759,1.9791193008422852,0.0005754828453063965,1.9630831480026245,0.12784504890441895,1.7317937016487122,0.450045108795166,1.3369450867176056,1.990473210811615,0.005045413970947266,1.9430426955223083,0.162320077419281,1.684838056564331,0.5068199336528778,1.2735690474510193,0.9615476727485657,0.8011561632156372,1.4248696863651276,0.37318575382232666,1.7932314276695251,0.565779447555542,1.2089811265468597,1.0281031914055347,0.7364053428173065,1.4841457605361938,0.32274413108825684,1.8319796323776245,0.06045258045196533,1.9938623905181885,0.008153975009918213,1.933612585067749,1.5412771701812744,0.27530258893966675,1.867042362689972,0.03975600004196167,1.999019742012024,0.018828213214874268,1.9077118039131165,0.21719658374786377,1.6135263442993164,0.5905249714851379,1.182215005159378,1.999751627445221,0.03384876251220703,1.8777901530265808,0.2603234648704529,1.5596386790275574,0.6521191000938416,1.116405501961708,1.121667668223381,0.6471551954746246,1.564022958278656,0.25676727294921875,1.5032719373703003,0.7152542769908905,1.0500803478062153,1.1874235570430756,0.5856955647468567,1.617702841758728,0.21390962600708008,1.9099228382110596,0.0178183913230896,1.998771071434021,0.04124903678894043,0.5260712206363678,1.6686464548110962,0.17453426122665405,1.935498297214508,0.007492482662200928,1.9932621717453003,0.06228053569793701,1.8290275931358337,0.32665300369262695,1.4795016944408417,0.7415214478969574,0.0015631914138793945,1.983353316783905,0.08746594190597534,1.7899931073188782,0.37732404470443726,1.4200660288333893,0.8063529580831528,0.9562523066997528,1.2786628603935242,0.5022163987159729,1.6886903643608093,0.15943729877471924,1.358769565820694,0.8720422685146332,0.8898933455348015,1.3419302701950073,0.445626437664032,1.73539537191391,0.1252644658088684,1.964496374130249,0.00040972232818603516,1.9780281782150269,0.0989677906036377,0.39149224758148193,1.7788427472114563,0.09496647119522095,1.979927659034729,0.0007197260856628418,1.961994469165802,0.129816472530365,1.7290512919425964,0.4534030556678772,1.3331619203090668,0.8991564735770226,0.005456268787384033,1.9416993260383606,0.16451984643936157,1.6819065809249878,0.5103169083595276,1.2697047591209412,0.9655602723360062,0.797222688794136,1.4285010695457458,0.3700622320175171,1.7956700325012207,0.569399893283844,1.2050528526306152,1.032116636633873,0.7325342297554016,1.4876551628112793,0.3197953701019287,1.8342006206512451,0.05908524990081787,1.9942985773086548,0.008673667907714844,1.9321664571762085,1.544649064540863,0.2725416421890259,1.8690358996391296,0.038642823696136475,1.9991894364356995,0.019611597061157227,1.9060197472572327,0.21970146894454956,1.6103506088256836,0.5941914618015289,1.1782654970884323,1.9996541142463684,0.034892380237579346,1.875859558582306,0.263031542301178,1.556306540966034,0.6558863818645477,1.1124166026711464,1.1256521195173264,0.643401026725769,1.5673340559005737,0.2540869116783142,1.4997981786727905,0.71910560131073,1.046069722622633,1.1913661509752274,0.5820444822311401,1.6208555102348328,0.21143412590026855,1.9115809202194214,0.017071664333343506,1.998564064502716,0.042398035526275635,1.8623636960983276,1.6716267466545105,0.17227447032928467,1.9369094371795654,0.007009923458099365,1.992788851261139,0.06368297338485718,1.8267755508422852,0.32962697744369507,1.4759742617607117,0.7454023361206055,1.0187906622886658,1.9826157689094543,0.08911550045013428,1.787524938583374,0.3804709315299988,1.4164188206195831,0.8102937787771225,0.9522412456572056,1.2825168073177338,0.49873799085617065,1.6915960907936096,0.1572689414024353,1.3550187349319458,0.8760255575180054,0.8859033808112144,1.3457007706165314,0.4422891139984131,1.738110363483429,0.12332570552825928,1.9655489921569824,0.00030285120010375977,1.977183222770691,0.10071665048599243,0.38831084966659546,1.7813549041748047,0.09326595067977905,1.9807202219963074,0.0008800625801086426,1.960890293121338,0.13180190324783325,1.72629714012146,0.45676982402801514,1.3293733596801758,0.9031520709395409,0.005883157253265381,1.94034081697464,0.1667330265045166,1.6789641976356506,0.5138217508792877,1.265836089849472,0.9695734288543463,0.7932924777269363,1.4321255683898926,0.3669489026069641,1.7980957627296448,0.5730273127555847,1.2011212557554245,1.03612956777215,0.7286674082279205,1.4911566972732544,0.31685757637023926,1.8364081382751465,0.057733118534088135,1.9947187304496765,0.009209394454956055,1.9307052493095398,0.18213170766830444,0.26979243755340576,1.8710154294967651,0.037545204162597656,1.9993429780006409,0.02041083574295044,1.9043130278587341,0.22221893072128296,1.6071650981903076,0.5978645384311676,1.1743131130933762,1.063389167189598,0.03595155477523804,1.873914897441864,0.2657514810562134,1.5529654622077942,0.6596591770648956,1.108425885438919,1.1296345442533493,0.6396526098251343,1.570635974407196,0.2514185905456543,1.8840978145599365,0.7229614555835724,1.0420583561062813,1.195305660367012,0.5784001052379608,1.6239981651306152,0.20897126197814941,1.9132243394851685,0.01634085178375244,1.998340904712677,0.04356253147125244,1.8603238463401794,1.6745961904525757,0.17002803087234497,1.9383055567741394,0.006543278694152832,1.992299497127533,0.06510049104690552,1.8245101571083069,0.3326117992401123,1.472439169883728,0.749287337064743,1.0147759607061744,1.9818624258041382,0.09077978134155273,1.7850440740585327,0.3836277723312378,1.4127648770809174,0.8142376393079758,0.9482309520244598,1.2863662242889404,0.4952676296234131,1.694490671157837,0.15511417388916016,1.3512621521949768,0.8800108432769775,0.8819152638316154,1.3494656682014465,0.43896085023880005,1.7408133745193481,0.12140113115310669,1.9665860533714294,0.00021207332611083984,1.9763225317001343,0.10248005390167236,0.3851392865180969,1.7838544845581055,0.09157997369766235,1.9814969897270203,0.0010565519332885742,1.9597705602645874,0.13380134105682373,1.7235312461853027,0.46014535427093506,1.3255794942378998,0.9071492403745651,0.8548593074083328,1.9389671087265015,0.16895967721939087,1.6760108470916748,0.5173344314098358,1.2619631886482239,0.9735870752483606,0.789365604519844,1.435743123292923,0.3638457655906677,1.8005086779594421,0.08050918579101562,1.1971864253282547,1.0401419140398502,0.7248049676418304,1.4946503043174744,0.31393080949783325,1.8386021852493286,0.05639612674713135,1.9951227903366089,0.009761035442352295,1.9292290806770325,0.1844487190246582,0.2670549750328064,1.8729809522628784,0.036463022232055664,1.9994804859161377,0.021225810050964355,1.9025917053222656,0.2247489094734192,1.6039697527885437,0.601544052362442,1.1703579276800156,1.067395843565464,0.037026286125183105,1.8719561100006104,0.2684832811355591,1.549615502357483,0.6634374856948853,1.104433424770832,1.133614867925644,0.6359100341796875,1.5739287734031677,0.248762309551239,1.8859670162200928,0.7268218100070953,1.0380463115870953,1.1992420107126236,0.5747625529766083,1.6271307468414307,0.20652121305465698,1.914853036403656,0.01562589406967163,1.9981016516685486,0.044742465019226074,1.8582701683044434,1.677554726600647,0.16779500246047974,1.9396864771842957,0.006092727184295654,1.9917941689491272,0.06653308868408203,1.8222314715385437,0.3356074094772339,1.4688964486122131,0.7531763762235641,1.0107610207051039,1.2259115129709244,0.09245872497558594,1.7825505137443542,0.3867945671081543,1.4091043174266815,0.8181845098733902,0.944221492856741,1.290211021900177,0.49180543422698975,1.6973740458488464,0.15297305583953857,1.9486709833145142,0.8839980587363243,0.8779290542006493,1.3532249629497528,0.4356415867805481,1.743504524230957,0.11949068307876587,1.96760755777359,0.00013744831085205078,1.9754460453987122,0.10425794124603271,1.765268087387085,1.7863414287567139,0.08990871906280518,1.982257902622223,0.0012491345405578613,1.95863538980484,0.13581478595733643,1.7207537293434143,0.4635295867919922,1.3217803835868835,0.9111478999257088,0.850887730717659,1.93757826089859,0.1711997389793396,1.673046588897705,0.5208549201488495,1.2580860257148743,0.977601146325469,0.785442128777504,1.4393536150455475,0.3607528805732727,1.8029086589813232,0.07893812656402588,1.1932484060525894,1.0441536121070385,0.7209469676017761,1.4981359541416168,0.3110150694847107,1.8407827019691467,0.05507439374923706,1.9955108761787415,0.010328710079193115,1.9277379512786865,0.18677890300750732,0.26432937383651733,1.87493234872818,0.03539639711380005,1.9996018409729004,0.02205657958984375,1.9008558988571167,0.22729140520095825,1.6007646918296814,0.6052300035953522,1.166399985551834,1.0714014321565628,0.03811657428741455,1.8699832558631897,0.2712268829345703,1.5462566614151,0.6672212183475494,1.1004392802715302,1.1375930458307266,0.6321732997894287,1.5772122144699097,0.2461181879043579,1.8878219723701477,0.028558969497680664,1.03403365239501,1.2031751573085785,0.5711318254470825,1.630253255367279,0.20408391952514648,1.9164669513702393,0.014926791191101074,1.9978463053703308,0.04593777656555176,1.8562026023864746,0.29018592834472656,0.16557538509368896,1.941052258014679,0.005658209323883057,1.9912728071212769,0.06798076629638672,1.8199395537376404,0.33861368894577026,1.4653461873531342,0.757069393992424,1.0067459070123732,1.2298211455345154,0.09415233135223389,1.7800443768501282,0.3899712562561035,1.4054371416568756,0.8221343159675598,0.9402129352092743,1.2940511405467987,0.48835140466690063,1.7002462148666382,0.15084558725357056,1.9499332308769226,0.8879871442914009,0.8739448040723801,1.3569785356521606,0.432331383228302,1.7461836338043213,0.11759442090988159,1.9686134457588196,7.897615432739258e-5,1.9745538830757141,0.10605025291442871,1.762677252292633,1.788815677165985,0.08825206756591797,1.9830029606819153,0.001457810401916504,1.957484781742096,0.1378421187400818,1.7179645895957947,0.46692246198654175,1.3179760873317719,0.9151479974389076,0.8469185680150986,1.9361742734909058,0.17345309257507324,1.6700714826583862,0.5243831276893616,1.2542047202587128,0.9816155787557364,0.7815221101045609,1.4429570436477661,0.35767024755477905,1.8052956461906433,0.07738196849822998,1.9876471757888794,1.0481645986437798,0.71709343791008,1.5016135573387146,0.30811047554016113,1.8429496884346008,0.0537678599357605,1.9958828687667847,0.01091223955154419,1.926231861114502,0.18912214040756226,1.64956396818161,1.8768696784973145,0.03434532880783081,1.999707043170929,0.022903144359588623,1.8991055488586426,0.22984635829925537,1.5975499749183655,0.6089223325252533,1.1624393612146378,1.075405865907669,0.6910228431224823,1.8679963946342468,0.2739822268486023,1.5428889989852905,0.6710103154182434,1.0964435189962387,1.1415690034627914,0.6284424960613251,1.5804864168167114,0.2434861660003662,1.8896625638008118,0.027614057064056396,1.0300204437226057,1.207105040550232,0.5675080418586731,1.6333655714988708,0.20165950059890747,1.918066143989563,0.014243543148040771,1.9975748658180237,0.04714846611022949,1.8541212677955627,0.29301995038986206,0.16336923837661743,1.9424028992652893,0.005239665508270264,1.9907355308532715,0.06944340467453003,1.817634403705597,0.34163063764572144,1.4617884159088135,0.7609663307666779,1.0027306848205626,1.2337270677089691,0.09586048126220703,1.7775256037712097,0.3931577801704407,1.4017634391784668,0.8260869830846786,0.9362053424119949,1.2978864908218384,0.4849056601524353,1.7031070590019226,0.1487317681312561,1.951180100440979,0.8919780403375626,0.8699625879526138,1.3607263565063477,0.4290303587913513,1.7488507628440857,0.11571240425109863,1.969603717327118,3.653764724731445e-5,1.9736459851264954,0.10785692930221558,1.7600741386413574,0.41507524251937866,1.376622349023819,0.8530267626047134,0.9089938104152679,1.3238274455070496,0.4617055654525757,0.3251039385795593,1.8301985263824463,0.061554014682769775,1.9935030341148376,0.0077509284019470215,1.9347552061080933,0.17571985721588135,1.6670855283737183,0.5279189944267273,1.2503193020820618,0.985630308277905,0.7776056081056595,1.4465533196926117,0.3545980453491211,1.8076696991920471,0.07584065198898315,1.9882683753967285,0.0036368966102600098,1.9479846954345703,0.1541246771812439,1.695822298526764,0.493669331073761,0.6491182744503021,1.1195857748389244,1.1184881925582886,0.6501536667346954,1.5613754391670227,0.2589137554168701,1.8787928819656372,0.033309876918792725,1.999796211719513,0.0237654447555542,1.8973406553268433,0.23241376876831055,1.594325602054596,0.6126209795475006,1.1584761291742325,1.079409085214138,0.6872065365314484,1.5284489393234253,0.28584766387939453,1.8593780994415283,0.04410499334335327,1.9982325434684753,0.016009032726287842,0.06117278337478638,1.830814242362976,0.32428860664367676,1.4823096692562103,0.7384289801120758,1.0260067526251078,1.2110315710306168,0.56389120221138,1.636467695236206,0.19924789667129517,1.9196504950523376,0.013576209545135498,1.997287392616272,0.04837453365325928,1.8520261645317078,0.29586535692214966,1.5163333415985107,0.7007333636283875,1.0652377530932426,1.1724887639284134,0.5995612442493439,1.6056921482086182,1.7332213521003723,0.12682092189788818,1.9636456370353699,0.0005065202713012695,1.9786908626556396,0.09758323431015015,1.7749943733215332,0.396354079246521,1.3980832397937775,0.8300424665212631,0.9321987703442574,1.301717072725296,0.48146820068359375,1.7059565782546997,0.14663171768188477,1.952411711215973,0.0025268197059631348,1.9859986305236816,0.08136153221130371,1.799210548400879,0.3655160069465637,1.4337953627109528,1.27278733253479,0.9623597115278244,0.8003598302602768,1.4256051778793335,0.3725528120994568,1.7937260270118713,0.0849829912185669,1.984445571899414,0.0019234418869018555,1.9551372528076172,0.1419384479522705,1.7123515605926514,0.47373396158218384,1.3103521764278412,0.9231522232294083,0.8389877080917358,1.3897463083267212,0.4036101698875427,1.7692304253578186,0.10152840614318848,1.9767881035804749,0.00025898218154907227,1.966029405593872,1.9073705673217773,0.21770250797271729,1.6128844022750854,0.5912664830684662,1.181415930390358,1.0561841800808907,0.7094001770019531,1.5085444450378418,0.3023347854614258,1.847242832183838,0.05120062828063965,1.9965786933898926,0.012127280235290527,1.9231748580932617,0.19384783506393433,1.643437385559082,0.5557469129562378,1.219888836145401,1.016938541084528,0.7471941411495209,1.4743443131446838,0.33100271224975586,0.21340763568878174,1.9102596044540405,0.017665982246398926,1.998730480670929,0.041480302810668945,1.8639807105064392,0.27952802181243896,1.536127507686615,0.6786043345928192,1.0884473845362663,1.1495140194892883,0.6209989190101624,1.587006688117981,0.23825883865356445,1.893300712108612,0.025771260261535645,1.999938189983368,0.03102809190750122,1.8830850720405579,0.2528544068336487,1.5688585042953491,0.6416710019111633,0.8071502596139908,0.9554404765367508,1.2794431746006012,0.5015117824077606,1.689279317855835,0.15899735689163208,1.945058524608612,0.004450738430023193,1.9896129965782166,0.07241374254226685,1.812984585762024,0.34769636392593384,1.4546505808830261,0.768771693110466,0.9947001724503934,1.241527572274208,0.5359342992305756,1.6603009700775146,0.18088912963867188,1.9314941763877869,0.008918821811676025,1.994494378566742,0.058459579944610596,0.13021713495254517,1.7284948229789734,0.45408374071121216,1.332395613193512,0.8999649882316589,0.8620045185089111,1.36820450425148,0.4224560260772705,1.7541487216949463,0.11199116706848145,1.9715373516082764,1.1920928955078125e-7,1.97178316116333,0.11151349544525146,1.7548311352729797,0.42160749435424805,1.3691710531711578,0.8609747439622879,0.9009996205568314,1.3314147591590881,0.45495522022247314,1.727782130241394,1.8346484899520874,0.05881035327911377,1.9943848848342896,0.008780837059020996,1.9318719506263733,0.18029308319091797,1.6610814929008484,0.5350134968757629,1.2425364404916763,0.9936603959649801,0.7697834372520447,1.4537242352962494,0.3484848141670227,1.812378704547882,0.07280272245407104,1.989462971687317,0.00435328483581543,1.9453979134559631,0.15843528509140015,1.6900323033332825,0.5006106495857239,1.280441403388977,1.1116090938448906,1.1264582574367523,0.6426419615745544,1.5680030584335327,0.253545880317688,1.8825966715812683,0.031285643577575684,1.9999260902404785,0.02553725242614746,1.8937675952911377,0.23758560419082642,1.5878481268882751,0.6200369000434875,1.1505420506000519,1.0874116197228432,0.6795891523361206,1.5352494716644287,0.2802494764328003,1.8634567260742188,0.041777193546295166,1.9986775517463684,0.017471909523010254,1.910689651966095,1.8263181447982788,0.330230176448822,1.4752594232559204,0.7461882531642914,1.0179781764745712,1.2188743650913239,0.5566787123680115,1.6426410675048828,0.19446349143981934,1.9227746725082397,0.012289226055145264,1.9966641068458557,0.05087268352508545,1.8477947115898132,0.3015902042388916,1.5094395279884338,0.7084054350852966,1.0572223030030727,1.1803932934999466,0.5922156572341919,1.6120624542236328,0.21835064888000488,0.12293505668640137,1.9657601714134216,0.00028318166732788086,1.9770103096961975,0.10107237100601196,1.7698943614959717,0.4027758836746216,1.3907036781311035,0.8379615694284439,0.9241889864206314,1.3093635439872742,0.4746183753013611,1.7116214632987976,0.14247286319732666,1.9548287987709045,0.0019884705543518066,1.9846277236938477,0.0845639705657959,1.7943580746650696,0.37174350023269653,1.4265458583831787,0.799341082572937,0.9703856874257326,0.7924974709749222,1.4328582882881165,0.36632007360458374,1.7985851168632507,0.08177286386489868,1.985824704170227,0.0024535059928894043,1.9527281522750854,0.14609014987945557,1.706692636013031,0.4805793762207031,1.302708238363266,0.9311614111065865,0.831067219376564,1.3971291780471802,0.3971834182739258,1.774336814880371,0.09803175926208496,1.9784768223762512,0.00047397613525390625,1.963922917842865,1.9039658308029175,0.22272992134094238,1.6065192222595215,0.598608672618866,1.173512876033783,1.0642001405358315,0.7017256617546082,1.5154426097869873,0.2966040372848511,1.8514813780784607,0.04869455099105835,1.9972103238105774,0.013405978679656982,1.9200583696365356,0.19862550497055054,1.6372693181037903,0.5629557371139526,1.2120478302240372,1.0249672960489988,0.739432692527771,1.4813985526561737,0.32505548000335693,1.8302351236343384,1.9135551452636719,0.01619488000869751,1.9982937574386597,0.04380011558532715,1.8599093556404114,0.28512024879455566,1.529331386089325,0.6862190961837769,1.0804455503821373,1.1574493795633316,0.6135797798633575,1.5934890508651733,0.23308062553405762,1.8968812823295593,0.02399134635925293,1.999816656112671,0.03304421901702881,1.8792885541915894,0.2582160234451294,1.5622356534004211,0.6491797566413879,1.1195205971598625,0.9474194347858429,1.2871447205543518,0.49456626176834106,1.6950751543045044,0.1546797752380371,1.9476532340049744,0.003726065158843994,1.9884266257286072,0.07544392347335815,1.8082823753356934,0.35380417108535767,1.4474834501743317,0.7765919715166092,0.9866700023412704,1.2493124902248383,0.5288358628749847,1.6663105487823486,0.1763089895248413,1.9343852996826172,0.007880687713623047,1.9936208128929138,0.06119537353515625,0.13420772552490234,1.7229700684547424,0.46082955598831177,1.324811041355133,0.9079583808779716,0.8540553450584412,1.3756588995456696,0.41591888666152954,1.7593980431556702,0.10832715034484863,1.9734083414077759,2.8192996978759766e-5,1.969857633113861,0.1152273416519165,1.7495394945144653,0.4281770586967468,1.361695945262909,0.8689316958189011,0.8930118083953857,1.3389806747436523,0.4482399821281433,1.733265995979309,0.12678897380828857,0.05612736940383911,1.995202660560608,0.00987464189529419,1.928928554058075,0.18491923809051514,1.6550348401069641,0.5421379804611206,1.2347379475831985,1.0016908932011575,0.7619761079549789,1.4608658850193024,0.34241366386413574,1.8170353174209595,0.06982463598251343,1.9905937910079956,0.005133926868438721,1.9427501559257507,0.162800133228302,1.6841977834701538,0.5075841546058655,1.2727241516113281,0.96242531016469,1.1344201564788818,0.6351532936096191,1.5745940208435059,0.24822622537612915,1.8863435983657837,0.029323875904083252,1.9999914765357971,0.02737194299697876,1.8901368975639343,0.24280661344528198,1.581332802772522,0.6274773478507996,1.1425982564687729,1.0954085141420364,0.6719923913478851,1.5420154929161072,0.2746976613998413,1.8674796223640442,0.03951120376586914,1.9990582466125488,0.01899820566177368,1.9073429703712463,1.8217687010765076,0.33621495962142944,1.468178540468216,0.7539639323949814,1.0099484408274293,1.2267030477523804,0.5494948029518127,1.6487730145454407,0.18973106145858765,1.9258394241333008,0.011066019535064697,1.9959765672683716,0.05343198776245117,1.8435086607933044,0.30736011266708374,1.502512812614441,0.7160962820053101,1.049203161150217,1.1882861852645874,0.5848963856697083,1.6183933019638062,0.21336710453033447,1.910286784172058,1.967812418937683,0.00012433528900146484,1.9752667546272278,0.10461950302124023,1.764744758605957,0.4092361330986023,1.3832989037036896,0.8458911180496216,0.9161840826272964,1.3169901072978973,0.4678024649620056,1.7172403931617737,0.1383693814277649,1.9571843147277832,0.0015144944190979004,1.9831933379173279,0.0878254771232605,1.7894543409347534,0.3780115246772766,1.4192688167095184,0.8072146773338318,0.9553748928010464,0.7846485078334808,1.4400834739208221,0.36012816429138184,1.803392767906189,0.07862198352813721,1.9871402978897095,0.0030478239059448242,1.9502575993537903,0.1502968668937683,1.7009881734848022,0.4874582886695862,1.2950447797775269,0.9391750320792198,0.8231576234102249,1.4044864177703857,0.3907955288887024,1.7793933153152466,0.09459328651428223,1.9801023602485657,0.0007534027099609375,1.9617542624473572,0.13024955987930298,0.22780752182006836,1.60011488199234,0.6059767603874207,1.1655986458063126,1.0722119584679604,0.6940703690052032,1.5223074555397034,0.2909187078475952,1.8556649684906006,0.04624980688095093,1.9977775812149048,0.014748334884643555,1.9168825149536133,0.203454852104187,1.6310601830482483,0.5701927542686462,1.2041931599378586,1.0329944416880608,0.7316880524158478,1.4884217381477356,0.3191518187522888,1.8346846103668213,0.058788180351257324,0.01478719711303711,1.997792661190033,0.046181559562683105,1.8557825088500977,0.29075855016708374,1.5225011706352234,0.6938540935516357,1.0724385306239128,1.165374606847763,0.6061855852603912,1.59993314743042,0.22795188426971436,1.9004040360450745,0.022274315357208252,1.999630630016327,0.03512275218963623,1.8754354119300842,0.26362544298171997,1.555576503276825,0.6567111313343048,1.111543856561184,1.1265233755111694,1.2948277294635773,0.48765337467193604,1.700826108455658,0.15041667222976685,1.9501867890357971,0.0030655860900878906,1.987176537513733,0.07853370904922485,1.8035280108451843,0.3599535822868347,1.4402874410152435,0.7844266593456268,0.9786406923085451,1.2570813298225403,0.5217678248882294,1.6722771525382996,0.17178195714950562,1.9372161030769348,0.006906449794769287,1.9926831722259521,0.0639917254447937,1.8262811303138733,1.7173987030982971,0.4676101803779602,1.317205548286438,0.9159577190876007,0.8461155742406845,1.3830890953540802,0.4094194769859314,1.7645983695983887,0.10472065210342407,1.975216567516327,0.0001207590103149414,1.967869520187378,0.11899822950363159,1.7441994547843933,0.4347834587097168,1.3541975319385529,0.8768970966339111,0.8850308954715729,1.3465247452259064,0.44156038761138916,1.7387025952339172,0.12290352582931519,0.0535053014755249,1.9959561824798584,0.011032342910766602,1.9259252548217773,0.1895979642868042,1.6489458680152893,0.5492919981479645,1.2269243001937866,1.0097212810069323,0.7541841268539429,1.4679777920246124,0.3363848924636841,1.8216392397880554,0.06690651178359985,1.9916606545448303,0.005978643894195557,1.9400416016578674,0.16721892356872559,1.6783191561698914,0.5145894289016724,1.2649893462657928,0.9704513046890497,0.7924332618713379,0.6276881694793701,1.5811479091644287,0.2429550290107727,1.8900333642959595,0.027424752712249756,1.9999923706054688,0.029269278049468994,1.8864487409591675,0.2480764389038086,1.5747799277305603,0.6349417865276337,1.1346452683210373,1.1033992618322372,0.6644167900085449,1.5487465262413025,0.269192636013031,1.8714465498924255,0.037307143211364746,1.9993744492530823,0.0205877423286438,1.9039377570152283,0.22277122735977173,0.3422425389289856,1.4610674679279327,0.7617554813623428,1.0019180630333722,1.2345171123743057,0.542339950799942,1.6548631191253662,0.18505090475082397,1.928844392299652,0.009906530380249023,1.9952248334884644,0.05605238676071167,1.8391681909561157,0.31317466497421265,1.495553731918335,0.7238054573535919,1.0411808490753174,1.1961669325828552,0.5776038765907288,1.62468421459198,0.20843428373336792,1.9135818481445312,1.9698022603988647,2.9921531677246094e-5,1.9734603762626648,0.10822433233261108,1.7595458030700684,0.41573452949523926,1.3758694231510162,0.8538306057453156,0.9081845879554749,1.3245961964130402,0.46102088689804077,1.722813069820404,0.134321391582489,1.9594780802726746,0.001104891300201416,1.981695532798767,0.09114581346511841,1.784499704837799,0.38431960344314575,1.411964774131775,0.8151006996631622,0.9473538808524609,1.2872076034545898,1.4472802877426147,0.3539775609970093,1.8081486225128174,0.0755305290222168,1.988392174243927,0.0037064552307128906,1.9477257132530212,0.15455842018127441,1.695238471031189,0.4943702816963196,1.2873623073101044,0.9471925795078278,0.8152594417333603,1.411817580461502,0.384446918964386,1.7843995690345764,0.0912131667137146,1.981664776802063,0.0010973215103149414,1.959523618221283,0.13424056768417358,1.7229247093200684,1.5936718583106995,0.613370269536972,1.157673716545105,1.0802191197872162,0.686434805393219,1.5291386246681213,0.2852790951728821,1.8597933650016785,0.043866634368896484,1.9982804656028748,0.016154170036315918,1.9136475324630737,0.20833557844161987,1.6248103380203247,0.577457457780838,1.1963253170251846,1.0410194583237171,0.7239606976509094,1.4954134225845337,0.31329208612442017,1.8390803337097168,0.056105732917785645,0.013443052768707275,1.9972272515296936,0.04862457513809204,1.851600468158722,0.2964426279067993,1.515637218952179,0.7015088498592377,1.064426839351654,1.1732891499996185,0.5988167524337769,1.6063385605812073,0.22287291288375854,1.9038686752319336,0.020620346069335938,1.9993801712989807,0.037263453006744385,1.871525764465332,0.2690824270248413,1.5488815903663635,0.6642646491527557,1.1035599187016487,1.1344852149486542,0.635092169046402,0.4807735085487366,1.7065318822860718,0.14620834589004517,1.9526591300964355,0.0024694204330444336,1.9858627915382385,0.08168292045593262,1.7987218499183655,0.3661442995071411,1.4330630600452423,0.7922752499580383,0.9706127587705851,1.2648335695266724,0.5147306323051453,1.6782004237174988,0.16730839014053345,1.939986526966095,0.005996286869049072,1.991681456565857,0.06684845685958862,1.8217312693595886,0.33626407384872437,0.47442513704299927,1.3095795810222626,0.9239624738693237,0.838185727596283,1.390494555234909,0.40295809507369995,1.769749402999878,0.10117191076278687,1.9769618511199951,0.0002778172492980957,1.9658190608024597,0.1228259801864624,1.7388114929199219,0.4414263963699341,1.3466762602329254,0.8848704397678375,0.877057395875454,1.3540464639663696,0.43491673469543457,1.7440915703773499,0.11907470226287842,1.9678289294242859,1.9966455698013306,0.012253761291503906,1.9228622317314148,0.1943289041519165,1.642815113067627,0.5564751029014587,1.2190960198640823,1.0177510417997837,0.7464080154895782,1.4750595390796661,0.33039891719818115,1.826190173625946,0.06404858827590942,1.9926636219024658,0.006887555122375488,1.9372724294662476,0.17169147729873657,1.672396719455719,0.5216259956359863,1.2572374045848846,0.9784792046993971,0.7845844030380249,1.440142422914505,1.5876643657684326,0.23773258924484253,1.8936656713485718,0.025588274002075195,1.9999288320541382,0.031229257583618164,1.8827034831047058,0.2533947825431824,1.5681900382041931,0.6424297988414764,1.1266835927963257,1.1113833412528038,0.6568628549575806,1.555442214012146,0.26373475790023804,1.8753573298454285,0.03516519069671631,1.9996262192726135,0.022240400314331055,1.9004742503166199,0.22784924507141113,1.600062370300293,1.4539266526699066,0.769562378525734,0.9938875618390739,1.2423160523176193,0.5352146327495575,1.6609110236167908,0.18042325973510742,1.931789517402649,0.008810877799987793,1.994408905506134,0.05873364210128784,1.8347735404968262,0.31903356313705444,1.488562673330307,0.7315324544906616,1.0331558771431446,1.2040350437164307,0.5703386068344116,1.6309348940849304,0.20355254411697388,1.9168180227279663,0.01477593183517456,5.960464477539063e-8,1.9715911746025085,0.11188668012619019,1.7542978525161743,0.42227059602737427,1.3684157133102417,0.8617795258760452,0.9001910164952278,1.3321813344955444,0.45427405834198,1.7283391952514648,0.13032925128936768,1.9617100358009338,0.0007596611976623535,1.9801344275474548,0.09452468156814575,1.7794945240020752,0.3906674385070801,1.4046341478824615,0.822998657822609,0.939336258918047,1.2948904633522034,1.454448252916336,0.34786856174468994,1.8128523230552673,0.07249867916107178,1.9895803332328796,0.0044293999671936035,1.9451327919960022,0.15887451171875,1.6894438862800598,0.5013148486614227,1.2796612977981567,0.9552135318517685,0.8073731660842896,1.419122189283371,0.37813800573349,1.789355218410492,0.08789169788360596,1.983163833618164,0.0015056133270263672,1.957231044769287,0.13828736543655396,1.7173529267311096,0.46766573190689087,0.6207886934280396,1.1497386246919632,1.0882211029529572,0.678819477558136,1.5359356999397278,0.2796855568885803,1.8638663291931152,0.041545093059539795,1.998719036579132,0.017623484134674072,1.910353660583496,0.21326738595962524,1.618520200252533,0.5847494304180145,1.188444823026657,1.0490418337285519,0.7162511646747589,1.5023731589317322,0.30747663974761963,1.8434218764305115,0.05348408222198486,1.9959620833396912,1.9965974688529968,0.05112886428833008,1.8473634719848633,0.30217206478118896,1.5087400674819946,0.7091828286647797,1.0564109906554222,1.1811925172805786,0.5914738178253174,1.612704873085022,0.21784400939941406,1.9072750210762024,0.019029557704925537,1.9990652203559875,0.039466261863708496,1.8675599694252014,0.2745864987373352,1.5421512126922607,0.6718398034572601,1.0955693051218987,1.142438381910324,0.6276272237300873,0.4739271402359009,1.7121921181678772,0.14205515384674072,1.9550699591636658,0.001937568187713623,1.9844855070114136,0.08489137887954712,1.7938641905784607,0.3723759055137634,1.4258107244968414,0.8001372367143631,0.9625867195427418,1.2725687623023987,0.5077247321605682,1.6840799450874329,0.16288846731185913,1.9426962733268738,0.005150258541107178,1.9906158447265625,0.06976538896560669,1.8171284198760986,0.3422919511795044,1.4610092043876648,1.3019336462020874,0.9319721311330795,0.8302663266658783,1.3978748321533203,0.3965352177619934,1.7748507857322693,0.09768116474151611,1.9786441922187805,0.0004993081092834473,1.9637063145637512,0.12671023607254028,1.7333758473396301,0.4481052756309509,1.3391326367855072,0.892851211130619,0.8690918236970901,1.361545354127884,0.4283095598220825,1.7494325637817383,0.11530262231826782,1.9698182344436646,2.944469451904297e-5,0.013538897037506104,1.9197396636009216,0.19911181926727295,1.636642873287201,0.5636867880821228,1.2112536132335663,1.0257796589285135,0.7386482357978821,1.4821106493473053,0.3244560956954956,1.8306878209114075,0.061251044273376465,1.9936025738716125,0.007860422134399414,1.9344428181648254,0.1762174367904663,1.6664310097694397,0.5286934077739716,1.24946890771389,0.9865084923803806,0.7767494171857834,1.4473389983177185,1.5941428542137146,0.23255938291549683,1.897240400314331,0.023814737796783447,1.9998007416725159,0.03325170278549194,1.8789012432098389,0.2587612271308899,1.5615634322166443,0.6499408483505249,1.1187137588858604,1.1193602308630943,0.6493310332298279,1.5621020793914795,0.2583243250846863,1.8792116045951843,0.033085405826568604,1.9998135566711426,0.02395617961883545,1.896952748298645,0.2329769730567932,1.5936190485954285,0.6134307980537415,0.7773841321468353,0.985857455059886,1.2500993609428406,0.5281192660331726,1.666916310787201,0.17584848403930664,1.9346745014190674,0.007779181003570557,1.9935288429260254,0.06147557497024536,1.8303251266479492,0.3249363303184509,1.4815401136875153,0.7392767667770386,1.0251287706196308,1.2118899822235107,0.5631010234355927,1.6371448636054993,0.19872212409973145,1.9199950695037842,0.013432323932647705,1.997222363948822,1.9696592688560486,0.11560630798339844,1.7490013241767883,0.4288439154624939,1.3609382212162018,0.8697373569011688,0.8922038823366165,1.3397450745105743,0.44756245613098145,1.7338182926177979,0.12639319896697998,1.9638798832893372,0.00047892332077026367,1.9785101413726807,0.09796202182769775,1.7744390368461609,0.3970545530319214,1.3972774147987366,0.830908015370369,0.9313225522637367,1.3025543093681335,0.48071742057800293,0.34180164337158203,1.817503571510315,0.06952661275863647,1.9907046556472778,0.005216479301452637,1.9424788355827332,0.16324478387832642,1.683604896068573,0.5082916021347046,1.2719422578811646,0.9632373712956905,0.7994993180036545,1.4263997673988342,0.37186914682388306,1.7942599058151245,0.08462899923324585,1.984599530696869,0.001978278160095215,1.9548767805099487,0.14238983392715454,1.7117348909378052,0.4744809865951538,1.3095171451568604,1.141793891787529,1.0962174013257027,0.67122483253479,1.5426982045173645,0.2741384506225586,1.867883563041687,0.039285361766815186,1.9990931749343872,0.019156157970428467,1.90700101852417,0.21824991703033447,1.6121901869773865,0.5920681953430176,1.1805521547794342,1.057061042636633,0.7085599303245544,1.5093004703521729,0.30170583724975586,1.847709059715271,0.05092352628707886,1.9966509342193604,0.012264013290405273,0.05369436740875244,1.8430718779563904,0.30794650316238403,1.501810073852539,0.7168755829334259,1.048391506075859,1.189084216952324,0.5841572284698486,1.6190317273139954,0.21286559104919434,1.9106228947639465,0.017502009868621826,1.9986858367919922,0.04173099994659424,1.863538146018982,0.2801373600959778,1.5353859066963196,0.6794361472129822,1.0875725224614143,1.1503823548555374,0.6201862990856171,1.5877174735069275,1.7178063988685608,0.13795721530914307,1.957419216632843,0.0014700889587402344,1.983044683933258,0.08815878629684448,1.788955271244049,0.37864798307418823,1.4185309410095215,0.8080121129751205,0.954563096165657,1.2802863717079163,0.5007506012916565,1.6899153590202332,0.15852254629135132,1.9453452825546265,0.0043683648109436035,1.9894863367080688,0.07274222373962402,1.8124728798866272,0.3483623266220093,1.453868180513382,1.294268250465393,0.9399861730635166,0.8223578631877899,1.4052294790744781,0.3901512622833252,1.7799022197723389,0.09424859285354614,1.980263352394104,0.0007852911949157715,1.9615313410758972,0.13065087795257568,1.7278928756713867,0.45481979846954346,1.3315671384334564,0.9008388891816139,0.8611347079277039,1.369020938873291,0.42173928022384644,1.754725158214569,0.11158764362335205,1.9717450141906738,5.960464477539063e-8,1.9715756177902222,1.9165578484535217,0.20394641160964966,1.6304296255111694,0.5709266364574432,1.203397586941719,1.03380661085248,0.7309053242206573,1.489130675792694,0.31855690479278564,1.8351318836212158,0.05851399898529053,1.9944774508476257,0.008897364139556885,1.9315529465675354,0.18079650402069092,1.6604222655296326,0.5357912182807922,1.241684302687645,0.9945386508479714,0.7689288407564163,1.4545067250728607,0.3478187918663025,0.2274356484413147,1.9007572531700134,0.022104084491729736,1.9996082186698914,0.03533655405044556,1.8750423192977905,0.26417553424835205,1.5549006462097168,0.6574744880199432,1.1107362657785416,1.1273294240236282,0.6418218016624451,1.5687257051467896,0.25296175479888916,1.8830092549324036,0.031068027019500732,1.9999363422393799,0.02573484182357788,1.8933733105659485,0.23815423250198364,1.5871374011039734,0.6208494603633881,0.7852202504873276,0.9778282605111599,1.2578665614128113,0.5210543274879456,1.6728785634040833,0.17132681608200073,1.937499225139618,0.0068114399909973145,1.9925847053527832,0.06427806615829468,1.825823187828064,0.33088260889053345,1.4744865000247955,0.7470378875732422,1.017100041732192,1.219731256365776,0.5558916330337524,1.6433137655258179,0.19394338130950928,1.9231127500534058,0.012152373790740967,1.9965920448303223,0.051149606704711914,1.8473286628723145,0.30221909284591675,1.5086835622787476,0.7092456221580505,1.056345447897911,1.1812570840120316,0.5914138853549957,1.6127567887306213,0.21780312061309814,1.9073026180267334,0.019016802310943604,1.9960289001464844,0.011153042316436768,1.9256179928779602,0.19007432460784912,1.6483274102210999,0.5500175654888153,1.226132795214653,1.0105338636785746,0.753396525979042,1.4686957895755768,0.335777223110199,1.8221021890640259,0.06661456823348999,1.9917650818824768,0.00606769323348999,1.939764142036438,0.16766905784606934,1.6777217984199524,0.5153000354766846,1.264205664396286,0.9712635837495327,0.7916384041309357,1.4336498379707336,0.36564087867736816,1.7991134524345398,0.08142536878585815,1.9859716892242432,0.0025153756141662598,1.9524609446525574,0.14654749631881714,1.7060709595680237,0.48133009672164917,1.3018710613250732,0.9320376217365265,0.8302016407251358,1.3979350626468658,0.3964828848838806,1.774892270565033,0.0976528525352478,1.9786576628684998,0.0005013942718505859,1.9636887311935425,0.12674224376678467,1.7333312034606934,0.3428548574447632,1.4603462219238281,0.7625447809696198,1.0011054399656132,1.2353069931268692,0.5416175723075867,1.6554770469665527,0.18458020687103271,1.9291451573371887,0.009792745113372803,1.9951452016830444,0.05632096529006958,1.8387259244918823,0.3137655258178711,1.4948477447032928,0.7245865762233734,1.0403688997030258,1.1969637125730515,0.5768674314022064,1.6253185868263245,0.20793795585632324,1.9139119982719421,0.016037821769714355,1.9982420802116394,0.04405754804611206,1.859460711479187,0.2857346534729004,1.5285860300064087,0.6870531439781189,1.0795700997114182,1.1583166420459747,0.6127698719501495,1.5941956639289856,0.2325173020362854,1.897269368171692,0.02380049228668213,1.9997994303703308,0.033268511295318604,1.8788699507713318,0.2588052749633789,1.561509132385254,0.6500023603439331,1.1186485812067986,1.1194254085421562,0.6492695510387421,1.4480069279670715,0.3533574342727661,1.80862694978714,0.0752210021018982,1.988515317440033,0.003776729106903076,1.9474661350250244,0.1549926996231079,1.694654107093811,0.49507153034210205,1.2865838706493378,0.9480040855705738,0.8144608736038208,1.4125579595565796,0.3838067054748535,1.784903347492218,0.09087437391281128,1.9818193316459656,0.001135706901550293,1.9592944383621216,0.13464754819869995,1.722362995147705,0.4615694284439087,1.3239802718162537,0.908832959830761,0.8531865328550339,1.3764727115631104,0.41520625352859497,1.759969174861908,0.10792994499206543,1.9736091494560242,3.516674041748047e-5,1.969643235206604,0.11563694477081299,1.7489578127861023,0.42889779806137085,1.3608770072460175,0.8698024451732635,0.8921386152505875,1.3398068249225616,0.44750773906707764,1.7338628768920898,0.12636125087738037,1.9638974070549011,0.0004768967628479004,1.997166395187378,0.04887515306472778,1.8511741757392883,0.2970203161239624,1.5149407982826233,0.7022845149040222,1.0636158809065819,1.1740894168615341,0.5980725288391113,1.606984555721283,0.2223617434501648,1.9042159914970398,0.02045649290084839,1.9993512034416199,0.03748351335525513,1.8711270093917847,0.26963722705841064,1.548202097415924,0.6650302112102509,1.1027516275644302,1.135290414094925,0.6343356966972351,1.575312614440918,0.24764734506607056,1.8867499232292175,0.02911311388015747,1.999994695186615,0.02757638692855835,1.889736294746399,0.24338054656982422,1.5806179642677307,0.6282925307750702,1.1417289078235626,1.0962827429175377,0.6711628437042236,1.5427533388137817,0.2740933299064636,1.8679161667823792,0.039267122745513916,1.9990959763526917,0.019168972969055176,1.9069733619689941,0.2182908058166504,1.612138271331787,0.4751166105270386,1.3088067770004272,0.9247727692127228,0.8373838663101196,1.3912425339221954,0.40230637788772583,1.7702678442001343,0.10081607103347778,1.9771349430084229,0.00029730796813964844,1.9656081199645996,0.12321645021438599,1.7382636070251465,0.4421005845069885,1.3459139168262482,0.8856777027249336,0.8762509748339653,1.3548063337802887,0.4342464804649353,1.744634211063385,0.1186903715133667,1.9680330753326416,0.00011086463928222656,1.9750722646713257,0.10501092672348022,1.7641785740852356,0.409945011138916,1.382487565279007,0.8467589467763901,0.9153089374303818,1.3178229331970215,0.4670591354370117,1.7178521156311035,0.1379239559173584,1.9574381709098816,0.001466512680053711,1.9830326437950134,0.08818572759628296,1.788914978504181,0.3786994218826294,1.418471336364746,0.8080765455961227,0.9544975161552429,1.2803493738174438,0.5006937086582184,1.5883216857910156,0.23720687627792358,1.8940300345420837,0.025405943393707275,1.9999187588691711,0.03143107891082764,1.882321298122406,0.25393563508987427,1.567521095275879,0.6431888043880463,1.125877484679222,1.1121908649802208,0.6560996770858765,1.5561177730560303,0.2631850838661194,1.875749945640564,0.034951865673065186,1.999648094177246,0.02241116762161255,1.9001205563545227,0.22836583852767944,1.5994121432304382,0.6067841351032257,1.164732426404953,1.0730879083275795,0.6932343244552612,1.5230562090873718,0.2902997136116028,1.856119155883789,0.045986175537109375,1.9978356957435608,0.014898955821990967,1.9165315628051758,0.20398616790771484,1.6303786635398865,0.5709859132766724,1.20333331823349,1.0338722206652164,0.7308420836925507,1.4891879260540009,0.3185088634490967,1.8351680040359497,0.05849188566207886,1.9944843649864197,0.008906066417694092,1.9713985323905945,0.11226052045822144,1.7537640929222107,0.42293405532836914,1.3676601350307465,0.8625843971967697,0.8993824869394302,1.332947701215744,0.45359331369400024,1.7288957834243774,0.12992841005325317,1.9619324207305908,0.0007283687591552734,1.9799729585647583,0.09486991167068481,1.7789852023124695,0.3913119435310364,1.4038908779621124,0.8237985074520111,0.9385251514613628,1.2956668436527252,0.48689931631088257,1.701452374458313,0.14995378255844116,1.9504601955413818,0.002997279167175293,1.9870359897613525,0.07887524366378784,1.8030049204826355,0.3606286644935608,1.4394987225532532,0.7852843701839447,0.9777626302093267,1.2579299807548523,0.5209966897964478,1.6729270815849304,0.1712900996208191,1.937522053718567,0.0068038105964660645,1.9925767183303833,0.0643012523651123,1.8257861137390137,0.3309314250946045,1.4744287133216858,0.621540755033493,1.1489351242780685,1.089030534029007,0.6780500113964081,1.5366215705871582,0.27912211418151855,1.8642753958702087,0.04131358861923218,1.9987598061561584,0.01777571439743042,1.9100170731544495,0.21376925706863403,1.6178814768791199,0.5854888260364532,1.1876466870307922,1.0498534627258778,0.7154720425605774,1.503075659275055,0.30689066648483276,1.8438581824302673,0.05322223901748657,1.9960347414016724,0.011162817478179932,1.9255931377410889,0.19011282920837402,1.6482774019241333,0.5500761866569519,1.2260688543319702,1.0105995060876012,0.7533328980207443,1.4687537848949432,0.33572810888290405,1.8221395611763,0.06659102439880371,1.9917734861373901,0.006074965000152588,1.9397417306900024,0.1677054762840271,1.6776735186576843,0.5153574645519257,1.2641423642635345,0.971329202875495,0.7915741950273514,1.4337089955806732,0.36559009552001953,1.7127623558044434,0.141637921333313,1.9553105235099792,0.0018873214721679688,1.9843425750732422,0.08521932363510132,1.7933697700500488,0.3730087876319885,1.4250753223896027,0.8009335398674011,0.9617746770381927,1.2733505368232727,0.507017582654953,1.684672474861145,0.16244417428970337,1.9429671168327332,0.00506824254989624,1.9905044436454773,0.07006388902664185,1.8166597485542297,0.34290432929992676,1.4602879583835602,0.7626085430383682,1.0010397939477116,1.2353707998991013,0.541559249162674,1.6555266380310059,0.1845422387123108,1.9291694164276123,0.009783565998077393,1.995138704776764,0.05634266138076782,1.838690161705017,0.31381332874298096,1.4947906732559204,0.7246496677398682,1.0403033085167408,1.1970280706882477,0.5768079459667206,1.6253697872161865,0.20789790153503418,1.9139386415481567,0.01602613925933838,1.998238205909729,0.01367253065109253,1.9194204211235046,0.19959872961044312,1.6360160112380981,0.5644181370735168,1.2104592621326447,1.0265920031815767,0.7378639280796051,1.482822448015213,0.3238571882247925,1.8311399221420288,0.06097131967544556,1.993694007396698,0.007962465286254883,1.934153139591217,0.1766783595085144,1.6658248901367188,0.5294102728366852,1.2486818879842758,0.9873210471123457,0.7759573757648468,1.4480656385421753,0.3533073663711548,1.8086655735969543,0.0751960277557373,1.9885252118110657,0.0037823915481567383,1.9474450945854187,0.15502780675888062,1.694606900215149,0.49512821435928345,1.2865209877490997,0.9480696432292461,0.8143963664770126,1.4126177728176117,0.3837549686431885,1.7849439978599548,0.09084707498550415,1.9818317890167236,0.0011388063430786133,1.9592759013175964,0.13468044996261597,1.7223175764083862,0.46162474155426025,1.3239181637763977,0.7781764417886734,0.9850449170917273,1.250886082649231,0.527402937412262,1.667521595954895,0.17538851499557495,1.934963047504425,0.007678329944610596,1.9934362173080444,0.061756432056427,1.8298720121383667,0.3255360722541809,1.4808277487754822,0.7400613725185394,1.0243163947016,1.212684080004692,0.5623702108860016,1.63777095079422,0.19823622703552246,1.9203132390975952,0.013299942016601562,1.9971615076065063,0.04889547824859619,1.8511397242546082,0.29706698656082153,1.5148845314979553,0.7023471891880035,1.0635503679513931,1.174154058098793,0.5980124175548553,1.6070367693901062,0.22232043743133545,1.904244065284729,0.020443260669708252,1.9993488192558289,0.03750133514404297,1.8710947632789612,0.26968204975128174,1.548147201538086,0.6650920808315277,1.1026863306760788,1.135355457663536,0.6342746019363403,1.5753663182258606,0.2476041316986084,1.8179713487625122,0.06922924518585205,1.9908148646354675,0.005299687385559082,1.9422069191932678,0.16369003057479858,1.6830115914344788,0.5089993476867676,1.2711601555347443,0.9640494585037231,0.7987032681703568,1.4271346628665924,0.37123703956604004,1.79475337266922,0.08430212736129761,1.9847412705421448,0.002029716968536377,1.9546351432800293,0.14280802011489868,1.711163878440857,0.4751725196838379,1.308744341135025,0.9248382300138474,0.8373191058635712,1.3913029432296753,0.40225374698638916,1.7703097462654114,0.10078734159469604,1.9771488904953003,0.0002988576889038086,1.965591013431549,0.12324804067611694,1.7382193207740784,0.44215506315231323,1.3458523154258728,0.8857429176568985,0.8761858344078064,1.3548677265644073,0.43419235944747925,1.744678020477295,0.1186593770980835,1.9680495262145996,0.00010985136032104492,1.9750577211380005,0.05395740270614624,1.8426345586776733,0.30853331089019775,1.5011070370674133,0.7176550328731537,1.0475798174738884,1.1898821145296097,0.5834183394908905,1.6196696758270264,0.21236467361450195,1.9109584093093872,0.017350971698760986,1.9986438751220703,0.04196363687515259,1.8631280660629272,0.2807016372680664,1.5346993803977966,0.6802059710025787,1.0867629945278168,1.151185691356659,0.6194347143173218,1.5883747339248657,0.2371644377708435,1.894059419631958,0.02539128065109253,1.9999179244041443,0.031447410583496094,1.8822904229164124,0.25397932529449463,1.5674670934677124,0.6432501375675201,1.1258123517036438,1.1122561022639275,0.6560380458831787,1.5561723113059998,0.2631407380104065,1.8757815957069397,0.03493469953536987,1.9996498227119446,0.02242499589920044,1.9000919461250305,0.228407621383667,1.5993595719337463,0.6068444848060608,1.1646676808595657,0.9407973513007164,0.8215582370758057,1.4059722423553467,0.3895074725151062,1.7804105877876282,0.09390449523925781,1.9804236888885498,0.0008177757263183594,1.9613078236579895,0.13105273246765137,1.7273354530334473,0.4555011987686157,1.3308003842830658,0.901647537946701,0.8603300005197525,1.3697760701179504,0.4210764765739441,1.755258023738861,0.11121487617492676,1.9719365239143372,7.152557373046875e-7,1.9713829159736633,0.11229074001312256,1.7537209391593933,0.422987699508667,1.367599070072174,0.8626494109630585,0.8993171751499176,1.3330096304416656,0.45353829860687256,1.728940725326538,0.12989604473114014,1.9619503617286682,0.000725865364074707,1.9799598455429077,0.0948978066444397,1.7789440751075745,0.39136403799057007,1.4038308262825012,0.8238631188869476,0.9384596310555935,1.295729547739029,0.4868429899215698,1.7014991641044617,0.22691994905471802,1.9011098742485046,0.02193450927734375,1.9995851516723633,0.03555095195770264,1.8746486902236938,0.26472604274749756,1.55422443151474,0.6582380831241608,1.1099286004900932,1.128135398030281,0.6410632133483887,1.5693938732147217,0.2524217963218689,1.8833903670310974,0.030867397785186768,1.9999452233314514,0.02591836452484131,1.8930079340934753,0.23868083953857422,1.5864794254302979,0.6216015219688416,1.148870199918747,1.089095912873745,0.6779878437519073,1.5366770029067993,0.27907663583755493,1.8643084168434143,0.04129493236541748,1.998763084411621,0.017788052558898926,1.909989833831787,0.21380984783172607,1.6178298592567444,0.5855485796928406,1.1875822097063065,1.0499190278351307,0.7154091000556946,1.5031323432922363,0.3068433403968811,1.8438934087753296,0.05320107936859131,1.9960405826568604,0.011172592639923096,1.9255682826042175,0.11976832151412964,1.743112862110138,0.4361249804496765,1.3526771664619446,0.8785101473331451,0.8834165781736374,1.348048835992813,0.4402129054069519,1.7397971153259277,0.1221240758895874,1.966197431087494,0.00024437904357910156,1.9766484498977661,0.10181444883346558,1.768814206123352,0.4041329622268677,1.389146625995636,0.8396303355693817,0.9225030690431595,1.310971051454544,0.4731804132461548,1.71280837059021,0.1416042447090149,1.9553298950195312,0.0018833279609680176,1.9843310117721558,0.08524584770202637,1.7933297753334045,0.3730599284172058,1.4250158965587616,0.800997868180275,0.9617090784013271,1.2734136581420898,0.5069604516029358,1.6847203373908997,0.16240835189819336,1.9429889917373657,0.005061626434326172,1.9904954433441162,0.07008802890777588,1.8166218400001526,0.34295380115509033,1.4602296650409698,0.7626723200082779,1.0009741478133947,1.1050156578421593,0.66288623213768,1.5501044988632202,0.26808422803878784,1.8722425699234009,0.0368686318397522,1.9994305968284607,0.020917117595672607,1.903241515159607,0.22379493713378906,1.605173945426941,0.6001579463481903,1.1718473881483078,1.065887451171875,0.7001121640205383,1.516890823841095,0.2954031825065613,1.8523668050765991,0.04817467927932739,1.9973350763320923,0.013683319091796875,1.919394612312317,0.19963806867599487,1.635965347290039,0.5644772350788116,1.2103950828313828,1.0266576260328293,0.7378005981445312,1.4828799366950989,0.32380878925323486,1.8311764597892761,0.060948729515075684,1.9937013983726501,0.007970750331878662,1.9341297149658203,0.17671561241149902,1.6657758951187134,0.5294682085514069,1.2486183047294617,0.9873866876587272,0.7758934050798416,1.4481243193149567,0.35325729846954346,1.8087041974067688,0.13350892066955566,1.9599348306655884,0.0010297894477844238,1.9813846945762634,0.09182488918304443,1.7834908366203308,0.38560110330581665,1.4104833006858826,0.8166981637477875,0.9457309544086456,1.2887639999389648,0.49310797452926636,1.6962897777557373,0.1537775993347168,1.94819176197052,0.0035816431045532227,1.988168716430664,0.07608956098556519,1.8072856068611145,0.3550955057144165,1.4459706544876099,0.7782404571771622,0.9849792784079909,1.2509496212005615,0.5273450911045074,1.6675704717636108,0.17535138130187988,1.9349863529205322,0.007670223712921143,1.9934287071228027,0.061779141426086426,1.8298353552818298,0.3255845308303833,1.4807702004909515,0.7401247620582581,1.0242507681250572,1.2127482295036316,0.5623111724853516,1.6378215551376343,0.19819694757461548,1.9203389286994934,0.013289272785186768,1.99715656042099,0.048915743827819824,1.851105272769928,0.20932960510253906,1.6235405802726746,0.57893106341362,1.194731444120407,1.0426432862877846,0.722398966550827,1.496824562549591,0.3121115565299988,1.8399633169174194,0.055570244789123535,1.995366632938385,0.010113120079040527,1.9283011555671692,0.1859000325202942,1.6537562608718872,0.5436418950557709,1.233093962073326,1.003381781745702,0.7603341490030289,1.462365835905075,0.3411406874656677,1.818009078502655,0.06920522451400757,1.990823745727539,0.005306422710418701,1.9421849250793457,0.16372603178024292,1.6829636096954346,0.5090565383434296,1.2710969746112823,0.9641150608658791,0.7986389696598053,1.4271940290927887,0.3711860179901123,1.7947932481765747,0.08427578210830688,1.9847526550292969,0.0020338892936706543,1.954615592956543,0.14284181594848633,1.711117684841156,0.47522836923599243,1.3086819052696228,0.9249036908149719,0.8372543305158615,1.2664004564285278,0.5133102238178253,1.6793938875198364,0.16640949249267578,1.940539836883545,0.005819916725158691,1.991470992565155,0.06743395328521729,1.8208039999008179,0.3374805450439453,1.4666837453842163,0.7556032091379166,1.0082576163113117,1.2283495962619781,0.5479858815670013,1.6500588655471802,0.1887412667274475,1.926477074623108,0.010816574096679688,1.995823621749878,0.053978681564331055,1.8425992131233215,0.3085806965827942,1.5010501742362976,0.7177180051803589,1.0475142449140549,1.189946562051773,0.583358645439148,1.619721233844757,0.21232420206069946,1.9109854698181152,0.017338812351226807,1.9986404776573181,0.04198247194290161,1.8630949258804321,0.2807472348213196,1.5346438884735107,0.6802681684494019,1.086697593331337,1.1512505859136581,0.619374006986618,1.5884278416633606,0.23712199926376343,1.894088864326477,0.0634775161743164,1.9928588271141052,0.0070792436599731445,1.9367046356201172,0.17260313034057617,1.6711928844451904,0.5230538547039032,1.2556665241718292,0.9801041036844254,0.7829975932836533,1.441601186990738,0.35882967710494995,1.8043984770774841,0.07796609401702881,1.9874091744422913,0.003181159496307373,1.949729561805725,0.1511896252632141,1.6997812390327454,0.4889109134674072,1.293428748846054,0.9408628828823566,0.8214936405420303,1.406032234430313,0.38945549726486206,1.7804515957832336,0.09387671947479248,1.980436623096466,0.000820457935333252,1.9612897634506226,0.13108521699905396,1.727290391921997,0.4555562734603882,1.3307384252548218,0.9017128646373749,0.8602649867534637,1.369837075471878,0.4210229516029358,1.755301058292389,0.11118477582931519,1.971951961517334,7.748603820800781e-7,1.9713672995567322,0.11232095956802368,1.7536778450012207,0.3202246427536011,1.4871439635753632,0.7330983877182007,1.0315314792096615,1.205625832080841,0.5688715875148773,1.632194995880127,0.20257079601287842,1.9174658060073853,0.014498889446258545,1.9976789355278015,0.04669088125228882,1.8549064993858337,0.29195159673690796,1.5210586786270142,0.6954642236232758,1.0707519799470901,1.1670419722795486,0.6046318709850311,1.6012850999832153,0.22687828540802002,1.9011383652687073,0.02192080020904541,1.9995832443237305,0.035568296909332275,1.8746168613433838,0.2647705078125,1.5541698336601257,0.6582997739315033,1.109863355755806,1.128200501203537,0.6410019397735596,1.5694478750228882,0.2523781657218933,1.8834211230278015,0.03085118532180786,1.999945878982544,0.02593320608139038,1.8929783701896667,0.23872339725494385,1.5864262580871582,0.6216622889041901,1.1488052904605865,1.0891612991690636,0.8057786226272583,1.42059725522995,0.37686604261398315,1.790351927280426,0.08722662925720215,1.9834595322608948,0.0015960931777954102,1.9567595720291138,0.139113187789917,1.7162196636199951,0.4690423011779785,1.3156015276908875,0.9176427498459816,0.8444450348615646,1.3846504390239716,0.40805578231811523,1.7656870484352112,0.10396867990493774,1.9755892753601074,0.00014847517013549805,1.9674429893493652,0.11979949474334717,1.7430689334869385,0.43617916107177734,1.3526157438755035,0.8785753101110458,0.8833513781428337,1.3481103777885437,0.440158486366272,1.7398412823677063,0.122092604637146,1.96621435880661,0.0002429485321044922,1.9766343235969543,0.10184329748153687,1.7687722444534302,0.4041856527328491,1.3890861570835114,0.8396951407194138,0.9224376156926155,1.311033457517624,0.473124623298645,1.7128544449806213,0.1415705680847168,1.955349326133728,0.018715262413024902,1.9989936351776123,0.03991961479187012,1.8667505383491516,0.27570611238479614,1.5407848358154297,0.6733754873275757,1.093951366841793,1.1440468728542328,0.6261193752288818,1.5825231671333313,0.2418513298034668,1.8908029198646545,0.027032852172851562,1.9999843835830688,0.02967679500579834,1.8856648802757263,0.2491922378540039,1.5733954310417175,0.6365165114402771,1.1329695731401443,1.1050809472799301,0.6628244519233704,1.5501593351364136,0.2680395245552063,1.8722746968269348,0.03685098886489868,1.9994328022003174,0.020930469036102295,1.9032133221626282,0.22383630275726318,1.6051217317581177,0.6002181172370911,1.1717827171087265,1.0659529566764832,0.7000495493412018,1.5169470310211182,0.2953566312789917,1.8524011373519897,0.04815453290939331,1.9973398447036743,0.013694167137145996,1.9193687438964844,0.19967740774154663,1.63591468334198,0.44946134090423584,1.3376032710075378,0.8944672420620918,0.8674807399511337,1.363060176372528,0.42697685956954956,1.7505075931549072,0.11454617977142334,1.970213234424591,1.8298625946044922e-5,1.9730719923973083,0.10899072885513306,1.7584448456764221,0.41710764169692993,1.3743019998073578,0.8555035442113876,0.9065009728074074,1.3261950612068176,0.4595974087715149,1.7239805459976196,0.13347619771957397,1.9599531888961792,0.0010268092155456543,1.9813721179962158,0.09185236692428589,1.7834500074386597,0.38565289974212646,1.4104234278202057,0.816762700676918,0.9456654042005539,1.2888268530368805,0.4930514097213745,1.6963369250297546,0.15374261140823364,1.9482126235961914,0.0035760998725891113,1.988158643245697,0.07611465454101562,1.8072468638420105,0.3551456928253174,1.4459118843078613,0.7783044725656509,0.9849136397242546,1.251013159751892,0.6478094458580017,1.563445508480072,0.25723516941070557,1.8799847960472107,0.032672107219696045,1.9998435974121094,0.024311065673828125,1.8962329626083374,0.23402076959609985,1.59231036901474,0.6149302124977112,1.1560037583112717,1.081904448568821,0.6848296225070953,1.5305726528167725,0.28409749269485474,1.8606555461883545,0.04337269067764282,1.9983781576156616,0.01645827293395996,1.9129588603973389,0.20936977863311768,1.623489260673523,0.5789906084537506,1.1946670562028885,1.042708870023489,0.7223359048366547,1.496881514787674,0.31206393241882324,1.8399989604949951,0.055548667907714844,1.9953729510307312,0.010122418403625488,1.9282767176628113,0.18593817949295044,1.6537065505981445,0.5437003076076508,1.2330301254987717,1.0034474274143577,0.7602704167366028,1.4624240398406982,0.3410913348197937,1.8180468678474426,0.06918120384216309,1.9908326268196106,0.00042998790740966797,1.9781736731529236,0.09866476058959961,1.7734097838401794,0.39835190773010254,1.395785391330719,0.8325100839138031,0.9297012314200401,1.3041029572486877,0.4793291687965393,1.7077274918556213,0.1453292965888977,1.9531718492507935,0.0023520588874816895,1.9855780601501465,0.08235359191894531,1.7977032661437988,0.36745303869247437,1.431538313627243,0.7939295619726181,0.9689226374030113,1.266463726758957,0.5132528841495514,1.679442048072815,0.16637325286865234,1.940562129020691,0.00581282377243042,1.9914624094963074,0.06745761632919312,1.8207665085792542,0.337529718875885,1.466625690460205,0.7556668668985367,1.0081919729709625,1.2284135073423386,0.5479273200035095,1.6501087546348572,0.18870288133621216,1.9265018105506897,0.010806918144226074,1.9958176612854004,0.05399996042251587,1.8425638675689697,0.3086281418800354,1.6109042763710022,0.5935525894165039,1.178953379392624,1.058683566749096,0.7070056200027466,1.5106984972953796,0.3005433678627014,1.8485700488090515,0.050412774085998535,1.9967824816703796,0.01251906156539917,1.9222096800804138,0.19533169269561768,1.6415189504623413,0.5579912066459656,1.217445895075798,1.019441643729806,0.7447727620601654,1.4765467643737793,0.3291440010070801,1.8271415829658508,0.0634545087814331,1.9928666949272156,0.007087051868438721,1.9366816878318787,0.17264002561569214,1.671144187450409,0.5231115520000458,1.2556030452251434,0.9801697377115488,0.7829335033893585,1.441660076379776,0.35877925157546997,1.8044374585151672,0.07794070243835449,1.9874195456504822,0.0031864047050476074,1.9497089982032776,0.1512243151664734,1.6997343301773071,0.4889673590660095,1.2933659851551056,0.9409284144639969,0.821429044008255,1.4060922265052795,0.49934303760528564,1.6910909414291382,0.15764552354812622,1.9458739757537842,0.004217922687530518,1.9892500042915344,0.07335197925567627,1.8115242719650269,0.34959596395492554,1.4524193704128265,0.7712080925703049,0.9921967089176178,1.243956208229065,0.5337181389331818,1.6621790528297424,0.17945557832717896,1.932401955127716,0.008588314056396484,1.9942289590835571,0.05930596590042114,1.8338413834571838,0.3202728033065796,1.4870866239070892,0.7331616580486298,1.0314658656716347,1.2056900709867477,0.5688123404979706,1.6322458386421204,0.20253115892410278,1.9174919128417969,0.014487743377685547,1.9976744651794434,0.04671066999435425,1.854872465133667,0.29199790954589844,1.5210026502609253,0.6955267786979675,1.0706864967942238,1.1671067029237747,0.6045715808868408,1.6013375520706177,0.2268366813659668,1.9011667966842651,0.021907150745391846,1.9995813369750977,0.009114980697631836,1.930960774421692,0.18172967433929443,1.6592010259628296,0.5372313559055328,1.240106925368309,0.9961638811510056,0.7673478871583939,1.4559538066387177,0.346587598323822,1.8138360381126404,0.07186788320541382,1.9898223280906677,0.00458979606628418,1.944579005241394,0.15979021787643433,1.688218116760254,0.5027812123298645,1.2780374884605408,0.9569027908146381,0.8057142198085785,1.4206568002700806,0.37681466341018677,1.7903921604156494,0.08719980716705322,1.983471393585205,0.0015997886657714844,1.9567404985427856,0.1391465663909912,1.7161738276481628,0.46909791231155396,1.3155392110347748,0.9177081733942032,0.8443801999092102,1.3847110271453857,0.4080028533935547,1.765729308128357,0.10393953323364258,1.975603699684143,0.00014960765838623047,1.967426359653473,0.1198306679725647,1.743025004863739,0.43623340129852295,1.4730552434921265,0.7486105859279633,1.0154750095680356,1.2213165014982224,0.554436057806015,1.6445571780204773,0.19298261404037476,1.9237365126609802,0.01190108060836792,1.9964566826820374,0.051663994789123535,1.8464643955230713,0.3033841848373413,1.507283627986908,0.7108010649681091,1.054722711443901,1.182855173945427,0.5899310410022736,1.6140403747558594,0.216791570186615,1.9079847931861877,0.01870262622833252,1.9989907145500183,0.03993797302246094,1.8667177557945251,0.27575141191482544,1.540729582309723,0.6734375357627869,1.0938860103487968,1.1441118270158768,0.6260584890842438,1.5825765132904053,0.24180853366851807,1.890832781791687,0.027017652988433838,1.9999839663505554,0.029692649841308594,1.885634422302246,0.24923557043075562,1.5733416676521301,0.6365776658058167,1.132904514670372,1.1051462292671204,0.6627626419067383,1.550214171409607,0.36438530683517456,1.8000894784927368,0.08078420162200928,1.986241638660431,0.002631843090057373,1.951964557170868,0.14739567041397095,1.704919159412384,0.4827203154563904,1.300321251153946,0.933659203350544,0.828600212931633,1.3994255661964417,0.3951877951622009,1.7759185433387756,0.09695357084274292,1.978990375995636,0.0005541443824768066,1.9632534980773926,0.12753528356552124,1.732225239276886,0.4495161175727844,1.3375414609909058,0.8945325240492821,0.8674156665802002,1.36312136054039,0.4269230365753174,1.7505509853363037,0.11451566219329834,1.970229148864746,1.7881393432617188e-5,1.9730568528175354,0.10902053117752075,1.7584021091461182,0.4171609878540039,1.3742411136627197,0.8555684983730316,0.9064356163144112,1.3262571096420288,0.4595421552658081,1.724025845527649,0.1334434151649475,1.9599716067314148,0.0010238885879516602,1.9813594818115234,0.044535934925079346,1.858628749847412,0.2868730425834656,1.5272057056427002,0.688597172498703,1.077949896454811],"x":[-1.8110049e18,-5.2211715e32,-1.0442343e33,-1.5663515e33,-2.0884686e33,-2.6105856e33,-3.132703e33,-3.65482e33,-4.1769372e33,-4.6990542e33,-5.221171e33,-5.7432885e33,-6.265406e33,-6.787523e33,-7.30964e33,-7.831757e33,-8.3538744e33,-8.875992e33,-9.3981084e33,-9.920226e33,-1.0442342e34,-1.096446e34,-1.1486577e34,-1.2008694e34,-1.2530812e34,-1.3052929e34,-1.3575046e34,-1.4097162e34,-1.461928e34,-1.5141397e34,-1.5663514e34,-1.6185631e34,-1.6707749e34,-1.7229866e34,-1.7751983e34,-1.82741e34,-1.8796217e34,-1.9318334e34,-1.9840451e34,-2.0362569e34,-2.0884685e34,-2.1406803e34,-2.192892e34,-2.2451038e34,-2.2973154e34,-2.3495273e34,-2.4017389e34,-2.4539505e34,-2.5061623e34,-2.558374e34,-2.6105858e34,-2.6627974e34,-2.7150092e34,-2.7672208e34,-2.8194325e34,-2.8716443e34,-2.923856e34,-2.9760678e34,-3.0282794e34,-3.0804912e34,-3.1327028e34,-3.1849147e34,-3.2371263e34,-3.289338e34,-3.3415498e34,-3.3937614e34,-3.4459732e34,-3.4981848e34,-3.5503967e34,-3.6026083e34,-3.65482e34,-3.7070317e34,-3.7592434e34,-3.8114552e34,-3.8636668e34,-3.9158787e34,-3.9680903e34,-4.020302e34,-4.0725137e34,-4.1247253e34,-4.176937e34,-4.229149e34,-4.2813607e34,-4.3335725e34,-4.385784e34,-4.4379957e34,-4.4902076e34,-4.542419e34,-4.594631e34,-4.6468427e34,-4.6990545e34,-4.751266e34,-4.8034777e34,-4.8556896e34,-4.907901e34,-4.960113e34,-5.0123246e34,-5.0645365e34,-5.116748e34,-5.1689597e34,-5.2211716e34,-5.273383e34,-5.325595e34,-5.3778066e34,-5.4300185e34,-5.48223e34,-5.5344417e34,-5.5866536e34,-5.638865e34,-5.691077e34,-5.7432886e34,-5.7955005e34,-5.847712e34,-5.8999237e34,-5.9521355e34,-6.004347e34,-6.056559e34,-6.1087706e34,-6.1609825e34,-6.213194e34,-6.2654057e34,-6.3176175e34,-6.3698294e34,-6.4220407e34,-6.4742526e34,-6.5264645e34,-6.578676e34,-6.6308877e34,-6.6830995e34,-6.7353114e34,-6.7875227e34,-6.8397346e34,-6.8919464e34,-6.944158e34,-6.9963697e34,-7.0485815e34,-7.1007934e34,-7.1530047e34,-7.2052166e34,-7.2574284e34,-7.30964e34,-7.3618516e34,-7.4140635e34,-7.4662754e34,-7.5184867e34,-7.5706986e34,-7.6229104e34,-7.675122e34,-7.7273336e34,-7.7795455e34,-7.8317573e34,-7.8839687e34,-7.9361806e34,-7.9883924e34,-8.040604e34,-8.0928156e34,-8.1450275e34,-8.1972393e34,-8.2494507e34,-8.3016625e34,-8.353874e34,-8.406086e34,-8.458298e34,-8.510509e34,-8.562721e34,-8.614933e34,-8.667145e34,-8.719356e34,-8.771568e34,-8.82378e34,-8.875991e34,-8.928203e34,-8.980415e34,-9.032627e34,-9.084838e34,-9.13705e34,-9.189262e34,-9.241473e34,-9.293685e34,-9.345897e34,-9.398109e34,-9.45032e34,-9.502532e34,-9.554744e34,-9.606955e34,-9.659167e34,-9.711379e34,-9.7635905e34,-9.815802e34,-9.868014e34,-9.920226e34,-9.972437e34,-1.0024649e35,-1.0076861e35,-1.0129073e35,-1.0181284e35,-1.0233496e35,-1.0285708e35,-1.0337919e35,-1.0390131e35,-1.0442343e35,-1.0494554e35,-1.0546766e35,-1.0598978e35,-1.065119e35,-1.0703402e35,-1.0755613e35,-1.0807825e35,-1.0860037e35,-1.0912248e35,-1.096446e35,-1.1016672e35,-1.1068883e35,-1.1121095e35,-1.1173307e35,-1.1225518e35,-1.127773e35,-1.1329942e35,-1.1382154e35,-1.1434366e35,-1.1486577e35,-1.1538789e35,-1.1591001e35,-1.1643212e35,-1.1695424e35,-1.1747636e35,-1.1799847e35,-1.1852059e35,-1.1904271e35,-1.1956482e35,-1.2008694e35,-1.2060906e35,-1.2113118e35,-1.216533e35,-1.2217541e35,-1.2269753e35,-1.2321965e35,-1.2374176e35,-1.2426388e35,-1.24786e35,-1.2530811e35,-1.2583023e35,-1.2635235e35,-1.2687446e35,-1.2739659e35,-1.279187e35,-1.2844081e35,-1.2896294e35,-1.2948505e35,-1.3000717e35,-1.3052929e35,-1.310514e35,-1.3157352e35,-1.3209564e35,-1.3261775e35,-1.3313987e35,-1.3366199e35,-1.341841e35,-1.3470623e35,-1.3522834e35,-1.3575045e35,-1.3627258e35,-1.3679469e35,-1.3731681e35,-1.3783893e35,-1.3836104e35,-1.3888316e35,-1.3940528e35,-1.3992739e35,-1.4044951e35,-1.4097163e35,-1.4149374e35,-1.4201587e35,-1.4253798e35,-1.4306009e35,-1.4358222e35,-1.4410433e35,-1.4462645e35,-1.4514857e35,-1.4567068e35,-1.461928e35,-1.4671492e35,-1.4723703e35,-1.4775915e35,-1.4828127e35,-1.4880338e35,-1.4932551e35,-1.4984762e35,-1.5036973e35,-1.5089186e35,-1.5141397e35,-1.5193608e35,-1.5245821e35,-1.5298032e35,-1.5350244e35,-1.5402456e35,-1.5454667e35,-1.550688e35,-1.5559091e35,-1.5611302e35,-1.5663515e35,-1.5715726e35,-1.5767937e35,-1.582015e35,-1.5872361e35,-1.5924572e35,-1.5976785e35,-1.6028996e35,-1.6081208e35,-1.613342e35,-1.6185631e35,-1.6237844e35,-1.6290055e35,-1.6342266e35,-1.6394479e35,-1.644669e35,-1.6498901e35,-1.6551114e35,-1.6603325e35,-1.6655536e35,-1.6707748e35,-1.6759961e35,-1.6812173e35,-1.6864384e35,-1.6916595e35,-1.6968807e35,-1.7021018e35,-1.7073231e35,-1.7125443e35,-1.7177654e35,-1.7229865e35,-1.7282077e35,-1.733429e35,-1.7386501e35,-1.7438713e35,-1.7490924e35,-1.7543135e35,-1.7595347e35,-1.764756e35,-1.7699772e35,-1.7751983e35,-1.7804194e35,-1.7856406e35,-1.7908619e35,-1.796083e35,-1.8013042e35,-1.8065253e35,-1.8117464e35,-1.8169676e35,-1.822189e35,-1.82741e35,-1.8326312e35,-1.8378523e35,-1.8430735e35,-1.8482946e35,-1.853516e35,-1.858737e35,-1.8639582e35,-1.8691793e35,-1.8744005e35,-1.8796218e35,-1.884843e35,-1.890064e35,-1.8952852e35,-1.9005063e35,-1.9057275e35,-1.9109488e35,-1.91617e35,-1.921391e35,-1.9266122e35,-1.9318334e35,-1.9370547e35,-1.9422758e35,-1.947497e35,-1.9527181e35,-1.9579392e35,-1.9631604e35,-1.9683817e35,-1.9736028e35,-1.978824e35,-1.9840451e35,-1.9892663e35,-1.9944874e35,-1.9997087e35,-2.0049299e35,-2.010151e35,-2.0153721e35,-2.0205933e35,-2.0258146e35,-2.0310357e35,-2.0362569e35,-2.041478e35,-2.0466991e35,-2.0519203e35,-2.0571416e35,-2.0623627e35,-2.0675839e35,-2.072805e35,-2.0780262e35,-2.0832475e35,-2.0884686e35,-2.0936898e35,-2.0989109e35,-2.104132e35,-2.1093532e35,-2.1145745e35,-2.1197956e35,-2.1250168e35,-2.130238e35,-2.135459e35,-2.1406804e35,-2.1459015e35,-2.1511227e35,-2.1563438e35,-2.161565e35,-2.166786e35,-2.1720074e35,-2.1772285e35,-2.1824497e35,-2.1876708e35,-2.192892e35,-2.198113e35,-2.2033344e35,-2.2085555e35,-2.2137767e35,-2.2189978e35,-2.224219e35,-2.2294403e35,-2.2346614e35,-2.2398826e35,-2.2451037e35,-2.2503248e35,-2.255546e35,-2.2607673e35,-2.2659884e35,-2.2712096e35,-2.2764307e35,-2.2816518e35,-2.2868732e35,-2.2920943e35,-2.2973154e35,-2.3025366e35,-2.3077577e35,-2.3129789e35,-2.3182002e35,-2.3234213e35,-2.3286425e35,-2.3338636e35,-2.3390847e35,-2.344306e35,-2.3495272e35,-2.3547483e35,-2.3599695e35,-2.3651906e35,-2.3704117e35,-2.375633e35,-2.3808542e35,-2.3860754e35,-2.3912965e35,-2.3965176e35,-2.4017388e35,-2.40696e35,-2.4121812e35,-2.4174024e35,-2.4226235e35,-2.4278446e35,-2.433066e35,-2.4382871e35,-2.4435082e35,-2.4487294e35,-2.4539505e35,-2.4591717e35,-2.464393e35,-2.4696141e35,-2.4748353e35,-2.4800564e35,-2.4852775e35,-2.4904989e35,-2.49572e35,-2.5009411e35,-2.5061623e35,-2.5113834e35,-2.5166045e35,-2.5218259e35,-2.527047e35,-2.5322681e35,-2.5374893e35,-2.5427104e35,-2.5479318e35,-2.5531529e35,-2.558374e35,-2.5635952e35,-2.5688163e35,-2.5740374e35,-2.5792588e35,-2.58448e35,-2.589701e35,-2.5949222e35,-2.6001433e35,-2.6053644e35,-2.6105858e35,-2.615807e35,-2.621028e35,-2.6262492e35,-2.6314703e35,-2.6366917e35,-2.6419128e35,-2.647134e35,-2.652355e35,-2.6575762e35,-2.6627973e35,-2.6680187e35,-2.6732398e35,-2.678461e35,-2.683682e35,-2.6889032e35,-2.6941245e35,-2.6993457e35,-2.7045668e35,-2.709788e35,-2.715009e35,-2.7202302e35,-2.7254516e35,-2.7306727e35,-2.7358938e35,-2.741115e35,-2.7463361e35,-2.7515572e35,-2.7567786e35,-2.7619997e35,-2.7672208e35,-2.772442e35,-2.7776631e35,-2.7828845e35,-2.7881056e35,-2.7933267e35,-2.7985479e35,-2.803769e35,-2.8089901e35,-2.8142115e35,-2.8194326e35,-2.8246537e35,-2.8298749e35,-2.835096e35,-2.8403173e35,-2.8455385e35,-2.8507596e35,-2.8559808e35,-2.8612019e35,-2.866423e35,-2.8716444e35,-2.8768655e35,-2.8820866e35,-2.8873078e35,-2.892529e35,-2.8977502e35,-2.9029714e35,-2.9081925e35,-2.9134136e35,-2.9186348e35,-2.923856e35,-2.9290773e35,-2.9342984e35,-2.9395195e35,-2.9447407e35,-2.9499618e35,-2.955183e35,-2.9604043e35,-2.9656254e35,-2.9708465e35,-2.9760677e35,-2.9812888e35,-2.9865101e35,-2.9917313e35,-2.9969524e35,-3.0021735e35,-3.0073947e35,-3.0126158e35,-3.0178372e35,-3.0230583e35,-3.0282794e35,-3.0335006e35,-3.0387217e35,-3.043943e35,-3.0491642e35,-3.0543853e35,-3.0596064e35,-3.0648276e35,-3.0700487e35,-3.07527e35,-3.0804912e35,-3.0857123e35,-3.0909335e35,-3.0961546e35,-3.101376e35,-3.106597e35,-3.1118182e35,-3.1170393e35,-3.1222605e35,-3.1274816e35,-3.132703e35,-3.137924e35,-3.1431452e35,-3.1483663e35,-3.1535875e35,-3.1588086e35,-3.16403e35,-3.169251e35,-3.1744722e35,-3.1796934e35,-3.1849145e35,-3.1901358e35,-3.195357e35,-3.2005781e35,-3.2057992e35,-3.2110204e35,-3.2162415e35,-3.2214628e35,-3.226684e35,-3.2319051e35,-3.2371262e35,-3.2423474e35,-3.2475687e35,-3.2527899e35,-3.258011e35,-3.2632321e35,-3.2684533e35,-3.2736744e35,-3.2788957e35,-3.2841169e35,-3.289338e35,-3.2945591e35,-3.2997803e35,-3.3050016e35,-3.3102227e35,-3.3154439e35,-3.320665e35,-3.325886e35,-3.3311073e35,-3.3363284e35,-3.3415496e35,-3.3467707e35,-3.3519922e35,-3.3572134e35,-3.3624345e35,-3.3676556e35,-3.3728768e35,-3.378098e35,-3.383319e35,-3.38854e35,-3.3937613e35,-3.3989825e35,-3.4042036e35,-3.409425e35,-3.4146463e35,-3.4198674e35,-3.4250885e35,-3.4303097e35,-3.4355308e35,-3.440752e35,-3.445973e35,-3.4511942e35,-3.4564153e35,-3.4616365e35,-3.466858e35,-3.472079e35,-3.4773003e35,-3.4825214e35,-3.4877426e35,-3.4929637e35,-3.498185e35,-3.503406e35,-3.508627e35,-3.5138482e35,-3.5190694e35,-3.524291e35,-3.529512e35,-3.534733e35,-3.5399543e35,-3.5451754e35,-3.5503966e35,-3.5556177e35,-3.560839e35,-3.56606e35,-3.571281e35,-3.5765023e35,-3.5817238e35,-3.586945e35,-3.592166e35,-3.5973872e35,-3.6026083e35,-3.6078295e35,-3.6130506e35,-3.6182717e35,-3.623493e35,-3.628714e35,-3.633935e35,-3.6391563e35,-3.644378e35,-3.649599e35,-3.65482e35,-3.6600412e35,-3.6652624e35,-3.6704835e35,-3.6757046e35,-3.6809258e35,-3.686147e35,-3.691368e35,-3.696589e35,-3.7018107e35,-3.707032e35,-3.712253e35,-3.717474e35,-3.7226953e35,-3.7279164e35,-3.7331375e35,-3.7383587e35,-3.7435798e35,-3.748801e35,-3.754022e35,-3.7592436e35,-3.7644647e35,-3.769686e35,-3.774907e35,-3.780128e35,-3.7853493e35,-3.7905704e35,-3.7957916e35,-3.8010127e35,-3.806234e35,-3.811455e35,-3.8166765e35,-3.8218976e35,-3.8271188e35,-3.83234e35,-3.837561e35,-3.842782e35,-3.8480033e35,-3.8532244e35,-3.8584456e35,-3.8636667e35,-3.868888e35,-3.8741094e35,-3.8793305e35,-3.8845517e35,-3.8897728e35,-3.894994e35,-3.900215e35,-3.9054362e35,-3.9106573e35,-3.9158785e35,-3.9210996e35,-3.9263207e35,-3.9315423e35,-3.9367634e35,-3.9419845e35,-3.9472057e35,-3.952427e35,-3.957648e35,-3.962869e35,-3.9680902e35,-3.9733114e35,-3.9785325e35,-3.9837536e35,-3.9889748e35,-3.9941963e35,-3.9994174e35,-4.0046386e35,-4.0098597e35,-4.015081e35,-4.020302e35,-4.025523e35,-4.0307443e35,-4.0359654e35,-4.0411865e35,-4.0464077e35,-4.051629e35,-4.0568503e35,-4.0620715e35,-4.0672926e35,-4.0725137e35,-4.077735e35,-4.082956e35,-4.088177e35,-4.0933983e35,-4.0986194e35,-4.1038406e35,-4.109062e35,-4.1142832e35,-4.1195044e35,-4.1247255e35,-4.1299466e35,-4.1351678e35,-4.140389e35,-4.14561e35,-4.150831e35,-4.1560523e35,-4.1612734e35,-4.166495e35,-4.171716e35,-4.1769372e35,-4.1821584e35,-4.1873795e35,-4.1926007e35,-4.1978218e35,-4.203043e35,-4.208264e35,-4.2134852e35,-4.2187063e35,-4.223928e35,-4.229149e35,-4.23437e35,-4.2395913e35,-4.2448124e35,-4.2500335e35,-4.2552547e35,-4.260476e35,-4.265697e35,-4.270918e35,-4.2761392e35,-4.2813608e35,-4.286582e35,-4.291803e35,-4.297024e35,-4.3022453e35,-4.3074664e35,-4.3126876e35,-4.3179087e35,-4.32313e35,-4.328351e35,-4.333572e35,-4.3387937e35,-4.3440148e35,-4.349236e35,-4.354457e35,-4.359678e35,-4.3648993e35,-4.3701205e35,-4.3753416e35,-4.3805627e35,-4.385784e35,-4.391005e35,-4.396226e35,-4.4014477e35,-4.406669e35,-4.41189e35,-4.417111e35,-4.4223322e35,-4.4275534e35,-4.4327745e35,-4.4379956e35,-4.4432168e35,-4.448438e35,-4.453659e35,-4.4588806e35,-4.4641017e35,-4.469323e35,-4.474544e35,-4.479765e35,-4.4849862e35,-4.4902074e35,-4.4954285e35,-4.5006497e35,-4.5058708e35,-4.511092e35,-4.5163135e35,-4.5215346e35,-4.5267557e35,-4.531977e35,-4.537198e35,-4.542419e35,-4.5476403e35,-4.5528614e35,-4.5580825e35,-4.5633037e35,-4.568525e35,-4.5737464e35,-4.5789675e35,-4.5841886e35,-4.5894098e35,-4.594631e35,-4.599852e35,-4.605073e35,-4.6102943e35,-4.6155154e35,-4.6207366e35,-4.6259577e35,-4.6311792e35,-4.6364004e35,-4.6416215e35,-4.6468427e35,-4.6520638e35,-4.657285e35,-4.662506e35,-4.667727e35,-4.6729483e35,-4.6781695e35,-4.6833906e35,-4.688612e35,-4.6938333e35,-4.6990544e35,-4.7042755e35,-4.7094967e35,-4.714718e35,-4.719939e35,-4.72516e35,-4.7303812e35,-4.7356024e35,-4.7408235e35,-4.7460446e35,-4.751266e35,-4.7564873e35,-4.7617084e35,-4.7669296e35,-4.7721507e35,-4.777372e35,-4.782593e35,-4.787814e35,-4.7930352e35,-4.7982564e35,-4.8034775e35,-4.808699e35,-4.81392e35,-4.8191413e35,-4.8243625e35,-4.8295836e35,-4.8348047e35,-4.840026e35,-4.845247e35,-4.850468e35,-4.8556893e35,-4.8609104e35,-4.866132e35,-4.871353e35,-4.8765742e35,-4.8817954e35,-4.8870165e35,-4.8922376e35,-4.8974588e35,-4.90268e35,-4.907901e35,-4.913122e35,-4.9183433e35,-4.923565e35,-4.928786e35,-4.934007e35,-4.9392282e35,-4.9444494e35,-4.9496705e35,-4.9548917e35,-4.9601128e35,-4.965334e35,-4.970555e35,-4.975776e35,-4.9809977e35,-4.986219e35,-4.99144e35,-4.996661e35,-5.0018823e35,-5.0071034e35,-5.0123245e35,-5.0175457e35,-5.022767e35,-5.027988e35,-5.033209e35,-5.0384306e35,-5.0436518e35,-5.048873e35,-5.054094e35,-5.059315e35,-5.0645363e35,-5.0697574e35,-5.0749786e35,-5.0801997e35,-5.085421e35,-5.090642e35,-5.0958635e35,-5.1010846e35,-5.1063058e35,-5.111527e35,-5.116748e35,-5.121969e35,-5.1271903e35,-5.1324115e35,-5.1376326e35,-5.1428537e35,-5.148075e35,-5.153296e35,-5.1585175e35,-5.1637387e35,-5.16896e35,-5.174181e35,-5.179402e35,-5.1846232e35,-5.1898444e35,-5.1950655e35,-5.2002866e35,-5.2055078e35,-5.210729e35,-5.2159504e35,-5.2211716e35,-5.2263927e35,-5.231614e35,-5.236835e35,-5.242056e35,-5.2472772e35,-5.2524984e35,-5.2577195e35,-5.2629406e35,-5.2681618e35,-5.2733833e35,-5.2786045e35,-5.2838256e35,-5.2890467e35,-5.294268e35,-5.299489e35,-5.30471e35,-5.3099313e35,-5.3151524e35,-5.3203735e35,-5.3255947e35,-5.3308162e35,-5.3360373e35,-5.3412585e35,-5.3464796e35,-5.3517008e35,-5.356922e35,-5.362143e35,-5.367364e35,-5.3725853e35,-5.3778064e35,-5.3830276e35,-5.388249e35,-5.3934702e35,-5.3986914e35,-5.4039125e35,-5.4091336e35,-5.4143548e35,-5.419576e35,-5.424797e35,-5.430018e35,-5.4352393e35,-5.4404605e35,-5.445682e35,-5.450903e35,-5.4561243e35,-5.4613454e35,-5.4665665e35,-5.4717877e35,-5.477009e35,-5.48223e35,-5.487451e35,-5.4926722e35,-5.4978934e35,-5.5031145e35,-5.508336e35,-5.513557e35,-5.5187783e35,-5.5239994e35,-5.5292206e35,-5.5344417e35,-5.539663e35,-5.544884e35,-5.550105e35,-5.5553262e35,-5.5605474e35,-5.565769e35,-5.57099e35,-5.576211e35,-5.5814323e35,-5.5866535e35,-5.5918746e35,-5.5970957e35,-5.602317e35,-5.607538e35,-5.612759e35,-5.6179803e35,-5.6232018e35,-5.628423e35,-5.633644e35,-5.6388652e35,-5.6440863e35,-5.6493075e35,-5.6545286e35,-5.6597498e35,-5.664971e35,-5.670192e35,-5.675413e35,-5.6806347e35,-5.685856e35,-5.691077e35,-5.696298e35,-5.7015192e35,-5.7067404e35,-5.7119615e35,-5.7171826e35,-5.7224038e35,-5.727625e35,-5.732846e35,-5.7380676e35,-5.7432887e35,-5.74851e35,-5.753731e35,-5.758952e35,-5.7641733e35,-5.7693944e35,-5.7746155e35,-5.7798367e35,-5.785058e35,-5.790279e35,-5.7955005e35,-5.8007216e35,-5.8059427e35,-5.811164e35,-5.816385e35,-5.821606e35,-5.8268273e35,-5.8320484e35,-5.8372696e35,-5.8424907e35,-5.847712e35,-5.8529334e35,-5.8581545e35,-5.8633756e35,-5.8685968e35,-5.873818e35,-5.879039e35,-5.88426e35,-5.8894813e35,-5.8947025e35,-5.8999236e35,-5.9051447e35,-5.910366e35,-5.9155874e35,-5.9208085e35,-5.9260297e35,-5.9312508e35,-5.936472e35,-5.941693e35,-5.9469142e35,-5.9521353e35,-5.9573565e35,-5.9625776e35,-5.9677988e35,-5.9730203e35,-5.9782414e35,-5.9834626e35,-5.9886837e35,-5.993905e35,-5.999126e35,-6.004347e35,-6.0095682e35,-6.0147894e35,-6.0200105e35,-6.0252316e35,-6.030453e35,-6.0356743e35,-6.0408954e35,-6.0461166e35,-6.0513377e35,-6.056559e35,-6.06178e35,-6.067001e35,-6.0722223e35,-6.0774434e35,-6.0826645e35,-6.087886e35,-6.0931072e35,-6.0983283e35,-6.1035495e35,-6.1087706e35,-6.1139917e35,-6.119213e35,-6.124434e35,-6.129655e35,-6.1348763e35,-6.1400974e35,-6.145319e35,-6.15054e35,-6.1557612e35,-6.1609824e35,-6.1662035e35,-6.1714246e35,-6.1766458e35,-6.181867e35,-6.187088e35,-6.192309e35,-6.1975303e35,-6.202752e35,-6.207973e35,-6.213194e35,-6.2184153e35,-6.2236364e35,-6.2288575e35,-6.2340787e35,-6.2392998e35,-6.244521e35,-6.249742e35,-6.2549632e35,-6.2601843e35,-6.265406e35,-6.270627e35,-6.275848e35,-6.2810693e35,-6.2862904e35,-6.2915116e35,-6.2967327e35,-6.301954e35,-6.307175e35,-6.312396e35,-6.3176172e35,-6.3228388e35,-6.32806e35,-6.333281e35,-6.338502e35,-6.3437233e35,-6.3489444e35,-6.3541656e35,-6.3593867e35,-6.364608e35,-6.369829e35,-6.37505e35,-6.3802717e35,-6.3854928e35,-6.390714e35,-6.395935e35,-6.4011562e35,-6.4063773e35,-6.4115985e35,-6.4168196e35,-6.4220407e35,-6.427262e35,-6.432483e35,-6.4377045e35,-6.4429257e35,-6.448147e35,-6.453368e35,-6.458589e35,-6.4638102e35,-6.4690314e35,-6.4742525e35,-6.4794736e35,-6.4846948e35,-6.489916e35,-6.4951374e35,-6.5003586e35,-6.5055797e35,-6.510801e35,-6.516022e35,-6.521243e35,-6.5264643e35,-6.5316854e35,-6.5369065e35,-6.5421277e35,-6.5473488e35,-6.5525703e35,-6.5577915e35,-6.5630126e35,-6.5682337e35,-6.573455e35,-6.578676e35,-6.583897e35,-6.5891183e35,-6.5943394e35,-6.5995606e35,-6.6047817e35,-6.6100032e35,-6.6152244e35,-6.6204455e35,-6.6256666e35,-6.6308878e35,-6.636109e35,-6.64133e35,-6.646551e35,-6.651772e35,-6.6569934e35,-6.6622146e35,-6.667436e35,-6.672657e35,-6.677878e35,-6.683099e35,-6.68832e35,-6.6935414e35,-6.698763e35,-6.7039845e35,-6.7092056e35,-6.714427e35,-6.719648e35,-6.724869e35,-6.73009e35,-6.735311e35,-6.7405324e35,-6.7457535e35,-6.750975e35,-6.756196e35,-6.761417e35,-6.766638e35,-6.771859e35,-6.77708e35,-6.7823015e35,-6.787523e35,-6.792744e35,-6.797965e35,-6.803186e35,-6.808407e35,-6.813629e35,-6.81885e35,-6.824071e35,-6.8292925e35,-6.834514e35,-6.839735e35,-6.844956e35,-6.850177e35,-6.855398e35,-6.860619e35,-6.8658405e35,-6.8710616e35,-6.876283e35,-6.881504e35,-6.886725e35,-6.891946e35,-6.897167e35,-6.9023884e35,-6.9076096e35,-6.912831e35,-6.918052e35,-6.923273e35,-6.928494e35,-6.933716e35,-6.938937e35,-6.944158e35,-6.9493794e35,-6.9546006e35,-6.959822e35,-6.965043e35,-6.970264e35,-6.975485e35,-6.980706e35,-6.985927e35,-6.9911485e35,-6.99637e35,-7.001591e35,-7.006812e35,-7.012033e35,-7.017254e35,-7.022475e35,-7.0276965e35,-7.032918e35,-7.038139e35,-7.04336e35,-7.048582e35,-7.053803e35,-7.059024e35,-7.064245e35,-7.069466e35,-7.0746875e35,-7.079909e35,-7.08513e35,-7.090351e35,-7.095572e35,-7.100793e35,-7.106014e35,-7.1112354e35,-7.1164566e35,-7.121678e35,-7.126899e35,-7.13212e35,-7.137341e35,-7.142562e35,-7.147783e35,-7.1530045e35,-7.158226e35,-7.1634476e35,-7.168669e35,-7.17389e35,-7.179111e35,-7.184332e35,-7.189553e35,-7.1947744e35,-7.1999955e35,-7.205217e35,-7.210438e35,-7.215659e35,-7.22088e35,-7.226101e35,-7.231322e35,-7.2365435e35,-7.241765e35,-7.246986e35,-7.252207e35,-7.257428e35,-7.262649e35,-7.26787e35,-7.2730914e35,-7.2783126e35,-7.2835345e35,-7.288756e35,-7.293977e35,-7.299198e35,-7.304419e35,-7.30964e35,-7.314861e35,-7.3200825e35,-7.3253036e35,-7.330525e35,-7.335746e35,-7.340967e35,-7.346188e35,-7.351409e35,-7.3566304e35,-7.3618515e35,-7.367073e35,-7.372294e35,-7.377515e35,-7.382736e35,-7.387957e35,-7.393178e35,-7.3984e35,-7.4036214e35,-7.4088426e35,-7.414064e35,-7.419285e35,-7.424506e35,-7.429727e35,-7.434948e35,-7.440169e35,-7.4453905e35,-7.450612e35,-7.455833e35,-7.461054e35,-7.466275e35,-7.471496e35,-7.476717e35,-7.4819385e35,-7.4871596e35,-7.492381e35,-7.497602e35,-7.502823e35,-7.508044e35,-7.513266e35,-7.518487e35,-7.523708e35,-7.5289295e35,-7.534151e35,-7.539372e35,-7.544593e35,-7.549814e35,-7.555035e35,-7.560256e35,-7.5654774e35,-7.5706986e35,-7.57592e35,-7.581141e35,-7.586362e35,-7.591583e35,-7.596804e35,-7.602025e35,-7.6072465e35,-7.612468e35,-7.617689e35,-7.62291e35,-7.628131e35,-7.633353e35,-7.638574e35,-7.643795e35,-7.6490164e35,-7.6542375e35,-7.659459e35,-7.66468e35,-7.669901e35,-7.675122e35,-7.680343e35,-7.685564e35,-7.6907855e35,-7.696007e35,-7.701228e35,-7.706449e35,-7.71167e35,-7.716891e35,-7.722112e35,-7.7273334e35,-7.7325546e35,-7.737776e35,-7.742997e35,-7.748219e35,-7.75344e35,-7.758661e35,-7.763882e35,-7.769103e35,-7.7743245e35,-7.7795456e35,-7.784767e35,-7.789988e35,-7.795209e35,-7.80043e35,-7.805651e35,-7.8108724e35,-7.8160935e35,-7.821315e35,-7.826536e35,-7.831757e35,-7.836978e35,-7.842199e35,-7.84742e35,-7.8526415e35,-7.857863e35,-7.8630846e35,-7.868306e35,-7.873527e35,-7.878748e35,-7.883969e35,-7.88919e35,-7.894411e35,-7.8996325e35,-7.904854e35,-7.910075e35,-7.915296e35,-7.920517e35,-7.925738e35,-7.930959e35,-7.9361805e35,-7.9414016e35,-7.946623e35,-7.951844e35,-7.957065e35,-7.962286e35,-7.967507e35,-7.9727284e35,-7.9779495e35,-7.9831715e35,-7.988393e35,-7.993614e35,-7.998835e35,-8.004056e35,-8.009277e35,-8.014498e35,-8.0197194e35,-8.0249406e35,-8.030162e35,-8.035383e35,-8.040604e35,-8.045825e35,-8.051046e35,-8.056267e35,-8.0614885e35,-8.06671e35,-8.071931e35,-8.077152e35,-8.082373e35,-8.087594e35,-8.092815e35,-8.098037e35,-8.103258e35,-8.1084795e35,-8.113701e35,-8.118922e35,-8.124143e35,-8.129364e35,-8.134585e35,-8.139806e35,-8.1450275e35,-8.150249e35,-8.15547e35,-8.160691e35,-8.165912e35,-8.171133e35,-8.176354e35,-8.1815754e35,-8.1867966e35,-8.192018e35,-8.197239e35,-8.20246e35,-8.207681e35,-8.212903e35,-8.218124e35,-8.223345e35,-8.2285664e35,-8.2337876e35,-8.239009e35,-8.24423e35,-8.249451e35,-8.254672e35,-8.259893e35,-8.2651144e35,-8.2703355e35,-8.275557e35,-8.280778e35,-8.285999e35,-8.29122e35,-8.296441e35,-8.301662e35,-8.3068835e35,-8.312105e35,-8.317326e35,-8.322547e35,-8.327769e35,-8.33299e35,-8.338211e35,-8.343432e35,-8.348653e35,-8.3538745e35,-8.359096e35,-8.364317e35,-8.369538e35,-8.374759e35,-8.37998e35,-8.385201e35,-8.3904225e35,-8.3956436e35,-8.400865e35,-8.406086e35,-8.411307e35,-8.416528e35,-8.421749e35,-8.4269704e35,-8.4321915e35,-8.437413e35,-8.442634e35,-8.447856e35,-8.453077e35,-8.458298e35,-8.463519e35,-8.46874e35,-8.4739614e35,-8.4791826e35,-8.484404e35,-8.489625e35,-8.494846e35,-8.500067e35,-8.505288e35,-8.510509e35,-8.5157305e35,-8.520952e35,-8.526173e35,-8.531394e35,-8.536615e35,-8.541836e35,-8.547057e35,-8.5522785e35,-8.5574996e35,-8.5627215e35,-8.567943e35,-8.573164e35,-8.578385e35,-8.583606e35,-8.588827e35,-8.594048e35,-8.5992695e35,-8.604491e35,-8.609712e35,-8.614933e35,-8.620154e35,-8.625375e35,-8.630596e35,-8.6358174e35,-8.6410386e35,-8.64626e35,-8.651481e35,-8.656702e35,-8.661923e35,-8.667144e35,-8.672365e35,-8.677587e35,-8.6828084e35,-8.6880296e35,-8.693251e35,-8.698472e35,-8.703693e35,-8.708914e35,-8.714135e35,-8.719356e35,-8.7245775e35,-8.729799e35,-8.73502e35,-8.740241e35,-8.745462e35,-8.750683e35,-8.755904e35,-8.7611255e35,-8.766347e35,-8.771568e35,-8.776789e35,-8.78201e35,-8.787231e35,-8.792452e35,-8.797674e35,-8.802895e35,-8.8081165e35,-8.813338e35,-8.818559e35,-8.82378e35,-8.829001e35,-8.834222e35,-8.839443e35,-8.8446644e35,-8.8498856e35,-8.855107e35,-8.860328e35,-8.865549e35,-8.87077e35,-8.875991e35,-8.881212e35,-8.8864335e35,-8.891655e35,-8.896876e35,-8.902097e35,-8.907318e35,-8.91254e35,-8.917761e35,-8.922982e35,-8.9282034e35,-8.9334245e35,-8.938646e35,-8.943867e35,-8.949088e35,-8.954309e35,-8.95953e35,-8.964751e35,-8.9699725e35,-8.975194e35,-8.980415e35,-8.985636e35,-8.990857e35,-8.996078e35,-9.001299e35,-9.0065204e35,-9.0117416e35,-9.016963e35,-9.022184e35,-9.027406e35,-9.032627e35,-9.037848e35,-9.043069e35,-9.04829e35,-9.0535115e35,-9.0587326e35,-9.063954e35,-9.069175e35,-9.074396e35,-9.079617e35,-9.084838e35,-9.0900594e35,-9.0952806e35,-9.100502e35,-9.105723e35,-9.110944e35,-9.116165e35,-9.121386e35,-9.126607e35,-9.1318285e35,-9.13705e35,-9.142271e35,-9.147493e35,-9.152714e35,-9.157935e35,-9.163156e35,-9.168377e35,-9.173598e35,-9.1788195e35,-9.184041e35,-9.189262e35,-9.194483e35,-9.199704e35,-9.204925e35,-9.210146e35,-9.2153675e35,-9.220589e35,-9.22581e35,-9.231031e35,-9.236252e35,-9.241473e35,-9.246694e35,-9.2519154e35,-9.2571366e35,-9.2623585e35,-9.26758e35,-9.272801e35,-9.278022e35,-9.283243e35,-9.288464e35,-9.293685e35,-9.2989064e35,-9.3041276e35,-9.309349e35,-9.31457e35,-9.319791e35,-9.325012e35,-9.330233e35,-9.335454e35,-9.3406755e35,-9.345897e35,-9.351118e35,-9.356339e35,-9.36156e35,-9.366781e35,-9.372002e35,-9.377224e35,-9.3824454e35,-9.3876665e35,-9.392888e35,-9.398109e35,-9.40333e35,-9.408551e35,-9.413772e35,-9.418993e35,-9.4242145e35,-9.429436e35,-9.434657e35,-9.439878e35,-9.445099e35,-9.45032e35,-9.455541e35,-9.4607624e35,-9.4659836e35,-9.471205e35,-9.476426e35,-9.481647e35,-9.486868e35,-9.492089e35,-9.497311e35,-9.502532e35,-9.5077535e35,-9.5129746e35,-9.518196e35,-9.523417e35,-9.528638e35,-9.533859e35,-9.53908e35,-9.5443014e35,-9.5495225e35,-9.554744e35,-9.559965e35,-9.565186e35,-9.570407e35,-9.575628e35,-9.580849e35,-9.5860705e35,-9.591292e35,-9.596513e35,-9.601734e35,-9.606955e35,-9.612177e35,-9.617398e35,-9.622619e35,-9.62784e35,-9.6330615e35,-9.638283e35,-9.643504e35,-9.648725e35,-9.653946e35,-9.659167e35,-9.664388e35,-9.6696095e35,-9.6748306e35,-9.680052e35,-9.685273e35,-9.690494e35,-9.695715e35,-9.700936e35,-9.7061574e35,-9.7113786e35,-9.7166e35,-9.721821e35,-9.727043e35,-9.732264e35,-9.737485e35,-9.742706e35,-9.747927e35,-9.7531484e35,-9.7583696e35,-9.763591e35,-9.768812e35,-9.774033e35,-9.779254e35,-9.784475e35,-9.789696e35,-9.7949175e35,-9.800139e35,-9.80536e35,-9.810581e35,-9.815802e35,-9.821023e35,-9.826244e35,-9.8314655e35,-9.836687e35,-9.8419085e35,-9.84713e35,-9.852351e35,-9.857572e35,-9.862793e35,-9.868014e35,-9.873235e35,-9.8784565e35,-9.883678e35,-9.888899e35,-9.89412e35,-9.899341e35,-9.904562e35,-9.909783e35,-9.9150044e35,-9.9202256e35,-9.925447e35,-9.930668e35,-9.935889e35,-9.94111e35,-9.946331e35,-9.951552e35,-9.9567735e35,-9.9619955e35,-9.9672166e35,-9.972438e35,-9.977659e35,-9.98288e35,-9.988101e35,-9.993322e35,-9.9985434e35,-1.00037645e36,-1.0008986e36,-1.0014207e36,-1.0019428e36,-1.0024649e36,-1.002987e36,-1.0035091e36,-1.00403125e36,-1.0045534e36,-1.0050755e36,-1.0055976e36,-1.0061197e36,-1.0066418e36,-1.0071639e36,-1.0076861e36,-1.0082082e36,-1.00873035e36,-1.0092525e36,-1.0097746e36,-1.0102967e36,-1.0108188e36,-1.0113409e36,-1.011863e36,-1.01238515e36,-1.01290726e36,-1.0134294e36,-1.0139515e36,-1.0144736e36,-1.0149957e36,-1.0155178e36,-1.01603994e36,-1.01656205e36,-1.0170842e36,-1.0176063e36,-1.0181284e36,-1.0186505e36,-1.0191727e36,-1.0196948e36,-1.0202169e36,-1.02073904e36,-1.02126116e36,-1.0217833e36,-1.0223054e36,-1.0228275e36,-1.0233496e36,-1.0238717e36,-1.0243938e36,-1.02491595e36,-1.0254381e36,-1.0259602e36,-1.0264823e36,-1.0270044e36,-1.0275265e36,-1.0280486e36,-1.02857075e36,-1.02909286e36,-1.029615e36,-1.0301371e36,-1.0306592e36,-1.0311814e36,-1.0317035e36,-1.0322256e36,-1.0327477e36,-1.03326985e36,-1.033792e36,-1.0343141e36,-1.0348362e36,-1.0353583e36,-1.0358804e36,-1.0364025e36,-1.03692464e36,-1.03744676e36,-1.0379689e36,-1.038491e36,-1.0390131e36,-1.0395352e36,-1.0400573e36,-1.0405794e36,-1.04110155e36,-1.0416237e36,-1.0421458e36,-1.042668e36,-1.0431901e36,-1.0437122e36,-1.0442343e36,-1.0447564e36,-1.04527854e36,-1.04580065e36,-1.0463228e36,-1.0468449e36,-1.047367e36,-1.0478891e36,-1.0484112e36,-1.0489333e36,-1.04945545e36,-1.0499776e36,-1.0504997e36,-1.0510218e36,-1.0515439e36,-1.052066e36,-1.0525881e36,-1.05311024e36,-1.05363236e36,-1.05415455e36,-1.0546767e36,-1.0551988e36,-1.0557209e36,-1.056243e36,-1.0567651e36,-1.0572872e36,-1.05780935e36,-1.05833146e36,-1.0588536e36,-1.0593757e36,-1.0598978e36,-1.0604199e36,-1.060942e36,-1.06146414e36,-1.06198625e36,-1.0625084e36,-1.0630305e36,-1.0635526e36,-1.0640747e36,-1.0645968e36,-1.0651189e36,-1.06564105e36,-1.06616324e36,-1.06668536e36,-1.0672075e36,-1.0677296e36,-1.0682517e36,-1.0687738e36,-1.0692959e36,-1.069818e36,-1.07034015e36,-1.0708623e36,-1.0713844e36,-1.0719065e36,-1.0724286e36,-1.0729507e36,-1.0734728e36,-1.07399495e36,-1.07451706e36,-1.0750392e36,-1.0755613e36,-1.0760834e36,-1.0766055e36,-1.0771276e36,-1.0776498e36,-1.0781719e36,-1.07869405e36,-1.0792162e36,-1.0797383e36,-1.0802604e36,-1.0807825e36,-1.0813046e36,-1.0818267e36,-1.08234884e36,-1.08287096e36,-1.0833931e36,-1.0839152e36,-1.0844373e36,-1.0849594e36,-1.0854815e36,-1.0860036e36,-1.08652575e36,-1.0870479e36,-1.08757e36,-1.0880921e36,-1.0886142e36,-1.0891364e36,-1.0896585e36,-1.0901806e36,-1.0907027e36,-1.09122485e36,-1.091747e36,-1.0922691e36,-1.0927912e36,-1.0933133e36,-1.0938354e36,-1.0943575e36,-1.09487965e36,-1.0954018e36,-1.0959239e36,-1.096446e36,-1.0969681e36,-1.0974902e36,-1.0980123e36,-1.09853444e36,-1.09905656e36,-1.0995787e36,-1.1001008e36,-1.1006229e36,-1.1011451e36,-1.1016672e36,-1.1021893e36,-1.1027114e36,-1.10323354e36,-1.10375566e36,-1.1042778e36,-1.1047999e36,-1.105322e36,-1.1058441e36,-1.1063662e36,-1.1068883e36,-1.10741045e36,-1.1079326e36,-1.1084547e36,-1.1089768e36,-1.1094989e36,-1.110021e36,-1.1105431e36,-1.11106525e36,-1.1115874e36,-1.1121095e36,-1.1126317e36,-1.1131538e36,-1.1136759e36,-1.114198e36,-1.1147201e36,-1.1152422e36,-1.11576435e36,-1.1162865e36,-1.1168086e36,-1.1173307e36,-1.1178528e36,-1.1183749e36,-1.118897e36,-1.11941914e36,-1.11994126e36,-1.1204634e36,-1.1209855e36,-1.1215076e36,-1.1220297e36,-1.1225518e36,-1.12307394e36,-1.12359605e36,-1.12411825e36,-1.12464036e36,-1.1251625e36,-1.1256846e36,-1.1262067e36,-1.1267288e36,-1.1272509e36,-1.12777304e36,-1.12829516e36,-1.1288173e36,-1.1293394e36,-1.1298615e36,-1.1303836e36,-1.1309057e36,-1.1314278e36,-1.13194995e36,-1.1324721e36,-1.1329942e36,-1.1335163e36,-1.1340384e36,-1.1345605e36,-1.1350826e36,-1.1356048e36,-1.1361269e36,-1.13664905e36,-1.1371712e36,-1.1376933e36,-1.1382154e36,-1.1387375e36,-1.1392596e36,-1.1397817e36,-1.14030385e36,-1.140826e36,-1.1413481e36,-1.1418702e36,-1.1423923e36,-1.1429144e36,-1.1434365e36,-1.14395864e36,-1.14448076e36,-1.1450029e36,-1.145525e36,-1.1460471e36,-1.1465692e36,-1.1470913e36,-1.1476135e36,-1.1481356e36,-1.14865774e36,-1.14917986e36,-1.149702e36,-1.1502241e36,-1.1507462e36,-1.1512683e36,-1.1517904e36,-1.1523125e36,-1.15283465e36,-1.1533568e36,-1.1538789e36,-1.154401e36,-1.1549231e36,-1.1554452e36,-1.1559673e36,-1.15648945e36,-1.1570116e36,-1.1575337e36,-1.1580558e36,-1.1585779e36,-1.1591001e36,-1.1596222e36,-1.1601443e36,-1.1606664e36,-1.16118855e36,-1.1617107e36,-1.1622328e36,-1.1627549e36,-1.163277e36,-1.1637991e36,-1.1643212e36,-1.16484334e36,-1.16536546e36,-1.1658876e36,-1.1664097e36,-1.1669318e36,-1.1674539e36,-1.167976e36,-1.1684981e36,-1.16902025e36,-1.1695424e36,-1.1700645e36,-1.1705867e36,-1.1711088e36,-1.1716309e36,-1.172153e36,-1.1726751e36,-1.17319724e36,-1.17371935e36,-1.1742415e36,-1.1747636e36,-1.1752857e36,-1.1758078e36,-1.1763299e36,-1.176852e36,-1.17737415e36,-1.1778963e36,-1.1784184e36,-1.1789405e36,-1.1794626e36,-1.1799847e36,-1.1805068e36,-1.18102894e36,-1.18155106e36,-1.1820732e36,-1.1825954e36,-1.1831175e36,-1.1836396e36,-1.1841617e36,-1.1846838e36,-1.1852059e36,-1.18572805e36,-1.18625016e36,-1.1867723e36,-1.1872944e36,-1.1878165e36,-1.1883386e36,-1.1888607e36,-1.18938284e36,-1.18990496e36,-1.1904271e36,-1.1909492e36,-1.1914713e36,-1.1919934e36,-1.1925155e36,-1.1930376e36,-1.19355975e36,-1.19408194e36,-1.19460406e36,-1.1951262e36,-1.1956483e36,-1.1961704e36,-1.1966925e36,-1.1972146e36,-1.1977367e36,-1.19825885e36,-1.198781e36,-1.1993031e36,-1.1998252e36,-1.2003473e36,-1.2008694e36,-1.2013915e36,-1.20191365e36,-1.2024358e36,-1.2029579e36,-1.20348e36,-1.2040021e36,-1.2045242e36,-1.2050463e36,-1.2055685e36,-1.2060906e36,-1.20661275e36,-1.2071349e36,-1.207657e36,-1.2081791e36,-1.2087012e36,-1.2092233e36,-1.2097454e36,-1.21026754e36,-1.21078966e36,-1.2113118e36,-1.2118339e36,-1.212356e36,-1.2128781e36,-1.2134002e36,-1.2139223e36,-1.21444445e36,-1.2149666e36,-1.2154887e36,-1.2160108e36,-1.2165329e36,-1.217055e36,-1.2175772e36,-1.2180993e36,-1.21862144e36,-1.21914355e36,-1.2196657e36,-1.2201878e36,-1.2207099e36,-1.221232e36,-1.2217541e36,-1.2222762e36,-1.22279835e36,-1.2233205e36,-1.2238426e36,-1.2243647e36,-1.2248868e36,-1.2254089e36,-1.225931e36,-1.22645314e36,-1.22697526e36,-1.2274974e36,-1.2280195e36,-1.2285416e36,-1.2290638e36,-1.2295859e36,-1.230108e36,-1.2306301e36,-1.23115225e36,-1.23167436e36,-1.2321965e36,-1.2327186e36,-1.2332407e36,-1.2337628e36,-1.2342849e36,-1.23480704e36,-1.23532915e36,-1.2358513e36,-1.2363734e36,-1.2368955e36,-1.2374176e36,-1.2379397e36,-1.2384618e36,-1.23898395e36,-1.2395061e36,-1.2400282e36,-1.2405504e36,-1.2410725e36,-1.2415946e36,-1.2421167e36,-1.2426388e36,-1.2431609e36,-1.24368305e36,-1.2442052e36,-1.2447273e36,-1.2452494e36,-1.2457715e36,-1.2462936e36,-1.2468157e36,-1.24733785e36,-1.24785996e36,-1.2483821e36,-1.2489042e36,-1.2494263e36,-1.2499484e36,-1.2504705e36,-1.25099264e36,-1.25151475e36,-1.2520369e36,-1.2525591e36,-1.2530812e36,-1.2536033e36,-1.2541254e36,-1.2546475e36,-1.2551696e36,-1.25569174e36,-1.25621386e36,-1.256736e36,-1.2572581e36,-1.2577802e36,-1.2583023e36,-1.2588244e36,-1.2593465e36,-1.25986865e36,-1.2603908e36,-1.2609129e36,-1.261435e36,-1.2619571e36,-1.2624792e36,-1.2630013e36,-1.26352345e36,-1.2640456e36,-1.26456775e36,-1.2650899e36,-1.265612e36,-1.2661341e36,-1.2666562e36,-1.2671783e36,-1.2677004e36,-1.26822255e36,-1.2687447e36,-1.2692668e36,-1.2697889e36,-1.270311e36,-1.2708331e36,-1.2713552e36,-1.27187734e36,-1.27239946e36,-1.2729216e36,-1.2734437e36,-1.2739658e36,-1.2744879e36,-1.27501e36,-1.2755322e36,-1.2760543e36,-1.27657645e36,-1.27709856e36,-1.2776207e36,-1.2781428e36,-1.2786649e36,-1.279187e36,-1.2797091e36,-1.28023124e36,-1.28075335e36,-1.2812755e36,-1.2817976e36,-1.2823197e36,-1.2828418e36,-1.2833639e36,-1.283886e36,-1.28440815e36,-1.2849303e36,-1.2854524e36,-1.2859745e36,-1.2864966e36,-1.2870188e36,-1.2875409e36,-1.288063e36,-1.2885851e36,-1.28910725e36,-1.2896294e36,-1.2901515e36,-1.2906736e36,-1.2911957e36,-1.2917178e36,-1.2922399e36,-1.29276205e36,-1.29328416e36,-1.2938063e36,-1.2943284e36,-1.2948505e36,-1.2953726e36,-1.2958947e36,-1.29641684e36,-1.29693895e36,-1.2974611e36,-1.2979832e36,-1.2985053e36,-1.2990275e36,-1.2995496e36,-1.3000717e36,-1.3005938e36,-1.30111594e36,-1.30163806e36,-1.3021602e36,-1.3026823e36,-1.3032044e36,-1.3037265e36,-1.3042486e36,-1.3047707e36,-1.30529285e36,-1.305815e36,-1.3063371e36,-1.3068592e36,-1.3073813e36,-1.3079034e36,-1.3084255e36,-1.30894765e36,-1.30946976e36,-1.3099919e36,-1.3105141e36,-1.3110362e36,-1.3115583e36,-1.3120804e36,-1.3126025e36,-1.3131246e36,-1.31364675e36,-1.3141689e36,-1.314691e36,-1.3152131e36,-1.3157352e36,-1.3162573e36,-1.3167794e36,-1.31730154e36,-1.31782366e36,-1.3183458e36,-1.3188679e36,-1.31939e36,-1.3199121e36,-1.3204342e36,-1.3209563e36,-1.32147845e36,-1.32200064e36,-1.32252276e36,-1.3230449e36,-1.323567e36,-1.3240891e36,-1.3246112e36,-1.3251333e36,-1.3256554e36,-1.32617755e36,-1.3266997e36,-1.3272218e36,-1.3277439e36,-1.328266e36,-1.3287881e36,-1.3293102e36,-1.3298323e36,-1.3303545e36,-1.3308766e36,-1.3313987e36,-1.3319208e36,-1.3324429e36,-1.332965e36,-1.3334871e36,-1.3340093e36,-1.3345314e36,-1.3350535e36,-1.3355756e36,-1.3360977e36,-1.3366198e36,-1.337142e36,-1.337664e36,-1.3381862e36,-1.3387083e36,-1.3392304e36,-1.3397527e36,-1.3402748e36,-1.3407969e36,-1.341319e36,-1.3418411e36,-1.3423632e36,-1.3428853e36,-1.3434075e36,-1.3439296e36,-1.3444517e36,-1.3449738e36,-1.3454959e36,-1.346018e36,-1.3465401e36,-1.3470623e36,-1.3475844e36,-1.3481065e36,-1.3486286e36,-1.3491507e36,-1.3496728e36,-1.350195e36,-1.350717e36,-1.3512392e36,-1.3517613e36,-1.3522834e36,-1.3528055e36,-1.3533276e36,-1.3538497e36,-1.3543718e36,-1.354894e36,-1.355416e36,-1.3559382e36,-1.3564603e36,-1.3569824e36,-1.3575045e36,-1.3580266e36,-1.3585488e36,-1.3590709e36,-1.359593e36,-1.3601151e36,-1.3606372e36,-1.3611593e36,-1.3616814e36,-1.3622035e36,-1.3627258e36,-1.363248e36,-1.36377e36,-1.3642922e36,-1.3648143e36,-1.3653364e36,-1.3658585e36,-1.3663806e36,-1.3669027e36,-1.3674248e36,-1.367947e36,-1.368469e36,-1.3689912e36,-1.3695133e36,-1.3700354e36,-1.3705575e36,-1.3710796e36,-1.3716018e36,-1.3721239e36,-1.372646e36,-1.3731681e36,-1.3736902e36,-1.3742123e36,-1.3747344e36,-1.3752565e36,-1.3757787e36,-1.3763008e36,-1.3768229e36,-1.377345e36,-1.3778671e36,-1.3783892e36,-1.3789113e36,-1.3794335e36,-1.3799556e36,-1.3804777e36,-1.3809998e36,-1.3815219e36,-1.382044e36,-1.3825661e36,-1.3830883e36,-1.3836104e36,-1.3841325e36,-1.3846546e36,-1.3851767e36,-1.3856988e36,-1.3862211e36,-1.3867432e36,-1.3872653e36,-1.3877874e36,-1.3883095e36,-1.3888317e36,-1.3893538e36,-1.3898759e36,-1.390398e36,-1.3909201e36,-1.3914422e36,-1.3919643e36,-1.3924865e36,-1.3930086e36,-1.3935307e36,-1.3940528e36,-1.3945749e36,-1.395097e36,-1.3956191e36,-1.3961412e36,-1.3966634e36,-1.3971855e36,-1.3977076e36,-1.3982297e36,-1.3987518e36,-1.399274e36,-1.399796e36,-1.4003182e36,-1.4008403e36,-1.4013624e36,-1.4018845e36,-1.4024066e36,-1.4029287e36,-1.4034508e36,-1.403973e36,-1.404495e36,-1.4050172e36,-1.4055393e36,-1.4060614e36,-1.4065835e36,-1.4071056e36,-1.4076277e36,-1.4081499e36,-1.408672e36,-1.4091941e36,-1.4097164e36,-1.4102385e36,-1.4107606e36,-1.4112827e36,-1.4118048e36,-1.412327e36,-1.412849e36,-1.4133712e36,-1.4138933e36,-1.4144154e36,-1.4149375e36,-1.4154596e36,-1.4159817e36,-1.4165038e36,-1.417026e36,-1.417548e36,-1.4180702e36,-1.4185923e36,-1.4191144e36,-1.4196365e36,-1.4201586e36,-1.4206807e36,-1.4212029e36,-1.421725e36,-1.4222471e36,-1.4227692e36,-1.4232913e36,-1.4238134e36,-1.4243355e36,-1.4248577e36,-1.4253798e36,-1.4259019e36,-1.426424e36,-1.4269461e36,-1.4274682e36,-1.4279903e36,-1.4285125e36,-1.4290346e36,-1.4295567e36,-1.4300788e36,-1.4306009e36,-1.431123e36,-1.4316451e36,-1.4321672e36,-1.4326895e36,-1.4332116e36,-1.4337337e36,-1.4342559e36,-1.434778e36,-1.4353001e36,-1.4358222e36,-1.4363443e36,-1.4368664e36,-1.4373885e36,-1.4379107e36,-1.4384328e36,-1.4389549e36,-1.439477e36,-1.4399991e36,-1.4405212e36,-1.4410433e36,-1.4415654e36,-1.4420876e36,-1.4426097e36,-1.4431318e36,-1.4436539e36,-1.444176e36,-1.4446981e36,-1.4452202e36,-1.4457424e36,-1.4462645e36,-1.4467866e36,-1.4473087e36,-1.4478308e36,-1.448353e36,-1.448875e36,-1.4493972e36,-1.4499193e36,-1.4504414e36,-1.4509635e36,-1.4514856e36,-1.4520077e36,-1.4525298e36,-1.453052e36,-1.453574e36,-1.4540962e36,-1.4546183e36,-1.4551404e36,-1.4556625e36,-1.4561848e36,-1.4567069e36,-1.457229e36,-1.4577511e36,-1.4582732e36,-1.4587954e36,-1.4593175e36,-1.4598396e36,-1.4603617e36,-1.4608838e36,-1.461406e36,-1.461928e36,-1.4624502e36,-1.4629723e36,-1.4634944e36,-1.4640165e36,-1.4645386e36,-1.4650607e36,-1.4655828e36,-1.466105e36,-1.466627e36,-1.4671492e36,-1.4676713e36,-1.4681934e36,-1.4687155e36,-1.4692376e36,-1.4697597e36,-1.4702819e36,-1.470804e36,-1.4713261e36,-1.4718482e36,-1.4723703e36,-1.4728924e36,-1.4734145e36,-1.4739367e36,-1.4744588e36,-1.4749809e36,-1.475503e36,-1.4760251e36,-1.4765472e36,-1.4770693e36,-1.4775914e36,-1.4781136e36,-1.4786357e36,-1.4791578e36,-1.47968e36,-1.4802022e36,-1.4807243e36,-1.4812464e36,-1.4817685e36,-1.4822906e36,-1.4828127e36,-1.4833349e36,-1.483857e36,-1.4843791e36,-1.4849012e36,-1.4854233e36,-1.4859454e36,-1.4864675e36,-1.4869896e36,-1.4875118e36,-1.4880339e36,-1.488556e36,-1.4890781e36,-1.4896002e36,-1.4901223e36,-1.4906444e36,-1.4911666e36,-1.4916887e36,-1.4922108e36,-1.4927329e36,-1.493255e36,-1.4937771e36,-1.4942992e36,-1.4948214e36,-1.4953435e36,-1.4958656e36,-1.4963877e36,-1.4969098e36,-1.4974319e36,-1.497954e36,-1.4984761e36,-1.4989983e36,-1.4995204e36,-1.5000425e36,-1.5005646e36,-1.5010867e36,-1.5016088e36,-1.502131e36,-1.5026532e36,-1.5031753e36,-1.5036974e36,-1.5042196e36,-1.5047417e36,-1.5052638e36,-1.5057859e36,-1.506308e36,-1.5068301e36,-1.5073522e36,-1.5078744e36,-1.5083965e36,-1.5089186e36,-1.5094407e36,-1.5099628e36,-1.5104849e36,-1.511007e36,-1.5115291e36,-1.5120513e36,-1.5125734e36,-1.5130955e36,-1.5136176e36,-1.5141397e36,-1.5146618e36,-1.515184e36,-1.515706e36,-1.5162282e36,-1.5167503e36,-1.5172724e36,-1.5177945e36,-1.5183166e36,-1.5188387e36,-1.5193608e36,-1.519883e36,-1.520405e36,-1.5209272e36,-1.5214493e36,-1.5219714e36,-1.5224935e36,-1.5230156e36,-1.5235378e36,-1.5240599e36,-1.524582e36,-1.5251041e36,-1.5256262e36,-1.5261485e36,-1.5266706e36,-1.5271927e36,-1.5277148e36,-1.528237e36,-1.528759e36,-1.5292812e36,-1.5298033e36,-1.5303254e36,-1.5308475e36,-1.5313696e36,-1.5318917e36,-1.5324138e36,-1.532936e36,-1.533458e36,-1.5339802e36,-1.5345023e36,-1.5350244e36,-1.5355465e36,-1.5360686e36,-1.5365908e36,-1.5371129e36,-1.537635e36,-1.5381571e36,-1.5386792e36,-1.5392013e36,-1.5397234e36,-1.5402456e36,-1.5407677e36,-1.5412898e36,-1.5418119e36,-1.542334e36,-1.5428561e36,-1.5433782e36,-1.5439003e36,-1.5444225e36,-1.5449446e36,-1.5454667e36,-1.5459888e36,-1.5465109e36,-1.547033e36,-1.5475551e36,-1.5480773e36,-1.5485994e36,-1.5491216e36,-1.5496438e36,-1.5501659e36,-1.550688e36,-1.5512101e36,-1.5517322e36,-1.5522543e36,-1.5527764e36,-1.5532985e36,-1.5538207e36,-1.5543428e36,-1.5548649e36,-1.555387e36,-1.5559091e36,-1.5564312e36,-1.5569533e36,-1.5574755e36,-1.5579976e36,-1.5585197e36,-1.5590418e36,-1.5595639e36,-1.560086e36,-1.5606081e36,-1.5611303e36,-1.5616524e36,-1.5621745e36,-1.5626966e36,-1.5632187e36,-1.5637408e36,-1.564263e36,-1.564785e36,-1.5653072e36,-1.5658293e36,-1.5663514e36,-1.5668735e36,-1.5673956e36,-1.5679177e36,-1.5684398e36,-1.568962e36,-1.569484e36,-1.5700062e36,-1.5705283e36,-1.5710504e36,-1.5715725e36,-1.5720946e36,-1.5726169e36,-1.573139e36,-1.5736611e36,-1.5741833e36,-1.5747054e36,-1.5752275e36,-1.5757496e36,-1.5762717e36,-1.5767938e36,-1.577316e36,-1.577838e36,-1.5783602e36,-1.5788823e36,-1.5794044e36,-1.5799265e36,-1.5804486e36,-1.5809707e36,-1.5814928e36,-1.582015e36,-1.582537e36,-1.5830592e36,-1.5835813e36,-1.5841034e36,-1.5846255e36,-1.5851476e36,-1.5856698e36,-1.5861919e36,-1.586714e36,-1.5872361e36,-1.5877582e36,-1.5882803e36,-1.5888024e36,-1.5893245e36,-1.5898467e36,-1.5903688e36,-1.5908909e36,-1.591413e36,-1.5919351e36,-1.5924572e36,-1.5929793e36,-1.5935015e36,-1.5940236e36,-1.5945457e36,-1.5950678e36,-1.5955899e36,-1.5961122e36,-1.5966343e36,-1.5971564e36,-1.5976785e36,-1.5982006e36,-1.5987227e36,-1.5992449e36,-1.599767e36,-1.6002891e36,-1.6008112e36,-1.6013333e36,-1.6018554e36,-1.6023775e36,-1.6028997e36,-1.6034218e36,-1.6039439e36,-1.604466e36,-1.6049881e36,-1.6055102e36,-1.6060323e36,-1.6065545e36,-1.6070766e36,-1.6075987e36,-1.6081208e36,-1.6086429e36,-1.609165e36,-1.6096871e36,-1.6102092e36,-1.6107314e36,-1.6112535e36,-1.6117756e36,-1.6122977e36,-1.6128198e36,-1.613342e36,-1.613864e36,-1.6143862e36,-1.6149083e36,-1.6154304e36,-1.6159525e36,-1.6164746e36,-1.6169967e36,-1.6175188e36,-1.618041e36,-1.618563e36,-1.6190853e36,-1.6196075e36,-1.6201296e36,-1.6206517e36,-1.6211738e36,-1.6216959e36,-1.622218e36,-1.6227401e36,-1.6232622e36,-1.6237844e36,-1.6243065e36,-1.6248286e36,-1.6253507e36,-1.6258728e36,-1.626395e36,-1.626917e36,-1.6274392e36,-1.6279613e36,-1.6284834e36,-1.6290055e36,-1.6295276e36,-1.6300497e36,-1.6305718e36,-1.631094e36,-1.631616e36,-1.6321382e36,-1.6326603e36,-1.6331824e36,-1.6337045e36,-1.6342266e36,-1.6347487e36,-1.6352709e36,-1.635793e36,-1.6363151e36,-1.6368372e36,-1.6373593e36,-1.6378814e36,-1.6384035e36,-1.6389257e36,-1.6394478e36,-1.6399699e36,-1.640492e36,-1.6410141e36,-1.6415362e36,-1.6420583e36,-1.6425806e36,-1.6431027e36,-1.6436248e36,-1.644147e36,-1.644669e36,-1.6451912e36,-1.6457133e36,-1.6462354e36,-1.6467575e36,-1.6472796e36,-1.6478017e36,-1.6483239e36,-1.648846e36,-1.6493681e36,-1.6498902e36,-1.6504123e36,-1.6509344e36,-1.6514565e36,-1.6519787e36,-1.6525008e36,-1.6530229e36,-1.653545e36,-1.6540671e36,-1.6545892e36,-1.6551113e36,-1.6556334e36,-1.6561556e36,-1.6566777e36,-1.6571998e36,-1.6577219e36,-1.658244e36,-1.6587661e36,-1.6592882e36,-1.6598104e36,-1.6603325e36,-1.6608546e36,-1.6613767e36,-1.6618988e36,-1.662421e36,-1.662943e36,-1.6634652e36,-1.6639873e36,-1.6645094e36,-1.6650315e36,-1.6655538e36,-1.6660759e36,-1.666598e36,-1.6671201e36,-1.6676422e36,-1.6681643e36,-1.6686864e36,-1.6692086e36,-1.6697307e36,-1.6702528e36,-1.6707749e36,-1.671297e36,-1.6718191e36,-1.6723412e36,-1.6728634e36,-1.6733855e36,-1.6739076e36,-1.6744297e36,-1.6749518e36,-1.675474e36,-1.675996e36,-1.6765181e36,-1.6770403e36,-1.6775624e36,-1.6780845e36,-1.6786066e36,-1.6791287e36,-1.6796508e36,-1.680173e36,-1.680695e36,-1.6812172e36,-1.6817393e36,-1.6822614e36,-1.6827835e36,-1.6833056e36,-1.6838277e36,-1.6843499e36,-1.684872e36,-1.6853941e36,-1.6859162e36,-1.6864383e36,-1.6869604e36,-1.6874825e36,-1.6880046e36,-1.6885268e36,-1.689049e36,-1.6895711e36,-1.6900933e36,-1.6906154e36,-1.6911375e36,-1.6916596e36,-1.6921817e36,-1.6927038e36,-1.693226e36,-1.693748e36,-1.6942702e36,-1.6947923e36,-1.6953144e36,-1.6958365e36,-1.6963586e36,-1.6968807e36,-1.6974029e36,-1.697925e36,-1.698447e36,-1.6989692e36,-1.6994913e36,-1.7000134e36,-1.7005355e36,-1.7010576e36,-1.7015798e36,-1.7021019e36,-1.702624e36,-1.7031461e36,-1.7036682e36,-1.7041903e36,-1.7047124e36,-1.7052346e36,-1.7057567e36,-1.7062788e36,-1.7068009e36,-1.707323e36,-1.7078451e36,-1.7083672e36,-1.7088894e36,-1.7094115e36,-1.7099336e36,-1.7104557e36,-1.7109778e36,-1.7114999e36,-1.712022e36,-1.7125443e36,-1.7130664e36,-1.7135885e36,-1.7141106e36,-1.7146328e36,-1.7151549e36,-1.715677e36,-1.7161991e36,-1.7167212e36,-1.7172433e36,-1.7177654e36,-1.7182876e36,-1.7188097e36,-1.7193318e36,-1.7198539e36,-1.720376e36,-1.7208981e36,-1.7214202e36,-1.7219423e36,-1.7224645e36,-1.7229866e36,-1.7235087e36,-1.7240308e36,-1.7245529e36,-1.725075e36,-1.7255971e36,-1.7261193e36,-1.7266414e36,-1.7271635e36,-1.7276856e36,-1.7282077e36,-1.7287298e36,-1.729252e36,-1.729774e36,-1.7302962e36,-1.7308183e36,-1.7313404e36,-1.7318625e36,-1.7323846e36,-1.7329067e36,-1.7334288e36,-1.733951e36,-1.734473e36,-1.7349952e36,-1.7355175e36,-1.7360396e36,-1.7365617e36,-1.7370838e36,-1.7376059e36,-1.738128e36,-1.7386501e36,-1.7391723e36,-1.7396944e36,-1.7402165e36,-1.7407386e36,-1.7412607e36,-1.7417828e36,-1.742305e36,-1.742827e36,-1.7433492e36,-1.7438713e36,-1.7443934e36,-1.7449155e36,-1.7454376e36,-1.7459597e36,-1.7464818e36,-1.747004e36,-1.747526e36,-1.7480482e36,-1.7485703e36,-1.7490924e36,-1.7496145e36,-1.7501366e36,-1.7506588e36,-1.7511809e36,-1.751703e36,-1.7522251e36,-1.7527472e36,-1.7532693e36,-1.7537914e36,-1.7543135e36,-1.7548357e36,-1.7553578e36,-1.7558799e36,-1.756402e36,-1.7569241e36,-1.7574462e36,-1.7579683e36,-1.7584905e36,-1.7590127e36,-1.7595348e36,-1.760057e36,-1.760579e36,-1.7611012e36,-1.7616233e36,-1.7621454e36,-1.7626675e36,-1.7631896e36,-1.7637118e36,-1.7642339e36,-1.764756e36,-1.7652781e36,-1.7658002e36,-1.7663223e36,-1.7668444e36,-1.7673665e36,-1.7678887e36,-1.7684108e36,-1.7689329e36,-1.769455e36,-1.7699771e36,-1.7704992e36,-1.7710213e36,-1.7715435e36,-1.7720656e36,-1.7725877e36,-1.7731098e36,-1.7736319e36,-1.774154e36,-1.7746761e36,-1.7751983e36,-1.7757204e36,-1.7762425e36,-1.7767646e36,-1.7772867e36,-1.7778088e36,-1.778331e36,-1.778853e36,-1.7793752e36,-1.7798973e36,-1.7804194e36,-1.7809415e36,-1.7814636e36,-1.7819857e36,-1.782508e36,-1.7830301e36,-1.7835522e36,-1.7840743e36,-1.7845965e36,-1.7851186e36,-1.7856407e36,-1.7861628e36,-1.7866849e36,-1.787207e36,-1.7877291e36,-1.7882513e36,-1.7887734e36,-1.7892955e36,-1.7898176e36,-1.7903397e36,-1.7908618e36,-1.791384e36,-1.791906e36,-1.7924282e36,-1.7929503e36,-1.7934724e36,-1.7939945e36,-1.7945166e36,-1.7950387e36,-1.7955608e36,-1.796083e36,-1.796605e36,-1.7971272e36,-1.7976493e36,-1.7981714e36,-1.7986935e36,-1.7992156e36,-1.7997377e36,-1.8002599e36,-1.800782e36,-1.8013041e36,-1.8018262e36,-1.8023483e36,-1.8028704e36,-1.8033925e36,-1.8039147e36,-1.8044368e36,-1.8049589e36,-1.8054812e36,-1.8060033e36,-1.8065254e36,-1.8070475e36,-1.8075696e36,-1.8080917e36,-1.8086138e36,-1.809136e36,-1.809658e36,-1.8101802e36,-1.8107023e36,-1.8112244e36,-1.8117465e36,-1.8122686e36,-1.8127907e36,-1.8133129e36,-1.813835e36,-1.8143571e36,-1.8148792e36,-1.8154013e36,-1.8159234e36,-1.8164455e36,-1.8169677e36,-1.8174898e36,-1.8180119e36,-1.818534e36,-1.8190561e36,-1.8195782e36,-1.8201003e36,-1.8206225e36,-1.8211446e36,-1.8216667e36,-1.8221888e36,-1.8227109e36,-1.823233e36,-1.8237551e36,-1.8242772e36,-1.8247994e36,-1.8253215e36,-1.8258436e36,-1.8263657e36,-1.8268878e36,-1.82741e36,-1.827932e36,-1.8284542e36,-1.8289764e36,-1.8294985e36,-1.8300207e36,-1.8305428e36,-1.8310649e36,-1.831587e36,-1.8321091e36,-1.8326312e36,-1.8331533e36,-1.8336754e36,-1.8341976e36,-1.8347197e36,-1.8352418e36,-1.8357639e36,-1.836286e36,-1.8368081e36,-1.8373302e36,-1.8378524e36,-1.8383745e36,-1.8388966e36,-1.8394187e36,-1.8399408e36,-1.840463e36,-1.840985e36,-1.8415072e36,-1.8420293e36,-1.8425514e36,-1.8430735e36,-1.8435956e36,-1.8441177e36,-1.8446398e36,-1.845162e36,-1.845684e36,-1.8462062e36,-1.8467283e36,-1.8472504e36,-1.8477725e36,-1.8482946e36,-1.8488167e36,-1.8493389e36,-1.849861e36,-1.8503831e36,-1.8509052e36,-1.8514273e36,-1.8519496e36,-1.8524717e36,-1.8529938e36,-1.853516e36,-1.854038e36,-1.8545602e36,-1.8550823e36,-1.8556044e36,-1.8561265e36,-1.8566486e36,-1.8571707e36,-1.8576928e36,-1.858215e36,-1.858737e36,-1.8592592e36,-1.8597813e36,-1.8603034e36,-1.8608255e36,-1.8613476e36,-1.8618697e36,-1.8623919e36,-1.862914e36,-1.8634361e36,-1.8639582e36,-1.8644803e36,-1.8650024e36,-1.8655245e36,-1.8660467e36,-1.8665688e36,-1.8670909e36,-1.867613e36,-1.8681351e36,-1.8686572e36,-1.8691793e36,-1.8697014e36,-1.8702236e36,-1.8707457e36,-1.8712678e36,-1.8717899e36,-1.872312e36,-1.8728341e36,-1.8733562e36,-1.8738784e36,-1.8744005e36,-1.8749226e36,-1.8754449e36,-1.875967e36,-1.8764891e36,-1.8770112e36,-1.8775333e36,-1.8780554e36,-1.8785775e36,-1.8790996e36,-1.8796218e36,-1.8801439e36,-1.880666e36,-1.8811881e36,-1.8817102e36,-1.8822323e36,-1.8827544e36,-1.8832766e36,-1.8837987e36,-1.8843208e36,-1.8848429e36,-1.885365e36,-1.8858871e36,-1.8864092e36,-1.8869314e36,-1.8874535e36,-1.8879756e36,-1.8884977e36,-1.8890198e36,-1.8895419e36,-1.890064e36,-1.8905861e36,-1.8911083e36,-1.8916304e36,-1.8921525e36,-1.8926746e36,-1.8931967e36,-1.8937188e36,-1.894241e36,-1.894763e36,-1.8952852e36,-1.8958073e36,-1.8963294e36,-1.8968515e36,-1.8973736e36,-1.8978957e36,-1.8984179e36,-1.8989401e36,-1.8994622e36,-1.8999844e36,-1.9005065e36,-1.9010286e36,-1.9015507e36,-1.9020728e36,-1.9025949e36,-1.903117e36,-1.9036391e36,-1.9041613e36,-1.9046834e36,-1.9052055e36,-1.9057276e36,-1.9062497e36,-1.9067718e36,-1.907294e36,-1.907816e36,-1.9083382e36,-1.9088603e36,-1.9093824e36,-1.9099045e36,-1.9104266e36,-1.9109487e36,-1.9114708e36,-1.911993e36,-1.912515e36,-1.9130372e36,-1.9135593e36,-1.9140814e36,-1.9146035e36,-1.9151256e36,-1.9156478e36,-1.9161699e36,-1.916692e36,-1.9172141e36,-1.9177362e36,-1.9182583e36,-1.9187804e36,-1.9193026e36,-1.9198247e36,-1.9203468e36,-1.9208689e36,-1.921391e36,-1.9219133e36,-1.9224354e36,-1.9229575e36,-1.9234796e36,-1.9240017e36,-1.9245238e36,-1.925046e36,-1.925568e36,-1.9260902e36,-1.9266123e36,-1.9271344e36,-1.9276565e36,-1.9281786e36,-1.9287008e36,-1.9292229e36,-1.929745e36,-1.9302671e36,-1.9307892e36,-1.9313113e36,-1.9318334e36,-1.9323556e36,-1.9328777e36,-1.9333998e36,-1.9339219e36,-1.934444e36,-1.9349661e36,-1.9354882e36,-1.9360103e36,-1.9365325e36,-1.9370546e36,-1.9375767e36,-1.9380988e36,-1.9386209e36,-1.939143e36,-1.9396651e36,-1.9401873e36,-1.9407094e36,-1.9412315e36,-1.9417536e36,-1.9422757e36,-1.9427978e36,-1.94332e36,-1.943842e36,-1.9443642e36,-1.9448863e36,-1.9454086e36,-1.9459307e36,-1.9464528e36,-1.9469749e36,-1.947497e36,-1.9480191e36,-1.9485412e36,-1.9490633e36,-1.9495855e36,-1.9501076e36,-1.9506297e36,-1.9511518e36,-1.9516739e36,-1.952196e36,-1.9527181e36,-1.9532403e36,-1.9537624e36,-1.9542845e36,-1.9548066e36,-1.9553287e36,-1.9558508e36,-1.956373e36,-1.956895e36,-1.9574172e36,-1.9579393e36,-1.9584614e36,-1.9589835e36,-1.9595056e36,-1.9600277e36,-1.9605498e36,-1.961072e36,-1.961594e36,-1.9621162e36,-1.9626383e36,-1.9631604e36,-1.9636825e36,-1.9642046e36,-1.9647268e36,-1.9652489e36,-1.965771e36,-1.9662931e36,-1.9668152e36,-1.9673373e36,-1.9678594e36,-1.9683817e36,-1.9689038e36,-1.969426e36,-1.969948e36,-1.9704702e36,-1.9709923e36,-1.9715144e36,-1.9720365e36,-1.9725586e36,-1.9730807e36,-1.9736028e36,-1.974125e36,-1.974647e36,-1.9751692e36,-1.9756913e36,-1.9762134e36,-1.9767355e36,-1.9772576e36,-1.9777798e36,-1.9783019e36,-1.978824e36,-1.9793461e36,-1.9798682e36,-1.9803903e36,-1.9809124e36,-1.9814345e36,-1.9819567e36,-1.9824788e36,-1.9830009e36,-1.983523e36,-1.9840451e36,-1.9845672e36,-1.9850893e36,-1.9856115e36,-1.9861336e36,-1.9866557e36,-1.9871778e36,-1.9876999e36,-1.988222e36,-1.9887441e36,-1.9892663e36,-1.9897884e36,-1.9903105e36,-1.9908326e36,-1.9913547e36,-1.991877e36,-1.9923991e36,-1.9929212e36,-1.9934433e36,-1.9939654e36,-1.9944875e36,-1.9950097e36,-1.9955318e36,-1.9960539e36,-1.996576e36,-1.9970981e36,-1.9976202e36,-1.9981423e36,-1.9986645e36,-1.9991866e36,-1.9997087e36,-2.0002308e36,-2.0007529e36,-2.001275e36,-2.0017971e36,-2.0023192e36,-2.0028414e36,-2.0033635e36,-2.0038856e36,-2.0044077e36,-2.0049298e36,-2.005452e36,-2.005974e36,-2.0064962e36,-2.0070183e36,-2.0075404e36,-2.0080625e36,-2.0085846e36,-2.0091067e36,-2.0096288e36,-2.010151e36,-2.010673e36,-2.0111952e36,-2.0117173e36,-2.0122394e36,-2.0127615e36,-2.0132836e36,-2.0138057e36,-2.0143279e36,-2.01485e36,-2.0153722e36,-2.0158944e36,-2.0164165e36,-2.0169386e36,-2.0174607e36,-2.0179828e36,-2.018505e36,-2.019027e36,-2.0195492e36,-2.0200713e36,-2.0205934e36,-2.0211155e36,-2.0216376e36,-2.0221597e36,-2.0226818e36,-2.023204e36,-2.023726e36,-2.0242482e36,-2.0247703e36,-2.0252924e36,-2.0258145e36,-2.0263366e36,-2.0268587e36,-2.0273809e36,-2.027903e36,-2.0284251e36,-2.0289472e36,-2.0294693e36,-2.0299914e36,-2.0305135e36,-2.0310357e36,-2.0315578e36,-2.0320799e36,-2.032602e36,-2.0331241e36,-2.0336462e36,-2.0341683e36,-2.0346904e36,-2.0352126e36,-2.0357347e36,-2.0362568e36,-2.0367789e36,-2.037301e36,-2.0378231e36,-2.0383454e36,-2.0388675e36,-2.0393896e36,-2.0399117e36,-2.0404339e36,-2.040956e36,-2.0414781e36,-2.0420002e36,-2.0425223e36,-2.0430444e36,-2.0435665e36,-2.0440887e36,-2.0446108e36,-2.0451329e36,-2.045655e36,-2.0461771e36,-2.0466992e36,-2.0472213e36,-2.0477434e36,-2.0482656e36,-2.0487877e36,-2.0493098e36,-2.0498319e36,-2.050354e36,-2.0508761e36,-2.0513982e36,-2.0519204e36,-2.0524425e36,-2.0529646e36,-2.0534867e36,-2.0540088e36,-2.054531e36,-2.055053e36,-2.0555752e36,-2.0560973e36,-2.0566194e36,-2.0571415e36,-2.0576636e36,-2.0581857e36,-2.0587078e36,-2.05923e36,-2.059752e36,-2.0602742e36,-2.0607963e36,-2.0613184e36,-2.0618407e36,-2.0623628e36,-2.0628849e36,-2.063407e36,-2.0639291e36,-2.0644512e36,-2.0649734e36,-2.0654955e36,-2.0660176e36,-2.0665397e36,-2.0670618e36,-2.067584e36,-2.068106e36,-2.0686282e36,-2.0691503e36,-2.0696724e36,-2.0701945e36,-2.0707166e36,-2.0712387e36,-2.0717608e36,-2.072283e36,-2.072805e36,-2.0733272e36,-2.0738493e36,-2.0743714e36,-2.0748935e36,-2.0754156e36,-2.0759377e36,-2.0764599e36,-2.076982e36,-2.0775041e36,-2.0780262e36,-2.0785483e36,-2.0790704e36,-2.0795925e36,-2.0801146e36,-2.0806368e36,-2.0811589e36,-2.081681e36,-2.0822031e36,-2.0827252e36,-2.0832473e36,-2.0837694e36,-2.0842916e36,-2.0848137e36,-2.085336e36,-2.085858e36,-2.0863802e36,-2.0869023e36,-2.0874244e36,-2.0879465e36]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..6deaa43a3a4a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[0.8917182832956314,0.869023323059082,0.740303248167038,0.6160575151443481,0.49842679500579834,0.2840206027030945,0.29096806049346924,0.12728583812713623,0.13216274976730347,0.030436336994171143,0.00031888484954833984,0.00011789798736572266,1.4841556549072266e-5,9.894371032714844e-6,0.1478269100189209,0.14268773794174194,0.1376325488090515,0.13266193866729736,0.5252253115177155,0.5165343582630157,1.0504898503422737,1.040598664432764,1.0307034980505705,1.0208053197711706,1.0109051037579775,1.0010038174223155,0.9911024328321218,1.8962517976760864,1.8918161988258362,1.8872931003570557,1.8826830387115479,1.877986490726471,1.8732038140296936,1.8683355450630188,1.8633821606636047,1.8302268385887146,1.8357053995132446,1.8411020636558533,1.8464162349700928,1.8516473770141602,0.899149090051651,1.8618587851524353,0.9188696146011353,1.871732234954834,0.9386219568550587,1.881263792514801,0.9583983682096004,0.0824967622756958,0.978191090747714,0.09055233001708984,0.9979923663195223,0.09896457195281982,1.01779443025589,0.10773015022277832,0.20494294166564941,0.11684560775756836,0.19308841228485107,0.1263074278831482,0.1815502643585205,0.1361117959022522,0.1703331470489502,0.1462550163269043,0.15944135189056396,1.1215283274650574,0.14887917041778564,1.1018495559692383,0.13865071535110474,1.0821308493614197,0.12876009941101074,1.0623799376189709,1.92557954788208,1.042604561895132,1.9179020524024963,1.0228124782443047,1.909864604473114,1.0030114480759948,1.9014703631401062,1.782265841960907,1.8927226066589355,1.7944478392601013,0.799326553940773,1.8063182830810547,1.8741804957389832,0.9238731563091278,0.8382741212844849,1.829106092453003,1.8542672395706177,0.047063350677490234,0.8774753585457802,1.8505934476852417,1.8330141305923462,0.05981481075286865,0.9168687611818314,1.8707467317581177,0.2701660394668579,0.07404094934463501,0.9563925564289093,1.8895343542099,0.2436698079109192,0.08971935510635376,0.9959847405552864,1.2402808219194412,0.21835988759994507,0.10682547092437744,1.0355832241475582,1.2016567438840866,0.1942758560180664,0.12533247470855713,1.9644593000411987,1.1627163887023926,0.17145556211471558,0.14521139860153198,1.9532405138015747,1.1235208362340927,0.1499348282814026,1.7014780044555664,1.9405266642570496,1.0841315388679504,0.12974733114242554,1.7291473746299744,1.9263376593589783,1.044610284268856,0.11092472076416016,1.755673110485077,1.910695731639862,1.0050190668553114,0.7587448954582214,1.7810136079788208,1.8936254978179932,0.9654199741780758,0.7973601520061493,1.8051291704177856,1.875153660774231,0.035275936126708984,0.8362932503223419,1.827981948852539,1.8553091287612915,0.04645657539367676,0.8754830956459045,1.8495360612869263,0.29923778772354126,0.05913281440734863,0.9148682504892349,1.8697577714920044,0.27153998613357544,0.07328468561172485,0.9543869197368622,1.2804556488990784,0.24498474597930908,0.08889007568359375,0.9939771313220263,1.2422291487455368,0.2196136713027954,0.10592442750930786,1.9746167659759521,1.203622728586197,0.19546657800674438,0.12436109781265259,1.9649878144264221,1.1646969467401505,0.606817215681076,0.14417117834091187,1.9538453221321106,0.002201378345489502,0.15099388360977173,1.7000457644462585,1.1518118679523468,1.0861318856477737,0.6808062493801117,0.18778502941131592,1.9270920753479004,0.010577738285064697,0.11184555292129517,1.7543566823005676,0.42219746112823486,1.0070266649127007,0.7567970454692841,1.4655946791172028,1.8945247530937195,0.025158941745758057,0.07826703786849976,1.8039368391036987,0.3594258427619934,0.9278773814439774,0.8343130350112915,1.3941055536270142,1.8563476204872131,0.04585373401641846,1.9978646636009216,1.8484752774238586,0.30067139863967896,1.51054447889328,0.9128680750727654,1.3201448917388916,1.812800109386444,0.07253217697143555,1.9895673990249634,1.8876926898956299,0.24630266427993774,1.5769829154014587,0.991969546303153,1.2441765069961548,0.5335171818733215,0.1050269603729248,1.9750642776489258,1.921343207359314,0.196660578250885,1.6398029923439026,1.0711213797330856,1.1666768342256546,0.6049720644950867,0.14313441514968872,1.9544463157653809,0.0020702481269836426,0.15205639600753784,1.6986107230186462,0.4903188943862915,1.088131882250309,0.6789042949676514,0.18661552667617798,1.9278427362442017,0.010288476943969727,0.11276990175247192,1.7530372142791748,0.42383724451065063,1.0090342350304127,0.7548501789569855,1.467370480298996,1.8954203724861145,0.024713456630706787,1.9998742938041687,1.8027412295341492,0.36096876859664917,0.9298799335956573,0.8323334753513336,1.395949900150299,1.8573826551437378,0.045254647731781006,1.99799382686615,1.847411036491394,0.30210787057876587,1.508817195892334,0.9108682498335838,1.3220462203025818,1.813968002796173,0.07178336381912231,1.989854633808136,1.8867665529251099,0.24762368202209473,1.575342059135437,0.9899619929492474,1.246122881770134,0.5317423045635223,0.10413312911987305,1.9755078554153442,0.00014215707778930664,0.1978577971458435,1.6382587552070618,1.0691186860203743,1.168656051158905,0.6031285226345062,0.14210116863250732,1.9550434350967407,0.0019431710243225098,0.15312230587005615,1.6971728205680847,0.4920472502708435,1.0901315286755562,0.6770036220550537,1.5375540852546692,1.928589642047882,0.010003209114074707,0.11369788646697998,1.7517147064208984,0.42547929286956787,1.0110417688265443,0.7529043108224869,1.4691444337368011,1.896312415599823,0.024271845817565918,1.9998404383659363,1.8015424013137817,0.36251431703567505,1.4372967779636383,0.8303546011447906,1.3977926671504974,1.8584141731262207,0.04465949535369873,1.9981188774108887,1.8463433980941772,0.3035471439361572,1.5070878267288208,0.9088687896728516,1.323946237564087,0.46159976720809937,0.07103830575942993,1.9901379346847534,1.8858367800712585,0.24894767999649048,1.5736988186836243,0.987954480573535,1.2480682581663132,0.529969334602356,0.10324293375015259,1.9759474992752075,0.0001780390739440918,0.19905823469161987,1.6367119550704956,0.5636062026023865,1.1706345826387405,0.6012865602970123,0.14107131958007812,1.9556366801261902,0.0018200874328613281,0.15419167280197144,1.6957321166992188,0.49377763271331787,1.0921308100223541,0.6751042306423187,1.539245843887329,0.2769680619239807,1.9701698422431946,0.11462944746017456,1.7503892183303833,0.42712366580963135,1.3628932535648346,0.8676583021879196,0.2326168417930603,1.8972008228302002,0.023834168910980225,1.9998025298118591,0.03322881460189819,1.300104558467865,0.9338858723640442,0.8283764123916626,1.3996338248252869,0.3950068950653076,1.7760618329048157,0.05237537622451782,1.8452723622322083,0.3049892783164978,1.5053564310073853,0.7129410803318024,0.34338200092315674,1.8162939548492432,0.0702970027923584,1.9904171824455261,0.005004703998565674,1.9431778192520142,0.7772968113422394,0.9859470166265965,1.2500126361846924,0.5281982421875,1.6668495535850525,0.1758992075920105,1.91898512840271,0.2002618908882141,1.635162591934204,0.5654134750366211,1.2093784511089325,1.7149423956871033,0.1400449275970459,1.956226110458374,0.0017009973526000977,1.983789086341858,0.08648127317428589,1.1438695937395096,1.0941297188401222,0.6732061803340912,1.5409355163574219,0.27558261156082153,1.969681203365326,0.11556452512741089,1.7490606307983398,0.42877036333084106,1.3610217571258545,0.8696485459804535,0.23133111000061035,1.8980856537818909,0.023400425910949707,1.999760627746582,0.03374403715133667,1.8779847025871277,0.9358892440795898,0.8263989090919495,1.401473343372345,0.3934095501899719,1.7773264050483704,0.05301851034164429,1.844197928905487,0.30643415451049805,1.5036230087280273,0.7148647904396057,1.050486147403717,1.8174520134925842,0.06955945491790771,1.9906924366950989,0.005207359790802002,1.9425088167190552,0.7792544811964035,0.9839396104216576,1.2519560158252716,0.5264290273189545,1.668344259262085,0.17476367950439453,1.91819167137146,0.20146876573562622,1.6336106657981873,0.5672224760055542,1.2074148952960968,1.7163446545600891,0.13902205228805542,1.9568116664886475,0.0015859603881835938,1.9834270477294922,0.08729982376098633,1.1418825536966324,1.0961282476782799,0.6713094413280487,1.542622983455658,0.27420008182525635,1.8678390979766846,0.11650317907333374,1.7477290630340576,0.430419385433197,1.3591488003730774,0.8716393113136292,0.23004847764968872,1.8989668488502502,0.022970616817474365,1.9997146725654602,0.03426307439804077,1.8770219087600708,0.9378928802907467,0.8244221061468124,1.4033112823963165,0.3918147087097168,1.778587818145752,0.05366545915603638,1.843120038509369,0.30788183212280273,1.501887559890747,0.7167896628379822,1.048480972647667,1.8186067342758179,0.06882566213607788,1.9909637570381165,0.005413949489593506,1.9418359994888306,0.7812130302190781,0.9819322675466537,1.2538983821868896,0.5246617496013641,1.6698362827301025,0.1736314296722412,1.9173945188522339,0.2026788592338562,1.632056176662445,0.5690332353115082,1.2054505050182343,1.0317105315625668,0.13800263404846191,1.9573933482170105,0.0014749765396118164,1.9830610752105713,0.08812201023101807,1.1398949474096298,1.0981263890862465,0.6694140136241913,1.5443082451820374,0.27282047271728516,1.8688347935676575,0.11744540929794312,1.7463945150375366,0.43207067251205444,1.3572743833065033,0.8736305981874466,0.2287689447402954,1.8998444080352783,0.0225447416305542,1.9996647238731384,0.03478604555130005,1.8760555386543274,0.9398967623710632,0.8224460184574127,1.4051475822925568,0.3902222514152527,1.7798461318016052,0.054316163063049316,1.8420388102531433,0.30933231115341187,1.5001500844955444,0.7187156677246094,1.046475600451231,1.8197581768035889,0.06809556484222412,1.9912310242652893,0.005624592304229736,1.9411593675613403,0.16540086269378662,0.9799249973148108,1.2558397054672241,0.522896409034729,1.6713256239891052,0.1725025177001953,1.9165936708450317,0.20389223098754883,1.6304991245269775,0.5708457231521606,1.203485295176506,1.033717092126608,0.13698667287826538,1.957971215248108,0.0013679862022399902,1.9826911687850952,0.08894789218902588,1.137906774878502,1.1001241356134415,0.6675199270248413,1.54599130153656,0.27144384384155273,1.8698270320892334,0.11839121580123901,1.7450568675994873,0.43372422456741333,1.3553985357284546,0.8756223917007446,0.8863070532679558,1.900718331336975,0.02212280035018921,1.999610722064972,0.0353129506111145,1.875085711479187,0.9419008903205395,0.8204706460237503,1.4069822430610657,0.38863229751586914,1.7811012864112854,0.09343737363815308,1.8409541845321655,0.31078553199768066,1.4984105825424194,0.7206428050994873,1.0444700419902802,1.8209063410758972,0.06736928224563599,1.9914942979812622,0.005839228630065918,1.9404789805412292,0.1665084958076477,0.9779178090393543,1.2577800154685974,0.5211329460144043,1.672812283039093,0.1713770031929016,1.9157891273498535,0.20510876178741455,1.6289395689964294,0.5726599395275116,1.201519250869751,1.0357235185801983,0.13597416877746582,1.958545207977295,0.0012649893760681152,1.9823172688484192,0.08977746963500977,1.7865370512008667,1.1021214798092842,0.6656271517276764,1.5476722121238708,0.27007007598876953,1.8708157539367676,0.11934053897857666,1.743716299533844,0.43538010120391846,1.3535212576389313,0.8776146844029427,0.88431266695261,1.9015886783599854,0.021704792976379395,1.9995526671409607,0.03584367036819458,1.87411230802536,0.9439052492380142,0.8184959888458252,1.4088152647018433,0.3870447874069214,1.7823532819747925,0.09259182214736938,1.8398661017417908,0.3122416138648987,1.4966690838336945,0.722571074962616,1.042464304715395,1.8220511674880981,0.0666467547416687,1.9917535781860352,0.006057858467102051,1.9397947788238525,0.16761940717697144,0.9759107101708651,1.2597192823886871,0.5193714499473572,1.6742962002754211,0.17025476694107056,1.9381649494171143,0.20632851123809814,1.627377450466156,0.574475884437561,1.1995524019002914,1.0377297960221767,0.134965181350708,1.9591153264045715,0.0011660456657409668,1.9819393754005432,0.09061074256896973,1.7852956652641296,1.1041184142231941,0.6637357771396637,1.5493508577346802,0.2686992883682251,1.87180095911026,0.12029343843460083,1.7423726916313171,0.43703824281692505,1.3516425490379333,0.8796074762940407,0.8823187425732613,1.9024553298950195,0.02129077911376953,1.9994906187057495,0.036378324031829834,1.8731353878974915,0.9459098353981972,0.8165220618247986,1.4106466472148895,0.3854597806930542,1.7836021184921265,0.09174990653991699,1.9814190864562988,0.0010379552841186523,1.9598845839500427,1.4703892767429352,0.33434462547302246,1.8231926560401917,0.06592798233032227,1.992008924484253,0.00628054141998291,1.9391067624092102,0.16873377561569214,1.6763101816177368,0.5169786214828491,1.2623552680015564,1.9982043504714966,0.015925049781799316,1.9141689538955688,0.20755141973495483,1.625812828540802,0.576293557882309,1.1975847333669662,1.0397359244525433,0.7251956164836884,1.4942971467971802,0.3142264485359192,1.5725432634353638,0.6374853849411011,1.131938949227333,1.10611492395401,0.6618457138538361,1.5510272979736328,0.26733148097991943,1.8727827072143555,0.03657180070877075,1.9994673132896423,0.02114260196685791,0.5999937653541565,1.6053165793418884,0.2236819863319397,1.9033183455467224,0.020880699157714844,1.9994245171546936,0.03691685199737549,1.872154951095581,0.26820629835128784,1.549954891204834,0.6630549132823944,0.00952678918838501,1.9949545860290527,0.05695730447769165,1.837679922580719,0.31516194343566895,1.4931800663471222,0.7264309525489807,1.0384523272514343,1.1988438367843628,0.5751303136348724,1.6268142461776733,0.20676857233047485,1.434220552444458,0.7910188734531403,0.9718968085944653,1.2635946571826935,0.5158542394638062,1.6772558689117432,0.1680203676223755,1.9395474195480347,0.0061376094818115234,1.9918460249900818,0.06638741493225098,0.4587228298187256,1.7246974110603333,0.13295763731002808,1.9602439999580383,0.0009802579879760742,1.9811717867851257,0.09228819608688354,1.7828034162521362,0.3864736557006836,1.409475028514862,0.817784994840622,0.00024837255477905273,1.966151237487793,0.12220984697341919,1.7396765351295471,0.4403613209724426,1.3478808999061584,0.8835944980382919,0.878332331776619,1.3528448045253754,0.435977041721344,1.7432327270507812,0.4967280626296997,1.2847457230091095,0.9499196521937847,0.8125764429569244,1.4143044352531433,0.382297158241272,1.78609037399292,0.09007716178894043,1.9821816086769104,0.001228928565979004,1.9587509632110596,1.4739287793636322,0.3313535451889038,1.825465738773346,0.06450170278549194,1.992507517337799,0.006737828254699707,1.937719464302063,0.17097240686416626,1.673346996307373,0.5204983055591583,1.2584785521030426,1.9984368085861206,0.01664668321609497,1.9125340580940247,0.21000689268112183,1.6226759552955627,0.5799339711666107,1.1936470419168472,1.0437476933002472,0.7213371396064758,1.497783601284027,0.3113096356391907,1.8405627012252808,0.641230434179306,1.1279577314853668,1.1101066544651985,0.6580697298049927,1.554373562335968,0.2646046280860901,1.8747355341911316,0.03550362586975098,1.999590277671814,0.021971821784973145,1.9010322093963623,1.608507752418518,0.2211572527885437,1.905033528804779,0.020072340965270996,1.9992802739143372,0.038005530834198,1.870183527469635,0.27094870805740356,1.5465969443321228,0.6668380796909332,1.1008435264229774,1.994543731212616,0.058300673961639404,1.8354801535606384,0.3180934190750122,1.4896830916404724,0.7302952408790588,1.0344397276639938,1.202777311205864,0.5714989304542542,1.629937767982483,0.2043299674987793,1.430600106716156,0.7949471473693848,0.967883363366127,1.2674657702445984,0.5123448371887207,1.6802046298980713,0.16579937934875488,1.9409147500991821,0.005701422691345215,1.9913263320922852,0.0678335428237915,0.45535093545913696,1.7274583578109741,0.13096410036087036,1.9613571763038635,0.0008105635643005371,1.9803884029388428,0.09398025274276733,1.7802985310554504,0.3896493911743164,1.405808538198471,0.8217345029115677,0.0003458857536315918,1.9651076197624207,0.12414044141769409,1.736968457698822,0.44369345903396606,1.3441136181354523,0.8875833973288536,0.8743478804826736,1.356598973274231,0.43266594409942627,1.7459130883216858,0.5002018213272095,1.28089439868927,0.953930277377367,0.8086338490247726,1.4179555177688599,0.37914448976516724,1.7885658740997314,0.08841907978057861,1.9829283356666565,0.0014359354972839355,1.9576019644737244,0.13763630390167236,0.3283732533454895,1.8277255296707153,0.06309056282043457,1.9929900765419006,0.007211148738861084,1.9363170266151428,0.17322444915771484,1.670373022556305,0.5240257382392883,1.2545976638793945,0.9812093377113342,0.017384231090545654,1.9108844995498657,0.21247506141662598,1.6195290684700012,0.5835811793804169,1.1897062212228775,1.0477587543427944,0.7174831926822662,1.5012620091438293,0.3084039092063904,1.8427310585975647,0.6449812650680542,1.1239744424819946,1.1140966191887856,0.6542992293834686,1.557710886001587,0.26188963651657104,1.8766742944717407,0.03445100784301758,1.9996971487998962,0.022816777229309082,1.8992833495140076,1.6116891503334045,0.2186450958251953,1.906734049320221,0.019279778003692627,1.9991199374198914,0.03910970687866211,1.8681980967521667,0.27370285987854004,1.5432301759719849,0.6706266403198242,1.0968479290604591,1.9941168427467346,0.05965918302536011,1.8332669734954834,0.32103580236434937,1.4861782491207123,0.734163910150528,1.0304265711456537,1.2067075222730637,0.5678744316101074,1.6330510973930359,0.20190423727035522,1.4269726872444153,0.7988787442445755,0.96387043222785,1.2713325917720795,0.5088433027267456,1.6831424236297607,0.16359186172485352,1.9422668814659119,0.005281269550323486,1.990790605545044,0.0692947506904602,1.8178682923316956,1.7302075624465942,0.12898457050323486,1.9624547958374023,0.0006570219993591309,1.9795891642570496,0.09568697214126587,1.777781069278717,0.3928349018096924,1.4021354615688324,0.8256868869066238,0.9366108328104019,1.964048445224762,0.126085102558136,1.7342485189437866,0.4470345377922058,1.3403408229351044,0.8915741145610809,0.8703654557466507,1.3603473901748657,0.42936402559280396,1.7485814094543457,0.11590218544006348,1.2770385444164276,0.9579416438937187,0.804694339632988,1.4215998947620392,0.37600183486938477,1.7910287380218506,0.08677566051483154,1.9836591482162476,0.001659095287322998,1.9564374685287476,0.13967615365982056,0.3254038095474243,1.829971969127655,0.061694443225860596,1.9934567213058472,0.007700502872467041,1.9348995089530945,0.17548984289169312,1.6673882007598877,0.527560830116272,1.250712662935257,0.9852240392938256,0.018137574195861816,1.9092202186584473,0.21495592594146729,1.6163722276687622,0.5872351229190826,1.1857623606920242,1.0517690479755402,0.7136337757110596,1.504732370376587,0.3055093288421631,1.8448858261108398,0.6487378478050232,1.1199891567230225,1.1180847361683846,0.6505343317985535,1.5610391497612,0.25918662548065186,1.8785988688468933,0.03341394662857056,1.9997879266738892,0.023677468299865723,1.8975199460983276,1.614860713481903,0.21614551544189453,1.9084200263023376,0.018503010272979736,1.9989434480667114,0.0402294397354126,1.8661986589431763,0.27646875381469727,1.539854645729065,0.6744205057621002,1.0928507596254349,1.1451406925916672,0.061032891273498535,1.8310403227806091,0.3239891529083252,1.4826655685901642,0.7380368113517761,1.0264129247516394,1.210634395480156,0.564256876707077,1.6361542344093323,0.19949132204055786,1.9194908142089844,0.8028135746717453,0.9598580859601498,1.2751950323581696,0.5053496956825256,1.6860691905021667,0.1613978147506714,1.9436038732528687,0.004877209663391113,1.9902389645576477,0.07077091932296753,1.8155512809753418,1.7329450249671936,0.12701904773712158,1.9635369777679443,0.0005195140838623047,1.9787741899490356,0.09740829467773438,1.7752510905265808,0.3960302472114563,1.398455947637558,0.8296420723199844,0.932604156434536,1.962973713874817,0.12804388999938965,1.731516718864441,0.4503844976425171,1.3365625143051147,0.8955665752291679,0.8663851320743561,1.3640899658203125,0.4260712265968323,1.751237690448761,0.11403298377990723,1.2731781899929047,0.9619536884129047,0.8007579892873764,1.4252374470233917,0.37286925315856934,1.793478786945343,0.085146963596344,1.9843741059303284,0.001898348331451416,1.955257534980774,0.14172983169555664,0.322445273399353,1.8322049975395203,0.060313522815704346,1.9939072728157043,0.008205831050872803,1.933466911315918,0.1777685284614563,1.6643925905227661,0.5311035513877869,1.2468236237764359,0.9892389792948961,0.7740884870290756,1.907541275024414,0.21744948625564575,1.6132054328918457,0.5908956825733185,1.1818154901266098,1.055778507143259,0.709788978099823,1.5081945657730103,0.30262595415115356,1.8470269441604614,0.05132901668548584,1.1160019412636757,1.1220709457993507,0.6467750370502472,1.564358413219452,0.25649547576904297,1.8805093169212341,0.03239244222640991,1.999862551689148,0.024553954601287842,1.8957420587539673,0.23473191261291504,0.21365857124328613,1.9100912809371948,0.0177420973777771,1.9987508654594421,0.04136461019515991,1.8641852140426636,0.2792462706565857,1.5364704132080078,0.6782196164131165,1.0888521000742912,1.149112269282341,0.06242173910140991,1.8288002610206604,0.3269534111022949,1.4791450798511505,0.7419139742851257,1.022398853674531,1.214557871222496,0.5606463849544525,1.6392471194267273,0.19709134101867676,1.9210618734359741,0.8067515939474106,0.9558463878929615,1.2790530323982239,0.5018640458583832,1.6889849305152893,0.15921729803085327,1.944925606250763,0.004489123821258545,1.9896712899208069,0.07226204872131348,1.8132210969924927,1.7356706261634827,0.12506765127182007,1.9646036028862,0.0003981590270996094,1.9779434204101562,0.0991441011428833,1.7727085947990417,0.3992353081703186,1.3947699964046478,0.8336000144481659,0.9285985678434372,1.9618834257125854,0.1300167441368103,1.7287731170654297,0.4537433385848999,1.3327787816524506,0.8995607197284698,0.8624069541692734,1.3678267002105713,0.42278778553009033,1.753881812095642,0.1121780276298523,1.9714410305023193,0.96596634760499,0.7968248426914215,1.4288681745529175,0.36974674463272095,1.7959160804748535,0.08353304862976074,1.985073208808899,0.0021536946296691895,1.9540622234344482,0.1437973976135254,1.7098140716552734,1.834424614906311,0.058947741985321045,1.994341790676117,0.008727192878723145,1.9320192337036133,0.18006044626235962,1.6613863110542297,0.5346538126468658,1.242930606007576,0.9932540929876268,0.7701788544654846,1.9058476686477661,0.21995562314987183,1.6100287437438965,0.5945628583431244,1.1778656840324402,1.0597870647907257,0.7059488594532013,1.5116485953330994,0.2997537851333618,1.8491544127464294,0.05006676912307739,1.112012855708599,1.12605519592762,0.6430214643478394,1.567668616771698,0.2538163661956787,1.8824055790901184,0.03138655424118042,1.9999210238456726,0.02544611692428589,1.8939497470855713,0.23732274770736694,0.2111843228340149,1.911747932434082,0.016997039318084717,1.9985421895980835,0.04251521825790405,1.8621578812599182,0.2820354104042053,1.5330775380134583,0.6820239126682281,1.0848520025610924,1.1530814319849014,0.06382572650909424,1.8265469074249268,0.32992851734161377,1.4756168723106384,0.7457952797412872,1.0183844212442636,1.2184778898954391,0.5570429563522339,1.642329752445221,0.1947043538093567,1.92261803150177,0.012352824211120605,0.9518354013562202,1.28290656208992,0.4983864426612854,1.6918895244598389,0.15705031156539917,1.9462321400642395,0.004117131233215332,1.9890877604484558,0.07376813888549805,1.8108778595924377,0.3504360318183899,0.12313032150268555,1.9656546711921692,0.0002929568290710449,1.9770968556404114,0.10089445114135742,1.7701536417007446,0.4024500250816345,1.3910776674747467,0.8375606387853622,0.9245941340923309,1.3089771568775177,0.13200360536575317,1.7260177731513977,0.4571110010147095,1.3289896845817566,0.9035564810037613,0.8584309965372086,1.371557503938675,0.4195135831832886,1.7565138339996338,0.11033743619918823,1.9723859429359436,0.9699795562773943,0.7928949594497681,1.432491958141327,0.36663442850112915,1.7983404994010925,0.08193385601043701,1.9857564568519592,0.0024251341819763184,1.9528515338897705,0.14587873220443726,1.706980049610138,1.8366307616233826,0.05759710073471069,1.9947603344917297,0.009264469146728516,1.93055659532547,0.18236559629440308,1.6583693623542786,0.5382115840911865,1.2390336692333221,0.9972693151794374,0.7662729322910309,1.904139518737793,0.22247439622879028,1.6068422198295593,0.5982365608215332,1.1739130169153214,1.063794657588005,0.7021135091781616,1.5150943398475647,0.2968929409980774,1.851268231868744,0.048819899559020996,1.1080219596624374,1.1300374120473862,0.6392736434936523,1.5709696412086487,0.2511492371559143,1.8842875957489014,0.03039628267288208,1.9999634623527527,0.02635401487350464,1.8921430706977844,0.23992586135864258,1.5849247574806213,0.623377650976181,1.1469732373952866,1.091006189584732,0.6761725544929504,1.5382944345474243,1.6748960614204407,0.1698014736175537,1.9384459853172302,0.0064969658851623535,1.992249071598053,0.06524479389190674,1.8242801427841187,0.33291447162628174,1.4720810055732727,0.7496806979179382,1.014369691722095,1.2223943918943405,0.5534466803073883,1.645401954650879,0.19233030080795288,1.9241593480110168,0.011731624603271484,1.99636310338974,0.05201530456542969,1.845875322818756,0.3041777014732361,1.506330668926239,1.3508817255496979,0.8804142251610756,0.8815118074417114,1.3498463332653046,0.4386245608329773,1.7410862445831299,0.12120711803436279,1.9666901230812073,0.00020378828048706055,1.9762345552444458,0.10265934467315674,1.7675862312316895,0.40567439794540405,1.3873790204524994,0.8415238708257675,0.920590914785862,1.3127934634685516,0.4715510606765747,1.7141523361206055,0.14062190055847168,1.9558950066566467,0.0017674565315246582,1.9839909672737122,1.9388272166252136,0.16918575763702393,1.6757113933563232,0.5176903307437897,1.2615710198879242,0.9739932473748922,0.7889684289693832,1.43610879778862,0.36353230476379395,1.8007521033287048,0.08034950494766235,1.9864237904548645,0.0027126073837280273,1.9516254663467407,0.14797383546829224,1.7041346430778503,0.48366665840148926,1.2992666363716125,0.9347622469067574,0.8275112360715866,1.4004387557506561,0.39430785179138184,0.2667786478996277,1.8731790781021118,0.03635436296463013,1.9994934797286987,0.02130913734436035,1.9024167656898499,0.2250056266784668,1.603645920753479,0.6019167602062225,1.1699575334787369,1.0678012296557426,0.698282927274704,1.5185317993164062,0.2940434217453003,1.8533682823181152,0.0475882887840271,1.9974731802940369,0.01400136947631836,1.9186384677886963,0.2007894515991211,1.6344839930534363,0.5662046372890472,0.72721266746521,1.0376402884721756,1.1996401697397232,0.5743948221206665,1.6274471879005432,0.20627397298812866,1.915017008781433,0.015554428100585938,1.9980765581130981,0.04486274719238281,1.8580615520477295,0.28764843940734863,1.5262660384178162,0.6896478235721588,1.0768477767705917,1.1610122919082642,0.6102536916732788,1.5963898301124573,0.2307695746421814,1.8984715938568115,0.023211896419525146,1.999741017818451,0.03397059440612793,0.09262943267822266,1.7822974920272827,0.38711559772491455,1.4087335169315338,0.818584069609642,0.9438158199191093,1.2905998229980469,0.4914555549621582,1.6976652145385742,0.1527571678161621,1.9487993717193604,0.003421306610107422,1.9878727197647095,0.07682514190673828,1.8061521649360657,0.35656261444091797,1.4442530870437622,0.780111163854599,0.983061458915472,1.2528058588504791,0.5256556868553162,1.6689972877502441,1.7865923643112183,0.08974039554595947,1.982334017753601,0.001269519329071045,1.958519697189331,0.1360192894935608,1.720471978187561,0.463872492313385,1.3213956654071808,0.9115526154637337,0.8504859805107117,1.3790010809898376,0.41299331188201904,1.7617411613464355,0.10669928789138794,1.9742287397384644,6.181001663208008e-5,1.9689719080924988,0.11691492795944214,1.7471455931663513,0.4311414957046509,1.3583289980888367,1.1928497403860092,1.0445595234632492,0.7205568253993988,1.4984882175922394,0.31072068214416504,1.841002643108368,0.05494147539138794,1.9955492615699768,0.010387003421783447,1.9275862574577332,0.18701541423797607,1.6523036360740662,0.5453494191169739,1.231228306889534,1.0052998275496066,0.7584724277257919,1.4640657007694244,0.33969902992248535,1.8191108703613281,0.06850582361221313,1.991081178188324,0.005505621433258057,1.9415404200553894,1.8697828650474548,0.2715051770210266,1.5459162592887878,0.667604386806488,1.100035011768341,1.1379954814910889,0.6317954957485199,1.5775439739227295,0.2458512783050537,1.8880088329315186,0.028462648391723633,1.9999998807907104,0.028216838836669922,1.8884865045547485,0.24516886472702026,1.578392505645752,0.6308289468288422,1.139025256037712,1.0990003794431686,0.6685852408409119,1.5450447797775269,0.27221786975860596,0.1653515100479126,1.9411896467208862,0.005615115165710449,1.991219162940979,0.06812804937362671,1.819706916809082,0.3389185070991516,1.464986503124237,0.7574635595083237,1.0063396040350199,1.2302165627479553,0.5462757647037506,1.6515151858329773,0.18762129545211792,1.927197277545929,0.010537028312683105,1.9956467151641846,0.054602086544036865,1.8415647149085999,0.30996769666671753,1.4993893504142761,0.719558596611023,0.8883909061551094,0.8735417425632477,1.3573580384254456,0.4319969415664673,1.746454119682312,0.11740332841873169,1.9687143564224243,7.390975952148438e-5,1.9744627475738525,0.1062324047088623,1.7624143958091736,0.41215187311172485,1.3799630999565125,0.8494579493999481,0.9125883802771568,1.3204108476638794,0.4647505283355713,1.7197505235671997,0.13654327392578125,1.9582228064537048,0.0013224482536315918,1.9825280904769897,0.08931034803390503,0.1736818552017212,1.669769823551178,0.5247405767440796,1.2538117468357086,0.9820218235254288,0.7811256349086761,1.4433212876319885,0.3573589324951172,1.8055365085601807,0.07722532749176025,1.9877107739448547,0.003335893154144287,1.9491273164749146,0.15220528841018677,1.6984097957611084,0.49056047201156616,1.2915945649147034,0.9427776969969273,0.8196067065000534,1.407784342765808,0.3879375457763672,1.7816493511199951,1.8770649433135986,0.03423982858657837,1.9997168183326721,0.02298969030380249,1.898927628993988,0.23010563850402832,1.5972241163253784,0.6092963218688965,1.162038430571556,1.0758110135793686,0.6906364560127258,1.525381624698639,0.2883785367012024,1.8575271368026733,0.04517120122909546,1.9980115294456482,0.015372276306152344,1.915436029434204,0.20564192533493042,1.6282564997673035,0.5734541416168213,1.200658917427063,1.0296143125742674,1.2075025290250778,0.5671417117118835,1.6336799263954163,0.20141488313674927,1.9182271361351013,0.01417529582977295,1.9975464940071106,0.04727184772491455,1.8539098501205444,0.293307363986969,1.5194206237792969,0.697291761636734,1.0688385888934135,1.168932780623436,0.6028708219528198,1.6028165817260742,0.2256631851196289,1.901968240737915,0.02152317762374878,1.999526023864746,0.03607708215713501,0.09603416919708252,1.7772700786590576,0.3934807777404785,1.401391327381134,0.826487123966217,0.9357998594641685,1.2982743382453918,0.4845573902130127,1.703395962715149,0.1485186219215393,1.9513054490089417,0.0027896761894226074,1.986594021320343,0.07994163036346436,1.8013744950294495,0.3627306818962097,1.4370442628860474,0.7879521697759628,0.9750327039510012,1.260567307472229,0.5186014473438263,1.674944519996643,0.16976487636566162,0.08644485473632812,1.9838051199913025,0.001706242561340332,1.9561998844146729,0.14009064435958862,1.7148797512054443,0.47066861391067505,1.3137809038162231,0.9195544496178627,0.8425506204366684,1.3864202201366425,0.40651094913482666,1.7669193744659424,0.10311871767044067,1.976008653640747,0.00018334388732910156,1.9669557809829712,0.12071144580841064,1.7417839765548706,0.43776434659957886,1.350820243358612,0.8804794028401375,1.052580565214157,0.7128552794456482,1.505433738231659,0.3049248456954956,1.845320224761963,0.052346765995025635,1.996273934841156,0.011573374271392822,1.9245560765266418,0.19171762466430664,1.6461958289146423,0.5525165498256683,1.2234080284833908,1.0133299976587296,0.7506875097751617,1.4711641371250153,0.33368945121765137,1.8236910104751587,0.06561470031738281,1.992119312286377,0.006379187107086182,1.9388046264648438,1.8657922744750977,0.27702993154525757,1.5391704440116882,0.6751889586448669,1.0920416191220284,1.1459446549415588,0.6243411004543304,1.5840811133384705,0.24060195684432983,1.8916728496551514,0.02659165859222412,1.9999718070030212,0.030142366886138916,1.8847726583480835,0.25046050548553467,1.5718229413032532,0.6383040547370911,1.131068304181099,1.1069881916046143,0.6610193252563477,1.5517600178718567,0.2667340040206909,1.8732110261917114,1.9438726305961609,0.00479733943939209,1.9901253581047058,0.07107144594192505,1.8150807619094849,0.3449651598930359,1.4578620195388794,0.7652620524168015,0.9983091067988425,1.238023892045021,0.5391341149806976,1.6575863361358643,0.18296468257904053,1.9301753640174866,0.009406208992004395,1.9948660731315613,0.05724984407424927,1.837199866771698,0.3158022165298462,1.4924158453941345,0.7272758483886719,1.03757468983531,0.8655798435211182,1.3648467063903809,0.42540597915649414,1.7517737746238708,0.11365640163421631,1.9706761240959167,8.52346420288086e-6,1.9726280570030212,0.10986310243606567,1.757193386554718,0.418667197227478,1.3725226521492004,0.8574017435312271,0.9045914858579636,1.3280076086521149,0.4579845070838928,1.7253023386001587,0.1325203776359558,1.9604887962341309,0.0009417533874511719,1.9810017943382263,0.09265702962875366,0.17823129892349243,1.6637850403785706,0.5318214595317841,1.2460360676050186,0.9900515591725707,0.7732969522476196,1.4505051970481873,0.3512269854545593,1.8102689385414124,0.07416057586669922,1.9889339804649353,0.004023432731628418,1.9465680122375488,0.15649133920669556,1.6926398873329163,0.4974871873855591,1.28390371799469,0.9507968388497829,0.8117138147354126,1.4151036143302917,0.38160669803619385,1.7866328954696655,0.0897132158279419,0.032187581062316895,1.9998756647109985,0.024733245372772217,1.8953804969787598,0.23525524139404297,1.5907638669013977,0.6167010962963104,1.1541088819503784,1.0838159173727036,0.6830098927021027,1.5321975350379944,0.2827596068382263,1.861630618572235,0.0428156852722168,1.998485505580902,0.01680666208267212,1.9121745228767395,0.21054565906524658,1.6219884753227234,0.5807311832904816,1.1927853226661682,1.0446251071989536,1.2153514921665192,0.5599165260791779,1.6398718357086182,0.19660723209381104,1.9213780164718628,0.012859702110290527,1.9969521760940552,0.04974240064620972,1.8497031331062317,0.29901182651519775,1.5125417113304138,0.7049552202224731,1.0608249679207802,1.176842376589775,0.5955135822296143,1.6092044711112976,0.22060668468475342,1.9054067134857178,0.019897639751434326,1.999246597290039,0.03824573755264282,1.869750440120697,1.7721924781799316,0.3998851180076599,1.3940232396125793,0.8344013541936874,0.9277880415320396,1.3059296309947968,0.47769254446029663,1.7090812921524048,0.14433503150939941,1.953750193119049,0.002222418785095215,1.9852516651153564,0.08311748504638672,1.796545147895813,0.3689398169517517,1.4298072457313538,0.7958068400621414,0.9670055583119392,1.2683119475841522,0.5115782618522644,1.6808481812477112,0.1653153896331787,1.9412118196487427,1.985212802886963,0.002207338809967041,1.953818440437317,0.14421749114990234,1.7092414498329163,0.4774988293647766,1.3061459064483643,0.9275614693760872,0.8346253931522369,1.3938144147396088,0.4000668525695801,1.7720481157302856,0.09959596395492554,1.9777256846427917,0.0003693699836730957,1.9648772478103638,0.12456458806991577,1.73637455701828,0.44442349672317505,1.3432888686656952,0.8884561434388161,0.8734766244888306,0.7051722705364227,1.512346625328064,0.29917389154434204,1.8495833277702332,0.04981321096420288,1.996934413909912,0.01282346248626709,1.9214662909507751,0.19647198915481567,1.6400464177131653,0.5597125589847565,1.2155733406543732,1.0213593076914549,0.7429186701774597,1.4782321751117706,0.32772284746170044,1.8282180428504944,0.06278389692306519,1.9930935502052307,0.0073168277740478516,1.9360082745552063,0.1737188696861267,0.2826012969017029,1.5323898196220398,0.682794451713562,1.0840422809123993,1.1538844257593155,0.6169109046459198,1.5905805230140686,0.23540163040161133,1.895279347896576,0.024783432483673096,1.999879240989685,0.03213047981262207,1.8810017704963684,0.2558005452156067,1.5652165412902832,0.6458024680614471,1.1231029033660889,1.1149691045284271,0.6534752547740936,1.5584396123886108,0.26129740476608276,1.8770964741706848,1.946494698524475,0.0040438175201416016,1.9889676570892334,0.07407474517822266,1.8104020357131958,0.3510541319847107,1.4507080018520355,0.7730756998062134,0.9902787189930677,1.2458158731460571,0.5320222079753876,1.663615107536316,0.17836076021194458,1.9330934882164001,0.008339345455169678,1.9940213561058044,0.05995839834213257,1.8327810764312744,0.32168084383010864,1.4854105710983276,0.7350106537342072,1.0295486953109503,1.207566738128662,1.3723118305206299,0.4188520908355713,1.7570449709892273,0.10996663570404053,1.9725752472877502,7.62939453125e-6,1.970730721950531,0.11355125904083252,1.7519235610961914,0.4252200722694397,1.3650582134723663,0.8653547316789627,0.8966007381677628,1.335583209991455,0.4512534737586975,1.730807363986969,0.12855345010757446,1.9626928567886353,0.0006255507469177246,1.9794122576713562,0.09606224298477173,1.7772287726402283,1.6577574610710144,0.5389325320720673,1.2382445186376572,0.9980819369666278,0.7654828876256943,1.457660049200058,0.3451368808746338,1.814949095249176,0.0711556077003479,1.990093469619751,0.0047751665115356445,1.9439476132392883,0.16083180904388428,1.6868253350257874,0.504446268081665,1.276194542646408,0.9588191509246826,0.8038330674171448,1.4223961234092712,0.37531578540802,1.791565716266632,0.08641815185546875,0.030197739601135254,1.9999700784683228,0.026539623737335205,1.891775667667389,0.24045419692993164,1.5842654705047607,0.6241305768489838,1.1461693942546844,1.0918154120445251,0.6754038035869598,1.5389791131019592,0.27718693017959595,1.865678608417511,0.04052191972732544,1.9988951086997986,0.01830446720123291,1.9088541865348816,0.21550029516220093,1.6156803965568542,0.5880352258682251,1.1848993003368378,1.0526461191475391,0.7127923965454102,0.5527197122573853,1.6460224390029907,0.19185137748718262,1.9244694709777832,0.011607825756072998,1.996293544769287,0.05227428674697876,1.8454415798187256,0.30476152896881104,1.5056297183036804,0.7126376926898956,1.0528074204921722,1.1847405582666397,0.5881824195384979,1.615553081035614,0.21560043096542358,1.9087868332862854,0.01833522319793701,1.998902678489685,0.04047638177871704,1.8657594323158264,0.27707529067993164,0.40632814168930054,1.386629730463028,0.842326283454895,0.9197808802127838,1.313565194606781,0.47086137533187866,1.714720904827118,0.14020663499832153,1.9561333656311035,0.0017195343971252441,1.983845829963684,0.08635246753692627,1.7916644215583801,0.3751896619796753,1.422542542219162,0.8036746829748154,0.9589805416762829,1.2760393023490906,0.5045865774154663,1.6867079138755798,0.1609196662902832,1.9438942670822144,1.9865569472312927,0.0027727484703063965,1.951375424861908,0.14839953184127808,1.7035573720932007,0.48436278104782104,1.2984911501407623,0.935573160648346,0.8267108500003815,1.4011832475662231,0.3936614394187927,1.7771270871162415,0.0961313247680664,1.979379653930664,0.0006198287010192871,1.9627365469932556,0.12847423553466797,1.7309175729751587,0.4511184096336365,1.3357353508472443,0.8964400812983513,0.8655147850513458,1.364907830953598,1.5192264914512634,0.2934681177139282,1.8537916541099548,0.04734086990356445,1.9975305795669556,0.014137208461761475,1.9183170795440674,0.20127815008163452,1.6338557004928589,0.5669369399547577,1.2077247500419617,1.029387241229415,0.7351664304733276,1.4852693676948547,0.3217995762825012,1.8326916098594666,0.06001347303390503,1.994003713130951,0.008318543434143066,1.9331515431404114,0.17826873064041138,1.6637359261512756,1.5255748629570007,0.6904204189777374,1.0760375261306763,1.161814272403717,0.6095054447650909,1.5970419049263,0.23025059700012207,1.8988280892372131,0.023038148880004883,1.999722182750702,0.03418093919754028,1.8771740198135376,0.2611885070800781,1.558573603630066,0.6533237397670746,1.1151295602321625,1.122942604124546,0.6459535360336304,1.5650832653045654,0.25590842962265015,1.8809252977371216,0.03217107057571411,0.0033544301986694336,1.987746238708496,0.0771377682685852,1.8056710958480835,0.35718488693237305,1.4435248970985413,0.7809039801359177,0.9822489582002163,1.2535919845104218,0.5249404609203339,1.6696010828018188,0.17380982637405396,1.9359514117240906,0.00733637809753418,1.9931124448776245,0.06272757053375244,1.8283085227012634,0.327603280544281,1.4783740043640137,0.7427625954151154,1.021520795300603,1.215415596961975,0.559857577085495,0.4123356342315674,1.7622674107551575,0.10633432865142822,1.9744117259979248,7.11679458618164e-5,1.9687707424163818,0.11729651689529419,1.7466052174568176,0.4318099617958069,1.3575702011585236,0.8733164072036743,0.8886166587471962,1.3431371450424194,0.444557785987854,1.736265242099762,0.12464267015457153,1.9648348093032837,0.0003737807273864746,1.977759599685669,0.09952574968338013,1.7721507549285889,0.39993762969970703,0.5460733473300934,1.230437621474266,1.006112438160926,0.7576839476823807,1.4647853672504425,0.33908897638320923,1.8195767402648926,0.06821048259735107,1.9911891222000122,0.005591094493865967,1.9412663578987122,0.16522645950317383,1.6809664368629456,0.511437326669693,1.2684675455093384,0.9668441228568554,0.7959649562835693,1.4296613931655884,0.3690651059150696,1.7964474558830261,0.08318197727203369,1.9852240681648254,1.9999999403953552,0.028408825397491455,1.8881133198738098,0.24570214748382568,1.5777294039726257,0.6315842866897583,1.1382204741239548,1.0998089835047722,0.6678186655044556,1.54572594165802,0.27166080474853516,1.8696707487106323,0.03828996419906616,1.9992403388023376,0.019865572452545166,1.9054753184318542,0.2205054759979248,1.60933256149292,0.5953658521175385,1.177001342177391,1.060663741081953,0.7051095366477966,0.5455517470836639,1.65213143825531,0.18714767694473267,1.9275013208389282,0.010419666767120361,1.9955706000328064,0.0548672080039978,1.84112548828125,0.3105561137199402,1.4986851513385773,0.7203387022018433,1.0447864681482315,1.1926268339157104,0.580877810716629,1.62186199426651,0.21064478158950806,1.912108302116394,0.016836166381835938,1.9984943866729736,0.04276895523071289,1.861712634563446,0.2826470732688904,1.5323342680931091,1.3792113065719604,0.8502613753080368,0.9117788970470428,1.321180522441864,0.4640643000602722,1.7203144431114197,0.13613367080688477,1.9584549069404602,0.00128096342086792,1.982376515865326,0.0896463394165039,1.7867326140403748,0.38147979974746704,1.4152505695819855,0.8115551769733429,0.9509581662714481,1.283748835325241,0.4976268410682678,1.6925233602523804,0.15657812356948853,1.9465159177780151,0.004037916660308838,0.003402531147003174,1.94887113571167,0.15263652801513672,1.697827935218811,0.49125993251800537,1.2908171713352203,0.9435890093445778,0.8188074827194214,1.4085261821746826,0.387295126914978,1.782155990600586,0.09272497892379761,1.9809704422950745,0.0009347796440124512,1.9605337381362915,0.13244003057479858,1.7254135012626648,0.45784878730773926,1.3281601965427399,0.9044306948781013,0.8575616180896759,1.3723727762699127,1.5260728597640991,0.2878078818321228,1.8579448461532593,0.04493004083633423,1.9980624318122864,0.015514492988586426,1.9151086211204529,0.2061358094215393,1.6276240944862366,0.5741892755031586,1.199862763285637,1.0374132804572582,0.7274312376976013,1.4922752678394318,0.31592005491256714,1.8371115326881409,0.05730372667312622,1.9948497414588928,0.0093841552734375,1.9302346110343933,0.18287158012390137,1.6577080488204956,0.5389907956123352,0.6980663537979126,1.0680278688669205,1.1697336733341217,0.6021251678466797,1.6034647822380066,0.2251492142677307,1.9023188352584839,0.021355807781219482,1.9995006918907166,0.03629368543624878,1.8732897639274597,0.2666241526603699,1.551894724369049,0.6608673632144928,1.107148788869381,1.1309081763029099,0.6384546458721161,1.5716904401779175,0.2505674362182617,1.8846973776817322,0.03018176555633545,1.999970555305481,1.986461102962494,0.08026033639907837,1.800888180732727,0.3633571267127991,1.4363132119178772,0.7887463867664337,0.9742203410714865,1.261351764202118,0.5178893506526947,1.6755439043045044,0.16931217908859253,1.9387489557266235,0.006397426128387451,1.9921395778656006,0.06555718183517456,1.8237825632095337,0.3335689902305603,1.4713065922260284,0.7505310922861099,1.0134915076196194,1.2232505828142166,0.5526610016822815,0.4058571457862854,1.7674406170845032,0.10275959968566895,1.9761852622032166,0.00019925832748413086,1.966748297214508,0.12109875679016113,1.74123877286911,0.4384365677833557,1.350059151649475,0.8812862411141396,0.8806397691369057,1.3506689667701721,0.4378979206085205,1.7416756749153137,0.12078839540481567,1.9669145941734314,0.00018644332885742188,1.9760438203811646,0.10304725170135498,1.7670230269432068,0.40638095140457153,1.3865692019462585,1.2226158678531647,1.014142544940114,0.7499006390571594,1.4718807339668274,0.3330836892127991,1.8241515159606934,0.06532549858093262,1.9922208189964294,0.006471157073974609,1.9385244250297546,0.16967487335205078,1.675063669681549,0.5184598863124847,1.2607232332229614,0.9748712293803692,0.7881100177764893,1.4368989765644073,0.36285513639450073,1.8012778759002686,0.08000493049621582,1.9865676760673523,0.0027776360511779785,0.030340731143951416,1.8843936920166016,0.25099867582321167,1.571156084537506,0.6390617787837982,1.1302626430988312,1.1077961176633835,0.6602549254894257,1.5524375438690186,0.26618170738220215,1.87360680103302,0.03612011671066284,1.9995210766792297,0.021489858627319336,1.9020379781723022,0.2255609631538391,1.6029454469680786,0.6027225852012634,1.169091984629631,1.0686774477362633,0.6974456906318665,1.519282579421997,1.658198356628418,0.18249642848968506,1.9304733872413635,0.009295344352722168,1.9947835206985474,0.057521164417266846,1.8367552161216736,0.316395103931427,1.4917083978652954,0.7280577421188354,1.0367626287043095,1.2005006819963455,0.5736002326011658,1.628130853176117,0.2057400941848755,1.9153710007667542,0.015400469303131104,1.9980217218399048,0.04512321949005127,1.8576101660728455,0.2882651090621948,1.5255190134048462,0.6904828548431396,0.858206108212471,0.9037825986742973,1.32877516746521,0.4573017954826355,1.7258615493774414,0.132116436958313,1.9607146382331848,0.000906825065612793,1.9808438420295715,0.09299898147583008,1.7817500829696655,0.3878098130226135,1.4079318046569824,0.8194478452205658,0.9429389573633671,1.2914400696754456,0.49069952964782715,1.6982941627502441,0.152290940284729,1.9490764737129211,0.0033490657806396484,1.9877359867095947,1.9463056325912476,0.15692812204360962,1.692053496837616,0.49818992614746094,1.283124417066574,0.9516084939241409,0.8109157830476761,1.4158427715301514,0.38096827268600464,1.7871344089508057,0.08937710523605347,1.9824979901313782,0.0013141632080078125,1.9582690000534058,0.13646185398101807,1.7198626399040222,0.4646140933036804,1.3205638527870178,0.9124274775385857,0.8496176451444626,1.379813700914383,0.4122825264930725,0.2821936011314392,1.862042784690857,0.04258078336715698,1.9985299110412598,0.016955316066741943,1.9118412137031555,0.21104472875595093,1.6213520169258118,0.5814690589904785,1.1919878870248795,1.045436903834343,0.7197136282920837,1.4992493987083435,0.31008464097976685,1.8414774537086487,0.054654717445373535,1.9956316351890564,0.010513663291931152,1.927257776260376,0.1875271201133728,1.6516376733779907,0.546131819486618,0.7057317495346069,1.0600138269364834,1.17764213681221,0.5947705209255219,1.6098487377166748,0.22009778022766113,1.9057514071464539,0.019736647605895996,1.9992147088050842,0.03846865892410278,1.8693491220474243,0.2721071243286133,1.5451802015304565,0.6684328615665436,1.099161110818386,1.1388652920722961,0.630979061126709,1.5782607197761536,0.2452748417854309,1.888412356376648,0.028254985809326172,1.9999999403953552,0.028424382209777832,0.08344215154647827,1.7960535883903503,0.36957037448883057,1.4290733635425568,0.796602413058281,0.9661933891475201,1.2690946757793427,0.5108693242073059,1.6814430952072144,0.16486811637878418,1.9414860010147095,0.005522549152374268,1.9911026358604431,0.0684470534324646,1.819203495979309,0.33957773447036743,1.4642087817192078,0.758315697312355,1.0054613491520286,1.2310711592435837,0.5454932749271393,1.6521812081336975,1.7725643515586853,0.09924274682998657,1.9778959155082703,0.0003917813301086426,1.9646634459495544,0.12495768070220947,1.735824465751648,0.4450993537902832,1.3425255119800568,0.8892637342214584,0.8726705759763718,1.358178198337555,0.43127429485321045,1.7470382452011108,0.11699074506759644,1.9689319729804993,6.365776062011719e-5,1.9742651581764221,0.10662668943405151,1.7618457674980164,0.4128625988960266,1.379150539636612,1.2147797495126724,1.02217173948884,0.7421334385871887,1.4789456725120544,0.32712143659591675,1.8286731839179993,0.06250077486038208,1.9931885600090027,0.007415294647216797,1.9357219338417053,0.17417681217193604,1.6691173911094666,0.5255134999752045,1.2529621124267578,0.982899958267808,0.7802687436342239,1.4441083669662476,0.35668623447418213,1.8060566186904907,0.07688724994659424,1.987847626209259,0.0034079551696777344,1.948850393295288,0.15267133712768555,1.6977809071540833,0.49131643772125244,1.2907543778419495,0.9436545521020889,0.8187429159879684,1.4085861146450043,0.38724321126937866,1.7821968793869019,0.0926973819732666,1.9809831976890564,0.003971099853515625,1.9888469576835632,0.0743820071220398,1.8099256753921509,0.35167258977890015,1.4499824345111847,0.773867204785347,0.9894661363214254,1.246603474020958,0.5313042104244232,1.664222776889801,0.17789781093597412,1.93338543176651,0.008234918117523193,1.99393230676651,0.06023585796356201,1.8323309421539307,0.3222782015800476,1.4846999645233154,0.735794335603714,1.0287364162504673,1.2083615958690643,0.5663501620292664,1.6343591213226318,0.2008865475654602,1.9185746312141418,0.014028310775756836,1.9974846243858337,0.04753905534744263,1.8534525036811829,0.2939290404319763,1.5186699032783508,0.6981289386749268,1.0679623782634735,1.1697983592748642,0.6020649373531342,1.6035171151161194,0.22510772943496704,1.9023471474647522,0.021342337131500244,1.9994986057281494,0.03631126880645752,1.8732577562332153,0.26666879653930664,1.6571451425552368,0.5396537780761719,1.2374552190303802,0.9988945600343868,0.7646930068731308,1.4583824276924133,0.34452295303344727,1.8154197931289673,0.07085484266281128,1.9902072548866272,0.004854798316955566,1.9436790347099304,0.16127407550811768,1.686234474182129,0.5051522552967072,1.2754134237766266,0.9596311002969742,0.8030362874269485,1.4231325685977936,0.37468141317367554,1.7920620441436768,0.08608800172805786,1.9839621782302856,0.0017579197883605957,1.955942451953888,0.140539288520813,1.7142653465270996,0.4714139699935913,1.312946856021881,0.9204299002885818,0.8416833579540253,1.3872301280498505,0.4058043360710144,1.7674826979637146,0.1027306318283081,1.9761995077133179,0.00020056962966918945,1.9667314887046814,0.12113004922866821,1.741194725036621,0.4384908676147461,1.349997639656067,0.8813514187932014,0.8805745914578438,1.350730448961258,0.5519930720329285,1.6466425657272339,0.1913730502128601,1.9247789978981018,0.011484682559967041,1.996223270893097,0.052533864974975586,1.845007300376892,0.30534589290618896,1.504928469657898,0.7134161293506622,1.0519959144294262,1.1855391263961792,0.5874420404434204,1.6161932945251465,0.21509665250778198,1.9091256260871887,0.018180668354034424,1.9988642930984497,0.04070556163787842,1.8653524518013,0.2776370048522949,1.5384305715560913,0.6760197281837463,1.091167040169239,1.1468134671449661,0.6235272884368896,1.584793746471405,0.24003082513809204,1.8920700550079346,0.02639085054397583,1.9999648332595825,0.030356764793395996,1.884363055229187,0.2510421872138977,1.5711022019386292,0.6391229927539825,1.1301975548267365,1.1078613847494125,0.6601931750774384,1.5524922609329224,0.26613712310791016,1.8736387491226196,0.03610259294509888,1.999523103237152,0.0028336048126220703,1.9511248469352722,0.14882582426071167,1.7029796838760376,0.4850592017173767,1.2977154850959778,0.9363841190934181,0.8259105831384659,1.4019274711608887,0.39301544427871704,1.7776382565498352,0.0957840085029602,1.9795435070991516,0.000648796558380127,1.9625164866447449,0.12887299060821533,1.7303627729415894,0.4517979025840759,1.3349697887897491,0.8972483724355698,0.8647095859050751,1.365664303302765,0.42468738555908203,1.7523526549339294,0.11325007677078247,1.9708868861198425,5.304813385009766e-6,1.9724236130714417,0.11026370525360107,1.7566194534301758,0.4193820357322693,1.3717074692249298,0.8582710921764374,0.9037172570824623,1.3288371562957764,0.45724666118621826,1.7259066700935364,0.13208383321762085,1.960732877254486,0.0009040236473083496,1.9808310270309448,0.09302663803100586,1.7817091941833496,0.3878617286682129,1.5248833894729614,0.6911932229995728,1.0752272307872772,1.1626161336898804,0.6087574660778046,1.5976936221122742,0.22973215579986572,1.8991839289665222,0.02286505699157715,1.9997026920318604,0.03439188003540039,1.876783549785614,0.2617363929748535,1.5578994154930115,0.6540860831737518,1.1143222972750664,1.1237490251660347,0.6451936662197113,1.5657535195350647,0.255365788936615,1.8813096284866333,0.0319669246673584,1.9998891353607178,0.024927735328674316,1.8949890732765198,0.2358214259147644,1.590054988861084,0.617512434720993,1.15324105322361,1.0846910625696182,0.6821770668029785,1.5329408645629883,0.2821478843688965,1.8620760440826416,0.04256182909011841,1.9985334873199463,0.016967356204986572,1.911814272403717,0.2110850214958191,1.6213005781173706,0.5815286636352539,1.1919234544038773,1.045502483844757,0.7196506261825562,1.4993062913417816,0.4116783142089844,1.7627931237220764,0.10596996545791626,1.9745940566062927,8.124113082885742e-5,1.9685689210891724,0.117678701877594,1.7460643649101257,0.4324789047241211,1.3568111956119537,0.8741225153207779,0.8878091350197792,1.3439003229141235,0.4438822269439697,1.7368149161338806,0.12425005435943604,1.9650481343269348,0.00035190582275390625,1.9775888323783875,0.0998794436454773,1.7716341614723206,0.40058785676956177,1.3932158648967743,0.835267573595047,0.9269120916724205,1.3067656755447388,0.4769437909126282,1.7097002863883972,0.14388084411621094,1.9540138244628906,0.002164304256439209,1.985101044178009,0.08346843719482422,1.7960138320922852,0.3696213364601135,1.4290140867233276,0.79666668176651,0.9661277793347836,1.2691579163074493,0.5108120739459991,1.6814911365509033,0.1648319959640503,1.9415081143379211,0.005515635013580322,1.991093933582306,0.028601467609405518,1.8877394795417786,0.2462359070777893,1.5770659446716309,0.6323398649692535,1.1374156028032303,1.1006175130605698,0.667052298784256,1.5464066863059998,0.27110421657562256,1.8700715899467468,0.03806757926940918,1.9992716312408447,0.0200270414352417,1.9051300883293152,0.22101479768753052,1.6086880564689636,0.5961091220378876,1.176201492547989,1.0614748485386372,0.7043331563472748,1.5131006836891174,0.298547625541687,1.8500462174415588,0.049539804458618164,1.9970027208328247,0.012964010238647461,1.9211247563362122,0.1969950795173645,1.6393713355064392,0.5605012774467468,1.2147156298160553,1.0222373697906733,0.7420700192451477,1.4790033102035522,0.3270729184150696,1.828709900379181,0.062477946281433105,1.993196189403534,0.007423281669616699,1.9356987476348877,0.17421388626098633,1.6690685749053955,0.5255712866783142,1.378459244966507,0.8510648757219315,0.910969465970993,1.321949988603592,0.4633784294128418,1.7208778858184814,0.13572460412979126,1.9586864113807678,0.0012401938438415527,1.9822242856025696,0.08998292684555054,1.786230742931366,0.3821185231208801,1.4145111739635468,0.8123533129692078,0.9501465372741222,1.2845279574394226,0.49692434072494507,1.6931093335151672,0.15614181756973267,1.9467777609825134,0.003965258598327637,1.98883718252182,0.07440686225891113,1.809887170791626,0.3517225980758667,1.449923813343048,0.7739311456680298,0.9894004939123988,1.2466671019792557,0.5312462151050568,1.664271891117096,0.17786043882369995,1.9334089756011963,0.008226513862609863,1.9939250349998474,0.06025826930999756,1.832294523715973,0.3223264813423157,1.4846425354480743,0.7358576357364655,1.028670797124505,1.2084258049726486,0.5662910044193268,1.6344099044799805,0.28723764419555664,1.858362078666687,0.04468947649002075,1.998112678527832,0.015657424926757812,1.9147806763648987,0.20663022994995117,1.6269912123680115,0.5749246776103973,1.1990664601325989,1.0382253229618073,0.7266494631767273,1.492982417345047,0.315327525138855,1.8375558257102966,0.057032883167266846,1.9949317574501038,0.009495556354522705,1.9299361109733582,0.18334025144577026,1.6570956707000732,0.5397120416164398,1.2373914569616318,0.9989602060522884,0.7646292001008987,1.458440750837326,0.34447336196899414,1.8154577612876892,0.0708305835723877,1.9902164340019226,0.004861295223236084,1.9436573386192322,0.1613098382949829,1.686186671257019,0.5052093267440796,1.2753503322601318,0.9596966914832592,0.8029719293117523,1.4231920540332794,0.3746302127838135,1.7921020984649658,0.08606135845184326,1.9839738607406616,0.001761794090270996,1.9863274693489075,0.08057957887649536,1.8004012703895569,0.36398398876190186,1.4355818629264832,0.7895407378673553,0.9734079968184233,1.262136071920395,0.517177551984787,1.6761428117752075,0.1688600778579712,1.9390286803245544,0.006305992603302002,1.9920375347137451,0.06584686040878296,1.8233216404914856,0.33417510986328125,1.4705897271633148,0.7513181120157242,1.0126789528876543,1.2240426242351532,0.5519343614578247,1.6466926336288452,0.19133442640304565,1.9248039722442627,0.011474788188934326,1.9962176084518433,0.0525549054145813,1.8449721932411194,0.3053930997848511,1.5048717856407166,0.7134790122509003,1.0519303567707539,1.1856036335229874,0.5873822271823883,1.6162450313568115,0.21505600214004517,1.9091529250144958,0.018168210983276367,1.9988611936569214,0.040724098682403564,1.865319550037384,0.27768242359161377,1.5383752584457397,0.6760818362236023,1.2218235582113266,1.0149550829082727,0.749113917350769,1.472597062587738,0.332478404045105,1.824611485004425,0.06503695249557495,1.9923216700553894,0.006563782691955566,1.938243567943573,0.1701279878616333,1.674463927745819,0.5191722512245178,1.2599386274814606,0.9756836052983999,0.7873159199953079,1.4376297891139984,0.36222904920578003,1.8017637729644775,0.07968676090240479,1.9867000579833984,0.0028384923934936523,1.9511045217514038,0.14886027574539185,1.7029330134391785,0.4851154685020447,1.2976528108119965,0.9364496320486069,0.825845941901207,1.4019875824451447,0.3929632306098938,1.7776795625686646,0.095755934715271,1.9795567393302917,0.0006511807441711426,1.962498664855957,0.12890523672103882,1.7303179502487183,0.45185279846191406,1.3349079191684723,0.8973136693239212,0.8646445423364639,1.3657253980636597,0.4246336817741394,1.7523958683013916,0.1820286512374878,1.930770754814148,0.00918513536453247,1.994700312614441,0.05779308080673218,1.8363099694252014,0.31698840856552124,1.4910006523132324,0.7288398444652557,1.0359505414962769,1.2012967318296432,0.5728653371334076,1.62876296043396,0.20524662733078003,1.9156978726387024,0.015258729457855225,1.9979702830314636,0.0453648567199707,1.8571919798851013,0.28883612155914307,1.524827480316162,0.691255658864975,1.0751617699861526,1.1626808941364288,0.6086970567703247,1.5977462530136108,0.22969025373458862,1.899212658405304,0.022851109504699707,1.9997011423110962,0.03440898656845093,1.876751959323883,0.26178067922592163,1.5578449368476868,0.6541476845741272,1.1142570823431015,1.1238141655921936,0.6451322734355927,1.5658076405525208,0.2553219795227051,1.8813406229019165,0.03195047378540039,1.999890148639679,0.02494227886199951,1.9460425972938538,0.15736544132232666,1.6914666891098022,0.49889296293258667,1.2823449671268463,0.9524201825261116,0.8101178854703903,1.4165816605091095,0.38033032417297363,1.787635326385498,0.08904159069061279,1.982649028301239,0.0013561248779296875,1.9580363631248474,0.13687193393707275,1.7192983627319336,0.46530061960220337,1.3197940289974213,0.9132370054721832,0.8488143086433411,1.3805652856826782,0.4116252660751343,1.7628355622291565,0.10594058036804199,1.9746087193489075,8.207559585571289e-5,1.968552589416504,0.11770957708358765,1.7460206747055054,0.4325329065322876,1.3567498624324799,0.8741876482963562,0.8877438977360725,1.3439619541168213,0.44382768869400024,1.7368592619895935,0.1242184042930603,1.9650653004646301,0.0003501772880554199,1.9775750041007996,0.09990805387496948,1.771592378616333,0.40064042806625366,1.3931555151939392,0.8353323191404343,1.0592026486992836,1.1784417629241943,0.5940277576446533,1.6104925274848938,0.21958941221237183,1.9060955047607422,0.019576311111450195,1.9991822242736816,0.0386921763420105,1.8689472675323486,0.27266454696655273,1.5444988012313843,0.6691996157169342,1.098352462053299,1.1396699994802475,0.6302239298820496,1.578923523426056,0.24474197626113892,1.8887851238250732,0.028063476085662842,1.9999992847442627,0.02861708402633667,1.8877092599868774,0.2462790608406067,1.577012300491333,0.6324009299278259,1.1373505890369415,1.1006828248500824,0.6669903695583344,1.5464617013931274,0.2710592746734619,1.8701039552688599,0.03804963827133179,1.9992741346359253,0.020040154457092285,1.9051021933555603,0.22105592489242554,1.60863596200943,0.5961691737174988,1.1761368811130524,1.0615403689444065,0.7042704522609711,1.5131570100784302,0.29850083589553833,1.773080050945282,0.09889012575149536,1.9780654907226562,0.00041484832763671875,1.9644490480422974,0.12535130977630615,1.7352739572525024,0.44577556848526,1.3417619168758392,0.8900713995099068,0.8718646019697189,1.3589367866516113,0.4306061267852783,1.747578203678131,0.11660963296890259,1.9691326022148132,5.4776668548583984e-5,1.9740816354751587,0.10699206590652466,1.7613191604614258,0.41352057456970215,1.3783984780311584,0.851129800081253,0.910904087126255,1.3220121562480927,0.4633229970932007,1.720923364162445,0.1356915831565857,1.9587050676345825,0.0012369155883789062,1.982211947441101,0.09001016616821289,1.786190152168274,0.3821701407432556,1.4144514203071594,0.8124177902936935,0.9500809721648693,1.2845908999443054,0.49686765670776367,1.693156659603119,0.1561065912246704,1.9467989206314087,0.0039594173431396484,1.988827407360077,0.07443171739578247,1.8802316784858704,0.25688713788986206,1.5638750195503235,0.6473228335380554,1.1214898526668549,1.1165834218263626,0.6519511640071869,1.559787094593048,0.26020288467407227,1.8778759241104126,0.033802568912506104,1.999755620956421,0.023351550102233887,1.8981855511665344,0.23118579387664795,1.5958670377731323,0.610853374004364,1.1603696644306183,1.0774969309568405,0.6890289485454559,1.5268195867538452,0.28719162940979004,1.858395755290985,0.04467010498046875,1.998116672039032,0.01566898822784424,1.9147541522979736,0.20667022466659546,1.6269400715827942,0.5749841034412384,1.199002131819725,1.0382909215986729,0.7265863418579102,1.4930395483970642,0.31527966260910034,1.8375916481018066,0.05701100826263428,1.9949383735656738,0.009504556655883789,1.9299119710922241,0.1833781599998474,1.6570461988449097,0.5397703349590302,1.237327679991722,0.9990258521866053,0.8949843421578407,1.33711376786232,0.4498955011367798,1.7319157719612122,0.12775743007659912,1.9631313681602478,0.0005694031715393066,1.9790828824043274,0.09675848484039307,1.776205062866211,0.3948260545730591,1.3998420536518097,0.8281526118516922,0.934112548828125,1.2998878359794617,0.48310917615890503,1.7045968174934387,0.14763319492340088,1.9518253207206726,0.002664923667907715,1.9863166809082031,0.0806053876876831,1.8003619313240051,0.36403465270996094,1.4355227649211884,0.7896049171686172,0.9733423739671707,1.2621994018554688,0.5171200633049011,1.6761912107467651,0.16882354021072388,1.9390512704849243,0.0062986016273498535,1.9920292496681213,0.06587028503417969,1.823284387588501,0.3342241048812866,1.4705317914485931,0.7513816952705383,1.0126133123412728,1.2241065949201584,0.5518756806850433,1.6467427015304565,0.1912958025932312,1.8664910793304443,0.04006516933441162,1.9989702105522156,0.018615305423736572,1.9081751108169556,0.2165091633796692,1.6143988966941833,0.5895166993141174,1.1833018362522125,1.0542690455913544,0.7112360000610352,1.5068920254707336,0.3037102222442627,1.8462224006652832,0.05180823802947998,1.9964183568954468,0.011831283569335938,1.9239104390144348,0.1927143931388855,1.6449044942855835,0.5540293455123901,1.2217595428228378,1.015020721592009,0.7490503787994385,1.4726549088954926,0.33242952823638916,1.8246486186981201,0.06501364707946777,1.9923297762870789,0.006571292877197266,1.9382208585739136,0.17016464471817017,1.6744154691696167,0.5192297995090485,1.259875237941742,0.9757492318749428,0.7872517704963684,1.4376888275146484,0.3621784448623657,1.8018030524253845,0.07966107130050659,1.9867107272148132,0.0028434395790100098,1.9510842561721802,0.14889472723007202,1.790670394897461,0.37645941972732544,1.42106893658638,0.8052685558795929,0.9573567137122154,1.277601033449173,0.5031754374504089,1.6878884434700012,0.16003668308258057,1.9444297552108765,0.00463336706161499,1.9898868799209595,0.07169884443283081,1.8140999674797058,0.3462437391281128,1.4563581049442291,0.7669060379266739,0.996618218254298,1.2396658509969711,0.5376341640949249,1.6588593125343323,0.18199092149734497,1.9307947754859924,0.009176254272460938,1.9946935772895813,0.0578150749206543,1.836273968219757,0.31703639030456543,1.4909434616565704,0.7289030253887177,1.035884939134121,1.2013610303401947,0.5728059709072113,1.6288139820098877,0.2052067518234253,1.9157242178916931,0.015247344970703125,1.9979661107063293,0.04538440704345703,1.8571581840515137,0.288882315158844,1.5247716307640076,0.6913180947303772,1.075096309185028,1.1627456694841385,0.7335995435714722,1.4866897761821747,0.3206061124801636,1.8335905075073242,0.05946016311645508,1.9941800832748413,0.00852900743484497,1.9325660467147827,0.17919600009918213,1.6625194549560547,0.5333162546157837,1.2443967908620834,0.9917423836886883,0.7716504037380219,1.4520141184329987,0.3499411344528198,1.8112587332725525,0.07352292537689209,1.9891834259033203,0.00417637825012207,1.946021318435669,0.15740078687667847,1.6914193034172058,0.4989498257637024,1.2822819948196411,0.9524857550859451,0.8100534379482269,1.416641354560852,0.3802787661552429,1.7876757979393005,0.08901453018188477,1.9826611876487732,0.0013595223426818848,1.9580175280570984,0.13690507411956787,1.7192527651786804,0.46535611152648926,1.3197318315505981,0.913302406668663,0.8487494140863419,1.380625993013382,0.4115721583366394,1.7628780007362366,0.10591113567352295,1.9365224838256836,0.007141172885894775,1.9929207563400269,0.06329536437988281,1.8273968696594238,0.32880711555480957,1.4769461452960968,0.7443334758281708,1.0198958963155746,1.2170024067163467,0.5583988130092621,1.64117032289505,0.19560152292251587,1.9220339059829712,0.01259082555770874,1.9968188405036926,0.0502704381942749,1.8488103747367859,0.30021876096725464,1.5110890865325928,0.7065712511539459,1.0591371171176434,1.1785063594579697,0.5939677655696869,1.610544502735138,0.21954840421676636,1.9061232805252075,0.019563376903533936,1.9991795420646667,0.03871023654937744,1.868914783000946,0.27270960807800293,1.5444437265396118,0.6692615747451782,1.0982871353626251,1.1397350132465363,0.630162924528122,1.5789770483970642,0.24469894170761108,1.8888152241706848,0.028048038482666016,1.999999225139618,0.028632700443267822,1.8876790404319763,0.2463221549987793,1.679775357246399,0.5128560364246368,1.2669016122817993,0.9684685207903385,0.7943741679191589,1.4311284124851227,0.36780500411987305,1.7974292039871216,0.08253419399261475,1.9855011105537415,0.0023210644721984863,1.9533091187477112,0.14509350061416626,1.708048403263092,0.47894132137298584,1.3045357763767242,0.9292480200529099,0.8329580277204514,1.3953681290149689,0.39871490001678467,1.77312171459198,0.09886163473129272,1.9780791997909546,0.00041675567626953125,1.9644317030906677,0.1253831386566162,1.7352294921875,0.44583016633987427,1.3417002260684967,0.890136644244194,0.871799498796463,1.3589980602264404,0.4305521249771118,1.7476218342781067,0.11657887697219849,1.9691488146781921,5.412101745605469e-5,1.9740667939186096,0.10702162981033325,1.7612766027450562,0.4135737419128418,1.37833771109581,0.8511947095394135,0.9108387008309364,1.1942213773727417,0.57940274477005,1.6231339573860168,0.20964807271957397,1.9127733707427979,0.016540467739105225,1.9984039068222046,0.04324042797088623,1.860886812210083,0.2837803363800049,1.5309576988220215,0.6843984723091125,1.0823572501540184,1.1555549651384354,0.6153495609760284,1.5919442176818848,0.23431295156478882,1.8960313200950623,0.024410724639892578,1.9998515248298645,0.032557010650634766,1.8802005052566528,0.2569310665130615,1.5638208389282227,0.6473842561244965,1.1214246898889542,1.1166486218571663,0.6518896222114563,1.559841513633728,0.2601587176322937,1.877907395362854,0.03378564119338989,1.9997570514678955,0.023365676403045654,1.8981567025184631,0.23122775554656982,1.5958143472671509,0.6109138429164886,1.1603048592805862,1.0775623843073845,0.6889665424823761,1.526875376701355,0.28714555501937866,1.8584294319152832,0.04465067386627197,1.981284737586975,0.0010063648223876953,1.9600803852081299,0.1332494616508484,1.7242938876152039,0.4592151641845703,1.3266245126724243,0.9060486331582069,0.8559531271457672,1.3738806247711182,0.4174768328666687,1.7581486701965332,0.10919708013534546,1.9729671478271484,1.5616416931152344e-5,1.9703232049942017,0.11433511972427368,1.750807762145996,0.42660456895828247,1.363483488559723,0.8670304268598557,0.8949190527200699,1.3371755480766296,0.4498406648635864,1.7319604754447937,0.12772530317306519,1.9631490111351013,0.0005671977996826172,1.9790695309638977,0.09678667783737183,1.7761636972427368,0.3948782682418823,1.399781882762909,0.8282172828912735,0.9340470433235168,1.2999504506587982,0.48305296897888184,1.7046433687210083,0.14759886264801025,1.9518454670906067,0.0026601552963256836,1.986305832862854,0.08063125610351562,1.8003225922584534,0.36408531665802,1.5505386590957642,0.6623967289924622,1.1055327579379082,1.1325192600488663,0.6369398236274719,1.5730231404304504,0.24949240684509277,1.8854538202285767,0.029786765575408936,1.999981701374054,0.02692800760269165,1.891009271144867,0.24155515432357788,1.58289235830307,0.6256980001926422,1.1444964557886124,1.0934990271925926,0.6738049387931824,1.540402591228485,0.27601945400238037,1.866523802280426,0.0400468111038208,1.9989731907844543,0.01862788200378418,1.9081476330757141,0.21654999256134033,1.6143471002578735,0.5895765721797943,1.183237299323082,1.054334595799446,0.7111731469631195,1.5069485902786255,0.30366307497024536,1.8462573885917664,0.051787376403808594,1.9964239001274109,0.011841356754302979,1.9238853454589844,0.1927531361579895,1.6448543071746826,0.5540881156921387,1.221695527434349,1.0150863602757454,0.7489868402481079,1.3521905541419983,0.436554491519928,1.7427648305892944,0.1200152039527893,1.967327892780304,0.000156402587890625,1.9756889343261719,0.1037670373916626,1.7659792304039001,0.40768963098526,1.3850697875022888,0.8439962416887283,0.918095551431179,1.3151703774929047,0.46942734718322754,1.7159025073051453,0.1393444538116455,1.9566273093223572,0.001621842384338379,1.98354172706604,0.08704113960266113,1.7906302213668823,0.37651073932647705,1.4210093915462494,0.8053329437971115,0.957291129976511,1.2776640951633453,0.503118485212326,1.6879360675811768,0.16000103950500488,1.9444513320922852,0.004627048969268799,1.9898775815963745,0.07172328233718872,1.8140618205070496,0.34629344940185547,1.4562996923923492,0.7669698745012283,0.9965525725856423,1.2397295832633972,0.5375759601593018,1.6589086651802063,0.18195313215255737,1.930818796157837,0.009167373180389404,1.9995700120925903,0.021826326847076416,1.9013352394104004,0.22659021615982056,1.6016480922698975,0.604214608669281,1.167489916086197,1.0702987685799599,0.6958970427513123,1.5206708312034607,0.29227250814437866,1.8546707034111023,0.04682815074920654,1.9976479411125183,0.014421939849853516,1.9176464080810547,0.20229673385620117,1.6325469613075256,0.568461686372757,1.206070438027382,1.0310773625969887,0.7335362732410431,1.4867471158504486,0.32055795192718506,1.8336267471313477,0.05943787097930908,1.9941871762275696,0.008537590503692627,1.9325423836708069,0.17923349142074585,1.662470281124115,0.5333743095397949,1.2443331331014633,0.9918080270290375,0.7715864926576614,1.4520726799964905,0.3498912453651428,1.8112971186637878,0.0734981894493103,1.989193081855774,0.004182338714599609,1.9460000395774841,0.15743613243103027,1.6913718581199646,0.3890957236289978,1.406447410583496,0.8210466206073761,0.9413164332509041,1.2929943799972534,0.48930150270462036,1.6994566321372986,0.1514299511909485,1.9495872259140015,0.0032175183296203613,1.9874809384346008,0.07779031991958618,1.8046683073043823,0.3584810495376587,1.4420087933540344,0.782554104924202,0.980558356270194,1.2552272379398346,0.5234532356262207,1.67085599899292,0.17285841703414917,1.936545491218567,0.007133305072784424,1.9929129481315613,0.06331831216812134,1.8273599743843079,0.32885581254959106,1.4768884479999542,0.7443969547748566,1.0198302622884512,1.2170664966106415,0.558339923620224,1.64122074842453,0.19556254148483276,1.9220592975616455,0.012580454349517822,1.9968135952949524,0.05029100179672241,1.8487756848335266,0.30026566982269287,1.5110326409339905,0.7066340148448944,1.0590715855360031,1.178570955991745,0.5939077734947205,1.5006569623947144,0.3089090585708618,1.8423544764518738,0.05412602424621582,1.9957820773124695,0.010749995708465576,1.9266480207443237,0.18847572803497314,1.6504040360450745,0.5475806295871735,1.2287919074296951,1.0078032910823822,0.7560437917709351,1.4662818610668182,0.33782094717025757,1.820544421672821,0.06759804487228394,1.9914116859436035,0.005771040916442871,1.9406940340995789,0.16615861654281616,1.6797271966934204,0.5129133760929108,1.2668383419513702,0.9685341343283653,0.7943099290132523,1.4311876595020294,0.36775416135787964,1.7974688410758972,0.08250808715820312,1.9855122566223145,0.0023255348205566406,1.9532893300056458,0.145127534866333,1.7080020904541016,0.4789973497390747,1.3044732213020325,0.9293135032057762,0.8328932970762253,1.3954284191131592,0.3986624479293823,1.7731633186340332,0.09883320331573486,1.9780928492546082,0.00041866302490234375,1.9908850193023682,0.0690392255783081,1.8182703256607056,0.3407989740371704,1.4627686440944672,0.759893074631691,1.0038361188489944,1.2326521128416061,0.5440461933612823,1.653412401676178,0.18616396188735962,1.9281321167945862,0.010177671909332275,1.9954102039337158,0.05542099475860596,1.8402097821235657,0.3117818832397461,1.4972187876701355,0.7219625115394592,1.0430972091853619,1.1942857801914215,0.5793431997299194,1.6231853365898132,0.20960783958435059,1.9128001928329468,0.016528606414794922,1.9984002113342285,0.043259501457214355,1.8608534336090088,0.28382617235183716,1.530902087688446,0.6844607889652252,1.0822918266057968,1.1556198000907898,0.6152889728546143,1.5919971466064453,0.23427069187164307,1.8960604667663574,0.024396300315856934,1.9998503923416138,0.0325736403465271,1.8801693320274353,0.256974995136261,1.563766598701477,0.5269447565078735,1.2513894140720367,0.9845249904319644,0.7786834985017776,1.445563942193985,0.3554428219795227,1.8070173859596252,0.07626348733901978,1.988098919391632,0.0035433173179626465,1.9483360052108765,0.1535356044769287,1.6966158151626587,0.49271637201309204,1.2891989350318909,0.9452772885560989,0.8171448260545731,1.4100689589977264,0.3859596252441406,1.783208429813385,0.09201520681381226,1.9812973737716675,0.0010092854499816895,1.960062026977539,0.13328224420547485,1.7242485880851746,0.4592704176902771,1.3265624642372131,0.9061139896512032,0.8558881729841232,1.3739415109157562,0.4174234867095947,1.758191466331482,0.10916721820831299,1.9729823470115662,1.6033649444580078e-5,1.9703073501586914,0.1143655776977539,1.7507644295692444,0.4266583323478699,1.3634223341941833,0.867095485329628,0.8948537707328796,1.3372373580932617,0.44978582859039307,1.6356146931648254,0.19991052150726318,1.9192157983779907,0.013758361339569092,1.9973681569099426,0.04803544282913208,1.852604329586029,0.29508084058761597,1.5172796845436096,0.6996787488460541,1.066340796649456,1.171399787068367,0.6005744338035583,1.604812204837799,0.22408145666122437,1.903046429157257,0.021009624004364014,1.9994458556175232,0.03674650192260742,1.8724647164344788,0.267774760723114,1.5504838824272156,0.6624585390090942,1.105467475950718,1.1325843334197998,0.63687863945961,1.5730769634246826,0.2494490146636963,1.8854843378067017,0.029770851135253906,1.9999821186065674,0.0269431471824646,1.8909794688224792,0.24159789085388184,1.582839012145996,0.6257588863372803,1.1444315016269684,1.0935643836855888,0.6737428903579712,1.540457844734192,0.2759741544723511,1.8665565848350525,0.040028393268585205,1.9989761114120483,0.018640518188476562,1.9554640650749207,0.1413712501525879,1.7131269574165344,0.4727942943572998,1.311402827501297,0.9220501035451889],"x":[1.8110049e18,5.2211715e32,1.0442343e33,1.5663515e33,2.0884686e33,2.6105856e33,3.132703e33,3.65482e33,4.1769372e33,4.6990542e33,5.221171e33,5.7432885e33,6.265406e33,6.787523e33,7.30964e33,7.831757e33,8.3538744e33,8.875992e33,9.3981084e33,9.920226e33,1.0442342e34,1.096446e34,1.1486577e34,1.2008694e34,1.2530812e34,1.3052929e34,1.3575046e34,1.4097162e34,1.461928e34,1.5141397e34,1.5663514e34,1.6185631e34,1.6707749e34,1.7229866e34,1.7751983e34,1.82741e34,1.8796217e34,1.9318334e34,1.9840451e34,2.0362569e34,2.0884685e34,2.1406803e34,2.192892e34,2.2451038e34,2.2973154e34,2.3495273e34,2.4017389e34,2.4539505e34,2.5061623e34,2.558374e34,2.6105858e34,2.6627974e34,2.7150092e34,2.7672208e34,2.8194325e34,2.8716443e34,2.923856e34,2.9760678e34,3.0282794e34,3.0804912e34,3.1327028e34,3.1849147e34,3.2371263e34,3.289338e34,3.3415498e34,3.3937614e34,3.4459732e34,3.4981848e34,3.5503967e34,3.6026083e34,3.65482e34,3.7070317e34,3.7592434e34,3.8114552e34,3.8636668e34,3.9158787e34,3.9680903e34,4.020302e34,4.0725137e34,4.1247253e34,4.176937e34,4.229149e34,4.2813607e34,4.3335725e34,4.385784e34,4.4379957e34,4.4902076e34,4.542419e34,4.594631e34,4.6468427e34,4.6990545e34,4.751266e34,4.8034777e34,4.8556896e34,4.907901e34,4.960113e34,5.0123246e34,5.0645365e34,5.116748e34,5.1689597e34,5.2211716e34,5.273383e34,5.325595e34,5.3778066e34,5.4300185e34,5.48223e34,5.5344417e34,5.5866536e34,5.638865e34,5.691077e34,5.7432886e34,5.7955005e34,5.847712e34,5.8999237e34,5.9521355e34,6.004347e34,6.056559e34,6.1087706e34,6.1609825e34,6.213194e34,6.2654057e34,6.3176175e34,6.3698294e34,6.4220407e34,6.4742526e34,6.5264645e34,6.578676e34,6.6308877e34,6.6830995e34,6.7353114e34,6.7875227e34,6.8397346e34,6.8919464e34,6.944158e34,6.9963697e34,7.0485815e34,7.1007934e34,7.1530047e34,7.2052166e34,7.2574284e34,7.30964e34,7.3618516e34,7.4140635e34,7.4662754e34,7.5184867e34,7.5706986e34,7.6229104e34,7.675122e34,7.7273336e34,7.7795455e34,7.8317573e34,7.8839687e34,7.9361806e34,7.9883924e34,8.040604e34,8.0928156e34,8.1450275e34,8.1972393e34,8.2494507e34,8.3016625e34,8.353874e34,8.406086e34,8.458298e34,8.510509e34,8.562721e34,8.614933e34,8.667145e34,8.719356e34,8.771568e34,8.82378e34,8.875991e34,8.928203e34,8.980415e34,9.032627e34,9.084838e34,9.13705e34,9.189262e34,9.241473e34,9.293685e34,9.345897e34,9.398109e34,9.45032e34,9.502532e34,9.554744e34,9.606955e34,9.659167e34,9.711379e34,9.7635905e34,9.815802e34,9.868014e34,9.920226e34,9.972437e34,1.0024649e35,1.0076861e35,1.0129073e35,1.0181284e35,1.0233496e35,1.0285708e35,1.0337919e35,1.0390131e35,1.0442343e35,1.0494554e35,1.0546766e35,1.0598978e35,1.065119e35,1.0703402e35,1.0755613e35,1.0807825e35,1.0860037e35,1.0912248e35,1.096446e35,1.1016672e35,1.1068883e35,1.1121095e35,1.1173307e35,1.1225518e35,1.127773e35,1.1329942e35,1.1382154e35,1.1434366e35,1.1486577e35,1.1538789e35,1.1591001e35,1.1643212e35,1.1695424e35,1.1747636e35,1.1799847e35,1.1852059e35,1.1904271e35,1.1956482e35,1.2008694e35,1.2060906e35,1.2113118e35,1.216533e35,1.2217541e35,1.2269753e35,1.2321965e35,1.2374176e35,1.2426388e35,1.24786e35,1.2530811e35,1.2583023e35,1.2635235e35,1.2687446e35,1.2739659e35,1.279187e35,1.2844081e35,1.2896294e35,1.2948505e35,1.3000717e35,1.3052929e35,1.310514e35,1.3157352e35,1.3209564e35,1.3261775e35,1.3313987e35,1.3366199e35,1.341841e35,1.3470623e35,1.3522834e35,1.3575045e35,1.3627258e35,1.3679469e35,1.3731681e35,1.3783893e35,1.3836104e35,1.3888316e35,1.3940528e35,1.3992739e35,1.4044951e35,1.4097163e35,1.4149374e35,1.4201587e35,1.4253798e35,1.4306009e35,1.4358222e35,1.4410433e35,1.4462645e35,1.4514857e35,1.4567068e35,1.461928e35,1.4671492e35,1.4723703e35,1.4775915e35,1.4828127e35,1.4880338e35,1.4932551e35,1.4984762e35,1.5036973e35,1.5089186e35,1.5141397e35,1.5193608e35,1.5245821e35,1.5298032e35,1.5350244e35,1.5402456e35,1.5454667e35,1.550688e35,1.5559091e35,1.5611302e35,1.5663515e35,1.5715726e35,1.5767937e35,1.582015e35,1.5872361e35,1.5924572e35,1.5976785e35,1.6028996e35,1.6081208e35,1.613342e35,1.6185631e35,1.6237844e35,1.6290055e35,1.6342266e35,1.6394479e35,1.644669e35,1.6498901e35,1.6551114e35,1.6603325e35,1.6655536e35,1.6707748e35,1.6759961e35,1.6812173e35,1.6864384e35,1.6916595e35,1.6968807e35,1.7021018e35,1.7073231e35,1.7125443e35,1.7177654e35,1.7229865e35,1.7282077e35,1.733429e35,1.7386501e35,1.7438713e35,1.7490924e35,1.7543135e35,1.7595347e35,1.764756e35,1.7699772e35,1.7751983e35,1.7804194e35,1.7856406e35,1.7908619e35,1.796083e35,1.8013042e35,1.8065253e35,1.8117464e35,1.8169676e35,1.822189e35,1.82741e35,1.8326312e35,1.8378523e35,1.8430735e35,1.8482946e35,1.853516e35,1.858737e35,1.8639582e35,1.8691793e35,1.8744005e35,1.8796218e35,1.884843e35,1.890064e35,1.8952852e35,1.9005063e35,1.9057275e35,1.9109488e35,1.91617e35,1.921391e35,1.9266122e35,1.9318334e35,1.9370547e35,1.9422758e35,1.947497e35,1.9527181e35,1.9579392e35,1.9631604e35,1.9683817e35,1.9736028e35,1.978824e35,1.9840451e35,1.9892663e35,1.9944874e35,1.9997087e35,2.0049299e35,2.010151e35,2.0153721e35,2.0205933e35,2.0258146e35,2.0310357e35,2.0362569e35,2.041478e35,2.0466991e35,2.0519203e35,2.0571416e35,2.0623627e35,2.0675839e35,2.072805e35,2.0780262e35,2.0832475e35,2.0884686e35,2.0936898e35,2.0989109e35,2.104132e35,2.1093532e35,2.1145745e35,2.1197956e35,2.1250168e35,2.130238e35,2.135459e35,2.1406804e35,2.1459015e35,2.1511227e35,2.1563438e35,2.161565e35,2.166786e35,2.1720074e35,2.1772285e35,2.1824497e35,2.1876708e35,2.192892e35,2.198113e35,2.2033344e35,2.2085555e35,2.2137767e35,2.2189978e35,2.224219e35,2.2294403e35,2.2346614e35,2.2398826e35,2.2451037e35,2.2503248e35,2.255546e35,2.2607673e35,2.2659884e35,2.2712096e35,2.2764307e35,2.2816518e35,2.2868732e35,2.2920943e35,2.2973154e35,2.3025366e35,2.3077577e35,2.3129789e35,2.3182002e35,2.3234213e35,2.3286425e35,2.3338636e35,2.3390847e35,2.344306e35,2.3495272e35,2.3547483e35,2.3599695e35,2.3651906e35,2.3704117e35,2.375633e35,2.3808542e35,2.3860754e35,2.3912965e35,2.3965176e35,2.4017388e35,2.40696e35,2.4121812e35,2.4174024e35,2.4226235e35,2.4278446e35,2.433066e35,2.4382871e35,2.4435082e35,2.4487294e35,2.4539505e35,2.4591717e35,2.464393e35,2.4696141e35,2.4748353e35,2.4800564e35,2.4852775e35,2.4904989e35,2.49572e35,2.5009411e35,2.5061623e35,2.5113834e35,2.5166045e35,2.5218259e35,2.527047e35,2.5322681e35,2.5374893e35,2.5427104e35,2.5479318e35,2.5531529e35,2.558374e35,2.5635952e35,2.5688163e35,2.5740374e35,2.5792588e35,2.58448e35,2.589701e35,2.5949222e35,2.6001433e35,2.6053644e35,2.6105858e35,2.615807e35,2.621028e35,2.6262492e35,2.6314703e35,2.6366917e35,2.6419128e35,2.647134e35,2.652355e35,2.6575762e35,2.6627973e35,2.6680187e35,2.6732398e35,2.678461e35,2.683682e35,2.6889032e35,2.6941245e35,2.6993457e35,2.7045668e35,2.709788e35,2.715009e35,2.7202302e35,2.7254516e35,2.7306727e35,2.7358938e35,2.741115e35,2.7463361e35,2.7515572e35,2.7567786e35,2.7619997e35,2.7672208e35,2.772442e35,2.7776631e35,2.7828845e35,2.7881056e35,2.7933267e35,2.7985479e35,2.803769e35,2.8089901e35,2.8142115e35,2.8194326e35,2.8246537e35,2.8298749e35,2.835096e35,2.8403173e35,2.8455385e35,2.8507596e35,2.8559808e35,2.8612019e35,2.866423e35,2.8716444e35,2.8768655e35,2.8820866e35,2.8873078e35,2.892529e35,2.8977502e35,2.9029714e35,2.9081925e35,2.9134136e35,2.9186348e35,2.923856e35,2.9290773e35,2.9342984e35,2.9395195e35,2.9447407e35,2.9499618e35,2.955183e35,2.9604043e35,2.9656254e35,2.9708465e35,2.9760677e35,2.9812888e35,2.9865101e35,2.9917313e35,2.9969524e35,3.0021735e35,3.0073947e35,3.0126158e35,3.0178372e35,3.0230583e35,3.0282794e35,3.0335006e35,3.0387217e35,3.043943e35,3.0491642e35,3.0543853e35,3.0596064e35,3.0648276e35,3.0700487e35,3.07527e35,3.0804912e35,3.0857123e35,3.0909335e35,3.0961546e35,3.101376e35,3.106597e35,3.1118182e35,3.1170393e35,3.1222605e35,3.1274816e35,3.132703e35,3.137924e35,3.1431452e35,3.1483663e35,3.1535875e35,3.1588086e35,3.16403e35,3.169251e35,3.1744722e35,3.1796934e35,3.1849145e35,3.1901358e35,3.195357e35,3.2005781e35,3.2057992e35,3.2110204e35,3.2162415e35,3.2214628e35,3.226684e35,3.2319051e35,3.2371262e35,3.2423474e35,3.2475687e35,3.2527899e35,3.258011e35,3.2632321e35,3.2684533e35,3.2736744e35,3.2788957e35,3.2841169e35,3.289338e35,3.2945591e35,3.2997803e35,3.3050016e35,3.3102227e35,3.3154439e35,3.320665e35,3.325886e35,3.3311073e35,3.3363284e35,3.3415496e35,3.3467707e35,3.3519922e35,3.3572134e35,3.3624345e35,3.3676556e35,3.3728768e35,3.378098e35,3.383319e35,3.38854e35,3.3937613e35,3.3989825e35,3.4042036e35,3.409425e35,3.4146463e35,3.4198674e35,3.4250885e35,3.4303097e35,3.4355308e35,3.440752e35,3.445973e35,3.4511942e35,3.4564153e35,3.4616365e35,3.466858e35,3.472079e35,3.4773003e35,3.4825214e35,3.4877426e35,3.4929637e35,3.498185e35,3.503406e35,3.508627e35,3.5138482e35,3.5190694e35,3.524291e35,3.529512e35,3.534733e35,3.5399543e35,3.5451754e35,3.5503966e35,3.5556177e35,3.560839e35,3.56606e35,3.571281e35,3.5765023e35,3.5817238e35,3.586945e35,3.592166e35,3.5973872e35,3.6026083e35,3.6078295e35,3.6130506e35,3.6182717e35,3.623493e35,3.628714e35,3.633935e35,3.6391563e35,3.644378e35,3.649599e35,3.65482e35,3.6600412e35,3.6652624e35,3.6704835e35,3.6757046e35,3.6809258e35,3.686147e35,3.691368e35,3.696589e35,3.7018107e35,3.707032e35,3.712253e35,3.717474e35,3.7226953e35,3.7279164e35,3.7331375e35,3.7383587e35,3.7435798e35,3.748801e35,3.754022e35,3.7592436e35,3.7644647e35,3.769686e35,3.774907e35,3.780128e35,3.7853493e35,3.7905704e35,3.7957916e35,3.8010127e35,3.806234e35,3.811455e35,3.8166765e35,3.8218976e35,3.8271188e35,3.83234e35,3.837561e35,3.842782e35,3.8480033e35,3.8532244e35,3.8584456e35,3.8636667e35,3.868888e35,3.8741094e35,3.8793305e35,3.8845517e35,3.8897728e35,3.894994e35,3.900215e35,3.9054362e35,3.9106573e35,3.9158785e35,3.9210996e35,3.9263207e35,3.9315423e35,3.9367634e35,3.9419845e35,3.9472057e35,3.952427e35,3.957648e35,3.962869e35,3.9680902e35,3.9733114e35,3.9785325e35,3.9837536e35,3.9889748e35,3.9941963e35,3.9994174e35,4.0046386e35,4.0098597e35,4.015081e35,4.020302e35,4.025523e35,4.0307443e35,4.0359654e35,4.0411865e35,4.0464077e35,4.051629e35,4.0568503e35,4.0620715e35,4.0672926e35,4.0725137e35,4.077735e35,4.082956e35,4.088177e35,4.0933983e35,4.0986194e35,4.1038406e35,4.109062e35,4.1142832e35,4.1195044e35,4.1247255e35,4.1299466e35,4.1351678e35,4.140389e35,4.14561e35,4.150831e35,4.1560523e35,4.1612734e35,4.166495e35,4.171716e35,4.1769372e35,4.1821584e35,4.1873795e35,4.1926007e35,4.1978218e35,4.203043e35,4.208264e35,4.2134852e35,4.2187063e35,4.223928e35,4.229149e35,4.23437e35,4.2395913e35,4.2448124e35,4.2500335e35,4.2552547e35,4.260476e35,4.265697e35,4.270918e35,4.2761392e35,4.2813608e35,4.286582e35,4.291803e35,4.297024e35,4.3022453e35,4.3074664e35,4.3126876e35,4.3179087e35,4.32313e35,4.328351e35,4.333572e35,4.3387937e35,4.3440148e35,4.349236e35,4.354457e35,4.359678e35,4.3648993e35,4.3701205e35,4.3753416e35,4.3805627e35,4.385784e35,4.391005e35,4.396226e35,4.4014477e35,4.406669e35,4.41189e35,4.417111e35,4.4223322e35,4.4275534e35,4.4327745e35,4.4379956e35,4.4432168e35,4.448438e35,4.453659e35,4.4588806e35,4.4641017e35,4.469323e35,4.474544e35,4.479765e35,4.4849862e35,4.4902074e35,4.4954285e35,4.5006497e35,4.5058708e35,4.511092e35,4.5163135e35,4.5215346e35,4.5267557e35,4.531977e35,4.537198e35,4.542419e35,4.5476403e35,4.5528614e35,4.5580825e35,4.5633037e35,4.568525e35,4.5737464e35,4.5789675e35,4.5841886e35,4.5894098e35,4.594631e35,4.599852e35,4.605073e35,4.6102943e35,4.6155154e35,4.6207366e35,4.6259577e35,4.6311792e35,4.6364004e35,4.6416215e35,4.6468427e35,4.6520638e35,4.657285e35,4.662506e35,4.667727e35,4.6729483e35,4.6781695e35,4.6833906e35,4.688612e35,4.6938333e35,4.6990544e35,4.7042755e35,4.7094967e35,4.714718e35,4.719939e35,4.72516e35,4.7303812e35,4.7356024e35,4.7408235e35,4.7460446e35,4.751266e35,4.7564873e35,4.7617084e35,4.7669296e35,4.7721507e35,4.777372e35,4.782593e35,4.787814e35,4.7930352e35,4.7982564e35,4.8034775e35,4.808699e35,4.81392e35,4.8191413e35,4.8243625e35,4.8295836e35,4.8348047e35,4.840026e35,4.845247e35,4.850468e35,4.8556893e35,4.8609104e35,4.866132e35,4.871353e35,4.8765742e35,4.8817954e35,4.8870165e35,4.8922376e35,4.8974588e35,4.90268e35,4.907901e35,4.913122e35,4.9183433e35,4.923565e35,4.928786e35,4.934007e35,4.9392282e35,4.9444494e35,4.9496705e35,4.9548917e35,4.9601128e35,4.965334e35,4.970555e35,4.975776e35,4.9809977e35,4.986219e35,4.99144e35,4.996661e35,5.0018823e35,5.0071034e35,5.0123245e35,5.0175457e35,5.022767e35,5.027988e35,5.033209e35,5.0384306e35,5.0436518e35,5.048873e35,5.054094e35,5.059315e35,5.0645363e35,5.0697574e35,5.0749786e35,5.0801997e35,5.085421e35,5.090642e35,5.0958635e35,5.1010846e35,5.1063058e35,5.111527e35,5.116748e35,5.121969e35,5.1271903e35,5.1324115e35,5.1376326e35,5.1428537e35,5.148075e35,5.153296e35,5.1585175e35,5.1637387e35,5.16896e35,5.174181e35,5.179402e35,5.1846232e35,5.1898444e35,5.1950655e35,5.2002866e35,5.2055078e35,5.210729e35,5.2159504e35,5.2211716e35,5.2263927e35,5.231614e35,5.236835e35,5.242056e35,5.2472772e35,5.2524984e35,5.2577195e35,5.2629406e35,5.2681618e35,5.2733833e35,5.2786045e35,5.2838256e35,5.2890467e35,5.294268e35,5.299489e35,5.30471e35,5.3099313e35,5.3151524e35,5.3203735e35,5.3255947e35,5.3308162e35,5.3360373e35,5.3412585e35,5.3464796e35,5.3517008e35,5.356922e35,5.362143e35,5.367364e35,5.3725853e35,5.3778064e35,5.3830276e35,5.388249e35,5.3934702e35,5.3986914e35,5.4039125e35,5.4091336e35,5.4143548e35,5.419576e35,5.424797e35,5.430018e35,5.4352393e35,5.4404605e35,5.445682e35,5.450903e35,5.4561243e35,5.4613454e35,5.4665665e35,5.4717877e35,5.477009e35,5.48223e35,5.487451e35,5.4926722e35,5.4978934e35,5.5031145e35,5.508336e35,5.513557e35,5.5187783e35,5.5239994e35,5.5292206e35,5.5344417e35,5.539663e35,5.544884e35,5.550105e35,5.5553262e35,5.5605474e35,5.565769e35,5.57099e35,5.576211e35,5.5814323e35,5.5866535e35,5.5918746e35,5.5970957e35,5.602317e35,5.607538e35,5.612759e35,5.6179803e35,5.6232018e35,5.628423e35,5.633644e35,5.6388652e35,5.6440863e35,5.6493075e35,5.6545286e35,5.6597498e35,5.664971e35,5.670192e35,5.675413e35,5.6806347e35,5.685856e35,5.691077e35,5.696298e35,5.7015192e35,5.7067404e35,5.7119615e35,5.7171826e35,5.7224038e35,5.727625e35,5.732846e35,5.7380676e35,5.7432887e35,5.74851e35,5.753731e35,5.758952e35,5.7641733e35,5.7693944e35,5.7746155e35,5.7798367e35,5.785058e35,5.790279e35,5.7955005e35,5.8007216e35,5.8059427e35,5.811164e35,5.816385e35,5.821606e35,5.8268273e35,5.8320484e35,5.8372696e35,5.8424907e35,5.847712e35,5.8529334e35,5.8581545e35,5.8633756e35,5.8685968e35,5.873818e35,5.879039e35,5.88426e35,5.8894813e35,5.8947025e35,5.8999236e35,5.9051447e35,5.910366e35,5.9155874e35,5.9208085e35,5.9260297e35,5.9312508e35,5.936472e35,5.941693e35,5.9469142e35,5.9521353e35,5.9573565e35,5.9625776e35,5.9677988e35,5.9730203e35,5.9782414e35,5.9834626e35,5.9886837e35,5.993905e35,5.999126e35,6.004347e35,6.0095682e35,6.0147894e35,6.0200105e35,6.0252316e35,6.030453e35,6.0356743e35,6.0408954e35,6.0461166e35,6.0513377e35,6.056559e35,6.06178e35,6.067001e35,6.0722223e35,6.0774434e35,6.0826645e35,6.087886e35,6.0931072e35,6.0983283e35,6.1035495e35,6.1087706e35,6.1139917e35,6.119213e35,6.124434e35,6.129655e35,6.1348763e35,6.1400974e35,6.145319e35,6.15054e35,6.1557612e35,6.1609824e35,6.1662035e35,6.1714246e35,6.1766458e35,6.181867e35,6.187088e35,6.192309e35,6.1975303e35,6.202752e35,6.207973e35,6.213194e35,6.2184153e35,6.2236364e35,6.2288575e35,6.2340787e35,6.2392998e35,6.244521e35,6.249742e35,6.2549632e35,6.2601843e35,6.265406e35,6.270627e35,6.275848e35,6.2810693e35,6.2862904e35,6.2915116e35,6.2967327e35,6.301954e35,6.307175e35,6.312396e35,6.3176172e35,6.3228388e35,6.32806e35,6.333281e35,6.338502e35,6.3437233e35,6.3489444e35,6.3541656e35,6.3593867e35,6.364608e35,6.369829e35,6.37505e35,6.3802717e35,6.3854928e35,6.390714e35,6.395935e35,6.4011562e35,6.4063773e35,6.4115985e35,6.4168196e35,6.4220407e35,6.427262e35,6.432483e35,6.4377045e35,6.4429257e35,6.448147e35,6.453368e35,6.458589e35,6.4638102e35,6.4690314e35,6.4742525e35,6.4794736e35,6.4846948e35,6.489916e35,6.4951374e35,6.5003586e35,6.5055797e35,6.510801e35,6.516022e35,6.521243e35,6.5264643e35,6.5316854e35,6.5369065e35,6.5421277e35,6.5473488e35,6.5525703e35,6.5577915e35,6.5630126e35,6.5682337e35,6.573455e35,6.578676e35,6.583897e35,6.5891183e35,6.5943394e35,6.5995606e35,6.6047817e35,6.6100032e35,6.6152244e35,6.6204455e35,6.6256666e35,6.6308878e35,6.636109e35,6.64133e35,6.646551e35,6.651772e35,6.6569934e35,6.6622146e35,6.667436e35,6.672657e35,6.677878e35,6.683099e35,6.68832e35,6.6935414e35,6.698763e35,6.7039845e35,6.7092056e35,6.714427e35,6.719648e35,6.724869e35,6.73009e35,6.735311e35,6.7405324e35,6.7457535e35,6.750975e35,6.756196e35,6.761417e35,6.766638e35,6.771859e35,6.77708e35,6.7823015e35,6.787523e35,6.792744e35,6.797965e35,6.803186e35,6.808407e35,6.813629e35,6.81885e35,6.824071e35,6.8292925e35,6.834514e35,6.839735e35,6.844956e35,6.850177e35,6.855398e35,6.860619e35,6.8658405e35,6.8710616e35,6.876283e35,6.881504e35,6.886725e35,6.891946e35,6.897167e35,6.9023884e35,6.9076096e35,6.912831e35,6.918052e35,6.923273e35,6.928494e35,6.933716e35,6.938937e35,6.944158e35,6.9493794e35,6.9546006e35,6.959822e35,6.965043e35,6.970264e35,6.975485e35,6.980706e35,6.985927e35,6.9911485e35,6.99637e35,7.001591e35,7.006812e35,7.012033e35,7.017254e35,7.022475e35,7.0276965e35,7.032918e35,7.038139e35,7.04336e35,7.048582e35,7.053803e35,7.059024e35,7.064245e35,7.069466e35,7.0746875e35,7.079909e35,7.08513e35,7.090351e35,7.095572e35,7.100793e35,7.106014e35,7.1112354e35,7.1164566e35,7.121678e35,7.126899e35,7.13212e35,7.137341e35,7.142562e35,7.147783e35,7.1530045e35,7.158226e35,7.1634476e35,7.168669e35,7.17389e35,7.179111e35,7.184332e35,7.189553e35,7.1947744e35,7.1999955e35,7.205217e35,7.210438e35,7.215659e35,7.22088e35,7.226101e35,7.231322e35,7.2365435e35,7.241765e35,7.246986e35,7.252207e35,7.257428e35,7.262649e35,7.26787e35,7.2730914e35,7.2783126e35,7.2835345e35,7.288756e35,7.293977e35,7.299198e35,7.304419e35,7.30964e35,7.314861e35,7.3200825e35,7.3253036e35,7.330525e35,7.335746e35,7.340967e35,7.346188e35,7.351409e35,7.3566304e35,7.3618515e35,7.367073e35,7.372294e35,7.377515e35,7.382736e35,7.387957e35,7.393178e35,7.3984e35,7.4036214e35,7.4088426e35,7.414064e35,7.419285e35,7.424506e35,7.429727e35,7.434948e35,7.440169e35,7.4453905e35,7.450612e35,7.455833e35,7.461054e35,7.466275e35,7.471496e35,7.476717e35,7.4819385e35,7.4871596e35,7.492381e35,7.497602e35,7.502823e35,7.508044e35,7.513266e35,7.518487e35,7.523708e35,7.5289295e35,7.534151e35,7.539372e35,7.544593e35,7.549814e35,7.555035e35,7.560256e35,7.5654774e35,7.5706986e35,7.57592e35,7.581141e35,7.586362e35,7.591583e35,7.596804e35,7.602025e35,7.6072465e35,7.612468e35,7.617689e35,7.62291e35,7.628131e35,7.633353e35,7.638574e35,7.643795e35,7.6490164e35,7.6542375e35,7.659459e35,7.66468e35,7.669901e35,7.675122e35,7.680343e35,7.685564e35,7.6907855e35,7.696007e35,7.701228e35,7.706449e35,7.71167e35,7.716891e35,7.722112e35,7.7273334e35,7.7325546e35,7.737776e35,7.742997e35,7.748219e35,7.75344e35,7.758661e35,7.763882e35,7.769103e35,7.7743245e35,7.7795456e35,7.784767e35,7.789988e35,7.795209e35,7.80043e35,7.805651e35,7.8108724e35,7.8160935e35,7.821315e35,7.826536e35,7.831757e35,7.836978e35,7.842199e35,7.84742e35,7.8526415e35,7.857863e35,7.8630846e35,7.868306e35,7.873527e35,7.878748e35,7.883969e35,7.88919e35,7.894411e35,7.8996325e35,7.904854e35,7.910075e35,7.915296e35,7.920517e35,7.925738e35,7.930959e35,7.9361805e35,7.9414016e35,7.946623e35,7.951844e35,7.957065e35,7.962286e35,7.967507e35,7.9727284e35,7.9779495e35,7.9831715e35,7.988393e35,7.993614e35,7.998835e35,8.004056e35,8.009277e35,8.014498e35,8.0197194e35,8.0249406e35,8.030162e35,8.035383e35,8.040604e35,8.045825e35,8.051046e35,8.056267e35,8.0614885e35,8.06671e35,8.071931e35,8.077152e35,8.082373e35,8.087594e35,8.092815e35,8.098037e35,8.103258e35,8.1084795e35,8.113701e35,8.118922e35,8.124143e35,8.129364e35,8.134585e35,8.139806e35,8.1450275e35,8.150249e35,8.15547e35,8.160691e35,8.165912e35,8.171133e35,8.176354e35,8.1815754e35,8.1867966e35,8.192018e35,8.197239e35,8.20246e35,8.207681e35,8.212903e35,8.218124e35,8.223345e35,8.2285664e35,8.2337876e35,8.239009e35,8.24423e35,8.249451e35,8.254672e35,8.259893e35,8.2651144e35,8.2703355e35,8.275557e35,8.280778e35,8.285999e35,8.29122e35,8.296441e35,8.301662e35,8.3068835e35,8.312105e35,8.317326e35,8.322547e35,8.327769e35,8.33299e35,8.338211e35,8.343432e35,8.348653e35,8.3538745e35,8.359096e35,8.364317e35,8.369538e35,8.374759e35,8.37998e35,8.385201e35,8.3904225e35,8.3956436e35,8.400865e35,8.406086e35,8.411307e35,8.416528e35,8.421749e35,8.4269704e35,8.4321915e35,8.437413e35,8.442634e35,8.447856e35,8.453077e35,8.458298e35,8.463519e35,8.46874e35,8.4739614e35,8.4791826e35,8.484404e35,8.489625e35,8.494846e35,8.500067e35,8.505288e35,8.510509e35,8.5157305e35,8.520952e35,8.526173e35,8.531394e35,8.536615e35,8.541836e35,8.547057e35,8.5522785e35,8.5574996e35,8.5627215e35,8.567943e35,8.573164e35,8.578385e35,8.583606e35,8.588827e35,8.594048e35,8.5992695e35,8.604491e35,8.609712e35,8.614933e35,8.620154e35,8.625375e35,8.630596e35,8.6358174e35,8.6410386e35,8.64626e35,8.651481e35,8.656702e35,8.661923e35,8.667144e35,8.672365e35,8.677587e35,8.6828084e35,8.6880296e35,8.693251e35,8.698472e35,8.703693e35,8.708914e35,8.714135e35,8.719356e35,8.7245775e35,8.729799e35,8.73502e35,8.740241e35,8.745462e35,8.750683e35,8.755904e35,8.7611255e35,8.766347e35,8.771568e35,8.776789e35,8.78201e35,8.787231e35,8.792452e35,8.797674e35,8.802895e35,8.8081165e35,8.813338e35,8.818559e35,8.82378e35,8.829001e35,8.834222e35,8.839443e35,8.8446644e35,8.8498856e35,8.855107e35,8.860328e35,8.865549e35,8.87077e35,8.875991e35,8.881212e35,8.8864335e35,8.891655e35,8.896876e35,8.902097e35,8.907318e35,8.91254e35,8.917761e35,8.922982e35,8.9282034e35,8.9334245e35,8.938646e35,8.943867e35,8.949088e35,8.954309e35,8.95953e35,8.964751e35,8.9699725e35,8.975194e35,8.980415e35,8.985636e35,8.990857e35,8.996078e35,9.001299e35,9.0065204e35,9.0117416e35,9.016963e35,9.022184e35,9.027406e35,9.032627e35,9.037848e35,9.043069e35,9.04829e35,9.0535115e35,9.0587326e35,9.063954e35,9.069175e35,9.074396e35,9.079617e35,9.084838e35,9.0900594e35,9.0952806e35,9.100502e35,9.105723e35,9.110944e35,9.116165e35,9.121386e35,9.126607e35,9.1318285e35,9.13705e35,9.142271e35,9.147493e35,9.152714e35,9.157935e35,9.163156e35,9.168377e35,9.173598e35,9.1788195e35,9.184041e35,9.189262e35,9.194483e35,9.199704e35,9.204925e35,9.210146e35,9.2153675e35,9.220589e35,9.22581e35,9.231031e35,9.236252e35,9.241473e35,9.246694e35,9.2519154e35,9.2571366e35,9.2623585e35,9.26758e35,9.272801e35,9.278022e35,9.283243e35,9.288464e35,9.293685e35,9.2989064e35,9.3041276e35,9.309349e35,9.31457e35,9.319791e35,9.325012e35,9.330233e35,9.335454e35,9.3406755e35,9.345897e35,9.351118e35,9.356339e35,9.36156e35,9.366781e35,9.372002e35,9.377224e35,9.3824454e35,9.3876665e35,9.392888e35,9.398109e35,9.40333e35,9.408551e35,9.413772e35,9.418993e35,9.4242145e35,9.429436e35,9.434657e35,9.439878e35,9.445099e35,9.45032e35,9.455541e35,9.4607624e35,9.4659836e35,9.471205e35,9.476426e35,9.481647e35,9.486868e35,9.492089e35,9.497311e35,9.502532e35,9.5077535e35,9.5129746e35,9.518196e35,9.523417e35,9.528638e35,9.533859e35,9.53908e35,9.5443014e35,9.5495225e35,9.554744e35,9.559965e35,9.565186e35,9.570407e35,9.575628e35,9.580849e35,9.5860705e35,9.591292e35,9.596513e35,9.601734e35,9.606955e35,9.612177e35,9.617398e35,9.622619e35,9.62784e35,9.6330615e35,9.638283e35,9.643504e35,9.648725e35,9.653946e35,9.659167e35,9.664388e35,9.6696095e35,9.6748306e35,9.680052e35,9.685273e35,9.690494e35,9.695715e35,9.700936e35,9.7061574e35,9.7113786e35,9.7166e35,9.721821e35,9.727043e35,9.732264e35,9.737485e35,9.742706e35,9.747927e35,9.7531484e35,9.7583696e35,9.763591e35,9.768812e35,9.774033e35,9.779254e35,9.784475e35,9.789696e35,9.7949175e35,9.800139e35,9.80536e35,9.810581e35,9.815802e35,9.821023e35,9.826244e35,9.8314655e35,9.836687e35,9.8419085e35,9.84713e35,9.852351e35,9.857572e35,9.862793e35,9.868014e35,9.873235e35,9.8784565e35,9.883678e35,9.888899e35,9.89412e35,9.899341e35,9.904562e35,9.909783e35,9.9150044e35,9.9202256e35,9.925447e35,9.930668e35,9.935889e35,9.94111e35,9.946331e35,9.951552e35,9.9567735e35,9.9619955e35,9.9672166e35,9.972438e35,9.977659e35,9.98288e35,9.988101e35,9.993322e35,9.9985434e35,1.00037645e36,1.0008986e36,1.0014207e36,1.0019428e36,1.0024649e36,1.002987e36,1.0035091e36,1.00403125e36,1.0045534e36,1.0050755e36,1.0055976e36,1.0061197e36,1.0066418e36,1.0071639e36,1.0076861e36,1.0082082e36,1.00873035e36,1.0092525e36,1.0097746e36,1.0102967e36,1.0108188e36,1.0113409e36,1.011863e36,1.01238515e36,1.01290726e36,1.0134294e36,1.0139515e36,1.0144736e36,1.0149957e36,1.0155178e36,1.01603994e36,1.01656205e36,1.0170842e36,1.0176063e36,1.0181284e36,1.0186505e36,1.0191727e36,1.0196948e36,1.0202169e36,1.02073904e36,1.02126116e36,1.0217833e36,1.0223054e36,1.0228275e36,1.0233496e36,1.0238717e36,1.0243938e36,1.02491595e36,1.0254381e36,1.0259602e36,1.0264823e36,1.0270044e36,1.0275265e36,1.0280486e36,1.02857075e36,1.02909286e36,1.029615e36,1.0301371e36,1.0306592e36,1.0311814e36,1.0317035e36,1.0322256e36,1.0327477e36,1.03326985e36,1.033792e36,1.0343141e36,1.0348362e36,1.0353583e36,1.0358804e36,1.0364025e36,1.03692464e36,1.03744676e36,1.0379689e36,1.038491e36,1.0390131e36,1.0395352e36,1.0400573e36,1.0405794e36,1.04110155e36,1.0416237e36,1.0421458e36,1.042668e36,1.0431901e36,1.0437122e36,1.0442343e36,1.0447564e36,1.04527854e36,1.04580065e36,1.0463228e36,1.0468449e36,1.047367e36,1.0478891e36,1.0484112e36,1.0489333e36,1.04945545e36,1.0499776e36,1.0504997e36,1.0510218e36,1.0515439e36,1.052066e36,1.0525881e36,1.05311024e36,1.05363236e36,1.05415455e36,1.0546767e36,1.0551988e36,1.0557209e36,1.056243e36,1.0567651e36,1.0572872e36,1.05780935e36,1.05833146e36,1.0588536e36,1.0593757e36,1.0598978e36,1.0604199e36,1.060942e36,1.06146414e36,1.06198625e36,1.0625084e36,1.0630305e36,1.0635526e36,1.0640747e36,1.0645968e36,1.0651189e36,1.06564105e36,1.06616324e36,1.06668536e36,1.0672075e36,1.0677296e36,1.0682517e36,1.0687738e36,1.0692959e36,1.069818e36,1.07034015e36,1.0708623e36,1.0713844e36,1.0719065e36,1.0724286e36,1.0729507e36,1.0734728e36,1.07399495e36,1.07451706e36,1.0750392e36,1.0755613e36,1.0760834e36,1.0766055e36,1.0771276e36,1.0776498e36,1.0781719e36,1.07869405e36,1.0792162e36,1.0797383e36,1.0802604e36,1.0807825e36,1.0813046e36,1.0818267e36,1.08234884e36,1.08287096e36,1.0833931e36,1.0839152e36,1.0844373e36,1.0849594e36,1.0854815e36,1.0860036e36,1.08652575e36,1.0870479e36,1.08757e36,1.0880921e36,1.0886142e36,1.0891364e36,1.0896585e36,1.0901806e36,1.0907027e36,1.09122485e36,1.091747e36,1.0922691e36,1.0927912e36,1.0933133e36,1.0938354e36,1.0943575e36,1.09487965e36,1.0954018e36,1.0959239e36,1.096446e36,1.0969681e36,1.0974902e36,1.0980123e36,1.09853444e36,1.09905656e36,1.0995787e36,1.1001008e36,1.1006229e36,1.1011451e36,1.1016672e36,1.1021893e36,1.1027114e36,1.10323354e36,1.10375566e36,1.1042778e36,1.1047999e36,1.105322e36,1.1058441e36,1.1063662e36,1.1068883e36,1.10741045e36,1.1079326e36,1.1084547e36,1.1089768e36,1.1094989e36,1.110021e36,1.1105431e36,1.11106525e36,1.1115874e36,1.1121095e36,1.1126317e36,1.1131538e36,1.1136759e36,1.114198e36,1.1147201e36,1.1152422e36,1.11576435e36,1.1162865e36,1.1168086e36,1.1173307e36,1.1178528e36,1.1183749e36,1.118897e36,1.11941914e36,1.11994126e36,1.1204634e36,1.1209855e36,1.1215076e36,1.1220297e36,1.1225518e36,1.12307394e36,1.12359605e36,1.12411825e36,1.12464036e36,1.1251625e36,1.1256846e36,1.1262067e36,1.1267288e36,1.1272509e36,1.12777304e36,1.12829516e36,1.1288173e36,1.1293394e36,1.1298615e36,1.1303836e36,1.1309057e36,1.1314278e36,1.13194995e36,1.1324721e36,1.1329942e36,1.1335163e36,1.1340384e36,1.1345605e36,1.1350826e36,1.1356048e36,1.1361269e36,1.13664905e36,1.1371712e36,1.1376933e36,1.1382154e36,1.1387375e36,1.1392596e36,1.1397817e36,1.14030385e36,1.140826e36,1.1413481e36,1.1418702e36,1.1423923e36,1.1429144e36,1.1434365e36,1.14395864e36,1.14448076e36,1.1450029e36,1.145525e36,1.1460471e36,1.1465692e36,1.1470913e36,1.1476135e36,1.1481356e36,1.14865774e36,1.14917986e36,1.149702e36,1.1502241e36,1.1507462e36,1.1512683e36,1.1517904e36,1.1523125e36,1.15283465e36,1.1533568e36,1.1538789e36,1.154401e36,1.1549231e36,1.1554452e36,1.1559673e36,1.15648945e36,1.1570116e36,1.1575337e36,1.1580558e36,1.1585779e36,1.1591001e36,1.1596222e36,1.1601443e36,1.1606664e36,1.16118855e36,1.1617107e36,1.1622328e36,1.1627549e36,1.163277e36,1.1637991e36,1.1643212e36,1.16484334e36,1.16536546e36,1.1658876e36,1.1664097e36,1.1669318e36,1.1674539e36,1.167976e36,1.1684981e36,1.16902025e36,1.1695424e36,1.1700645e36,1.1705867e36,1.1711088e36,1.1716309e36,1.172153e36,1.1726751e36,1.17319724e36,1.17371935e36,1.1742415e36,1.1747636e36,1.1752857e36,1.1758078e36,1.1763299e36,1.176852e36,1.17737415e36,1.1778963e36,1.1784184e36,1.1789405e36,1.1794626e36,1.1799847e36,1.1805068e36,1.18102894e36,1.18155106e36,1.1820732e36,1.1825954e36,1.1831175e36,1.1836396e36,1.1841617e36,1.1846838e36,1.1852059e36,1.18572805e36,1.18625016e36,1.1867723e36,1.1872944e36,1.1878165e36,1.1883386e36,1.1888607e36,1.18938284e36,1.18990496e36,1.1904271e36,1.1909492e36,1.1914713e36,1.1919934e36,1.1925155e36,1.1930376e36,1.19355975e36,1.19408194e36,1.19460406e36,1.1951262e36,1.1956483e36,1.1961704e36,1.1966925e36,1.1972146e36,1.1977367e36,1.19825885e36,1.198781e36,1.1993031e36,1.1998252e36,1.2003473e36,1.2008694e36,1.2013915e36,1.20191365e36,1.2024358e36,1.2029579e36,1.20348e36,1.2040021e36,1.2045242e36,1.2050463e36,1.2055685e36,1.2060906e36,1.20661275e36,1.2071349e36,1.207657e36,1.2081791e36,1.2087012e36,1.2092233e36,1.2097454e36,1.21026754e36,1.21078966e36,1.2113118e36,1.2118339e36,1.212356e36,1.2128781e36,1.2134002e36,1.2139223e36,1.21444445e36,1.2149666e36,1.2154887e36,1.2160108e36,1.2165329e36,1.217055e36,1.2175772e36,1.2180993e36,1.21862144e36,1.21914355e36,1.2196657e36,1.2201878e36,1.2207099e36,1.221232e36,1.2217541e36,1.2222762e36,1.22279835e36,1.2233205e36,1.2238426e36,1.2243647e36,1.2248868e36,1.2254089e36,1.225931e36,1.22645314e36,1.22697526e36,1.2274974e36,1.2280195e36,1.2285416e36,1.2290638e36,1.2295859e36,1.230108e36,1.2306301e36,1.23115225e36,1.23167436e36,1.2321965e36,1.2327186e36,1.2332407e36,1.2337628e36,1.2342849e36,1.23480704e36,1.23532915e36,1.2358513e36,1.2363734e36,1.2368955e36,1.2374176e36,1.2379397e36,1.2384618e36,1.23898395e36,1.2395061e36,1.2400282e36,1.2405504e36,1.2410725e36,1.2415946e36,1.2421167e36,1.2426388e36,1.2431609e36,1.24368305e36,1.2442052e36,1.2447273e36,1.2452494e36,1.2457715e36,1.2462936e36,1.2468157e36,1.24733785e36,1.24785996e36,1.2483821e36,1.2489042e36,1.2494263e36,1.2499484e36,1.2504705e36,1.25099264e36,1.25151475e36,1.2520369e36,1.2525591e36,1.2530812e36,1.2536033e36,1.2541254e36,1.2546475e36,1.2551696e36,1.25569174e36,1.25621386e36,1.256736e36,1.2572581e36,1.2577802e36,1.2583023e36,1.2588244e36,1.2593465e36,1.25986865e36,1.2603908e36,1.2609129e36,1.261435e36,1.2619571e36,1.2624792e36,1.2630013e36,1.26352345e36,1.2640456e36,1.26456775e36,1.2650899e36,1.265612e36,1.2661341e36,1.2666562e36,1.2671783e36,1.2677004e36,1.26822255e36,1.2687447e36,1.2692668e36,1.2697889e36,1.270311e36,1.2708331e36,1.2713552e36,1.27187734e36,1.27239946e36,1.2729216e36,1.2734437e36,1.2739658e36,1.2744879e36,1.27501e36,1.2755322e36,1.2760543e36,1.27657645e36,1.27709856e36,1.2776207e36,1.2781428e36,1.2786649e36,1.279187e36,1.2797091e36,1.28023124e36,1.28075335e36,1.2812755e36,1.2817976e36,1.2823197e36,1.2828418e36,1.2833639e36,1.283886e36,1.28440815e36,1.2849303e36,1.2854524e36,1.2859745e36,1.2864966e36,1.2870188e36,1.2875409e36,1.288063e36,1.2885851e36,1.28910725e36,1.2896294e36,1.2901515e36,1.2906736e36,1.2911957e36,1.2917178e36,1.2922399e36,1.29276205e36,1.29328416e36,1.2938063e36,1.2943284e36,1.2948505e36,1.2953726e36,1.2958947e36,1.29641684e36,1.29693895e36,1.2974611e36,1.2979832e36,1.2985053e36,1.2990275e36,1.2995496e36,1.3000717e36,1.3005938e36,1.30111594e36,1.30163806e36,1.3021602e36,1.3026823e36,1.3032044e36,1.3037265e36,1.3042486e36,1.3047707e36,1.30529285e36,1.305815e36,1.3063371e36,1.3068592e36,1.3073813e36,1.3079034e36,1.3084255e36,1.30894765e36,1.30946976e36,1.3099919e36,1.3105141e36,1.3110362e36,1.3115583e36,1.3120804e36,1.3126025e36,1.3131246e36,1.31364675e36,1.3141689e36,1.314691e36,1.3152131e36,1.3157352e36,1.3162573e36,1.3167794e36,1.31730154e36,1.31782366e36,1.3183458e36,1.3188679e36,1.31939e36,1.3199121e36,1.3204342e36,1.3209563e36,1.32147845e36,1.32200064e36,1.32252276e36,1.3230449e36,1.323567e36,1.3240891e36,1.3246112e36,1.3251333e36,1.3256554e36,1.32617755e36,1.3266997e36,1.3272218e36,1.3277439e36,1.328266e36,1.3287881e36,1.3293102e36,1.3298323e36,1.3303545e36,1.3308766e36,1.3313987e36,1.3319208e36,1.3324429e36,1.332965e36,1.3334871e36,1.3340093e36,1.3345314e36,1.3350535e36,1.3355756e36,1.3360977e36,1.3366198e36,1.337142e36,1.337664e36,1.3381862e36,1.3387083e36,1.3392304e36,1.3397527e36,1.3402748e36,1.3407969e36,1.341319e36,1.3418411e36,1.3423632e36,1.3428853e36,1.3434075e36,1.3439296e36,1.3444517e36,1.3449738e36,1.3454959e36,1.346018e36,1.3465401e36,1.3470623e36,1.3475844e36,1.3481065e36,1.3486286e36,1.3491507e36,1.3496728e36,1.350195e36,1.350717e36,1.3512392e36,1.3517613e36,1.3522834e36,1.3528055e36,1.3533276e36,1.3538497e36,1.3543718e36,1.354894e36,1.355416e36,1.3559382e36,1.3564603e36,1.3569824e36,1.3575045e36,1.3580266e36,1.3585488e36,1.3590709e36,1.359593e36,1.3601151e36,1.3606372e36,1.3611593e36,1.3616814e36,1.3622035e36,1.3627258e36,1.363248e36,1.36377e36,1.3642922e36,1.3648143e36,1.3653364e36,1.3658585e36,1.3663806e36,1.3669027e36,1.3674248e36,1.367947e36,1.368469e36,1.3689912e36,1.3695133e36,1.3700354e36,1.3705575e36,1.3710796e36,1.3716018e36,1.3721239e36,1.372646e36,1.3731681e36,1.3736902e36,1.3742123e36,1.3747344e36,1.3752565e36,1.3757787e36,1.3763008e36,1.3768229e36,1.377345e36,1.3778671e36,1.3783892e36,1.3789113e36,1.3794335e36,1.3799556e36,1.3804777e36,1.3809998e36,1.3815219e36,1.382044e36,1.3825661e36,1.3830883e36,1.3836104e36,1.3841325e36,1.3846546e36,1.3851767e36,1.3856988e36,1.3862211e36,1.3867432e36,1.3872653e36,1.3877874e36,1.3883095e36,1.3888317e36,1.3893538e36,1.3898759e36,1.390398e36,1.3909201e36,1.3914422e36,1.3919643e36,1.3924865e36,1.3930086e36,1.3935307e36,1.3940528e36,1.3945749e36,1.395097e36,1.3956191e36,1.3961412e36,1.3966634e36,1.3971855e36,1.3977076e36,1.3982297e36,1.3987518e36,1.399274e36,1.399796e36,1.4003182e36,1.4008403e36,1.4013624e36,1.4018845e36,1.4024066e36,1.4029287e36,1.4034508e36,1.403973e36,1.404495e36,1.4050172e36,1.4055393e36,1.4060614e36,1.4065835e36,1.4071056e36,1.4076277e36,1.4081499e36,1.408672e36,1.4091941e36,1.4097164e36,1.4102385e36,1.4107606e36,1.4112827e36,1.4118048e36,1.412327e36,1.412849e36,1.4133712e36,1.4138933e36,1.4144154e36,1.4149375e36,1.4154596e36,1.4159817e36,1.4165038e36,1.417026e36,1.417548e36,1.4180702e36,1.4185923e36,1.4191144e36,1.4196365e36,1.4201586e36,1.4206807e36,1.4212029e36,1.421725e36,1.4222471e36,1.4227692e36,1.4232913e36,1.4238134e36,1.4243355e36,1.4248577e36,1.4253798e36,1.4259019e36,1.426424e36,1.4269461e36,1.4274682e36,1.4279903e36,1.4285125e36,1.4290346e36,1.4295567e36,1.4300788e36,1.4306009e36,1.431123e36,1.4316451e36,1.4321672e36,1.4326895e36,1.4332116e36,1.4337337e36,1.4342559e36,1.434778e36,1.4353001e36,1.4358222e36,1.4363443e36,1.4368664e36,1.4373885e36,1.4379107e36,1.4384328e36,1.4389549e36,1.439477e36,1.4399991e36,1.4405212e36,1.4410433e36,1.4415654e36,1.4420876e36,1.4426097e36,1.4431318e36,1.4436539e36,1.444176e36,1.4446981e36,1.4452202e36,1.4457424e36,1.4462645e36,1.4467866e36,1.4473087e36,1.4478308e36,1.448353e36,1.448875e36,1.4493972e36,1.4499193e36,1.4504414e36,1.4509635e36,1.4514856e36,1.4520077e36,1.4525298e36,1.453052e36,1.453574e36,1.4540962e36,1.4546183e36,1.4551404e36,1.4556625e36,1.4561848e36,1.4567069e36,1.457229e36,1.4577511e36,1.4582732e36,1.4587954e36,1.4593175e36,1.4598396e36,1.4603617e36,1.4608838e36,1.461406e36,1.461928e36,1.4624502e36,1.4629723e36,1.4634944e36,1.4640165e36,1.4645386e36,1.4650607e36,1.4655828e36,1.466105e36,1.466627e36,1.4671492e36,1.4676713e36,1.4681934e36,1.4687155e36,1.4692376e36,1.4697597e36,1.4702819e36,1.470804e36,1.4713261e36,1.4718482e36,1.4723703e36,1.4728924e36,1.4734145e36,1.4739367e36,1.4744588e36,1.4749809e36,1.475503e36,1.4760251e36,1.4765472e36,1.4770693e36,1.4775914e36,1.4781136e36,1.4786357e36,1.4791578e36,1.47968e36,1.4802022e36,1.4807243e36,1.4812464e36,1.4817685e36,1.4822906e36,1.4828127e36,1.4833349e36,1.483857e36,1.4843791e36,1.4849012e36,1.4854233e36,1.4859454e36,1.4864675e36,1.4869896e36,1.4875118e36,1.4880339e36,1.488556e36,1.4890781e36,1.4896002e36,1.4901223e36,1.4906444e36,1.4911666e36,1.4916887e36,1.4922108e36,1.4927329e36,1.493255e36,1.4937771e36,1.4942992e36,1.4948214e36,1.4953435e36,1.4958656e36,1.4963877e36,1.4969098e36,1.4974319e36,1.497954e36,1.4984761e36,1.4989983e36,1.4995204e36,1.5000425e36,1.5005646e36,1.5010867e36,1.5016088e36,1.502131e36,1.5026532e36,1.5031753e36,1.5036974e36,1.5042196e36,1.5047417e36,1.5052638e36,1.5057859e36,1.506308e36,1.5068301e36,1.5073522e36,1.5078744e36,1.5083965e36,1.5089186e36,1.5094407e36,1.5099628e36,1.5104849e36,1.511007e36,1.5115291e36,1.5120513e36,1.5125734e36,1.5130955e36,1.5136176e36,1.5141397e36,1.5146618e36,1.515184e36,1.515706e36,1.5162282e36,1.5167503e36,1.5172724e36,1.5177945e36,1.5183166e36,1.5188387e36,1.5193608e36,1.519883e36,1.520405e36,1.5209272e36,1.5214493e36,1.5219714e36,1.5224935e36,1.5230156e36,1.5235378e36,1.5240599e36,1.524582e36,1.5251041e36,1.5256262e36,1.5261485e36,1.5266706e36,1.5271927e36,1.5277148e36,1.528237e36,1.528759e36,1.5292812e36,1.5298033e36,1.5303254e36,1.5308475e36,1.5313696e36,1.5318917e36,1.5324138e36,1.532936e36,1.533458e36,1.5339802e36,1.5345023e36,1.5350244e36,1.5355465e36,1.5360686e36,1.5365908e36,1.5371129e36,1.537635e36,1.5381571e36,1.5386792e36,1.5392013e36,1.5397234e36,1.5402456e36,1.5407677e36,1.5412898e36,1.5418119e36,1.542334e36,1.5428561e36,1.5433782e36,1.5439003e36,1.5444225e36,1.5449446e36,1.5454667e36,1.5459888e36,1.5465109e36,1.547033e36,1.5475551e36,1.5480773e36,1.5485994e36,1.5491216e36,1.5496438e36,1.5501659e36,1.550688e36,1.5512101e36,1.5517322e36,1.5522543e36,1.5527764e36,1.5532985e36,1.5538207e36,1.5543428e36,1.5548649e36,1.555387e36,1.5559091e36,1.5564312e36,1.5569533e36,1.5574755e36,1.5579976e36,1.5585197e36,1.5590418e36,1.5595639e36,1.560086e36,1.5606081e36,1.5611303e36,1.5616524e36,1.5621745e36,1.5626966e36,1.5632187e36,1.5637408e36,1.564263e36,1.564785e36,1.5653072e36,1.5658293e36,1.5663514e36,1.5668735e36,1.5673956e36,1.5679177e36,1.5684398e36,1.568962e36,1.569484e36,1.5700062e36,1.5705283e36,1.5710504e36,1.5715725e36,1.5720946e36,1.5726169e36,1.573139e36,1.5736611e36,1.5741833e36,1.5747054e36,1.5752275e36,1.5757496e36,1.5762717e36,1.5767938e36,1.577316e36,1.577838e36,1.5783602e36,1.5788823e36,1.5794044e36,1.5799265e36,1.5804486e36,1.5809707e36,1.5814928e36,1.582015e36,1.582537e36,1.5830592e36,1.5835813e36,1.5841034e36,1.5846255e36,1.5851476e36,1.5856698e36,1.5861919e36,1.586714e36,1.5872361e36,1.5877582e36,1.5882803e36,1.5888024e36,1.5893245e36,1.5898467e36,1.5903688e36,1.5908909e36,1.591413e36,1.5919351e36,1.5924572e36,1.5929793e36,1.5935015e36,1.5940236e36,1.5945457e36,1.5950678e36,1.5955899e36,1.5961122e36,1.5966343e36,1.5971564e36,1.5976785e36,1.5982006e36,1.5987227e36,1.5992449e36,1.599767e36,1.6002891e36,1.6008112e36,1.6013333e36,1.6018554e36,1.6023775e36,1.6028997e36,1.6034218e36,1.6039439e36,1.604466e36,1.6049881e36,1.6055102e36,1.6060323e36,1.6065545e36,1.6070766e36,1.6075987e36,1.6081208e36,1.6086429e36,1.609165e36,1.6096871e36,1.6102092e36,1.6107314e36,1.6112535e36,1.6117756e36,1.6122977e36,1.6128198e36,1.613342e36,1.613864e36,1.6143862e36,1.6149083e36,1.6154304e36,1.6159525e36,1.6164746e36,1.6169967e36,1.6175188e36,1.618041e36,1.618563e36,1.6190853e36,1.6196075e36,1.6201296e36,1.6206517e36,1.6211738e36,1.6216959e36,1.622218e36,1.6227401e36,1.6232622e36,1.6237844e36,1.6243065e36,1.6248286e36,1.6253507e36,1.6258728e36,1.626395e36,1.626917e36,1.6274392e36,1.6279613e36,1.6284834e36,1.6290055e36,1.6295276e36,1.6300497e36,1.6305718e36,1.631094e36,1.631616e36,1.6321382e36,1.6326603e36,1.6331824e36,1.6337045e36,1.6342266e36,1.6347487e36,1.6352709e36,1.635793e36,1.6363151e36,1.6368372e36,1.6373593e36,1.6378814e36,1.6384035e36,1.6389257e36,1.6394478e36,1.6399699e36,1.640492e36,1.6410141e36,1.6415362e36,1.6420583e36,1.6425806e36,1.6431027e36,1.6436248e36,1.644147e36,1.644669e36,1.6451912e36,1.6457133e36,1.6462354e36,1.6467575e36,1.6472796e36,1.6478017e36,1.6483239e36,1.648846e36,1.6493681e36,1.6498902e36,1.6504123e36,1.6509344e36,1.6514565e36,1.6519787e36,1.6525008e36,1.6530229e36,1.653545e36,1.6540671e36,1.6545892e36,1.6551113e36,1.6556334e36,1.6561556e36,1.6566777e36,1.6571998e36,1.6577219e36,1.658244e36,1.6587661e36,1.6592882e36,1.6598104e36,1.6603325e36,1.6608546e36,1.6613767e36,1.6618988e36,1.662421e36,1.662943e36,1.6634652e36,1.6639873e36,1.6645094e36,1.6650315e36,1.6655538e36,1.6660759e36,1.666598e36,1.6671201e36,1.6676422e36,1.6681643e36,1.6686864e36,1.6692086e36,1.6697307e36,1.6702528e36,1.6707749e36,1.671297e36,1.6718191e36,1.6723412e36,1.6728634e36,1.6733855e36,1.6739076e36,1.6744297e36,1.6749518e36,1.675474e36,1.675996e36,1.6765181e36,1.6770403e36,1.6775624e36,1.6780845e36,1.6786066e36,1.6791287e36,1.6796508e36,1.680173e36,1.680695e36,1.6812172e36,1.6817393e36,1.6822614e36,1.6827835e36,1.6833056e36,1.6838277e36,1.6843499e36,1.684872e36,1.6853941e36,1.6859162e36,1.6864383e36,1.6869604e36,1.6874825e36,1.6880046e36,1.6885268e36,1.689049e36,1.6895711e36,1.6900933e36,1.6906154e36,1.6911375e36,1.6916596e36,1.6921817e36,1.6927038e36,1.693226e36,1.693748e36,1.6942702e36,1.6947923e36,1.6953144e36,1.6958365e36,1.6963586e36,1.6968807e36,1.6974029e36,1.697925e36,1.698447e36,1.6989692e36,1.6994913e36,1.7000134e36,1.7005355e36,1.7010576e36,1.7015798e36,1.7021019e36,1.702624e36,1.7031461e36,1.7036682e36,1.7041903e36,1.7047124e36,1.7052346e36,1.7057567e36,1.7062788e36,1.7068009e36,1.707323e36,1.7078451e36,1.7083672e36,1.7088894e36,1.7094115e36,1.7099336e36,1.7104557e36,1.7109778e36,1.7114999e36,1.712022e36,1.7125443e36,1.7130664e36,1.7135885e36,1.7141106e36,1.7146328e36,1.7151549e36,1.715677e36,1.7161991e36,1.7167212e36,1.7172433e36,1.7177654e36,1.7182876e36,1.7188097e36,1.7193318e36,1.7198539e36,1.720376e36,1.7208981e36,1.7214202e36,1.7219423e36,1.7224645e36,1.7229866e36,1.7235087e36,1.7240308e36,1.7245529e36,1.725075e36,1.7255971e36,1.7261193e36,1.7266414e36,1.7271635e36,1.7276856e36,1.7282077e36,1.7287298e36,1.729252e36,1.729774e36,1.7302962e36,1.7308183e36,1.7313404e36,1.7318625e36,1.7323846e36,1.7329067e36,1.7334288e36,1.733951e36,1.734473e36,1.7349952e36,1.7355175e36,1.7360396e36,1.7365617e36,1.7370838e36,1.7376059e36,1.738128e36,1.7386501e36,1.7391723e36,1.7396944e36,1.7402165e36,1.7407386e36,1.7412607e36,1.7417828e36,1.742305e36,1.742827e36,1.7433492e36,1.7438713e36,1.7443934e36,1.7449155e36,1.7454376e36,1.7459597e36,1.7464818e36,1.747004e36,1.747526e36,1.7480482e36,1.7485703e36,1.7490924e36,1.7496145e36,1.7501366e36,1.7506588e36,1.7511809e36,1.751703e36,1.7522251e36,1.7527472e36,1.7532693e36,1.7537914e36,1.7543135e36,1.7548357e36,1.7553578e36,1.7558799e36,1.756402e36,1.7569241e36,1.7574462e36,1.7579683e36,1.7584905e36,1.7590127e36,1.7595348e36,1.760057e36,1.760579e36,1.7611012e36,1.7616233e36,1.7621454e36,1.7626675e36,1.7631896e36,1.7637118e36,1.7642339e36,1.764756e36,1.7652781e36,1.7658002e36,1.7663223e36,1.7668444e36,1.7673665e36,1.7678887e36,1.7684108e36,1.7689329e36,1.769455e36,1.7699771e36,1.7704992e36,1.7710213e36,1.7715435e36,1.7720656e36,1.7725877e36,1.7731098e36,1.7736319e36,1.774154e36,1.7746761e36,1.7751983e36,1.7757204e36,1.7762425e36,1.7767646e36,1.7772867e36,1.7778088e36,1.778331e36,1.778853e36,1.7793752e36,1.7798973e36,1.7804194e36,1.7809415e36,1.7814636e36,1.7819857e36,1.782508e36,1.7830301e36,1.7835522e36,1.7840743e36,1.7845965e36,1.7851186e36,1.7856407e36,1.7861628e36,1.7866849e36,1.787207e36,1.7877291e36,1.7882513e36,1.7887734e36,1.7892955e36,1.7898176e36,1.7903397e36,1.7908618e36,1.791384e36,1.791906e36,1.7924282e36,1.7929503e36,1.7934724e36,1.7939945e36,1.7945166e36,1.7950387e36,1.7955608e36,1.796083e36,1.796605e36,1.7971272e36,1.7976493e36,1.7981714e36,1.7986935e36,1.7992156e36,1.7997377e36,1.8002599e36,1.800782e36,1.8013041e36,1.8018262e36,1.8023483e36,1.8028704e36,1.8033925e36,1.8039147e36,1.8044368e36,1.8049589e36,1.8054812e36,1.8060033e36,1.8065254e36,1.8070475e36,1.8075696e36,1.8080917e36,1.8086138e36,1.809136e36,1.809658e36,1.8101802e36,1.8107023e36,1.8112244e36,1.8117465e36,1.8122686e36,1.8127907e36,1.8133129e36,1.813835e36,1.8143571e36,1.8148792e36,1.8154013e36,1.8159234e36,1.8164455e36,1.8169677e36,1.8174898e36,1.8180119e36,1.818534e36,1.8190561e36,1.8195782e36,1.8201003e36,1.8206225e36,1.8211446e36,1.8216667e36,1.8221888e36,1.8227109e36,1.823233e36,1.8237551e36,1.8242772e36,1.8247994e36,1.8253215e36,1.8258436e36,1.8263657e36,1.8268878e36,1.82741e36,1.827932e36,1.8284542e36,1.8289764e36,1.8294985e36,1.8300207e36,1.8305428e36,1.8310649e36,1.831587e36,1.8321091e36,1.8326312e36,1.8331533e36,1.8336754e36,1.8341976e36,1.8347197e36,1.8352418e36,1.8357639e36,1.836286e36,1.8368081e36,1.8373302e36,1.8378524e36,1.8383745e36,1.8388966e36,1.8394187e36,1.8399408e36,1.840463e36,1.840985e36,1.8415072e36,1.8420293e36,1.8425514e36,1.8430735e36,1.8435956e36,1.8441177e36,1.8446398e36,1.845162e36,1.845684e36,1.8462062e36,1.8467283e36,1.8472504e36,1.8477725e36,1.8482946e36,1.8488167e36,1.8493389e36,1.849861e36,1.8503831e36,1.8509052e36,1.8514273e36,1.8519496e36,1.8524717e36,1.8529938e36,1.853516e36,1.854038e36,1.8545602e36,1.8550823e36,1.8556044e36,1.8561265e36,1.8566486e36,1.8571707e36,1.8576928e36,1.858215e36,1.858737e36,1.8592592e36,1.8597813e36,1.8603034e36,1.8608255e36,1.8613476e36,1.8618697e36,1.8623919e36,1.862914e36,1.8634361e36,1.8639582e36,1.8644803e36,1.8650024e36,1.8655245e36,1.8660467e36,1.8665688e36,1.8670909e36,1.867613e36,1.8681351e36,1.8686572e36,1.8691793e36,1.8697014e36,1.8702236e36,1.8707457e36,1.8712678e36,1.8717899e36,1.872312e36,1.8728341e36,1.8733562e36,1.8738784e36,1.8744005e36,1.8749226e36,1.8754449e36,1.875967e36,1.8764891e36,1.8770112e36,1.8775333e36,1.8780554e36,1.8785775e36,1.8790996e36,1.8796218e36,1.8801439e36,1.880666e36,1.8811881e36,1.8817102e36,1.8822323e36,1.8827544e36,1.8832766e36,1.8837987e36,1.8843208e36,1.8848429e36,1.885365e36,1.8858871e36,1.8864092e36,1.8869314e36,1.8874535e36,1.8879756e36,1.8884977e36,1.8890198e36,1.8895419e36,1.890064e36,1.8905861e36,1.8911083e36,1.8916304e36,1.8921525e36,1.8926746e36,1.8931967e36,1.8937188e36,1.894241e36,1.894763e36,1.8952852e36,1.8958073e36,1.8963294e36,1.8968515e36,1.8973736e36,1.8978957e36,1.8984179e36,1.8989401e36,1.8994622e36,1.8999844e36,1.9005065e36,1.9010286e36,1.9015507e36,1.9020728e36,1.9025949e36,1.903117e36,1.9036391e36,1.9041613e36,1.9046834e36,1.9052055e36,1.9057276e36,1.9062497e36,1.9067718e36,1.907294e36,1.907816e36,1.9083382e36,1.9088603e36,1.9093824e36,1.9099045e36,1.9104266e36,1.9109487e36,1.9114708e36,1.911993e36,1.912515e36,1.9130372e36,1.9135593e36,1.9140814e36,1.9146035e36,1.9151256e36,1.9156478e36,1.9161699e36,1.916692e36,1.9172141e36,1.9177362e36,1.9182583e36,1.9187804e36,1.9193026e36,1.9198247e36,1.9203468e36,1.9208689e36,1.921391e36,1.9219133e36,1.9224354e36,1.9229575e36,1.9234796e36,1.9240017e36,1.9245238e36,1.925046e36,1.925568e36,1.9260902e36,1.9266123e36,1.9271344e36,1.9276565e36,1.9281786e36,1.9287008e36,1.9292229e36,1.929745e36,1.9302671e36,1.9307892e36,1.9313113e36,1.9318334e36,1.9323556e36,1.9328777e36,1.9333998e36,1.9339219e36,1.934444e36,1.9349661e36,1.9354882e36,1.9360103e36,1.9365325e36,1.9370546e36,1.9375767e36,1.9380988e36,1.9386209e36,1.939143e36,1.9396651e36,1.9401873e36,1.9407094e36,1.9412315e36,1.9417536e36,1.9422757e36,1.9427978e36,1.94332e36,1.943842e36,1.9443642e36,1.9448863e36,1.9454086e36,1.9459307e36,1.9464528e36,1.9469749e36,1.947497e36,1.9480191e36,1.9485412e36,1.9490633e36,1.9495855e36,1.9501076e36,1.9506297e36,1.9511518e36,1.9516739e36,1.952196e36,1.9527181e36,1.9532403e36,1.9537624e36,1.9542845e36,1.9548066e36,1.9553287e36,1.9558508e36,1.956373e36,1.956895e36,1.9574172e36,1.9579393e36,1.9584614e36,1.9589835e36,1.9595056e36,1.9600277e36,1.9605498e36,1.961072e36,1.961594e36,1.9621162e36,1.9626383e36,1.9631604e36,1.9636825e36,1.9642046e36,1.9647268e36,1.9652489e36,1.965771e36,1.9662931e36,1.9668152e36,1.9673373e36,1.9678594e36,1.9683817e36,1.9689038e36,1.969426e36,1.969948e36,1.9704702e36,1.9709923e36,1.9715144e36,1.9720365e36,1.9725586e36,1.9730807e36,1.9736028e36,1.974125e36,1.974647e36,1.9751692e36,1.9756913e36,1.9762134e36,1.9767355e36,1.9772576e36,1.9777798e36,1.9783019e36,1.978824e36,1.9793461e36,1.9798682e36,1.9803903e36,1.9809124e36,1.9814345e36,1.9819567e36,1.9824788e36,1.9830009e36,1.983523e36,1.9840451e36,1.9845672e36,1.9850893e36,1.9856115e36,1.9861336e36,1.9866557e36,1.9871778e36,1.9876999e36,1.988222e36,1.9887441e36,1.9892663e36,1.9897884e36,1.9903105e36,1.9908326e36,1.9913547e36,1.991877e36,1.9923991e36,1.9929212e36,1.9934433e36,1.9939654e36,1.9944875e36,1.9950097e36,1.9955318e36,1.9960539e36,1.996576e36,1.9970981e36,1.9976202e36,1.9981423e36,1.9986645e36,1.9991866e36,1.9997087e36,2.0002308e36,2.0007529e36,2.001275e36,2.0017971e36,2.0023192e36,2.0028414e36,2.0033635e36,2.0038856e36,2.0044077e36,2.0049298e36,2.005452e36,2.005974e36,2.0064962e36,2.0070183e36,2.0075404e36,2.0080625e36,2.0085846e36,2.0091067e36,2.0096288e36,2.010151e36,2.010673e36,2.0111952e36,2.0117173e36,2.0122394e36,2.0127615e36,2.0132836e36,2.0138057e36,2.0143279e36,2.01485e36,2.0153722e36,2.0158944e36,2.0164165e36,2.0169386e36,2.0174607e36,2.0179828e36,2.018505e36,2.019027e36,2.0195492e36,2.0200713e36,2.0205934e36,2.0211155e36,2.0216376e36,2.0221597e36,2.0226818e36,2.023204e36,2.023726e36,2.0242482e36,2.0247703e36,2.0252924e36,2.0258145e36,2.0263366e36,2.0268587e36,2.0273809e36,2.027903e36,2.0284251e36,2.0289472e36,2.0294693e36,2.0299914e36,2.0305135e36,2.0310357e36,2.0315578e36,2.0320799e36,2.032602e36,2.0331241e36,2.0336462e36,2.0341683e36,2.0346904e36,2.0352126e36,2.0357347e36,2.0362568e36,2.0367789e36,2.037301e36,2.0378231e36,2.0383454e36,2.0388675e36,2.0393896e36,2.0399117e36,2.0404339e36,2.040956e36,2.0414781e36,2.0420002e36,2.0425223e36,2.0430444e36,2.0435665e36,2.0440887e36,2.0446108e36,2.0451329e36,2.045655e36,2.0461771e36,2.0466992e36,2.0472213e36,2.0477434e36,2.0482656e36,2.0487877e36,2.0493098e36,2.0498319e36,2.050354e36,2.0508761e36,2.0513982e36,2.0519204e36,2.0524425e36,2.0529646e36,2.0534867e36,2.0540088e36,2.054531e36,2.055053e36,2.0555752e36,2.0560973e36,2.0566194e36,2.0571415e36,2.0576636e36,2.0581857e36,2.0587078e36,2.05923e36,2.059752e36,2.0602742e36,2.0607963e36,2.0613184e36,2.0618407e36,2.0623628e36,2.0628849e36,2.063407e36,2.0639291e36,2.0644512e36,2.0649734e36,2.0654955e36,2.0660176e36,2.0665397e36,2.0670618e36,2.067584e36,2.068106e36,2.0686282e36,2.0691503e36,2.0696724e36,2.0701945e36,2.0707166e36,2.0712387e36,2.0717608e36,2.072283e36,2.072805e36,2.0733272e36,2.0738493e36,2.0743714e36,2.0748935e36,2.0754156e36,2.0759377e36,2.0764599e36,2.076982e36,2.0775041e36,2.0780262e36,2.0785483e36,2.0790704e36,2.0795925e36,2.0801146e36,2.0806368e36,2.0811589e36,2.081681e36,2.0822031e36,2.0827252e36,2.0832473e36,2.0837694e36,2.0842916e36,2.0848137e36,2.085336e36,2.085858e36,2.0863802e36,2.0869023e36,2.0874244e36,2.0879465e36]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..133334d46931 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[1.045818667858839,0.005961298942565918,0.7832446098327637,1.9467740654945374,1.4232044517993927,0.8446253538131714,0.3904690146446228,0.9375577308237553,1.766875445842743,1.277290165424347,0.6930245757102966,0.5210465490818024,1.9664263129234314,0.14832168817520142,1.124640829861164,0.19454586505889893,1.9843551516532898,0.4501368999481201,1.5328331589698792,0.019415438175201416,0.4156922698020935,0.81364706158638,1.8408892750740051,0.028567850589752197,1.4966348707675934,1.2876364886760712,0.1073305606842041,1.5324935913085938,1.247337743639946,0.1269574761390686,1.9547178745269775,0.558531641960144,0.6531213819980621,1.9190709590911865,0.08144843578338623,0.6926427781581879,1.9017884731292725,0.06572258472442627,1.3845788836479187,1.4047669470310211,0.05163097381591797,1.8920755982398987,1.3661771416664124,0.502223402261734,1.9101906418800354,0.15982365608215332,0.5389244854450226,1.9267136454582214,0.1378820538520813,0.576432079076767,1.5509617328643799,0.11744844913482666,1.8046735525131226,1.5155845880508423,0.09855860471725464,1.828795611858368,1.4793055951595306,0.3980034589767456,1.851468026638031,0.23396974802017212,0.43191856145858765,1.6818644404411316,0.20776134729385376,0.466827392578125,1.6506818532943726,0.18293869495391846,1.7243971824645996,1.6183611154556274,0.27379095554351807,1.7525897026062012,1.5849587321281433,0.30317234992980957,1.7794657349586487,0.3200629949569702,0.33377254009246826,1.767719328403473,0.28999656438827515,0.36553817987442017,1.7402538657188416,0.26117199659347534,0.3984135389328003,1.7114936113357544,0.19376665353775024,1.8837860226631165,1.6814887523651123,0.21920901536941528,1.8634485602378845,1.6502918601036072,0.24601709842681885,1.8416007161140442,0.08872240781784058,0.27414411306381226,1.8182807564735413,0.10673820972442627,0.3035407066345215,1.7935295104980469,0.12631654739379883,1.9352125525474548,1.7673901915550232,0.14742302894592285,1.9195887446403503,1.739908516407013,0.1700209379196167,1.9023563861846924,0.044502437114715576,0.19407057762145996,1.8835456371307373,0.05767327547073364,0.219529926776886,1.8631893992424011,0.07249248027801514,1.972053349018097,1.8413232564926147,0.08893400430679321,1.9613869190216064,1.817985475063324,0.10696917772293091,1.949038803577423,0.015184581279754639,0.12656646966934204,1.9350305795669556,0.023305058479309082,1.997538447380066,1.919386863708496,0.03313392400741577,1.9937338829040527,1.9021349549293518,0.04465407133102417,1.9881911277770996,2.962350845336914e-5,0.05784529447555542,1.9809198379516602,0.0012260079383850098,0.07268452644348145,1.9719327092170715,0.004169464111328125,1.998499572277069,1.9612454771995544,0.008854806423187256,1.9999160170555115,1.9488768577575684,0.015273869037628174,1.9995834231376648,0.006868183612823486,0.02341538667678833,1.997502326965332,0.0028444528579711914,0.033265113830566406,1.9936763644218445,0.0005649924278259277,1.983888030052185,1.9881123304367065,3.36766242980957e-5,1.9905033111572266,1.9808198809623718,0.0012515783309936523,1.995386004447937,0.029195785522460938,0.004216432571411133,1.9985275864601135,1.9611037969589233,1.9405519366264343,1.999922513961792,1.9487146139144897,1.9539315700531006,1.9995684623718262,1.8270316123962402,1.965642511844635,1.9974659085273743,1.8498143553733826,1.9756644368171692,1.9936186075210571,1.8711106777191162,1.9839797019958496,1.9880332350730896,1.890883207321167,1.990573763847351,1.9807196259498596,1.90909743309021,1.995435118675232,1.750514805316925,1.9257214665412903,1.998555302619934,1.7774915099143982,1.9407262206077576,1.9999287724494934,1.8031082153320312,1.9540854692459106,1.9995532035827637,1.827320158481598,1.9657758474349976,1.9974292516708374,1.850084900856018,1.9757769107818604,1.6622928977012634,1.8713627457618713,1.9840710759162903,1.6930427551269531,1.8911163210868835,1.9906439781188965,1.722580373287201,1.9093112349510193,1.9954839944839478,1.7508540749549866,1.925915539264679,1.5287122130393982,1.7778143286705017,1.9409002661705017,1.5637417435646057,1.8034140467643738,1.9542391896247864,1.597785234451294,1.8276084661483765,1.9659088850021362,1.6307830810546875,1.8503552079200745,1.9758890867233276,1.662677526473999,1.8716145157814026,1.4187939763069153,1.6934128403663635,1.8913492560386658,1.4563984274864197,1.7229352593421936,1.9095247983932495,1.4932045638561249,1.751193106174469,1.9261093735694885,1.529147982597351,1.778136968612671,1.9410740733146667,1.5641657710075378,1.803719699382782,1.302344173192978,1.598196804523468,1.8278965950012207,1.3419370353221893,1.6311814188957214,1.8506253361701965,1.3809317648410797,1.6630619764328003,1.8718661665916443,1.4192602038383484,1.6937827467918396,1.1398982852697372,1.4568552672863007,1.7232899069786072,1.1811789721250534,1.4936511814594269,1.751531958580017,1.2221427410840988,1.5295836329460144,1.778459370136261,1.2627179324626923,1.5645896792411804,1.804025113582611,1.3028335869312286,1.5986081957817078,1.0153922466561198,1.3424195349216461,1.6315796375274658,1.0571880787611008,1.3814065158367157,1.663446307182312,1.0988838747143745,1.419726312160492,1.6941524744033813,1.1404067128896713,1.4573119580745697,1.7236444354057312,1.1816839426755905,1.4940976798534393,0.8906461521983147,1.2226433753967285,1.5300191044807434,0.9323052689433098,1.2632133662700653,1.5650134682655334,0.9740828070789576,1.3033229410648346,1.599019467830658,1.015905674546957,1.3429019153118134,1.6319776773452759,1.0577007234096527,1.3818811178207397,0.7676055580377579,1.0993948355317116,1.4201923310756683,0.8084782510995865,1.1409150958061218,1.4577685594558716,0.8496859520673752,1.182188868522644,1.4945440292358398,0.8911565765738487,1.2231439501047134,0.6093559861183167,0.9328175932168961,1.2637087106704712,0.6481894254684448,0.9745961297303438,1.303812175989151,0.6876382231712341,1.0164190996438265,1.3433842360973358,0.7276334166526794,1.0582133494317532,1.382355660200119,0.7681050151586533,1.0999057739973068,0.4976651668548584,0.808982253074646,1.14142344892025,0.5342601537704468,0.8501936197280884,1.1826937347650528,0.5716698169708252,0.8916670307517052,1.2236444652080536,1.5308896899223328,0.1441524624824524,0.36108332872390747,0.648670107126236,0.9751094598323107,1.304301381111145,1.5998414754867554,0.19036245346069336,0.4275946617126465,0.728127509355545,1.0587259642779827,1.3828300833702087,0.07015937566757202,0.24223476648330688,0.49810922145843506,0.8094863146543503,1.1419317573308945,1.4586813747882843,0.10415613651275635,0.2994067072868347,0.5721338987350464,0.892177514731884,1.224144920706749,0.02197420597076416,0.14441817998886108,0.36147844791412354,0.649150937795639,0.975622795522213,1.3047904670238495,0.04281419515609741,0.19066393375396729,0.4280157685279846,0.7286216914653778,1.0592385604977608,1.383304387331009,0.07034844160079956,0.2425699234008789,0.49855345487594604,0.8099904358386993,1.1424400359392166,0.008039116859436035,0.1043844223022461,0.2997732162475586,0.5725980699062347,0.8926880285143852,1.2246453166007996,0.022081375122070312,0.1446840763092041,0.36187368631362915,0.6496318280696869,0.9761361368000507,0.000796198844909668,0.04296290874481201,0.1909656524658203,0.4284370541572571,0.7291159629821777,1.059751145541668,0.0009567141532897949,0.0705377459526062,0.24290531873703003,0.4989977478981018,0.8104945868253708,1.1429482698440552,0.008104264736175537,0.10461294651031494,0.3001399040222168,0.5730623602867126,0.8931985720992088,0.007560670375823975,0.022188842296600342,0.144950270652771,0.36226916313171387,0.6501128077507019,0.9766494855284691,0.0007758140563964844,0.043111979961395264,0.19126754999160767,0.4288584589958191,0.7296102941036224,0.0417100191116333,0.000979304313659668,0.07072728872299194,0.24324089288711548,0.4994422197341919,0.810998797416687,0.021181106567382812,0.008169591426849365,0.10484170913696289,0.3005067706108093,0.5735267400741577,0.10245698690414429,0.0074977874755859375,0.022296547889709473,0.14521664381027222,0.36266475915908813,0.6505939066410065,0.06875371932983398,0.0007557272911071777,0.04326122999191284,0.19156968593597412,0.42928004264831543,0.7301046848297119,0.04156339168548584,0.0010021328926086426,0.07091712951660156,0.24357664585113525,0.49988681077957153,0.14217334985733032,0.02107614278793335,0.00823521614074707,0.10507071018218994,0.3008738160133362,0.5739912390708923,0.10223066806793213,0.007435142993927002,0.022404491901397705,0.14548325538635254,0.36306053400039673,0.23940205574035645,0.06856673955917358,0.000735938549041748,0.0434107780456543,0.1918720006942749,0.4297018051147461,0.18781572580337524,0.041417062282562256,0.0010252594947814941,0.07110714912414551,0.24391263723373413,0.35774141550064087,0.14190953969955444,0.020971357822418213,0.008301138877868652,0.1052999496459961,0.30124109983444214,0.29594314098358154,0.10200458765029907,0.007372796535491943,0.02251267433166504,0.14575010538101196,0.36345648765563965,0.23906880617141724,0.06837999820709229,0.0007163286209106445,0.043560564517974854,0.19217455387115479,0.42361176013946533,0.18751627206802368,0.041270911693573,0.0010486245155334473,0.07129746675491333,0.24424874782562256,0.35734790563583374,0.14164596796035767,0.020866870880126953,0.008367300033569336,0.10552942752838135,0.5672782361507416,0.2955785393714905,0.10177880525588989,0.007310688495635986,0.02262115478515625,0.1460171341896057,0.493463933467865,0.23873573541641235,0.06819349527359009,0.000697016716003418,0.04371058940887451,0.7229549884796143,0.42319226264953613,0.18721699714660645,0.04112505912780762,0.0010722875595092773,0.07148796319961548,0.6436390280723572,0.35695457458496094,0.14138263463974,0.02076268196105957,0.008433699607849121,0.1057591438293457,0.5668153762817383,0.2952141761779785,0.10155320167541504,0.007248818874359131,0.022729873657226562,0.8037049919366837,0.49302130937576294,0.23840290307998657,0.06800729036331177,0.0006780028343200684,0.04386085271835327,0.7224616408348083,0.4227728843688965,0.1869179606437683,0.04097944498062134,0.001096189022064209,0.9692191537469625,0.6431593000888824,0.35656142234802246,0.14111953973770142,0.02065873146057129,0.008500397205352783,0.8858110308647156,0.5663526058197021,0.2948499917984009,0.10132783651351929,0.007187247276306152,0.022838890552520752,0.8032015115022659,0.49257874488830566,0.23807018995285034,0.06782126426696777,0.0006592273712158203,1.052329771220684,0.7219683527946472,0.4223536252975464,0.18661916255950928,0.04083406925201416,0.0011203289031982422,0.9687059111893177,0.6426796615123749,0.3561684489250183,0.14085662364959717,0.02055501937866211,1.217396080493927,0.885300911962986,0.565889984369278,0.29448598623275757,0.10110276937484741,0.007125914096832275,1.135078877210617,0.802698090672493,0.4921363592147827,0.2377377152442932,0.06763547658920288,1.3764285147190094,1.0518169738352299,0.7214751243591309,0.4219345450401306,0.18632054328918457,0.040688931941986084,1.2977026998996735,0.9681926742196083,0.6422001123428345,0.3557755947113037,0.1405940055847168,0.02045154571533203,1.2168948501348495,0.8847908228635788,0.5654274523258209,0.2941221594810486,0.10087788105010986,1.4520637392997742,1.1345700770616531,0.8021947145462036,0.49169403314590454,0.23740547895431519,0.06744998693466187,1.3759527504444122,1.0513041652739048,0.720982015132904,0.42151564359664917,0.18602216243743896,1.5938776135444641,1.2972124516963959,0.9676794447004795,0.6417206525802612,0.35538291931152344,0.14033156633377075,1.5245760083198547,1.2163935452699661,0.884280763566494,0.5649650394916534,0.2937585711479187,1.719208300113678,1.451605647802353,1.1340612471103668,0.801691398024559,0.49125194549560547,0.23707342147827148,1.6586395502090454,1.3754768669605255,1.0507913418114185,0.7204889357089996,0.4210968613624573,0.18572396039962769,1.593464434146881,1.2967221438884735,0.9671662263572216,0.6412413120269775,0.35499048233032227,1.7744223475456238,1.5241387486457825,1.2158921957015991,0.8837707415223122,0.5645027458667755,0.29339510202407837,1.7188514471054077,1.451147437095642,1.133552372455597,0.801188126206398,0.49080991744995117,1.8687109351158142,1.6582530736923218,1.375000923871994,1.0502785071730614,0.7199959456920624,0.42067819833755493,1.8242865800857544,1.593051016330719,1.2962317168712616,0.9666530154645443,0.640762060880661,1.9388881921768188,1.7740973830223083,1.5237013697624207,1.2153907865285873,0.8832607418298721,0.5640405416488647,0.29303187131881714,0.1002047061920166,0.00688326358795166,1.8853369355201721,1.988848626613617,1.983006477355957,1.868456482887268,1.6578664183616638,1.3745248317718506,1.049765657633543,0.7195030450820923,0.4202597737312317,0.18512827157974243,0.040111005306243896,1.7958595752716064,1.9504014253616333,1.9998411536216736,1.9387113451957703,1.7737722396850586,1.5232638716697693,1.2148893177509308,0.8827507793903351,0.5635784864425659,0.29266875982284546,0.09998077154159546,1.6842929124832153,1.8855755925178528,1.9889249801635742,1.9829120635986328,1.8682017922401428,1.6574795842170715,1.3740486800670624,1.0492527969181538,0.719010204076767,0.4198414087295532,0.18483072519302368,1.5537335872650146,1.7961703538894653,1.950560986995697,1.9998318552970886,1.9385342001914978,1.7734468579292297,1.5228262543678284,1.2143877893686295,0.8822408393025398,0.5631165206432343,0.2923058867454529,1.4078052639961243,1.6846672892570496,1.8858139514923096,1.9890010356903076,1.9828174114227295,1.8679468631744385,1.6570926308631897,1.3735724091529846,1.0487399213016033,0.7185174226760864,0.41942328214645386,0.18453341722488403,1.5541611313819885,1.79648095369339,1.9507203102111816,1.9998223185539246,1.9383568167686462,1.7731212377548218,1.5223884582519531,1.2138862162828445,0.8817309364676476,0.5626547038555145,0.29194319248199463,1.4082740545272827,1.6850414872169495,1.886052131652832,1.989076852798462,1.982722520828247,1.867691695690155,1.6567054390907288,1.3730960488319397,1.048227034509182,0.718024730682373,0.41900527477264404,1.251055270433426,1.554588496685028,1.7967913746833801,1.9508793950080872,1.9998124837875366,1.9381791949272156,1.7727954387664795,1.5219504833221436,1.2133845686912537,0.8812210634350777,0.562192976474762,1.0868683978915215,1.408742755651474,1.6854154467582703,1.8862900733947754,1.989152431488037,1.9826273322105408,1.8674363493919373,1.6563181281089783,1.3726195693016052,1.0477141328155994,0.7175321280956268,0.9202704578638077,1.2515522837638855,1.5550156831741333,1.7971015572547913,1.9510382413864136,1.9998024106025696,1.9380013346672058,1.7724694609642029,1.5215124487876892,1.2128828763961792,0.8807112276554108,0.755885437130928,1.0873799324035645,1.4092113375663757,1.6857892870903015,1.8865277767181396,1.9892277121543884,1.9825319051742554,1.8671807646751404,1.6559306383132935,1.372143030166626,1.047201219946146,0.7170395851135254,0.9207823276519775,1.2520492374897003,1.555442750453949,1.7974115014076233,1.9511967897415161,1.9997920393943787,1.937823235988617,1.7721432447433472,1.5210742354393005,1.2123811393976212,0.8802014142274857,0.7563834190368652,1.0878914520144463,1.4096798300743103,1.6861628890037537,1.8867652416229248,1.9893027544021606,1.9824362397193909,1.8669249415397644,1.6555429100990295,1.3716663718223572,1.0466882921755314,0.5987461507320404,0.9212942123413086,1.2525461316108704,1.555869698524475,1.797721266746521,1.9513551592826843,1.9997814893722534,1.937644898891449,1.7718168497085571,1.5206359028816223,1.2118793278932571,0.4522457718849182,0.7568814754486084,1.0884029418230057,1.410148173570633,1.6865363121032715,1.8870024681091309,1.9893775582313538,1.9823402762413025,1.8666688799858093,1.655155062675476,1.3711895942687988,0.32094842195510864,0.5992165505886078,0.921806126832962,1.2530429363250732,1.556296467781067,1.7980307936668396,1.9515132308006287,1.9997705817222595,1.9374662637710571,1.7714902758598328,1.5201974511146545,0.20849835872650146,0.452675461769104,0.7573795914649963,1.088914416730404,1.4106164574623108,1.6869096159934998,1.8872394561767578,1.989452064037323,1.982244074344635,1.8664125800132751,1.6547670364379883,0.11801654100418091,0.32132548093795776,0.5996870398521423,0.9223180562257767,1.2535396814346313,1.5567231178283691,1.7983401417732239,1.951671063899994,1.9997594952583313,1.9372873902320862,1.7711634635925293,1.5197588205337524,0.20881229639053345,0.45310527086257935,0.7578777819871902,1.0894258618354797,1.4110845923423767,1.687282681465149,1.8874762058258057,1.9895263314247131,1.9821475744247437,1.8661560416221619,1.6543788313865662,0.11825865507125854,0.3217027187347412,0.6001576483249664,0.9228300079703331,1.2540363669395447,1.557149589061737,1.798649251461029,1.95182865858078,1.9997480511665344,1.9371082782745361,1.7708364725112915,0.05217796564102173,0.20912641286849976,0.453535258769989,0.7583760172128677,1.0899372845888138,1.4115526378154755,1.6876556277275085,1.8877127170562744,1.9896003007888794,1.982050895690918,1.8658993244171143,0.012404322624206543,0.11850100755691528,0.3220800757408142,0.6006283760070801,0.9233419746160507,1.2545329630374908,1.5575759410858154,1.7989581823349,1.9519859552383423,1.9997364282608032,1.936928927898407,4.1604042053222656e-5,0.05234181880950928,0.20944076776504517,0.45396536588668823,0.7588743269443512,1.090448684990406,1.4120205640792847,1.688028335571289,1.8879490494728088,1.9896740317344666,1.9819539189338684,0.015432953834533691,0.012485086917877197,0.11874359846115112,0.3224576711654663,0.6010991930961609,0.9238539636135101,1.2550295293331146,1.5580021142959595,1.7992668747901917,1.9521430134773254,1.9997245073318481,1.9367493391036987,3.707408905029297e-5,0.05250591039657593,0.2097553014755249,0.454395592212677,0.7593726962804794,1.090960055589676,1.4124884009361267,1.6884008646011353,1.8881850838661194,1.9897475242614746,1.981856644153595,0.015343189239501953,0.012566089630126953,0.11898642778396606,0.32283544540405273,0.6015700995922089,0.9243659749627113,1.2555260062217712,1.558428168296814,1.7995753288269043,1.9522998332977295,1.9997122883796692,0.05797874927520752,3.2782554626464844e-5,0.05267024040222168,0.21007007360458374,0.4548259973526001,0.7598711401224136,1.0914714112877846,1.4129561185836792,1.6887732148170471,1.8884209394454956,1.9898207187652588,0.1267603039741516,0.015253722667694092,0.012647390365600586,0.11922943592071533,0.3232133388519287,0.6020411252975464,0.9248780086636543,1.2560223937034607,1.5588540434837341,1.7998836040496826,1.9524564146995544,0.21977883577346802,0.05780661106109619,2.872943878173828e-5,0.05283480882644653,0.21038508415222168,0.4552565813064575,0.7603696435689926,1.0919827371835709,1.4134237170219421,1.6891453862190247,1.888656497001648,0.3344525694847107,0.12651020288467407,0.015164554119110107,0.01272892951965332,0.11947274208068848,0.3235914707183838,0.6025122702121735,0.9253900572657585,1.2565187513828278,1.5592797994613647,1.8001917004585266,0.46759873628616333,0.219457745552063,0.05763465166091919,2.4974346160888672e-5,0.05299961566925049,0.21070027351379395,0.4556872248649597,0.7608682066202164,1.0924940407276154,1.413891226053238,1.6895173788070679,1.888891875743866,0.3340694308280945,0.12626034021377563,0.01507556438446045,0.012810707092285156,0.11971622705459595,0.3239697813987732,0.6029835045337677,0.9259021282196045,1.2570150196552277,1.559705376625061,1.8004995584487915,0.46716415882110596,0.21913689374923706,0.057462990283966064,2.1457672119140625e-5,0.053164660930633545,0.21101564168930054,0.456118106842041,0.7613668292760849,1.0930053144693375,1.4143586158752441,1.6898891925811768,0.6150478720664978,0.3336864709854126,0.1260107159614563,0.014986872673034668,0.01289278268814087,0.11995995044708252,0.32434821128845215,0.6034548282623291,0.9264142215251923,1.2575112283229828,1.5601308345794678,0.7736160010099411,0.46672970056533813,0.21881622076034546,0.057291507720947266,1.823902130126953e-5,0.05333000421524048,0.21133124828338623,0.4565490484237671,0.7618655115365982,1.0935165733098984,1.4148259162902832,0.9384674802422523,0.6145739853382111,0.33330363035202026,0.1257612705230713,0.014898419380187988,0.012975096702575684,0.12020397186279297,0.3247268795967102,0.60392627120018,0.9269263297319412,1.2580073773860931,1.1050268113613129,0.773115873336792,0.46629536151885986,0.21849572658538818,0.057120323181152344,1.52587890625e-5,0.053495585918426514,0.21164703369140625,0.4569801688194275,0.7623642683029175,1.094027802348137,1.4152930676937103,0.9379549697041512,0.6141002178192139,0.33292102813720703,0.12551212310791016,0.014810264110565186,0.0130576491355896,0.12044817209243774,0.3251057267189026,0.6043978333473206,0.927438460290432,1.2585034370422363,1.104516141116619,0.7726157903671265,0.4658612012863159,0.21817547082901,0.0569494366645813,1.2576580047607422e-5,0.05366140604019165,0.21196305751800537,0.45741140842437744,0.7628630846738815,1.094539001584053,1.2681764364242554,0.9374424740672112,0.6136265695095062,0.33253854513168335,0.12526315450668335,0.014722347259521484,0.013140499591827393,0.12069261074066162,0.3254846930503845,0.6048694849014282,0.9279506057500839,1.4243934452533722,1.1040054485201836,0.7721157819032669,0.4654271602630615,0.21785539388656616,0.05677872896194458,1.0132789611816406e-5,0.05382746458053589,0.2122793197631836,0.4578428268432617,0.7633619606494904,1.5688313245773315,1.2676817178726196,0.9369299933314323,0.6131529808044434,0.332156240940094,0.12501442432403564,0.014634668827056885,0.013223588466644287,0.12093722820281982,0.32586389780044556,0.6053412556648254,1.6974811553955078,1.423928439617157,1.1034947261214256,0.7716158330440521,0.46499329805374146,0.21753555536270142,0.05660825967788696,7.927417755126953e-6,0.053993821144104004,0.21259570121765137,0.45827436447143555,1.806772232055664,1.5684089064598083,1.2671869397163391,0.9364175349473953,0.6126795411109924,0.33177417516708374,0.12476593255996704,0.014547288417816162,0.013306975364685059,0.1211821436882019,0.32624322175979614,0.6058131158351898,1.6971130967140198,1.4234633147716522,1.102983981370926,0.7711159437894821,0.46455955505371094,0.217215895652771,0.05643808841705322,6.020069122314453e-6,0.054160356521606445,0.21291238069534302,0.4587060809135437,1.8064687252044678,1.5679863691329956,1.2666920721530914,0.9359050914645195,0.6122061610221863,0.33139222860336304,0.12451767921447754,0.014460146427154541,0.013390600681304932,0.12142729759216309,0.32662278413772583,1.8934406042099,1.6967448592185974,1.422998070716858,1.1024732068181038,0.7706161141395569,0.46412593126296997,0.21689647436141968,0.056268155574798584,4.351139068603516e-6,0.054327189922332764,0.213229238986969,1.9556148648262024,1.8061649799346924,1.5675636529922485,1.266197144985199,0.9353926628828049,0.6117329001426697,0.33101046085357666,0.12426966428756714,0.014373242855072021,0.013474464416503906,0.1216726303100586,1.9912658333778381,1.8932098746299744,1.696376383304596,1.4225327372550964,1.1019624024629593,0.7701163440942764,0.46369242668151855,0.21657723188400269,0.05609846115112305,2.9802322387695312e-6,0.054494261741638184,1.999403953552246,1.955463469028473,1.8058610558509827,1.567140817642212,1.2657021582126617,0.9348802492022514,0.6112597584724426,0.3306289315223694,0.12402182817459106,0.014286637306213379,0.013558626174926758,0.12191826105117798,1.9911980032920837,1.892978847026825,1.696007788181305,1.4220672845840454,1.101451575756073,0.7696166336536407,0.46325910091400146,0.2162582278251648,0.05592900514602661,1.8477439880371094e-6,0.054661571979522705,1.9994215369224548,1.9553118348121643,1.8055568933486938,1.566717803478241,1.2652070820331573,0.9343678578734398,0.6107867062091827,0.33024752140045166,0.12377429008483887,0.014200270175933838,0.013643026351928711,1.9799059629440308,1.9911298751831055,1.8927475810050964,1.6956390142440796,1.4216017127037048,1.1009407192468643,0.7691169828176498,0.4628259539604187,0.21593940258026123,0.05575978755950928,1.0132789611816406e-6,1.9331928491592407,1.9994388818740845,1.9551599025726318,1.8052525520324707,1.5662946701049805,1.2647119462490082,0.9338554814457893,0.61031374335289,0.32986629009246826,0.123526930809021,0.014114201068878174,1.8605787754058838,1.9800082445144653,1.991061508655548,1.8925161361694336,1.6952700018882751,1.4211360216140747,1.1004298329353333,0.7686173915863037,0.4623928666114807,0.215620756149292,0.05559086799621582,1.7640791535377502,1.9333772659301758,1.999455988407135,1.9550077319145203,1.8049479722976685,1.5658714175224304,1.2642167210578918,0.9333431273698807,0.6098408997058868,0.3294852375984192,0.12327980995178223,1.6463723182678223,1.8608402013778687,1.9801102876663208,1.9909928441047668,1.8922843933105469,1.6949008703231812,1.4206702411174774,1.0999189242720604,0.7681178748607635,0.46195995807647705,0.21530234813690186,0.055422186851501465,5.960464477539063e-8,0.05516505241394043,0.21481657028198242,0.46129918098449707,0.76735520362854,0.03610706329345703,0.17672514915466309,0.40838682651519775,0.7054733037948608,1.035130601376295,1.3609029054641724,1.6467640399932861,1.8611013889312744,1.9802120923995972,1.9909239411354065,1.8920524716377258,1.694531500339508,1.4202043414115906,1.0994079932570457,0.767618402838707,0.4615272283554077,0.21498417854309082,0.05525374412536621,0.0,0.05533337593078613,0.2151346206665039,0.4617319107055664,0.002050042152404785,0.03624391555786133,0.1770167350769043,0.4088008999824524,0.705964058637619,1.0356437712907791,1.3613817393779755,1.6471555829048157,1.861362338066101,1.9803135991096497,1.990854799747467,1.8918203115463257,1.6941620111465454,1.4197383224964142,1.0988970324397087,0.7671190053224564,0.46109461784362793,0.2146661877632141,0.05508553981781006,1.7881393432617188e-7,0.05550193786621094,0.21545296907424927,0.4621647000312805,0.0020173192024230957,0.03638100624084473,0.1773085594177246,0.40921515226364136,0.706454873085022,1.0361569300293922,1.3618604838848114,1.6475469470024109,1.8616231083869934,1.980414867401123,1.9907854199409485,1.8915878534317017,1.6937922835350037,1.4192721843719482,1.0983860418200493,0.7666196525096893,0.4606621265411377,0.21434837579727173,0.05491757392883301,6.556510925292969e-7,0.055670738220214844,0.21577143669128418,0.07781881093978882,0.001984834671020508,0.036518394947052,0.17760056257247925,0.4096295237541199,0.7069458067417145,1.0366700813174248,1.3623391389846802,1.6479381322860718,1.8618835806846619,1.9805158376693726,1.990715742111206,1.8913552165031433,1.6934223771095276,1.4188059568405151,1.097875028848648,0.7661203742027283,0.4602298140525818,0.21403080224990845,0.05474984645843506,1.3709068298339844e-6,0.05583983659744263,0.2552913427352905,0.07762038707733154,0.0019526481628417969,0.03665602207183838,0.177892804145813,0.4100440740585327,0.7074367702007294,1.0371832251548767,1.3628176748752594,1.6483291983604431,1.862143874168396,1.980616569519043,1.9906457662582397,1.8911223411560059,1.6930522918701172,1.4183396100997925,1.0973639860749245,0.765621155500412,0.45979762077331543,0.21371346712112427,0.054582417011260986,2.384185791015625e-6,0.056009113788604736,0.25494879484176636,0.0774221420288086,0.0019207000732421875,0.03679388761520386,0.17818528413772583,0.4104587435722351,0.7079278528690338,1.0376963540911674,1.3632961511611938,1.6487200856208801,1.862403929233551,1.9807170629501343,1.9905755519866943,1.8908892273902893,1.6926820278167725,1.4178731739521027,1.096852920949459,0.7651219964027405,0.4593655467033386,0.21339631080627441,0.054415225982666016,3.635883331298828e-6,0.5144194960594177,0.25460636615753174,0.07722413539886475,0.0018889904022216797,0.03693205118179321,0.178477942943573,0.4108735918998718,0.708418995141983,1.038209479302168,1.3637745082378387,1.649110734462738,1.862663745880127,1.9808173179626465,1.9905050992965698,1.8906558752059937,1.6923115849494934,1.417406588792801,1.096341833472252,0.7646229118108749,0.45893365144729614,0.2130793333053589,0.054248273372650146,0.8274257332086563,0.513970673084259,0.2542641758918762,0.0770263671875,0.0018575787544250488,0.03707045316696167,0.17877084016799927,0.4112885594367981,0.708910197019577,1.0387225896120071,1.364252746105194,1.6495012640953064,1.8629233837127686,1.9809172749519348,1.9904344081878662,1.890422284603119,1.69194096326828,1.416939914226532,1.0958307161927223,0.764123871922493,0.4585018754005432,0.21276259422302246,0.05408155918121338,0.8269199728965759,0.5135219693183899,0.25392216444015503,0.07682889699935913,0.0018264055252075195,0.03720909357070923,0.17906391620635986,0.41170376539230347,0.7094014883041382,1.0392356924712658,1.3647309243679047,1.6498916149139404,1.8631827235221863,1.981016993522644,1.9903634190559387,1.890188455581665,1.6915701627731323,1.416473150253296,1.095319576561451,0.763624906539917,0.4580702781677246,0.21244603395462036,1.1589514464139938,0.8264142572879791,0.5130733847618103,0.25358033180236816,0.07663160562515259,0.0017955303192138672,0.03734797239303589,0.17935729026794434,0.4121190309524536,0.7098928689956665,1.0397487841546535,1.3652089834213257,1.650281846523285,1.8634418845176697,1.9811164140701294,1.9902921319007874,1.889954388141632,1.6911991834640503,1.4160062372684479,1.0948084071278572,0.7631259858608246,0.45763880014419556,1.4734584391117096,1.1584444642066956,0.8259085714817047,0.5126249492168427,0.2532387375831604,0.07643461227416992,0.0017648935317993164,0.03748708963394165,0.17965078353881836,0.41253453493118286,0.7103843092918396,1.0402618646621704,1.365686982870102,1.6506718397140503,1.863700807094574,1.9812155961990356,1.9902206659317017,1.88972008228302,1.6908279657363892,1.4155392348766327,1.0942972153425217,0.7626271396875381,0.45720744132995605,1.4730060994625092,1.1579374372959137,0.8254029452800751,0.5121766328811646,0.2528972625732422,0.07623785734176636,0.0017345547676086426,0.03762650489807129,0.17994457483291626,0.41295015811920166,0.7108758389949799,1.0407749339938164,1.3661648631095886,1.6510616540908813,1.8639594912528992,1.9813145399093628,1.990148901939392,1.8894855380058289,1.6904566287994385,1.415072113275528,1.0937860012054443,0.7621283531188965,1.7354184985160828,1.4725536108016968,1.1574303656816483,0.824897363781929,0.5117284655570984,0.25255608558654785,0.0760413408279419,0.0017044544219970703,0.03776615858078003,0.1802385449409485,0.41336590051651,0.7113674283027649,1.0412879921495914,1.3666426241397858,1.6514513492584229,1.8642179369926453,1.981413185596466,1.9900768399238586,1.8892508149147034,1.6900851130485535,1.414604902267456,1.0932747647166252,1.9167506694793701,1.7350704669952393,1.4721010029315948,1.1569232642650604,0.8243918269872665,0.5112803876399994,0.25221502780914307,0.07584500312805176,0.0016745924949645996,0.037906110286712646,0.18053269386291504,0.4137818217277527,0.7118591070175171,1.041801042854786,1.3671203255653381,1.6518408060073853,1.8644761443138123,1.9815115928649902,1.990004539489746,1.889015793800354,1.6897133588790894,1.4141375720500946,1.9970105290412903,1.9165453910827637,1.7347222566604614,1.4716482758522034,1.1564161032438278,0.8238863497972488,0.5108324587345123,0.2518742084503174,0.0756489634513855,0.0016450285911560059,0.03804624080657959,0.18082714080810547,0.4141979217529297,0.7123508751392365,1.0423140786588192,1.367597907781601,1.652230143547058,1.864734172821045,1.9816097617149353,1.9899320006370544,1.8887805938720703,1.6893414855003357,1.4136701226234436,1.9969707131385803,1.916339933872223,1.7343738079071045,1.4711954295635223,1.1559089124202728,0.8233809024095535,0.5103846788406372,0.251533567905426,0.07545316219329834,0.001615762710571289,0.03818666934967041,0.18112176656723022,0.41461414098739624,0.7128427028656006,1.0428271070122719,1.3680754005908966,1.6526193022727966,1.8649919629096985,1.9817076921463013,1.9898592233657837,1.8885450959205627,1.688969373703003,1.967479407787323,1.9969306588172913,1.9161341786384583,1.7340251803398132,1.4707424342632294,1.1554016917943954,0.8228754997253418,0.5099370181560516,0.25119316577911377,0.07525765895843506,0.0015866756439208984,0.03832733631134033,0.1814165711402893,0.4150305390357971,0.7133345901966095,1.0433401204645634,1.368552803993225,1.6530082821846008,1.865249514579773,1.9818053245544434,1.989786148071289,1.8883094191551208,1.831322968006134,1.967609167098999,1.9968903064727783,1.9159282445907593,1.7336763739585876,1.4702893495559692,1.1548944115638733,0.8223701566457748,0.5094894766807556,0.25085288286209106,0.0750623345375061,0.0015578866004943848,0.03846830129623413,0.1817116141319275,0.4154471158981323,0.7138265669345856,1.043853122740984,1.369030088186264,1.6533970832824707,1.8655068278312683,1.9819026589393616,1.9897127747535706,1.888073444366455,1.8316082954406738,1.967738687992096,1.9968497157096863,1.9157220125198364,1.733327329158783,1.4698361158370972,1.1543871015310287,0.8218648582696915,0.5090420544147491,0.25051283836364746,0.07486724853515625,0.001529395580291748,0.038609445095062256,0.18200689554214478,0.4158638119697571,0.7143186330795288,1.044366117566824,1.3695072829723358,1.6537857055664062,1.8657639026641846,1.9819998145103455,1.9896392226219177,1.6039220690727234,1.8318933248519897,1.967867910861969,1.9968088269233704,1.9155156016349792,1.732978105545044,1.4693827629089355,1.1538797467947006,0.8213596045970917,0.5085947811603546,0.25017303228378296,0.07467246055603027,0.0015011429786682129,0.03875088691711426,0.1823023557662964,0.41628068685531616,0.7148107588291168,1.0448790974915028,1.3699843883514404,1.6541742086410522,1.8660207986831665,1.9820966720581055,1.3096531331539154,1.6043312549591064,1.8321781754493713,1.9679969549179077,1.9967676997184753,1.9153088927268982,1.7326287627220154,1.4689292907714844,1.153372347354889,0.8208543956279755,0.5081476271152496,0.24983340501785278,0.07447785139083862,0.0014731287956237793,0.03889256715774536,0.1825980544090271,0.4166976809501648,0.715302973985672,1.0453920662403107,1.3704614043235779,1.6545624732971191,1.8662773966789246,1.9821932911872864,1.3101413547992706,1.6047403216362,1.8324627876281738,1.9681256413459778,1.9967263340950012,1.915101945400238,1.732279121875763,1.4684756994247437,1.1528649032115936,0.8203492313623428,0.5077005922794342,0.24949395656585693,0.07428354024887085,0.0014454126358032227,0.03903454542160034,0.18289399147033691,0.41711485385894775,0.715795248746872,1.0459050200879574,1.3709383010864258,1.6549506187438965,1.8665338158607483,0.9817581754177809,1.3106294870376587,1.6051492094993591,1.832747220993042,1.9682541489601135,1.9966846704483032,1.9148948192596436,1.731929361820221,1.4680219888687134,1.152357429265976,0.8198441118001938,0.5072537064552307,0.2491546869277954,0.0740894079208374,0.0014179348945617676,0.03917670249938965,0.18319010734558105,0.41753214597702026,0.7162875831127167,1.0464179664850235,1.3714151084423065,1.6553385257720947,0.6553861796855927,0.982271583750844,1.3111175298690796,1.605557918548584,1.833031415939331,1.9683823585510254,1.9966427683830261,1.9146873950958252,1.7315793633460999,1.4675681293010712,1.1518499106168747,0.8193390518426895,0.5068069398403168,0.248815655708313,0.07389557361602783,0.0013907551765441895,0.03931915760040283,0.1834864616394043,0.4179496169090271,0.716780036687851,1.0469308979809284,1.37189182639122,1.6557263135910034,0.655868262052536,0.9827849976718426,1.3116055130958557,1.6059664487838745,1.833315372467041,1.9685103297233582,1.99660062789917,1.9144797325134277,1.7312291860580444,1.4671141803264618,1.151342362165451,0.8188340216875076,0.5063603222370148,0.2484768033027649,0.07370197772979736,0.0013638138771057129,0.03946185111999512,0.18378305435180664,0.41836726665496826,0.7172725200653076,1.0474438183009624,1.3723684251308441,0.36740565299987793,0.6563504338264465,0.9832984153181314,1.3120933771133423,1.6063748598098755,1.8335990905761719,1.9686380624771118,1.9965581893920898,1.9142718315124512,1.7308788299560547,1.4666600823402405,1.1508347541093826,0.8183290511369705,0.5059138238430023,0.24813812971115112,0.073508620262146,0.0013371109962463379,0.039604783058166504,0.1840798258781433,0.418785035610199,0.7177650928497314,1.0479567237198353,0.14868688583374023,0.3678033947944641,0.6568326950073242,0.9838118385523558,1.312581181526184,1.6067830920219421,1.8338826298713684,1.9687655568122864,1.9965154528617859,1.9140636920928955,1.7305282950401306,1.4662058651447296,1.1503271162509918,0.8178241401910782,0.5054674446582794,0.24779963493347168,0.07331550121307373,0.0013107061386108398,0.03974801301956177,0.1843767762184143,0.41920292377471924,0.7182577550411224,0.02382594347000122,0.14895641803741455,0.3682013750076294,0.6573150455951691,0.9843252636492252,1.3130688965320587,1.6071911454200745,1.8341659307479858,1.968892753124237,1.9964725375175476,1.9138553142547607,1.7301775217056274,1.4657515287399292,1.1498194485902786,0.8173192590475082,0.5050212144851685,0.24746137857437134,0.07312268018722534,0.0012845396995544434,0.03989148139953613,0.18467402458190918,0.4196210503578186,0.7187504768371582,0.023937463760375977,0.14922618865966797,0.36859947443008423,0.6577974855899811,0.9848386952653527,1.3135565519332886,1.6075990796089172,1.834449052810669,1.9690197110176086,1.9964293241500854,1.9136466979980469,1.72982656955719,1.4652970731258392,1.1493117362260818,0.8168144375085831,0.504575103521347,0.2471233606338501,0.07293003797531128,0.0012586712837219238,0.0400351881980896,0.1849713921546936,0.4200392961502075,0.00652998685836792,0.02404928207397461,0.1494961380958557,0.3689977526664734,0.6582800149917603,0.9853521296754479,1.3140440881252289,1.6080068349838257,1.8347318768501282,1.9691463708877563,1.9963858127593994,1.913437843322754,1.7294754385948181,1.4648424983024597,1.1488039791584015,0.8163096606731415,0.5041291117668152,0.2467854619026184,0.07273763418197632,0.0012330412864685059,0.04017913341522217,0.1852690577507019,0.09865307807922363,0.006471514701843262,0.024161338806152344,0.14976632595062256,0.3693961501121521,0.658762663602829,0.985865568742156,1.3145315647125244,1.6084144711494446,1.835014522075653,1.9692728519439697,1.9963420629501343,1.9132287502288818,1.729124128818512,1.4643878042697906,1.1482961773872375,0.8158049285411835,0.5036832690238953,0.24644780158996582,0.07254552841186523,0.0012077093124389648,0.04032337665557861,0.18556690216064453,0.0984308123588562,0.0064133405685424805,0.024273693561553955,0.1500367522239685,0.3697947859764099,0.6592453718185425,0.9863790115341544,1.3150189518928528,1.6088218688964844,1.8352969884872437,1.9693990349769592,1.99629807472229,1.9130194187164307,1.7287725806236267,1.4639329612255096,1.1477883458137512,0.815300241112709,0.5032375454902649,0.24611037969589233,0.07235360145568848,0.00118255615234375,0.04046785831451416,0.2897886037826538,0.09820878505706787,0.006355404853820801,0.024386227130889893,0.15030741691589355,0.3701935410499573,0.6597281694412231,0.9868924571201205,1.3155062794685364,1.6092291474342346,1.8355791568756104,1.9695249199867249,1.996253788471222,1.9128097891807556,1.728420913219452,1.4634780287742615,1.1472804695367813,0.8147956132888794,0.5027919709682465,0.2457730770111084,0.0721619725227356,0.0011577606201171875,0.5594476163387299,0.2894272208213806,0.09798699617385864,0.006297707557678223,0.024499058723449707,0.15057826042175293,0.37059247493743896,0.660211056470871,0.9874059064313769,1.3159934878349304,1.6096362471580505,1.8358611464500427,1.9696506261825562,1.9962092638015747,1.9125999808311462,1.728069007396698,1.4630229473114014,1.146772563457489,0.8142910301685333,0.5023465156555176,0.24543601274490356,0.07197058200836182,0.0011332035064697266,0.5589866936206818,0.28906601667404175,0.09776538610458374,0.0062403082847595215,0.0246121883392334,0.1508493423461914,0.370991587638855,0.6606940627098083,0.9879193594679236,1.3164806365966797,1.610043227672577,1.8361429572105408,1.9697760343551636,1.9961644411087036,1.9123899340629578,1.727716863155365,1.4625677466392517,1.1462646126747131,0.8137864917516708,0.5019011795520782,0.24509918689727783,0.07177942991256714,0.8771681562066078,0.5585258901119232,0.2887049913406372,0.09754407405853271,0.006183147430419922,0.02472555637359619,0.15112066268920898,0.3713908791542053,0.6611771285533905,0.9884328152984381,1.3169676959514618,1.610450029373169,1.836424469947815,1.969901204109192,1.9961193799972534,1.9121796488761902,1.7273645997047424,1.4621124267578125,1.1457566171884537,0.8132819980382919,0.5014559924602509,0.24476248025894165,1.208891898393631,0.8766585662961006,0.5580652058124542,0.288344144821167,0.09732300043106079,0.006126284599304199,0.024839162826538086,0.15139222145080566,0.3717902898788452,0.6616602838039398,0.9889462748542428,1.3174546658992767,1.6108566522598267,1.8367058038711548,1.9700261354446411,1.9960740804672241,1.9119690656661987,1.7270120978355408,1.4616570174694061,1.1452485918998718,0.8127775639295578,0.501010924577713,0.24442601203918457,1.208389699459076,0.8761490136384964,0.5576046407222748,0.2879834771156311,0.09710216522216797,0.006069660186767578,0.024953007698059082,0.15166395902633667,0.37218987941741943,0.6621435284614563,0.9894597362726927,1.3179415464401245,1.6112631559371948,1.8369868993759155,1.9701507687568665,1.996028482913971,1.911758303642273,1.7266594171524048,1.4612014591693878,1.1447405368089676,0.8122731745243073,0.5005660057067871,1.5171457529067993,1.2078874558210373,0.8756394907832146,0.5571441948413849,0.2876230478286743,0.09688156843185425,0.006013274192810059,0.025067150592803955,0.15193593502044678,0.372589647769928,0.6626268923282623,0.9899732014164329,1.3184283375740051,1.6116694211959839,1.837267816066742,1.9702751636505127,1.995982587337494,1.9115472435951233,1.7263065576553345,1.46074578166008,1.1442324221134186,0.8117688447237015,1.7688862085342407,1.5167061686515808,1.2073851525783539,0.8751300051808357,0.5566838681697845,0.2872627377510071,0.09666115045547485,0.005957186222076416,0.02518153190612793,0.152208149433136,0.37298959493637085,0.6631103157997131,0.9904866684228182,1.318915069103241,1.6120755672454834,1.8375484347343445,1.9703993201255798,1.9959365129470825,1.9113360047340393,1.7259535193443298,1.4602899551391602,1.1437242776155472,1.9358565211296082,1.7685577869415283,1.5162664651870728,1.206882804632187,0.8746205419301987,0.5562236309051514,0.28690266609191895,0.09644103050231934,0.005901336669921875,0.025296151638031006,0.1524806022644043,0.37338972091674805,0.6635938286781311,0.9910001382231712,1.3194017112255096,1.6124815940856934,1.8378288745880127,1.970523178577423,1.9958901405334473,1.9111245274543762,1.7256003022193909,1.4598340392112732,1.1432161033153534,1.9356754422187805,1.7682291269302368,1.5158266425132751,1.206380382180214,0.8741111159324646,0.5557635426521301,0.28654277324676514,0.09622114896774292,0.005845785140991211,0.02541106939315796,0.15275323390960693,0.3737899661064148,0.6640774309635162,0.991513610817492,1.3198882639408112,1.6128873825073242,1.8381091356277466,1.9706467986106873,1.9958434700965881,1.9109127521514893,1.7252468466758728,1.4593780040740967,1.999634325504303,1.9354941248893738,1.7679003477096558,1.515386700630188,1.2058779299259186,0.8736017346382141,0.555303543806076,0.28618305921554565,0.0960015058517456,0.0057904720306396484,0.02552616596221924,0.15302610397338867,0.37419039011001587,0.6645611524581909,0.9920270852744579,1.3203747272491455,1.6132930517196655,1.8383890986442566,1.9707701802253723,1.99579656124115,1.9107007384300232,1.7248932123184204,1.9533830285072327,1.9996203184127808,1.935312569141388,1.7675712704658508,1.5149465799331665,1.2053754031658173,0.873092383146286,0.5548436939716339,0.2858235239982605,0.09578210115432739,0.005735456943511963,0.02564162015914917,0.1532992124557495,0.37459099292755127,0.6650449335575104,0.992540561594069,1.3208611011505127,1.6136986017227173,1.8386688828468323,1.9708932638168335,1.9957494139671326,1.9104885458946228,1.7245393991470337,1.9535378217697144,1.9996060729026794,1.935130774974823,1.7672420740127563,1.5145063400268555,1.2048728317022324,0.8725830465555191,0.5543839335441589,0.28546422719955444,0.0955628752708435,0.0056806206703186035,0.025757253170013428,0.15357255935668945,0.374991774559021,0.665528804063797,0.9930540402419865,1.321347415447235,1.61410391330719,1.8389484882354736,1.9710161685943604,1.9957020282745361,1.9102760553359985,1.802327275276184,1.9536924362182617,1.9995915293693542,1.9349486827850342,1.7669126391410828,1.51406592130661,1.2043702006340027,0.872073769569397,0.5539243221282959,0.28510504961013794,0.0953439474105835,0.0056261420249938965,0.025873184204101562,0.15384608507156372,0.3753926753997803,0.6660127639770508,0.9935675207525492,1.3218336403369904,1.614509105682373,1.8392277956008911,1.9711387753486633,1.995654284954071,1.5626596808433533,1.8026336431503296,1.9538467526435852,1.9995766878128052,1.934766411781311,1.76658296585083,1.51362544298172,1.2038675248622894,0.871564507484436,0.5534648001194,0.28474611043930054,0.09512525796890259,0.005571842193603516,0.0259893536567688,0.1541198492050171,0.3757937550544739,0.6664968132972717,0.9940810026600957,1.322319746017456,1.6149141192436218,1.8395069241523743,1.9712610840797424,1.9956063628196716,1.5630841255187988,1.8029398322105408,1.9540008306503296,1.999561607837677,1.934583842754364,1.7662531733512878,1.5131847858428955,1.2033647894859314,0.8710552901029587,0.5530053973197937,0.28438735008239746,0.09490680694580078,0.005517840385437012,0.026105821132659912,0.15439385175704956,0.3761950135231018,0.6669809520244598,0.9945944864302874,1.322805792093277,1.6153189539909363,1.8397858142852783,1.9713832139968872,1.2614541947841644,1.56350839138031,1.8032458424568176,1.9541546702384949,1.9995462894439697,1.934401035308838,1.7659231424331665,1.5127440094947815,1.2028619945049286,0.8705461025238037,0.5525461137294769,0.2840287685394287,0.09468859434127808,0.005464136600494385,0.02622246742248535,0.15466809272766113,0.37659645080566406,0.6674651801586151,0.9951079715974629,1.3232917487621307,1.6157236695289612,1.8400644659996033,0.9309988245368004,1.2619498074054718,1.5639325380325317,1.8035515546798706,1.9543082118034363,1.9995306730270386,1.9342179894447327,1.765592873096466,1.5123030543327332,1.2023591548204422,0.8700369447469711,0.5520869493484497,0.2836703658103943,0.0944705605506897,0.005410671234130859,0.026339471340179443,0.15494251251220703,0.37699800729751587,0.6679494976997375,0.995621457695961,1.3237776458263397,1.6161282062530518,1.840342938899994,0.9315111041069031,1.262445330619812,1.564356505870819,1.8038570880889893,1.9544615149497986,1.9995148181915283,1.9340347051620483,1.7652624249458313,1.5118619799613953,1.2018562704324722,0.8695278167724609,0.5516279339790344,0.28331220149993896,0.0942528247833252,0.0053574442863464355,0.02645665407180786,0.15521717071533203,0.377399742603302,0.6684338748455048,0.9961349454242736,1.3242634236812592,1.616532564163208,0.6086233556270599,0.932023398578167,1.2629407942295074,1.5647802948951721,1.8041624426841736,1.9546145796775818,1.999498724937439,1.933851182460785,1.7649317979812622,1.5114208459854126,1.2013533115386963,0.8690187335014343,0.5511690080165863,0.2829541563987732,0.0940353274345398,0.005304515361785889,0.026574134826660156,0.15549206733703613,0.37780165672302246,0.6689183712005615,0.9966484338510782,1.3247491419315338,0.3288850784301758,0.6090959310531616,0.9325357154011726,1.2634361684322357,1.5652040243148804,1.8044675588607788,1.9547674059867859,1.9994823336601257,1.9336674213409424,1.764600932598114,1.5109794735908508,1.2008503079414368,0.8685096800327301,0.5507102012634277,0.2825963497161865,0.0938180685043335,0.005251824855804443,0.026691854000091553,0.15576714277267456,0.37820374965667725,0.6694029569625854,0.9971619232092053,0.12313765287399292,0.329265832901001,0.6095686256885529,0.9330480471253395,1.2639314830303192,1.5656275153160095,1.8047724962234497,1.9549199938774109,1.9994656443595886,1.933483362197876,1.7642698884010315,1.5105380415916443,1.2003472596406937,0.8680006712675095,0.5502515137195587,0.2822387218475342,0.0936010479927063,0.0051993727684021,0.02680981159210205,0.15604251623153687,0.3786059617996216,0.6698876023292542,0.997675413498655,0.12338459491729736,0.3296468257904053,0.6100414097309113,0.9335603937506676,1.264426738023758,1.5660508871078491,1.8050771355628967,1.955072283744812,1.9994487762451172,1.9332991242408752,1.7639386653900146,1.5100964307785034,1.1998441517353058,0.8674916923046112,0.5497929453849792,0.28188127279281616,0.0933842658996582,0.005147218704223633,0.026928067207336426,0.1563180685043335,0.379008412361145,0.6703723669052124,0.014150679111480713,0.12363177537918091,0.3300279378890991,0.6105142831802368,0.9340727552771568,1.2649219334125519,1.5664741396903992,1.8053816556930542,1.955224335193634,1.999431550502777,1.9331145882606506,1.7636072039604187,1.509654700756073,1.1993409991264343,0.8669827431440353,0.5493344962596893,0.28152400255203247,0.09316766262054443,0.005095303058624268,0.027046501636505127,0.15659379959106445,0.37941092252731323,0.013607203960418701,0.014236867427825928,0.12387925386428833,0.3304092288017273,0.6109873056411743,0.9345851391553879,1.2654170393943787,1.566897213459015,1.8056859374046326,1.955376148223877,1.9994141459465027,1.932929813861847,1.7632755637168884,1.509212851524353,1.198837786912918,0.866473838686943,0.548876166343689,0.2811669707298279,0.09295135736465454,0.005043685436248779,0.02716529369354248,0.1568698287010193,0.37981367111206055,0.671342134475708,0.9992158871027641,1.3271763622760773,1.618955373764038,1.8422858715057373,1.972470462322235,1.995112419128418,1.9077077507972717,1.7199223637580872,1.452522873878479,1.1350801885128021,1.5133500695228577,1.7663769125938416,1.934652328491211,1.9995673298835754,1.9539430737495422,1.8028250336647034,1.5629249215126038,1.2607725858688354,0.9297821670770645,0.6065569519996643,0.32684147357940674,0.12156856060028076,0.013438880443572998,0.014410078525543213,0.12437480688095093,0.3311723470687866,0.6119335889816284,0.9356099590659142,1.2664070427417755,1.567742943763733,1.806293785572052,1.9556789994239807,1.9993784427642822,1.9325595498085022,1.7626116275787354,1.5083287358283997,1.1978311985731125,0.8654561191797256,0.5479598343372345,0.2804533839225769,0.09251946210861206,0.004941165447235107,0.027403533458709717,0.1574224829673767,0.3806196451187134,0.6723122298717499,1.0002428707957733,1.3281466364860535,1.6197616457939148,1.842839002609253,1.97270929813385,1.995010495185852,1.9072763919830322,1.7192091941833496,0.8722648173570633,1.2045587599277496,1.5142311453819275,1.767036259174347,1.9350169897079468,1.9995970129966736,1.9536344408988953,1.8022122979164124,1.5620757937431335,1.259781002998352,0.9287577569484711,0.6056129932403564,0.32608234882354736,0.1210782527923584,0.013271570205688477,0.01458430290222168,0.12487125396728516,0.33193618059158325,0.612880289554596,0.9366348460316658,1.2673967778682709,1.5685880780220032,1.8069008588790894,1.9559808373451233,1.9993417263031006,1.932188332080841,1.7619469165802002,1.5074440240859985,1.1968244016170502,0.864438533782959,0.5470440089702606,0.279740571975708,0.09208852052688599,0.004839718341827393,0.02764284610748291,0.15797603130340576,0.38142621517181396,0.6732826828956604,1.001269854255952,1.3291165828704834,1.620567262172699,1.843391239643097,1.9729470610618591,1.9949074983596802,1.9068440198898315,0.5550161898136139,0.8732834458351135,1.2055639326572418,1.5151116847991943,1.7676947712898254,1.9353806972503662,1.9996256232261658,1.9533248543739319,1.8015987277030945,1.5612260699272156,1.2587891221046448,0.9277334213256836,0.6046694815158844,0.3253239393234253,0.12058889865875244,0.013105332851409912,0.014759600162506104,0.12536871433258057,0.3327007293701172,0.6138274073600769,0.9376598000526428,1.2683862149715424,1.569432556629181,1.807507038116455,1.9562817215919495,1.999303936958313,1.9318161010742188,1.7612813711166382,1.5065588355064392,1.1958174109458923,0.8634211122989655,0.546128660440445,0.2790285348892212,0.09165853261947632,0.004739344120025635,0.02788311243057251,0.15853047370910645,0.38223350048065186,0.6742534935474396,1.0022968363482505,1.330086201429367,1.6213722825050354,1.843942642211914,1.973183810710907,1.9948034286499023,0.2866777777671814,0.5559361279010773,0.8743022233247757,1.206568866968155,1.5159916877746582,1.768352448940277,1.9357433915138245,1.9996532201766968,1.9530142545700073,1.8009843230247498,1.5603758096694946,1.2577970027923584,0.9267091602087021,0.6037263572216034,0.3245663046836853,0.12010043859481812,0.012940168380737305,0.014935910701751709,0.12586700916290283,0.33346593379974365,0.6147749125957489,0.9386848174035549,1.2693753838539124,1.5702764987945557,1.8081124424934387,1.9565815329551697,1.9992650747299194,1.9314428567886353,1.760615050792694,1.505673110485077,1.1948101967573166,0.8624038249254227,0.5452137887477875,0.27831727266311646,0.09122949838638306,0.004639983177185059,0.028124451637268066,0.15908581018447876,0.3830413818359375,0.675224632024765,1.0033238159958273,1.3310554325580597,1.6221765875816345,1.8444930911064148,0.005978226661682129,0.09674382209777832,0.2873978614807129,0.5568565428256989,0.875321127474308,1.2075735926628113,1.5168710947036743,1.7690093517303467,1.9361050724983215,1.999679684638977,1.9527027010917664,1.8003690242767334,1.559524953365326,1.2568045854568481,0.9256849810481071,0.6027836501598358,0.32380932569503784,0.1196129322052002,0.012776017189025879,0.015113234519958496,0.1263662576675415,0.3342319130897522,0.6157228648662567,0.9397099018096924,1.2703642547130585,1.5711198449134827,1.808716893196106,1.9568803906440735,1.9992251992225647,1.9310686588287354,1.759947955608368,1.5047868490219116,1.1938027888536453,0.8613866716623306,0.5442993938922882,0.277606725692749,0.0908014178276062,0.0045416951179504395,0.028366804122924805,0.1596420407295227,0.38384997844696045,0.6761960983276367,1.0043507921509445,1.332024335861206,1.6229802966117859,0.024910271167755127,0.006090879440307617,0.09718495607376099,0.28811877965927124,0.5577774047851562,0.8763401657342911,1.2085780948400497,1.5177499651908875,1.7696654200553894,1.9364657998085022,1.999705195426941,1.9523900747299194,1.799752950668335,1.5586734414100647,1.2558118999004364,0.9246608763933182,0.6018413603305817,0.3230530619621277,0.11912637948989868,0.012612879276275635,0.01529163122177124,0.12686645984649658,0.33499854803085327,0.6166711747646332,0.9407350495457649,1.271352857351303,1.5719625353813171,1.8093205690383911,1.9571781754493713,1.999184250831604,1.930693507194519,1.759280025959015,1.5038999915122986,1.1927951723337173,0.8603696823120117,0.5433855056762695,0.27689695358276367,0.09037429094314575,0.004444479942321777,0.0286102294921875,0.1601991057395935,0.38465917110443115,0.6771679222583771,1.0053777638822794,1.3329928815364838,0.15101885795593262,0.024682998657226562,0.006204545497894287,0.09762710332870483,0.2888404130935669,0.5586987435817719,0.8773593306541443,1.2095823884010315,1.5186283588409424,1.77032071352005,1.9368255138397217,1.999729573726654,1.9520764350891113,1.799135982990265,1.5578213930130005,1.2548189759254456,0.9236368462443352,0.6008995175361633,0.32229751348495483,0.1186407208442688,0.012450814247131348,0.015471100807189941,0.1273675560951233,0.33576589822769165,0.6176199316978455,0.9417602606117725,1.2723411619663239,1.5728046298027039,1.8099233508110046,1.9574750065803528,1.9991422891616821,1.9303173422813416,1.7586113214492798,1.5030126571655273,1.1917873620986938,0.8593528270721436,0.5424720644950867,0.2761879563331604,0.08994811773300171,0.004348278045654297,0.0288546085357666,0.1607571244239807,0.3854690194129944,0.6781401038169861,0.6600299179553986,0.37044280767440796,0.1504766345024109,0.02445673942565918,0.006319284439086914,0.09807014465332031,0.28956276178359985,0.5596205592155457,0.8783786296844482,1.2105864435434341,1.5195061564445496,1.7709751725196838,1.9371842741966248,1.999752938747406,1.9517618417739868,1.798518180847168,1.5569687485694885,1.2538257539272308,0.9226129055023193,0.5999580919742584,0.32154273986816406,0.11815595626831055,0.012289762496948242,0.015651583671569824,0.12786954641342163,0.33653390407562256,0.6185690462589264,0.9427855312824249,1.2733291685581207,1.5736461281776428,1.8105252981185913,1.9577707648277283,1.9990991950035095,1.9299401640892029,1.7579417824745178,1.502124845981598,1.1907793432474136,0.8583361357450485,0.541559100151062,0.2754797339439392,0.08952295780181885,0.0042531490325927734,0.02910006046295166,0.16131597757339478,0.38627952337265015,0.9861863972619176,0.6590642631053925,0.36964523792266846,0.1499353051185608,0.02423149347305298,0.006435096263885498,0.0985141396522522,0.2902858853340149,0.5605428218841553,0.8793980479240417,1.21159029006958,1.520383358001709,1.7716287970542908,1.9375420212745667,1.999775230884552,1.9514462351799011,1.7978995442390442,1.5561155080795288,1.2528322637081146,0.9215890392661095,0.5990170538425446,0.3207886219024658,0.1176721453666687,0.012129783630371094,0.01583307981491089,0.12837249040603638,0.33730268478393555,0.6195186078548431,0.9438108615577221,1.2743169069290161,1.574487030506134,1.8111263513565063,1.9580655694007874,1.9990550875663757,1.9295620322227478,1.7572714686393738,1.5012364387512207,1.1897711157798767,0.8573195785284042,0.5406466424465179,0.2747722864151001,0.08909869194030762,0.004159033298492432,0.0293465256690979,1.607853889465332,1.313861221075058,0.9851595191285014,0.6580989956855774,0.3688483238220215,0.14939481019973755,0.024007320404052734,0.006551980972290039,0.09895914793014526,0.291009783744812,0.5614655613899231,0.880417600274086,1.212593913078308,1.5212600827217102,1.7722816467285156,1.9378988146781921,1.9997965097427368,1.9511296153068542,1.7972800731658936,1.5552616715431213,1.251838505268097,0.9205652624368668,0.5980764627456665,0.3200352191925049,0.11718928813934326,0.011970818042755127,0.016015589237213135,0.12887632846832275,0.33807212114334106,0.6204685568809509,0.944836251437664,1.2753043472766876,1.5753273367881775,1.8117265701293945,1.9583593606948853,1.9990099668502808,1.9291829466819763,1.7566003203392029,1.5003474950790405,1.1887626945972443,0.8563031852245331,0.5397346615791321,0.2740655541419983,0.08867543935775757,0.004065990447998047,1.834059715270996,1.6070380806922913,1.3128859400749207,0.984132656827569,0.657134085893631,0.36805206537246704,0.1488552689552307,0.023784160614013672,0.006669819355010986,0.09940505027770996,0.29173439741134644,0.5623887479305267,0.8814372792840004,1.2135973125696182,1.5221362113952637,1.7729336619377136,1.9382545948028564,1.999816656112671,1.9508119821548462,1.796659767627716,1.5544072389602661,1.2508445084095001,0.9195415675640106,0.5971362888813019,0.31928253173828125,0.11670738458633423,0.011812925338745117,0.016199171543121338,0.12938112020492554,0.3388422727584839,0.6214188933372498,0.9458617009222507,1.2762915194034576,1.5761670470237732,1.8123259544372559,1.958652138710022,1.998963713645935,1.9288028478622437,1.75592839717865,1.4994580447673798,1.1877540796995163,0.8552869260311127,0.5388231873512268,0.27335959672927856,0.08825308084487915,1.9685901999473572,1.8334926962852478,1.6062216758728027,1.3119103610515594,0.9831058103591204,0.6561695337295532,0.3672564625740051,0.1483166217803955,0.02356201410293579,0.006788790225982666,0.09985190629959106,0.29245972633361816,0.5633124113082886,0.8824570849537849,1.2146004736423492,1.5230118036270142,1.7735848426818848,1.9386093616485596,1.9998357892036438,1.950493335723877,1.7960386276245117,1.553552269935608,1.2498502135276794,0.918517954647541,0.5961965620517731,0.3185306191444397,0.11622637510299683,0.011656045913696289,0.016383826732635498,0.12988680601119995,0.33961308002471924,0.622369647026062,0.9468872062861919,1.2772783637046814,1.5770061016082764,1.8129244446754456,1.9589438438415527,1.9989164471626282,1.9284217953681946,1.7552556991577148,1.498568058013916,1.1867452561855316,0.8542708307504654,0.5379121601581573,1.9147652387619019,1.9966585636138916,1.9683343172073364,1.8329247832298279,1.6054046154022217,1.310934454202652,0.9820789825171232,0.6552053391933441,0.36646151542663574,0.14777886867523193,0.023340880870819092,0.006908774375915527,0.10029971599578857,0.29318588972091675,0.5642365217208862,0.883477009832859,1.2156034260988235,1.5238868594169617,1.7742352485656738,1.9389631748199463,1.9998539090156555,1.9501737356185913,1.7954165935516357,1.552696704864502,1.2488556653261185,0.9174944311380386,0.5952572226524353,0.3177793622016907,0.11574625968933105,0.011500239372253418,0.01656949520111084,0.13039344549179077,0.34038466215133667,0.6233207881450653,0.9479127712547779,1.2782649397850037,1.5778446197509766,1.8135221004486084,1.959234595298767,1.99886816740036,1.928039789199829,1.754582166671753,1.4976775646209717,1.1857362389564514,0.85325488448143,1.7324103116989136,1.9151796102523804,1.9967418909072876,1.9680774211883545,1.832356035709381,1.604586899280548,1.3099582195281982,0.9810521733015776,0.654241532087326,0.36566728353500366,0.14724206924438477,0.02312082052230835,0.007029831409454346,0.10074847936630249,0.29391270875930786,0.5651611089706421,0.8844970539212227,1.2166061401367188,1.5247613787651062,1.7748847603797913,1.9393159747123718,1.9998708963394165,1.9498530626296997,1.7947937846183777,1.5518405437469482,1.2478608638048172,0.9164709895849228,0.5943183302879333,0.31702882051467896,0.11526715755462646,0.011345446109771729,0.016756176948547363,0.13090097904205322,0.34115684032440186,0.6242723166942596,0.9489383846521378,1.279251217842102,1.5786824822425842,1.8141189217567444,1.9595243334770203,1.9988187551498413,1.9276567697525024,1.753907859325409,1.4967865347862244,1.1540700793266296,1.4695528447628021,1.733109176158905,1.9155930876731873,1.9968242049217224,1.9678194522857666,1.8317863941192627,1.603768527507782,1.3089816570281982,0.9800253845751286,0.6532780528068542,0.3648737072944641,0.14670610427856445,0.02290177345275879,0.007151901721954346,0.10119819641113281,0.29464030265808105,0.5660861432552338,0.8855172246694565,1.217608630657196,1.525635302066803,1.7755335569381714,1.9396677613258362,1.9998868703842163,1.9495314359664917,1.794170081615448,1.5509837865829468,1.2468657940626144,0.9154476374387741,0.5933798849582672,0.3162790536880493,0.1147889494895935,0.011191725730895996,0.01694387197494507,0.1314094066619873,0.3419297933578491,0.625224232673645,0.9499640576541424,1.2802371978759766,1.5795197486877441,1.8147148489952087,1.9598130583763123,1.9987683296203613,1.9272727370262146,1.7532327771186829,0.822559729218483,1.15508471429348,1.4704593420028687,1.7338072061538696,1.916005551815033,1.9969054460525513,1.9675605297088623,1.8312159180641174,1.6029495596885681,1.3080047369003296,0.9789986163377762,0.6523149609565735,0.3640807867050171,0.14617103338241577,0.02268373966217041,0.007275044918060303,0.10164880752563477,0.29536867141723633,0.5670116543769836,0.8865375220775604,1.2186108827590942,1.5265086889266968,1.7761814594268799,1.9400185942649841,1.999901831150055,1.9492087960243225,1.7935456037521362,1.5501264333724976,1.2458704710006714,0.9144243746995926,0.5924418568611145,0.315530002117157,0.11431163549423218,0.011039018630981445,0.01713263988494873,0.13191872835159302,0.3427034020423889,0.6261765658855438,0.9509897790849209,1.2812228798866272,1.5803563594818115,1.8153099417686462,1.960100769996643,1.9987168312072754,1.9268877506256104,0.5105526447296143,0.823570504784584,1.156099185347557,1.4713653326034546,1.734504520893097,1.9164170622825623,1.996985673904419,1.967300534248352,1.8306444883346558,1.6021299362182617,1.307027518749237,0.9779718704521656,0.6513522267341614,0.3632885217666626,0.1456369161605835,0.02246677875518799,0.007399201393127441,0.1021004319190979,0.2960977554321289,0.567937582731247,0.8875579312443733,1.2196129113435745,1.5273815393447876,1.7768285870552063,1.940368413925171,1.9999156594276428,1.9488851428031921,1.7929202318191528,1.5492685437202454,1.2448748797178268,0.9134012088179588,0.5915042459964752,0.3147816061973572,0.11383533477783203,0.010887324810028076,0.01732248067855835,0.13242900371551514,0.343477725982666,0.627129316329956,0.9520155563950539,1.282208263874054,1.5811923742294312,1.815904140472412,1.9603874683380127,0.07591861486434937,0.25234293937683105,0.511448472738266,0.8245814740657806,1.1571135073900223,1.47227081656456,1.7352010607719421,1.9168275594711304,1.9970648288726807,1.9670395851135254,1.8300722241401672,1.6013096570968628,1.3060500025749207,0.9769451469182968,0.6503898799419403,0.3624969720840454,0.14510363340377808,0.022250831127166748,0.007524430751800537,0.10255300998687744,0.29682761430740356,0.5688639879226685,0.8885784596204758,1.2206147015094757,1.5282537937164307,1.7774748802185059,1.9407172799110413,1.9999284744262695,1.9485605359077454,1.7922940254211426,1.5484100580215454,1.243879035115242,0.9123781248927116,0.5905670523643494,0.31403398513793945,0.11335992813110352,0.01073676347732544,0.01751333475112915,0.13294023275375366,0.34425270557403564,0.6280824244022369,0.9530413821339607,1.2831933498382568,1.582027792930603,1.8164975047111511,0.0017459392547607422,0.07631164789199829,0.2530253529548645,0.5123448073863983,0.8255926221609116,1.1581276506185532,1.4731757938861847,1.7358968257904053,1.9172371625900269,1.9971429109573364,1.9667775630950928,1.8294991254806519,1.6004887819290161,1.3050721287727356,0.9759184494614601,0.6494278907775879,0.36170607805252075,0.14457130432128906,0.02203589677810669,0.0076506733894348145,0.10300648212432861,0.2975581884384155,0.5697908699512482,0.8895991072058678,1.221616268157959,1.5291255116462708,1.7781203389167786,1.9410651326179504,1.9999402165412903,1.9482349157333374,1.7916670441627502,1.5475510358810425,1.2428829371929169,0.9113551378250122,0.5896303355693817,0.31328707933425903,0.11288541555404663,0.010587155818939209,0.017705202102661133,0.13345235586166382,0.34502846002578735,0.6290359199047089,0.9540672563016415,1.2841781675815582,1.5828626155853271,0.03729581832885742,0.001807093620300293,0.07670557498931885,0.25370854139328003,0.5132416486740112,0.826603963971138,1.159141629934311,1.4740802943706512,1.7365918159484863,1.9176457524299622,1.997219979763031,1.966514527797699,1.82892507314682,1.599667251110077,1.3040939271450043,0.9748917762190104,0.6484662592411041,0.3609158396720886,0.14403986930847168,0.021822035312652588,0.007777988910675049,0.10346090793609619,0.2982894778251648,0.5707181692123413,0.8906198740005493,1.2226175963878632,1.5299966931343079,1.7787650227546692,1.9414119720458984,1.9999509453773499,1.9479082822799683,1.7910391688346863,1.546691358089447,1.2418865710496902,0.9103322476148605,0.5886940062046051,0.3125408887863159,0.11241191625595093,0.010438680648803711,0.017898082733154297,0.1339653730392456,0.3458048105239868,0.6299898326396942,0.9550931826233864,0.4111328721046448,0.17866092920303345,0.03701847791671753,0.0018693208694458008,0.07710057497024536,0.25439250469207764,0.5141390264034271,0.8276154845952988,1.1601554453372955,1.4749842882156372,1.7372859716415405,1.918053388595581,1.9972959756851196,1.966250479221344,1.8283501863479614,1.5988450646400452,1.303115427494049,0.9738651290535927,0.6475050151348114,0.360126256942749,0.14350932836532593,0.021609127521514893,0.00790637731552124,0.10391634702682495,0.29902154207229614,0.5716459453105927,0.8916407525539398,1.2236187011003494,1.5308672785758972,1.7794088125228882,1.94175785779953,1.9999606013298035,1.947580635547638,1.7904104590415955,1.5458311438560486,1.2408899515867233,0.909309446811676,0.5877581238746643,0.3117954730987549,0.11193931102752686,0.01029115915298462,0.018092036247253418,0.13447928428649902,0.3465818762779236,0.6309441328048706,0.7077436149120331,0.41030317544937134,0.17807555198669434,0.03674215078353882,0.0019326210021972656,0.0774964690208435,0.2550772428512573,0.5150369107723236,0.8286271840333939,1.1611690819263458,1.4758877754211426,1.7379794120788574,1.9184600710868835,1.9973708987236023,1.9659854173660278,1.827774465084076,1.5980222821235657,1.3021366000175476,0.9728385098278522,0.6465441286563873,0.35933738946914673,0.1429796814918518,0.02139735221862793,0.008035778999328613,0.10437268018722534,0.29975438117980957,0.5725741684436798,0.8926617428660393,1.2246195524930954,1.5317373275756836,1.780051827430725,1.9421027302742004,1.9999691843986511,1.9472519755363464,1.7897809743881226,1.5449703335762024,1.2398930937051773,0.9082867428660393,0.5868226885795593,0.3110507130622864,0.11146765947341919,0.010144710540771484,0.018287062644958496,0.13499414920806885,1.3621595799922943,1.036477580666542,0.7067616283893585,0.40947407484054565,0.17749100923538208,0.03646683692932129,0.0019969940185546875,0.07789337635040283,0.25576281547546387,0.5159352719783783,0.8296390622854233,1.162182554602623,1.4767907559871674,1.7386720776557922,1.9188657999038696,1.9974448084831238,1.9657193422317505,1.827197790145874,1.5971988439559937,1.3011574447154999,0.9718119204044342,0.6455836296081543,0.35854917764663696,0.14245092868804932,0.021186530590057373,0.008166253566741943,0.10482996702194214,0.3004878759384155,0.5735028386116028,0.8936828523874283,1.2256201803684235,1.532606840133667,1.78069406747818,1.9424465894699097,1.9999766945838928,1.9469223618507385,1.789150595664978,1.5441089868545532,1.2388959676027298,0.9072641357779503,0.5858877003192902,0.31030672788619995,0.11099690198898315,0.009999334812164307,0.01848304271697998,1.6470087170600891,1.3612021207809448,1.0354512594640255,0.7057799398899078,0.4086455702781677,0.17690736055374146,0.03619253635406494,0.002062380313873291,0.07829123735427856,0.2564491629600525,0.5168341994285583,0.830651119351387,1.163195863366127,1.4776932299137115,1.7393639087677002,1.9192705154418945,1.9975176453590393,1.965452253818512,1.8266202807426453,1.5963748097419739,1.3001779913902283,0.9707853589206934,0.6446234881877899,0.3577616810798645,0.14192312955856323,0.020976781845092773,0.008297741413116455,0.10528814792633057,0.30122214555740356,0.5744319558143616,0.8947040736675262,1.2266205549240112,1.5334757566452026,1.7813354134559631,1.9427894353866577,1.9999831914901733,1.9465917348861694,1.7885193824768066,1.5432470440864563,1.237898588180542,0.9062416255474091,0.5849531292915344,0.30956345796585083,0.11052709817886353,0.00985497236251831,1.8607421517372131,1.6462253332138062,1.3602442741394043,1.0344249047338963,0.7047985792160034,0.4078177213668823,0.17632454633712769,0.035919249057769775,0.0021288394927978516,0.0786900520324707,0.2571362853050232,0.5177336037158966,0.8316633552312851,1.1642089933156967,1.4785952270030975,1.7400550246238708,1.919674277305603,1.9975894689559937,1.9651841521263123,1.8260419368743896,1.5955501198768616,1.2991982102394104,0.9697588291019201,0.6436637341976166,0.35697484016418457,0.141396164894104,0.020768046379089355,0.008430302143096924,0.10574734210968018,0.3019571900367737,0.5753615200519562,0.8957253992557526,1.227620705962181,1.5343440771102905,1.7819759249687195,1.9431313276290894,1.999988615512848,1.9462600946426392,1.7878873944282532,1.5423845648765564,1.236900970339775,0.9052192121744156,0.5840190052986145,0.308820903301239,1.9911554455757141,1.9798675179481506,1.8602189421653748,1.6454412341117859,1.3592860698699951,1.0333985090255737,0.7038175165653229,0.4069904685020447,0.17574262619018555,0.03564697504043579,0.0021963119506835938,0.07908987998962402,0.257824182510376,0.5186335146427155,0.8326757848262787,1.165221944451332,1.4794966876506805,1.7407453060150146,1.9200770854949951,1.9976601600646973,1.9649149775505066,1.8254626393318176,1.5947248339653015,1.2982181012630463,0.9687323309481144,0.6427043378353119,0.35618865489959717,0.14087015390396118,0.02056032419204712,0.008563876152038574,0.10620743036270142,0.30269289016723633,0.5762915313243866,0.8967468440532684,1.2286206036806107,1.5352119207382202,1.7826156616210938,1.9434722661972046,1.9999929666519165,1.9459274411201477,1.787254512310028,1.541521430015564,1.2359030991792679,0.9041969031095505,0.583085298538208,1.893296480178833,1.9912912249565125,1.979662001132965,1.85969477891922,1.644656479358673,1.358327478170395,1.0323720835149288,0.7028367519378662,0.40616387128829956,0.17516154050827026,0.03537571430206299,0.002264857292175293,0.07949066162109375,0.25851285457611084,0.5195339322090149,0.8336883783340454,1.1662347316741943,1.4803976714611053,1.7414348125457764,1.920478880405426,1.9977298974990845,1.9646448493003845,1.8248825073242188,1.593898892402649,1.2972376942634583,0.9677058681845665,0.6417453587055206,0.35540318489074707,0.14034503698349,0.02035367488861084,0.008698523044586182,0.10666847229003906,0.30342942476272583,0.5772219896316528,0.8977683931589127,1.2296202778816223,1.5360791087150574,1.7832545638084412,1.9438121318817139,1.999996304512024,1.9455938339233398,1.786620855331421,1.5406578183174133,1.2349049746990204,1.4236378073692322,1.6972512006759644,1.8937575817108154,1.9914259314537048,1.9794554114341736,1.8591697216033936,1.643871009349823,1.3573684990406036,1.031345620751381,0.7018563151359558,0.4053378701210022,0.1745813488960266,0.03510546684265137,0.0023344755172729492,0.07989239692687988,0.2592023015022278,0.5204348564147949,0.8347011357545853,1.167247325181961,1.4812981188297272,1.742123544216156,1.9208797216415405,1.997798502445221,1.9643736481666565,1.824301540851593,1.5930723547935486,1.2962569892406464,0.966679435223341,0.6407867074012756,0.3546183705329895,0.1398208737373352,0.020148038864135742,0.00883418321609497,0.10713046789169312,0.30416661500930786,0.5781529247760773,0.8987900465726852,1.2306196987628937,1.5369457602500916,1.7838926315307617,1.9441510438919067,1.9999985694885254,1.945259153842926,1.7859863638877869,1.5397935509681702,1.1041970327496529,1.4245678782463074,1.6979869604110718,1.8942177295684814,1.991559624671936,1.9792477488517761,1.8586437702178955,1.6430848836898804,1.3564091324806213,1.0303191244602203,0.7008762061595917,0.40451252460479736,0.1740020513534546,0.0348362922668457,0.0024051666259765625,0.08029508590698242,0.2598925232887268,0.5213363170623779,0.8357140868902206,1.1682597547769547,1.4821980893611908,1.7428115010261536,1.9212796092033386,1.9978660941123962,1.964101493358612,1.8237196803092957,1.5922451615333557,1.2952759265899658,0.9656530395150185,0.6398284733295441,0.35383421182632446,0.13929754495620728,0.019943416118621826,0.008970916271209717,0.10759341716766357,0.304904580116272,0.5790842771530151,0.8998118117451668,1.231618881225586,1.5378118753433228,1.7845298647880554,1.9444889426231384,1.999999761581421,1.9449235796928406,1.7853509783744812,0.7733034789562225,1.1052183732390404,1.4254974722862244,1.6987220644950867,1.8946769833564758,1.9916922450065613,1.9790391325950623,1.8581169247627258,1.6422981023788452,1.3554494082927704,1.0292925965040922,0.6998963952064514,0.4036877751350403,0.17342358827590942,0.034568071365356445,0.0024768710136413574,0.08069878816604614,0.2605835795402527,0.5222382545471191,0.8367272019386292,1.169272020459175,1.4830975234508514,1.743498682975769,1.9216785430908203,1.9979326128959656,1.9638282656669617,1.8231369256973267,1.5914173126220703,1.2942945957183838,0.9646266810595989,0.6388705968856812,0.35305076837539673,0.13877516984939575,0.019739866256713867,0.00910872220993042,0.10805732011795044,0.3056432604789734,0.5800160765647888,0.9008336812257767,1.232617810368538,1.5386773943901062,1.7851662635803223,1.9448258876800537,1.9999999403953552,0.21925723552703857,0.46732717752456665,0.7743038535118103,1.106239601969719,1.4264266192913055,1.6994563937187195,1.8951352834701538,1.9918237924575806,1.9788294434547424,1.8575891852378845,1.6415106058120728,1.3544892966747284,1.0282660387456417,0.6989169120788574,0.40286368131637573,0.1728460192680359,0.034300923347473145,0.002549588680267334,0.08110344409942627,0.26127535104751587,0.5231406986713409,0.8377404808998108,1.1702840924263,1.4839964807033539,1.7441850900650024,1.9220764636993408,1.9979981184005737,1.96355402469635,1.8225533366203308,1.5905888676643372,1.2933129370212555,0.9636003598570824,0.6379131078720093,0.3522679805755615,0.13825368881225586,0.01953732967376709,0.009247541427612305,0.10852211713790894,0.3063826560974121,0.5809482932090759,0.9018556550145149,1.2336165010929108,1.5395423769950867,1.7858018279075623,1.945161759853363,0.05787116289138794,0.21989935636520386,0.4681966304779053,0.775304451584816,1.107260711491108,1.427355319261551,1.7001899480819702,1.8955926299095154,1.9919543266296387,1.9786187410354614,1.8570604920387268,1.6407224535942078,1.3535288274288177,1.0272394511848688,0.6979377567768097,0.4020402431488037,0.17226934432983398,0.03403472900390625,0.002623438835144043,0.0815090537071228,0.2619679570198059,0.5240436494350433,0.838753953576088,1.1712959855794907,1.4848949015140533,1.7448707222938538,1.922473430633545,1.9980624914169312,1.9632787704467773,1.8219688534736633,1.5897598266601562,1.2923309803009033,0.9625740759074688,0.6369560062885284,0.3514859080314636,0.1377331018447876,0.01933586597442627,0.009387373924255371,0.10898786783218384,0.3071228265762329,0.5818809866905212,0.9028777331113815,1.2346149384975433,1.5404067635536194,1.7864366173744202,3.8743019104003906e-5,0.0582159161567688,0.220542311668396,0.4690666198730469,0.7763052880764008,1.1082817167043686],"x":[-1.6470994e6,-4.5286444e14,-9.057289e14,-1.3585933e15,-1.8114578e15,-2.264322e15,-2.7171866e15,-3.170051e15,-3.6229155e15,-4.0757798e15,-4.528644e15,-4.9815087e15,-5.434373e15,-5.887238e15,-6.340102e15,-6.7929664e15,-7.245831e15,-7.6986956e15,-8.1515596e15,-8.604424e15,-9.057288e15,-9.510153e15,-9.963017e15,-1.0415882e16,-1.0868747e16,-1.1321611e16,-1.1774476e16,-1.2227339e16,-1.2680204e16,-1.3133068e16,-1.3585933e16,-1.4038797e16,-1.4491662e16,-1.4944527e16,-1.5397391e16,-1.5850255e16,-1.6303119e16,-1.6755984e16,-1.7208848e16,-1.7661713e16,-1.8114576e16,-1.8567442e16,-1.9020306e16,-1.9473171e16,-1.9926035e16,-2.03789e16,-2.0831764e16,-2.1284627e16,-2.1737493e16,-2.2190357e16,-2.2643222e16,-2.3096086e16,-2.3548951e16,-2.4001815e16,-2.4454678e16,-2.4907544e16,-2.5360407e16,-2.5813273e16,-2.6266137e16,-2.6719002e16,-2.7171866e16,-2.7624731e16,-2.8077595e16,-2.8530458e16,-2.8983324e16,-2.9436188e16,-2.9889053e16,-3.0341917e16,-3.0794782e16,-3.1247646e16,-3.170051e16,-3.2153375e16,-3.2606239e16,-3.3059104e16,-3.3511968e16,-3.3964833e16,-3.4417697e16,-3.487056e16,-3.5323426e16,-3.577629e16,-3.6229153e16,-3.668202e16,-3.7134884e16,-3.758775e16,-3.804061e16,-3.8493477e16,-3.8946343e16,-3.9399204e16,-3.985207e16,-4.0304935e16,-4.07578e16,-4.1210662e16,-4.1663528e16,-4.2116393e16,-4.2569255e16,-4.302212e16,-4.3474986e16,-4.392785e16,-4.4380713e16,-4.483358e16,-4.5286444e16,-4.5739306e16,-4.619217e16,-4.6645037e16,-4.7097903e16,-4.7550764e16,-4.800363e16,-4.8456495e16,-4.8909357e16,-4.9362222e16,-4.981509e16,-5.0267954e16,-5.0720815e16,-5.117368e16,-5.1626546e16,-5.2079408e16,-5.2532273e16,-5.298514e16,-5.3438005e16,-5.3890866e16,-5.434373e16,-5.4796597e16,-5.5249463e16,-5.5702324e16,-5.615519e16,-5.6608056e16,-5.7060917e16,-5.7513783e16,-5.796665e16,-5.8419514e16,-5.8872375e16,-5.932524e16,-5.9778106e16,-6.0230968e16,-6.0683833e16,-6.11367e16,-6.1589565e16,-6.2042426e16,-6.249529e16,-6.2948157e16,-6.340102e16,-6.3853884e16,-6.430675e16,-6.4759616e16,-6.5212477e16,-6.5665343e16,-6.611821e16,-6.657107e16,-6.7023935e16,-6.74768e16,-6.7929667e16,-6.838253e16,-6.8835394e16,-6.928826e16,-6.974112e16,-7.0193986e16,-7.064685e16,-7.1099718e16,-7.155258e16,-7.2005445e16,-7.245831e16,-7.291118e16,-7.336404e16,-7.38169e16,-7.426977e16,-7.472263e16,-7.51755e16,-7.562836e16,-7.608122e16,-7.653409e16,-7.698695e16,-7.7439815e16,-7.7892685e16,-7.834555e16,-7.879841e16,-7.925128e16,-7.970414e16,-8.0157e16,-8.060987e16,-8.106273e16,-8.15156e16,-8.196846e16,-8.2421324e16,-8.2874194e16,-8.3327056e16,-8.377992e16,-8.423279e16,-8.468565e16,-8.513851e16,-8.559138e16,-8.604424e16,-8.64971e16,-8.694997e16,-8.740283e16,-8.78557e16,-8.8308565e16,-8.876143e16,-8.92143e16,-8.966716e16,-9.012002e16,-9.057289e16,-9.102575e16,-9.147861e16,-9.193148e16,-9.238434e16,-9.283721e16,-9.329007e16,-9.3742935e16,-9.4195805e16,-9.464867e16,-9.510153e16,-9.55544e16,-9.600726e16,-9.646012e16,-9.691299e16,-9.736585e16,-9.781871e16,-9.827158e16,-9.8724445e16,-9.9177315e16,-9.963018e16,-1.0008304e17,-1.0053591e17,-1.0098877e17,-1.0144163e17,-1.018945e17,-1.0234736e17,-1.0280022e17,-1.0325309e17,-1.0370595e17,-1.04158815e17,-1.04611685e17,-1.0506455e17,-1.0551742e17,-1.0597028e17,-1.0642314e17,-1.0687601e17,-1.0732887e17,-1.0778173e17,-1.082346e17,-1.0868746e17,-1.09140324e17,-1.09593194e17,-1.1004606e17,-1.1049893e17,-1.1095179e17,-1.1140465e17,-1.1185752e17,-1.1231038e17,-1.1276324e17,-1.1321611e17,-1.1366897e17,-1.1412183e17,-1.145747e17,-1.15027565e17,-1.1548043e17,-1.159333e17,-1.1638616e17,-1.1683903e17,-1.1729189e17,-1.1774475e17,-1.1819762e17,-1.1865048e17,-1.1910334e17,-1.1955621e17,-1.2000907e17,-1.20461936e17,-1.20914806e17,-1.2136767e17,-1.2182053e17,-1.222734e17,-1.2272626e17,-1.2317913e17,-1.2363199e17,-1.2408485e17,-1.2453772e17,-1.2499058e17,-1.25443445e17,-1.25896315e17,-1.2634918e17,-1.2680204e17,-1.2725491e17,-1.2770777e17,-1.2816063e17,-1.286135e17,-1.2906636e17,-1.2951923e17,-1.2997209e17,-1.3042495e17,-1.3087782e17,-1.31330685e17,-1.3178355e17,-1.3223642e17,-1.3268928e17,-1.3314214e17,-1.3359501e17,-1.3404787e17,-1.3450074e17,-1.349536e17,-1.3540646e17,-1.3585933e17,-1.36312195e17,-1.3676506e17,-1.3721793e17,-1.3767079e17,-1.3812365e17,-1.3857652e17,-1.3902938e17,-1.3948224e17,-1.3993511e17,-1.4038797e17,-1.4084084e17,-1.412937e17,-1.41746565e17,-1.42199435e17,-1.426523e17,-1.4310516e17,-1.4355803e17,-1.4401089e17,-1.4446375e17,-1.4491661e17,-1.4536949e17,-1.4582235e17,-1.4627521e17,-1.4672807e17,-1.4718094e17,-1.476338e17,-1.4808668e17,-1.4853954e17,-1.489924e17,-1.4944526e17,-1.4989812e17,-1.50351e17,-1.5080386e17,-1.5125672e17,-1.5170958e17,-1.5216244e17,-1.526153e17,-1.5306818e17,-1.5352105e17,-1.539739e17,-1.5442677e17,-1.5487963e17,-1.5533251e17,-1.5578537e17,-1.5623823e17,-1.566911e17,-1.5714395e17,-1.5759682e17,-1.580497e17,-1.5850256e17,-1.5895542e17,-1.5940828e17,-1.5986114e17,-1.60314e17,-1.6076688e17,-1.6121974e17,-1.616726e17,-1.6212546e17,-1.6257832e17,-1.630312e17,-1.6348406e17,-1.6393693e17,-1.6438979e17,-1.6484265e17,-1.6529551e17,-1.6574839e17,-1.6620125e17,-1.6665411e17,-1.6710697e17,-1.6755983e17,-1.6801271e17,-1.6846557e17,-1.6891844e17,-1.693713e17,-1.6982416e17,-1.7027702e17,-1.707299e17,-1.7118276e17,-1.7163562e17,-1.7208848e17,-1.7254134e17,-1.729942e17,-1.7344708e17,-1.7389994e17,-1.743528e17,-1.7480567e17,-1.7525853e17,-1.757114e17,-1.7616427e17,-1.7661713e17,-1.7706999e17,-1.7752285e17,-1.7797571e17,-1.784286e17,-1.7888145e17,-1.7933432e17,-1.7978718e17,-1.8024004e17,-1.8069292e17,-1.8114578e17,-1.8159864e17,-1.820515e17,-1.8250436e17,-1.8295722e17,-1.834101e17,-1.8386296e17,-1.8431582e17,-1.8476869e17,-1.8522155e17,-1.8567443e17,-1.8612729e17,-1.8658015e17,-1.8703301e17,-1.8748587e17,-1.8793873e17,-1.8839161e17,-1.8884447e17,-1.8929733e17,-1.897502e17,-1.9020306e17,-1.9065592e17,-1.911088e17,-1.9156166e17,-1.9201452e17,-1.9246738e17,-1.9292024e17,-1.9337312e17,-1.9382598e17,-1.9427884e17,-1.947317e17,-1.9518457e17,-1.9563743e17,-1.960903e17,-1.9654317e17,-1.9699603e17,-1.9744889e17,-1.9790175e17,-1.9835463e17,-1.9880749e17,-1.9926035e17,-1.9971321e17,-2.0016607e17,-2.0061894e17,-2.0107181e17,-2.0152468e17,-2.0197754e17,-2.024304e17,-2.0288326e17,-2.0333614e17,-2.03789e17,-2.0424186e17,-2.0469472e17,-2.0514758e17,-2.0560045e17,-2.0605332e17,-2.0650619e17,-2.0695905e17,-2.074119e17,-2.0786477e17,-2.0831763e17,-2.0877051e17,-2.0922337e17,-2.0967623e17,-2.101291e17,-2.1058195e17,-2.1103483e17,-2.114877e17,-2.1194056e17,-2.1239342e17,-2.1284628e17,-2.1329914e17,-2.1375202e17,-2.1420488e17,-2.1465774e17,-2.151106e17,-2.1556346e17,-2.1601634e17,-2.164692e17,-2.1692206e17,-2.1737493e17,-2.1782779e17,-2.1828065e17,-2.1873353e17,-2.1918639e17,-2.1963925e17,-2.2009211e17,-2.2054497e17,-2.2099785e17,-2.2145071e17,-2.2190357e17,-2.2235644e17,-2.228093e17,-2.2326216e17,-2.2371504e17,-2.241679e17,-2.2462076e17,-2.2507362e17,-2.2552648e17,-2.2597934e17,-2.2643222e17,-2.2688508e17,-2.2733794e17,-2.277908e17,-2.2824367e17,-2.2869655e17,-2.291494e17,-2.2960227e17,-2.3005513e17,-2.3050799e17,-2.3096085e17,-2.3141373e17,-2.318666e17,-2.3231945e17,-2.3277232e17,-2.3322518e17,-2.3367806e17,-2.3413092e17,-2.3458378e17,-2.3503664e17,-2.354895e17,-2.3594236e17,-2.3639524e17,-2.368481e17,-2.3730096e17,-2.3775382e17,-2.3820669e17,-2.3865955e17,-2.3911243e17,-2.3956529e17,-2.4001815e17,-2.4047101e17,-2.4092387e17,-2.4137675e17,-2.4182961e17,-2.4228247e17,-2.4273533e17,-2.431882e17,-2.4364106e17,-2.4409394e17,-2.445468e17,-2.4499966e17,-2.4545252e17,-2.4590538e17,-2.4635826e17,-2.4681112e17,-2.4726398e17,-2.4771684e17,-2.481697e17,-2.4862257e17,-2.4907544e17,-2.495283e17,-2.4998117e17,-2.5043403e17,-2.5088689e17,-2.5133977e17,-2.5179263e17,-2.5224549e17,-2.5269835e17,-2.5315121e17,-2.5360407e17,-2.5405695e17,-2.5450981e17,-2.5496268e17,-2.5541554e17,-2.558684e17,-2.5632126e17,-2.5677414e17,-2.57227e17,-2.5767986e17,-2.5813272e17,-2.5858558e17,-2.5903846e17,-2.5949132e17,-2.5994419e17,-2.6039705e17,-2.608499e17,-2.6130277e17,-2.6175565e17,-2.6220851e17,-2.6266137e17,-2.6311423e17,-2.635671e17,-2.6401997e17,-2.6447283e17,-2.649257e17,-2.6537856e17,-2.6583142e17,-2.6628428e17,-2.6673716e17,-2.6719002e17,-2.6764288e17,-2.6809574e17,-2.685486e17,-2.6900148e17,-2.6945434e17,-2.699072e17,-2.7036007e17,-2.7081293e17,-2.7126579e17,-2.7171867e17,-2.7217153e17,-2.7262439e17,-2.7307725e17,-2.7353011e17,-2.7398297e17,-2.7443585e17,-2.7488871e17,-2.7534157e17,-2.7579444e17,-2.762473e17,-2.7670018e17,-2.7715304e17,-2.776059e17,-2.7805876e17,-2.7851162e17,-2.7896448e17,-2.7941736e17,-2.7987022e17,-2.8032308e17,-2.8077595e17,-2.812288e17,-2.8168168e17,-2.8213455e17,-2.825874e17,-2.8304027e17,-2.8349313e17,-2.83946e17,-2.8439887e17,-2.8485173e17,-2.853046e17,-2.8575745e17,-2.8621032e17,-2.866632e17,-2.8711606e17,-2.8756892e17,-2.8802178e17,-2.8847464e17,-2.889275e17,-2.8938036e17,-2.8983322e17,-2.902861e17,-2.9073898e17,-2.9119184e17,-2.916447e17,-2.9209756e17,-2.9255043e17,-2.930033e17,-2.9345615e17,-2.93909e17,-2.9436187e17,-2.9481473e17,-2.952676e17,-2.957205e17,-2.9617335e17,-2.966262e17,-2.9707907e17,-2.9753194e17,-2.979848e17,-2.9843766e17,-2.9889052e17,-2.9934338e17,-2.9979624e17,-3.002491e17,-3.00702e17,-3.0115486e17,-3.0160772e17,-3.020606e17,-3.0251344e17,-3.029663e17,-3.0341917e17,-3.0387203e17,-3.043249e17,-3.0477775e17,-3.052306e17,-3.056835e17,-3.0613637e17,-3.0658923e17,-3.070421e17,-3.0749495e17,-3.079478e17,-3.0840068e17,-3.0885354e17,-3.093064e17,-3.0975926e17,-3.1021212e17,-3.1066502e17,-3.1111788e17,-3.1157074e17,-3.120236e17,-3.1247646e17,-3.1292932e17,-3.133822e17,-3.1383505e17,-3.142879e17,-3.1474077e17,-3.1519363e17,-3.156465e17,-3.160994e17,-3.1655225e17,-3.170051e17,-3.1745797e17,-3.1791083e17,-3.183637e17,-3.1881656e17,-3.1926942e17,-3.1972228e17,-3.2017514e17,-3.20628e17,-3.210809e17,-3.2153376e17,-3.2198662e17,-3.2243948e17,-3.2289234e17,-3.233452e17,-3.2379807e17,-3.2425093e17,-3.247038e17,-3.2515665e17,-3.256095e17,-3.260624e17,-3.2651527e17,-3.2696813e17,-3.27421e17,-3.2787385e17,-3.283267e17,-3.2877957e17,-3.2923244e17,-3.296853e17,-3.3013816e17,-3.3059102e17,-3.310439e17,-3.3149678e17,-3.3194964e17,-3.324025e17,-3.3285536e17,-3.3330822e17,-3.337611e17,-3.3421395e17,-3.346668e17,-3.3511967e17,-3.3557253e17,-3.3602543e17,-3.364783e17,-3.3693115e17,-3.37384e17,-3.3783687e17,-3.3828973e17,-3.387426e17,-3.3919545e17,-3.396483e17,-3.4010118e17,-3.4055404e17,-3.4100693e17,-3.414598e17,-3.4191266e17,-3.4236552e17,-3.4281838e17,-3.4327124e17,-3.437241e17,-3.4417696e17,-3.4462983e17,-3.450827e17,-3.4553555e17,-3.459884e17,-3.464413e17,-3.4689417e17,-3.4734703e17,-3.477999e17,-3.4825275e17,-3.487056e17,-3.4915847e17,-3.4961133e17,-3.500642e17,-3.5051706e17,-3.5096992e17,-3.514228e17,-3.5187568e17,-3.5232854e17,-3.527814e17,-3.5323426e17,-3.5368712e17,-3.5413998e17,-3.5459284e17,-3.550457e17,-3.5549857e17,-3.5595143e17,-3.5640432e17,-3.568572e17,-3.5731005e17,-3.577629e17,-3.5821577e17,-3.5866863e17,-3.591215e17,-3.5957435e17,-3.600272e17,-3.6048008e17,-3.6093294e17,-3.6138583e17,-3.618387e17,-3.6229156e17,-3.627444e17,-3.6319728e17,-3.6365014e17,-3.64103e17,-3.6455586e17,-3.6500872e17,-3.654616e17,-3.6591445e17,-3.6636734e17,-3.668202e17,-3.6727306e17,-3.6772593e17,-3.681788e17,-3.6863165e17,-3.690845e17,-3.6953737e17,-3.6999023e17,-3.704431e17,-3.7089596e17,-3.7134885e17,-3.718017e17,-3.7225457e17,-3.7270744e17,-3.731603e17,-3.7361316e17,-3.7406602e17,-3.7451888e17,-3.7497174e17,-3.754246e17,-3.7587746e17,-3.7633036e17,-3.7678322e17,-3.772361e17,-3.7768894e17,-3.781418e17,-3.7859467e17,-3.7904753e17,-3.795004e17,-3.7995325e17,-3.804061e17,-3.8085897e17,-3.8131184e17,-3.8176473e17,-3.822176e17,-3.8267045e17,-3.831233e17,-3.8357618e17,-3.8402904e17,-3.844819e17,-3.8493476e17,-3.8538762e17,-3.858405e17,-3.8629334e17,-3.8674624e17,-3.871991e17,-3.8765196e17,-3.8810482e17,-3.885577e17,-3.8901055e17,-3.894634e17,-3.8991627e17,-3.9036913e17,-3.90822e17,-3.9127485e17,-3.9172775e17,-3.921806e17,-3.9263347e17,-3.9308633e17,-3.935392e17,-3.9399206e17,-3.9444492e17,-3.9489778e17,-3.9535064e17,-3.958035e17,-3.9625636e17,-3.9670926e17,-3.9716212e17,-3.9761498e17,-3.9806784e17,-3.985207e17,-3.9897357e17,-3.9942643e17,-3.998793e17,-4.0033215e17,-4.00785e17,-4.0123787e17,-4.0169077e17,-4.0214363e17,-4.025965e17,-4.0304935e17,-4.035022e17,-4.0395507e17,-4.0440794e17,-4.048608e17,-4.0531366e17,-4.0576652e17,-4.0621938e17,-4.0667228e17,-4.0712514e17,-4.07578e17,-4.0803086e17,-4.0848372e17,-4.089366e17,-4.0938945e17,-4.098423e17,-4.1029517e17,-4.1074803e17,-4.112009e17,-4.1165375e17,-4.1210665e17,-4.125595e17,-4.1301237e17,-4.1346523e17,-4.139181e17,-4.1437095e17,-4.148238e17,-4.1527668e17,-4.1572954e17,-4.161824e17,-4.1663526e17,-4.1708816e17,-4.1754102e17,-4.1799388e17,-4.1844674e17,-4.188996e17,-4.1935246e17,-4.1980532e17,-4.202582e17,-4.2071105e17,-4.211639e17,-4.2161677e17,-4.2206967e17,-4.2252253e17,-4.229754e17,-4.2342825e17,-4.238811e17,-4.2433397e17,-4.2478683e17,-4.252397e17,-4.2569256e17,-4.2614542e17,-4.2659828e17,-4.2705118e17,-4.2750404e17,-4.279569e17,-4.2840976e17,-4.2886262e17,-4.2931548e17,-4.2976834e17,-4.302212e17,-4.3067407e17,-4.3112693e17,-4.315798e17,-4.320327e17,-4.3248555e17,-4.329384e17,-4.3339127e17,-4.3384413e17,-4.34297e17,-4.3474985e17,-4.352027e17,-4.3565558e17,-4.3610844e17,-4.365613e17,-4.370142e17,-4.3746706e17,-4.379199e17,-4.3837278e17,-4.3882564e17,-4.392785e17,-4.3973136e17,-4.4018422e17,-4.406371e17,-4.4108995e17,-4.415428e17,-4.419957e17,-4.4244856e17,-4.4290143e17,-4.433543e17,-4.4380715e17,-4.4426e17,-4.4471287e17,-4.4516573e17,-4.456186e17,-4.4607146e17,-4.465243e17,-4.4697718e17,-4.4743007e17,-4.4788293e17,-4.483358e17,-4.4878866e17,-4.4924152e17,-4.4969438e17,-4.5014724e17,-4.506001e17,-4.5105296e17,-4.5150583e17,-4.519587e17,-4.5241158e17,-4.5286444e17,-4.533173e17,-4.5377017e17,-4.5422303e17,-4.546759e17,-4.5512875e17,-4.555816e17,-4.5603447e17,-4.5648733e17,-4.569402e17,-4.573931e17,-4.5784595e17,-4.582988e17,-4.5875168e17,-4.5920454e17,-4.596574e17,-4.6011026e17,-4.6056312e17,-4.6101598e17,-4.6146884e17,-4.619217e17,-4.623746e17,-4.6282746e17,-4.6328032e17,-4.637332e17,-4.6418605e17,-4.646389e17,-4.6509177e17,-4.6554463e17,-4.659975e17,-4.6645035e17,-4.669032e17,-4.673561e17,-4.6780897e17,-4.6826183e17,-4.687147e17,-4.6916756e17,-4.696204e17,-4.7007328e17,-4.7052614e17,-4.70979e17,-4.7143186e17,-4.7188472e17,-4.7233762e17,-4.7279048e17,-4.7324334e17,-4.736962e17,-4.7414907e17,-4.7460193e17,-4.750548e17,-4.7550765e17,-4.759605e17,-4.7641337e17,-4.7686623e17,-4.773191e17,-4.77772e17,-4.7822485e17,-4.786777e17,-4.7913057e17,-4.7958344e17,-4.800363e17,-4.8048916e17,-4.8094202e17,-4.8139488e17,-4.8184774e17,-4.823006e17,-4.827535e17,-4.8320636e17,-4.8365922e17,-4.841121e17,-4.8456494e17,-4.850178e17,-4.8547067e17,-4.8592353e17,-4.863764e17,-4.8682925e17,-4.872821e17,-4.87735e17,-4.8818787e17,-4.8864073e17,-4.890936e17,-4.8954645e17,-4.899993e17,-4.9045218e17,-4.9090504e17,-4.913579e17,-4.9181076e17,-4.9226362e17,-4.9271652e17,-4.9316938e17,-4.9362224e17,-4.940751e17,-4.9452796e17,-4.9498082e17,-4.954337e17,-4.9588655e17,-4.963394e17,-4.9679227e17,-4.9724513e17,-4.9769803e17,-4.981509e17,-4.9860375e17,-4.990566e17,-4.9950947e17,-4.9996233e17,-5.004152e17,-5.0086806e17,-5.0132092e17,-5.0177378e17,-5.0222664e17,-5.0267954e17,-5.031324e17,-5.0358526e17,-5.0403812e17,-5.0449098e17,-5.0494384e17,-5.053967e17,-5.0584957e17,-5.0630243e17,-5.067553e17,-5.0720815e17,-5.0766105e17,-5.081139e17,-5.0856677e17,-5.0901963e17,-5.094725e17,-5.0992535e17,-5.103782e17,-5.1083108e17,-5.1128394e17,-5.117368e17,-5.1218966e17,-5.1264252e17,-5.130954e17,-5.1354828e17,-5.1400114e17,-5.14454e17,-5.1490686e17,-5.1535972e17,-5.158126e17,-5.1626545e17,-5.167183e17,-5.1717117e17,-5.1762403e17,-5.1807693e17,-5.185298e17,-5.1898265e17,-5.194355e17,-5.1988837e17,-5.2034123e17,-5.207941e17,-5.2124695e17,-5.216998e17,-5.2215268e17,-5.2260554e17,-5.2305843e17,-5.235113e17,-5.2396416e17,-5.2441702e17,-5.2486988e17,-5.2532274e17,-5.257756e17,-5.2622846e17,-5.2668133e17,-5.271342e17,-5.2758705e17,-5.2803994e17,-5.284928e17,-5.2894567e17,-5.2939853e17,-5.298514e17,-5.3030425e17,-5.307571e17,-5.3120997e17,-5.3166283e17,-5.321157e17,-5.3256856e17,-5.3302145e17,-5.334743e17,-5.3392718e17,-5.3438004e17,-5.348329e17,-5.3528576e17,-5.3573862e17,-5.3619148e17,-5.3664434e17,-5.370972e17,-5.3755007e17,-5.3800296e17,-5.3845582e17,-5.389087e17,-5.3936155e17,-5.398144e17,-5.4026727e17,-5.4072013e17,-5.41173e17,-5.4162585e17,-5.420787e17,-5.4253158e17,-5.4298444e17,-5.4343733e17,-5.438902e17,-5.4434306e17,-5.447959e17,-5.4524878e17,-5.4570164e17,-5.461545e17,-5.4660736e17,-5.4706022e17,-5.475131e17,-5.4796595e17,-5.4841884e17,-5.488717e17,-5.4932456e17,-5.4977743e17,-5.502303e17,-5.5068315e17,-5.51136e17,-5.5158887e17,-5.5204173e17,-5.524946e17,-5.5294746e17,-5.5340035e17,-5.538532e17,-5.5430607e17,-5.5475894e17,-5.552118e17,-5.5566466e17,-5.5611752e17,-5.5657038e17,-5.5702324e17,-5.574761e17,-5.5792896e17,-5.5838186e17,-5.5883472e17,-5.592876e17,-5.5974044e17,-5.601933e17,-5.6064617e17,-5.6109903e17,-5.615519e17,-5.6200475e17,-5.624576e17,-5.6291047e17,-5.6336337e17,-5.6381623e17,-5.642691e17,-5.6472195e17,-5.651748e17,-5.6562768e17,-5.6608054e17,-5.665334e17,-5.6698626e17,-5.6743912e17,-5.67892e17,-5.6834488e17,-5.6879774e17,-5.692506e17,-5.6970346e17,-5.7015632e17,-5.706092e17,-5.7106205e17,-5.715149e17,-5.7196777e17,-5.7242063e17,-5.728735e17,-5.733264e17,-5.7377925e17,-5.742321e17,-5.7468497e17,-5.7513783e17,-5.755907e17,-5.7604356e17,-5.764964e17,-5.769493e17,-5.7740214e17,-5.77855e17,-5.7830786e17,-5.787607e17,-5.792136e17,-5.7966645e17,-5.801193e17,-5.805722e17,-5.810251e17,-5.8147796e17,-5.819308e17,-5.823837e17,-5.8283655e17,-5.832894e17,-5.837423e17,-5.841951e17,-5.84648e17,-5.8510085e17,-5.855537e17,-5.860066e17,-5.8645944e17,-5.869123e17,-5.8736516e17,-5.87818e17,-5.882709e17,-5.8872374e17,-5.891766e17,-5.8962947e17,-5.900823e17,-5.905352e17,-5.909881e17,-5.91441e17,-5.9189384e17,-5.923467e17,-5.9279956e17,-5.932524e17,-5.937053e17,-5.9415815e17,-5.94611e17,-5.950639e17,-5.955167e17,-5.959696e17,-5.9642245e17,-5.968753e17,-5.973282e17,-5.9778104e17,-5.982339e17,-5.9868676e17,-5.991396e17,-5.995925e17,-6.0004535e17,-6.004982e17,-6.009511e17,-6.01404e17,-6.0185686e17,-6.023097e17,-6.027626e17,-6.0321544e17,-6.036683e17,-6.041212e17,-6.04574e17,-6.050269e17,-6.0547975e17,-6.059326e17,-6.063855e17,-6.0683833e17,-6.072912e17,-6.0774406e17,-6.081969e17,-6.086498e17,-6.0910264e17,-6.095555e17,-6.1000836e17,-6.104612e17,-6.109141e17,-6.11367e17,-6.118199e17,-6.1227274e17,-6.127256e17,-6.1317846e17,-6.136313e17,-6.140842e17,-6.1453705e17,-6.149899e17,-6.154428e17,-6.158956e17,-6.163485e17,-6.1680135e17,-6.172542e17,-6.177071e17,-6.1815994e17,-6.186128e17,-6.1906566e17,-6.195185e17,-6.199714e17,-6.2042424e17,-6.208771e17,-6.2133004e17,-6.217829e17,-6.2223576e17,-6.226886e17,-6.231415e17,-6.2359434e17,-6.240472e17,-6.2450006e17,-6.249529e17,-6.254058e17,-6.2585865e17,-6.263115e17,-6.267644e17,-6.272172e17,-6.276701e17,-6.2812296e17,-6.285758e17,-6.290287e17,-6.2948154e17,-6.299344e17,-6.3038726e17,-6.308401e17,-6.31293e17,-6.317459e17,-6.321988e17,-6.3265164e17,-6.331045e17,-6.3355736e17,-6.340102e17,-6.344631e17,-6.3491594e17,-6.353688e17,-6.358217e17,-6.362745e17,-6.367274e17,-6.3718025e17,-6.376331e17,-6.38086e17,-6.3853884e17,-6.389917e17,-6.3944456e17,-6.398974e17,-6.403503e17,-6.4080314e17,-6.41256e17,-6.417089e17,-6.421618e17,-6.4261466e17,-6.430675e17,-6.435204e17,-6.4397324e17,-6.444261e17,-6.4487896e17,-6.453318e17,-6.457847e17,-6.4623755e17,-6.466904e17,-6.471433e17,-6.475961e17,-6.48049e17,-6.4850185e17,-6.489547e17,-6.494076e17,-6.4986044e17,-6.503133e17,-6.5076616e17,-6.51219e17,-6.5167195e17,-6.521248e17,-6.525777e17,-6.5303054e17,-6.534834e17,-6.5393626e17,-6.543891e17,-6.54842e17,-6.5529484e17,-6.557477e17,-6.5620057e17,-6.566534e17,-6.571063e17,-6.5755915e17,-6.58012e17,-6.584649e17,-6.589177e17,-6.593706e17,-6.5982346e17,-6.602763e17,-6.607292e17,-6.6118204e17,-6.616349e17,-6.620878e17,-6.625407e17,-6.6299355e17,-6.634464e17,-6.638993e17,-6.6435214e17,-6.64805e17,-6.6525786e17,-6.657107e17,-6.661636e17,-6.6661645e17,-6.670693e17,-6.675222e17,-6.67975e17,-6.684279e17,-6.6888075e17,-6.693336e17,-6.697865e17,-6.7023934e17,-6.706922e17,-6.7114506e17,-6.715979e17,-6.7205085e17,-6.725037e17,-6.729566e17,-6.734094e17,-6.738623e17,-6.7431516e17,-6.74768e17,-6.752209e17,-6.7567374e17,-6.761266e17,-6.7657946e17,-6.770323e17,-6.774852e17,-6.7793805e17,-6.783909e17,-6.788438e17,-6.792966e17,-6.797495e17,-6.8020235e17,-6.806552e17,-6.811081e17,-6.8156094e17,-6.820139e17,-6.824667e17,-6.829196e17,-6.8337245e17,-6.838253e17,-6.842782e17,-6.8473104e17,-6.851839e17,-6.8563676e17,-6.860896e17,-6.865425e17,-6.8699534e17,-6.874482e17,-6.879011e17,-6.883539e17,-6.888068e17,-6.8925965e17,-6.897125e17,-6.901654e17,-6.906182e17,-6.910711e17,-6.9152396e17,-6.919768e17,-6.9242975e17,-6.928826e17,-6.933355e17,-6.937883e17,-6.942412e17,-6.9469406e17,-6.951469e17,-6.955998e17,-6.9605264e17,-6.965055e17,-6.9695836e17,-6.974112e17,-6.978641e17,-6.9831695e17,-6.987698e17,-6.992227e17,-6.996755e17,-7.001284e17,-7.0058125e17,-7.010341e17,-7.01487e17,-7.0193984e17,-7.023928e17,-7.028456e17,-7.032985e17,-7.0375135e17,-7.042042e17,-7.046571e17,-7.0510993e17,-7.055628e17,-7.0601566e17,-7.064685e17,-7.069214e17,-7.0737424e17,-7.078271e17,-7.0827996e17,-7.087328e17,-7.091857e17,-7.0963855e17,-7.100914e17,-7.105443e17,-7.109971e17,-7.1145e17,-7.1190286e17,-7.123558e17,-7.1280865e17,-7.132615e17,-7.137144e17,-7.141672e17,-7.146201e17,-7.1507295e17,-7.155258e17,-7.159787e17,-7.1643154e17,-7.168844e17,-7.1733726e17,-7.177901e17,-7.18243e17,-7.1869584e17,-7.191487e17,-7.196016e17,-7.200544e17,-7.205073e17,-7.2096015e17,-7.21413e17,-7.218659e17,-7.223188e17,-7.2277167e17,-7.232245e17,-7.236774e17,-7.2413025e17,-7.245831e17,-7.25036e17,-7.254888e17,-7.259417e17,-7.2639456e17,-7.268474e17,-7.273003e17,-7.2775314e17,-7.28206e17,-7.2865886e17,-7.291117e17,-7.295646e17,-7.3001745e17,-7.304703e17,-7.309232e17,-7.31376e17,-7.318289e17,-7.3228175e17,-7.327347e17,-7.3318754e17,-7.336404e17,-7.340933e17,-7.345461e17,-7.34999e17,-7.3545185e17,-7.359047e17,-7.363576e17,-7.3681044e17,-7.372633e17,-7.3771616e17,-7.38169e17,-7.386219e17,-7.3907474e17,-7.395276e17,-7.3998047e17,-7.404333e17,-7.408862e17,-7.4133905e17,-7.417919e17,-7.422448e17,-7.426977e17,-7.4315056e17,-7.436034e17,-7.440563e17,-7.4450915e17,-7.44962e17,-7.454149e17,-7.458677e17,-7.463206e17,-7.4677345e17,-7.472263e17,-7.476792e17,-7.4813204e17,-7.485849e17,-7.4903776e17,-7.494906e17,-7.499435e17,-7.5039634e17,-7.508492e17,-7.513021e17,-7.517549e17,-7.522078e17,-7.526607e17,-7.531136e17,-7.5356644e17,-7.540193e17,-7.544722e17,-7.54925e17,-7.553779e17,-7.5583075e17,-7.562836e17,-7.567365e17,-7.571893e17,-7.576422e17,-7.5809506e17,-7.585479e17,-7.590008e17,-7.5945364e17,-7.599065e17,-7.6035936e17,-7.608122e17,-7.612651e17,-7.6171795e17,-7.621708e17,-7.626237e17,-7.630766e17,-7.6352946e17,-7.639823e17,-7.644352e17,-7.6488805e17,-7.653409e17,-7.657938e17,-7.662466e17,-7.666995e17,-7.6715235e17,-7.676052e17,-7.680581e17,-7.6851094e17,-7.689638e17,-7.6941666e17,-7.698695e17,-7.703224e17,-7.7077524e17,-7.712281e17,-7.71681e17,-7.721338e17,-7.725867e17,-7.730396e17,-7.734925e17,-7.7394534e17,-7.743982e17,-7.7485106e17,-7.753039e17,-7.757568e17,-7.7620965e17,-7.766625e17,-7.771154e17,-7.775682e17,-7.780211e17,-7.7847395e17,-7.789268e17,-7.793797e17,-7.7983254e17,-7.802854e17,-7.8073826e17,-7.811911e17,-7.81644e17,-7.8209685e17,-7.825497e17,-7.8300264e17,-7.834555e17,-7.8390836e17,-7.843612e17,-7.848141e17,-7.8526694e17,-7.857198e17,-7.861727e17,-7.866255e17,-7.870784e17,-7.8753125e17,-7.879841e17,-7.88437e17,-7.8888983e17,-7.893427e17,-7.8979556e17,-7.902484e17,-7.907013e17,-7.9115414e17,-7.91607e17,-7.9205986e17,-7.925127e17,-7.929656e17,-7.934185e17,-7.938714e17,-7.9432424e17,-7.947771e17,-7.9522996e17,-7.956828e17,-7.961357e17,-7.9658855e17,-7.970414e17,-7.974943e17,-7.979471e17,-7.984e17,-7.9885285e17,-7.993057e17,-7.997586e17,-8.0021144e17,-8.006643e17,-8.0111716e17,-8.0157e17,-8.020229e17,-8.0247574e17,-8.029286e17,-8.0338154e17,-8.038344e17,-8.0428726e17,-8.047401e17,-8.05193e17,-8.0564584e17,-8.060987e17,-8.0655156e17,-8.070044e17,-8.074573e17,-8.0791015e17,-8.08363e17,-8.088159e17,-8.092687e17,-8.097216e17,-8.1017446e17,-8.106273e17,-8.110802e17,-8.1153304e17,-8.119859e17,-8.1243876e17,-8.128916e17,-8.1334455e17,-8.137974e17,-8.142503e17,-8.1470314e17,-8.15156e17,-8.1560886e17,-8.160617e17,-8.165146e17,-8.1696744e17,-8.174203e17,-8.178732e17,-8.18326e17,-8.187789e17,-8.1923175e17,-8.196846e17,-8.201375e17,-8.2059034e17,-8.210432e17,-8.2149606e17,-8.219489e17,-8.224018e17,-8.2285464e17,-8.233075e17,-8.237604e17,-8.242133e17,-8.2466616e17,-8.25119e17,-8.255719e17,-8.2602474e17,-8.264776e17,-8.2693046e17,-8.273833e17,-8.278362e17,-8.2828905e17,-8.287419e17,-8.291948e17,-8.296476e17,-8.301005e17,-8.3055335e17,-8.310062e17,-8.314591e17,-8.3191194e17,-8.323648e17,-8.3281766e17,-8.332705e17,-8.3372345e17,-8.341763e17,-8.346292e17,-8.3508204e17,-8.355349e17,-8.3598776e17,-8.364406e17,-8.368935e17,-8.3734634e17,-8.377992e17,-8.382521e17,-8.387049e17,-8.391578e17,-8.3961065e17,-8.400635e17,-8.405164e17,-8.409692e17,-8.414221e17,-8.4187496e17,-8.423278e17,-8.427807e17,-8.4323354e17,-8.436865e17,-8.441393e17,-8.445922e17,-8.4504505e17,-8.454979e17,-8.459508e17,-8.4640364e17,-8.468565e17,-8.4730936e17,-8.477622e17,-8.482151e17,-8.4866795e17,-8.491208e17,-8.495737e17,-8.500265e17,-8.504794e17,-8.5093225e17,-8.513851e17,-8.51838e17,-8.5229084e17,-8.527437e17,-8.5319656e17,-8.536495e17,-8.5410235e17,-8.545552e17,-8.550081e17,-8.5546093e17,-8.559138e17,-8.5636666e17,-8.568195e17,-8.572724e17,-8.5772524e17,-8.581781e17,-8.5863096e17,-8.590838e17,-8.595367e17,-8.5998955e17,-8.604424e17,-8.608953e17,-8.613481e17,-8.61801e17,-8.6225385e17,-8.627067e17,-8.631596e17,-8.6361244e17,-8.640654e17,-8.645182e17,-8.649711e17,-8.6542395e17,-8.658768e17,-8.663297e17,-8.6678254e17,-8.672354e17,-8.6768826e17,-8.681411e17,-8.68594e17,-8.6904684e17,-8.694997e17,-8.699526e17,-8.704054e17,-8.708583e17,-8.7131115e17,-8.71764e17,-8.722169e17,-8.7266973e17,-8.731226e17,-8.7357546e17,-8.740284e17,-8.7448125e17,-8.749341e17,-8.75387e17,-8.758398e17,-8.762927e17,-8.7674556e17,-8.771984e17,-8.776513e17,-8.7810414e17,-8.78557e17,-8.7900986e17,-8.794627e17,-8.799156e17,-8.8036845e17,-8.808213e17,-8.812742e17,-8.81727e17,-8.821799e17,-8.8263275e17,-8.830856e17,-8.835385e17,-8.839914e17,-8.844443e17,-8.848971e17,-8.8535e17,-8.8580285e17,-8.862557e17,-8.867086e17,-8.8716144e17,-8.876143e17,-8.8806716e17,-8.8852e17,-8.889729e17,-8.8942574e17,-8.898786e17,-8.9033146e17,-8.907843e17,-8.912372e17,-8.9169005e17,-8.921429e17,-8.925958e17,-8.930486e17,-8.935015e17,-8.9395436e17,-8.944073e17,-8.9486015e17,-8.95313e17,-8.957659e17,-8.962187e17,-8.966716e17,-8.9712445e17,-8.975773e17,-8.980302e17,-8.9848304e17,-8.989359e17,-8.9938876e17,-8.998416e17,-9.002945e17,-9.0074734e17,-9.012002e17,-9.016531e17,-9.021059e17,-9.025588e17,-9.0301165e17,-9.034645e17,-9.039174e17,-9.043703e17,-9.0482317e17,-9.05276e17,-9.057289e17,-9.0618175e17,-9.066346e17,-9.070875e17,-9.075403e17,-9.079932e17,-9.0844606e17,-9.088989e17,-9.093518e17,-9.0980464e17,-9.102575e17,-9.1071036e17,-9.111632e17,-9.116161e17,-9.1206895e17,-9.125218e17,-9.129747e17,-9.134275e17,-9.138804e17,-9.143333e17,-9.147862e17,-9.1523905e17,-9.156919e17,-9.161448e17,-9.165976e17,-9.170505e17,-9.1750335e17,-9.179562e17,-9.184091e17,-9.1886194e17,-9.193148e17,-9.1976766e17,-9.202205e17,-9.206734e17,-9.2112624e17,-9.215791e17,-9.2203197e17,-9.224848e17,-9.229377e17,-9.2339055e17,-9.238434e17,-9.242963e17,-9.247492e17,-9.2520206e17,-9.256549e17,-9.261078e17,-9.2656065e17,-9.270135e17,-9.274664e17,-9.279192e17,-9.283721e17,-9.2882495e17,-9.292778e17,-9.297307e17,-9.3018354e17,-9.306364e17,-9.3108926e17,-9.315421e17,-9.31995e17,-9.3244785e17,-9.329007e17,-9.333536e17,-9.338064e17,-9.342593e17,-9.347122e17,-9.351651e17,-9.3561794e17,-9.360708e17,-9.365237e17,-9.369765e17,-9.374294e17,-9.3788225e17,-9.383351e17,-9.38788e17,-9.392408e17,-9.396937e17,-9.4014656e17,-9.405994e17,-9.410523e17,-9.4150514e17,-9.41958e17,-9.4241086e17,-9.428637e17,-9.433166e17,-9.4376945e17,-9.442223e17,-9.4467524e17,-9.451281e17,-9.4558096e17,-9.460338e17,-9.464867e17,-9.4693955e17,-9.473924e17,-9.478453e17,-9.482981e17,-9.48751e17,-9.4920385e17,-9.496567e17,-9.501096e17,-9.5056244e17,-9.510153e17,-9.5146816e17,-9.51921e17,-9.523739e17,-9.5282674e17,-9.532796e17,-9.537325e17,-9.541853e17,-9.546382e17,-9.550911e17,-9.55544e17,-9.5599684e17,-9.564497e17,-9.5690256e17,-9.573554e17,-9.578083e17,-9.5826115e17,-9.58714e17,-9.591669e17,-9.596197e17,-9.600726e17,-9.6052546e17,-9.609783e17,-9.614312e17,-9.6188404e17,-9.623369e17,-9.6278976e17,-9.632426e17,-9.636955e17,-9.6414835e17,-9.646012e17,-9.6505414e17,-9.65507e17,-9.6595986e17,-9.664127e17,-9.668656e17,-9.6731844e17,-9.677713e17,-9.682242e17,-9.68677e17,-9.691299e17,-9.6958275e17,-9.700356e17,-9.704885e17,-9.7094134e17,-9.713942e17,-9.7184706e17,-9.722999e17,-9.727528e17,-9.7320564e17,-9.736585e17,-9.7411136e17,-9.745642e17,-9.7501716e17,-9.7547e17,-9.759229e17,-9.7637574e17,-9.768286e17,-9.7728146e17,-9.777343e17,-9.781872e17,-9.7864005e17,-9.790929e17,-9.795458e17,-9.799986e17,-9.804515e17,-9.8090435e17,-9.813572e17,-9.818101e17,-9.8226294e17,-9.827158e17,-9.8316866e17,-9.836215e17,-9.840744e17,-9.8452724e17,-9.849802e17,-9.8543304e17,-9.858859e17,-9.8633876e17,-9.867916e17,-9.872445e17,-9.8769734e17,-9.881502e17,-9.8860307e17,-9.890559e17,-9.895088e17,-9.8996165e17,-9.904145e17,-9.908674e17,-9.913202e17,-9.917731e17,-9.9222596e17,-9.926788e17,-9.931317e17,-9.9358454e17,-9.940374e17,-9.9449026e17,-9.949431e17,-9.9539605e17,-9.958489e17,-9.963018e17,-9.9675464e17,-9.972075e17,-9.9766036e17,-9.981132e17,-9.985661e17,-9.9901895e17,-9.994718e17,-9.999247e17,-1.0003775e18,-1.0008304e18,-1.00128325e18,-1.0017361e18,-1.002189e18,-1.00264184e18,-1.0030947e18,-1.00354756e18,-1.0040004e18,-1.0044533e18,-1.00490614e18,-1.0053591e18,-1.0058119e18,-1.0062648e18,-1.00671766e18,-1.0071705e18,-1.0076234e18,-1.00807624e18,-1.0085291e18,-1.00898196e18,-1.0094348e18,-1.0098877e18,-1.01034055e18,-1.0107934e18,-1.0112463e18,-1.0116991e18,-1.012152e18,-1.01260485e18,-1.0130577e18,-1.0135106e18,-1.01396344e18,-1.0144163e18,-1.01486916e18,-1.0153221e18,-1.01577495e18,-1.0162278e18,-1.0166807e18,-1.01713354e18,-1.0175864e18,-1.01803926e18,-1.0184921e18,-1.018945e18,-1.01939784e18,-1.0198507e18,-1.0203036e18,-1.0207564e18,-1.0212093e18,-1.02166215e18,-1.022115e18,-1.0225679e18,-1.0230207e18,-1.0234736e18,-1.02392646e18,-1.0243793e18,-1.0248322e18,-1.02528504e18,-1.025738e18,-1.0261908e18,-1.0266437e18,-1.02709656e18,-1.0275494e18,-1.0280023e18,-1.02845514e18,-1.028908e18,-1.02936086e18,-1.0298137e18,-1.0302666e18,-1.03071945e18,-1.0311723e18,-1.0316252e18,-1.032078e18,-1.0325309e18,-1.03298375e18,-1.0334366e18,-1.0338895e18,-1.03434234e18,-1.0347952e18,-1.03524806e18,-1.035701e18,-1.03615385e18,-1.0366067e18,-1.0370596e18,-1.03751243e18,-1.0379653e18,-1.03841816e18,-1.038871e18,-1.0393239e18,-1.03977674e18,-1.0402296e18,-1.04068246e18,-1.0411353e18,-1.0415882e18,-1.04204105e18,-1.0424939e18,-1.0429468e18,-1.0433996e18,-1.0438525e18,-1.04430536e18,-1.0447582e18,-1.0452111e18,-1.045664e18,-1.0461169e18,-1.0465697e18,-1.0470226e18,-1.04747545e18,-1.0479283e18,-1.0483812e18,-1.04883404e18,-1.0492869e18,-1.04973976e18,-1.0501926e18,-1.0506455e18,-1.05109834e18,-1.0515512e18,-1.0520041e18,-1.0524569e18,-1.0529098e18,-1.05336265e18,-1.0538155e18,-1.0542684e18,-1.05472123e18,-1.0551741e18,-1.05562696e18,-1.0560799e18,-1.05653275e18,-1.0569856e18,-1.0574385e18,-1.0578913e18,-1.0583442e18,-1.05879706e18,-1.0592499e18,-1.0597028e18,-1.06015564e18,-1.0606085e18,-1.06106136e18,-1.0615142e18,-1.0619671e18,-1.06241995e18,-1.0628728e18,-1.0633257e18,-1.0637785e18,-1.0642314e18,-1.06468425e18,-1.0651371e18,-1.06559e18,-1.0660429e18,-1.0664958e18,-1.0669486e18,-1.0674015e18,-1.06785435e18,-1.0683072e18,-1.0687601e18,-1.06921294e18,-1.0696658e18,-1.07011866e18,-1.0705715e18,-1.0710244e18,-1.07147724e18,-1.0719301e18,-1.07238297e18,-1.0728358e18,-1.0732887e18,-1.07374155e18,-1.0741944e18,-1.0746473e18,-1.0751001e18,-1.075553e18,-1.0760059e18,-1.0764588e18,-1.07691165e18,-1.0773645e18,-1.0778174e18,-1.0782702e18,-1.0787231e18,-1.07917595e18,-1.0796288e18,-1.0800817e18,-1.08053454e18,-1.0809874e18,-1.08144026e18,-1.0818931e18,-1.082346e18,-1.08279884e18,-1.0832517e18,-1.0837046e18,-1.0841574e18,-1.0846103e18,-1.08506315e18,-1.085516e18,-1.0859689e18,-1.0864218e18,-1.0868747e18,-1.0873275e18,-1.0877804e18,-1.08823325e18,-1.0886861e18,-1.089139e18,-1.0895918e18,-1.0900447e18,-1.09049756e18,-1.0909504e18,-1.0914033e18,-1.09185614e18,-1.092309e18,-1.09276186e18,-1.0932147e18,-1.0936676e18,-1.09412045e18,-1.0945733e18,-1.0950262e18,-1.095479e18,-1.0959319e18,-1.0963848e18,-1.0968377e18,-1.09729055e18,-1.0977434e18,-1.0981963e18,-1.0986491e18,-1.099102e18,-1.09955485e18,-1.1000077e18,-1.1004606e18,-1.10091344e18,-1.1013663e18,-1.10181916e18,-1.102272e18,-1.1027249e18,-1.10317774e18,-1.1036306e18,-1.1040835e18,-1.1045363e18,-1.1049892e18,-1.10544205e18,-1.1058949e18,-1.10634784e18,-1.1068007e18,-1.10725356e18,-1.1077064e18,-1.1081593e18,-1.10861215e18,-1.109065e18,-1.1095179e18,-1.1099707e18,-1.1104236e18,-1.11087645e18,-1.1113293e18,-1.1117822e18,-1.11223504e18,-1.1126879e18,-1.11314076e18,-1.1135936e18,-1.1140465e18,-1.11449935e18,-1.1149522e18,-1.1154051e18,-1.1158579e18,-1.11631086e18,-1.1167637e18,-1.1172166e18,-1.11766944e18,-1.1181223e18,-1.1185752e18,-1.119028e18,-1.1194809e18,-1.11993375e18,-1.1203866e18,-1.1208395e18,-1.12129233e18,-1.1217452e18,-1.12219806e18,-1.1226509e18,-1.1231038e18,-1.12355664e18,-1.1240095e18,-1.12446236e18,-1.1249152e18,-1.1253681e18,-1.12582095e18,-1.1262738e18,-1.12672674e18,-1.1271796e18,-1.12763246e18,-1.1280853e18,-1.1285382e18,-1.12899105e18,-1.1294439e18,-1.1298968e18,-1.1303496e18,-1.1308025e18,-1.13125535e18,-1.1317082e18,-1.1321611e18,-1.13261394e18,-1.1330668e18,-1.13351966e18,-1.1339725e18,-1.1344254e18,-1.13487824e18,-1.1353311e18,-1.135784e18,-1.1362368e18,-1.13668976e18,-1.1371426e18,-1.1375955e18,-1.13804834e18,-1.1385012e18,-1.13895406e18,-1.1394069e18,-1.1398598e18,-1.14031265e18,-1.1407655e18,-1.1412184e18,-1.1416712e18,-1.1421241e18,-1.14257696e18,-1.1430298e18,-1.1434827e18,-1.14393554e18,-1.1443884e18,-1.14484126e18,-1.1452941e18,-1.145747e18,-1.14619985e18,-1.1466528e18,-1.14710564e18,-1.1475585e18,-1.14801136e18,-1.1484642e18,-1.1489171e18,-1.14936994e18,-1.1498228e18,-1.1502757e18,-1.1507285e18,-1.1511814e18,-1.15163425e18,-1.1520871e18,-1.15254e18,-1.1529928e18,-1.1534457e18,-1.1538986e18,-1.1543514e18,-1.1548043e18,-1.1552571e18,-1.15571e18,-1.1561629e18,-1.1566157e18,-1.1570686e18,-1.1575214e18,-1.1579743e18,-1.1584272e18,-1.15888e18,-1.1593329e18,-1.1597858e18,-1.1602386e18,-1.1606915e18,-1.1611443e18,-1.1615972e18,-1.1620502e18,-1.162503e18,-1.1629559e18,-1.1634088e18,-1.1638616e18,-1.1643145e18,-1.1647674e18,-1.1652202e18,-1.1656731e18,-1.166126e18,-1.1665788e18,-1.1670317e18,-1.1674845e18,-1.1679374e18,-1.1683903e18,-1.1688431e18,-1.169296e18,-1.1697488e18,-1.1702017e18,-1.1706546e18,-1.1711074e18,-1.1715603e18,-1.1720131e18,-1.172466e18,-1.1729189e18,-1.1733717e18,-1.1738246e18,-1.1742775e18,-1.1747303e18,-1.1751832e18,-1.175636e18,-1.1760889e18,-1.1765418e18,-1.1769946e18,-1.1774475e18,-1.1779003e18,-1.1783532e18,-1.1788061e18,-1.1792589e18,-1.1797118e18,-1.1801647e18,-1.1806175e18,-1.1810704e18,-1.1815232e18,-1.1819762e18,-1.1824291e18,-1.182882e18,-1.1833348e18,-1.1837877e18,-1.1842405e18,-1.1846934e18,-1.1851463e18,-1.1855991e18,-1.186052e18,-1.1865049e18,-1.1869577e18,-1.1874106e18,-1.1878634e18,-1.1883163e18,-1.1887692e18,-1.189222e18,-1.1896749e18,-1.1901277e18,-1.1905806e18,-1.1910335e18,-1.1914863e18,-1.1919392e18,-1.192392e18,-1.1928449e18,-1.1932978e18,-1.1937506e18,-1.1942035e18,-1.1946564e18,-1.1951092e18,-1.1955621e18,-1.196015e18,-1.1964678e18,-1.1969207e18,-1.1973735e18,-1.1978264e18,-1.1982792e18,-1.1987321e18,-1.199185e18,-1.1996378e18,-1.2000907e18,-1.2005436e18,-1.2009964e18,-1.2014493e18,-1.2019021e18,-1.2023551e18,-1.202808e18,-1.2032609e18,-1.2037137e18,-1.2041666e18,-1.2046194e18,-1.2050723e18,-1.2055252e18,-1.205978e18,-1.2064309e18,-1.2068837e18,-1.2073366e18,-1.2077895e18,-1.2082423e18,-1.2086952e18,-1.209148e18,-1.2096009e18,-1.2100538e18,-1.2105066e18,-1.2109595e18,-1.2114124e18,-1.2118652e18,-1.2123181e18,-1.212771e18,-1.2132238e18,-1.2136767e18,-1.2141295e18,-1.2145824e18,-1.2150353e18,-1.2154881e18,-1.215941e18,-1.2163938e18,-1.2168467e18,-1.2172996e18,-1.2177524e18,-1.2182053e18,-1.2186581e18,-1.219111e18,-1.2195639e18,-1.2200167e18,-1.2204696e18,-1.2209225e18,-1.2213753e18,-1.2218282e18,-1.222281e18,-1.222734e18,-1.2231869e18,-1.2236398e18,-1.2240926e18,-1.2245455e18,-1.2249983e18,-1.2254512e18,-1.225904e18,-1.2263569e18,-1.2268098e18,-1.2272626e18,-1.2277155e18,-1.2281684e18,-1.2286212e18,-1.2290741e18,-1.229527e18,-1.2299798e18,-1.2304327e18,-1.2308855e18,-1.2313384e18,-1.2317913e18,-1.2322441e18,-1.232697e18,-1.2331498e18,-1.2336027e18,-1.2340556e18,-1.2345084e18,-1.2349613e18,-1.2354142e18,-1.235867e18,-1.2363199e18,-1.2367727e18,-1.2372256e18,-1.2376785e18,-1.2381313e18,-1.2385842e18,-1.239037e18,-1.2394899e18,-1.2399428e18,-1.2403956e18,-1.2408485e18,-1.2413013e18,-1.2417542e18,-1.2422071e18,-1.2426601e18,-1.243113e18,-1.2435658e18,-1.2440187e18,-1.2444715e18,-1.2449244e18,-1.2453772e18,-1.2458301e18,-1.246283e18,-1.2467358e18,-1.2471887e18,-1.2476415e18,-1.2480944e18,-1.2485473e18,-1.2490001e18,-1.249453e18,-1.2499059e18,-1.2503587e18,-1.2508116e18,-1.2512644e18,-1.2517173e18,-1.2521702e18,-1.252623e18,-1.2530759e18,-1.2535287e18,-1.2539816e18,-1.2544345e18,-1.2548873e18,-1.2553402e18,-1.255793e18,-1.2562459e18,-1.2566988e18,-1.2571516e18,-1.2576045e18,-1.2580574e18,-1.2585102e18,-1.2589631e18,-1.259416e18,-1.2598688e18,-1.2603217e18,-1.2607745e18,-1.2612274e18,-1.2616802e18,-1.2621331e18,-1.262586e18,-1.263039e18,-1.2634918e18,-1.2639447e18,-1.2643976e18,-1.2648504e18,-1.2653033e18,-1.2657561e18,-1.266209e18,-1.2666619e18,-1.2671147e18,-1.2675676e18,-1.2680204e18,-1.2684733e18,-1.2689262e18,-1.269379e18,-1.2698319e18,-1.2702848e18,-1.2707376e18,-1.2711905e18,-1.2716433e18,-1.2720962e18,-1.272549e18,-1.2730019e18,-1.2734548e18,-1.2739076e18,-1.2743605e18,-1.2748134e18,-1.2752662e18,-1.2757191e18,-1.276172e18,-1.2766248e18,-1.2770777e18,-1.2775305e18,-1.2779834e18,-1.2784363e18,-1.2788891e18,-1.279342e18,-1.2797948e18,-1.2802477e18,-1.2807006e18,-1.2811534e18,-1.2816063e18,-1.2820591e18,-1.282512e18,-1.2829649e18,-1.2834179e18,-1.2838707e18,-1.2843236e18,-1.2847765e18,-1.2852293e18,-1.2856822e18,-1.286135e18,-1.2865879e18,-1.2870408e18,-1.2874936e18,-1.2879465e18,-1.2883993e18,-1.2888522e18,-1.289305e18,-1.2897579e18,-1.2902108e18,-1.2906636e18,-1.2911165e18,-1.2915694e18,-1.2920222e18,-1.2924751e18,-1.292928e18,-1.2933808e18,-1.2938337e18,-1.2942865e18,-1.2947394e18,-1.2951923e18,-1.2956451e18,-1.296098e18,-1.2965508e18,-1.2970037e18,-1.2974566e18,-1.2979094e18,-1.2983623e18,-1.2988152e18,-1.299268e18,-1.2997209e18,-1.3001737e18,-1.3006266e18,-1.3010795e18,-1.3015323e18,-1.3019852e18,-1.302438e18,-1.3028909e18,-1.3033439e18,-1.3037968e18,-1.3042496e18,-1.3047025e18,-1.3051553e18,-1.3056082e18,-1.3060611e18,-1.306514e18,-1.3069668e18,-1.3074197e18,-1.3078725e18,-1.3083254e18,-1.3087782e18,-1.3092311e18,-1.309684e18,-1.3101368e18,-1.3105897e18,-1.3110425e18,-1.3114954e18,-1.3119483e18,-1.3124011e18,-1.312854e18,-1.3133069e18,-1.3137597e18,-1.3142126e18,-1.3146654e18,-1.3151183e18,-1.3155712e18,-1.316024e18,-1.3164769e18,-1.3169297e18,-1.3173826e18,-1.3178355e18,-1.3182883e18,-1.3187412e18,-1.319194e18,-1.3196469e18,-1.3200998e18,-1.3205526e18,-1.3210055e18,-1.3214584e18,-1.3219112e18,-1.3223641e18,-1.322817e18,-1.3232698e18,-1.3237228e18,-1.3241757e18,-1.3246285e18,-1.3250814e18,-1.3255342e18,-1.3259871e18,-1.32644e18,-1.3268928e18,-1.3273457e18,-1.3277986e18,-1.3282514e18,-1.3287043e18,-1.3291571e18,-1.32961e18,-1.3300629e18,-1.3305157e18,-1.3309686e18,-1.3314214e18,-1.3318743e18,-1.3323272e18,-1.33278e18,-1.3332329e18,-1.3336858e18,-1.3341386e18,-1.3345915e18,-1.3350443e18,-1.3354972e18,-1.33595e18,-1.3364029e18,-1.3368558e18,-1.3373086e18,-1.3377615e18,-1.3382144e18,-1.3386672e18,-1.3391201e18,-1.339573e18,-1.3400258e18,-1.3404787e18,-1.3409315e18,-1.3413844e18,-1.3418373e18,-1.3422901e18,-1.342743e18,-1.3431958e18,-1.3436488e18,-1.3441017e18,-1.3445546e18,-1.3450074e18,-1.3454603e18,-1.3459131e18,-1.346366e18,-1.3468189e18,-1.3472717e18,-1.3477246e18,-1.3481775e18,-1.3486303e18,-1.3490832e18,-1.349536e18,-1.3499889e18,-1.3504418e18,-1.3508946e18,-1.3513475e18,-1.3518003e18,-1.3522532e18,-1.352706e18,-1.3531589e18,-1.3536118e18,-1.3540646e18,-1.3545175e18,-1.3549704e18,-1.3554232e18,-1.3558761e18,-1.356329e18,-1.3567818e18,-1.3572347e18,-1.3576875e18,-1.3581404e18,-1.3585933e18,-1.3590461e18,-1.359499e18,-1.3599518e18,-1.3604047e18,-1.3608576e18,-1.3613104e18,-1.3617633e18,-1.3622162e18,-1.362669e18,-1.3631219e18,-1.3635747e18,-1.3640277e18,-1.3644806e18,-1.3649335e18,-1.3653863e18,-1.3658392e18,-1.366292e18,-1.3667449e18,-1.3671978e18,-1.3676506e18,-1.3681035e18,-1.3685564e18,-1.3690092e18,-1.3694621e18,-1.369915e18,-1.3703678e18,-1.3708207e18,-1.3712735e18,-1.3717264e18,-1.3721792e18,-1.3726321e18,-1.373085e18,-1.3735378e18,-1.3739907e18,-1.3744435e18,-1.3748964e18,-1.3753493e18,-1.3758021e18,-1.376255e18,-1.3767079e18,-1.3771607e18,-1.3776136e18,-1.3780664e18,-1.3785193e18,-1.3789722e18,-1.379425e18,-1.3798779e18,-1.3803307e18,-1.3807836e18,-1.3812365e18,-1.3816893e18,-1.3821422e18,-1.382595e18,-1.3830479e18,-1.3835008e18,-1.3839536e18,-1.3844066e18,-1.3848595e18,-1.3853124e18,-1.3857652e18,-1.3862181e18,-1.386671e18,-1.3871238e18,-1.3875767e18,-1.3880295e18,-1.3884824e18,-1.3889352e18,-1.3893881e18,-1.389841e18,-1.3902938e18,-1.3907467e18,-1.3911996e18,-1.3916524e18,-1.3921053e18,-1.3925581e18,-1.393011e18,-1.3934639e18,-1.3939167e18,-1.3943696e18,-1.3948224e18,-1.3952753e18,-1.3957282e18,-1.396181e18,-1.3966339e18,-1.3970868e18,-1.3975396e18,-1.3979925e18,-1.3984453e18,-1.3988982e18,-1.399351e18,-1.3998039e18,-1.4002568e18,-1.4007096e18,-1.4011625e18,-1.4016154e18,-1.4020682e18,-1.4025211e18,-1.402974e18,-1.4034268e18,-1.4038797e18,-1.4043327e18,-1.4047855e18,-1.4052384e18,-1.4056913e18,-1.4061441e18,-1.406597e18,-1.4070498e18,-1.4075027e18,-1.4079556e18,-1.4084084e18,-1.4088613e18,-1.4093141e18,-1.409767e18,-1.4102199e18,-1.4106727e18,-1.4111256e18,-1.4115785e18,-1.4120313e18,-1.4124842e18,-1.412937e18,-1.4133899e18,-1.4138428e18,-1.4142956e18,-1.4147485e18,-1.4152013e18,-1.4156542e18,-1.416107e18,-1.4165599e18,-1.4170128e18,-1.4174657e18,-1.4179185e18,-1.4183714e18,-1.4188242e18,-1.4192771e18,-1.41973e18,-1.4201828e18,-1.4206357e18,-1.4210885e18,-1.4215414e18,-1.4219943e18,-1.4224471e18,-1.4229e18,-1.4233528e18,-1.4238057e18,-1.4242586e18,-1.4247116e18,-1.4251644e18,-1.4256173e18,-1.4260702e18,-1.426523e18,-1.4269759e18,-1.4274287e18,-1.4278816e18,-1.4283345e18,-1.4287873e18,-1.4292402e18,-1.429693e18,-1.4301459e18,-1.4305988e18,-1.4310516e18,-1.4315045e18,-1.4319574e18,-1.4324102e18,-1.4328631e18,-1.433316e18,-1.4337688e18,-1.4342217e18,-1.4346745e18,-1.4351274e18,-1.4355802e18,-1.4360331e18,-1.436486e18,-1.4369388e18,-1.4373917e18,-1.4378445e18,-1.4382974e18,-1.4387503e18,-1.4392031e18,-1.439656e18,-1.4401089e18,-1.4405617e18,-1.4410146e18,-1.4414674e18,-1.4419203e18,-1.4423732e18,-1.442826e18,-1.4432789e18,-1.4437317e18,-1.4441846e18,-1.4446376e18,-1.4450905e18,-1.4455433e18,-1.4459962e18,-1.446449e18,-1.4469019e18,-1.4473548e18,-1.4478076e18,-1.4482605e18,-1.4487134e18,-1.4491662e18,-1.4496191e18,-1.450072e18,-1.4505248e18,-1.4509777e18,-1.4514305e18,-1.4518834e18,-1.4523363e18,-1.4527891e18,-1.453242e18,-1.4536948e18,-1.4541477e18,-1.4546006e18,-1.4550534e18,-1.4555063e18,-1.4559591e18,-1.456412e18,-1.4568649e18,-1.4573177e18,-1.4577706e18,-1.4582234e18,-1.4586763e18,-1.4591292e18,-1.459582e18,-1.4600349e18,-1.4604878e18,-1.4609406e18,-1.4613935e18,-1.4618463e18,-1.4622992e18,-1.462752e18,-1.4632049e18,-1.4636578e18,-1.4641106e18,-1.4645635e18,-1.4650165e18,-1.4654694e18,-1.4659222e18,-1.4663751e18,-1.466828e18,-1.4672808e18,-1.4677337e18,-1.4681865e18,-1.4686394e18,-1.4690923e18,-1.4695451e18,-1.469998e18,-1.4704508e18,-1.4709037e18,-1.4713566e18,-1.4718094e18,-1.4722623e18,-1.4727151e18,-1.473168e18,-1.4736209e18,-1.4740737e18,-1.4745266e18,-1.4749795e18,-1.4754323e18,-1.4758852e18,-1.476338e18,-1.4767909e18,-1.4772438e18,-1.4776966e18,-1.4781495e18,-1.4786023e18,-1.4790552e18,-1.4795081e18,-1.4799609e18,-1.4804138e18,-1.4808667e18,-1.4813195e18,-1.4817724e18,-1.4822252e18,-1.4826781e18,-1.483131e18,-1.4835838e18,-1.4840367e18,-1.4844895e18,-1.4849424e18,-1.4853954e18,-1.4858483e18,-1.4863011e18,-1.486754e18,-1.4872068e18,-1.4876597e18,-1.4881126e18,-1.4885654e18,-1.4890183e18,-1.4894712e18,-1.489924e18,-1.4903769e18,-1.4908297e18,-1.4912826e18,-1.4917355e18,-1.4921883e18,-1.4926412e18,-1.493094e18,-1.4935469e18,-1.4939998e18,-1.4944526e18,-1.4949055e18,-1.4953584e18,-1.4958112e18,-1.4962641e18,-1.496717e18,-1.4971698e18,-1.4976227e18,-1.4980755e18,-1.4985284e18,-1.4989812e18,-1.4994341e18,-1.499887e18,-1.5003398e18,-1.5007927e18,-1.5012456e18,-1.5016984e18,-1.5021513e18,-1.5026041e18,-1.503057e18,-1.5035099e18,-1.5039627e18,-1.5044156e18,-1.5048684e18,-1.5053214e18,-1.5057743e18,-1.5062272e18,-1.50668e18,-1.5071329e18,-1.5075857e18,-1.5080386e18,-1.5084915e18,-1.5089443e18,-1.5093972e18,-1.50985e18,-1.5103029e18,-1.5107558e18,-1.5112086e18,-1.5116615e18,-1.5121144e18,-1.5125672e18,-1.5130201e18,-1.513473e18,-1.5139258e18,-1.5143787e18,-1.5148315e18,-1.5152844e18,-1.5157373e18,-1.5161901e18,-1.516643e18,-1.5170958e18,-1.5175487e18,-1.5180016e18,-1.5184544e18,-1.5189073e18,-1.5193601e18,-1.519813e18,-1.5202659e18,-1.5207187e18,-1.5211716e18,-1.5216244e18,-1.5220773e18,-1.5225302e18,-1.522983e18,-1.5234359e18,-1.5238888e18,-1.5243416e18,-1.5247945e18,-1.5252473e18,-1.5257003e18,-1.5261532e18,-1.526606e18,-1.5270589e18,-1.5275118e18,-1.5279646e18,-1.5284175e18,-1.5288704e18,-1.5293232e18,-1.5297761e18,-1.530229e18,-1.5306818e18,-1.5311347e18,-1.5315875e18,-1.5320404e18,-1.5324933e18,-1.5329461e18,-1.533399e18,-1.5338518e18,-1.5343047e18,-1.5347576e18,-1.5352104e18,-1.5356633e18,-1.5361162e18,-1.536569e18,-1.5370219e18,-1.5374747e18,-1.5379276e18,-1.5383805e18,-1.5388333e18,-1.5392862e18,-1.539739e18,-1.5401919e18,-1.5406448e18,-1.5410976e18,-1.5415505e18,-1.5420033e18,-1.5424562e18,-1.5429091e18,-1.543362e18,-1.5438148e18,-1.5442677e18,-1.5447205e18,-1.5451734e18,-1.5456262e18,-1.5460792e18,-1.5465321e18,-1.546985e18,-1.5474378e18,-1.5478907e18,-1.5483435e18,-1.5487964e18,-1.5492493e18,-1.5497021e18,-1.550155e18,-1.5506079e18,-1.5510607e18,-1.5515136e18,-1.5519664e18,-1.5524193e18,-1.5528722e18,-1.553325e18,-1.5537779e18,-1.5542307e18,-1.5546836e18,-1.5551365e18,-1.5555893e18,-1.5560422e18,-1.556495e18,-1.5569479e18,-1.5574008e18,-1.5578536e18,-1.5583065e18,-1.5587594e18,-1.5592122e18,-1.5596651e18,-1.560118e18,-1.5605708e18,-1.5610237e18,-1.5614765e18,-1.5619294e18,-1.5623822e18,-1.5628351e18,-1.563288e18,-1.5637408e18,-1.5641937e18,-1.5646466e18,-1.5650994e18,-1.5655523e18,-1.5660053e18,-1.5664581e18,-1.566911e18,-1.5673639e18,-1.5678167e18,-1.5682696e18,-1.5687224e18,-1.5691753e18,-1.5696282e18,-1.570081e18,-1.5705339e18,-1.5709867e18,-1.5714396e18,-1.5718925e18,-1.5723453e18,-1.5727982e18,-1.573251e18,-1.5737039e18,-1.5741568e18,-1.5746096e18,-1.5750625e18,-1.5755154e18,-1.5759682e18,-1.5764211e18,-1.576874e18,-1.5773268e18,-1.5777797e18,-1.5782325e18,-1.5786854e18,-1.5791383e18,-1.5795911e18,-1.580044e18,-1.5804968e18,-1.5809497e18,-1.5814026e18,-1.5818554e18,-1.5823083e18,-1.5827611e18,-1.583214e18,-1.5836669e18,-1.5841197e18,-1.5845726e18,-1.5850255e18,-1.5854783e18,-1.5859312e18,-1.5863842e18,-1.586837e18,-1.5872899e18,-1.5877428e18,-1.5881956e18,-1.5886485e18,-1.5891013e18,-1.5895542e18,-1.590007e18,-1.5904599e18,-1.5909128e18,-1.5913656e18,-1.5918185e18,-1.5922714e18,-1.5927242e18,-1.5931771e18,-1.59363e18,-1.5940828e18,-1.5945357e18,-1.5949885e18,-1.5954414e18,-1.5958943e18,-1.5963471e18,-1.5968e18,-1.5972528e18,-1.5977057e18,-1.5981586e18,-1.5986114e18,-1.5990643e18,-1.5995172e18,-1.59997e18,-1.6004229e18,-1.6008757e18,-1.6013286e18,-1.6017815e18,-1.6022343e18,-1.6026872e18,-1.60314e18,-1.6035929e18,-1.6040458e18,-1.6044986e18,-1.6049515e18,-1.6054043e18,-1.6058572e18,-1.6063102e18,-1.6067631e18,-1.607216e18,-1.6076688e18,-1.6081217e18,-1.6085745e18,-1.6090274e18,-1.6094802e18,-1.6099331e18,-1.610386e18,-1.6108388e18,-1.6112917e18,-1.6117445e18,-1.6121974e18,-1.6126503e18,-1.6131031e18,-1.613556e18,-1.6140089e18,-1.6144617e18,-1.6149146e18,-1.6153674e18,-1.6158203e18,-1.6162732e18,-1.616726e18,-1.6171789e18,-1.6176317e18,-1.6180846e18,-1.6185375e18,-1.6189903e18,-1.6194432e18,-1.619896e18,-1.6203489e18,-1.6208018e18,-1.6212546e18,-1.6217075e18,-1.6221604e18,-1.6226132e18,-1.6230661e18,-1.623519e18,-1.6239718e18,-1.6244247e18,-1.6248775e18,-1.6253304e18,-1.6257832e18,-1.6262361e18,-1.6266891e18,-1.627142e18,-1.6275948e18,-1.6280477e18,-1.6285006e18,-1.6289534e18,-1.6294063e18,-1.6298591e18,-1.630312e18,-1.6307649e18,-1.6312177e18,-1.6316706e18,-1.6321234e18,-1.6325763e18,-1.6330292e18,-1.633482e18,-1.6339349e18,-1.6343878e18,-1.6348406e18,-1.6352935e18,-1.6357463e18,-1.6361992e18,-1.636652e18,-1.6371049e18,-1.6375578e18,-1.6380106e18,-1.6384635e18,-1.6389164e18,-1.6393692e18,-1.6398221e18,-1.640275e18,-1.6407278e18,-1.6411807e18,-1.6416335e18,-1.6420864e18,-1.6425393e18,-1.6429921e18,-1.643445e18,-1.6438978e18,-1.6443507e18,-1.6448036e18,-1.6452564e18,-1.6457093e18,-1.6461621e18,-1.646615e18,-1.647068e18,-1.6475209e18,-1.6479737e18,-1.6484266e18,-1.6488795e18,-1.6493323e18,-1.6497852e18,-1.650238e18,-1.6506909e18,-1.6511438e18,-1.6515966e18,-1.6520495e18,-1.6525023e18,-1.6529552e18,-1.653408e18,-1.6538609e18,-1.6543138e18,-1.6547666e18,-1.6552195e18,-1.6556724e18,-1.6561252e18,-1.6565781e18,-1.657031e18,-1.6574838e18,-1.6579367e18,-1.6583895e18,-1.6588424e18,-1.6592953e18,-1.6597481e18,-1.660201e18,-1.6606538e18,-1.6611067e18,-1.6615596e18,-1.6620124e18,-1.6624653e18,-1.6629182e18,-1.663371e18,-1.6638239e18,-1.6642767e18,-1.6647296e18,-1.6651825e18,-1.6656353e18,-1.6660882e18,-1.666541e18,-1.666994e18,-1.6674469e18,-1.6678998e18,-1.6683526e18,-1.6688055e18,-1.6692583e18,-1.6697112e18,-1.6701641e18,-1.670617e18,-1.6710698e18,-1.6715227e18,-1.6719755e18,-1.6724284e18,-1.6728812e18,-1.6733341e18,-1.673787e18,-1.6742398e18,-1.6746927e18,-1.6751455e18,-1.6755984e18,-1.6760513e18,-1.6765041e18,-1.676957e18,-1.6774099e18,-1.6778627e18,-1.6783156e18,-1.6787684e18,-1.6792213e18,-1.6796742e18,-1.680127e18,-1.6805799e18,-1.6810327e18,-1.6814856e18,-1.6819385e18,-1.6823913e18,-1.6828442e18,-1.683297e18,-1.6837499e18,-1.6842028e18,-1.6846556e18,-1.6851085e18,-1.6855614e18,-1.6860142e18,-1.6864671e18,-1.68692e18,-1.687373e18,-1.6878258e18,-1.6882787e18,-1.6887315e18,-1.6891844e18,-1.6896372e18,-1.6900901e18,-1.690543e18,-1.6909958e18,-1.6914487e18,-1.6919016e18,-1.6923544e18,-1.6928073e18,-1.6932601e18,-1.693713e18,-1.6941659e18,-1.6946187e18,-1.6950716e18,-1.6955244e18,-1.6959773e18,-1.6964302e18,-1.696883e18,-1.6973359e18,-1.6977888e18,-1.6982416e18,-1.6986945e18,-1.6991473e18,-1.6996002e18,-1.700053e18,-1.7005059e18,-1.7009588e18,-1.7014116e18,-1.7018645e18,-1.7023174e18,-1.7027702e18,-1.7032231e18,-1.703676e18,-1.7041288e18,-1.7045817e18,-1.7050345e18,-1.7054874e18,-1.7059403e18,-1.7063931e18,-1.706846e18,-1.707299e18,-1.7077518e18,-1.7082047e18,-1.7086576e18,-1.7091104e18,-1.7095633e18,-1.7100161e18,-1.710469e18,-1.7109219e18,-1.7113747e18,-1.7118276e18,-1.7122805e18,-1.7127333e18,-1.7131862e18,-1.713639e18,-1.7140919e18,-1.7145448e18,-1.7149976e18,-1.7154505e18,-1.7159033e18,-1.7163562e18,-1.716809e18,-1.7172619e18,-1.7177148e18,-1.7181677e18,-1.7186205e18,-1.7190734e18,-1.7195262e18,-1.7199791e18,-1.720432e18,-1.7208848e18,-1.7213377e18,-1.7217905e18,-1.7222434e18,-1.7226963e18,-1.7231491e18,-1.723602e18,-1.7240548e18,-1.7245077e18,-1.7249606e18,-1.7254134e18,-1.7258663e18,-1.7263192e18,-1.726772e18,-1.7272249e18,-1.7276779e18,-1.7281307e18,-1.7285836e18,-1.7290365e18,-1.7294893e18,-1.7299422e18,-1.730395e18,-1.7308479e18,-1.7313008e18,-1.7317536e18,-1.7322065e18,-1.7326594e18,-1.7331122e18,-1.7335651e18,-1.734018e18,-1.7344708e18,-1.7349237e18,-1.7353765e18,-1.7358294e18,-1.7362822e18,-1.7367351e18,-1.737188e18,-1.7376408e18,-1.7380937e18,-1.7385465e18,-1.7389994e18,-1.7394523e18,-1.7399051e18,-1.740358e18,-1.7408109e18,-1.7412637e18,-1.7417166e18,-1.7421694e18,-1.7426223e18,-1.7430752e18,-1.743528e18,-1.7439809e18,-1.7444337e18,-1.7448866e18,-1.7453395e18,-1.7457923e18,-1.7462452e18,-1.746698e18,-1.7471509e18,-1.7476038e18,-1.7480568e18,-1.7485096e18,-1.7489625e18,-1.7494154e18,-1.7498682e18,-1.7503211e18,-1.750774e18,-1.7512268e18,-1.7516797e18,-1.7521325e18,-1.7525854e18,-1.7530382e18,-1.7534911e18,-1.753944e18,-1.7543968e18,-1.7548497e18,-1.7553026e18,-1.7557554e18,-1.7562083e18,-1.7566611e18,-1.757114e18,-1.7575669e18,-1.7580197e18,-1.7584726e18,-1.7589254e18,-1.7593783e18,-1.7598312e18,-1.760284e18,-1.7607369e18,-1.7611898e18,-1.7616426e18,-1.7620955e18,-1.7625483e18,-1.7630012e18,-1.763454e18,-1.7639069e18,-1.7643598e18,-1.7648126e18,-1.7652655e18,-1.7657184e18,-1.7661712e18,-1.7666241e18,-1.767077e18,-1.7675298e18,-1.7679828e18,-1.7684357e18,-1.7688885e18,-1.7693414e18,-1.7697943e18,-1.7702471e18,-1.7707e18,-1.7711528e18,-1.7716057e18,-1.7720586e18,-1.7725114e18,-1.7729643e18,-1.7734171e18,-1.77387e18,-1.7743229e18,-1.7747757e18,-1.7752286e18,-1.7756815e18,-1.7761343e18,-1.7765872e18,-1.77704e18,-1.7774929e18,-1.7779458e18,-1.7783986e18,-1.7788515e18,-1.7793043e18,-1.7797572e18,-1.78021e18,-1.7806629e18,-1.7811158e18,-1.7815687e18,-1.7820215e18,-1.7824744e18,-1.7829272e18,-1.7833801e18,-1.783833e18,-1.7842858e18,-1.7847387e18,-1.7851915e18,-1.7856444e18,-1.7860973e18,-1.7865501e18,-1.787003e18,-1.7874558e18,-1.7879087e18,-1.7883617e18,-1.7888146e18,-1.7892674e18,-1.7897203e18,-1.7901732e18,-1.790626e18,-1.7910789e18,-1.7915317e18,-1.7919846e18,-1.7924375e18,-1.7928903e18,-1.7933432e18,-1.793796e18,-1.7942489e18,-1.7947018e18,-1.7951546e18,-1.7956075e18,-1.7960604e18,-1.7965132e18,-1.7969661e18,-1.797419e18,-1.7978718e18,-1.7983247e18,-1.7987775e18,-1.7992304e18,-1.7996832e18,-1.8001361e18,-1.800589e18,-1.8010418e18,-1.8014947e18,-1.8019476e18,-1.8024004e18,-1.8028533e18,-1.8033061e18,-1.803759e18,-1.8042119e18,-1.8046647e18,-1.8051176e18,-1.8055704e18,-1.8060233e18,-1.8064762e18,-1.806929e18,-1.8073819e18,-1.8078347e18,-1.8082876e18,-1.8087406e18,-1.8091935e18,-1.8096463e18,-1.8100992e18,-1.810552e18,-1.8110049e18]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..fcd3bfee3353 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.954181332141161,1.994038701057434,1.2167553901672363,0.053225934505462646,0.5767955482006073,1.1553746461868286,1.6095309853553772,1.0624422691762447,0.23312455415725708,0.7227098345756531,1.3069754242897034,1.4789534509181976,0.033573687076568604,1.8516783118247986,0.8753591701388359,1.805454134941101,0.015644848346710205,1.5498631000518799,0.46716684103012085,1.9805845618247986,1.5843077301979065,1.18635293841362,0.15911072492599487,1.9714321494102478,0.5033651292324066,0.7123635113239288,1.892669439315796,0.46750640869140625,0.752662256360054,1.8730425238609314,0.04528212547302246,1.441468358039856,1.3468786180019379,0.08092904090881348,1.9185515642166138,1.3073572218418121,0.09821152687072754,1.9342774152755737,0.6154211163520813,0.5952330529689789,1.948369026184082,0.10792440176010132,0.6338228583335876,1.497776597738266,0.0898093581199646,1.8401763439178467,1.4610755145549774,0.07328635454177856,1.8621179461479187,1.423567920923233,0.4490382671356201,1.8825515508651733,0.19532644748687744,0.4844154119491577,1.9014413952827454,0.17120438814163208,0.5206944048404694,1.6019965410232544,0.148531973361969,1.7660302519798279,1.5680814385414124,0.3181355595588684,1.7922386527061462,1.533172607421875,0.34931814670562744,1.8170613050460815,0.2756028175354004,0.38163888454437256,1.726209044456482,0.24741029739379883,0.4150412678718567,1.6968276500701904,0.22053426504135132,1.6799370050430298,1.6662274599075317,0.2322806715965271,1.7100034356117249,1.6344618201255798,0.25974613428115845,1.7388280034065247,1.6015864610671997,0.2885063886642456,1.8062333464622498,0.11621397733688354,0.3185112476348877,1.7807909846305847,0.13655143976211548,0.3497081398963928,1.7539829015731812,0.1583992838859558,1.9112775921821594,1.7258558869361877,0.18171924352645874,1.8932617902755737,1.6964592933654785,0.20647048950195312,1.8736834526062012,0.06478744745254517,0.2326098084449768,1.8525769710540771,0.08041125535964966,0.26009148359298706,1.8299790620803833,0.09764361381530762,1.9554975628852844,1.80592942237854,0.1164543628692627,1.9423267245292664,1.780470073223114,0.13681060075759888,1.9275075197219849,0.027946650981903076,0.15867674350738525,1.9110659956932068,0.038613080978393555,0.18201452493667603,1.893030822277069,0.050961196422576904,1.9848154187202454,1.873433530330658,0.06496942043304443,1.976694941520691,0.002461552619934082,0.0806131362915039,1.9668660759925842,0.006266117095947266,0.0978650450706482,1.9553459286689758,0.01180887222290039,1.9999703764915466,1.9421547055244446,0.019080162048339844,1.998773992061615,1.9273154735565186,0.028067290782928467,1.9958305358886719,0.0015004277229309082,0.03875452280044556,1.9911451935768127,8.398294448852539e-5,0.05112314224243164,1.9847261309623718,0.0004165768623352051,1.9931318163871765,1.9765846133232117,0.0024976730346679688,1.9971555471420288,1.9667348861694336,0.006323635578155518,1.999435007572174,0.01611196994781494,0.011887669563293457,1.999966323375702,0.009496688842773438,0.019180119037628174,1.9987484216690063,0.004613995552062988,1.970804214477539,1.9957835674285889,0.0014724135398864746,0.03889620304107666,0.059448063373565674,7.748603820800781e-5,0.051285386085510254,0.046068429946899414,0.0004315376281738281,0.17296838760375977,0.03435748815536499,0.0025340914726257324,0.15018564462661743,0.02433556318283081,0.006381392478942871,0.1288893222808838,0.01602029800415039,0.0119667649269104,0.10911679267883301,0.009426236152648926,0.01928037405014038,0.09090256690979004,0.004564881324768066,0.24948519468307495,0.07427853345870972,0.001444697380065918,0.2225084900856018,0.05927377939224243,7.12275505065918e-5,0.19689178466796875,0.045914530754089355,0.0004467964172363281,0.1726798415184021,0.03422415256500244,0.0025707483291625977,0.14991509914398193,0.02422308921813965,0.3377071022987366,0.12863725423812866,0.015928924083709717,0.3069572448730469,0.10888367891311646,0.009356021881103516,0.2774196267127991,0.09068876504898071,0.004516005516052246,0.24914592504501343,0.07408446073532104,0.4712877869606018,0.2221856713294983,0.05909973382949829,0.4362582564353943,0.19658595323562622,0.04576081037521362,0.40221476554870605,0.17239153385162354,0.03409111499786377,0.3692169189453125,0.14964479207992554,0.024110913276672363,0.337322473526001,0.1283854842185974,0.5812060236930847,0.3065871596336365,0.10865074396133423,0.5436015725135803,0.2770647406578064,0.09047520160675049,0.5067954361438751,0.248806893825531,0.07389062643051147,0.4708520174026489,0.2218630313873291,0.05892592668533325,0.43583422899246216,0.19628030061721802,0.6976558268070221,0.401803195476532,0.1721034049987793,0.6580629646778107,0.36881858110427856,0.14937466382980347,0.6190682351589203,0.3369380235671997,0.1281338334083557,0.5807397961616516,0.3062172532081604,0.8601017147302628,0.5431447327136993,0.2767100930213928,0.8188210278749466,0.5063488185405731,0.2484680414199829,0.7778572589159012,0.4704163670539856,0.221540629863739,0.7372820675373077,0.4354103207588196,0.19597488641738892,0.6971664130687714,0.40139180421829224,0.9846077533438802,0.6575804650783539,0.3684203624725342,0.9428119212388992,0.6185934841632843,0.336553692817688,0.9011161252856255,0.5802736878395081,0.30584752559661865,0.8595932871103287,0.5426880419254303,0.2763555645942688,0.8183160573244095,0.5059023201465607,1.1093538478016853,0.7773566246032715,0.4699808955192566,1.0676947310566902,0.7367866337299347,0.43498653173446655,1.0259171929210424,0.6966770589351654,0.40098053216934204,0.984094325453043,0.6570980846881866,0.3680223226547241,0.9422992765903473,0.6181188821792603,1.2323944419622421,0.9006051644682884,0.5798076689243317,1.1915217489004135,0.8590849041938782,0.5422314405441284,1.1503140479326248,0.817811131477356,0.5054559707641602,1.1088434234261513,0.7768560498952866,1.3906440138816833,1.067182406783104,0.7362912893295288,1.3518105745315552,1.0254038702696562,0.696187824010849,1.3123617768287659,0.9835809003561735,0.6566157639026642,1.2723665833473206,0.9417866505682468,0.617644339799881,1.2318949848413467,0.9000942260026932,1.5023348331451416,1.191017746925354,0.8585765510797501,1.4657398462295532,1.1498063802719116,0.8173062652349472,1.4283301830291748,1.1083329692482948,0.7763555347919464,0.46911031007766724,1.8558475375175476,1.6389166712760925,1.351329892873764,1.0248905401676893,0.695698618888855,0.40015852451324463,1.8096375465393066,1.5724053382873535,1.271872490644455,0.9412740357220173,0.6171699166297913,1.929840624332428,1.7577652335166931,1.501890778541565,1.1905136853456497,0.8580682426691055,0.5413186252117157,1.8958438634872437,1.7005932927131653,1.4278661012649536,1.107822485268116,0.775855079293251,1.9780257940292358,1.855581820011139,1.6385215520858765,1.350849062204361,1.024377204477787,0.6952095329761505,1.9571858048439026,1.8093360662460327,1.5719842314720154,1.2713783085346222,0.9407614395022392,0.6166956126689911,1.9296515583992004,1.757430076599121,1.501446545124054,1.1900095641613007,0.8575599640607834,1.991960883140564,1.895615577697754,1.7002267837524414,1.4274019300937653,1.1073119714856148,0.7753546833992004,1.9779186248779297,1.855315923690796,1.6381263136863708,1.350368171930313,1.0238638631999493,1.9992038011550903,1.957037091255188,1.8090343475341797,1.571562945842743,1.2708840370178223,0.9402488544583321,1.9990432858467102,1.9294622540473938,1.75709468126297,1.5010022521018982,1.1895054131746292,0.8570517301559448,1.9918957352638245,1.895387053489685,1.6998600959777832,1.4269376397132874,1.1068014279007912,1.992439329624176,1.9778111577033997,1.855049729347229,1.6377308368682861,1.349887192249298,1.023350514471531,1.9992241859436035,1.9568880200386047,1.8087324500083923,1.571141541004181,1.2703897058963776,1.9582899808883667,1.9990206956863403,1.929272711277008,1.7567591071128845,1.500557780265808,1.189001202583313,1.9788188934326172,1.9918304085731506,1.895158290863037,1.6994932293891907,1.4264732599258423,1.8975430130958557,1.992502212524414,1.9777034521102905,1.8547833561897278,1.6373352408409119,1.3494060933589935,1.931246280670166,1.9992442727088928,1.9567387700080872,1.8084303140640259,1.5707199573516846,1.269895315170288,1.9584366083145142,1.9989978671073914,1.9290828704833984,1.7564233541488647,1.5001131892204285,1.8578266501426697,1.9789238572120667,1.991764783859253,1.89492928981781,1.6991261839866638,1.4260087609291077,1.8977693319320679,1.992564857006073,1.9775955080986023,1.8545167446136475,1.6369394659996033,1.7605979442596436,1.9314332604408264,1.9992640614509583,1.9565892219543457,1.808127999305725,1.570298194885254,1.8121842741966248,1.9585829377174377,1.9989747405052185,1.9288928508758545,1.7560873627662659,1.6422585844993591,1.8580904603004456,1.9790286421775818,1.9916988611221313,1.894700050354004,1.6987589001655579,1.7040568590164185,1.897995412349701,1.992627203464508,1.977487325668335,1.854249894618988,1.6365435123443604,1.7609311938285828,1.9316200017929077,1.9992836713790894,1.9564394354820251,1.8078254461288452,1.5763882398605347,1.8124837279319763,1.958729088306427,1.9989513754844666,1.9287025332450867,1.7557512521743774,1.6426520943641663,1.8583540320396423,1.979133129119873,1.9916326999664307,1.8944705724716187,1.4327217638492584,1.7044214606285095,1.89822119474411,1.992689311504364,1.9773788452148438,1.8539828658103943,1.506536066532135,1.7612642645835876,1.93180650472641,1.9993029832839966,1.9562894105911255,1.2770450115203857,1.5768077373504639,1.8127830028533936,1.9588749408721924,1.9989277124404907,1.9285120368003845,1.3563609719276428,1.643045425415039,1.85861736536026,1.9792373180389404,1.9915663003921509,1.8942408561706543,1.4331846237182617,1.7047858238220215,1.898446798324585,1.9927511811256409,1.9772701263427734,1.1962950080633163,1.506978690624237,1.7615970969200134,1.9319927096366882,1.99932199716568,1.9561391472816467,1.2775383591651917,1.5772271156311035,1.8130820393562317,1.9590205550193787,1.9989038109779358,1.0307808462530375,1.3568406999111176,1.6434385776519775,1.8588804602622986,1.9793412685394287,1.9914996027946472,1.1141889691352844,1.4336473941802979,1.7051500082015991,1.8986721634864807,1.9928127527236938,1.9771611094474792,1.196798488497734,1.5074212551116943,1.7619298100471497,1.9321787357330322,1.9993407726287842,0.947670228779316,1.2780316472053528,1.5776463747024536,1.8133808374404907,1.9591659307479858,1.9988796710968018,1.0312940888106823,1.3573203384876251,1.6438315510749817,1.8591433763504028,1.979444980621338,0.782603919506073,1.114699088037014,1.434110015630722,1.7055140137672424,1.8988972306251526,1.9928740859031677,0.8649211227893829,1.197301909327507,1.5078636407852173,1.7622622847557068,1.9323645234107971,0.6235714852809906,0.9481830261647701,1.2785248756408691,1.5780654549598694,1.8136794567108154,1.959311068058014,0.7022973001003265,1.0318073257803917,1.3577998876571655,1.6442244052886963,1.8594059944152832,1.979548454284668,0.7831051498651505,1.1152091771364212,1.434572547674179,1.7058778405189514,1.8991221189498901,0.5479362607002258,0.8654299229383469,1.1978052854537964,1.5083059668540955,1.7625945210456848,1.9325500130653381,0.6240472495555878,0.9486958347260952,1.279017984867096,1.5784843564033508,1.813977837562561,0.4061223864555359,0.7027875483036041,1.0323205552995205,1.3582793474197388,1.6446170806884766,1.8596684336662292,0.47542399168014526,0.7836064547300339,1.115719236433506,1.4350349605083466,1.7062414288520813,0.280791699886322,0.5483943521976471,0.8659387528896332,1.198308601975441,1.5087480545043945,1.7629265785217285,0.3413604497909546,0.6245231330394745,0.9492086581885815,1.2795110642910004,1.5789031386375427,1.8142760396003723,0.4065355658531189,0.7032778561115265,1.0328337736427784,1.3587586879730225,1.6450095176696777,0.22557765245437622,0.47586125135421753,0.7841078042984009,1.1162292584776878,1.4354972541332245,1.7066048979759216,0.2811485528945923,0.5488525629043579,0.8664476275444031,1.198811873793602,1.5091900825500488,0.1312890648841858,0.3417469263076782,0.624999076128006,0.9497214928269386,1.2800040543079376,1.579321801662445,0.1757134199142456,0.406948983669281,0.7037682831287384,1.0333469845354557,1.359237939119339,0.06111180782318115,0.22590261697769165,0.47629863023757935,0.7846092134714127,1.1167392581701279,1.4359594583511353,1.7069681286811829,1.8997952938079834,1.9931167364120483,0.11466306447982788,0.011151373386383057,0.01699352264404297,0.13154351711273193,0.3421335816383362,0.6254751682281494,0.950234342366457,1.2804969549179077,1.5797402262687683,1.8148717284202576,1.959888994693756,0.20414042472839355,0.0495985746383667,0.00015884637832641602,0.061288654804229736,0.2262277603149414,0.4767361283302307,0.7851106822490692,1.117249220609665,1.436421513557434,1.7073312401771545,1.9000192284584045,0.31570708751678467,0.11442440748214722,0.011075019836425781,0.017087936401367188,0.13179820775985718,0.34252041578292847,0.6259513199329376,0.9507472030818462,1.280989795923233,1.5801585912704468,1.8151692748069763,0.44626641273498535,0.20382964611053467,0.04943901300430298,0.00016814470291137695,0.0614657998085022,0.22655314207077026,0.47717374563217163,0.7856122106313705,1.1177591606974602,1.4368834793567657,1.7076941132545471,0.5921947360038757,0.31533271074295044,0.11418604850769043,0.010998964309692383,0.017182588577270508,0.13205313682556152,0.3429073691368103,0.6264275908470154,0.9512600786983967,1.2814825773239136,1.5805767178535461,1.815466582775116,0.4458388686180115,0.2035190463066101,0.04927968978881836,0.00017768144607543945,0.06164318323135376,0.22687876224517822,0.4776115417480469,0.7861137837171555,1.1182690635323524,1.4373452961444855,1.7080568075180054,0.5917259454727173,0.31495851278305054,0.11394786834716797,0.010923147201538086,0.01727747917175293,0.13230830430984497,0.34329456090927124,0.6269039511680603,0.951772965490818,1.281975269317627,1.580994725227356,0.7489447295665741,0.4454115033149719,0.20320862531661987,0.04912060499191284,0.0001875162124633789,0.061820805072784424,0.2272045612335205,0.47804951667785645,0.7866154313087463,1.1187789365649223,1.437807023525238,0.9131316021084785,0.591257244348526,0.31458455324172974,0.11370992660522461,0.01084756851196289,0.01737266778945923,0.13256365060806274,0.34368187189102173,0.6273804306983948,0.9522858671844006,1.2824678719043732,1.0797295421361923,0.7484477162361145,0.4449843168258667,0.20289844274520874,0.048961758613586426,0.00019758939743041992,0.06199866533279419,0.22753053903579712,0.4784875512123108,0.7871171236038208,1.1192887723445892,1.244114562869072,0.9126200675964355,0.5907886624336243,0.3142107129096985,0.11347222328186035,0.010772287845611572,0.01746809482574463,0.13281923532485962,0.34406936168670654,0.627856969833374,0.952798780053854,1.2829604148864746,1.0792176723480225,0.7479507625102997,0.444557249546051,0.2025884985923767,0.04880321025848389,0.0002079606056213379,0.06217676401138306,0.22785675525665283,0.47892576456069946,0.7876188606023788,1.1197985857725143,1.2436165809631348,0.9121085479855537,0.5903201699256897,0.31383711099624634,0.1132347583770752,0.010697245597839355,0.01756376028060913,0.1330750584602356,0.34445708990097046,0.6283336281776428,0.9533117078244686,1.4012538492679596,1.0787057876586914,0.7474538683891296,0.4441303014755249,0.202278733253479,0.048644840717315674,0.00021851062774658203,0.062355101108551025,0.22818315029144287,0.4793640971183777,0.7881206721067429,1.5477542281150818,1.2431185245513916,0.9115970581769943,0.5898518264293671,0.3134636878967285,0.11299753189086914,0.01062244176864624,0.01765972375869751,0.13333112001419067,0.3448449373245239,0.6288104057312012,1.6790515780448914,1.4007834494113922,1.078193873167038,0.7469570636749268,0.4437035322189331,0.2019692063331604,0.04848676919937134,0.00022941827774047852,0.06253373622894287,0.22850972414016724,0.47980254888534546,1.7915016412734985,1.547324538230896,1.2426204085350037,0.9110855832695961,0.5893835425376892,0.31309038400650024,0.11276054382324219,0.010547935962677002,0.01775592565536499,0.13358741998672485,0.3452329635620117,1.881983458995819,1.6786745190620422,1.4003129601478577,1.0776819437742233,0.7464603185653687,0.44327688217163086,0.20165985822677612,0.048328936100006104,0.00024050474166870117,0.06271260976791382,0.2288365364074707,0.48024117946624756,1.7911877036094666,1.5468947291374207,1.2421222180128098,0.9105741381645203,0.5889154076576233,0.3127173185348511,0.11252379417419434,0.010473668575286865,0.017852425575256348,0.13384395837783813,0.34562116861343384,1.8817413449287415,1.6782972812652588,1.3998423516750336,1.077169992029667,0.7459636330604553,0.44285041093826294,0.20135074853897095,0.04817134141921997,0.00025194883346557617,0.06289172172546387,0.2291635274887085,1.9478220343589783,1.7908735871315002,1.546464741230011,1.2416239827871323,0.9100627154111862,0.5884473621845245,0.31234437227249146,0.11228728294372559,0.010399699211120605,0.01794910430908203,0.13410067558288574,1.9875956773757935,1.8814989924430847,1.6779199242591858,1.39937162399292,1.0766580253839493,0.7454670369625092,0.44242405891418457,0.2010418176651001,0.048014044761657715,0.00026357173919677734,0.06307107210159302,1.9999583959579468,1.9476581811904907,1.7905592322349548,1.5460346341133118,1.2411256730556488,0.909551315009594,0.5879794359207153,0.31197166442871094,0.11205095052719116,0.010325968265533447,0.018046081066131592,1.9845670461654663,1.9875149130821228,1.8812564015388489,1.6775423288345337,1.3989008069038391,1.0761460363864899,0.7449704706668854,0.4419978857040405,0.20073312520980835,0.04785698652267456,0.00027549266815185547,0.06325066089630127,1.9999629259109497,1.947494089603424,1.790244698524475,1.545604407787323,1.2406273037195206,0.9090399444103241,0.5875115990638733,0.31159913539886475,0.11181491613388062,0.01025247573852539,0.01814335584640503,1.984656810760498,1.987433910369873,1.881013572216034,1.6771645545959473,1.3984299004077911,1.0756340250372887,0.7444739937782288,0.44157183170318604,0.2004246711730957,0.04770016670227051,0.00028771162033081055,1.9420212507247925,1.9999672174453735,1.9473297595977783,1.7899299263954163,1.5451740026474,1.2401288598775864,0.9085285887122154,0.5870438814163208,0.3112267851829529,0.1115790605545044,0.010179281234741211,1.8732396960258484,1.984746277332306,1.9873526096343994,1.8807705640792847,1.6767866611480713,1.3979588747024536,1.0751219913363457,0.7439776062965393,0.44114595651626587,0.20011639595031738,0.04754358530044556,1.780221164226532,1.9421933889389038,1.9999712705612183,1.9471651911735535,1.7896149158477783,1.5447434186935425,1.2396303564310074,0.9080172628164291,0.5865762829780579,0.31085461378097534,0.11134350299835205,1.6655474305152893,1.873489797115326,1.98483544588089,1.9872710704803467,1.8805272579193115,1.6764085292816162,1.3974877297878265,1.0746099427342415,0.7434812486171722,0.44072020053863525,0.1998082995414734,1.5324012637138367,1.780542254447937,1.9423653483390808,1.9999750256538391,1.9470003843307495,1.789299726486206,1.5443127751350403,1.2391317933797836,0.9075059592723846,0.5861087739467621,0.31048262119293213,0.11110812425613403,1.6659305691719055,1.8737396597862244,1.9849244356155396,1.9871892929077148,1.880283772945404,1.6760302186012268,1.3970164954662323,1.0740978717803955,0.7429849803447723,0.44029462337493896,0.1995004415512085,1.532835841178894,1.780863106250763,1.942537009716034,1.9999785423278809,1.9468353390693665,1.7889843583106995,1.543881893157959,1.238633170723915,0.9069946855306625,0.5856413841247559,0.31011080741882324,1.3849521279335022,1.6663135290145874,1.8739892840385437,1.9850131273269653,1.9871072173118591,1.8800400495529175,1.6756517887115479,1.396545171737671,1.0735857784748077,0.7424887716770172,0.4398691654205322,1.226383998990059,1.5332702994346619,1.7811837792396545,1.9427084922790527,1.9999817609786987,1.9466699957847595,1.7886687517166138,1.543450951576233,1.2381344884634018,0.9064834266901016,0.5851740837097168,1.0615325197577477,1.385426014661789,1.6666963696479797,1.8742387294769287,1.985101580619812,1.9870249032974243,1.879796028137207,1.6752731204032898,1.39607372879982,1.0730736702680588,0.7419926226139069,0.8949731886386871,1.226884126663208,1.5337046384811401,1.7815042734146118,1.9428796768188477,1.9999847412109375,1.9465044140815735,1.7883529663085938,1.5430198311805725,1.2376357316970825,0.9059721976518631,0.5847069323062897,1.0620450302958488,1.3858997821807861,1.667078971862793,1.8744878768920898,1.9851897358894348,1.9869423508644104,1.8795518279075623,1.6748942732810974,1.3956021666526794,1.072561539709568,0.7414965629577637,0.8954838588833809,1.2273842096328735,1.534138798713684,1.78182452917099,1.9430505633354187,1.9999874234199524,1.9463385939598083,1.7880369424819946,1.5425885915756226,1.2371369153261185,0.905460998415947,0.7318235635757446,1.0625575259327888,1.3863734304904938,1.6674614548683167,1.8747368454933167,1.9852776527404785,1.9868595004081726,1.8793073892593384,1.6745153069496155,1.3951305150985718,1.072049394249916,0.5756065547466278,0.8959945514798164,1.227884218096733,1.5345728397369385,1.7821446061134338,1.9432212710380554,1.9999898672103882,1.9461725354194641,1.7877206802368164,1.5421571731567383,1.2366380393505096,0.43116867542266846,0.7323182821273804,1.0630700066685677,1.3868470191955566,1.667843759059906,1.8749855756759644,1.9853653311729431,1.9867764115333557,1.8790627717971802,1.6741361021995544,1.3946587443351746,0.3025188446044922,0.576071560382843,0.8965052738785744,1.2283841669559479,1.5350067019462585,1.7824644446372986,1.943391740322113,1.9999920725822449,1.946006178855896,1.7874042987823486,1.5417256355285645,0.19322776794433594,0.43159109354019165,0.7328130602836609,1.0635824650526047,1.3873204588890076,1.6682258248329163,1.875234067440033,1.9854527115821838,1.986693024635315,1.878817856311798,1.6737567782402039,1.3941868841648102,0.3028869032859802,0.5765366852283478,0.8970160186290741,1.2288840562105179,1.535440444946289,1.782784104347229,1.9435619115829468,1.9999939799308777,1.9458396434783936,1.787087619304657,1.5412939190864563,0.19353127479553223,0.4320136308670044,0.7333079278469086,1.0640949085354805,1.3877938389778137,1.668607771396637,1.8754823207855225,1.9855398535728455,1.986609399318695,1.878572702407837,1.6733772158622742,0.1065593957901001,0.3032551407814026,0.5770019292831421,0.8975267931818962,1.2293838858604431,1.53587406873703,1.7831035256385803,1.9437318444252014,1.9999956488609314,1.9456728100776672,1.786770761013031,0.04438513517379761,0.19383502006530762,0.43243634700775146,0.733802855014801,1.0646073371171951,1.3882670998573303,1.6689895391464233,1.8757303357124329,1.985626757144928,1.986525535583496,1.8783273696899414,0.008734166622161865,0.10679012537002563,0.30362361669540405,0.5774672627449036,0.8980375975370407,1.2298836559057236,1.5363075733184814,1.7834227681159973,1.943901538848877,1.9999970197677612,1.9455057382583618,0.0005960464477539062,0.0445365309715271,0.19413894414901733,0.4328591823577881,0.7342978417873383,1.0651197507977486,1.3887402415275574,1.6693710684776306,1.875978171825409,1.9857133626937866,1.9864413738250732,1.878081738948822,0.00880199670791626,0.10702115297317505,0.30399221181869507,0.5779327154159546,0.898548424243927,1.2303833663463593,1.5367408990859985,1.7837417721748352,1.9440709948539734,1.999998152256012,1.9453384280204773,0.000578463077545166,0.04468816518783569,0.19444310665130615,0.43328219652175903,0.7347929179668427,1.0656321421265602,1.3892132937908173,1.6697524785995483,1.8762257099151611,1.9857997298240662,1.9863569736480713,0.02009403705596924,0.008870124816894531,0.10725241899490356,0.3043609857559204,0.5783982872962952,0.8990592807531357,1.2308830171823502,1.5371740460395813,1.7840605974197388,1.9442402124404907,1.9999989867210388,0.06680715084075928,0.0005611181259155273,0.044840097427368164,0.1947474479675293,0.43370532989501953,0.7352880537509918,1.0661445185542107,1.38968625664711,1.6701337099075317,1.876473069190979,1.9858857989311218,0.1394212245941162,0.019991755485534668,0.008938491344451904,0.1074838638305664,0.30472999811172485,0.5788639783859253,0.8995701670646667,1.2313826084136963,1.5376071333885193,1.784379243850708,1.9444091320037842,0.23592084646224976,0.06662273406982422,0.0005440115928649902,0.044992268085479736,0.19505202770233154,0.4341285824775696,0.7357832789421082,1.0666568726301193,1.3901591002941132,1.6705147624015808,1.8767201900482178,0.35362768173217773,0.13915979862213135,0.0198897123336792,0.009007155895233154,0.10771560668945312,0.30509912967681885,0.5793297588825226,0.9000810757279396,1.2318821251392365,1.538040041923523,1.7846976518630981,1.9445778131484985,1.9999999403953552,1.9448349475860596,1.7851834297180176,1.538700819015503,1.23264479637146,1.963892936706543,1.823274850845337,1.5916131734848022,1.2945266962051392,0.9648693986237049,0.6390970945358276,0.35323596000671387,0.13889861106872559,0.019787907600402832,0.009076058864593506,0.10794752836227417,0.30546849966049194,0.5797956585884094,0.9005920067429543,1.232381597161293,1.5384727716445923,1.7850158214569092,1.9447462558746338,2.0,1.9446666240692139,1.784865379333496,1.5382680892944336,1.9979499578475952,1.9637560844421387,1.8229832649230957,1.5911991000175476,1.294035941362381,0.9643562287092209,0.6386182606220245,0.3528444170951843,0.13863766193389893,0.019686400890350342,0.009145200252532959,0.10817968845367432,0.3058379888534546,0.5802616775035858,0.9011029675602913,1.2328809946775436,1.538905382156372,1.7853338122367859,1.94491446018219,1.9999998211860657,1.944498062133789,1.7845470309257507,1.5378352999687195,1.997982680797577,1.9636189937591553,1.8226914405822754,1.5907848477363586,1.293545126914978,0.9638430699706078,0.6381395161151886,0.3524530529975891,0.1383768916130066,0.019585132598876953,0.009214580059051514,0.10841214656829834,0.30620771646499634,0.5807278156280518,0.9016139581799507,1.2333803474903107,1.5393378734588623,1.7856516242027283,1.945082426071167,1.9999993443489075,1.9443292617797852,1.7842285633087158,1.9221811890602112,1.9980151653289795,1.963481605052948,1.8223994374275208,1.5903704762458801,1.2930541932582855,0.9633299186825752,0.6376608610153198,0.3520618677139282,0.13811641931533813,0.01948416233062744,0.009284257888793945,0.10864478349685669,0.3065776228904724,0.5811940431594849,0.9021249711513519,1.2338796257972717,1.5397701859474182,1.7859691977500916,1.945250153541565,1.9999986290931702,1.9441601634025574,1.7447086572647095,1.9223796129226685,1.9980473518371582,1.9633439779281616,1.822107195854187,1.5899559259414673,1.2925632297992706,0.9628167748451233,0.6371823251247406,0.3516708016395569,0.137856125831604,0.01938343048095703,0.009354233741760254,0.10887765884399414,0.3069477081298828,0.5816603899002075,0.9026360139250755,1.234378844499588,1.5402023792266846,1.7862865328788757,1.945417582988739,1.999997615814209,1.9439908862113953,1.7450512051582336,1.9225778579711914,1.9980792999267578,1.9632061123847961,1.8218147158622742,1.589541256427765,1.2920721471309662,0.9623036459088326,0.6367038488388062,0.3512799143791199,0.13759607076644897,0.019282937049865723,0.009424448013305664,0.1091107726097107,0.30731797218322754,0.5821268260478973,0.9031470790505409,1.2348780035972595,1.5406344532966614,1.7866036891937256,1.945584774017334,1.9999963641166687,1.4855805039405823,1.7453936338424683,1.9227758646011353,1.9981110095977783,1.9630679488182068,1.821522057056427,1.5891264081001282,1.291581004858017,0.9617905206978321,0.6362254917621613,0.35088926553726196,0.13733625411987305,0.019182682037353516,0.009494900703430176,0.10934412479400635,0.3076884150505066,0.5825934112071991,0.9036581665277481,1.235377088189125,1.5410663485527039,1.7869206666946411,1.9457517266273499,1.1725742667913437,1.486029326915741,1.7457358241081238,1.9229736328125,1.998142421245575,1.9629295468330383,1.8212291598320007,1.588711440563202,1.291089802980423,0.9612774103879929,0.6357472538948059,0.3504987359046936,0.13707661628723145,0.019082725048065186,0.009565591812133789,0.1095777153968811,0.30805903673171997,0.583060085773468,0.9041692838072777,1.235876128077507,1.5414981245994568,1.7872374057769775,1.9459184408187866,1.173080027103424,1.48647803068161,1.746077835559845,1.9231711030006409,1.9981735944747925,1.9627909064292908,1.8209360837936401,1.5882962346076965,1.2905985116958618,0.9607643075287342,0.6352690756320953,0.35010838508605957,0.13681727647781372,0.018983006477355957,0.00963658094406128,0.10981154441833496,0.3084298372268677,0.5835268497467041,0.904680423438549,1.236375093460083,1.5419297218322754,1.7875539660453796,0.8410485535860062,1.1735857427120209,1.4869266152381897,1.7464196681976318,1.9233683943748474,1.9982044696807861,1.9626520276069641,1.8206427097320557,1.5878809690475464,1.2901071310043335,0.9602512158453465,0.6347910165786743,0.3497181534767151,0.13655811548233032,0.018883585929870605,0.009707868099212646,0.11004561185836792,0.3088008165359497,0.5839937627315521,0.9051915928721428,1.2368740141391754,1.5423611998558044,0.5265415608882904,0.8415555357933044,1.1740914285182953,1.4873750507831573,1.7467612624168396,1.92356538772583,1.9982351064682007,1.9625129103660583,1.8203492164611816,1.5874654650688171,1.2896156907081604,0.9597381353378296,0.6343130171298981,0.3493281602859497,0.13629919290542603,0.018784403800964355,0.00977933406829834,0.11027991771697998,0.30917203426361084,0.5844607651233673,0.9057027846574783,1.2373728603124619,1.542792558670044,0.5269939005374908,0.8420625627040863,1.174597054719925,1.4878233671188354,1.7471027374267578,1.9237621426582336,1.9982654452323914,1.9623734951019287,1.8200554251670837,1.5870498418807983,1.2891241610050201,0.9592250660061836,0.6338351368904114,0.34893834590911865,0.13604050874710083,0.018685460090637207,0.00985109806060791,0.11051446199417114,0.3095433712005615,0.584927886724472,0.9062139987945557,1.2378716468811035,0.26458150148391724,0.5274463891983032,0.8425696343183517,1.175102636218071,1.4882715344429016,1.7474439144134521,1.923958659172058,1.998295545578003,1.96223384141922,1.8197614550590515,1.58663409948349,1.288632571697235,0.9587120078504086,0.6333573758602142,0.34854865074157715,0.13578206300735474,0.018586814403533936,0.009923160076141357,0.11074918508529663,0.30991488695144653,0.585395097732544,0.9067252352833748,0.08324933052062988,0.26492953300476074,0.5278989970684052,0.8430767357349396,1.1756081730127335,1.4887196123600006,1.747784972190857,1.9241549968719482,1.9983254075050354,1.9620938897132874,1.819467306137085,1.5862181782722473,1.288140892982483,0.9581989571452141,0.6328796744346619,0.34815919399261475,0.13552385568618774,0.018488407135009766,0.009995460510253906,0.110984206199646,0.31028664112091064,0.5858624279499054,0.002989470958709717,0.08345460891723633,0.2652777433395386,0.5283517241477966,0.8435838967561722,1.1761136502027512,1.4891675412654877,1.7481257915496826,1.9243510365486145,1.998354971408844,1.9619537591934204,1.8191728591918945,1.5858020782470703,1.2876491248607635,0.9576859213411808,0.632402092218399,0.3477698564529419,0.13526582717895508,0.018390238285064697,0.010067999362945557,0.11121940612792969,0.3106585144996643,0.5863298773765564,0.0030292868614196777,0.0836600661277771,0.2656261920928955,0.5288045704364777,0.8440910875797272,1.1766190975904465,1.4896153211593628,1.748466432094574,1.9245468378067017,1.9983842372894287,1.9618133306503296,1.8188782334327698,1.5853858590126038,1.2871572971343994,0.9571728929877281,0.6319245994091034,0.34738069772720337,0.1350080370903015,0.01829230785369873,0.010140776634216309,0.11145490407943726,0.31103062629699707,0.032520592212677,0.0030693411827087402,0.08386582136154175,0.26597481966018677,0.5292575657367706,0.8445983082056046,1.1771245002746582,1.4900629818439484,1.7488068342208862,1.924742341041565,1.998413324356079,1.9616726636886597,1.8185834288597107,1.5849694609642029,1.2866654098033905,0.9566598795354366,0.6314471960067749,0.34699171781539917,0.13475048542022705,0.01819467544555664,0.010213851928710938,0.11169058084487915,0.16867703199386597,0.03239083290100098,0.0031096935272216797,0.08407175540924072,0.26632362604141235,0.5297106504440308,0.8451055884361267,1.1776298433542252,1.4905105233192444,1.749147117137909,1.924937665462494,1.9984421133995056,1.9615316987037659,1.8182883858680725,1.5845528841018677,1.2861734330654144,0.956146877259016,0.630969911813736,0.3466029167175293,0.1344931721687317,0.018097341060638428,0.010287225246429443,0.11192655563354492,0.16839170455932617,0.03226131200790405,0.0031502842903137207,0.08427798748016357,0.26667267084121704,0.5301638841629028,0.8456128984689713,1.1781351417303085,1.4909579455852509,1.7494871616363525,1.9251327514648438,1.9984706044197083,1.9613905549049377,1.8179931044578552,1.584136188030243,1.2856813669204712,0.955633882433176,0.6304927170276642,0.34621429443359375,0.13423609733581543,0.01800018548965454,0.010360777378082275,0.3960779309272766,0.16810667514801025,0.032132089138031006,0.0031911730766296387,0.08448439836502075,0.26702189445495605,0.5306172370910645,0.8461202532052994,1.1786403954029083,1.4914052188396454,1.749826967716217,1.9253275394439697,1.9984988570213318,1.9612491130828857,1.8176976442337036,1.5837193131446838,1.2851892411708832,0.9551209025084972,0.6300156116485596,0.34582579135894775,0.1339792013168335,0.01790332794189453,0.6903468668460846,0.39566874504089355,0.16782182455062866,0.032003045082092285,0.003232300281524658,0.0846911072731018,0.2673712372779846,0.5310707092285156,0.8466276526451111,1.1791456043720245,1.4918523728847504,1.7501665949821472,1.9255221486091614,1.9985268712043762,1.9611074328422546,1.817401945590973,1.5833023190498352,1.284697026014328,0.9546079337596893,0.6295385956764221,0.34543752670288086,0.13372260332107544,0.017806708812713623,0.6898586452007294,0.39525967836380005,0.16753721237182617,0.03187435865402222,0.0032736659049987793,0.08489805459976196,0.26772087812423706,0.5315243005752563,0.8471350967884064,1.1796507686376572,1.4922994077205658,1.750506043434143,1.9257164597511292,1.9985545873641968,1.9609654545783997,1.817106008529663,1.5828851461410522,1.284204751253128,0.9540949799120426,0.6290616989135742,0.3450493812561035,0.1334661841392517,1.0182418245822191,0.6893705129623413,0.39485079050064087,0.167252779006958,0.031745851039886475,0.0033153295516967773,0.08510518074035645,0.26807063817977905,0.5319780111312866,0.847642570734024,1.1801558881998062,1.4927462935447693,1.7508453130722046,1.9259105920791626,1.9985820651054382,1.9608232975006104,1.816809892654419,1.5824678540229797,1.2837124168872833,0.9535820335149765,0.6285848915576935,0.3446614742279053,1.3446138203144073,1.017728416249156,0.6888824701309204,0.394442081451416,0.16696858406066895,0.03161764144897461,0.003357231616973877,0.0853126049041748,0.26842063665390015,0.5324318706989288,0.8481500893831253,1.1806609481573105,1.4931930601596832,1.751184344291687,1.9261044263839722,1.9986092448234558,1.9606808423995972,1.8165135383605957,1.582050383090973,1.283219963312149,0.9530691020190716,0.6281081736087799,0.3442736864089966,1.344131737947464,1.0172150023281574,0.6883944869041443,0.3940335512161255,0.16668462753295898,0.031489670276641846,0.003399372100830078,0.08552026748657227,0.26877081394195557,0.5328858196735382,0.848657637834549,1.1811659783124924,1.4936396777629852,1.751523196697235,1.9262980222702026,1.9986361861228943,1.9605381488800049,1.8162169456481934,1.5816327333450317,1.2827274799346924,0.9525561816990376,0.6276315748691559,1.632594347000122,1.3436495661735535,1.0167015846818686,0.6879066228866577,0.3936251401901245,0.16640090942382812,0.031361937522888184,0.0034418106079101562,0.08572816848754883,0.2691211700439453,0.5333399176597595,0.8491652458906174,1.1816709488630295,1.4940861761569977,1.7518618702888489,1.926491379737854,1.9986628890037537,1.9603952169418335,1.8159201741218567,1.581214964389801,1.2822349071502686,0.9520432762801647,1.8513131141662598,1.6321966052055359,1.3431673049926758,1.0161881614476442,0.6874188184738159,0.39321690797805786,0.1661173701286316,0.031234443187713623,0.0034845471382141113,0.08593630790710449,0.2694717049598694,0.5337941348552704,0.8496728837490082,1.1821758598089218,1.4945325553417206,1.7522003650665283,1.9266844987869263,1.9986892938613892,1.9602519869804382,1.8156232237815857,1.5807970762252808,1.2817422449588776,1.9761740565299988,1.8510435819625854,1.6317986249923706,1.342684954404831,1.0156747363507748,0.6869311034679413,0.39280885457992554,0.16583406925201416,0.03110724687576294,0.0035274624824523926,0.08614468574523926,0.26982247829437256,0.5342484712600708,0.8501805514097214,1.1826807409524918,1.4949787855148315,1.7525386214256287,1.9268773198127747,1.9987154603004456,1.9601085186004639,1.8153259754180908,1.5803789496421814,1.2812495231628418,1.976062536239624,1.850773811340332,1.6314005255699158,1.342202514410019,1.0151613047346473,0.6864434480667114,0.39240092039108276,0.16555094718933105,0.030980288982391357,0.0035706758499145508,0.08635330200195312,0.27017343044281006,0.5347029268741608,0.8506882637739182,1.183185562491417,1.495424896478653,1.75287663936615,1.9270699620246887,1.998741328716278,1.9599648118019104,1.8150286078453064,1.5799607038497925,1.993470013141632,1.9759507179260254,1.8505038619041443,1.6310022473335266,1.3417199850082397,1.014647870324552,0.6859559118747711,0.3919931650161743,0.16526812314987183,0.030853629112243652,0.003614187240600586,0.0865621566772461,0.2705245614051819,0.5351575016975403,0.8511960208415985,1.1836903393268585,1.4958708882331848,1.7532145380973816,1.9272623658180237,1.9987669587135315,1.9598208665847778,1.814730942249298,1.9013469219207764,1.9935284852981567,1.9758386611938477,1.8502336740493774,1.630603849887848,1.341237336397171,1.014134431257844,0.6854684352874756,0.3915855288505554,0.16498547792434692,0.030727148056030273,0.0036579370498657227,0.08677124977111816,0.27087587118148804,0.5356121957302094,0.8517038226127625,1.1841950714588165,1.4963167309761047,1.7535521984100342,1.9274544715881348,1.998792290687561,1.9596766233444214,1.8144330978393555,1.9015691876411438,1.9935866594314575,1.975726306438446,1.8499632477760315,1.63020521402359,1.3407546281814575,1.0136209884658456,0.6849810481071472,0.3911781311035156,0.16470301151275635,0.03060096502304077,0.003701925277709961,0.08698058128356934,0.2712274193763733,0.5360670387744904,0.8522116541862488,1.184699758887291,1.496762454509735,1.7538896203041077,1.9276463985443115,1.9988174438476562,1.9595321416854858,1.7102113962173462,1.9017912149429321,1.9936445951461792,1.97561377286911,1.8496925830841064,1.6298064589500427,1.3402718305587769,1.0131075428798795,0.6844937205314636,0.3907708525657654,0.16442084312438965,0.030475080013275146,0.003746211528778076,0.08719021081924438,0.2715790867805481,0.5365219712257385,0.8527195304632187,1.1852043867111206,1.4972080290317535,1.7542269229888916,1.9278380274772644,1.9988422393798828,1.4405523836612701,1.7105727791786194,1.9020130038261414,1.9937022924423218,1.9755009412765503,1.849421739578247,1.629407525062561,1.339788943529129,1.012594093568623,0.6840065121650696,0.39036375284194946,0.16413885354995728,0.030349373817443848,0.003790736198425293,0.08740001916885376,0.271930992603302,0.5369770526885986,0.853227436542511,1.1857089698314667,1.4976534843444824,1.7545639872550964,1.9280294179916382,1.9988667964935303,1.4410133063793182,1.7109339833259583,1.9022346138954163,1.9937596917152405,1.9753878116607666,1.8491506576538086,1.629008412361145,1.3393059372901917,1.0120806405320764,0.6835193634033203,0.3899567723274231,0.16385704278945923,0.030223965644836426,0.0038355588912963867,0.08761006593704224,0.272283136844635,0.5374322533607483,0.8537353873252869,1.1862135082483292,1.4980988204479218,1.7549008131027222,1.9282205700874329,1.1228318437933922,1.4414741098880768,1.7112950086593628,1.9024559259414673,1.99381685256958,1.9752744436264038,1.848879337310791,1.6286091208457947,1.3388228714466095,1.011567184701562,0.6830323040485382,0.38954997062683105,0.16357553005218506,0.030098795890808105,0.003880620002746582,0.08782035112380981,0.27263540029525757,0.5378875732421875,0.8542433828115463,1.186718001961708,1.4985440075397491,1.7552375197410583,0.791108101606369,1.1233414337038994,1.4419347941875458,1.711655855178833,1.9026769995689392,1.9938737154006958,1.975160837173462,1.8486077785491943,1.6282097101211548,1.3383397161960602,1.0110537251457572,0.6825453341007233,0.38914334774017334,0.16329419612884521,0.029973864555358887,0.003925919532775879,0.08803093433380127,0.27298790216445923,0.5383429825305939,0.8547514081001282,1.1872224360704422,1.498989075422287,1.7555739879608154,0.7916103005409241,1.1238509863615036,1.4423953592777252,1.712016522884369,1.902897834777832,1.9939303398132324,1.975046992301941,1.8483360409736633,1.6278101205825806,1.3378564715385437,1.0105402637273073,0.6820584535598755,0.3887368440628052,0.16301310062408447,0.029849231243133545,0.003971517086029053,0.08824169635772705,0.2733405828475952,0.5387985408306122,0.8552594631910324,1.1877268254756927,1.499433994293213,0.4828542470932007,0.7921125441789627,1.1243605092167854,1.4428558051586151,1.7123769521713257,1.9031184315681458,1.99398672580719,1.974932849407196,1.8480640649795532,1.627410352230072,1.3373731076717377,1.0100267985835671,0.6815716624259949,0.3883305788040161,0.16273218393325806,0.029724836349487305,0.0040174126625061035,0.08845275640487671,0.2736934423446655,0.53925421833992,0.8557675778865814,1.1882311552762985,0.23111379146575928,0.4832938313484192,0.7926148474216461,1.1248699948191643,1.4433161318302155,1.712737262248993,1.9033388495445251,1.9940428137779236,1.974818468093872,1.847791850566864,1.6270104050636292,1.3368896842002869,1.0095133315771818,0.681084930896759,0.3879244327545166,0.16245156526565552,0.029600679874420166,0.0040634870529174805,0.0886639952659607,0.27404648065567017,0.5397100448608398,0.8562757223844528,0.06414347887039185,0.23144221305847168,0.48373353481292725,0.7931171953678131,1.1253794580698013,1.4437763690948486,1.713097333908081,1.9035589694976807,1.9940986633300781,1.974703848361969,1.8475193977355957,1.626610279083252,1.336406171321869,1.0089998617768288,0.6805982887744904,0.38751840591430664,0.1621711254119873,0.029476821422576904,0.004109859466552734,0.08887547254562378,0.27439969778060913,0.5401659607887268,0.8567838966846466,0.06432455778121948,0.23177087306976318,0.48417335748672485,0.7936196178197861,1.1258888840675354,1.4442364573478699,1.7134572267532349,1.903778851032257,1.9941542148590088,1.974588930606842,1.847246766090393,1.6262100338935852,1.3359225690364838,1.008486389182508,0.6801117360591888,0.3871126174926758,0.16189086437225342,0.029353201389312744,0.004156529903411865,0.08908724784851074,0.2747531533241272,0.5406219959259033,0.0003656744956970215,0.06450587511062622,0.23209965229034424,0.484613299369812,0.7941220700740814,1.1263982653617859,1.444696456193924,1.7138169407844543,1.9039984941482544,1.9942095279693604,1.9744738340377808,1.8469738960266113,1.6258096098899841,1.335438847541809,1.007972914725542,0.6796252727508545,0.3867069482803345,0.1616109013557434,0.029229819774627686,0.004203438758850098,0.0892992615699768,0.2751067876815796,0.046616971492767334,0.0003796815872192383,0.06468743085861206,0.23242872953414917,0.4850534200668335,0.7946245968341827,1.126907616853714,1.445156306028366,1.7141764760017395,1.9042178988456726,1.994264543056488,1.9743583798408508,1.8467007875442505,1.6254090070724487,1.3349550664424896,1.007459438405931,0.6791388988494873,0.3863013982772827,0.16133111715316772,0.029106736183166504,0.004250586032867432,0.0895114541053772,0.2754606008529663,0.046462178230285645,0.00039392709732055664,0.064869225025177,0.23275792598724365,0.48549365997314453,0.7951271682977676,1.127416953444481,1.445616066455841,1.7145357728004456,1.9044371247291565,1.9943193793296814,1.9742427468299866,1.8464274406433105,1.625008225440979,1.334471195936203,1.0069459597580135,0.6786525845527649,0.38589608669281006,0.16105151176452637,0.02898383140563965,0.004297971725463867,0.08972394466400146,0.19767272472381592,0.04630756378173828,0.00040847063064575195,0.06505131721496582,0.23308736085891724,0.4859340786933899,0.7956297993659973,1.127926230430603,1.446075677871704,1.714894950389862,1.9046560525894165,1.994373857975006,1.9741268157958984,1.8461539149284363,1.6246073246002197,1.3339872360229492,1.0064324792474508,0.6781663596630096,0.38549089431762695,0.1607722043991089,0.02886122465133667,0.004345715045928955,0.43734031915664673,0.1973663568496704,0.046153247356414795,0.0004233121871948242,0.06523358821868896,0.23341703414916992,0.48637455701828003,0.7961324751377106,1.128435492515564,1.4465351998806,1.7152538895606995,1.9048747420310974,1.9944281578063965,1.9740106463432312,1.845880150794983,1.6242062449455261,1.3335031867027283,1.0059189973399043,0.677680253982544,0.3850858807563782,0.16049307584762573,0.02873891592025757,0.004393637180328369,0.43691587448120117,0.19706016778945923,0.04599916934967041,0.00043839216232299805,0.06541615724563599,0.23374682664871216,0.4868152141571045,0.7966352105140686,1.1289447098970413,1.4469946026802063,1.7156126499176025,1.9050931930541992,1.994482159614563,1.97389417886734,1.8456061482429504,1.6238049864768982,1.3330190479755402,1.0054055135697126,0.677194207906723,0.3846810460090637,0.16021418571472168,0.028616786003112793,0.7385458052158356,0.43649160861968994,0.19675415754318237,0.04584532976150513,0.00045371055603027344,0.06559896469116211,0.2340768575668335,0.4872559905052185,0.7971380054950714,1.1294538974761963,1.447453886270523,1.7159712314605713,1.905311405658722,1.9945358633995056,1.9737775325775146,1.8453319072723389,1.623403549194336,1.3325348198413849,1.004892028402537,0.6767082512378693,0.3842763304710388,0.15993553400039673,1.0690011754631996,0.7380501925945282,0.43606746196746826,0.1964484453201294,0.04569178819656372,0.0004693269729614258,0.06578201055526733,0.23440712690353394,0.48769694566726685,0.7976408451795578,1.1299630552530289,1.4479130506515503,1.7163296341896057,1.9055294394493103,1.9945893287658691,1.9736605286598206,1.845057487487793,1.6230019927024841,1.3320505023002625,1.004378542304039,0.6762223541736603,0.38387179374694824,0.1596570611000061,1.068488895893097,0.737554669380188,0.4356434941291809,0.19614291191101074,0.045538485050201416,0.0004851818084716797,0.06596529483795166,0.2347375750541687,0.48813802003860474,0.7981437295675278,1.130472183227539,1.4483720660209656,1.716687798500061,1.9057471752166748,1.9946425557136536,1.9735433459281921,1.844782829284668,1.622600257396698,1.3315661251544952,1.0038650545757264,0.6757365763187408,0.383467435836792,1.39137664437294,1.067976601421833,0.7370592057704926,0.4352197051048279,0.19583755731582642,0.04538542032241821,0.0005012750625610352,0.06614881753921509,0.2350682020187378,0.4885791540145874,0.7986466884613037,1.1309812664985657,1.4488309919834137,1.7170458436012268,1.9059646725654602,1.9946954846382141,1.9734258651733398,1.8445079326629639,1.6221983432769775,1.3310816287994385,1.0033515661489218,0.6752508580684662,1.6711149215698242,1.3909040689468384,1.0674642845988274,0.7365638315677643,0.43479597568511963,0.1955324411392212,0.04523259401321411,0.0005176663398742676,0.06633257865905762,0.235399067401886,0.48902052640914917,0.7991496920585632,1.13149031996727,1.4492897987365723,1.7174036502838135,1.9061819314956665,1.9947481751441956,1.9733081459999084,1.8442328572273254,1.6217962503433228,1.3305970430374146,1.0028380767907947,1.876862347126007,1.670734167098999,1.3904313743114471,1.0669519528746605,0.7360685169696808,0.4343724846839905,0.1952275037765503,0.04508000612258911,0.000534355640411377,0.06651663780212402,0.2357301115989685,0.4894619584083557,0.7996527403593063,1.1319993287324905,1.4497484862804413,1.7177612781524658,1.9063989520072937,1.994800627231598,1.973190188407898,1.8439574837684631,1.6213940382003784,1.3301123976707458,1.002324586501345,1.8766154050827026,1.6703531742095947,1.3899585902690887,1.0664396062493324,0.7355732619762421,0.4339491128921509,0.19492286443710327,0.04492771625518799,0.0005512237548828125,0.06670087575912476,0.23606133460998535,0.4899035692214966,0.8001558482646942,1.1325083076953888,1.4502070546150208,1.7181187272071838,1.9066157341003418,1.9948527812957764,1.9730719327926636,1.8436819314956665,1.620991587638855,1.3296276330947876,1.9858493208885193,1.876368224620819,1.6699720621109009,1.3894857168197632,1.0659272447228432,0.7350780665874481,0.43352586030960083,0.1946183443069458,0.04477566480636597,0.0005684494972229004,0.06688541173934937,0.2363927960395813,0.490345299243927,0.8006590008735657,1.1330172568559647,1.4506655037403107,1.7184759974479675,1.9068323373794556,1.9949046969413757,1.9729534983634949,1.8434062004089355,1.6205890774726868,1.9863927960395813,1.985763132572174,1.8761207461357117,1.6695907711982727,1.3890126943588257,1.0654148608446121,0.7345829606056213,0.4331027865409851,0.19431406259536743,0.04462385177612305,0.0005858540534973145,0.06707018613815308,0.23672443628311157,0.490787148475647,0.8011622130870819,1.133526161313057,1.451123833656311,1.7188330292701721,1.9070486426353455,1.9949563145637512,1.9728347063064575,1.8431301712989807,1.6201863288879395,1.328657865524292,1.000784112897236,0.6728236377239227,0.3810446262359619,0.1577141284942627,0.027529537677764893,0.004887580871582031,0.09229224920272827,0.28007763624191284,0.547477126121521,0.8649198114871979,0.48664993047714233,0.23362308740615845,0.06534767150878906,0.00043267011642456055,0.046056926250457764,0.19717496633529663,0.43707507848739624,0.7392274141311646,1.0702178329229355,1.3934430480003357,1.6731585264205933,1.8784314393997192,1.986561119556427,1.9855899214744568,1.875625193119049,1.6688276529312134,1.3880664110183716,1.0643900409340858,0.7335929572582245,0.4322570562362671,0.193706214427948,0.04432100057601929,0.0006215572357177734,0.0674404501914978,0.23738837242126465,0.49167126417160034,0.8021688014268875,1.1345438808202744,1.4520401656627655,1.719546616077423,1.907480537891388,1.995058834552765,1.9725964665412903,1.8425775170326233,1.6193803548812866,1.3276877701282501,0.9997571292042267,0.6718533635139465,0.3802383542060852,0.15716099739074707,0.027290701866149902,0.004989504814147949,0.09272360801696777,0.2807908058166504,1.1277351826429367,0.7954412400722504,0.4857688546180725,0.23296374082565308,0.06498301029205322,0.000402987003326416,0.046365559101104736,0.19778770208358765,0.43792420625686646,0.740218997001648,1.071242243051529,1.3943870067596436,1.6739176511764526,1.8789217472076416,1.9867284297943115,1.9854156970977783,1.8751287460327148,1.6680638194084167,1.387119710445404,1.0633651539683342,0.7326032221317291,0.4314119219779968,0.19309914112091064,0.04401916265487671,0.0006582736968994141,0.06781166791915894,0.2380530834197998,0.49255597591400146,0.8031755983829498,1.135561466217041,1.4529559910297394,1.720259428024292,1.907911479473114,1.9951602816581726,1.972357153892517,1.8420239686965942,1.618573784828186,1.3267173171043396,0.9987301457440481,0.6708834171295166,0.379432737827301,0.15660876035690308,0.02705293893814087,0.005092501640319824,0.09315598011016846,1.444983810186386,1.1267165541648865,0.7944360673427582,0.48488831520080566,0.23230522871017456,0.06461930274963379,0.0003743767738342285,0.046675145626068115,0.19840127229690552,0.4387739300727844,0.7412108778953552,1.0722665786743164,1.3953305184841156,1.6746760606765747,1.8794111013412476,1.98689466714859,1.985240399837494,1.8746312856674194,1.6672992706298828,1.386172592639923,1.0623401999473572,0.7316137850284576,0.4305674433708191,0.19249296188354492,0.04371827840805054,0.0006960630416870117,0.06818389892578125,0.23871862888336182,0.4934411644935608,0.8041825890541077,1.1365788877010345,1.453871339559555,1.7209714651107788,1.9083414673805237,1.9952606558799744,1.9721168875694275,1.8414695262908936,1.6177664995193481,1.3257465064525604,0.9977031636517495,0.6699137985706329,0.3786277174949646,0.15605735778808594,0.026816189289093018,0.005196571350097656,1.7133222222328186,1.4440638720989227,1.1256977766752243,0.7934311330318451,0.4840083122253418,0.2316475510597229,0.06425660848617554,0.00034677982330322266,0.046985745429992676,0.19901567697525024,0.43962419033050537,0.7422029972076416,1.073290839791298,1.3962736427783966,1.6754336953163147,1.8798995614051819,1.9870598316192627,1.9850640892982483,1.8741329908370972,1.6665340662002563,1.385225087404251,1.061315182596445,0.7306246161460876,0.42972350120544434,0.19188755750656128,0.04341846704483032,0.0007349252700805664,0.06855714321136475,0.2393849492073059,0.4943268895149231,0.8051898032426834,1.1375961750745773,1.4547862112522125,1.7216827273368835,1.908770501613617,1.995360016822815,1.971875548362732,1.8409141898155212,1.6169586181640625,1.324775367975235,0.9966761840041727,0.6689445674419403,0.3778234124183655,0.1555069088935852,1.9940217733383179,1.9032561779022217,1.712602138519287,1.4431434571743011,1.124678872525692,0.7924264073371887,0.4831289052963257,0.23099064826965332,0.06389492750167847,0.0003203153610229492,0.04729729890823364,0.1996309757232666,0.4404750466346741,0.7431954145431519,1.0743150189518929,1.3972163498401642,1.6761906743049622,1.8803870677947998,1.9872239828109741,1.9848867654800415,1.8736337423324585,1.6657680869102478,1.3842771351337433,1.0602900981903076,0.7296357452869415,0.42888015508651733,0.19128310680389404,0.043119609355926514,0.0007748007774353027,0.06893134117126465,0.24005204439163208,0.4952131509780884,0.8061972111463547,1.1386133283376694,1.4557006061077118,1.722393274307251,1.9091985821723938,1.9954583048820496,1.9716331958770752,1.8403579592704773,1.6161500215530396,1.3238039016723633,0.9956492078490555,0.667975664138794,0.3770197033882141,1.9750897288322449,1.9939091205596924,1.902815043926239,1.7118812203407288,1.4422225952148438,1.123659834265709,0.7914219051599503,0.48225003480911255,0.2303345799446106,0.0635342001914978,0.00029480457305908203,0.047609925270080566,0.20024704933166504,0.4413265585899353,0.7441881000995636,1.0753391236066818,1.3981586396694183,1.6769469380378723,1.8808736205101013,1.9873871207237244,1.9847083687782288,1.8731335401535034,1.6650014519691467,1.3833288252353668,1.059264950454235,0.7286471426486969,0.42803746461868286,0.1906794309616089,0.04282182455062866,0.0008157491683959961,0.06930649280548096,0.2407199740409851,0.4961000084877014,0.8072048276662827,1.1396303176879883,1.4566144943237305,1.7231030464172363,1.9096257090568542,1.9955555200576782,1.9713897705078125,1.8398008942604065,1.6153408288955688,1.322832077741623,0.9946222361177206,0.6670071184635162,1.8489811420440674,1.9753170013427734,1.9937954545021057,1.9023728966712952,1.711159586906433,1.4413012564182281,1.1226406693458557,0.7904176115989685,0.4813716411590576,0.22967928647994995,0.06317448616027832,0.00027042627334594727,0.04792356491088867,0.2008640170097351,0.4421786069869995,0.7451810240745544,1.0763631537556648,1.3991004824638367,1.6777024865150452,1.8813592791557312,1.9875491857528687,1.98452889919281,1.8726324439048767,1.6642341017723083,1.3823800683021545,1.0582397393882275,0.7276588380336761,0.42719537019729614,0.19007664918899536,0.04252499341964722,0.0008577108383178711,0.06968265771865845,0.24138867855072021,0.49698734283447266,0.8082126379013062,1.1406471729278564,1.4575279355049133,1.7238120436668396,1.9100518822669983,1.9956517219543457,1.9711453914642334,1.8392428755760193,1.6145309805870056,1.321859896183014,1.3399700820446014,1.629557192325592,1.8495233654975891,1.9755432605743408,1.993680715560913,1.9019298553466797,1.7104372382164001,1.4403794407844543,1.1216213703155518,0.7894135564565659,0.48049384355545044,0.22902482748031616,0.06281572580337524,0.00024706125259399414,0.048238158226013184,0.20148181915283203,0.4430312514305115,0.7461742460727692,1.0773870944976807,1.4000419080257416,1.678457260131836,1.8818440437316895,1.9877102375030518,1.9843484163284302,1.8721304535865784,1.6634660959243774,1.3814309537410736,1.057214468717575,0.7266708314418793,0.4263538718223572,0.1894747018814087,0.04222923517227173,0.0009008049964904785,0.07005983591079712,0.24205821752548218,0.4978751540184021,0.8092206567525864,1.1416638642549515,1.458440899848938,1.7245202660560608,1.9104770421981812,1.9957468509674072,1.9708999395370483,1.8386840224266052,1.6137204766273499,1.0138136027380824,1.3409357368946075,1.6303547620773315,1.8500646948814392,1.975768506526947,1.9935649037361145,1.9014858603477478,1.709714114665985,1.4394571781158447,1.1206019520759583,0.7884097099304199,0.479616641998291,0.22837120294570923,0.06245797872543335,0.00022476911544799805,0.04855376482009888,0.2021004557609558,0.4438844919204712,0.7471677362918854,1.0784109607338905,1.4009829461574554,1.6792113780975342,1.8823278546333313,1.987870216369629,1.9841669201850891,1.8716275095939636,1.6626973152160645,1.3804813921451569,1.056189138442278,0.7256830930709839,0.42551296949386597,0.18887364864349365,0.041934430599212646,0.0009449124336242676,0.0704379677772522,0.24272853136062622,0.4987635612487793,0.8102288842201233,1.1426804214715958,1.459353357553482,1.7252277135849,1.9109013080596924,1.9958409667015076,1.970653474330902,0.39214611053466797,0.686138778924942,1.0148404808714986,1.3419010043144226,1.6311516761779785,1.8506051898002625,1.9759926795959473,1.99344801902771,1.9010408520698547,1.708990216255188,1.438534438610077,1.119582399725914,0.7874060869216919,0.4787399172782898,0.22771835327148438,0.06210118532180786,0.0002034902572631836,0.04887038469314575,0.20271992683410645,0.44473832845687866,0.7481614947319031,1.0794347375631332,1.4019235372543335,1.6799647808074951,1.8828107118606567,1.9880291819572449,1.9839844107627869,1.8711236715316772,1.661927878856659,1.379531443119049,1.055163748562336,0.7246956527233124,0.4246726632118225,0.18827342987060547,0.041640639305114746,0.0009900331497192383,0.07081705331802368,0.24339967966079712,0.4996525049209595,0.8112373054027557,1.143696814775467,1.460265338420868,1.7259344458580017,1.9113245606422424,1.995934009552002,0.1659402847290039,0.39296191930770874,0.6871140599250793,1.015867343172431,1.342865914106369,1.631947934627533,1.8511447310447693,1.9762158393859863,1.993330180644989,1.90059494972229,1.7082656025886536,1.4376112520694733,1.1185627207159996,0.7864026874303818,0.47786378860473633,0.22706633806228638,0.061745405197143555,0.00018334388732910156,0.04918801784515381,0.20334023237228394,0.4455927610397339,0.7491554915904999,1.0804584324359894,1.4028637111186981,1.6807174682617188,1.8832926154136658,1.9881870746612549,1.9838008284568787,1.8706188797950745,1.6611577272415161,1.3785811066627502,1.0541382990777493,0.7237084805965424,0.4238329529762268,0.18767404556274414,0.04134786128997803,0.0010362863540649414,0.07119715213775635,0.2440716028213501,0.5005419552326202,0.8122459203004837,1.1447130739688873,1.4611768126487732,1.7266404032707214,1.9117469191551208,0.03140980005264282,0.1665073037147522,0.39377832412719727,0.6880896389484406,1.0168941896408796,1.3438304662704468,1.6327435374259949,1.8516833782196045,1.9764379858970642,1.9932112097740173,1.900148093700409,1.7075402736663818,1.4366875886917114,1.117542915046215,0.7853995263576508,0.47698819637298584,0.22641515731811523,0.06139063835144043,0.00016421079635620117,0.04950666427612305,0.20396137237548828,0.4464477300643921,0.7501497864723206,1.081482045352459,1.403803437948227,1.6814693808555603,1.8837736248970032,1.9883439540863037,1.9836161732673645,1.8701131939888,1.6603869199752808,1.377630352973938,1.053112793713808,0.7227216362953186,0.42299389839172363,0.18707555532455444,0.041056156158447266,0.0010835528373718262,0.07157820463180542,0.24474430084228516,0.501431941986084,0.8132547438144684,1.1457291692495346,1.4620878398418427,0.08523476123809814,0.0033414363861083984,0.031665682792663574,0.16707521677017212,0.3945953845977783,0.689065545797348,1.0179210174828768,1.3447946608066559,1.6335384845733643,1.852221131324768,1.976659119129181,1.9930912256240845,1.8997002840042114,1.7068141102790833,1.4357634782791138,1.116522990167141,0.7843965739011765,0.47611314058303833,0.22576475143432617,0.06103682518005371,0.00014609098434448242,0.04982626438140869,0.20458340644836426,0.44730329513549805,0.7511443346738815,1.0825055688619614,1.4047427773475647,1.6822206377983093,1.884253740310669,1.9884997606277466,1.9834305047988892,1.8696065545082092,1.6596153378486633,1.3766792118549347,1.052087228745222,0.7217350602149963,0.42215538024902344,0.1864778995513916,0.04076540470123291,0.0011318325996398926,0.0719602108001709,0.24541783332824707,0.5023224353790283,0.8142637610435486,1.14674511551857,0.2675896883010864,0.08482038974761963,0.0032581090927124023,0.03192257881164551,0.1676439642906189,0.3954131007194519,0.6900417804718018,1.0189478266984224,1.345758467912674,1.6343327164649963,1.8527579307556152,1.9768791794776917,1.9929701685905457,1.8992515206336975,1.7060872912406921,1.434838891029358,1.1155029460787773,0.7833938598632812,0.4752386212348938,0.22511523962020874,0.060684025287628174,0.0001291036605834961,0.05014693737030029,0.20520621538162231,0.44815945625305176,0.7521391361951828,1.0835290104150772,1.4056816697120667,1.682971179485321,1.8847328424453735,1.9886545538902283,1.9832438230514526,1.8690990209579468,1.6588431596755981,1.3757276833057404,1.0510616153478622,0.720748782157898,0.42131751775741577,0.18588107824325562,0.040475666522979736,0.0011812448501586914,0.07234323024749756,0.24609214067459106,0.5032134652137756,0.8459299206733704,0.5304471552371979,0.26689082384109497,0.08440691232681274,0.003175795078277588,0.0321805477142334,0.1682136058807373,0.396231472492218,0.6910183429718018,1.0199746154248714,1.3467219471931458,1.6351262927055359,1.8532938957214355,1.9770982265472412,1.9928480982780457,1.8988018035888672,1.705359697341919,1.4339138567447662,1.1144827753305435,0.782391369342804,0.474364697933197,0.2244664430618286,0.06033223867416382,0.0001131296157836914,0.0504685640335083,0.205829918384552,0.4490162134170532,0.7531342059373856,1.084552362561226,1.4066201150417328,1.6837209463119507,1.8852110505104065,1.988808274269104,1.983056128025055,1.8685905933380127,1.6580702066421509,1.374775767326355,1.0500359423458576,0.7197628021240234,0.42048025131225586,0.18528515100479126,0.040186941623687744,0.0012316703796386719,0.0727272629737854,0.24676722288131714,1.177440270781517,0.8449152857065201,0.5295406579971313,0.26619279384613037,0.08399444818496704,0.0030945539474487305,0.032439470291137695,0.16878408193588257,0.3970504403114319,0.6919952630996704,1.0210013836622238,1.3476850390434265,1.635919213294983,1.8538289666175842,1.9773162603378296,1.9927249550819397,1.8983511924743652,1.7046313285827637,1.4329883456230164,1.1134624779224396,0.7813891172409058,0.4734913110733032,0.22381854057312012,0.05998140573501587,9.816884994506836e-5,0.05079120397567749,0.20645439624786377,0.44987356662750244,0.7541295289993286,1.0855756253004074,1.4075581431388855,1.684469997882843,1.8856883645057678,1.9889609813690186,1.9828673601150513,1.868081271648407,1.657296597957611,1.3738234341144562,1.0490102209150791,0.7187771201133728,0.4196436405181885,0.18469005823135376,0.039899230003356934,0.0012831687927246094,0.07311224937438965,1.4894473552703857,1.176429495215416,0.8439008146524429,0.5286346673965454,0.2654954791069031,0.08358293771743774,0.0030143260955810547,0.03269946575164795,0.16935551166534424,0.3978700637817383,0.6929724812507629,1.0220281295478344,1.3486477732658386,1.6367114782333374,1.8543630838394165,1.977533221244812,1.9926007986068726,1.897899568080902,1.703902244567871,1.432062417268753,1.1124420687556267,0.7803870886564255,0.4726184606552124,0.2231714129447937,0.0596315860748291,8.434057235717773e-5,0.05111485719680786,0.20707976818084717,0.45073145627975464,0.7551251202821732,1.0865987911820412,1.4084957540035248,1.6852183938026428,1.886164665222168,1.989112675189972,1.9826775193214417,1.8675709962844849,1.656522274017334,1.372870683670044,1.0479844436049461,0.717791736125946,0.41880762577056885,0.1840958595275879,0.039612531661987305,1.9240813851356506,1.747657060623169,1.488551527261734,1.1754185259342194,0.8428864926099777,0.5277291834354401,0.26479893922805786,0.08317244052886963,0.002935171127319336,0.03296041488647461,0.16992777585983276,0.3986903429031372,0.6939499974250793,1.0230548530817032,1.3496101200580597,1.6375030279159546,1.854896366596222,1.9777491688728333,1.9924755692481995,1.8974469900131226,1.7031723856925964,1.4311360120773315,1.1114215403795242,0.7793852984905243,0.47174620628356934,0.22252511978149414,0.05928272008895874,7.152557373046875e-5,0.05143946409225464,0.20770597457885742,0.4515899419784546,0.756120964884758,1.0876218751072884,1.4094329476356506,1.6859660148620605,1.8866400718688965,1.9892632365226746,1.9824866652488708,1.8670597672462463,1.6557472944259644,1.371917575597763,1.0469586178660393,0.7168066501617432,0.417972207069397,0.18350249528884888,1.9982540607452393,1.9236883521080017,1.7469746470451355,1.4876551926136017,1.1744073778390884,0.8418723493814468,0.5268242061138153,0.2641031742095947,0.08276283740997314,0.0028570890426635742,0.03322243690490723,0.17050087451934814,0.3995112180709839,0.6949278712272644,1.0240815505385399,1.350572109222412,1.6382939219474792,1.855428695678711,1.9779641032218933,1.9923493266105652,1.8969935178756714,1.7024418115615845,1.4302091300487518,1.1104008927941322,0.778383731842041,0.47087448835372925,0.22187966108322144,0.05893486738204956,5.97834587097168e-5,0.0517650842666626,0.20833295583724976,0.4524489641189575,0.7571170628070831,1.0886448621749878,1.4103696644306183,1.686712920665741,1.8871145844459534,1.9894128441810608,1.9822947978973389,1.8665476441383362,1.6549715399742126,1.3709640800952911,1.0459327436983585,0.7158218324184418,0.41713738441467285,1.9627041816711426,1.9981929063796997,1.9232944250106812,1.74629145860672,1.4867583513259888,1.173396036028862,0.8408583700656891,0.5259197056293488,0.26340818405151367,0.08235424757003784,0.002780020236968994,0.033485472202301025,0.17107492685317993,0.4003327488899231,0.6959060728549957,1.0251082237809896,1.3515337407588959,1.6390841603279114,1.8559601306915283,1.9781779646873474,1.992222011089325,1.8965390920639038,1.7017105221748352,1.4292818307876587,1.1093801259994507,0.7773824036121368,0.47000330686569214,0.2212349772453308,0.05858802795410156,4.9054622650146484e-5,0.05209171772003174,0.20896083116531372,0.453308641910553,0.7581134289503098,1.0896677523851395,1.411305993795395,1.687459111213684,1.887588083744049,1.9895613193511963,1.9821019172668457,1.8660346269607544,1.6541951894760132,1.3700101673603058,1.0449068173766136,1.5888671278953552,1.8213390707969666,1.9629815220832825,1.9981306791305542,1.9228994250297546,1.7456074953079224,1.4858609735965729,1.1723845154047012,0.8398445546627045,0.5250157117843628,0.2627140283584595,0.08194661140441895,0.002704024314880371,0.033749520778656006,0.17164981365203857,0.40115493535995483,0.6968845725059509,1.0261348709464073,1.3524949848651886,1.639873743057251,1.856490671634674,1.978390872478485,1.9920936226844788,1.896083652973175,1.7009784579277039,1.4283540546894073,1.1083592474460602,0.7763812988996506,0.4691327214241028,0.22059118747711182,0.05824214220046997,3.93986701965332e-5,0.05241936445236206,0.20958954095840454,0.4541688561439514,0.7591100484132767,1.090690553188324,1.4122418761253357,1.6882045269012451,1.8880606889724731,1.9897088408470154,1.9819079637527466,1.865520715713501,1.6534181237220764,1.3690558671951294,1.292256385087967,1.5896968245506287,1.8219244480133057,1.9632578492164612,1.9980673789978027,1.9225035309791565,1.7449227571487427,1.4849630892276764,1.1713728159666061,0.8388309180736542,0.5241122245788574,0.2620205879211426,0.08153992891311646,0.002629101276397705,0.03401458263397217,0.17222553491592407,0.4019777178764343,0.6978633999824524,1.0271614901721478,1.3534558713436127,1.6406626105308533,1.8570203185081482,1.978602647781372,1.9919642210006714,1.8956273198127747,1.7002456188201904,1.4274258315563202,1.1073382571339607,0.7753804475069046,0.4682626724243164,0.2199481725692749,0.05789726972579956,3.081560134887695e-5,0.052748024463653564,0.21021902561187744,0.4550296664237976,0.7601069062948227,1.0917132571339607,1.4131773114204407,1.6889492869377136,1.8885323405265808,1.9898552894592285,1.9817129373550415,1.8650058507919312,0.6378404200077057,0.963522419333458,1.2932383716106415,1.5905259251594543,1.822508990764618,1.9635331630706787,1.9980030059814453,1.9221066236495972,1.7442371845245361,1.4840647280216217,1.1703609377145767,0.837817445397377,0.5232092440128326,0.26132792234420776,0.08113420009613037,0.0025551915168762207,0.03428065776824951,0.17280220985412598,0.40280115604400635,0.6988425552845001,1.0281880795955658,1.3544163703918457,1.641450822353363,1.8575490713119507,1.9788134694099426,1.991833746433258,1.8951700329780579,1.6995121240615845,1.4264971613883972,1.1063171476125717,0.7743798196315765,0.467393159866333,0.21930593252182007,0.05755341053009033,2.3305416107177734e-5,0.053077638149261475,0.21084940433502197,0.4558910131454468,0.7611040323972702,1.0927358642220497,1.4141122996807098,1.6896932721138,1.8890030980110168,1.9900006651878357,1.98151695728302,0.3529912829399109,0.6387978792190552,0.9645487405359745,1.2942200601100922,1.5913544297218323,1.8230926394462585,1.963807463645935,1.9979376196861267,1.9217087626457214,1.7435508370399475,1.4831658005714417,1.169348880648613,0.836804136633873,0.5223067700862885,0.2606360912322998,0.08072948455810547,0.0024823546409606934,0.03454774618148804,0.17337971925735474,0.4036251902580261,0.6998220086097717,1.0292146410793066,1.35537651181221,1.6422383189201355,1.8580768704414368,1.9790232181549072,1.9917022585868835,1.8947118520736694,1.6987778544425964,1.4255680441856384,1.1052959263324738,0.7733794450759888,0.46652424335479736,0.21866458654403687,0.057210564613342285,1.6808509826660156e-5,0.053408265113830566,0.21148061752319336,0.4567529559135437,0.762101411819458,1.093758374452591,1.4150468707084656,1.6904365420341492,1.8894729018211365,1.9901450276374817,0.13925784826278687,0.35377466678619385,0.6397557258605957,0.9655750952661037,1.2952014207839966,1.5921822786331177,1.8236754536628723,1.9640807509422302,1.9978711605072021,1.9213099479675293,1.7428637146949768,1.4822663962841034,1.168336644768715,0.8357910066843033,0.5214047729969025,0.25994497537612915,0.08032572269439697,0.0024105310440063477,0.034815847873687744,0.17395806312561035,0.4044498801231384,0.7008017897605896,1.0302411708980799,1.3563362658023834,1.6430251598358154,1.858603835105896,1.9792319536209106,1.991569697856903,1.8942526578903198,1.6980428099632263,1.4246384799480438,1.1042746007442474,0.7723792940378189,0.4656559228897095,0.21802407503128052,0.056868672370910645,1.138448715209961e-5,0.05373990535736084,0.21211260557174683,0.4576154351234436,0.7630990296602249,1.0947807878255844,1.4159809947013855,1.691179096698761,0.008844554424285889,0.020132482051849365,0.13978105783462524,0.3545587658882141,0.6407139301300049,0.9666014909744263,1.2961824834346771,1.5930095314979553,1.8242573738098145,1.9643530249595642,1.9978036880493164,1.920910120010376,1.742175817489624,1.4813664853572845,1.1673242151737213,0.8347780555486679,0.5205033123493195,0.25925469398498535,0.07992291450500488,0.0023398399353027344,0.03508502244949341,0.17453736066818237,0.4052751660346985,0.7017818987369537,1.0312676690518856,1.357295662164688,1.6438113451004028,1.8591298460960388,1.9794396758079529,1.9914361238479614,1.8937925696372986,1.6973071098327637,1.4237084686756134,1.1032531559467316,0.7713793963193893,0.4647880792617798,0.21738433837890625,0.05652773380279541,7.033348083496094e-6,0.054072558879852295,0.21274548768997192,0.45847856998443604,0.7640969008207321,1.0958030968904495,1.416914701461792,0.10670351982116699,0.008708775043487549,0.020337998867034912,0.14030522108078003,0.3553435206413269,0.6416725218296051,0.9676279164850712,1.2971632480621338,1.5938361287117004,1.8248384594917297,1.964624285697937,1.9977351427078247,1.9205093383789062,1.7414871454238892,1.480466067790985,1.1663116216659546,0.8337652683258057,0.5196023285388947,0.25856518745422363,0.07952111959457397,0.0022701025009155273,0.03535515069961548,0.17511749267578125,0.4061011075973511,0.7027623057365417,1.0322941318154335,1.3582546412944794,1.644596815109253,1.85965496301651,1.9796463251113892,1.9913014769554138,1.893331527709961,1.6965705752372742,1.4227780103683472,1.1022316068410873,0.7703797221183777,0.4639208912849426,0.21674543619155884,0.05618786811828613,3.6954879760742188e-6,0.054406166076660156,0.2133791446685791,0.45934218168258667,0.7650950253009796,0.5763621926307678,0.30274879932403564,0.10624241828918457,0.008574068546295166,0.020544588565826416,0.14083027839660645,0.356128990650177,0.6426315009593964,0.9686543792486191,1.2981436848640442,1.5946621298789978,1.8254186511039734,1.9648945331573486,1.997665524482727,1.9201076030731201,1.7407976984977722,1.479565143585205,1.1652988642454147,0.8327526748180389,0.5187018811702728,0.257876455783844,0.07912027835845947,0.0022014975547790527,0.035626351833343506,0.17569845914840698,0.4069276452064514,0.7037430107593536,1.033320564776659,1.3592132925987244,1.6453816294670105,1.8601791262626648,1.9798519611358643,1.991165816783905,1.8928695321083069,1.6958333849906921,1.4218470752239227,1.1012099534273148,0.7693803012371063,0.46305423974990845,0.21610736846923828,0.05584895610809326,1.430511474609375e-6,0.054740846157073975,0.21401363611221313,0.46020644903182983,0.8958029672503471,0.5754321217536926,0.3020130395889282,0.10578227043151855,0.008440375328063965,0.020752251148223877,0.1413562297821045,0.35691511631011963,0.6435908675193787,0.9696808755397797,1.2991237938404083,1.5954874753952026,1.8259979486465454,1.9651637077331543,1.9975948333740234,1.9197049140930176,1.7401074767112732,1.478663682937622,1.1642859131097794,0.8317402452230453,0.5178019106388092,0.25718849897384644,0.07872039079666138,0.0021339058876037598,0.03589850664138794,0.17628031969070435,0.4077548384666443,0.7047240734100342,1.0343469604849815,1.360171526670456,1.6461657881736755,1.8607024550437927,1.9800565838813782,1.9910290837287903,1.8924065828323364,1.695095419883728,1.4209157228469849,1.1001881882548332,0.7683811187744141,0.46218812465667725,0.21547013521194458,0.05551105737686157,2.384185791015625e-7,0.055076420307159424,0.2146490216255188,1.2266965210437775,0.8947816267609596,0.5745025277137756,0.30127793550491333,0.10532301664352417,0.00830775499343872,0.020960867404937744,0.14188307523727417,0.3577018976211548,0.6445505917072296,0.9707074034959078,1.3001036047935486,1.5963122248649597,1.8265764117240906,1.9654319286346436,1.9975231289863586,1.9193012118339539,1.7394164204597473,1.4777617454528809,1.1632727980613708,0.8307279795408249,0.5169024765491486,0.25650131702423096,0.07832145690917969,0.002067387104034424,0.03617173433303833,0.17686307430267334,0.4085826873779297,0.7057054042816162,1.035373318940401,1.3611294031143188,1.6469492316246033,1.8612248301506042,1.9802601337432861,1.9908912777900696,1.8919426798820496,1.6943567395210266,1.4199839234352112,1.0991663187742233,0.7673821896314621,0.4613226056098938,0.21483373641967773,0.05517411231994629,5.960464477539063e-8,1.7807427644729614,1.5326728224754333,1.2256961464881897,0.8937603980302811,0.5735733807086945,0.3005436062812805,0.10486471652984619,0.008176207542419434,0.02117055654525757,0.14241081476211548,0.35848939418792725,0.6455107033252716,0.9717339612543583,1.3010830879211426,1.5971363186836243,1.8271539807319641,1.9656990766525269,1.9974504113197327,1.9188965559005737,1.7387246489524841,1.476859301328659,1.1622595191001892,0.8297159075737,0.5160035192966461,0.25581490993499756,0.07792353630065918,0.0020018815994262695,0.0364459753036499,0.1774466633796692,0.40941113233566284,0.7066870629787445,1.0363996401429176,1.3620868921279907,1.6477320194244385,1.8617463111877441,1.980462670326233,1.9907524585723877,1.891477882862091,1.693617343902588,1.419051706790924,1.098144344985485,0.7663834989070892,0.46045762300491333,0.21419817209243774,0.05483824014663696,1.942128837108612,1.7801006436347961,1.5318033695220947,1.224695548415184,0.8927392885088921,0.5726446807384491,0.2998100519180298,0.10440737009048462,0.008045673370361328,0.021381258964538574,0.1429395079612732,0.35927754640579224,0.6464711725711823,0.9727605488151312,1.3020622432231903,1.5979597568511963,1.827730655670166,1.9659652709960938,1.997376561164856,1.9184909462928772,1.738032042980194,1.4759563505649567,1.161246046423912,0.8287040144205093,0.5151050984859467,0.25512927770614624,0.07752656936645508,0.0019375085830688477,0.036721229553222656,0.17803114652633667,0.41024017333984375,0.7076690196990967,1.0374259240925312,1.3630439937114716,1.6485140919685364,1.8622668981552124,1.9806641340255737,1.9906126260757446,1.8910121321678162,1.692877173423767,1.4181190133094788,1.0971222668886185,0.7653850615024567,0.4595932364463806,0.21356338262557983,1.999961256980896,1.9417840838432312,1.779457688331604,1.5309333801269531,1.2236947119235992,0.8917182832956314],"x":[1.6470994e6,4.5286444e14,9.057289e14,1.3585933e15,1.8114578e15,2.264322e15,2.7171866e15,3.170051e15,3.6229155e15,4.0757798e15,4.528644e15,4.9815087e15,5.434373e15,5.887238e15,6.340102e15,6.7929664e15,7.245831e15,7.6986956e15,8.1515596e15,8.604424e15,9.057288e15,9.510153e15,9.963017e15,1.0415882e16,1.0868747e16,1.1321611e16,1.1774476e16,1.2227339e16,1.2680204e16,1.3133068e16,1.3585933e16,1.4038797e16,1.4491662e16,1.4944527e16,1.5397391e16,1.5850255e16,1.6303119e16,1.6755984e16,1.7208848e16,1.7661713e16,1.8114576e16,1.8567442e16,1.9020306e16,1.9473171e16,1.9926035e16,2.03789e16,2.0831764e16,2.1284627e16,2.1737493e16,2.2190357e16,2.2643222e16,2.3096086e16,2.3548951e16,2.4001815e16,2.4454678e16,2.4907544e16,2.5360407e16,2.5813273e16,2.6266137e16,2.6719002e16,2.7171866e16,2.7624731e16,2.8077595e16,2.8530458e16,2.8983324e16,2.9436188e16,2.9889053e16,3.0341917e16,3.0794782e16,3.1247646e16,3.170051e16,3.2153375e16,3.2606239e16,3.3059104e16,3.3511968e16,3.3964833e16,3.4417697e16,3.487056e16,3.5323426e16,3.577629e16,3.6229153e16,3.668202e16,3.7134884e16,3.758775e16,3.804061e16,3.8493477e16,3.8946343e16,3.9399204e16,3.985207e16,4.0304935e16,4.07578e16,4.1210662e16,4.1663528e16,4.2116393e16,4.2569255e16,4.302212e16,4.3474986e16,4.392785e16,4.4380713e16,4.483358e16,4.5286444e16,4.5739306e16,4.619217e16,4.6645037e16,4.7097903e16,4.7550764e16,4.800363e16,4.8456495e16,4.8909357e16,4.9362222e16,4.981509e16,5.0267954e16,5.0720815e16,5.117368e16,5.1626546e16,5.2079408e16,5.2532273e16,5.298514e16,5.3438005e16,5.3890866e16,5.434373e16,5.4796597e16,5.5249463e16,5.5702324e16,5.615519e16,5.6608056e16,5.7060917e16,5.7513783e16,5.796665e16,5.8419514e16,5.8872375e16,5.932524e16,5.9778106e16,6.0230968e16,6.0683833e16,6.11367e16,6.1589565e16,6.2042426e16,6.249529e16,6.2948157e16,6.340102e16,6.3853884e16,6.430675e16,6.4759616e16,6.5212477e16,6.5665343e16,6.611821e16,6.657107e16,6.7023935e16,6.74768e16,6.7929667e16,6.838253e16,6.8835394e16,6.928826e16,6.974112e16,7.0193986e16,7.064685e16,7.1099718e16,7.155258e16,7.2005445e16,7.245831e16,7.291118e16,7.336404e16,7.38169e16,7.426977e16,7.472263e16,7.51755e16,7.562836e16,7.608122e16,7.653409e16,7.698695e16,7.7439815e16,7.7892685e16,7.834555e16,7.879841e16,7.925128e16,7.970414e16,8.0157e16,8.060987e16,8.106273e16,8.15156e16,8.196846e16,8.2421324e16,8.2874194e16,8.3327056e16,8.377992e16,8.423279e16,8.468565e16,8.513851e16,8.559138e16,8.604424e16,8.64971e16,8.694997e16,8.740283e16,8.78557e16,8.8308565e16,8.876143e16,8.92143e16,8.966716e16,9.012002e16,9.057289e16,9.102575e16,9.147861e16,9.193148e16,9.238434e16,9.283721e16,9.329007e16,9.3742935e16,9.4195805e16,9.464867e16,9.510153e16,9.55544e16,9.600726e16,9.646012e16,9.691299e16,9.736585e16,9.781871e16,9.827158e16,9.8724445e16,9.9177315e16,9.963018e16,1.0008304e17,1.0053591e17,1.0098877e17,1.0144163e17,1.018945e17,1.0234736e17,1.0280022e17,1.0325309e17,1.0370595e17,1.04158815e17,1.04611685e17,1.0506455e17,1.0551742e17,1.0597028e17,1.0642314e17,1.0687601e17,1.0732887e17,1.0778173e17,1.082346e17,1.0868746e17,1.09140324e17,1.09593194e17,1.1004606e17,1.1049893e17,1.1095179e17,1.1140465e17,1.1185752e17,1.1231038e17,1.1276324e17,1.1321611e17,1.1366897e17,1.1412183e17,1.145747e17,1.15027565e17,1.1548043e17,1.159333e17,1.1638616e17,1.1683903e17,1.1729189e17,1.1774475e17,1.1819762e17,1.1865048e17,1.1910334e17,1.1955621e17,1.2000907e17,1.20461936e17,1.20914806e17,1.2136767e17,1.2182053e17,1.222734e17,1.2272626e17,1.2317913e17,1.2363199e17,1.2408485e17,1.2453772e17,1.2499058e17,1.25443445e17,1.25896315e17,1.2634918e17,1.2680204e17,1.2725491e17,1.2770777e17,1.2816063e17,1.286135e17,1.2906636e17,1.2951923e17,1.2997209e17,1.3042495e17,1.3087782e17,1.31330685e17,1.3178355e17,1.3223642e17,1.3268928e17,1.3314214e17,1.3359501e17,1.3404787e17,1.3450074e17,1.349536e17,1.3540646e17,1.3585933e17,1.36312195e17,1.3676506e17,1.3721793e17,1.3767079e17,1.3812365e17,1.3857652e17,1.3902938e17,1.3948224e17,1.3993511e17,1.4038797e17,1.4084084e17,1.412937e17,1.41746565e17,1.42199435e17,1.426523e17,1.4310516e17,1.4355803e17,1.4401089e17,1.4446375e17,1.4491661e17,1.4536949e17,1.4582235e17,1.4627521e17,1.4672807e17,1.4718094e17,1.476338e17,1.4808668e17,1.4853954e17,1.489924e17,1.4944526e17,1.4989812e17,1.50351e17,1.5080386e17,1.5125672e17,1.5170958e17,1.5216244e17,1.526153e17,1.5306818e17,1.5352105e17,1.539739e17,1.5442677e17,1.5487963e17,1.5533251e17,1.5578537e17,1.5623823e17,1.566911e17,1.5714395e17,1.5759682e17,1.580497e17,1.5850256e17,1.5895542e17,1.5940828e17,1.5986114e17,1.60314e17,1.6076688e17,1.6121974e17,1.616726e17,1.6212546e17,1.6257832e17,1.630312e17,1.6348406e17,1.6393693e17,1.6438979e17,1.6484265e17,1.6529551e17,1.6574839e17,1.6620125e17,1.6665411e17,1.6710697e17,1.6755983e17,1.6801271e17,1.6846557e17,1.6891844e17,1.693713e17,1.6982416e17,1.7027702e17,1.707299e17,1.7118276e17,1.7163562e17,1.7208848e17,1.7254134e17,1.729942e17,1.7344708e17,1.7389994e17,1.743528e17,1.7480567e17,1.7525853e17,1.757114e17,1.7616427e17,1.7661713e17,1.7706999e17,1.7752285e17,1.7797571e17,1.784286e17,1.7888145e17,1.7933432e17,1.7978718e17,1.8024004e17,1.8069292e17,1.8114578e17,1.8159864e17,1.820515e17,1.8250436e17,1.8295722e17,1.834101e17,1.8386296e17,1.8431582e17,1.8476869e17,1.8522155e17,1.8567443e17,1.8612729e17,1.8658015e17,1.8703301e17,1.8748587e17,1.8793873e17,1.8839161e17,1.8884447e17,1.8929733e17,1.897502e17,1.9020306e17,1.9065592e17,1.911088e17,1.9156166e17,1.9201452e17,1.9246738e17,1.9292024e17,1.9337312e17,1.9382598e17,1.9427884e17,1.947317e17,1.9518457e17,1.9563743e17,1.960903e17,1.9654317e17,1.9699603e17,1.9744889e17,1.9790175e17,1.9835463e17,1.9880749e17,1.9926035e17,1.9971321e17,2.0016607e17,2.0061894e17,2.0107181e17,2.0152468e17,2.0197754e17,2.024304e17,2.0288326e17,2.0333614e17,2.03789e17,2.0424186e17,2.0469472e17,2.0514758e17,2.0560045e17,2.0605332e17,2.0650619e17,2.0695905e17,2.074119e17,2.0786477e17,2.0831763e17,2.0877051e17,2.0922337e17,2.0967623e17,2.101291e17,2.1058195e17,2.1103483e17,2.114877e17,2.1194056e17,2.1239342e17,2.1284628e17,2.1329914e17,2.1375202e17,2.1420488e17,2.1465774e17,2.151106e17,2.1556346e17,2.1601634e17,2.164692e17,2.1692206e17,2.1737493e17,2.1782779e17,2.1828065e17,2.1873353e17,2.1918639e17,2.1963925e17,2.2009211e17,2.2054497e17,2.2099785e17,2.2145071e17,2.2190357e17,2.2235644e17,2.228093e17,2.2326216e17,2.2371504e17,2.241679e17,2.2462076e17,2.2507362e17,2.2552648e17,2.2597934e17,2.2643222e17,2.2688508e17,2.2733794e17,2.277908e17,2.2824367e17,2.2869655e17,2.291494e17,2.2960227e17,2.3005513e17,2.3050799e17,2.3096085e17,2.3141373e17,2.318666e17,2.3231945e17,2.3277232e17,2.3322518e17,2.3367806e17,2.3413092e17,2.3458378e17,2.3503664e17,2.354895e17,2.3594236e17,2.3639524e17,2.368481e17,2.3730096e17,2.3775382e17,2.3820669e17,2.3865955e17,2.3911243e17,2.3956529e17,2.4001815e17,2.4047101e17,2.4092387e17,2.4137675e17,2.4182961e17,2.4228247e17,2.4273533e17,2.431882e17,2.4364106e17,2.4409394e17,2.445468e17,2.4499966e17,2.4545252e17,2.4590538e17,2.4635826e17,2.4681112e17,2.4726398e17,2.4771684e17,2.481697e17,2.4862257e17,2.4907544e17,2.495283e17,2.4998117e17,2.5043403e17,2.5088689e17,2.5133977e17,2.5179263e17,2.5224549e17,2.5269835e17,2.5315121e17,2.5360407e17,2.5405695e17,2.5450981e17,2.5496268e17,2.5541554e17,2.558684e17,2.5632126e17,2.5677414e17,2.57227e17,2.5767986e17,2.5813272e17,2.5858558e17,2.5903846e17,2.5949132e17,2.5994419e17,2.6039705e17,2.608499e17,2.6130277e17,2.6175565e17,2.6220851e17,2.6266137e17,2.6311423e17,2.635671e17,2.6401997e17,2.6447283e17,2.649257e17,2.6537856e17,2.6583142e17,2.6628428e17,2.6673716e17,2.6719002e17,2.6764288e17,2.6809574e17,2.685486e17,2.6900148e17,2.6945434e17,2.699072e17,2.7036007e17,2.7081293e17,2.7126579e17,2.7171867e17,2.7217153e17,2.7262439e17,2.7307725e17,2.7353011e17,2.7398297e17,2.7443585e17,2.7488871e17,2.7534157e17,2.7579444e17,2.762473e17,2.7670018e17,2.7715304e17,2.776059e17,2.7805876e17,2.7851162e17,2.7896448e17,2.7941736e17,2.7987022e17,2.8032308e17,2.8077595e17,2.812288e17,2.8168168e17,2.8213455e17,2.825874e17,2.8304027e17,2.8349313e17,2.83946e17,2.8439887e17,2.8485173e17,2.853046e17,2.8575745e17,2.8621032e17,2.866632e17,2.8711606e17,2.8756892e17,2.8802178e17,2.8847464e17,2.889275e17,2.8938036e17,2.8983322e17,2.902861e17,2.9073898e17,2.9119184e17,2.916447e17,2.9209756e17,2.9255043e17,2.930033e17,2.9345615e17,2.93909e17,2.9436187e17,2.9481473e17,2.952676e17,2.957205e17,2.9617335e17,2.966262e17,2.9707907e17,2.9753194e17,2.979848e17,2.9843766e17,2.9889052e17,2.9934338e17,2.9979624e17,3.002491e17,3.00702e17,3.0115486e17,3.0160772e17,3.020606e17,3.0251344e17,3.029663e17,3.0341917e17,3.0387203e17,3.043249e17,3.0477775e17,3.052306e17,3.056835e17,3.0613637e17,3.0658923e17,3.070421e17,3.0749495e17,3.079478e17,3.0840068e17,3.0885354e17,3.093064e17,3.0975926e17,3.1021212e17,3.1066502e17,3.1111788e17,3.1157074e17,3.120236e17,3.1247646e17,3.1292932e17,3.133822e17,3.1383505e17,3.142879e17,3.1474077e17,3.1519363e17,3.156465e17,3.160994e17,3.1655225e17,3.170051e17,3.1745797e17,3.1791083e17,3.183637e17,3.1881656e17,3.1926942e17,3.1972228e17,3.2017514e17,3.20628e17,3.210809e17,3.2153376e17,3.2198662e17,3.2243948e17,3.2289234e17,3.233452e17,3.2379807e17,3.2425093e17,3.247038e17,3.2515665e17,3.256095e17,3.260624e17,3.2651527e17,3.2696813e17,3.27421e17,3.2787385e17,3.283267e17,3.2877957e17,3.2923244e17,3.296853e17,3.3013816e17,3.3059102e17,3.310439e17,3.3149678e17,3.3194964e17,3.324025e17,3.3285536e17,3.3330822e17,3.337611e17,3.3421395e17,3.346668e17,3.3511967e17,3.3557253e17,3.3602543e17,3.364783e17,3.3693115e17,3.37384e17,3.3783687e17,3.3828973e17,3.387426e17,3.3919545e17,3.396483e17,3.4010118e17,3.4055404e17,3.4100693e17,3.414598e17,3.4191266e17,3.4236552e17,3.4281838e17,3.4327124e17,3.437241e17,3.4417696e17,3.4462983e17,3.450827e17,3.4553555e17,3.459884e17,3.464413e17,3.4689417e17,3.4734703e17,3.477999e17,3.4825275e17,3.487056e17,3.4915847e17,3.4961133e17,3.500642e17,3.5051706e17,3.5096992e17,3.514228e17,3.5187568e17,3.5232854e17,3.527814e17,3.5323426e17,3.5368712e17,3.5413998e17,3.5459284e17,3.550457e17,3.5549857e17,3.5595143e17,3.5640432e17,3.568572e17,3.5731005e17,3.577629e17,3.5821577e17,3.5866863e17,3.591215e17,3.5957435e17,3.600272e17,3.6048008e17,3.6093294e17,3.6138583e17,3.618387e17,3.6229156e17,3.627444e17,3.6319728e17,3.6365014e17,3.64103e17,3.6455586e17,3.6500872e17,3.654616e17,3.6591445e17,3.6636734e17,3.668202e17,3.6727306e17,3.6772593e17,3.681788e17,3.6863165e17,3.690845e17,3.6953737e17,3.6999023e17,3.704431e17,3.7089596e17,3.7134885e17,3.718017e17,3.7225457e17,3.7270744e17,3.731603e17,3.7361316e17,3.7406602e17,3.7451888e17,3.7497174e17,3.754246e17,3.7587746e17,3.7633036e17,3.7678322e17,3.772361e17,3.7768894e17,3.781418e17,3.7859467e17,3.7904753e17,3.795004e17,3.7995325e17,3.804061e17,3.8085897e17,3.8131184e17,3.8176473e17,3.822176e17,3.8267045e17,3.831233e17,3.8357618e17,3.8402904e17,3.844819e17,3.8493476e17,3.8538762e17,3.858405e17,3.8629334e17,3.8674624e17,3.871991e17,3.8765196e17,3.8810482e17,3.885577e17,3.8901055e17,3.894634e17,3.8991627e17,3.9036913e17,3.90822e17,3.9127485e17,3.9172775e17,3.921806e17,3.9263347e17,3.9308633e17,3.935392e17,3.9399206e17,3.9444492e17,3.9489778e17,3.9535064e17,3.958035e17,3.9625636e17,3.9670926e17,3.9716212e17,3.9761498e17,3.9806784e17,3.985207e17,3.9897357e17,3.9942643e17,3.998793e17,4.0033215e17,4.00785e17,4.0123787e17,4.0169077e17,4.0214363e17,4.025965e17,4.0304935e17,4.035022e17,4.0395507e17,4.0440794e17,4.048608e17,4.0531366e17,4.0576652e17,4.0621938e17,4.0667228e17,4.0712514e17,4.07578e17,4.0803086e17,4.0848372e17,4.089366e17,4.0938945e17,4.098423e17,4.1029517e17,4.1074803e17,4.112009e17,4.1165375e17,4.1210665e17,4.125595e17,4.1301237e17,4.1346523e17,4.139181e17,4.1437095e17,4.148238e17,4.1527668e17,4.1572954e17,4.161824e17,4.1663526e17,4.1708816e17,4.1754102e17,4.1799388e17,4.1844674e17,4.188996e17,4.1935246e17,4.1980532e17,4.202582e17,4.2071105e17,4.211639e17,4.2161677e17,4.2206967e17,4.2252253e17,4.229754e17,4.2342825e17,4.238811e17,4.2433397e17,4.2478683e17,4.252397e17,4.2569256e17,4.2614542e17,4.2659828e17,4.2705118e17,4.2750404e17,4.279569e17,4.2840976e17,4.2886262e17,4.2931548e17,4.2976834e17,4.302212e17,4.3067407e17,4.3112693e17,4.315798e17,4.320327e17,4.3248555e17,4.329384e17,4.3339127e17,4.3384413e17,4.34297e17,4.3474985e17,4.352027e17,4.3565558e17,4.3610844e17,4.365613e17,4.370142e17,4.3746706e17,4.379199e17,4.3837278e17,4.3882564e17,4.392785e17,4.3973136e17,4.4018422e17,4.406371e17,4.4108995e17,4.415428e17,4.419957e17,4.4244856e17,4.4290143e17,4.433543e17,4.4380715e17,4.4426e17,4.4471287e17,4.4516573e17,4.456186e17,4.4607146e17,4.465243e17,4.4697718e17,4.4743007e17,4.4788293e17,4.483358e17,4.4878866e17,4.4924152e17,4.4969438e17,4.5014724e17,4.506001e17,4.5105296e17,4.5150583e17,4.519587e17,4.5241158e17,4.5286444e17,4.533173e17,4.5377017e17,4.5422303e17,4.546759e17,4.5512875e17,4.555816e17,4.5603447e17,4.5648733e17,4.569402e17,4.573931e17,4.5784595e17,4.582988e17,4.5875168e17,4.5920454e17,4.596574e17,4.6011026e17,4.6056312e17,4.6101598e17,4.6146884e17,4.619217e17,4.623746e17,4.6282746e17,4.6328032e17,4.637332e17,4.6418605e17,4.646389e17,4.6509177e17,4.6554463e17,4.659975e17,4.6645035e17,4.669032e17,4.673561e17,4.6780897e17,4.6826183e17,4.687147e17,4.6916756e17,4.696204e17,4.7007328e17,4.7052614e17,4.70979e17,4.7143186e17,4.7188472e17,4.7233762e17,4.7279048e17,4.7324334e17,4.736962e17,4.7414907e17,4.7460193e17,4.750548e17,4.7550765e17,4.759605e17,4.7641337e17,4.7686623e17,4.773191e17,4.77772e17,4.7822485e17,4.786777e17,4.7913057e17,4.7958344e17,4.800363e17,4.8048916e17,4.8094202e17,4.8139488e17,4.8184774e17,4.823006e17,4.827535e17,4.8320636e17,4.8365922e17,4.841121e17,4.8456494e17,4.850178e17,4.8547067e17,4.8592353e17,4.863764e17,4.8682925e17,4.872821e17,4.87735e17,4.8818787e17,4.8864073e17,4.890936e17,4.8954645e17,4.899993e17,4.9045218e17,4.9090504e17,4.913579e17,4.9181076e17,4.9226362e17,4.9271652e17,4.9316938e17,4.9362224e17,4.940751e17,4.9452796e17,4.9498082e17,4.954337e17,4.9588655e17,4.963394e17,4.9679227e17,4.9724513e17,4.9769803e17,4.981509e17,4.9860375e17,4.990566e17,4.9950947e17,4.9996233e17,5.004152e17,5.0086806e17,5.0132092e17,5.0177378e17,5.0222664e17,5.0267954e17,5.031324e17,5.0358526e17,5.0403812e17,5.0449098e17,5.0494384e17,5.053967e17,5.0584957e17,5.0630243e17,5.067553e17,5.0720815e17,5.0766105e17,5.081139e17,5.0856677e17,5.0901963e17,5.094725e17,5.0992535e17,5.103782e17,5.1083108e17,5.1128394e17,5.117368e17,5.1218966e17,5.1264252e17,5.130954e17,5.1354828e17,5.1400114e17,5.14454e17,5.1490686e17,5.1535972e17,5.158126e17,5.1626545e17,5.167183e17,5.1717117e17,5.1762403e17,5.1807693e17,5.185298e17,5.1898265e17,5.194355e17,5.1988837e17,5.2034123e17,5.207941e17,5.2124695e17,5.216998e17,5.2215268e17,5.2260554e17,5.2305843e17,5.235113e17,5.2396416e17,5.2441702e17,5.2486988e17,5.2532274e17,5.257756e17,5.2622846e17,5.2668133e17,5.271342e17,5.2758705e17,5.2803994e17,5.284928e17,5.2894567e17,5.2939853e17,5.298514e17,5.3030425e17,5.307571e17,5.3120997e17,5.3166283e17,5.321157e17,5.3256856e17,5.3302145e17,5.334743e17,5.3392718e17,5.3438004e17,5.348329e17,5.3528576e17,5.3573862e17,5.3619148e17,5.3664434e17,5.370972e17,5.3755007e17,5.3800296e17,5.3845582e17,5.389087e17,5.3936155e17,5.398144e17,5.4026727e17,5.4072013e17,5.41173e17,5.4162585e17,5.420787e17,5.4253158e17,5.4298444e17,5.4343733e17,5.438902e17,5.4434306e17,5.447959e17,5.4524878e17,5.4570164e17,5.461545e17,5.4660736e17,5.4706022e17,5.475131e17,5.4796595e17,5.4841884e17,5.488717e17,5.4932456e17,5.4977743e17,5.502303e17,5.5068315e17,5.51136e17,5.5158887e17,5.5204173e17,5.524946e17,5.5294746e17,5.5340035e17,5.538532e17,5.5430607e17,5.5475894e17,5.552118e17,5.5566466e17,5.5611752e17,5.5657038e17,5.5702324e17,5.574761e17,5.5792896e17,5.5838186e17,5.5883472e17,5.592876e17,5.5974044e17,5.601933e17,5.6064617e17,5.6109903e17,5.615519e17,5.6200475e17,5.624576e17,5.6291047e17,5.6336337e17,5.6381623e17,5.642691e17,5.6472195e17,5.651748e17,5.6562768e17,5.6608054e17,5.665334e17,5.6698626e17,5.6743912e17,5.67892e17,5.6834488e17,5.6879774e17,5.692506e17,5.6970346e17,5.7015632e17,5.706092e17,5.7106205e17,5.715149e17,5.7196777e17,5.7242063e17,5.728735e17,5.733264e17,5.7377925e17,5.742321e17,5.7468497e17,5.7513783e17,5.755907e17,5.7604356e17,5.764964e17,5.769493e17,5.7740214e17,5.77855e17,5.7830786e17,5.787607e17,5.792136e17,5.7966645e17,5.801193e17,5.805722e17,5.810251e17,5.8147796e17,5.819308e17,5.823837e17,5.8283655e17,5.832894e17,5.837423e17,5.841951e17,5.84648e17,5.8510085e17,5.855537e17,5.860066e17,5.8645944e17,5.869123e17,5.8736516e17,5.87818e17,5.882709e17,5.8872374e17,5.891766e17,5.8962947e17,5.900823e17,5.905352e17,5.909881e17,5.91441e17,5.9189384e17,5.923467e17,5.9279956e17,5.932524e17,5.937053e17,5.9415815e17,5.94611e17,5.950639e17,5.955167e17,5.959696e17,5.9642245e17,5.968753e17,5.973282e17,5.9778104e17,5.982339e17,5.9868676e17,5.991396e17,5.995925e17,6.0004535e17,6.004982e17,6.009511e17,6.01404e17,6.0185686e17,6.023097e17,6.027626e17,6.0321544e17,6.036683e17,6.041212e17,6.04574e17,6.050269e17,6.0547975e17,6.059326e17,6.063855e17,6.0683833e17,6.072912e17,6.0774406e17,6.081969e17,6.086498e17,6.0910264e17,6.095555e17,6.1000836e17,6.104612e17,6.109141e17,6.11367e17,6.118199e17,6.1227274e17,6.127256e17,6.1317846e17,6.136313e17,6.140842e17,6.1453705e17,6.149899e17,6.154428e17,6.158956e17,6.163485e17,6.1680135e17,6.172542e17,6.177071e17,6.1815994e17,6.186128e17,6.1906566e17,6.195185e17,6.199714e17,6.2042424e17,6.208771e17,6.2133004e17,6.217829e17,6.2223576e17,6.226886e17,6.231415e17,6.2359434e17,6.240472e17,6.2450006e17,6.249529e17,6.254058e17,6.2585865e17,6.263115e17,6.267644e17,6.272172e17,6.276701e17,6.2812296e17,6.285758e17,6.290287e17,6.2948154e17,6.299344e17,6.3038726e17,6.308401e17,6.31293e17,6.317459e17,6.321988e17,6.3265164e17,6.331045e17,6.3355736e17,6.340102e17,6.344631e17,6.3491594e17,6.353688e17,6.358217e17,6.362745e17,6.367274e17,6.3718025e17,6.376331e17,6.38086e17,6.3853884e17,6.389917e17,6.3944456e17,6.398974e17,6.403503e17,6.4080314e17,6.41256e17,6.417089e17,6.421618e17,6.4261466e17,6.430675e17,6.435204e17,6.4397324e17,6.444261e17,6.4487896e17,6.453318e17,6.457847e17,6.4623755e17,6.466904e17,6.471433e17,6.475961e17,6.48049e17,6.4850185e17,6.489547e17,6.494076e17,6.4986044e17,6.503133e17,6.5076616e17,6.51219e17,6.5167195e17,6.521248e17,6.525777e17,6.5303054e17,6.534834e17,6.5393626e17,6.543891e17,6.54842e17,6.5529484e17,6.557477e17,6.5620057e17,6.566534e17,6.571063e17,6.5755915e17,6.58012e17,6.584649e17,6.589177e17,6.593706e17,6.5982346e17,6.602763e17,6.607292e17,6.6118204e17,6.616349e17,6.620878e17,6.625407e17,6.6299355e17,6.634464e17,6.638993e17,6.6435214e17,6.64805e17,6.6525786e17,6.657107e17,6.661636e17,6.6661645e17,6.670693e17,6.675222e17,6.67975e17,6.684279e17,6.6888075e17,6.693336e17,6.697865e17,6.7023934e17,6.706922e17,6.7114506e17,6.715979e17,6.7205085e17,6.725037e17,6.729566e17,6.734094e17,6.738623e17,6.7431516e17,6.74768e17,6.752209e17,6.7567374e17,6.761266e17,6.7657946e17,6.770323e17,6.774852e17,6.7793805e17,6.783909e17,6.788438e17,6.792966e17,6.797495e17,6.8020235e17,6.806552e17,6.811081e17,6.8156094e17,6.820139e17,6.824667e17,6.829196e17,6.8337245e17,6.838253e17,6.842782e17,6.8473104e17,6.851839e17,6.8563676e17,6.860896e17,6.865425e17,6.8699534e17,6.874482e17,6.879011e17,6.883539e17,6.888068e17,6.8925965e17,6.897125e17,6.901654e17,6.906182e17,6.910711e17,6.9152396e17,6.919768e17,6.9242975e17,6.928826e17,6.933355e17,6.937883e17,6.942412e17,6.9469406e17,6.951469e17,6.955998e17,6.9605264e17,6.965055e17,6.9695836e17,6.974112e17,6.978641e17,6.9831695e17,6.987698e17,6.992227e17,6.996755e17,7.001284e17,7.0058125e17,7.010341e17,7.01487e17,7.0193984e17,7.023928e17,7.028456e17,7.032985e17,7.0375135e17,7.042042e17,7.046571e17,7.0510993e17,7.055628e17,7.0601566e17,7.064685e17,7.069214e17,7.0737424e17,7.078271e17,7.0827996e17,7.087328e17,7.091857e17,7.0963855e17,7.100914e17,7.105443e17,7.109971e17,7.1145e17,7.1190286e17,7.123558e17,7.1280865e17,7.132615e17,7.137144e17,7.141672e17,7.146201e17,7.1507295e17,7.155258e17,7.159787e17,7.1643154e17,7.168844e17,7.1733726e17,7.177901e17,7.18243e17,7.1869584e17,7.191487e17,7.196016e17,7.200544e17,7.205073e17,7.2096015e17,7.21413e17,7.218659e17,7.223188e17,7.2277167e17,7.232245e17,7.236774e17,7.2413025e17,7.245831e17,7.25036e17,7.254888e17,7.259417e17,7.2639456e17,7.268474e17,7.273003e17,7.2775314e17,7.28206e17,7.2865886e17,7.291117e17,7.295646e17,7.3001745e17,7.304703e17,7.309232e17,7.31376e17,7.318289e17,7.3228175e17,7.327347e17,7.3318754e17,7.336404e17,7.340933e17,7.345461e17,7.34999e17,7.3545185e17,7.359047e17,7.363576e17,7.3681044e17,7.372633e17,7.3771616e17,7.38169e17,7.386219e17,7.3907474e17,7.395276e17,7.3998047e17,7.404333e17,7.408862e17,7.4133905e17,7.417919e17,7.422448e17,7.426977e17,7.4315056e17,7.436034e17,7.440563e17,7.4450915e17,7.44962e17,7.454149e17,7.458677e17,7.463206e17,7.4677345e17,7.472263e17,7.476792e17,7.4813204e17,7.485849e17,7.4903776e17,7.494906e17,7.499435e17,7.5039634e17,7.508492e17,7.513021e17,7.517549e17,7.522078e17,7.526607e17,7.531136e17,7.5356644e17,7.540193e17,7.544722e17,7.54925e17,7.553779e17,7.5583075e17,7.562836e17,7.567365e17,7.571893e17,7.576422e17,7.5809506e17,7.585479e17,7.590008e17,7.5945364e17,7.599065e17,7.6035936e17,7.608122e17,7.612651e17,7.6171795e17,7.621708e17,7.626237e17,7.630766e17,7.6352946e17,7.639823e17,7.644352e17,7.6488805e17,7.653409e17,7.657938e17,7.662466e17,7.666995e17,7.6715235e17,7.676052e17,7.680581e17,7.6851094e17,7.689638e17,7.6941666e17,7.698695e17,7.703224e17,7.7077524e17,7.712281e17,7.71681e17,7.721338e17,7.725867e17,7.730396e17,7.734925e17,7.7394534e17,7.743982e17,7.7485106e17,7.753039e17,7.757568e17,7.7620965e17,7.766625e17,7.771154e17,7.775682e17,7.780211e17,7.7847395e17,7.789268e17,7.793797e17,7.7983254e17,7.802854e17,7.8073826e17,7.811911e17,7.81644e17,7.8209685e17,7.825497e17,7.8300264e17,7.834555e17,7.8390836e17,7.843612e17,7.848141e17,7.8526694e17,7.857198e17,7.861727e17,7.866255e17,7.870784e17,7.8753125e17,7.879841e17,7.88437e17,7.8888983e17,7.893427e17,7.8979556e17,7.902484e17,7.907013e17,7.9115414e17,7.91607e17,7.9205986e17,7.925127e17,7.929656e17,7.934185e17,7.938714e17,7.9432424e17,7.947771e17,7.9522996e17,7.956828e17,7.961357e17,7.9658855e17,7.970414e17,7.974943e17,7.979471e17,7.984e17,7.9885285e17,7.993057e17,7.997586e17,8.0021144e17,8.006643e17,8.0111716e17,8.0157e17,8.020229e17,8.0247574e17,8.029286e17,8.0338154e17,8.038344e17,8.0428726e17,8.047401e17,8.05193e17,8.0564584e17,8.060987e17,8.0655156e17,8.070044e17,8.074573e17,8.0791015e17,8.08363e17,8.088159e17,8.092687e17,8.097216e17,8.1017446e17,8.106273e17,8.110802e17,8.1153304e17,8.119859e17,8.1243876e17,8.128916e17,8.1334455e17,8.137974e17,8.142503e17,8.1470314e17,8.15156e17,8.1560886e17,8.160617e17,8.165146e17,8.1696744e17,8.174203e17,8.178732e17,8.18326e17,8.187789e17,8.1923175e17,8.196846e17,8.201375e17,8.2059034e17,8.210432e17,8.2149606e17,8.219489e17,8.224018e17,8.2285464e17,8.233075e17,8.237604e17,8.242133e17,8.2466616e17,8.25119e17,8.255719e17,8.2602474e17,8.264776e17,8.2693046e17,8.273833e17,8.278362e17,8.2828905e17,8.287419e17,8.291948e17,8.296476e17,8.301005e17,8.3055335e17,8.310062e17,8.314591e17,8.3191194e17,8.323648e17,8.3281766e17,8.332705e17,8.3372345e17,8.341763e17,8.346292e17,8.3508204e17,8.355349e17,8.3598776e17,8.364406e17,8.368935e17,8.3734634e17,8.377992e17,8.382521e17,8.387049e17,8.391578e17,8.3961065e17,8.400635e17,8.405164e17,8.409692e17,8.414221e17,8.4187496e17,8.423278e17,8.427807e17,8.4323354e17,8.436865e17,8.441393e17,8.445922e17,8.4504505e17,8.454979e17,8.459508e17,8.4640364e17,8.468565e17,8.4730936e17,8.477622e17,8.482151e17,8.4866795e17,8.491208e17,8.495737e17,8.500265e17,8.504794e17,8.5093225e17,8.513851e17,8.51838e17,8.5229084e17,8.527437e17,8.5319656e17,8.536495e17,8.5410235e17,8.545552e17,8.550081e17,8.5546093e17,8.559138e17,8.5636666e17,8.568195e17,8.572724e17,8.5772524e17,8.581781e17,8.5863096e17,8.590838e17,8.595367e17,8.5998955e17,8.604424e17,8.608953e17,8.613481e17,8.61801e17,8.6225385e17,8.627067e17,8.631596e17,8.6361244e17,8.640654e17,8.645182e17,8.649711e17,8.6542395e17,8.658768e17,8.663297e17,8.6678254e17,8.672354e17,8.6768826e17,8.681411e17,8.68594e17,8.6904684e17,8.694997e17,8.699526e17,8.704054e17,8.708583e17,8.7131115e17,8.71764e17,8.722169e17,8.7266973e17,8.731226e17,8.7357546e17,8.740284e17,8.7448125e17,8.749341e17,8.75387e17,8.758398e17,8.762927e17,8.7674556e17,8.771984e17,8.776513e17,8.7810414e17,8.78557e17,8.7900986e17,8.794627e17,8.799156e17,8.8036845e17,8.808213e17,8.812742e17,8.81727e17,8.821799e17,8.8263275e17,8.830856e17,8.835385e17,8.839914e17,8.844443e17,8.848971e17,8.8535e17,8.8580285e17,8.862557e17,8.867086e17,8.8716144e17,8.876143e17,8.8806716e17,8.8852e17,8.889729e17,8.8942574e17,8.898786e17,8.9033146e17,8.907843e17,8.912372e17,8.9169005e17,8.921429e17,8.925958e17,8.930486e17,8.935015e17,8.9395436e17,8.944073e17,8.9486015e17,8.95313e17,8.957659e17,8.962187e17,8.966716e17,8.9712445e17,8.975773e17,8.980302e17,8.9848304e17,8.989359e17,8.9938876e17,8.998416e17,9.002945e17,9.0074734e17,9.012002e17,9.016531e17,9.021059e17,9.025588e17,9.0301165e17,9.034645e17,9.039174e17,9.043703e17,9.0482317e17,9.05276e17,9.057289e17,9.0618175e17,9.066346e17,9.070875e17,9.075403e17,9.079932e17,9.0844606e17,9.088989e17,9.093518e17,9.0980464e17,9.102575e17,9.1071036e17,9.111632e17,9.116161e17,9.1206895e17,9.125218e17,9.129747e17,9.134275e17,9.138804e17,9.143333e17,9.147862e17,9.1523905e17,9.156919e17,9.161448e17,9.165976e17,9.170505e17,9.1750335e17,9.179562e17,9.184091e17,9.1886194e17,9.193148e17,9.1976766e17,9.202205e17,9.206734e17,9.2112624e17,9.215791e17,9.2203197e17,9.224848e17,9.229377e17,9.2339055e17,9.238434e17,9.242963e17,9.247492e17,9.2520206e17,9.256549e17,9.261078e17,9.2656065e17,9.270135e17,9.274664e17,9.279192e17,9.283721e17,9.2882495e17,9.292778e17,9.297307e17,9.3018354e17,9.306364e17,9.3108926e17,9.315421e17,9.31995e17,9.3244785e17,9.329007e17,9.333536e17,9.338064e17,9.342593e17,9.347122e17,9.351651e17,9.3561794e17,9.360708e17,9.365237e17,9.369765e17,9.374294e17,9.3788225e17,9.383351e17,9.38788e17,9.392408e17,9.396937e17,9.4014656e17,9.405994e17,9.410523e17,9.4150514e17,9.41958e17,9.4241086e17,9.428637e17,9.433166e17,9.4376945e17,9.442223e17,9.4467524e17,9.451281e17,9.4558096e17,9.460338e17,9.464867e17,9.4693955e17,9.473924e17,9.478453e17,9.482981e17,9.48751e17,9.4920385e17,9.496567e17,9.501096e17,9.5056244e17,9.510153e17,9.5146816e17,9.51921e17,9.523739e17,9.5282674e17,9.532796e17,9.537325e17,9.541853e17,9.546382e17,9.550911e17,9.55544e17,9.5599684e17,9.564497e17,9.5690256e17,9.573554e17,9.578083e17,9.5826115e17,9.58714e17,9.591669e17,9.596197e17,9.600726e17,9.6052546e17,9.609783e17,9.614312e17,9.6188404e17,9.623369e17,9.6278976e17,9.632426e17,9.636955e17,9.6414835e17,9.646012e17,9.6505414e17,9.65507e17,9.6595986e17,9.664127e17,9.668656e17,9.6731844e17,9.677713e17,9.682242e17,9.68677e17,9.691299e17,9.6958275e17,9.700356e17,9.704885e17,9.7094134e17,9.713942e17,9.7184706e17,9.722999e17,9.727528e17,9.7320564e17,9.736585e17,9.7411136e17,9.745642e17,9.7501716e17,9.7547e17,9.759229e17,9.7637574e17,9.768286e17,9.7728146e17,9.777343e17,9.781872e17,9.7864005e17,9.790929e17,9.795458e17,9.799986e17,9.804515e17,9.8090435e17,9.813572e17,9.818101e17,9.8226294e17,9.827158e17,9.8316866e17,9.836215e17,9.840744e17,9.8452724e17,9.849802e17,9.8543304e17,9.858859e17,9.8633876e17,9.867916e17,9.872445e17,9.8769734e17,9.881502e17,9.8860307e17,9.890559e17,9.895088e17,9.8996165e17,9.904145e17,9.908674e17,9.913202e17,9.917731e17,9.9222596e17,9.926788e17,9.931317e17,9.9358454e17,9.940374e17,9.9449026e17,9.949431e17,9.9539605e17,9.958489e17,9.963018e17,9.9675464e17,9.972075e17,9.9766036e17,9.981132e17,9.985661e17,9.9901895e17,9.994718e17,9.999247e17,1.0003775e18,1.0008304e18,1.00128325e18,1.0017361e18,1.002189e18,1.00264184e18,1.0030947e18,1.00354756e18,1.0040004e18,1.0044533e18,1.00490614e18,1.0053591e18,1.0058119e18,1.0062648e18,1.00671766e18,1.0071705e18,1.0076234e18,1.00807624e18,1.0085291e18,1.00898196e18,1.0094348e18,1.0098877e18,1.01034055e18,1.0107934e18,1.0112463e18,1.0116991e18,1.012152e18,1.01260485e18,1.0130577e18,1.0135106e18,1.01396344e18,1.0144163e18,1.01486916e18,1.0153221e18,1.01577495e18,1.0162278e18,1.0166807e18,1.01713354e18,1.0175864e18,1.01803926e18,1.0184921e18,1.018945e18,1.01939784e18,1.0198507e18,1.0203036e18,1.0207564e18,1.0212093e18,1.02166215e18,1.022115e18,1.0225679e18,1.0230207e18,1.0234736e18,1.02392646e18,1.0243793e18,1.0248322e18,1.02528504e18,1.025738e18,1.0261908e18,1.0266437e18,1.02709656e18,1.0275494e18,1.0280023e18,1.02845514e18,1.028908e18,1.02936086e18,1.0298137e18,1.0302666e18,1.03071945e18,1.0311723e18,1.0316252e18,1.032078e18,1.0325309e18,1.03298375e18,1.0334366e18,1.0338895e18,1.03434234e18,1.0347952e18,1.03524806e18,1.035701e18,1.03615385e18,1.0366067e18,1.0370596e18,1.03751243e18,1.0379653e18,1.03841816e18,1.038871e18,1.0393239e18,1.03977674e18,1.0402296e18,1.04068246e18,1.0411353e18,1.0415882e18,1.04204105e18,1.0424939e18,1.0429468e18,1.0433996e18,1.0438525e18,1.04430536e18,1.0447582e18,1.0452111e18,1.045664e18,1.0461169e18,1.0465697e18,1.0470226e18,1.04747545e18,1.0479283e18,1.0483812e18,1.04883404e18,1.0492869e18,1.04973976e18,1.0501926e18,1.0506455e18,1.05109834e18,1.0515512e18,1.0520041e18,1.0524569e18,1.0529098e18,1.05336265e18,1.0538155e18,1.0542684e18,1.05472123e18,1.0551741e18,1.05562696e18,1.0560799e18,1.05653275e18,1.0569856e18,1.0574385e18,1.0578913e18,1.0583442e18,1.05879706e18,1.0592499e18,1.0597028e18,1.06015564e18,1.0606085e18,1.06106136e18,1.0615142e18,1.0619671e18,1.06241995e18,1.0628728e18,1.0633257e18,1.0637785e18,1.0642314e18,1.06468425e18,1.0651371e18,1.06559e18,1.0660429e18,1.0664958e18,1.0669486e18,1.0674015e18,1.06785435e18,1.0683072e18,1.0687601e18,1.06921294e18,1.0696658e18,1.07011866e18,1.0705715e18,1.0710244e18,1.07147724e18,1.0719301e18,1.07238297e18,1.0728358e18,1.0732887e18,1.07374155e18,1.0741944e18,1.0746473e18,1.0751001e18,1.075553e18,1.0760059e18,1.0764588e18,1.07691165e18,1.0773645e18,1.0778174e18,1.0782702e18,1.0787231e18,1.07917595e18,1.0796288e18,1.0800817e18,1.08053454e18,1.0809874e18,1.08144026e18,1.0818931e18,1.082346e18,1.08279884e18,1.0832517e18,1.0837046e18,1.0841574e18,1.0846103e18,1.08506315e18,1.085516e18,1.0859689e18,1.0864218e18,1.0868747e18,1.0873275e18,1.0877804e18,1.08823325e18,1.0886861e18,1.089139e18,1.0895918e18,1.0900447e18,1.09049756e18,1.0909504e18,1.0914033e18,1.09185614e18,1.092309e18,1.09276186e18,1.0932147e18,1.0936676e18,1.09412045e18,1.0945733e18,1.0950262e18,1.095479e18,1.0959319e18,1.0963848e18,1.0968377e18,1.09729055e18,1.0977434e18,1.0981963e18,1.0986491e18,1.099102e18,1.09955485e18,1.1000077e18,1.1004606e18,1.10091344e18,1.1013663e18,1.10181916e18,1.102272e18,1.1027249e18,1.10317774e18,1.1036306e18,1.1040835e18,1.1045363e18,1.1049892e18,1.10544205e18,1.1058949e18,1.10634784e18,1.1068007e18,1.10725356e18,1.1077064e18,1.1081593e18,1.10861215e18,1.109065e18,1.1095179e18,1.1099707e18,1.1104236e18,1.11087645e18,1.1113293e18,1.1117822e18,1.11223504e18,1.1126879e18,1.11314076e18,1.1135936e18,1.1140465e18,1.11449935e18,1.1149522e18,1.1154051e18,1.1158579e18,1.11631086e18,1.1167637e18,1.1172166e18,1.11766944e18,1.1181223e18,1.1185752e18,1.119028e18,1.1194809e18,1.11993375e18,1.1203866e18,1.1208395e18,1.12129233e18,1.1217452e18,1.12219806e18,1.1226509e18,1.1231038e18,1.12355664e18,1.1240095e18,1.12446236e18,1.1249152e18,1.1253681e18,1.12582095e18,1.1262738e18,1.12672674e18,1.1271796e18,1.12763246e18,1.1280853e18,1.1285382e18,1.12899105e18,1.1294439e18,1.1298968e18,1.1303496e18,1.1308025e18,1.13125535e18,1.1317082e18,1.1321611e18,1.13261394e18,1.1330668e18,1.13351966e18,1.1339725e18,1.1344254e18,1.13487824e18,1.1353311e18,1.135784e18,1.1362368e18,1.13668976e18,1.1371426e18,1.1375955e18,1.13804834e18,1.1385012e18,1.13895406e18,1.1394069e18,1.1398598e18,1.14031265e18,1.1407655e18,1.1412184e18,1.1416712e18,1.1421241e18,1.14257696e18,1.1430298e18,1.1434827e18,1.14393554e18,1.1443884e18,1.14484126e18,1.1452941e18,1.145747e18,1.14619985e18,1.1466528e18,1.14710564e18,1.1475585e18,1.14801136e18,1.1484642e18,1.1489171e18,1.14936994e18,1.1498228e18,1.1502757e18,1.1507285e18,1.1511814e18,1.15163425e18,1.1520871e18,1.15254e18,1.1529928e18,1.1534457e18,1.1538986e18,1.1543514e18,1.1548043e18,1.1552571e18,1.15571e18,1.1561629e18,1.1566157e18,1.1570686e18,1.1575214e18,1.1579743e18,1.1584272e18,1.15888e18,1.1593329e18,1.1597858e18,1.1602386e18,1.1606915e18,1.1611443e18,1.1615972e18,1.1620502e18,1.162503e18,1.1629559e18,1.1634088e18,1.1638616e18,1.1643145e18,1.1647674e18,1.1652202e18,1.1656731e18,1.166126e18,1.1665788e18,1.1670317e18,1.1674845e18,1.1679374e18,1.1683903e18,1.1688431e18,1.169296e18,1.1697488e18,1.1702017e18,1.1706546e18,1.1711074e18,1.1715603e18,1.1720131e18,1.172466e18,1.1729189e18,1.1733717e18,1.1738246e18,1.1742775e18,1.1747303e18,1.1751832e18,1.175636e18,1.1760889e18,1.1765418e18,1.1769946e18,1.1774475e18,1.1779003e18,1.1783532e18,1.1788061e18,1.1792589e18,1.1797118e18,1.1801647e18,1.1806175e18,1.1810704e18,1.1815232e18,1.1819762e18,1.1824291e18,1.182882e18,1.1833348e18,1.1837877e18,1.1842405e18,1.1846934e18,1.1851463e18,1.1855991e18,1.186052e18,1.1865049e18,1.1869577e18,1.1874106e18,1.1878634e18,1.1883163e18,1.1887692e18,1.189222e18,1.1896749e18,1.1901277e18,1.1905806e18,1.1910335e18,1.1914863e18,1.1919392e18,1.192392e18,1.1928449e18,1.1932978e18,1.1937506e18,1.1942035e18,1.1946564e18,1.1951092e18,1.1955621e18,1.196015e18,1.1964678e18,1.1969207e18,1.1973735e18,1.1978264e18,1.1982792e18,1.1987321e18,1.199185e18,1.1996378e18,1.2000907e18,1.2005436e18,1.2009964e18,1.2014493e18,1.2019021e18,1.2023551e18,1.202808e18,1.2032609e18,1.2037137e18,1.2041666e18,1.2046194e18,1.2050723e18,1.2055252e18,1.205978e18,1.2064309e18,1.2068837e18,1.2073366e18,1.2077895e18,1.2082423e18,1.2086952e18,1.209148e18,1.2096009e18,1.2100538e18,1.2105066e18,1.2109595e18,1.2114124e18,1.2118652e18,1.2123181e18,1.212771e18,1.2132238e18,1.2136767e18,1.2141295e18,1.2145824e18,1.2150353e18,1.2154881e18,1.215941e18,1.2163938e18,1.2168467e18,1.2172996e18,1.2177524e18,1.2182053e18,1.2186581e18,1.219111e18,1.2195639e18,1.2200167e18,1.2204696e18,1.2209225e18,1.2213753e18,1.2218282e18,1.222281e18,1.222734e18,1.2231869e18,1.2236398e18,1.2240926e18,1.2245455e18,1.2249983e18,1.2254512e18,1.225904e18,1.2263569e18,1.2268098e18,1.2272626e18,1.2277155e18,1.2281684e18,1.2286212e18,1.2290741e18,1.229527e18,1.2299798e18,1.2304327e18,1.2308855e18,1.2313384e18,1.2317913e18,1.2322441e18,1.232697e18,1.2331498e18,1.2336027e18,1.2340556e18,1.2345084e18,1.2349613e18,1.2354142e18,1.235867e18,1.2363199e18,1.2367727e18,1.2372256e18,1.2376785e18,1.2381313e18,1.2385842e18,1.239037e18,1.2394899e18,1.2399428e18,1.2403956e18,1.2408485e18,1.2413013e18,1.2417542e18,1.2422071e18,1.2426601e18,1.243113e18,1.2435658e18,1.2440187e18,1.2444715e18,1.2449244e18,1.2453772e18,1.2458301e18,1.246283e18,1.2467358e18,1.2471887e18,1.2476415e18,1.2480944e18,1.2485473e18,1.2490001e18,1.249453e18,1.2499059e18,1.2503587e18,1.2508116e18,1.2512644e18,1.2517173e18,1.2521702e18,1.252623e18,1.2530759e18,1.2535287e18,1.2539816e18,1.2544345e18,1.2548873e18,1.2553402e18,1.255793e18,1.2562459e18,1.2566988e18,1.2571516e18,1.2576045e18,1.2580574e18,1.2585102e18,1.2589631e18,1.259416e18,1.2598688e18,1.2603217e18,1.2607745e18,1.2612274e18,1.2616802e18,1.2621331e18,1.262586e18,1.263039e18,1.2634918e18,1.2639447e18,1.2643976e18,1.2648504e18,1.2653033e18,1.2657561e18,1.266209e18,1.2666619e18,1.2671147e18,1.2675676e18,1.2680204e18,1.2684733e18,1.2689262e18,1.269379e18,1.2698319e18,1.2702848e18,1.2707376e18,1.2711905e18,1.2716433e18,1.2720962e18,1.272549e18,1.2730019e18,1.2734548e18,1.2739076e18,1.2743605e18,1.2748134e18,1.2752662e18,1.2757191e18,1.276172e18,1.2766248e18,1.2770777e18,1.2775305e18,1.2779834e18,1.2784363e18,1.2788891e18,1.279342e18,1.2797948e18,1.2802477e18,1.2807006e18,1.2811534e18,1.2816063e18,1.2820591e18,1.282512e18,1.2829649e18,1.2834179e18,1.2838707e18,1.2843236e18,1.2847765e18,1.2852293e18,1.2856822e18,1.286135e18,1.2865879e18,1.2870408e18,1.2874936e18,1.2879465e18,1.2883993e18,1.2888522e18,1.289305e18,1.2897579e18,1.2902108e18,1.2906636e18,1.2911165e18,1.2915694e18,1.2920222e18,1.2924751e18,1.292928e18,1.2933808e18,1.2938337e18,1.2942865e18,1.2947394e18,1.2951923e18,1.2956451e18,1.296098e18,1.2965508e18,1.2970037e18,1.2974566e18,1.2979094e18,1.2983623e18,1.2988152e18,1.299268e18,1.2997209e18,1.3001737e18,1.3006266e18,1.3010795e18,1.3015323e18,1.3019852e18,1.302438e18,1.3028909e18,1.3033439e18,1.3037968e18,1.3042496e18,1.3047025e18,1.3051553e18,1.3056082e18,1.3060611e18,1.306514e18,1.3069668e18,1.3074197e18,1.3078725e18,1.3083254e18,1.3087782e18,1.3092311e18,1.309684e18,1.3101368e18,1.3105897e18,1.3110425e18,1.3114954e18,1.3119483e18,1.3124011e18,1.312854e18,1.3133069e18,1.3137597e18,1.3142126e18,1.3146654e18,1.3151183e18,1.3155712e18,1.316024e18,1.3164769e18,1.3169297e18,1.3173826e18,1.3178355e18,1.3182883e18,1.3187412e18,1.319194e18,1.3196469e18,1.3200998e18,1.3205526e18,1.3210055e18,1.3214584e18,1.3219112e18,1.3223641e18,1.322817e18,1.3232698e18,1.3237228e18,1.3241757e18,1.3246285e18,1.3250814e18,1.3255342e18,1.3259871e18,1.32644e18,1.3268928e18,1.3273457e18,1.3277986e18,1.3282514e18,1.3287043e18,1.3291571e18,1.32961e18,1.3300629e18,1.3305157e18,1.3309686e18,1.3314214e18,1.3318743e18,1.3323272e18,1.33278e18,1.3332329e18,1.3336858e18,1.3341386e18,1.3345915e18,1.3350443e18,1.3354972e18,1.33595e18,1.3364029e18,1.3368558e18,1.3373086e18,1.3377615e18,1.3382144e18,1.3386672e18,1.3391201e18,1.339573e18,1.3400258e18,1.3404787e18,1.3409315e18,1.3413844e18,1.3418373e18,1.3422901e18,1.342743e18,1.3431958e18,1.3436488e18,1.3441017e18,1.3445546e18,1.3450074e18,1.3454603e18,1.3459131e18,1.346366e18,1.3468189e18,1.3472717e18,1.3477246e18,1.3481775e18,1.3486303e18,1.3490832e18,1.349536e18,1.3499889e18,1.3504418e18,1.3508946e18,1.3513475e18,1.3518003e18,1.3522532e18,1.352706e18,1.3531589e18,1.3536118e18,1.3540646e18,1.3545175e18,1.3549704e18,1.3554232e18,1.3558761e18,1.356329e18,1.3567818e18,1.3572347e18,1.3576875e18,1.3581404e18,1.3585933e18,1.3590461e18,1.359499e18,1.3599518e18,1.3604047e18,1.3608576e18,1.3613104e18,1.3617633e18,1.3622162e18,1.362669e18,1.3631219e18,1.3635747e18,1.3640277e18,1.3644806e18,1.3649335e18,1.3653863e18,1.3658392e18,1.366292e18,1.3667449e18,1.3671978e18,1.3676506e18,1.3681035e18,1.3685564e18,1.3690092e18,1.3694621e18,1.369915e18,1.3703678e18,1.3708207e18,1.3712735e18,1.3717264e18,1.3721792e18,1.3726321e18,1.373085e18,1.3735378e18,1.3739907e18,1.3744435e18,1.3748964e18,1.3753493e18,1.3758021e18,1.376255e18,1.3767079e18,1.3771607e18,1.3776136e18,1.3780664e18,1.3785193e18,1.3789722e18,1.379425e18,1.3798779e18,1.3803307e18,1.3807836e18,1.3812365e18,1.3816893e18,1.3821422e18,1.382595e18,1.3830479e18,1.3835008e18,1.3839536e18,1.3844066e18,1.3848595e18,1.3853124e18,1.3857652e18,1.3862181e18,1.386671e18,1.3871238e18,1.3875767e18,1.3880295e18,1.3884824e18,1.3889352e18,1.3893881e18,1.389841e18,1.3902938e18,1.3907467e18,1.3911996e18,1.3916524e18,1.3921053e18,1.3925581e18,1.393011e18,1.3934639e18,1.3939167e18,1.3943696e18,1.3948224e18,1.3952753e18,1.3957282e18,1.396181e18,1.3966339e18,1.3970868e18,1.3975396e18,1.3979925e18,1.3984453e18,1.3988982e18,1.399351e18,1.3998039e18,1.4002568e18,1.4007096e18,1.4011625e18,1.4016154e18,1.4020682e18,1.4025211e18,1.402974e18,1.4034268e18,1.4038797e18,1.4043327e18,1.4047855e18,1.4052384e18,1.4056913e18,1.4061441e18,1.406597e18,1.4070498e18,1.4075027e18,1.4079556e18,1.4084084e18,1.4088613e18,1.4093141e18,1.409767e18,1.4102199e18,1.4106727e18,1.4111256e18,1.4115785e18,1.4120313e18,1.4124842e18,1.412937e18,1.4133899e18,1.4138428e18,1.4142956e18,1.4147485e18,1.4152013e18,1.4156542e18,1.416107e18,1.4165599e18,1.4170128e18,1.4174657e18,1.4179185e18,1.4183714e18,1.4188242e18,1.4192771e18,1.41973e18,1.4201828e18,1.4206357e18,1.4210885e18,1.4215414e18,1.4219943e18,1.4224471e18,1.4229e18,1.4233528e18,1.4238057e18,1.4242586e18,1.4247116e18,1.4251644e18,1.4256173e18,1.4260702e18,1.426523e18,1.4269759e18,1.4274287e18,1.4278816e18,1.4283345e18,1.4287873e18,1.4292402e18,1.429693e18,1.4301459e18,1.4305988e18,1.4310516e18,1.4315045e18,1.4319574e18,1.4324102e18,1.4328631e18,1.433316e18,1.4337688e18,1.4342217e18,1.4346745e18,1.4351274e18,1.4355802e18,1.4360331e18,1.436486e18,1.4369388e18,1.4373917e18,1.4378445e18,1.4382974e18,1.4387503e18,1.4392031e18,1.439656e18,1.4401089e18,1.4405617e18,1.4410146e18,1.4414674e18,1.4419203e18,1.4423732e18,1.442826e18,1.4432789e18,1.4437317e18,1.4441846e18,1.4446376e18,1.4450905e18,1.4455433e18,1.4459962e18,1.446449e18,1.4469019e18,1.4473548e18,1.4478076e18,1.4482605e18,1.4487134e18,1.4491662e18,1.4496191e18,1.450072e18,1.4505248e18,1.4509777e18,1.4514305e18,1.4518834e18,1.4523363e18,1.4527891e18,1.453242e18,1.4536948e18,1.4541477e18,1.4546006e18,1.4550534e18,1.4555063e18,1.4559591e18,1.456412e18,1.4568649e18,1.4573177e18,1.4577706e18,1.4582234e18,1.4586763e18,1.4591292e18,1.459582e18,1.4600349e18,1.4604878e18,1.4609406e18,1.4613935e18,1.4618463e18,1.4622992e18,1.462752e18,1.4632049e18,1.4636578e18,1.4641106e18,1.4645635e18,1.4650165e18,1.4654694e18,1.4659222e18,1.4663751e18,1.466828e18,1.4672808e18,1.4677337e18,1.4681865e18,1.4686394e18,1.4690923e18,1.4695451e18,1.469998e18,1.4704508e18,1.4709037e18,1.4713566e18,1.4718094e18,1.4722623e18,1.4727151e18,1.473168e18,1.4736209e18,1.4740737e18,1.4745266e18,1.4749795e18,1.4754323e18,1.4758852e18,1.476338e18,1.4767909e18,1.4772438e18,1.4776966e18,1.4781495e18,1.4786023e18,1.4790552e18,1.4795081e18,1.4799609e18,1.4804138e18,1.4808667e18,1.4813195e18,1.4817724e18,1.4822252e18,1.4826781e18,1.483131e18,1.4835838e18,1.4840367e18,1.4844895e18,1.4849424e18,1.4853954e18,1.4858483e18,1.4863011e18,1.486754e18,1.4872068e18,1.4876597e18,1.4881126e18,1.4885654e18,1.4890183e18,1.4894712e18,1.489924e18,1.4903769e18,1.4908297e18,1.4912826e18,1.4917355e18,1.4921883e18,1.4926412e18,1.493094e18,1.4935469e18,1.4939998e18,1.4944526e18,1.4949055e18,1.4953584e18,1.4958112e18,1.4962641e18,1.496717e18,1.4971698e18,1.4976227e18,1.4980755e18,1.4985284e18,1.4989812e18,1.4994341e18,1.499887e18,1.5003398e18,1.5007927e18,1.5012456e18,1.5016984e18,1.5021513e18,1.5026041e18,1.503057e18,1.5035099e18,1.5039627e18,1.5044156e18,1.5048684e18,1.5053214e18,1.5057743e18,1.5062272e18,1.50668e18,1.5071329e18,1.5075857e18,1.5080386e18,1.5084915e18,1.5089443e18,1.5093972e18,1.50985e18,1.5103029e18,1.5107558e18,1.5112086e18,1.5116615e18,1.5121144e18,1.5125672e18,1.5130201e18,1.513473e18,1.5139258e18,1.5143787e18,1.5148315e18,1.5152844e18,1.5157373e18,1.5161901e18,1.516643e18,1.5170958e18,1.5175487e18,1.5180016e18,1.5184544e18,1.5189073e18,1.5193601e18,1.519813e18,1.5202659e18,1.5207187e18,1.5211716e18,1.5216244e18,1.5220773e18,1.5225302e18,1.522983e18,1.5234359e18,1.5238888e18,1.5243416e18,1.5247945e18,1.5252473e18,1.5257003e18,1.5261532e18,1.526606e18,1.5270589e18,1.5275118e18,1.5279646e18,1.5284175e18,1.5288704e18,1.5293232e18,1.5297761e18,1.530229e18,1.5306818e18,1.5311347e18,1.5315875e18,1.5320404e18,1.5324933e18,1.5329461e18,1.533399e18,1.5338518e18,1.5343047e18,1.5347576e18,1.5352104e18,1.5356633e18,1.5361162e18,1.536569e18,1.5370219e18,1.5374747e18,1.5379276e18,1.5383805e18,1.5388333e18,1.5392862e18,1.539739e18,1.5401919e18,1.5406448e18,1.5410976e18,1.5415505e18,1.5420033e18,1.5424562e18,1.5429091e18,1.543362e18,1.5438148e18,1.5442677e18,1.5447205e18,1.5451734e18,1.5456262e18,1.5460792e18,1.5465321e18,1.546985e18,1.5474378e18,1.5478907e18,1.5483435e18,1.5487964e18,1.5492493e18,1.5497021e18,1.550155e18,1.5506079e18,1.5510607e18,1.5515136e18,1.5519664e18,1.5524193e18,1.5528722e18,1.553325e18,1.5537779e18,1.5542307e18,1.5546836e18,1.5551365e18,1.5555893e18,1.5560422e18,1.556495e18,1.5569479e18,1.5574008e18,1.5578536e18,1.5583065e18,1.5587594e18,1.5592122e18,1.5596651e18,1.560118e18,1.5605708e18,1.5610237e18,1.5614765e18,1.5619294e18,1.5623822e18,1.5628351e18,1.563288e18,1.5637408e18,1.5641937e18,1.5646466e18,1.5650994e18,1.5655523e18,1.5660053e18,1.5664581e18,1.566911e18,1.5673639e18,1.5678167e18,1.5682696e18,1.5687224e18,1.5691753e18,1.5696282e18,1.570081e18,1.5705339e18,1.5709867e18,1.5714396e18,1.5718925e18,1.5723453e18,1.5727982e18,1.573251e18,1.5737039e18,1.5741568e18,1.5746096e18,1.5750625e18,1.5755154e18,1.5759682e18,1.5764211e18,1.576874e18,1.5773268e18,1.5777797e18,1.5782325e18,1.5786854e18,1.5791383e18,1.5795911e18,1.580044e18,1.5804968e18,1.5809497e18,1.5814026e18,1.5818554e18,1.5823083e18,1.5827611e18,1.583214e18,1.5836669e18,1.5841197e18,1.5845726e18,1.5850255e18,1.5854783e18,1.5859312e18,1.5863842e18,1.586837e18,1.5872899e18,1.5877428e18,1.5881956e18,1.5886485e18,1.5891013e18,1.5895542e18,1.590007e18,1.5904599e18,1.5909128e18,1.5913656e18,1.5918185e18,1.5922714e18,1.5927242e18,1.5931771e18,1.59363e18,1.5940828e18,1.5945357e18,1.5949885e18,1.5954414e18,1.5958943e18,1.5963471e18,1.5968e18,1.5972528e18,1.5977057e18,1.5981586e18,1.5986114e18,1.5990643e18,1.5995172e18,1.59997e18,1.6004229e18,1.6008757e18,1.6013286e18,1.6017815e18,1.6022343e18,1.6026872e18,1.60314e18,1.6035929e18,1.6040458e18,1.6044986e18,1.6049515e18,1.6054043e18,1.6058572e18,1.6063102e18,1.6067631e18,1.607216e18,1.6076688e18,1.6081217e18,1.6085745e18,1.6090274e18,1.6094802e18,1.6099331e18,1.610386e18,1.6108388e18,1.6112917e18,1.6117445e18,1.6121974e18,1.6126503e18,1.6131031e18,1.613556e18,1.6140089e18,1.6144617e18,1.6149146e18,1.6153674e18,1.6158203e18,1.6162732e18,1.616726e18,1.6171789e18,1.6176317e18,1.6180846e18,1.6185375e18,1.6189903e18,1.6194432e18,1.619896e18,1.6203489e18,1.6208018e18,1.6212546e18,1.6217075e18,1.6221604e18,1.6226132e18,1.6230661e18,1.623519e18,1.6239718e18,1.6244247e18,1.6248775e18,1.6253304e18,1.6257832e18,1.6262361e18,1.6266891e18,1.627142e18,1.6275948e18,1.6280477e18,1.6285006e18,1.6289534e18,1.6294063e18,1.6298591e18,1.630312e18,1.6307649e18,1.6312177e18,1.6316706e18,1.6321234e18,1.6325763e18,1.6330292e18,1.633482e18,1.6339349e18,1.6343878e18,1.6348406e18,1.6352935e18,1.6357463e18,1.6361992e18,1.636652e18,1.6371049e18,1.6375578e18,1.6380106e18,1.6384635e18,1.6389164e18,1.6393692e18,1.6398221e18,1.640275e18,1.6407278e18,1.6411807e18,1.6416335e18,1.6420864e18,1.6425393e18,1.6429921e18,1.643445e18,1.6438978e18,1.6443507e18,1.6448036e18,1.6452564e18,1.6457093e18,1.6461621e18,1.646615e18,1.647068e18,1.6475209e18,1.6479737e18,1.6484266e18,1.6488795e18,1.6493323e18,1.6497852e18,1.650238e18,1.6506909e18,1.6511438e18,1.6515966e18,1.6520495e18,1.6525023e18,1.6529552e18,1.653408e18,1.6538609e18,1.6543138e18,1.6547666e18,1.6552195e18,1.6556724e18,1.6561252e18,1.6565781e18,1.657031e18,1.6574838e18,1.6579367e18,1.6583895e18,1.6588424e18,1.6592953e18,1.6597481e18,1.660201e18,1.6606538e18,1.6611067e18,1.6615596e18,1.6620124e18,1.6624653e18,1.6629182e18,1.663371e18,1.6638239e18,1.6642767e18,1.6647296e18,1.6651825e18,1.6656353e18,1.6660882e18,1.666541e18,1.666994e18,1.6674469e18,1.6678998e18,1.6683526e18,1.6688055e18,1.6692583e18,1.6697112e18,1.6701641e18,1.670617e18,1.6710698e18,1.6715227e18,1.6719755e18,1.6724284e18,1.6728812e18,1.6733341e18,1.673787e18,1.6742398e18,1.6746927e18,1.6751455e18,1.6755984e18,1.6760513e18,1.6765041e18,1.676957e18,1.6774099e18,1.6778627e18,1.6783156e18,1.6787684e18,1.6792213e18,1.6796742e18,1.680127e18,1.6805799e18,1.6810327e18,1.6814856e18,1.6819385e18,1.6823913e18,1.6828442e18,1.683297e18,1.6837499e18,1.6842028e18,1.6846556e18,1.6851085e18,1.6855614e18,1.6860142e18,1.6864671e18,1.68692e18,1.687373e18,1.6878258e18,1.6882787e18,1.6887315e18,1.6891844e18,1.6896372e18,1.6900901e18,1.690543e18,1.6909958e18,1.6914487e18,1.6919016e18,1.6923544e18,1.6928073e18,1.6932601e18,1.693713e18,1.6941659e18,1.6946187e18,1.6950716e18,1.6955244e18,1.6959773e18,1.6964302e18,1.696883e18,1.6973359e18,1.6977888e18,1.6982416e18,1.6986945e18,1.6991473e18,1.6996002e18,1.700053e18,1.7005059e18,1.7009588e18,1.7014116e18,1.7018645e18,1.7023174e18,1.7027702e18,1.7032231e18,1.703676e18,1.7041288e18,1.7045817e18,1.7050345e18,1.7054874e18,1.7059403e18,1.7063931e18,1.706846e18,1.707299e18,1.7077518e18,1.7082047e18,1.7086576e18,1.7091104e18,1.7095633e18,1.7100161e18,1.710469e18,1.7109219e18,1.7113747e18,1.7118276e18,1.7122805e18,1.7127333e18,1.7131862e18,1.713639e18,1.7140919e18,1.7145448e18,1.7149976e18,1.7154505e18,1.7159033e18,1.7163562e18,1.716809e18,1.7172619e18,1.7177148e18,1.7181677e18,1.7186205e18,1.7190734e18,1.7195262e18,1.7199791e18,1.720432e18,1.7208848e18,1.7213377e18,1.7217905e18,1.7222434e18,1.7226963e18,1.7231491e18,1.723602e18,1.7240548e18,1.7245077e18,1.7249606e18,1.7254134e18,1.7258663e18,1.7263192e18,1.726772e18,1.7272249e18,1.7276779e18,1.7281307e18,1.7285836e18,1.7290365e18,1.7294893e18,1.7299422e18,1.730395e18,1.7308479e18,1.7313008e18,1.7317536e18,1.7322065e18,1.7326594e18,1.7331122e18,1.7335651e18,1.734018e18,1.7344708e18,1.7349237e18,1.7353765e18,1.7358294e18,1.7362822e18,1.7367351e18,1.737188e18,1.7376408e18,1.7380937e18,1.7385465e18,1.7389994e18,1.7394523e18,1.7399051e18,1.740358e18,1.7408109e18,1.7412637e18,1.7417166e18,1.7421694e18,1.7426223e18,1.7430752e18,1.743528e18,1.7439809e18,1.7444337e18,1.7448866e18,1.7453395e18,1.7457923e18,1.7462452e18,1.746698e18,1.7471509e18,1.7476038e18,1.7480568e18,1.7485096e18,1.7489625e18,1.7494154e18,1.7498682e18,1.7503211e18,1.750774e18,1.7512268e18,1.7516797e18,1.7521325e18,1.7525854e18,1.7530382e18,1.7534911e18,1.753944e18,1.7543968e18,1.7548497e18,1.7553026e18,1.7557554e18,1.7562083e18,1.7566611e18,1.757114e18,1.7575669e18,1.7580197e18,1.7584726e18,1.7589254e18,1.7593783e18,1.7598312e18,1.760284e18,1.7607369e18,1.7611898e18,1.7616426e18,1.7620955e18,1.7625483e18,1.7630012e18,1.763454e18,1.7639069e18,1.7643598e18,1.7648126e18,1.7652655e18,1.7657184e18,1.7661712e18,1.7666241e18,1.767077e18,1.7675298e18,1.7679828e18,1.7684357e18,1.7688885e18,1.7693414e18,1.7697943e18,1.7702471e18,1.7707e18,1.7711528e18,1.7716057e18,1.7720586e18,1.7725114e18,1.7729643e18,1.7734171e18,1.77387e18,1.7743229e18,1.7747757e18,1.7752286e18,1.7756815e18,1.7761343e18,1.7765872e18,1.77704e18,1.7774929e18,1.7779458e18,1.7783986e18,1.7788515e18,1.7793043e18,1.7797572e18,1.78021e18,1.7806629e18,1.7811158e18,1.7815687e18,1.7820215e18,1.7824744e18,1.7829272e18,1.7833801e18,1.783833e18,1.7842858e18,1.7847387e18,1.7851915e18,1.7856444e18,1.7860973e18,1.7865501e18,1.787003e18,1.7874558e18,1.7879087e18,1.7883617e18,1.7888146e18,1.7892674e18,1.7897203e18,1.7901732e18,1.790626e18,1.7910789e18,1.7915317e18,1.7919846e18,1.7924375e18,1.7928903e18,1.7933432e18,1.793796e18,1.7942489e18,1.7947018e18,1.7951546e18,1.7956075e18,1.7960604e18,1.7965132e18,1.7969661e18,1.797419e18,1.7978718e18,1.7983247e18,1.7987775e18,1.7992304e18,1.7996832e18,1.8001361e18,1.800589e18,1.8010418e18,1.8014947e18,1.8019476e18,1.8024004e18,1.8028533e18,1.8033061e18,1.803759e18,1.8042119e18,1.8046647e18,1.8051176e18,1.8055704e18,1.8060233e18,1.8064762e18,1.806929e18,1.8073819e18,1.8078347e18,1.8082876e18,1.8087406e18,1.8091935e18,1.8096463e18,1.8100992e18,1.810552e18,1.8110049e18]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..b54bd2fb758e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[1.0000223802308028,0.8002640306949615,0.6085569262504578,0.4326286315917969,0.2795708179473877,0.15555304288864136,0.0655527114868164,0.0132521390914917,0.0007268190383911133,0.028481602668762207,0.09539777040481567,0.1987779140472412,0.33445489406585693,0.4969596266746521,0.6797415912151337,0.8754330202937126,1.07614566385746,1.2737889289855957,1.4603959023952484,1.6284445524215698,1.7711610198020935,1.8827924132347107,1.9588388800621033,1.9962351322174072,1.993473768234253,1.9506659507751465,1.869537353515625,1.753358244895935,1.6068116426467896,1.4358048141002655,1.2472309619188309,1.0486913584172726,0.8481890261173248,0.6538061201572418,0.47337806224823,0.31417787075042725,0.1826227903366089,0.08401566743850708,0.022331416606903076,5.638599395751953e-5,0.01808851957321167,0.07570099830627441,0.17057138681411743,0.2988755702972412,0.4554417133331299,0.6339586973190308,0.8272305876016617,1.0274667125195265,1.2265956699848175,1.416590690612793,1.5897931456565857,1.7392625212669373,1.8588833212852478,1.9438830614089966,1.9908353686332703,1.9978476762771606,1.9646373391151428,1.8925429582595825,1.7844707369804382,1.6447768807411194,1.4790924787521362,1.2940961420536041,1.0972449332475662,0.896473839879036,0.6998758316040039,0.5153756439685822,0.3504104018211365,0.2116297483444214,0.10462784767150879,0.03371793031692505,0.0017582178115844727,0.010037124156951904,0.058220863342285156,0.14436715841293335,0.2650035619735718,0.4152672290802002,0.5891011655330658,0.7794981896877289,0.9787835218012333,1.1789240688085556,1.371852308511734,1.549791395664215,1.7055686712265015,1.832904875278473,1.9266671538352966,1.98307603597641,1.9998576641082764,1.97633558511734,1.913457989692688,1.813759446144104,1.6812586784362793,1.521296739578247,1.340321660041809,1.1456284075975418,0.9450649544596672,0.7467159032821655,0.5585218071937561,0.38818252086639404,0.2425052523612976,0.12736213207244873,0.04739457368850708,0.005825996398925781,0.004332005977630615,0.04297280311584473,0.12019085884094238,0.23287349939346313,0.3764786124229431,0.5452174842357635,0.7322883903980255,0.9301506131887436,1.1308284103870392,1.3262326121330261,1.5084865093231201,1.6702436804771423,1.8049836158752441,1.9072751998901367,1.9729949831962585,1.9994938969612122,1.9857038259506226,1.9321805238723755,1.8410816192626953,1.7160791158676147,1.5622119307518005,1.3856822848320007,1.1936059892177582,0.9937255643308163,0.7940980494022369,0.6027703285217285,0.42745471000671387,0.27521806955337524,0.1521969437599182,0.06335031986236572,0.01225954294204712,0.0009839534759521484,0.029978156089782715,0.09807342290878296,0.20252478122711182,0.3391219973564148,0.5023587644100189,0.6856551766395569,0.8816832602024078,1.0824226886034012,1.2798396944999695,1.4659765362739563,1.6333301067352295,1.7751545310020447,1.885732889175415,1.960607886314392,1.9967612624168396,1.9927358031272888,1.9486937522888184,1.8664103746414185,1.7492024302482605,1.6017946004867554,1.4301287829875946,1.2411247193813324,1.0424010455608368,0.8419682085514069,0.6479055285453796,0.46803557872772217,0.3096088767051697,0.17901134490966797,0.08150750398635864,0.02102750539779663,9.357929229736328e-6,0.019300222396850586,0.07812261581420898,0.17410528659820557,0.3033793568611145,0.4607338309288025,0.6398257613182068,0.8334361463785172,1.0337606072425842,1.232724204659462,1.4223068356513977,1.5948665142059326,1.7434474229812622,1.8620604276657104,1.9459242224693298,1.9916583895683289,1.9974193572998047,1.9629749059677124,1.8897135257720947,1.7805882692337036,1.6399978995323181,1.473555862903595,1.2880719602108002,1.0909760296344757,0.8902129083871841,0.693875253200531,0.5098772943019867,0.34563589096069336,0.20777159929275513,0.1018415093421936,0.03211569786071777,0.0014047622680664062,0.010946691036224365,0.060356736183166504,0.14764326810836792,0.2692878246307373,0.4203869700431824,0.5948500037193298,0.7856443971395493,0.9850793406367302,1.1851157248020172,1.3776901960372925,1.5550402402877808,1.7100168466567993,1.8363731503486633,1.9290156364440918,1.9842101335525513,1.9997316002845764,1.9749544858932495,1.910877525806427,1.8100835680961609,1.6766356229782104,1.5159128904342651,1.3343939781188965,1.139395833015442,0.9387787356972694,0.7406294345855713,0.5529352128505707,0.38326191902160645,0.23844897747039795,0.12433373928070068,0.04551607370376587,0.005173146724700928,0.004931151866912842,0.0447998046875,0.12317198514938354,0.23692810535430908,0.38141387701034546,0.5508344769477844,0.7383607029914856,0.9364334344863892,1.1370685249567032,1.3321784436702728,1.5138984322547913,1.6749035120010376,1.8087035417556763,1.9099052548408508,1.974429190158844,1.999674379825592,1.9846233129501343,1.9298826456069946,1.837658941745758,1.7116696238517761,1.5569933652877808,1.3798649907112122,1.1874244809150696,0.9874289967119694,0.7879402488470078,0.5969994962215424,0.4223034977912903,0.27089405059814453,0.14887452125549316,0.06116330623626709,0.01129615306854248,0.0012830495834350586,0.03152763843536377,0.10081082582473755,0.20633983612060547,0.34386080503463745,0.5078303813934326,0.6916390359401703,0.8878775388002396,1.0886356458067894,1.2858209013938904,1.4714848697185516,1.638143539428711,1.779079020023346,1.888610303401947,1.962322175502777,1.9972434043884277,1.9919585585594177,1.9466838836669922,1.8632489442825317,1.7450169324874878,1.596753716468811,1.424435704946518,1.2350089102983475,1.0361090525984764,0.8357536494731903,0.6420189142227173,0.46271419525146484,0.30506718158721924,0.1754325032234192,0.0790356993675232,0.019762396812438965,1.9669532775878906e-6,0.020550847053527832,0.08058077096939087,0.17767196893692017,0.3079107403755188,0.4660472869873047,0.6457071006298065,0.8396482914686203,1.0400531627237797,1.2388435155153275,1.4280062019824982,1.5999162197113037,1.7476439476013184,1.865234613418579,1.9479480981826782,1.9924503564834595,1.9969475269317627,1.9612582921981812,1.8868212699890137,1.7766369581222534,1.6351469159126282,1.4680544137954712,1.2820949256420135,1.084764339029789,0.8840169534087181,0.687944769859314,0.5044513940811157,0.34093326330184937,0.20398175716400146,0.09911727905273438,0.030551910400390625,0.0010909438133239746,0.011895418167114258,0.06252986192703247,0.15095317363739014,0.27360105514526367,0.42552971839904785,0.6006149053573608,0.7917990982532501,0.991375750862062,1.1913000494241714,1.3835131525993347,1.5602670311927795,1.7144368886947632,1.8398082256317139,1.9313273429870605,1.9853051900863647,1.9995658993721008,1.9735347032546997,1.9082608819007874,1.8063755631446838,1.6719857454299927,1.5105085372924805,1.328453004360199,1.133157730102539,0.9324949458241463,0.7345532476902008,0.547311544418335,0.3783174753189087,0.23438304662704468,0.12131023406982422,0.04365694522857666,0.004553258419036865,0.005575418472290039,0.04668235778808594,0.12621694803237915,0.24097323417663574,0.386325478553772,0.5564145445823669,0.7443843483924866,0.9426578432321548,1.1432427763938904,1.338053673505783,1.5192378163337708,1.6795365810394287,1.8123914003372192,1.9124992489814758,1.9758247137069702,1.999815285205841,1.983503818511963,1.9275478720664978,1.834203064441681,1.7072319388389587,1.5517526865005493,1.3740326464176178,1.1812355369329453,0.9811329282820225,0.7817908376455307,0.591244637966156,0.4171751141548157,0.26659899950027466,0.1455857753753662,0.059013545513153076,0.010371983051300049,0.0016217231750488281,0.033115506172180176,0.10358387231826782,0.21018630266189575,0.3486256003379822,0.5133214890956879,0.6976351141929626,0.8941368758678436,1.0949059203267097,1.2918493747711182,1.4770285189151764,1.6429789662361145,1.783011257648468,1.891480803489685,1.964015245437622,1.9976908564567566,1.9911500215530396,1.9446565508842468,1.8600844740867615,1.7408429384231567,1.5917384028434753,1.4187812209129333,1.2289432138204575,1.029876634478569,0.8296057432889938,0.6361465156078339,0.4574141502380371,0.3005530834197998,0.17188632488250732,0.07660043239593506,0.018536150455474854,3.421306610107422e-5,0.021840274333953857,0.08307540416717529,0.1812712550163269,0.31246960163116455,0.47138190269470215,0.6516025066375732,0.8458668142557144,1.046344131231308,1.2449533492326736,1.4336886405944824,1.6049422025680542,1.7518108487129211,1.8683744668960571,1.9499343633651733,1.9932029843330383,1.9964361190795898,1.9595034718513489,1.8838938474655151,1.7726548910140991,1.6302707195281982,1.4624806344509125,1.2760482430458069,1.0784885063767433,0.8777649402618408,0.6819685995578766,0.4989919066429138,0.33621060848236084,0.20018625259399414,0.09640192985534668,0.029041171073913574,0.0008191466331481934,0.012873589992523193,0.06471854448318481,0.1542641520500183,0.2779008746147156,0.4306449890136719,0.6063395142555237,0.7979022711515427,0.9976725038141012,1.1974767744541168,1.3893208801746368,1.5654716491699219,1.7188286185264587,1.843209981918335,1.9336020350456238,1.9863611459732056,1.9993605613708496,1.9720763564109802,1.9056082963943481,1.802635669708252,1.6673092246055603,1.505083978176117,1.3224990367889404,1.1269143521785736,0.9262138307094574,0.7284875810146332,0.541705846786499,0.37339770793914795,0.23034751415252686,0.11832159757614136,0.041835665702819824,0.003972768783569336,0.006259143352508545,0.04860270023345947,0.12929648160934448,0.2450878620147705,0.39130932092666626,0.5620667636394501,0.7504770308732986,0.9489454366266727,1.1494718194007874,1.343973070383072,1.5246089696884155,1.6840981841087341,1.8160117864608765,1.9150323867797852,1.977168619632721,1.9999156594276428,1.9823567271232605,1.9251995086669922,1.8307480216026306,1.7028095722198486,1.54649019241333,1.3681854605674744,1.1750394105911255,0.9748376067727804,0.7756500840187073,0.5855059921741486,0.4120699167251587,0.2623329758644104,0.14233094453811646,0.05690109729766846,0.009487032890319824,0.001999974250793457,0.03474169969558716,0.106392502784729,0.21406406164169312,0.3534162640571594,0.5188319385051727,0.7036431729793549,0.9004004076123238,1.1011724323034286,1.2978662550449371,1.4825532734394073,1.6477888226509094,1.7869123816490173,1.8943159580230713,1.9656701683998108,1.9980987310409546,1.9902945160865784,1.9425720572471619,1.8568550944328308,1.736598789691925,1.5866506099700928,1.4130548536777496,1.2228091061115265,1.02358203753829,0.8234044015407562,0.6303452253341675,0.452186644077301,0.2961100935935974,0.1684069037437439,0.07422482967376709,0.017360210418701172,0.00010520219802856445,0.02315545082092285,0.0855817198753357,0.18490302562713623,0.31705570220947266,0.47673749923706055,0.6575117111206055,0.8520914316177368,1.0526332631707191,1.2510534822940826,1.439353883266449,1.6099441647529602,1.7559479475021362,1.871479868888855,1.9518829584121704,1.9939162135124207,1.9958852529525757,1.9577106833457947,1.8809313774108887,1.7686421871185303,1.6253694891929626,1.4568885266780853,1.269990622997284,1.0722095593810081,0.8715177625417709,0.6760050058364868,0.4935523271560669,0.33151423931121826,0.19642245769500732,0.093722403049469,0.027553915977478027,0.0005841255187988281,0.013900279998779297,0.06696552038192749,0.15764087438583374,0.28227126598358154,0.4358328580856323,0.6121357083320618,0.8040731698274612,1.0039083138108253,1.203585922718048,1.3950571119785309,1.5706037282943726,1.7231496572494507,1.8465458750724792,1.9358182549476624,1.9873683452606201,1.9991156458854675,1.970579445362091,1.9029197692871094,1.7988638877868652,1.6626062393188477,1.4996393322944641,1.3165322542190552,1.1206659376621246,0.9199356436729431,0.7224327027797699,0.5361183285713196,0.36850279569625854,0.22634249925613403,0.11536794900894165,0.04005241394042969,0.0034317970275878906,0.006982266902923584,0.05056077241897583,0.13241058588027954,0.2492324709892273,0.39631736278533936,0.5677363276481628,0.7565796226263046,0.9552350528538227,1.1556949317455292,1.3498788475990295,1.5299593210220337,1.688677430152893,1.8196353912353516,1.917554259300232,1.9784870743751526,1.9999776482582092,1.9811596274375916,1.9227916598320007,1.827226459980011,1.6983162760734558,1.5412573218345642,1.362380564212799,1.168896496295929,0.968604288995266,0.7695776373147964,0.5798391699790955,0.4070371389389038,0.2581371068954468,0.13914120197296143,0.05482602119445801,0.008641362190246582,0.0024178028106689453,0.03640621900558472,0.10923653841018677,0.21797305345535278,0.35823261737823486,0.5243614315986633,0.7096630036830902,0.9066678881645203,1.1074349358677864,1.3038713335990906,1.488058865070343,1.652573049068451,1.7907823324203491,1.8971156477928162,1.9672867059707642,1.9984670281410217,1.9893997311592102,1.9404502511024475,1.8535917401313782,1.7323254942893982,1.5815395712852478,1.407312124967575,1.2166661620140076,1.017286505550146,0.8172100484371185,0.6245017349720001,0.44692957401275635,0.2916513681411743,0.16492623090744019,0.07186251878738403,0.01621145009994507,0.00021636486053466797,0.024522006511688232,0.08814859390258789,0.18853139877319336,0.3216240406036377,0.48206162452697754,0.6633770167827606,0.8582615107297897,1.0588593780994415,1.2570846676826477,1.4449470043182373,1.6148738265037537,1.7600550651550293,1.8745507597923279,1.9537938237190247,1.9945900440216064,1.9952948689460754,1.9558798670768738,1.8779339790344238,1.7645990252494812,1.6204435229301453,1.4512782990932465,1.2639223039150238,1.0659277513623238,0.8652756810188293,0.6700542867183685,0.4881327748298645,0.32684439420700073,0.19269049167633057,0.09107881784439087,0.026105225086212158,0.00038874149322509766,0.014966070652008057,0.06924957036972046,0.16105103492736816,0.28667008876800537,0.44104307889938354,0.6179472804069519,0.8102518171072006,1.0102050034329295,1.2097468227148056,1.4008338749408722,1.5757635235786438,1.7274845242500305,1.8498809933662415,1.9380192160606384,1.9883464574813843,1.9988340139389038,1.9690591096878052,1.9002220034599304,1.7950974702835083,1.6579229831695557,1.4942279756069183,1.3106109499931335,1.1144733726978302,0.9137214347720146,0.7163888216018677,0.5305491983890533,0.36363285779953003,0.22236818075180054,0.11244934797286987,0.03830718994140625,0.0029303431510925293,0.007744789123535156,0.05255645513534546,0.13555908203125,0.253406822681427,0.4013493061065674,0.5734230279922485,0.762691855430603,0.9615264423191547,1.1619118750095367,1.3557707369327545,1.535288691520691,1.6932294368743896,1.823226511478424,1.9200397729873657,1.9797667860984802,1.9999999403953552,1.979923665523529,1.9203472137451172,1.8236720561981201,1.6937952041625977,1.535951852798462,1.3565045595169067,1.1626867949962616,0.9623112007975578,0.7634548246860504,0.5741334557533264,0.4019784927368164,0.2539294958114624,0.1359541416168213,0.05280798673629761,0.007842600345611572,0.0028705596923828125,0.038092195987701416,0.11208778619766235,0.2218746542930603,0.36302727460861206,0.5298559367656708,0.7156358063220978,0.9129390642046928,1.1136931777000427,1.3098643720149994,1.493545114994049,1.6573313474655151,1.794620931148529,1.8998797535896301,1.9688649773597717,1.998795747756958,1.988465666770935,1.9382911324501038,1.8502945303916931,1.728023111820221,1.5764054656028748,1.4015532433986664,1.2105146199464798,1.0109902881085873,0.811022937297821,0.6186731457710266,0.441694438457489,0.28722071647644043,0.1614786982536316,0.06953698396682739,0.015101730823516846,0.00036716461181640625,0.025927245616912842,0.09075164794921875,0.192227303981781,0.3262638449668884,0.4874582886695862,0.6693130433559418,0.8644975572824478,1.0651441141963005,1.2631647288799286,1.4505773484706879,1.6198274493217468,1.7640926241874695,1.8775576949119568,1.9556488990783691,1.9952184557914734,1.9946712851524353,1.9540295004844666,1.8749313354492188,1.760565161705017,1.6155410408973694,1.445650190114975,1.2578435242176056,1.0596433281898499,0.8590389490127563,0.664116621017456,0.4827335476875305,0.3222012519836426,0.18899059295654297,0.08847129344940186,0.024695158004760742,0.00023299455642700195,0.016070902347564697,0.07157045602798462,0.16449445486068726,0.2910972237586975,0.4462754726409912,0.623773992061615,0.8164380043745041,1.0165012888610363,1.2158994227647781,1.4065947532653809,1.580900490283966,1.7317904829978943,1.8531823754310608,1.9401829838752747,1.9892853498458862,1.9985101819038391,1.9674856662750244,1.8974623084068298,1.7912628054618835,1.6531679034233093,1.488744169473648,1.3046194314956665,1.108215682208538,0.9074498116970062,0.7104145884513855,0.525052398443222,0.35883504152297974,0.21846270561218262,0.10959368944168091,0.03661644458770752,0.00247269868850708,0.008538663387298584,0.05456984043121338,0.1387418508529663,0.2576107382774353,0.406404972076416,0.5791266560554504,0.7688135057687759,0.9678193591535091,1.1681223958730698,1.3616484999656677,1.5405967831611633,1.69775390625,1.8267849683761597,1.922488808631897,1.9810076355934143,1.9999825954437256,1.9786487817764282,1.9178662300109863,1.820085048675537,1.689246654510498,1.5306251645088196,1.3506144285202026,1.1564706414937973,0.9560196064412594,0.7573413997888565,0.5684446394443512,0.3969436287879944,0.24975144863128662,0.132801353931427,0.05080759525299072,0.007075190544128418,0.0033670663833618164,0.03983265161514282,0.11500203609466553,0.22584515810012817,0.3678940534591675,0.5354227423667908,0.7216783165931702,0.9191528633236885,1.1198863163590431,1.3157872259616852,1.4989589154720306,1.6620178818702698,1.7983912229537964,1.9025819301605225,1.9703900218009949,1.9990822672843933,1.9874925017356873,1.9360947608947754,1.84696364402771,1.7236918807029724,1.571248471736908,1.3957784175872803,1.2043547332286835,1.0046936343424022,0.8048433363437653,0.612859696149826,0.43648141622543335,0.2828183174133301,0.1580643653869629,0.0672484040260315,0.014031052589416504,0.0005576014518737793,0.027371108531951904,0.09339076280593872,0.1959552764892578,0.33093035221099854,0.49287527799606323,0.6752621531486511,0.8707389831542969,1.0714262574911118,1.2692343890666962,1.4561898112297058,1.6247565150260925,1.7681396007537842,1.8805594444274902,1.9574844241142273,1.9958137273788452,1.9940024018287659,1.9521233439445496,1.8718647360801697,1.7564617991447449,1.6105663180351257,1.4400592148303986,1.2518135905265808,1.0534174889326096,0.8528681695461273,0.6582496464252472,0.47740691900253296,0.3176295757293701,0.1853582262992859,0.08589982986450195,0.023323774337768555,0.00011688470840454102,0.01721477508544922,0.07392817735671997,0.16797101497650146,0.29555243253707886,0.4515298008918762,0.6296156346797943,0.8226314634084702,1.0227969195693731,1.222043439745903,1.4123395383358002,1.586014449596405,1.7360674142837524,1.8564499616622925,1.9423094987869263,1.9901850819587708,1.9981468319892883,1.9658738374710083,1.8946670293807983,1.7873967289924622,1.6483868956565857,1.4832409620285034,1.2986158430576324,1.101953700184822,0.9011818617582321,0.7043933272361755,0.5195205211639404,0.354015588760376,0.21454989910125732,0.10674524307250977,0.034947216510772705,0.0020499229431152344,0.009379386901855469,0.05664026737213135,0.14192742109298706,0.2618029713630676,0.4114348292350769,0.5847914218902588,0.7748848497867584,0.9740525353699923,1.1742661446332932,1.3674551844596863,1.545832335948944,1.7022507190704346,1.8303106427192688,1.9249011874198914,1.98220956325531,1.9999255537986755,1.9773351550102234,1.9153489470481873,1.8164654970169067,1.6846708059310913,1.5252773761749268,1.3447103798389435,1.1502482742071152,0.9497297555208206,0.7512376010417938,0.5627728998661041,0.3919326066970825,0.24560314416885376,0.1296830177307129,0.04884481430053711,0.006347179412841797,0.0039031505584716797,0.0416111946105957,0.11795133352279663,0.22984635829925537,0.37278586626052856,0.5410079956054688,0.727731853723526,0.9254306703805923,1.1261353343725204,1.3217555582523346,1.5044059753417969,1.666724145412445,1.802166998386383,1.9052749276161194,1.9718917608261108,1.9993321895599365,1.9864901304244995,1.9338831305503845,1.8436319231987,1.7193743586540222,1.5661191940307617,1.3900441229343414,1.1982465833425522,0.9984578302828595,0.7987312376499176,0.6070615649223328,0.43129080533981323,0.2784443497657776,0.1546834111213684,0.06499671936035156,0.012999475002288818,0.0007876753807067871,0.028853535652160645,0.09606575965881348,0.19971507787704468,0.33562344312667847,0.49831241369247437,0.681224137544632,0.8769855350255966,1.0777055770158768,1.2752933502197266,1.4617842137813568,1.6296607851982117,1.7721561193466187,1.8835262656211853,1.9592819809913635,1.9963696002960205,1.9932940602302551,1.9501794576644897,1.8687636256217957,1.7523284554481506,1.6055673360824585,1.4343961477279663,1.2457146793603897,1.047128602862358,0.846642792224884,0.6523387432098389,0.47204869985580444,0.3130400776863098,0.1817224621772766,0.08338910341262817,0.02200382947921753,4.100799560546875e-5,0.01838594675064087,0.07629925012588501,0.17144638299942017,0.29999202489852905,0.4567546248435974,0.635415107011795,0.8288319557905197,1.0290916468948126,1.2281786650419235,1.4180679321289062,1.5911051034927368,1.7403151988983154,1.8596835732460022,1.9443986415863037,1.9910454750061035,1.997743844985962,1.9642237424850464,1.8918363451957703,1.7834994792938232,1.6435801982879639,1.4777185916900635,1.2926004230976105,1.0956876799464226,0.8949178233742714,0.6983837783336639,0.5140076875686646,0.34922170639038086,0.21066820621490479,0.1039322018623352,0.03331625461578369,0.001666724681854248,0.010259449481964111,0.058748066425323486,0.14517802000045776,0.2660653591156006,0.41653716564178467,0.5905280411243439,0.7810245007276535,0.9803477451205254,1.1804631650447845,1.3733042180538177,1.551097571849823,1.7066764831542969,1.833769679069519,1.9272541403770447,1.9833614826202393,1.9998300671577454,1.9759960770606995,1.9128202199935913,1.8128491044044495,1.6801125407218933,1.519908845424652,1.3387926816940308,1.1440199613571167,0.9434418976306915,0.7451436519622803,0.5571185350418091,0.3869457244873047,0.24148476123809814,0.12659913301467896,0.04691976308822632,0.005658566951751709,0.0044786930084228516,0.04342770576477051,0.12093561887741089,0.23387813568115234,0.377702534198761,0.5466114580631256,0.7337961792945862,0.9317114278674126,1.1323793530464172,1.3277111649513245,1.5098330974578857,1.67140394449234,1.805910885334015,1.9079320430755615,1.9733549356460571,1.999542474746704,1.9854390025138855,1.931613028049469,1.8402342796325684,1.7149861454963684,1.5609173774719238,1.3842383027076721,1.1920708119869232,0.9921610523015261,0.7925672829151154,0.6013349890708923,0.42617267370224,0.27414101362228394,0.15136831998825073,0.06280344724655151,0.012016475200653076,0.0010545849800109863,0.03035956621170044,0.09877669811248779,0.20350664854049683,0.34034281969070435,0.5037694275379181,0.6871987581253052,0.8832369670271873,1.0839818120002747,1.281341403722763,1.4673602879047394,1.6345401406288147,1.7761420011520386,1.8864580988883972,1.961041510105133,1.996885895729065,1.9925463795661926,1.9481979012489319,1.8656280636787415,1.748165249824524,1.6005443334579468,1.428715854883194,1.239606037735939,1.040837850421667,0.840423509478569,0.6464416086673737,0.46671146154403687,0.30847781896591187,0.17811912298202515,0.08088994026184082,0.020709514617919922,3.814697265625e-6,0.019607365131378174,0.07872998714447021,0.17498844861984253,0.3045026659965515,0.46205204725265503,0.6412857472896576,0.8349790424108505,1.0353242233395576,1.2342455089092255,1.423724502325058,1.5961233973503113,1.7444928884506226,1.8628522753715515,1.9464306235313416,1.9918588399887085,1.9973013401031494,1.9625353813171387,1.8889701962471008,1.7795711755752563,1.6387479901313782,1.4721772968769073,1.2865733802318573,1.0894178599119186,0.8886579498648643,0.6923861801624298,0.5085141360759735,0.3444536328315735,0.20681780576705933,0.10115474462509155,0.03172355890274048,0.001323103904724121,0.011178731918334961,0.06089317798614502,0.1484624743461609,0.27035683393478394,0.4216626286506653,0.5962808728218079,0.7871728390455246,0.986643735319376,1.1866530179977417,1.3791384100914001,1.5563409328460693,1.7111177444458008,1.8372297286987305,1.9295935034751892,1.9844858646392822,1.9996941089630127,1.9746053218841553,1.9102307558059692,1.8091652393341064,1.6754828095436096,1.5145719647407532,1.3329190909862518,1.1378463953733444,0.9372171983122826,0.739118754863739,0.5515362620353699,0.38203108310699463,0.2374359369277954,0.12357926368713379,0.045032501220703125,0.005009353160858154,0.005093693733215332,0.045282185077667236,0.12395477294921875,0.23794025182724,0.3826439380645752,0.5522328615188599,0.7398710548877716,0.9379949010908604,1.1386181265115738,1.333653748035431,1.515239953994751,1.6760571599006653,1.809622883796692,1.9105531573295593,1.9747795462608337,1.999713122844696,1.9843488335609436,1.9293059706687927,1.836803376674652,1.710569679737091,1.55569326877594,1.3784172534942627,1.1858874261379242,0.9858645861968398,0.7864115387201309,0.5955681204795837,0.42102712392807007,0.26982420682907104,0.14805424213409424,0.06062573194503784,0.011062860488891602,0.0013634562492370605,0.03191858530044556,0.10149651765823364,0.2072926163673401,0.34504228830337524,0.5091929137706757,0.6931277215480804,0.8894323632121086,1.090193934738636,1.287319839000702,1.472864031791687,1.6393942832946777,1.7800971269607544,1.8893547058105469,1.9627628922462463,1.9973626732826233,1.9917593002319336,1.946178674697876,1.8624581694602966,1.7439724206924438,1.5954975485801697,1.4230185449123383,1.2334879040718079,1.0345454774796963,0.8342105448246002,0.640558511018753,0.4613953232765198,0.30394303798675537,0.17454832792282104,0.07842719554901123,0.019454121589660645,6.258487701416016e-6,0.020867586135864258,0.08119720220565796,0.17856323719024658,0.309040904045105,0.46737074851989746,0.6471706032752991,0.8411927968263626,1.0416164100170135,1.2403624951839447,1.4294196963310242,1.6011672616004944,1.7486820816993713,1.8660179376602173,1.9484451413154602,1.992641031742096,1.9968241453170776,1.960825800895691,1.8860971927642822,1.775650441646576,1.633937656879425,1.4666712582111359,1.2805935740470886,1.0832053199410439,0.8824631050229073,0.6864008009433746,0.503040075302124,0.3397115468978882,0.20299887657165527,0.09841287136077881,0.030169308185577393,0.001019120216369629,0.012137234210968018,0.06307554244995117,0.15178078413009644,0.27467721700668335,0.4268110394477844,0.6020497381687164,0.7933296114206314,0.9929402535781264,1.1928354650735855,1.3849575817584991,1.5615622997283936,1.7155307531356812,1.840656578540802,1.9318959712982178,1.9855712056159973,1.9995185732841492,1.9731759428977966,1.9076051712036133,1.8054493069648743,1.670826256275177,1.5091626048088074,1.326974868774414,1.1316069513559341,0.9309340491890907,0.7330451607704163,0.5459170639514923,0.37709277868270874,0.23337751626968384,0.12056440114974976,0.04320085048675537,0.004405319690704346,0.0057416558265686035,0.04715597629547119,0.12697887420654297,0.2419927716255188,0.38756150007247925,0.5578173100948334,0.7458972334861755,0.9442808292806149,1.144851416349411,1.3395831286907196,1.520626425743103,1.6806835532188416,1.813302755355835,1.9131381511688232,1.9761654734611511,1.9998441338539124,1.9832196235656738,1.9269620776176453,1.8333392143249512,1.7061249613761902,1.550447165966034,1.3725811839103699,1.1796966791152954,0.9795686788856983,0.7802642583847046,0.5898172557353973,0.41590452194213867,0.2655363082885742,0.14477390050888062,0.058485209941864014,0.010148406028747559,0.0017119646072387695,0.033515989780426025,0.10427838563919067,0.21114683151245117,0.3498135209083557,0.5146888494491577,0.6991267800331116,0.8956927582621574,1.096463292837143,1.2933454513549805,1.478403002023697,1.644176423549652,1.7839834690093994,1.892188549041748,1.964430034160614,1.9977958798408508,1.9909411668777466,1.9441421031951904,1.859285295009613,1.7397911548614502,1.5904271602630615,1.4173044860363007,1.2273605018854141,1.0282517354935408,0.8280041664838791,0.6346896290779114,0.45610058307647705,0.2994357943534851,0.1710103154182434,0.07600098848342896,0.018237531185150146,4.83393669128418e-5,0.022166669368743896,0.08370089530944824,0.18217062950134277,0.3136065602302551,0.47271060943603516,0.6530694663524628,0.8474128544330597,1.0479069463908672,1.2464699447154999,1.435097873210907,1.6061872243881226,1.752841591835022,1.8691492676734924,1.9504220485687256,1.9933838844299316,1.9963029026985168,1.959061622619629,1.8831610083580017,1.7716607451438904,1.6290552616119385,1.4610928893089294,1.2745441496372223,1.0768982619047165,0.8761819824576378,0.6804567575454712,0.4976121187210083,0.33501845598220825,0.19922983646392822,0.09571975469589233,0.02866077423095703,0.0007559061050415039,0.013129949569702148,0.06528419256210327,0.15511631965637207,0.279005229473114,0.4319570064544678,0.6078062951564789,0.79946468770504,0.9992065347032622,1.198980376124382,1.3907334208488464,1.5667362213134766,1.7198942303657532,1.844033658504486,1.9341614842414856,1.9866174459457397,1.99930340051651,1.9717079997062683,1.9049436450004578,1.8017014265060425,1.6661431789398193,1.5037330389022827,1.3210176825523376,1.1253623068332672,0.924653634428978,0.7269821465015411,0.5403158366680145,0.37217915058135986,0.2293495535850525,0.1175844669342041,0.04138904809951782,0.003834664821624756,0.0064351558685302734,0.04908567667007446,0.13006699085235596,0.2461148500442505,0.39257562160491943,0.5635012984275818,0.7520219683647156,0.9505384862422943,1.1510487794876099,1.345470368862152,1.5259662866592407,1.6852607727050781,1.816932737827301,1.9156746864318848,1.9775062799453735,1.9999350905418396,1.9820571541786194,1.9245930314064026,1.8298590779304504,1.701673984527588,1.5452048182487488,1.3667587637901306,1.1735288500785828,0.9733040910214186,0.7741554230451584,0.5841104388237,0.41082972288131714,0.26127755641937256,0.14152753353118896,0.05638200044631958,0.009273231029510498,0.002100050449371338,0.03515172004699707,0.10709583759307861,0.2150323987007141,0.3546105623245239,0.5202040374279022,0.7051378190517426,0.9019572958350182,1.1027288362383842,1.2993594408035278,1.4839230179786682,1.6489799618721008,1.787876844406128,1.8950148820877075,1.966075360774994,1.9981939196586609,1.9900758266448975,1.9420483708381653,1.8560316562652588,1.7355190515518188,1.5853580832481384,1.4116016924381256,1.2212538421154022,1.0219873823225498,0.8218346238136292,0.6288636028766632,0.4508528709411621,0.29497796297073364,0.16752207279205322,0.0736229419708252,0.01706552505493164,0.0001296401023864746,0.023497939109802246,0.08622848987579346,0.1857926845550537,0.3181770443916321,0.47804540395736694,0.6589533686637878,0.8536087721586227,1.0541651099920273,1.252567619085312,1.4407587945461273,1.611183226108551,1.7569712400436401,1.8722461462020874,1.952361285686493,1.994087278842926,1.9957422018051147,1.9572593569755554,1.8801898956298828,1.767640471458435,1.624147891998291,1.4554962813854218,1.2684838473796844,1.07064900547266,0.8699663430452347,0.674525260925293,0.49220389127731323,0.33035147190093994,0.1954922080039978,0.09306222200393677,0.027190327644348145,0.0005308985710144043,0.014166593551635742,0.06754058599472046,0.15850156545639038,0.2833828330039978,0.4371505379676819,0.6136063933372498,0.8056375682353973,1.0055033639073372,1.2051473259925842,1.3965219259262085,1.571912944316864,1.7242504358291626,1.8473938703536987,1.936379313468933,1.9876198172569275,1.999049961566925,1.9702089428901672,1.902259349822998,1.797940194606781,1.6614565253257751,1.4983099400997162,1.3150767385959625,1.119112677872181,0.9183762148022652,0.7209299504756927,0.5347328782081604,0.3672904372215271,0.22535216808319092,0.11463946104049683,0.0396152138710022,0.0033034682273864746,0.0071680545806884766,0.05105310678482056,0.13318967819213867,0.2502668499946594,0.3975653648376465,0.5691476762294769,0.7580974102020264,0.9567980878055096,1.1572402119636536,1.3513440787792206,1.5312854647636414,1.6898110508918762,1.8205307126045227,1.9181873202323914,1.9788148999214172,1.999987006187439,1.9808502197265625,1.9221758842468262,1.8263291716575623,1.6971736550331116,1.539915382862091,1.3608934581279755,1.1673241257667542,0.9670100472867489,0.7680257707834244,0.5783922672271729,0.405753493309021,0.2570685148239136,0.1383306384086609,0.05432617664337158,0.008441269397735596,0.0025255680084228516,0.03681749105453491,0.1099347472190857,0.21893000602722168,0.35943323373794556,0.5257382690906525,0.7111605107784271,0.9082257226109505,1.1089902967214584,1.3053615391254425,1.4894238412380219,1.6537577509880066,1.7917389869689941,1.8978057503700256,1.9676824808120728,1.9985524415969849,1.989171326160431,1.939917266368866,1.8527756929397583,1.7312591671943665,1.5802660584449768,1.4058827459812164,1.2151385098695755,1.0157221686095,0.8156720697879791,0.6230521500110626,0.44562673568725586,0.2905263304710388,0.16404980421066284,0.0712699294090271,0.015926659107208252,0.00025081634521484375,0.024874329566955566,0.08880454301834106,0.18946456909179688,0.3227968215942383,0.4834267497062683,0.6648794412612915,0.8598406463861465,1.0604516044259071,1.2586258053779602,1.446374922990799,1.6161309480667114,1.761051058769226,1.8752936124801636,1.954253613948822,1.9947481751441956,1.99514502286911,1.955428123474121,1.8771837949752808,1.7635897397994995,1.6192157864570618,1.4498815834522247,1.2624129056930542,1.064366526901722,0.863725557923317,0.6685777604579926,0.486789345741272,0.3256882429122925,0.19176822900772095,0.09042757749557495,0.025751233100891113,0.0003463625907897949,0.015236973762512207,0.06982278823852539,0.1619035005569458,0.2877674698829651,0.4423410892486572,0.6193936169147491,0.8117881864309311,1.0117694595828652,1.2113061547279358,1.4022946953773499,1.577066957950592,1.728577971458435,1.850720465183258,1.9385708570480347,1.9885879755020142,1.998755693435669,1.9686641693115234,1.899526298046112,1.7941290736198425,1.6567209362983704,1.4928407073020935,1.309094399213791,1.1128886491060257,0.9121324270963669,0.7149181067943573,0.529195249080658,0.3624503016471863,0.22140461206436157,0.11174362897872925,0.0378878116607666,0.0028141140937805176,0.007940292358398438,0.05305814743041992,0.136346697807312,0.2544485926628113,0.4026032090187073,0.5748386085033417,0.7642120122909546,0.9630898796021938,1.1634555757045746,1.3572324812412262,1.5366095304489136,1.6943562030792236,1.8241137266159058,1.9206516742706299,1.9800786972045898,1.9999992847442627,1.9796105027198792,1.9197341799736023,1.822783887386322,1.6926676034927368,1.534630298614502,1.3550423681735992,1.1611127704381943,0.9607173129916191,0.7619053274393082,0.5726907849311829,0.4007008671760559,0.2528683543205261,0.13515228033065796,0.05229771137237549,0.007644534111022949,0.002992570400238037,0.03852945566177368,0.11282271146774292,0.22287750244140625,0.36425769329071045,0.5312643051147461,0.7171653807163239,0.9144673720002174,1.1152171269059181,1.3113225400447845,1.4948787093162537,1.6584866046905518,1.7955513000488281,1.9005610346794128,1.9692511558532715,1.9988713264465332,1.9882275462150574,1.9377488493919373,1.84947007894516,1.7269496321678162,1.5751262307167053,1.4001198709011078,1.2089848816394806,1.0094258189201355,0.8094868063926697,0.6172272861003876,0.44039708375930786,0.28612422943115234,0.16062724590301514,0.0689648985862732,0.014832079410552979,0.0004107952117919922,0.02628237009048462,0.0914040207862854,0.1931505799293518,0.32742083072662354,0.4888285994529724,0.6708187758922577,0.8660780787467957,1.0667357072234154,1.264703243970871,1.452000766992569,1.621078372001648,1.7651206851005554,1.878321349620819,1.9561174511909485,1.9953729510307312,1.9945055842399597,1.9535502195358276,1.8741577863693237,1.7595285773277283,1.6142832040786743,1.4442763924598694,1.2563610672950745,1.0581119544804096,0.8575204014778137,0.6626721024513245,0.4814212918281555,0.3210517168045044,0.18807625770568848,0.08782899379730225,0.024350762367248535,0.00020045042037963867,0.016351521015167236,0.07215285301208496,0.16535520553588867,0.29220157861709595,0.44757890701293945,0.6252240538597107,0.8179761916399002,1.0180656053125858,1.2174268066883087,1.4080236554145813,1.5821732878684998,1.7328558564186096,1.8539974093437195,1.9407148361206055,1.98951256275177,1.9984236359596252,1.967088758945465,1.8967576026916504,1.7902864217758179,1.651959240436554,1.4873519539833069,1.3030997812747955,1.1066298484802246,0.9058617129921913,0.7088882327079773,0.5236493051052094,0.35761183500289917,0.21746861934661865,0.10886883735656738,0.036190032958984375,0.0023618340492248535,0.008747875690460205,0.05509078502655029,0.13952237367630005,0.258639395236969,0.4076402187347412,0.5805186927318573,0.770306259393692,0.9693526346236467,1.1696644723415375,1.3631067276000977,1.5419123768806458,1.6988738179206848,1.8276640176773071,1.9230915904045105,1.9813098907470703,1.9999721050262451,1.9783260226249695,1.9172441959381104,1.8191887140274048,1.6881122589111328,1.5292983651161194,1.3491487503051758,1.1549251675605774,0.9544566236436367,0.7558239102363586,0.5670337975025177,0.3956962823867798,0.24871796369552612,0.13202333450317383,0.05031639337539673,0.006890654563903809,0.003499150276184082,0.0402795672416687,0.11574578285217285,0.2268558144569397,0.36913084983825684,0.5368358194828033,0.7232107222080231,0.9207428097724915,1.121469721198082,1.317300260066986,1.5003405809402466,1.6632124781608582,1.7993506789207458,1.903267502784729,1.9707741141319275,1.9991493225097656,1.9872494339942932,1.9355540871620178,1.846147060394287,1.722632348537445,1.56998872756958,1.3943691849708557,1.2028229534626007,1.0031290960032493,0.8033090978860855,0.6114176213741302,0.4351896643638611,0.2817288637161255,0.15722119808197021,0.0666854977607727,0.013771116733551025,0.0006110668182373047,0.02773582935333252,0.0940520167350769,0.19688647985458374,0.3320939540863037,0.4942243695259094,0.6767423152923584,0.8722905665636063,1.0729867294430733,1.2707408368587494,1.4575815200805664,1.6259773969650269,1.7691404223442078,1.8813142776489258,1.9579433798789978,1.9959582686424255,1.993826687335968,1.9516345262527466,1.8710824847221375,1.7554175853729248,1.609302282333374,1.4386263191699982,1.250269591808319,1.0518246293067932,0.8512906432151794,0.6567510664463043,0.4760476350784302,0.3164644241333008,0.184434175491333,0.08527892827987671,0.02299553155899048,9.465217590332031e-5,0.01749938726425171,0.07450813055038452,0.16882294416427612,0.2966420650482178,0.452838659286499,0.6310693621635437,0.8241714239120483,1.0243610348552465,1.2235686630010605,1.4137643873691559,1.5872814655303955,1.73712557554245,1.8572565913200378,1.9428320527076721,1.9904025197029114,1.9980503916740417,1.9654674530029297,1.8939670324325562,1.7864313125610352,1.6471949815750122,1.4818706214427948,1.2971223294734955,1.100397177040577,0.8996250852942467,0.7028990387916565,0.5181489884853363,0.35279881954193115,0.2135636806488037,0.10602933168411255,0.034530460834503174,0.0019490718841552734,0.009598612785339355,0.05717062950134277,0.14274758100509644,0.2628799080848694,0.4127250909805298,0.5862430334091187,0.7764392644166946,0.9756470993161201,1.175836592912674,1.3689382076263428,1.5471681356430054,1.7033420205116272,1.8311645984649658,1.9254834055900574,1.982496440410614,1.9999056458473206,1.9770092368125916,1.9147177934646606,1.8155611157417297,1.6835296154022217,1.5239454507827759,1.3432413041591644,1.1487013101577759,0.9481672458350658,0.7497225403785706,0.5613663494586945,0.39069128036499023,0.2445770502090454,0.1289135217666626,0.04836297035217285,0.0061724185943603516,0.004042446613311768,0.04205900430679321,0.11868953704833984,0.23084527254104614,0.37400519847869873,0.5423985719680786,0.7292376160621643,0.9269909560680389,1.127687230706215,1.32326540350914,1.505782663822174,1.6679120659828186,1.803118348121643,1.9059513807296753,1.9722660183906555,1.9993891716003418,1.9862275123596191,1.9333115816116333,1.8427743911743164,1.7182654738426208,1.564803659915924,1.3885748982429504,1.1966829150915146,0.996862766565755,0.7971690744161606,0.6056513786315918,0.43002963066101074,0.27738308906555176,0.15386486053466797,0.0644538402557373,0.01275414228439331,0.000850975513458252,0.029227852821350098,0.09673601388931274,0.20065420866012573,0.33679360151290894,0.4996664524078369,0.6827074587345123,0.8785383552312851,1.0792653039097786,1.276797115802765,1.4631713926792145,1.6308754682540894,1.7731493711471558,1.884257972240448,1.9597226977348328,1.9965015649795532,1.9931119680404663,1.9496906399726868,1.8679877519607544,1.7512968182563782,1.604321539402008,1.4329863786697388,1.2441682070493698,1.045535247772932,0.8450668007135391,0.650843620300293,0.47069472074508667,0.3118818402290344,0.18080657720565796,0.08275258541107178,0.021672308444976807,2.7835369110107422e-5,0.018691658973693848,0.07691150903701782,0.1723405122756958,0.3011320233345032,0.4580944776535034,0.6369008719921112,0.8303435444831848,1.0306249968707561,1.2296719700098038,1.4194609820842743,1.5923417806625366,1.7413455843925476,1.860466182231903,1.9449118971824646,1.9912531971931458,1.9976376295089722,1.9638078212738037,1.8911274671554565,1.7825263142585754,1.6423819661140442,1.4763435423374176,1.2911039888858795,1.0941301882266998,0.8933620601892471,0.6968924403190613,0.5126409232616425,0.3480345606803894,0.209708571434021,0.10323882102966309,0.03291696310043335,0.001577615737915039,0.01048421859741211,0.05927759408950806,0.14599090814590454,0.2671288847923279,0.4178333282470703,0.5919837653636932,0.7825811356306076,0.981942530721426,1.1820318102836609,1.3747834861278534,1.5524278283119202,1.7078041434288025,1.8346493244171143,1.9278501868247986,1.9836499691009521,1.999799370765686,1.9756474494934082,1.9121676683425903,1.8119189739227295,1.6789422631263733,1.5185978412628174,1.3373489677906036,1.1425017565488815,0.9419103860855103,0.743660569190979,0.5557436645030975,0.3857104182243347,0.24046611785888672,0.12583822011947632,0.04644733667373657,0.005493581295013428,0.004627823829650879,0.04388493299484253,0.12168252468109131,0.23488456010818481,0.378928005695343,0.5480065047740936,0.735304594039917,0.9332724139094353,1.1339299827814102,1.3291889131069183,1.511178433895111,1.672562599182129,1.806836187839508,1.9085866212844849,1.9737125039100647,1.9995885491371155,1.9851717948913574,1.931032121181488,1.8393683433532715,1.713870108127594,1.5595961213111877,1.3827652037143707,1.1905051916837692,0.9905660441145301,0.7910071611404419,0.5998726785182953,0.42486709356307983,0.27304476499557495,0.15052562952041626,0.062248289585113525,0.011771202087402344,0.0011290907859802246,0.03075087070465088,0.09944254159927368,0.20443516969680786,0.3414965271949768,0.5051018297672272,0.6886561810970306,0.8847606405615807,1.085510328412056,1.2828423976898193,1.4687428772449493,1.635748565196991,1.7771276235580444,1.887181043624878,1.961472749710083,1.9970080256462097,1.9923545122146606,1.9476996660232544,1.8648436665534973,1.747126281261444,1.5992926359176636,1.4273018538951874,1.238086774945259,1.0392745546996593,0.8388791978359222,0.6449785530567169,0.46538859605789185,0.3073485493659973,0.1772288680076599,0.08027458190917969,0.020393967628479004,6.556510925292969e-7,0.019922912120819092,0.07935148477554321,0.17589092254638672,0.30564969778060913,0.4633973240852356,0.6427751183509827,0.8365524411201477,1.0369182527065277,1.2357959002256393,1.425168752670288,1.5974032878875732,1.7455568313598633,1.8636574149131775,1.9469444751739502,1.9920607209205627,1.9971875548362732,1.9621183276176453,1.8882666230201721,1.7786094546318054,1.6375669240951538,1.4708244800567627,1.2850741147994995,1.0878594666719437,0.8871032670140266,0.6908978819847107,0.5071521997451782,0.34327298402786255,0.2058659791946411,0.10047012567520142,0.0313338041305542,0.001243889331817627,0.011413216590881348,0.061431944370269775,0.14928382635116577,0.27142757177352905,0.422939658164978,0.5977127552032471,0.7887018024921417,0.9882081616669893,1.188189834356308,1.3805857002735138,1.5576403737068176,1.712216854095459,1.8380842804908752,1.9301801919937134,1.9847644567489624,1.999653398990631,1.9742469191551208,1.9095690846443176,1.808227002620697,1.6743057370185852,1.5132036209106445,1.3314145803451538,1.1362663805484772,0.935625359416008,0.7375792264938354,0.5501111447811127,0.38077783584594727,0.23640501499176025,0.12281227111816406,0.044578492641448975,0.004857182502746582,0.005249500274658203,0.04573965072631836,0.1246955394744873,0.2389344573020935,0.3838754892349243,0.5536323487758636,0.7413820624351501,0.9395565167069435,1.1401674151420593,1.3351282477378845,1.5165802240371704,1.6772091388702393,1.8105401992797852,1.9111987948417664,1.9751275181770325,1.9997493624687195,1.9840719103813171,1.9287270307540894,1.835945725440979,1.7094679474830627,1.554391860961914,1.3769685924053192,1.184349924325943,0.9843002092093229,0.7848833501338959,0.5941377282142639,0.4197273254394531,0.26873528957366943,0.14722007513046265,0.060079991817474365,0.010827481746673584,0.0014480352401733398,0.032319605350494385,0.10219782590866089,0.20826596021652222,0.34624844789505005,0.5105832517147064,0.6946462094783783,0.8910177871584892,1.091782383620739,1.288847267627716,1.474268913269043,1.6405730247497559,1.781055986881256,1.8900550603866577,1.9631764888763428,1.9974728226661682,1.9915615916252136,1.945681095123291,1.8616652488708496,1.7429260611534119,1.5942399501800537,1.4216003715991974,1.2319663017988205,1.0329818204045296,0.8326678574085236,0.6390989422798157,0.46007776260375977,0.3028205633163452,0.17366623878479004,0.07782095670700073,0.019148170948028564,1.2993812561035156e-5,0.021186769008636475,0.08181589841842651,0.17945653200149536,0.31017279624938965,0.46869558095932007,0.6486349701881409,0.842737689614296,1.043179553002119,1.2419104874134064,1.4308596551418304,1.602441132068634,1.7497385144233704,1.866814374923706,1.9489494562149048,1.992832899093628,1.996695876121521,1.9603825211524963,1.8853567242622375,1.7746427059173584,1.6327032446861267,1.4652599394321442,1.2790622115135193,1.0816156715154648,0.880879245698452,0.6849445104598999,0.5017094910144806,0.3385602831840515,0.20207327604293823,0.09775030612945557,0.029796481132507324,0.0009496808052062988,0.012381434440612793,0.06362354755401611,0.15261048078536987,0.2757551670074463,0.42809373140335083,0.6034855544567108,0.7948606461286545,0.9945047730579972,1.1943704187870026,1.3864010870456696,1.5628561973571777,1.7166228294372559,1.841502845287323,1.9324623346328735,1.985834777355194,1.9994688034057617,1.9728148579597473,1.9069471955299377,1.804521083831787,1.6696651577949524,1.507815420627594,1.3254958987236023,1.1300255954265594,0.9293428808450699,0.7315083146095276,0.544496476650238,0.375845730304718,0.23235434293746948,0.11980628967285156,0.04273831844329834,0.004257023334503174,0.00591355562210083,0.047641217708587646,0.12775784730911255,0.24303412437438965,0.3888232111930847,0.5592485070228577,0.7474402487277985,0.9458125457167625,1.1463690996170044,1.3410255908966064,1.521935522556305,1.6818065643310547,1.8141943216323853,1.9137747883796692,1.9765037894248962,1.999870479106903,1.982932984828949,1.9263740181922913,1.8324733972549438,1.7050162553787231,1.5491403341293335,1.3711288273334503,1.1781573742628098,0.9780044816434383,0.7787382155656815,0.5883908867835999,0.4146353006362915,0.26447540521621704,0.14396411180496216,0.057959139347076416,0.00992727279663086,0.0018047094345092773,0.03391885757446289,0.10497510433197021,0.21210938692092896,0.3510262370109558,0.5160841047763824,0.7006483376026154,0.8972792625427246,1.0980508029460907,1.2948699593544006,1.4798030853271484,1.6453956365585327,1.784972608089447,1.8929078578948975,1.9648504257202148,1.9979004263877869,1.9907256364822388,1.9436153173446655,1.8584682941436768,1.738716959953308,1.5891883969306946,1.4159099161624908,1.2258663773536682,1.0267182812094688,0.8264931887388229,0.6332620680332184,0.45478832721710205,0.2983201742172241,0.17013633251190186,0.07540386915206909,0.017941296100616455,6.496906280517578e-5,0.02249544858932495,0.08432859182357788,0.18307191133499146,0.3147451877593994,0.474040687084198,0.6545372605323792,0.8489592671394348,1.0494696386158466,1.247985914349556,1.4365060329437256,1.6074308156967163,1.75387042760849,1.8699219226837158,1.9509074091911316,1.9935623407363892,1.9961673021316528,1.9586173295974731,1.8824117183685303,1.770645260810852,1.627814531326294,1.4596769213676453,1.273010015487671,1.0753382444381714,0.8746296316385269,0.6789746284484863,0.4962599277496338,0.3338507413864136,0.19829368591308594,0.09505289793014526,0.028290092945098877,0.0006963014602661133,0.013383865356445312,0.06584137678146362,0.1559543013572693,0.2800902724266052,0.43324536085128784,0.6092459857463837,0.8009977042675018,1.000771085091401,1.2005432844161987,1.3922011852264404,1.568049669265747,1.7210004329681396,1.8448880314826965,1.934718668460846,1.986871361732483,1.9992437958717346,1.9713373184204102,1.904276728630066,1.8007652759552002,1.6649754643440247,1.5023808479309082,1.3195355534553528,1.1238099411129951,0.9230936244130135,0.7254773676395416,0.5389269590377808,0.37096214294433594,0.22835350036621094,0.11684948205947876,0.04094475507736206,0.0036963820457458496,0.006617069244384766,0.04958045482635498,0.1308547854423523,0.2471637725830078,0.3938192129135132,0.5649094581604004,0.7535379528999329,0.952101182192564,1.152595192193985,1.3469381630420685,1.5272963047027588,1.6863993406295776,1.8178340792655945,1.9163023829460144,1.9778350591659546,1.999951720237732,1.9817609190940857,1.9239959120750427,1.8289850950241089,1.7005584239959717,1.5438926219940186,1.3653027713298798,1.1719577610492706,0.9717096257954836,0.7726018577814102,0.5826603770256042,0.40954160690307617,0.260223925113678,0.14072614908218384,0.05586522817611694,0.009061872959136963,0.002202630043029785,0.03556406497955322,0.10780137777328491,0.21600264310836792,0.35580646991729736,0.5215773284435272,0.7066331505775452,0.9035144299268723,1.104284979403019,1.3008518517017365,1.4852915704250336,1.6501694321632385,1.7888393998146057,1.8957251906394958,1.9664860963821411,1.9982885122299194,1.989850401878357,1.9415120482444763,1.8552218675613403,1.7344582080841064,1.584088921546936,1.4101753234863281,1.219727799296379,1.0204231850802898,0.8202953189611435,0.6274112462997437,0.44954603910446167,0.2938692569732666,0.1666562557220459,0.07303488254547119,0.016778886318206787,0.00015604496002197266,0.02383631467819214,0.08686518669128418,0.18670201301574707,0.31934475898742676,0.47940659523010254,0.6604532301425934,0.8551868349313736,1.0557577647268772,1.254081130027771,1.4421626329421997,1.6124207973480225,1.7579926252365112,1.8730102181434631,1.9528372883796692,1.9942559599876404,1.9955967664718628,1.9568056464195251,1.8794462084770203,1.766636848449707,1.6229247450828552,1.454102873802185,1.2669764161109924,1.0690882802009583,0.8684152364730835,0.6730462908744812,0.4908566474914551,0.3291676640510559,0.19454586505889893,0.09239143133163452,0.026822149753570557,0.0004811286926269531,0.01443016529083252,0.068107008934021,0.15934783220291138,0.2844749689102173,0.43844443559646606,0.6150499284267426,0.8071725219488144,1.007067883387208,1.206678345799446,1.3979577124118805,1.5731956362724304,1.7253283858299255,1.8482235670089722,1.936927318572998,1.9878640174865723,1.9989805221557617,1.969828724861145,1.901570439338684,1.7969777584075928,1.6602594256401062,1.4969263672828674,1.3135625123977661,1.1175591200590134,0.9168169870972633,0.7194279134273529,0.5333485305309296,0.3660796284675598,0.22436368465423584,0.11391317844390869,0.03918039798736572,0.003177642822265625,0.00735628604888916,0.05154776573181152,0.13397085666656494,0.2513030767440796,0.398814857006073,0.570560097694397,0.7596157789230347,0.9583612307906151,1.1588152348995209,1.3528369963169098,1.5326361060142517,1.690964937210083,1.821441411972046,1.91880601644516,1.9791340827941895,1.9999937415122986,1.9805443286895752,1.9215696454048157,1.8254470229148865,1.6960511207580566,1.538597822189331,1.3594339191913605,1.1657814234495163,0.9654463902115822,0.7665041834115982,0.5769740641117096,0.40449589490890503,0.2560221552848816,0.13753771781921387,0.05381864309310913,0.00823962688446045,0.0026401281356811523,0.037247538566589355,0.11066293716430664,0.21992707252502441,0.3606354594230652,0.5271162390708923,0.7126587331295013,0.9097837805747986,1.1105453968048096,1.3068509995937347,1.4907875955104828,1.6549408435821533,1.7926937937736511,1.8984936475753784,1.9680758118629456,1.9986353516578674,1.9889404773712158,1.9393819570541382,1.8519574999809265,1.7301911115646362,1.5789911150932312,1.4044523537158966,1.2135805189609528,1.0141272777691483,0.8141045719385147,0.6215752065181732,0.44429993629455566,0.2894245982170105,0.16319221258163452,0.07069098949432373,0.015649735927581787,0.00028711557388305664,0.025222301483154297,0.08945024013519287,0.19038188457489014,0.32394886016845703,0.48476701974868774,0.6663539111614227,0.8613899201154709,1.0620284490287304,1.2601515352725983,1.4477880597114563,1.6173744797706604,1.762074887752533,1.8760565519332886,1.9547247886657715,1.994908630847931,1.9949883222579956,1.9549605250358582,1.876438856124878,1.762578547000885,1.6179865002632141,1.4484837353229523,1.260902851819992,1.062805138528347,0.862175777554512,0.667102038860321,0.4854472279548645,0.32453370094299316,0.19084787368774414,0.08977854251861572,0.025396287441253662,0.00030601024627685547,0.01551288366317749,0.07040387392044067,0.16276639699935913,0.2888772487640381,0.4436531066894531,0.6208550035953522,0.8133399933576584,1.013349144719541,1.2128202021121979,1.4037265479564667,1.5783439874649048,1.729648768901825,1.8515417575836182,1.9391096234321594,1.9888224601745605,1.9986764788627625,1.9682744145393372,1.898841679096222,1.7931772470474243,1.6555402278900146,1.4914654791355133,1.3075915575027466,1.1113187968730927,0.9105588421225548,0.7134042084217072,0.5278020799160004,0.36123400926589966,0.22041422128677368,0.1110190749168396,0.03745824098587036,0.0026969313621520996,0.008138298988342285,0.053562164306640625,0.13713639974594116,0.2554922103881836,0.40385866165161133,0.5762552320957184,0.7657327353954315,0.9646534100174904,1.1649988889694214,1.3586933612823486,1.537929117679596,1.6954922080039978,1.8250074982643127,1.9212672710418701,1.980391263961792,1.9999961853027344,1.9792919158935547,1.9191128611564636,1.8218849301338196,1.6915273070335388,1.5332945585250854,1.3535650670528412,1.1595835238695145,0.9591540209949017,0.7603860646486282,0.5712768137454987,0.39944911003112793,0.2518293261528015,0.13436788320541382,0.05179953575134277,0.007452607154846191,0.003114759922027588,0.03896075487136841,0.11354571580886841,0.22387272119522095,0.365477979183197,0.5326603949069977,0.7186810374259949,0.9160415008664131,1.1167862713336945,1.3128234446048737,1.4962508976459503,1.6596747636795044,1.796507477760315,1.901233434677124,1.9696349501609802,1.9989444017410278,1.987986981868744,1.937204360961914,1.8486435413360596,1.7258743643760681,1.573845624923706,1.3986855149269104,1.2074546217918396,1.0078613264486194,0.8079511523246765,0.6157682836055756,0.43908852338790894,0.28501880168914795,0.15976959466934204,0.06838953495025635,0.01456218957901001,0.00045734643936157227,0.026643455028533936,0.09206497669219971,0.19408488273620605,0.3285907506942749,0.49017393589019775,0.6722965240478516,0.8676287084817886,1.0682966858148575,1.2662116587162018,1.453395813703537,1.62230384349823,1.766127109527588,1.8790682554244995,1.9565746784210205,1.9955220818519592,1.9943389296531677,1.9530731439590454,1.873389482498169,1.7584999799728394,1.613035798072815,1.44286048412323,1.2548337280750275,1.0565347447991371,0.8559568822383881,0.6611853241920471,0.48007118701934814,0.3199150562286377,0.18716394901275635,0.08718889951705933,0.02400881052017212,0.0001703500747680664,0.016634464263916016,0.07273751497268677,0.16621792316436768,0.29330766201019287,0.4488837718963623,0.6266750395298004,0.8195148259401321,1.0196451339870691,1.218968540430069,1.4094654619693756,1.5834570527076721,1.7339298129081726,1.8548182845115662,1.9412495493888855,1.9897395372390747,1.9983336925506592,1.9666855931282043,1.896070957183838,1.789326786994934,1.6507720947265625,1.4859851896762848,1.3016084730625153,1.1050740852952003,0.9043042212724686,0.7073917984962463,0.5222742557525635,0.3564135432243347,0.21649545431137085,0.10816001892089844,0.03577005863189697,0.0022545456886291504,0.008957624435424805,0.055609047412872314,0.14032834768295288,0.2597005367279053,0.4089137315750122,0.5819533169269562,0.7718441039323807,0.970931738615036,1.1711910963058472,1.3645640313625336,1.5432265996932983,1.6999920010566711,1.828541100025177,1.9236921668052673,1.9816097617149353,1.9999591708183289,1.9780008792877197,1.9166198372840881,1.8182904124259949,1.6869761943817139,1.5279573202133179,1.347667932510376,1.1533642411231995,0.952878512442112,0.754292219877243,0.5656102895736694,0.39443832635879517,0.24767625331878662,0.1312398910522461,0.04982274770736694,0.0067067742347717285,0.003631114959716797,0.040720343589782715,0.11647754907608032,0.2278490662574768,0.3703455328941345,0.5382230281829834,0.7247144877910614,0.9223025366663933,1.1230225414037704,1.3187835812568665,1.5016946196556091,1.6643826365470886,1.8002989292144775,1.903944194316864,1.9711520075798035,1.9992132186889648,1.9869967103004456,1.9349949359893799,1.8453040719032288,1.7215394377708435,1.5686899423599243,1.3929169178009033,1.201305627822876,1.0015645499806851,0.8017753511667252,0.6099765002727509,0.4338992238044739,0.28064119815826416,0.15638011693954468,0.06612485647201538,0.013513565063476562,0.0006669759750366211,0.028102993965148926,0.09471559524536133,0.1978287696838379,0.3332705497741699,0.4955878257751465,0.6782377064228058,0.8738576024770737,1.0745622292160988,1.2722612917423248,1.458985686302185,1.6272085905075073,1.7701491117477417,1.882045328617096,1.9583911299705505,1.9960975646972656,1.9936518669128418,1.9511526823043823,1.8703129887580872,1.7543914914131165,1.6080609560012817,1.4372197687625885,1.2487545162439346,1.0502621196210384,0.8497436791658401,0.6552676558494568,0.47470271587371826,0.31531214714050293,0.18352103233337402,0.08464163541793823,0.022659897804260254,7.414817810058594e-5,0.01779484748840332,0.07510769367218018,0.169702410697937,0.29776597023010254,0.45414894819259644,0.6325239837169647,0.8257118165493011,1.0259250923991203,1.225093349814415,1.4151882231235504,1.5885470509529114,1.7381819486618042,1.858061134815216,1.9433523416519165,1.9906175136566162,1.9979515075683594,1.9650546312332153,1.8932579159736633,1.785454511642456,1.6459898948669434,1.480485737323761,1.2956134974956512,1.0988252311944962,0.8980533853173256,0.701390951871872,0.5167652666568756,0.35161852836608887,0.2125982642173767,0.10532933473587036,0.034124016761779785,0.0018526911735534668,0.009816110134124756,0.0576932430267334,0.1435542106628418,0.2639380693435669,0.41399216651916504,0.5876678824424744,0.7779644876718521,0.9772264696657658,1.1773915588855743,1.3704060912132263,1.54848974943161,1.7044641375541687,1.8320419788360596,1.9260806441307068,1.9827895164489746,1.9998827576637268,1.9766712188720703,1.914090633392334,1.8146547675132751,1.6823868155479431,1.52261221408844,1.3417713940143585,1.1471539735794067,0.9466048628091812,0.748208075761795,0.5599609017372131,0.38945144414901733,0.24355286359786987,0.12814617156982422,0.047878801822662354,0.005998373031616211,0.004185616970062256,0.04251354932785034,0.11943715810775757,0.23185580968856812,0.37523794174194336,0.5438038408756256,0.7307587563991547,0.9285666346549988,1.1292539536952972,1.324745535850525,1.5071316957473755,1.6690756678581238,1.804049551486969,1.9066126942634583,1.972630798816681,1.9994426369667053,1.9859675765037537,1.9327486753463745,1.8419312238693237,1.7171760201454163,1.5634992122650146,1.3871187567710876,1.1951337158679962,0.9952829694375396,0.7956223636865616,0.6042000949382782,0.4287322759628296,0.27629196643829346,0.15302389860153198,0.0638970136642456,0.012503862380981445,0.0009161233901977539,0.029604554176330566,0.09740841388702393,0.20159530639648438,0.33796536922454834,0.501021683216095,0.6841915547847748,0.8800914660096169,1.0808248296380043,1.2783001959323883,1.4645574390888214,1.6320886015892029,1.774150311946869,1.8849946856498718,1.9601653814315796,1.9966323375701904,1.9929256439208984,1.9491946697235107,1.8672021627426147,1.7502532601356506,1.603062093257904,1.4315617978572845,1.2426655143499374,1.0439722649753094,0.8435213267803192,0.6493779420852661,0.46936798095703125,0.3107474446296692,0.1799103021621704,0.08213049173355103,0.021349549293518066,1.7404556274414062e-5,0.01899397373199463,0.07751435041427612,0.1732282042503357,0.3022628426551819,0.45942288637161255,0.6383733153343201,0.8319006711244583,1.0322040244936943,1.2312092632055283,1.4208945631980896,1.593613862991333,1.7424049377441406,1.8612700700759888,1.945422887802124,1.9914584159851074,1.9975289106369019,1.96338951587677,1.8904165029525757,1.7815512418746948,1.6411821246147156,1.4749673008918762,1.2896068394184113,1.0925724729895592,0.8918065652251244,0.6953873336315155,0.511262059211731,0.34683752059936523,0.20874160528182983,0.10254085063934326,0.03251612186431885,0.001490175724029541,0.010713577270507812,0.05981457233428955,0.14681392908096313,0.2682046890258789,0.4190937280654907,0.5934126675128937,0.7841085344552994,0.9835068471729755,1.183569997549057,1.376233547925949,1.5537313222885132,1.708908498287201,1.835510015487671,1.928432583808899,1.98393052816391,1.9997668266296387,1.9752996563911438,1.9115191102027893,1.8109956979751587,1.677781581878662,1.517246425151825,1.335861325263977,1.1409378945827484,0.9403333179652691,0.7421338856220245,0.5543288588523865,0.38448864221572876,0.2394493818283081,0.12507951259613037,0.045977234840393066,0.0053310394287109375,0.004779398441314697,0.04434448480606079,0.12243157625198364,0.2358928918838501,0.38015496730804443,0.54940265417099,0.7368136644363403,0.9348487854003906,1.1354953944683075,1.330680251121521,1.512535572052002,1.6737309098243713,1.80776846408844,1.9092453718185425,1.9740711450576782,1.9996326565742493,1.9848994612693787,1.9304656386375427,1.838516891002655,1.712773621082306,1.5582988262176514,1.3813193142414093,1.188969075679779,0.9890015758574009,0.7894774228334427,0.5984393060207367,0.4235879182815552,0.27197128534317017,0.14970117807388306,0.06170082092285156,0.011530756950378418,0.0012053847312927246,0.031140804290771484,0.10013043880462646,0.20539331436157227,0.3426862955093384,0.5064752101898193,0.6901578605175018,0.8863300681114197,1.0870842412114143,1.284342736005783,1.4701243042945862,1.636955440044403,1.7781112790107727,1.8879019021987915,1.9619016647338867,1.9971277713775635,1.9921602010726929,1.9471991658210754,1.8640571236610413,1.7460854053497314,1.598039448261261,1.4258729815483093,1.2365520894527435,1.0376959145069122,0.8373202383518219,0.6435020864009857,0.4640541672706604,0.306209921836853,0.17633193731307983,0.07965558767318726,0.020077764987945557,5.960464477539063e-8,0.020234882831573486,0.07996338605880737,0.1767781376838684,0.3067764639854431,0.464718222618103,0.6442368626594543,0.8380961567163467,1.0384816899895668,1.2373160421848297,1.4265843331813812,1.598657250404358,1.7466087937355042,1.8644527196884155,1.9474510550498962,1.9922581315040588,1.9970678687095642,1.9616864323616028,1.8875398635864258,1.7776171565055847,1.636349081993103,1.469430148601532,1.2835887670516968,1.0863008573651314,0.885548859834671,0.6894103288650513,0.5057914555072784,0.34209388494491577,0.2049161195755005,0.09978777170181274,0.030946433544158936,0.0011670589447021484,0.011650145053863525,0.06197303533554077,0.1501152515411377,0.2725105881690979,0.4242306351661682,0.5991595983505249,0.7902462035417557,0.9897878747433424,1.1897411793470383,1.3820461332798004,1.5589510202407837,1.7133249044418335,1.8389450907707214,1.9307534098625183,1.9850353002548218,1.9996110200881958,1.9738929271697998,1.908917784690857,1.8073046803474426,1.673149585723877,1.511860191822052,1.3299380540847778,1.1347162574529648,0.9340641275048256,0.7360698580741882,0.5487008094787598,0.3795381188392639,0.23538589477539062,0.1220548152923584,0.044113218784332275,0.004702866077423096,0.005412399768829346,0.04621320962905884,0.12546056509017944,0.23996013402938843,0.3850964903831482,0.5550329387187958,0.7428936958312988,0.9411182813346386,1.1417163461446762,1.3366019129753113,1.5179192423820496,1.6783595085144043,1.8114555478096008,1.9118422269821167,1.9754730463027954,1.9997831583023071,1.9837898015975952,1.9281401634216309,1.8350776433944702,1.7083536982536316,1.5530763864517212,1.3755048513412476,1.1827969551086426,0.9827206153422594,0.78334079682827,0.5926943719387054,0.4184662103652954,0.2676689624786377,0.14640402793884277,0.05954700708389282,0.010599076747894287,0.0015333890914916992,0.0327153205871582,0.10288792848587036,0.209222674369812,0.3474331498146057,0.5119482278823853,0.6961364150047302,0.8925883248448372,1.0933554098010063,1.290359377861023,1.4756591320037842,1.6417853832244873,1.7820415496826172,1.890774130821228,1.9636000394821167,1.9975838661193848,1.9913545846939087,1.9451638460159302,1.8608741164207458,1.7418829798698425,1.5929870009422302,1.420181155204773,1.230444148182869,1.0314180813729763,0.8311255723237991,0.6376402974128723,0.4587615132331848,0.3016943335533142,0.1727818250656128,0.07721400260925293,0.018843233585357666,2.2292137145996094e-5,0.021511435508728027,0.08244287967681885,0.1803605556488037,0.3113173842430115,0.470034658908844,0.6501144766807556,0.8443055748939514,1.0447654575109482,1.2434208691120148,1.432264119386673,1.603683054447174,1.7507729530334473,1.8675934672355652,1.9494417905807495,1.9930186867713928,1.9965675473213196,1.9599453210830688,1.884624719619751,1.7736474871635437,1.6314849853515625,1.4638676941394806,1.2775521576404572,1.080048643052578,0.8793108314275742,0.683445543050766,0.5003404021263123,0.3373762369155884,0.20112204551696777,0.09706693887710571,0.02941310405731201,0.0008831024169921875,0.012626886367797852,0.0641711950302124,0.15343815088272095,0.2768348455429077,0.42937785387039185,0.604922354221344,0.796392172574997,0.9960693060420454,1.1959123760461807,1.3878507018089294,1.5641549825668335,1.717718482017517,1.8423511385917664,1.9330291748046875,1.9860985279083252,1.9994161128997803,1.9724477529525757,1.9062805771827698,1.8035817742347717,1.668485403060913,1.5064472556114197,1.323994517326355,1.1284817308187485,0.9277899339795113,0.7300088703632355,0.5431042313575745,0.3746241331100464,0.2313525676727295,0.1190648078918457,0.04228699207305908,0.004114031791687012,0.006085515022277832,0.048121869564056396,0.12852782011032104,0.2440623641014099,0.3900683522224426,0.5606671571731567,0.748969167470932,0.9473900981247425,1.1479317098855972,1.3425102829933167,1.5232824087142944,1.682966947555542,1.815114974975586,1.914406180381775,1.9768381714820862,1.999894380569458,1.982643961906433,1.925783634185791,1.8316054940223694,1.7039058208465576,1.5478321313858032,1.3696755766868591,1.1766101270914078,0.9764327090233564,0.7772052735090256,0.5869585871696472,0.4133613705635071,0.26340603828430176,0.1431485414505005,0.057430267333984375,0.009706497192382812,0.0019008517265319824,0.03432798385620117,0.10568428039550781,0.21308791637420654,0.35221153497695923,0.5174471735954285,0.7021342217922211,0.8988280668854713,1.099607691168785,1.2963646054267883,1.4811752140522003,1.6465899348258972,1.785940945148468,1.8936145901679993,1.9652624130249023,1.9980010390281677,1.9905108213424683,1.9430936574935913,1.857660949230194,1.7376512289047241,1.5879111886024475,1.4144727289676666,1.224327102303505,1.0251390039920807,0.8249300420284271,0.6317856907844543,0.45348381996154785,0.29721176624298096,0.1692686676979065,0.07481187582015991,0.01764744520187378,8.404254913330078e-5,0.022826671600341797,0.08495855331420898,0.18397527933120728,0.3158854842185974,0.47537845373153687,0.6560130715370178,0.8505135923624039,1.0510398335754871,1.2495086789131165,1.4379268288612366,1.60868501663208,1.754907488822937,1.8707000017166138,1.9513951539993286,1.9937400221824646,1.9960271716117859,1.9581642150878906,1.8816781640052795,1.7696521282196045,1.6266018748283386,1.4582869112491608,1.2715045809745789,1.0737780556082726,0.8730775713920593,0.6774932742118835,0.49490904808044434,0.33267903327941895,0.1973549723625183,0.09438502788543701,0.0279199481010437,0.0006388425827026367,0.013642728328704834,0.06640630960464478,0.15680259466171265,0.28118765354156494,0.4345476031303406,0.6107006669044495,0.8025536388158798,1.0023585218004882,1.2020683288574219,1.3936328887939453,1.5693303346633911,1.7220783829689026,1.8457239270210266,1.93527352809906,1.9871228337287903,1.9991817474365234,1.9709641933441162,1.9036043882369995,1.7998226284980774,1.6638004183769226,1.5010208487510681,1.3180453777313232,1.1222497001290321,0.9215185940265656,0.7239586114883423,0.5375256836414337,0.36973482370376587,0.2273496389389038,0.11610591411590576,0.0404963493347168,0.003563821315765381,0.006797075271606445,0.050065815448760986,0.13162577152252197,0.24819451570510864,0.3950642943382263,0.566318690776825,0.7550545334815979,0.9536639973521233,1.1541487723588943,1.348412275314331,1.5286314487457275,1.6875418424606323,1.818737804889679,1.9169308543205261,1.9781646132469177,1.9999659657478333,1.9814593195915222,1.9233906269073486,1.828100562095642,1.6994301676750183,1.542559802532196,1.3638246059417725,1.1704238206148148,0.9701533615589142,0.7710860073566437,0.5812391042709351,0.4082796573638916,0.25917208194732666,0.13992691040039062,0.05535078048706055,0.008852958679199219,0.002308189868927002,0.035980820655822754,0.1085125207901001,0.21697956323623657,0.35700976848602295,0.5229652225971222,0.7081438302993774,0.905086986720562,1.1058560460805893,1.302358090877533,1.486672282218933,1.6513747572898865,1.789814054965973,1.8964163661003113,1.9668846130371094,1.998378336429596,1.9896268844604492,1.9409837126731873,1.8544099926948547,1.733395516872406,1.5828182697296143,1.4087479412555695,1.218193769454956,1.0188513081520796,0.818748950958252,0.6259527206420898,0.4482341408729553,0.29275691509246826,0.1657840609550476,0.07244336605072021,0.016491949558258057,0.00018519163131713867,0.02418041229248047,0.08751344680786133,0.1876266598701477,0.3204861879348755,0.48073655366897583,0.6619180738925934,0.8567275255918503,1.057319812476635,1.25559401512146,1.4435653984546661,1.6136568784713745,1.759012222290039,1.8737758994102478,1.9533132314682007,1.9944230318069458,1.9954481720924377,1.956347405910492,1.8786967992782593,1.7656214833259583,1.6216880679130554,1.4526948034763336,1.2654536068439484,1.0675121620297432,0.8668493181467056,0.6715465188026428,0.4894910454750061,0.32801389694213867,0.1936240792274475,0.09173887968063354,0.026463449001312256,0.00043386220932006836,0.014696240425109863,0.06867563724517822,0.1601961851119995,0.2855687737464905,0.43974602222442627,0.6165014207363129,0.808715432882309,1.0086400145664811,1.2082163244485855,1.3994065523147583,1.5744894742965698,1.7264150381088257,1.8490592241287231,1.9374783039093018,1.9881081581115723,1.9989076256752014,1.9694404602050781,1.9008957743644714,1.796036422252655,1.6590864658355713,1.4955713748931885,1.3120801150798798,1.1160052716732025,0.9152579605579376,0.717926561832428,0.531961977481842,0.3648674488067627,0.22337234020233154,0.1131855845451355,0.03874582052230835,0.0030533671379089355,0.007548272609710693,0.052048444747924805,0.13476186990737915,0.2523512840270996,0.40007805824279785,0.5719907879829407,0.7611532807350159,0.9599435329437256,1.160352200269699,1.3542933762073517,1.5339564085006714,1.6920923590660095,1.8223304748535156,1.919422447681427,1.9794508218765259,1.9999980926513672,1.98023521900177,1.9209596514701843,1.8245607018470764,1.6949214935302734,1.5372725129127502,1.3579627871513367,1.1642270386219025,0.9638713784515858,0.7649683356285095,0.5755431056022644,0.4032275080680847,0.2549648880958557,0.13673728704452515,0.05330735445022583,0.0080375075340271,0.002754390239715576,0.03766965866088867,0.11137771606445312,0.22090452909469604,0.3618391752243042,0.5284953713417053,0.7141576409339905,0.911345861852169,1.1121040135622025,1.3083433210849762,1.4921568036079407,1.6561281085014343,1.7936512231826782,1.8991844058036804,1.9684696197509766,1.998716413974762,1.9887049198150635,1.9388391375541687,1.8511272072792053,1.729108214378357,1.5776992440223694,1.4030000269412994,1.2120592594146729,1.0125704947859049,0.8125712722539902,0.6201310157775879,0.4430030584335327,0.28832465410232544,0.16233664751052856,0.0701143741607666,0.015374600887298584,0.00032591819763183594,0.02557438611984253,0.09010130167007446,0.19130569696426392,0.3251109719276428,0.4861183762550354,0.6678400337696075,0.8629546612501144,1.063589908182621,1.2616618871688843,1.449189841747284,1.618607521057129,1.7630919218063354,1.8768135905265808,1.9551913142204285,1.995066225528717,1.9948294758796692,1.9544917345046997,1.8756770491600037,1.7615655064582825,1.616755723953247,1.4470813870429993,1.259388506412506,1.061239793896675,0.8606187701225281,0.6656199395656586,0.4840964674949646,0.32337242364883423,0.18992286920547485,0.08912545442581177,0.025047123432159424,0.00026857852935791016,0.015789330005645752,0.07098311185836792,0.1636250615119934,0.28998351097106934,0.44496023654937744,0.6223102509975433,0.814888522028923,1.0149249816313386,1.2143635600805283,1.405157446861267,1.5796196460723877,1.730720341205597,1.8523629903793335,1.939647376537323,1.9890556931495667,1.9985944032669067,1.9678803086280823,1.898149847984314,1.7922164797782898,1.6543464064598083,1.4901023209095001,1.3061024844646454,1.109760046005249,0.9089968726038933,0.711901992559433,0.5264168083667755,0.36002516746520996,0.21943050622940063,0.11029845476150513,0.037032127380371094,0.0025824904441833496,0.008338689804077148,0.05406850576400757,0.13793015480041504,0.2565401792526245,0.40511858463287354,0.5776798129081726,0.7672614455223083,0.9662246517837048,1.1665530800819397,1.3601640462875366,1.539256989955902,1.6966155171394348,1.8258906602859497,1.9218746423721313,1.9806991219520569,1.9999906420707703,1.9789723753929138,1.918492317199707,1.8209883570671082,1.690388023853302,1.5319607257843018,1.3520886301994324,1.15802563726902,0.957590825855732,0.7588655352592468,0.569860428571701,0.3981958031654358,0.2507883906364441,0.1335817575454712,0.05130130052566528,0.007262051105499268,0.0032402873039245605,0.03939807415008545,0.11427706480026245,0.22486025094985962,0.36668944358825684,0.5340458452701569,0.7201864123344421,0.9176063314080238,1.1183475479483604,1.3143163323402405,1.4976168870925903,1.660858392715454,1.797459363937378,1.9019160866737366,1.970016360282898,1.9990151524543762,1.9877436757087708,1.9366561770439148,1.8478118777275085,1.7247934341430664,1.5725573897361755,1.397241473197937,1.2059126496315002,1.0062853717245162,0.806402862071991,0.614324301481247,0.4377939701080322,0.28392452001571655,0.15892016887664795,0.06781995296478271,0.014296412467956543,0.0005061030387878418,0.027005553245544434,0.09272664785385132,0.1950189471244812,0.32976096868515015,0.4915204644203186,0.6737751066684723,0.8691815435886383,1.0698613077402115,1.2677249610424042,1.454794853925705,1.6235337257385254,1.7671378254890442,1.879817545413971,1.957032859325409,1.9956700205802917,1.9941715002059937,1.9525983333587646,1.8726255297660828,1.7574769854545593,1.611795961856842,1.4414520561695099,1.25331312417984,1.0549631044268608,0.8543993979692459,0.6597029566764832,0.47872394323349,0.31875914335250854,0.1862536072731018,0.08655035495758057,0.023668408393859863,0.00014263391494750977,0.016920924186706543,0.07332730293273926,0.16708695888519287,0.2944222688674927,0.4501994848251343,0.628139317035675,0.8210679739713669,1.0212093573063612,1.2204967141151428,1.4108949601650238,1.584730088710785,1.7349954843521118,1.8556326031684875,1.941779613494873,1.9899632334709167,1.9982414841651917,1.96628075838089,1.8953693509101868,1.7883652448654175,1.6495826840400696,1.4846147298812866,1.300112783908844,1.1035123765468597,0.9027403295040131,0.7058888077735901,0.5208919942378998,0.3552088737487793,0.2155165672302246,0.10744732618331909,0.03535652160644531,0.00215071439743042,0.00916820764541626,0.0561259388923645,0.14113110303878784,0.2607577443122864,0.4101825952529907,0.5833837687969208,0.7733778953552246,0.972508056089282,1.1727454960346222,1.3660195767879486,1.544540286064148,1.7011098265647888,1.8294182419776917,1.9242923259735107,1.9819085001945496,1.999943733215332,1.9776713848114014,1.915989100933075,1.8173832297325134,1.685828685760498,1.5266287922859192,1.3462001085281372,1.1518161296844482,0.9513124227523804,0.7527713179588318,0.564195990562439,0.393187940120697,0.24664050340652466,0.1304612159729004,0.04933267831802368,0.006525576114654541,0.0037654638290405273,0.04116356372833252,0.11721235513687134,0.22884631156921387,0.3715652823448181,0.5396166145801544,0.7262257933616638,0.9238710105419159,1.1245849877595901,1.3202769458293915,1.5030583143234253,1.6655616760253906,1.8012362122535706,1.9046128988265991,1.9715245962142944,1.9992742538452148,1.9867430925369263,1.9344364404678345,1.8444625735282898,1.7204484939575195,1.567393183708191,1.391466200351715,1.1997592449188232,1.0],"x":[-804.24774,-804.04663,-803.8455,-803.6444,-803.4433,-803.2422,-803.041,-802.8399,-802.6388,-802.4377,-802.2366,-802.03546,-801.83435,-801.63324,-801.4321,-801.231,-801.0299,-800.8288,-800.6277,-800.4266,-800.22546,-800.02435,-799.82324,-799.62213,-799.421,-799.2199,-799.0188,-798.8177,-798.6166,-798.41547,-798.21436,-798.01324,-797.81213,-797.611,-797.4099,-797.2088,-797.0077,-796.8066,-796.60547,-796.40436,-796.20325,-796.00214,-795.801,-795.5999,-795.3988,-795.1977,-794.9966,-794.7955,-794.59436,-794.39325,-794.19214,-793.99097,-793.78986,-793.58875,-793.38763,-793.1865,-792.9854,-792.7843,-792.5832,-792.3821,-792.18097,-791.97986,-791.77875,-791.57764,-791.3765,-791.1754,-790.9743,-790.7732,-790.5721,-790.371,-790.16986,-789.96875,-789.76764,-789.5665,-789.3654,-789.1643,-788.9632,-788.7621,-788.561,-788.35986,-788.15875,-787.95764,-787.75653,-787.5554,-787.3543,-787.1532,-786.9521,-786.751,-786.54987,-786.34875,-786.14764,-785.94653,-785.7454,-785.5443,-785.3432,-785.1421,-784.9409,-784.7398,-784.5387,-784.3376,-784.1365,-783.93536,-783.73425,-783.53314,-783.33203,-783.1309,-782.9298,-782.7287,-782.5276,-782.3265,-782.12537,-781.92426,-781.72314,-781.52203,-781.3209,-781.1198,-780.9187,-780.7176,-780.5165,-780.31537,-780.11426,-779.91315,-779.71204,-779.5109,-779.3098,-779.1087,-778.9076,-778.7065,-778.5054,-778.30426,-778.10315,-777.90204,-777.7009,-777.4998,-777.2987,-777.0976,-776.8965,-776.6954,-776.49426,-776.29315,-776.092,-775.89087,-775.68976,-775.48865,-775.28754,-775.0864,-774.8853,-774.6842,-774.4831,-774.282,-774.0809,-773.87976,-773.67865,-773.47754,-773.2764,-773.0753,-772.8742,-772.6731,-772.472,-772.2709,-772.06976,-771.86865,-771.66754,-771.46643,-771.2653,-771.0642,-770.8631,-770.662,-770.4609,-770.25977,-770.05865,-769.85754,-769.65643,-769.4553,-769.2542,-769.0531,-768.852,-768.6509,-768.44977,-768.24866,-768.04755,-767.84644,-767.6453,-767.4442,-767.2431,-767.04193,-766.8408,-766.6397,-766.4386,-766.2375,-766.0364,-765.83527,-765.63416,-765.43304,-765.23193,-765.0308,-764.8297,-764.6286,-764.4275,-764.2264,-764.02527,-763.82416,-763.62305,-763.42194,-763.2208,-763.0197,-762.8186,-762.6175,-762.4164,-762.2153,-762.01416,-761.81305,-761.61194,-761.4108,-761.2097,-761.0086,-760.8075,-760.6064,-760.4053,-760.20416,-760.00305,-759.80194,-759.6008,-759.3997,-759.1986,-758.9975,-758.7964,-758.5953,-758.39417,-758.19305,-757.9919,-757.7908,-757.58966,-757.38855,-757.18744,-756.9863,-756.7852,-756.5841,-756.383,-756.1819,-755.9808,-755.77966,-755.57855,-755.37744,-755.17633,-754.9752,-754.7741,-754.573,-754.3719,-754.1708,-753.96967,-753.76855,-753.56744,-753.36633,-753.1652,-752.9641,-752.763,-752.5619,-752.3608,-752.15967,-751.95856,-751.75745,-751.55634,-751.3552,-751.1541,-750.953,-750.7519,-750.5508,-750.3497,-750.14856,-749.94745,-749.74634,-749.5452,-749.3441,-749.14294,-748.94183,-748.7407,-748.5396,-748.3385,-748.1374,-747.9363,-747.73517,-747.53406,-747.33295,-747.13184,-746.9307,-746.7296,-746.5285,-746.3274,-746.1263,-745.9252,-745.72406,-745.52295,-745.32184,-745.1207,-744.9196,-744.7185,-744.5174,-744.3163,-744.1152,-743.91406,-743.71295,-743.51184,-743.3107,-743.1096,-742.9085,-742.7074,-742.5063,-742.3052,-742.10406,-741.90295,-741.70184,-741.50073,-741.2996,-741.0985,-740.8974,-740.6963,-740.4952,-740.29407,-740.0929,-739.8918,-739.6907,-739.48956,-739.28845,-739.08734,-738.8862,-738.6851,-738.484,-738.2829,-738.0818,-737.8807,-737.67957,-737.47845,-737.27734,-737.07623,-736.8751,-736.674,-736.4729,-736.2718,-736.0707,-735.86957,-735.66846,-735.46735,-735.26624,-735.0651,-734.864,-734.6629,-734.4618,-734.2607,-734.0596,-733.85846,-733.65735,-733.45624,-733.2551,-733.054,-732.8529,-732.6518,-732.4507,-732.2496,-732.04846,-731.84735,-731.64624,-731.4451,-731.24396,-731.04285,-730.84174,-730.6406,-730.4395,-730.2384,-730.0373,-729.8362,-729.6351,-729.43396,-729.23285,-729.03174,-728.8306,-728.6295,-728.4284,-728.2273,-728.0262,-727.8251,-727.62396,-727.42285,-727.22174,-727.0206,-726.8195,-726.6184,-726.4173,-726.2162,-726.0151,-725.81396,-725.61285,-725.41174,-725.21063,-725.0095,-724.8084,-724.6073,-724.4062,-724.2051,-724.00397,-723.80286,-723.60175,-723.40063,-723.1995,-722.9984,-722.7973,-722.5962,-722.3951,-722.1939,-721.9928,-721.7917,-721.5906,-721.38947,-721.18835,-720.98724,-720.78613,-720.585,-720.3839,-720.1828,-719.9817,-719.7806,-719.57947,-719.37836,-719.17725,-718.97614,-718.775,-718.5739,-718.3728,-718.1717,-717.9706,-717.7695,-717.56836,-717.36725,-717.16614,-716.965,-716.7639,-716.5628,-716.3617,-716.1606,-715.9595,-715.75836,-715.55725,-715.35614,-715.155,-714.9539,-714.7528,-714.5517,-714.3506,-714.1495,-713.94836,-713.74725,-713.54614,-713.34503,-713.14386,-712.94275,-712.74164,-712.5405,-712.3394,-712.1383,-711.9372,-711.7361,-711.535,-711.33386,-711.13275,-710.93164,-710.7305,-710.5294,-710.3283,-710.1272,-709.9261,-709.725,-709.52386,-709.32275,-709.12164,-708.92053,-708.7194,-708.5183,-708.3172,-708.1161,-707.915,-707.71387,-707.51276,-707.31165,-707.11053,-706.9094,-706.7083,-706.5072,-706.3061,-706.105,-705.9039,-705.70276,-705.50165,-705.30054,-705.0994,-704.8983,-704.6972,-704.4961,-704.2949,-704.0938,-703.8927,-703.6916,-703.4905,-703.28937,-703.08826,-702.88715,-702.68604,-702.4849,-702.2838,-702.0827,-701.8816,-701.6805,-701.4794,-701.27826,-701.07715,-700.87604,-700.6749,-700.4738,-700.2727,-700.0716,-699.8705,-699.6694,-699.46826,-699.26715,-699.06604,-698.8649,-698.6638,-698.4627,-698.2616,-698.0605,-697.8594,-697.65826,-697.45715,-697.25604,-697.05493,-696.8538,-696.6527,-696.4516,-696.2505,-696.0494,-695.84827,-695.64716,-695.44604,-695.2449,-695.04376,-694.84265,-694.64154,-694.4404,-694.2393,-694.0382,-693.8371,-693.636,-693.4349,-693.23376,-693.03265,-692.83154,-692.63043,-692.4293,-692.2282,-692.0271,-691.826,-691.6249,-691.42377,-691.22266,-691.02155,-690.82043,-690.6193,-690.4182,-690.2171,-690.016,-689.8149,-689.6138,-689.41266,-689.21155,-689.01044,-688.8093,-688.6082,-688.4071,-688.206,-688.0049,-687.8038,-687.60266,-687.40155,-687.20044,-686.9993,-686.7982,-686.5971,-686.39594,-686.1948,-685.9937,-685.7926,-685.5915,-685.3904,-685.1893,-684.98816,-684.78705,-684.58594,-684.3848,-684.1837,-683.9826,-683.7815,-683.5804,-683.3793,-683.17816,-682.97705,-682.77594,-682.5748,-682.3737,-682.1726,-681.9715,-681.7704,-681.5693,-681.36816,-681.16705,-680.96594,-680.76483,-680.5637,-680.3626,-680.1615,-679.9604,-679.7593,-679.55817,-679.35706,-679.15594,-678.95483,-678.7537,-678.5526,-678.3515,-678.1504,-677.9493,-677.74817,-677.54706,-677.3459,-677.1448,-676.94366,-676.74255,-676.54144,-676.34033,-676.1392,-675.9381,-675.737,-675.5359,-675.3348,-675.13367,-674.93256,-674.73145,-674.53033,-674.3292,-674.1281,-673.927,-673.7259,-673.5248,-673.32367,-673.12256,-672.92145,-672.72034,-672.5192,-672.3181,-672.117,-671.9159,-671.7148,-671.5137,-671.31256,-671.11145,-670.91034,-670.7092,-670.5081,-670.307,-670.1059,-669.9048,-669.7037,-669.50256,-669.30145,-669.10034,-668.89923,-668.6981,-668.497,-668.29584,-668.0947,-667.8936,-667.6925,-667.4914,-667.2903,-667.0892,-666.88806,-666.68695,-666.48584,-666.2847,-666.0836,-665.8825,-665.6814,-665.4803,-665.2792,-665.07806,-664.87695,-664.67584,-664.47473,-664.2736,-664.0725,-663.8714,-663.6703,-663.4692,-663.26807,-663.06696,-662.86584,-662.66473,-662.4636,-662.2625,-662.0614,-661.8603,-661.6592,-661.45807,-661.25696,-661.05585,-660.85474,-660.6536,-660.4525,-660.2514,-660.0503,-659.8492,-659.6481,-659.4469,-659.2458,-659.0447,-658.84357,-658.64246,-658.44135,-658.24023,-658.0391,-657.838,-657.6369,-657.4358,-657.2347,-657.03357,-656.83246,-656.63135,-656.43024,-656.2291,-656.028,-655.8269,-655.6258,-655.4247,-655.2236,-655.02246,-654.82135,-654.62024,-654.4191,-654.218,-654.0169,-653.8158,-653.6147,-653.4136,-653.21246,-653.01135,-652.81024,-652.60913,-652.408,-652.2069,-652.0058,-651.8047,-651.6036,-651.40247,-651.20135,-651.00024,-650.79913,-650.598,-650.39685,-650.19574,-649.9946,-649.7935,-649.5924,-649.3913,-649.1902,-648.9891,-648.78796,-648.58685,-648.38574,-648.18463,-647.9835,-647.7824,-647.5813,-647.3802,-647.1791,-646.97797,-646.77686,-646.57574,-646.37463,-646.1735,-645.9724,-645.7713,-645.5702,-645.3691,-645.16797,-644.96686,-644.76575,-644.56464,-644.3635,-644.1624,-643.9613,-643.7602,-643.5591,-643.358,-643.15686,-642.95575,-642.75464,-642.5535,-642.3524,-642.1513,-641.9502,-641.7491,-641.548,-641.3468,-641.1457,-640.9446,-640.74347,-640.54236,-640.34125,-640.14014,-639.939,-639.7379,-639.5368,-639.3357,-639.1346,-638.9335,-638.73236,-638.53125,-638.33014,-638.129,-637.9279,-637.7268,-637.5257,-637.3246,-637.1235,-636.92236,-636.72125,-636.52014,-636.31903,-636.1179,-635.9168,-635.7157,-635.5146,-635.3135,-635.11237,-634.91125,-634.71014,-634.50903,-634.3079,-634.1068,-633.9057,-633.7046,-633.5035,-633.30237,-633.10126,-632.90015,-632.69904,-632.49786,-632.29675,-632.09564,-631.89453,-631.6934,-631.4923,-631.2912,-631.0901,-630.889,-630.68787,-630.48676,-630.28564,-630.08453,-629.8834,-629.6823,-629.4812,-629.2801,-629.079,-628.87787,-628.67676,-628.47565,-628.27454,-628.0734,-627.8723,-627.6712,-627.4701,-627.269,-627.0679,-626.86676,-626.66565,-626.46454,-626.2634,-626.0623,-625.8612,-625.6601,-625.459,-625.2579,-625.05676,-624.85565,-624.65454,-624.4534,-624.2523,-624.0512,-623.8501,-623.649,-623.4478,-623.2467,-623.0456,-622.8445,-622.6434,-622.44226,-622.24115,-622.04004,-621.8389,-621.6378,-621.4367,-621.2356,-621.0345,-620.8334,-620.63226,-620.43115,-620.23004,-620.02893,-619.8278,-619.6267,-619.4256,-619.2245,-619.0234,-618.82227,-618.62115,-618.42004,-618.21893,-618.0178,-617.8167,-617.6156,-617.4145,-617.2134,-617.01227,-616.81116,-616.61005,-616.40894,-616.2078,-616.0067,-615.8056,-615.6045,-615.4034,-615.2023,-615.00116,-614.80005,-614.5989,-614.39777,-614.19666,-613.99554,-613.79443,-613.5933,-613.3922,-613.1911,-612.99,-612.7889,-612.58777,-612.38666,-612.18555,-611.98444,-611.7833,-611.5822,-611.3811,-611.18,-610.9789,-610.7778,-610.57666,-610.37555,-610.17444,-609.9733,-609.7722,-609.5711,-609.37,-609.1689,-608.9678,-608.76666,-608.56555,-608.36444,-608.1633,-607.9622,-607.7611,-607.56,-607.3589,-607.1578,-606.95667,-606.75555,-606.55444,-606.35333,-606.1522,-605.9511,-605.75,-605.5488,-605.3477,-605.1466,-604.9455,-604.7444,-604.5433,-604.34216,-604.14105,-603.93994,-603.73883,-603.5377,-603.3366,-603.1355,-602.9344,-602.7333,-602.53217,-602.33105,-602.12994,-601.92883,-601.7277,-601.5266,-601.3255,-601.1244,-600.9233,-600.72217,-600.52106,-600.31995,-600.11884,-599.9177,-599.7166,-599.5155,-599.3144,-599.1133,-598.9122,-598.71106,-598.50995,-598.30884,-598.1077,-597.9066,-597.7055,-597.5044,-597.3033,-597.1022,-596.90106,-596.69995,-596.4988,-596.29767,-596.09656,-595.89545,-595.69434,-595.4932,-595.2921,-595.091,-594.8899,-594.6888,-594.4877,-594.28656,-594.08545,-593.88434,-593.6832,-593.4821,-593.281,-593.0799,-592.8788,-592.6777,-592.47656,-592.27545,-592.07434,-591.8732,-591.6721,-591.471,-591.2699,-591.0688,-590.8677,-590.66656,-590.46545,-590.26434,-590.06323,-589.8621,-589.661,-589.4599,-589.2588,-589.0577,-588.85657,-588.65546,-588.45435,-588.25323,-588.0521,-587.851,-587.64984,-587.4487,-587.2476,-587.0465,-586.8454,-586.6443,-586.4432,-586.24207,-586.04095,-585.83984,-585.63873,-585.4376,-585.2365,-585.0354,-584.8343,-584.6332,-584.43207,-584.23096,-584.02985,-583.82874,-583.6276,-583.4265,-583.2254,-583.0243,-582.8232,-582.6221,-582.42096,-582.21985,-582.01874,-581.8176,-581.6165,-581.4154,-581.2143,-581.0132,-580.8121,-580.61096,-580.40985,-580.20874,-580.0076,-579.8065,-579.6054,-579.4043,-579.2032,-579.0021,-578.80096,-578.5998,-578.3987,-578.1976,-577.99646,-577.79535,-577.59424,-577.3931,-577.192,-576.9909,-576.7898,-576.5887,-576.3876,-576.18646,-575.98535,-575.78424,-575.5831,-575.382,-575.1809,-574.9798,-574.7787,-574.5776,-574.37646,-574.17535,-573.97424,-573.77313,-573.572,-573.3709,-573.1698,-572.9687,-572.7676,-572.56647,-572.36536,-572.16425,-571.96313,-571.762,-571.5609,-571.3598,-571.1587,-570.9576,-570.7565,-570.55536,-570.35425,-570.15314,-569.952,-569.75085,-569.54974,-569.34863,-569.1475,-568.9464,-568.7453,-568.5442,-568.3431,-568.14197,-567.94086,-567.73975,-567.53864,-567.3375,-567.1364,-566.9353,-566.7342,-566.5331,-566.332,-566.13086,-565.92975,-565.72864,-565.5275,-565.3264,-565.1253,-564.9242,-564.7231,-564.522,-564.32086,-564.11975,-563.91864,-563.7175,-563.5164,-563.3153,-563.1142,-562.9131,-562.712,-562.51086,-562.30975,-562.10864,-561.90753,-561.7064,-561.5053,-561.3042,-561.1031,-560.902,-560.7008,-560.4997,-560.2986,-560.0975,-559.89636,-559.69525,-559.49414,-559.293,-559.0919,-558.8908,-558.6897,-558.4886,-558.2875,-558.08636,-557.88525,-557.68414,-557.48303,-557.2819,-557.0808,-556.8797,-556.6786,-556.4775,-556.27637,-556.07526,-555.87415,-555.67303,-555.4719,-555.2708,-555.0697,-554.8686,-554.6675,-554.4664,-554.26526,-554.06415,-553.86304,-553.6619,-553.4608,-553.2597,-553.0586,-552.8575,-552.6564,-552.45526,-552.25415,-552.05304,-551.8519,-551.65076,-551.44965,-551.24854,-551.0474,-550.8463,-550.6452,-550.4441,-550.243,-550.0419,-549.84076,-549.63965,-549.43854,-549.2374,-549.0363,-548.8352,-548.6341,-548.433,-548.2319,-548.03076,-547.82965,-547.62854,-547.4274,-547.2263,-547.0252,-546.8241,-546.623,-546.4219,-546.22076,-546.01965,-545.81854,-545.61743,-545.4163,-545.2152,-545.0141,-544.813,-544.6119,-544.41077,-544.20966,-544.00854,-543.80743,-543.6063,-543.4052,-543.2041,-543.003,-542.8018,-542.6007,-542.3996,-542.1985,-541.9974,-541.79626,-541.59515,-541.39404,-541.19293,-540.9918,-540.7907,-540.5896,-540.3885,-540.1874,-539.98627,-539.78516,-539.58405,-539.38293,-539.1818,-538.9807,-538.7796,-538.5785,-538.3774,-538.1763,-537.97516,-537.77405,-537.57294,-537.3718,-537.1707,-536.9696,-536.7685,-536.5674,-536.3663,-536.16516,-535.96405,-535.76294,-535.5618,-535.3607,-535.1596,-534.9585,-534.7574,-534.5563,-534.35516,-534.15405,-533.95294,-533.7518,-533.55066,-533.34955,-533.14844,-532.9473,-532.7462,-532.5451,-532.344,-532.1429,-531.9418,-531.74066,-531.53955,-531.33844,-531.1373,-530.9362,-530.7351,-530.534,-530.3329,-530.1318,-529.93066,-529.72955,-529.52844,-529.32733,-529.1262,-528.9251,-528.724,-528.5229,-528.3218,-528.12067,-527.91956,-527.71844,-527.51733,-527.3162,-527.1151,-526.914,-526.7129,-526.5118,-526.31067,-526.10956,-525.90845,-525.70734,-525.5062,-525.3051,-525.104,-524.9029,-524.7017,-524.5006,-524.2995,-524.0984,-523.8973,-523.69617,-523.49506,-523.29395,-523.09283,-522.8917,-522.6906,-522.4895,-522.2884,-522.0873,-521.88617,-521.68506,-521.48395,-521.28284,-521.0817,-520.8806,-520.6795,-520.4784,-520.2773,-520.0762,-519.87506,-519.67395,-519.47284,-519.2717,-519.0706,-518.8695,-518.6684,-518.4673,-518.2662,-518.06506,-517.86395,-517.66284,-517.46173,-517.2606,-517.0595,-516.8584,-516.6573,-516.4562,-516.25507,-516.05396,-515.8528,-515.6517,-515.45056,-515.24945,-515.04834,-514.8472,-514.6461,-514.445,-514.2439,-514.0428,-513.8417,-513.64056,-513.43945,-513.23834,-513.03723,-512.8361,-512.635,-512.4339,-512.2328,-512.0317,-511.83057,-511.62946,-511.42834,-511.22723,-511.02612,-510.825,-510.6239,-510.4228,-510.22168,-510.02057,-509.81946,-509.61835,-509.41724,-509.21613,-509.01498,-508.81387,-508.61276,-508.41165,-508.21054,-508.00943,-507.80832,-507.6072,-507.4061,-507.205,-507.00388,-506.80276,-506.60165,-506.40054,-506.19943,-505.99832,-505.7972,-505.5961,-505.395,-505.19388,-504.99277,-504.79166,-504.5905,-504.3894,-504.1883,-503.98718,-503.78607,-503.58496,-503.38385,-503.18274,-502.98163,-502.78052,-502.5794,-502.3783,-502.1772,-501.97607,-501.77496,-501.57385,-501.37274,-501.17163,-500.97052,-500.7694,-500.5683,-500.3672,-500.16605,-499.96494,-499.76382,-499.5627,-499.3616,-499.1605,-498.95938,-498.75827,-498.55716,-498.35605,-498.15494,-497.95383,-497.75272,-497.5516,-497.3505,-497.14938,-496.94827,-496.74716,-496.54605,-496.34494,-496.14383,-495.94272,-495.7416,-495.54047,-495.33936,-495.13824,-494.93713,-494.73602,-494.5349,-494.3338,-494.1327,-493.93158,-493.73047,-493.52936,-493.32825,-493.12714,-492.92603,-492.7249,-492.5238,-492.3227,-492.12158,-491.92047,-491.71936,-491.51825,-491.31714,-491.116,-490.9149,-490.71378,-490.51266,-490.31155,-490.11044,-489.90933,-489.70822,-489.5071,-489.306,-489.1049,-488.90378,-488.70267,-488.50156,-488.30045,-488.09933,-487.89822,-487.6971,-487.496,-487.2949,-487.09378,-486.89267,-486.69153,-486.49042,-486.2893,-486.0882,-485.8871,-485.68597,-485.48486,-485.28375,-485.08264,-484.88153,-484.68042,-484.4793,-484.2782,-484.0771,-483.87598,-483.67487,-483.47375,-483.27264,-483.07153,-482.87042,-482.6693,-482.4682,-482.26706,-482.06595,-481.86484,-481.66373,-481.46262,-481.2615,-481.0604,-480.85928,-480.65817,-480.45706,-480.25595,-480.05484,-479.85373,-479.65262,-479.4515,-479.2504,-479.0493,-478.84818,-478.64706,-478.44595,-478.24484,-478.04373,-477.84262,-477.64148,-477.44037,-477.23926,-477.03815,-476.83704,-476.63593,-476.4348,-476.2337,-476.0326,-475.83148,-475.63037,-475.42926,-475.22815,-475.02704,-474.82593,-474.62482,-474.4237,-474.2226,-474.02148,-473.82037,-473.61926,-473.41815,-473.217,-473.0159,-472.8148,-472.61368,-472.41257,-472.21146,-472.01035,-471.80923,-471.60812,-471.407,-471.2059,-471.0048,-470.80368,-470.60257,-470.40146,-470.20035,-469.99924,-469.79813,-469.59702,-469.3959,-469.1948,-468.99368,-468.79254,-468.59143,-468.39032,-468.1892,-467.9881,-467.787,-467.58588,-467.38477,-467.18365,-466.98254,-466.78143,-466.58032,-466.3792,-466.1781,-465.977,-465.77588,-465.57477,-465.37366,-465.17255,-464.97144,-464.77032,-464.5692,-464.3681,-464.16696,-463.96585,-463.76474,-463.56363,-463.36252,-463.1614,-462.9603,-462.7592,-462.55807,-462.35696,-462.15585,-461.95474,-461.75363,-461.55252,-461.3514,-461.1503,-460.9492,-460.74808,-460.54697,-460.34586,-460.14474,-459.94363,-459.7425,-459.54138,-459.34027,-459.13916,-458.93805,-458.73694,-458.53583,-458.33472,-458.1336,-457.9325,-457.73138,-457.53027,-457.32916,-457.12805,-456.92694,-456.72583,-456.52472,-456.3236,-456.1225,-455.9214,-455.72028,-455.51917,-455.31802,-455.1169,-454.9158,-454.7147,-454.51358,-454.31247,-454.11136,-453.91025,-453.70914,-453.50803,-453.30692,-453.1058,-452.9047,-452.70358,-452.50247,-452.30136,-452.10025,-451.89914,-451.69803,-451.49692,-451.2958,-451.0947,-450.8936,-450.69244,-450.49133,-450.29022,-450.0891,-449.888,-449.6869,-449.48578,-449.28467,-449.08356,-448.88245,-448.68134,-448.48022,-448.2791,-448.078,-447.8769,-447.67578,-447.47467,-447.27356,-447.07245,-446.87134,-446.67023,-446.46912,-446.26797,-446.06686,-445.86575,-445.66464,-445.46353,-445.26242,-445.0613,-444.8602,-444.6591,-444.45798,-444.25687,-444.05576,-443.85464,-443.65353,-443.45242,-443.2513,-443.0502,-442.8491,-442.64798,-442.44687,-442.24576,-442.04465,-441.8435,-441.6424,-441.44128,-441.24017,-441.03906,-440.83795,-440.63684,-440.43573,-440.23462,-440.0335,-439.8324,-439.6313,-439.43018,-439.22906,-439.02795,-438.82684,-438.62573,-438.42462,-438.2235,-438.0224,-437.8213,-437.62018,-437.41907,-437.21793,-437.0168,-436.8157,-436.6146,-436.41348,-436.21237,-436.01126,-435.81015,-435.60904,-435.40793,-435.20682,-435.0057,-434.8046,-434.6035,-434.40237,-434.20126,-434.00015,-433.79904,-433.59793,-433.39682,-433.1957,-432.9946,-432.79346,-432.59235,-432.39124,-432.19012,-431.989,-431.7879,-431.5868,-431.38568,-431.18457,-430.98346,-430.78235,-430.58124,-430.38013,-430.17902,-429.9779,-429.7768,-429.57568,-429.37457,-429.17346,-428.97235,-428.77124,-428.57013,-428.369,-428.16788,-427.96677,-427.76566,-427.56454,-427.36343,-427.16232,-426.9612,-426.7601,-426.559,-426.35788,-426.15677,-425.95566,-425.75455,-425.55344,-425.35233,-425.1512,-424.9501,-424.749,-424.54788,-424.34677,-424.14566,-423.94452,-423.7434,-423.5423,-423.3412,-423.14008,-422.93896,-422.73785,-422.53674,-422.33563,-422.13452,-421.9334,-421.7323,-421.5312,-421.33008,-421.12897,-420.92786,-420.72675,-420.52563,-420.32452,-420.1234,-419.9223,-419.7212,-419.52008,-419.31894,-419.11783,-418.91672,-418.7156,-418.5145,-418.3134,-418.11227,-417.91116,-417.71005,-417.50894,-417.30783,-417.10672,-416.9056,-416.7045,-416.5034,-416.30228,-416.10117,-415.90005,-415.69894,-415.49783,-415.29672,-415.0956,-414.89447,-414.69336,-414.49225,-414.29114,-414.09003,-413.88892,-413.6878,-413.4867,-413.28558,-413.08447,-412.88336,-412.68225,-412.48114,-412.28003,-412.07892,-411.8778,-411.6767,-411.4756,-411.27448,-411.07336,-410.87225,-410.67114,-410.47,-410.2689,-410.06778,-409.86667,-409.66556,-409.46445,-409.26334,-409.06223,-408.8611,-408.66,-408.4589,-408.25778,-408.05667,-407.85556,-407.65445,-407.45334,-407.25223,-407.05112,-406.85,-406.6489,-406.44778,-406.24667,-406.04556,-405.84442,-405.6433,-405.4422,-405.2411,-405.03998,-404.83887,-404.63776,-404.43665,-404.23553,-404.03442,-403.8333,-403.6322,-403.4311,-403.22998,-403.02887,-402.82776,-402.62665,-402.42554,-402.22443,-402.02332,-401.8222,-401.6211,-401.41995,-401.21884,-401.01773,-400.81662,-400.6155,-400.4144,-400.2133,-400.01218,-399.81107,-399.60995,-399.40884,-399.20773,-399.00662,-398.8055,-398.6044,-398.4033,-398.20218,-398.00107,-397.79996,-397.59885,-397.39774,-397.19662,-396.99548,-396.79437,-396.59326,-396.39215,-396.19104,-395.98993,-395.78882,-395.5877,-395.3866,-395.1855,-394.98438,-394.78326,-394.58215,-394.38104,-394.17993,-393.97882,-393.7777,-393.5766,-393.3755,-393.17438,-392.97327,-392.77216,-392.57104,-392.3699,-392.1688,-391.96768,-391.76657,-391.56546,-391.36435,-391.16324,-390.96213,-390.76102,-390.5599,-390.3588,-390.15768,-389.95657,-389.75546,-389.55435,-389.35324,-389.15213,-388.95102,-388.7499,-388.5488,-388.3477,-388.14658,-387.94543,-387.74432,-387.5432,-387.3421,-387.141,-386.93988,-386.73877,-386.53766,-386.33655,-386.13544,-385.93433,-385.73322,-385.5321,-385.331,-385.12988,-384.92877,-384.72766,-384.52655,-384.32544,-384.12433,-383.92322,-383.7221,-383.52097,-383.31985,-383.11874,-382.91763,-382.71652,-382.5154,-382.3143,-382.1132,-381.91208,-381.71097,-381.50986,-381.30875,-381.10764,-380.90652,-380.7054,-380.5043,-380.3032,-380.10208,-379.90097,-379.69986,-379.49875,-379.29764,-379.09653,-378.8954,-378.69427,-378.49316,-378.29205,-378.09094,-377.88983,-377.68872,-377.4876,-377.2865,-377.0854,-376.88428,-376.68317,-376.48206,-376.28094,-376.07983,-375.87872,-375.6776,-375.4765,-375.2754,-375.07428,-374.87317,-374.67206,-374.47092,-374.2698,-374.0687,-373.86758,-373.66647,-373.46536,-373.26425,-373.06314,-372.86203,-372.66092,-372.4598,-372.2587,-372.0576,-371.85648,-371.65536,-371.45425,-371.25314,-371.05203,-370.85092,-370.6498,-370.4487,-370.2476,-370.04645,-369.84534,-369.64423,-369.4431,-369.242,-369.0409,-368.83978,-368.63867,-368.43756,-368.23645,-368.03534,-367.83423,-367.63312,-367.432,-367.2309,-367.0298,-366.82867,-366.62756,-366.42645,-366.22534,-366.02423,-365.82312,-365.62198,-365.42087,-365.21976,-365.01865,-364.81754,-364.61642,-364.4153,-364.2142,-364.0131,-363.81198,-363.61087,-363.40976,-363.20865,-363.00754,-362.80643,-362.60532,-362.4042,-362.2031,-362.00198,-361.80087,-361.59976,-361.39865,-361.19754,-360.9964,-360.7953,-360.59418,-360.39307,-360.19196,-359.99084,-359.78973,-359.58862,-359.3875,-359.1864,-358.9853,-358.78418,-358.58307,-358.38196,-358.18085,-357.97974,-357.77863,-357.5775,-357.3764,-357.1753,-356.97418,-356.77307,-356.57193,-356.37082,-356.1697,-355.9686,-355.7675,-355.56638,-355.36526,-355.16415,-354.96304,-354.76193,-354.56082,-354.3597,-354.1586,-353.9575,-353.75638,-353.55527,-353.35416,-353.15305,-352.95193,-352.75082,-352.5497,-352.3486,-352.14746,-351.94635,-351.74524,-351.54413,-351.34302,-351.1419,-350.9408,-350.7397,-350.53857,-350.33746,-350.13635,-349.93524,-349.73413,-349.53302,-349.3319,-349.1308,-348.9297,-348.72858,-348.52747,-348.32635,-348.12524,-347.92413,-347.72302,-347.52188,-347.32077,-347.11966,-346.91855,-346.71744,-346.51633,-346.31522,-346.1141,-345.913,-345.71188,-345.51077,-345.30966,-345.10855,-344.90744,-344.70633,-344.50522,-344.3041,-344.103,-343.9019,-343.70078,-343.49966,-343.29855,-343.0974,-342.8963,-342.6952,-342.49408,-342.29297,-342.09186,-341.89075,-341.68964,-341.48853,-341.2874,-341.0863,-340.8852,-340.68408,-340.48297,-340.28186,-340.08075,-339.87964,-339.67853,-339.47742,-339.2763,-339.0752,-338.87408,-338.67294,-338.47183,-338.27072,-338.0696,-337.8685,-337.6674,-337.46628,-337.26517,-337.06406,-336.86295,-336.66183,-336.46072,-336.2596,-336.0585,-335.8574,-335.65628,-335.45517,-335.25406,-335.05295,-334.85184,-334.65073,-334.44962,-334.2485,-334.04736,-333.84625,-333.64514,-333.44403,-333.24292,-333.0418,-332.8407,-332.6396,-332.43848,-332.23737,-332.03625,-331.83514,-331.63403,-331.43292,-331.2318,-331.0307,-330.8296,-330.62848,-330.42737,-330.22626,-330.02515,-329.82404,-329.6229,-329.42178,-329.22067,-329.01956,-328.81845,-328.61734,-328.41623,-328.21512,-328.014,-327.8129,-327.6118,-327.41068,-327.20956,-327.00845,-326.80734,-326.60623,-326.40512,-326.204,-326.0029,-325.8018,-325.60068,-325.39957,-325.19843,-324.9973,-324.7962,-324.5951,-324.39398,-324.19287,-323.99176,-323.79065,-323.58954,-323.38843,-323.18732,-322.9862,-322.7851,-322.58398,-322.38287,-322.18176,-321.98065,-321.77954,-321.57843,-321.37732,-321.1762,-320.9751,-320.774,-320.57285,-320.37173,-320.17062,-319.9695,-319.7684,-319.5673,-319.36618,-319.16507,-318.96396,-318.76285,-318.56174,-318.36063,-318.15952,-317.9584,-317.7573,-317.55618,-317.35507,-317.15396,-316.95285,-316.75174,-316.55063,-316.34952,-316.14838,-315.94727,-315.74615,-315.54504,-315.34393,-315.14282,-314.9417,-314.7406,-314.5395,-314.33838,-314.13727,-313.93616,-313.73505,-313.53394,-313.33282,-313.1317,-312.9306,-312.7295,-312.52838,-312.32727,-312.12616,-311.92505,-311.7239,-311.5228,-311.3217,-311.12057,-310.91946,-310.71835,-310.51724,-310.31613,-310.11502,-309.9139,-309.7128,-309.5117,-309.31058,-309.10947,-308.90836,-308.70724,-308.50613,-308.30502,-308.1039,-307.9028,-307.7017,-307.50058,-307.29944,-307.09833,-306.89722,-306.6961,-306.495,-306.29388,-306.09277,-305.89166,-305.69055,-305.48944,-305.28833,-305.08722,-304.8861,-304.685,-304.4839,-304.28278,-304.08167,-303.88055,-303.67944,-303.47833,-303.27722,-303.0761,-302.875,-302.67386,-302.47275,-302.27164,-302.07053,-301.86942,-301.6683,-301.4672,-301.26608,-301.06497,-300.86386,-300.66275,-300.46164,-300.26053,-300.05942,-299.8583,-299.6572,-299.4561,-299.25497,-299.05386,-298.85275,-298.65164,-298.45053,-298.2494,-298.04828,-297.84717,-297.64606,-297.44495,-297.24384,-297.04272,-296.8416,-296.6405,-296.4394,-296.23828,-296.03717,-295.83606,-295.63495,-295.43384,-295.23273,-295.03162,-294.8305,-294.6294,-294.42828,-294.22717,-294.02606,-293.82492,-293.6238,-293.4227,-293.2216,-293.02048,-292.81937,-292.61826,-292.41714,-292.21603,-292.01492,-291.8138,-291.6127,-291.4116,-291.21048,-291.00937,-290.80826,-290.60715,-290.40604,-290.20493,-290.0038,-289.8027,-289.6016,-289.40048,-289.19934,-288.99823,-288.79712,-288.596,-288.3949,-288.1938,-287.99268,-287.79156,-287.59045,-287.38934,-287.18823,-286.98712,-286.786,-286.5849,-286.3838,-286.18268,-285.98157,-285.78046,-285.57935,-285.37823,-285.17712,-284.976,-284.77487,-284.57376,-284.37265,-284.17154,-283.97043,-283.76932,-283.5682,-283.3671,-283.166,-282.96487,-282.76376,-282.56265,-282.36154,-282.16043,-281.95932,-281.7582,-281.5571,-281.356,-281.15488,-280.95377,-280.75266,-280.55154,-280.3504,-280.1493,-279.94818,-279.74707,-279.54596,-279.34485,-279.14374,-278.94263,-278.74152,-278.5404,-278.3393,-278.13818,-277.93707,-277.73596,-277.53485,-277.33374,-277.13263,-276.93152,-276.7304,-276.5293,-276.3282,-276.12708,-275.92596,-275.72482,-275.5237,-275.3226,-275.1215,-274.92038,-274.71927,-274.51816,-274.31705,-274.11594,-273.91483,-273.7137,-273.5126,-273.3115,-273.11038,-272.90927,-272.70816,-272.50705,-272.30594,-272.10483,-271.90372,-271.7026,-271.5015,-271.30035,-271.09924,-270.89813,-270.69702,-270.4959,-270.2948,-270.0937,-269.89258,-269.69147,-269.49036,-269.28925,-269.08813,-268.88702,-268.6859,-268.4848,-268.2837,-268.08258,-267.88147,-267.68036,-267.47925,-267.27814,-267.07703,-266.8759,-266.67477,-266.47366,-266.27255,-266.07144,-265.87033,-265.66922,-265.4681,-265.267,-265.0659,-264.86478,-264.66367,-264.46255,-264.26144,-264.06033,-263.85922,-263.6581,-263.457,-263.2559,-263.05478,-262.85367,-262.65256,-262.45145,-262.2503,-262.0492,-261.84808,-261.64697,-261.44586,-261.24475,-261.04364,-260.84253,-260.64142,-260.4403,-260.2392,-260.0381,-259.83698,-259.63586,-259.43475,-259.23364,-259.03253,-258.83142,-258.6303,-258.4292,-258.2281,-258.02698,-257.82584,-257.62473,-257.4236,-257.2225,-257.0214,-256.82028,-256.61917,-256.41806,-256.21695,-256.01584,-255.81473,-255.61362,-255.4125,-255.2114,-255.01028,-254.80917,-254.60806,-254.40694,-254.20583,-254.00471,-253.8036,-253.6025,-253.40138,-253.20027,-252.99916,-252.79805,-252.59694,-252.39583,-252.1947,-251.99359,-251.79248,-251.59137,-251.39026,-251.18915,-250.98804,-250.78693,-250.58582,-250.3847,-250.1836,-249.98247,-249.78136,-249.58025,-249.37914,-249.17802,-248.97691,-248.7758,-248.57469,-248.37358,-248.17247,-247.97136,-247.77023,-247.56912,-247.36801,-247.1669,-246.96579,-246.76468,-246.56357,-246.36246,-246.16135,-245.96024,-245.75912,-245.558,-245.35689,-245.15578,-244.95467,-244.75356,-244.55244,-244.35133,-244.15022,-243.94911,-243.748,-243.54689,-243.34576,-243.14465,-242.94354,-242.74243,-242.54132,-242.34021,-242.1391,-241.93799,-241.73688,-241.53577,-241.33466,-241.13353,-240.93242,-240.73131,-240.5302,-240.32909,-240.12798,-239.92686,-239.72575,-239.52464,-239.32353,-239.12242,-238.92131,-238.72018,-238.51907,-238.31796,-238.11685,-237.91574,-237.71463,-237.51352,-237.31241,-237.1113,-236.91019,-236.70908,-236.50795,-236.30684,-236.10573,-235.90462,-235.7035,-235.5024,-235.30128,-235.10017,-234.89906,-234.69795,-234.49684,-234.29572,-234.0946,-233.8935,-233.69238,-233.49127,-233.29016,-233.08905,-232.88794,-232.68683,-232.48572,-232.2846,-232.08348,-231.88237,-231.68126,-231.48015,-231.27904,-231.07793,-230.87682,-230.6757,-230.4746,-230.27348,-230.07237,-229.87125,-229.67014,-229.46902,-229.26791,-229.0668,-228.86569,-228.66458,-228.46347,-228.26236,-228.06125,-227.86014,-227.65901,-227.4579,-227.25679,-227.05568,-226.85457,-226.65346,-226.45235,-226.25124,-226.05013,-225.84901,-225.6479,-225.4468,-225.24567,-225.04456,-224.84344,-224.64233,-224.44122,-224.24011,-224.039,-223.83789,-223.63678,-223.43567,-223.23456,-223.03343,-222.83232,-222.63121,-222.4301,-222.22899,-222.02788,-221.82677,-221.62566,-221.42455,-221.22343,-221.02232,-220.8212,-220.62009,-220.41898,-220.21786,-220.01675,-219.81564,-219.61453,-219.41342,-219.21231,-219.0112,-218.81009,-218.60896,-218.40785,-218.20674,-218.00563,-217.80452,-217.60341,-217.4023,-217.20119,-217.00008,-216.79897,-216.59785,-216.39673,-216.19562,-215.9945,-215.7934,-215.59229,-215.39117,-215.19006,-214.98895,-214.78784,-214.58673,-214.38562,-214.1845,-213.98338,-213.78227,-213.58116,-213.38005,-213.17894,-212.97783,-212.77672,-212.5756,-212.3745,-212.17339,-211.97226,-211.77115,-211.57004,-211.36893,-211.16782,-210.9667,-210.7656,-210.56448,-210.36337,-210.16226,-209.96115,-209.76004,-209.55891,-209.3578,-209.1567,-208.95558,-208.75447,-208.55336,-208.35225,-208.15114,-207.95003,-207.74892,-207.5478,-207.34668,-207.14557,-206.94446,-206.74335,-206.54224,-206.34113,-206.14001,-205.9389,-205.7378,-205.53668,-205.33557,-205.13445,-204.93333,-204.73222,-204.53111,-204.33,-204.12889,-203.92778,-203.72667,-203.52556,-203.32445,-203.12334,-202.92221,-202.7211,-202.51999,-202.31888,-202.11777,-201.91666,-201.71555,-201.51443,-201.31332,-201.11221,-200.9111,-200.70998,-200.50887,-200.30775,-200.10664,-199.90553,-199.70442,-199.50331,-199.3022,-199.10109,-198.89998,-198.69887,-198.49774,-198.29663,-198.09552,-197.89441,-197.6933,-197.49219,-197.29108,-197.08997,-196.88885,-196.68774,-196.48663,-196.28552,-196.0844,-195.88329,-195.68217,-195.48106,-195.27995,-195.07884,-194.87773,-194.67662,-194.47551,-194.2744,-194.07329,-193.87216,-193.67105,-193.46994,-193.26883,-193.06772,-192.86661,-192.6655,-192.46439,-192.26328,-192.06216,-191.86105,-191.65993,-191.45882,-191.2577,-191.0566,-190.85548,-190.65437,-190.45326,-190.25215,-190.05104,-189.84993,-189.64882,-189.4477,-189.24658,-189.04547,-188.84436,-188.64325,-188.44214,-188.24103,-188.03992,-187.8388,-187.6377,-187.43658,-187.23546,-187.03435,-186.83324,-186.63213,-186.43102,-186.2299,-186.0288,-185.82768,-185.62657,-185.42546,-185.22435,-185.02322,-184.82211,-184.621,-184.41989,-184.21878,-184.01767,-183.81656,-183.61545,-183.41434,-183.21323,-183.01212,-182.81099,-182.60988,-182.40877,-182.20766,-182.00655,-181.80544,-181.60432,-181.40321,-181.2021,-181.00099,-180.79988,-180.59877,-180.39764,-180.19653,-179.99542,-179.79431,-179.5932,-179.39209,-179.19098,-178.98987,-178.78876,-178.58765,-178.38654,-178.18541,-177.9843,-177.78319,-177.58208,-177.38097,-177.17986,-176.97874,-176.77763,-176.57652,-176.37541,-176.1743,-175.97318,-175.77206,-175.57095,-175.36984,-175.16873,-174.96762,-174.76651,-174.5654,-174.36429,-174.16318,-173.96207,-173.76094,-173.55983,-173.35872,-173.15761,-172.9565,-172.75539,-172.55428,-172.35316,-172.15205,-171.95094,-171.74983,-171.5487,-171.3476,-171.14648,-170.94537,-170.74426,-170.54315,-170.34204,-170.14093,-169.93982,-169.73871,-169.5376,-169.33647,-169.13536,-168.93425,-168.73314,-168.53203,-168.33092,-168.1298,-167.9287,-167.72758,-167.52647,-167.32536,-167.12425,-166.92313,-166.72202,-166.5209,-166.3198,-166.11868,-165.91757,-165.71646,-165.51535,-165.31424,-165.11313,-164.91202,-164.71089,-164.50978,-164.30867,-164.10756,-163.90645,-163.70534,-163.50423,-163.30312,-163.102,-162.9009,-162.69978,-162.49866,-162.29755,-162.09644,-161.89532,-161.69421,-161.4931,-161.29199,-161.09088,-160.88977,-160.68866,-160.48755,-160.28642,-160.08531,-159.8842,-159.68309,-159.48198,-159.28087,-159.07976,-158.87865,-158.67754,-158.47643,-158.27531,-158.07419,-157.87308,-157.67197,-157.47086,-157.26974,-157.06863,-156.86752,-156.66641,-156.4653,-156.26419,-156.06308,-155.86195,-155.66084,-155.45973,-155.25862,-155.05751,-154.8564,-154.65529,-154.45418,-154.25307,-154.05196,-153.85085,-153.64972,-153.44861,-153.2475,-153.04639,-152.84528,-152.64417,-152.44305,-152.24194,-152.04083,-151.83972,-151.63861,-151.4375,-151.23637,-151.03526,-150.83415,-150.63304,-150.43193,-150.23082,-150.02971,-149.8286,-149.62749,-149.42638,-149.22527,-149.02414,-148.82303,-148.62192,-148.4208,-148.2197,-148.01859,-147.81747,-147.61636,-147.41525,-147.21414,-147.01303,-146.8119,-146.6108,-146.40968,-146.20857,-146.00746,-145.80635,-145.60524,-145.40413,-145.20302,-145.0019,-144.8008,-144.59967,-144.39856,-144.19745,-143.99634,-143.79523,-143.59412,-143.393,-143.1919,-142.99078,-142.78967,-142.58856,-142.38744,-142.18633,-141.98521,-141.7841,-141.583,-141.38188,-141.18077,-140.97966,-140.77855,-140.57744,-140.37633,-140.1752,-139.97409,-139.77298,-139.57187,-139.37076,-139.16965,-138.96854,-138.76743,-138.56631,-138.3652,-138.1641,-137.96298,-137.76186,-137.56075,-137.35963,-137.15852,-136.95741,-136.7563,-136.55519,-136.35408,-136.15297,-135.95186,-135.75075,-135.54962,-135.34851,-135.1474,-134.94629,-134.74518,-134.54407,-134.34296,-134.14185,-133.94073,-133.73962,-133.53851,-133.33739,-133.13628,-132.93517,-132.73405,-132.53294,-132.33183,-132.13072,-131.92961,-131.7285,-131.52739,-131.32628,-131.12515,-130.92404,-130.72293,-130.52182,-130.32071,-130.1196,-129.91849,-129.71738,-129.51627,-129.31516,-129.11404,-128.91292,-128.7118,-128.5107,-128.30959,-128.10847,-127.907364,-127.70625,-127.50514,-127.30403,-127.10291,-126.9018,-126.70069,-126.49958,-126.29847,-126.09735,-125.89624,-125.69513,-125.49402,-125.29291,-125.0918,-124.89068,-124.68957,-124.48846,-124.287346,-124.086235,-123.88512,-123.684006,-123.482895,-123.281784,-123.08067,-122.87956,-122.678444,-122.47733,-122.27622,-122.07511,-121.874,-121.67288,-121.47177,-121.27066,-121.06955,-120.86844,-120.66733,-120.46621,-120.2651,-120.06399,-119.86288,-119.661766,-119.460655,-119.25954,-119.058426,-118.857315,-118.656204,-118.45509,-118.253975,-118.052864,-117.85175,-117.65064,-117.44953,-117.24842,-117.0473,-116.84619,-116.64508,-116.44397,-116.24286,-116.04174,-115.84063,-115.63952,-115.43841,-115.2373,-115.03619,-114.83507,-114.63396,-114.432846,-114.231735,-114.030624,-113.829506,-113.628395,-113.427284,-113.22617,-113.02506,-112.82395,-112.62283,-112.42172,-112.22061,-112.0195,-111.81839,-111.61728,-111.41616,-111.21505,-111.01394,-110.81283,-110.61172,-110.4106,-110.20949,-110.00838,-109.80727,-109.606155,-109.405045,-109.203926,-109.002815,-108.801704,-108.60059,-108.39948,-108.198364,-107.99725,-107.79614,-107.59503,-107.39392,-107.19281,-106.99169,-106.79058,-106.58947,-106.38836,-106.18725,-105.98613,-105.78502,-105.58391,-105.3828,-105.18169,-104.980576,-104.77946,-104.57835,-104.377235,-104.176125,-103.97501,-103.7739,-103.572784,-103.37167,-103.17056,-102.96945,-102.76834,-102.56722,-102.36611,-102.165,-101.96389,-101.76278,-101.56167,-101.36055,-101.15944,-100.95833,-100.75722,-100.55611,-100.35499,-100.15388,-99.95277,-99.751656,-99.550545,-99.349434,-99.148315,-98.947205,-98.74609,-98.54498,-98.34387,-98.14276,-97.94164,-97.74053,-97.53942,-97.33831,-97.1372,-96.93608,-96.73497,-96.53386,-96.33275,-96.13164,-95.93053,-95.72941,-95.5283,-95.32719,-95.126076,-94.924965,-94.72385,-94.522736,-94.321625,-94.120514,-93.9194,-93.71829,-93.51717,-93.31606,-93.11495,-92.91384,-92.71273,-92.51161,-92.3105,-92.10939,-91.90828,-91.70717,-91.50606,-91.30494,-91.10383,-90.90272,-90.70161,-90.500496,-90.299385,-90.09827,-89.897156,-89.696045,-89.494934,-89.29382,-89.092705,-88.891594,-88.69048,-88.48937,-88.28826,-88.08715,-87.88603,-87.68492,-87.48381,-87.2827,-87.08159,-86.88047,-86.67936,-86.47825,-86.27714,-86.07603,-85.874916,-85.6738,-85.47269,-85.271576,-85.070465,-84.869354,-84.668236,-84.467125,-84.266014,-84.0649,-83.86379,-83.66268,-83.46156,-83.26045,-83.05934,-82.85823,-82.65712,-82.45601,-82.25489,-82.05378,-81.85267,-81.65156,-81.45045,-81.24933,-81.04822,-80.84711,-80.645996,-80.444885,-80.243774,-80.042656,-79.841545,-79.640434,-79.43932,-79.23821,-79.037094,-78.83598,-78.63487,-78.43376,-78.23265,-78.03154,-77.83042,-77.62931,-77.4282,-77.22709,-77.02598,-76.82486,-76.62375,-76.42264,-76.22153,-76.02042,-75.819305,-75.61819,-75.417076,-75.215965,-75.014854,-74.81374,-74.61263,-74.411514,-74.2104,-74.00929,-73.80818,-73.60707,-73.40595,-73.20484,-73.00373,-72.80262,-72.60151,-72.4004,-72.19928,-71.99817,-71.79706,-71.59595,-71.39484,-71.19372,-70.99261,-70.7915,-70.590385,-70.389275,-70.18816,-69.987045,-69.785934,-69.58482,-69.38371,-69.1826,-68.98149,-68.78037,-68.57926,-68.37815,-68.17704,-67.97593,-67.77481,-67.5737,-67.37259,-67.17148,-66.97037,-66.76926,-66.56814,-66.36703,-66.16592,-65.964806,-65.763695,-65.56258,-65.361465,-65.160355,-64.95924,-64.75813,-64.55702,-64.3559,-64.15479,-63.953682,-63.75257,-63.551456,-63.350346,-63.149235,-62.94812,-62.74701,-62.5459,-62.344784,-62.143673,-61.94256,-61.741447,-61.540337,-61.339222,-61.13811,-60.937,-60.735886,-60.534775,-60.333664,-60.13255,-59.93144,-59.730328,-59.529213,-59.328102,-59.126987,-58.925877,-58.724766,-58.52365,-58.32254,-58.12143,-57.920315,-57.719204,-57.518093,-57.31698,-57.115868,-56.914753,-56.713642,-56.51253,-56.311417,-56.110306,-55.909195,-55.70808,-55.50697,-55.30586,-55.104744,-54.903633,-54.702522,-54.501408,-54.300297,-54.099182,-53.89807,-53.69696,-53.495846,-53.294735,-53.093624,-52.89251,-52.6914,-52.490288,-52.289173,-52.088062,-51.88695,-51.685837,-51.484726,-51.28361,-51.0825,-50.88139,-50.680275,-50.479164,-50.278053,-50.07694,-49.875828,-49.674717,-49.473602,-49.27249,-49.07138,-48.870266,-48.669155,-48.46804,-48.26693,-48.06582,-47.864704,-47.663593,-47.462482,-47.261368,-47.060257,-46.859146,-46.65803,-46.45692,-46.255806,-46.054695,-45.853584,-45.65247,-45.45136,-45.250248,-45.049133,-44.848022,-44.64691,-44.445797,-44.244686,-44.043575,-43.84246,-43.64135,-43.440235,-43.239124,-43.038013,-42.8369,-42.635788,-42.434677,-42.233562,-42.03245,-41.83134,-41.630226,-41.429115,-41.228004,-41.02689,-40.82578,-40.624664,-40.423553,-40.222443,-40.021328,-39.820217,-39.619106,-39.41799,-39.21688,-39.01577,-38.814655,-38.613544,-38.41243,-38.21132,-38.01021,-37.809093,-37.607983,-37.40687,-37.205757,-37.004646,-36.803535,-36.60242,-36.40131,-36.2002,-35.999084,-35.797974,-35.59686,-35.39575,-35.194637,-34.993523,-34.79241,-34.5913,-34.390186,-34.189075,-33.987965,-33.78685,-33.58574,-33.38463,-33.183514,-32.982403,-32.78129,-32.580177,-32.379066,-32.17795,-31.976841,-31.775728,-31.574617,-31.373505,-31.172392,-30.97128,-30.770168,-30.569056,-30.367943,-30.166832,-29.96572,-29.764606,-29.563494,-29.362383,-29.16127,-28.960157,-28.759047,-28.557934,-28.356821,-28.155708,-27.954597,-27.753485,-27.552372,-27.351261,-27.150148,-26.949036,-26.747923,-26.546812,-26.3457,-26.144587,-25.943476,-25.742363,-25.54125,-25.340137,-25.139027,-24.937914,-24.736801,-24.53569,-24.334578,-24.133465,-23.932352,-23.731241,-23.530128,-23.329016,-23.127903,-22.926792,-22.72568,-22.524567,-22.323456,-22.122343,-21.92123,-21.720118,-21.519007,-21.317894,-21.116781,-20.91567,-20.714558,-20.513445,-20.312332,-20.111221,-19.910109,-19.708996,-19.507885,-19.306772,-19.10566,-18.904547,-18.703436,-18.502323,-18.30121,-18.1001,-17.898987,-17.697874,-17.496761,-17.29565,-17.094538,-16.893425,-16.692314,-16.491201,-16.290089,-16.088976,-15.887864,-15.686752,-15.48564,-15.284528,-15.083416,-14.882303,-14.681191,-14.480079,-14.278967,-14.077854,-13.876742,-13.675631,-13.474518,-13.273406,-13.072293,-12.8711815,-12.670069,-12.468957,-12.267845,-12.066732,-11.865621,-11.664508,-11.463396,-11.262283,-11.061172,-10.860059,-10.658947,-10.457835,-10.256722,-10.055611,-9.854498,-9.653386,-9.452273,-9.251162,-9.05005,-8.848937,-8.647825,-8.4467125,-8.245601,-8.044488,-7.843376,-7.642264,-7.4411516,-7.2400393,-7.038927,-6.8378153,-6.636703,-6.4355907,-6.2344785,-6.033366,-5.832254,-5.6311417,-5.4300294,-5.2289176,-5.0278053,-4.826693,-4.625581,-4.4244685,-4.2233562,-4.022244,-3.821132,-3.6200197,-3.4189076,-3.2177954,-3.016683,-2.8155708,-2.6144588,-2.4133465,-2.2122343,-2.011122,-1.8100098,-1.6088977,-1.4077854,-1.2066733,-1.005561,-0.80444884,-0.60333663,-0.40222442,-0.20111221,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..a19dbf047442 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[1.0,0.8002407550811768,0.6085337996482849,0.4326068162918091,0.27955150604248047,0.1555374264717102,0.06556355953216553,0.01325690746307373,0.0007257461547851562,0.028475403785705566,0.09538710117340088,0.19876378774642944,0.3344383239746094,0.4969416856765747,0.6797230541706085,0.8754150122404099,1.076128989458084,1.2737742066383362,1.4603833854198456,1.6284347176551819,1.7711536884307861,1.8827876448631287,1.9588364362716675,1.9962345361709595,1.9934744238853455,1.9506673216819763,1.8695387840270996,1.7533594965934753,1.606812059879303,1.435804009437561,1.2472286820411682,1.0486875772476196,0.8481838703155518,0.6537998914718628,0.4733712077140808,0.31417131423950195,0.18261677026748657,0.08401089906692505,0.022328615188598633,5.626678466796875e-5,0.01809149980545044,0.07570767402648926,0.17058175802230835,0.2988901734352112,0.45545971393585205,0.6339804232120514,0.8272545039653778,1.027491943910718,1.2266221046447754,1.4166162312030792,1.5898174047470093,1.7392422556877136,1.8588688969612122,1.9438740611076355,1.9908317923545837,1.9978492856025696,1.9646434783935547,1.892552673816681,1.7844834327697754,1.6447911262512207,1.4791080057621002,1.29411119222641,1.097259670495987,0.8964876234531403,0.699887216091156,0.5153852701187134,0.3504173159599304,0.21163475513458252,0.10463064908981323,0.03371924161911011,0.0017585158348083496,0.010036766529083252,0.05822038650512695,0.14436739683151245,0.2650045156478882,0.4152699112892151,0.5891050398349762,0.7795032858848572,0.9787906426936388,1.1789320260286331,1.371860682964325,1.5498005151748657,1.7055777311325073,1.8329130411148071,1.9266726970672607,1.9830790758132935,1.9998573660850525,1.9763315916061401,1.9134496450424194,1.8137463927268982,1.6812408566474915,1.52127605676651,1.3402970433235168,1.145600602030754,0.9450368955731392,0.7466868758201599,0.5585479438304901,0.38820403814315796,0.24252301454544067,0.12737447023391724,0.04740166664123535,0.005828499794006348,0.004329979419708252,0.042967140674591064,0.12018245458602905,0.2328621745109558,0.3764662742614746,0.545205146074295,0.7322750389575958,0.9301386922597885,1.1308184564113617,1.3262248933315277,1.5084795355796814,1.6702390313148499,1.8049810528755188,1.9072733521461487,1.9729944467544556,1.9994938969612122,1.9857035875320435,1.9321800470352173,1.841079831123352,1.7160754799842834,1.5622060298919678,1.385675698518753,1.193597137928009,0.9937146282754838,0.7940873503684998,0.602758526802063,0.42744261026382446,0.2752065658569336,0.15218812227249146,0.0633438229560852,0.012256324291229248,0.0009848475456237793,0.02998363971710205,0.09808391332626343,0.20254063606262207,0.3391416072845459,0.5023831129074097,0.6856836676597595,0.8816524520516396,1.0823936685919762,1.2798135876655579,1.4659541547298431,1.6333105564117432,1.7751397490501404,1.8857229351997375,1.9606019258499146,1.9967597126960754,1.9927379488945007,1.9486986994743347,1.8664182424545288,1.749211609363556,1.6018041968345642,1.430139571428299,1.2411344647407532,1.042409174144268,0.8419743627309799,0.6479113698005676,0.46803927421569824,0.309611976146698,0.17901164293289185,0.08150768280029297,0.02102762460708618,9.357929229736328e-6,0.019300878047943115,0.07812535762786865,0.1741093397140503,0.3033844828605652,0.4607430100440979,0.6398359537124634,0.8334469199180603,1.0337753482162952,1.2327385544776917,1.4223201870918274,1.5948814153671265,1.7434598207473755,1.862069845199585,1.9459314942359924,1.9916613101959229,1.9974175095558167,1.962967872619629,1.8897015452384949,1.7805694937705994,1.63997483253479,1.4735831916332245,1.288098007440567,1.0910031273961067,0.890239953994751,0.6938975155353546,0.5098976790904999,0.34565359354019165,0.2077835202217102,0.10185015201568604,0.032119691371917725,0.0014055967330932617,0.01094430685043335,0.060352623462677,0.1476370096206665,0.2692796587944031,0.4203803539276123,0.5948425531387329,0.7856364399194717,0.9850750183686614,1.185111477971077,1.3776897490024567,1.5550397634506226,1.7100164890289307,1.8363749384880066,1.929016888141632,1.9842106699943542,1.999731421470642,1.9749528765678406,1.9108745455741882,1.8100771307945251,1.6766275763511658,1.5159035325050354,1.3343800604343414,1.139381229877472,0.9387602061033249,0.7406114935874939,0.5529186129570007,0.38324427604675293,0.23843449354171753,0.12432295083999634,0.04550826549530029,0.0051705241203308105,0.004933774471282959,0.04480868577957153,0.12318640947341919,0.23690807819366455,0.3813924789428711,0.5508101582527161,0.7383381128311157,0.936410091817379,1.1370453387498856,1.3321599662303925,1.5138816237449646,1.6748890280723572,1.808694303035736,1.9098986983299255,1.9744256138801575,1.9996740818023682,1.9846253991127014,1.9298856258392334,1.8376633524894714,1.7116753458976746,1.5569969415664673,1.379868984222412,1.1874287277460098,0.9874295052140951,0.7879407405853271,0.5969999730587006,0.4223007559776306,0.27089178562164307,0.14887279272079468,0.0611608624458313,0.011295080184936523,0.0012835860252380371,0.03153038024902344,0.10081559419631958,0.20634877681732178,0.3438718914985657,0.5078431963920593,0.6916566789150238,0.8878959864377975,1.088654138147831,1.2858423590660095,1.4715046286582947,1.6381608247756958,1.779095470905304,1.8886222839355469,1.9623303413391113,1.9972456097602844,1.991962492465973,1.9466926455497742,1.8632627129554749,1.7450351119041443,1.5967724919319153,1.4244568943977356,1.2350316643714905,1.0361286215484142,0.8357729613780975,0.6420372128486633,0.46272748708724976,0.30507850646972656,0.17543929815292358,0.07904034852981567,0.01976478099822998,1.9073486328125e-6,0.02054917812347412,0.080577552318573,0.17766952514648438,0.3079076409339905,0.4660435914993286,0.6457066237926483,0.8396477997303009,1.0400564670562744,1.2388467192649841,1.4280092120170593,1.5999219417572021,1.7476487159729004,1.8652381300926208,1.9479515552520752,1.9924517273902893,1.996946632862091,1.9612541794776917,1.8868144154548645,1.7766276597976685,1.6351325511932373,1.468038022518158,1.282073438167572,1.0847420394420624,0.8839947283267975,0.6879198849201202,0.5044286251068115,0.3409135341644287,0.20396357774734497,0.09910422563552856,0.030559539794921875,0.001092374324798584,0.011891841888427734,0.06252169609069824,0.15094077587127686,0.2735849618911743,0.4255105257034302,0.6005934476852417,0.7917836755514145,0.9913599854335189,1.191284567117691,1.3834985792636871,1.5602539777755737,1.7144312262535095,1.8398038148880005,1.9313243627548218,1.9853037595748901,1.99956613779068,1.9735365509986877,1.9082611203193665,1.8063759207725525,1.6719861030578613,1.510508954524994,1.3284534811973572,1.1331506818532944,0.9324878379702568,0.7345463931560516,0.5473051965236664,0.3783119320869446,0.23437851667404175,0.12130320072174072,0.04365259408950806,0.004551827907562256,0.005576968193054199,0.046686768531799316,0.1262241005897522,0.24098777770996094,0.3863431215286255,0.5564346015453339,0.74440598487854,0.942680187523365,1.1432724744081497,1.3380819261074066,1.5192634463310242,1.6795138120651245,1.8123733401298523,1.9124865531921387,1.9758195877075195,1.9998148083686829,1.983508050441742,1.9275566339492798,1.8342159390449524,1.7072430849075317,1.5517658591270447,1.3740472793579102,1.181251049041748,0.9811486918479204,0.781806230545044,0.5912520587444305,0.41718173027038574,0.266604483127594,0.14559000730514526,0.059016287326812744,0.010373115539550781,0.0016216635704040527,0.033115386962890625,0.10358363389968872,0.2101859450340271,0.3486252427101135,0.5133277177810669,0.697641909122467,0.8941439539194107,1.094913013279438,1.2918561697006226,1.4770347774028778,1.642990231513977,1.7830204367637634,1.8914874792099,1.9640191793441772,1.997691810131073,1.9911470413208008,1.9446492195129395,1.8600730895996094,1.7408279180526733,1.5917203426361084,1.418760895729065,1.2289139926433563,1.0298466384410858,0.8295761793851852,0.6361753940582275,0.45744019746780396,0.3005698323249817,0.1718994379043579,0.07660937309265137,0.018540680408477783,3.403425216674805e-5,0.021835386753082275,0.08306914567947388,0.18126219511032104,0.3124581575393677,0.47136855125427246,0.651587724685669,0.8458512276411057,1.0463360026478767,1.244945466518402,1.433681309223175,1.6049357056617737,1.7518054842948914,1.868374228477478,1.949934184551239,1.9932029247283936,1.9964361786842346,1.9595036506652832,1.8838940858840942,1.7726503610610962,1.6302651762962341,1.4624743163585663,1.2760413885116577,1.0784814059734344,0.8777502998709679,0.6819546222686768,0.4989791512489319,0.3361995816230774,0.2001773715019226,0.09639561176300049,0.02903580665588379,0.0008182525634765625,0.012877166271209717,0.06472647190093994,0.1542760729789734,0.2779216170310974,0.4306696653366089,0.6063671112060547,0.7979316711425781,0.9976414781995118,1.1974463611841202,1.3892993330955505,1.5654523968696594,1.718812346458435,1.8431974053382874,1.9335936903953552,1.9863572716712952,1.9993611574172974,1.9720800518989563,1.905614972114563,1.8026450276374817,1.667320966720581,1.5050909519195557,1.3225067257881165,1.1269224286079407,0.9262219443917274,0.7284954190254211,0.5417130887508392,0.3733981251716614,0.2303478717803955,0.11832183599472046,0.041835784912109375,0.003972828388214111,0.0062599778175354,0.04860484600067139,0.12929999828338623,0.245092511177063,0.3913149833679199,0.5620731711387634,0.7504913210868835,0.9489601664245129,1.1494864076375961,1.3439869284629822,1.5246215462684631,1.6841145157814026,1.8160247206687927,1.915041446685791,1.9771733283996582,1.9999159574508667,1.9823525547981262,1.92518812417984,1.8307313323020935,1.702788233757019,1.5465161800384521,1.3682143092155457,1.1750699579715729,0.9748609960079193,0.7756728976964951,0.5855272710323334,0.4120888113975525,0.2623487710952759,0.1423390507698059,0.05690634250640869,0.009489178657531738,0.0019989609718322754,0.034737586975097656,0.10638540983200073,0.21405905485153198,0.3534100651741028,0.5188247859477997,0.7036353945732117,0.9003923088312149,1.1011719331145287,1.297865778207779,1.4825528264045715,1.6477884650230408,1.7869120836257935,1.8943157196044922,1.9656720161437988,1.998099148273468,1.9902935028076172,1.9425697326660156,1.8568514585494995,1.7365939617156982,1.586638629436493,1.4130414128303528,1.2227947264909744,1.0235672909766436,0.8233898729085922,0.6303244233131409,0.4521678686141968,0.2960941791534424,0.16839450597763062,0.07421636581420898,0.017356038093566895,0.00010561943054199219,0.02316182851791382,0.0855938196182251,0.18488502502441406,0.317033052444458,0.47671759128570557,0.6574897170066833,0.8520682901144028,1.0526099018752575,1.251030832529068,1.4393328428268433,1.6099316477775574,1.75593763589859,1.871472179889679,1.9518781304359436,1.9939144849777222,1.995885968208313,1.957713007926941,1.8809351921081543,1.7686474323272705,1.6253758668899536,1.4568957686424255,1.2699911296367645,1.0722100660204887,0.8715182691812515,0.676005482673645,0.4935527443885803,0.3315145969390869,0.19641822576522827,0.09371942281723022,0.027552247047424316,0.0005838871002197266,0.013901472091674805,0.0669708251953125,0.15764886140823364,0.2822815179824829,0.4358450174331665,0.6121492981910706,0.8040876239538193,1.0039306939579546,1.203607827425003,1.395077645778656,1.5706221461296082,1.7231651544570923,1.846561849117279,1.9358288049697876,1.9873731136322021,1.9991168975830078,1.970586895942688,1.9029330611228943,1.7988779544830322,1.6626237630844116,1.4996595978736877,1.316554456949234,1.1206891685724258,0.919951356947422,0.7224478423595428,0.5361323058605194,0.3685150146484375,0.2263525128364563,0.11537528038024902,0.04005467891693115,0.00343245267868042,0.006981313228607178,0.05055820941925049,0.13240653276443481,0.24922704696655273,0.3963169455528259,0.567735880613327,0.7565791308879852,0.9552345424890518,1.1556944251060486,1.3498855233192444,1.529965341091156,1.6886826157569885,1.8196394443511963,1.9175571203231812,1.978488564491272,1.999977707862854,1.9811567664146423,1.922785997390747,1.8272181749343872,1.6983056664466858,1.5412384867668152,1.3623597025871277,1.1688744276762009,0.9685819186270237,0.769555851817131,0.579818844795227,0.4070129990577698,0.25811702013015747,0.13912588357925415,0.054836153984069824,0.008645415306091309,0.0024161338806152344,0.0363999605178833,0.10922586917877197,0.2179584503173828,0.3582146167755127,0.5243408679962158,0.709640622138977,0.9066445901989937,1.1074116751551628,1.3038635849952698,1.4880517721176147,1.6525668501853943,1.790777325630188,1.8971120715141296,1.9672846794128418,1.9984666109085083,1.9894009232521057,1.9404529929161072,1.8535959720611572,1.7323310375213623,1.5815337896347046,1.4073056280612946,1.21665920317173,1.0172793846577406,0.8172030448913574,0.6244951486587524,0.4469236135482788,0.2916463017463684,0.16492235660552979,0.07185983657836914,0.016210198402404785,0.0002168416976928711,0.02452695369720459,0.0881577730178833,0.18854445219039917,0.3216404914855957,0.48208075761795044,0.6633980870246887,0.8582836538553238,1.0588817186653614,1.2571063041687012,1.4449670612812042,1.6149035096168518,1.7600398659706116,1.8745394349098206,1.9537867903709412,1.9945876002311707,1.995297133922577,1.9558867812156677,1.8779451847076416,1.7646141052246094,1.620461881160736,1.4512991905212402,1.2639301419258118,1.0659358724951744,0.8652837425470352,0.6700619459152222,0.488139808177948,0.32685041427612305,0.19269531965255737,0.09108221530914307,0.026107072830200195,0.0003889799118041992,0.014964699745178223,0.06924659013748169,0.16105490922927856,0.2866750955581665,0.4410489797592163,0.6179538667201996,0.8102588206529617,1.0102121252566576,1.2097537964582443,1.400840401649475,1.5757693648338318,1.727489411830902,1.8498847484588623,1.9380269646644592,1.9883498549461365,1.9988329410552979,1.969053566455841,1.9002122282981873,1.7950838804244995,1.6579061150550842,1.4942085444927216,1.3105896711349487,1.114451140165329,0.9136991426348686,0.7164112329483032,0.530569851398468,0.363650918006897,0.22238284349441528,0.11246013641357422,0.03831356763839722,0.002932131290435791,0.007741868495941162,0.05254894495010376,0.13554728031158447,0.25339120626449585,0.4013427495956421,0.5734156668186188,0.7626839578151703,0.9615183100104332,1.1619038432836533,1.3557631373405457,1.535281777381897,1.6932235360145569,1.8232218623161316,1.9200366139411926,1.9797651171684265,1.9999999403953552,1.9799222350120544,1.9203444123268127,1.8236680626869202,1.693790078163147,1.5359458327293396,1.3564979135990143,1.162679761648178,0.9623040854930878,0.7634479105472565,0.5741270184516907,0.401960551738739,0.25391459465026855,0.13594287633895874,0.05280083417892456,0.007839798927307129,0.0028722286224365234,0.03809833526611328,0.1120980978012085,0.2218887209892273,0.3630445599555969,0.5298756957054138,0.7156572639942169,0.9129157587885857,1.1136699318885803,1.3098421394824982,1.4935247898101807,1.6573137044906616,1.7946066856384277,1.8998695611953735,1.9688591957092285,1.9987946152687073,1.9884692430496216,1.9382991790771484,1.850298821926117,1.7280287146568298,1.5764120817184448,1.4015606939792633,1.2105225771665573,1.010998424142599,0.811030924320221,0.6186806857585907,0.44170117378234863,0.2872263789176941,0.16148310899734497,0.06953436136245728,0.015100538730621338,0.0003673434257507324,0.025928854942321777,0.09075462818145752,0.19223153591156006,0.32626909017562866,0.48746442794799805,0.669319748878479,0.8645046055316925,1.0651512145996094,1.2631863355636597,1.45059734582901,1.6198450326919556,1.76410710811615,1.8775684237480164,1.9556555151939392,1.9952206015586853,1.994668960571289,1.954022765159607,1.8749204874038696,1.760550618171692,1.6155113577842712,1.4456711411476135,1.2578661143779755,1.059666682034731,0.8590621054172516,0.664138674736023,0.48275357484817505,0.3222184181213379,0.1890043020248413,0.0884808897972107,0.0247003436088562,0.00023317337036132812,0.016069471836090088,0.07156741619110107,0.1644899845123291,0.2910915017127991,0.4462686777114868,0.6237664520740509,0.816430002450943,1.0164931528270245,1.2158914655447006,1.4065873324871063,1.5809062719345093,1.731795310974121,1.8531860709190369,1.9401854276657104,1.9892864227294922,1.9985098242759705,1.9674838781356812,1.8974591493606567,1.7912583947181702,1.6531624794006348,1.488737940788269,1.3046126663684845,1.1081934347748756,0.9074275270104408,0.7103931605815887,0.5250326991081238,0.3588178753852844,0.21844875812530518,0.10958349704742432,0.03661048412322998,0.0024710893630981445,0.008541584014892578,0.05457711219787598,0.13872992992401123,0.2575950622558594,0.406386137008667,0.5791054368019104,0.7687907367944717,0.9677959755063057,1.1680993288755417,1.36162668466568,1.5405771136283875,1.6977371573448181,1.8267717957496643,1.9224856495857239,1.9810060262680054,1.9999825954437256,1.978650450706482,1.917869508266449,1.8200896978378296,1.6892525553703308,1.5306320190429688,1.3506220579147339,1.1564786732196808,0.9560277350246906,0.7573344856500626,0.5684382021427155,0.39693790674209595,0.24974673986434937,0.13279783725738525,0.05080533027648926,0.0070743560791015625,0.0033676624298095703,0.03983461856842041,0.11500531435012817,0.2258496880531311,0.3679113984107971,0.5354425609111786,0.7216998040676117,0.9191751703619957,1.1199085339903831,1.3158084452152252,1.498978316783905,1.6620346307754517,1.7984046936035156,1.902591586112976,1.9703954458236694,1.9990838766098022,1.9874961376190186,1.9361029863357544,1.846976101398468,1.7237080335617065,1.5712677240371704,1.3957999050617218,1.2043776363134384,1.0047170305624604,0.8048662841320038,0.6128812432289124,0.43650078773498535,0.28282397985458374,0.15806877613067627,0.06725132465362549,0.014032423496246338,0.0005573630332946777,0.027369201183319092,0.09338730573654175,0.195950448513031,0.3309243321418762,0.4928683042526245,0.6752544641494751,0.8707460463047028,1.0714333653450012,1.2692412436008453,1.4561961591243744,1.6247620582580566,1.7681441903114319,1.8805628418922424,1.9574864506721497,1.9958143830299377,1.9940016269683838,1.9521211981773376,1.8718538284301758,1.7564471364021301,1.6105485558509827,1.4400390982627869,1.251791924238205,1.0533951371908188,0.8528460264205933,0.6582286059856415,0.47738778591156006,0.3176131844520569,0.18534523248672485,0.08590936660766602,0.023328781127929688,0.00011724233627319336,0.01721048355102539,0.07391935586929321,0.16795802116394043,0.2955358624458313,0.4515102505683899,0.6295939087867737,0.8226084411144257,1.0227735303342342,1.2220355123281479,1.4123321175575256,1.586007833480835,1.736061930656433,1.8564457893371582,1.9423067569732666,1.9901838898658752,1.9981473088264465,1.9658759832382202,1.8946706652641296,1.7874017357826233,1.6483814716339111,1.4832347333431244,1.298609048128128,1.1019466146826744,0.9011747688055038,0.7043865025043488,0.519514262676239,0.35401010513305664,0.21454548835754395,0.10674208402633667,0.03494536876678467,0.002048492431640625,0.009382486343383789,0.056647658348083496,0.14193886518478394,0.2618180513381958,0.4114529490470886,0.5848117768764496,0.774906650185585,0.9740749076008797,1.1742881834506989,1.3674760162830353,1.5458510518074036,1.7022340297698975,1.830297589302063,1.9248923063278198,1.9822051525115967,1.9999258518218994,1.9773401021957397,1.9153583645820618,1.816478967666626,1.684687852859497,1.5252972841262817,1.3447323441505432,1.1502563208341599,0.9497378803789616,0.7512454837560654,0.5627802312374115,0.39193904399871826,0.24560850858688354,0.12968701124191284,0.048847317695617676,0.006348133087158203,0.003902435302734375,0.04160887002944946,0.11795467138290405,0.2298508882522583,0.3727914094924927,0.5410143136978149,0.7277387082576752,0.9254377707839012,1.1261423975229263,1.3217622935771942,1.5044121742248535,1.66672945022583,1.802171230316162,1.9052844047546387,1.971897006034851,1.9993330240249634,1.9864864349365234,1.9338751435279846,1.8436198830604553,1.7193588018417358,1.5661007761955261,1.3900234997272491,1.1982246488332748,0.9984354500193149,0.798694372177124,0.6070830821990967,0.4313100576400757,0.2784605622291565,0.15469592809677124,0.06500506401062012,0.013003289699554443,0.0007867813110351562,0.028847992420196533,0.09605580568313599,0.19970107078552246,0.3356173634529114,0.49830538034439087,0.6812164187431335,0.8769774585962296,1.0776974633336067,1.2752855122089386,1.4617769718170166,1.6296544671058655,1.7721509337425232,1.8835224509239197,1.9592796564102173,1.9963688850402832,1.9932932257652283,1.950177252292633,1.868760108947754,1.7523237466812134,1.6055616736412048,1.4343897104263306,1.245707780122757,1.047121487557888,0.8466357588768005,0.652332067489624,0.47204267978668213,0.31302380561828613,0.18170958757400513,0.08338016271591187,0.021999120712280273,4.082918167114258e-5,0.018390238285064697,0.07630783319473267,0.171458899974823,0.30000799894332886,0.45677340030670166,0.6354359686374664,0.8288089036941528,1.029068261384964,1.2281558960676193,1.4180466830730438,1.5910862684249878,1.7402994632720947,1.8596716523170471,1.9443909525871277,1.9910423755645752,1.9977454543113708,1.964229941368103,1.8918399810791016,1.7835045456886292,1.6435864567756653,1.4777257442474365,1.2926082015037537,1.0956957787275314,0.8949259147047997,0.6983915269374847,0.5140148103237152,0.3492279052734375,0.21067321300506592,0.10392904281616211,0.033314406871795654,0.0016663074493408203,0.010260462760925293,0.0587504506111145,0.14518171548843384,0.2660701870918274,0.4165429472923279,0.5905345380306244,0.781031459569931,0.9803548660129309,1.1804851740598679,1.3733249604701996,1.5511162281036377,1.7066923379898071,1.8337820768356323,1.9272624850273132,1.983365535736084,1.999829649925232,1.9759911894798279,1.9128111004829407,1.8128360509872437,1.6800849437713623,1.5199288129806519,1.3388146758079529,1.144043117761612,0.9434652552008629,0.7451662719249725,0.55713951587677,0.38696420192718506,0.24150002002716064,0.12661051750183105,0.04692685604095459,0.005661070346832275,0.0044779181480407715,0.04342532157897949,0.12093174457550049,0.2338728904724121,0.37769615650177,0.546604186296463,0.7337883412837982,0.9317033141851425,1.1323712915182114,1.3277034759521484,1.5098260641098022,1.671409249305725,1.805915117263794,1.9079350233078003,1.973356544971466,1.9995426535606384,1.98543781042099,1.9316104650497437,1.840230405330658,1.714981198310852,1.560911476612091,1.3842317163944244,1.1920488476753235,0.9921386735513806,0.7925453782081604,0.6013144850730896,0.42615437507629395,0.2741256356239319,0.15135645866394043,0.06279563903808594,0.012013018131256104,0.001055598258972168,0.030365049839019775,0.09876656532287598,0.20349252223968506,0.3403252363204956,0.5037491023540497,0.6871765553951263,0.8832137286663055,1.0839584991335869,1.2813189625740051,1.4673396050930023,1.634522020816803,1.776127278804779,1.8864542841911316,1.9610392451286316,1.9968852400779724,1.9925473928451538,1.9482004642486572,1.8656321167945862,1.7481706738471985,1.600550889968872,1.4287231862545013,1.2396139353513718,1.0408459790050983,0.8404164761304855,0.6464349329471588,0.46670544147491455,0.3084726929664612,0.17811506986618042,0.08088713884353638,0.020708084106445312,3.814697265625e-6,0.019608736038208008,0.07873272895812988,0.17499250173568726,0.3045077919960022,0.46207088232040405,0.6413066387176514,0.8350011110305786,1.0353465899825096,1.2342672646045685,1.4237447679042816,1.5961413383483887,1.7445077896118164,1.8628636002540588,1.9464378356933594,1.9918617010116577,1.997303068637848,1.9625417590141296,1.8889809250831604,1.7795857787132263,1.6387659907341003,1.4721979200839996,1.2865957915782928,1.0894411578774452,0.8886812031269073,0.6924084424972534,0.5085345208644867,0.34445977210998535,0.20682275295257568,0.10115832090377808,0.03172558546066284,0.0013235211372375488,0.011177539825439453,0.060890376567840576,0.14845824241638184,0.27035123109817505,0.4216560125350952,0.5962734520435333,0.7871797978878021,0.9866508552804589,1.1866600066423416,1.3791449964046478,1.5563468933105469,1.711122751235962,1.8372336030006409,1.9295961260795593,1.9844871163368225,1.9996939897537231,1.9746037125587463,1.9102214574813843,1.8091521263122559,1.6754662990570068,1.5145527720451355,1.332897961139679,1.137824222445488,0.937194861471653,0.7390971481800079,0.5515162646770477,0.3820134997367859,0.237421452999115,0.12356114387512207,0.045039474964141846,0.0050116777420043945,0.005091369152069092,0.045275211334228516,0.12394344806671143,0.23792511224746704,0.3826255202293396,0.5522119402885437,0.7398484647274017,0.9379715509712696,1.1386100798845291,1.3336460888385773,1.5152329802513123,1.676051139831543,1.8096181154251099,1.9105497598648071,1.9747776985168457,1.999712884426117,1.9843502640724182,1.9293090105056763,1.8368077874183655,1.7105754017829895,1.5557000637054443,1.3784247934818268,1.1858954280614853,0.9858727222308517,0.7864194810390472,0.5955476462841034,0.4210088849067688,0.26980888843536377,0.1480425000190735,0.060618042945861816,0.01105952262878418,0.0013646483421325684,0.03192418813705444,0.10150635242462158,0.20730620622634888,0.3450591564178467,0.5092124044895172,0.6931490004062653,0.8894546031951904,1.0902162194252014,1.2873412668704987,1.4728837609291077,1.6393645405769348,1.7800729274749756,1.8893370628356934,1.9627524614334106,1.9973598718643188,1.9917603731155396,1.9461813569068909,1.8624622821807861,1.7439778447151184,1.595504105091095,1.4230259358882904,1.2334958165884018,1.0345536097884178,0.8342185765504837,0.6405660808086395,0.46140217781066895,0.30394887924194336,0.17455297708511353,0.07843035459518433,0.019455671310424805,6.258487701416016e-6,0.020865917205810547,0.08119398355484009,0.1785585880279541,0.309035062789917,0.4673638939857483,0.6471630036830902,0.8411847651004791,1.041638769209385,1.2403842210769653,1.429439902305603,1.601185142993927,1.7486969232559204,1.866029143333435,1.9484522342681885,1.9926437139511108,1.9968223571777344,1.9608196020126343,1.8860868215560913,1.7756363153457642,1.6339203715324402,1.4666514694690704,1.280572086572647,1.0831830129027367,0.8824408799409866,0.6864374876022339,0.5030736327171326,0.3397405743598938,0.20302224159240723,0.09842956066131592,0.03017127513885498,0.0010194778442382812,0.012135982513427734,0.06307268142700195,0.15177643299102783,0.27467161417007446,0.4268043637275696,0.6020422875881195,0.7933216542005539,0.992932116612792,1.1928274780511856,1.3849500715732574,1.561555564403534,1.7155250310897827,1.8406521677970886,1.931892991065979,1.9855698347091675,1.999518871307373,1.9731778502464294,1.9076085686683655,1.805454134941101,1.670832335948944,1.509143352508545,1.3269537091255188,1.1315847635269165,0.9309117197990417,0.7330235838890076,0.5458971261978149,0.3770752549171448,0.23336315155029297,0.12055379152297974,0.043194353580474854,0.004403233528137207,0.005744040012359619,0.04716271162033081,0.12698978185653687,0.24200737476348877,0.38757920265197754,0.5578373670578003,0.745918869972229,0.9442422352731228,1.1448131650686264,1.3395467698574066,1.5205934047698975,1.6806552410125732,1.813297986984253,1.9131348133087158,1.9761636853218079,1.999843955039978,1.9832211136817932,1.9269651174545288,1.833343744277954,1.7061307430267334,1.5504539608955383,1.3725887537002563,1.1797046810388565,0.9795768149197102,0.7802722007036209,0.5898246765136719,0.41591107845306396,0.26554179191589355,0.14477813243865967,0.05848795175552368,0.010149598121643066,0.0017114877700805664,0.03351390361785889,0.10427480936050415,0.2111606001853943,0.3498305678367615,0.5147084295749664,0.6991481482982635,0.895715020596981,1.0964855700731277,1.2933668494224548,1.4784226715564728,1.6441935300827026,1.783997356891632,1.892198622226715,1.9644359350204468,1.9977973699569702,1.990938127040863,1.944134771823883,1.8592738509178162,1.739776074886322,1.5904583930969238,1.4173396229743958,1.2273981422185898,1.0282903742045164,0.8280422389507294,0.6346972286701202,0.45610737800598145,0.2994415760040283,0.1710149049758911,0.07600408792495728,0.018239080905914307,4.8279762268066406e-5,0.02216494083404541,0.0836976170539856,0.18216592073440552,0.31360065937042236,0.4727036952972412,0.6530618369579315,0.847404807806015,1.047898817807436,1.2464620471000671,1.4350905418395996,1.6061807870864868,1.7528362274169922,1.8691452145576477,1.950419545173645,1.9933829307556152,1.9963036179542542,1.959055244922638,1.8831505179405212,1.771646499633789,1.629037857055664,1.4610730409622192,1.2745226323604584,1.0769063755869865,0.8761900588870049,0.6804644465446472,0.4976191520690918,0.33502453565597534,0.1992347240447998,0.09572327136993408,0.028662681579589844,0.0007562041282653809,0.01312863826751709,0.06528133153915405,0.15511196851730347,0.27899956703186035,0.43195033073425293,0.6077988147735596,0.7994567155838013,0.9992289149085991,1.1990022957324982,1.3907540142536163,1.5667546391487122,1.7199097275733948,1.8440456986427307,1.9341586232185364,1.9866161346435547,1.9993036985397339,1.9717099070549011,1.9049471020698547,1.801706314086914,1.6661492586135864,1.5037400722503662,1.3210253715515137,1.125370368361473,0.9246617555618286,0.7269899845123291,0.5403230786323547,0.37218546867370605,0.22935473918914795,0.11758828163146973,0.041382670402526855,0.003832697868347168,0.00643765926361084,0.04909259080886841,0.13007807731628418,0.24612957239151,0.3925691843032837,0.5634939670562744,0.752014085650444,0.9505303613841534,1.1510407328605652,1.3454627394676208,1.525959312915802,1.6852548122406006,1.8169280886650085,1.9156714081764221,1.977504551410675,1.9999350309371948,1.9820587038993835,1.924596130847931,1.8298636674880981,1.7016798257827759,1.545211672782898,1.3667379319667816,1.173506811261177,0.9732817187905312,0.7741336226463318,0.5840900838375092,0.4108116030693054,0.2612830400466919,0.14153170585632324,0.05638468265533447,0.00927436351776123,0.0020995736122131348,0.035149574279785156,0.10709214210510254,0.21502739191055298,0.3546043634414673,0.5201969146728516,0.7051300406455994,0.9019491970539093,1.1027207374572754,1.2993516623973846,1.4839158952236176,1.6489737629890442,1.787890613079071,1.8950248956680298,1.966081142425537,1.9981952905654907,1.9900727272033691,1.9420408606529236,1.8560358881950378,1.735524594783783,1.5853646993637085,1.4116091132164001,1.2212617844343185,1.0219955183565617,0.8218426257371902,0.6288711726665497,0.4508596658706665,0.29498374462127686,0.16752660274505615,0.07362598180770874,0.017067015171051025,0.00012952089309692383,0.02349621057510376,0.08622521162033081,0.18580567836761475,0.3181934356689453,0.47806447744369507,0.6589744091033936,0.8536309003829956,1.0541874542832375,1.2525597512722015,1.4407514929771423,1.6111767888069153,1.7569658756256104,1.8722421526908875,1.9523587822914124,1.9940864443778992,1.9957429766654968,1.9572616815567017,1.8801937103271484,1.7676456570625305,1.624154269695282,1.455503523349762,1.2684916853904724,1.0706571191549301,0.8699744045734406,0.6745041012763977,0.492184579372406,0.3303348422050476,0.1954789161682129,0.09305280447006226,0.027185142040252686,0.0005311965942382812,0.014165222644805908,0.06753766536712646,0.158497154712677,0.28337717056274414,0.43714380264282227,0.6135989129543304,0.8056295812129974,1.0054952269420028,1.2051393538713455,1.3965144455432892,1.5719062685966492,1.7242448329925537,1.8473895192146301,1.9363764524459839,1.9876185655593872,1.9990503191947937,1.9702035188674927,1.9022496938705444,1.7979267239570618,1.6614397168159485,1.4982905089855194,1.3150554895401,1.119120754301548,0.9183843284845352,0.7209377884864807,0.5347400605678558,0.3672967553138733,0.2253572940826416,0.11464327573776245,0.03961747884750366,0.003304123878479004,0.00716710090637207,0.051050543785095215,0.13318562507629395,0.25026148557662964,0.39755886793136597,0.5691403448581696,0.7580895125865936,0.9568204469978809,1.157262310385704,1.3513650298118591,1.53130441904068,1.6898272037506104,1.8205434679985046,1.9181841015815735,1.9788132309913635,1.999987006187439,1.9808518290519714,1.9221790432929993,1.82633376121521,1.6971794366836548,1.5399222373962402,1.3609010577201843,1.1673321425914764,0.9670181795954704,0.7680336982011795,0.5783996284008026,0.4057600498199463,0.25707393884658813,0.1383347511291504,0.054318904876708984,0.008438408374786377,0.002527177333831787,0.03682351112365723,0.10994493961334229,0.2189440131187439,0.35942697525024414,0.525731086730957,0.7111527323722839,0.908217616379261,1.1089822128415108,1.3053537905216217,1.4894167482852936,1.65375155210495,1.7917340397834778,1.8978021740913391,1.9676803946495056,1.9985519647598267,1.9891725182533264,1.9399200081825256,1.8527799248695374,1.7312647104263306,1.5802726745605469,1.405862271785736,1.2151166498661041,1.015699790790677,0.815650075674057,0.6230314075946808,0.44560813903808594,0.29053205251693726,0.164054274559021,0.07127296924591064,0.01592808961868286,0.0002506375312805176,0.02487248182296753,0.08880120515823364,0.18945980072021484,0.32279086112976074,0.4834197759628296,0.6648717522621155,0.8598325848579407,1.0604434832930565,1.2586179375648499,1.4463676512241364,1.6161245107650757,1.7610655426979065,1.8753044605255127,1.9542603492736816,1.9947504997253418,1.9951428174972534,1.955421507358551,1.877187728881836,1.7635949850082397,1.6192221641540527,1.4498888552188873,1.2624207735061646,1.064374640583992,0.8637336194515228,0.6685854196548462,0.48679637908935547,0.3256942629814148,0.19177299737930298,0.09043091535568237,0.02575308084487915,0.0003466010093688965,0.015235543251037598,0.06981980800628662,0.16191571950912476,0.287783145904541,0.4423596262931824,0.6194142997264862,0.811810165643692,1.0117918383330107,1.2112981975078583,1.402287244796753,1.577060341835022,1.728572428226471,1.8507161736488342,1.9385680556297302,1.9885867834091187,1.9987561106681824,1.9686661958694458,1.8995298743247986,1.7941340208053589,1.6567270159721375,1.4928478002548218,1.3091021180152893,1.1128967329859734,0.9121405333280563,0.7149258852005005,0.5291755199432373,0.3624330759048462,0.22139054536819458,0.11173337697982788,0.037881672382354736,0.0028124451637268066,0.007939279079437256,0.053055524826049805,0.1363425850868225,0.2544431686401367,0.40259671211242676,0.5748312473297119,0.7642040997743607,0.9630817472934723,1.1634475588798523,1.3572248816490173,1.5366026759147644,1.6943503022193909,1.8241090774536133,1.9206485152244568,1.980077087879181,1.9999993443489075,1.979606032371521,1.9197254180908203,1.82277113199234,1.6926514506340027,1.5346114039421082,1.355021446943283,1.1611208021640778,0.9607254453003407,0.7619132250547409,0.5726981461048126,0.4007073640823364,0.2528737187385559,0.13515633344650269,0.052300333976745605,0.0076454877853393555,0.002991974353790283,0.03852725028991699,0.11281895637512207,0.22287237644195557,0.36425143480300903,0.5312571227550507,0.7171576023101807,0.914489671587944,1.1152393594384193,1.3113438189029694,1.4948981702327728,1.6585034728050232,1.7955648303031921,1.9005574584007263,1.9692491292953491,1.9988709092140198,1.9882287979125977,1.9377517104148865,1.8494743704795837,1.726955235004425,1.5751329064369202,1.4001273214817047,1.208992838859558,1.00943395588547,0.8094948083162308,0.6172347962856293,0.44040387868881226,0.286129891872406,0.16063165664672852,0.06896787881851196,0.014828205108642578,0.0004114508628845215,0.026287496089935303,0.09141337871551514,0.19316381216049194,0.3274374008178711,0.4888215661048889,0.6708110868930817,0.8660700172185898,1.0667275860905647,1.264695405960083,1.4519934952259064,1.621071994304657,1.7651154398918152,1.8783174753189087,1.9561150670051575,1.9953721761703491,1.9945064187049866,1.9535526633262634,1.8741617798805237,1.7595338821411133,1.6142895817756653,1.4442563354969025,1.256339430809021,1.0580896139144897,0.8574982434511185,0.6626510322093964,0.4814021587371826,0.3210577368736267,0.1880810260772705,0.08783233165740967,0.024352550506591797,0.00020062923431396484,0.01635003089904785,0.07214981317520142,0.16535067558288574,0.2921958565711975,0.44757217168807983,0.6252165138721466,0.8179681897163391,1.018057469278574,1.2174188643693924,1.4080162346363068,1.5821666717529297,1.7328711152076721,1.8540090918540955,1.940722405910492,1.989515781402588,1.998422384262085,1.9670830368995667,1.896761178970337,1.790291428565979,1.6519654393196106,1.4873590767383575,1.3031075596809387,1.1066379398107529,0.9058698117733002,0.7088960111141205,0.5236564576625824,0.3576180338859558,0.21747368574142456,0.10887253284454346,0.03619217872619629,0.002362370491027832,0.008746802806854248,0.0550881028175354,0.13953381776809692,0.2586544156074524,0.4076582193374634,0.5805390179157257,0.7703280299901962,0.9693750031292439,1.1696564555168152,1.3630991280078888,1.5419055223464966,1.6988679766654968,1.8276594877243042,1.9230884909629822,1.9813083410263062,1.99997216463089,1.9783276915550232,1.9172474145889282,1.819193422794342,1.6881181597709656,1.5293052792549133,1.349156379699707,1.1549331992864609,0.954464752227068,0.7558317929506302,0.5670136213302612,0.39567846059799194,0.24870318174362183,0.1320122480392456,0.05030936002731323,0.006888031959533691,0.0034984350204467773,0.040277302265167236,0.115742027759552,0.22685062885284424,0.36912453174591064,0.5368286073207855,0.7232028841972351,0.9207346960902214,1.121461644768715,1.3172925412654877,1.500333547592163,1.663206398487091,1.7993457913398743,1.9032639861106873,1.97077214717865,1.9991490244865417,1.9872458577156067,1.9355461597442627,1.846135139465332,1.7226169109344482,1.5699703693389893,1.3943486213684082,1.2028309255838394,1.003137233434245,0.8033170849084854,0.6114251017570496,0.4351963400840759,0.28173452615737915,0.1572256088256836,0.0666884183883667,0.01377248764038086,0.0006108283996582031,0.027733981609344482,0.09404861927032471,0.19688165187835693,0.3320879340171814,0.4942173361778259,0.67673459649086,0.8723127692937851,1.073009043931961,1.2707623839378357,1.4576014280319214,1.6259948015213013,1.7691547274589539,1.8813104629516602,1.9579409956932068,1.9959575533866882,1.9938275814056396,1.9516370296478271,1.8710864782333374,1.7554229497909546,1.6093087196350098,1.4386336505413055,1.2502774596214294,1.0518327541649342,0.8512986898422241,0.6567586958408356,0.4760545492172241,0.3164703845977783,0.18443888425827026,0.08528220653533936,0.022990763187408447,9.435415267944336e-5,0.017503559589385986,0.07451659440994263,0.16883540153503418,0.2966579794883728,0.45283186435699463,0.6310617923736572,0.824163407087326,1.0243529006838799,1.2235607355833054,1.4137569665908813,1.5872749090194702,1.7371200919151306,1.8572524189949036,1.9428293704986572,1.9904013872146606,1.9980509281158447,1.9654695391654968,1.8939706683158875,1.7864363193511963,1.6472011804580688,1.4818510115146637,1.2971009612083435,1.1003749147057533,0.8996028229594231,0.7028776705265045,0.5181293785572052,0.3528050184249878,0.21356868743896484,0.10603296756744385,0.03453254699707031,0.001949608325958252,0.009597480297088623,0.05716794729232788,0.14274340867996216,0.26287442445755005,0.4127185344696045,0.5862356126308441,0.7764313369989395,0.9756389651447535,1.1758285760879517,1.3689306378364563,1.547161340713501,1.7033579349517822,1.8311770558357239,1.9254918694496155,1.9825006127357483,1.9999053478240967,1.9770044684410095,1.9147210717201233,1.815565824508667,1.6835355758666992,1.5239523649215698,1.3432489335536957,1.1487093567848206,0.9481753706932068,0.7497304081916809,0.5613736808300018,0.390697717666626,0.2445824146270752,0.12891751527786255,0.04836547374725342,0.006173312664031982,0.004041731357574463,0.0420566201210022,0.11868572235107422,0.23085957765579224,0.37402260303497314,0.5424184799194336,0.7292591631412506,0.9270132705569267,1.1277094334363937,1.3232576847076416,1.5057756304740906,1.6679060459136963,1.8031135201454163,1.905947983264923,1.9722641706466675,1.9993889331817627,1.986228883266449,1.9333145022392273,1.8427788019180298,1.7182711362838745,1.564810335636139,1.3885823786258698,1.1966909021139145,0.9968709039967507,0.7971770465373993,0.6056308150291443,0.4300112724304199,0.27736765146255493,0.1538529396057129,0.06444591283798218,0.012750566005706787,0.000850677490234375,0.02922588586807251,0.096732497215271,0.20064932107925415,0.33678752183914185,0.4996594190597534,0.6826997399330139,0.878530278801918,1.0792571902275085,1.276789277791977,1.4631641805171967,1.6308691501617432,1.7731441855430603,1.8842542171478271,1.9597204327583313,1.996500849723816,1.9931093454360962,1.9496836066246033,1.8679766654968262,1.7512820363044739,1.6043037176132202,1.4329662024974823,1.2441760897636414,1.0455433763563633,0.8450748324394226,0.6508512496948242,0.4707016348838806,0.3118877410888672,0.18081128597259521,0.08275580406188965,0.021673977375030518,2.7894973754882812e-5,0.018690109252929688,0.0769084095954895,0.17233598232269287,0.3011261820793152,0.45808762311935425,0.6368932723999023,0.8303355276584625,1.0306473653763533,1.229693740606308,1.4194813072681427,1.5923597812652588,1.741360604763031,1.8604776263237,1.9449092149734497,1.9912521243095398,1.9976381659507751,1.9638099670410156,1.8911311626434326,1.7825313806533813,1.6423881649971008,1.4763506948947906,1.2911117672920227,1.0941382870078087,0.8933701515197754,0.6969002187252045,0.5126480460166931,0.34804075956344604,0.20971357822418213,0.10324239730834961,0.03291124105453491,0.0015763640403747559,0.01048743724822998,0.05928516387939453,0.14600259065628052,0.2671441435813904,0.41782671213150024,0.5919763445854187,0.7825731933116913,0.9819343946874142,1.1820238083600998,1.3747759461402893,1.5524210929870605,1.707798421382904,1.8346447944641113,1.927847146987915,1.9836484789848328,1.9997995495796204,1.9756492376327515,1.9121710062026978,1.8119237422943115,1.6789482831954956,1.5185787081718445,1.3373278975486755,1.1424795985221863,0.9418880455195904,0.7436389327049255,0.5557236075401306,0.3857167959213257,0.24047142267227173,0.12584221363067627,0.04644978046417236,0.005494415760040283,0.004627048969268799,0.043882548809051514,0.12167865037918091,0.23487931489944458,0.37892162799835205,0.547999233007431,0.735296756029129,0.9332642927765846,1.1339219212532043,1.3291812241077423,1.5111714005470276,1.6725791692733765,1.8068494200706482,1.9085959792137146,1.9737176299095154,1.999589204788208,1.985167920589447,1.9310351014137268,1.8393727540969849,1.7138757705688477,1.5596029162406921,1.3827727138996124,1.1905131936073303,0.9905741810798645,0.7910151183605194,0.5998801290988922,0.4248737692832947,0.27305036783218384,0.1505299210548401,0.062251150608062744,0.011772453784942627,0.0011286735534667969,0.030748844146728516,0.09943896532058716,0.20444869995117188,0.34151339530944824,0.5051212906837463,0.6886774599552155,0.8847828730940819,1.0855326279997826,1.2828346192836761,1.468735694885254,1.6357423067092896,1.7771224975585938,1.887177288532257,1.9614705443382263,1.997007429599762,1.992355465888977,1.9477022886276245,1.864847719669342,1.7471316456794739,1.599299132823944,1.4273092150688171,1.2380946725606918,1.039282687008381,0.8388872295618057,0.6449576318264008,0.46536970138549805,0.3073323965072632,0.17721611261367798,0.0802658200263977,0.02038949728012085,7.152557373046875e-7,0.019921302795410156,0.07934832572937012,0.17588627338409424,0.30564379692077637,0.4633904695510864,0.6427675187587738,0.8365444242954254,1.0369101203978062,1.2357879877090454,1.4251613914966583,1.5973967909812927,1.7455514073371887,1.863653302192688,1.94694185256958,1.9920597076416016,1.9971858859062195,1.9621121883392334,1.8882563710212708,1.7785953879356384,1.6375496983528137,1.470804750919342,1.2850818932056427,1.0878675729036331,0.8871113508939743,0.6909056007862091,0.5071592926979065,0.34327906370162964,0.20587092638015747,0.10047370195388794,0.03133583068847656,0.0012443065643310547,0.01141202449798584,0.06142914295196533,0.14927953481674194,0.27142202854156494,0.42293304204940796,0.5977053046226501,0.7886938452720642,0.9882305404171348,1.188211813569069,1.3806063830852509,1.5576589107513428,1.712232530117035,1.8380964994430542,1.9301772117614746,1.9847630262374878,1.9996536374092102,1.9742487668991089,1.909572422504425,1.808231770992279,1.6743117570877075,1.513210654258728,1.3314222395420074,1.136274442076683,0.935633473098278,0.7375870943069458,0.5501184165477753,0.38078421354293823,0.2364102602005005,0.12281620502471924,0.044571876525878906,0.004854977130889893,0.005251824855804443,0.04574638605117798,0.12470638751983643,0.23894894123077393,0.3838690519332886,0.553625077009201,0.7413741946220398,0.9395483955740929,1.1401593536138535,1.3351205587387085,1.5165732502937317,1.6772031784057617,1.8105354309082031,1.911195456981659,1.9751256704330444,1.9997491836547852,1.9840733408927917,1.928730070590973,1.8359501957893372,1.7094736695289612,1.5543732643127441,1.3769478499889374,1.1843279302120209,0.9842778313905001,0.7848614901304245,0.5941172540187836,0.4197339415550232,0.26874083280563354,0.1472243070602417,0.06008273363113403,0.010828673839569092,0.0014475584030151367,0.032317519187927246,0.10219424962997437,0.20826101303100586,0.3462422490119934,0.5105761587619781,0.6946384608745575,0.8910097032785416,1.0917742773890495,1.2888394892215729,1.4742617309093475,1.6405667662620544,1.7810699939727783,1.8900652527809143,1.963182508945465,1.9974744319915771,1.9915587306022644,1.9456738233566284,1.8616693615913391,1.7429314851760864,1.594246506690979,1.4216077327728271,1.2319742292165756,1.0329899527132511,0.8326758742332458,0.6391065418720245,0.46008461713790894,0.3028263449668884,0.17367082834243774,0.07782411575317383,0.0191497802734375,1.2993812561035156e-5,0.021185100078582764,0.08181267976760864,0.1794692873954773,0.3101889491081238,0.46871453523635864,0.6486559212207794,0.8427597880363464,1.0432019121944904,1.2419025897979736,1.430852323770523,1.6024346351623535,1.7497331500053406,1.8668103218078613,1.9489468932151794,1.9928319454193115,1.9966965317726135,1.9603847861289978,1.8853605389595032,1.774647831916809,1.632709562778473,1.4652671217918396,1.2790700495243073,1.0816237851977348,0.8808873221278191,0.6849232614040375,0.5016900599002838,0.33854347467422485,0.202059805393219,0.09774065017700195,0.029791057109832764,0.0009500384330749512,0.01238018274307251,0.0636206865310669,0.15260612964630127,0.2757495641708374,0.428087055683136,0.6034780740737915,0.7948526740074158,0.9944966360926628,1.1943624317646027,1.3863936066627502,1.5628494620323181,1.7166171669960022,1.8414984345436096,1.9324594140052795,1.9858334064483643,1.9994691014289856,1.9728096723556519,1.9069377779960632,1.8045077919960022,1.66964852809906,1.5077961087226868,1.325474739074707,1.1300336569547653,0.9293509945273399,0.7315161526203156,0.5445037186145782,0.375852108001709,0.23235952854156494,0.11981010437011719,0.04274064302444458,0.004257798194885254,0.005912721157073975,0.04763871431350708,0.1277538537979126,0.24302875995635986,0.388816773891449,0.5592412054538727,0.7474323809146881,0.9458348900079727,1.1463912278413773,1.3410466313362122,1.521954596042633,1.681822955608368,1.8142073154449463,1.9137715101242065,1.9765020608901978,1.9998703598976135,1.9829344749450684,1.9263770580291748,1.8324779272079468,1.7050220370292664,1.549147129058838,1.3711363971233368,1.1781653761863708,0.9780126176774502,0.7787461578845978,0.5883983075618744,0.4146419167518616,0.26448094844818115,0.1439683437347412,0.05795162916183472,0.009924173355102539,0.0018060803413391113,0.033924639225006104,0.10498511791229248,0.21212315559387207,0.35102003812789917,0.5160769820213318,0.7006405591964722,0.8972711637616158,1.0980427041649818,1.2948621809482574,1.4797959625720978,1.645389437675476,1.7849676012992859,1.8929041624069214,1.964848279953003,1.9978999495506287,1.9907267689704895,1.9436179995536804,1.858472466468811,1.7387224435806274,1.5891702771186829,1.4158895611763,1.2258445769548416,1.0266959089785814,0.8264711499214172,0.6332412362098694,0.4547951817512512,0.2983260154724121,0.17014092206954956,0.07540696859359741,0.017942845821380615,6.490945816040039e-5,0.022493720054626465,0.08432531356811523,0.18306726217269897,0.3147392272949219,0.4740337133407593,0.6545296311378479,0.8489512205123901,1.0494615137577057,1.2479780316352844,1.4364987015724182,1.6074243783950806,1.7538851499557495,1.869933009147644,1.9509143233299255,1.9935648441314697,1.9961653351783752,1.9586109519004822,1.882415533065796,1.7706504464149475,1.6278208494186401,1.4596841633319855,1.2730178534984589,1.075346365571022,0.8746376931667328,0.6789823174476624,0.4962669610977173,0.33385682106018066,0.19829857349395752,0.09505635499954224,0.02829200029373169,0.0006965994834899902,0.013382554054260254,0.0658385157585144,0.15596634149551392,0.2801057696342468,0.43326377868652344,0.6092665791511536,0.801019623875618,1.0007934652967378,1.20053531229496,1.3921937048435211,1.5680429935455322,1.720994770526886,1.844883680343628,1.9347158074378967,1.9868700504302979,1.9992440938949585,1.971339225769043,1.9042802453041077,1.8007701635360718,1.6649815440177917,1.5023878812789917,1.3195432424545288,1.1238180175423622,0.9231017380952835,0.7254558503627777,0.5389071106910706,0.3709447383880615,0.22833925485610962,0.11683899164199829,0.040938377380371094,0.0036970973014831543,0.006616115570068359,0.049577951431274414,0.13085073232650757,0.24715840816497803,0.39381277561187744,0.564902126789093,0.7535300552845001,0.9520930536091328,1.1525871455669403,1.3469305336475372,1.5272893905639648,1.6863934397697449,1.8178293704986572,1.9162991046905518,1.977833330631256,1.9999516606330872,1.9817624688148499,1.923999011516571,1.8289896845817566,1.700564205646515,1.543899416923523,1.3653103709220886,1.171995833516121,0.9717482645064592,0.7726394981145859,0.5826955139636993,0.4095728397369385,0.2602088451385498,0.14071470499038696,0.05585789680480957,0.009058833122253418,0.00220412015914917,0.035569965839385986,0.10781145095825195,0.21601653099060059,0.3558235764503479,0.5215969979763031,0.7066545486450195,0.9035367071628571,1.1043072417378426,1.3008732199668884,1.4853111505508423,1.6501864790916443,1.7888531684875488,1.8957216143608093,1.966484010219574,1.9982880353927612,1.9898515939712524,1.941514790058136,1.8552260994911194,1.7344636917114258,1.5840954780578613,1.4101827442646027,1.2197357416152954,1.0204313211143017,0.8203033208847046,0.6274188160896301,0.44955283403396606,0.2938750386238098,0.16666078567504883,0.07303792238235474,0.016780376434326172,0.00015586614608764648,0.023834526538848877,0.08686184883117676,0.18669724464416504,0.31931644678115845,0.479373574256897,0.6604168713092804,0.855148583650589,1.0557191707193851,1.2541027665138245,1.4421826899051666,1.6124384999275208,1.7580072283744812,1.873021125793457,1.9528440237045288,1.9942583441734314,1.9955946803092957,1.9567991495132446,1.8794355988502502,1.7666224837303162,1.6229072213172913,1.4540829360485077,1.2669548392295837,1.0690659508109093,0.8683930486440659,0.6730251312255859,0.4908373951911926,0.329173743724823,0.19455069303512573,0.09239482879638672,0.02682405710220337,0.0004814267158508301,0.014428794384002686,0.06810402870178223,0.159343421459198,0.28446924686431885,0.43843770027160645,0.6150424182415009,0.8071645349264145,1.0070597464218736,1.2066703885793686,1.3979502618312836,1.5731889605522156,1.7253227829933167,1.8482192158699036,1.9369244575500488,1.987862765789032,1.9989808797836304,1.9698306918144226,1.9015871286392212,1.7970011234283447,1.6602884531021118,1.496959924697876,1.3135991990566254,1.1175368949770927,0.9167946800589561,0.7194064259529114,0.5333287417888641,0.36606234312057495,0.22434955835342407,0.11390280723571777,0.03917419910430908,0.0031758546829223633,0.007358968257904053,0.051554858684539795,0.13398206233978271,0.25131791830062866,0.3988327383995056,0.5705803036689758,0.7596375048160553,0.9583835899829865,1.1588072031736374,1.352829396724701,1.5326292514801025,1.690959095954895,1.8214367628097534,1.918802797794342,1.9791324138641357,1.9999937415122986,1.9805458784103394,1.9215728044509888,1.825451672077179,1.6960569620132446,1.5386046767234802,1.359441488981247,1.1657894551753998,0.9654545225203037,0.7665120959281921,0.5769814550876617,0.4045024514198303,0.25602757930755615,0.13754183053970337,0.05382132530212402,0.008240699768066406,0.002637326717376709,0.03723710775375366,0.11064529418945312,0.2199028730392456,0.36060571670532227,0.527135968208313,0.7126801609992981,0.909806065261364,1.1105676367878914,1.3068722784519196,1.4908070862293243,1.6549577116966248,1.79270738363266,1.8985034823417664,1.9680814146995544,1.998636543750763,1.9889371395111084,1.9393742680549622,1.8519457578659058,1.730175793170929,1.57897287607193,1.4044318795204163,1.213588461279869,1.0141354138031602,0.8141125738620758,0.6215827465057373,0.44430673122406006,0.28943032026290894,0.1631966233253479,0.07069402933120728,0.015651166439056396,0.0002868771553039551,0.02522045373916626,0.08944684267044067,0.1903771162033081,0.3239428400993347,0.484760046005249,0.6663462519645691,0.8613818734884262,1.0620050989091396,1.2601289451122284,1.4477671384811401,1.6173560619354248,1.76205974817276,1.8760452270507812,1.9547178149223328,1.9949063062667847,1.9949906468391418,1.9549674987792969,1.8764207363128662,1.7625640630722046,1.6179689168930054,1.4484637379646301,1.260881245136261,1.0627828016877174,0.8621536046266556,0.6670809090137482,0.4854280352592468,0.3245171904563904,0.19083476066589355,0.08976924419403076,0.025394678115844727,0.0003058910369873047,0.015514135360717773,0.07040649652481079,0.16277027130126953,0.2888822555541992,0.44365906715393066,0.6208615899085999,0.8133469820022583,1.013356264680624,1.2128271609544754,1.4037191271781921,1.5783373713493347,1.729643166065216,1.8515375256538391,1.939106822013855,1.988821268081665,1.9986768960952759,1.9682764410972595,1.8988452553749084,1.7931821942329407,1.6555463671684265,1.4914858639240265,1.3076138198375702,1.1113420501351357,0.9105821400880814,0.7134266197681427,0.5278227031230927,0.3612520098686218,0.22042882442474365,0.11102980375289917,0.03746461868286133,0.002698659896850586,0.008141160011291504,0.05356937646865845,0.1371477246284485,0.25550711154937744,0.4038766026496887,0.576275497674942,0.7657544910907745,0.9646757766604424,1.1650209575891495,1.3587142527103424,1.537947952747345,1.6954973340034485,1.8250115513801575,1.9212700128555298,1.9803926348686218,1.9999961853027344,1.97929048538208,1.9191100597381592,1.8218808770179749,1.6915221810340881,1.5332885384559631,1.3535583913326263,1.159576490521431,0.9591621495783329,0.760393962264061,0.571284145116806,0.3994556665420532,0.2518347501754761,0.13437193632125854,0.051802098751068115,0.007453620433807373,0.0031141042709350586,0.03895848989486694,0.11354190111160278,0.22385799884796143,0.3654598593711853,0.5326397120952606,0.7186585962772369,0.9160181879997253,1.1167630329728127,1.3128012418746948,1.496230572462082,1.6596571803092957,1.7964933514595032,1.9012233018875122,1.9696404337882996,1.998945415019989,1.987983524799347,1.9371965527534485,1.8486316800117493,1.725858986377716,1.57382732629776,1.3986650109291077,1.2074327170848846,1.007838947698474,0.8079291880130768,0.6157616972923279,0.43908262252807617,0.2850138545036316,0.15976572036743164,0.068386971950531,0.014560997486114502,0.00045752525329589844,0.02664506435394287,0.09206795692443848,0.1940891146659851,0.3285960555076599,0.49016690254211426,0.6722888350486755,0.8676206469535828,1.0682885721325874,1.2662038207054138,1.4533885419368744,1.622297465801239,1.7661218643188477,1.8790643811225891,1.9565722942352295,1.9955213069915771,1.9943414330482483,1.9530802369117737,1.873400866985321,1.7585152387619019,1.6130542755126953,1.442881464958191,1.2548563480377197,1.0565581023693085,0.8559800386428833,0.6612073183059692,0.4800911545753479,0.3198874592781067,0.18715089559555054,0.08717978000640869,0.024003922939300537,0.00016993284225463867,0.016638517379760742,0.07274585962295532,0.16623032093048096,0.2933235168457031,0.448902428150177,0.6266957819461823,0.8195368349552155,1.0196522548794746,1.2189754992723465,1.4094719588756561,1.5834628343582153,1.7339346408843994,1.8548219799995422,1.9412519335746765,1.9897405505180359,1.9983332753181458,1.9666837453842163,1.8960677981376648,1.7893317937850952,1.6507782936096191,1.4859923124313354,1.301616221666336,1.1050821766257286,0.9043123200535774,0.7073995769023895,0.5222814083099365,0.35641980171203613,0.21650052070617676,0.10816365480422974,0.03577625751495361,0.002256155014038086,0.008954524993896484,0.05560135841369629,0.1403164267539978,0.25968480110168457,0.4088948965072632,0.5819320678710938,0.7718213349580765,0.9709083531051874,1.1711680442094803,1.364584892988205,1.5432453751564026,1.700007975101471,1.8285536170005798,1.923700749874115,1.9816140532493591,1.9999589920043945,1.9779961705207825,1.9166108965873718,1.8182775378227234,1.6869599223136902,1.5279513001441956,1.3476612567901611,1.153357207775116,0.9528713971376419,0.7542853206396103,0.5656038522720337,0.3944326639175415,0.24767154455184937,0.13123637437820435,0.049820542335510254,0.006705939769744873,0.003630399703979492,0.040718019008636475,0.1164737343788147,0.22784388065338135,0.37033921480178833,0.5382157862186432,0.7247066497802734,0.9222944229841232,1.1230144649744034,1.318775862455368,1.5016875863075256,1.6643765568733215,1.8002849221229553,1.9039342403411865,1.9711464643478394,1.9992123246192932,1.9870005249977112,1.9350032806396484,1.8453165888786316,1.7215556502342224,1.5687091946601868,1.3929384350776672,1.2012687623500824,1.0015421697171405,0.8017534166574478,0.6099558770656586,0.4338808059692383,0.2806256413459778,0.15636807680130005,0.06611686944961548,0.013509869575500488,0.0006678104400634766,0.02810823917388916,0.09472507238388062,0.19783300161361694,0.33327585458755493,0.4955940246582031,0.6782444417476654,0.8738646656274796,1.0745693296194077,1.272268146276474,1.4589920043945312,1.6272141337394714,1.7701536417007446,1.8820486664772034,1.9583888053894043,1.9960968494415283,1.9936528205871582,1.951155185699463,1.870316982269287,1.7543968558311462,1.6080673933029175,1.4372271001338959,1.2487623989582062,1.0502702444791794,0.8497517257928848,0.6552896201610565,0.47472262382507324,0.3153291940689087,0.18353450298309326,0.08465105295181274,0.02266484498977661,7.444620132446289e-5,0.01779043674468994,0.07509881258010864,0.1696893572807312,0.29774928092956543,0.4541676640510559,0.6325448155403137,0.8257338553667068,1.0259474646300077,1.2251151502132416,1.4152085781097412,1.588565170764923,1.7381970286369324,1.858072578907013,1.9433597326278687,1.9906206130981445,1.9979500770568848,1.9650527834892273,1.8932547569274902,1.7854501008987427,1.645984411239624,1.4804794788360596,1.2956066727638245,1.0988181382417679,0.8980462998151779,0.7013841569423676,0.5167590379714966,0.3516131043434143,0.21260327100753784,0.10533297061920166,0.0341261625289917,0.00185316801071167,0.009814918041229248,0.05769050121307373,0.14355003833770752,0.26393258571624756,0.41398555040359497,0.5876604616641998,0.777956560254097,0.9772030804306269,1.1773685365915298,1.3703843653202057,1.5484701991081238,1.7044475674629211,1.8320289850234985,1.92607182264328,1.9827852249145508,1.9998831152915955,1.9766762256622314,1.914100170135498,1.8146417737007141,1.6823704242706299,1.522593080997467,1.3417503535747528,1.1471318304538727,0.9465825110673904,0.7481864094734192,0.5599407851696014,0.38943368196487427,0.24353820085525513,0.12813526391983032,0.04787665605545044,0.005997598171234131,0.004186272621154785,0.042515575885772705,0.11944055557250977,0.23186039924621582,0.37524348497390747,0.5438101887702942,0.7307656109333038,0.9285737425088882,1.1292610168457031,1.3247378468513489,1.5071247220039368,1.6690696477890015,1.8040447235107422,1.9066092371940613,1.972628891468048,1.9994423985481262,1.9859689474105835,1.9327515959739685,1.841935634613037,1.71718168258667,1.5635185837745667,1.387140303850174,1.1951566636562347,0.9953063656575978,0.7956452667713165,0.6042215824127197,0.42875152826309204,0.2763081192970276,0.15303635597229004,0.06390523910522461,0.012507498264312744,0.0009177327156066895,0.029609978199005127,0.09741806983947754,0.2016087770462036,0.3379821181297302,0.5010410845279694,0.6842127740383148,0.8801136836409569,1.0808471366763115,1.2783216834068298,1.4645772576332092,1.6321059465408325,1.7741548418998718,1.8849979639053345,1.9601673483848572,1.9966329336166382,1.9929248094558716,1.9491924047470093,1.867198646068573,1.7502485513687134,1.6030563712120056,1.4315553605556488,1.2426586002111435,1.0439803935587406,0.8435293585062027,0.6493855714797974,0.4693748354911804,0.31075334548950195,0.1799149513244629,0.08213376998901367,0.021351218223571777,1.7404556274414062e-5,0.018992364406585693,0.07751119136810303,0.17321503162384033,0.30224609375,0.45940321683883667,0.6383515000343323,0.8318776041269302,1.0321806408464909,1.231186494231224,1.4208733439445496,1.593595027923584,1.7423892617225647,1.8612581491470337,1.9454301595687866,1.9914613366127014,1.997527301311493,1.9633835554122925,1.890406310558319,1.7815372943878174,1.6411649584770203,1.474947601556778,1.2895854115486145,1.0925501883029938,0.891784317791462,0.6953805685043335,0.5112558305263519,0.3468320965766907,0.20873719453811646,0.10253769159317017,0.032514333724975586,0.0014898180961608887,0.01071465015411377,0.05981701612472534,0.1468176245689392,0.2682095170021057,0.41909950971603394,0.5934052467346191,0.7841005772352219,0.9834987111389637,1.183561995625496,1.376226007938385,1.5537245273590088,1.7089027762413025,1.8355055451393127,1.9284295439720154,1.9839290976524353,1.999767005443573,1.9753048419952393,1.9115287065505981,1.811009407043457,1.6777987480163574,1.5172664523124695,1.335883378982544,1.1409610509872437,0.9403566718101501,0.7421564757823944,0.554349809885025,0.3844589591026306,0.2394348382949829,0.12506866455078125,0.04597049951553345,0.005328714847564697,0.004781544208526611,0.04435110092163086,0.12244230508804321,0.23590737581253052,0.3801725506782532,0.5494226515293121,0.7368352711200714,0.9348558858036995,1.1355024427175522,1.3306869566440582,1.5125417113304138,1.6737361550331116,1.807772696018219,1.9092483520507812,1.9740727543830872,1.9996328353881836,1.9848982691764832,1.9304630160331726,1.8385213017463684,1.7127792835235596,1.558305561542511,1.3813268542289734,1.188977062702179,0.9890097118914127,0.7894853800535202,0.5984467566013336,0.42359453439712524,0.27197688817977905,0.14970546960830688,0.06170886754989624,0.011534333229064941,0.0012042522430419922,0.03113502264022827,0.10012024641036987,0.20537906885147095,0.34266865253448486,0.5064548850059509,0.6901356279850006,0.8863068222999573,1.0870609357953072,1.2843641936779022,1.4701440632343292,1.636972725391388,1.7781253457069397,1.8879122138023376,1.9619078040122986,1.9971294403076172,1.9921573996543884,1.9471920132637024,1.8640458583831787,1.7460705041885376,1.5980215072631836,1.4258665442466736,1.2365451753139496,1.0376887992024422,0.8373132050037384,0.6434954404830933,0.4640481472015381,0.30620479583740234,0.17632794380187988,0.07965278625488281,0.020076334476470947,5.960464477539063e-8,0.020233213901519775,0.07996022701263428,0.17677348852157593,0.30677056312561035,0.4647113084793091,0.6442292630672455,0.8380881249904633,1.0384735576808453,1.237308144569397,1.4265769720077515,1.5986506938934326,1.746593177318573,1.86444091796875,1.9474435448646545,1.9922552108764648,1.9970696568489075,1.9616928100585938,1.8875506520271301,1.7776318192481995,1.63636714220047,1.4694508016109467,1.2836111783981323,1.0862785652279854,0.8855266273021698,0.6893890500068665,0.5057720243930817,0.34207701683044434,0.2049025297164917,0.09977799654006958,0.030940890312194824,0.0011659860610961914,0.011653542518615723,0.06198078393936157,0.15011900663375854,0.2725154757499695,0.4242364764213562,0.5991661250591278,0.7902531772851944,0.9897949965670705,1.1897481828927994,1.382052719593048,1.5589569211006165,1.7133299112319946,1.8389489650726318,1.9307504296302795,1.985033929347992,1.999611258506775,1.9738947749137878,1.9089211821556091,1.8073095083236694,1.6731556057929993,1.5118672251701355,1.3299457132816315,1.1347243189811707,0.9340722486376762,0.7360776960849762,0.5487217009067535,0.37955647706985474,0.2354009747505188,0.12206602096557617,0.04412013292312622,0.0047051310539245605,0.005409955978393555,0.04620617628097534,0.12544924020767212,0.2399449348449707,0.38512617349624634,0.5550529956817627,0.7429153323173523,0.9411406219005585,1.1417384892702103,1.3366229832172394,1.5179383754730225,1.6783759593963623,1.8114686012268066,1.911851406097412,1.9754779934883118,1.9997836351394653,1.983788549900055,1.928137481212616,1.8350737690925598,1.7083486318588257,1.5530704259872437,1.3754982650279999,1.1827899515628815,0.9827134944498539,0.7833338379859924,0.5926878750324249,0.4184604287147522,0.2676745057106018,0.14640825986862183,0.05954974889755249,0.010600268840789795,0.0015329718589782715,0.03271329402923584,0.10288435220718384,0.20921766757965088,0.3474269509315491,0.511941134929657,0.6961286664009094,0.8925650641322136,1.0933321118354797,1.2903369963169098,1.4756385684013367,1.6417673826217651,1.7820269465446472,1.8907634615898132,1.9635937809944153,1.997582197189331,1.9913586378097534,1.945173978805542,1.8608587980270386,1.7418628931045532,1.5929628610610962,1.4201608300209045,1.2304223626852036,1.031395711004734,0.831103503704071,0.6376194357872009,0.4587426781654358,0.3016837239265442,0.172773540019989,0.07720834016799927,0.018840372562408447,2.2351741790771484e-5,0.021512925624847412,0.08244574069976807,0.18036460876464844,0.31132256984710693,0.4700406789779663,0.6501211524009705,0.8443050682544708,1.0447649471461773,1.2434203773736954,1.4322636723518372,1.6036826372146606,1.7507675290107727,1.8675894141197205,1.9494392275810242,1.9930177330970764,1.996568202972412,1.9599475860595703,1.8846320509910583,1.773657500743866,1.6314972043037415,1.4638816714286804,1.27756729722023,1.0800643563270569,0.8793340623378754,0.6834677457809448,0.5003606677055359,0.33739376068115234,0.20113611221313477,0.09708023071289062,0.029420554637908936,0.0008843541145324707,0.012631654739379883,0.06418174505233765,0.15345412492752075,0.2768503427505493,0.42939627170562744,0.6049428880214691,0.7964140772819519,0.9960916861891747,1.1959268301725388,1.3878642916679382,1.5641671419143677,1.7177287340164185,1.8423591256141663,1.9330344796180725,1.9860997200012207,1.9994158744812012,1.972446084022522,1.906277596950531,1.8035775423049927,1.6684857606887817,1.506447672843933,1.3239949941635132,1.128482237458229,0.9277904406189919,0.7300093770027161,0.5431114733219147,0.37463051080703735,0.23135781288146973,0.11906862258911133,0.04228931665420532,0.004114747047424316,0.006083786487579346,0.04811704158782959,0.12852013111114502,0.24405205249786377,0.3900558352470398,0.560646116733551,0.7489465177059174,0.9473667368292809,1.1479085683822632,1.3424882888793945,1.5232625007629395,1.6829442977905273,1.8150969743728638,1.9144182801246643,1.9768445491790771,1.9998947978019714,1.9826397895812988,1.925775170326233,1.831593096256256,1.7038899064064026,1.547813355922699,1.3696547746658325,1.1765955984592438,0.97641796246171,0.7771908938884735,0.5869451463222504,0.4133493900299072,0.26340121030807495,0.1431449055671692,0.057427942752838135,0.00970548391342163,0.0019012689590454102,0.03432983160018921,0.10568404197692871,0.21308761835098267,0.3522111773490906,0.5174467265605927,0.7021337449550629,0.8988275676965714,1.0995995923876762,1.2963568270206451,1.4811680614948273,1.6465837359428406,1.7859359383583069,1.893607497215271,1.9652583003044128,1.9980000257492065,1.9905129671096802,1.9430989027023315,1.8576690554618835,1.7376670241355896,1.5879300832748413,1.4144940078258514,1.2243499159812927,1.0251623932272196,0.8249605894088745,0.6318145394325256,0.4535098075866699,0.29719042778015137,0.16925197839736938,0.07480049133300781,0.017643272876739502,8.434057235717773e-5,0.022831380367279053,0.08496761322021484,0.18398821353912354,0.31590181589126587,0.4753910303115845,0.6560269296169281,0.8505281805992126,1.0510545633733273,1.2495229691267014,1.43793323636055,1.6086906790733337,1.7549121379852295,1.8707035183906555,1.9513972997665405,1.9937408566474915,1.9960272312164307,1.9581643342971802,1.8816784024238586,1.7696524858474731,1.626602292060852,1.458294153213501,1.2715124189853668,1.0737861692905426,0.8730856478214264,0.6775009632110596,0.49491602182388306,0.3326907753944397,0.19736433029174805,0.09439170360565186,0.027923643589019775,0.0006394386291503906,0.013638854026794434,0.06639796495437622,0.15679001808166504,0.28117138147354126,0.4345283508300781,0.6106791198253632,0.8025232255458832,1.0023274961858988,1.2020977288484573,1.3936604857444763,1.5693550109863281,1.7220991253852844,1.8457358479499817,1.9352814555168152,1.9871264100074768,1.9991808533668518,1.9709588289260864,1.9035980701446533,1.7998137474060059,1.6637893915176392,1.5010080933570862,1.3180314004421234,1.1222350597381592,0.9215114936232567,0.7239517569541931,0.5375193655490875,0.36972928047180176,0.22734510898590088,0.11610615253448486,0.04049652814865112,0.0035638809204101562,0.00679701566696167,0.05006563663482666,0.13162553310394287,0.24818915128707886,0.3950577974319458,0.5663113594055176,0.7550466507673264,0.953655868768692,1.1541331857442856,1.3483974933624268,1.5286180973052979,1.6875303983688354,1.818728744983673,1.9169245958328247,1.9781597256660461,1.999965786933899,1.9814638495445251,1.923399567604065,1.8281136751174927,1.6994469165802002,1.542585849761963,1.3638534843921661,1.1703942567110062,0.970123365521431,0.7710567861795425,0.5812187790870667,0.40826159715652466,0.25915706157684326,0.13991552591323853,0.055343449115753174,0.00884997844696045,0.002309143543243408,0.03598475456237793,0.10851919651031494,0.21698874235153198,0.3570210337638855,0.5229714810848236,0.7081506252288818,0.9050940796732903,1.1058631241321564,1.3023648858070374,1.4866785109043121,1.6513743996620178,1.7898136973381042,1.8964161276817322,1.9668844938278198,1.9983782768249512,1.9896280169487,1.940986454486847,1.8544142246246338,1.7334010004997253,1.5828248858451843,1.408755362033844,1.2182091623544693,1.0188670717179775,0.8187644630670547,0.6259673535823822,0.4482473134994507,0.29276806116104126,0.1657969355583191,0.0724521279335022,0.01649618148803711,0.00018471479415893555,0.024175286293029785,0.08750075101852417,0.18760859966278076,0.3204634189605713,0.48076218366622925,0.6619463264942169,0.8567572236061096,1.0573421567678452,1.2556156516075134,1.443585455417633,1.613674521446228,1.7590267658233643,1.8737830519676208,1.953317642211914,1.99442458152771,1.9954467415809631,1.9563430547714233,1.8786897659301758,1.7656169533729553,1.6216825246810913,1.452688455581665,1.2654467523097992,1.0675050541758537,0.8668422698974609,0.671546995639801,0.48949146270751953,0.3280142545700073,0.19362443685531616,0.09173911809921265,0.026465296745300293,0.0004341006278991699,0.014694809913635254,0.06867265701293945,0.16019177436828613,0.2855631113052368,0.43973296880722046,0.6164868474006653,0.8086999505758286,1.008624249137938,1.2082009017467499,1.3993850946426392,1.5744702816009521,1.7263989448547363,1.8490468263626099,1.9374701380729675,1.9881045818328857,1.998909056186676,1.9694480895996094,1.9008827209472656,1.7960182428359985,1.6590667366981506,1.4955486059188843,1.312055230140686,1.115983046591282,0.915235660970211,0.7179050743579865,0.5319455862045288,0.3648530840873718,0.22336304187774658,0.11317873001098633,0.03874170780181885,0.0030524730682373047,0.007549643516540527,0.05205190181732178,0.1347653865814209,0.25235605239868164,0.4000837802886963,0.5719937980175018,0.7611564844846725,0.9599468372762203,1.1603517085313797,1.3542928993701935,1.5339527130126953,1.6920892596244812,1.8223280310630798,1.9194192290306091,1.9794491529464722,1.9999980330467224,1.980237603187561,1.9209643006324768,1.8245674967765808,1.6949328184127808,1.5372858047485352,1.3579810857772827,1.1642463505268097,0.9638909474015236,0.7649910897016525,0.5755642950534821,0.40324628353118896,0.2549830675125122,0.13675105571746826,0.05331611633300781,0.008041441440582275,0.0027565956115722656,0.0376778244972229,0.11138969659805298,0.22092097997665405,0.36185646057128906,0.5285151302814484,0.7141790986061096,0.9113643541932106,1.1121224611997604,1.3083609640598297,1.4921696186065674,1.6561391949653625,1.7936601638793945,1.8991891741752625,1.9684723615646362,1.998716950416565,1.9887038469314575,1.938836693763733,1.8511254787445068,1.7291059494018555,1.5776965022087097,1.4030005037784576,1.2120597511529922,1.0125710032880306,0.8125755190849304,0.6201350092887878,0.44300663471221924,0.2883303761482239,0.16234105825424194,0.07011735439300537,0.015376687049865723,0.000325620174407959,0.025570809841156006,0.09009474515914917,0.19129645824432373,0.3250964879989624,0.48610156774520874,0.6678215563297272,0.8629314750432968,1.0635665655136108,1.2616392970085144,1.4491655230522156,1.6185861229896545,1.763071894645691,1.8768280148506165,1.9552001953125,1.9950688481330872,1.994826853275299,1.9544839262962341,1.8756662607192993,1.761551022529602,1.6167380809783936,1.4470647871494293,1.2593705654144287,1.0612212643027306,0.8606041669845581,0.6656060218811035,0.48408710956573486,0.32336437702178955,0.1899164319038391,0.089122474193573,0.02504551410675049,0.000268399715423584,0.01578986644744873,0.0709843635559082,0.16362684965133667,0.2899831533432007,0.44495975971221924,0.6223098039627075,0.8148842751979828,1.0149206593632698,1.2143556028604507,1.4051499962806702,1.5796130299568176,1.7307121753692627,1.852356731891632,1.9396432638168335,1.9890533089637756,1.9985952377319336,1.9678843021392822,1.8981584906578064,1.7922284007072449,1.6543641090393066,1.4901227056980133,1.306124746799469,1.1097870916128159,0.9090239703655243,0.7119280397891998,0.526444137096405,0.3600021004676819,0.2194117307662964,0.11028647422790527,0.0370250940322876,0.0025806427001953125,0.008341610431671143,0.054075777530670166,0.13793957233428955,0.2565525770187378,0.4051334857940674,0.5776931643486023,0.767275795340538,0.9662393927574158,1.1665638536214828,1.3601742386817932,1.5392661690711975,1.6966206431388855,1.8258947134017944,1.921877384185791,1.9806997776031494,1.9999906420707703,1.9789724946022034,1.9184924960136414,1.820988655090332,1.6903911232948303,1.5319644212722778,1.3520944714546204,1.1580317914485931,0.9575989544391632,0.7588752806186676,0.5698712170124054,0.39820539951324463,0.2507975697517395,0.13358962535858154,0.05130624771118164,0.007264196872711182,0.0032387375831604004,0.03939211368560791,0.11426711082458496,0.22484546899795532,0.3666698932647705,0.5340234637260437,0.7201603055000305,0.9175773113965988,1.1183167397975922,1.3143448233604431,1.497641235589981,1.6608780026435852,1.7974752187728882,1.901926577091217,1.9700218439102173,1.9990160465240479,1.9877404570579529,1.9366496801376343,1.8478030562400818,1.7247819304466248,1.5725452899932861,1.3972296714782715,1.205901950597763,1.0062744356691837,0.8063940107822418,0.6143177151679993,0.43778806924819946,0.28392088413238525,0.1589183807373047,0.06781947612762451,0.014296174049377441,0.0005061030387878418,0.027005016803741455,0.09272480010986328,0.19501638412475586,0.32975631952285767,0.4915134906768799,0.6737673878669739,0.8691715896129608,1.0698493868112564,1.2677116096019745,1.4547825157642365,1.6235213875770569,1.7671265006065369,1.8798091411590576,1.9570271968841553,1.9956679940223694,1.9941740036010742,1.952605426311493,1.8726378679275513,1.7574947476387024,1.611817479133606,1.441478192806244,1.2532840967178345,1.0549350455403328,0.8543715924024582,0.6596783399581909,0.47870326042175293,0.3187413215637207,0.186240553855896,0.08654201030731201,0.023664414882659912,0.0001423358917236328,0.016923964023590088,0.07333284616470337,0.1670951247215271,0.29443132877349854,0.4502086043357849,0.628147691488266,0.8210759311914444,1.0212164781987667,1.2205018103122711,1.4108988344669342,1.5847327709197998,1.7349964380264282,1.8556328415870667,1.9417791366577148,1.989962875843048,1.9982417821884155,1.966282069683075,1.8953721523284912,1.7883702516555786,1.6495895981788635,1.4846243560314178,1.300124168395996,1.103526160120964,0.9027550667524338,0.7059038579463959,0.5209075212478638,0.3552231192588806,0.21552926301956177,0.10745704174041748,0.03536266088485718,0.0021523237228393555,0.009164631366729736,0.05611693859100342,0.1411166787147522,0.26073747873306274,0.4102068543434143,0.583409309387207,0.7734043300151825,0.9725332874804735,1.1727694123983383,1.3660413026809692,1.5445582866668701,1.7011244297027588,1.8294286131858826,1.9242990016937256,1.9819114804267883,1.9999436140060425,1.977668583393097,1.915984332561493,1.8173772096633911,1.6858221292495728,1.52662193775177,1.3461938798427582,1.1518109738826752,0.9513086415827274,0.7527690380811691,0.5641951858997345,0.39318835735321045,0.24664175510406494,0.130462646484375,0.049334049224853516,0.00652623176574707,0.0037648677825927734,0.04116111993789673,0.1172075867652893,0.2288389801979065,0.3715554475784302,0.5396040976047516,0.7262110710144043,0.92385433614254,1.1245669797062874,1.3202584087848663,1.503040373325348,1.665545105934143,1.8012220859527588,1.9046022295951843,1.9715183973312378,1.9992731809616089,1.9867478609085083,1.9344472885131836,1.8444469571113586,1.7204291820526123,1.5673713684082031,1.3914430737495422,1.1997359693050385,0.9999776197691972],"x":[0.0,0.20111221,0.40222442,0.60333663,0.80444884,1.005561,1.2066733,1.4077854,1.6088977,1.8100098,2.011122,2.2122343,2.4133465,2.6144588,2.8155708,3.016683,3.2177954,3.4189076,3.6200197,3.821132,4.022244,4.2233562,4.4244685,4.625581,4.826693,5.0278053,5.2289176,5.4300294,5.6311417,5.832254,6.033366,6.2344785,6.4355907,6.636703,6.8378153,7.038927,7.2400393,7.4411516,7.642264,7.843376,8.044488,8.245601,8.4467125,8.647825,8.848937,9.05005,9.251162,9.452273,9.653386,9.854498,10.055611,10.256722,10.457835,10.658947,10.860059,11.061172,11.262283,11.463396,11.664508,11.865621,12.066732,12.267845,12.468957,12.670069,12.8711815,13.072293,13.273406,13.474518,13.675631,13.876742,14.077854,14.278967,14.480079,14.681191,14.882303,15.083416,15.284528,15.48564,15.686752,15.887864,16.088976,16.290089,16.491201,16.692314,16.893425,17.094538,17.29565,17.496761,17.697874,17.898987,18.1001,18.30121,18.502323,18.703436,18.904547,19.10566,19.306772,19.507885,19.708996,19.910109,20.111221,20.312332,20.513445,20.714558,20.91567,21.116781,21.317894,21.519007,21.720118,21.92123,22.122343,22.323456,22.524567,22.72568,22.926792,23.127903,23.329016,23.530128,23.731241,23.932352,24.133465,24.334578,24.53569,24.736801,24.937914,25.139027,25.340137,25.54125,25.742363,25.943476,26.144587,26.3457,26.546812,26.747923,26.949036,27.150148,27.351261,27.552372,27.753485,27.954597,28.155708,28.356821,28.557934,28.759047,28.960157,29.16127,29.362383,29.563494,29.764606,29.96572,30.166832,30.367943,30.569056,30.770168,30.97128,31.172392,31.373505,31.574617,31.775728,31.976841,32.17795,32.379066,32.580177,32.78129,32.982403,33.183514,33.38463,33.58574,33.78685,33.987965,34.189075,34.390186,34.5913,34.79241,34.993523,35.194637,35.39575,35.59686,35.797974,35.999084,36.2002,36.40131,36.60242,36.803535,37.004646,37.205757,37.40687,37.607983,37.809093,38.01021,38.21132,38.41243,38.613544,38.814655,39.01577,39.21688,39.41799,39.619106,39.820217,40.021328,40.222443,40.423553,40.624664,40.82578,41.02689,41.228004,41.429115,41.630226,41.83134,42.03245,42.233562,42.434677,42.635788,42.8369,43.038013,43.239124,43.440235,43.64135,43.84246,44.043575,44.244686,44.445797,44.64691,44.848022,45.049133,45.250248,45.45136,45.65247,45.853584,46.054695,46.255806,46.45692,46.65803,46.859146,47.060257,47.261368,47.462482,47.663593,47.864704,48.06582,48.26693,48.46804,48.669155,48.870266,49.07138,49.27249,49.473602,49.674717,49.875828,50.07694,50.278053,50.479164,50.680275,50.88139,51.0825,51.28361,51.484726,51.685837,51.88695,52.088062,52.289173,52.490288,52.6914,52.89251,53.093624,53.294735,53.495846,53.69696,53.89807,54.099182,54.300297,54.501408,54.702522,54.903633,55.104744,55.30586,55.50697,55.70808,55.909195,56.110306,56.311417,56.51253,56.713642,56.914753,57.115868,57.31698,57.518093,57.719204,57.920315,58.12143,58.32254,58.52365,58.724766,58.925877,59.126987,59.328102,59.529213,59.730328,59.93144,60.13255,60.333664,60.534775,60.735886,60.937,61.13811,61.339222,61.540337,61.741447,61.94256,62.143673,62.344784,62.5459,62.74701,62.94812,63.149235,63.350346,63.551456,63.75257,63.953682,64.15479,64.3559,64.55702,64.75813,64.95924,65.160355,65.361465,65.56258,65.763695,65.964806,66.16592,66.36703,66.56814,66.76926,66.97037,67.17148,67.37259,67.5737,67.77481,67.97593,68.17704,68.37815,68.57926,68.78037,68.98149,69.1826,69.38371,69.58482,69.785934,69.987045,70.18816,70.389275,70.590385,70.7915,70.99261,71.19372,71.39484,71.59595,71.79706,71.99817,72.19928,72.4004,72.60151,72.80262,73.00373,73.20484,73.40595,73.60707,73.80818,74.00929,74.2104,74.411514,74.61263,74.81374,75.014854,75.215965,75.417076,75.61819,75.819305,76.02042,76.22153,76.42264,76.62375,76.82486,77.02598,77.22709,77.4282,77.62931,77.83042,78.03154,78.23265,78.43376,78.63487,78.83598,79.037094,79.23821,79.43932,79.640434,79.841545,80.042656,80.243774,80.444885,80.645996,80.84711,81.04822,81.24933,81.45045,81.65156,81.85267,82.05378,82.25489,82.45601,82.65712,82.85823,83.05934,83.26045,83.46156,83.66268,83.86379,84.0649,84.266014,84.467125,84.668236,84.869354,85.070465,85.271576,85.47269,85.6738,85.874916,86.07603,86.27714,86.47825,86.67936,86.88047,87.08159,87.2827,87.48381,87.68492,87.88603,88.08715,88.28826,88.48937,88.69048,88.891594,89.092705,89.29382,89.494934,89.696045,89.897156,90.09827,90.299385,90.500496,90.70161,90.90272,91.10383,91.30494,91.50606,91.70717,91.90828,92.10939,92.3105,92.51161,92.71273,92.91384,93.11495,93.31606,93.51717,93.71829,93.9194,94.120514,94.321625,94.522736,94.72385,94.924965,95.126076,95.32719,95.5283,95.72941,95.93053,96.13164,96.33275,96.53386,96.73497,96.93608,97.1372,97.33831,97.53942,97.74053,97.94164,98.14276,98.34387,98.54498,98.74609,98.947205,99.148315,99.349434,99.550545,99.751656,99.95277,100.15388,100.35499,100.55611,100.75722,100.95833,101.15944,101.36055,101.56167,101.76278,101.96389,102.165,102.36611,102.56722,102.76834,102.96945,103.17056,103.37167,103.572784,103.7739,103.97501,104.176125,104.377235,104.57835,104.77946,104.980576,105.18169,105.3828,105.58391,105.78502,105.98613,106.18725,106.38836,106.58947,106.79058,106.99169,107.19281,107.39392,107.59503,107.79614,107.99725,108.198364,108.39948,108.60059,108.801704,109.002815,109.203926,109.405045,109.606155,109.80727,110.00838,110.20949,110.4106,110.61172,110.81283,111.01394,111.21505,111.41616,111.61728,111.81839,112.0195,112.22061,112.42172,112.62283,112.82395,113.02506,113.22617,113.427284,113.628395,113.829506,114.030624,114.231735,114.432846,114.63396,114.83507,115.03619,115.2373,115.43841,115.63952,115.84063,116.04174,116.24286,116.44397,116.64508,116.84619,117.0473,117.24842,117.44953,117.65064,117.85175,118.052864,118.253975,118.45509,118.656204,118.857315,119.058426,119.25954,119.460655,119.661766,119.86288,120.06399,120.2651,120.46621,120.66733,120.86844,121.06955,121.27066,121.47177,121.67288,121.874,122.07511,122.27622,122.47733,122.678444,122.87956,123.08067,123.281784,123.482895,123.684006,123.88512,124.086235,124.287346,124.48846,124.68957,124.89068,125.0918,125.29291,125.49402,125.69513,125.89624,126.09735,126.29847,126.49958,126.70069,126.9018,127.10291,127.30403,127.50514,127.70625,127.907364,128.10847,128.30959,128.5107,128.7118,128.91292,129.11404,129.31516,129.51627,129.71738,129.91849,130.1196,130.32071,130.52182,130.72293,130.92404,131.12515,131.32628,131.52739,131.7285,131.92961,132.13072,132.33183,132.53294,132.73405,132.93517,133.13628,133.33739,133.53851,133.73962,133.94073,134.14185,134.34296,134.54407,134.74518,134.94629,135.1474,135.34851,135.54962,135.75075,135.95186,136.15297,136.35408,136.55519,136.7563,136.95741,137.15852,137.35963,137.56075,137.76186,137.96298,138.1641,138.3652,138.56631,138.76743,138.96854,139.16965,139.37076,139.57187,139.77298,139.97409,140.1752,140.37633,140.57744,140.77855,140.97966,141.18077,141.38188,141.583,141.7841,141.98521,142.18633,142.38744,142.58856,142.78967,142.99078,143.1919,143.393,143.59412,143.79523,143.99634,144.19745,144.39856,144.59967,144.8008,145.0019,145.20302,145.40413,145.60524,145.80635,146.00746,146.20857,146.40968,146.6108,146.8119,147.01303,147.21414,147.41525,147.61636,147.81747,148.01859,148.2197,148.4208,148.62192,148.82303,149.02414,149.22527,149.42638,149.62749,149.8286,150.02971,150.23082,150.43193,150.63304,150.83415,151.03526,151.23637,151.4375,151.63861,151.83972,152.04083,152.24194,152.44305,152.64417,152.84528,153.04639,153.2475,153.44861,153.64972,153.85085,154.05196,154.25307,154.45418,154.65529,154.8564,155.05751,155.25862,155.45973,155.66084,155.86195,156.06308,156.26419,156.4653,156.66641,156.86752,157.06863,157.26974,157.47086,157.67197,157.87308,158.07419,158.27531,158.47643,158.67754,158.87865,159.07976,159.28087,159.48198,159.68309,159.8842,160.08531,160.28642,160.48755,160.68866,160.88977,161.09088,161.29199,161.4931,161.69421,161.89532,162.09644,162.29755,162.49866,162.69978,162.9009,163.102,163.30312,163.50423,163.70534,163.90645,164.10756,164.30867,164.50978,164.71089,164.91202,165.11313,165.31424,165.51535,165.71646,165.91757,166.11868,166.3198,166.5209,166.72202,166.92313,167.12425,167.32536,167.52647,167.72758,167.9287,168.1298,168.33092,168.53203,168.73314,168.93425,169.13536,169.33647,169.5376,169.73871,169.93982,170.14093,170.34204,170.54315,170.74426,170.94537,171.14648,171.3476,171.5487,171.74983,171.95094,172.15205,172.35316,172.55428,172.75539,172.9565,173.15761,173.35872,173.55983,173.76094,173.96207,174.16318,174.36429,174.5654,174.76651,174.96762,175.16873,175.36984,175.57095,175.77206,175.97318,176.1743,176.37541,176.57652,176.77763,176.97874,177.17986,177.38097,177.58208,177.78319,177.9843,178.18541,178.38654,178.58765,178.78876,178.98987,179.19098,179.39209,179.5932,179.79431,179.99542,180.19653,180.39764,180.59877,180.79988,181.00099,181.2021,181.40321,181.60432,181.80544,182.00655,182.20766,182.40877,182.60988,182.81099,183.01212,183.21323,183.41434,183.61545,183.81656,184.01767,184.21878,184.41989,184.621,184.82211,185.02322,185.22435,185.42546,185.62657,185.82768,186.0288,186.2299,186.43102,186.63213,186.83324,187.03435,187.23546,187.43658,187.6377,187.8388,188.03992,188.24103,188.44214,188.64325,188.84436,189.04547,189.24658,189.4477,189.64882,189.84993,190.05104,190.25215,190.45326,190.65437,190.85548,191.0566,191.2577,191.45882,191.65993,191.86105,192.06216,192.26328,192.46439,192.6655,192.86661,193.06772,193.26883,193.46994,193.67105,193.87216,194.07329,194.2744,194.47551,194.67662,194.87773,195.07884,195.27995,195.48106,195.68217,195.88329,196.0844,196.28552,196.48663,196.68774,196.88885,197.08997,197.29108,197.49219,197.6933,197.89441,198.09552,198.29663,198.49774,198.69887,198.89998,199.10109,199.3022,199.50331,199.70442,199.90553,200.10664,200.30775,200.50887,200.70998,200.9111,201.11221,201.31332,201.51443,201.71555,201.91666,202.11777,202.31888,202.51999,202.7211,202.92221,203.12334,203.32445,203.52556,203.72667,203.92778,204.12889,204.33,204.53111,204.73222,204.93333,205.13445,205.33557,205.53668,205.7378,205.9389,206.14001,206.34113,206.54224,206.74335,206.94446,207.14557,207.34668,207.5478,207.74892,207.95003,208.15114,208.35225,208.55336,208.75447,208.95558,209.1567,209.3578,209.55891,209.76004,209.96115,210.16226,210.36337,210.56448,210.7656,210.9667,211.16782,211.36893,211.57004,211.77115,211.97226,212.17339,212.3745,212.5756,212.77672,212.97783,213.17894,213.38005,213.58116,213.78227,213.98338,214.1845,214.38562,214.58673,214.78784,214.98895,215.19006,215.39117,215.59229,215.7934,215.9945,216.19562,216.39673,216.59785,216.79897,217.00008,217.20119,217.4023,217.60341,217.80452,218.00563,218.20674,218.40785,218.60896,218.81009,219.0112,219.21231,219.41342,219.61453,219.81564,220.01675,220.21786,220.41898,220.62009,220.8212,221.02232,221.22343,221.42455,221.62566,221.82677,222.02788,222.22899,222.4301,222.63121,222.83232,223.03343,223.23456,223.43567,223.63678,223.83789,224.039,224.24011,224.44122,224.64233,224.84344,225.04456,225.24567,225.4468,225.6479,225.84901,226.05013,226.25124,226.45235,226.65346,226.85457,227.05568,227.25679,227.4579,227.65901,227.86014,228.06125,228.26236,228.46347,228.66458,228.86569,229.0668,229.26791,229.46902,229.67014,229.87125,230.07237,230.27348,230.4746,230.6757,230.87682,231.07793,231.27904,231.48015,231.68126,231.88237,232.08348,232.2846,232.48572,232.68683,232.88794,233.08905,233.29016,233.49127,233.69238,233.8935,234.0946,234.29572,234.49684,234.69795,234.89906,235.10017,235.30128,235.5024,235.7035,235.90462,236.10573,236.30684,236.50795,236.70908,236.91019,237.1113,237.31241,237.51352,237.71463,237.91574,238.11685,238.31796,238.51907,238.72018,238.92131,239.12242,239.32353,239.52464,239.72575,239.92686,240.12798,240.32909,240.5302,240.73131,240.93242,241.13353,241.33466,241.53577,241.73688,241.93799,242.1391,242.34021,242.54132,242.74243,242.94354,243.14465,243.34576,243.54689,243.748,243.94911,244.15022,244.35133,244.55244,244.75356,244.95467,245.15578,245.35689,245.558,245.75912,245.96024,246.16135,246.36246,246.56357,246.76468,246.96579,247.1669,247.36801,247.56912,247.77023,247.97136,248.17247,248.37358,248.57469,248.7758,248.97691,249.17802,249.37914,249.58025,249.78136,249.98247,250.1836,250.3847,250.58582,250.78693,250.98804,251.18915,251.39026,251.59137,251.79248,251.99359,252.1947,252.39583,252.59694,252.79805,252.99916,253.20027,253.40138,253.6025,253.8036,254.00471,254.20583,254.40694,254.60806,254.80917,255.01028,255.2114,255.4125,255.61362,255.81473,256.01584,256.21695,256.41806,256.61917,256.82028,257.0214,257.2225,257.4236,257.62473,257.82584,258.02698,258.2281,258.4292,258.6303,258.83142,259.03253,259.23364,259.43475,259.63586,259.83698,260.0381,260.2392,260.4403,260.64142,260.84253,261.04364,261.24475,261.44586,261.64697,261.84808,262.0492,262.2503,262.45145,262.65256,262.85367,263.05478,263.2559,263.457,263.6581,263.85922,264.06033,264.26144,264.46255,264.66367,264.86478,265.0659,265.267,265.4681,265.66922,265.87033,266.07144,266.27255,266.47366,266.67477,266.8759,267.07703,267.27814,267.47925,267.68036,267.88147,268.08258,268.2837,268.4848,268.6859,268.88702,269.08813,269.28925,269.49036,269.69147,269.89258,270.0937,270.2948,270.4959,270.69702,270.89813,271.09924,271.30035,271.5015,271.7026,271.90372,272.10483,272.30594,272.50705,272.70816,272.90927,273.11038,273.3115,273.5126,273.7137,273.91483,274.11594,274.31705,274.51816,274.71927,274.92038,275.1215,275.3226,275.5237,275.72482,275.92596,276.12708,276.3282,276.5293,276.7304,276.93152,277.13263,277.33374,277.53485,277.73596,277.93707,278.13818,278.3393,278.5404,278.74152,278.94263,279.14374,279.34485,279.54596,279.74707,279.94818,280.1493,280.3504,280.55154,280.75266,280.95377,281.15488,281.356,281.5571,281.7582,281.95932,282.16043,282.36154,282.56265,282.76376,282.96487,283.166,283.3671,283.5682,283.76932,283.97043,284.17154,284.37265,284.57376,284.77487,284.976,285.17712,285.37823,285.57935,285.78046,285.98157,286.18268,286.3838,286.5849,286.786,286.98712,287.18823,287.38934,287.59045,287.79156,287.99268,288.1938,288.3949,288.596,288.79712,288.99823,289.19934,289.40048,289.6016,289.8027,290.0038,290.20493,290.40604,290.60715,290.80826,291.00937,291.21048,291.4116,291.6127,291.8138,292.01492,292.21603,292.41714,292.61826,292.81937,293.02048,293.2216,293.4227,293.6238,293.82492,294.02606,294.22717,294.42828,294.6294,294.8305,295.03162,295.23273,295.43384,295.63495,295.83606,296.03717,296.23828,296.4394,296.6405,296.8416,297.04272,297.24384,297.44495,297.64606,297.84717,298.04828,298.2494,298.45053,298.65164,298.85275,299.05386,299.25497,299.4561,299.6572,299.8583,300.05942,300.26053,300.46164,300.66275,300.86386,301.06497,301.26608,301.4672,301.6683,301.86942,302.07053,302.27164,302.47275,302.67386,302.875,303.0761,303.27722,303.47833,303.67944,303.88055,304.08167,304.28278,304.4839,304.685,304.8861,305.08722,305.28833,305.48944,305.69055,305.89166,306.09277,306.29388,306.495,306.6961,306.89722,307.09833,307.29944,307.50058,307.7017,307.9028,308.1039,308.30502,308.50613,308.70724,308.90836,309.10947,309.31058,309.5117,309.7128,309.9139,310.11502,310.31613,310.51724,310.71835,310.91946,311.12057,311.3217,311.5228,311.7239,311.92505,312.12616,312.32727,312.52838,312.7295,312.9306,313.1317,313.33282,313.53394,313.73505,313.93616,314.13727,314.33838,314.5395,314.7406,314.9417,315.14282,315.34393,315.54504,315.74615,315.94727,316.14838,316.34952,316.55063,316.75174,316.95285,317.15396,317.35507,317.55618,317.7573,317.9584,318.15952,318.36063,318.56174,318.76285,318.96396,319.16507,319.36618,319.5673,319.7684,319.9695,320.17062,320.37173,320.57285,320.774,320.9751,321.1762,321.37732,321.57843,321.77954,321.98065,322.18176,322.38287,322.58398,322.7851,322.9862,323.18732,323.38843,323.58954,323.79065,323.99176,324.19287,324.39398,324.5951,324.7962,324.9973,325.19843,325.39957,325.60068,325.8018,326.0029,326.204,326.40512,326.60623,326.80734,327.00845,327.20956,327.41068,327.6118,327.8129,328.014,328.21512,328.41623,328.61734,328.81845,329.01956,329.22067,329.42178,329.6229,329.82404,330.02515,330.22626,330.42737,330.62848,330.8296,331.0307,331.2318,331.43292,331.63403,331.83514,332.03625,332.23737,332.43848,332.6396,332.8407,333.0418,333.24292,333.44403,333.64514,333.84625,334.04736,334.2485,334.44962,334.65073,334.85184,335.05295,335.25406,335.45517,335.65628,335.8574,336.0585,336.2596,336.46072,336.66183,336.86295,337.06406,337.26517,337.46628,337.6674,337.8685,338.0696,338.27072,338.47183,338.67294,338.87408,339.0752,339.2763,339.47742,339.67853,339.87964,340.08075,340.28186,340.48297,340.68408,340.8852,341.0863,341.2874,341.48853,341.68964,341.89075,342.09186,342.29297,342.49408,342.6952,342.8963,343.0974,343.29855,343.49966,343.70078,343.9019,344.103,344.3041,344.50522,344.70633,344.90744,345.10855,345.30966,345.51077,345.71188,345.913,346.1141,346.31522,346.51633,346.71744,346.91855,347.11966,347.32077,347.52188,347.72302,347.92413,348.12524,348.32635,348.52747,348.72858,348.9297,349.1308,349.3319,349.53302,349.73413,349.93524,350.13635,350.33746,350.53857,350.7397,350.9408,351.1419,351.34302,351.54413,351.74524,351.94635,352.14746,352.3486,352.5497,352.75082,352.95193,353.15305,353.35416,353.55527,353.75638,353.9575,354.1586,354.3597,354.56082,354.76193,354.96304,355.16415,355.36526,355.56638,355.7675,355.9686,356.1697,356.37082,356.57193,356.77307,356.97418,357.1753,357.3764,357.5775,357.77863,357.97974,358.18085,358.38196,358.58307,358.78418,358.9853,359.1864,359.3875,359.58862,359.78973,359.99084,360.19196,360.39307,360.59418,360.7953,360.9964,361.19754,361.39865,361.59976,361.80087,362.00198,362.2031,362.4042,362.60532,362.80643,363.00754,363.20865,363.40976,363.61087,363.81198,364.0131,364.2142,364.4153,364.61642,364.81754,365.01865,365.21976,365.42087,365.62198,365.82312,366.02423,366.22534,366.42645,366.62756,366.82867,367.0298,367.2309,367.432,367.63312,367.83423,368.03534,368.23645,368.43756,368.63867,368.83978,369.0409,369.242,369.4431,369.64423,369.84534,370.04645,370.2476,370.4487,370.6498,370.85092,371.05203,371.25314,371.45425,371.65536,371.85648,372.0576,372.2587,372.4598,372.66092,372.86203,373.06314,373.26425,373.46536,373.66647,373.86758,374.0687,374.2698,374.47092,374.67206,374.87317,375.07428,375.2754,375.4765,375.6776,375.87872,376.07983,376.28094,376.48206,376.68317,376.88428,377.0854,377.2865,377.4876,377.68872,377.88983,378.09094,378.29205,378.49316,378.69427,378.8954,379.09653,379.29764,379.49875,379.69986,379.90097,380.10208,380.3032,380.5043,380.7054,380.90652,381.10764,381.30875,381.50986,381.71097,381.91208,382.1132,382.3143,382.5154,382.71652,382.91763,383.11874,383.31985,383.52097,383.7221,383.92322,384.12433,384.32544,384.52655,384.72766,384.92877,385.12988,385.331,385.5321,385.73322,385.93433,386.13544,386.33655,386.53766,386.73877,386.93988,387.141,387.3421,387.5432,387.74432,387.94543,388.14658,388.3477,388.5488,388.7499,388.95102,389.15213,389.35324,389.55435,389.75546,389.95657,390.15768,390.3588,390.5599,390.76102,390.96213,391.16324,391.36435,391.56546,391.76657,391.96768,392.1688,392.3699,392.57104,392.77216,392.97327,393.17438,393.3755,393.5766,393.7777,393.97882,394.17993,394.38104,394.58215,394.78326,394.98438,395.1855,395.3866,395.5877,395.78882,395.98993,396.19104,396.39215,396.59326,396.79437,396.99548,397.19662,397.39774,397.59885,397.79996,398.00107,398.20218,398.4033,398.6044,398.8055,399.00662,399.20773,399.40884,399.60995,399.81107,400.01218,400.2133,400.4144,400.6155,400.81662,401.01773,401.21884,401.41995,401.6211,401.8222,402.02332,402.22443,402.42554,402.62665,402.82776,403.02887,403.22998,403.4311,403.6322,403.8333,404.03442,404.23553,404.43665,404.63776,404.83887,405.03998,405.2411,405.4422,405.6433,405.84442,406.04556,406.24667,406.44778,406.6489,406.85,407.05112,407.25223,407.45334,407.65445,407.85556,408.05667,408.25778,408.4589,408.66,408.8611,409.06223,409.26334,409.46445,409.66556,409.86667,410.06778,410.2689,410.47,410.67114,410.87225,411.07336,411.27448,411.4756,411.6767,411.8778,412.07892,412.28003,412.48114,412.68225,412.88336,413.08447,413.28558,413.4867,413.6878,413.88892,414.09003,414.29114,414.49225,414.69336,414.89447,415.0956,415.29672,415.49783,415.69894,415.90005,416.10117,416.30228,416.5034,416.7045,416.9056,417.10672,417.30783,417.50894,417.71005,417.91116,418.11227,418.3134,418.5145,418.7156,418.91672,419.11783,419.31894,419.52008,419.7212,419.9223,420.1234,420.32452,420.52563,420.72675,420.92786,421.12897,421.33008,421.5312,421.7323,421.9334,422.13452,422.33563,422.53674,422.73785,422.93896,423.14008,423.3412,423.5423,423.7434,423.94452,424.14566,424.34677,424.54788,424.749,424.9501,425.1512,425.35233,425.55344,425.75455,425.95566,426.15677,426.35788,426.559,426.7601,426.9612,427.16232,427.36343,427.56454,427.76566,427.96677,428.16788,428.369,428.57013,428.77124,428.97235,429.17346,429.37457,429.57568,429.7768,429.9779,430.17902,430.38013,430.58124,430.78235,430.98346,431.18457,431.38568,431.5868,431.7879,431.989,432.19012,432.39124,432.59235,432.79346,432.9946,433.1957,433.39682,433.59793,433.79904,434.00015,434.20126,434.40237,434.6035,434.8046,435.0057,435.20682,435.40793,435.60904,435.81015,436.01126,436.21237,436.41348,436.6146,436.8157,437.0168,437.21793,437.41907,437.62018,437.8213,438.0224,438.2235,438.42462,438.62573,438.82684,439.02795,439.22906,439.43018,439.6313,439.8324,440.0335,440.23462,440.43573,440.63684,440.83795,441.03906,441.24017,441.44128,441.6424,441.8435,442.04465,442.24576,442.44687,442.64798,442.8491,443.0502,443.2513,443.45242,443.65353,443.85464,444.05576,444.25687,444.45798,444.6591,444.8602,445.0613,445.26242,445.46353,445.66464,445.86575,446.06686,446.26797,446.46912,446.67023,446.87134,447.07245,447.27356,447.47467,447.67578,447.8769,448.078,448.2791,448.48022,448.68134,448.88245,449.08356,449.28467,449.48578,449.6869,449.888,450.0891,450.29022,450.49133,450.69244,450.8936,451.0947,451.2958,451.49692,451.69803,451.89914,452.10025,452.30136,452.50247,452.70358,452.9047,453.1058,453.30692,453.50803,453.70914,453.91025,454.11136,454.31247,454.51358,454.7147,454.9158,455.1169,455.31802,455.51917,455.72028,455.9214,456.1225,456.3236,456.52472,456.72583,456.92694,457.12805,457.32916,457.53027,457.73138,457.9325,458.1336,458.33472,458.53583,458.73694,458.93805,459.13916,459.34027,459.54138,459.7425,459.94363,460.14474,460.34586,460.54697,460.74808,460.9492,461.1503,461.3514,461.55252,461.75363,461.95474,462.15585,462.35696,462.55807,462.7592,462.9603,463.1614,463.36252,463.56363,463.76474,463.96585,464.16696,464.3681,464.5692,464.77032,464.97144,465.17255,465.37366,465.57477,465.77588,465.977,466.1781,466.3792,466.58032,466.78143,466.98254,467.18365,467.38477,467.58588,467.787,467.9881,468.1892,468.39032,468.59143,468.79254,468.99368,469.1948,469.3959,469.59702,469.79813,469.99924,470.20035,470.40146,470.60257,470.80368,471.0048,471.2059,471.407,471.60812,471.80923,472.01035,472.21146,472.41257,472.61368,472.8148,473.0159,473.217,473.41815,473.61926,473.82037,474.02148,474.2226,474.4237,474.62482,474.82593,475.02704,475.22815,475.42926,475.63037,475.83148,476.0326,476.2337,476.4348,476.63593,476.83704,477.03815,477.23926,477.44037,477.64148,477.84262,478.04373,478.24484,478.44595,478.64706,478.84818,479.0493,479.2504,479.4515,479.65262,479.85373,480.05484,480.25595,480.45706,480.65817,480.85928,481.0604,481.2615,481.46262,481.66373,481.86484,482.06595,482.26706,482.4682,482.6693,482.87042,483.07153,483.27264,483.47375,483.67487,483.87598,484.0771,484.2782,484.4793,484.68042,484.88153,485.08264,485.28375,485.48486,485.68597,485.8871,486.0882,486.2893,486.49042,486.69153,486.89267,487.09378,487.2949,487.496,487.6971,487.89822,488.09933,488.30045,488.50156,488.70267,488.90378,489.1049,489.306,489.5071,489.70822,489.90933,490.11044,490.31155,490.51266,490.71378,490.9149,491.116,491.31714,491.51825,491.71936,491.92047,492.12158,492.3227,492.5238,492.7249,492.92603,493.12714,493.32825,493.52936,493.73047,493.93158,494.1327,494.3338,494.5349,494.73602,494.93713,495.13824,495.33936,495.54047,495.7416,495.94272,496.14383,496.34494,496.54605,496.74716,496.94827,497.14938,497.3505,497.5516,497.75272,497.95383,498.15494,498.35605,498.55716,498.75827,498.95938,499.1605,499.3616,499.5627,499.76382,499.96494,500.16605,500.3672,500.5683,500.7694,500.97052,501.17163,501.37274,501.57385,501.77496,501.97607,502.1772,502.3783,502.5794,502.78052,502.98163,503.18274,503.38385,503.58496,503.78607,503.98718,504.1883,504.3894,504.5905,504.79166,504.99277,505.19388,505.395,505.5961,505.7972,505.99832,506.19943,506.40054,506.60165,506.80276,507.00388,507.205,507.4061,507.6072,507.80832,508.00943,508.21054,508.41165,508.61276,508.81387,509.01498,509.21613,509.41724,509.61835,509.81946,510.02057,510.22168,510.4228,510.6239,510.825,511.02612,511.22723,511.42834,511.62946,511.83057,512.0317,512.2328,512.4339,512.635,512.8361,513.03723,513.23834,513.43945,513.64056,513.8417,514.0428,514.2439,514.445,514.6461,514.8472,515.04834,515.24945,515.45056,515.6517,515.8528,516.05396,516.25507,516.4562,516.6573,516.8584,517.0595,517.2606,517.46173,517.66284,517.86395,518.06506,518.2662,518.4673,518.6684,518.8695,519.0706,519.2717,519.47284,519.67395,519.87506,520.0762,520.2773,520.4784,520.6795,520.8806,521.0817,521.28284,521.48395,521.68506,521.88617,522.0873,522.2884,522.4895,522.6906,522.8917,523.09283,523.29395,523.49506,523.69617,523.8973,524.0984,524.2995,524.5006,524.7017,524.9029,525.104,525.3051,525.5062,525.70734,525.90845,526.10956,526.31067,526.5118,526.7129,526.914,527.1151,527.3162,527.51733,527.71844,527.91956,528.12067,528.3218,528.5229,528.724,528.9251,529.1262,529.32733,529.52844,529.72955,529.93066,530.1318,530.3329,530.534,530.7351,530.9362,531.1373,531.33844,531.53955,531.74066,531.9418,532.1429,532.344,532.5451,532.7462,532.9473,533.14844,533.34955,533.55066,533.7518,533.95294,534.15405,534.35516,534.5563,534.7574,534.9585,535.1596,535.3607,535.5618,535.76294,535.96405,536.16516,536.3663,536.5674,536.7685,536.9696,537.1707,537.3718,537.57294,537.77405,537.97516,538.1763,538.3774,538.5785,538.7796,538.9807,539.1818,539.38293,539.58405,539.78516,539.98627,540.1874,540.3885,540.5896,540.7907,540.9918,541.19293,541.39404,541.59515,541.79626,541.9974,542.1985,542.3996,542.6007,542.8018,543.003,543.2041,543.4052,543.6063,543.80743,544.00854,544.20966,544.41077,544.6119,544.813,545.0141,545.2152,545.4163,545.61743,545.81854,546.01965,546.22076,546.4219,546.623,546.8241,547.0252,547.2263,547.4274,547.62854,547.82965,548.03076,548.2319,548.433,548.6341,548.8352,549.0363,549.2374,549.43854,549.63965,549.84076,550.0419,550.243,550.4441,550.6452,550.8463,551.0474,551.24854,551.44965,551.65076,551.8519,552.05304,552.25415,552.45526,552.6564,552.8575,553.0586,553.2597,553.4608,553.6619,553.86304,554.06415,554.26526,554.4664,554.6675,554.8686,555.0697,555.2708,555.4719,555.67303,555.87415,556.07526,556.27637,556.4775,556.6786,556.8797,557.0808,557.2819,557.48303,557.68414,557.88525,558.08636,558.2875,558.4886,558.6897,558.8908,559.0919,559.293,559.49414,559.69525,559.89636,560.0975,560.2986,560.4997,560.7008,560.902,561.1031,561.3042,561.5053,561.7064,561.90753,562.10864,562.30975,562.51086,562.712,562.9131,563.1142,563.3153,563.5164,563.7175,563.91864,564.11975,564.32086,564.522,564.7231,564.9242,565.1253,565.3264,565.5275,565.72864,565.92975,566.13086,566.332,566.5331,566.7342,566.9353,567.1364,567.3375,567.53864,567.73975,567.94086,568.14197,568.3431,568.5442,568.7453,568.9464,569.1475,569.34863,569.54974,569.75085,569.952,570.15314,570.35425,570.55536,570.7565,570.9576,571.1587,571.3598,571.5609,571.762,571.96313,572.16425,572.36536,572.56647,572.7676,572.9687,573.1698,573.3709,573.572,573.77313,573.97424,574.17535,574.37646,574.5776,574.7787,574.9798,575.1809,575.382,575.5831,575.78424,575.98535,576.18646,576.3876,576.5887,576.7898,576.9909,577.192,577.3931,577.59424,577.79535,577.99646,578.1976,578.3987,578.5998,578.80096,579.0021,579.2032,579.4043,579.6054,579.8065,580.0076,580.20874,580.40985,580.61096,580.8121,581.0132,581.2143,581.4154,581.6165,581.8176,582.01874,582.21985,582.42096,582.6221,582.8232,583.0243,583.2254,583.4265,583.6276,583.82874,584.02985,584.23096,584.43207,584.6332,584.8343,585.0354,585.2365,585.4376,585.63873,585.83984,586.04095,586.24207,586.4432,586.6443,586.8454,587.0465,587.2476,587.4487,587.64984,587.851,588.0521,588.25323,588.45435,588.65546,588.85657,589.0577,589.2588,589.4599,589.661,589.8621,590.06323,590.26434,590.46545,590.66656,590.8677,591.0688,591.2699,591.471,591.6721,591.8732,592.07434,592.27545,592.47656,592.6777,592.8788,593.0799,593.281,593.4821,593.6832,593.88434,594.08545,594.28656,594.4877,594.6888,594.8899,595.091,595.2921,595.4932,595.69434,595.89545,596.09656,596.29767,596.4988,596.69995,596.90106,597.1022,597.3033,597.5044,597.7055,597.9066,598.1077,598.30884,598.50995,598.71106,598.9122,599.1133,599.3144,599.5155,599.7166,599.9177,600.11884,600.31995,600.52106,600.72217,600.9233,601.1244,601.3255,601.5266,601.7277,601.92883,602.12994,602.33105,602.53217,602.7333,602.9344,603.1355,603.3366,603.5377,603.73883,603.93994,604.14105,604.34216,604.5433,604.7444,604.9455,605.1466,605.3477,605.5488,605.75,605.9511,606.1522,606.35333,606.55444,606.75555,606.95667,607.1578,607.3589,607.56,607.7611,607.9622,608.1633,608.36444,608.56555,608.76666,608.9678,609.1689,609.37,609.5711,609.7722,609.9733,610.17444,610.37555,610.57666,610.7778,610.9789,611.18,611.3811,611.5822,611.7833,611.98444,612.18555,612.38666,612.58777,612.7889,612.99,613.1911,613.3922,613.5933,613.79443,613.99554,614.19666,614.39777,614.5989,614.80005,615.00116,615.2023,615.4034,615.6045,615.8056,616.0067,616.2078,616.40894,616.61005,616.81116,617.01227,617.2134,617.4145,617.6156,617.8167,618.0178,618.21893,618.42004,618.62115,618.82227,619.0234,619.2245,619.4256,619.6267,619.8278,620.02893,620.23004,620.43115,620.63226,620.8334,621.0345,621.2356,621.4367,621.6378,621.8389,622.04004,622.24115,622.44226,622.6434,622.8445,623.0456,623.2467,623.4478,623.649,623.8501,624.0512,624.2523,624.4534,624.65454,624.85565,625.05676,625.2579,625.459,625.6601,625.8612,626.0623,626.2634,626.46454,626.66565,626.86676,627.0679,627.269,627.4701,627.6712,627.8723,628.0734,628.27454,628.47565,628.67676,628.87787,629.079,629.2801,629.4812,629.6823,629.8834,630.08453,630.28564,630.48676,630.68787,630.889,631.0901,631.2912,631.4923,631.6934,631.89453,632.09564,632.29675,632.49786,632.69904,632.90015,633.10126,633.30237,633.5035,633.7046,633.9057,634.1068,634.3079,634.50903,634.71014,634.91125,635.11237,635.3135,635.5146,635.7157,635.9168,636.1179,636.31903,636.52014,636.72125,636.92236,637.1235,637.3246,637.5257,637.7268,637.9279,638.129,638.33014,638.53125,638.73236,638.9335,639.1346,639.3357,639.5368,639.7379,639.939,640.14014,640.34125,640.54236,640.74347,640.9446,641.1457,641.3468,641.548,641.7491,641.9502,642.1513,642.3524,642.5535,642.75464,642.95575,643.15686,643.358,643.5591,643.7602,643.9613,644.1624,644.3635,644.56464,644.76575,644.96686,645.16797,645.3691,645.5702,645.7713,645.9724,646.1735,646.37463,646.57574,646.77686,646.97797,647.1791,647.3802,647.5813,647.7824,647.9835,648.18463,648.38574,648.58685,648.78796,648.9891,649.1902,649.3913,649.5924,649.7935,649.9946,650.19574,650.39685,650.598,650.79913,651.00024,651.20135,651.40247,651.6036,651.8047,652.0058,652.2069,652.408,652.60913,652.81024,653.01135,653.21246,653.4136,653.6147,653.8158,654.0169,654.218,654.4191,654.62024,654.82135,655.02246,655.2236,655.4247,655.6258,655.8269,656.028,656.2291,656.43024,656.63135,656.83246,657.03357,657.2347,657.4358,657.6369,657.838,658.0391,658.24023,658.44135,658.64246,658.84357,659.0447,659.2458,659.4469,659.6481,659.8492,660.0503,660.2514,660.4525,660.6536,660.85474,661.05585,661.25696,661.45807,661.6592,661.8603,662.0614,662.2625,662.4636,662.66473,662.86584,663.06696,663.26807,663.4692,663.6703,663.8714,664.0725,664.2736,664.47473,664.67584,664.87695,665.07806,665.2792,665.4803,665.6814,665.8825,666.0836,666.2847,666.48584,666.68695,666.88806,667.0892,667.2903,667.4914,667.6925,667.8936,668.0947,668.29584,668.497,668.6981,668.89923,669.10034,669.30145,669.50256,669.7037,669.9048,670.1059,670.307,670.5081,670.7092,670.91034,671.11145,671.31256,671.5137,671.7148,671.9159,672.117,672.3181,672.5192,672.72034,672.92145,673.12256,673.32367,673.5248,673.7259,673.927,674.1281,674.3292,674.53033,674.73145,674.93256,675.13367,675.3348,675.5359,675.737,675.9381,676.1392,676.34033,676.54144,676.74255,676.94366,677.1448,677.3459,677.54706,677.74817,677.9493,678.1504,678.3515,678.5526,678.7537,678.95483,679.15594,679.35706,679.55817,679.7593,679.9604,680.1615,680.3626,680.5637,680.76483,680.96594,681.16705,681.36816,681.5693,681.7704,681.9715,682.1726,682.3737,682.5748,682.77594,682.97705,683.17816,683.3793,683.5804,683.7815,683.9826,684.1837,684.3848,684.58594,684.78705,684.98816,685.1893,685.3904,685.5915,685.7926,685.9937,686.1948,686.39594,686.5971,686.7982,686.9993,687.20044,687.40155,687.60266,687.8038,688.0049,688.206,688.4071,688.6082,688.8093,689.01044,689.21155,689.41266,689.6138,689.8149,690.016,690.2171,690.4182,690.6193,690.82043,691.02155,691.22266,691.42377,691.6249,691.826,692.0271,692.2282,692.4293,692.63043,692.83154,693.03265,693.23376,693.4349,693.636,693.8371,694.0382,694.2393,694.4404,694.64154,694.84265,695.04376,695.2449,695.44604,695.64716,695.84827,696.0494,696.2505,696.4516,696.6527,696.8538,697.05493,697.25604,697.45715,697.65826,697.8594,698.0605,698.2616,698.4627,698.6638,698.8649,699.06604,699.26715,699.46826,699.6694,699.8705,700.0716,700.2727,700.4738,700.6749,700.87604,701.07715,701.27826,701.4794,701.6805,701.8816,702.0827,702.2838,702.4849,702.68604,702.88715,703.08826,703.28937,703.4905,703.6916,703.8927,704.0938,704.2949,704.4961,704.6972,704.8983,705.0994,705.30054,705.50165,705.70276,705.9039,706.105,706.3061,706.5072,706.7083,706.9094,707.11053,707.31165,707.51276,707.71387,707.915,708.1161,708.3172,708.5183,708.7194,708.92053,709.12164,709.32275,709.52386,709.725,709.9261,710.1272,710.3283,710.5294,710.7305,710.93164,711.13275,711.33386,711.535,711.7361,711.9372,712.1383,712.3394,712.5405,712.74164,712.94275,713.14386,713.34503,713.54614,713.74725,713.94836,714.1495,714.3506,714.5517,714.7528,714.9539,715.155,715.35614,715.55725,715.75836,715.9595,716.1606,716.3617,716.5628,716.7639,716.965,717.16614,717.36725,717.56836,717.7695,717.9706,718.1717,718.3728,718.5739,718.775,718.97614,719.17725,719.37836,719.57947,719.7806,719.9817,720.1828,720.3839,720.585,720.78613,720.98724,721.18835,721.38947,721.5906,721.7917,721.9928,722.1939,722.3951,722.5962,722.7973,722.9984,723.1995,723.40063,723.60175,723.80286,724.00397,724.2051,724.4062,724.6073,724.8084,725.0095,725.21063,725.41174,725.61285,725.81396,726.0151,726.2162,726.4173,726.6184,726.8195,727.0206,727.22174,727.42285,727.62396,727.8251,728.0262,728.2273,728.4284,728.6295,728.8306,729.03174,729.23285,729.43396,729.6351,729.8362,730.0373,730.2384,730.4395,730.6406,730.84174,731.04285,731.24396,731.4451,731.64624,731.84735,732.04846,732.2496,732.4507,732.6518,732.8529,733.054,733.2551,733.45624,733.65735,733.85846,734.0596,734.2607,734.4618,734.6629,734.864,735.0651,735.26624,735.46735,735.66846,735.86957,736.0707,736.2718,736.4729,736.674,736.8751,737.07623,737.27734,737.47845,737.67957,737.8807,738.0818,738.2829,738.484,738.6851,738.8862,739.08734,739.28845,739.48956,739.6907,739.8918,740.0929,740.29407,740.4952,740.6963,740.8974,741.0985,741.2996,741.50073,741.70184,741.90295,742.10406,742.3052,742.5063,742.7074,742.9085,743.1096,743.3107,743.51184,743.71295,743.91406,744.1152,744.3163,744.5174,744.7185,744.9196,745.1207,745.32184,745.52295,745.72406,745.9252,746.1263,746.3274,746.5285,746.7296,746.9307,747.13184,747.33295,747.53406,747.73517,747.9363,748.1374,748.3385,748.5396,748.7407,748.94183,749.14294,749.3441,749.5452,749.74634,749.94745,750.14856,750.3497,750.5508,750.7519,750.953,751.1541,751.3552,751.55634,751.75745,751.95856,752.15967,752.3608,752.5619,752.763,752.9641,753.1652,753.36633,753.56744,753.76855,753.96967,754.1708,754.3719,754.573,754.7741,754.9752,755.17633,755.37744,755.57855,755.77966,755.9808,756.1819,756.383,756.5841,756.7852,756.9863,757.18744,757.38855,757.58966,757.7908,757.9919,758.19305,758.39417,758.5953,758.7964,758.9975,759.1986,759.3997,759.6008,759.80194,760.00305,760.20416,760.4053,760.6064,760.8075,761.0086,761.2097,761.4108,761.61194,761.81305,762.01416,762.2153,762.4164,762.6175,762.8186,763.0197,763.2208,763.42194,763.62305,763.82416,764.02527,764.2264,764.4275,764.6286,764.8297,765.0308,765.23193,765.43304,765.63416,765.83527,766.0364,766.2375,766.4386,766.6397,766.8408,767.04193,767.2431,767.4442,767.6453,767.84644,768.04755,768.24866,768.44977,768.6509,768.852,769.0531,769.2542,769.4553,769.65643,769.85754,770.05865,770.25977,770.4609,770.662,770.8631,771.0642,771.2653,771.46643,771.66754,771.86865,772.06976,772.2709,772.472,772.6731,772.8742,773.0753,773.2764,773.47754,773.67865,773.87976,774.0809,774.282,774.4831,774.6842,774.8853,775.0864,775.28754,775.48865,775.68976,775.89087,776.092,776.29315,776.49426,776.6954,776.8965,777.0976,777.2987,777.4998,777.7009,777.90204,778.10315,778.30426,778.5054,778.7065,778.9076,779.1087,779.3098,779.5109,779.71204,779.91315,780.11426,780.31537,780.5165,780.7176,780.9187,781.1198,781.3209,781.52203,781.72314,781.92426,782.12537,782.3265,782.5276,782.7287,782.9298,783.1309,783.33203,783.53314,783.73425,783.93536,784.1365,784.3376,784.5387,784.7398,784.9409,785.1421,785.3432,785.5443,785.7454,785.94653,786.14764,786.34875,786.54987,786.751,786.9521,787.1532,787.3543,787.5554,787.75653,787.95764,788.15875,788.35986,788.561,788.7621,788.9632,789.1643,789.3654,789.5665,789.76764,789.96875,790.16986,790.371,790.5721,790.7732,790.9743,791.1754,791.3765,791.57764,791.77875,791.97986,792.18097,792.3821,792.5832,792.7843,792.9854,793.1865,793.38763,793.58875,793.78986,793.99097,794.19214,794.39325,794.59436,794.7955,794.9966,795.1977,795.3988,795.5999,795.801,796.00214,796.20325,796.40436,796.60547,796.8066,797.0077,797.2088,797.4099,797.611,797.81213,798.01324,798.21436,798.41547,798.6166,798.8177,799.0188,799.2199,799.421,799.62213,799.82324,800.02435,800.22546,800.4266,800.6277,800.8288,801.0299,801.231,801.4321,801.63324,801.83435,802.03546,802.2366,802.4377,802.6388,802.8399,803.041,803.2422,803.4433,803.6444,803.8455,804.04663,804.24774]} diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..29db85c6e690 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/fixtures/julia/runner.jl @@ -0,0 +1,85 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, filepath ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `filepath::AbstractString`: filepath of the output file + +# Examples + +``` julia +julia> x = range( -1000.0, stop = 1000.0, length = 2001 ); +julia> gen( x, \"./data.json\" ); +``` +""" +function gen( domain, filepath ) + x = collect( domain ); + y = 1.0 .- sin.( x ); + data = Dict([ + ("x", x), + ("expected", y) + ]); + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Negative medium sized values: +x = Float32.( range( -256.0*pi, stop = 0.0, length = 4000 ) ); +out = joinpath( dir, "medium_negative.json" ); +gen( x, out ); + +# Positive medium sized values: +x = Float32.( range( 0.0, stop = 256.0*pi, length = 4000 ) ); +out = joinpath( dir, "medium_positive.json" ); +gen( x, out ); + +# Negative large values: +x = Float32.( range( -2.0^20*(pi/2.0), stop = -2.0^60*(pi/2.0), length = 4000 ) ); +out = joinpath( dir, "large_negative.json" ); +gen( x, out ); + +# Positive large values: +x = Float32.( range( 2.0^20*(pi/2.0), stop = 2.0^60*(pi/2.0), length = 4000 ) ); +out = joinpath( dir, "large_positive.json" ); +gen( x, out ); + +# Negative huge values: +x = Float32.( range( -2.0^60*(pi/2.0), stop = -2.0^120*(pi/2.0), length = 4000 ) ); +out = joinpath( dir, "huge_negative.json" ); +gen( x, out ); + +# Positive huge values: +x = Float32.( range( 2.0^60*(pi/2.0), stop = 2.0^120*(pi/2.0), length = 4000 ) ); +out = joinpath( dir, "huge_positive.json" ); +gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.js b/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.js new file mode 100644 index 000000000000..cfefb723f693 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.js @@ -0,0 +1,173 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var coversinf = require( './../lib' ); + + +// FIXTURES // + +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof coversinf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the coversine (for -256*pi < x < 0)', function test( t ) { + var expected; + var x; + var y; + var i; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for 0 < x < 256*pi)', function test( t ) { + var expected; + var x; + var y; + var i; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for -2**60 (pi/2) < x < -2**20 (pi/2))', function test( t ) { + var expected; + var x; + var y; + var i; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for 2**20 (pi/2) < x < 2**60 (pi/2))', function test( t ) { + var expected; + var x; + var y; + var i; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for x <= -2**60 (PI/2))', function test( t ) { + var expected; + var x; + var y; + var i; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for x >= 2**60 (PI/2))', function test( t ) { + var expected; + var x; + var y; + var i; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = coversinf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) { + var v = coversinf( PINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) { + var v = coversinf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.native.js new file mode 100644 index 000000000000..933a9eb63b1a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/coversinf/test/test.native.js @@ -0,0 +1,182 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var coversinf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( coversinf instanceof Error ) +}; + + +// FIXTURES // + +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof coversinf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the coversine (for -256*pi < x < 0)', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for 0 < x < 256*pi)', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for -2**60 (pi/2) < x < -2**20 (pi/2))', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for 2**20 (pi/2) < x < 2**60 (pi/2))', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for x <= -2**60 (PI/2))', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the coversine (for x >= 2**60 (PI/2))', opts, function test( t ) { + var expected; + var x; + var y; + var i; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = coversinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = coversinf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) { + var v = coversinf( PINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) { + var v = coversinf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +});