diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/README.md b/lib/node_modules/@stdlib/math/base/special/versinf/README.md new file mode 100644 index 000000000000..e4f67b587b5f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/README.md @@ -0,0 +1,200 @@ + + +# Versine + +> Compute the [versed sine][versed-sine] of a single-precision floating-point number (in radians). + +
+ +The [versed sine][versed-sine] is defined as + + + +```math +\mathop{\mathrm{versin}}(\theta) = 1 - \cos \theta +``` + + + +
+ + + +
+ +## Usage + +```javascript +var versinf = require( '@stdlib/math/base/special/versinf' ); +``` + +#### versinf( x ) + +Computes the [versed sine][versed-sine] of a single-precision floating-point number (in radians). + +```javascript +var v = versinf( 0.0 ); +// returns 0.0 + +v = versinf( 3.141592653589793/2.0 ); +// returns ~1.0 + +v = versinf( -3.141592653589793/6.0 ); +// returns ~0.13397 +``` + +
+ + + +
+ +## 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 versinf = require( '@stdlib/math/base/special/versinf' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'versinf(%0.4f) = %0.4f', x, versinf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/versinf.h" +``` + +#### stdlib_base_versinf( x ) + +Computes the [versed sine][versed-sine] of a single-precision floating-point number (in radians). + +```c +float out = stdlib_base_versinf( 0.0f ); +// returns 0.0f + +out = stdlib_base_versinf( 3.141592653589793f / 2.0f ); +// returns ~1.0f +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_versinf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/versinf.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_versinf( x[ i ] ); + printf( "versinf(%f) = %f\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/benchmark.js new file mode 100644 index 000000000000..37614ddf71f5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 versinf = 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 = versinf( 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/versinf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..5e11d0fdffeb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 versinf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( versinf 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 = versinf( 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/versinf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/c/Makefile new file mode 100644 index 000000000000..d564e8b2d6f9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/c/benchmark.c new file mode 100644 index 000000000000..6a6201a40799 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 "versinf" +#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 - cosf( 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/versinf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..a4bd7b38fd74 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/versinf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..104521725872 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf.h" +#include +#include +#include +#include +#include + +#define NAME "versinf" +#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_versinf( 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/versinf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/versinf/binding.gyp new file mode 100644 index 000000000000..68a1ca11d160 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/versinf/docs/repl.txt new file mode 100644 index 000000000000..7f90f216156d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/docs/repl.txt @@ -0,0 +1,33 @@ + +{{alias}}( x ) + Computes the versed sine of a single-precision floating-point number + (in radians). + + The versed sine is defined as `1 - cos(x)`. + + Parameters + ---------- + x: number + Input value (in radians). + + Returns + ------- + y: number + Versed sine. + + Examples + -------- + > var y = {{alias}}( 3.14 ) + ~2.0 + > y = {{alias}}( -4.2 ) + ~1.490 + > y = {{alias}}( -4.6 ) + ~1.112 + > y = {{alias}}( 9.5 ) + ~1.997 + > y = {{alias}}( -0.0 ) + 0.0 + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/versinf/docs/types/index.d.ts new file mode 100644 index 000000000000..248f32b4ae2d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/docs/types/index.d.ts @@ -0,0 +1,52 @@ +/* +* @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 versed sine of a single-precision floating-point number (in radians). +* +* ## Notes +* +* - The versed sine is defined as `1 - cos(x)`. +* +* @param x - input value (in radians) +* @returns versed sine +* +* @example +* var v = versinf( 0.0 ); +* // returns 0.0 +* +* @example +* var v = versinf( 3.141592653589793/2.0 ); +* // returns ~1.0 +* +* @example +* var v = versinf( -3.141592653589793/6.0 ); +* // returns ~0.13397 +* +* @example +* var v = versinf( NaN ); +* // returns NaN +*/ +declare function versinf( x: number ): number; + + +// EXPORTS // + +export = versinf; diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/versinf/docs/types/test.ts new file mode 100644 index 000000000000..41be44304970 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 versinf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + versinf( 2 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + versinf( true ); // $ExpectError + versinf( false ); // $ExpectError + versinf( null ); // $ExpectError + versinf( undefined ); // $ExpectError + versinf( '5' ); // $ExpectError + versinf( [] ); // $ExpectError + versinf( {} ); // $ExpectError + versinf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + versinf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/versinf/examples/c/Makefile new file mode 100644 index 000000000000..25ced822f96a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/versinf/examples/c/example.c new file mode 100644 index 000000000000..7251776467e4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf.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_versinf( x[ i ] ); + printf( "versinf(%f) = %f\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/versinf/examples/index.js new file mode 100644 index 000000000000..55607adc49c0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 versinf = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'versinf(%0.4f) = %0.4f', x, versinf ); diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/include.gypi b/lib/node_modules/@stdlib/math/base/special/versinf/include.gypi new file mode 100644 index 000000000000..ecfaf82a3279 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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", + "versin", + "versinf", + "versine", + "versed sine", + "cosine", + "cos", + "trig", + "trigonometry", + "radians", + "angle" + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "vercos", + "alias": "vercosf", + "pkg_desc": "compute the versed sine", + "desc": "computes the versed sine", + "short_desc": "versed sine", + "parameters": [ + { + "name": "x", + "desc": "input value (in radians)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -10, + 10 + ] + }, + "example_values": [ + 64, + 27, + 0, + 0.1, + -9, + 8, + -1, + 125, + -10.2, + 11.3, + -12.4, + 3.5, + -1.6, + 15.7, + -16, + 17.9, + -188, + 19.11, + -200, + 21.15 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "versed sine", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "versin", + "versinf", + "versine", + "versed sine", + "cosine", + "cos", + "trig", + "trigonometry", + "radians", + "angle" + ], + "extra_keywords": [] + } + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/versinf/src/Makefile new file mode 100644 index 000000000000..7733b6180cb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/versinf/src/addon.c new file mode 100644 index 000000000000..86f7dd72db08 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_versinf ) diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/src/main.c b/lib/node_modules/@stdlib/math/base/special/versinf/src/main.c new file mode 100644 index 000000000000..73578a1c50b7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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/versinf.h" +#include "stdlib/math/base/special/cosf.h" + +/** +* Computes the versed sine of a single-precision floating-point number (in radians). +* +* @param x input value (in radians) +* @return versed sine +* +* @example +* float y = stdlib_base_versinf( 0.0f ); +* // returns 0.0f +*/ +float stdlib_base_versinf( const float x ) { + return 1.0f - stdlib_base_cosf( x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..fb26b9055d39 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[1.9941202,0.00861454,0.034309804,0.07664299,0.13488477,0.30187857,0.29482365,0.51176846,0.5031514,0.7551606,1.0252529,1.0153536,1.0054526,0.99555117,1.52326,1.5147967,1.5062829,1.4977195,1.8801074,1.8753633,1.9987246,1.9991755,1.9995285,1.9997835,1.9999405,1.9999995,1.9999604,1.4435456,1.452398,1.461206,1.4699688,1.4786854,1.4873552,1.4959772,1.5045506,0.44257432,0.450822,0.45912355,0.4674781,0.47588485,0.005098462,0.49285167,0.0032964945,0.5100174,0.0018854141,0.5273752,0.00086569786,0.60227174,0.00023782253,0.58418155,2.026558e-6,0.5662545,0.00015830994,0.5484975,1.6065346,0.5309175,1.5906723,0.51352155,1.5745782,0.49631637,1.5582588,0.47930866,1.5417205,1.992588,1.5249698,1.9947999,1.5080132,1.9966216,1.4908574,1.9980525,1.3785532,1.9990921,1.3968071,1.9997398,1.4149053,1.9999955,1.4328408,0.37705523,1.4506066,0.3926676,0.020341814,0.40851808,1.4856012,1.9970982,0.013164282,0.44090867,1.519834,0.6968306,0.007534504,0.4741761,1.5532517,0.6593362,0.0034614205,0.50826824,1.6836245,0.6223761,0.0009512305,0.5431317,1.6541901,0.58600825,8.046627e-6,1.9707034,1.6237297,0.55028975,0.00063329935,1.9794562,1.592291,0.5152766,1.2642314,1.9866729,1.5599234,0.48102373,1.3022127,1.992342,1.5266775,0.28730887,1.3397199,1.9964547,1.4926056,0.31564325,1.3766942,1.9990045,1.457761,0.345051,1.4130778,1.9999874,0.029538274,0.37548602,1.4488134,1.9994019,0.020746648,0.40690053,1.4838451,0.7367368,0.013490975,0.43924522,1.5181179,0.6987443,0.007782519,0.47246945,1.7133949,0.66122437,0.0036302805,0.5065211,1.6850884,0.62423587,0.0010408163,1.959867,1.6557072,0.5878366,1.8119812e-5,1.9702191,1.6252977,0.55208385,1.2238797,1.9790494,1.5939074,0.5170336,1.2622948,1.9863442,0.080539644,0.48274088,1.3002983,0.93368316,1.528383,0.28590202,0.0115906,1.9962838,0.052310526,0.4166417,1.3748337,0.8549361,1.459545,0.34353524,1.8161767,1.9999753,0.030024588,1.8849981,1.4470184,0.7770988,1.3878251,0.4052853,1.7678963,1.9973958,0.013821602,1.9190652,1.5163999,0.7006593,1.0653152,0.470765,1.7148004,0.14014864,0.0038031936,1.9473686,1.5825427,0.6260971,1.1440706,0.53956366,1.6572217,0.18324381,3.2246113e-5,1.9697309,0.115469754,0.55387974,1.2219225,0.6112498,1.5955215,0.23146105,0.0025323033,1.9860115,0.081330895,0.48446006,1.2983828,0.9356865,1.5300865,0.28449804,1.8603635,1.9961088,0.052953243,0.4182735,1.3729718,0.8569228,1.4613272,0.34202206,1.8173349,1.9999592,0.030514777,1.8840616,1.4452217,0.7790563,0.9841427,0.40367246,1.7691808,1.9975386,0.014156222,1.9182721,1.5146794,0.70257545,1.0633117,0.46906263,1.716203,0.1391254,0.0039801598,1.9467239,1.5809097,0.62795985,1.1420836,0.53778243,1.6587335,0.18208706,5.0365925e-5,1.9692386,0.11640805,0.5556774,1.2199645,1.016861,1.597133,0.23017812,0.0023915768,1.985675,0.08212578,0.48618138,1.296466,0.93769014,1.5317878,0.2830969,1.8613849,1.99593,0.053599775,1.8432293,1.3711082,0.8589101,1.4631075,0.34051156,1.81849,1.999939,0.0310089,1.8831215,1.443423,0.7810148,0.9821354,0.40206206,1.7704623,0.100682735,0.014494836,1.9174753,1.5129571,0.70449287,1.061308,0.4673624,1.7176025,0.13810563,0.0041611195,1.9460754,0.15731072,0.62982416,1.1400961,0.536003,1.6602427,0.18093365,7.253885e-5,1.9687426,0.11734992,0.5574769,1.2180057,1.0188682,1.5987422,0.22889829,1.8997557,1.9853344,0.082924426,0.4879048,1.294548,0.939694,1.5334868,0.2816987,1.8624029,1.9957469,0.05425018,1.8421483,0.3091854,0.7575737,1.464886,0.33900374,1.8196418,0.068169296,1.9912041,0.3588112,1.4416227,0.7829741,0.9801281,1.2556434,0.046093702,1.997812,0.014837384,1.9166749,0.20376927,1.6306568,1.3193862,0.46566433,1.7189994,0.13708931,1.9579129,0.24577671,1.5776367,0.6316899,1.138108,1.099922,0.6677115,1.9748863,9.87649e-5,1.9682426,0.11829537,1.7451924,0.4335568,0.60570776,1.600349,0.22762156,1.90063,0.022165298,1.6991833,0.48963022,1.2926288,0.9416981,0.8206705,1.4067967,0.010403335,1.9955599,0.05490434,1.8410641,0.31063837,0.7556265,1.4666625,0.33749855,1.8207903,0.067442596,1.9914678,0.3603531,1.4398205,0.7849344,0.9781209,1.2575837,0.5213113,1.9979428,0.015183926,1.9158707,0.2049855,1.6290975,1.3212881,0.4639684,1.7203932,0.13607645,1.9584873,0.0012752414,1.5759966,0.63355714,1.1361194,1.1019194,0.66581863,1.9753314,0.00012898445,1.9677386,0.11924434,1.7438521,0.43521243,0.60386354,1.6019534,0.22634792,1.9015007,0.021746933,1.6977465,0.49135774,1.2907085,0.9437024,0.8186958,1.4086299,0.010116518,1.995369,0.055562317,1.8399763,0.31209415,1.4968454,1.4684372,0.33599603,1.8219354,0.06671971,1.9917276,0.36189765,1.4380167,0.78689545,0.9761138,1.259523,0.5195496,1.9980695,0.015534461,1.9150629,0.20620489,1.6275356,1.3231887,0.46227467,1.7217841,0.1350671,1.9590578,0.0011758804,1.5743544,0.63542587,1.1341301,1.1039164,0.6639271,1.9757726,0.00016325712,1.9672309,0.12019688,1.7425089,0.43687034,0.602021,1.6035553,0.22507745,1.9023678,0.021332502,1.9994972,0.4930873,1.288787,0.94570696,0.8167218,1.4104614,0.009833634,1.9951739,0.056224108,1.8388853,0.31355268,1.495102,1.47021,0.3344962,1.8230773,0.06600052,1.9919832,0.3634447,1.436211,0.7888574,0.9741068,1.2614614,0.51778984,1.9981922,0.01588893,1.9142513,0.2074275,1.6259713,1.3250879,0.46058303,1.7231722,0.13406128,1.9596245,0.0010805726,1.5727098,0.6372961,1.1321403,1.1059129,0.6620369,1.5508578,0.0002015233,1.9667192,0.12115294,1.7411625,0.43853056,0.60018,1.6051549,0.22381008,1.9032311,0.020922005,1.9994314,0.49481887,1.2868643,0.94771177,0.8147485,1.4122913,0.009554803,1.994975,0.056889713,1.8377908,0.31501395,1.4933568,1.4719809,0.3329991,1.8242159,0.065285146,1.992235,0.0064840913,1.4344035,0.7908202,0.9720999,1.2633986,0.516032,1.9983108,0.016247392,1.913436,0.20865333,1.6244044,0.5779287,0.45889366,1.7245574,0.1330589,1.9601872,0.0009892583,1.5710628,0.63916767,1.1301501,1.1079091,0.6601481,1.5525322,0.0002438426,1.9662037,0.12211257,1.7398133,0.440193,0.59834063,1.6067519,0.2225458,1.9040909,0.020515442,1.9993618,0.49655253,1.2849405,0.94971675,0.812776,1.4141195,0.38245696,1.994772,0.057559133,1.836693,0.316478,1.4916095,1.4737499,0.33150464,1.825351,0.06457353,1.9924827,0.006714344,1.4325944,0.79278386,0.9700931,1.2653348,0.51427615,1.9984255,0.016609788,1.9126172,0.20988232,1.6228349,0.5797496,0.45720637,1.7259396,0.13205999,1.9607462,0.0009019971,1.5694137,0.6410408,1.1281592,1.1099048,0.65826064,1.5542045,0.00029021502,1.9656842,0.12307572,1.738461,0.4418577,1.3461885,1.6083465,0.22128469,1.904947,0.020112872,1.999288,0.49828815,1.2830155,0.95172197,0.81080425,1.415946,0.3808791,1.9945649,0.058232307,1.8355918,0.31794482,1.4898603,1.475517,0.33001286,1.826483,0.06386566,1.9927263,0.0069485903,1.4307835,0.7947483,0.9680864,1.2672701,0.5125222,1.9985361,0.016976178,1.9117945,0.21111453,1.621263,0.5815722,1.1918764,1.0455503,0.7196046,1.882459,0.25374073,1.5677621,0.64291537,1.1261679,1.1119,0.6563746,1.5558745,0.26338303,1.8756086,0.035028636,1.0599004,1.1777539,0.5946667,1.6099387,0.22002673,1.9057996,0.019714177,1.9992102,0.038499832,1.869293,0.27218503,0.18012547,1.9319781,0.008742154,1.9943539,0.058909297,1.8344872,0.31941438,1.488109,0.7320333,1.0326363,1.204544,0.08348757,1.7959847,0.3696586,1.4289708,0.7967136,0.9660799,1.2692041,0.51077026,1.6815262,0.16480565,1.9415243,0.86229444,0.8996737,1.3326716,0.45383847,1.7286954,0.13007277,1.9618523,0.00073957443,1.9800313,0.09474546,1.7791687,0.39107972,0.099193394,1.9779197,0.00039499998,1.9646335,0.12501264,1.7357476,0.44519383,1.3424188,0.88937664,0.8725579,1.3582842,0.15915579,1.6890672,0.50176555,1.2791622,0.95573294,0.80686307,1.4195942,0.3777309,1.7896743,0.08767867,1.9832587,1.0222853,0.7420237,1.4790454,0.32703745,1.8287368,0.062461257,1.9932017,0.007429123,1.9356818,0.17424089,1.6690329,1.8641281,0.041396916,1.9987452,0.017720819,1.9101384,0.21358842,1.6181116,0.5852225,1.1879342,1.0495611,0.7157527,1.8805633,0.25641954,1.5644522,0.6466688,1.1221837,1.1158891,0.6526066,1.5592077,0.2606734,1.877541,0.033982992,1.0558919,1.1817038,0.59099936,1.6131157,0.21752018,1.9074936,0.018928766,1.9990426,0.039610982,1.8673012,0.27494442,1.5417142,1.9334261,0.008220375,1.9939198,0.06027466,1.832268,0.3223617,1.4846005,0.73590386,1.0286229,1.2084727,0.5662478,1.7935479,0.37278074,1.4253403,0.80064666,0.9620672,1.2730689,0.50727224,1.6844591,0.16260415,1.9428697,0.0050976872,0.89567953,1.3364556,0.4504794,1.7314392,0.1280995,1.9629431,0.00059324503,1.9792249,0.09645873,1.7766457,0.3942697,0.09745717,1.978751,0.0005158782,1.9635674,0.12696368,1.7330222,0.4485389,1.3386436,0.8933681,0.8685764,1.36203,0.16133595,1.6861517,0.50525093,1.2753042,0.9597446,0.80292493,1.4232354,0.37459278,1.7921314,0.08604187,1.9839824,1.0262994,0.7381464,1.4825661,0.3240729,1.8309772,0.061071992,1.9936612,0.00792563,1.9342575,0.17651224,1.6660433,1.8661419,0.04026133,1.9989382,0.018481255,1.9084675,0.216075,1.6149503,0.58887935,1.1839889,1.053571,0.71190536,1.5062892,0.25911033,1.5611331,0.65042794,1.1181976,1.1198764,0.6488442,1.562532,0.2579757,1.8794591,0.032952905,1.9998235,1.1856507,0.58733857,1.6162827,0.21502632,1.9091729,0.018159091,1.9988589,0.04073763,1.8652955,0.27771556,1.5383348,1.9348593,0.0077145696,1.9934697,0.061655164,1.8300352,0.32532,1.4810843,0.7397787,1.0246091,1.212398,0.5626334,1.7910981,0.37591308,1.4217029,0.80458295,0.95805514,1.2769294,0.5037823,1.6873809,0.16041619,1.9441998,0.00470078,0.89168704,1.340234,0.44712913,1.7341714,0.12614036,1.9640182,0.00046300888,1.9784029,0.09818655,1.7741101,0.3974694,0.09573549,1.9795663,0.0006529093,1.9624857,0.12892878,1.7302852,0.4518929,1.3348627,0.89736134,0.8645971,1.36577,0.42459446,1.6832254,0.50874436,1.2714419,0.9637569,0.79899,1.42687,0.37146473,1.7945757,0.08441985,1.9846902,0.0020111203,0.73427343,1.486079,0.3211192,1.8332042,0.059697866,1.9941046,0.00843817,1.9328182,0.17879689,1.6630429,0.53269815,0.039141178,1.9991152,0.019257605,1.9067819,0.21857423,1.611779,0.5925429,1.1800408,1.0575801,0.70806265,1.5097479,0.26181304,1.5578051,0.6541927,1.1142094,1.1238618,0.6450875,1.5658472,0.25528997,1.8813633,0.031938434,1.9998908,1.1895947,0.58368444,1.6194398,0.21254504,1.9108377,0.017405272,1.9986591,0.041879773,1.8632759,0.28049833,1.5349467,1.9362772,0.007224798,1.9930036,0.06305081,1.8277893,0.3282891,1.4775605,0.7436577,1.0205948,1.21632,0.5590261,1.7886357,0.37905544,1.4180588,0.80852234,0.95404375,1.2807853,0.50030017,1.6902916,0.15824175,1.9455147,0.004319966,1.9894111,1.344007,0.4437878,1.7368917,0.12419528,1.9650779,0.000348866,1.9775649,0.099928916,1.7715619,0.4006788,1.3931115,1.980366,0.0008060336,1.9613883,0.1309079,1.7275363,0.4552557,1.3310766,0.9013562,0.86061984,1.3695041,0.4213152,1.6802878,0.51224566,1.2675753,0.96776986,0.7950583,1.4304976,0.3683468,1.7970072,0.08281255,1.9853823,0.0022736788,0.7304046,1.4895841,0.3181765,1.8354177,0.05833888,1.9945319,0.008966684,1.9313638,0.18109477,1.6600318,0.5362518,0.038036525,1.9992759,0.020049691,1.9050817,0.22108603,1.608598,0.59621304,1.1760896,1.0615882,0.70422465,1.5131981,0.26452768,1.5544682,0.657963,1.1102196,1.127845,0.64133644,1.5691533,0.25261623,1.8832531,0.030939579,1.9999421,0.025852144,0.58003706,1.6225871,0.21007651,1.9124876,0.016667306,1.9984431,0.043037295,1.8612423,0.28329265,1.5315499,0.68373525,0.006751001,1.9925214,0.06446159,1.8255298,0.3312691,1.4740288,0.7475409,1.0165802,1.2202384,0.5554259,1.6437117,0.3822078,1.4144077,0.8124649,0.95003307,1.2846369,0.49682623,1.6931913,0.1560809,1.9468143,0.0039551854,1.9888203,1.3477744,0.4404555,1.7396002,0.122264266,1.9661219,0.00025087595,1.9767113,0.10168582,1.7690014,0.40389788,1.3894162,1.9811499,0.0009752512,1.9602757,0.13290107,1.7247757,0.45862728,1.3272852,0.9053527,0.8566449,1.3732322,0.41804516,1.6773394,0.5157548,1.2637042,0.9717833,0.79112995,1.4341183,0.36523902,1.7994258,0.08122003,1.9860584,0.0025523305,0.7265402,1.4930812,0.31524473,1.8376179,0.056995094,1.9949431,0.009511173,1.9298943,0.18340582,1.6570101,0.5398129,1.2372811,1.9994206,0.020857573,1.903367,0.2236104,1.605407,0.59988964,1.1721357,1.0655954,0.7003914,1.5166402,0.29561096,1.5511222,0.6617388,1.1062279,1.1318264,0.63759124,1.5724502,0.24995458,1.8851287,0.02995634,1.9999772,0.026767135,0.57639647,1.6257242,0.20762068,1.9141229,0.015945196,1.9982111,0.044210315,1.8591948,0.2860986,1.5281446,0.68754697,0.006293237,1.9920232,0.06588739,1.8232572,0.33425987,1.4704895,0.7514281,1.0125654,1.2241533,0.5518328,1.6467793,0.3853702,1.4107502,0.8164104,0.9460232,1.2884837,0.49336034,1.6960797,0.15393358,1.9480987,0.0036064386,1.9882135,1.3515363,0.43713212,1.7422966,0.12034744,1.9671504,0.00016897917,1.9758419,0.10345715,1.7664285,0.4071266,1.3857148,0.8433058,0.001160562,1.9591475,0.1349082,1.7220035,0.46200764,1.3234884,0.9093507,0.8526723,1.3769543,0.4147846,1.760307,0.51927185,1.2598289,0.9757972,0.7872049,1.437732,0.36214155,1.8018317,0.079642296,1.9867185,0.0028470755,1.9510695,1.4965705,0.31232405,1.8398044,0.055666506,1.9953384,0.010071635,1.9284099,0.1857301,1.6539776,0.54338145,1.2333786,1.9995493,0.021681309,1.9016378,0.2261473,1.6022062,0.6035727,1.168179,1.0696014,0.696563,1.5200739,0.2927665,1.5477672,0.66552013,1.1022345,1.1358055,0.6338519,1.5757377,0.24730498,1.8869901,0.028988719,1.9999962,0.027697742,0.5727626,1.6288512,0.20517766,1.9157435,0.015239,1.9979631,0.045398712,1.8571334,0.288916,1.5247308,0.6913637,0.005851507,1.9915091,0.067328334,1.8209713,0.33726132,1.4669427,0.75531936,1.0085503,1.2280645,0.548247,1.6498363,0.18891245,1.9263668,0.010859549,1.9958503,0.05388385,1.8427569,1.7379129,0.44253212,1.3454261,0.8861942,0.8757351,1.3552923,0.43381786,1.744981,0.11844486,1.9681633,0.000103235245,1.9749568,0.10524297,1.763843,0.4103648,1.3820071,0.84727275,0.9147909,1.3183159,0.4666193,1.718214,0.13766056,0.063580215,1.9928238,0.0070445538,1.9368072,0.1724388,1.6714098,0.5227966,1.2559495,0.97981143,0.78328335,1.4413385,0.35905433,1.8042245,0.07807946,1.9873629,0.0031579137,1.9498212,0.15103489,1.6999903,0.48865932,1.2937086,0.94057065,0.82178164,0.6556115,1.5565498,0.2628337,1.8760008,0.03481579,1.9996617,0.02252078,1.899894,0.22869664,1.5989959,0.60726225,1.1642196,1.0736064,0.69273955,1.5234993,0.2899335,1.8563876,0.04583049,1.9978697,0.014988542,1.9163235,0.20430094,0.32001,1.4873996,0.73281634,1.0318241,1.2053393,0.5691357,1.6319681,0.20274746,1.9173493,0.0145486,1.9976988,0.046602488,1.8550583,0.2917449,1.5213085,0.6951854,1.071044,1.1667533,0.6049008,1.6010511,0.22706401,1.9010115,1.9620743,0.0007086396,1.9798694,0.095091045,1.7786591,0.39172453,1.4034152,0.8243103,0.9380062,1.2961634,0.48645318,1.7018228,0.14968002,1.9506216,0.0029571652,1.9869524,0.07907772,1.802695,0.3610285,1.4390316,0.7857922,0.9772429,1.2584323,1.4203317,0.37709498,1.7901726,0.087346256,1.9834065,0.0015795827,1.9568447,0.1389643,1.716424,0.46879423,1.3158792,0.917351,0.8447342,1.3843802,0.40829176,1.7654988,0.10409868,1.9755249,0.00014346838,1.967517,0.119660616,1.7432648,1.6174726,0.58596206,1.187136,1.0503727,0.7149737,1.5035249,0.306516,1.844137,0.05305499,1.9960809,0.011240423,1.9253962,0.19041789,1.6478815,0.55054057,1.2255623,1.0111194,0.7528291,1.469213,0.3353396,1.8224354,0.06640464,0.018771708,1.9990067,0.039837778,1.8668964,0.2755043,1.5410311,0.6730988,1.0942428,1.1437572,0.6263909,1.5822852,0.24204224,1.8906698,0.027100503,1.9999859,0.029606044,1.8858008,0.24899894,1.5736352,0.6362438,1.1332597,1.1047899,0.6631,0.50656533,1.6850513,0.16216028,1.94314,0.0050160885,1.9904329,0.07025516,1.8163595,0.3432963,1.4598264,0.7631136,1.0005199,1.2358761,0.5410973,1.6559192,0.18424141,1.9293615,0.009711146,1.9950874,0.05651486,1.8384069,0.31419158,0.44921696,1.3378788,0.8941761,0.8677709,1.3627875,0.42721677,1.7503141,0.11468226,1.9701424,2.0086765e-5,1.9731394,0.10885787,1.7586356,0.41686982,1.3745735,0.8552139,0.9067924,1.3259183,0.4598437,1.7237786,0.13362235,1.9598712,1.9937522,0.00802809,1.9339675,0.17697358,1.665437,0.5298691,1.2481782,0.9878409,0.7754507,1.4485303,0.35291094,1.8089713,0.07499838,1.9886036,0.0038277507,1.9472787,0.15530598,1.6942328,0.49557704,1.2860229,0.94858885,0.8138855,1.4130913,1.5632036,0.2574312,1.8798456,0.032746375,1.9998384,0.024246931,1.8963628,0.23383266,1.5925462,0.6146601,1.1562929,1.0816127,0.68510747,1.5303245,0.28430188,1.8605065,0.043457985,1.9983615,0.016405463,1.9130783,0.2091906,1.623718,1.4803718,0.7405634,1.0237967,1.2131921,0.56190276,1.6381713,0.19792563,1.9205165,0.013215542,1.9971223,0.049056172,1.8508668,0.2974369,1.5144387,0.70284355,1.0630316,1.1746659,0.59753644,1.6074498,0.22199374,1.9044659,0.020338833,0.00043857098,1.9782345,0.09853804,1.7735953,0.39811814,1.3960543,0.8322215,0.9299932,1.3038241,0.4795791,1.7075207,0.14548129,1.9530833,0.0023722053,1.9856277,0.0822373,1.7978798,0.36722636,1.4318024,0.7936431,0.9692152,1.2661816,1.4276047,0.37083286,1.7950689,0.08409333,1.9848316,0.0020629764,1.9544802,0.14307588,1.7107983,0.47561508,1.3082498,0.9253567,0.8368062,1.3917813,0.40183705,1.7706411,0.10056001,1.9772593,0.0003117323,1.9654558,0.1234982,1.7378685,0.44258666,0.5932852,1.1792414,1.0583913,0.7072855,1.5104468,0.30075264,1.8484151,0.050504565,1.9967589,0.012472928,1.9223228,0.19515795,1.6417434,0.55772865,1.2177316,1.019149,0.7450558,1.4762894,0.32936114,1.826977,0.06355715,1.9928317,1.9986167,0.042112768,1.8628654,0.2810629,1.53426,0.68069863,1.0862451,1.1516995,0.61895394,1.5887951,0.23682839,1.8942922,0.025274992,1.9999111,0.03157693,1.8820455,0.25432563,1.5670389,0.6437359,1.1252966,1.1127727,0.6555499,0.49959648,1.6908793,0.1578033,1.9457788,0.004244864,1.9892927,0.07324201,1.8116953,0.34937364,1.4526803,0.77092314,0.99248946,1.2436724,0.5339771,1.6619596,0.17962295,1.932296,0.00862664,1.9942603,0.059206665,1.834003,0.3200581,1.4873422,1.3303097,0.90216494,0.85981524,1.370259,0.42065263,1.7555988,0.110976756,1.9720588,1.4305115e-6,1.9712594,0.11253017,1.7533791,0.42341238,1.3671155,0.8631644,0.89879996,1.3334998,0.453103,1.7292964,0.12963992,1.9620923,0.00070619583,0.009075582,1.9310676,0.18156141,1.6594211,0.53697187,1.240391,0.9958712,0.7676326,1.4556932,0.34680927,1.8136659,0.0719769,1.9897807,0.004561782,1.9446751,0.15963149,1.6884305,0.50252724,1.2783186,0.9566103,0.80600137,1.4203912,1.5698211,0.25207657,1.8836339,0.030739307,1.9999505,0.026036084,1.8927739,0.23901802,1.5860583,0.6220828,1.1483561,1.0896137,0.6774957,1.5371156,0.27871644,1.8645698,0.041147232,1.9987888,0.017885804,1.9097741,0.21413124,1.6174209,0.5860218,0.74832726,1.0157677,1.2210311,0.5546981,1.6443334,0.19315547,1.9236243,0.011946142,1.9964812,0.05157113,1.8466202,0.3031742,1.5075359,0.71052086,1.055015,1.1825674,0.59019804,1.6138093,0.2169736,1.9078622,0.018759012,1.9990039,1.9765365,0.10204315,1.7684816,0.40455055,1.3886676,0.84014356,0.92198473,1.3114651,0.47273856,1.7131729,0.1413377,1.9554834,0.0018515587,1.9842391,0.08545601,1.7930131,0.37346506,1.4245453,0.8015074,0.96118957,1.2739137,0.50650823,0.36461133,1.7999139,0.08089954,1.9861932,0.0026106834,1.9520541,0.14724272,1.7051268,0.4824698,1.3006004,0.93336713,0.8288886,1.3991572,0.39542097,1.775734,0.09707934,1.9789306,0.00054448843,1.963332,0.12739229,1.7324246,0.4492718,1.337817,1.1713352,1.0664062,0.6996162,1.5173359,0.29503435,1.8526386,0.048015416,1.9973729,0.01376915,1.9191899,0.19994986,1.6355641,0.5649453,1.2098868,1.0271773,0.7372989,1.4833351,0.3234259,1.8314655,0.060770154,1.9937595,0.008036375,0.044449568,1.8587787,0.28666788,1.5274544,0.68831897,1.0782417,1.1596322,0.6115416,1.5952669,0.23166376,1.897857,0.023512363,1.9997718,0.033610225,1.8782334,0.25970048,1.560406,0.6512509,1.1173253,1.1207483,0.648022,1.5632579,1.6966629,0.15350068,1.9483569,0.0035378337,1.9880888,0.07628858,1.8069787,0.35549295,1.4455053,0.77874744,0.98445946,1.2514529,0.526887,1.6679574,0.17505741,1.9351707,0.007606089,1.9933691,0.061959147,1.8295451,0.3259685,1.4803143,1.3227193,0.91016,0.85186857,1.3777069,0.41412586,1.7608346,0.107328534,1.9739125,4.7266483e-5,1.9693165,0.11625975,1.7480742,0.42999214,1.3596339,0.87112373,0.89081395,1.3410597,0.44639754,1.7347674,0.1257137,1.9642513,0.00043666363,1.9782209,1.9281077,0.18620205,1.6533628,0.5441046,1.2325883,1.0039017,0.75982946,1.4628267,0.34074968,1.8183081,0.069015324,1.9908938,0.005360067,1.9420106,0.16401124,1.6825838,0.50950956,1.2705965,0.96463466,0.79812974,1.427664,0.37078184,0.2467702,1.8873651,0.028794825,1.9999981,0.027888,1.8891273,0.2442525,1.5795325,0.6295299,1.1404097,1.097609,0.6699047,1.5438721,0.27317744,1.8685772,0.03889823,1.9991517,0.019429505,1.9064114,0.21912253,1.611084,0.59334517,0.7561074,1.0077378,1.2288557,0.5475222,1.6504538,0.1884374,1.9266727,0.010740399,1.995776,0.054147303,1.8423191,0.30895644,1.5006002,0.7182168,1.0469949,1.190457,0.5828861,1.6201291,0.212004,1.9111998,0.01724255,1.9986132,0.042131662,0.10560614,1.7633184,0.41102135,1.3812561,0.84807587,0.91398126,1.3190861,0.46593207,1.7187791,0.13724941,1.957822,0.0013952851,1.9827874,0.08873367,1.7880955,0.3797441,1.4172606,0.80938447,0.9531664,1.2816283,0.4995396,1.6909268,1.8047073,0.07776499,1.9874913,0.0032227635,1.9495666,0.15146464,1.6994097,0.4893579,1.2929317,0.9413819,0.8209821,1.4065073,0.3890438,1.7807765,0.0936569,1.9805388,0.0008416772,1.9611464,0.13134265,1.7269335,0.4559924,1.3302478,1.1634179,1.0744168,0.6919663,1.5241914,0.28936154,1.856807,0.0455876,1.9979224,0.01512903,1.9159977,0.2047934,1.6293437,0.5721899,1.2020285,1.0352039,0.72955894,1.4903497,0.31753427,1.8359001,0.05804366,1.9946232,0.0090844035,1.9310436,1.8546367,0.29231882,1.5206149,0.69595945,1.0702333,1.1675545,0.6041544,1.6017004,0.22654867,1.9013636,0.021812677,1.9995681,0.035705864,1.8743647,0.265123,1.5537369,0.65878844,1.1093466,1.1287161,0.64051676,1.5698752,0.252033,0.14925265,1.9508736,0.0028950572,1.9868212,0.07939476,1.8022101,0.3616538,1.4383013,0.786586,0.9764305,1.2592171,0.5198274,1.6739122,0.17054504,1.9379848,0.006649494,1.9924138,0.06477219,1.8250339,0.33192235,1.4732553,0.7483908,0.9181609,0.8439315,1.3851303,0.40763682,1.7660214,0.10373795,1.9757032,0.00015753508,1.9673113,0.12004638,1.7427208,0.4366086,1.3521292,0.8790914,0.88283503,1.3485978,0.43972778,1.740191,0.121843815,1.9663482,0.00023162365,1.9765224,0.102072,0.1908952,1.6472623,0.5512666,1.2247707,1.0119319,0.75204176,1.4699304,0.33473265,1.8228974,0.06611371,1.9919431,0.0062224865,1.9392853,0.16844487,1.6766931,0.5165235,1.262857,0.9726612,0.79027116,1.4349093,0.36456066,1.7999532,1.8910391,0.026912928,1.9999814,0.02980262,1.8854234,0.24953574,1.5729694,0.6370009,1.1324543,1.105598,0.66233504,1.5505934,0.2676854,1.8725288,0.036711276,1.9994502,0.021036386,1.9029901,0.22416419,1.6047077,0.6006947,1.1712705,0.9997073,1.2366657,0.5403754,1.6565323,0.18377167,1.9296612,0.009598494,1.9950066,0.05678445,1.8379638,0.31478322,1.4936323,0.7259309,1.0389718,1.1983343,0.575601,1.626409,0.20708525,1.9144787,0.01578939,1.9981582,0.04446894,0.10922688,1.758106,0.41753012,1.3738198,0.856018,0.9059834,1.3266865,0.45916003,1.724339,0.1332168,1.9600987,0.0010034442,1.9812721,0.09207016,1.7831268,0.38606322,1.4099493,0.81727386,0.94514626,1.2893245,0.4926033,1.6967099,0.15346575,0.074689865,1.9887257,0.0038990974,1.9470179,0.15574121,1.6936476,0.49627888,1.2852441,0.9494004,0.81308717,1.4138312,0.3827061,1.7857689,0.09029293,1.9820838,0.0012032986,1.9588987,0.1353491,1.7213955,0.46274817,1.3226572,0.9102254,1.0824226,0.6843363,1.5310133,0.28373456,1.8609202,0.043221354,1.9984076,0.016552329,1.9127467,0.20968825,1.6230826,0.57946223,1.1941571,1.0432283,0.7218365,1.4973326,0.3116867,1.840281,0.0553779,1.9954228,0.010196328,1.9280832,1.8504395,0.29801542,1.5137417,0.7036196,1.0622205,1.1754661,0.5967927,1.6080952,0.22148347,1.9048123,0.020176113,1.9992999,0.03786367,1.8704395,0.270593,1.5470322,0.6663479,1.1013608,1.1366756,0.6330347,1.5764556,0.24672705,1.8873954,1.953329,0.0023165941,1.98549,0.0825603,1.7973897,0.3678558,1.4310693,0.79443836,0.968403,1.2669648,0.5127988,1.6798234,0.1660862,1.9407386,0.005756974,1.9913945,0.06764549,1.8204694,0.3379193,1.4661658,0.75617105,1.0076721,0.8360045,1.3925289,0.40118605,1.7711587,0.10020512,1.9774313,0.0003323555,1.9652436,0.123889685,1.7373197,0.4432615,1.3446018,0.88706684,0.8748637,1.3561132,0.43309414,1.7455667,0.11803055,1.9683828,9.101629e-5,1.974761,0.105635524,0.1956405,1.64112,0.5584576,1.2169384,1.0199615,0.7442701,1.4770038,0.32875854,1.8274337,0.06327242,1.9929285,0.007148981,1.9364995,0.17293215,1.6707587,0.5235686,1.2551004,0.9806895,0.782426,1.4421265,0.35838044,1.8047462,0.0777396,0.025093734,1.9999,0.031779826,1.8816624,0.25486737,1.5663693,0.64449525,1.1244903,1.1135801,0.6547871,1.5572792,0.26224053,1.8764241,0.03458643,1.9996842,0.022706449,1.8995106,0.22925591,1.5982924,0.6080701,1.1633532,1.0744822,1.2444603,0.53325826,1.6625686,0.17915857,1.9325898,0.008520484,1.994173,0.059482455,1.8335543,0.3206542,1.4866325,0.7336627,1.0309463,1.2061988,0.5683433,1.6326486,0.20221758,1.9176986,0.014399707,1.997639,0.046867847,1.8546026,1.7528446,0.4240765,1.3663595,0.86396945,0.89799154,1.3342658,0.45242286,1.7298522,0.1292401,1.9623137,0.0006759763,1.9796937,0.09546518,1.7781078,0.3924219,1.4026115,0.825175,0.9371297,1.2970022,0.4856997,1.7024481,0.14921814,1.9508939,1.9898962,0.004639685,1.9444082,0.16007221,1.6878409,0.50323236,1.2775381,0.9574222,0.8052043,1.4211284,0.37640816,1.7907106,0.086987615,1.9835653,0.001629293,1.9565891,0.13941127,1.7158109,0.46953857,1.3150458,0.9182263,0.84386665,0.6767266,1.5378008,0.27815378,1.8649778,0.0409168,1.9988284,0.018039107,1.9094365,0.214634,1.6167815,0.5867616,1.1862732,1.0512499,0.71413195,1.5042834,0.30588347,1.8446076,0.052773118,1.9961581,0.011372089,1.925063,0.19093376,0.30375725,1.5068355,0.71129876,1.0542036,1.1833663,0.5894569,1.6144507,0.21646845,1.9082025,0.018602729,1.9989672,0.040083587,1.8664583,0.27611,1.5402923,0.673929,1.0933684,1.1446263,0.6255764,1.582999,0.24146962,1.8910688,1.9557228,0.0018024445,1.9840951,0.08578497,1.7925179,0.3740986,1.4238093,0.8023039,0.9603776,1.2746952,0.50580156,1.6856909,0.16168112,1.9434316,0.004928589,1.9903113,0.07057893,1.815852,0.3439589,1.4590462,0.763967,0.9996416,1.2367295,1.3999021,0.39477384,1.7762464,0.09673035,1.9790962,0.00057160854,1.9631138,0.1277895,1.7318711,0.44995022,1.3370521,0.8950495,0.8669004,1.3636057,0.4264971,1.7508944,0.114274204,1.9703549,1.4901161e-5,1.9729369,0.109256685,1.7580631,1.6349365,0.5656771,1.2090923,1.0279896,0.7365149,1.4840463,0.3228277,1.8319166,0.060491443,1.9938498,0.008139491,1.9336532,0.17747271,1.6647811,0.5306444,1.2473274,0.9887191,0.77459496,1.4493152,0.35224158,1.8094873,0.07466501,0.023337483,1.9997542,0.033819437,1.8778446,0.260247,1.5597328,0.6520126,1.1165183,1.121555,0.6472615,1.5639292,0.25684327,1.8802629,0.03252381,1.9998538,0.024439573,1.8959731,0.23439735,1.5918385,0.61547065,1.1554253,1.0824881,0.68427396,1.5310689,0.28368878,1.8609536,0.04320228,1.9984114,0.01656425,1.9127197,0.20972842,1.6230314,0.5795218,1.1940926,0.9109694,0.851065,1.3784592,0.41346747,1.7613616,0.10696262,1.9740965,5.5491924e-5,1.9691164,0.11664039,1.7475348,0.43066,1.3588755,0.87192965,0.89000624,1.3418236,0.44572097,1.7353184,0.12531954,1.9644663,0.00041300058,1.9780519,0.09891856,1.7730385,0.39881974,1.3952476,0.8330874,0.92911714,1.3046608,0.47882932,1.7081411,0.14502543,1.9533488,0.0023121238,1.9854789,0.08258641,1.79735,0.3679067,1.43101,0.79450256,0.96833736,1.2670281,0.51274145,1.6798716,0.24623597,1.8877394,0.028601527,1.9999994,0.028078914,1.8887551,0.24478495,1.57887,0.6302848,1.139605,1.0984178,0.6691377,1.5445538,0.2726196,1.8689797,0.038674116,1.9991848,0.019589245,1.9060678,0.21963042,1.6104406,0.59408766,1.1783773,1.0592681,0.7064458,1.5112019,0.300125,1.8488798,0.05022937,1.9968293,0.012611628,1.9219831,0.19567949,1.6410697,0.5585165,1.2168744,1.020027,0.74420667,1.4770615,0.3287099,1.8274705,0.06324941,1.9929364,0.007156849,1.9364765,0.105969906,1.7627932,0.41167825,1.3805046,0.8488791,0.9131717,1.3198562,0.46524525,1.7193439,0.1368388,1.9580551,0.0013527274,1.9826369,0.08906865,1.7875949,0.38038176,1.416522,0.8101822,0.95235467,1.2824079,0.49883628,1.691514,0.1573301,1.9460638,0.0041643977,1.9891641,0.07357228,1.811182,0.35004085,1.4518971,0.7717781,0.9916112,1.244524,0.5332002,1.6626177,0.17912108,1.9326134,0.008511901,1.9941659,0.059504747,1.833518,0.32070237,1.4865751,0.733726,1.0308806,1.0752271,0.69119334,1.5248833,0.28879005,1.8572257,0.045345366,1.9979744,0.015270174,1.9156716,0.20528638,1.6287119,0.5729246,1.2012326,1.0360161,0.7287767,1.4910578,0.31694055,1.8363459,0.057771146,1.9947071,0.009194016,1.9307468,0.18206638,1.6587605,0.5377505,1.2395384,0.9967494,0.76677847,1.4564748,0.3461445,1.8141761,0.07165009,1.9899056,0.0046460032,1.9443867,0.16010785,1.6877933,0.50328934,1.277475,0.9574878,0.8051399,1.4211879,0.37635684,1.7907507,0.14882582,1.9511248,0.0028336048,1.9866893,0.07971239,1.8017247,0.36227953,1.4375708,0.78738,0.97561806,1.2600019,0.51911473,1.6745124,0.17009139,1.9382663,0.0065562725,1.9923136,0.0650602,1.8245745,0.33252722,1.4725393,0.74917734,1.0148895,1.2218875,0.5539119,1.6450047,0.19263697,1.9239607,0.011811137,1.9964073,0.0518499,1.8461525,0.3038044,1.506779,0.71136165,1.0541381,1.1834308,0.5893971,1.6145024,0.21642768,1.9082301,0.018590093,1.9989643,0.040101945,1.8664255,0.19137299,1.6466427,0.551993,1.2239788,1.0127445,0.7512546,1.4706476,0.33412617,1.8233588,0.065823495,1.9920459,0.006313324,1.9390061,0.1688965,1.6760945,0.5172349,1.2620728,0.97347355,0.78947663,1.4356408,0.36393338,1.8004405,0.08055383,1.9863384,0.00267452,1.9517851,0.1477018,1.7045038,0.48322153,1.2997627,0.93424344,0.8280234,1.3999623,0.39472157,1.7762878,0.09670222,1.9791095,0.0005738139,1.9630961,0.12782162,1.7318263,0.45000505,1.3369902,0.89511484,0.86683536,1.2374551,0.5396539,1.657145,0.18330246,1.9299603,0.009486496,1.9949253,0.0570547,1.83752,0.31537533,1.4929254,0.7267125,1.0381598,1.1991308,0.57486534,1.6270423,0.20659035,1.9148072,0.015645862,1.9981086,0.044708908,1.8583285,0.28728366,1.5267081,0.6891537,1.0773661,1.1604991,0.61073256,1.5959724,0.23110193,1.8982432,0.023323417,1.9997528,0.033836365,1.8778131,0.26029122,1.5596783,0.65207416,1.1164532,1.12162,0.64720005,1.5639834,0.25679934,1.8802938,0.07438207,1.988847,0.0039711,1.9467566,0.15617698,1.6930621,0.49698102,1.2844651,0.950212,0.81228894,1.4145708,0.38206697,1.7862713,0.08995581,1.9822366,0.0012434721,1.9586678,0.13575763,1.7208325,0.46343374,1.321888,0.91103476,0.8510001,1.3785199,0.4134143,1.7614043,0.10693306,1.9741113,5.6147575e-5,1.9691002,0.116671145,1.7474911,0.43071395,1.3588142,0.87199473,0.889941,1.3418852,0.4456663,1.7353629,0.12528771,1.9644837,0.00041109324,1.9780382,0.09894699,1.7729969,0.29859436,1.5130444,0.7043958,1.0614095,1.1762661,0.5960492,1.6087401,0.22097367,1.905158,0.020013988,1.9992691,0.03808552,1.8700392,0.2711491,1.5463518,0.66711414,1.1005523,1.1374805,0.6322789,1.5771195,0.24619281,1.8877697,0.02858591,1.9999995,0.028094351,1.888725,0.24482799,1.5788165,0.6303458,1.1395401,1.0984831,0.66907585,1.5446088,0.27257454,1.8690121,0.038656056,1.9991875,0.01960218,1.90604,0.21967149,1.6103885,0.5941477,1.1783127,1.0593336,0.83520293,1.3932761,0.4005354,1.7716758,0.09985089,1.9776026,0.00035363436,1.9650309,0.124281704,1.7367706,0.4439367,1.3438387,0.88787425,0.8740575,1.3568724,0.4324249,1.746108,0.11764783,1.9685853,8.0406666e-5,1.9745793,0.10599935,1.7627507,0.41173136,1.3804439,0.848944,0.9131063,1.3199184,0.46518975,1.7193894,0.13680565,1.958074,0.0013492703,1.9826248,0.08909571,1.7875545,0.38043326,1.4164624,0.8102467,0.9522891,1.2824708,0.49877948,1.6915615,0.15729475,1.9460851,0.024913192,1.9998882,0.031983376,1.8812786,0.25540954,1.5656995,0.64525497,1.1236839,1.1143874,0.6540246,1.5579538,0.26169223,1.8768151,0.034374893,1.9997044,0.022879004,1.8991553,0.22977394,1.597641,0.6088178,1.1625514,1.0752926,0.6911309,1.5249392,0.2887439,1.8572595,0.045325816,1.9979787,0.015281558,1.9156451,0.20532626,1.6286609,0.572984,1.2011682,1.0360817,0.7287135,1.491115,0.31689256,1.8363819,0.057749152,1.9947138,0.009202898,1.9307228,0.18210417,1.6587112,0.42474103,1.3656032,0.8647745,0.8971832,1.3350315,0.45174307,1.7304075,0.1288408,1.9625342,0.0006464124,1.9795303,0.09581196,1.7775971,0.39306754,1.4018674,0.8259751,0.9363187,1.2977781,0.485003,1.7030263,0.14879137,1.951145,0.0028286576,1.9866787,0.07973808,1.8016853,0.36233008,1.4375118,0.7874441,0.97555244,1.2600653,0.5190572,1.6745608,0.1700548,1.9382889,0.0065487623,1.9923054,0.0650835,1.8245373,0.3325761,1.4724815,0.74924093,1.0148239,1.2219515,0.6759577,1.5384858,0.27759165,1.8653853,0.040687084,1.9988675,0.018193126,1.9090983,0.2151373,1.6161417,0.58750176,1.1854748,1.0520614,0.71335334,1.5049851,0.30529875,1.8450423,0.052512884,1.9962289,0.011494637,1.9247541,0.19141161,1.6465926,0.55205166,1.2239147,1.0128101,0.751191,1.4707055,0.33407724,1.8233961,0.06580007,1.992054,0.006320715,1.9389836,0.16893303,1.6760461,0.5172925,1.2620094,0.9735392,0.7894125,1.4356999,0.36388272,1.8004799,0.08052802,1.9863491,0.0017539859,1.9839505,0.086114585,1.792022,0.37473255,1.4230732,0.8031006,0.9595656,1.2754765,0.5050953,1.6862822,0.16123837,1.9437008,0.004848361,1.9901981,0.0708791,1.8153818,0.34457242,1.4583242,0.76475674,0.998829,1.2375189,0.5395956,1.6571946,0.18326455,1.9299843,0.009477496,1.9949186,0.057076573,1.8374841,0.3154232,1.4928683,0.72677565,1.0380942,1.199195,0.574806,1.6270934,0.20655036,1.9148337,0.015634298,1.9981046,0.04472828,1.8582947,0.28732967,1.6343085,0.56640923,1.2082975,1.0288019,0.7357311,1.4847573,0.32222998,1.8323672,0.060213447,1.9939394,0.008243322,1.9333619,0.17793518,1.6641738,0.5313621,1.24654,0.9895317,0.77380335,1.4500409,0.3516227,1.8099642,0.07435721,1.9888568,0.003976941,1.9467356,0.15621221,1.6930149,0.49703777,1.2844021,0.95027757,0.81222445,1.4146305,0.38201535,1.7863119,0.08992857,1.9822489,0.0012467504,1.958649,0.13579065,1.7207869,0.46348912,1.3218257,0.91110015,0.85093516,1.3785807,0.5254558,1.6691661,0.17413986,1.935745,0.0074073076,1.993181,0.0625236,1.8286364,0.32716995,1.4788882,0.7421968,1.0221062,1.2148438,0.56038344,1.6394722,0.19691688,1.9211758,0.01294297,1.9969926,0.049580634,1.8499771,0.29864115,1.5129881,0.7044585,1.0613439,1.1763307,0.5959891,1.6087921,0.22093254,1.9051859,0.020000935,1.9992666,0.03810346,1.8700069,0.27119404,1.5462968,0.667176,1.100487,1.1375456,0.6322179,1.5771731,0.24614966,1.8878,0.028570354,1.9999995,0.0055294037,1.941464,0.16490418,1.681395,0.5109265,1.2690315,0.9662589,0.79653823,1.4291326,0.36951953,1.7960932,0.083415926,1.9851236,0.002172947,1.9539745,0.14394867,1.7096078,0.4770556,1.3066409,0.92704296,0.83513814,1.3933365,0.4004829,1.7717175,0.09982228,1.9776164,0.0003553629,1.9650137,0.124313414,1.7367262,0.44399124,1.3437772,0.8879395,0.8739923,1.3569337,0.43237084,1.7461517,0.11761695,1.9686015,7.95722e-5,1.9745646,0.106028736,1.7627082,0.41178447,1.4991926,0.7197766,1.0453714,1.1920522,0.5814095,1.6214033,0.21100444,1.9118681,0.016943336,1.9985263,0.042599678,1.8620095,0.28223926,1.5328298,0.68230146,1.0845603,1.1533707,0.6173912,1.5901608,0.23573685,1.8950477,0.024898648,1.9998872,0.031999826,1.8812475,0.25545335,1.5656453,0.64531636,1.1236188,1.1144526,0.65396297,1.5580083,0.26164794,1.8768466,0.034357786,1.9997059,0.022892952,1.8991265,0.22981578,1.5975884,0.60887825,1.1624867,1.075358,0.6910684,1.5249951,0.38775796,1.781791,0.092971385,1.9808567,0.0009096265,1.9606965,0.13214898,1.7258165,0.45735687,1.3287132,0.9038479,0.8581412,1.3718293,0.41927522,1.7567053,0.1102038,1.9724542,5.722046e-6,1.9708555,0.113310754,1.7522662,0.42479473,1.3655422,0.86483955,0.89711785,1.3350934,0.45168817,1.7304523,0.12880856,1.9625521,0.0006440878,1.9795171,0.09584004,1.7775557,0.3931197,1.4018073,0.8260398,0.9362532,1.2978407,0.48494673,1.703073,0.14875692,1.9511653,0.0028237104,1.9866681,0.03613758,1.8735749,0.26622623,1.552383,0.6603166,1.107731,1.1303277,0.63900065,1.5712099,0.25095528,1.8844242,0.030324697,1.9999659,0.026420772,1.8920107,0.24011612,1.5846874,0.6236489,1.1466837,1.0912977,0.6758956,1.5385411,0.2775463,1.8654182,0.040668547,1.9988706,0.018205583,1.909071,0.21517795,1.61609,0.58756155,1.1854103,1.0521269,0.71329045,1.5050417,0.30525148,1.8450775,0.052491903,1.9962347,0.011504531,1.9247291,0.19145024,1.6465424,0.5521104,1.3506076,0.8807049,0.8812212,1.3501205,0.43838233,1.7412827,0.121067464,1.966765,0.00019794703,1.976171,0.10278857,1.7673986,0.40590984,1.3871092,0.8418129,0.9202991,1.3130715,0.47130257,1.7143571,0.14047223,1.955981,0.0017501116,1.9839387,0.08614123,1.7919819,0.3747838,1.4230137,0.80316496,0.9595,1.2755395,0.50503826,1.6863298,0.16120261,1.9437225,0.0048419237,1.990189,0.07090336,1.8153439,0.34462202,1.4582658,0.7648205,0.9987634,1.2375827,0.5395373,1.657244,0.26657963,1.8733218,0.03627622,1.9995028,0.021369338,1.9022906,0.22519064,1.6034125,0.6021853,1.169669,1.0680933,0.6980039,1.5187821,0.29383612,1.8535209,0.04749912,1.997494,0.014050186,1.9185228,0.20096546,1.6342578,0.56646836,1.2082332,1.0288676,0.7356678,1.4848146,0.3221817,1.8324037,0.060190976,1.9939467,0.008251727,1.9333383,0.17797256,1.6641247,0.5314201,1.2464763,0.9895973,0.7737394,1.4500996,0.3515727,1.8100026,0.07433236,1.9888666,0.0039827824,1.9809577,0.092752516,1.7821151,0.38734692,1.4084663,0.818872,0.9435235,1.29088,0.4912035,1.6978749,0.15260172,1.9488919,0.0033971071,1.9878273,0.076937675,1.805979,0.35678673,1.4439908,0.78039676,0.9827688,1.2530891,0.525398,1.6692148,0.17410284,1.9357681,0.00739938,1.9931732,0.06254643,1.8285997,0.32721853,1.4788305,0.7422602,1.0220406,1.2149079,0.5603245,1.6395227,0.19687778,1.9212013,0.01293242,1.9969876,0.04960102,1.8499426,0.29868793,1.5129317,0.7045212,1.1925625,1.044852,0.72027576,1.498742,0.3105086,1.841161,0.05484581,1.9955769,0.010429144,1.9274769,0.18718588,1.6520817,0.5456102,1.2309434,1.0055926,0.75818837,1.464325,0.3394792,1.8192787,0.06839937,1.9911201,0.005536318,1.9414418,0.1649403,1.6813471,0.51098377,1.2689683,0.9663245,0.796474,1.4291918,0.36946857,1.796133,0.0833897,1.9851348,0.0021772385,1.9539547,0.14398259,1.7095616,0.47711158,1.3065783,0.9271084,0.8350734,1.3933969,0.40043032,1.7717593,0.16519034,1.9412885,0.0055841804,1.9911804,0.068234324,1.8195392,0.33913815,1.4647274,0.75774753,1.0060469,1.2305014,0.5460149,1.6517372,0.18745065,1.9273069,0.010494709,1.9956193,0.054697514,1.8414066,0.3101796,1.4991357,0.7198396,1.0453058,1.1921166,0.5813499,1.6214547,0.21096408,1.911895,0.016931295,1.9985228,0.042618632,1.8619763,0.28228492,1.5327742,0.6823637,1.084495,1.1534356,0.61733055,1.5902139,0.23569447,1.8950769,0.024884045,1.9998863,0.032016337,1.9359283,0.17384678,1.6695523,0.5249981,1.2535286,0.9823145,0.78084004,1.4435837,0.35713464,1.8057098,0.077112556,1.9877565,0.0033597946,1.9490352,0.15236056,1.6982002,0.49081242,1.2913146,0.94306993,0.8193188,1.4080516,0.38770604,1.781832,0.09294373,1.9808693,0.0009124279,1.9606782,0.13218158,1.7257712,0.457412,1.3286512,0.9039132,0.8580762,1.3718902,0.41922182,1.7567482,0.11017382,1.9724696,5.9604645e-6,1.9708397,0.11334109,1.752223,0.42484844,1.3654811,0.86490464,1.0293217,1.2077888,0.56687784,1.6339064,0.20123869,1.9183431,0.014126182,1.9975259,0.047360837,1.8537575,0.2935145,1.5191705,0.6975708,1.0685465,1.1692213,0.6026022,1.6030501,0.225478,1.9020946,0.021462858,1.999517,0.036155045,1.8735429,0.26627082,1.5523281,0.66037834,1.1076657,1.1303928,0.6389394,1.5712638,0.25091177,1.884455,0.030308664,1.9999664,0.026435792,1.8919811,0.2401588,1.5846341,0.6237097,1.1466187,1.0913631,0.67583346,1.5385964,0.27750087,1.7917044,0.086325824,1.9838576,0.0017233491,1.9561142,0.14024013,1.7146751,0.470917,1.3135029,0.91984624,0.84226155,1.3866901,0.4062754,1.7671072,0.10298926,1.9760723,0.00018900633,1.966881,0.12085086,1.7415876,0.43800646,1.3505461,0.88077,0.88115597,1.350182,0.43832797,1.7413268,0.12103617,1.9667819,0.00019663572,1.9761568,0.102817535,1.7673565,0.40596265,1.3870486,0.8418777,0.92023367,1.3131338,0.47124684,1.7144032,0.14043868,1.9560002,0.0017462373,1.983927,0.08616793,1.8656458,0.27723223,1.5389239,0.6754658,1.0917501,1.1462343,0.6240698,1.5843186,0.24041158,1.8918053,0.026524663,1.9999695,0.030213773,1.8846362,0.25065434,1.5715828,0.638577,1.1307781,1.1072792,0.66074395,1.5520041,0.26653498,1.8733537,0.036258698,1.9995048,0.021382809,1.9022622,0.22523218,1.6033602,0.60224557,1.1696044,1.0681587,0.6979413,1.5188382,0.29378963,1.853555,0.047479093,1.9974985,0.014061213,1.9184968,0.20100492,1.634207,0.56652755,1.2081691,1.0289332,0.8652898,1.3651192,0.42516643,1.7519667,0.11352092,1.9707465,7.3313713e-6,1.97256,0.10999656,1.7570021,0.41890544,1.372251,0.85769147,0.9043001,1.3282841,0.45773852,1.7255038,0.13237482,1.9605702,0.0009291172,1.980945,0.09278017,1.7820742,0.38739878,1.4084065,0.8189365,0.943458,1.2909427,0.49114698,1.697922,0.15256685,1.9489126,0.0033917427,1.987817,0.07696295,1.8059402,0.35683697,1.4439319,0.7804608,0.98270315,1.2531526,0.5253402,1.6692636,0.17406583,1.8810327,0.03211397,1.9998803,0.024797976,1.8952501,0.23544389,1.5905277,0.6169715,1.1538197,1.0841076,0.6827323,1.5324453,0.28255564,1.8617792,0.042730987,1.9985015,0.016860127,1.9120545,0.21072537,1.6217592,0.58099693,1.1924981,1.0449176,0.7202127,1.4987988,0.31046104,1.8411965,0.054824352,1.9955829,0.010438621,1.9274523,0.18722415,1.6520319,0.5456686,1.2308797,1.0056581,0.7581247,1.4643831,0.33942991,1.8193164,0.06837553,1.9911289,0.005543232,1.9414196,0.16497642,1.7720065,0.4001193,1.3937541,0.83469003,0.9274961,1.3062084,0.47744292,1.7092876,0.14418358,1.9538381,0.0022029877,1.9852016,0.08323437,1.7963681,0.3691669,1.4295429,0.7960934,0.966713,1.2685939,0.51132286,1.6810625,0.16515422,1.9413106,0.005577266,1.9911717,0.06825817,1.8195016,0.33918744,1.4646692,0.75781125,1.0059812,1.2305653,0.54595643,1.651787,0.18741238,1.9273314,0.010485172,1.9956132,0.05471891,1.841371,0.31022716,1.4990789,0.71990263,1.0452403,1.1921811,0.7048926,1.512598,0.2989651,1.8497376,0.049722016,1.9969573],"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/versinf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..21a42935af7c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[1.9941202,0.00861454,0.034309804,0.07664299,0.13488477,0.30187857,0.29482365,0.51176846,0.5031514,0.7551606,1.0252529,1.0153536,1.0054526,0.99555117,1.52326,1.5147967,1.5062829,1.4977195,1.8801074,1.8753633,1.9987246,1.9991755,1.9995285,1.9997835,1.9999405,1.9999995,1.9999604,1.4435456,1.452398,1.461206,1.4699688,1.4786854,1.4873552,1.4959772,1.5045506,0.44257432,0.450822,0.45912355,0.4674781,0.47588485,0.005098462,0.49285167,0.0032964945,0.5100174,0.0018854141,0.5273752,0.00086569786,0.60227174,0.00023782253,0.58418155,2.026558e-6,0.5662545,0.00015830994,0.5484975,1.6065346,0.5309175,1.5906723,0.51352155,1.5745782,0.49631637,1.5582588,0.47930866,1.5417205,1.992588,1.5249698,1.9947999,1.5080132,1.9966216,1.4908574,1.9980525,1.3785532,1.9990921,1.3968071,1.9997398,1.4149053,1.9999955,1.4328408,0.37705523,1.4506066,0.3926676,0.020341814,0.40851808,1.4856012,1.9970982,0.013164282,0.44090867,1.519834,0.6968306,0.007534504,0.4741761,1.5532517,0.6593362,0.0034614205,0.50826824,1.6836245,0.6223761,0.0009512305,0.5431317,1.6541901,0.58600825,8.046627e-6,1.9707034,1.6237297,0.55028975,0.00063329935,1.9794562,1.592291,0.5152766,1.2642314,1.9866729,1.5599234,0.48102373,1.3022127,1.992342,1.5266775,0.28730887,1.3397199,1.9964547,1.4926056,0.31564325,1.3766942,1.9990045,1.457761,0.345051,1.4130778,1.9999874,0.029538274,0.37548602,1.4488134,1.9994019,0.020746648,0.40690053,1.4838451,0.7367368,0.013490975,0.43924522,1.5181179,0.6987443,0.007782519,0.47246945,1.7133949,0.66122437,0.0036302805,0.5065211,1.6850884,0.62423587,0.0010408163,1.959867,1.6557072,0.5878366,1.8119812e-5,1.9702191,1.6252977,0.55208385,1.2238797,1.9790494,1.5939074,0.5170336,1.2622948,1.9863442,0.080539644,0.48274088,1.3002983,0.93368316,1.528383,0.28590202,0.0115906,1.9962838,0.052310526,0.4166417,1.3748337,0.8549361,1.459545,0.34353524,1.8161767,1.9999753,0.030024588,1.8849981,1.4470184,0.7770988,1.3878251,0.4052853,1.7678963,1.9973958,0.013821602,1.9190652,1.5163999,0.7006593,1.0653152,0.470765,1.7148004,0.14014864,0.0038031936,1.9473686,1.5825427,0.6260971,1.1440706,0.53956366,1.6572217,0.18324381,3.2246113e-5,1.9697309,0.115469754,0.55387974,1.2219225,0.6112498,1.5955215,0.23146105,0.0025323033,1.9860115,0.081330895,0.48446006,1.2983828,0.9356865,1.5300865,0.28449804,1.8603635,1.9961088,0.052953243,0.4182735,1.3729718,0.8569228,1.4613272,0.34202206,1.8173349,1.9999592,0.030514777,1.8840616,1.4452217,0.7790563,0.9841427,0.40367246,1.7691808,1.9975386,0.014156222,1.9182721,1.5146794,0.70257545,1.0633117,0.46906263,1.716203,0.1391254,0.0039801598,1.9467239,1.5809097,0.62795985,1.1420836,0.53778243,1.6587335,0.18208706,5.0365925e-5,1.9692386,0.11640805,0.5556774,1.2199645,1.016861,1.597133,0.23017812,0.0023915768,1.985675,0.08212578,0.48618138,1.296466,0.93769014,1.5317878,0.2830969,1.8613849,1.99593,0.053599775,1.8432293,1.3711082,0.8589101,1.4631075,0.34051156,1.81849,1.999939,0.0310089,1.8831215,1.443423,0.7810148,0.9821354,0.40206206,1.7704623,0.100682735,0.014494836,1.9174753,1.5129571,0.70449287,1.061308,0.4673624,1.7176025,0.13810563,0.0041611195,1.9460754,0.15731072,0.62982416,1.1400961,0.536003,1.6602427,0.18093365,7.253885e-5,1.9687426,0.11734992,0.5574769,1.2180057,1.0188682,1.5987422,0.22889829,1.8997557,1.9853344,0.082924426,0.4879048,1.294548,0.939694,1.5334868,0.2816987,1.8624029,1.9957469,0.05425018,1.8421483,0.3091854,0.7575737,1.464886,0.33900374,1.8196418,0.068169296,1.9912041,0.3588112,1.4416227,0.7829741,0.9801281,1.2556434,0.046093702,1.997812,0.014837384,1.9166749,0.20376927,1.6306568,1.3193862,0.46566433,1.7189994,0.13708931,1.9579129,0.24577671,1.5776367,0.6316899,1.138108,1.099922,0.6677115,1.9748863,9.87649e-5,1.9682426,0.11829537,1.7451924,0.4335568,0.60570776,1.600349,0.22762156,1.90063,0.022165298,1.6991833,0.48963022,1.2926288,0.9416981,0.8206705,1.4067967,0.010403335,1.9955599,0.05490434,1.8410641,0.31063837,0.7556265,1.4666625,0.33749855,1.8207903,0.067442596,1.9914678,0.3603531,1.4398205,0.7849344,0.9781209,1.2575837,0.5213113,1.9979428,0.015183926,1.9158707,0.2049855,1.6290975,1.3212881,0.4639684,1.7203932,0.13607645,1.9584873,0.0012752414,1.5759966,0.63355714,1.1361194,1.1019194,0.66581863,1.9753314,0.00012898445,1.9677386,0.11924434,1.7438521,0.43521243,0.60386354,1.6019534,0.22634792,1.9015007,0.021746933,1.6977465,0.49135774,1.2907085,0.9437024,0.8186958,1.4086299,0.010116518,1.995369,0.055562317,1.8399763,0.31209415,1.4968454,1.4684372,0.33599603,1.8219354,0.06671971,1.9917276,0.36189765,1.4380167,0.78689545,0.9761138,1.259523,0.5195496,1.9980695,0.015534461,1.9150629,0.20620489,1.6275356,1.3231887,0.46227467,1.7217841,0.1350671,1.9590578,0.0011758804,1.5743544,0.63542587,1.1341301,1.1039164,0.6639271,1.9757726,0.00016325712,1.9672309,0.12019688,1.7425089,0.43687034,0.602021,1.6035553,0.22507745,1.9023678,0.021332502,1.9994972,0.4930873,1.288787,0.94570696,0.8167218,1.4104614,0.009833634,1.9951739,0.056224108,1.8388853,0.31355268,1.495102,1.47021,0.3344962,1.8230773,0.06600052,1.9919832,0.3634447,1.436211,0.7888574,0.9741068,1.2614614,0.51778984,1.9981922,0.01588893,1.9142513,0.2074275,1.6259713,1.3250879,0.46058303,1.7231722,0.13406128,1.9596245,0.0010805726,1.5727098,0.6372961,1.1321403,1.1059129,0.6620369,1.5508578,0.0002015233,1.9667192,0.12115294,1.7411625,0.43853056,0.60018,1.6051549,0.22381008,1.9032311,0.020922005,1.9994314,0.49481887,1.2868643,0.94771177,0.8147485,1.4122913,0.009554803,1.994975,0.056889713,1.8377908,0.31501395,1.4933568,1.4719809,0.3329991,1.8242159,0.065285146,1.992235,0.0064840913,1.4344035,0.7908202,0.9720999,1.2633986,0.516032,1.9983108,0.016247392,1.913436,0.20865333,1.6244044,0.5779287,0.45889366,1.7245574,0.1330589,1.9601872,0.0009892583,1.5710628,0.63916767,1.1301501,1.1079091,0.6601481,1.5525322,0.0002438426,1.9662037,0.12211257,1.7398133,0.440193,0.59834063,1.6067519,0.2225458,1.9040909,0.020515442,1.9993618,0.49655253,1.2849405,0.94971675,0.812776,1.4141195,0.38245696,1.994772,0.057559133,1.836693,0.316478,1.4916095,1.4737499,0.33150464,1.825351,0.06457353,1.9924827,0.006714344,1.4325944,0.79278386,0.9700931,1.2653348,0.51427615,1.9984255,0.016609788,1.9126172,0.20988232,1.6228349,0.5797496,0.45720637,1.7259396,0.13205999,1.9607462,0.0009019971,1.5694137,0.6410408,1.1281592,1.1099048,0.65826064,1.5542045,0.00029021502,1.9656842,0.12307572,1.738461,0.4418577,1.3461885,1.6083465,0.22128469,1.904947,0.020112872,1.999288,0.49828815,1.2830155,0.95172197,0.81080425,1.415946,0.3808791,1.9945649,0.058232307,1.8355918,0.31794482,1.4898603,1.475517,0.33001286,1.826483,0.06386566,1.9927263,0.0069485903,1.4307835,0.7947483,0.9680864,1.2672701,0.5125222,1.9985361,0.016976178,1.9117945,0.21111453,1.621263,0.5815722,1.1918764,1.0455503,0.7196046,1.882459,0.25374073,1.5677621,0.64291537,1.1261679,1.1119,0.6563746,1.5558745,0.26338303,1.8756086,0.035028636,1.0599004,1.1777539,0.5946667,1.6099387,0.22002673,1.9057996,0.019714177,1.9992102,0.038499832,1.869293,0.27218503,0.18012547,1.9319781,0.008742154,1.9943539,0.058909297,1.8344872,0.31941438,1.488109,0.7320333,1.0326363,1.204544,0.08348757,1.7959847,0.3696586,1.4289708,0.7967136,0.9660799,1.2692041,0.51077026,1.6815262,0.16480565,1.9415243,0.86229444,0.8996737,1.3326716,0.45383847,1.7286954,0.13007277,1.9618523,0.00073957443,1.9800313,0.09474546,1.7791687,0.39107972,0.099193394,1.9779197,0.00039499998,1.9646335,0.12501264,1.7357476,0.44519383,1.3424188,0.88937664,0.8725579,1.3582842,0.15915579,1.6890672,0.50176555,1.2791622,0.95573294,0.80686307,1.4195942,0.3777309,1.7896743,0.08767867,1.9832587,1.0222853,0.7420237,1.4790454,0.32703745,1.8287368,0.062461257,1.9932017,0.007429123,1.9356818,0.17424089,1.6690329,1.8641281,0.041396916,1.9987452,0.017720819,1.9101384,0.21358842,1.6181116,0.5852225,1.1879342,1.0495611,0.7157527,1.8805633,0.25641954,1.5644522,0.6466688,1.1221837,1.1158891,0.6526066,1.5592077,0.2606734,1.877541,0.033982992,1.0558919,1.1817038,0.59099936,1.6131157,0.21752018,1.9074936,0.018928766,1.9990426,0.039610982,1.8673012,0.27494442,1.5417142,1.9334261,0.008220375,1.9939198,0.06027466,1.832268,0.3223617,1.4846005,0.73590386,1.0286229,1.2084727,0.5662478,1.7935479,0.37278074,1.4253403,0.80064666,0.9620672,1.2730689,0.50727224,1.6844591,0.16260415,1.9428697,0.0050976872,0.89567953,1.3364556,0.4504794,1.7314392,0.1280995,1.9629431,0.00059324503,1.9792249,0.09645873,1.7766457,0.3942697,0.09745717,1.978751,0.0005158782,1.9635674,0.12696368,1.7330222,0.4485389,1.3386436,0.8933681,0.8685764,1.36203,0.16133595,1.6861517,0.50525093,1.2753042,0.9597446,0.80292493,1.4232354,0.37459278,1.7921314,0.08604187,1.9839824,1.0262994,0.7381464,1.4825661,0.3240729,1.8309772,0.061071992,1.9936612,0.00792563,1.9342575,0.17651224,1.6660433,1.8661419,0.04026133,1.9989382,0.018481255,1.9084675,0.216075,1.6149503,0.58887935,1.1839889,1.053571,0.71190536,1.5062892,0.25911033,1.5611331,0.65042794,1.1181976,1.1198764,0.6488442,1.562532,0.2579757,1.8794591,0.032952905,1.9998235,1.1856507,0.58733857,1.6162827,0.21502632,1.9091729,0.018159091,1.9988589,0.04073763,1.8652955,0.27771556,1.5383348,1.9348593,0.0077145696,1.9934697,0.061655164,1.8300352,0.32532,1.4810843,0.7397787,1.0246091,1.212398,0.5626334,1.7910981,0.37591308,1.4217029,0.80458295,0.95805514,1.2769294,0.5037823,1.6873809,0.16041619,1.9441998,0.00470078,0.89168704,1.340234,0.44712913,1.7341714,0.12614036,1.9640182,0.00046300888,1.9784029,0.09818655,1.7741101,0.3974694,0.09573549,1.9795663,0.0006529093,1.9624857,0.12892878,1.7302852,0.4518929,1.3348627,0.89736134,0.8645971,1.36577,0.42459446,1.6832254,0.50874436,1.2714419,0.9637569,0.79899,1.42687,0.37146473,1.7945757,0.08441985,1.9846902,0.0020111203,0.73427343,1.486079,0.3211192,1.8332042,0.059697866,1.9941046,0.00843817,1.9328182,0.17879689,1.6630429,0.53269815,0.039141178,1.9991152,0.019257605,1.9067819,0.21857423,1.611779,0.5925429,1.1800408,1.0575801,0.70806265,1.5097479,0.26181304,1.5578051,0.6541927,1.1142094,1.1238618,0.6450875,1.5658472,0.25528997,1.8813633,0.031938434,1.9998908,1.1895947,0.58368444,1.6194398,0.21254504,1.9108377,0.017405272,1.9986591,0.041879773,1.8632759,0.28049833,1.5349467,1.9362772,0.007224798,1.9930036,0.06305081,1.8277893,0.3282891,1.4775605,0.7436577,1.0205948,1.21632,0.5590261,1.7886357,0.37905544,1.4180588,0.80852234,0.95404375,1.2807853,0.50030017,1.6902916,0.15824175,1.9455147,0.004319966,1.9894111,1.344007,0.4437878,1.7368917,0.12419528,1.9650779,0.000348866,1.9775649,0.099928916,1.7715619,0.4006788,1.3931115,1.980366,0.0008060336,1.9613883,0.1309079,1.7275363,0.4552557,1.3310766,0.9013562,0.86061984,1.3695041,0.4213152,1.6802878,0.51224566,1.2675753,0.96776986,0.7950583,1.4304976,0.3683468,1.7970072,0.08281255,1.9853823,0.0022736788,0.7304046,1.4895841,0.3181765,1.8354177,0.05833888,1.9945319,0.008966684,1.9313638,0.18109477,1.6600318,0.5362518,0.038036525,1.9992759,0.020049691,1.9050817,0.22108603,1.608598,0.59621304,1.1760896,1.0615882,0.70422465,1.5131981,0.26452768,1.5544682,0.657963,1.1102196,1.127845,0.64133644,1.5691533,0.25261623,1.8832531,0.030939579,1.9999421,0.025852144,0.58003706,1.6225871,0.21007651,1.9124876,0.016667306,1.9984431,0.043037295,1.8612423,0.28329265,1.5315499,0.68373525,0.006751001,1.9925214,0.06446159,1.8255298,0.3312691,1.4740288,0.7475409,1.0165802,1.2202384,0.5554259,1.6437117,0.3822078,1.4144077,0.8124649,0.95003307,1.2846369,0.49682623,1.6931913,0.1560809,1.9468143,0.0039551854,1.9888203,1.3477744,0.4404555,1.7396002,0.122264266,1.9661219,0.00025087595,1.9767113,0.10168582,1.7690014,0.40389788,1.3894162,1.9811499,0.0009752512,1.9602757,0.13290107,1.7247757,0.45862728,1.3272852,0.9053527,0.8566449,1.3732322,0.41804516,1.6773394,0.5157548,1.2637042,0.9717833,0.79112995,1.4341183,0.36523902,1.7994258,0.08122003,1.9860584,0.0025523305,0.7265402,1.4930812,0.31524473,1.8376179,0.056995094,1.9949431,0.009511173,1.9298943,0.18340582,1.6570101,0.5398129,1.2372811,1.9994206,0.020857573,1.903367,0.2236104,1.605407,0.59988964,1.1721357,1.0655954,0.7003914,1.5166402,0.29561096,1.5511222,0.6617388,1.1062279,1.1318264,0.63759124,1.5724502,0.24995458,1.8851287,0.02995634,1.9999772,0.026767135,0.57639647,1.6257242,0.20762068,1.9141229,0.015945196,1.9982111,0.044210315,1.8591948,0.2860986,1.5281446,0.68754697,0.006293237,1.9920232,0.06588739,1.8232572,0.33425987,1.4704895,0.7514281,1.0125654,1.2241533,0.5518328,1.6467793,0.3853702,1.4107502,0.8164104,0.9460232,1.2884837,0.49336034,1.6960797,0.15393358,1.9480987,0.0036064386,1.9882135,1.3515363,0.43713212,1.7422966,0.12034744,1.9671504,0.00016897917,1.9758419,0.10345715,1.7664285,0.4071266,1.3857148,0.8433058,0.001160562,1.9591475,0.1349082,1.7220035,0.46200764,1.3234884,0.9093507,0.8526723,1.3769543,0.4147846,1.760307,0.51927185,1.2598289,0.9757972,0.7872049,1.437732,0.36214155,1.8018317,0.079642296,1.9867185,0.0028470755,1.9510695,1.4965705,0.31232405,1.8398044,0.055666506,1.9953384,0.010071635,1.9284099,0.1857301,1.6539776,0.54338145,1.2333786,1.9995493,0.021681309,1.9016378,0.2261473,1.6022062,0.6035727,1.168179,1.0696014,0.696563,1.5200739,0.2927665,1.5477672,0.66552013,1.1022345,1.1358055,0.6338519,1.5757377,0.24730498,1.8869901,0.028988719,1.9999962,0.027697742,0.5727626,1.6288512,0.20517766,1.9157435,0.015239,1.9979631,0.045398712,1.8571334,0.288916,1.5247308,0.6913637,0.005851507,1.9915091,0.067328334,1.8209713,0.33726132,1.4669427,0.75531936,1.0085503,1.2280645,0.548247,1.6498363,0.18891245,1.9263668,0.010859549,1.9958503,0.05388385,1.8427569,1.7379129,0.44253212,1.3454261,0.8861942,0.8757351,1.3552923,0.43381786,1.744981,0.11844486,1.9681633,0.000103235245,1.9749568,0.10524297,1.763843,0.4103648,1.3820071,0.84727275,0.9147909,1.3183159,0.4666193,1.718214,0.13766056,0.063580215,1.9928238,0.0070445538,1.9368072,0.1724388,1.6714098,0.5227966,1.2559495,0.97981143,0.78328335,1.4413385,0.35905433,1.8042245,0.07807946,1.9873629,0.0031579137,1.9498212,0.15103489,1.6999903,0.48865932,1.2937086,0.94057065,0.82178164,0.6556115,1.5565498,0.2628337,1.8760008,0.03481579,1.9996617,0.02252078,1.899894,0.22869664,1.5989959,0.60726225,1.1642196,1.0736064,0.69273955,1.5234993,0.2899335,1.8563876,0.04583049,1.9978697,0.014988542,1.9163235,0.20430094,0.32001,1.4873996,0.73281634,1.0318241,1.2053393,0.5691357,1.6319681,0.20274746,1.9173493,0.0145486,1.9976988,0.046602488,1.8550583,0.2917449,1.5213085,0.6951854,1.071044,1.1667533,0.6049008,1.6010511,0.22706401,1.9010115,1.9620743,0.0007086396,1.9798694,0.095091045,1.7786591,0.39172453,1.4034152,0.8243103,0.9380062,1.2961634,0.48645318,1.7018228,0.14968002,1.9506216,0.0029571652,1.9869524,0.07907772,1.802695,0.3610285,1.4390316,0.7857922,0.9772429,1.2584323,1.4203317,0.37709498,1.7901726,0.087346256,1.9834065,0.0015795827,1.9568447,0.1389643,1.716424,0.46879423,1.3158792,0.917351,0.8447342,1.3843802,0.40829176,1.7654988,0.10409868,1.9755249,0.00014346838,1.967517,0.119660616,1.7432648,1.6174726,0.58596206,1.187136,1.0503727,0.7149737,1.5035249,0.306516,1.844137,0.05305499,1.9960809,0.011240423,1.9253962,0.19041789,1.6478815,0.55054057,1.2255623,1.0111194,0.7528291,1.469213,0.3353396,1.8224354,0.06640464,0.018771708,1.9990067,0.039837778,1.8668964,0.2755043,1.5410311,0.6730988,1.0942428,1.1437572,0.6263909,1.5822852,0.24204224,1.8906698,0.027100503,1.9999859,0.029606044,1.8858008,0.24899894,1.5736352,0.6362438,1.1332597,1.1047899,0.6631,0.50656533,1.6850513,0.16216028,1.94314,0.0050160885,1.9904329,0.07025516,1.8163595,0.3432963,1.4598264,0.7631136,1.0005199,1.2358761,0.5410973,1.6559192,0.18424141,1.9293615,0.009711146,1.9950874,0.05651486,1.8384069,0.31419158,0.44921696,1.3378788,0.8941761,0.8677709,1.3627875,0.42721677,1.7503141,0.11468226,1.9701424,2.0086765e-5,1.9731394,0.10885787,1.7586356,0.41686982,1.3745735,0.8552139,0.9067924,1.3259183,0.4598437,1.7237786,0.13362235,1.9598712,1.9937522,0.00802809,1.9339675,0.17697358,1.665437,0.5298691,1.2481782,0.9878409,0.7754507,1.4485303,0.35291094,1.8089713,0.07499838,1.9886036,0.0038277507,1.9472787,0.15530598,1.6942328,0.49557704,1.2860229,0.94858885,0.8138855,1.4130913,1.5632036,0.2574312,1.8798456,0.032746375,1.9998384,0.024246931,1.8963628,0.23383266,1.5925462,0.6146601,1.1562929,1.0816127,0.68510747,1.5303245,0.28430188,1.8605065,0.043457985,1.9983615,0.016405463,1.9130783,0.2091906,1.623718,1.4803718,0.7405634,1.0237967,1.2131921,0.56190276,1.6381713,0.19792563,1.9205165,0.013215542,1.9971223,0.049056172,1.8508668,0.2974369,1.5144387,0.70284355,1.0630316,1.1746659,0.59753644,1.6074498,0.22199374,1.9044659,0.020338833,0.00043857098,1.9782345,0.09853804,1.7735953,0.39811814,1.3960543,0.8322215,0.9299932,1.3038241,0.4795791,1.7075207,0.14548129,1.9530833,0.0023722053,1.9856277,0.0822373,1.7978798,0.36722636,1.4318024,0.7936431,0.9692152,1.2661816,1.4276047,0.37083286,1.7950689,0.08409333,1.9848316,0.0020629764,1.9544802,0.14307588,1.7107983,0.47561508,1.3082498,0.9253567,0.8368062,1.3917813,0.40183705,1.7706411,0.10056001,1.9772593,0.0003117323,1.9654558,0.1234982,1.7378685,0.44258666,0.5932852,1.1792414,1.0583913,0.7072855,1.5104468,0.30075264,1.8484151,0.050504565,1.9967589,0.012472928,1.9223228,0.19515795,1.6417434,0.55772865,1.2177316,1.019149,0.7450558,1.4762894,0.32936114,1.826977,0.06355715,1.9928317,1.9986167,0.042112768,1.8628654,0.2810629,1.53426,0.68069863,1.0862451,1.1516995,0.61895394,1.5887951,0.23682839,1.8942922,0.025274992,1.9999111,0.03157693,1.8820455,0.25432563,1.5670389,0.6437359,1.1252966,1.1127727,0.6555499,0.49959648,1.6908793,0.1578033,1.9457788,0.004244864,1.9892927,0.07324201,1.8116953,0.34937364,1.4526803,0.77092314,0.99248946,1.2436724,0.5339771,1.6619596,0.17962295,1.932296,0.00862664,1.9942603,0.059206665,1.834003,0.3200581,1.4873422,1.3303097,0.90216494,0.85981524,1.370259,0.42065263,1.7555988,0.110976756,1.9720588,1.4305115e-6,1.9712594,0.11253017,1.7533791,0.42341238,1.3671155,0.8631644,0.89879996,1.3334998,0.453103,1.7292964,0.12963992,1.9620923,0.00070619583,0.009075582,1.9310676,0.18156141,1.6594211,0.53697187,1.240391,0.9958712,0.7676326,1.4556932,0.34680927,1.8136659,0.0719769,1.9897807,0.004561782,1.9446751,0.15963149,1.6884305,0.50252724,1.2783186,0.9566103,0.80600137,1.4203912,1.5698211,0.25207657,1.8836339,0.030739307,1.9999505,0.026036084,1.8927739,0.23901802,1.5860583,0.6220828,1.1483561,1.0896137,0.6774957,1.5371156,0.27871644,1.8645698,0.041147232,1.9987888,0.017885804,1.9097741,0.21413124,1.6174209,0.5860218,0.74832726,1.0157677,1.2210311,0.5546981,1.6443334,0.19315547,1.9236243,0.011946142,1.9964812,0.05157113,1.8466202,0.3031742,1.5075359,0.71052086,1.055015,1.1825674,0.59019804,1.6138093,0.2169736,1.9078622,0.018759012,1.9990039,1.9765365,0.10204315,1.7684816,0.40455055,1.3886676,0.84014356,0.92198473,1.3114651,0.47273856,1.7131729,0.1413377,1.9554834,0.0018515587,1.9842391,0.08545601,1.7930131,0.37346506,1.4245453,0.8015074,0.96118957,1.2739137,0.50650823,0.36461133,1.7999139,0.08089954,1.9861932,0.0026106834,1.9520541,0.14724272,1.7051268,0.4824698,1.3006004,0.93336713,0.8288886,1.3991572,0.39542097,1.775734,0.09707934,1.9789306,0.00054448843,1.963332,0.12739229,1.7324246,0.4492718,1.337817,1.1713352,1.0664062,0.6996162,1.5173359,0.29503435,1.8526386,0.048015416,1.9973729,0.01376915,1.9191899,0.19994986,1.6355641,0.5649453,1.2098868,1.0271773,0.7372989,1.4833351,0.3234259,1.8314655,0.060770154,1.9937595,0.008036375,0.044449568,1.8587787,0.28666788,1.5274544,0.68831897,1.0782417,1.1596322,0.6115416,1.5952669,0.23166376,1.897857,0.023512363,1.9997718,0.033610225,1.8782334,0.25970048,1.560406,0.6512509,1.1173253,1.1207483,0.648022,1.5632579,1.6966629,0.15350068,1.9483569,0.0035378337,1.9880888,0.07628858,1.8069787,0.35549295,1.4455053,0.77874744,0.98445946,1.2514529,0.526887,1.6679574,0.17505741,1.9351707,0.007606089,1.9933691,0.061959147,1.8295451,0.3259685,1.4803143,1.3227193,0.91016,0.85186857,1.3777069,0.41412586,1.7608346,0.107328534,1.9739125,4.7266483e-5,1.9693165,0.11625975,1.7480742,0.42999214,1.3596339,0.87112373,0.89081395,1.3410597,0.44639754,1.7347674,0.1257137,1.9642513,0.00043666363,1.9782209,1.9281077,0.18620205,1.6533628,0.5441046,1.2325883,1.0039017,0.75982946,1.4628267,0.34074968,1.8183081,0.069015324,1.9908938,0.005360067,1.9420106,0.16401124,1.6825838,0.50950956,1.2705965,0.96463466,0.79812974,1.427664,0.37078184,0.2467702,1.8873651,0.028794825,1.9999981,0.027888,1.8891273,0.2442525,1.5795325,0.6295299,1.1404097,1.097609,0.6699047,1.5438721,0.27317744,1.8685772,0.03889823,1.9991517,0.019429505,1.9064114,0.21912253,1.611084,0.59334517,0.7561074,1.0077378,1.2288557,0.5475222,1.6504538,0.1884374,1.9266727,0.010740399,1.995776,0.054147303,1.8423191,0.30895644,1.5006002,0.7182168,1.0469949,1.190457,0.5828861,1.6201291,0.212004,1.9111998,0.01724255,1.9986132,0.042131662,0.10560614,1.7633184,0.41102135,1.3812561,0.84807587,0.91398126,1.3190861,0.46593207,1.7187791,0.13724941,1.957822,0.0013952851,1.9827874,0.08873367,1.7880955,0.3797441,1.4172606,0.80938447,0.9531664,1.2816283,0.4995396,1.6909268,1.8047073,0.07776499,1.9874913,0.0032227635,1.9495666,0.15146464,1.6994097,0.4893579,1.2929317,0.9413819,0.8209821,1.4065073,0.3890438,1.7807765,0.0936569,1.9805388,0.0008416772,1.9611464,0.13134265,1.7269335,0.4559924,1.3302478,1.1634179,1.0744168,0.6919663,1.5241914,0.28936154,1.856807,0.0455876,1.9979224,0.01512903,1.9159977,0.2047934,1.6293437,0.5721899,1.2020285,1.0352039,0.72955894,1.4903497,0.31753427,1.8359001,0.05804366,1.9946232,0.0090844035,1.9310436,1.8546367,0.29231882,1.5206149,0.69595945,1.0702333,1.1675545,0.6041544,1.6017004,0.22654867,1.9013636,0.021812677,1.9995681,0.035705864,1.8743647,0.265123,1.5537369,0.65878844,1.1093466,1.1287161,0.64051676,1.5698752,0.252033,0.14925265,1.9508736,0.0028950572,1.9868212,0.07939476,1.8022101,0.3616538,1.4383013,0.786586,0.9764305,1.2592171,0.5198274,1.6739122,0.17054504,1.9379848,0.006649494,1.9924138,0.06477219,1.8250339,0.33192235,1.4732553,0.7483908,0.9181609,0.8439315,1.3851303,0.40763682,1.7660214,0.10373795,1.9757032,0.00015753508,1.9673113,0.12004638,1.7427208,0.4366086,1.3521292,0.8790914,0.88283503,1.3485978,0.43972778,1.740191,0.121843815,1.9663482,0.00023162365,1.9765224,0.102072,0.1908952,1.6472623,0.5512666,1.2247707,1.0119319,0.75204176,1.4699304,0.33473265,1.8228974,0.06611371,1.9919431,0.0062224865,1.9392853,0.16844487,1.6766931,0.5165235,1.262857,0.9726612,0.79027116,1.4349093,0.36456066,1.7999532,1.8910391,0.026912928,1.9999814,0.02980262,1.8854234,0.24953574,1.5729694,0.6370009,1.1324543,1.105598,0.66233504,1.5505934,0.2676854,1.8725288,0.036711276,1.9994502,0.021036386,1.9029901,0.22416419,1.6047077,0.6006947,1.1712705,0.9997073,1.2366657,0.5403754,1.6565323,0.18377167,1.9296612,0.009598494,1.9950066,0.05678445,1.8379638,0.31478322,1.4936323,0.7259309,1.0389718,1.1983343,0.575601,1.626409,0.20708525,1.9144787,0.01578939,1.9981582,0.04446894,0.10922688,1.758106,0.41753012,1.3738198,0.856018,0.9059834,1.3266865,0.45916003,1.724339,0.1332168,1.9600987,0.0010034442,1.9812721,0.09207016,1.7831268,0.38606322,1.4099493,0.81727386,0.94514626,1.2893245,0.4926033,1.6967099,0.15346575,0.074689865,1.9887257,0.0038990974,1.9470179,0.15574121,1.6936476,0.49627888,1.2852441,0.9494004,0.81308717,1.4138312,0.3827061,1.7857689,0.09029293,1.9820838,0.0012032986,1.9588987,0.1353491,1.7213955,0.46274817,1.3226572,0.9102254,1.0824226,0.6843363,1.5310133,0.28373456,1.8609202,0.043221354,1.9984076,0.016552329,1.9127467,0.20968825,1.6230826,0.57946223,1.1941571,1.0432283,0.7218365,1.4973326,0.3116867,1.840281,0.0553779,1.9954228,0.010196328,1.9280832,1.8504395,0.29801542,1.5137417,0.7036196,1.0622205,1.1754661,0.5967927,1.6080952,0.22148347,1.9048123,0.020176113,1.9992999,0.03786367,1.8704395,0.270593,1.5470322,0.6663479,1.1013608,1.1366756,0.6330347,1.5764556,0.24672705,1.8873954,1.953329,0.0023165941,1.98549,0.0825603,1.7973897,0.3678558,1.4310693,0.79443836,0.968403,1.2669648,0.5127988,1.6798234,0.1660862,1.9407386,0.005756974,1.9913945,0.06764549,1.8204694,0.3379193,1.4661658,0.75617105,1.0076721,0.8360045,1.3925289,0.40118605,1.7711587,0.10020512,1.9774313,0.0003323555,1.9652436,0.123889685,1.7373197,0.4432615,1.3446018,0.88706684,0.8748637,1.3561132,0.43309414,1.7455667,0.11803055,1.9683828,9.101629e-5,1.974761,0.105635524,0.1956405,1.64112,0.5584576,1.2169384,1.0199615,0.7442701,1.4770038,0.32875854,1.8274337,0.06327242,1.9929285,0.007148981,1.9364995,0.17293215,1.6707587,0.5235686,1.2551004,0.9806895,0.782426,1.4421265,0.35838044,1.8047462,0.0777396,0.025093734,1.9999,0.031779826,1.8816624,0.25486737,1.5663693,0.64449525,1.1244903,1.1135801,0.6547871,1.5572792,0.26224053,1.8764241,0.03458643,1.9996842,0.022706449,1.8995106,0.22925591,1.5982924,0.6080701,1.1633532,1.0744822,1.2444603,0.53325826,1.6625686,0.17915857,1.9325898,0.008520484,1.994173,0.059482455,1.8335543,0.3206542,1.4866325,0.7336627,1.0309463,1.2061988,0.5683433,1.6326486,0.20221758,1.9176986,0.014399707,1.997639,0.046867847,1.8546026,1.7528446,0.4240765,1.3663595,0.86396945,0.89799154,1.3342658,0.45242286,1.7298522,0.1292401,1.9623137,0.0006759763,1.9796937,0.09546518,1.7781078,0.3924219,1.4026115,0.825175,0.9371297,1.2970022,0.4856997,1.7024481,0.14921814,1.9508939,1.9898962,0.004639685,1.9444082,0.16007221,1.6878409,0.50323236,1.2775381,0.9574222,0.8052043,1.4211284,0.37640816,1.7907106,0.086987615,1.9835653,0.001629293,1.9565891,0.13941127,1.7158109,0.46953857,1.3150458,0.9182263,0.84386665,0.6767266,1.5378008,0.27815378,1.8649778,0.0409168,1.9988284,0.018039107,1.9094365,0.214634,1.6167815,0.5867616,1.1862732,1.0512499,0.71413195,1.5042834,0.30588347,1.8446076,0.052773118,1.9961581,0.011372089,1.925063,0.19093376,0.30375725,1.5068355,0.71129876,1.0542036,1.1833663,0.5894569,1.6144507,0.21646845,1.9082025,0.018602729,1.9989672,0.040083587,1.8664583,0.27611,1.5402923,0.673929,1.0933684,1.1446263,0.6255764,1.582999,0.24146962,1.8910688,1.9557228,0.0018024445,1.9840951,0.08578497,1.7925179,0.3740986,1.4238093,0.8023039,0.9603776,1.2746952,0.50580156,1.6856909,0.16168112,1.9434316,0.004928589,1.9903113,0.07057893,1.815852,0.3439589,1.4590462,0.763967,0.9996416,1.2367295,1.3999021,0.39477384,1.7762464,0.09673035,1.9790962,0.00057160854,1.9631138,0.1277895,1.7318711,0.44995022,1.3370521,0.8950495,0.8669004,1.3636057,0.4264971,1.7508944,0.114274204,1.9703549,1.4901161e-5,1.9729369,0.109256685,1.7580631,1.6349365,0.5656771,1.2090923,1.0279896,0.7365149,1.4840463,0.3228277,1.8319166,0.060491443,1.9938498,0.008139491,1.9336532,0.17747271,1.6647811,0.5306444,1.2473274,0.9887191,0.77459496,1.4493152,0.35224158,1.8094873,0.07466501,0.023337483,1.9997542,0.033819437,1.8778446,0.260247,1.5597328,0.6520126,1.1165183,1.121555,0.6472615,1.5639292,0.25684327,1.8802629,0.03252381,1.9998538,0.024439573,1.8959731,0.23439735,1.5918385,0.61547065,1.1554253,1.0824881,0.68427396,1.5310689,0.28368878,1.8609536,0.04320228,1.9984114,0.01656425,1.9127197,0.20972842,1.6230314,0.5795218,1.1940926,0.9109694,0.851065,1.3784592,0.41346747,1.7613616,0.10696262,1.9740965,5.5491924e-5,1.9691164,0.11664039,1.7475348,0.43066,1.3588755,0.87192965,0.89000624,1.3418236,0.44572097,1.7353184,0.12531954,1.9644663,0.00041300058,1.9780519,0.09891856,1.7730385,0.39881974,1.3952476,0.8330874,0.92911714,1.3046608,0.47882932,1.7081411,0.14502543,1.9533488,0.0023121238,1.9854789,0.08258641,1.79735,0.3679067,1.43101,0.79450256,0.96833736,1.2670281,0.51274145,1.6798716,0.24623597,1.8877394,0.028601527,1.9999994,0.028078914,1.8887551,0.24478495,1.57887,0.6302848,1.139605,1.0984178,0.6691377,1.5445538,0.2726196,1.8689797,0.038674116,1.9991848,0.019589245,1.9060678,0.21963042,1.6104406,0.59408766,1.1783773,1.0592681,0.7064458,1.5112019,0.300125,1.8488798,0.05022937,1.9968293,0.012611628,1.9219831,0.19567949,1.6410697,0.5585165,1.2168744,1.020027,0.74420667,1.4770615,0.3287099,1.8274705,0.06324941,1.9929364,0.007156849,1.9364765,0.105969906,1.7627932,0.41167825,1.3805046,0.8488791,0.9131717,1.3198562,0.46524525,1.7193439,0.1368388,1.9580551,0.0013527274,1.9826369,0.08906865,1.7875949,0.38038176,1.416522,0.8101822,0.95235467,1.2824079,0.49883628,1.691514,0.1573301,1.9460638,0.0041643977,1.9891641,0.07357228,1.811182,0.35004085,1.4518971,0.7717781,0.9916112,1.244524,0.5332002,1.6626177,0.17912108,1.9326134,0.008511901,1.9941659,0.059504747,1.833518,0.32070237,1.4865751,0.733726,1.0308806,1.0752271,0.69119334,1.5248833,0.28879005,1.8572257,0.045345366,1.9979744,0.015270174,1.9156716,0.20528638,1.6287119,0.5729246,1.2012326,1.0360161,0.7287767,1.4910578,0.31694055,1.8363459,0.057771146,1.9947071,0.009194016,1.9307468,0.18206638,1.6587605,0.5377505,1.2395384,0.9967494,0.76677847,1.4564748,0.3461445,1.8141761,0.07165009,1.9899056,0.0046460032,1.9443867,0.16010785,1.6877933,0.50328934,1.277475,0.9574878,0.8051399,1.4211879,0.37635684,1.7907507,0.14882582,1.9511248,0.0028336048,1.9866893,0.07971239,1.8017247,0.36227953,1.4375708,0.78738,0.97561806,1.2600019,0.51911473,1.6745124,0.17009139,1.9382663,0.0065562725,1.9923136,0.0650602,1.8245745,0.33252722,1.4725393,0.74917734,1.0148895,1.2218875,0.5539119,1.6450047,0.19263697,1.9239607,0.011811137,1.9964073,0.0518499,1.8461525,0.3038044,1.506779,0.71136165,1.0541381,1.1834308,0.5893971,1.6145024,0.21642768,1.9082301,0.018590093,1.9989643,0.040101945,1.8664255,0.19137299,1.6466427,0.551993,1.2239788,1.0127445,0.7512546,1.4706476,0.33412617,1.8233588,0.065823495,1.9920459,0.006313324,1.9390061,0.1688965,1.6760945,0.5172349,1.2620728,0.97347355,0.78947663,1.4356408,0.36393338,1.8004405,0.08055383,1.9863384,0.00267452,1.9517851,0.1477018,1.7045038,0.48322153,1.2997627,0.93424344,0.8280234,1.3999623,0.39472157,1.7762878,0.09670222,1.9791095,0.0005738139,1.9630961,0.12782162,1.7318263,0.45000505,1.3369902,0.89511484,0.86683536,1.2374551,0.5396539,1.657145,0.18330246,1.9299603,0.009486496,1.9949253,0.0570547,1.83752,0.31537533,1.4929254,0.7267125,1.0381598,1.1991308,0.57486534,1.6270423,0.20659035,1.9148072,0.015645862,1.9981086,0.044708908,1.8583285,0.28728366,1.5267081,0.6891537,1.0773661,1.1604991,0.61073256,1.5959724,0.23110193,1.8982432,0.023323417,1.9997528,0.033836365,1.8778131,0.26029122,1.5596783,0.65207416,1.1164532,1.12162,0.64720005,1.5639834,0.25679934,1.8802938,0.07438207,1.988847,0.0039711,1.9467566,0.15617698,1.6930621,0.49698102,1.2844651,0.950212,0.81228894,1.4145708,0.38206697,1.7862713,0.08995581,1.9822366,0.0012434721,1.9586678,0.13575763,1.7208325,0.46343374,1.321888,0.91103476,0.8510001,1.3785199,0.4134143,1.7614043,0.10693306,1.9741113,5.6147575e-5,1.9691002,0.116671145,1.7474911,0.43071395,1.3588142,0.87199473,0.889941,1.3418852,0.4456663,1.7353629,0.12528771,1.9644837,0.00041109324,1.9780382,0.09894699,1.7729969,0.29859436,1.5130444,0.7043958,1.0614095,1.1762661,0.5960492,1.6087401,0.22097367,1.905158,0.020013988,1.9992691,0.03808552,1.8700392,0.2711491,1.5463518,0.66711414,1.1005523,1.1374805,0.6322789,1.5771195,0.24619281,1.8877697,0.02858591,1.9999995,0.028094351,1.888725,0.24482799,1.5788165,0.6303458,1.1395401,1.0984831,0.66907585,1.5446088,0.27257454,1.8690121,0.038656056,1.9991875,0.01960218,1.90604,0.21967149,1.6103885,0.5941477,1.1783127,1.0593336,0.83520293,1.3932761,0.4005354,1.7716758,0.09985089,1.9776026,0.00035363436,1.9650309,0.124281704,1.7367706,0.4439367,1.3438387,0.88787425,0.8740575,1.3568724,0.4324249,1.746108,0.11764783,1.9685853,8.0406666e-5,1.9745793,0.10599935,1.7627507,0.41173136,1.3804439,0.848944,0.9131063,1.3199184,0.46518975,1.7193894,0.13680565,1.958074,0.0013492703,1.9826248,0.08909571,1.7875545,0.38043326,1.4164624,0.8102467,0.9522891,1.2824708,0.49877948,1.6915615,0.15729475,1.9460851,0.024913192,1.9998882,0.031983376,1.8812786,0.25540954,1.5656995,0.64525497,1.1236839,1.1143874,0.6540246,1.5579538,0.26169223,1.8768151,0.034374893,1.9997044,0.022879004,1.8991553,0.22977394,1.597641,0.6088178,1.1625514,1.0752926,0.6911309,1.5249392,0.2887439,1.8572595,0.045325816,1.9979787,0.015281558,1.9156451,0.20532626,1.6286609,0.572984,1.2011682,1.0360817,0.7287135,1.491115,0.31689256,1.8363819,0.057749152,1.9947138,0.009202898,1.9307228,0.18210417,1.6587112,0.42474103,1.3656032,0.8647745,0.8971832,1.3350315,0.45174307,1.7304075,0.1288408,1.9625342,0.0006464124,1.9795303,0.09581196,1.7775971,0.39306754,1.4018674,0.8259751,0.9363187,1.2977781,0.485003,1.7030263,0.14879137,1.951145,0.0028286576,1.9866787,0.07973808,1.8016853,0.36233008,1.4375118,0.7874441,0.97555244,1.2600653,0.5190572,1.6745608,0.1700548,1.9382889,0.0065487623,1.9923054,0.0650835,1.8245373,0.3325761,1.4724815,0.74924093,1.0148239,1.2219515,0.6759577,1.5384858,0.27759165,1.8653853,0.040687084,1.9988675,0.018193126,1.9090983,0.2151373,1.6161417,0.58750176,1.1854748,1.0520614,0.71335334,1.5049851,0.30529875,1.8450423,0.052512884,1.9962289,0.011494637,1.9247541,0.19141161,1.6465926,0.55205166,1.2239147,1.0128101,0.751191,1.4707055,0.33407724,1.8233961,0.06580007,1.992054,0.006320715,1.9389836,0.16893303,1.6760461,0.5172925,1.2620094,0.9735392,0.7894125,1.4356999,0.36388272,1.8004799,0.08052802,1.9863491,0.0017539859,1.9839505,0.086114585,1.792022,0.37473255,1.4230732,0.8031006,0.9595656,1.2754765,0.5050953,1.6862822,0.16123837,1.9437008,0.004848361,1.9901981,0.0708791,1.8153818,0.34457242,1.4583242,0.76475674,0.998829,1.2375189,0.5395956,1.6571946,0.18326455,1.9299843,0.009477496,1.9949186,0.057076573,1.8374841,0.3154232,1.4928683,0.72677565,1.0380942,1.199195,0.574806,1.6270934,0.20655036,1.9148337,0.015634298,1.9981046,0.04472828,1.8582947,0.28732967,1.6343085,0.56640923,1.2082975,1.0288019,0.7357311,1.4847573,0.32222998,1.8323672,0.060213447,1.9939394,0.008243322,1.9333619,0.17793518,1.6641738,0.5313621,1.24654,0.9895317,0.77380335,1.4500409,0.3516227,1.8099642,0.07435721,1.9888568,0.003976941,1.9467356,0.15621221,1.6930149,0.49703777,1.2844021,0.95027757,0.81222445,1.4146305,0.38201535,1.7863119,0.08992857,1.9822489,0.0012467504,1.958649,0.13579065,1.7207869,0.46348912,1.3218257,0.91110015,0.85093516,1.3785807,0.5254558,1.6691661,0.17413986,1.935745,0.0074073076,1.993181,0.0625236,1.8286364,0.32716995,1.4788882,0.7421968,1.0221062,1.2148438,0.56038344,1.6394722,0.19691688,1.9211758,0.01294297,1.9969926,0.049580634,1.8499771,0.29864115,1.5129881,0.7044585,1.0613439,1.1763307,0.5959891,1.6087921,0.22093254,1.9051859,0.020000935,1.9992666,0.03810346,1.8700069,0.27119404,1.5462968,0.667176,1.100487,1.1375456,0.6322179,1.5771731,0.24614966,1.8878,0.028570354,1.9999995,0.0055294037,1.941464,0.16490418,1.681395,0.5109265,1.2690315,0.9662589,0.79653823,1.4291326,0.36951953,1.7960932,0.083415926,1.9851236,0.002172947,1.9539745,0.14394867,1.7096078,0.4770556,1.3066409,0.92704296,0.83513814,1.3933365,0.4004829,1.7717175,0.09982228,1.9776164,0.0003553629,1.9650137,0.124313414,1.7367262,0.44399124,1.3437772,0.8879395,0.8739923,1.3569337,0.43237084,1.7461517,0.11761695,1.9686015,7.95722e-5,1.9745646,0.106028736,1.7627082,0.41178447,1.4991926,0.7197766,1.0453714,1.1920522,0.5814095,1.6214033,0.21100444,1.9118681,0.016943336,1.9985263,0.042599678,1.8620095,0.28223926,1.5328298,0.68230146,1.0845603,1.1533707,0.6173912,1.5901608,0.23573685,1.8950477,0.024898648,1.9998872,0.031999826,1.8812475,0.25545335,1.5656453,0.64531636,1.1236188,1.1144526,0.65396297,1.5580083,0.26164794,1.8768466,0.034357786,1.9997059,0.022892952,1.8991265,0.22981578,1.5975884,0.60887825,1.1624867,1.075358,0.6910684,1.5249951,0.38775796,1.781791,0.092971385,1.9808567,0.0009096265,1.9606965,0.13214898,1.7258165,0.45735687,1.3287132,0.9038479,0.8581412,1.3718293,0.41927522,1.7567053,0.1102038,1.9724542,5.722046e-6,1.9708555,0.113310754,1.7522662,0.42479473,1.3655422,0.86483955,0.89711785,1.3350934,0.45168817,1.7304523,0.12880856,1.9625521,0.0006440878,1.9795171,0.09584004,1.7775557,0.3931197,1.4018073,0.8260398,0.9362532,1.2978407,0.48494673,1.703073,0.14875692,1.9511653,0.0028237104,1.9866681,0.03613758,1.8735749,0.26622623,1.552383,0.6603166,1.107731,1.1303277,0.63900065,1.5712099,0.25095528,1.8844242,0.030324697,1.9999659,0.026420772,1.8920107,0.24011612,1.5846874,0.6236489,1.1466837,1.0912977,0.6758956,1.5385411,0.2775463,1.8654182,0.040668547,1.9988706,0.018205583,1.909071,0.21517795,1.61609,0.58756155,1.1854103,1.0521269,0.71329045,1.5050417,0.30525148,1.8450775,0.052491903,1.9962347,0.011504531,1.9247291,0.19145024,1.6465424,0.5521104,1.3506076,0.8807049,0.8812212,1.3501205,0.43838233,1.7412827,0.121067464,1.966765,0.00019794703,1.976171,0.10278857,1.7673986,0.40590984,1.3871092,0.8418129,0.9202991,1.3130715,0.47130257,1.7143571,0.14047223,1.955981,0.0017501116,1.9839387,0.08614123,1.7919819,0.3747838,1.4230137,0.80316496,0.9595,1.2755395,0.50503826,1.6863298,0.16120261,1.9437225,0.0048419237,1.990189,0.07090336,1.8153439,0.34462202,1.4582658,0.7648205,0.9987634,1.2375827,0.5395373,1.657244,0.26657963,1.8733218,0.03627622,1.9995028,0.021369338,1.9022906,0.22519064,1.6034125,0.6021853,1.169669,1.0680933,0.6980039,1.5187821,0.29383612,1.8535209,0.04749912,1.997494,0.014050186,1.9185228,0.20096546,1.6342578,0.56646836,1.2082332,1.0288676,0.7356678,1.4848146,0.3221817,1.8324037,0.060190976,1.9939467,0.008251727,1.9333383,0.17797256,1.6641247,0.5314201,1.2464763,0.9895973,0.7737394,1.4500996,0.3515727,1.8100026,0.07433236,1.9888666,0.0039827824,1.9809577,0.092752516,1.7821151,0.38734692,1.4084663,0.818872,0.9435235,1.29088,0.4912035,1.6978749,0.15260172,1.9488919,0.0033971071,1.9878273,0.076937675,1.805979,0.35678673,1.4439908,0.78039676,0.9827688,1.2530891,0.525398,1.6692148,0.17410284,1.9357681,0.00739938,1.9931732,0.06254643,1.8285997,0.32721853,1.4788305,0.7422602,1.0220406,1.2149079,0.5603245,1.6395227,0.19687778,1.9212013,0.01293242,1.9969876,0.04960102,1.8499426,0.29868793,1.5129317,0.7045212,1.1925625,1.044852,0.72027576,1.498742,0.3105086,1.841161,0.05484581,1.9955769,0.010429144,1.9274769,0.18718588,1.6520817,0.5456102,1.2309434,1.0055926,0.75818837,1.464325,0.3394792,1.8192787,0.06839937,1.9911201,0.005536318,1.9414418,0.1649403,1.6813471,0.51098377,1.2689683,0.9663245,0.796474,1.4291918,0.36946857,1.796133,0.0833897,1.9851348,0.0021772385,1.9539547,0.14398259,1.7095616,0.47711158,1.3065783,0.9271084,0.8350734,1.3933969,0.40043032,1.7717593,0.16519034,1.9412885,0.0055841804,1.9911804,0.068234324,1.8195392,0.33913815,1.4647274,0.75774753,1.0060469,1.2305014,0.5460149,1.6517372,0.18745065,1.9273069,0.010494709,1.9956193,0.054697514,1.8414066,0.3101796,1.4991357,0.7198396,1.0453058,1.1921166,0.5813499,1.6214547,0.21096408,1.911895,0.016931295,1.9985228,0.042618632,1.8619763,0.28228492,1.5327742,0.6823637,1.084495,1.1534356,0.61733055,1.5902139,0.23569447,1.8950769,0.024884045,1.9998863,0.032016337,1.9359283,0.17384678,1.6695523,0.5249981,1.2535286,0.9823145,0.78084004,1.4435837,0.35713464,1.8057098,0.077112556,1.9877565,0.0033597946,1.9490352,0.15236056,1.6982002,0.49081242,1.2913146,0.94306993,0.8193188,1.4080516,0.38770604,1.781832,0.09294373,1.9808693,0.0009124279,1.9606782,0.13218158,1.7257712,0.457412,1.3286512,0.9039132,0.8580762,1.3718902,0.41922182,1.7567482,0.11017382,1.9724696,5.9604645e-6,1.9708397,0.11334109,1.752223,0.42484844,1.3654811,0.86490464,1.0293217,1.2077888,0.56687784,1.6339064,0.20123869,1.9183431,0.014126182,1.9975259,0.047360837,1.8537575,0.2935145,1.5191705,0.6975708,1.0685465,1.1692213,0.6026022,1.6030501,0.225478,1.9020946,0.021462858,1.999517,0.036155045,1.8735429,0.26627082,1.5523281,0.66037834,1.1076657,1.1303928,0.6389394,1.5712638,0.25091177,1.884455,0.030308664,1.9999664,0.026435792,1.8919811,0.2401588,1.5846341,0.6237097,1.1466187,1.0913631,0.67583346,1.5385964,0.27750087,1.7917044,0.086325824,1.9838576,0.0017233491,1.9561142,0.14024013,1.7146751,0.470917,1.3135029,0.91984624,0.84226155,1.3866901,0.4062754,1.7671072,0.10298926,1.9760723,0.00018900633,1.966881,0.12085086,1.7415876,0.43800646,1.3505461,0.88077,0.88115597,1.350182,0.43832797,1.7413268,0.12103617,1.9667819,0.00019663572,1.9761568,0.102817535,1.7673565,0.40596265,1.3870486,0.8418777,0.92023367,1.3131338,0.47124684,1.7144032,0.14043868,1.9560002,0.0017462373,1.983927,0.08616793,1.8656458,0.27723223,1.5389239,0.6754658,1.0917501,1.1462343,0.6240698,1.5843186,0.24041158,1.8918053,0.026524663,1.9999695,0.030213773,1.8846362,0.25065434,1.5715828,0.638577,1.1307781,1.1072792,0.66074395,1.5520041,0.26653498,1.8733537,0.036258698,1.9995048,0.021382809,1.9022622,0.22523218,1.6033602,0.60224557,1.1696044,1.0681587,0.6979413,1.5188382,0.29378963,1.853555,0.047479093,1.9974985,0.014061213,1.9184968,0.20100492,1.634207,0.56652755,1.2081691,1.0289332,0.8652898,1.3651192,0.42516643,1.7519667,0.11352092,1.9707465,7.3313713e-6,1.97256,0.10999656,1.7570021,0.41890544,1.372251,0.85769147,0.9043001,1.3282841,0.45773852,1.7255038,0.13237482,1.9605702,0.0009291172,1.980945,0.09278017,1.7820742,0.38739878,1.4084065,0.8189365,0.943458,1.2909427,0.49114698,1.697922,0.15256685,1.9489126,0.0033917427,1.987817,0.07696295,1.8059402,0.35683697,1.4439319,0.7804608,0.98270315,1.2531526,0.5253402,1.6692636,0.17406583,1.8810327,0.03211397,1.9998803,0.024797976,1.8952501,0.23544389,1.5905277,0.6169715,1.1538197,1.0841076,0.6827323,1.5324453,0.28255564,1.8617792,0.042730987,1.9985015,0.016860127,1.9120545,0.21072537,1.6217592,0.58099693,1.1924981,1.0449176,0.7202127,1.4987988,0.31046104,1.8411965,0.054824352,1.9955829,0.010438621,1.9274523,0.18722415,1.6520319,0.5456686,1.2308797,1.0056581,0.7581247,1.4643831,0.33942991,1.8193164,0.06837553,1.9911289,0.005543232,1.9414196,0.16497642,1.7720065,0.4001193,1.3937541,0.83469003,0.9274961,1.3062084,0.47744292,1.7092876,0.14418358,1.9538381,0.0022029877,1.9852016,0.08323437,1.7963681,0.3691669,1.4295429,0.7960934,0.966713,1.2685939,0.51132286,1.6810625,0.16515422,1.9413106,0.005577266,1.9911717,0.06825817,1.8195016,0.33918744,1.4646692,0.75781125,1.0059812,1.2305653,0.54595643,1.651787,0.18741238,1.9273314,0.010485172,1.9956132,0.05471891,1.841371,0.31022716,1.4990789,0.71990263,1.0452403,1.1921811,0.7048926,1.512598,0.2989651,1.8497376,0.049722016,1.9969573],"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/versinf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..114572f8988e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[0.0010502338,0.8909724,1.976226,1.3218988,0.09396577,0.012144387,1.7927623,1.9980485,0.358204,0.039213777,0.048282564,1.8778403,0.743056,0.4759351,0.0077980757,1.592658,1.1761959,0.16474521,0.15377969,1.1960968,0.1884678,1.9824829,0.4587928,0.7626826,1.8679595,0.04226035,1.450712,1.8464341,0.03107065,1.4876441,1.2975128,0.10272318,1.9379101,0.6059079,0.60469884,1.9515942,0.56782234,0.6434531,1.9230921,0.08558011,0.68283105,1.4518862,0.06945485,1.8673053,1.4141896,0.45768672,1.8873608,1.3757683,0.4932924,1.9058644,0.16546947,0.5297843,1.5937176,0.1431613,0.56709886,1.5595515,0.122351944,1.7984986,1.5244066,0.35719544,1.8229723,0.26852143,0.38978863,1.8460065,0.24064952,0.42344916,1.6893828,0.2141059,1.687474,1.6584897,0.18893695,1.7172387,1.6264448,0.2667294,1.7457486,0.3592137,0.29580182,1.7729542,0.32767254,0.32610595,1.7988076,0.29730743,1.5915977,0.53210866,0.26817143,1.6247923,0.4955631,0.24031556,1.6568941,0.45989978,1.4117926,1.6878468,0.42518127,1.4495369,1.7175963,0.39146823,1.4864948,0.6459132,0.3588196,1.5226017,0.60711765,0.3272925,1.5577946,0.56900936,1.2949991,1.5920117,0.53165495,1.3346945,1.6251931,0.49511975,1.3738045,0.7652401,0.4594677,1.4122605,0.7247997,0.42476118,1.4499955,0.6848407,1.1736046,1.4869434,0.645433,1.2146322,0.92987823,0.60664546,1.2552842,0.88822824,0.56854606,1.2954897,0.84677374,1.0076964,1.3351783,0.8055873,1.0495026,1.3742807,0.76474094,1.0912223,1.054759,0.72430605,1.1327825,1.0129597,0.6843534,1.1741103,0.97113764,0.8829992,1.2151337,0.92936605,0.92462856,1.2557806,0.887718,0.96638983,1.1787859,0.8462664,1.0082098,1.137489,0.80508363,1.0500154,1.0959516,0.7601268,1.0917337,1.0542463,0.72381246,1.3396499,1.0124463,0.68386626,1.3000243,0.9706243,1.5621555,1.259874,0.9288538,1.5270821,1.219269,0.88720775,1.4910867,1.1782806,0.84575903,1.4542325,1.1369803,0.80458003,1.4165835,1.0954405,1.6608536,1.378206,1.0537336,1.6288934,1.3391669,1.0119327,1.5958332,1.2995344,0.9701111,1.5617306,1.2593781,0.9283416,1.5266457,1.2187681,1.749245,1.4906394,1.1777754,1.7208965,1.4537749,1.1364717,1.6912869,1.4161167,1.0949293,1.6604681,1.3777306,1.8488011,1.6284941,1.3386837,1.8259511,1.5954207,1.2990445,1.8016562,1.5613058,1.2588822,1.7759593,1.5262091,1.218267,1.748905,1.4901919,1.9080813,1.7205405,1.4533173,1.8897755,1.6909158,1.4156497,1.8699133,1.6600826,1.3772551,1.8485296,1.6280947,1.3382006,1.8256615,1.5950081,1.9531989,1.8013492,1.5608808,1.9397229,1.7756352,1.5257723,1.9246032,1.7485645,1.4897442,1.9078661,1.7201843,1.990166,1.889541,1.6905445,1.9834502,1.86966,1.6596967,1.9750142,1.8482578,1.627695,1.9648726,1.8253717,1.5945953,1.9530435,1.801042,1.9998815,1.9395472,1.775311,1.9983635,1.9244075,1.7482239,1.9950991,1.9076507,1.719828,1.990094,1.8893063,1.6901729,1.983357,1.8694065,1.9940028,1.9749,1.8479857,1.997706,1.9647377,1.8250817,1.9996641,1.9528878,1.8007345,1.9998735,1.9393712,1.7749866,1.9983339,1.9242115,1.9726217,1.995048,1.907435,1.9814883,1.9900217,1.8890715,1.9886383,1.9832635,1.8691525,1.9940588,1.9747856,1.9205418,1.9977407,1.9646024,1.9360712,1.9996772,1.952732,1.9499632,1.9998652,1.9391949,1.9621935,1.9983041,1.9240153,1.9727409,1.9949969,1.8646731,1.9815866,1.9899492,1.8849217,1.9887154,1.9831698,1.9036224,1.9941146,1.9746708,1.847441,1.5172281,1.7692759,1.9362518,1.9996902,1.9525758,1.8001189,1.5869302,1.8199708,1.9623332,1.9982741,1.9238188,1.3679625,1.6525273,1.864931,1.9816846,1.9898765,1.8886008,1.444369,1.7135608,1.9038422,1.9941702,1.9745559,1.2084839,1.5176675,1.769604,1.936432,1.9997028,1.9524194,1.2894741,1.5873458,1.8202646,1.9624727,1.9982438,1.9236221,1.3684399,1.6529163,1.8651886,1.9817822,1.9898034,1.126545,1.4448289,1.7139205,1.9040618,1.9942254,1.9744406,1.208986,1.5181069,1.7699317,1.9366121,1.9997152,0.96010345,1.2899656,1.5877614,1.8205583,1.9626119,1.9982133,1.0437318,1.3689172,1.6533052,1.865446,1.9818797,1.9897301,1.1270543,1.4452887,1.7142799,1.9042811,1.9942803,0.8772637,1.2094882,1.518546,1.7702593,1.9367919,1.9997274,0.9606165,1.290457,1.5881767,1.8208516,1.9627509,0.7142023,1.0442448,1.3693944,1.6536939,1.8657031,1.9819769,0.7952719,1.1275636,1.4457484,1.7146392,1.9045002,0.55907315,0.87777334,1.2099903,1.518985,1.7705867,1.9369714,0.6356095,0.96112967,1.2909484,1.5885918,1.8211448,1.9628897,0.7146944,1.0447578,1.3698716,1.6540823,1.8659601,0.48606092,0.7957746,1.1280729,1.446208,1.7149982,1.9047191,0.5595341,0.878283,1.2104923,1.5194238,1.7709138,0.3507768,0.6360878,0.96164274,1.2914395,1.5890069,1.8214377,0.41659904,0.7151866,1.0452708,1.3703486,1.6544707,0.23351198,0.48650146,0.7962772,1.1285821,1.4466676,1.7153573,0.28985643,0.5599952,0.8787927,1.2109942,1.5198625,1.7712407,0.35116744,0.6365661,0.9621559,1.2919307,1.5894217,0.18282402,0.41701615,0.7156788,1.0457838,1.3708255,1.6548588,0.23384184,0.48694217,0.79678,1.1290914,1.4471269,0.098472476,0.29021806,0.5604563,0.87930244,1.2114961,1.5203011,0.1377812,0.3515582,0.63704455,0.962669,1.2924218,0.039143085,0.18312007,0.41743344,0.71617115,1.0462967,1.3713024,0.065651655,0.23417199,0.48738295,0.7972828,1.1296005,1.447586,0.0986948,0.29057986,0.5609176,0.8798122,1.211998,0.019455135,0.13804144,0.35194921,0.63752306,0.96318215,1.2929128,0.03928542,0.18341637,0.41785085,0.7166636,1.0468096,0.00047385693,0.06583476,0.23450226,0.4878239,0.79778564,1.1301097,0.006540954,0.098917365,0.29094183,0.561379,0.880322,1.2124999,0.019556046,0.13830185,0.3523404,0.6380017,0.9636953,0.001370132,0.039428115,0.1837129,0.41826844,0.71715605,1.0473225,0.00048977137,0.066018105,0.23483276,0.48826504,0.7982886,0.023916543,0.0065997243,0.09914017,0.29130405,0.56184053,0.8808318,0.009165168,0.019657254,0.13856256,0.3527317,0.6384804,0.07355434,0.0013434291,0.039570987,0.18400961,0.4186862,0.7176486,0.045341372,0.00050598383,0.06620169,0.23516345,0.48870623,0.7987915,0.023805022,0.006658733,0.09936315,0.2916664,0.5623021,0.108014345,0.009095907,0.019758642,0.13882345,0.3531232,0.63895917,0.07336116,0.001316905,0.039714098,0.18430656,0.4191041,0.19544458,0.045188606,0.0005224347,0.06638557,0.23549438,0.4891476,0.1486364,0.0236938,0.0067180395,0.09958643,0.29202896,0.30520546,0.107782364,0.009026945,0.019860387,0.13908458,0.35351485,0.24754137,0.07316822,0.0012907386,0.039857507,0.18460369,0.41952217,0.19513977,0.045036137,0.0005391836,0.066569686,0.23582548,0.36733103,0.1483671,0.023582816,0.0067775846,0.099809945,0.29239172,0.30483627,0.10755056,0.0089582205,0.01996231,0.13934594,0.5046806,0.24720329,0.072975576,0.001264751,0.040001154,0.18490106,0.43382722,0.19483513,0.044883907,0.00055617094,0.06675398,0.6557778,0.36693347,0.14809811,0.02347207,0.0068374276,0.1000337,0.2927546,0.56368774,0.8828714,1.4649501,1.1489241,0.816429,0.50423455,0.24686539,0.07278311,0.0012390614,0.0401451,0.18519866,0.42035872,0.71961963,1.6054813,1.311026,0.9821753,0.6552957,0.36653608,0.1478293,0.023361564,0.0068974495,0.100257695,0.29311776,0.56414986,1.7292073,1.4644953,1.1484163,0.8159243,0.5037887,0.24652767,0.07259095,0.0012136698,0.040289223,0.18549645,0.4207772,1.8326938,1.6050725,1.3105379,0.98166186,0.65481377,0.36613882,0.14756072,0.023251355,0.006957829,0.10048187,0.29348105,1.913069,1.7288557,1.4640405,1.1479084,0.81541955,0.503343,0.24619013,0.07239896,0.0011885166,0.040433645,0.18579447,0.42119586,1.8324094,1.6046636,1.3100498,0.9811485,0.6543319,0.36574173,0.14729238,0.023141444,0.0070183873,0.10070634,0.29384452,1.9128594,1.7285041,1.4635856,1.1474006,0.81491494,0.5028973,0.24585283,0.07220727,0.0011636019,0.040578306,0.18609267,1.9679728,1.8321247,1.6042545,1.3095615,0.98063505,0.6538501,0.36534482,0.14702421,0.023031712,0.0070793033,0.10093105,1.9962199,1.9126496,1.7281523,1.4631306,1.1468927,0.8144103,0.50245184,0.2455157,0.07201582,0.0011389852,0.040723264,1.9968165,1.9678438,1.8318398,1.6038454,1.3090732,0.9801217,0.6533684,0.3649481,0.14675635,0.022922277,0.007140398,1.9697464,1.996175,1.9124396,1.7278001,1.4626755,1.1463847,0.81390584,0.5020065,0.24517882,0.07182461,0.0011146069,0.0408684,1.9968574,1.9677144,1.8315548,1.603436,1.3085849,0.9796083,0.65288675,0.36455154,0.14648867,0.022813082,0.007201791,1.9698716,1.99613,1.9122293,1.727448,1.4622202,1.1458768,0.81340134,0.5015613,0.24484211,0.07163364,0.001090467,1.9159669,1.9968979,1.9675848,1.8312695,1.6030264,1.3080964,0.9790949,0.65240526,0.3641551,0.14622116,0.022704184,1.8366393,1.9699966,1.9960848,1.9120189,1.7270955,1.4617647,1.1453687,0.81289685,0.50111616,0.24450558,0.0714429,1.7340906,1.9161727,1.9969382,1.967455,1.8309839,1.6026167,1.3076079,0.97858155,0.65192384,0.36375886,0.14595395,1.611167,1.8369205,1.9701214,1.9960393,1.9118083,1.7267429,1.4613092,1.1448607,0.8123925,0.5006712,0.24416924,1.4712803,1.7344391,1.9163785,1.9969782,1.967325,1.8306981,1.6022068,1.3071191,0.9780682,0.6514425,0.3633628,0.14568698,1.6115733,1.8372014,1.9702458,1.9959935,1.9115973,1.7263901,1.4608536,1.1443526,0.8118881,0.5002264,0.24383312,1.4717332,1.7347876,1.916584,1.9970179,1.9671947,1.8304121,1.6017969,1.3066305,0.9775548,0.6509613,0.3629669,1.3188,1.6119795,1.8374821,1.9703699,1.9959474,1.911386,1.726037,1.4603977,1.1438445,0.81138384,0.49978167,1.1570184,1.4721859,1.7351358,1.916789,1.9970574,1.9670641,1.8301259,1.6013865,1.3061416,0.9770414,0.65048015,0.9908787,1.3192866,1.6123855,1.8377626,1.9704939,1.9959011,1.9111745,1.7256838,1.4599419,1.1433363,0.8108796,0.8249922,1.1575255,1.4726385,1.7354838,1.9169941,1.9970967,1.9669333,1.8298395,1.6009762,1.3056529,0.9765281,0.649999,0.9913922,1.3197732,1.6127914,1.8380429,1.9706175,1.9958546,1.9109628,1.7253304,1.4594859,1.1428281,0.81037533,0.8254978,1.1580325,1.4730909,1.7358316,1.9171988,1.9971356,1.9668021,1.8295529,1.6005658,1.3051639,0.97601473,0.6644467,0.9919056,1.3202597,1.6131971,1.8383229,1.970741,1.9958076,1.9107509,1.7249768,1.4590297,1.1423198,0.512709,0.82600343,1.1585395,1.4735433,1.7361792,1.9174032,1.9971743,1.9666709,1.8292661,1.6001551,1.3046749,0.37449622,0.6649305,0.9924191,1.3207461,1.6136026,1.8386028,1.9708642,1.9957607,1.9105387,1.7246231,1.4585735,0.2536444,0.5131575,0.8265091,1.1590465,1.4739954,1.7365267,1.9176075,1.9972128,1.9665393,1.828979,1.5997443,0.15350789,0.37489694,0.66541433,0.9929326,1.3212324,1.6140081,1.8388824,1.9709871,1.9957132,1.9103264,1.7242692,1.4581171,0.2539863,0.51360613,0.8270148,1.1595535,1.4744475,1.7368739,1.9178114,1.997251,1.9664074,1.8286917,1.5993333,0.15378135,0.37529784,0.6658983,0.9934461,1.3217187,1.6144133,1.8391618,1.9711099,1.9956656,1.9101137,1.723915,0.07706344,0.2543283,0.51405483,0.8275206,1.1600604,1.4748995,1.737221,1.9180152,1.997289,1.9662752,1.8284042,0.025961876,0.15405512,0.37569892,0.6663823,0.99395955,1.3222048,1.6148183,1.839441,1.9712322,1.9956177,1.9099008,0.0018948913,0.07726127,0.25467056,0.5145037,0.8280264,1.1605673,1.4753513,1.7375678,1.9182187,1.9973266,1.9661429,0.005530596,0.026078224,0.15432906,0.37610012,0.6668664,0.99447304,1.3226908,1.6152232,1.8397199,1.9713544,1.9955696,1.9096878,0.0019266605,0.077459276,0.255013,0.51495266,0.8285323,1.161074,1.475803,1.7379144,1.918422,1.9973639,1.9660103,0.0054768324,0.02619487,0.15460318,0.3765015,0.66735065,0.99498653,1.3231769,1.615628,1.8399986,1.9714763,1.9955212,0.036630213,0.0019586682,0.07765758,0.25535566,0.5154018,0.8290382,1.1615808,1.4762547,1.7382609,1.918625,1.997401,0.09452212,0.005423248,0.026311755,0.1548776,0.37690306,0.66783494,0.9955,1.3236628,1.6160326,1.8402771,1.9715979,0.17754579,0.036492586,0.0019909143,0.077856064,0.2556985,0.515851,0.8295442,1.1620876,1.476706,1.7386072,1.9188278,0.28339684,0.09430432,0.005370021,0.026428878,0.1551522,0.37730473,0.66831934,0.9960135,1.3241485,1.616437,1.8405554,0.40913743,0.17725378,0.036355257,0.0020233989,0.078054845,0.25604153,0.5163004,0.8300502,1.1625942,1.4771574,1.7389531,1.9190303,0.2830388,0.094086766,0.0053169727,0.0265463,0.15542704,0.3777066,0.6688038,0.996527,1.3246343,1.6168412,1.8408334,0.40872324,0.17696202,0.036218226,0.0020561814,0.078253865,0.25638473,0.51674986,0.8305562,1.1631008,1.4776087,1.739299,0.5508187,0.28268093,0.09386945,0.0052642226,0.026663959,0.15570211,0.37810862,0.66928834,0.9970405,1.32512,1.6172452,0.7053813,0.40830922,0.17667049,0.036081374,0.002089262,0.07845312,0.25672817,0.5171995,0.8310623,1.1636074,1.4780598,0.868121,0.55035996,0.28232324,0.09365231,0.0052117705,0.026781857,0.15597737,0.37851083,0.669773,0.997554,1.3256054,1.0345211,0.7048906,0.40789533,0.17637914,0.03594482,0.0021225214,0.07865262,0.2570718,0.51764923,0.8315684,1.164114,1.4785106,0.86761206,0.54990137,0.2819658,0.09343547,0.0051594973,0.026900053,0.15625286,0.37891322,0.6702577,0.9980675,1.3260909,1.034008,0.7044,0.4074816,0.17608804,0.035808504,0.0021561384,0.078852355,0.2574156,0.51809907,0.8320746,1.1646205,1.19946,0.8671031,0.5494429,0.28160846,0.09321886,0.0051075816,0.027018487,0.15652859,0.37931573,0.6707425,0.99858093,1.359376,1.0334947,0.7039095,0.407068,0.17579716,0.035672486,0.0021899343,0.07905233,0.25775963,0.5185491,0.8325808,1.5093174,1.1989567,0.8665942,0.5489845,0.28125137,0.0930025,0.005055845,0.02713716,0.15680456,0.37971842,0.67122746,1.6451225,1.3588967,1.0329815,0.7034191,0.4066546,0.17550647,0.035536647,0.002224028,0.07925254,0.2581038,0.5189992,1.7630222,1.5088754,1.1984535,0.8660853,0.5485263,0.28089446,0.09278637,0.005004406,0.027256131,0.15708071,0.3801213,0.6717124,0.9996079,1.3275468,1.6192632,1.8424971,1.9725618,1.26629,1.5676429,1.806222,1.9556432,1.9993827,1.9326034,1.7626902,1.5084333,1.1979502,0.86557645,0.54806817,0.28053772,0.09257048,0.004953265,0.02737528,0.1573571,0.38052428,0.67219746,1.0001215,1.3280319,1.6196663,1.8427737,0.9360012,1.2667849,1.5680656,1.8065257,1.9557943,1.9993646,1.9324179,1.762358,1.5079911,1.1974468,0.8650676,0.54761016,0.28018117,0.092354834,0.004902303,0.027494788,0.15763372,0.3809275,0.67268264,1.0006349,1.328517,1.6200693,1.84305,0.93651366,1.2672797,1.5684881,1.8068292,1.9559453,1.9993461,1.9322323,1.7620256,1.5075487,1.1969435,0.8645589,0.5471523,0.2798248,0.09213942,0.004851699,0.027614474,0.15791053,0.38133085,0.67316794,1.0011485,1.3290019,1.6204721,0.6132418,0.93702614,1.2677746,1.5689106,1.8071324,1.9560958,1.9993274,1.9320464,1.761693,1.5071062,1.19644,0.86405015,0.5466945,0.27946866,0.09192425,0.0048012733,0.027734458,0.15818757,0.3817343,0.67365324,1.0016619,1.3294868,0.33261025,0.6137154,0.9375386,1.2682693,1.5693328,1.8074355,1.9562461,1.9993085,1.9318602,1.7613602,1.5066636,1.1959364,0.8635414,0.5462369,0.2791127,0.091709316,0.004751146,0.027854681,0.15846485,0.382138,0.67413867,1.0021755,1.3299716,0.33299273,0.6141891,0.9380511,1.2687639,1.5697548,1.8077383,1.9563963,1.9992893,1.9316738,1.7610271,1.5062208,1.1954329,0.86303276,0.54577935,0.27875692,0.09149462,0.0047013164,0.027975142,0.15874237,0.38254184,0.6746242,1.0026889,0.12580806,0.33337545,0.6146629,0.9385636,1.2692585,1.5701767,1.8080409,1.9565461,1.9992697,1.9314871,1.7606939,1.5057778,1.1949294,0.8625241,0.54532194,0.27840132,0.09128016,0.0046516657,0.028095901,0.15902013,0.38294584,0.67510974,0.015003502,0.1260575,0.3337583,0.61513674,0.9390761,1.269753,1.5705986,1.8083433,1.9566958,1.9992499,1.9313002,1.7603605,1.5053349,1.1944256,0.8620155,0.54486465,0.2780459,0.09106594,0.0046023726,0.028216898,0.15929806,0.38335,0.67559546,0.015092254,0.12630719,0.33414125,0.6156107,0.93958867,1.2702473,1.5710201,1.8086455,1.956845,1.9992299,1.931113,1.7600269,1.5048916,1.1939219,0.86150694,0.5444075,0.2776907,0.09085196,0.0045532584,0.028338134,0.15957624,0.3837543,0.012713611,0.015181243,0.12655711,0.33452445,0.6160848,0.94010127,1.2707417,1.5714417,1.8089474,1.9569942,1.9992096,1.9309256,1.7596931,1.5044484,1.1934181,0.8609984,0.54395044,0.2773357,0.09063822,0.004504442,0.028459609,0.15985459,0.11918384,0.012632132,0.015270531,0.12680727,0.33490783,0.616559,0.9406138,1.271236,1.5718629,1.8092492,1.9571431,1.9991891,1.930738,1.7593591,1.504005,1.1929144,0.86048996,0.5434935,0.27698088,0.090424776,0.004455924,0.02858138,0.16013318,0.11894083,0.01255089,0.015360057,0.12705761,0.3352914,0.61703336,0.9411264,1.2717302,1.5722841,1.8095508,1.9572916,1.9991684,1.93055,1.7590249,1.5035613,1.1924105,0.8599815,0.5430367,0.27662623,0.09021151,0.0044076443,0.028703392,0.32238686,0.11869806,0.012469888,0.015449822,0.12730825,0.33567512,0.6175077,0.941639,1.2722243,1.572705,1.8098521,1.9574399,1.9991473,1.9303619,1.7586904,1.5031176,1.1919066,0.85947305,0.54258,0.27627176,0.08999848,0.004359603,0.60054004,0.32200933,0.11845553,0.012389183,0.015539885,0.12755907,0.33605897,0.6179822,0.94215167,1.2727184,1.573126,1.8101532,1.957588,1.999126,1.9301734,1.7583559,1.5026739,1.1914026,0.8589647,0.5421235,0.27591753,0.089785695,0.92273396,0.6000694,0.3216319,0.11821324,0.012308776,0.015630186,0.12781018,0.33644307,0.61845684,0.94266427,1.2732124,1.5735466,1.8104541,1.9577358,1.9991044,1.9299848,1.758021,1.5022298,1.1908985,0.8584564,0.54166704,0.27556342,0.089573145,0.922222,0.59959877,0.32125473,0.11797118,0.0122285485,0.015720725,0.12806147,0.33682734,0.61893153,0.9431769,1.2737063,1.5739672,1.8107548,1.9578834,1.9990826,1.929796,1.7576859,1.5017858,1.1903945,0.85794806,0.5412107,0.27520955,1.2529497,0.92171013,0.5991283,0.32087773,0.117729306,0.012148619,0.015811563,0.128313,0.33721173,0.61940634,0.94368964,1.2742002,1.5743877,1.8110553,1.9580307,1.9990604,1.9296068,1.7573507,1.5013416,1.1898904,0.85743976,0.54075456,1.5557896,1.2524529,0.9211982,0.59865797,0.3205009,0.11748773,0.012068987,0.015902638,0.12856472,0.3375963,0.6198812,0.9442023,1.274694,1.5748079,1.8113556,1.9581778,1.999038,1.9294174,1.7570153,1.5008972,1.1893861,0.85693157,0.54029846,1.5553627,1.251956,0.9206863,0.5981877,0.32012427,0.11724633,0.011989534,0.015993953,0.12881672,0.3379811,0.6203562,0.944715,1.2751876,1.575228,1.8116556,1.9583247,1.9990153,1.9292278,1.7566798,1.5004526,1.188882,0.8564234,1.7970433,1.5549356,1.2514591,0.9201745,0.5977175,0.3197478,0.11700523,0.011910439,0.016085565,0.12906897,0.33836603,0.6208313,0.94522774,1.2756813,1.5756481,1.8119555,1.9584713,1.9989924,1.929038,1.7563438,1.500008,1.1883776,1.9508495,1.7967331,1.5545083,1.250962,0.9196626,0.5972475,0.31937152,0.11676431,0.011831522,0.016177416,0.1293214,0.33875114,0.62130654,0.94574046,1.2761748,1.5760678,1.8122551,1.9586176,1.9989693,1.9288478,1.7560079,1.4995632,1.1878734,1.9506905,1.7964227,1.554081,1.2504649,0.91915077,0.5967775,0.31899542,0.11652362,0.011752903,0.016269565,0.12957406,0.33913642,0.6217818,0.9462532,1.2766683,1.5764874,1.8125546,1.9587636,1.9989458,1.9286575,1.7556717,1.4991183,1.9998336,1.950531,1.7961121,1.5536535,1.2499678,0.918639,0.59630764,0.3186195,0.11628318,0.011674523,0.016361952,0.12982696,0.33952188,0.62225723,0.94676596,1.2771617,1.5769069,1.8128538,1.9589094,1.9989221,1.9284669,1.7553353,1.9387445,1.9998429,1.9503715,1.7958012,1.5532258,1.2494706,0.9181272,0.59583795,0.31824374,0.11604297,0.011596441,0.016454577,0.1300801,0.33990753,0.6227327,0.94727874,1.277655,1.5773263,1.8131528,1.959055,1.9988981,1.9282761,1.7549987,1.9389215,1.9998518,1.9502115,1.7954903,1.5527979,1.2489733,0.9176155,0.59536827,0.31786817,0.115803,0.011518598,0.016547441,0.13033348,0.34029335,0.6232083,0.9477915,1.2781483,1.5777454,1.8134515,1.9592003,1.998874,1.928085,1.7744833,1.9390979,1.9998605,1.9500514,1.7951789,1.5523698,1.2484759,0.9171037,0.59489876,0.31749278,0.11556327,0.011440992,0.016640604,0.13058704,0.34067935,0.623684,0.9483043,1.2786415,1.5781646,1.81375,1.9593453,1.9988494,1.524658,1.774808,1.9392743,1.999869,1.9498911,1.7948675,1.5519419,1.2479784,0.916592,0.5944294,0.31711757,0.11532372,0.011363685,0.016734064,0.1308409,0.34106553,0.6241598,0.94881713,1.2791346,1.5785835,1.8140484,1.9594901,1.2169888,1.525095,1.7751325,1.9394504,1.9998772,1.9497304,1.7945558,1.5515136,1.247481,0.9160803,0.59396005,0.31674254,0.11508447,0.011286616,0.016827703,0.13109493,0.34145182,0.6246357,0.9493299,1.2796277,1.5790021,1.8143466,1.9596347,1.2174901,1.525532,1.7754569,1.9396262,1.9998851,1.9495695,1.7942438,1.5510851,1.2469835,0.91556865,0.59349084,0.3163677,0.114845395,0.011209846,0.01692164,0.1313492,0.34183836,0.6251117,0.94984275,1.2801206,1.5794208,1.8146445,0.8859067,1.2179912,1.5259688,1.7757809,1.9398018,1.9998927,1.9494084,1.7939317,1.5506566,1.2464858,0.915057,0.59302175,0.315993,0.11460662,0.011133313,0.017015815,0.13160372,0.34222502,0.62558776,0.95035565,1.2806135,1.5798392,0.56690216,0.88641685,1.2184924,1.5264055,1.7761049,1.9399772,1.9999001,1.949247,1.7936194,1.5502279,1.2459881,0.91454536,0.5925528,0.31561852,0.11436802,0.011057019,0.017110288,0.13185847,0.3426119,0.62606394,0.9508685,1.2811064,1.5802574,0.56736505,0.88692707,1.2189934,1.526842,1.7764286,1.9401523,1.9999073,1.9490854,1.793307,1.549799,1.2454904,0.9140338,0.5920839,0.3152442,0.11412972,0.010980964,0.017205,0.13211346,0.34299892,0.62654024,0.9513814,1.281599,0.2960115,0.56782806,0.8874373,1.2194945,1.5272784,1.7767521,1.9403272,1.9999142,1.9489235,1.7929943,1.54937,1.2449926,0.9135222,0.5916151,0.31487006,0.1138916,0.010905206,0.01729995,0.13236862,0.3433861,0.62701666,0.9518943,0.10227311,0.2963763,0.5682912,0.8879475,1.2199954,1.5277146,1.7770754,1.9405017,1.9999206,1.9487613,1.7926812,1.5489409,1.2444947,0.9130106,0.5911464,0.3144961,0.11365372,0.010829747,0.017395198,0.13262409,0.34377348,0.62749314,0.9524072,0.102499425,0.29674125,0.56875443,0.8884578,1.2204963,1.5281507,1.7773986,1.9406761,1.999927,1.948599,1.7923682,1.5485116,1.2439969,0.91249907,0.59067786,0.31412238,0.113416076,0.010754526,0.017490685,0.13287973,0.34416103,0.62796974,0.0075725317,0.10272598,0.29710644,0.5692178,0.8889681,1.2209971,1.5285866,1.7777214,1.9408503,1.9999331,1.9484363,1.7920548,1.5480821,1.2434988,0.9119876,0.59020936,0.31374878,0.11317867,0.010679543,0.01758647,0.13313562,0.34454876,0.022061288,0.0076357126,0.10295284,0.29747176,0.5696812,0.88947845,1.2214979,1.5290225,1.778044,1.9410241,1.999939,1.9482734,1.7917411,1.5476526,1.2430007,0.9114761,0.58974105,0.31337535,0.1129415,0.010604799,0.017682433,0.13339174,0.34493667,0.02195412,0.0076991916,0.10317987,0.29783726,0.5701448,0.8899888,1.2219986,1.5294582,1.7783666,1.9411976,1.9999444,1.9481103,1.7914274,1.5472229,1.2425026,0.9109646,0.58927286,0.31300217,0.112704515,0.010530353,0.017778695,0.13364804,0.14410263,0.021847248,0.007762909,0.103407145,0.298203,0.5706085,0.8904992,1.2224993,1.5298936,1.7786889,1.941371,1.9999497,1.9479469,1.7911134,1.546793,1.2420044,0.9104532,0.5888047,0.3126291,0.112467825,0.010456145,0.017875254,0.36061436,0.14383721,0.021740615,0.007826865,0.103634655,0.2985689,0.57107234,0.89100957,1.2229998,1.5303291,1.7790109,1.941544,1.9999547,1.9477832,1.7907993,1.5463631,1.2415061,0.9099418,0.5883367,0.31225622,0.112231374,0.010382235,0.64761865,0.3602196,0.14357197,0.02163428,0.0078911185,0.103862405,0.29893494,0.5715362,0.89152,1.2235004,1.5307643,1.7793328,1.9417169,1.9999595,1.9476194,1.7904849,1.5459329,1.2410078,0.9094304,0.5878688,0.31188357,0.1119951,0.010308564,0.6471381,0.35982502,0.14330703,0.021528184,0.00795567,0.10409045,0.2993012,0.57200027,0.8920305,1.2240008,1.5311995,1.7796544,1.9418895,1.999964,1.9474553,1.7901702,1.5455027,1.2405094,0.90891904,0.587401,0.31151104,0.111759126,0.9729599,0.6466577,0.35943067,0.14304227,0.021422327,0.008020401,0.10431868,0.29966766,0.57246435,0.892541,1.2245013,1.5316346,1.7799759,1.9420619,1.9999683,1.9472909,1.7898555,1.5450722,1.240011,0.9084077,0.58693326,0.31113875,1.3017628,0.9724466,0.6461774,0.35903645,0.14277774,0.021316707,0.008085489,0.10454714,0.30003428,0.57292867,0.89305156,1.2250016,1.5320693,1.780297,1.942234,1.9999721,1.9471263,1.7895404,1.5446416,1.2395124,0.90789634,0.5864657,0.31076658,1.3012732,0.9719333,0.6456972,0.35864234,0.1425134,0.021211386,0.008150756,0.104775846,0.3004011,0.573393,0.8935621,1.2255019,1.5325041,1.7806182,1.9424059,1.9999759,1.9469614,1.7892251,1.5442109,1.2390139,0.90738505,0.58599824,1.5968844,1.3007836,0.97142005,0.64521706,0.35824847,0.14224935,0.021106303,0.0082163215,0.10500479,0.30076814,0.5738575,0.8940727,1.2260021,1.5329386,1.780939,1.9425776,1.9999793,1.9467962,1.7889097,1.5437801,1.2385153,0.90687376,1.8266886,1.5964723,1.3002938,0.97090673,0.644737,0.35785478,0.14198548,0.021001518,0.008282125,0.10523391,0.3011353,0.5743221,0.89458334,1.2265023,1.533373,1.7812595,1.942749,1.9999825,1.9466308,1.788594,1.543349,1.2380166,0.90636253,1.8263996,1.59606,1.299804,0.9703935,0.64425707,0.3574612,0.14172184,0.020896971,0.008348227,0.105463326,0.30150265,0.5747868,0.895094,1.2270024,1.5338073,1.78158,1.9429201,1.9999855,1.9464653,1.7882782,1.5429178,1.2375178,1.9652159,1.8261104,1.5956477,1.299314,0.9698802,0.6437772,0.35706782,0.14145845,0.020792663,0.0084145665,0.10569298,0.30187023,0.5752516,0.8956046,1.2275025,1.5342414,1.7819002,1.9430909,1.9999881,1.9462993,1.7879622,1.5424865,1.9976165,1.9650815,1.8258209,1.5952351,1.2988241,0.96936697,0.64329743,0.3566746,0.1411953,0.020688653,0.008481145,0.10592288,0.30223793,0.5757165,0.8961153,1.2280024,1.5346755,1.7822202,1.9432616,1.9999905,1.9461331,1.7876458,1.5420551,1.9976518,1.9649469,1.8255312,1.5948224,1.298334,0.9688537,0.64281774,0.35628158,0.14093232,0.020584822,0.008548021,0.10615301,0.30260587,0.57618153,0.89662606,1.2285024,1.5351093,1.7825401,1.943432,1.9999926,1.9459668,1.7873294,1.9202306,1.9976869,1.964812,1.8252413,1.5944096,1.2978439,0.96834046,0.64233816,0.35588872,0.14066958,0.020481348,0.008615136,0.10638332,0.302974,0.5766467,0.8971368,1.2290022,1.535543,1.7828597,1.9436021,1.9999944,1.9458002,1.7413533,1.9204314,1.9977217,1.9646769,1.8249512,1.5939965,1.2973536,0.96782726,0.6418587,0.355496,0.14040709,0.020378053,0.008682549,0.106613934,0.30334228,0.57711196,0.8976476,1.2295021,1.5359766,1.783179,1.9437721,1.999996,1.4807415,1.7416978,1.920632,1.9977562,1.9645414,1.8246608,1.5935833,1.2968633,0.967314,0.64137936,0.3551035,0.14014482,0.020275056,0.0087502,0.10684478,0.30371076,0.57757735,0.89815843,1.2300018,1.5364101,1.7834983,1.9439416,1.9999974,1.4811916,1.7420422,1.9208324,1.9977905,1.9644058,1.8243703,1.5931702,1.2963729,0.9668008,0.6409,0.35471112,0.1398828,0.020172298,0.00881809,0.10707581,0.3040794,0.5780428,0.89866924,1.2305015,1.5368433,1.7838173,1.9441111,1.1676339,1.4816418,1.7423863,1.9210324,1.9978244,1.9642699,1.8240795,1.5927566,1.2958825,0.9662876,0.64042085,0.35431892,0.13962096,0.020069838,0.008886278,0.107307136,0.30444825,0.5785084,0.8991801,1.2310011,1.5372765,1.784136,0.8355943,1.16814,1.4820917,1.7427301,1.9212325,1.9978582,1.9641337,1.8237885,1.592343,1.2953919,0.9657744,0.63994175,0.3539269,0.13935935,0.019967556,0.008954704,0.10753864,0.30481726,0.5789741,0.899691,1.2315007,1.5377095,1.7844546,1.9444491,1.9999998,1.9449632,1.7854261,1.539031,1.233026,0.90125144,0.5803971,0.3059454,0.10824722,0.009165347,1.8581793,1.6423912,1.3555629,1.0294139,0.7000122,0.4037853,0.17349195,0.03459972,0.0024683475,0.080650985,0.2605018,0.52213156,0.8366074,1.1691524,1.4829912,1.7434175,1.9216313,1.9979248,1.9638606,1.823206,1.5915153,1.2944107,0.964748,0.63898385,0.3531434,0.13883686,0.019763887,0.009092391,0.108002424,0.30555588,0.57990587,0.90071285,1.2324997,1.5385752,1.785091,1.9447861,2.0,1.9446268,1.78479,1.5381658,1.2320273,0.9002295,0.57946515,0.30520642,1.9918083,1.9788543,1.8576517,1.6416037,1.3546028,1.0283874,0.6990327,0.40296108,0.17291427,0.034332454,0.002540946,0.08105558,0.2611935,0.523034,0.8376207,1.1701645,1.4838902,1.7441039,1.9220295,1.9979904,1.9635866,1.8226224,1.5906868,1.293429,0.9637217,0.6380263,0.35236055,0.13831526,0.019561231,0.009231091,0.1084671,0.30629522,0.5808381,0.9017348,1.2334985,1.5394402,1.7857268,1.9451221,1.9999992,1.9442892,1.7841532,1.5372999,1.2310282,0.8992077,0.57853353,1.8955386,1.991939,1.9786437,1.8571231,1.6408157,1.3536425,1.0273608,0.6980535,0.40213758,0.17233747,0.03406614,0.002614677,0.08146107,0.261886,0.52393687,0.83863413,1.1711763,1.4847887,1.7447896,1.9224265,1.998055,1.9633114,1.822038,1.5898578,1.2924471,0.9626954,0.63706917,0.35157835,0.13779461,0.019359648,0.009370804,0.10893279,0.30703527,0.58177066,0.90275687,1.2344968,1.5403047,1.7863616,1.9454572,1.9999974,1.9439508,1.7835155,1.5364335,1.2300289,0.898186,1.7008362,1.8959951,1.9920685,1.978432,1.8565936,1.640027,1.3526816,1.0263343,0.69707465,0.40131462,0.17176151,0.0338009,0.0026893616,0.081867576,0.26257932,0.52484024,0.8396477,1.172188,1.4856867,1.7454746,1.9228227,1.9981184,1.9630353,1.8214529,1.5890284,1.2914648,0.9616692,0.6361124,0.35079688,0.1372748,0.019159019,0.00951159,0.10939938,0.30777603,0.58270377,0.90377903,1.2354951,1.5411685,1.7869956,1.9457912,1.9999945,1.9436114,1.782877,1.5355664,1.1091819,1.4291017,1.7015684,1.8964508,1.9921972,1.9782194,1.8560632,1.6392375,1.3517205,1.0253075,0.69609606,0.40049237,0.17118645,0.033536673,0.0027651787,0.08227497,0.26327336,0.52574414,0.8406615,1.1731997,1.4865842,1.7461587,1.9232178,1.9981809,1.9627581,1.8208667,1.5881981,1.2904823,0.960643,0.63515604,0.35001606,0.13675594,0.018959522,0.009653449,0.10986686,0.30851758,0.58363724,0.9048013,1.2364931,1.5420318,1.7876288,1.9461242,1.9999905,1.9432708,1.7822375,0.7781893,1.1102027,1.4300292,1.7022998,1.8969054,1.9923246,1.9780056,1.8555319,1.6384475,1.3507589,1.0242809,0.69511783,0.39967072,0.17061228,0.0332734,0.002842009,0.082683444,0.26396817,0.5266485,0.84167546,1.174211,1.4874811,1.746842,1.9236119,1.9982423,1.96248,1.8202797,1.5873673,1.2894995,0.9596168,0.6342,0.34923595,0.13623804,0.01876098,0.009796321,0.11033535,0.30925983,0.58457124,0.9058237,1.2374908,1.5428946,1.7882612,1.9464562,1.9999855,1.9429293,0.47157687,0.7791908,1.1112233,1.4309561,1.7030306,1.897359,1.9924512,1.9777911,1.8549998,1.6376567,1.349797,1.0232543,0.69413984,0.39884973,0.170039,0.033011198,0.0029199123,0.08309281,0.26466376,0.52755344,0.8426896,1.1752222,1.4883776,1.7475246,1.9240052,1.9983027,1.9622008,1.8196919,1.5865357,1.2885163,0.9585907,0.6332444,0.34845656,0.13572097,0.018563509,0.009940207,0.11080474,0.3100028,0.5855056,0.90684617,1.2384883,1.5437567,1.7888927,1.9467874,0.059563756,0.22304583,0.472449,0.78019255,1.1122439,1.4318826,1.7037606,1.8978118,1.9925766,1.9775753,1.8544667,1.6368651,1.3488346,1.0222275,0.69316226,0.39802933,0.16946656,0.03275001,0.0029988885,0.08350319,0.26536012,0.52845883,0.84370387,1.1762332,1.4892734,1.7482064,1.9243973,1.9983618,1.9619205,1.8191032,1.5857036,1.2875328,0.9575646,0.6322892,0.34767783,0.13520485,0.018367052,0.0100851655,0.11127508,0.3107465,0.58644044,0.90786874,1.2394855,1.5446184,1.7895234,9.5427036e-5,0.059913397,0.22369277,0.47332174,0.7811945,1.1132643,1.4328086,1.7044898,1.8982635,1.9927009,1.9773585,1.8539327,1.6360731,1.347872,1.0212008,0.692185,0.39720958,0.168895,0.032489896,0.003078878,0.08391446,0.2660573,0.5293647,0.8447183,1.177244,1.4901688,1.7488873,1.9247886,1.9984201,1.9616394,1.8185136,1.5848709,1.2865491,0.95653856,0.6313343,0.34689975,0.13468963,0.018171668,0.010231197,0.11174637,0.31149095,0.5873757,0.9088914,1.2404824,0.2059511,0.05053115,0.00011014938,0.06026405,0.22434056,0.47419506,0.78219676,1.1142846,1.4337342,1.7052183,1.8987143,1.9928243,1.9771407,1.8533978,1.6352804,1.346909,1.020174,0.691208,0.39639044,0.16832429,0.032230735,0.0031599402,0.084326744,0.26675522,0.53027105,0.84573287,1.1782546,1.4910637,1.7495675,1.9251788,1.9984773,1.9613571,1.8179233,1.5840375,1.285565,0.9555126,0.6303799,0.34612238,0.1341753,0.017977297,0.010378242,0.11221862,0.31223607,0.58831143,0.90991414,0.4483258,0.20532727,0.050209284,0.00012588501,0.06061566,0.22498918,0.47506887,0.7831992,1.1153048,1.4346592,1.705946,1.8991642,1.9929466,1.9769218,1.8528621,1.6344869,1.3459456,1.0191472,0.6902314,0.395572,0.16775447,0.031972587,0.0032420158,0.08474004,0.2674539,0.531178,0.84674764,1.179265,1.4919581,1.750247,1.9255681,1.9985335,1.9610739,1.817332,1.5832037,1.2845806,0.9544866,0.6294258,0.34534574,0.13366193,0.01778394,0.010526359,0.11269176,0.31298196,0.5892475,0.75133747,0.44746953,0.20470428,0.04988849,0.00014269352,0.06096828,0.22563857,0.47594327,0.78420186,1.1163249,1.435584,1.706673,1.8996131,1.9930677,1.976702,1.8523254,1.6336927,1.3449819,1.0181204,0.6892551,0.39475417,0.16718554,0.031715512,0.0033251643,0.085154235,0.26815337,0.5320853,0.8477626,1.1802753,1.492852,1.7509255,1.9259565,1.9985886,1.9607897,1.8167398,1.5823691,1.2835959,0.95346075,0.62847215,0.34456974,0.13314945,0.017591655,0.01067549,0.113165855,1.4039859,1.0816808,0.7503429,0.44661385,0.20408213,0.049568653,0.00016057491,0.061321855,0.2262888,0.4768182,0.78520477,1.1173449,1.4365082,1.7073994,1.9000612,1.993188,1.976481,1.8517878,1.632898,1.3440177,1.0170935,0.68827915,0.39393693,0.16661751,0.03145939,0.0034093857,0.08556944,0.26885366,0.5329932,0.84877765,1.1812854,1.4937453,1.7516034,1.9263437,1.9986426,1.9605043,1.8161469,1.5815339,1.282611,0.9524349,0.6275189,0.34379447,0.13263786,0.017400384,0.010825634,1.6808635,1.4030463,1.0806572,0.7493485,0.4457587,0.20346081,0.049249828,0.00017952919,0.061676443,0.22693986,0.47769368,0.78620785,1.1183647,1.4374319,1.7081249,1.9005083,1.9933071,1.976259,1.8512495,1.6321025,1.3430532,1.0160668,0.6873034,0.3931204,0.16605031,0.031204343,0.00349468,0.08598554,0.26955467,0.5339016,0.84979296,1.1822953,1.4946381,1.7522804,1.9267302,1.9986955,1.9602181,1.815553,1.5806983,1.2816257,0.9514091,0.626566,0.34301984,0.13212723,1.98806,1.8829043,1.6801109,1.4021062,1.0796335,0.7483545,0.4449042,0.20284033,0.048932016,0.00019949675,0.062032044,0.2275917,0.47856975,0.78721124,1.1193844,1.4383552,1.7088497,1.9009544,1.9934253,1.9760361,1.8507099,1.6313064,1.3420885,1.0150399,0.6863282,0.39230448,0.16548407,0.030950308,0.0035809875,0.086402655,0.27025646,0.5348104,0.8508084,1.1833049,1.4955304,1.7529566,1.9271154,1.9987473,1.9599308,1.8149582,1.5798619,1.2806401,0.95038337,0.62561345,0.34224594,1.9841316,1.9879012,1.8824217,1.6793578,1.4011656,1.0786097,0.7473607,0.44405025,0.20222068,0.048615158,0.00022053719,0.0623886,0.22824436,0.47944635,0.7882148,1.120404,1.439278,1.7095736,1.9013995,1.9935422,1.9758122,1.8501697,1.6305096,1.3411232,1.014013,0.68535316,0.3914892,0.16491866,0.030697286,0.0036683083,0.08682072,0.27095902,0.53571975,0.8518239,1.1843145,1.4964222,1.7536321,1.9274999,1.9987983,1.9596424,1.8143626,1.5790248,1.2796543,0.9493576,0.6246614,1.8720329,1.9843132,1.9877415,1.881938,1.6786038,1.4002247,1.0775859,0.74636716,0.4431969,0.20160186,0.048299372,0.00024265051,0.06274617,0.22889787,0.4803235,0.7892186,1.1214235,1.4402003,1.7102969,1.9018438,1.9936583,1.9755871,1.8496286,1.6297121,1.3401576,1.0129861,0.6843785,0.39067453,0.16435409,0.030445337,0.0037567616,0.0872398,0.2716623,0.53662956,0.85283965,1.1853237,1.4973134,1.7543066,1.9278834,1.9988481,1.9593532,1.8137662,1.5781872,1.2786682,1.3821958,1.664085,1.872535,1.984494,1.9875805,1.8814535,1.677849,1.3992833,1.076562,0.74537385,0.44234413,0.20098394,0.04798454,0.0002657771,0.06310475,0.22955215,0.48120117,0.79022264,1.1224427,1.4411223,1.7110194,1.902287,1.9937732,1.9753611,1.8490865,1.628914,1.3391917,1.0119592,0.6834042,0.38986057,0.16379046,0.030194342,0.0038461685,0.087659776,0.2723664,0.5375399,0.8538555,1.1863328,1.4982041,1.7549806,1.9282658,1.9988968,1.9590628,1.8131689,1.577349,1.0590658,1.3831446,1.6648525,1.8730364,1.9846735,1.9874187,1.8809681,1.6770937,1.3983415,1.0755379,0.7443809,0.44149196,0.2003668,0.047670722,0.0002899766,0.063464284,0.23020726,0.4820794,0.79122686,1.123462,1.4420438,1.7117412,1.9027293,1.9938872,1.9751339,1.8485436,1.6281152,1.3382254,1.0109323,0.68243015,0.3890472,0.16322768,0.02994442,0.003936708,0.088080764,0.2730713,0.5384507,0.8548716,1.1873417,1.4990942,1.7556535,1.9286473,1.9989445,1.9587715,1.8125707,0.7294438,1.060091,1.384093,1.6656194,1.8735366,1.9848522,1.9872558,1.8804816,1.6763376,1.3973994,1.0745139,0.7433882,0.4406404,0.19975054,0.047357976,0.00031524897,0.06382477,0.23086321,0.4829582,0.7922313,1.124481,1.4429647,1.7124622,1.9031706,1.994,1.9749058,1.8479997,1.6273158,1.3372588,1.0099053,0.68145657,0.3882345,0.16266578,0.029695451,0.0040282607,0.088502645,0.2737769,0.539362,0.8558878,1.1883504,1.499984,1.7563257,1.9290277,1.9989913,0.19177014,0.4295597,0.73043257,1.0611161,1.385041,1.6663854,1.8740361,1.9850297,1.9870918,1.8799943,1.6755807,1.3964567,1.0734897,0.7423957,0.43978935,0.19913512,0.047046125,0.00034159422,0.064186275,0.23151994,0.48383754,0.793236,1.1255,1.4438852,1.7131824,1.903611,1.9941118,1.9746767,1.847455,1.6265156,1.3362918,1.0088785,0.6804832,0.38742244,0.16210479,0.029447556,0.0041208863,0.08892554,0.27448326,0.5402738,0.8569041,1.189359,1.5008731,1.7569972,1.9294071,0.043659985,0.1923753,0.43040347,0.7314217,1.0621412,1.3859886,1.6671507,1.8745346,1.9852062,1.9869268,1.879506,1.6748233,1.3955138,1.0724654,0.7414035,0.43893898,0.19852054,0.046735346,0.00036895275,0.06454879,0.2321775,0.48471737,0.7942409,1.1265187,1.4448051,1.713902,1.9040504,1.9942226,1.9744465,1.8469093,1.6257149,1.3353245,1.0078515,0.67951024,0.38661104,0.16154468,0.029200673,0.004214525,0.08934939,0.27519047,0.5411861,0.8579206,1.1903672,1.5017617,0.06788391,0.00066554546,0.04396063,0.19298136,0.4312479,0.7324111,1.0631661,1.3869358,1.6679153,1.8750322,1.9853817,1.9867609,1.8790169,1.674065,1.3945702,1.0714412,0.7404116,0.43808913,0.19790679,0.04642558,0.00039738417,0.06491226,0.23283583,0.4855978,0.795246,1.1275374,1.4457247,1.7146208,1.9044889,1.9943323,1.9742153,1.8463628,1.6249135,1.3343568,1.0068245,0.6785376,0.38580024,0.16098547,0.028954804,0.004309237,0.08977419,0.2758984,0.5420988,0.8589372,1.1913754,0.23751736,0.06751245,0.0006285906,0.04426229,0.19358826,0.4320929,0.73340076,1.064191,1.3878826,1.6686795,1.8755288,1.9855561,1.9865937,1.8785267,1.673306,1.3936265,1.0704168,0.73941994,0.43723994,0.19729388,0.04611677,0.00042682886,0.06527674,0.233495,0.48647875,0.79625136,1.1285559,1.4466438,1.7153387,1.9049264,1.9944409,1.973983,1.8458154,1.6241114,1.3333887,1.0057975,0.6775653,0.38499016,0.1604271,0.028710008,0.0044050217,0.09019995,0.27660704,0.543012,0.859954,0.4909588,0.2368533,0.06714201,0.0005927086,0.044564962,0.19419599,0.43293852,0.73439074,1.0652158,1.388829,1.6694427,1.8760246,1.9857296,1.9864256,1.8780357,1.6725464,1.3926821,1.0693923,0.7384286,0.4363913,0.19668186,0.04580903,0.00045734644,0.06564224,0.23415494,0.4873603,0.79725695,1.1295743,1.4475625,1.716056,1.9053631,1.9945486,1.9737499,1.845267,1.6233087,1.3324203,1.0047706,0.6765933,0.38418067,0.15986967,0.028466225,0.0045018196,0.09062672,0.2773165,1.1327059,0.80035126,0.4900751,0.23619008,0.06677252,0.0005578995,0.044868648,0.19480455,0.43378472,0.73538095,1.0662407,1.3897749,1.6702051,1.8765194,1.985902,1.9862564,1.8775437,1.671786,1.3917375,1.0683677,0.7374375,0.43554324,0.19607067,0.045502245,0.0004889369,0.06600869,0.23481572,0.48824233,0.79826266,1.1305926,1.4484806,1.7167726,1.9057987,1.9946551,1.9735155,1.8447179,1.6225052,1.3314515,1.0037436,0.6756217,0.38337183,0.15931308,0.028223395,0.0045996904,0.09105438,1.4494679,1.131688,0.799345,0.48919195,0.23552763,0.066404045,0.00052410364,0.045173287,0.195414,0.43463153,0.73637146,1.0672653,1.3907205,1.6709671,1.8770133,1.9860733,1.9860861,1.8770508,1.6710248,1.3907923,1.0673431,0.7364467,0.43469584,0.19546032,0.045196474,0.00052160025,0.06637609,0.23547733,0.4891249,0.79926866,1.1316106,1.4493983,1.7174883,1.9062333,1.9947606,1.9732803,1.8441677,1.6217011,1.3304825,1.0027167,0.67465043,0.38256365,0.15875739,0.027981639,1.9058316,1.7168269,1.4485503,1.1306698,0.79833907,0.48830932,0.23486596,0.06603652,0.0004913807,0.045479,0.1960243,0.43547887,0.73736227,1.06829,1.3916657,1.6717281,1.8775063,1.9862435,1.985915,1.876557,1.670263,1.3898468,1.0663184,0.7354561,0.43384898,0.1948508,0.044891715,0.00055527687,0.06674451,0.23613971,0.490008,0.80027485,1.1326287,1.4503155,1.7182033,1.906667,1.9948651,1.9730439,1.8436167,1.6208963,1.329513,1.0016897,0.6736795,0.38175613,0.15820259,1.9945567,1.9053961,1.7161105,1.4476322,1.1296517,0.7973333,0.48742723,0.23420513,0.06567001,0.00045973063,0.045785666,0.19663543,0.43632686,0.7383533,1.0693145,1.3926103,1.6724887,1.8779984,1.9864128,1.9857427,1.8760622,1.6695006,1.3889009,1.0652937,0.7344659,0.43300277,0.19424218,0.04458797,0.0005900264,0.06711388,0.23680294,0.4908917,0.8012812,1.1336465,1.4512322,1.7189175,1.9070997,1.9949685,1.9728067,1.8430648,1.6200911,1.3285432,1.0006627,0.67270887,0.38094926,1.9739654,1.9944491,1.9049597,1.7153933,1.4467137,1.1286333,0.7963277,0.48654568,0.23354506,0.06530446,0.00042909384,0.046093404,0.19724739,0.43717545,0.73934466,1.070339,1.3935547,1.6732483,1.8784895,1.986581,1.9855694,1.8755665,1.6687374,1.3879545,1.0642688,0.7334759,0.4321571,0.19363433,0.044285238,0.00062584877,0.06748426,0.23746693,0.49177587,0.8022878,1.1346642,1.4521484,1.719631,1.9075315,1.9950709,1.9725683,1.8425121,1.6192851,1.3275731,0.9996357,1.6248525,1.8463212,1.9741977,1.9943405,1.9045222,1.7146753,1.4457946,1.1276147,0.79532236,0.48566467,0.23288584,0.064939916,0.00039958954,0.046402097,0.19786024,0.43802464,0.7403363,1.0713633,1.3944986,1.6740074,1.8789797,1.9867481,1.985395,1.87507,1.6679735,1.3870077,1.063244,0.73248625,0.43131202,0.19302744,0.04398352,0.00066268444,0.067855656,0.23813176,0.49266058,0.80329466,1.1356817,1.4530642,1.7203436,1.9079623,1.9951723,1.9723289,1.8419585,1.6184783,1.3266026,1.335251,1.625654,1.8468678,1.974429,1.994231,1.9040837,1.7139566,1.444875,1.1265961,0.79431725,0.48478425,0.23222744,0.06457639,0.0003710389,0.046711802,0.19847387,0.43887442,0.7413282,1.0723877,1.395442,1.6747656,1.8794689,1.9869142,1.9852196,1.8745725,1.6672089,1.3860606,1.062219,0.7314968,0.4304676,0.19242132,0.043682814,0.000700593,0.06822801,0.23879737,0.4935459,0.8043017,1.1366992,1.4539795,1.7210556,1.9083922,1.9952724,1.9720883,1.841404,1.617671,1.0088004,1.3362184,1.6264548,1.8474135,1.9746592,1.9941202],"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/versinf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..8741e4f97530 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.0010502338,0.8909724,1.976226,1.3218988,0.09396577,0.012144387,1.7927623,1.9980485,0.358204,0.039213777,0.048282564,1.8778403,0.743056,0.4759351,0.0077980757,1.592658,1.1761959,0.16474521,0.15377969,1.1960968,0.1884678,1.9824829,0.4587928,0.7626826,1.8679595,0.04226035,1.450712,1.8464341,0.03107065,1.4876441,1.2975128,0.10272318,1.9379101,0.6059079,0.60469884,1.9515942,0.56782234,0.6434531,1.9230921,0.08558011,0.68283105,1.4518862,0.06945485,1.8673053,1.4141896,0.45768672,1.8873608,1.3757683,0.4932924,1.9058644,0.16546947,0.5297843,1.5937176,0.1431613,0.56709886,1.5595515,0.122351944,1.7984986,1.5244066,0.35719544,1.8229723,0.26852143,0.38978863,1.8460065,0.24064952,0.42344916,1.6893828,0.2141059,1.687474,1.6584897,0.18893695,1.7172387,1.6264448,0.2667294,1.7457486,0.3592137,0.29580182,1.7729542,0.32767254,0.32610595,1.7988076,0.29730743,1.5915977,0.53210866,0.26817143,1.6247923,0.4955631,0.24031556,1.6568941,0.45989978,1.4117926,1.6878468,0.42518127,1.4495369,1.7175963,0.39146823,1.4864948,0.6459132,0.3588196,1.5226017,0.60711765,0.3272925,1.5577946,0.56900936,1.2949991,1.5920117,0.53165495,1.3346945,1.6251931,0.49511975,1.3738045,0.7652401,0.4594677,1.4122605,0.7247997,0.42476118,1.4499955,0.6848407,1.1736046,1.4869434,0.645433,1.2146322,0.92987823,0.60664546,1.2552842,0.88822824,0.56854606,1.2954897,0.84677374,1.0076964,1.3351783,0.8055873,1.0495026,1.3742807,0.76474094,1.0912223,1.054759,0.72430605,1.1327825,1.0129597,0.6843534,1.1741103,0.97113764,0.8829992,1.2151337,0.92936605,0.92462856,1.2557806,0.887718,0.96638983,1.1787859,0.8462664,1.0082098,1.137489,0.80508363,1.0500154,1.0959516,0.7601268,1.0917337,1.0542463,0.72381246,1.3396499,1.0124463,0.68386626,1.3000243,0.9706243,1.5621555,1.259874,0.9288538,1.5270821,1.219269,0.88720775,1.4910867,1.1782806,0.84575903,1.4542325,1.1369803,0.80458003,1.4165835,1.0954405,1.6608536,1.378206,1.0537336,1.6288934,1.3391669,1.0119327,1.5958332,1.2995344,0.9701111,1.5617306,1.2593781,0.9283416,1.5266457,1.2187681,1.749245,1.4906394,1.1777754,1.7208965,1.4537749,1.1364717,1.6912869,1.4161167,1.0949293,1.6604681,1.3777306,1.8488011,1.6284941,1.3386837,1.8259511,1.5954207,1.2990445,1.8016562,1.5613058,1.2588822,1.7759593,1.5262091,1.218267,1.748905,1.4901919,1.9080813,1.7205405,1.4533173,1.8897755,1.6909158,1.4156497,1.8699133,1.6600826,1.3772551,1.8485296,1.6280947,1.3382006,1.8256615,1.5950081,1.9531989,1.8013492,1.5608808,1.9397229,1.7756352,1.5257723,1.9246032,1.7485645,1.4897442,1.9078661,1.7201843,1.990166,1.889541,1.6905445,1.9834502,1.86966,1.6596967,1.9750142,1.8482578,1.627695,1.9648726,1.8253717,1.5945953,1.9530435,1.801042,1.9998815,1.9395472,1.775311,1.9983635,1.9244075,1.7482239,1.9950991,1.9076507,1.719828,1.990094,1.8893063,1.6901729,1.983357,1.8694065,1.9940028,1.9749,1.8479857,1.997706,1.9647377,1.8250817,1.9996641,1.9528878,1.8007345,1.9998735,1.9393712,1.7749866,1.9983339,1.9242115,1.9726217,1.995048,1.907435,1.9814883,1.9900217,1.8890715,1.9886383,1.9832635,1.8691525,1.9940588,1.9747856,1.9205418,1.9977407,1.9646024,1.9360712,1.9996772,1.952732,1.9499632,1.9998652,1.9391949,1.9621935,1.9983041,1.9240153,1.9727409,1.9949969,1.8646731,1.9815866,1.9899492,1.8849217,1.9887154,1.9831698,1.9036224,1.9941146,1.9746708,1.847441,1.5172281,1.7692759,1.9362518,1.9996902,1.9525758,1.8001189,1.5869302,1.8199708,1.9623332,1.9982741,1.9238188,1.3679625,1.6525273,1.864931,1.9816846,1.9898765,1.8886008,1.444369,1.7135608,1.9038422,1.9941702,1.9745559,1.2084839,1.5176675,1.769604,1.936432,1.9997028,1.9524194,1.2894741,1.5873458,1.8202646,1.9624727,1.9982438,1.9236221,1.3684399,1.6529163,1.8651886,1.9817822,1.9898034,1.126545,1.4448289,1.7139205,1.9040618,1.9942254,1.9744406,1.208986,1.5181069,1.7699317,1.9366121,1.9997152,0.96010345,1.2899656,1.5877614,1.8205583,1.9626119,1.9982133,1.0437318,1.3689172,1.6533052,1.865446,1.9818797,1.9897301,1.1270543,1.4452887,1.7142799,1.9042811,1.9942803,0.8772637,1.2094882,1.518546,1.7702593,1.9367919,1.9997274,0.9606165,1.290457,1.5881767,1.8208516,1.9627509,0.7142023,1.0442448,1.3693944,1.6536939,1.8657031,1.9819769,0.7952719,1.1275636,1.4457484,1.7146392,1.9045002,0.55907315,0.87777334,1.2099903,1.518985,1.7705867,1.9369714,0.6356095,0.96112967,1.2909484,1.5885918,1.8211448,1.9628897,0.7146944,1.0447578,1.3698716,1.6540823,1.8659601,0.48606092,0.7957746,1.1280729,1.446208,1.7149982,1.9047191,0.5595341,0.878283,1.2104923,1.5194238,1.7709138,0.3507768,0.6360878,0.96164274,1.2914395,1.5890069,1.8214377,0.41659904,0.7151866,1.0452708,1.3703486,1.6544707,0.23351198,0.48650146,0.7962772,1.1285821,1.4466676,1.7153573,0.28985643,0.5599952,0.8787927,1.2109942,1.5198625,1.7712407,0.35116744,0.6365661,0.9621559,1.2919307,1.5894217,0.18282402,0.41701615,0.7156788,1.0457838,1.3708255,1.6548588,0.23384184,0.48694217,0.79678,1.1290914,1.4471269,0.098472476,0.29021806,0.5604563,0.87930244,1.2114961,1.5203011,0.1377812,0.3515582,0.63704455,0.962669,1.2924218,0.039143085,0.18312007,0.41743344,0.71617115,1.0462967,1.3713024,0.065651655,0.23417199,0.48738295,0.7972828,1.1296005,1.447586,0.0986948,0.29057986,0.5609176,0.8798122,1.211998,0.019455135,0.13804144,0.35194921,0.63752306,0.96318215,1.2929128,0.03928542,0.18341637,0.41785085,0.7166636,1.0468096,0.00047385693,0.06583476,0.23450226,0.4878239,0.79778564,1.1301097,0.006540954,0.098917365,0.29094183,0.561379,0.880322,1.2124999,0.019556046,0.13830185,0.3523404,0.6380017,0.9636953,0.001370132,0.039428115,0.1837129,0.41826844,0.71715605,1.0473225,0.00048977137,0.066018105,0.23483276,0.48826504,0.7982886,0.023916543,0.0065997243,0.09914017,0.29130405,0.56184053,0.8808318,0.009165168,0.019657254,0.13856256,0.3527317,0.6384804,0.07355434,0.0013434291,0.039570987,0.18400961,0.4186862,0.7176486,0.045341372,0.00050598383,0.06620169,0.23516345,0.48870623,0.7987915,0.023805022,0.006658733,0.09936315,0.2916664,0.5623021,0.108014345,0.009095907,0.019758642,0.13882345,0.3531232,0.63895917,0.07336116,0.001316905,0.039714098,0.18430656,0.4191041,0.19544458,0.045188606,0.0005224347,0.06638557,0.23549438,0.4891476,0.1486364,0.0236938,0.0067180395,0.09958643,0.29202896,0.30520546,0.107782364,0.009026945,0.019860387,0.13908458,0.35351485,0.24754137,0.07316822,0.0012907386,0.039857507,0.18460369,0.41952217,0.19513977,0.045036137,0.0005391836,0.066569686,0.23582548,0.36733103,0.1483671,0.023582816,0.0067775846,0.099809945,0.29239172,0.30483627,0.10755056,0.0089582205,0.01996231,0.13934594,0.5046806,0.24720329,0.072975576,0.001264751,0.040001154,0.18490106,0.43382722,0.19483513,0.044883907,0.00055617094,0.06675398,0.6557778,0.36693347,0.14809811,0.02347207,0.0068374276,0.1000337,0.2927546,0.56368774,0.8828714,1.4649501,1.1489241,0.816429,0.50423455,0.24686539,0.07278311,0.0012390614,0.0401451,0.18519866,0.42035872,0.71961963,1.6054813,1.311026,0.9821753,0.6552957,0.36653608,0.1478293,0.023361564,0.0068974495,0.100257695,0.29311776,0.56414986,1.7292073,1.4644953,1.1484163,0.8159243,0.5037887,0.24652767,0.07259095,0.0012136698,0.040289223,0.18549645,0.4207772,1.8326938,1.6050725,1.3105379,0.98166186,0.65481377,0.36613882,0.14756072,0.023251355,0.006957829,0.10048187,0.29348105,1.913069,1.7288557,1.4640405,1.1479084,0.81541955,0.503343,0.24619013,0.07239896,0.0011885166,0.040433645,0.18579447,0.42119586,1.8324094,1.6046636,1.3100498,0.9811485,0.6543319,0.36574173,0.14729238,0.023141444,0.0070183873,0.10070634,0.29384452,1.9128594,1.7285041,1.4635856,1.1474006,0.81491494,0.5028973,0.24585283,0.07220727,0.0011636019,0.040578306,0.18609267,1.9679728,1.8321247,1.6042545,1.3095615,0.98063505,0.6538501,0.36534482,0.14702421,0.023031712,0.0070793033,0.10093105,1.9962199,1.9126496,1.7281523,1.4631306,1.1468927,0.8144103,0.50245184,0.2455157,0.07201582,0.0011389852,0.040723264,1.9968165,1.9678438,1.8318398,1.6038454,1.3090732,0.9801217,0.6533684,0.3649481,0.14675635,0.022922277,0.007140398,1.9697464,1.996175,1.9124396,1.7278001,1.4626755,1.1463847,0.81390584,0.5020065,0.24517882,0.07182461,0.0011146069,0.0408684,1.9968574,1.9677144,1.8315548,1.603436,1.3085849,0.9796083,0.65288675,0.36455154,0.14648867,0.022813082,0.007201791,1.9698716,1.99613,1.9122293,1.727448,1.4622202,1.1458768,0.81340134,0.5015613,0.24484211,0.07163364,0.001090467,1.9159669,1.9968979,1.9675848,1.8312695,1.6030264,1.3080964,0.9790949,0.65240526,0.3641551,0.14622116,0.022704184,1.8366393,1.9699966,1.9960848,1.9120189,1.7270955,1.4617647,1.1453687,0.81289685,0.50111616,0.24450558,0.0714429,1.7340906,1.9161727,1.9969382,1.967455,1.8309839,1.6026167,1.3076079,0.97858155,0.65192384,0.36375886,0.14595395,1.611167,1.8369205,1.9701214,1.9960393,1.9118083,1.7267429,1.4613092,1.1448607,0.8123925,0.5006712,0.24416924,1.4712803,1.7344391,1.9163785,1.9969782,1.967325,1.8306981,1.6022068,1.3071191,0.9780682,0.6514425,0.3633628,0.14568698,1.6115733,1.8372014,1.9702458,1.9959935,1.9115973,1.7263901,1.4608536,1.1443526,0.8118881,0.5002264,0.24383312,1.4717332,1.7347876,1.916584,1.9970179,1.9671947,1.8304121,1.6017969,1.3066305,0.9775548,0.6509613,0.3629669,1.3188,1.6119795,1.8374821,1.9703699,1.9959474,1.911386,1.726037,1.4603977,1.1438445,0.81138384,0.49978167,1.1570184,1.4721859,1.7351358,1.916789,1.9970574,1.9670641,1.8301259,1.6013865,1.3061416,0.9770414,0.65048015,0.9908787,1.3192866,1.6123855,1.8377626,1.9704939,1.9959011,1.9111745,1.7256838,1.4599419,1.1433363,0.8108796,0.8249922,1.1575255,1.4726385,1.7354838,1.9169941,1.9970967,1.9669333,1.8298395,1.6009762,1.3056529,0.9765281,0.649999,0.9913922,1.3197732,1.6127914,1.8380429,1.9706175,1.9958546,1.9109628,1.7253304,1.4594859,1.1428281,0.81037533,0.8254978,1.1580325,1.4730909,1.7358316,1.9171988,1.9971356,1.9668021,1.8295529,1.6005658,1.3051639,0.97601473,0.6644467,0.9919056,1.3202597,1.6131971,1.8383229,1.970741,1.9958076,1.9107509,1.7249768,1.4590297,1.1423198,0.512709,0.82600343,1.1585395,1.4735433,1.7361792,1.9174032,1.9971743,1.9666709,1.8292661,1.6001551,1.3046749,0.37449622,0.6649305,0.9924191,1.3207461,1.6136026,1.8386028,1.9708642,1.9957607,1.9105387,1.7246231,1.4585735,0.2536444,0.5131575,0.8265091,1.1590465,1.4739954,1.7365267,1.9176075,1.9972128,1.9665393,1.828979,1.5997443,0.15350789,0.37489694,0.66541433,0.9929326,1.3212324,1.6140081,1.8388824,1.9709871,1.9957132,1.9103264,1.7242692,1.4581171,0.2539863,0.51360613,0.8270148,1.1595535,1.4744475,1.7368739,1.9178114,1.997251,1.9664074,1.8286917,1.5993333,0.15378135,0.37529784,0.6658983,0.9934461,1.3217187,1.6144133,1.8391618,1.9711099,1.9956656,1.9101137,1.723915,0.07706344,0.2543283,0.51405483,0.8275206,1.1600604,1.4748995,1.737221,1.9180152,1.997289,1.9662752,1.8284042,0.025961876,0.15405512,0.37569892,0.6663823,0.99395955,1.3222048,1.6148183,1.839441,1.9712322,1.9956177,1.9099008,0.0018948913,0.07726127,0.25467056,0.5145037,0.8280264,1.1605673,1.4753513,1.7375678,1.9182187,1.9973266,1.9661429,0.005530596,0.026078224,0.15432906,0.37610012,0.6668664,0.99447304,1.3226908,1.6152232,1.8397199,1.9713544,1.9955696,1.9096878,0.0019266605,0.077459276,0.255013,0.51495266,0.8285323,1.161074,1.475803,1.7379144,1.918422,1.9973639,1.9660103,0.0054768324,0.02619487,0.15460318,0.3765015,0.66735065,0.99498653,1.3231769,1.615628,1.8399986,1.9714763,1.9955212,0.036630213,0.0019586682,0.07765758,0.25535566,0.5154018,0.8290382,1.1615808,1.4762547,1.7382609,1.918625,1.997401,0.09452212,0.005423248,0.026311755,0.1548776,0.37690306,0.66783494,0.9955,1.3236628,1.6160326,1.8402771,1.9715979,0.17754579,0.036492586,0.0019909143,0.077856064,0.2556985,0.515851,0.8295442,1.1620876,1.476706,1.7386072,1.9188278,0.28339684,0.09430432,0.005370021,0.026428878,0.1551522,0.37730473,0.66831934,0.9960135,1.3241485,1.616437,1.8405554,0.40913743,0.17725378,0.036355257,0.0020233989,0.078054845,0.25604153,0.5163004,0.8300502,1.1625942,1.4771574,1.7389531,1.9190303,0.2830388,0.094086766,0.0053169727,0.0265463,0.15542704,0.3777066,0.6688038,0.996527,1.3246343,1.6168412,1.8408334,0.40872324,0.17696202,0.036218226,0.0020561814,0.078253865,0.25638473,0.51674986,0.8305562,1.1631008,1.4776087,1.739299,0.5508187,0.28268093,0.09386945,0.0052642226,0.026663959,0.15570211,0.37810862,0.66928834,0.9970405,1.32512,1.6172452,0.7053813,0.40830922,0.17667049,0.036081374,0.002089262,0.07845312,0.25672817,0.5171995,0.8310623,1.1636074,1.4780598,0.868121,0.55035996,0.28232324,0.09365231,0.0052117705,0.026781857,0.15597737,0.37851083,0.669773,0.997554,1.3256054,1.0345211,0.7048906,0.40789533,0.17637914,0.03594482,0.0021225214,0.07865262,0.2570718,0.51764923,0.8315684,1.164114,1.4785106,0.86761206,0.54990137,0.2819658,0.09343547,0.0051594973,0.026900053,0.15625286,0.37891322,0.6702577,0.9980675,1.3260909,1.034008,0.7044,0.4074816,0.17608804,0.035808504,0.0021561384,0.078852355,0.2574156,0.51809907,0.8320746,1.1646205,1.19946,0.8671031,0.5494429,0.28160846,0.09321886,0.0051075816,0.027018487,0.15652859,0.37931573,0.6707425,0.99858093,1.359376,1.0334947,0.7039095,0.407068,0.17579716,0.035672486,0.0021899343,0.07905233,0.25775963,0.5185491,0.8325808,1.5093174,1.1989567,0.8665942,0.5489845,0.28125137,0.0930025,0.005055845,0.02713716,0.15680456,0.37971842,0.67122746,1.6451225,1.3588967,1.0329815,0.7034191,0.4066546,0.17550647,0.035536647,0.002224028,0.07925254,0.2581038,0.5189992,1.7630222,1.5088754,1.1984535,0.8660853,0.5485263,0.28089446,0.09278637,0.005004406,0.027256131,0.15708071,0.3801213,0.6717124,0.9996079,1.3275468,1.6192632,1.8424971,1.9725618,1.26629,1.5676429,1.806222,1.9556432,1.9993827,1.9326034,1.7626902,1.5084333,1.1979502,0.86557645,0.54806817,0.28053772,0.09257048,0.004953265,0.02737528,0.1573571,0.38052428,0.67219746,1.0001215,1.3280319,1.6196663,1.8427737,0.9360012,1.2667849,1.5680656,1.8065257,1.9557943,1.9993646,1.9324179,1.762358,1.5079911,1.1974468,0.8650676,0.54761016,0.28018117,0.092354834,0.004902303,0.027494788,0.15763372,0.3809275,0.67268264,1.0006349,1.328517,1.6200693,1.84305,0.93651366,1.2672797,1.5684881,1.8068292,1.9559453,1.9993461,1.9322323,1.7620256,1.5075487,1.1969435,0.8645589,0.5471523,0.2798248,0.09213942,0.004851699,0.027614474,0.15791053,0.38133085,0.67316794,1.0011485,1.3290019,1.6204721,0.6132418,0.93702614,1.2677746,1.5689106,1.8071324,1.9560958,1.9993274,1.9320464,1.761693,1.5071062,1.19644,0.86405015,0.5466945,0.27946866,0.09192425,0.0048012733,0.027734458,0.15818757,0.3817343,0.67365324,1.0016619,1.3294868,0.33261025,0.6137154,0.9375386,1.2682693,1.5693328,1.8074355,1.9562461,1.9993085,1.9318602,1.7613602,1.5066636,1.1959364,0.8635414,0.5462369,0.2791127,0.091709316,0.004751146,0.027854681,0.15846485,0.382138,0.67413867,1.0021755,1.3299716,0.33299273,0.6141891,0.9380511,1.2687639,1.5697548,1.8077383,1.9563963,1.9992893,1.9316738,1.7610271,1.5062208,1.1954329,0.86303276,0.54577935,0.27875692,0.09149462,0.0047013164,0.027975142,0.15874237,0.38254184,0.6746242,1.0026889,0.12580806,0.33337545,0.6146629,0.9385636,1.2692585,1.5701767,1.8080409,1.9565461,1.9992697,1.9314871,1.7606939,1.5057778,1.1949294,0.8625241,0.54532194,0.27840132,0.09128016,0.0046516657,0.028095901,0.15902013,0.38294584,0.67510974,0.015003502,0.1260575,0.3337583,0.61513674,0.9390761,1.269753,1.5705986,1.8083433,1.9566958,1.9992499,1.9313002,1.7603605,1.5053349,1.1944256,0.8620155,0.54486465,0.2780459,0.09106594,0.0046023726,0.028216898,0.15929806,0.38335,0.67559546,0.015092254,0.12630719,0.33414125,0.6156107,0.93958867,1.2702473,1.5710201,1.8086455,1.956845,1.9992299,1.931113,1.7600269,1.5048916,1.1939219,0.86150694,0.5444075,0.2776907,0.09085196,0.0045532584,0.028338134,0.15957624,0.3837543,0.012713611,0.015181243,0.12655711,0.33452445,0.6160848,0.94010127,1.2707417,1.5714417,1.8089474,1.9569942,1.9992096,1.9309256,1.7596931,1.5044484,1.1934181,0.8609984,0.54395044,0.2773357,0.09063822,0.004504442,0.028459609,0.15985459,0.11918384,0.012632132,0.015270531,0.12680727,0.33490783,0.616559,0.9406138,1.271236,1.5718629,1.8092492,1.9571431,1.9991891,1.930738,1.7593591,1.504005,1.1929144,0.86048996,0.5434935,0.27698088,0.090424776,0.004455924,0.02858138,0.16013318,0.11894083,0.01255089,0.015360057,0.12705761,0.3352914,0.61703336,0.9411264,1.2717302,1.5722841,1.8095508,1.9572916,1.9991684,1.93055,1.7590249,1.5035613,1.1924105,0.8599815,0.5430367,0.27662623,0.09021151,0.0044076443,0.028703392,0.32238686,0.11869806,0.012469888,0.015449822,0.12730825,0.33567512,0.6175077,0.941639,1.2722243,1.572705,1.8098521,1.9574399,1.9991473,1.9303619,1.7586904,1.5031176,1.1919066,0.85947305,0.54258,0.27627176,0.08999848,0.004359603,0.60054004,0.32200933,0.11845553,0.012389183,0.015539885,0.12755907,0.33605897,0.6179822,0.94215167,1.2727184,1.573126,1.8101532,1.957588,1.999126,1.9301734,1.7583559,1.5026739,1.1914026,0.8589647,0.5421235,0.27591753,0.089785695,0.92273396,0.6000694,0.3216319,0.11821324,0.012308776,0.015630186,0.12781018,0.33644307,0.61845684,0.94266427,1.2732124,1.5735466,1.8104541,1.9577358,1.9991044,1.9299848,1.758021,1.5022298,1.1908985,0.8584564,0.54166704,0.27556342,0.089573145,0.922222,0.59959877,0.32125473,0.11797118,0.0122285485,0.015720725,0.12806147,0.33682734,0.61893153,0.9431769,1.2737063,1.5739672,1.8107548,1.9578834,1.9990826,1.929796,1.7576859,1.5017858,1.1903945,0.85794806,0.5412107,0.27520955,1.2529497,0.92171013,0.5991283,0.32087773,0.117729306,0.012148619,0.015811563,0.128313,0.33721173,0.61940634,0.94368964,1.2742002,1.5743877,1.8110553,1.9580307,1.9990604,1.9296068,1.7573507,1.5013416,1.1898904,0.85743976,0.54075456,1.5557896,1.2524529,0.9211982,0.59865797,0.3205009,0.11748773,0.012068987,0.015902638,0.12856472,0.3375963,0.6198812,0.9442023,1.274694,1.5748079,1.8113556,1.9581778,1.999038,1.9294174,1.7570153,1.5008972,1.1893861,0.85693157,0.54029846,1.5553627,1.251956,0.9206863,0.5981877,0.32012427,0.11724633,0.011989534,0.015993953,0.12881672,0.3379811,0.6203562,0.944715,1.2751876,1.575228,1.8116556,1.9583247,1.9990153,1.9292278,1.7566798,1.5004526,1.188882,0.8564234,1.7970433,1.5549356,1.2514591,0.9201745,0.5977175,0.3197478,0.11700523,0.011910439,0.016085565,0.12906897,0.33836603,0.6208313,0.94522774,1.2756813,1.5756481,1.8119555,1.9584713,1.9989924,1.929038,1.7563438,1.500008,1.1883776,1.9508495,1.7967331,1.5545083,1.250962,0.9196626,0.5972475,0.31937152,0.11676431,0.011831522,0.016177416,0.1293214,0.33875114,0.62130654,0.94574046,1.2761748,1.5760678,1.8122551,1.9586176,1.9989693,1.9288478,1.7560079,1.4995632,1.1878734,1.9506905,1.7964227,1.554081,1.2504649,0.91915077,0.5967775,0.31899542,0.11652362,0.011752903,0.016269565,0.12957406,0.33913642,0.6217818,0.9462532,1.2766683,1.5764874,1.8125546,1.9587636,1.9989458,1.9286575,1.7556717,1.4991183,1.9998336,1.950531,1.7961121,1.5536535,1.2499678,0.918639,0.59630764,0.3186195,0.11628318,0.011674523,0.016361952,0.12982696,0.33952188,0.62225723,0.94676596,1.2771617,1.5769069,1.8128538,1.9589094,1.9989221,1.9284669,1.7553353,1.9387445,1.9998429,1.9503715,1.7958012,1.5532258,1.2494706,0.9181272,0.59583795,0.31824374,0.11604297,0.011596441,0.016454577,0.1300801,0.33990753,0.6227327,0.94727874,1.277655,1.5773263,1.8131528,1.959055,1.9988981,1.9282761,1.7549987,1.9389215,1.9998518,1.9502115,1.7954903,1.5527979,1.2489733,0.9176155,0.59536827,0.31786817,0.115803,0.011518598,0.016547441,0.13033348,0.34029335,0.6232083,0.9477915,1.2781483,1.5777454,1.8134515,1.9592003,1.998874,1.928085,1.7744833,1.9390979,1.9998605,1.9500514,1.7951789,1.5523698,1.2484759,0.9171037,0.59489876,0.31749278,0.11556327,0.011440992,0.016640604,0.13058704,0.34067935,0.623684,0.9483043,1.2786415,1.5781646,1.81375,1.9593453,1.9988494,1.524658,1.774808,1.9392743,1.999869,1.9498911,1.7948675,1.5519419,1.2479784,0.916592,0.5944294,0.31711757,0.11532372,0.011363685,0.016734064,0.1308409,0.34106553,0.6241598,0.94881713,1.2791346,1.5785835,1.8140484,1.9594901,1.2169888,1.525095,1.7751325,1.9394504,1.9998772,1.9497304,1.7945558,1.5515136,1.247481,0.9160803,0.59396005,0.31674254,0.11508447,0.011286616,0.016827703,0.13109493,0.34145182,0.6246357,0.9493299,1.2796277,1.5790021,1.8143466,1.9596347,1.2174901,1.525532,1.7754569,1.9396262,1.9998851,1.9495695,1.7942438,1.5510851,1.2469835,0.91556865,0.59349084,0.3163677,0.114845395,0.011209846,0.01692164,0.1313492,0.34183836,0.6251117,0.94984275,1.2801206,1.5794208,1.8146445,0.8859067,1.2179912,1.5259688,1.7757809,1.9398018,1.9998927,1.9494084,1.7939317,1.5506566,1.2464858,0.915057,0.59302175,0.315993,0.11460662,0.011133313,0.017015815,0.13160372,0.34222502,0.62558776,0.95035565,1.2806135,1.5798392,0.56690216,0.88641685,1.2184924,1.5264055,1.7761049,1.9399772,1.9999001,1.949247,1.7936194,1.5502279,1.2459881,0.91454536,0.5925528,0.31561852,0.11436802,0.011057019,0.017110288,0.13185847,0.3426119,0.62606394,0.9508685,1.2811064,1.5802574,0.56736505,0.88692707,1.2189934,1.526842,1.7764286,1.9401523,1.9999073,1.9490854,1.793307,1.549799,1.2454904,0.9140338,0.5920839,0.3152442,0.11412972,0.010980964,0.017205,0.13211346,0.34299892,0.62654024,0.9513814,1.281599,0.2960115,0.56782806,0.8874373,1.2194945,1.5272784,1.7767521,1.9403272,1.9999142,1.9489235,1.7929943,1.54937,1.2449926,0.9135222,0.5916151,0.31487006,0.1138916,0.010905206,0.01729995,0.13236862,0.3433861,0.62701666,0.9518943,0.10227311,0.2963763,0.5682912,0.8879475,1.2199954,1.5277146,1.7770754,1.9405017,1.9999206,1.9487613,1.7926812,1.5489409,1.2444947,0.9130106,0.5911464,0.3144961,0.11365372,0.010829747,0.017395198,0.13262409,0.34377348,0.62749314,0.9524072,0.102499425,0.29674125,0.56875443,0.8884578,1.2204963,1.5281507,1.7773986,1.9406761,1.999927,1.948599,1.7923682,1.5485116,1.2439969,0.91249907,0.59067786,0.31412238,0.113416076,0.010754526,0.017490685,0.13287973,0.34416103,0.62796974,0.0075725317,0.10272598,0.29710644,0.5692178,0.8889681,1.2209971,1.5285866,1.7777214,1.9408503,1.9999331,1.9484363,1.7920548,1.5480821,1.2434988,0.9119876,0.59020936,0.31374878,0.11317867,0.010679543,0.01758647,0.13313562,0.34454876,0.022061288,0.0076357126,0.10295284,0.29747176,0.5696812,0.88947845,1.2214979,1.5290225,1.778044,1.9410241,1.999939,1.9482734,1.7917411,1.5476526,1.2430007,0.9114761,0.58974105,0.31337535,0.1129415,0.010604799,0.017682433,0.13339174,0.34493667,0.02195412,0.0076991916,0.10317987,0.29783726,0.5701448,0.8899888,1.2219986,1.5294582,1.7783666,1.9411976,1.9999444,1.9481103,1.7914274,1.5472229,1.2425026,0.9109646,0.58927286,0.31300217,0.112704515,0.010530353,0.017778695,0.13364804,0.14410263,0.021847248,0.007762909,0.103407145,0.298203,0.5706085,0.8904992,1.2224993,1.5298936,1.7786889,1.941371,1.9999497,1.9479469,1.7911134,1.546793,1.2420044,0.9104532,0.5888047,0.3126291,0.112467825,0.010456145,0.017875254,0.36061436,0.14383721,0.021740615,0.007826865,0.103634655,0.2985689,0.57107234,0.89100957,1.2229998,1.5303291,1.7790109,1.941544,1.9999547,1.9477832,1.7907993,1.5463631,1.2415061,0.9099418,0.5883367,0.31225622,0.112231374,0.010382235,0.64761865,0.3602196,0.14357197,0.02163428,0.0078911185,0.103862405,0.29893494,0.5715362,0.89152,1.2235004,1.5307643,1.7793328,1.9417169,1.9999595,1.9476194,1.7904849,1.5459329,1.2410078,0.9094304,0.5878688,0.31188357,0.1119951,0.010308564,0.6471381,0.35982502,0.14330703,0.021528184,0.00795567,0.10409045,0.2993012,0.57200027,0.8920305,1.2240008,1.5311995,1.7796544,1.9418895,1.999964,1.9474553,1.7901702,1.5455027,1.2405094,0.90891904,0.587401,0.31151104,0.111759126,0.9729599,0.6466577,0.35943067,0.14304227,0.021422327,0.008020401,0.10431868,0.29966766,0.57246435,0.892541,1.2245013,1.5316346,1.7799759,1.9420619,1.9999683,1.9472909,1.7898555,1.5450722,1.240011,0.9084077,0.58693326,0.31113875,1.3017628,0.9724466,0.6461774,0.35903645,0.14277774,0.021316707,0.008085489,0.10454714,0.30003428,0.57292867,0.89305156,1.2250016,1.5320693,1.780297,1.942234,1.9999721,1.9471263,1.7895404,1.5446416,1.2395124,0.90789634,0.5864657,0.31076658,1.3012732,0.9719333,0.6456972,0.35864234,0.1425134,0.021211386,0.008150756,0.104775846,0.3004011,0.573393,0.8935621,1.2255019,1.5325041,1.7806182,1.9424059,1.9999759,1.9469614,1.7892251,1.5442109,1.2390139,0.90738505,0.58599824,1.5968844,1.3007836,0.97142005,0.64521706,0.35824847,0.14224935,0.021106303,0.0082163215,0.10500479,0.30076814,0.5738575,0.8940727,1.2260021,1.5329386,1.780939,1.9425776,1.9999793,1.9467962,1.7889097,1.5437801,1.2385153,0.90687376,1.8266886,1.5964723,1.3002938,0.97090673,0.644737,0.35785478,0.14198548,0.021001518,0.008282125,0.10523391,0.3011353,0.5743221,0.89458334,1.2265023,1.533373,1.7812595,1.942749,1.9999825,1.9466308,1.788594,1.543349,1.2380166,0.90636253,1.8263996,1.59606,1.299804,0.9703935,0.64425707,0.3574612,0.14172184,0.020896971,0.008348227,0.105463326,0.30150265,0.5747868,0.895094,1.2270024,1.5338073,1.78158,1.9429201,1.9999855,1.9464653,1.7882782,1.5429178,1.2375178,1.9652159,1.8261104,1.5956477,1.299314,0.9698802,0.6437772,0.35706782,0.14145845,0.020792663,0.0084145665,0.10569298,0.30187023,0.5752516,0.8956046,1.2275025,1.5342414,1.7819002,1.9430909,1.9999881,1.9462993,1.7879622,1.5424865,1.9976165,1.9650815,1.8258209,1.5952351,1.2988241,0.96936697,0.64329743,0.3566746,0.1411953,0.020688653,0.008481145,0.10592288,0.30223793,0.5757165,0.8961153,1.2280024,1.5346755,1.7822202,1.9432616,1.9999905,1.9461331,1.7876458,1.5420551,1.9976518,1.9649469,1.8255312,1.5948224,1.298334,0.9688537,0.64281774,0.35628158,0.14093232,0.020584822,0.008548021,0.10615301,0.30260587,0.57618153,0.89662606,1.2285024,1.5351093,1.7825401,1.943432,1.9999926,1.9459668,1.7873294,1.9202306,1.9976869,1.964812,1.8252413,1.5944096,1.2978439,0.96834046,0.64233816,0.35588872,0.14066958,0.020481348,0.008615136,0.10638332,0.302974,0.5766467,0.8971368,1.2290022,1.535543,1.7828597,1.9436021,1.9999944,1.9458002,1.7413533,1.9204314,1.9977217,1.9646769,1.8249512,1.5939965,1.2973536,0.96782726,0.6418587,0.355496,0.14040709,0.020378053,0.008682549,0.106613934,0.30334228,0.57711196,0.8976476,1.2295021,1.5359766,1.783179,1.9437721,1.999996,1.4807415,1.7416978,1.920632,1.9977562,1.9645414,1.8246608,1.5935833,1.2968633,0.967314,0.64137936,0.3551035,0.14014482,0.020275056,0.0087502,0.10684478,0.30371076,0.57757735,0.89815843,1.2300018,1.5364101,1.7834983,1.9439416,1.9999974,1.4811916,1.7420422,1.9208324,1.9977905,1.9644058,1.8243703,1.5931702,1.2963729,0.9668008,0.6409,0.35471112,0.1398828,0.020172298,0.00881809,0.10707581,0.3040794,0.5780428,0.89866924,1.2305015,1.5368433,1.7838173,1.9441111,1.1676339,1.4816418,1.7423863,1.9210324,1.9978244,1.9642699,1.8240795,1.5927566,1.2958825,0.9662876,0.64042085,0.35431892,0.13962096,0.020069838,0.008886278,0.107307136,0.30444825,0.5785084,0.8991801,1.2310011,1.5372765,1.784136,0.8355943,1.16814,1.4820917,1.7427301,1.9212325,1.9978582,1.9641337,1.8237885,1.592343,1.2953919,0.9657744,0.63994175,0.3539269,0.13935935,0.019967556,0.008954704,0.10753864,0.30481726,0.5789741,0.899691,1.2315007,1.5377095,1.7844546,1.9444491,1.9999998,1.9449632,1.7854261,1.539031,1.233026,0.90125144,0.5803971,0.3059454,0.10824722,0.009165347,1.8581793,1.6423912,1.3555629,1.0294139,0.7000122,0.4037853,0.17349195,0.03459972,0.0024683475,0.080650985,0.2605018,0.52213156,0.8366074,1.1691524,1.4829912,1.7434175,1.9216313,1.9979248,1.9638606,1.823206,1.5915153,1.2944107,0.964748,0.63898385,0.3531434,0.13883686,0.019763887,0.009092391,0.108002424,0.30555588,0.57990587,0.90071285,1.2324997,1.5385752,1.785091,1.9447861,2.0,1.9446268,1.78479,1.5381658,1.2320273,0.9002295,0.57946515,0.30520642,1.9918083,1.9788543,1.8576517,1.6416037,1.3546028,1.0283874,0.6990327,0.40296108,0.17291427,0.034332454,0.002540946,0.08105558,0.2611935,0.523034,0.8376207,1.1701645,1.4838902,1.7441039,1.9220295,1.9979904,1.9635866,1.8226224,1.5906868,1.293429,0.9637217,0.6380263,0.35236055,0.13831526,0.019561231,0.009231091,0.1084671,0.30629522,0.5808381,0.9017348,1.2334985,1.5394402,1.7857268,1.9451221,1.9999992,1.9442892,1.7841532,1.5372999,1.2310282,0.8992077,0.57853353,1.8955386,1.991939,1.9786437,1.8571231,1.6408157,1.3536425,1.0273608,0.6980535,0.40213758,0.17233747,0.03406614,0.002614677,0.08146107,0.261886,0.52393687,0.83863413,1.1711763,1.4847887,1.7447896,1.9224265,1.998055,1.9633114,1.822038,1.5898578,1.2924471,0.9626954,0.63706917,0.35157835,0.13779461,0.019359648,0.009370804,0.10893279,0.30703527,0.58177066,0.90275687,1.2344968,1.5403047,1.7863616,1.9454572,1.9999974,1.9439508,1.7835155,1.5364335,1.2300289,0.898186,1.7008362,1.8959951,1.9920685,1.978432,1.8565936,1.640027,1.3526816,1.0263343,0.69707465,0.40131462,0.17176151,0.0338009,0.0026893616,0.081867576,0.26257932,0.52484024,0.8396477,1.172188,1.4856867,1.7454746,1.9228227,1.9981184,1.9630353,1.8214529,1.5890284,1.2914648,0.9616692,0.6361124,0.35079688,0.1372748,0.019159019,0.00951159,0.10939938,0.30777603,0.58270377,0.90377903,1.2354951,1.5411685,1.7869956,1.9457912,1.9999945,1.9436114,1.782877,1.5355664,1.1091819,1.4291017,1.7015684,1.8964508,1.9921972,1.9782194,1.8560632,1.6392375,1.3517205,1.0253075,0.69609606,0.40049237,0.17118645,0.033536673,0.0027651787,0.08227497,0.26327336,0.52574414,0.8406615,1.1731997,1.4865842,1.7461587,1.9232178,1.9981809,1.9627581,1.8208667,1.5881981,1.2904823,0.960643,0.63515604,0.35001606,0.13675594,0.018959522,0.009653449,0.10986686,0.30851758,0.58363724,0.9048013,1.2364931,1.5420318,1.7876288,1.9461242,1.9999905,1.9432708,1.7822375,0.7781893,1.1102027,1.4300292,1.7022998,1.8969054,1.9923246,1.9780056,1.8555319,1.6384475,1.3507589,1.0242809,0.69511783,0.39967072,0.17061228,0.0332734,0.002842009,0.082683444,0.26396817,0.5266485,0.84167546,1.174211,1.4874811,1.746842,1.9236119,1.9982423,1.96248,1.8202797,1.5873673,1.2894995,0.9596168,0.6342,0.34923595,0.13623804,0.01876098,0.009796321,0.11033535,0.30925983,0.58457124,0.9058237,1.2374908,1.5428946,1.7882612,1.9464562,1.9999855,1.9429293,0.47157687,0.7791908,1.1112233,1.4309561,1.7030306,1.897359,1.9924512,1.9777911,1.8549998,1.6376567,1.349797,1.0232543,0.69413984,0.39884973,0.170039,0.033011198,0.0029199123,0.08309281,0.26466376,0.52755344,0.8426896,1.1752222,1.4883776,1.7475246,1.9240052,1.9983027,1.9622008,1.8196919,1.5865357,1.2885163,0.9585907,0.6332444,0.34845656,0.13572097,0.018563509,0.009940207,0.11080474,0.3100028,0.5855056,0.90684617,1.2384883,1.5437567,1.7888927,1.9467874,0.059563756,0.22304583,0.472449,0.78019255,1.1122439,1.4318826,1.7037606,1.8978118,1.9925766,1.9775753,1.8544667,1.6368651,1.3488346,1.0222275,0.69316226,0.39802933,0.16946656,0.03275001,0.0029988885,0.08350319,0.26536012,0.52845883,0.84370387,1.1762332,1.4892734,1.7482064,1.9243973,1.9983618,1.9619205,1.8191032,1.5857036,1.2875328,0.9575646,0.6322892,0.34767783,0.13520485,0.018367052,0.0100851655,0.11127508,0.3107465,0.58644044,0.90786874,1.2394855,1.5446184,1.7895234,9.5427036e-5,0.059913397,0.22369277,0.47332174,0.7811945,1.1132643,1.4328086,1.7044898,1.8982635,1.9927009,1.9773585,1.8539327,1.6360731,1.347872,1.0212008,0.692185,0.39720958,0.168895,0.032489896,0.003078878,0.08391446,0.2660573,0.5293647,0.8447183,1.177244,1.4901688,1.7488873,1.9247886,1.9984201,1.9616394,1.8185136,1.5848709,1.2865491,0.95653856,0.6313343,0.34689975,0.13468963,0.018171668,0.010231197,0.11174637,0.31149095,0.5873757,0.9088914,1.2404824,0.2059511,0.05053115,0.00011014938,0.06026405,0.22434056,0.47419506,0.78219676,1.1142846,1.4337342,1.7052183,1.8987143,1.9928243,1.9771407,1.8533978,1.6352804,1.346909,1.020174,0.691208,0.39639044,0.16832429,0.032230735,0.0031599402,0.084326744,0.26675522,0.53027105,0.84573287,1.1782546,1.4910637,1.7495675,1.9251788,1.9984773,1.9613571,1.8179233,1.5840375,1.285565,0.9555126,0.6303799,0.34612238,0.1341753,0.017977297,0.010378242,0.11221862,0.31223607,0.58831143,0.90991414,0.4483258,0.20532727,0.050209284,0.00012588501,0.06061566,0.22498918,0.47506887,0.7831992,1.1153048,1.4346592,1.705946,1.8991642,1.9929466,1.9769218,1.8528621,1.6344869,1.3459456,1.0191472,0.6902314,0.395572,0.16775447,0.031972587,0.0032420158,0.08474004,0.2674539,0.531178,0.84674764,1.179265,1.4919581,1.750247,1.9255681,1.9985335,1.9610739,1.817332,1.5832037,1.2845806,0.9544866,0.6294258,0.34534574,0.13366193,0.01778394,0.010526359,0.11269176,0.31298196,0.5892475,0.75133747,0.44746953,0.20470428,0.04988849,0.00014269352,0.06096828,0.22563857,0.47594327,0.78420186,1.1163249,1.435584,1.706673,1.8996131,1.9930677,1.976702,1.8523254,1.6336927,1.3449819,1.0181204,0.6892551,0.39475417,0.16718554,0.031715512,0.0033251643,0.085154235,0.26815337,0.5320853,0.8477626,1.1802753,1.492852,1.7509255,1.9259565,1.9985886,1.9607897,1.8167398,1.5823691,1.2835959,0.95346075,0.62847215,0.34456974,0.13314945,0.017591655,0.01067549,0.113165855,1.4039859,1.0816808,0.7503429,0.44661385,0.20408213,0.049568653,0.00016057491,0.061321855,0.2262888,0.4768182,0.78520477,1.1173449,1.4365082,1.7073994,1.9000612,1.993188,1.976481,1.8517878,1.632898,1.3440177,1.0170935,0.68827915,0.39393693,0.16661751,0.03145939,0.0034093857,0.08556944,0.26885366,0.5329932,0.84877765,1.1812854,1.4937453,1.7516034,1.9263437,1.9986426,1.9605043,1.8161469,1.5815339,1.282611,0.9524349,0.6275189,0.34379447,0.13263786,0.017400384,0.010825634,1.6808635,1.4030463,1.0806572,0.7493485,0.4457587,0.20346081,0.049249828,0.00017952919,0.061676443,0.22693986,0.47769368,0.78620785,1.1183647,1.4374319,1.7081249,1.9005083,1.9933071,1.976259,1.8512495,1.6321025,1.3430532,1.0160668,0.6873034,0.3931204,0.16605031,0.031204343,0.00349468,0.08598554,0.26955467,0.5339016,0.84979296,1.1822953,1.4946381,1.7522804,1.9267302,1.9986955,1.9602181,1.815553,1.5806983,1.2816257,0.9514091,0.626566,0.34301984,0.13212723,1.98806,1.8829043,1.6801109,1.4021062,1.0796335,0.7483545,0.4449042,0.20284033,0.048932016,0.00019949675,0.062032044,0.2275917,0.47856975,0.78721124,1.1193844,1.4383552,1.7088497,1.9009544,1.9934253,1.9760361,1.8507099,1.6313064,1.3420885,1.0150399,0.6863282,0.39230448,0.16548407,0.030950308,0.0035809875,0.086402655,0.27025646,0.5348104,0.8508084,1.1833049,1.4955304,1.7529566,1.9271154,1.9987473,1.9599308,1.8149582,1.5798619,1.2806401,0.95038337,0.62561345,0.34224594,1.9841316,1.9879012,1.8824217,1.6793578,1.4011656,1.0786097,0.7473607,0.44405025,0.20222068,0.048615158,0.00022053719,0.0623886,0.22824436,0.47944635,0.7882148,1.120404,1.439278,1.7095736,1.9013995,1.9935422,1.9758122,1.8501697,1.6305096,1.3411232,1.014013,0.68535316,0.3914892,0.16491866,0.030697286,0.0036683083,0.08682072,0.27095902,0.53571975,0.8518239,1.1843145,1.4964222,1.7536321,1.9274999,1.9987983,1.9596424,1.8143626,1.5790248,1.2796543,0.9493576,0.6246614,1.8720329,1.9843132,1.9877415,1.881938,1.6786038,1.4002247,1.0775859,0.74636716,0.4431969,0.20160186,0.048299372,0.00024265051,0.06274617,0.22889787,0.4803235,0.7892186,1.1214235,1.4402003,1.7102969,1.9018438,1.9936583,1.9755871,1.8496286,1.6297121,1.3401576,1.0129861,0.6843785,0.39067453,0.16435409,0.030445337,0.0037567616,0.0872398,0.2716623,0.53662956,0.85283965,1.1853237,1.4973134,1.7543066,1.9278834,1.9988481,1.9593532,1.8137662,1.5781872,1.2786682,1.3821958,1.664085,1.872535,1.984494,1.9875805,1.8814535,1.677849,1.3992833,1.076562,0.74537385,0.44234413,0.20098394,0.04798454,0.0002657771,0.06310475,0.22955215,0.48120117,0.79022264,1.1224427,1.4411223,1.7110194,1.902287,1.9937732,1.9753611,1.8490865,1.628914,1.3391917,1.0119592,0.6834042,0.38986057,0.16379046,0.030194342,0.0038461685,0.087659776,0.2723664,0.5375399,0.8538555,1.1863328,1.4982041,1.7549806,1.9282658,1.9988968,1.9590628,1.8131689,1.577349,1.0590658,1.3831446,1.6648525,1.8730364,1.9846735,1.9874187,1.8809681,1.6770937,1.3983415,1.0755379,0.7443809,0.44149196,0.2003668,0.047670722,0.0002899766,0.063464284,0.23020726,0.4820794,0.79122686,1.123462,1.4420438,1.7117412,1.9027293,1.9938872,1.9751339,1.8485436,1.6281152,1.3382254,1.0109323,0.68243015,0.3890472,0.16322768,0.02994442,0.003936708,0.088080764,0.2730713,0.5384507,0.8548716,1.1873417,1.4990942,1.7556535,1.9286473,1.9989445,1.9587715,1.8125707,0.7294438,1.060091,1.384093,1.6656194,1.8735366,1.9848522,1.9872558,1.8804816,1.6763376,1.3973994,1.0745139,0.7433882,0.4406404,0.19975054,0.047357976,0.00031524897,0.06382477,0.23086321,0.4829582,0.7922313,1.124481,1.4429647,1.7124622,1.9031706,1.994,1.9749058,1.8479997,1.6273158,1.3372588,1.0099053,0.68145657,0.3882345,0.16266578,0.029695451,0.0040282607,0.088502645,0.2737769,0.539362,0.8558878,1.1883504,1.499984,1.7563257,1.9290277,1.9989913,0.19177014,0.4295597,0.73043257,1.0611161,1.385041,1.6663854,1.8740361,1.9850297,1.9870918,1.8799943,1.6755807,1.3964567,1.0734897,0.7423957,0.43978935,0.19913512,0.047046125,0.00034159422,0.064186275,0.23151994,0.48383754,0.793236,1.1255,1.4438852,1.7131824,1.903611,1.9941118,1.9746767,1.847455,1.6265156,1.3362918,1.0088785,0.6804832,0.38742244,0.16210479,0.029447556,0.0041208863,0.08892554,0.27448326,0.5402738,0.8569041,1.189359,1.5008731,1.7569972,1.9294071,0.043659985,0.1923753,0.43040347,0.7314217,1.0621412,1.3859886,1.6671507,1.8745346,1.9852062,1.9869268,1.879506,1.6748233,1.3955138,1.0724654,0.7414035,0.43893898,0.19852054,0.046735346,0.00036895275,0.06454879,0.2321775,0.48471737,0.7942409,1.1265187,1.4448051,1.713902,1.9040504,1.9942226,1.9744465,1.8469093,1.6257149,1.3353245,1.0078515,0.67951024,0.38661104,0.16154468,0.029200673,0.004214525,0.08934939,0.27519047,0.5411861,0.8579206,1.1903672,1.5017617,0.06788391,0.00066554546,0.04396063,0.19298136,0.4312479,0.7324111,1.0631661,1.3869358,1.6679153,1.8750322,1.9853817,1.9867609,1.8790169,1.674065,1.3945702,1.0714412,0.7404116,0.43808913,0.19790679,0.04642558,0.00039738417,0.06491226,0.23283583,0.4855978,0.795246,1.1275374,1.4457247,1.7146208,1.9044889,1.9943323,1.9742153,1.8463628,1.6249135,1.3343568,1.0068245,0.6785376,0.38580024,0.16098547,0.028954804,0.004309237,0.08977419,0.2758984,0.5420988,0.8589372,1.1913754,0.23751736,0.06751245,0.0006285906,0.04426229,0.19358826,0.4320929,0.73340076,1.064191,1.3878826,1.6686795,1.8755288,1.9855561,1.9865937,1.8785267,1.673306,1.3936265,1.0704168,0.73941994,0.43723994,0.19729388,0.04611677,0.00042682886,0.06527674,0.233495,0.48647875,0.79625136,1.1285559,1.4466438,1.7153387,1.9049264,1.9944409,1.973983,1.8458154,1.6241114,1.3333887,1.0057975,0.6775653,0.38499016,0.1604271,0.028710008,0.0044050217,0.09019995,0.27660704,0.543012,0.859954,0.4909588,0.2368533,0.06714201,0.0005927086,0.044564962,0.19419599,0.43293852,0.73439074,1.0652158,1.388829,1.6694427,1.8760246,1.9857296,1.9864256,1.8780357,1.6725464,1.3926821,1.0693923,0.7384286,0.4363913,0.19668186,0.04580903,0.00045734644,0.06564224,0.23415494,0.4873603,0.79725695,1.1295743,1.4475625,1.716056,1.9053631,1.9945486,1.9737499,1.845267,1.6233087,1.3324203,1.0047706,0.6765933,0.38418067,0.15986967,0.028466225,0.0045018196,0.09062672,0.2773165,1.1327059,0.80035126,0.4900751,0.23619008,0.06677252,0.0005578995,0.044868648,0.19480455,0.43378472,0.73538095,1.0662407,1.3897749,1.6702051,1.8765194,1.985902,1.9862564,1.8775437,1.671786,1.3917375,1.0683677,0.7374375,0.43554324,0.19607067,0.045502245,0.0004889369,0.06600869,0.23481572,0.48824233,0.79826266,1.1305926,1.4484806,1.7167726,1.9057987,1.9946551,1.9735155,1.8447179,1.6225052,1.3314515,1.0037436,0.6756217,0.38337183,0.15931308,0.028223395,0.0045996904,0.09105438,1.4494679,1.131688,0.799345,0.48919195,0.23552763,0.066404045,0.00052410364,0.045173287,0.195414,0.43463153,0.73637146,1.0672653,1.3907205,1.6709671,1.8770133,1.9860733,1.9860861,1.8770508,1.6710248,1.3907923,1.0673431,0.7364467,0.43469584,0.19546032,0.045196474,0.00052160025,0.06637609,0.23547733,0.4891249,0.79926866,1.1316106,1.4493983,1.7174883,1.9062333,1.9947606,1.9732803,1.8441677,1.6217011,1.3304825,1.0027167,0.67465043,0.38256365,0.15875739,0.027981639,1.9058316,1.7168269,1.4485503,1.1306698,0.79833907,0.48830932,0.23486596,0.06603652,0.0004913807,0.045479,0.1960243,0.43547887,0.73736227,1.06829,1.3916657,1.6717281,1.8775063,1.9862435,1.985915,1.876557,1.670263,1.3898468,1.0663184,0.7354561,0.43384898,0.1948508,0.044891715,0.00055527687,0.06674451,0.23613971,0.490008,0.80027485,1.1326287,1.4503155,1.7182033,1.906667,1.9948651,1.9730439,1.8436167,1.6208963,1.329513,1.0016897,0.6736795,0.38175613,0.15820259,1.9945567,1.9053961,1.7161105,1.4476322,1.1296517,0.7973333,0.48742723,0.23420513,0.06567001,0.00045973063,0.045785666,0.19663543,0.43632686,0.7383533,1.0693145,1.3926103,1.6724887,1.8779984,1.9864128,1.9857427,1.8760622,1.6695006,1.3889009,1.0652937,0.7344659,0.43300277,0.19424218,0.04458797,0.0005900264,0.06711388,0.23680294,0.4908917,0.8012812,1.1336465,1.4512322,1.7189175,1.9070997,1.9949685,1.9728067,1.8430648,1.6200911,1.3285432,1.0006627,0.67270887,0.38094926,1.9739654,1.9944491,1.9049597,1.7153933,1.4467137,1.1286333,0.7963277,0.48654568,0.23354506,0.06530446,0.00042909384,0.046093404,0.19724739,0.43717545,0.73934466,1.070339,1.3935547,1.6732483,1.8784895,1.986581,1.9855694,1.8755665,1.6687374,1.3879545,1.0642688,0.7334759,0.4321571,0.19363433,0.044285238,0.00062584877,0.06748426,0.23746693,0.49177587,0.8022878,1.1346642,1.4521484,1.719631,1.9075315,1.9950709,1.9725683,1.8425121,1.6192851,1.3275731,0.9996357,1.6248525,1.8463212,1.9741977,1.9943405,1.9045222,1.7146753,1.4457946,1.1276147,0.79532236,0.48566467,0.23288584,0.064939916,0.00039958954,0.046402097,0.19786024,0.43802464,0.7403363,1.0713633,1.3944986,1.6740074,1.8789797,1.9867481,1.985395,1.87507,1.6679735,1.3870077,1.063244,0.73248625,0.43131202,0.19302744,0.04398352,0.00066268444,0.067855656,0.23813176,0.49266058,0.80329466,1.1356817,1.4530642,1.7203436,1.9079623,1.9951723,1.9723289,1.8419585,1.6184783,1.3266026,1.335251,1.625654,1.8468678,1.974429,1.994231,1.9040837,1.7139566,1.444875,1.1265961,0.79431725,0.48478425,0.23222744,0.06457639,0.0003710389,0.046711802,0.19847387,0.43887442,0.7413282,1.0723877,1.395442,1.6747656,1.8794689,1.9869142,1.9852196,1.8745725,1.6672089,1.3860606,1.062219,0.7314968,0.4304676,0.19242132,0.043682814,0.000700593,0.06822801,0.23879737,0.4935459,0.8043017,1.1366992,1.4539795,1.7210556,1.9083922,1.9952724,1.9720883,1.841404,1.617671,1.0088004,1.3362184,1.6264548,1.8474135,1.9746592,1.9941202],"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/versinf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..9c6ce09d0feb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[0.0,0.020150244,0.079797685,0.17653793,0.30647153,0.46436077,0.6438985,0.8377388,1.0381198,1.2369642,1.4262568,1.5983671,1.7463577,1.8642628,1.9473302,1.9922112,1.9970968,1.9617898,1.8877137,1.7778544,1.6366401,1.4697633,1.2839507,1.0866921,0.88593894,0.6897836,0.50613284,0.34238964,0.20515436,0.09995878,0.03104341,0.0011861324,0.011590481,0.061837018,0.14990038,0.2722308,0.42389715,0.5987859,0.7898474,0.98938,1.1893406,1.3816692,1.5586127,1.7130389,1.838723,1.9305986,1.9849622,1.9996227,1.9739889,1.9090941,1.8075544,1.6734173,1.5121713,1.3302798,1.1350751,0.9344255,0.7364192,0.54903764,0.37983412,0.2356292,0.122235596,0.044224143,0.004739523,0.0053732395,0.04609984,0.12527764,0.23971492,0.38479894,0.5546813,0.74251425,0.9407263,1.1413276,1.3362322,1.5175834,1.678071,1.811226,1.9116809,1.9753866,1.9997749,1.9838629,1.9282919,1.835302,1.7086415,1.5534163,1.3758829,1.183198,0.9831285,0.78373903,0.59306693,0.41879815,0.2679572,0.1466245,0.059690952,0.010660648,0.0015100837,0.032608032,0.10272801,0.20900106,0.3471588,0.5116322,0.69579136,0.8922131,1.0929797,1.2899983,1.4753271,1.641496,1.7818062,1.8906026,1.9634991,1.9975575,1.991405,1.9452896,1.8610699,1.7421411,1.593297,1.4205375,1.2308263,1.0318105,0.8315126,0.6380063,0.45909172,0.3019809,0.17300683,0.07736832,0.01892066,1.9669533e-5,0.021427393,0.082280755,0.1801269,0.3110217,0.46968877,0.64973235,0.8438951,1.0443503,1.2430178,1.4318894,1.6033517,1.7504933,1.867383,1.9493089,1.992976,1.9965975,1.9600468,1.8847971,1.7738817,1.6317717,1.4641953,1.2779074,1.0804173,0.8796855,0.68380356,0.50066733,0.33765894,0.20134914,0.09723246,0.029505849,0.0008993149,0.01256597,0.064035535,0.15323329,0.2765637,0.42905545,0.6045617,0.79600775,0.99567664,1.1955198,1.3874817,1.5638244,1.7174397,1.8421354,1.932885,1.9860307,1.99943,1.9725428,1.9064529,1.8038245,1.6687944,1.5068055,1.3243876,1.1288939,0.9282044,0.730409,0.5434807,0.3749544,0.23162335,0.11923623,0.04239124,0.0041469336,0.0060448647,0.04800862,0.12834656,0.24382037,0.38977534,0.5603281,0.7486039,0.9470132,1.1475585,1.3421557,1.5229608,1.6826856,1.8148918,1.9142503,1.9767556,1.9998887,1.9827168,1.9259319,1.8318236,1.7041847,1.5481606,1.3700404,1.1770041,0.97683287,0.7775955,0.5873232,0.41368556,0.26368195,0.14335895,0.057566643,0.009763241,0.0018757582,0.034222126,0.10549843,0.21283156,0.35189503,0.5170833,0.7017375,0.8984147,1.0991867,1.2959604,1.4808042,1.6463137,1.785717,1.8934486,1.9651657,1.9979776,1.9905615,1.9432166,1.857851,1.737906,1.5882164,1.4148161,1.2246948,1.0255163,0.82530916,0.63214374,0.45380634,0.2974857,0.16948307,0.074958086,0.017720997,7.903576e-5,0.022743285,0.08480024,0.18374836,0.31559914,0.4750377,0.65563726,0.8501178,1.0506401,1.2491211,1.4375601,1.6083612,1.7546399,1.8704994,1.9512694,1.9936944,1.9960642,1.9582831,1.8818741,1.7699174,1.6269257,1.458663,1.2719119,1.0742,0.8734368,0.67783606,0.4952216,0.33295447,0.19757557,0.09454191,0.028006792,0.0006521344,0.01358062,0.066271186,0.15659976,0.28092533,0.4342364,0.6103531,0.8021762,1.0019735,1.2016913,1.3932788,1.5690137,1.721812,1.8455143,1.9351345,1.98706,1.9991975,1.9710581,1.9037758,1.8000629,1.6640997,1.5013672,1.3184249,1.122647,0.92192525,0.7243507,0.5378874,0.37005156,0.22760862,0.116300344,0.040613472,0.003598988,0.0067487955,0.049936056,0.13141978,0.24791557,0.3947274,0.5659374,0.7547034,0.95330226,1.1537834,1.3480656,1.5283176,1.6872733,1.8185254,1.9167833,1.978086,1.9999628,1.9815316,1.9235353,1.828312,1.6996999,1.5428832,1.3641832,1.1708032,0.9705382,0.77146083,0.5815957,0.40859622,0.2594359,0.1401273,0.055479705,0.008905113,0.0022810698,0.035874486,0.10833126,0.21673065,0.35670322,0.52260673,0.70775366,0.9046809,1.1054504,1.3019693,1.4863158,1.6510594,1.7895591,1.8962321,1.9667785,1.9983547,1.9896876,1.9411268,1.8546298,1.7336416,1.5831125,1.4090784,1.2185546,1.0192211,0.8191126,0.6262957,0.4485426,0.2930184,0.16599226,0.07258445,0.016560256,0.00017797947,0.02409798,0.08735603,0.18740219,0.32020378,0.48040754,0.66155577,0.8563465,1.0569278,1.2552145,1.4432135,1.6133468,1.7587565,1.8735812,1.9531922,1.9943807,1.9954863,1.9564643,1.8788879,1.7658839,1.6220076,1.4530585,1.2658468,1.0679191,0.86725366,0.671939,0.48984838,0.3283217,0.19386995,0.091912866,0.026560247,0.00044637918,0.014624059,0.06854379,0.15999967,0.28531545,0.43943977,0.6161599,0.8083525,1.0082703,1.2078546,1.3990605,1.5741805,1.7261555,1.8488598,1.9373469,1.9880501,1.9989254,1.9695349,1.9010627,1.7962694,1.6593788,1.4959091,1.3124495,1.1163952,0.91564924,0.7183033,0.5323124,0.36517376,0.22362453,0.1133706,0.03885621,0.0030849576,0.0074988008,0.051919818,0.13455743,0.2520805,0.39975178,0.5716187,0.7607535,0.95953214,1.159942,1.3539047,1.5336018,1.6917896,1.8220918,1.919256,1.9793653,1.9999974,1.9803076,1.9211023,1.8247677,1.6951873,1.5375843,1.3583117,1.1645956,0.9642447,0.7653352,0.5758848,0.40353036,0.25521922,0.13692981,0.0534302,0.008086324,0.0027258992,0.037565053,0.11119944,0.2206608,0.36153692,0.5281491,0.71378136,0.91095096,1.1117101,1.3079661,1.4918083,1.655826,1.7934077,1.8990076,1.9683689,1.9986959,1.988766,1.9389795,1.8513433,1.7293899,1.5780352,1.4033803,1.2124653,1.0129861,0.8129832,0.620519,0.4433514,0.28862202,0.16253448,0.07024765,0.015438557,0.00031661987,0.025491357,0.08994794,0.19108826,0.3248353,0.48579788,0.6674877,0.86258084,1.0632132,1.2612976,1.4488492,1.618308,1.762843,1.8766284,1.9550773,1.9950275,1.994869,1.9546076,1.8758667,1.76182,1.6170647,1.447436,1.2597713,1.0616355,0.8610152,0.6659972,0.4844427,0.32367003,0.19015986,0.08929384,0.025137901,0.00027811527,0.015716493,0.07083082,0.16339946,0.2896909,0.4446146,0.62192553,0.81447643,1.0145056,1.2139502,1.4047705,1.5793245,1.7304704,1.8521715,1.939522,1.989001,1.9986138,1.9679732,1.898314,1.7924445,1.6546317,1.4904313,1.3064618,1.1101389,0.9093765,0.71226704,0.5267559,0.36032104,0.21967125,0.11047602,0.03713703,0.0026105046,0.008288205,0.05394119,0.13772929,0.25627506,0.40479994,0.577317,0.76687217,0.9658246,1.1661546,1.359787,1.5389166,1.6963228,1.8256606,1.9217165,1.9806185,1.9999924,1.9790571,1.9186566,1.8212255,1.6906914,1.5323157,1.3524829,1.1584415,0.9579526,0.7592189,0.5701908,0.39848816,0.25103205,0.13376647,0.051418245,0.007306814,0.0032103062,0.039293826,0.11410284,0.22462189,0.36639595,0.53371024,0.71982044,0.9172245,1.1179652,1.3139508,1.4972812,1.6605666,1.7972248,1.9017472,1.9699209,1.9989976,1.9878051,1.936795,1.848023,1.7250679,1.5728855,1.3976105,1.2063081,1.0066894,0.8068012,0.6147007,0.43813133,0.28421062,0.15914297,0.0679698,0.0143662095,0.00049299,0.026909292,0.09255034,0.19477016,0.3294484,0.49115616,0.67343277,0.8688206,1.0694963,1.2673705,1.4544672,1.6232445,1.7668993,1.8796408,1.9569244,1.995635,1.9942122,1.952713,1.8728107,1.7577258,1.6120975,1.4417958,1.2536856,1.0553495,0.8547822,0.66006863,0.4790575,0.31904525,0.1864819,0.08671099,0.02375424,0.00014942884,0.016848028,0.07317692,0.16686553,0.2941373,0.449862,0.62776244,0.8206676,1.0208015,1.220097,1.4105204,1.584396,1.734715,1.855418,1.9416395,1.9899042,1.9982662,1.966389,1.8955569,1.7886255,1.6498587,1.484934,1.3004619,1.1038783,0.9031074,0.7062422,0.5212183,0.35549372,0.21574885,0.10761672,0.03545606,0.0021756291,0.009116888,0.056000113,0.14093542,0.26049912,0.4098717,0.583032,0.7730001,0.9721184,1.1723607,1.3656551,1.5442102,1.7008283,1.8291967,1.9241405,1.9818327,1.9999479,1.9777558,1.9161508,1.8176162,1.6861241,1.5269747,1.3465832,1.1522212,0.9517232,0.7531712,0.56456876,0.39351833,0.24691474,0.13066769,0.049462855,0.006573677,0.0037289262,0.041060627,0.11704135,0.22861367,0.37128007,0.53928983,0.7258706,0.9235014,1.1242157,1.319923,1.5027344,1.6652808,1.8010101,1.9044513,1.9714344,1.9992596,1.9868052,1.9345733,1.8446691,1.720717,1.567713,1.391825,1.2001426,1.0003927,0.8006269,0.6088977,0.43293363,0.27982765,0.15575147,0.06570643,0.013322234,0.00071048737,0.0283795,0.09521401,0.19851995,0.33413303,0.49658692,0.67933303,0.87500507,1.0757155,1.2733741,1.4600129,1.628109,1.7708864,1.8825897,1.9587164,1.996203,1.993516,1.9507807,1.8697202,1.7536017,1.607106,1.436138,1.2475897,1.0490612,0.848555,0.6541535,0.4736929,0.3144474,0.18283617,0.08416432,0.02240932,6.0379505e-5,0.018018484,0.075559735,0.17036462,0.29861164,0.45513123,0.6336142,0.8268659,1.0270965,1.226235,1.416254,1.5894941,1.738972,1.8586624,1.9437405,1.990777,1.9978759,1.9647509,1.8927374,1.7847381,1.6451066,1.4794711,1.2945083,1.0976743,0.89690286,0.7002873,0.515753,0.3507384,0.21189517,0.10479283,0.033813298,0.0017802715,0.009984851,0.05809641,0.14417559,0.2647525,0.41496688,0.5887636,0.779137,0.97841334,1.1785598,1.3715086,1.5494821,1.7053063,1.8326999,1.926528,1.9830081,1.9998639,1.9764156,1.9136086,1.8139746,1.6815298,1.5216126,1.3406699,1.1459948,0.9454347,0.7470741,0.5589089,0.38852376,0.24278688,0.12757283,0.047525883,0.0058725476,0.0042919517,0.042847812,0.11998594,0.23259687,0.3761415,0.5448334,0.73187286,0.92972034,1.1304008,1.3258249,1.5081676,1.6699688,1.8047639,1.9071194,1.9729095,1.9994822,1.9857662,1.9323145,1.8412819,1.7163376,1.5625181,1.3860239,1.1939692,0.99409586,0.7944604,0.6031102,0.42775834,0.27547324,0.1523934,0.06348008,0.012317359,0.0009676218,0.029888272,0.09791356,0.20230144,0.33884412,0.50203764,0.6853037,0.881255,1.0819929,1.2794256,1.4655949,1.6329963,1.774882,1.8855326,1.9604878,1.9967265,1.9927876,1.94883,1.8666257,1.7494881,1.602139,1.4305182,1.2415433,1.042832,0.84233385,0.6482521,0.46834916,0.3098768,0.17922282,0.08165395,0.021103084,1.1026859e-5,0.019227922,0.07797921,0.17389661,0.30311376,0.46042204,0.63948035,0.83307105,1.0333905,1.232364,1.4219711,1.5945687,1.7431997,1.8618727,1.9458041,1.9916105,1.9974458,1.9630747,1.8898826,1.7808197,1.6402824,1.4739357,1.2884849,1.0914055,0.8906416,0.69428587,0.5102533,0.3459621,0.20803487,0.10203123,0.032224238,0.00142771,0.010883093,0.060209215,0.14741778,0.26899344,0.42003554,0.5945115,0.78528273,0.9847091,1.1847519,1.3773474,1.5547321,1.7097561,1.8361701,1.9288785,1.9841444,1.9997401,1.9750369,1.9110303,1.8103006,1.6769083,1.5162301,1.3347429,1.1397625,0.9391483,0.74098706,0.55326647,0.38355345,0.238689,0.12451261,0.04562658,0.0052108765,0.004894495,0.04469025,0.122994006,0.2366494,0.38107502,0.55044913,0.7379444,0.93600297,1.1366413,1.3317716,1.5135283,1.6745851,1.8084497,1.9097263,1.9743321,1.9996634,1.9846985,1.9300413,1.8378944,1.7119298,1.5573008,1.3802075,1.1877882,0.9877992,0.7883021,0.59733844,0.42260575,0.27114755,0.14906895,0.06129092,0.011351705,0.0012643337,0.03143549,0.10064888,0.20611459,0.34358138,0.50750804,0.6912868,0.8875096,1.0882668,1.2854661,1.4711583,1.6378584,1.7788469,1.8884404,1.9622214,1.9972157,1.992013,1.9468228,1.8634666,1.7453046,1.5970998,1.4248261,1.2354281,1.03654,0.83617914,0.6424217,0.46307802,0.30537742,0.17567664,0.079203844,0.01984781,1.1920929e-6,0.020463943,0.08043522,0.17746133,0.30764353,0.46573424,0.6453608,0.8392828,1.0396832,1.2384839,1.4276716,1.5996199,1.747398,1.8650489,1.9478302,1.9924049,1.9969764,1.9613602,1.8869922,1.7768703,1.6354328,1.4683816,1.2824502,1.0851333,0.88438475,0.68829656,0.504773,0.3412118,0.20420593,0.09927809,0.030657828,0.0011111498,0.011829197,0.062379777,0.15072536,0.2733047,0.42517668,0.6002195,0.79137725,0.99094445,1.1908767,1.3831148,1.5599097,1.714135,1.839574,1.9311702,1.9852419,1.9995768,1.9736192,1.9084158,1.8065946,1.6722599,1.5108268,1.3288027,1.1335247,0.93286437,0.73491025,0.54764175,0.37860757,0.23462135,0.12148708,0.043765187,0.004588604,0.005536437,0.0465706,0.12603688,0.2407322,0.38603312,0.5560827,0.74402636,0.94228816,1.1428763,1.3377051,1.5189214,1.6792201,1.8121397,1.9123228,1.9757304,1.9998069,1.9835818,1.927709,1.8344408,1.7075368,1.5521123,1.3744326,1.1816597,0.98156416,0.7822118,0.5916383,0.4175257,0.26689225,0.14577824,0.059138954,0.01042521,0.0016006827,0.033021092,0.10341984,0.20995921,0.34834474,0.51299804,0.6972822,0.89376867,1.0945373,1.2914952,1.476703,1.6426953,1.7827809,1.891313,1.9639168,1.9976656,1.9911991,1.944778,1.8602734,1.7410916,1.5920368,1.4191175,1.2293036,1.0302467,0.8299706,0.6365483,0.4577765,0.30086142,0.1721282,0.07676607,0.018618941,3.0696392e-5,0.021750689,0.082903385,0.18102366,0.31215644,0.4710158,0.65119827,0.8454406,1.0459132,1.2445352,1.433355,1.6046473,1.7515666,1.8681908,1.9498186,1.9931598,1.9964674,1.9596077,1.8840669,1.7728899,1.6305581,1.4628088,1.2764041,1.0788577,0.87813246,0.68231964,0.4993124,0.3364876,0.20040858,0.0965606,0.029129803,0.0008342266,0.012814462,0.06458753,0.15406662,0.27764475,0.43034065,0.6059992,0.79753965,0.9972412,1.1970539,1.3889235,1.5651159,1.7185287,1.842978,1.9334474,1.98629,1.9993758,1.9721775,1.905791,1.8028929,1.6676304,1.5054562,1.3229072,1.1273422,0.9265831,0.728844,0.542035,0.3736863,0.23058403,0.11849642,0.041941702,0.0040057898,0.0062178373,0.048488736,0.12911445,0.24484509,0.3910156,0.5617339,0.7501185,0.9485756,1.1491057,1.3436253,1.5242937,1.6838281,1.8157977,1.9148829,1.9770899,1.9999108,1.9824259,1.9253399,1.8309541,1.703073,1.5468514,1.3685864,1.175464,0.9752688,0.7760704,0.5858985,0.41241884,0.26262426,0.1425528,0.057044625,0.009546399,0.0019727945,0.034629107,0.10619897,0.21379745,0.3530873,0.51845384,0.7032895,0.900032,1.1008041,1.2975128,1.4822289,1.6475067,1.7866838,1.8941503,1.9655739,1.9980758,1.990346,1.9426956,1.8570459,1.7368492,1.5869504,1.4133921,1.22317,1.0239522,0.82376885,0.63068926,0.4524964,0.29637313,0.1686126,0.0743649,0.017428935,9.9897385e-5,0.023076296,0.085431874,0.18465322,0.3167407,0.47636998,0.6571065,0.8516649,1.0522026,1.250636,1.4389664,1.6096022,1.7556655,1.8712683,1.9517508,1.9938686,1.9959242,1.9578347,1.8811355,1.7688789,1.6256584,1.4572179,1.2703471,1.0725789,0.871885,0.67635536,0.49387163,0.33178967,0.19664288,0.093878984,0.027640283,0.0005968809,0.013838828,0.06683236,0.15744138,0.28201348,0.43552715,0.6117945,0.8037101,1.003538,1.2032233,1.394717,1.5702996,1.722894,1.8463488,1.9356877,1.9873097,1.9991336,1.9706832,1.903105,1.7991233,1.6629293,1.5000129,1.3169414,1.1210941,0.9203656,0.7228471,0.53650045,0.36883724,0.22661585,0.115569115,0.04017335,0.0034675598,0.0069314837,0.050444543,0.13222653,0.24898791,0.3960222,0.5674025,0.75622046,0.95486516,1.1553291,1.3495319,1.5296452,1.6884089,1.8194232,1.917407,1.9784106,1.9999751,1.9812311,1.9229343,1.8274345,1.6985812,1.5415686,1.3627257,1.1692615,0.9689744,0.769938,0.5801752,0.40733534,0.25838548,0.13932967,0.054966986,0.008698046,0.0023878813,0.036290944,0.10904056,0.2177043,0.35790187,0.52398205,0.70925033,0.90623844,1.1070061,1.3034604,1.4876823,1.6522461,1.7905183,1.896925,1.9671772,1.9984465,1.9894534,1.9405761,1.8537846,1.7325776,1.5818408,1.4076502,1.2170277,1.0176567,0.8175741,0.62484497,0.4472381,0.29191273,0.16513002,0.072000384,0.01627791,0.00020873547,0.024440587,0.08799666,0.18831503,0.321352,0.48174495,0.66302836,0.85789496,1.0584897,1.2567267,1.4446154,1.6145818,1.7597747,1.8743415,1.9536641,1.9945451,1.9953365,1.9560065,1.8781404,1.764877,1.6207817,1.4516631,1.2643383,1.0663581,0.8657031,0.6704615,0.4885034,0.3271634,0.19290906,0.09123325,0.026189327,0.0003991723,0.014902353,0.06911421,0.16084957,0.28641063,0.44073606,0.6176051,0.80988824,1.0098348,1.2093848,1.4004946,1.5754607,1.7272303,1.8496858,1.9378908,1.9882901,1.9988518,1.9691504,1.9003832,1.795322,1.6582017,1.4945499,1.3109629,1.1148412,0.91409034,0.7168025,0.53093004,0.36396563,0.22263938,0.11264813,0.038425505,0.0029610395,0.007695079,0.052428305,0.13535762,0.2531402,0.40102828,0.5730606,0.7623025,0.96112597,1.1615163,1.3553962,1.53495,1.6929405,1.8229989,1.9198827,1.9796865,1.9999998,1.9800035,1.9205039,1.8238993,1.6940838,1.5362902,1.3568505,1.1630521,0.96268123,0.7638146,0.5744685,0.40227532,0.25417608,0.13614058,0.05292678,0.007888973,0.002842605,0.037991047,0.111917555,0.22164214,0.3627419,0.52952915,0.71528083,0.9125094,1.1132647,1.3094542,1.49317,1.6570063,1.7943776,1.8997049,1.9687657,1.998776,1.9885263,1.9384296,1.8505054,1.7282978,1.5767329,1.4019203,1.2109064,1.011391,0.8114165,0.6190437,0.44202697,0.28750187,0.16169715,0.06968391,0.01517123,0.00035637617,0.025836647,0.090584874,0.19199109,0.32599026,0.48714042,0.6689636,0.8641307,1.0647746,1.2628075,1.4502468,1.6195369,1.7638538,1.8773801,1.9555397,1.9951823,1.9947094,1.9541404,1.8751106,1.7608056,1.6158328,1.4460362,1.2582603,1.0600739,0.85946596,0.6645229,0.48307663,0.322496,0.18922514,0.08863616,0.02478373,0.00024175644,0.015999436,0.07142162,0.16427428,0.29081458,0.44594175,0.6234027,0.81604403,1.0161005,1.215508,1.4062285,1.5805743,1.7315173,1.8529732,1.9400463,1.9892268,1.998532,1.9675792,1.8976256,1.7914891,1.6534482,1.4890672,1.3049722,1.1085838,0.9078185,0.71076906,0.5253783,0.35911924,0.2186938,0.10976231,0.036715806,0.002498746,0.008490443,0.05444926,0.13852274,0.25732183,0.4060579,0.5787355,0.7683939,0.9674188,1.1677272,1.3612748,1.5402596,1.6974667,1.8265594,1.922334,1.9809299,1.9999849,1.9787312,1.9180253,1.8203144,1.689537,1.5309649,1.3509898,1.1568666,0.95642,0.75773025,0.56880623,0.39726335,0.2500165,0.13300103,0.05093378,0.0071192384,0.0033367872,0.039729238,0.11482966,0.22561085,0.36760718,0.53509486,0.72132266,0.9187838,1.1195186,1.3154359,1.4986379,1.6617403,1.7981682,1.9024224,1.9703006,1.9990664,1.9875604,1.9362464,1.8471929,1.7239895,1.5716025,1.3961465,1.2047471,1.0050944,0.80523646,0.6132293,0.43681258,0.28309768,0.15828073,0.067392945,0.014098048,0.0005443096,0.027278066,0.093221664,0.19571704,0.33063257,0.49252993,0.6748831,0.87034154,1.0710264,1.2688484,1.4558331,1.6244435,1.7679025,1.880384,1.9573776,1.9957798,1.9940429,1.9522364,1.872046,1.7567039,1.6108595,1.4403917,1.2521719,1.0537872,0.8532344,0.6585977,0.47772264,0.3179003,0.18557304,0.08607483,0.02341646,0.00012362003,0.017135203,0.07376552,0.16773182,0.29526806,0.4511947,0.6292434,0.822237,1.0223962,1.2216526,1.4119743,1.5856895,1.7357961,1.856243,1.9421753,1.990129,1.9981711,1.9659777,1.894846,1.7876437,1.648692,1.4835918,1.2989984,1.1023524,0.9015807,0.7047762,0.51984525,0.3542983,0.21477914,0.10691178,0.035044312,0.0020736456,0.009328902,0.05651748,0.14173728,0.26155323,0.4111355,0.5844546,0.7745241,0.9736824,1.1739016,1.3671107,1.545522,1.7019436,1.8300703,1.9247372,1.9821284,1.9999307,1.9774199,1.9155102,1.8166969,1.6849629,1.5256184,1.3450866,1.1506445,0.95013005,0.75162584,0.5631334,0.39225084,0.2458663,0.12988043,0.048968613,0.0063923597,0.0038678646,0.041496813,0.117762566,0.22959077,0.37247378,0.5406519,0.7273462,0.925031,1.125768,1.3214049,1.5040863,1.6664481,1.8019458,1.9051175,1.9718045,1.9993186,1.9865507,1.9340155,1.8438306,1.7196314,1.5664244,1.390385,1.1986095,0.9988281,0.79909396,0.60745823,0.43164563,0.2787431,0.15491396,0.065149784,0.013063967,0.00077188015,0.028758049,0.095894456,0.19947481,0.33532393,0.49796575,0.6808443,0.8765878,1.077306,1.2749081,1.4614286,1.6293494,1.7719014,1.8833385,1.9591687,1.9963354,1.9933403,1.9503043,1.868962,1.7525924,1.6058862,1.4347296,1.2460736,1.0474985,0.8470087,0.65268594,0.47236323,0.3133092,0.18193537,0.08353716,0.022081137,4.440546e-5,0.018315375,0.07615745,0.17123914,0.29972768,0.4564438,0.6350703,0.82840705,1.0286605,1.2277586,1.4176761,1.5907571,1.7400252,1.8594787,1.9442668,1.9909918,1.9977707,1.96433,1.8920176,1.7837484,1.6438869,1.4780707,1.2929837,1.0960866,0.8953164,0.69876593,0.51435804,0.34952605,0.21091437,0.10411024,0.033418894,0.0016899109,0.010202289,0.058612764,0.14497006,0.2658139,0.41623646,0.5901903,0.78066325,0.97997755,1.1800989,1.3729607,1.5507885,1.7064145,1.8335652,1.9271154,1.9832941,1.9998368,1.9760766,1.9129714,1.8130648,1.6803839,1.5202773,1.3391985,1.1444467,0.9438725,0.74556077,0.55747795,0.3872624,0.24174601,0.1267944,0.047041178,0.0057011843,0.004440844,0.04331094,0.120744646,0.23362058,0.37738883,0.5462543,0.7334099,0.93131155,1.1319821,1.3273325,1.5094882,1.6711068,1.8056736,1.907764,1.973263,1.9995303,1.9855019,1.9317476,1.840435,1.715245,1.5612239,1.3845801,1.1924342,0.9925313,0.79292953,0.6016746,0.42647594,0.27439576,0.15156424,0.06293267,0.012073815,0.0010376573,0.030269086,0.09858984,0.20324594,0.34001875,0.50339496,0.68678916,0.8828086,1.0835824,1.2809567,1.467006,1.6342304,1.7758892,1.8862724,1.9609306,1.9968542,1.9925952,1.9483252,1.8658288,1.7484312,1.6008648,1.4290779,1.2399951,1.0412383,0.8408192,0.64681655,0.46705055,0.30876744,0.17834747,0.08104789,0.020784557,4.887581e-6,0.019534469,0.07858604,0.17477924,0.3042367,0.46173996,0.6409401,0.83461386,1.0349542,1.2338855,1.4233891,1.595826,1.7442455,1.862665,1.946311,1.9918116,1.9973329,1.9626522,1.8891677,1.7798412,1.6390798,1.4725306,1.2869574,1.089817,0.88905627,0.69276756,0.5088632,0.34475636,0.20706195,0.10133046,0.031823814,0.0013437867,0.011119068,0.06075555,0.14825243,0.27008277,0.4213357,0.59591424,0.78678125,0.98624295,1.1862593,1.3787675,1.5560079,1.7108359,1.8370272,1.929457,1.9844208,1.9997032,1.9746882,1.9103839,1.8093828,1.6757557,1.5148895,1.3332682,1.1382132,0.9375868,0.7394762,0.55186725,0.38232225,0.23767549,0.1237576,0.04516059,0.0050525665,0.0050503016,0.045153916,0.12374681,0.2376808,0.3823287,0.5518745,0.7394841,0.9375949,1.1382211,1.3332759,1.5148964,1.6757617,1.8093876,1.9103874,1.97469,1.9997034,1.9844193,1.9294538,1.8370228,1.7108517,1.5560265,1.3787882,1.1862812,0.98626536,0.7868031,0.5959068,0.42132908,0.27007723,0.1482482,0.06075275,0.011117816,0.001344204,0.03182584,0.101334035,0.2070669,0.3447625,0.50887036,0.6927753,0.8890644,1.0898252,1.2869651,1.4725378,1.6390626,1.7798272,1.8891574,1.9626462,1.9973313,1.9918145,1.9463084,1.8626609,1.7442402,1.5958195,1.4233817,1.2338777,1.0349461,0.8346058,0.64093256,0.46173304,0.3042308,0.17477465,0.07858288,0.01953286,4.9471855e-6,0.020786226,0.08103907,0.17833471,0.30875123,0.4670316,0.64679563,0.84079707,1.0412464,1.2400031,1.4290853,1.6008713,1.7484366,1.8658328,1.9483278,1.9925961,1.9968536,1.9609284,1.8862687,1.7758842,1.6342239,1.4669987,1.280949,1.0835743,0.88283086,0.6868104,0.5034144,0.34003556,0.20325947,0.09859955,0.03026712,0.00103724,0.012075067,0.06293553,0.15156853,0.27440137,0.42648262,0.60168207,0.7929375,0.99253947,1.1924422,1.3845876,1.5612307,1.7152507,1.8404394,1.9317505,1.9855032,1.999531,1.973268,1.9077734,1.8056867,1.6711235,1.5095075,1.3273247,1.131974,0.93130344,0.733402,0.546247,0.37738252,0.23361534,0.12074077,0.043308556,0.004440129,0.0057020783,0.04704362,0.12679833,0.24175131,0.38726884,0.5574852,0.74553907,0.94385016,1.1444247,1.3391774,1.5202582,1.6803675,1.8130695,1.9129746,1.9760784,1.9998369,1.9832926,1.9271123,1.8335607,1.7064087,1.5507817,1.3729532,1.1800909,0.9799694,0.78065526,0.59018284,0.41622984,0.26580834,0.14498168,0.058620334,0.010205448,0.0016885996,0.03341317,0.10410029,0.21091932,0.34953225,0.51436514,0.6987737,0.8953245,1.0960947,1.2929914,1.4780779,1.6438932,1.7837535,1.8920212,1.9643321,1.9977713,1.9909909,1.9442642,1.8594747,1.7400403,1.5907753,1.4176965,1.2277805,1.0286828,0.8284291,0.63506275,0.45643693,0.29972184,0.17123455,0.07615435,0.018313825,4.452467e-5,0.022082806,0.08354044,0.18194002,0.31331515,0.47237015,0.65269357,0.84701675,1.0475066,1.2460815,1.434737,1.6058685,1.7525778,1.868951,1.9502974,1.9933378,1.9963373,1.9591664,1.8833346,1.7718961,1.629343,1.4614215,1.2749002,1.0772979,0.8765797,0.68083656,0.49795872,0.33531785,0.19946998,0.095891,0.028756142,0.0007715225,0.0130652785,0.06514186,0.15490198,0.27872753,0.4316272,0.6074376,0.799072,0.9988363,1.1986175,1.3903925,1.566431,1.7196372,1.8438351,1.9340184,1.986552,1.9993184,1.9718026,1.9051142,1.8019409,1.666442,1.5040792,1.3213973,1.12576,0.9250533,0.72736776,0.5406718,0.37249118,0.22960502,0.117773116,0.04149455,0.0038671494,0.006393254,0.048971176,0.12988448,0.24587166,0.39225727,0.56314075,0.7516337,0.9501382,1.1506525,1.3450942,1.5256253,1.6849687,1.8167015,1.9155135,1.9774216,1.9999305,1.9821327,1.9247457,1.8300827,1.7019596,1.5455408,1.3671032,1.1738935,0.97367424,0.77451617,0.5844472,0.41112894,0.26154774,0.14173311,0.0565148,0.009327769,0.002074182,0.03504646,0.106915414,0.21478415,0.3543045,0.5198524,0.7047548,0.90155846,1.1023301,1.298977,1.4835722,1.648675,1.7876487,1.8948497,1.9659797,1.9981716,1.9901278,1.9421725,1.8562388,1.7357905,1.5856831,1.4119669,1.2216446,1.0223881,0.822229,0.6292358,0.4511879,0.29526228,0.16774422,0.07377398,0.017139316,0.0001232624,0.023411632,0.08606577,0.18557775,0.31790626,0.47772956,0.65860534,0.8532425,1.0537953,1.2521797,1.4403989,1.610866,1.7567093,1.87205,1.952239,1.9940437,1.995779,1.9573752,1.88038,1.7678972,1.6244609,1.455853,1.2688699,1.0710489,0.8703637,0.6749042,0.4925229,0.3306265,0.19571221,0.09321827,0.027276158,0.0005440712,0.014099419,0.067395866,0.15828508,0.28310335,0.43681931,0.6132368,0.80524445,1.0051025,1.2047551,1.3961539,1.5715841,1.723974,1.847181,1.9362385,1.9875569,1.9990673,1.9702985,1.902419,1.7981633,1.6617341,1.498631,1.3154281,1.1195107,0.9187757,0.7213149,0.5350877,0.36760086,0.22560567,0.114825904,0.039726973,0.0033361316,0.0071202517,0.050926745,0.13298988,0.25000167,0.39724553,0.568786,0.75770855,0.9564282,1.1568745,1.3509974,1.5309718,1.6895429,1.8203189,1.9180285,1.9787328,1.999985,1.9809282,1.9223309,1.8265548,1.6974609,1.5402527,1.3612672,1.1677192,0.9674106,0.7684157,0.57875574,0.4060759,0.25733685,0.13853407,0.054456532,0.00848937,0.002499342,0.03671801,0.10976601,0.21869886,0.3591255,0.52538544,0.7107768,0.9078266,1.1085919,1.3049798,1.4890742,1.6534543,1.7914941,1.8976291,1.9675813,1.9985309,1.98923,1.9400539,1.8529849,1.7315326,1.5805924,1.4062212,1.2155001,1.0160924,0.81603605,0.62339514,0.44593495,0.29080886,0.1642698,0.07141864,0.015998006,0.00024193525,0.024785578,0.0886395,0.1892299,0.32250196,0.4830836,0.66450185,0.8594438,1.0600516,1.2582386,1.4460162,1.6158152,1.7608109,1.8751144,1.9541428,1.9947102,1.9951813,1.9555373,1.8773762,1.7638485,1.6195304,1.4502394,1.2627996,1.0647665,0.8641226,0.6689559,0.48713338,0.32598424,0.19200432,0.09059417,0.025841713,0.00035697222,0.015167356,0.069675684,0.16170156,0.2875076,0.44203377,0.6190512,0.8114245,1.0113991,1.2109144,1.4019277,1.5767395,1.7283034,1.8505096,1.9384325,1.9885275,1.9987756,1.9687636,1.8997014,1.7943726,1.6570232,1.4931895,1.3094755,1.1132869,0.9125317,0.7153023,0.52952194,0.36273563,0.22163701,0.1119138,0.03798884,0.0028419495,0.007889986,0.0529294,0.1361447,0.2541815,0.40228188,0.5744759,0.76382256,0.96268934,1.1630602,1.3568581,1.5362713,1.6940677,1.8238866,1.9204952,1.9799991,1.9999998,1.9796848,1.9198794,1.8229942,1.6929346,1.5349432,1.3553885,1.1615083,0.9611178,0.76229465,0.57305324,0.40102178,0.2531348,0.13535357,0.052425683,0.0076940656,0.0029616952,0.038419366,0.11263782,0.22262532,0.3639484,0.5309103,0.716781,0.91409844,1.1148493,1.3109707,1.4945569,1.6582079,1.795327,1.9003867,1.9691525,1.9988523,1.9882888,1.937888,1.8496815,1.7272248,1.5754541,1.4004872,1.2093768,1.0098267,0.80988026,0.6175976,0.44072932,0.2864049,0.16084516,0.06911123,0.014895678,0.0004002452,0.026198149,0.09124941,0.19293189,0.3271469,0.48848414,0.6704403,0.86568093,1.0663358,1.2643168,1.4516432,1.6207643,1.7648625,1.8781297,1.956,1.9953344,1.9945474,1.9536709,1.8743525,1.7597892,1.6145995,1.4446081,1.2567189,1.0584816,0.8578869,0.66302073,0.48173797,0.32134604,0.18831033,0.087993324,0.024438798,0.00020855665,0.0162794,0.072003424,0.16513449,0.29191852,0.44724488,0.62485254,0.81758213,1.0176649,1.2170355,1.4076577,1.5818474,1.7326039,1.8538047,1.9405892,1.989459,1.9984443,1.9671829,1.896935,1.7905319,1.6522632,1.4877019,1.3034817,1.1070284,0.9062607,0.70927167,0.5240017,0.35791904,0.21771824,0.10905075,0.036296964,0.002389431,0.008695066,0.054959655,0.13931823,0.2583909,0.4073419,0.58018255,0.76994586,0.9689825,1.1692694,1.3627332,1.5415754,1.6985871,1.8274391,1.9229374,1.9812326,1.999975,1.9784089,1.9174037,1.8194185,1.688403,1.5296384,1.3495243,1.1553211,0.954857,0.7562126,0.5673676,0.39599138,0.2489624,0.13220727,0.050432444,0.0069341063,0.003465712,0.040167034,0.115558684,0.22660166,0.3688199,0.53648067,0.7228256,0.9203433,1.1210719,1.3169202,1.4999936,1.6629125,1.7991098,1.9030955,1.9706779,1.9991328,1.9873083,1.9356848,1.8463444,1.7228882,1.570293,1.3947095,1.2032154,1.0035299,0.8037021,0.61178696,0.43552047,0.2820078,0.15743703,0.06682944,0.013837457,0.00059717894,0.02764219,0.09388244,0.19664776,0.33179575,0.49387866,0.67636305,0.87189305,1.0726174,1.2703843,1.4572523,1.6256886,1.7689037,1.8811247,1.9578283,1.9959222,1.9938711,1.9517576,1.8712792,1.7556801,1.6096201,1.4389865,1.2506576,1.0522249,0.851687,0.6571275,0.47638905,0.31675702,0.18466616,0.08544093,0.023074508,9.9778175e-5,0.017430484,0.07436794,0.16861713,0.2963789,0.45250326,0.6306969,0.8237769,1.0239604,1.223178,1.4133995,1.586957,1.7368547,1.8570502,1.9426985,1.990347,1.9980743,1.9655678,1.8941398,1.7866694,1.6474888,1.4822085,1.2974904,1.1007807,0.9000087,0.7032672,0.51848686,0.3531044,0.21381128,0.10620904,0.034634948,0.0019741654,0.0095433,0.057037175,0.14254129,0.26260912,0.41240078,0.5858782,0.7760635,0.9752617,1.175457,1.3685799,1.5468454,1.7030679,1.8309501,1.9253373,1.9824245,1.9999108,1.9770913,1.9148797,1.815793,1.6838222,1.5242867,1.3436177,1.1490977,0.9485675,0.7501106,0.56172657,0.39100915,0.24483973,0.12910295,0.048481524,0.0062152743,0.004007876,0.041948438,0.118507445,0.23059893,0.37370455,0.5420558,0.72886646,0.9266064,1.1273199,1.3228861,1.5054369,1.6676137,1.8028796,1.9057816,1.9721723,1.9993751,1.9862938,1.9334555,1.8429902,1.7185336,1.5651218,1.3889301,1.197061,0.9972483,0.7975466,0.60600567,0.4303465,0.2776497,0.15407038,0.06459004,0.012815595,0.00083452463,0.02913177,0.096564114,0.20041347,0.33649367,0.49931943,0.6823274,0.8781405,1.0788658,1.276412,1.4628161,1.6305764,1.7729048,1.8840779,1.9596143,1.9964693,1.9931571,1.9498112,1.8681791,1.7515512,1.6046287,1.4333339,1.2445569,1.0459356,0.8454628,0.65121925,0.47103482,0.3121727,0.18103653,0.082912326,0.021755338,3.0875206e-5,0.01861465,0.07676333,0.1721242,0.3008563,0.45777053,0.63654166,0.8299636,1.0302396,1.2292967,1.419111,1.5920311,1.7410867,1.8602774,1.9447806,1.9912002,1.997665,1.9639146,1.8913093,1.7827759,1.642689,1.4766959,1.2914875,1.0945292,0.8937454,0.6972599,0.5129776,0.34832698,0.2099449,0.10340947,0.033015132,0.0015993714,0.010428607,0.05914688,0.1457904,0.26686662,0.41750747,0.5916179,0.78218997,0.9815418,1.1816376,1.3744118,1.5520937,1.707521,1.8344285,1.9277006,1.9835777,1.999807,1.9757318,1.9123256,1.812144,1.6792253,1.5189273,1.3377118,1.1428833,0.9422953,0.7440332,0.5560891,0.38602668,0.24072689,0.12603295,0.046568155,0.0055356026,0.004589379,0.04376757,0.121490955,0.23462659,0.37861395,0.547649,0.73493284,0.93288773,1.1335479,1.3288248,1.5108471,1.6722772,1.8066084,1.9084256,1.9736246,1.9995774,1.9852378,1.9311783,1.8395861,1.7141507,1.5599283,1.3831354,1.1908987,0.99096686,0.7913991,0.60024,0.42519504,0.27332008,0.15072912,0.06238228,0.01183027,0.0011108518,0.03065604,0.09927499,0.20420164,0.34120643,0.5047668,0.6882898,0.88437766,1.0851414,1.282458,1.4683888,1.6354392,1.7768753,1.886996,1.9613626,1.996977,1.9924039,1.9478276,1.8650448,1.7473927,1.5996013,1.4276505,1.2384613,1.0396597,0.83925974,0.645339,0.46571445,0.30762666,0.17744803,0.08042604,0.020471513,1.2516975e-6,0.0198434,0.07919508,0.17566395,0.30536133,0.4630592,0.6424008,0.8361571,1.0365177,1.2354064,1.4248059,1.597094,1.7452998,1.863463,1.9468205,1.9920121,1.9972163,1.9622233,1.8884437,1.7788513,1.6378639,1.4711646,1.2854582,1.0882587,0.88750154,0.69127905,0.507501,0.34357524,0.20610964,0.100645304,0.031433463,0.0012639165,0.011352897,0.061298966,0.14908123,0.27116358,0.4226249,0.59735984,0.78832495,0.98782265,1.1878111,1.3802291,1.5573204,1.7119461,1.8378823,1.930033,1.9846947,1.9996638,1.9743372,1.9097356,1.808463,1.6746017,1.5135477,1.3317927,1.1366634,0.9360253,0.7379513,0.5504555,0.38108063,0.23665404,0.12299746,0.044692397,0.0048952103,0.0052101016,0.045624495,0.124509156,0.23868442,0.38355982,0.55327374,0.74099493,0.9391565,1.1397705,1.3347507,1.516237,1.6769142,1.8103054,1.9110336,1.9750385,1.9997406,1.9841404,1.92887,1.8361573,1.7097396,1.5547128,1.3773257,1.1847289,0.9846857,0.7852599,0.5944901,0.42005378,0.2690087,0.14742947,0.060216904,0.010886431,0.001426518,0.032218575,0.102021396,0.20802116,0.34594518,0.51023376,0.6942791,0.89063454,1.0913985,1.2884781,1.4739294,1.6402769,1.7808151,1.8898792,1.9630728,1.9974453,1.9916115,1.9458015,1.8618686,1.7431943,1.5945623,1.4219638,1.2323562,1.0333824,0.833063,0.6394728,0.46041518,0.30310792,0.17388344,0.07797015,0.019223332,1.1146069e-5,0.021107852,0.08166325,0.17923617,0.30989373,0.468369,0.64827406,0.8423569,1.0427943,1.2415216,1.4304979,1.6021211,1.7494733,1.8666145,1.948823,1.992785,1.9967283,1.9604942,1.885543,1.7748961,1.6330018,1.4656012,1.2794324,1.0819999,0.88126206,0.6853105,0.5020438,0.33884948,0.20230573,0.0979166,0.02989,0.0009672642,0.012318671,0.06348294,0.15239769,0.27547884,0.427765,0.60311764,0.7944684,0.99410397,1.1939772,1.3860314,1.5625374,1.7163539,1.8412945,1.932323,1.98577,1.9994813,1.972904,1.9071095,1.80475,1.6699514,1.5081475,1.325846,1.130423,0.9297427,0.7318944,0.5448533,0.37615895,0.23261124,0.11999655,0.04285431,0.004294038,0.0058701634,0.047523677,0.12756938,0.24278224,0.3885181,0.5589025,0.7470672,0.9454276,1.1459877,1.3406632,1.5216067,1.6815245,1.8139704,1.9136119,1.9764173,1.999864,1.9830067,1.9265249,1.8326954,1.7053005,1.5494752,1.371501,1.1785518,0.9784052,0.77911425,0.58874226,0.41494793,0.26473665,0.14416349,0.05808854,0.009981573,0.0017816424,0.033819318,0.104803264,0.21187198,0.35072136,0.51573336,0.70026594,0.89688057,1.097652,1.294487,1.4794514,1.6450894,1.7847242,1.8927274,1.964745,1.9978755,1.990778,1.9437429,1.858666,1.7389767,1.5894998,1.4162605,1.226242,1.0271037,0.8268729,0.63362074,0.45512438,0.2986058,0.17036009,0.075556636,0.018016934,6.0498714e-5,0.022410989,0.0841676,0.18284082,0.3144533,0.4736998,0.6541755,0.84857816,1.0490845,1.2476124,1.4361591,1.6071246,1.753617,1.8697317,1.950788,1.9935186,1.996201,1.9587227,1.8826002,1.7709006,1.6281264,1.4600328,1.2733955,1.075738,0.8750273,0.6793542,0.49660623,0.33414972,0.1985333,0.09521705,0.028381169,0.0007107258,0.013321102,0.06570387,0.15574765,0.2798227,0.43292773,0.6088911,0.8006199,1.0003855,1.2001506,1.3918325,1.5677197,1.7207227,1.8446736,1.9345762,1.9868065,1.9992592,1.9714324,1.9044478,1.8010054,1.6652634,1.5027142,1.3199009,1.1241925,0.923478,0.7258481,0.5392691,0.3712619,0.22859877,0.11703038,0.04105401,0.0037308931,0.006571114,0.04945594,0.1306566,0.24690002,0.3935005,0.5645486,0.7531495,0.95170087,1.152199,1.3465623,1.5269687,1.686119,1.8176122,1.916148,1.9777542,1.9999478,1.9818342,1.9241433,1.8292007,1.7008336,1.5442162,1.3656474,1.1723526,0.9721103,0.7729922,0.5830246,0.40986514,0.26049364,0.14093125,0.05599743,0.009115756,0.0021761656,0.035458207,0.10762727,0.21576339,0.3555116,0.5212388,0.7062646,0.9031307,1.1039015,1.3004842,1.4849545,1.6498765,1.7886024,1.8955469,1.9663832,1.998265,1.9899073,1.941647,1.8554295,1.7347301,1.5844142,1.4105408,1.2201188,1.020824,0.8206746,0.62776905,0.44986796,0.2941423,0.16686946,0.0731796,0.016849339,0.00014930964,0.02375269,0.08670807,0.18647772,0.3190512,0.4790644,0.66007626,0.8547903,1.0553576,1.2536935,1.4418031,1.6121039,1.7577312,1.8728147,1.9527156,1.9942147,1.9956329,1.9569176,1.8796296,1.7668843,1.6232263,1.4544463,1.2673479,1.0694729,0.86878985,0.67340344,0.49118197,0.32947063,0.19478798,0.092559755,0.026914418,0.00049364567,0.014362454,0.06796169,0.15913087,0.2842003,0.43811917,0.6146871,0.8067868,1.0066748,1.2063011,1.397604,1.5728797,1.7250628,1.8480194,1.9367925,1.9878052,1.9989974,1.9699208,1.901747,1.7972244,1.6605604,1.4972742,1.313943,1.1179571,0.9172164,0.71981263,0.5336963,0.36638373,0.22461194,0.11409551,0.039289415,0.0032090545,0.007309675,0.051425636,0.13377815,0.25104755,0.39850682,0.5702188,0.759249,0.9579837,1.158412,1.3524548,1.5322905,1.6906751,1.8212128,1.9186478,1.9790525,1.9999923,1.9806213,1.9217222,1.8256689,1.6963334,1.538929,1.3598008,1.1661617,0.9658317,0.7668791,0.57732344,0.40480566,0.2562747,0.13772905,0.05394101,0.008288145,0.0026105642,0.03713721,0.11047977,0.21967632,0.3603273,0.5267631,0.71227485,0.9093846,1.1101546,1.3064768,1.490445,1.6546437,1.792454,1.8983244,1.9679791,1.9986151,1.9889976,1.9395142,1.8521593,1.7304492,1.5792992,1.4047979,1.2139795,1.0145357,0.8144984,0.6219462,0.4446332,0.2897067,0.16341168,0.07083911,0.015719116,0.00027775764,0.025134623,0.08928776,0.19015121,0.32366478,0.48443663,0.6659905,0.8610081,1.0616285,1.2597646,1.4474365,1.6170652,1.7618203,1.8758669,1.9546077,1.994869,1.9950268,1.9550749,1.8766245,1.7628378,1.6183016,1.4488351,1.2612824,1.0631975,0.8625652,0.66747284,0.48578435,0.32481807,0.19107449,0.08993828,0.025486112,0.00031602383,0.015443981,0.070259035,0.16255146,0.28860092,0.44332647,0.6204912,0.8129612,1.0129637,1.2124435,1.4033599,1.578017,1.7293746,1.8513355,1.9389744,1.9887638,1.9986966,1.9683726,1.8990107,1.793412,1.6558313,1.4918145,1.3079729,1.1117171,0.9109504,0.7137809,0.5281487,0.36153656,0.22066051,0.11119568,0.037562847,0.0027253032,0.008087337,0.053432822,0.13693386,0.25522977,0.403543,0.5758991,0.7653505,0.96426046,1.1646186,1.3583335,1.5376041,1.6952041,1.824781,1.9211113,1.9803138,1.9999971,1.9793714,1.9192677,1.8221089,1.6918113,1.5336206,1.3539257,1.1599641,0.9595545,0.7607752,0.571632,0.39976358,0.25209028,0.13456476,0.051924527,0.0075006485,0.0030844212,0.03885424,0.11336732,0.22362006,0.3651682,0.53231287,0.7183038,0.9156497,1.1163958,1.3124499,1.4959095,1.659385,1.7962743,1.9010663,1.9695368,1.9989259,1.9880476,1.9373415,1.8488514,1.7261448,1.5741676,1.3990461,1.2078317,1.0082469,0.8083295,0.61613834,0.4394204,0.28529906,0.1599828,0.06853253,0.014629126,0.00044548512,0.026553333,0.09190345,0.19385672,0.32830513,0.48982912,0.6719179,0.8672314,1.0679045,1.2658327,1.4530454,1.6219959,1.7658744,1.8788844,1.9564621,1.9954855,1.9943814,1.9531944,1.8735846,1.7587562,1.6133463,1.443213,1.2552139,1.0569273,0.8563384,0.6615481,0.48040056,0.32019776,0.18739748,0.08735269,0.024094522,0.00017768145,0.016563118,0.07259035,0.16600096,0.29302955,0.4485621,0.6263174,0.81913567,1.0192444,1.2185775,1.4091067,1.5831378,1.7336627,1.8546143,1.9411167,1.9896833,1.9983559,1.9667842,1.896242,1.7895728,1.6510763,1.4863288,1.3019834,1.105465,0.90469563,0.7077678,0.5226197,0.3567087,0.21673512,0.10833448,0.035876393,0.0022815466,0.008904219,0.055479884,0.1401276,0.25943625,0.40859663,0.58159614,0.77146876,0.97054636,1.1708112,1.3641908,1.5428901,1.6997056,1.8283209,1.9235415,1.9815346,1.9999627,1.9780828,1.9167739,1.818512,1.6872563,1.5282977,1.3480437,1.1537603,0.95327127,0.75467336,0.56596446,0.39475125,0.24793279,0.13143277,0.049944222,0.006751418,0.0035970807,0.040607214,0.11629164,0.22759682,0.37004012,0.53787434,0.7243365,0.92191434,1.1226361,1.3184144,1.5013611,1.6640944,1.8000586,1.9037744,1.9710573,1.9991975,1.9870598,1.9351344,1.845512,1.7218089,1.5690103,1.3932714,1.2016833,1.0019654,0.8021645,0.610342,0.4342265,0.28091437,0.1565913,0.06626415,0.013577461,0.0006528497,0.028012276,0.09455186,0.19758952,0.33297473,0.4952451,0.6778618,0.87346756,1.0741701,1.271883,1.4586397,1.6269053,1.7699032,1.8818636,1.9582766,1.9960625,1.9936965,1.9512751,1.8705065,1.7546495,1.608373,1.4375699,1.2491317,1.050651,0.85012484,0.65564394,0.47504056,0.31560153,0.18375027,0.084800065,0.022743165,7.903576e-5,0.017721772,0.074959695,0.16948545,0.2974915,0.45381314,0.63215125,0.8253209,1.0255282,1.2247102,1.4148304,1.5882292,1.7379192,1.857861,1.943223,1.9905648,1.9979761,1.9651597,1.8934363,1.7857001,1.64629,1.4808304,1.295989,1.0992126,0.8984407,0.70176256,0.51710284,0.35191208,0.21284539,0.10550672,0.034226954,0.0018768907,0.009761214,0.057561696,0.14335328,0.26367456,0.41367668,0.58731663,0.7775886,0.9768258,1.1770009,1.3700373,1.5481578,1.704185,1.8318238,1.9259322,1.9827175,1.9998887,1.976754,1.9142469,1.8148872,1.6826769,1.5229506,1.3421445,1.1475428,0.94699746,0.74858856,0.5603106,0.38975984,0.24380505,0.12833506,0.04800141,0.0060418844,0.0041493773,0.04239905,0.11925089,0.23160416,0.37493098,0.5434574,0.7303838,0.9281783,1.1288717,1.3243665,1.5067894,1.6687806,1.8038135,1.9064467,1.9725394,1.9994295,1.9860325,1.932889,1.8421413,1.7174447,1.5638304,1.3874882,1.195523,0.99568,0.7960073,0.6045612,0.42905504,0.27656072,0.15323097,0.06403333,0.012565017,0.0008996725,0.029508293,0.09723759,0.20135629,0.3376693,0.50068104,0.6838185,0.87970304,1.0804367,1.277928,1.4642143,1.6317898,1.7738978,1.8848088,1.9600544,1.9965999,1.9929723,1.9493183,1.867397,1.7505107,1.6033726,1.4319112,1.2430395,1.0443708,0.84391534,0.64974976,0.4697029,0.31103373,0.18013537,0.08228588,0.021429598,1.9729137e-5,0.018918872,0.07736558,0.17300278,0.30197716,0.45908898,0.638005,0.83151126,1.031811,1.2308285,1.4205413,1.5933005,1.7421453,1.8610741,1.9452922,1.9914063,1.9975567,1.9634954,1.8905962,1.7817965,1.6414824,1.4753115,1.2899795,1.0929582,0.89218986,0.69576913,0.5116101,0.34713817,0.20898438,0.102715135,0.03261566,0.0015116334,0.010656536,0.05968201,0.14661187,0.2679407,0.4187799,0.5930483,0.7837209,0.9831099,1.1831816,1.3758693,1.5534039,1.7086325,1.8352959,1.9282886,1.9838614,1.999775,1.9753877,1.9116827,1.8112279,1.678072,1.5175836,1.3362308,1.1413252,0.940722,0.7425091,0.55467576,0.3847925,0.23970902,0.12527227,0.046096265,0.005371809,0.0047409534,0.044228792,0.12224406,0.23564118,0.37985027,0.5490568,0.73644173,0.9344498,1.1351011,1.3303056,1.5121955,1.6734395,1.8075366,1.9090824,1.9739828,1.9996221,1.9849665,1.9306071,1.8387346,1.7130533,1.5586281,1.3816854,1.1893561,0.9893947,0.78986037,0.59879684,0.42390573,0.272237,0.14990461,0.061839283,0.011591256,0.0011859536,0.031042814,0.09995842,0.20515466,0.34239113,0.50613534,0.6897877,0.88594466,1.0866992,1.2839589,1.4697722,1.636649,1.7778623,1.8877201,1.961794,1.997098,1.992209,1.947324,1.8642524,1.7463429,1.5983481,1.4262341,1.2369386,1.0380921,0.8377101,0.64387,0.46438545,0.30649155,0.17655295,0.07980752,0.020155013,0.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/versinf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..53c5787252a3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[0.0,0.020155013,0.07980752,0.17655295,0.30649155,0.46438545,0.64387,0.8377101,1.0380921,1.2369386,1.4262341,1.5983481,1.7463429,1.8642524,1.947324,1.992209,1.997098,1.961794,1.8877201,1.7778623,1.636649,1.4697722,1.2839589,1.0866992,0.88594466,0.6897877,0.50613534,0.34239113,0.20515466,0.09995842,0.031042814,0.0011859536,0.011591256,0.061839283,0.14990461,0.272237,0.42390573,0.59879684,0.78986037,0.9893947,1.1893561,1.3816854,1.5586281,1.7130533,1.8387346,1.9306071,1.9849665,1.9996221,1.9739828,1.9090824,1.8075366,1.6734395,1.5121955,1.3303056,1.1351011,0.9344498,0.73644173,0.5490568,0.37985027,0.23564118,0.12224406,0.044228792,0.0047409534,0.005371809,0.046096265,0.12527227,0.23970902,0.3847925,0.55467576,0.7425091,0.940722,1.1413252,1.3362308,1.5175836,1.678072,1.8112279,1.9116827,1.9753877,1.999775,1.9838614,1.9282886,1.8352959,1.7086325,1.5534039,1.3758693,1.1831816,0.9831099,0.7837209,0.5930483,0.4187799,0.2679407,0.14661187,0.05968201,0.010656536,0.0015116334,0.03261566,0.102715135,0.20898438,0.34713817,0.5116101,0.69576913,0.89218986,1.0929582,1.2899795,1.4753115,1.6414824,1.7817965,1.8905962,1.9634954,1.9975567,1.9914063,1.9452922,1.8610741,1.7421453,1.5933005,1.4205413,1.2308285,1.031811,0.83151126,0.638005,0.45908898,0.30197716,0.17300278,0.07736558,0.018918872,1.9729137e-5,0.021429598,0.08228588,0.18013537,0.31103373,0.4697029,0.64974976,0.84391534,1.0443708,1.2430395,1.4319112,1.6033726,1.7505107,1.867397,1.9493183,1.9929723,1.9965999,1.9600544,1.8848088,1.7738978,1.6317898,1.4642143,1.277928,1.0804367,0.87970304,0.6838185,0.50068104,0.3376693,0.20135629,0.09723759,0.029508293,0.0008996725,0.012565017,0.06403333,0.15323097,0.27656072,0.42905504,0.6045612,0.7960073,0.99568,1.195523,1.3874882,1.5638304,1.7174447,1.8421413,1.932889,1.9860325,1.9994295,1.9725394,1.9064467,1.8038135,1.6687806,1.5067894,1.3243665,1.1288717,0.9281783,0.7303838,0.5434574,0.37493098,0.23160416,0.11925089,0.04239905,0.0041493773,0.0060418844,0.04800141,0.12833506,0.24380505,0.38975984,0.5603106,0.74858856,0.94699746,1.1475428,1.3421445,1.5229506,1.6826769,1.8148872,1.9142469,1.976754,1.9998887,1.9827175,1.9259322,1.8318238,1.704185,1.5481578,1.3700373,1.1770009,0.9768258,0.7775886,0.58731663,0.41367668,0.26367456,0.14335328,0.057561696,0.009761214,0.0018768907,0.034226954,0.10550672,0.21284539,0.35191208,0.51710284,0.70176256,0.8984407,1.0992126,1.295989,1.4808304,1.64629,1.7857001,1.8934363,1.9651597,1.9979761,1.9905648,1.943223,1.857861,1.7379192,1.5882292,1.4148304,1.2247102,1.0255282,0.8253209,0.63215125,0.45381314,0.2974915,0.16948545,0.074959695,0.017721772,7.903576e-5,0.022743165,0.084800065,0.18375027,0.31560153,0.47504056,0.65564394,0.85012484,1.050651,1.2491317,1.4375699,1.608373,1.7546495,1.8705065,1.9512751,1.9936965,1.9960625,1.9582766,1.8818636,1.7699032,1.6269053,1.4586397,1.271883,1.0741701,0.87346756,0.6778618,0.4952451,0.33297473,0.19758952,0.09455186,0.028012276,0.0006528497,0.013577461,0.06626415,0.1565913,0.28091437,0.4342265,0.610342,0.8021645,1.0019654,1.2016833,1.3932714,1.5690103,1.7218089,1.845512,1.9351344,1.9870598,1.9991975,1.9710573,1.9037744,1.8000586,1.6640944,1.5013611,1.3184144,1.1226361,0.92191434,0.7243365,0.53787434,0.37004012,0.22759682,0.11629164,0.040607214,0.0035970807,0.006751418,0.049944222,0.13143277,0.24793279,0.39475125,0.56596446,0.75467336,0.95327127,1.1537603,1.3480437,1.5282977,1.6872563,1.818512,1.9167739,1.9780828,1.9999627,1.9815346,1.9235415,1.8283209,1.6997056,1.5428901,1.3641908,1.1708112,0.97054636,0.77146876,0.58159614,0.40859663,0.25943625,0.1401276,0.055479884,0.008904219,0.0022815466,0.035876393,0.10833448,0.21673512,0.3567087,0.5226197,0.7077678,0.90469563,1.105465,1.3019834,1.4863288,1.6510763,1.7895728,1.896242,1.9667842,1.9983559,1.9896833,1.9411167,1.8546143,1.7336627,1.5831378,1.4091067,1.2185775,1.0192444,0.81913567,0.6263174,0.4485621,0.29302955,0.16600096,0.07259035,0.016563118,0.00017768145,0.024094522,0.08735269,0.18739748,0.32019776,0.48040056,0.6615481,0.8563384,1.0569273,1.2552139,1.443213,1.6133463,1.7587562,1.8735846,1.9531944,1.9943814,1.9954855,1.9564621,1.8788844,1.7658744,1.6219959,1.4530454,1.2658327,1.0679045,0.8672314,0.6719179,0.48982912,0.32830513,0.19385672,0.09190345,0.026553333,0.00044548512,0.014629126,0.06853253,0.1599828,0.28529906,0.4394204,0.61613834,0.8083295,1.0082469,1.2078317,1.3990461,1.5741676,1.7261448,1.8488514,1.9373415,1.9880476,1.9989259,1.9695368,1.9010663,1.7962743,1.659385,1.4959095,1.3124499,1.1163958,0.9156497,0.7183038,0.53231287,0.3651682,0.22362006,0.11336732,0.03885424,0.0030844212,0.0075006485,0.051924527,0.13456476,0.25209028,0.39976358,0.571632,0.7607752,0.9595545,1.1599641,1.3539257,1.5336206,1.6918113,1.8221089,1.9192677,1.9793714,1.9999971,1.9803138,1.9211113,1.824781,1.6952041,1.5376041,1.3583335,1.1646186,0.96426046,0.7653505,0.5758991,0.403543,0.25522977,0.13693386,0.053432822,0.008087337,0.0027253032,0.037562847,0.11119568,0.22066051,0.36153656,0.5281487,0.7137809,0.9109504,1.1117171,1.3079729,1.4918145,1.6558313,1.793412,1.8990107,1.9683726,1.9986966,1.9887638,1.9389744,1.8513355,1.7293746,1.578017,1.4033599,1.2124435,1.0129637,0.8129612,0.6204912,0.44332647,0.28860092,0.16255146,0.070259035,0.015443981,0.00031602383,0.025486112,0.08993828,0.19107449,0.32481807,0.48578435,0.66747284,0.8625652,1.0631975,1.2612824,1.4488351,1.6183016,1.7628378,1.8766245,1.9550749,1.9950268,1.994869,1.9546077,1.8758669,1.7618203,1.6170652,1.4474365,1.2597646,1.0616285,0.8610081,0.6659905,0.48443663,0.32366478,0.19015121,0.08928776,0.025134623,0.00027775764,0.015719116,0.07083911,0.16341168,0.2897067,0.4446332,0.6219462,0.8144984,1.0145357,1.2139795,1.4047979,1.5792992,1.7304492,1.8521593,1.9395142,1.9889976,1.9986151,1.9679791,1.8983244,1.792454,1.6546437,1.490445,1.3064768,1.1101546,0.9093846,0.71227485,0.5267631,0.3603273,0.21967632,0.11047977,0.03713721,0.0026105642,0.008288145,0.05394101,0.13772905,0.2562747,0.40480566,0.57732344,0.7668791,0.9658317,1.1661617,1.3598008,1.538929,1.6963334,1.8256689,1.9217222,1.9806213,1.9999923,1.9790525,1.9186478,1.8212128,1.6906751,1.5322905,1.3524548,1.158412,0.9579837,0.759249,0.5702188,0.39850682,0.25104755,0.13377815,0.051425636,0.007309675,0.0032090545,0.039289415,0.11409551,0.22461194,0.36638373,0.5336963,0.71981263,0.9172164,1.1179571,1.313943,1.4972742,1.6605604,1.7972244,1.901747,1.9699208,1.9989974,1.9878052,1.9367925,1.8480194,1.7250628,1.5728797,1.397604,1.2063011,1.0066748,0.8067868,0.6146871,0.43811917,0.2842003,0.15913087,0.06796169,0.014362454,0.00049364567,0.026914418,0.092559755,0.19478798,0.32947063,0.49118197,0.67340344,0.86878985,1.0694729,1.2673479,1.4544463,1.6232263,1.7668843,1.8796296,1.9569176,1.9956329,1.9942147,1.9527156,1.8728147,1.7577312,1.6121039,1.4418031,1.2536935,1.0553576,0.8547903,0.66007626,0.4790644,0.3190512,0.18647772,0.08670807,0.02375269,0.00014930964,0.016849339,0.0731796,0.16686946,0.2941423,0.44986796,0.62776905,0.8206746,1.020824,1.2201188,1.4105408,1.5844142,1.7347301,1.8554295,1.941647,1.9899073,1.998265,1.9663832,1.8955469,1.7886024,1.6498765,1.4849545,1.3004842,1.1039015,0.9031307,0.7062646,0.5212388,0.3555116,0.21576339,0.10762727,0.035458207,0.0021761656,0.009115756,0.05599743,0.14093125,0.26049364,0.40986514,0.5830246,0.7729922,0.9721103,1.1723526,1.3656474,1.5442162,1.7008336,1.8292007,1.9241433,1.9818342,1.9999478,1.9777542,1.916148,1.8176122,1.686119,1.5269687,1.3465623,1.152199,0.95170087,0.7531495,0.5645486,0.3935005,0.24690002,0.1306566,0.04945594,0.006571114,0.0037308931,0.04105401,0.11703038,0.22859877,0.3712619,0.5392691,0.7258481,0.923478,1.1241925,1.3199009,1.5027142,1.6652634,1.8010054,1.9044478,1.9714324,1.9992592,1.9868065,1.9345762,1.8446736,1.7207227,1.5677197,1.3918325,1.2001506,1.0003855,0.8006199,0.6088911,0.43292773,0.2798227,0.15574765,0.06570387,0.013321102,0.0007107258,0.028381169,0.09521705,0.1985333,0.33414972,0.49660623,0.6793542,0.8750273,1.075738,1.2733955,1.4600328,1.6281264,1.7709006,1.8826002,1.9587227,1.996201,1.9935186,1.950788,1.8697317,1.753617,1.6071246,1.4361591,1.2476124,1.0490845,0.84857816,0.6541755,0.4736998,0.3144533,0.18284082,0.0841676,0.022410989,6.0498714e-5,0.018016934,0.075556636,0.17036009,0.2986058,0.45512438,0.63362074,0.8268729,1.0271037,1.226242,1.4162605,1.5894998,1.7389767,1.858666,1.9437429,1.990778,1.9978755,1.964745,1.8927274,1.7847242,1.6450894,1.4794514,1.294487,1.097652,0.89688057,0.70026594,0.51573336,0.35072136,0.21187198,0.104803264,0.033819318,0.0017816424,0.009981573,0.05808854,0.14416349,0.26473665,0.41494793,0.58874226,0.77911425,0.9784052,1.1785518,1.371501,1.5494752,1.7053005,1.8326954,1.9265249,1.9830067,1.999864,1.9764173,1.9136119,1.8139704,1.6815245,1.5216067,1.3406632,1.1459877,0.9454276,0.7470672,0.5589025,0.3885181,0.24278224,0.12756938,0.047523677,0.0058701634,0.004294038,0.04285431,0.11999655,0.23261124,0.37615895,0.5448533,0.7318944,0.9297427,1.130423,1.325846,1.5081475,1.6699514,1.80475,1.9071095,1.972904,1.9994813,1.98577,1.932323,1.8412945,1.7163539,1.5625374,1.3860314,1.1939772,0.99410397,0.7944684,0.60311764,0.427765,0.27547884,0.15239769,0.06348294,0.012318671,0.0009672642,0.02989,0.0979166,0.20230573,0.33884948,0.5020438,0.6853105,0.88126206,1.0819999,1.2794324,1.4656012,1.6330018,1.7748961,1.885543,1.9604942,1.9967283,1.992785,1.948823,1.8666145,1.7494733,1.6021211,1.4304979,1.2415216,1.0427943,0.8423569,0.64827406,0.468369,0.30989373,0.17923617,0.08166325,0.021107852,1.1146069e-5,0.019223332,0.07797015,0.17388344,0.30310792,0.46041518,0.6394728,0.833063,1.0333824,1.2323562,1.4219638,1.5945623,1.7431943,1.8618686,1.9458015,1.9916115,1.9974453,1.9630728,1.8898792,1.7808151,1.6402769,1.4739294,1.2884781,1.0913985,0.89063454,0.6942791,0.51023376,0.34594518,0.20802116,0.102021396,0.032218575,0.001426518,0.010886431,0.060216904,0.14742947,0.2690087,0.42005378,0.5944901,0.7852599,0.9846857,1.1847289,1.3773257,1.5547128,1.7097396,1.8361573,1.92887,1.9841404,1.9997406,1.9750385,1.9110336,1.8103054,1.6769142,1.516237,1.3347507,1.1397705,0.9391565,0.74099493,0.55327374,0.38355982,0.23868442,0.124509156,0.045624495,0.0052101016,0.0048952103,0.044692397,0.12299746,0.23665404,0.38108063,0.5504555,0.7379513,0.9360253,1.1366634,1.3317927,1.5135477,1.6746017,1.808463,1.9097356,1.9743372,1.9996638,1.9846947,1.930033,1.8378823,1.7119461,1.5573204,1.3802291,1.1878111,0.98782265,0.78832495,0.59735984,0.4226249,0.27116358,0.14908123,0.061298966,0.011352897,0.0012639165,0.031433463,0.100645304,0.20610964,0.34357524,0.507501,0.69127905,0.88750154,1.0882587,1.2854582,1.4711646,1.6378639,1.7788513,1.8884437,1.9622233,1.9972163,1.9920121,1.9468205,1.863463,1.7452998,1.597094,1.4248059,1.2354064,1.0365177,0.8361571,0.6424008,0.4630592,0.30536133,0.17566395,0.07919508,0.0198434,1.2516975e-6,0.020471513,0.08042604,0.17744803,0.30762666,0.46571445,0.645339,0.83925974,1.0396597,1.2384613,1.4276505,1.5996013,1.7473927,1.8650448,1.9478276,1.9924039,1.996977,1.9613626,1.886996,1.7768753,1.6354392,1.4683888,1.282458,1.0851414,0.88437766,0.6882898,0.5047668,0.34120643,0.20420164,0.09927499,0.03065604,0.0011108518,0.01183027,0.06238228,0.15072912,0.27332008,0.42519504,0.60024,0.7913991,0.99096686,1.1908987,1.3831354,1.5599283,1.7141507,1.8395861,1.9311783,1.9852378,1.9995774,1.9736246,1.9084256,1.8066084,1.6722772,1.5108471,1.3288248,1.1335479,0.93288773,0.73493284,0.547649,0.37861395,0.23462659,0.121490955,0.04376757,0.004589379,0.0055356026,0.046568155,0.12603295,0.24072689,0.38602668,0.5560891,0.7440332,0.9422953,1.1428833,1.3377118,1.5189273,1.6792253,1.812144,1.9123256,1.9757318,1.999807,1.9835777,1.9277006,1.8344285,1.707521,1.5520937,1.3744118,1.1816376,0.9815418,0.78218997,0.5916179,0.41750747,0.26686662,0.1457904,0.05914688,0.010428607,0.0015993714,0.033015132,0.10340947,0.2099449,0.34832698,0.5129776,0.6972599,0.8937454,1.0945292,1.2914875,1.4766959,1.642689,1.7827759,1.8913093,1.9639146,1.997665,1.9912002,1.9447806,1.8602774,1.7410867,1.5920311,1.419111,1.2292967,1.0302396,0.8299636,0.63654166,0.45777053,0.3008563,0.1721242,0.07676333,0.01861465,3.0875206e-5,0.021755338,0.082912326,0.18103653,0.3121727,0.47103482,0.65121925,0.8454628,1.0459356,1.2445569,1.4333339,1.6046287,1.7515512,1.8681791,1.9498112,1.9931571,1.9964693,1.9596143,1.8840779,1.7729048,1.6305764,1.4628161,1.276412,1.0788658,0.8781405,0.6823274,0.49931943,0.33649367,0.20041347,0.096564114,0.02913177,0.00083452463,0.012815595,0.06459004,0.15407038,0.2776497,0.4303465,0.60600567,0.7975466,0.9972483,1.197061,1.3889301,1.5651218,1.7185336,1.8429902,1.9334555,1.9862938,1.9993751,1.9721723,1.9057816,1.8028796,1.6676137,1.5054369,1.3228861,1.1273199,0.9266064,0.72886646,0.5420558,0.37370455,0.23059893,0.118507445,0.041948438,0.004007876,0.0062152743,0.048481524,0.12910295,0.24483973,0.39100915,0.56172657,0.7501106,0.9485675,1.1490977,1.3436177,1.5242867,1.6838222,1.815793,1.9148797,1.9770913,1.9999108,1.9824245,1.9253373,1.8309501,1.7030679,1.5468454,1.3685799,1.175457,0.9752617,0.7760635,0.5858782,0.41240078,0.26260912,0.14254129,0.057037175,0.0095433,0.0019741654,0.034634948,0.10620904,0.21381128,0.3531044,0.51848686,0.7032672,0.9000087,1.1007807,1.2974904,1.4822085,1.6474888,1.7866694,1.8941398,1.9655678,1.9980743,1.990347,1.9426985,1.8570502,1.7368547,1.586957,1.4133995,1.223178,1.0239604,0.8237769,0.6306969,0.45250326,0.2963789,0.16861713,0.07436794,0.017430484,9.9778175e-5,0.023074508,0.08544093,0.18466616,0.31675702,0.47638905,0.6571275,0.851687,1.0522249,1.2506576,1.4389865,1.6096201,1.7556801,1.8712792,1.9517576,1.9938711,1.9959222,1.9578283,1.8811247,1.7689037,1.6256886,1.4572523,1.2703843,1.0726174,0.87189305,0.67636305,0.49387866,0.33179575,0.19664776,0.09388244,0.02764219,0.00059717894,0.013837457,0.06682944,0.15743703,0.2820078,0.43552047,0.61178696,0.8037021,1.0035299,1.2032154,1.3947095,1.570293,1.7228882,1.8463444,1.9356848,1.9873083,1.9991328,1.9706779,1.9030955,1.7991098,1.6629125,1.4999936,1.3169202,1.1210719,0.9203433,0.7228256,0.53648067,0.3688199,0.22660166,0.115558684,0.040167034,0.003465712,0.0069341063,0.050432444,0.13220727,0.2489624,0.39599138,0.5673676,0.7562126,0.954857,1.1553211,1.3495243,1.5296384,1.688403,1.8194185,1.9174037,1.9784089,1.999975,1.9812326,1.9229374,1.8274391,1.6985871,1.5415754,1.3627332,1.1692694,0.9689825,0.76994586,0.58018255,0.4073419,0.2583909,0.13931823,0.054959655,0.008695066,0.002389431,0.036296964,0.10905075,0.21771824,0.35791904,0.5240017,0.70927167,0.9062607,1.1070284,1.3034817,1.4877019,1.6522632,1.7905319,1.896935,1.9671829,1.9984443,1.989459,1.9405892,1.8538047,1.7326039,1.5818474,1.4076577,1.2170355,1.0176649,0.81758213,0.62485254,0.44724488,0.29191852,0.16513449,0.072003424,0.0162794,0.00020855665,0.024438798,0.087993324,0.18831033,0.32134604,0.48173797,0.66302073,0.8578869,1.0584816,1.2567189,1.4446081,1.6145995,1.7597892,1.8743525,1.9536709,1.9945474,1.9953344,1.956,1.8781297,1.7648625,1.6207643,1.4516432,1.2643168,1.0663358,0.86568093,0.6704403,0.48848414,0.3271469,0.19293189,0.09124941,0.026198149,0.0004002452,0.014895678,0.06911123,0.16084516,0.2864049,0.44072932,0.6175976,0.80988026,1.0098267,1.2093768,1.4004872,1.5754541,1.7272248,1.8496815,1.937888,1.9882888,1.9988523,1.9691525,1.9003867,1.795327,1.6582079,1.4945569,1.3109707,1.1148493,0.91409844,0.716781,0.5309103,0.3639484,0.22262532,0.11263782,0.038419366,0.0029616952,0.0076940656,0.052425683,0.13535357,0.2531348,0.40102178,0.57305324,0.76229465,0.9611178,1.1615083,1.3553885,1.5349432,1.6929346,1.8229942,1.9198794,1.9796848,1.9999998,1.9799991,1.9204952,1.8238866,1.6940677,1.5362713,1.3568581,1.1630602,0.96268934,0.76382256,0.5744759,0.40228188,0.2541815,0.1361447,0.0529294,0.007889986,0.0028419495,0.03798884,0.1119138,0.22163701,0.36273563,0.52952194,0.7153023,0.9125317,1.1132869,1.3094755,1.4931895,1.6570232,1.7943726,1.8997014,1.9687636,1.9987756,1.9885275,1.9384325,1.8505096,1.7283034,1.5767395,1.4019277,1.2109144,1.0113991,0.8114245,0.6190512,0.44203377,0.2875076,0.16170156,0.069675684,0.015167356,0.00035697222,0.025841713,0.09059417,0.19200432,0.32598424,0.48713338,0.6689559,0.8641226,1.0647665,1.2627996,1.4502394,1.6195304,1.7638485,1.8773762,1.9555373,1.9951813,1.9947102,1.9541428,1.8751144,1.7608109,1.6158152,1.4460162,1.2582386,1.0600516,0.8594438,0.66450185,0.4830836,0.32250196,0.1892299,0.0886395,0.024785578,0.00024193525,0.015998006,0.07141864,0.1642698,0.29080886,0.44593495,0.62339514,0.81603605,1.0160924,1.2155001,1.4062212,1.5805924,1.7315326,1.8529849,1.9400539,1.98923,1.9985309,1.9675813,1.8976291,1.7914941,1.6534543,1.4890742,1.3049798,1.1085919,0.9078266,0.7107768,0.52538544,0.3591255,0.21869886,0.10976601,0.03671801,0.002499342,0.00848937,0.054456532,0.13853407,0.25733685,0.4060759,0.57875574,0.7684157,0.9674106,1.1677192,1.3612672,1.5402527,1.6974609,1.8265548,1.9223309,1.9809282,1.999985,1.9787328,1.9180285,1.8203189,1.6895429,1.5309718,1.3509974,1.1568745,0.9564282,0.75770855,0.568786,0.39724553,0.25000167,0.13298988,0.050926745,0.0071202517,0.0033361316,0.039726973,0.114825904,0.22560567,0.36760086,0.5350877,0.7213149,0.9187757,1.1195107,1.3154281,1.498631,1.6617341,1.7981633,1.902419,1.9702985,1.9990673,1.9875569,1.9362385,1.847181,1.723974,1.5715841,1.3961539,1.2047551,1.0051025,0.80524445,0.6132368,0.43681931,0.28310335,0.15828508,0.067395866,0.014099419,0.0005440712,0.027276158,0.09321827,0.19571221,0.3306265,0.4925229,0.6749042,0.8703637,1.0710489,1.2688699,1.455853,1.6244609,1.7678972,1.88038,1.9573752,1.995779,1.9940437,1.952239,1.87205,1.7567093,1.610866,1.4403989,1.2521797,1.0537953,0.8532425,0.65860534,0.47772956,0.31790626,0.18557775,0.08606577,0.023411632,0.0001232624,0.017139316,0.07377398,0.16774422,0.29526228,0.4511879,0.6292358,0.822229,1.0223881,1.2216446,1.4119669,1.5856831,1.7357905,1.8562388,1.9421725,1.9901278,1.9981716,1.9659797,1.8948497,1.7876487,1.648675,1.4835722,1.298977,1.1023301,0.90155846,0.7047548,0.5198524,0.3543045,0.21478415,0.106915414,0.03504646,0.002074182,0.009327769,0.0565148,0.14173311,0.26154774,0.41112894,0.5844472,0.77451617,0.97367424,1.1738935,1.3671032,1.5455408,1.7019596,1.8300827,1.9247457,1.9821327,1.9999305,1.9774216,1.9155135,1.8167015,1.6849687,1.5256253,1.3450942,1.1506525,0.9501382,0.7516337,0.56314075,0.39225727,0.24587166,0.12988448,0.048971176,0.006393254,0.0038671494,0.04149455,0.117773116,0.22960502,0.37249118,0.5406718,0.72736776,0.9250533,1.12576,1.3213973,1.5040792,1.666442,1.8019409,1.9051142,1.9718026,1.9993184,1.986552,1.9340184,1.8438351,1.7196372,1.566431,1.3903925,1.1986175,0.9988363,0.799072,0.6074376,0.4316272,0.27872753,0.15490198,0.06514186,0.0130652785,0.0007715225,0.028756142,0.095891,0.19946998,0.33531785,0.49795872,0.68083656,0.8765797,1.0772979,1.2749002,1.4614215,1.629343,1.7718961,1.8833346,1.9591664,1.9963373,1.9933378,1.9502974,1.868951,1.7525778,1.6058685,1.434737,1.2460815,1.0475066,0.84701675,0.65269357,0.47237015,0.31331515,0.18194002,0.08354044,0.022082806,4.452467e-5,0.018313825,0.07615435,0.17123455,0.29972184,0.45643693,0.63506275,0.8284291,1.0286828,1.2277805,1.4176965,1.5907753,1.7400403,1.8594747,1.9442642,1.9909909,1.9977713,1.9643321,1.8920212,1.7837535,1.6438932,1.4780779,1.2929914,1.0960947,0.8953245,0.6987737,0.51436514,0.34953225,0.21091932,0.10410029,0.03341317,0.0016885996,0.010205448,0.058620334,0.14498168,0.26580834,0.41622984,0.59018284,0.78065526,0.9799694,1.1800909,1.3729532,1.5507817,1.7064087,1.8335607,1.9271123,1.9832926,1.9998369,1.9760784,1.9129746,1.8130695,1.6803675,1.5202582,1.3391774,1.1444247,0.94385016,0.74553907,0.5574852,0.38726884,0.24175131,0.12679833,0.04704362,0.0057020783,0.004440129,0.043308556,0.12074077,0.23361534,0.37738252,0.546247,0.733402,0.93130344,1.131974,1.3273247,1.5095075,1.6711235,1.8056867,1.9077734,1.973268,1.999531,1.9855032,1.9317505,1.8404394,1.7152507,1.5612307,1.3845876,1.1924422,0.99253947,0.7929375,0.60168207,0.42648262,0.27440137,0.15156853,0.06293553,0.012075067,0.00103724,0.03026712,0.09859955,0.20325947,0.34003556,0.5034144,0.6868104,0.88283086,1.0835743,1.280949,1.4669987,1.6342239,1.7758842,1.8862687,1.9609284,1.9968536,1.9925961,1.9483278,1.8658328,1.7484366,1.6008713,1.4290853,1.2400031,1.0412464,0.84079707,0.64679563,0.4670316,0.30875123,0.17833471,0.08103907,0.020786226,4.9471855e-6,0.01953286,0.07858288,0.17477465,0.3042308,0.46173304,0.64093256,0.8346058,1.0349461,1.2338777,1.4233817,1.5958195,1.7442402,1.8626609,1.9463084,1.9918145,1.9973313,1.9626462,1.8891574,1.7798272,1.6390626,1.4725378,1.2869651,1.0898252,0.8890644,0.6927753,0.50887036,0.3447625,0.2070669,0.101334035,0.03182584,0.001344204,0.011117816,0.06075275,0.1482482,0.27007723,0.42132908,0.5959068,0.7868031,0.98626536,1.1862812,1.3787882,1.5560265,1.7108517,1.8370228,1.9294538,1.9844193,1.9997034,1.97469,1.9103874,1.8093876,1.6757617,1.5148964,1.3332759,1.1382211,0.9375949,0.7394841,0.5518745,0.3823287,0.2376808,0.12374681,0.045153916,0.0050503016,0.0050525665,0.04516059,0.1237576,0.23767549,0.38232225,0.55186725,0.7394762,0.9375868,1.1382132,1.3332682,1.5148895,1.6757557,1.8093828,1.9103839,1.9746882,1.9997032,1.9844208,1.929457,1.8370272,1.7108359,1.5560079,1.3787675,1.1862593,0.98624295,0.78678125,0.59591424,0.4213357,0.27008277,0.14825243,0.06075555,0.011119068,0.0013437867,0.031823814,0.10133046,0.20706195,0.34475636,0.5088632,0.69276756,0.88905627,1.089817,1.2869574,1.4725306,1.6390798,1.7798412,1.8891677,1.9626522,1.9973329,1.9918116,1.946311,1.862665,1.7442455,1.595826,1.4233891,1.2338855,1.0349542,0.83461386,0.6409401,0.46173996,0.3042367,0.17477924,0.07858604,0.019534469,4.887581e-6,0.020784557,0.08104789,0.17834747,0.30876744,0.46705055,0.64681655,0.8408192,1.0412383,1.2399951,1.4290779,1.6008648,1.7484312,1.8658288,1.9483252,1.9925952,1.9968542,1.9609306,1.8862724,1.7758892,1.6342304,1.467006,1.2809567,1.0835824,0.8828086,0.68678916,0.50339496,0.34001875,0.20324594,0.09858984,0.030269086,0.0010376573,0.012073815,0.06293267,0.15156424,0.27439576,0.42647594,0.6016746,0.79292953,0.9925313,1.1924342,1.3845801,1.5612239,1.715245,1.840435,1.9317476,1.9855019,1.9995303,1.973263,1.907764,1.8056736,1.6711068,1.5094882,1.3273325,1.1319821,0.93131155,0.7334099,0.5462543,0.37738883,0.23362058,0.120744646,0.04331094,0.004440844,0.0057011843,0.047041178,0.1267944,0.24174601,0.3872624,0.55747795,0.74556077,0.9438725,1.1444467,1.3391985,1.5202773,1.6803839,1.8130648,1.9129714,1.9760766,1.9998368,1.9832941,1.9271154,1.8335652,1.7064145,1.5507885,1.3729607,1.1800989,0.97997755,0.78066325,0.5901903,0.41623646,0.2658139,0.14497006,0.058612764,0.010202289,0.0016899109,0.033418894,0.10411024,0.21091437,0.34952605,0.51435804,0.69876593,0.8953164,1.0960866,1.2929837,1.4780707,1.6438869,1.7837484,1.8920176,1.96433,1.9977707,1.9909918,1.9442668,1.8594787,1.7400252,1.5907571,1.4176761,1.2277586,1.0286605,0.82840705,0.6350703,0.4564438,0.29972768,0.17123914,0.07615745,0.018315375,4.440546e-5,0.022081137,0.08353716,0.18193537,0.3133092,0.47236323,0.65268594,0.8470087,1.0474985,1.2460736,1.4347296,1.6058862,1.7525924,1.868962,1.9503043,1.9933403,1.9963354,1.9591687,1.8833385,1.7719014,1.6293494,1.4614286,1.2749081,1.077306,0.8765878,0.6808443,0.49796575,0.33532393,0.19947481,0.095894456,0.028758049,0.00077188015,0.013063967,0.065149784,0.15491396,0.2787431,0.43164563,0.60745823,0.79909396,0.9988281,1.1986095,1.390385,1.5664244,1.7196314,1.8438306,1.9340155,1.9865507,1.9993186,1.9718045,1.9051175,1.8019458,1.6664481,1.5040863,1.3214049,1.125768,0.925031,0.7273462,0.5406519,0.37247378,0.22959077,0.117762566,0.041496813,0.0038678646,0.0063923597,0.048968613,0.12988043,0.2458663,0.39225084,0.5631334,0.75162584,0.95013005,1.1506445,1.3450866,1.5256184,1.6849629,1.8166969,1.9155102,1.9774199,1.9999307,1.9821284,1.9247372,1.8300703,1.7019436,1.545522,1.3671107,1.1739016,0.9736824,0.7745241,0.5844546,0.4111355,0.26155323,0.14173728,0.05651748,0.009328902,0.0020736456,0.035044312,0.10691178,0.21477914,0.3542983,0.51984525,0.7047762,0.9015807,1.1023524,1.2989984,1.4835918,1.648692,1.7876437,1.894846,1.9659777,1.9981711,1.990129,1.9421753,1.856243,1.7357961,1.5856895,1.4119743,1.2216526,1.0223962,0.822237,0.6292434,0.4511947,0.29526806,0.16773182,0.07376552,0.017135203,0.00012362003,0.02341646,0.08607483,0.18557304,0.3179003,0.47772264,0.6585977,0.8532344,1.0537872,1.2521719,1.4403917,1.6108595,1.7567039,1.872046,1.9522364,1.9940429,1.9957798,1.9573776,1.880384,1.7679025,1.6244435,1.4558331,1.2688484,1.0710264,0.87034154,0.6748831,0.49252993,0.33063257,0.19571704,0.093221664,0.027278066,0.0005443096,0.014098048,0.067392945,0.15828073,0.28309768,0.43681258,0.6132293,0.80523646,1.0050944,1.2047471,1.3961465,1.5716025,1.7239895,1.8471929,1.9362464,1.9875604,1.9990664,1.9703006,1.9024224,1.7981682,1.6617403,1.4986379,1.3154359,1.1195186,0.9187838,0.72132266,0.53509486,0.36760718,0.22561085,0.11482966,0.039729238,0.0033367872,0.0071192384,0.05093378,0.13300103,0.2500165,0.39726335,0.56880623,0.75773025,0.95642,1.1568666,1.3509898,1.5309649,1.689537,1.8203144,1.9180253,1.9787312,1.9999849,1.9809299,1.922334,1.8265594,1.6974667,1.5402596,1.3612748,1.1677272,0.9674188,0.7683939,0.5787355,0.4060579,0.25732183,0.13852274,0.05444926,0.008490443,0.002498746,0.036715806,0.10976231,0.2186938,0.35911924,0.5253783,0.71076906,0.9078185,1.1085838,1.3049722,1.4890672,1.6534482,1.7914891,1.8976256,1.9675792,1.998532,1.9892268,1.9400463,1.8529732,1.7315173,1.5805743,1.4062285,1.215508,1.0161005,0.81604403,0.6234027,0.44594175,0.29081458,0.16427428,0.07142162,0.015999436,0.00024175644,0.02478373,0.08863616,0.18922514,0.322496,0.48307663,0.6645229,0.85946596,1.0600739,1.2582603,1.4460362,1.6158328,1.7608056,1.8751106,1.9541404,1.9947094,1.9951823,1.9555397,1.8773801,1.7638538,1.6195369,1.4502468,1.2628075,1.0647746,0.8641307,0.6689636,0.48714042,0.32599026,0.19199109,0.090584874,0.025836647,0.00035637617,0.01517123,0.06968391,0.16169715,0.28750187,0.44202697,0.6190437,0.8114165,1.011391,1.2109064,1.4019203,1.5767329,1.7282978,1.8505054,1.9384296,1.9885263,1.998776,1.9687657,1.8997049,1.7943776,1.6570063,1.49317,1.3094542,1.1132647,0.9125094,0.71528083,0.52952915,0.3627419,0.22164214,0.111917555,0.037991047,0.002842605,0.007888973,0.05292678,0.13614058,0.25417608,0.40227532,0.5744685,0.7638146,0.96268123,1.1630521,1.3568505,1.5362902,1.6940838,1.8238993,1.9205039,1.9800035,1.9999998,1.9796865,1.9198827,1.8229989,1.6929405,1.53495,1.3553962,1.1615163,0.96112597,0.7623025,0.5730606,0.40102828,0.2531402,0.13535762,0.052428305,0.007695079,0.0029610395,0.038425505,0.11264813,0.22263938,0.36396563,0.53093004,0.7168025,0.91409034,1.1148412,1.3109629,1.4945499,1.6582017,1.795322,1.9003832,1.9691504,1.9988518,1.9882901,1.9378908,1.8496858,1.7272303,1.5754607,1.4004946,1.2093848,1.0098348,0.80988824,0.6176051,0.44073606,0.28641063,0.16084957,0.06911421,0.014902353,0.0003991723,0.026189327,0.09123325,0.19290906,0.3271634,0.4885034,0.6704615,0.8657031,1.0663581,1.2643383,1.4516631,1.6207817,1.764877,1.8781404,1.9560065,1.9953365,1.9945451,1.9536641,1.8743415,1.7597747,1.6145818,1.4446154,1.2567267,1.0584897,0.85789496,0.66302836,0.48174495,0.321352,0.18831503,0.08799666,0.024440587,0.00020873547,0.01627791,0.072000384,0.16513002,0.29191273,0.4472381,0.62484497,0.8175741,1.0176567,1.2170277,1.4076502,1.5818408,1.7325776,1.8537846,1.9405761,1.9894534,1.9984465,1.9671772,1.896925,1.7905183,1.6522461,1.4876823,1.3034604,1.1070061,0.90623844,0.70925033,0.52398205,0.35790187,0.2177043,0.10904056,0.036290944,0.0023878813,0.008698046,0.054966986,0.13932967,0.25838548,0.40733534,0.5801752,0.769938,0.9689744,1.1692615,1.3627257,1.5415686,1.6985812,1.8274345,1.9229343,1.9812311,1.9999751,1.9784106,1.917407,1.8194232,1.6884089,1.5296452,1.3495319,1.1553291,0.95486516,0.75622046,0.5674025,0.3960222,0.24898791,0.13222653,0.050444543,0.0069314837,0.0034675598,0.04017335,0.115569115,0.22661585,0.36883724,0.53650045,0.7228471,0.9203656,1.1210941,1.3169414,1.5000129,1.6629293,1.7991233,1.903105,1.9706832,1.9991336,1.9873097,1.9356877,1.8463488,1.722894,1.5702996,1.394717,1.2032233,1.003538,0.8037101,0.6117945,0.43552715,0.28201348,0.15744138,0.06683236,0.013838828,0.0005968809,0.027640283,0.093878984,0.19664288,0.33178967,0.49387163,0.67635536,0.871885,1.0725789,1.2703471,1.4572179,1.6256584,1.7688789,1.8811355,1.9578347,1.9959242,1.9938686,1.9517508,1.8712683,1.7556655,1.6096022,1.4389664,1.250636,1.0522026,0.8516649,0.6571065,0.47636998,0.3167407,0.18465322,0.085431874,0.023076296,9.9897385e-5,0.017428935,0.0743649,0.1686126,0.29637313,0.4524964,0.63068926,0.82376885,1.0239522,1.22317,1.4133921,1.5869504,1.7368492,1.8570459,1.9426956,1.990346,1.9980758,1.9655739,1.8941503,1.7866838,1.6475067,1.4822289,1.2975128,1.1008041,0.900032,0.7032895,0.51845384,0.3530873,0.21379745,0.10619897,0.034629107,0.0019727945,0.009546399,0.057044625,0.1425528,0.26262426,0.41241884,0.5858985,0.7760704,0.9752688,1.175464,1.3685864,1.5468514,1.703073,1.8309541,1.9253399,1.9824259,1.9999108,1.9770899,1.9148829,1.8157977,1.6838281,1.5242937,1.3436253,1.1491057,0.9485756,0.7501185,0.5617339,0.3910156,0.24484509,0.12911445,0.048488736,0.0062178373,0.0040057898,0.041941702,0.11849642,0.23058403,0.3736863,0.542035,0.728844,0.9265831,1.1273422,1.3229072,1.5054562,1.6676304,1.8028929,1.905791,1.9721775,1.9993758,1.98629,1.9334474,1.842978,1.7185287,1.5651159,1.3889235,1.1970539,0.9972412,0.79753965,0.6059992,0.43034065,0.27764475,0.15406662,0.06458753,0.012814462,0.0008342266,0.029129803,0.0965606,0.20040858,0.3364876,0.4993124,0.68231964,0.87813246,1.0788577,1.2764041,1.4628088,1.6305581,1.7728899,1.8840669,1.9596077,1.9964674,1.9931598,1.9498186,1.8681908,1.7515666,1.6046473,1.433355,1.2445352,1.0459132,0.8454406,0.65119827,0.4710158,0.31215644,0.18102366,0.082903385,0.021750689,3.0696392e-5,0.018618941,0.07676607,0.1721282,0.30086142,0.4577765,0.6365483,0.8299706,1.0302467,1.2293036,1.4191175,1.5920368,1.7410916,1.8602734,1.944778,1.9911991,1.9976656,1.9639168,1.891313,1.7827809,1.6426953,1.476703,1.2914952,1.0945373,0.89376867,0.6972822,0.51299804,0.34834474,0.20995921,0.10341984,0.033021092,0.0016006827,0.01042521,0.059138954,0.14577824,0.26689225,0.4175257,0.5916383,0.7822118,0.98156416,1.1816597,1.3744326,1.5521123,1.7075368,1.8344408,1.927709,1.9835818,1.9998069,1.9757304,1.9123228,1.8121397,1.6792201,1.5189214,1.3377051,1.1428763,0.94228816,0.74402636,0.5560827,0.38603312,0.2407322,0.12603688,0.0465706,0.005536437,0.004588604,0.043765187,0.12148708,0.23462135,0.37860757,0.54764175,0.73491025,0.93286437,1.1335247,1.3288027,1.5108268,1.6722599,1.8065946,1.9084158,1.9736192,1.9995768,1.9852419,1.9311702,1.839574,1.714135,1.5599097,1.3831148,1.1908767,0.99094445,0.79137725,0.6002195,0.42517668,0.2733047,0.15072536,0.062379777,0.011829197,0.0011111498,0.030657828,0.09927809,0.20420593,0.3412118,0.504773,0.68829656,0.88438475,1.0851333,1.2824502,1.4683816,1.6354328,1.7768703,1.8869922,1.9613602,1.9969764,1.9924049,1.9478302,1.8650489,1.747398,1.5996199,1.4276716,1.2384839,1.0396832,0.8392828,0.6453608,0.46573424,0.30764353,0.17746133,0.08043522,0.020463943,1.1920929e-6,0.01984781,0.079203844,0.17567664,0.30537742,0.46307802,0.6424217,0.83617914,1.03654,1.2354281,1.4248261,1.5970998,1.7453046,1.8634666,1.9468228,1.992013,1.9972157,1.9622214,1.8884404,1.7788469,1.6378584,1.4711583,1.2854661,1.0882668,0.8875096,0.6912868,0.50750804,0.34358138,0.20611459,0.10064888,0.03143549,0.0012643337,0.011351705,0.06129092,0.14906895,0.27114755,0.42260575,0.59733844,0.7883021,0.9877992,1.1877882,1.3802075,1.5573008,1.7119298,1.8378944,1.9300413,1.9846985,1.9996634,1.9743321,1.9097263,1.8084497,1.6745851,1.5135283,1.3317716,1.1366413,0.93600297,0.7379444,0.55044913,0.38107502,0.2366494,0.122994006,0.04469025,0.004894495,0.0052108765,0.04562658,0.12451261,0.238689,0.38355345,0.55326647,0.74098706,0.9391483,1.1397625,1.3347429,1.5162301,1.6769083,1.8103006,1.9110303,1.9750369,1.9997401,1.9841444,1.9288785,1.8361701,1.7097561,1.5547321,1.3773474,1.1847519,0.9847091,0.78528273,0.5945115,0.42003554,0.26899344,0.14741778,0.060209215,0.010883093,0.00142771,0.032224238,0.10203123,0.20803487,0.3459621,0.5102533,0.69428587,0.8906416,1.0914055,1.2884849,1.4739357,1.6402824,1.7808197,1.8898826,1.9630747,1.9974458,1.9916105,1.9458041,1.8618727,1.7431997,1.5945687,1.4219711,1.232364,1.0333905,0.83307105,0.63948035,0.46042204,0.30311376,0.17389661,0.07797921,0.019227922,1.1026859e-5,0.021103084,0.08165395,0.17922282,0.3098768,0.46834916,0.6482521,0.84233385,1.042832,1.2415433,1.4305182,1.602139,1.7494881,1.8666257,1.94883,1.9927876,1.9967265,1.9604878,1.8855326,1.774882,1.6329963,1.4655949,1.2794256,1.0819929,0.881255,0.6853037,0.50203764,0.33884412,0.20230144,0.09791356,0.029888272,0.0009676218,0.012317359,0.06348008,0.1523934,0.27547324,0.42775834,0.6031102,0.7944604,0.99409586,1.1939692,1.3860239,1.5625181,1.7163376,1.8412819,1.9323145,1.9857662,1.9994822,1.9729095,1.9071194,1.8047639,1.6699688,1.5081676,1.3258249,1.1304008,0.92972034,0.73187286,0.5448334,0.3761415,0.23259687,0.11998594,0.042847812,0.0042919517,0.0058725476,0.047525883,0.12757283,0.24278688,0.38852376,0.5589089,0.7470741,0.9454347,1.1459948,1.3406699,1.5216126,1.6815298,1.8139746,1.9136086,1.9764156,1.9998639,1.9830081,1.926528,1.8326999,1.7053063,1.5494821,1.3715086,1.1785598,0.97841334,0.779137,0.5887636,0.41496688,0.2647525,0.14417559,0.05809641,0.009984851,0.0017802715,0.033813298,0.10479283,0.21189517,0.3507384,0.515753,0.7002873,0.89690286,1.0976743,1.2945083,1.4794711,1.6451066,1.7847381,1.8927374,1.9647509,1.9978759,1.990777,1.9437405,1.8586624,1.738972,1.5894941,1.416254,1.226235,1.0270965,0.8268659,0.6336142,0.45513123,0.29861164,0.17036462,0.075559735,0.018018484,6.0379505e-5,0.02240932,0.08416432,0.18283617,0.3144474,0.4736929,0.6541535,0.848555,1.0490612,1.2475897,1.436138,1.607106,1.7536017,1.8697202,1.9507807,1.993516,1.996203,1.9587164,1.8825897,1.7708864,1.628109,1.4600129,1.2733741,1.0757155,0.87500507,0.67933303,0.49658692,0.33413303,0.19851995,0.09521401,0.0283795,0.00071048737,0.013322234,0.06570643,0.15575147,0.27982765,0.43293363,0.6088977,0.8006269,1.0003927,1.2001426,1.391825,1.567713,1.720717,1.8446691,1.9345733,1.9868052,1.9992596,1.9714344,1.9044513,1.8010101,1.6652808,1.5027344,1.319923,1.1242157,0.9235014,0.7258706,0.53928983,0.37128007,0.22861367,0.11704135,0.041060627,0.0037289262,0.006573677,0.049462855,0.13066769,0.24691474,0.39351833,0.56456876,0.7531712,0.9517232,1.1522212,1.3465832,1.5269747,1.6861241,1.8176162,1.9161508,1.9777558,1.9999479,1.9818327,1.9241405,1.8291967,1.7008283,1.5442102,1.3656551,1.1723607,0.9721184,0.7730001,0.583032,0.4098717,0.26049912,0.14093542,0.056000113,0.009116888,0.0021756291,0.03545606,0.10761672,0.21574885,0.35549372,0.5212183,0.7062422,0.9031074,1.1038783,1.3004619,1.484934,1.6498587,1.7886255,1.8955569,1.966389,1.9982662,1.9899042,1.9416395,1.855418,1.734715,1.584396,1.4105204,1.220097,1.0208015,0.8206676,0.62776244,0.449862,0.2941373,0.16686553,0.07317692,0.016848028,0.00014942884,0.02375424,0.08671099,0.1864819,0.31904525,0.4790575,0.66006863,0.8547822,1.0553495,1.2536856,1.4417958,1.6120975,1.7577258,1.8728107,1.952713,1.9942122,1.995635,1.9569244,1.8796408,1.7668993,1.6232445,1.4544672,1.2673705,1.0694963,0.8688206,0.67343277,0.49115616,0.3294484,0.19477016,0.09255034,0.026909292,0.00049299,0.0143662095,0.0679698,0.15914297,0.28421062,0.43813133,0.6147007,0.8068012,1.0066894,1.2063081,1.3976105,1.5728855,1.7250679,1.848023,1.936795,1.9878051,1.9989976,1.9699209,1.9017472,1.7972248,1.6605666,1.4972812,1.3139508,1.1179652,0.9172245,0.71982044,0.53371024,0.36639595,0.22462189,0.11410284,0.039293826,0.0032103062,0.007306814,0.051418245,0.13376647,0.25103205,0.39848816,0.5701908,0.7592189,0.9579526,1.1584415,1.3524829,1.5323157,1.6906914,1.8212255,1.9186566,1.9790571,1.9999924,1.9806185,1.9217165,1.8256606,1.6963228,1.5389166,1.359787,1.1661546,0.9658246,0.76687217,0.577317,0.40479994,0.25627506,0.13772929,0.05394119,0.008288205,0.0026105046,0.03713703,0.11047602,0.21967125,0.36032104,0.5267559,0.71226704,0.9093765,1.1101389,1.3064618,1.4904313,1.6546317,1.7924445,1.898314,1.9679732,1.9986138,1.989001,1.939522,1.8521715,1.7304704,1.5793245,1.4047705,1.2139502,1.0145056,0.81447643,0.62192553,0.4446146,0.2896909,0.16339946,0.07083082,0.015716493,0.00027811527,0.025137901,0.08929384,0.19015986,0.32367003,0.4844427,0.6659972,0.8610152,1.0616355,1.2597713,1.447436,1.6170647,1.76182,1.8758667,1.9546076,1.994869,1.9950275,1.9550773,1.8766284,1.762843,1.618308,1.4488492,1.2612976,1.0632132,0.86258084,0.6674877,0.48579788,0.3248353,0.19108826,0.08994794,0.025491357,0.00031661987,0.015438557,0.07024765,0.16253448,0.28862202,0.4433514,0.620519,0.8129832,1.0129861,1.2124653,1.4033803,1.5780352,1.7293899,1.8513433,1.9389795,1.988766,1.9986959,1.9683689,1.8990076,1.7934077,1.655826,1.4918083,1.3079661,1.1117101,0.91095096,0.71378136,0.5281491,0.36153692,0.2206608,0.11119944,0.037565053,0.0027258992,0.008086324,0.0534302,0.13692981,0.25521922,0.40353036,0.5758848,0.7653352,0.9642447,1.1645956,1.3583117,1.5375843,1.6951873,1.8247677,1.9211023,1.9803076,1.9999974,1.9793653,1.919256,1.8220918,1.6917896,1.5336018,1.3539047,1.159942,0.95953214,0.7607535,0.5716187,0.39975178,0.2520805,0.13455743,0.051919818,0.0074988008,0.0030849576,0.03885621,0.1133706,0.22362453,0.36517376,0.5323124,0.7183033,0.91564924,1.1163952,1.3124495,1.4959091,1.6593788,1.7962694,1.9010627,1.9695349,1.9989254,1.9880501,1.9373469,1.8488598,1.7261555,1.5741805,1.3990605,1.2078546,1.0082703,0.8083525,0.6161599,0.43943977,0.28531545,0.15999967,0.06854379,0.014624059,0.00044637918,0.026560247,0.091912866,0.19386995,0.3283217,0.48984838,0.671939,0.86725366,1.0679191,1.2658468,1.4530585,1.6220076,1.7658839,1.8788879,1.9564643,1.9954863,1.9943807,1.9531922,1.8735812,1.7587565,1.6133468,1.4432135,1.2552145,1.0569278,0.8563465,0.66155577,0.48040754,0.32020378,0.18740219,0.08735603,0.02409798,0.00017797947,0.016560256,0.07258445,0.16599226,0.2930184,0.4485426,0.6262957,0.8191126,1.0192211,1.2185546,1.4090784,1.5831125,1.7336416,1.8546298,1.9411268,1.9896876,1.9983547,1.9667785,1.8962321,1.7895591,1.6510594,1.4863158,1.3019693,1.1054504,0.9046809,0.70775366,0.52260673,0.35670322,0.21673065,0.10833126,0.035874486,0.0022810698,0.008905113,0.055479705,0.1401273,0.2594359,0.40859622,0.5815957,0.77146083,0.9705382,1.1708032,1.3641832,1.5428832,1.6996999,1.828312,1.9235353,1.9815316,1.9999628,1.978086,1.9167833,1.8185254,1.6872733,1.5283176,1.3480656,1.1537834,0.95330226,0.7547034,0.5659374,0.3947274,0.24791557,0.13141978,0.049936056,0.0067487955,0.003598988,0.040613472,0.116300344,0.22760862,0.37005156,0.5378874,0.7243507,0.92192525,1.122647,1.3184249,1.5013672,1.6640997,1.8000629,1.9037758,1.9710581,1.9991975,1.98706,1.9351345,1.8455143,1.721812,1.5690137,1.3932788,1.2016913,1.0019735,0.8021762,0.6103531,0.4342364,0.28092533,0.15659976,0.066271186,0.01358062,0.0006521344,0.028006792,0.09454191,0.19757557,0.33295447,0.4952216,0.67783606,0.8734368,1.0742,1.2719119,1.458663,1.6269257,1.7699174,1.8818741,1.9582831,1.9960642,1.9936944,1.9512694,1.8704994,1.7546399,1.6083612,1.4375601,1.2491211,1.0506401,0.8501178,0.65563726,0.4750377,0.31559914,0.18374836,0.08480024,0.022743285,7.903576e-5,0.017720997,0.074958086,0.16948307,0.2974857,0.45380634,0.63214374,0.82530916,1.0255163,1.2246948,1.4148161,1.5882164,1.737906,1.857851,1.9432166,1.9905615,1.9979776,1.9651657,1.8934486,1.785717,1.6463137,1.4808042,1.2959604,1.0991867,0.8984147,0.7017375,0.5170833,0.35189503,0.21283156,0.10549843,0.034222126,0.0018757582,0.009763241,0.057566643,0.14335895,0.26368195,0.41368556,0.5873232,0.7775955,0.97683287,1.1770041,1.3700404,1.5481606,1.7041847,1.8318236,1.9259319,1.9827168,1.9998887,1.9767556,1.9142503,1.8148918,1.6826856,1.5229608,1.3421557,1.1475585,0.9470132,0.7486039,0.5603281,0.38977534,0.24382037,0.12834656,0.04800862,0.0060448647,0.0041469336,0.04239124,0.11923623,0.23162335,0.3749544,0.5434807,0.730409,0.9282044,1.1288939,1.3243876,1.5068055,1.6687944,1.8038245,1.9064529,1.9725428,1.99943,1.9860307,1.932885,1.8421354,1.7174397,1.5638244,1.3874817,1.1955198,0.99567664,0.79600775,0.6045617,0.42905545,0.2765637,0.15323329,0.064035535,0.01256597,0.0008993149,0.029505849,0.09723246,0.20134914,0.33765894,0.50066733,0.68380356,0.8796855,1.0804173,1.2779074,1.4641953,1.6317717,1.7738817,1.8847971,1.9600468,1.9965975,1.992976,1.9493089,1.867383,1.7504933,1.6033517,1.4318894,1.2430178,1.0443503,0.8438951,0.64973235,0.46968877,0.3110217,0.1801269,0.082280755,0.021427393,1.9669533e-5,0.01892066,0.07736832,0.17300683,0.3019809,0.45909172,0.6380063,0.8315126,1.0318105,1.2308263,1.4205375,1.593297,1.7421411,1.8610699,1.9452896,1.991405,1.9975575,1.9634991,1.8906026,1.7818062,1.641496,1.4753271,1.2899983,1.0929797,0.8922131,0.69579136,0.5116322,0.3471588,0.20900106,0.10272801,0.032608032,0.0015100837,0.010660648,0.059690952,0.1466245,0.2679572,0.41879815,0.59306693,0.78373903,0.9831285,1.183198,1.3758829,1.5534163,1.7086415,1.835302,1.9282919,1.9838629,1.9997749,1.9753866,1.9116809,1.811226,1.678071,1.5175834,1.3362322,1.1413276,0.9407263,0.74251425,0.5546813,0.38479894,0.23971492,0.12527764,0.04609984,0.0053732395,0.004739523,0.044224143,0.122235596,0.2356292,0.37983412,0.54903764,0.7364192,0.9344255,1.1350751,1.3302798,1.5121713,1.6734173,1.8075544,1.9090941,1.9739889,1.9996227,1.9849622,1.9305986,1.838723,1.7130389,1.5586127,1.3816692,1.1893406,0.98938,0.7898474,0.5987859,0.42389715,0.2722308,0.14990038,0.061837018,0.011590481,0.0011861324,0.03104341,0.09995878,0.20515436,0.34238964,0.50613284,0.6897836,0.88593894,1.0866921,1.2839507,1.4697633,1.6366401,1.7778544,1.8877137,1.9617898,1.9970968,1.9922112,1.9473302,1.8642628,1.7463577,1.5983671,1.4262568,1.2369642,1.0381198,0.8377388,0.6438985,0.46436077,0.30647153,0.17653793,0.079797685,0.020150244,0.0],"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/versinf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..76592bbf9e8e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/test/fixtures/julia/runner.jl @@ -0,0 +1,86 @@ +#!/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, name ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000.0, stop = 1000.0, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = 1.0f0 .- cos.( x ); + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + 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 ) ); +gen( x, "medium_negative.json" ); + +# Positive medium sized values: +x = Float32.( range( 0.0, stop = 256.0*pi, length = 4000 ) ); +gen( x, "medium_positive.json" ); + +# Negative large values: +x = Float32.( range( -2.0^20*(pi/2.0), stop = -2.0^60*(pi/2.0), length = 4000 ) ); +gen( x, "large_negative.json" ); + +# Positive large values: +x = Float32.( range( 2.0^20*(pi/2.0), stop = 2.0^60*(pi/2.0), length = 4000 ) ); +gen( x, "large_positive.json" ); + +# Negative huge values: +x = Float32.( range( -2.0^60*(pi/2.0), stop = -2.0^120*(pi/2.0), length = 4000 ) ); +gen( x, "huge_negative.json" ); + +# Positive huge values: +x = Float32.( range( 2.0^60*(pi/2.0), stop = 2.0^120*(pi/2.0), length = 4000 ) ); +gen( x, "huge_positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/test/test.js b/lib/node_modules/@stdlib/math/base/special/versinf/test/test.js new file mode 100644 index 000000000000..e95038187ab1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 f32 = require( '@stdlib/number/float64/base/to-float32' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var versinf = 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 versinf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { + var v = versinf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) { + var v = versinf( PINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) { + var v = versinf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/versinf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/versinf/test/test.native.js new file mode 100644 index 000000000000..6522e7deec10 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/versinf/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 f32 = require( '@stdlib/number/float64/base/to-float32' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var versinf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( versinf 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 versinf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the versed sine (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 = versinf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) { + var v = versinf( 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 = versinf( 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 = versinf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +});