diff --git a/lib/node_modules/@stdlib/math/base/special/secf/README.md b/lib/node_modules/@stdlib/math/base/special/secf/README.md new file mode 100644 index 000000000000..84f6d41eaafa --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/README.md @@ -0,0 +1,194 @@ + + +# Secant + +> Evaluate the [secant][trigonometric-functions] of a single-precision floating-point number (in radians). + +
+ +
+ +
+ +## Usage + +```javascript +var secf = require( '@stdlib/math/base/special/secf' ); +``` + +## secf( x ) + +Evaluates the [secant][trigonometric-functions] of a single-precision floating-point number (in radians). + +```javascript +var v = secf( 0.0 ); +// returns 1.0 + +v = secf( 3.1415927410125732 ); +// returns -1.0 + +v = secf( -3.1415927410125732/3.0 ); +// returns ~2.0 + +v = secf( 3.1415927410125732/3.0 ); +// returns ~2.0 + +v = secf( NaN ); +// returns NaN +``` + +
+ + + +
+ +## 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 secf = require( '@stdlib/math/base/special/secf' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'secf(%0.4f) = %0.4f', x, secf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/secf.h" +``` + +#### stdlib_base_secf( x ) + +Evaluates the [secant][trigonometric-functions] of a single-precision floating-point number (in radians). + +```c +float out = stdlib_base_secf( 0.0f ); +// returns 1.0f + +out = stdlib_base_cos( 3.1415927410125732f ); +// returns -1.0f +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_secf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/secf.h" +#include + +int main( void ) { + const float x[] = { 0.523f, 0.785f, 1.047f, 3.14f }; + + float y; + int i; + for ( i = 0; i < 4; i++ ) { + y = stdlib_base_secf( x[ i ] ); + printf( "secf(%f) = %f\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/secf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/secf/benchmark/benchmark.js new file mode 100644 index 000000000000..787d40c6c135 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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 secf = 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 = secf( 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/secf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/secf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..248eea380b98 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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 secf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( secf 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 = secf( 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/secf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/secf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..a4bd7b38fd74 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/secf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..dc65e8978a7f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf.h" +#include +#include +#include +#include +#include + +#define NAME "secf" +#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_secf( 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/secf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/secf/binding.gyp new file mode 100644 index 000000000000..68a1ca11d160 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/secf/docs/repl.txt new file mode 100644 index 000000000000..eb2d4ef1ecb2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/docs/repl.txt @@ -0,0 +1,28 @@ + +{{alias}}( x ) + Computes the secant of a single-precision floating-point number + (in radians). + + Parameters + ---------- + x: number + Input value (in radians). + + Returns + ------- + y: number + Secant. + + Examples + -------- + > var y = {{alias}}( 0.0 ) + 1.0 + > y = {{alias}}( {{alias:@stdlib/constants/float32/pi}} ) + -1.0 + > y = {{alias}}( -{{alias:@stdlib/constants/float32/pi}}/3.0 ) + ~2.0 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- diff --git a/lib/node_modules/@stdlib/math/base/special/secf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/secf/docs/types/index.d.ts new file mode 100644 index 000000000000..afd32839d1e6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the secant of a single-precision floating-point number (in radians). +* +* @param x - input value (in radians) +* @returns secant +* +* @example +* var v = secf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = secf( 3.1415927410125732 ); +* // returns -1.0 +* +* @example +* var v = secf( -3.1415927410125732/3.0 ); +* // returns ~2.0 +* +* @example +* var v = secf( NaN ); +* // returns NaN +*/ +declare function secf( x: number ): number; + + +// EXPORTS // + +export = secf; diff --git a/lib/node_modules/@stdlib/math/base/special/secf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/secf/docs/types/test.ts new file mode 100644 index 000000000000..9cd97f56a423 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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 secf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + secf( 2 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + secf( true ); // $ExpectError + secf( false ); // $ExpectError + secf( null ); // $ExpectError + secf( undefined ); // $ExpectError + secf( '5' ); // $ExpectError + secf( [] ); // $ExpectError + secf( {} ); // $ExpectError + secf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + secf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/secf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/secf/examples/c/Makefile new file mode 100644 index 000000000000..25ced822f96a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/secf/examples/c/example.c new file mode 100644 index 000000000000..18fdf668a783 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf.h" +#include + +int main( void ) { + const float x[] = { 0.523f, 0.785f, 1.047f, 3.14f }; + + float y; + int i; + for ( i = 0; i < 4; i++ ) { + y = stdlib_base_secf( x[ i ] ); + printf( "secf(%f) = %f\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/secf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/secf/examples/index.js new file mode 100644 index 000000000000..29c7ab3cedaa --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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 secf = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, TWO_PI, opts ); + +logEachMap( 'secf(%0.4f) = %0.4f', x, secf ); diff --git a/lib/node_modules/@stdlib/math/base/special/secf/include.gypi b/lib/node_modules/@stdlib/math/base/special/secf/include.gypi new file mode 100644 index 000000000000..ecfaf82a3279 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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", + "math.cos", + "cos", + "cosine", + "sec", + "secant", + "secf", + "trig", + "trigonometry", + "radians", + "angle" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/secf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/secf/src/Makefile new file mode 100644 index 000000000000..7733b6180cb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/secf/src/addon.c new file mode 100644 index 000000000000..17b0b6178ade --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_secf ) diff --git a/lib/node_modules/@stdlib/math/base/special/secf/src/main.c b/lib/node_modules/@stdlib/math/base/special/secf/src/main.c new file mode 100644 index 000000000000..adab77f77494 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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/secf.h" +#include "stdlib/math/base/special/cosf.h" + +/** +* Evaluates the secant of a single-precision floating-point number (in radians). +* +* @param x input value (in radians) +* @return secant +* +* @example +* float y = stdlib_base_sec( 3.1415927410125732f ); +* // returns -1.0f +*/ +float stdlib_base_secf( const float x ) { + return 1.0f / stdlib_base_cosf( x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..fd12bbfbdc22 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0059146,1.0086894,1.0355288,1.0830047,1.1559154,1.4324156,1.418085,2.0482087,2.0126855,4.0843105,-39.59929,-65.13148,-183.39764,224.77834,-1.9110959,-1.9425145,-1.9751801,-2.0091639,-1.136225,-1.1423827,-1.0012771,-1.0008252,-1.0004717,-1.0002165,-1.0000595,-1.0000005,-1.0000396,-2.2545598,-2.2104433,-2.1682289,-2.1278012,-2.0890546,-2.0518916,-2.0162215,-1.9819618,1.7939612,1.8209032,1.8488511,1.8778571,1.9079777,1.0051246,1.9718097,1.0033073,2.0408888,1.001889,2.1158435,1.0008664,2.5142794,1.0002378,2.4048958,1.000002,2.3054993,1.0001583,2.214827,-1.6487106,2.1318214,-1.6929864,2.0555897,-1.7404072,1.9853733,-1.791284,1.9205236,-1.8459704,-1.0074674,-1.9048715,-1.0052274,-1.9684528,-1.00339,-2.0372515,-1.0019513,-2.6416366,-1.0009087,-2.5201166,-1.0002604,-2.4101887,-1.0000045,-2.3103182,1.6052787,-2.219231,1.6465448,1.0207642,1.6906687,-2.0593033,-1.0029103,1.0133399,1.7886165,-1.9236907,3.2984855,1.0075917,1.9017774,-1.8074956,2.9354453,1.0034734,2.0336292,-1.4627914,2.6481373,1.0009521,2.1888144,-1.5286076,2.415507,1.0000081,-1.0301808,-1.6032586,2.2236543,1.0006337,-1.0209746,-1.6883593,2.0630324,-3.7845602,-1.0135071,-1.7859588,1.9268703,-3.308928,-1.0077171,-1.8986951,1.4031324,-2.9436016,-1.0035579,-2.0300217,1.4612262,-2.6546729,-1.0009965,-2.184546,1.5268364,-2.4208517,-1.0000126,1.0304374,1.6012452,-2.2280974,-1.0005984,1.0211862,1.6860578,-2.066777,3.7984793,1.0136755,1.7833108,-1.9300624,3.3194396,1.0078436,1.8956248,-1.4017481,2.9518063,1.0036435,2.0264292,-1.4596658,2.6612437,1.0010419,-1.041811,-1.5250709,2.4262223,1.0000181,-1.0306951,-1.5992384,2.2325606,-4.466685,-1.0213989,-1.6837641,2.0705373,-3.8125055,-1.0138448,1.0875945,1.933267,-3.3300219,15.079127,-1.8925666,1.4003681,1.0117265,-1.00373,1.055198,1.7142124,-2.6678495,6.8935137,-2.1760652,1.523311,-1.2252251,-1.0000247,1.030954,-1.129946,-2.237044,4.486292,-2.5784817,1.6814785,-1.3022592,-1.002611,1.0140153,-1.0880622,-1.9364841,3.340675,-15.310373,1.8895198,-1.3989921,1.1629918,1.0038177,-1.0555553,-1.7166125,2.674491,-6.94104,2.1718528,-1.5215566,1.2243556,1.0000323,-1.031214,1.1305436,2.2415478,-4.5060763,2.5723462,-1.6792008,1.3011702,1.0025387,-1.0141869,1.0885313,1.939714,-3.3514001,15.548839,-1.8864847,1.3976202,-1.1622995,-1.0039064,1.055914,1.719021,-2.6811686,6.9892335,-2.1676588,1.5198078,-1.2234886,-1.0000409,1.0314752,-1.131143,-2.2460723,4.5260406,63.062595,1.6769308,-1.3000844,-1.0024675,1.0143595,-1.0890018,-1.9429568,3.3621976,-15.794865,1.8834614,-1.3962524,1.1616094,1.003996,-1.0562742,-1.721438,2.687882,-7.038108,2.1634831,-1.5180646,1.2226241,1.0000504,-1.0317377,1.1317441,2.250617,-4.5461874,-59.308662,-1.6746687,1.2990018,1.0023973,-1.0145332,1.0894738,1.946212,-3.3730686,16.048819,-1.8804494,1.3948886,-1.1609212,-1.0040867,1.0566354,-1.185917,-2.6946318,7.0876775,-2.1593258,1.5163268,-1.221762,-1.000061,1.0320013,-1.1323471,-2.2551825,4.566519,55.976597,1.6724143,-1.2979221,1.1119547,1.014708,-1.0899476,-1.9494805,3.3840132,-16.311089,1.8774492,-1.393529,1.1602349,1.0041785,-1.0569981,1.186677,2.7014186,-7.1379576,2.1551864,-1.5145946,1.2209023,1.0000726,-1.032266,1.1329519,2.259769,-4.587037,-52.99906,-1.6701678,1.2968458,-1.1114128,-1.0148839,1.0904226,1.9527619,-3.3950324,16.582092,-1.8744602,1.3921734,-1.1595508,-1.0042713,1.0573621,-1.1874392,1.4475664,4.1249657,-2.151065,1.5128679,-1.2200451,1.0731564,-1.0088739,1.5596031,-2.2643762,4.607746,50.32235,-3.9117002,1.048321,-1.0021927,1.0150609,-1.0908993,1.2559173,-1.5856484,-3.131005,1.8714827,-1.3908219,1.1588684,-1.0439363,1.3258673,-1.7311919,2.7151031,-7.2407107,-10.007806,3.0094333,-1.0257607,1.0000988,-1.032799,1.1341667,-1.3419353,1.7654021,2.5361898,-1.6656978,1.294702,-1.1103338,1.0226678,-1.43024,1.9593637,-3.4172983,17.152094,5.5763273,-2.4582305,1.0105127,-1.0044599,1.0580939,-1.18897,1.4506174,4.0920963,-2.1428764,1.5094306,-1.218338,1.0723201,-1.0086056,1.5633626,-2.2736545,4.6497436,45.705753,-3.8822331,2.0890403,-1.0020615,1.015418,-1.0918572,1.2578387,-1.5895786,-3.1124713,1.8655616,-1.3881308,1.1575098,-1.0433106,1.0012769,-1.736121,2.7289383,-7.3464966,-9.811676,2.992387,-1.0252925,1.000129,-1.0333368,1.1353886,-1.3443533,1.7705772,2.5243826,-1.6612582,1.2925707,-1.1092614,1.0222304,-1.4331851,1.9660183,-3.439872,17.76275,5.515591,-2.4472024,1.0102199,-1.0046526,1.0588311,-1.1905097,1.4536873,-2.0126987,-2.134758,1.5060151,-1.2166405,1.0714895,-1.0083414,1.5671467,-2.283018,4.6925325,41.86519,-3.8532221,2.0813804,-1.0019343,1.0157796,-1.0928211,1.2597709,-1.593535,-3.0941682,1.8596855,-1.3854557,1.156159,-1.04269,1.0011773,-1.7410853,2.7429264,-7.4554486,-9.623124,2.975545,-1.0248289,1.0001633,-1.0338793,1.1366179,-1.3467853,1.77579,2.512695,-1.6568489,1.2904515,-1.1081957,1.0217975,-1.0005032,1.9727262,-3.46276,18.418571,5.456186,-2.4362826,1.0099313,-1.0048494,1.0595735,-1.1920581,1.456776,-2.0197854,-2.1267095,1.502621,-1.2149527,1.0706644,-1.0080816,1.5709554,-2.2924685,4.7361355,38.62017,-3.8246562,2.0737846,-1.001811,1.0161455,-1.0937911,1.2617142,-1.5975175,-3.0760913,1.8538535,-1.3827964,1.1548162,-1.0420743,1.0010817,-1.746085,2.7570696,-7.567713,-9.441719,2.958903,-1.8153505,1.0002016,-1.0344266,1.1378545,-1.3492317,1.7810409,2.5011253,-1.6524695,1.2883445,-1.1071362,1.0213691,-1.0005689,1.979488,-3.4859686,19.124758,5.3980675,-2.4254696,1.009647,-1.0050504,1.0603213,-1.1936153,1.4598837,-2.0269306,-2.1187298,1.4992484,-1.2132745,1.069845,-1.0078259,1.0065264,-2.302007,4.780576,35.842148,-3.7965262,2.0662525,-1.001692,1.0165157,-1.0947673,1.2636687,-1.6015263,2.3692682,1.8480656,-1.380153,1.1534809,-1.0414635,1.0009903,-1.7511207,2.7713704,-7.68344,-9.267064,2.9424582,-1.8098491,1.0002439,-1.0349785,1.1390982,-1.3516924,1.7863299,2.4896717,-1.64812,1.2862494,-1.1060834,1.0209452,-1.0006387,1.9863045,-3.5095048,19.887339,5.341196,-2.4147618,1.6193203,-1.0052555,1.0610745,-1.1951815,1.4630108,-2.0341349,-2.1108184,1.4958967,-1.2116057,1.0690311,-1.0075743,1.0067598,-2.3116343,4.8258786,33.437088,-3.7688224,2.0587828,-1.001577,1.0168903,-1.0957497,1.2656343,-1.6055619,2.3795338,1.8423208,-1.377525,1.1521534,-1.0408577,1.0009028,-1.7561924,2.785832,-7.8027945,-9.098789,2.9262068,-1.8043882,1.0002903,-1.0355352,1.1403493,-1.3541676,1.7916578,-2.8885992,-1.6438,1.2841663,-1.105037,1.0205257,-1.0007125,1.993176,-3.5333755,20.713346,5.285531,-2.4041579,1.6151934,-1.0054648,1.061833,-1.1967566,1.4661571,-2.0413985,-2.1029744,1.492566,-1.2099463,1.0682228,-1.007327,1.0069972,-2.321352,4.8720675,31.334618,-3.7415345,2.0513756,-1.0014662,1.0172694,-1.0967383,1.2676111,-1.6096244,2.3898985,-5.211688,-21.953718,3.5663924,-1.1331971,1.3400168,-1.7613009,2.8004565,-7.9259477,-8.936551,2.9101455,-1.7989674,1.3575577,-1.1420628,1.0363002,-16.694366,-5.6257553,2.4671054,-1.639509,1.2820952,-1.103997,1.0201106,-1.0007904,1.0400414,-1.1503601,1.3739756,1.2196988,-1.0729866,1.0088192,-1.0056782,1.0625968,-1.1983408,1.4693228,-2.0487227,3.7318072,-30.640764,-4.8889246,1.0910927,-1.2563053,1.5864419,-2.331161,4.919169,29.481018,-3.714654,2.0440295,-1.4672949,1.1973261,-1.0621074,7.2618713,9.967479,-3.005967,1.8309602,-1.3723156,1.1495215,-1.0396606,1.0007402,-1.0203757,1.1046617,-1.283419,1.6422511,1.1101162,-1.0225788,1.0003952,-1.0366632,1.1428736,-1.3591619,1.8024312,-2.9204004,9.0396805,7.846701,-2.79108,1.189281,-1.4512372,2.0070872,-3.582148,22.590147,5.177673,-2.3832552,1.6070218,-1.2663449,1.096105,-1.0170263,-44.872635,3.8763251,-2.0874848,1.4859668,-1.2066559,1.0666226,-1.0068448,1.0074847,-1.0687393,1.2110069,-1.4946947,-1.1572359,1.0431846,-1.0012563,1.0180405,-1.098734,1.2715988,-1.6178308,2.4109309,-5.321011,-20.177114,3.5180633,-1.1356368,1.3448443,-1.7716291,2.8302057,-8.184399,-8.628938,2.8785806,-1.7882442,1.3525822,-1.139548,1.0351784,-17.891676,-5.5034623,2.4449837,-1.6310136,1.2779882,-1.1019362,1.019294,-1.0009583,1.0412447,-1.1530019,1.3792046,-1.8459917,-1.0713221,1.0082885,-1.0061175,1.0641407,-1.2015362,1.4757135,-2.063555,3.7865002,-34.937088,-4.7967916,2.305464,-1.2601633,1.5943388,-2.351059,5.0162196,26.362402,-3.6620789,2.0295184,-1.4610077,1.1941783,-1.060592,1.0051239,9.585848,-2.9721608,1.819768,-1.3671676,1.1469198,-1.038483,1.0005935,-1.0212159,1.1067563,-1.2875885,1.6508998,1.1079806,-1.0217104,1.0005162,-1.0378101,1.1454277,-1.364215,1.8133645,-2.9529576,9.378059,7.608985,-2.7622018,1.1923726,-1.4574034,2.021227,-3.6323452,24.841385,5.0742087,-2.362751,1.5989583,-1.2624168,1.0941421,-1.0162783,-38.023712,3.8189287,-2.0722551,1.4794495,-1.2034025,1.0650444,-1.0063792,1.0079889,-1.0703686,1.2143471,-1.5014039,-1.1545452,1.0419503,-1.0010629,1.0188292,-1.1007549,1.2756323,-1.6261476,2.4323761,-5.435108,-18.666807,3.4710813,-1.9751554,1.3497286,-1.7821081,2.8606403,-8.460414,-8.341926,2.8477387,-1.7776766,1.3476647,-1.1370624,1.0340759,-1.0001765,-5.386458,2.423294,-1.6226318,1.273928,-1.0999008,1.018495,-1.0011424,1.0424677,-1.1556746,1.3844961,-1.85758,-1.0696797,1.0077746,-1.0065733,1.0657063,-1.2047681,1.4821842,-2.0786374,3.8428829,-40.635487,-4.7081413,2.2864115,-1.2640656,1.6023409,-2.371338,5.117261,23.840816,-3.611029,2.0152442,-1.4547975,1.1910663,-1.0590979,1.004723,9.232505,-2.9391534,1.8087406,-1.3620797,1.1443485,-1.0373248,1.0004632,-1.022074,1.1088768,-1.291806,1.6596668,1.1058711,-1.02086,1.0006534,-1.0389766,1.1480118,-1.3693281,1.824461,-2.9862978,9.742919,7.3853636,-2.7339585,1.7379047,-1.4636459,2.0356,-3.6840296,27.591476,4.9748774,-2.3426337,1.5910006,-1.2585334,1.0922036,-1.0155478,1.0020151,3.7632666,-2.0572789,1.4730126,-1.200186,1.063488,-1.0059304,1.00851,-1.0720203,1.2177255,-1.508198,2.1399443,1.0407356,-1.0008856,1.0196358,-1.102801,1.2797121,-1.6345772,2.4542463,-5.554297,-17.367117,3.4253924,-1.9617542,1.3546704,-1.7927408,2.8917835,-8.755842,-8.073519,2.8175955,-1.7672616,1.3428046,-1.1346059,1.0329921,-1.0001092,-5.274409,2.4020243,-1.6143616,1.2699139,-1.0978906,1.0177135,-1.0013428,1.0437104,-1.1583782,1.3898509,-1.869345,-1.0680598,1.0072774,-1.0070457,1.0672938,-1.2080369,1.4887357,-2.0939758,3.9010344,-48.555965,-4.6227818,2.2677078,-1.2680125,1.6104498,-2.3920085,5.2225423,21.759823,-3.561439,2.0012016,-1.448663,1.1879896,-1.057625,1.0043387,-1.0107023,-2.9069178,1.797875,-1.3570515,1.1418071,-1.0361859,1.000349,-1.0229499,1.1110233,-1.2960722,1.6685544,-2.5438082,-1.0200273,1.0008067,-1.0401623,1.1506261,-1.3745018,1.8357236,-3.020449,10.137488,7.174623,-2.70633,1.7280564,-1.4699659,2.0502126,-3.7372665,31.026834,4.879437,-2.3228934,1.5831473,-1.2546937,1.0902897,-1.0148346,1.0022788,3.7092626,-2.04255,1.4666553,-1.197006,1.0619532,-1.0054982,1.0090479,-1.0736943,1.2211425,-1.5150785,2.1563423,1.0395405,-1.0007246,1.0204599,-1.1048725,1.2838389,-1.6431209,2.4765534,-5.678924,-16.236872,3.3809443,-1.9485651,1.3596705,-1.8035303,2.92366,-9.072801,-7.821967,2.7881284,-1.756996,1.3380007,-1.1321782,1.0319273,-1.0000579,1.0265383,2.3811624,-1.606201,1.2659454,-1.0959053,1.0169498,-1.0015593,1.0449728,-1.1611134,1.3952696,-1.8812906,3.161908,1.0067968,-1.007535,1.0689032,-1.2113432,1.4953698,-2.1095765,3.9610374,-60.312836,-4.540534,2.2493436,-1.5534905,1.6186672,-2.4130821,5.3323345,20.013247,-3.5132484,1.987385,-1.4426033,1.1849477,-1.0561732,1.0039709,-1.0113062,-2.8754272,1.7871679,-1.352082,1.1392951,-1.035066,1.0002509,-1.023844,1.1131963,-1.3003879,1.6775649,-2.5679462,-1.0192122,1.0009762,-1.0413675,1.153271,-1.3797373,1.8471563,-3.0554397,10.565542,6.9756856,-2.6792972,1.7183464,-1.4763646,2.0650697,-3.7921276,35.43997,4.787666,-2.30352,1.5753962,-1.2508976,1.0883999,-1.0141388,1.0025588,3.6568446,-2.0280633,1.4603758,-1.1938618,1.0604398,-1.0050825,1.0096025,-1.075391,1.2245985,-1.5220467,2.1730292,-4.2144103,-1.0005796,1.0213019,-1.1069697,1.2880131,-1.6517813,2.4993105,-5.809368,-15.244981,3.3376884,-1.9355831,1.41967,-1.8144798,2.9562955,-9.413726,-7.5857363,2.7593153,-1.7468772,1.3332525,-1.1297791,1.0308814,-1.0000228,1.0275034,2.3606977,-1.5981482,1.2620218,-1.0939448,1.0162035,-1.0017921,1.0462552,-1.1638803,1.4007536,-1.8934207,3.200481,1.0063331,-1.0080409,1.0705347,-1.2146873,1.5020876,-2.1254458,4.022981,-79.58376,-4.461232,2.2313101,-1.5461226,1.6269956,-2.4345696,5.446932,18.526495,-3.4664001,1.9737895,-1.4366171,1.1819403,-1.0547425,1.0036196,-1.011927,-2.8446572,1.7766159,-1.3471705,1.1368124,-1.0339653,1.000169,-1.0247562,1.1153957,-1.3047533,1.6867007,-2.592589,6.3818574,1.0011619,-1.0425925,1.1559467,-1.385035,1.8587625,-3.0913012,11.031526,6.787589,-2.6528413,1.7087725,-1.3152583,2.0801778,-3.8486857,41.317463,4.699357,-2.2845032,1.5677459,-1.2471446,1.086534,-1.0134603,1.0028552,-1.0514479,-2.0138128,1.4541733,-1.1907533,1.0589479,-1.0046834,1.0101742,-1.0771104,1.228094,-1.5291041,2.1900117,-4.2848825,-1.000451,1.0221618,-1.1090928,1.2922356,-1.6605605,2.522531,-5.9460444,-14.367519,3.2955773,-1.9228036,1.4139602,-1.825593,2.9897165,-9.781437,-7.363472,2.731135,-1.7369019,1.3285593,-1.1274083,1.0298542,-1.0000038,1.0284867,2.3406193,-1.5902013,1.2581428,-1.0920088,1.0154748,-1.0020411,1.0475578,-1.1666795,1.4063036,-1.9057391,3.2400596,1.005886,-1.0085636,1.0721887,-1.2180696,1.5088904,-2.1415906,4.0869603,-116.95451,-4.3847227,2.213599,-1.538849,1.2329125,-1.0794859,1.0109788,-1.004167,1.0569527,-1.1865819,-1.3551736,1.7938254,-2.8949754,8.786899,8.047324,-2.8145833,1.766216,-1.3423159,1.134359,-1.0328836,1.0001032,-1.0256865,1.1176218,-1.3091693,1.6959639,-2.617752,6.547619,11.735839,-3.1415339,1.8748336,-1.3923427,1.1596361,1.0678971,-1.007228,1.0070945,-1.0674556,1.2083699,-1.4894032,2.0955424,-3.9070208,49.532993,4.6143203,-2.2658343,1.5601946,-1.2434338,1.0846922,-1.0127989,1.0031679,-1.0528297,1.1779047,-1.4285911,1.9556434,-3.4047353,16.826708,5.611095,2.9036977,-1.7967844,1.356546,-1.1415515,1.0360717,-1.0003383,1.0230397,-1.111242,1.2965068,-1.6694607,2.5462282,-6.0894065,-13.585774,3.2545679,-1.9102224,1.4083188,-1.1676954,1.0480318,-1.0021348,1.0152166,-1.0913175,1.2567565,1.4706099,-2.0517046,3.7427435,-31.422766,-4.8699875,2.3209164,-1.5823582,1.2543077,-1.0900973,1.0147634,-1.0023065,1.0488805,-1.1695108,1.4119207,-1.9182498,3.280683,-14.07579,-5.996881,2.5310097,-1.663752,1.2937682,-1.1098639,-1.0394207,1.0007092,-1.0205443,1.1050836,-1.2842591,1.643992,-2.4788356,5.691853,16.130657,-3.3765137,1.9472421,-1.4248611,1.1760279,-1.0519432,1.0029659,-1.0132201,1.085868,-1.2458032,1.565015,-2.27774,4.6683636,43.94226,-3.8694863,-2.3790736,1.6053813,-1.2655463,1.0957057,-1.0168735,1.001582,-1.0451016,1.161392,-1.3958216,1.8825097,-3.1657667,12.099363,6.4405684,-2.6015906,1.6900221,-1.3063378,1.1161944,-1.0250891,1.0001435,-1.0335735,1.1359255,-1.3454156,-1.619505,2.4152374,-5.343707,-19.85202,3.5084476,-1.9859991,1.4419943,-1.1846418,1.0560275,-1.0039345,1.0113682,-1.0806183,1.2352052,-1.5434921,2.224895,-4.433363,-89.933136,4.045784,-2.1312284,1.5045277,-1.215901,1.0711279,1.0191308,-1.0009942,1.0414907,-1.1535403,1.3802705,-1.8483227,3.0590286,-10.61089,-6.9561744,2.6765943,-1.7173716,1.3193347,-1.1227504,1.0278554,-1.0000141,1.0305094,-1.128922,1.3315561,-1.7432681,2.7490942,-7.504144,-9.542911,2.96824,2.0266106,-1.4597447,1.1935457,-1.060288,1.0050414,-1.0096595,1.0755639,-1.2249504,1.5227567,-2.174734,4.221433,-1923.4578,-4.239515,2.179111,-1.5245781,1.2258528,-1.0760076,1.0098064,-1.0049368,1.0599002,-1.1927383,1.4581332,1.8155969,-2.9596412,9.449666,7.5626316,-2.7564352,1.7458612,-1.3327751,1.1295379,-1.0307766,1.0000201,-1.027602,1.1221554,-1.3181559,1.714883,-2.6697037,6.90674,10.728741,-3.0682535,1.851316,-1.3816379,1.1542311,-1.0418065,-1.0062871,1.0080931,-1.0707011,1.2150278,-1.5027721,2.127067,-4.0293612,82.24296,4.453366,-2.2295036,1.5453824,-1.2361379,1.0810792,-1.0115278,1.0038425,-1.0556556,1.1838607,-1.440439,1.9824632,-3.4962242,19.451033,5.3730373,-2.4207726,-1.7755567,1.3466766,-1.136563,1.033855,-1.0001616,1.0248494,-1.1156198,1.3051978,-1.6876322,2.5951114,-6.398244,-12.2529955,3.1756866,-1.8856379,1.3972372,-1.1621063,1.0454323,-1.0016413,1.016679,-1.0951964,1.2645272,-1.6032884,-2.0817208,3.8545065,-42.022724,-4.690606,2.2825985,-1.5669774,1.2467672,-1.0863466,1.0133926,-1.002886,1.0515869,-1.1752722,1.4233596,-1.943866,3.3652306,-15.865079,-5.725213,2.484697,-1.6462265,1.2853367,-1.1056249,1.0207611,1.0004388,-1.0222498,1.1093092,-1.2926655,1.6614556,-2.5249069,5.9602394,14.284334,-3.2913783,1.9215215,-1.4133862,1.1702493,-1.0492263,1.0023779,-1.014582,1.0896063,-1.2533216,1.580344,-2.3158743,4.845974,32.48359,-3.7568343,-2.3386085,1.5894028,-1.2577527,1.0918143,-1.0154021,1.0020672,-1.0476907,1.1669645,-1.4068689,1.9069961,-3.244122,13.397043,6.1276817,-2.5524442,1.6717852,-1.2976208,1.1118029,-1.0232699,1.0003119,-1.0357803,1.140899,-1.355255,1.7940009,2.4587252,-5.579069,-17.125828,3.4162984,-1.9590681,1.430109,-1.1786683,1.053191,-1.0032516,1.0126305,-1.0842191,1.2424798,-1.5582551,2.2610552,-4.59281,-52.222126,3.922427,-2.0995638,1.4911155,-1.2092234,1.0678709,-1.00722,-1.0013852,1.0439643,-1.1589292,1.3909422,-1.871748,3.1318376,-11.594869,-6.5919757,2.6243548,-1.6983838,1.3103213,-1.1182027,1.0259304,-1.0000889,1.0326066,-1.1337283,1.3410679,-1.7635474,2.8069062,-7.981064,-8.867394,2.9031782,1.9983872,-1.4474307,1.187371,-1.0573295,1.0042629,-1.0108231,1.0790304,-1.2319894,1.5369805,-2.209064,4.365347,133.14565,-4.1038723,2.1458173,-1.5106661,1.2189517,-1.0726206,1.0087017,-1.0057728,1.0629327,-1.1990366,1.4707139,-2.051946,-3.0274615,10.221284,7.1334414,-2.7008116,1.7260802,-1.3234538,1.12483,-1.0287445,1.0000014,-1.0295912,1.1267989,-1.3273529,1.7343417,-2.7239382,7.30804,9.881416,-2.9985027,1.8284979,-1.3711845,1.1489497,-1.0394013,1.0007067,1.0091587,-1.0740359,1.2218387,-1.5164816,2.159696,-4.1598883,242.19856,4.3035293,-2.1944587,1.5309464,-1.2290056,1.0775594,-1.0103248,1.0045826,-1.058565,1.1899542,-1.4525795,2.0101602,-3.593004,23.046967,5.154676,-2.3787367,-1.7549366,1.3370353,-1.1316904,1.0317142,-1.0000495,1.0267321,-1.1201046,1.3140916,-1.706315,2.6460822,-6.7405396,-11.159003,3.1007338,-1.8617967,1.3864173,-1.1566446,1.042913,-1.0012127,1.0182115,-1.0991739,1.2724771,-1.6196405,2.415586,3.9734144,-63.420788,-4.524252,2.2456677,-1.5519917,1.2393961,-1.0826913,1.0120906,-1.0035312,1.0543753,-1.1811671,1.4350789,-1.970304,3.45448,-18.17686,-5.47743,2.440203,-1.6291705,1.2770962,-1.1014888,1.0191176,-1.0009972,-1.0240272,1.1136392,-1.3012673,1.6794037,-2.5728924,6.255612,12.8180065,-3.210632,1.8965924,-1.4021845,1.1646022,-1.0465906,1.001855,-1.0160133,1.0934411,-1.2610132,1.5960802,-2.3554616,5.037971,25.766268,-3.6507847,2.026376,1.5738398,-1.2501347,1.0880203,-1.014,1.0026175,-1.0503604,1.1726667,-1.4181848,1.9322544,-3.3266752,15.007607,5.8441463,-2.5052786,1.6540434,-1.2891018,1.107517,-1.0215229,1.0005448,-1.0380636,1.1459904,-1.3653282,1.8157778,-2.9601824,-5.836512,-15.058832,3.3290746,-1.9329803,1.4185089,-1.1728299,1.0504372,-1.002634,1.0139614,-1.0879143,1.2499217,-1.5734055,2.2985613,-4.764473,-36.795364,3.8066077,-2.0689578,1.4780347,-1.2026958,1.0647022,-1.0062797,1.0081015,1.0465173,-1.1644443,1.4018716,-1.8958983,3.2084086,-12.780903,-6.2643995,2.5742786,-1.6799186,1.3015136,-1.1137632,1.0240785,-1.0002282,1.0347792,-1.1386495,1.3508046,-1.7844205,2.8673909,-8.523306,-8.281691,2.8410866,-1.7753857,-1.4354146,1.1813358,-1.0544554,1.0035504,-1.0120547,1.0825891,-1.2391901,1.5515734,-2.2446425,4.5197215,64.347755,-3.9768884,2.1136599,-1.4971014,1.2122055,-1.0693235,1.0076644,-1.0066752,1.0660516,-1.2054799,1.4836102,-2.0819702,-3.0986679,11.130901,6.7507625,-2.6475558,1.7068512,-1.3143462,1.1202329,-1.0267863,1.0000473,-1.0316547,1.1315542,-1.3367659,1.7543617,-2.780605,7.7593803,9.158681,-2.9320376,1.8063504,-1.3609748,1.1437901,-1.037074,1.0004369,-1.022264,-1.0774612,1.2288063,-1.5305433,2.1934853,-4.2994413,-256.30017,4.1637077,-2.1606357,1.5168746,-1.2220336,1.0741315,-1.0091898,1.005389,-1.0615592,1.1961883,-1.4650217,2.0387757,-3.6955392,28.276249,4.9536767,-2.338284,1.5892739,1.3276161,-1.1269319,1.0296485,-1.0000019,1.0286881,-1.1246984,1.3231933,-1.7255287,2.699273,-7.1220145,-10.244958,3.0294282,-1.8386678,1.3758516,-1.1513081,1.0404725,-1.000849,1.0198145,-1.1032518,1.2806107,-1.6364361,2.4590878,4.100165,-129.23677,-4.369565,2.2100532,-1.5373882,1.2321908,-1.0791297,1.010857,-1.0042418,1.057247,-1.1871985,1.4470868,-1.997602,3.5488276,-21.278893,-5.25053,2.3974266,-1.6125673,1.269042,-1.0974542,1.0175451,-1.0013887,1.0439848,1.1180756,-1.3100693,1.6978544,-2.6229093,6.5822325,11.625377,-3.1339502,1.872421,-1.391248,1.1590835,-1.0440353,1.0013973,-1.0175141,1.0973741,-1.2688819,1.6122378,-2.3965833,5.246162,21.3522,-3.5507805,1.9981601,-1.4473313,-1.242688,1.0843223,-1.0126672,1.0032332,-1.0531119,1.1785012,-1.429777,1.9583187,-3.413765,17.05957,5.586034,-2.4599805,1.6367786,-1.2807761,1.1033349,-1.0198474,1.0008423,-1.0404242,1.151202,-1.3756417,1.8382096,-3.0280297,-6.1192784,-13.437825,3.2463982,-1.9077,1.4071853,-1.167124,1.0477651,-1.0020819,1.0153614,-1.0917057,1.2575349,-1.588957,2.337486,-4.9497976,-28.405905,3.6976638,-2.039361,1.465275,-1.1963152,1.0616204,-1.0054058,1.0091677,-1.0740635,-1.1700878,1.4130657,-1.9208057,3.2890353,-14.238245,-5.968206,2.5262375,-1.6619567,1.2929062,-1.1094302,1.022299,-1.0004321,1.037028,-1.1436875,1.360772,-1.8059115,2.9307327,-9.145232,-7.7690372,2.781771,-1.7547703,1.3369573,1.1754371,-1.0516646,1.0029035,-1.0133548,1.086242,-1.2465563,1.5665481,-2.2815351,4.685728,42.42764,-3.857769,2.0825846,-1.4838729,1.205611,-1.0661154,1.006694,-1.0076442,1.0692582,-1.2120714,1.496832,-2.1130245,3.974418,12.219097,6.4074426,-2.596524,1.6881535,-1.3054466,1.1157451,-1.0249017,1.0001576,-1.0337934,1.1364235,-1.3464007,1.774965,-2.8398669,8.270708,8.534975,-2.8686361,1.7848467,-1.3510028,1.1387496,-1.0348237,1.0002316,-1.024042,1.113675,1.2359338,-1.5449687,2.2284946,-4.44898,-83.80865,4.0329375,-2.1279747,1.5031551,-1.2152183,1.0707942,-1.0081222,1.0062615,-1.0646392,1.2025661,-1.4777749,2.0683527,-3.8043509,36.578053,4.7680607,-2.29933,1.5737144,-1.2500731,-1.1222852,1.0276573,-1.0000187,1.0307181,-1.1294032,1.3325084,-1.7452937,2.7548277,-7.549775,-9.469881,2.9615154,-1.8162223,1.3655334,-1.146094,1.0381104,-1.0005502,1.0214884,-1.1074319,1.2889326,-1.6536915,2.5043495,-5.8387165,3416.1533,-4.22537,2.1756887,-1.5231541,1.2251474,-1.0756607,1.0096915,-1.0050185,1.0602031,-1.193369,1.4593922,-2.0257995,3.6487153,-25.659557,-5.0419927,2.3562732,-1.596401,1.2611697,-1.0935192,1.0160427,-1.0018451,1.0465385,1.1226203,-1.3190769,1.7168269,-2.6750855,6.945313,10.6364155,-3.061039,1.8489758,-1.3805689,1.153691,-1.0415596,1.0010045,-1.0190853,1.1014067,-1.2769324,1.6288322,-2.439326,5.4726696,18.230307,-3.456326,1.9708445,-1.4353175,1.181287,1.0807188,-1.011403,1.0039144,-1.0559462,1.1844709,-1.4416541,1.9852254,-3.5057695,19.763008,5.350087,-2.416444,1.6199739,-1.2726389,1.099255,-1.0182431,1.0012047,-1.042863,1.1565361,-1.3862023,1.8613245,-3.0992646,11.139007,-12.132597,3.1679282,-1.8831922,1.3961304,-1.1615479,1.0451739,-1.0015949,1.0168309,-1.0955943,1.2653234,-1.6049234,2.3779078,-5.150469,-23.133001,3.5950081,-2.0107267,1.4528267,-1.1900781,1.0586244,-1.0045983,1.0103014,-1.0774896,-1.1758627,1.4245327,-1.9465034,3.374042,-16.071878,-5.699107,2.4801137,-1.6444796,1.2844943,-1.1052016,1.0205916,-1.0007006,1.0393537,-1.1488448,1.3709767,-1.8280458,2.997134,-9.86575,-7.316595,2.7250535,-1.7347388,1.32754,-1.1268935,-1.0489558,1.002322,-1.0147237,1.0899899,-1.254092,1.5819175,-2.3198128,4.8647203,31.648571,-3.7458122,2.05254,-1.4709702,1.1991647,-1.0629946,1.0057904,-1.0086802,1.0725534,-1.2188145,1.5103899,-2.1451595,4.1012354,-130.34254,6.097728,-2.5475833,1.6699678,-1.2967498,1.1113644,-1.0230898,1.0003325,-1.0360079,1.1414088,-1.3562636,1.7961754,-2.9019008,8.854793,7.9912853,-2.808096,1.7639613,-1.3412616,1.1338261,-1.0326494,1.0000911,-1.0258924,1.1181124,1.2432252,-1.5597703,2.2647884,-4.609603,-50.09659,3.910376,-2.0964193,1.4897768,-1.208556,1.0675462,-1.0071218,1.0072005,-1.0678062,1.2090906,-1.4908491,2.098938,-3.920025,51.785393,4.596138,-2.2617965,1.558556,-1.2426277,1.0842924,1.0257397,-1.0001,1.032823,-1.1342211,1.3420429,-1.7656323,2.8129022,-8.032754,-8.804359,2.8967633,-1.7944325,1.3554553,-1.1410002,1.0358255,-1.0003159,1.023234,-1.1117157,1.2974476,-1.6714236,2.5514765,-6.121704,-13.426016,-4.090643,2.1425126,-1.5092779,1.2182621,-1.0722829,1.0085937,-1.005861,1.0632443,-1.199682,1.4720044,-2.0549388,3.7546382,-32.31412,-4.849688,2.3166559,-1.5806563,1.2534746,-1.0896825,1.01461,-1.0023667,1.0491724,-1.1701345,-1.3282955,1.7363417,-2.7295592,7.351289,9.803106,-2.9916313,1.8262267,-1.3701403,1.1484222,-1.0391623,1.0006764,-1.0207273,1.1055406,-1.285169,1.6458789,-2.4837844,5.720005,15.905759,-3.3669782,1.9443893,-1.4235926,1.1753894,-1.0516421,-1.0102069,1.0046613,-1.0588641,1.1905786,-1.4538246,2.0130134,-3.6031098,23.486423,5.1335826,-2.3745728,1.603613,-1.2646853,1.0952754,-1.0167092,1.001632,-1.045381,1.1619952,-1.397017,1.8851511,-3.1741414,12.228873,6.4047813,3.0933566,-1.8594244,1.3853366,-1.156099,1.0426624,-1.0011729,1.0183705,-1.099582,1.2732917,-1.6213197,2.4199107,-5.3684597,-19.512255,3.4981174,-1.9830116,1.4406803,-1.1839818,1.0557133,-1.0038567,1.0115029,-1.0810075,1.2359928,1.4362806,-1.9730266,3.4637885,-18.448965,-5.4535656,2.435798,-1.62747,1.2762728,-1.101076,1.0189553,-1.0010338,1.0417573,-1.1541237,1.3814254,-1.8508503,3.0668166,-10.710262,-6.914373,2.6707714,-1.7152689,1.3183388,-1.1222478,-1.0463284,1.0018057,-1.0161619,1.0938345,-1.2618012,1.5976957,-2.3595514,5.058269,25.23823,-3.6403987,2.0234787,-1.4583831,1.1928635,-1.0599602,1.004953,-1.0097835,1.0759386,-1.2257124,1.5242947,-2.1784298,4.2366953,2790.3887,-4.2242312,-2.5006118,1.652275,-1.2882507,1.1070892,-1.02135,1.000572,-1.038299,1.1465123,-1.3663609,1.8180172,-2.9669008,9.528305,7.51317,-2.7502317,1.7436703,-1.3317451,1.1290176,-1.0305507,1.0000149,-1.0278159,1.1226579,-1.3191513,-1.5749607,2.3024344,-4.782579,-35.727493,3.7952814,-2.0659177,1.476729,-1.2020435,1.0643862,-1.0061883,1.0082062,-1.0710615,1.2157651,-1.5042546,2.130581,-4.043224,88.64552,4.4364586,-2.2256093,1.5437855,-1.2353499,1.0806897,1.0238951,-1.0002459,1.0350032,-1.139154,1.3518026,-1.7865667,2.8736675,-8.582342,-8.226733,2.8349612,-1.7732723,1.3456112,-1.1360244,1.0336171,-1.0001463,1.0250518,-1.116105,1.3061606,-1.6896502,2.600582,-6.4339566,-12.122974,3.167303,-1.8829948,1.3960413,-1.1615028,1.045153,-1.0015912,1.0168432,-1.0956265,1.2653878,-1.6050556,2.3782446,-5.152178,11.232091,6.714337,-2.642293,1.7049353,-1.3134363,1.119774,-1.0265924,1.0000556,-1.0318677,1.1320418,-1.3377305,1.7564198,-2.7864811,7.8082066,9.091425,-2.925486,1.8041455,-1.3599551,1.1432747,-1.0368428,1.0004132,-1.0224407,1.1097776,-1.2935966,1.6633946,-2.5300596,5.991159,14.107785,-3.2823396,1.9187572,-1.412148,1.1696254,-1.0489341,1.0023174,-1.0147351,1.0900209,-1.2541543,1.582045,-2.3201315,4.866241,31.582987,-3.7449253,2.0522985,-1.4708661,1.3266752,-1.1264566,1.0294436,-1.0000006,1.0288901,-1.1251694,1.3241261,-1.7275034,2.7047849,-7.1630626,-10.160774,3.0224059,-1.8363659,1.3747965,-1.1507748,1.0402299,-1.0008159,1.0199807,-1.1036702,1.2814441,-1.638161,2.463586,-5.6060953,-16.872486,3.406526,-1.9561744,1.4288266,-1.1780231,1.0528858,-1.0031809,1.0127727,-1.0846186,1.2432854,-1.5598929,2.2650905,-4.6109653,-49.932407,3.9094055,-2.096166,1.489669,-1.2085023,1.06752,-1.0071139,1.0072085,-1.0678325,1.1185306,-1.3109714,1.6997502,-2.6280887,6.617219,11.516981,-3.1264055,1.8700161,-1.3901557,1.1585321,-1.0437813,1.0013546,-1.0176699,1.0977776,-1.2696882,1.613897,-2.4008331,5.268211,20.988428,-3.540978,1.995356,-1.4461021,1.1867043,-1.0570111,1.0041819,-1.0109545,1.079415,-1.2327689,1.5385582,-2.2128932,4.381701,119.206345,-4.0895777,2.142246,-1.5091659,1.2182064,-1.0722556,1.008585,-1.0058683,1.0632696,-1.1997341,1.4721087,-2.055181,3.7555304,-32.382782,-13.293075,3.238272,-1.9051853,1.4060546,-1.1665539,1.0474992,-1.0020297,1.015507,-1.0920947,1.258315,-1.5905535,2.341507,-4.9693756,-27.765396,3.686999,-2.0364203,1.4640014,-1.1956775,1.0613133,-1.0053211,1.0092794,-1.074406,1.2225931,-1.5180022,2.163334,-4.174695,307.63748,4.2877684,-2.1907012,1.5293899,-1.2282355,1.07718,-1.0101974,1.0046676,-1.0588883,1.190629,-1.4539254,2.0132444,-3.6039286,23.52266,5.131886,-2.374237,1.603481,-1.264621,1.1748477,-1.0513867,1.0028417,-1.0134902,1.0866169,-1.2473111,1.5680852,-2.2853441,4.703226,41.013977,-3.8461254,2.0794983,-1.4825526,1.204952,-1.0657955,1.0065995,-1.007746,1.0695876,-1.2127469,1.4981885,-2.1162262,3.986881,-67.16127,-4.5067887,2.2417097,-1.5503762,1.2386001,-1.0822972,1.0119523,-1.0036057,1.0546854,-1.18182,1.4363779,-1.9732472,3.4645426,-18.471302,-5.451647,2.435443,-1.6273328,1.2762064,-1.1010426,1.0189422,-1.0010369,1.0417773,-1.1541672,1.236664,-1.5464493,2.2321079,-4.4647098,-78.465195,4.020175,-2.124732,1.501786,-1.2145373,1.0704615,-1.0080179,1.0063534,-1.0649557,1.2032195,-1.4790831,2.071401,-3.8157337,37.698193,4.7500668,-2.2954688,1.5721624,-1.249312,1.0876112,-1.0138509,1.0026817,-1.0506574,1.1732982,-1.419439,1.9350652,-3.3359725,15.207614,5.814743,-2.5002356,1.6521323,-1.288182,1.1070546,-1.0213361,1.0005741,-1.038318,1.1465545,-1.3664443,1.8181986,-2.9674451,9.534235,7.509499,-4.211322,2.1722784,-1.521734,1.2244436,-1.0753148,1.0095774,-1.0051007,1.0605069,-1.1940013,1.4606544,-2.0287044,3.6591506,-26.205578,-5.021827,2.352196,-1.5947888,1.260383,-1.0931265,1.0158945,-1.001895,1.0468013,-1.1650552,1.4030827,-1.898585,3.2170234,-12.925554,-6.230562,2.5689278,-1.67793,1.3005625,-1.1132842,1.0238804,-1.0002474,1.0350213,-1.1391946,1.3518834,-1.7867404,2.8741758,-8.587147,-8.222326,2.8344674,-1.7731019,1.3455316,-1.1359842,1.0803593,-1.0112789,1.003987,-1.0562376,1.1850827,-1.442872,1.9879966,-3.5153697,20.085167,5.3273363,-2.412133,1.6182983,-1.2718257,1.0988477,-1.0180846,1.001245,-1.0431143,1.1570828,-1.3872849,1.8637028,-3.1066713,11.240345,6.711412,-2.6418688,1.7047807,-1.3133628,1.1197369,-1.0265768,1.0000561,-1.0318849,1.1320813,-1.3378086,1.7565862,-2.786957,7.8121786,9.086035,-2.924958,1.8039676,-1.3598728,1.1432331,-1.0368242,1.0004113,-1.022455,1.1098126,-1.2936664,1.4257085,-1.949149,3.3829014,-16.28415,-5.673243,2.4755487,-1.6427374,1.2836536,-1.1047795,1.0204227,-1.0007313,1.0395935,-1.1493734,1.3720227,-1.8303225,3.0040324,-9.945074,-7.2737565,2.7194524,-1.7327435,1.3265992,-1.1264182,1.0294272,-1.0000006,1.0289065,-1.1252074,1.3242016,-1.7276632,2.7052312,-7.166399,-10.154034,3.02184,-1.8361803,1.3747113,-1.1507318,1.0402105,-1.0008132,1.0199941,-1.103704,1.2815115,-1.6383007,2.4639502,-5.608126,-16.853851,6.068068,-2.5427427,1.6681552,-1.2958809,1.1109271,-1.0229106,1.0003538,-1.0362363,1.1419197,-1.3572747,1.7983564,-2.90834,8.91856,7.9401307,-2.8021216,1.7618814,-1.3402884,1.1333343,-1.0324337,1.0000805,-1.0260837,1.1185675,-1.3110443,1.6999036,-2.628508,6.620062,11.508314,-3.1257977,1.869822,-1.3900676,1.1584877,-1.0437608,1.0013511,-1.0176826,1.0978101,-1.2697533,1.6140311,-2.4011772,5.270001,20.959583,-3.5401886,1.9951298,-1.4460031,1.1866546,-1.0569874,1.0255498,-1.0001118,1.0330402,-1.134715,1.3430202,-1.7677231,2.8189259,-8.085122,-8.74222,2.8903787,-1.792263,1.3544487,-1.1404914,1.0355986,-1.0002958,1.0234147,-1.112155,1.2983202,-1.6732452,2.5563536,-6.1518984,-13.281517,3.2376173,-1.9049826,1.4059634,-1.166508,1.0474778,-1.0020255,1.0155187,-1.0921261,1.258378,-1.5906826,2.3418324,-4.9709644,-27.71491,3.6861405,-2.036183,1.4638985,-1.1956261,1.0612885,-1.0053144,1.0092884,-1.0744337,1.2226496,-1.518116,1.7383475,-2.7352054,7.395057,9.726033,-2.9847934,1.8239623,-1.3690987,1.1478958,-1.0389241,1.0006468,-1.0208974,1.1059647,-1.2860131,1.6476297,-2.4883826,5.7463055,15.703196,-3.3582056,1.9417589,-1.4224219,1.1748002,-1.0513643,1.0028367,-1.0135012,1.0866472,-1.2473722,1.5682094,-2.2856526,4.704645,40.90388,-3.845188,2.0792494,-1.4824461,1.2048988,-1.0657697,1.0065919,-1.0077543,1.0696143,-1.2128015,1.4982982,-2.1164854,3.9878917,-67.45866,-4.5054893,3.086017,-1.8570594,1.3842586,-1.1555545,1.0424128,-1.0011338,1.0185302,-1.0999911,1.2741082,-1.6230034,2.4242527,-5.3915706,-19.208096,3.4886155,-1.9802567,1.4394677,-1.1833726,1.0554234,-1.0037853,1.0116283,-1.0813686,1.2367232,-1.546569,2.2324002,-4.4659853,-78.063126,4.019148,-2.1244707,1.5016756,-1.2144823,1.0704347,-1.0080096,1.0063609,-1.0649813,1.2032725,-1.479189,2.071648,-3.8166564,37.791687,4.748619,-2.2951574,1.5720371,-1.2492505,1.0875807,-1.0138398,1.001757,-1.0163113,1.0942291,-1.2625912,1.5993156,-2.3636572,5.078735,24.731417,-3.6300743,2.020591,-1.4571266,1.1922338,-1.0596579,1.004872,-1.0098989,1.0762862,-1.2264193,1.5257215,-2.1818619,4.2509184,853.9734,-4.2101912,2.1720035,-1.5216194,1.2243867,-1.0752869,1.0095682,-1.0051074,1.0605315,-1.1940525,1.4607564,-2.0289397,3.6599963,-26.250706,-5.0202055,2.3518672,-1.5946587,1.2603195,-1.0930948,1.0158826,-1.001899,1.0468225,-1.1651009,1.4031733,-1.5765201,2.306322,-4.800826,-34.719875,3.7840245,-2.062888,1.4754267,-1.2013928,1.0640714,-1.0060974,1.0083119,-1.0713958,1.2164491,-1.50563,2.1338437,-4.0561376,95.5264,4.420932,-2.22202,1.5423119,-1.2346226,1.0803304,-1.0112689,1.0039928,-1.0562612,1.1851321,-1.4429706,1.9882208,-3.5161476,20.11165,5.3255067,-2.4117856,1.6181631,-1.2717601,1.0988148,-1.0180719,1.0012484,-1.0431346,1.157127,-1.3873725,1.863895,-3.1072714,11.248612,6.7084894,-2.641445,2.1072853,-1.4943973,1.2108588,-1.0686672,1.0074626,-1.0068659,1.0666935,-1.2068018,1.4862595,-2.0881703,3.8789277,-45.23618,-4.6545453,2.2747095,-1.5637895,1.2452011,-1.085569,1.0131127,-1.0030165,1.052167,-1.1765022,1.4258037,-1.9493632,3.3836195,-16.30154,-5.671164,2.4751809,-1.6425968,1.2835859,-1.1047455,1.0204091,-1.000734,1.0396129,-1.1494161,1.3721074,-1.8305067,3.004591,-9.951538,-7.2703176,2.719001,-1.7325824,1.3265233,-1.12638,1.0294106,-1.0000005,1.0055602,-1.0621755,1.1974673,-1.4675773,2.0446825,-3.717036,29.637451,4.914928,-2.3302822,1.586092,-1.2561342,1.0910074,-1.0151011,1.0021777,-1.048246,1.1681542,-1.409229,1.9122492,-3.2611446,13.706694,6.065685,-2.5423524,1.6680092,-1.2958108,1.1108917,-1.022896,1.0003555,-1.0362546,1.1419611,-1.3573564,1.7985328,-2.9088614,8.923752,7.9360266,-2.8016405,1.7617136,-1.34021,1.1332947,-1.0324163,1.0000796,-1.0260992,1.1186042,-1.3111173,1.7000571,-2.0032349,3.5685809,-22.040308,-5.2069173,2.3889697,-1.6092608,1.2674342,-1.0966499,1.0172354,-1.0014758,1.0444951,-1.16008,1.393222,-1.8767718,3.147638,-11.825876,-6.5201507,2.6136355,-1.6944531,1.3084499,-1.117259,1.0255344,-1.0001129,1.0330577,-1.1347549,1.3430992,-1.7678922,2.8194137,-8.089383,-8.737239,2.8898642,-1.792088,1.3543675,-1.1404504,1.0355803,-1.0002942,1.0234293,-1.1121905,1.2983906,-1.6733925,2.5567484,-6.1543508,-13.26998,3.2369628,-1.9047799,1.633341,-1.2791142,1.102501,-1.0195171,1.0009104,-1.0409116,1.1522715,-1.3777589,1.8428317,-3.0421653,10.400184,7.049264,-2.6894064,1.721986,-1.3215185,1.1238528,-1.028326,1.0000057,-1.0300195,1.1277908,-1.3293166,1.7385098,-2.7356625,7.398616,9.71986,-2.9842424,1.8237797,-1.3690146,1.1478534,-1.0389049,1.0006444,-1.0209112,1.105999,-1.2860814,1.6477714,-2.488755,5.7484407,15.6870575,-3.357499,1.9415467,-1.4223275,1.1747526,-1.0513419,1.0028317,-1.0135121,1.0374925,-1.1447216,1.3628179,-1.8103385,2.9439178,-9.282385,-7.6729693,2.770088,-1.75067,1.3350338,-1.130679,1.031273,-1.0000341,1.0271378,-1.1210628,1.3159906,-1.7103158,2.657093,-6.8173904,-10.953179,3.0854256,-1.8568684,1.3841717,-1.1555107,1.0423926,-1.0011307,1.0185431,-1.1000241,1.2741742,-1.6231395,2.4246042,-5.3934464,-19.183939,3.48785,-1.9800345,1.4393698,-1.1833235,1.0553999,-1.0037795,1.0116384,-1.0813979,1.2367823,-1.5466889,2.232693,-2.8521917,8.382571,8.419007,-2.8561592,1.7805707,-1.3490129,1.1377437,-1.0343775,1.000198,-1.0244106,1.1145645,-1.3031038,1.6832461,-2.5832508,6.3216286,12.546912,-3.1941586,1.891441,-1.3998599,1.1634295,-1.0460459,1.0017532,-1.0163234,1.0942609,-1.262655,1.5994468,-2.3639896,5.080395,24.69136,-3.6292431,2.020358,-1.4570253,1.192183,-1.0596335,1.0048655,-1.0099082,1.0763143,-1.2264764,1.5258371,-2.1821396,4.2520714,808.6409,-4.209061,2.1717286,-1.5215049,1.3634745,-1.1450534,1.0376418,-1.0004975,1.0218359,-1.1082904,1.2906401,-1.6572411,2.5137331,-5.8938265,-14.685738,3.3113005,-1.9275917,1.4161019,-1.1716175,1.0498677,-1.0025123,1.0142504,-1.0887046,1.2515104,-1.5766461,2.3066368,-4.8023067,-34.640953,3.7831182,-2.0626438,1.4753217,-1.2013402,1.0640459,-1.0060902,1.0083203,-1.0714229,1.2165045,-1.5057412,2.1341078,-4.0571847,96.12918,4.4196825,-2.2217305,1.5421929,-1.234564,1.0803014,-1.0112588,1.0039988,-1.0194119,1.1022351,-1.2785842,1.6322452,-2.448182,5.520956,17.706497,-3.437845,1.9654223,-1.4329215,1.1800827,-1.0538609,1.0034087,-1.0123228,1.0833504,-1.2407272,1.5546943,-2.2522988,4.5536666,58.034184,-3.951178,2.1070287,-1.4942884,1.2108045,-1.0686407,1.0074545,-1.0068737,1.0667195,-1.2068554,1.4863667,-2.0884218,3.8798823,-45.37088,-4.6531563,2.2744045,-1.5636662,1.2451406,-1.085539,1.0131018,-1.0030216,1.0521897,-1.17655,1.4258988,-1.9495773,3.3843377,-5.193119,-22.29557,3.5749493,-2.0050447,1.4503444,-1.1888331,1.0580285,-1.0044428,1.010539,-1.078194,1.2302936,-1.5335501,2.2007535,-4.3300633,-178.80931,4.1354504,-2.153664,1.5139569,-1.2205857,1.0734214,-1.0089594,1.0055672,-1.0622005,1.1975192,-1.4676808,2.0449219,-3.71791,29.695192,4.913376,-2.32996,1.5859637,-1.2560716,1.0909761,-1.0150895,1.002182,-1.0482677,1.1682005,-1.409321,1.9124539,-3.2618093,13.719005,6.063304,-2.5419624,1.6678629,-1.2957407,1.1978779,-1.0623735,1.0056156,-1.008898,1.0732312,-1.2201979,1.5131756,-2.1517994,4.127925,-165.37448,-4.3383684,2.2027156,-1.5343608,1.2306945,-1.0783917,1.010606,-1.0043999,1.0578624,-1.1884861,1.4496527,-2.003463,3.5693834,-22.07221,-5.205171,2.3886297,-1.6091275,1.2673694,-1.0966175,1.0172229,-1.0014794,1.0445158,-1.1601248,1.3933105,-1.8769675,3.1482546,-11.8350315,-6.5173936,2.6132214,-1.694301,1.3083773,-1.1172224,1.025519,-1.0001138,1.0330753,-1.0684578,1.2104292,-1.4935352,2.105255,-3.9443288,56.54351,4.5628767,-2.2543662,1.5555357,-1.2411416,1.0835557,-1.0123953,1.0033711,-1.0537018,1.1797469,-1.432254,1.9639128,-3.4327154,17.565414,5.53461,-2.4506705,1.6332024,-1.2790473,1.1024674,-1.0195037,1.0009133,-1.0409312,1.1523148,-1.3778446,1.843019,-3.0427392,10.407256,7.0460362,-2.6889656,1.7218277,-1.3214437,1.123815,-1.0283098,1.000006,-1.0300362,1.1278294,-1.3293931,1.7386721,-2.7361197,7.402178,-34.10442,-4.8125772,2.3088176,-1.57752,1.2519385,-1.0889177,1.0143286,-1.0024801,1.0497154,-1.1712928,1.4154572,-1.9261496,3.3065586,-14.588625,-5.9094214,2.51637,-1.658237,1.2911189,-1.1085312,1.0219337,-1.0004833,1.0375112,-1.1447635,1.3629007,-1.8105178,2.9444528,-9.288011,-7.6691394,2.7696183,-1.7505047,1.3349563,-1.1306399,1.031256,-1.0000336,1.0271536,-1.1211,1.3160645,-1.7104716,2.6575224,-6.82041,-10.945342,3.0848343,-1.8566779,1.3840847,-1.2630975,1.0944821,-1.0164073,1.0017263,-1.0459002,1.1631155,-1.3992373,1.8900626,-3.1897628,12.47602,6.3396077,-2.5860496,1.6842825,-1.3035988,1.1148138,-1.0245142,1.0001891,-1.0342534,1.1374635,-1.3484583,1.7793798,-2.852692,8.387154,8.41439,-2.8556573,1.7803984,-1.3489327,1.1377033,-1.0343596,1.0001967,-1.0244255,1.1146004,-1.3031752,1.6833959,-2.5836549,6.3242197,12.53662,-3.1935227,1.8912417,-1.3997699,1.1633841,-1.0460249,1.0017493,-1.0163356,1.094293,-1.1552069,1.3835703,-1.8555497,3.0813396,-10.899167,-6.8383436,2.6600683,-1.7113948,1.3165025,-1.121321,1.0272474,-1.0000305,1.0311551,-1.1304082,1.3344976,-1.7495278,2.766841,-7.64654,-9.321468,2.9476259,-1.8115808,1.3633915,-1.1450115,1.0376228,-1.0004954,1.02185,-1.1083252,1.2907093,-1.657385,2.514114,-5.8960743,-14.671627,3.3106146,-1.9273831,1.4160086,-1.1715707,1.0498457,-1.0025077,1.0142617,-1.0887355,1.2515721,-1.5767723,2.3069518,-4.8037877,-34.56239,7.4233418,-2.7388313,1.7396339,-1.329846,1.1280582,-1.0301352,1.0000074,-1.0282141,1.1235912,-1.3210002,1.7208903,-2.6863594,7.026986,10.449331,-3.0461419,1.8441287,-1.3783525,1.1525714,-1.0410483,1.00093,-1.0194252,1.1022687,-1.278651,1.6323833,-2.4485412,5.5229244,17.685974,-3.437103,1.965204,-1.432825,1.180034,-1.0538379,1.0034033,-1.0123332,1.0833801,-1.240787,1.5548158,-2.2525973,4.554995,57.813957,-3.950187,2.1067722,-1.4941795,1.2107502,-1.1350316,1.0331795,-1.0001198,1.0254285,-1.1170063,1.3079485,-1.6934007,2.6107714,-6.50112,-11.889531,3.1519122,-1.8781272,1.3938363,-1.1603901,1.0446384,-1.0015006,1.0171492,-1.0964257,1.2669861,-1.6083395,2.3866174,-5.1948566,-22.263018,3.574144,-2.004816,1.4502444,-1.1887829,1.0580044,-1.0044366,1.0105487,-1.0782226,1.2303516,-1.5336672,2.2010367,-4.3312616,-176.73482,4.1343613,-2.1533945,1.5138439,-1.2205297,1.0733938,-1.0089506,1.0055741,-1.0622256,1.1975709,-1.295326,1.6669981,-2.5396557,6.0492425,13.792358,-3.2657506,1.9136665,-1.4098653,1.1684749,-1.048396,1.0022079,-1.0150207,1.0907913,-1.2557007,1.5852053,-2.328056,4.9042063,30.041752,-3.7230923,2.046341,-1.468294,1.197826,-1.0623486,1.0056086,-1.008907,1.0732586,-1.220254,1.5132884,-2.1520686,4.129011,-167.18948,-4.3371663,2.202432,-1.5342436,1.2306365,-1.0783631,1.0105963,-1.0044061,1.0578864,-1.1885362,1.4497527,-2.0036914,3.5701866,-22.104206,-5.2034264,3.3885965,-1.9508466,1.4264625,-1.1768337,1.0523237,-1.003052],"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/secf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..462fd39dc112 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[-1.0059146,1.0086894,1.0355288,1.0830047,1.1559154,1.4324156,1.418085,2.0482087,2.0126855,4.0843105,-39.59929,-65.13148,-183.39764,224.77834,-1.9110959,-1.9425145,-1.9751801,-2.0091639,-1.136225,-1.1423827,-1.0012771,-1.0008252,-1.0004717,-1.0002165,-1.0000595,-1.0000005,-1.0000396,-2.2545598,-2.2104433,-2.1682289,-2.1278012,-2.0890546,-2.0518916,-2.0162215,-1.9819618,1.7939612,1.8209032,1.8488511,1.8778571,1.9079777,1.0051246,1.9718097,1.0033073,2.0408888,1.001889,2.1158435,1.0008664,2.5142794,1.0002378,2.4048958,1.000002,2.3054993,1.0001583,2.214827,-1.6487106,2.1318214,-1.6929864,2.0555897,-1.7404072,1.9853733,-1.791284,1.9205236,-1.8459704,-1.0074674,-1.9048715,-1.0052274,-1.9684528,-1.00339,-2.0372515,-1.0019513,-2.6416366,-1.0009087,-2.5201166,-1.0002604,-2.4101887,-1.0000045,-2.3103182,1.6052787,-2.219231,1.6465448,1.0207642,1.6906687,-2.0593033,-1.0029103,1.0133399,1.7886165,-1.9236907,3.2984855,1.0075917,1.9017774,-1.8074956,2.9354453,1.0034734,2.0336292,-1.4627914,2.6481373,1.0009521,2.1888144,-1.5286076,2.415507,1.0000081,-1.0301808,-1.6032586,2.2236543,1.0006337,-1.0209746,-1.6883593,2.0630324,-3.7845602,-1.0135071,-1.7859588,1.9268703,-3.308928,-1.0077171,-1.8986951,1.4031324,-2.9436016,-1.0035579,-2.0300217,1.4612262,-2.6546729,-1.0009965,-2.184546,1.5268364,-2.4208517,-1.0000126,1.0304374,1.6012452,-2.2280974,-1.0005984,1.0211862,1.6860578,-2.066777,3.7984793,1.0136755,1.7833108,-1.9300624,3.3194396,1.0078436,1.8956248,-1.4017481,2.9518063,1.0036435,2.0264292,-1.4596658,2.6612437,1.0010419,-1.041811,-1.5250709,2.4262223,1.0000181,-1.0306951,-1.5992384,2.2325606,-4.466685,-1.0213989,-1.6837641,2.0705373,-3.8125055,-1.0138448,1.0875945,1.933267,-3.3300219,15.079127,-1.8925666,1.4003681,1.0117265,-1.00373,1.055198,1.7142124,-2.6678495,6.8935137,-2.1760652,1.523311,-1.2252251,-1.0000247,1.030954,-1.129946,-2.237044,4.486292,-2.5784817,1.6814785,-1.3022592,-1.002611,1.0140153,-1.0880622,-1.9364841,3.340675,-15.310373,1.8895198,-1.3989921,1.1629918,1.0038177,-1.0555553,-1.7166125,2.674491,-6.94104,2.1718528,-1.5215566,1.2243556,1.0000323,-1.031214,1.1305436,2.2415478,-4.5060763,2.5723462,-1.6792008,1.3011702,1.0025387,-1.0141869,1.0885313,1.939714,-3.3514001,15.548839,-1.8864847,1.3976202,-1.1622995,-1.0039064,1.055914,1.719021,-2.6811686,6.9892335,-2.1676588,1.5198078,-1.2234886,-1.0000409,1.0314752,-1.131143,-2.2460723,4.5260406,63.062595,1.6769308,-1.3000844,-1.0024675,1.0143595,-1.0890018,-1.9429568,3.3621976,-15.794865,1.8834614,-1.3962524,1.1616094,1.003996,-1.0562742,-1.721438,2.687882,-7.038108,2.1634831,-1.5180646,1.2226241,1.0000504,-1.0317377,1.1317441,2.250617,-4.5461874,-59.308662,-1.6746687,1.2990018,1.0023973,-1.0145332,1.0894738,1.946212,-3.3730686,16.048819,-1.8804494,1.3948886,-1.1609212,-1.0040867,1.0566354,-1.185917,-2.6946318,7.0876775,-2.1593258,1.5163268,-1.221762,-1.000061,1.0320013,-1.1323471,-2.2551825,4.566519,55.976597,1.6724143,-1.2979221,1.1119547,1.014708,-1.0899476,-1.9494805,3.3840132,-16.311089,1.8774492,-1.393529,1.1602349,1.0041785,-1.0569981,1.186677,2.7014186,-7.1379576,2.1551864,-1.5145946,1.2209023,1.0000726,-1.032266,1.1329519,2.259769,-4.587037,-52.99906,-1.6701678,1.2968458,-1.1114128,-1.0148839,1.0904226,1.9527619,-3.3950324,16.582092,-1.8744602,1.3921734,-1.1595508,-1.0042713,1.0573621,-1.1874392,1.4475664,4.1249657,-2.151065,1.5128679,-1.2200451,1.0731564,-1.0088739,1.5596031,-2.2643762,4.607746,50.32235,-3.9117002,1.048321,-1.0021927,1.0150609,-1.0908993,1.2559173,-1.5856484,-3.131005,1.8714827,-1.3908219,1.1588684,-1.0439363,1.3258673,-1.7311919,2.7151031,-7.2407107,-10.007806,3.0094333,-1.0257607,1.0000988,-1.032799,1.1341667,-1.3419353,1.7654021,2.5361898,-1.6656978,1.294702,-1.1103338,1.0226678,-1.43024,1.9593637,-3.4172983,17.152094,5.5763273,-2.4582305,1.0105127,-1.0044599,1.0580939,-1.18897,1.4506174,4.0920963,-2.1428764,1.5094306,-1.218338,1.0723201,-1.0086056,1.5633626,-2.2736545,4.6497436,45.705753,-3.8822331,2.0890403,-1.0020615,1.015418,-1.0918572,1.2578387,-1.5895786,-3.1124713,1.8655616,-1.3881308,1.1575098,-1.0433106,1.0012769,-1.736121,2.7289383,-7.3464966,-9.811676,2.992387,-1.0252925,1.000129,-1.0333368,1.1353886,-1.3443533,1.7705772,2.5243826,-1.6612582,1.2925707,-1.1092614,1.0222304,-1.4331851,1.9660183,-3.439872,17.76275,5.515591,-2.4472024,1.0102199,-1.0046526,1.0588311,-1.1905097,1.4536873,-2.0126987,-2.134758,1.5060151,-1.2166405,1.0714895,-1.0083414,1.5671467,-2.283018,4.6925325,41.86519,-3.8532221,2.0813804,-1.0019343,1.0157796,-1.0928211,1.2597709,-1.593535,-3.0941682,1.8596855,-1.3854557,1.156159,-1.04269,1.0011773,-1.7410853,2.7429264,-7.4554486,-9.623124,2.975545,-1.0248289,1.0001633,-1.0338793,1.1366179,-1.3467853,1.77579,2.512695,-1.6568489,1.2904515,-1.1081957,1.0217975,-1.0005032,1.9727262,-3.46276,18.418571,5.456186,-2.4362826,1.0099313,-1.0048494,1.0595735,-1.1920581,1.456776,-2.0197854,-2.1267095,1.502621,-1.2149527,1.0706644,-1.0080816,1.5709554,-2.2924685,4.7361355,38.62017,-3.8246562,2.0737846,-1.001811,1.0161455,-1.0937911,1.2617142,-1.5975175,-3.0760913,1.8538535,-1.3827964,1.1548162,-1.0420743,1.0010817,-1.746085,2.7570696,-7.567713,-9.441719,2.958903,-1.8153505,1.0002016,-1.0344266,1.1378545,-1.3492317,1.7810409,2.5011253,-1.6524695,1.2883445,-1.1071362,1.0213691,-1.0005689,1.979488,-3.4859686,19.124758,5.3980675,-2.4254696,1.009647,-1.0050504,1.0603213,-1.1936153,1.4598837,-2.0269306,-2.1187298,1.4992484,-1.2132745,1.069845,-1.0078259,1.0065264,-2.302007,4.780576,35.842148,-3.7965262,2.0662525,-1.001692,1.0165157,-1.0947673,1.2636687,-1.6015263,2.3692682,1.8480656,-1.380153,1.1534809,-1.0414635,1.0009903,-1.7511207,2.7713704,-7.68344,-9.267064,2.9424582,-1.8098491,1.0002439,-1.0349785,1.1390982,-1.3516924,1.7863299,2.4896717,-1.64812,1.2862494,-1.1060834,1.0209452,-1.0006387,1.9863045,-3.5095048,19.887339,5.341196,-2.4147618,1.6193203,-1.0052555,1.0610745,-1.1951815,1.4630108,-2.0341349,-2.1108184,1.4958967,-1.2116057,1.0690311,-1.0075743,1.0067598,-2.3116343,4.8258786,33.437088,-3.7688224,2.0587828,-1.001577,1.0168903,-1.0957497,1.2656343,-1.6055619,2.3795338,1.8423208,-1.377525,1.1521534,-1.0408577,1.0009028,-1.7561924,2.785832,-7.8027945,-9.098789,2.9262068,-1.8043882,1.0002903,-1.0355352,1.1403493,-1.3541676,1.7916578,-2.8885992,-1.6438,1.2841663,-1.105037,1.0205257,-1.0007125,1.993176,-3.5333755,20.713346,5.285531,-2.4041579,1.6151934,-1.0054648,1.061833,-1.1967566,1.4661571,-2.0413985,-2.1029744,1.492566,-1.2099463,1.0682228,-1.007327,1.0069972,-2.321352,4.8720675,31.334618,-3.7415345,2.0513756,-1.0014662,1.0172694,-1.0967383,1.2676111,-1.6096244,2.3898985,-5.211688,-21.953718,3.5663924,-1.1331971,1.3400168,-1.7613009,2.8004565,-7.9259477,-8.936551,2.9101455,-1.7989674,1.3575577,-1.1420628,1.0363002,-16.694366,-5.6257553,2.4671054,-1.639509,1.2820952,-1.103997,1.0201106,-1.0007904,1.0400414,-1.1503601,1.3739756,1.2196988,-1.0729866,1.0088192,-1.0056782,1.0625968,-1.1983408,1.4693228,-2.0487227,3.7318072,-30.640764,-4.8889246,1.0910927,-1.2563053,1.5864419,-2.331161,4.919169,29.481018,-3.714654,2.0440295,-1.4672949,1.1973261,-1.0621074,7.2618713,9.967479,-3.005967,1.8309602,-1.3723156,1.1495215,-1.0396606,1.0007402,-1.0203757,1.1046617,-1.283419,1.6422511,1.1101162,-1.0225788,1.0003952,-1.0366632,1.1428736,-1.3591619,1.8024312,-2.9204004,9.0396805,7.846701,-2.79108,1.189281,-1.4512372,2.0070872,-3.582148,22.590147,5.177673,-2.3832552,1.6070218,-1.2663449,1.096105,-1.0170263,-44.872635,3.8763251,-2.0874848,1.4859668,-1.2066559,1.0666226,-1.0068448,1.0074847,-1.0687393,1.2110069,-1.4946947,-1.1572359,1.0431846,-1.0012563,1.0180405,-1.098734,1.2715988,-1.6178308,2.4109309,-5.321011,-20.177114,3.5180633,-1.1356368,1.3448443,-1.7716291,2.8302057,-8.184399,-8.628938,2.8785806,-1.7882442,1.3525822,-1.139548,1.0351784,-17.891676,-5.5034623,2.4449837,-1.6310136,1.2779882,-1.1019362,1.019294,-1.0009583,1.0412447,-1.1530019,1.3792046,-1.8459917,-1.0713221,1.0082885,-1.0061175,1.0641407,-1.2015362,1.4757135,-2.063555,3.7865002,-34.937088,-4.7967916,2.305464,-1.2601633,1.5943388,-2.351059,5.0162196,26.362402,-3.6620789,2.0295184,-1.4610077,1.1941783,-1.060592,1.0051239,9.585848,-2.9721608,1.819768,-1.3671676,1.1469198,-1.038483,1.0005935,-1.0212159,1.1067563,-1.2875885,1.6508998,1.1079806,-1.0217104,1.0005162,-1.0378101,1.1454277,-1.364215,1.8133645,-2.9529576,9.378059,7.608985,-2.7622018,1.1923726,-1.4574034,2.021227,-3.6323452,24.841385,5.0742087,-2.362751,1.5989583,-1.2624168,1.0941421,-1.0162783,-38.023712,3.8189287,-2.0722551,1.4794495,-1.2034025,1.0650444,-1.0063792,1.0079889,-1.0703686,1.2143471,-1.5014039,-1.1545452,1.0419503,-1.0010629,1.0188292,-1.1007549,1.2756323,-1.6261476,2.4323761,-5.435108,-18.666807,3.4710813,-1.9751554,1.3497286,-1.7821081,2.8606403,-8.460414,-8.341926,2.8477387,-1.7776766,1.3476647,-1.1370624,1.0340759,-1.0001765,-5.386458,2.423294,-1.6226318,1.273928,-1.0999008,1.018495,-1.0011424,1.0424677,-1.1556746,1.3844961,-1.85758,-1.0696797,1.0077746,-1.0065733,1.0657063,-1.2047681,1.4821842,-2.0786374,3.8428829,-40.635487,-4.7081413,2.2864115,-1.2640656,1.6023409,-2.371338,5.117261,23.840816,-3.611029,2.0152442,-1.4547975,1.1910663,-1.0590979,1.004723,9.232505,-2.9391534,1.8087406,-1.3620797,1.1443485,-1.0373248,1.0004632,-1.022074,1.1088768,-1.291806,1.6596668,1.1058711,-1.02086,1.0006534,-1.0389766,1.1480118,-1.3693281,1.824461,-2.9862978,9.742919,7.3853636,-2.7339585,1.7379047,-1.4636459,2.0356,-3.6840296,27.591476,4.9748774,-2.3426337,1.5910006,-1.2585334,1.0922036,-1.0155478,1.0020151,3.7632666,-2.0572789,1.4730126,-1.200186,1.063488,-1.0059304,1.00851,-1.0720203,1.2177255,-1.508198,2.1399443,1.0407356,-1.0008856,1.0196358,-1.102801,1.2797121,-1.6345772,2.4542463,-5.554297,-17.367117,3.4253924,-1.9617542,1.3546704,-1.7927408,2.8917835,-8.755842,-8.073519,2.8175955,-1.7672616,1.3428046,-1.1346059,1.0329921,-1.0001092,-5.274409,2.4020243,-1.6143616,1.2699139,-1.0978906,1.0177135,-1.0013428,1.0437104,-1.1583782,1.3898509,-1.869345,-1.0680598,1.0072774,-1.0070457,1.0672938,-1.2080369,1.4887357,-2.0939758,3.9010344,-48.555965,-4.6227818,2.2677078,-1.2680125,1.6104498,-2.3920085,5.2225423,21.759823,-3.561439,2.0012016,-1.448663,1.1879896,-1.057625,1.0043387,-1.0107023,-2.9069178,1.797875,-1.3570515,1.1418071,-1.0361859,1.000349,-1.0229499,1.1110233,-1.2960722,1.6685544,-2.5438082,-1.0200273,1.0008067,-1.0401623,1.1506261,-1.3745018,1.8357236,-3.020449,10.137488,7.174623,-2.70633,1.7280564,-1.4699659,2.0502126,-3.7372665,31.026834,4.879437,-2.3228934,1.5831473,-1.2546937,1.0902897,-1.0148346,1.0022788,3.7092626,-2.04255,1.4666553,-1.197006,1.0619532,-1.0054982,1.0090479,-1.0736943,1.2211425,-1.5150785,2.1563423,1.0395405,-1.0007246,1.0204599,-1.1048725,1.2838389,-1.6431209,2.4765534,-5.678924,-16.236872,3.3809443,-1.9485651,1.3596705,-1.8035303,2.92366,-9.072801,-7.821967,2.7881284,-1.756996,1.3380007,-1.1321782,1.0319273,-1.0000579,1.0265383,2.3811624,-1.606201,1.2659454,-1.0959053,1.0169498,-1.0015593,1.0449728,-1.1611134,1.3952696,-1.8812906,3.161908,1.0067968,-1.007535,1.0689032,-1.2113432,1.4953698,-2.1095765,3.9610374,-60.312836,-4.540534,2.2493436,-1.5534905,1.6186672,-2.4130821,5.3323345,20.013247,-3.5132484,1.987385,-1.4426033,1.1849477,-1.0561732,1.0039709,-1.0113062,-2.8754272,1.7871679,-1.352082,1.1392951,-1.035066,1.0002509,-1.023844,1.1131963,-1.3003879,1.6775649,-2.5679462,-1.0192122,1.0009762,-1.0413675,1.153271,-1.3797373,1.8471563,-3.0554397,10.565542,6.9756856,-2.6792972,1.7183464,-1.4763646,2.0650697,-3.7921276,35.43997,4.787666,-2.30352,1.5753962,-1.2508976,1.0883999,-1.0141388,1.0025588,3.6568446,-2.0280633,1.4603758,-1.1938618,1.0604398,-1.0050825,1.0096025,-1.075391,1.2245985,-1.5220467,2.1730292,-4.2144103,-1.0005796,1.0213019,-1.1069697,1.2880131,-1.6517813,2.4993105,-5.809368,-15.244981,3.3376884,-1.9355831,1.41967,-1.8144798,2.9562955,-9.413726,-7.5857363,2.7593153,-1.7468772,1.3332525,-1.1297791,1.0308814,-1.0000228,1.0275034,2.3606977,-1.5981482,1.2620218,-1.0939448,1.0162035,-1.0017921,1.0462552,-1.1638803,1.4007536,-1.8934207,3.200481,1.0063331,-1.0080409,1.0705347,-1.2146873,1.5020876,-2.1254458,4.022981,-79.58376,-4.461232,2.2313101,-1.5461226,1.6269956,-2.4345696,5.446932,18.526495,-3.4664001,1.9737895,-1.4366171,1.1819403,-1.0547425,1.0036196,-1.011927,-2.8446572,1.7766159,-1.3471705,1.1368124,-1.0339653,1.000169,-1.0247562,1.1153957,-1.3047533,1.6867007,-2.592589,6.3818574,1.0011619,-1.0425925,1.1559467,-1.385035,1.8587625,-3.0913012,11.031526,6.787589,-2.6528413,1.7087725,-1.3152583,2.0801778,-3.8486857,41.317463,4.699357,-2.2845032,1.5677459,-1.2471446,1.086534,-1.0134603,1.0028552,-1.0514479,-2.0138128,1.4541733,-1.1907533,1.0589479,-1.0046834,1.0101742,-1.0771104,1.228094,-1.5291041,2.1900117,-4.2848825,-1.000451,1.0221618,-1.1090928,1.2922356,-1.6605605,2.522531,-5.9460444,-14.367519,3.2955773,-1.9228036,1.4139602,-1.825593,2.9897165,-9.781437,-7.363472,2.731135,-1.7369019,1.3285593,-1.1274083,1.0298542,-1.0000038,1.0284867,2.3406193,-1.5902013,1.2581428,-1.0920088,1.0154748,-1.0020411,1.0475578,-1.1666795,1.4063036,-1.9057391,3.2400596,1.005886,-1.0085636,1.0721887,-1.2180696,1.5088904,-2.1415906,4.0869603,-116.95451,-4.3847227,2.213599,-1.538849,1.2329125,-1.0794859,1.0109788,-1.004167,1.0569527,-1.1865819,-1.3551736,1.7938254,-2.8949754,8.786899,8.047324,-2.8145833,1.766216,-1.3423159,1.134359,-1.0328836,1.0001032,-1.0256865,1.1176218,-1.3091693,1.6959639,-2.617752,6.547619,11.735839,-3.1415339,1.8748336,-1.3923427,1.1596361,1.0678971,-1.007228,1.0070945,-1.0674556,1.2083699,-1.4894032,2.0955424,-3.9070208,49.532993,4.6143203,-2.2658343,1.5601946,-1.2434338,1.0846922,-1.0127989,1.0031679,-1.0528297,1.1779047,-1.4285911,1.9556434,-3.4047353,16.826708,5.611095,2.9036977,-1.7967844,1.356546,-1.1415515,1.0360717,-1.0003383,1.0230397,-1.111242,1.2965068,-1.6694607,2.5462282,-6.0894065,-13.585774,3.2545679,-1.9102224,1.4083188,-1.1676954,1.0480318,-1.0021348,1.0152166,-1.0913175,1.2567565,1.4706099,-2.0517046,3.7427435,-31.422766,-4.8699875,2.3209164,-1.5823582,1.2543077,-1.0900973,1.0147634,-1.0023065,1.0488805,-1.1695108,1.4119207,-1.9182498,3.280683,-14.07579,-5.996881,2.5310097,-1.663752,1.2937682,-1.1098639,-1.0394207,1.0007092,-1.0205443,1.1050836,-1.2842591,1.643992,-2.4788356,5.691853,16.130657,-3.3765137,1.9472421,-1.4248611,1.1760279,-1.0519432,1.0029659,-1.0132201,1.085868,-1.2458032,1.565015,-2.27774,4.6683636,43.94226,-3.8694863,-2.3790736,1.6053813,-1.2655463,1.0957057,-1.0168735,1.001582,-1.0451016,1.161392,-1.3958216,1.8825097,-3.1657667,12.099363,6.4405684,-2.6015906,1.6900221,-1.3063378,1.1161944,-1.0250891,1.0001435,-1.0335735,1.1359255,-1.3454156,-1.619505,2.4152374,-5.343707,-19.85202,3.5084476,-1.9859991,1.4419943,-1.1846418,1.0560275,-1.0039345,1.0113682,-1.0806183,1.2352052,-1.5434921,2.224895,-4.433363,-89.933136,4.045784,-2.1312284,1.5045277,-1.215901,1.0711279,1.0191308,-1.0009942,1.0414907,-1.1535403,1.3802705,-1.8483227,3.0590286,-10.61089,-6.9561744,2.6765943,-1.7173716,1.3193347,-1.1227504,1.0278554,-1.0000141,1.0305094,-1.128922,1.3315561,-1.7432681,2.7490942,-7.504144,-9.542911,2.96824,2.0266106,-1.4597447,1.1935457,-1.060288,1.0050414,-1.0096595,1.0755639,-1.2249504,1.5227567,-2.174734,4.221433,-1923.4578,-4.239515,2.179111,-1.5245781,1.2258528,-1.0760076,1.0098064,-1.0049368,1.0599002,-1.1927383,1.4581332,1.8155969,-2.9596412,9.449666,7.5626316,-2.7564352,1.7458612,-1.3327751,1.1295379,-1.0307766,1.0000201,-1.027602,1.1221554,-1.3181559,1.714883,-2.6697037,6.90674,10.728741,-3.0682535,1.851316,-1.3816379,1.1542311,-1.0418065,-1.0062871,1.0080931,-1.0707011,1.2150278,-1.5027721,2.127067,-4.0293612,82.24296,4.453366,-2.2295036,1.5453824,-1.2361379,1.0810792,-1.0115278,1.0038425,-1.0556556,1.1838607,-1.440439,1.9824632,-3.4962242,19.451033,5.3730373,-2.4207726,-1.7755567,1.3466766,-1.136563,1.033855,-1.0001616,1.0248494,-1.1156198,1.3051978,-1.6876322,2.5951114,-6.398244,-12.2529955,3.1756866,-1.8856379,1.3972372,-1.1621063,1.0454323,-1.0016413,1.016679,-1.0951964,1.2645272,-1.6032884,-2.0817208,3.8545065,-42.022724,-4.690606,2.2825985,-1.5669774,1.2467672,-1.0863466,1.0133926,-1.002886,1.0515869,-1.1752722,1.4233596,-1.943866,3.3652306,-15.865079,-5.725213,2.484697,-1.6462265,1.2853367,-1.1056249,1.0207611,1.0004388,-1.0222498,1.1093092,-1.2926655,1.6614556,-2.5249069,5.9602394,14.284334,-3.2913783,1.9215215,-1.4133862,1.1702493,-1.0492263,1.0023779,-1.014582,1.0896063,-1.2533216,1.580344,-2.3158743,4.845974,32.48359,-3.7568343,-2.3386085,1.5894028,-1.2577527,1.0918143,-1.0154021,1.0020672,-1.0476907,1.1669645,-1.4068689,1.9069961,-3.244122,13.397043,6.1276817,-2.5524442,1.6717852,-1.2976208,1.1118029,-1.0232699,1.0003119,-1.0357803,1.140899,-1.355255,1.7940009,2.4587252,-5.579069,-17.125828,3.4162984,-1.9590681,1.430109,-1.1786683,1.053191,-1.0032516,1.0126305,-1.0842191,1.2424798,-1.5582551,2.2610552,-4.59281,-52.222126,3.922427,-2.0995638,1.4911155,-1.2092234,1.0678709,-1.00722,-1.0013852,1.0439643,-1.1589292,1.3909422,-1.871748,3.1318376,-11.594869,-6.5919757,2.6243548,-1.6983838,1.3103213,-1.1182027,1.0259304,-1.0000889,1.0326066,-1.1337283,1.3410679,-1.7635474,2.8069062,-7.981064,-8.867394,2.9031782,1.9983872,-1.4474307,1.187371,-1.0573295,1.0042629,-1.0108231,1.0790304,-1.2319894,1.5369805,-2.209064,4.365347,133.14565,-4.1038723,2.1458173,-1.5106661,1.2189517,-1.0726206,1.0087017,-1.0057728,1.0629327,-1.1990366,1.4707139,-2.051946,-3.0274615,10.221284,7.1334414,-2.7008116,1.7260802,-1.3234538,1.12483,-1.0287445,1.0000014,-1.0295912,1.1267989,-1.3273529,1.7343417,-2.7239382,7.30804,9.881416,-2.9985027,1.8284979,-1.3711845,1.1489497,-1.0394013,1.0007067,1.0091587,-1.0740359,1.2218387,-1.5164816,2.159696,-4.1598883,242.19856,4.3035293,-2.1944587,1.5309464,-1.2290056,1.0775594,-1.0103248,1.0045826,-1.058565,1.1899542,-1.4525795,2.0101602,-3.593004,23.046967,5.154676,-2.3787367,-1.7549366,1.3370353,-1.1316904,1.0317142,-1.0000495,1.0267321,-1.1201046,1.3140916,-1.706315,2.6460822,-6.7405396,-11.159003,3.1007338,-1.8617967,1.3864173,-1.1566446,1.042913,-1.0012127,1.0182115,-1.0991739,1.2724771,-1.6196405,2.415586,3.9734144,-63.420788,-4.524252,2.2456677,-1.5519917,1.2393961,-1.0826913,1.0120906,-1.0035312,1.0543753,-1.1811671,1.4350789,-1.970304,3.45448,-18.17686,-5.47743,2.440203,-1.6291705,1.2770962,-1.1014888,1.0191176,-1.0009972,-1.0240272,1.1136392,-1.3012673,1.6794037,-2.5728924,6.255612,12.8180065,-3.210632,1.8965924,-1.4021845,1.1646022,-1.0465906,1.001855,-1.0160133,1.0934411,-1.2610132,1.5960802,-2.3554616,5.037971,25.766268,-3.6507847,2.026376,1.5738398,-1.2501347,1.0880203,-1.014,1.0026175,-1.0503604,1.1726667,-1.4181848,1.9322544,-3.3266752,15.007607,5.8441463,-2.5052786,1.6540434,-1.2891018,1.107517,-1.0215229,1.0005448,-1.0380636,1.1459904,-1.3653282,1.8157778,-2.9601824,-5.836512,-15.058832,3.3290746,-1.9329803,1.4185089,-1.1728299,1.0504372,-1.002634,1.0139614,-1.0879143,1.2499217,-1.5734055,2.2985613,-4.764473,-36.795364,3.8066077,-2.0689578,1.4780347,-1.2026958,1.0647022,-1.0062797,1.0081015,1.0465173,-1.1644443,1.4018716,-1.8958983,3.2084086,-12.780903,-6.2643995,2.5742786,-1.6799186,1.3015136,-1.1137632,1.0240785,-1.0002282,1.0347792,-1.1386495,1.3508046,-1.7844205,2.8673909,-8.523306,-8.281691,2.8410866,-1.7753857,-1.4354146,1.1813358,-1.0544554,1.0035504,-1.0120547,1.0825891,-1.2391901,1.5515734,-2.2446425,4.5197215,64.347755,-3.9768884,2.1136599,-1.4971014,1.2122055,-1.0693235,1.0076644,-1.0066752,1.0660516,-1.2054799,1.4836102,-2.0819702,-3.0986679,11.130901,6.7507625,-2.6475558,1.7068512,-1.3143462,1.1202329,-1.0267863,1.0000473,-1.0316547,1.1315542,-1.3367659,1.7543617,-2.780605,7.7593803,9.158681,-2.9320376,1.8063504,-1.3609748,1.1437901,-1.037074,1.0004369,-1.022264,-1.0774612,1.2288063,-1.5305433,2.1934853,-4.2994413,-256.30017,4.1637077,-2.1606357,1.5168746,-1.2220336,1.0741315,-1.0091898,1.005389,-1.0615592,1.1961883,-1.4650217,2.0387757,-3.6955392,28.276249,4.9536767,-2.338284,1.5892739,1.3276161,-1.1269319,1.0296485,-1.0000019,1.0286881,-1.1246984,1.3231933,-1.7255287,2.699273,-7.1220145,-10.244958,3.0294282,-1.8386678,1.3758516,-1.1513081,1.0404725,-1.000849,1.0198145,-1.1032518,1.2806107,-1.6364361,2.4590878,4.100165,-129.23677,-4.369565,2.2100532,-1.5373882,1.2321908,-1.0791297,1.010857,-1.0042418,1.057247,-1.1871985,1.4470868,-1.997602,3.5488276,-21.278893,-5.25053,2.3974266,-1.6125673,1.269042,-1.0974542,1.0175451,-1.0013887,1.0439848,1.1180756,-1.3100693,1.6978544,-2.6229093,6.5822325,11.625377,-3.1339502,1.872421,-1.391248,1.1590835,-1.0440353,1.0013973,-1.0175141,1.0973741,-1.2688819,1.6122378,-2.3965833,5.246162,21.3522,-3.5507805,1.9981601,-1.4473313,-1.242688,1.0843223,-1.0126672,1.0032332,-1.0531119,1.1785012,-1.429777,1.9583187,-3.413765,17.05957,5.586034,-2.4599805,1.6367786,-1.2807761,1.1033349,-1.0198474,1.0008423,-1.0404242,1.151202,-1.3756417,1.8382096,-3.0280297,-6.1192784,-13.437825,3.2463982,-1.9077,1.4071853,-1.167124,1.0477651,-1.0020819,1.0153614,-1.0917057,1.2575349,-1.588957,2.337486,-4.9497976,-28.405905,3.6976638,-2.039361,1.465275,-1.1963152,1.0616204,-1.0054058,1.0091677,-1.0740635,-1.1700878,1.4130657,-1.9208057,3.2890353,-14.238245,-5.968206,2.5262375,-1.6619567,1.2929062,-1.1094302,1.022299,-1.0004321,1.037028,-1.1436875,1.360772,-1.8059115,2.9307327,-9.145232,-7.7690372,2.781771,-1.7547703,1.3369573,1.1754371,-1.0516646,1.0029035,-1.0133548,1.086242,-1.2465563,1.5665481,-2.2815351,4.685728,42.42764,-3.857769,2.0825846,-1.4838729,1.205611,-1.0661154,1.006694,-1.0076442,1.0692582,-1.2120714,1.496832,-2.1130245,3.974418,12.219097,6.4074426,-2.596524,1.6881535,-1.3054466,1.1157451,-1.0249017,1.0001576,-1.0337934,1.1364235,-1.3464007,1.774965,-2.8398669,8.270708,8.534975,-2.8686361,1.7848467,-1.3510028,1.1387496,-1.0348237,1.0002316,-1.024042,1.113675,1.2359338,-1.5449687,2.2284946,-4.44898,-83.80865,4.0329375,-2.1279747,1.5031551,-1.2152183,1.0707942,-1.0081222,1.0062615,-1.0646392,1.2025661,-1.4777749,2.0683527,-3.8043509,36.578053,4.7680607,-2.29933,1.5737144,-1.2500731,-1.1222852,1.0276573,-1.0000187,1.0307181,-1.1294032,1.3325084,-1.7452937,2.7548277,-7.549775,-9.469881,2.9615154,-1.8162223,1.3655334,-1.146094,1.0381104,-1.0005502,1.0214884,-1.1074319,1.2889326,-1.6536915,2.5043495,-5.8387165,3416.1533,-4.22537,2.1756887,-1.5231541,1.2251474,-1.0756607,1.0096915,-1.0050185,1.0602031,-1.193369,1.4593922,-2.0257995,3.6487153,-25.659557,-5.0419927,2.3562732,-1.596401,1.2611697,-1.0935192,1.0160427,-1.0018451,1.0465385,1.1226203,-1.3190769,1.7168269,-2.6750855,6.945313,10.6364155,-3.061039,1.8489758,-1.3805689,1.153691,-1.0415596,1.0010045,-1.0190853,1.1014067,-1.2769324,1.6288322,-2.439326,5.4726696,18.230307,-3.456326,1.9708445,-1.4353175,1.181287,1.0807188,-1.011403,1.0039144,-1.0559462,1.1844709,-1.4416541,1.9852254,-3.5057695,19.763008,5.350087,-2.416444,1.6199739,-1.2726389,1.099255,-1.0182431,1.0012047,-1.042863,1.1565361,-1.3862023,1.8613245,-3.0992646,11.139007,-12.132597,3.1679282,-1.8831922,1.3961304,-1.1615479,1.0451739,-1.0015949,1.0168309,-1.0955943,1.2653234,-1.6049234,2.3779078,-5.150469,-23.133001,3.5950081,-2.0107267,1.4528267,-1.1900781,1.0586244,-1.0045983,1.0103014,-1.0774896,-1.1758627,1.4245327,-1.9465034,3.374042,-16.071878,-5.699107,2.4801137,-1.6444796,1.2844943,-1.1052016,1.0205916,-1.0007006,1.0393537,-1.1488448,1.3709767,-1.8280458,2.997134,-9.86575,-7.316595,2.7250535,-1.7347388,1.32754,-1.1268935,-1.0489558,1.002322,-1.0147237,1.0899899,-1.254092,1.5819175,-2.3198128,4.8647203,31.648571,-3.7458122,2.05254,-1.4709702,1.1991647,-1.0629946,1.0057904,-1.0086802,1.0725534,-1.2188145,1.5103899,-2.1451595,4.1012354,-130.34254,6.097728,-2.5475833,1.6699678,-1.2967498,1.1113644,-1.0230898,1.0003325,-1.0360079,1.1414088,-1.3562636,1.7961754,-2.9019008,8.854793,7.9912853,-2.808096,1.7639613,-1.3412616,1.1338261,-1.0326494,1.0000911,-1.0258924,1.1181124,1.2432252,-1.5597703,2.2647884,-4.609603,-50.09659,3.910376,-2.0964193,1.4897768,-1.208556,1.0675462,-1.0071218,1.0072005,-1.0678062,1.2090906,-1.4908491,2.098938,-3.920025,51.785393,4.596138,-2.2617965,1.558556,-1.2426277,1.0842924,1.0257397,-1.0001,1.032823,-1.1342211,1.3420429,-1.7656323,2.8129022,-8.032754,-8.804359,2.8967633,-1.7944325,1.3554553,-1.1410002,1.0358255,-1.0003159,1.023234,-1.1117157,1.2974476,-1.6714236,2.5514765,-6.121704,-13.426016,-4.090643,2.1425126,-1.5092779,1.2182621,-1.0722829,1.0085937,-1.005861,1.0632443,-1.199682,1.4720044,-2.0549388,3.7546382,-32.31412,-4.849688,2.3166559,-1.5806563,1.2534746,-1.0896825,1.01461,-1.0023667,1.0491724,-1.1701345,-1.3282955,1.7363417,-2.7295592,7.351289,9.803106,-2.9916313,1.8262267,-1.3701403,1.1484222,-1.0391623,1.0006764,-1.0207273,1.1055406,-1.285169,1.6458789,-2.4837844,5.720005,15.905759,-3.3669782,1.9443893,-1.4235926,1.1753894,-1.0516421,-1.0102069,1.0046613,-1.0588641,1.1905786,-1.4538246,2.0130134,-3.6031098,23.486423,5.1335826,-2.3745728,1.603613,-1.2646853,1.0952754,-1.0167092,1.001632,-1.045381,1.1619952,-1.397017,1.8851511,-3.1741414,12.228873,6.4047813,3.0933566,-1.8594244,1.3853366,-1.156099,1.0426624,-1.0011729,1.0183705,-1.099582,1.2732917,-1.6213197,2.4199107,-5.3684597,-19.512255,3.4981174,-1.9830116,1.4406803,-1.1839818,1.0557133,-1.0038567,1.0115029,-1.0810075,1.2359928,1.4362806,-1.9730266,3.4637885,-18.448965,-5.4535656,2.435798,-1.62747,1.2762728,-1.101076,1.0189553,-1.0010338,1.0417573,-1.1541237,1.3814254,-1.8508503,3.0668166,-10.710262,-6.914373,2.6707714,-1.7152689,1.3183388,-1.1222478,-1.0463284,1.0018057,-1.0161619,1.0938345,-1.2618012,1.5976957,-2.3595514,5.058269,25.23823,-3.6403987,2.0234787,-1.4583831,1.1928635,-1.0599602,1.004953,-1.0097835,1.0759386,-1.2257124,1.5242947,-2.1784298,4.2366953,2790.3887,-4.2242312,-2.5006118,1.652275,-1.2882507,1.1070892,-1.02135,1.000572,-1.038299,1.1465123,-1.3663609,1.8180172,-2.9669008,9.528305,7.51317,-2.7502317,1.7436703,-1.3317451,1.1290176,-1.0305507,1.0000149,-1.0278159,1.1226579,-1.3191513,-1.5749607,2.3024344,-4.782579,-35.727493,3.7952814,-2.0659177,1.476729,-1.2020435,1.0643862,-1.0061883,1.0082062,-1.0710615,1.2157651,-1.5042546,2.130581,-4.043224,88.64552,4.4364586,-2.2256093,1.5437855,-1.2353499,1.0806897,1.0238951,-1.0002459,1.0350032,-1.139154,1.3518026,-1.7865667,2.8736675,-8.582342,-8.226733,2.8349612,-1.7732723,1.3456112,-1.1360244,1.0336171,-1.0001463,1.0250518,-1.116105,1.3061606,-1.6896502,2.600582,-6.4339566,-12.122974,3.167303,-1.8829948,1.3960413,-1.1615028,1.045153,-1.0015912,1.0168432,-1.0956265,1.2653878,-1.6050556,2.3782446,-5.152178,11.232091,6.714337,-2.642293,1.7049353,-1.3134363,1.119774,-1.0265924,1.0000556,-1.0318677,1.1320418,-1.3377305,1.7564198,-2.7864811,7.8082066,9.091425,-2.925486,1.8041455,-1.3599551,1.1432747,-1.0368428,1.0004132,-1.0224407,1.1097776,-1.2935966,1.6633946,-2.5300596,5.991159,14.107785,-3.2823396,1.9187572,-1.412148,1.1696254,-1.0489341,1.0023174,-1.0147351,1.0900209,-1.2541543,1.582045,-2.3201315,4.866241,31.582987,-3.7449253,2.0522985,-1.4708661,1.3266752,-1.1264566,1.0294436,-1.0000006,1.0288901,-1.1251694,1.3241261,-1.7275034,2.7047849,-7.1630626,-10.160774,3.0224059,-1.8363659,1.3747965,-1.1507748,1.0402299,-1.0008159,1.0199807,-1.1036702,1.2814441,-1.638161,2.463586,-5.6060953,-16.872486,3.406526,-1.9561744,1.4288266,-1.1780231,1.0528858,-1.0031809,1.0127727,-1.0846186,1.2432854,-1.5598929,2.2650905,-4.6109653,-49.932407,3.9094055,-2.096166,1.489669,-1.2085023,1.06752,-1.0071139,1.0072085,-1.0678325,1.1185306,-1.3109714,1.6997502,-2.6280887,6.617219,11.516981,-3.1264055,1.8700161,-1.3901557,1.1585321,-1.0437813,1.0013546,-1.0176699,1.0977776,-1.2696882,1.613897,-2.4008331,5.268211,20.988428,-3.540978,1.995356,-1.4461021,1.1867043,-1.0570111,1.0041819,-1.0109545,1.079415,-1.2327689,1.5385582,-2.2128932,4.381701,119.206345,-4.0895777,2.142246,-1.5091659,1.2182064,-1.0722556,1.008585,-1.0058683,1.0632696,-1.1997341,1.4721087,-2.055181,3.7555304,-32.382782,-13.293075,3.238272,-1.9051853,1.4060546,-1.1665539,1.0474992,-1.0020297,1.015507,-1.0920947,1.258315,-1.5905535,2.341507,-4.9693756,-27.765396,3.686999,-2.0364203,1.4640014,-1.1956775,1.0613133,-1.0053211,1.0092794,-1.074406,1.2225931,-1.5180022,2.163334,-4.174695,307.63748,4.2877684,-2.1907012,1.5293899,-1.2282355,1.07718,-1.0101974,1.0046676,-1.0588883,1.190629,-1.4539254,2.0132444,-3.6039286,23.52266,5.131886,-2.374237,1.603481,-1.264621,1.1748477,-1.0513867,1.0028417,-1.0134902,1.0866169,-1.2473111,1.5680852,-2.2853441,4.703226,41.013977,-3.8461254,2.0794983,-1.4825526,1.204952,-1.0657955,1.0065995,-1.007746,1.0695876,-1.2127469,1.4981885,-2.1162262,3.986881,-67.16127,-4.5067887,2.2417097,-1.5503762,1.2386001,-1.0822972,1.0119523,-1.0036057,1.0546854,-1.18182,1.4363779,-1.9732472,3.4645426,-18.471302,-5.451647,2.435443,-1.6273328,1.2762064,-1.1010426,1.0189422,-1.0010369,1.0417773,-1.1541672,1.236664,-1.5464493,2.2321079,-4.4647098,-78.465195,4.020175,-2.124732,1.501786,-1.2145373,1.0704615,-1.0080179,1.0063534,-1.0649557,1.2032195,-1.4790831,2.071401,-3.8157337,37.698193,4.7500668,-2.2954688,1.5721624,-1.249312,1.0876112,-1.0138509,1.0026817,-1.0506574,1.1732982,-1.419439,1.9350652,-3.3359725,15.207614,5.814743,-2.5002356,1.6521323,-1.288182,1.1070546,-1.0213361,1.0005741,-1.038318,1.1465545,-1.3664443,1.8181986,-2.9674451,9.534235,7.509499,-4.211322,2.1722784,-1.521734,1.2244436,-1.0753148,1.0095774,-1.0051007,1.0605069,-1.1940013,1.4606544,-2.0287044,3.6591506,-26.205578,-5.021827,2.352196,-1.5947888,1.260383,-1.0931265,1.0158945,-1.001895,1.0468013,-1.1650552,1.4030827,-1.898585,3.2170234,-12.925554,-6.230562,2.5689278,-1.67793,1.3005625,-1.1132842,1.0238804,-1.0002474,1.0350213,-1.1391946,1.3518834,-1.7867404,2.8741758,-8.587147,-8.222326,2.8344674,-1.7731019,1.3455316,-1.1359842,1.0803593,-1.0112789,1.003987,-1.0562376,1.1850827,-1.442872,1.9879966,-3.5153697,20.085167,5.3273363,-2.412133,1.6182983,-1.2718257,1.0988477,-1.0180846,1.001245,-1.0431143,1.1570828,-1.3872849,1.8637028,-3.1066713,11.240345,6.711412,-2.6418688,1.7047807,-1.3133628,1.1197369,-1.0265768,1.0000561,-1.0318849,1.1320813,-1.3378086,1.7565862,-2.786957,7.8121786,9.086035,-2.924958,1.8039676,-1.3598728,1.1432331,-1.0368242,1.0004113,-1.022455,1.1098126,-1.2936664,1.4257085,-1.949149,3.3829014,-16.28415,-5.673243,2.4755487,-1.6427374,1.2836536,-1.1047795,1.0204227,-1.0007313,1.0395935,-1.1493734,1.3720227,-1.8303225,3.0040324,-9.945074,-7.2737565,2.7194524,-1.7327435,1.3265992,-1.1264182,1.0294272,-1.0000006,1.0289065,-1.1252074,1.3242016,-1.7276632,2.7052312,-7.166399,-10.154034,3.02184,-1.8361803,1.3747113,-1.1507318,1.0402105,-1.0008132,1.0199941,-1.103704,1.2815115,-1.6383007,2.4639502,-5.608126,-16.853851,6.068068,-2.5427427,1.6681552,-1.2958809,1.1109271,-1.0229106,1.0003538,-1.0362363,1.1419197,-1.3572747,1.7983564,-2.90834,8.91856,7.9401307,-2.8021216,1.7618814,-1.3402884,1.1333343,-1.0324337,1.0000805,-1.0260837,1.1185675,-1.3110443,1.6999036,-2.628508,6.620062,11.508314,-3.1257977,1.869822,-1.3900676,1.1584877,-1.0437608,1.0013511,-1.0176826,1.0978101,-1.2697533,1.6140311,-2.4011772,5.270001,20.959583,-3.5401886,1.9951298,-1.4460031,1.1866546,-1.0569874,1.0255498,-1.0001118,1.0330402,-1.134715,1.3430202,-1.7677231,2.8189259,-8.085122,-8.74222,2.8903787,-1.792263,1.3544487,-1.1404914,1.0355986,-1.0002958,1.0234147,-1.112155,1.2983202,-1.6732452,2.5563536,-6.1518984,-13.281517,3.2376173,-1.9049826,1.4059634,-1.166508,1.0474778,-1.0020255,1.0155187,-1.0921261,1.258378,-1.5906826,2.3418324,-4.9709644,-27.71491,3.6861405,-2.036183,1.4638985,-1.1956261,1.0612885,-1.0053144,1.0092884,-1.0744337,1.2226496,-1.518116,1.7383475,-2.7352054,7.395057,9.726033,-2.9847934,1.8239623,-1.3690987,1.1478958,-1.0389241,1.0006468,-1.0208974,1.1059647,-1.2860131,1.6476297,-2.4883826,5.7463055,15.703196,-3.3582056,1.9417589,-1.4224219,1.1748002,-1.0513643,1.0028367,-1.0135012,1.0866472,-1.2473722,1.5682094,-2.2856526,4.704645,40.90388,-3.845188,2.0792494,-1.4824461,1.2048988,-1.0657697,1.0065919,-1.0077543,1.0696143,-1.2128015,1.4982982,-2.1164854,3.9878917,-67.45866,-4.5054893,3.086017,-1.8570594,1.3842586,-1.1555545,1.0424128,-1.0011338,1.0185302,-1.0999911,1.2741082,-1.6230034,2.4242527,-5.3915706,-19.208096,3.4886155,-1.9802567,1.4394677,-1.1833726,1.0554234,-1.0037853,1.0116283,-1.0813686,1.2367232,-1.546569,2.2324002,-4.4659853,-78.063126,4.019148,-2.1244707,1.5016756,-1.2144823,1.0704347,-1.0080096,1.0063609,-1.0649813,1.2032725,-1.479189,2.071648,-3.8166564,37.791687,4.748619,-2.2951574,1.5720371,-1.2492505,1.0875807,-1.0138398,1.001757,-1.0163113,1.0942291,-1.2625912,1.5993156,-2.3636572,5.078735,24.731417,-3.6300743,2.020591,-1.4571266,1.1922338,-1.0596579,1.004872,-1.0098989,1.0762862,-1.2264193,1.5257215,-2.1818619,4.2509184,853.9734,-4.2101912,2.1720035,-1.5216194,1.2243867,-1.0752869,1.0095682,-1.0051074,1.0605315,-1.1940525,1.4607564,-2.0289397,3.6599963,-26.250706,-5.0202055,2.3518672,-1.5946587,1.2603195,-1.0930948,1.0158826,-1.001899,1.0468225,-1.1651009,1.4031733,-1.5765201,2.306322,-4.800826,-34.719875,3.7840245,-2.062888,1.4754267,-1.2013928,1.0640714,-1.0060974,1.0083119,-1.0713958,1.2164491,-1.50563,2.1338437,-4.0561376,95.5264,4.420932,-2.22202,1.5423119,-1.2346226,1.0803304,-1.0112689,1.0039928,-1.0562612,1.1851321,-1.4429706,1.9882208,-3.5161476,20.11165,5.3255067,-2.4117856,1.6181631,-1.2717601,1.0988148,-1.0180719,1.0012484,-1.0431346,1.157127,-1.3873725,1.863895,-3.1072714,11.248612,6.7084894,-2.641445,2.1072853,-1.4943973,1.2108588,-1.0686672,1.0074626,-1.0068659,1.0666935,-1.2068018,1.4862595,-2.0881703,3.8789277,-45.23618,-4.6545453,2.2747095,-1.5637895,1.2452011,-1.085569,1.0131127,-1.0030165,1.052167,-1.1765022,1.4258037,-1.9493632,3.3836195,-16.30154,-5.671164,2.4751809,-1.6425968,1.2835859,-1.1047455,1.0204091,-1.000734,1.0396129,-1.1494161,1.3721074,-1.8305067,3.004591,-9.951538,-7.2703176,2.719001,-1.7325824,1.3265233,-1.12638,1.0294106,-1.0000005,1.0055602,-1.0621755,1.1974673,-1.4675773,2.0446825,-3.717036,29.637451,4.914928,-2.3302822,1.586092,-1.2561342,1.0910074,-1.0151011,1.0021777,-1.048246,1.1681542,-1.409229,1.9122492,-3.2611446,13.706694,6.065685,-2.5423524,1.6680092,-1.2958108,1.1108917,-1.022896,1.0003555,-1.0362546,1.1419611,-1.3573564,1.7985328,-2.9088614,8.923752,7.9360266,-2.8016405,1.7617136,-1.34021,1.1332947,-1.0324163,1.0000796,-1.0260992,1.1186042,-1.3111173,1.7000571,-2.0032349,3.5685809,-22.040308,-5.2069173,2.3889697,-1.6092608,1.2674342,-1.0966499,1.0172354,-1.0014758,1.0444951,-1.16008,1.393222,-1.8767718,3.147638,-11.825876,-6.5201507,2.6136355,-1.6944531,1.3084499,-1.117259,1.0255344,-1.0001129,1.0330577,-1.1347549,1.3430992,-1.7678922,2.8194137,-8.089383,-8.737239,2.8898642,-1.792088,1.3543675,-1.1404504,1.0355803,-1.0002942,1.0234293,-1.1121905,1.2983906,-1.6733925,2.5567484,-6.1543508,-13.26998,3.2369628,-1.9047799,1.633341,-1.2791142,1.102501,-1.0195171,1.0009104,-1.0409116,1.1522715,-1.3777589,1.8428317,-3.0421653,10.400184,7.049264,-2.6894064,1.721986,-1.3215185,1.1238528,-1.028326,1.0000057,-1.0300195,1.1277908,-1.3293166,1.7385098,-2.7356625,7.398616,9.71986,-2.9842424,1.8237797,-1.3690146,1.1478534,-1.0389049,1.0006444,-1.0209112,1.105999,-1.2860814,1.6477714,-2.488755,5.7484407,15.6870575,-3.357499,1.9415467,-1.4223275,1.1747526,-1.0513419,1.0028317,-1.0135121,1.0374925,-1.1447216,1.3628179,-1.8103385,2.9439178,-9.282385,-7.6729693,2.770088,-1.75067,1.3350338,-1.130679,1.031273,-1.0000341,1.0271378,-1.1210628,1.3159906,-1.7103158,2.657093,-6.8173904,-10.953179,3.0854256,-1.8568684,1.3841717,-1.1555107,1.0423926,-1.0011307,1.0185431,-1.1000241,1.2741742,-1.6231395,2.4246042,-5.3934464,-19.183939,3.48785,-1.9800345,1.4393698,-1.1833235,1.0553999,-1.0037795,1.0116384,-1.0813979,1.2367823,-1.5466889,2.232693,-2.8521917,8.382571,8.419007,-2.8561592,1.7805707,-1.3490129,1.1377437,-1.0343775,1.000198,-1.0244106,1.1145645,-1.3031038,1.6832461,-2.5832508,6.3216286,12.546912,-3.1941586,1.891441,-1.3998599,1.1634295,-1.0460459,1.0017532,-1.0163234,1.0942609,-1.262655,1.5994468,-2.3639896,5.080395,24.69136,-3.6292431,2.020358,-1.4570253,1.192183,-1.0596335,1.0048655,-1.0099082,1.0763143,-1.2264764,1.5258371,-2.1821396,4.2520714,808.6409,-4.209061,2.1717286,-1.5215049,1.3634745,-1.1450534,1.0376418,-1.0004975,1.0218359,-1.1082904,1.2906401,-1.6572411,2.5137331,-5.8938265,-14.685738,3.3113005,-1.9275917,1.4161019,-1.1716175,1.0498677,-1.0025123,1.0142504,-1.0887046,1.2515104,-1.5766461,2.3066368,-4.8023067,-34.640953,3.7831182,-2.0626438,1.4753217,-1.2013402,1.0640459,-1.0060902,1.0083203,-1.0714229,1.2165045,-1.5057412,2.1341078,-4.0571847,96.12918,4.4196825,-2.2217305,1.5421929,-1.234564,1.0803014,-1.0112588,1.0039988,-1.0194119,1.1022351,-1.2785842,1.6322452,-2.448182,5.520956,17.706497,-3.437845,1.9654223,-1.4329215,1.1800827,-1.0538609,1.0034087,-1.0123228,1.0833504,-1.2407272,1.5546943,-2.2522988,4.5536666,58.034184,-3.951178,2.1070287,-1.4942884,1.2108045,-1.0686407,1.0074545,-1.0068737,1.0667195,-1.2068554,1.4863667,-2.0884218,3.8798823,-45.37088,-4.6531563,2.2744045,-1.5636662,1.2451406,-1.085539,1.0131018,-1.0030216,1.0521897,-1.17655,1.4258988,-1.9495773,3.3843377,-5.193119,-22.29557,3.5749493,-2.0050447,1.4503444,-1.1888331,1.0580285,-1.0044428,1.010539,-1.078194,1.2302936,-1.5335501,2.2007535,-4.3300633,-178.80931,4.1354504,-2.153664,1.5139569,-1.2205857,1.0734214,-1.0089594,1.0055672,-1.0622005,1.1975192,-1.4676808,2.0449219,-3.71791,29.695192,4.913376,-2.32996,1.5859637,-1.2560716,1.0909761,-1.0150895,1.002182,-1.0482677,1.1682005,-1.409321,1.9124539,-3.2618093,13.719005,6.063304,-2.5419624,1.6678629,-1.2957407,1.1978779,-1.0623735,1.0056156,-1.008898,1.0732312,-1.2201979,1.5131756,-2.1517994,4.127925,-165.37448,-4.3383684,2.2027156,-1.5343608,1.2306945,-1.0783917,1.010606,-1.0043999,1.0578624,-1.1884861,1.4496527,-2.003463,3.5693834,-22.07221,-5.205171,2.3886297,-1.6091275,1.2673694,-1.0966175,1.0172229,-1.0014794,1.0445158,-1.1601248,1.3933105,-1.8769675,3.1482546,-11.8350315,-6.5173936,2.6132214,-1.694301,1.3083773,-1.1172224,1.025519,-1.0001138,1.0330753,-1.0684578,1.2104292,-1.4935352,2.105255,-3.9443288,56.54351,4.5628767,-2.2543662,1.5555357,-1.2411416,1.0835557,-1.0123953,1.0033711,-1.0537018,1.1797469,-1.432254,1.9639128,-3.4327154,17.565414,5.53461,-2.4506705,1.6332024,-1.2790473,1.1024674,-1.0195037,1.0009133,-1.0409312,1.1523148,-1.3778446,1.843019,-3.0427392,10.407256,7.0460362,-2.6889656,1.7218277,-1.3214437,1.123815,-1.0283098,1.000006,-1.0300362,1.1278294,-1.3293931,1.7386721,-2.7361197,7.402178,-34.10442,-4.8125772,2.3088176,-1.57752,1.2519385,-1.0889177,1.0143286,-1.0024801,1.0497154,-1.1712928,1.4154572,-1.9261496,3.3065586,-14.588625,-5.9094214,2.51637,-1.658237,1.2911189,-1.1085312,1.0219337,-1.0004833,1.0375112,-1.1447635,1.3629007,-1.8105178,2.9444528,-9.288011,-7.6691394,2.7696183,-1.7505047,1.3349563,-1.1306399,1.031256,-1.0000336,1.0271536,-1.1211,1.3160645,-1.7104716,2.6575224,-6.82041,-10.945342,3.0848343,-1.8566779,1.3840847,-1.2630975,1.0944821,-1.0164073,1.0017263,-1.0459002,1.1631155,-1.3992373,1.8900626,-3.1897628,12.47602,6.3396077,-2.5860496,1.6842825,-1.3035988,1.1148138,-1.0245142,1.0001891,-1.0342534,1.1374635,-1.3484583,1.7793798,-2.852692,8.387154,8.41439,-2.8556573,1.7803984,-1.3489327,1.1377033,-1.0343596,1.0001967,-1.0244255,1.1146004,-1.3031752,1.6833959,-2.5836549,6.3242197,12.53662,-3.1935227,1.8912417,-1.3997699,1.1633841,-1.0460249,1.0017493,-1.0163356,1.094293,-1.1552069,1.3835703,-1.8555497,3.0813396,-10.899167,-6.8383436,2.6600683,-1.7113948,1.3165025,-1.121321,1.0272474,-1.0000305,1.0311551,-1.1304082,1.3344976,-1.7495278,2.766841,-7.64654,-9.321468,2.9476259,-1.8115808,1.3633915,-1.1450115,1.0376228,-1.0004954,1.02185,-1.1083252,1.2907093,-1.657385,2.514114,-5.8960743,-14.671627,3.3106146,-1.9273831,1.4160086,-1.1715707,1.0498457,-1.0025077,1.0142617,-1.0887355,1.2515721,-1.5767723,2.3069518,-4.8037877,-34.56239,7.4233418,-2.7388313,1.7396339,-1.329846,1.1280582,-1.0301352,1.0000074,-1.0282141,1.1235912,-1.3210002,1.7208903,-2.6863594,7.026986,10.449331,-3.0461419,1.8441287,-1.3783525,1.1525714,-1.0410483,1.00093,-1.0194252,1.1022687,-1.278651,1.6323833,-2.4485412,5.5229244,17.685974,-3.437103,1.965204,-1.432825,1.180034,-1.0538379,1.0034033,-1.0123332,1.0833801,-1.240787,1.5548158,-2.2525973,4.554995,57.813957,-3.950187,2.1067722,-1.4941795,1.2107502,-1.1350316,1.0331795,-1.0001198,1.0254285,-1.1170063,1.3079485,-1.6934007,2.6107714,-6.50112,-11.889531,3.1519122,-1.8781272,1.3938363,-1.1603901,1.0446384,-1.0015006,1.0171492,-1.0964257,1.2669861,-1.6083395,2.3866174,-5.1948566,-22.263018,3.574144,-2.004816,1.4502444,-1.1887829,1.0580044,-1.0044366,1.0105487,-1.0782226,1.2303516,-1.5336672,2.2010367,-4.3312616,-176.73482,4.1343613,-2.1533945,1.5138439,-1.2205297,1.0733938,-1.0089506,1.0055741,-1.0622256,1.1975709,-1.295326,1.6669981,-2.5396557,6.0492425,13.792358,-3.2657506,1.9136665,-1.4098653,1.1684749,-1.048396,1.0022079,-1.0150207,1.0907913,-1.2557007,1.5852053,-2.328056,4.9042063,30.041752,-3.7230923,2.046341,-1.468294,1.197826,-1.0623486,1.0056086,-1.008907,1.0732586,-1.220254,1.5132884,-2.1520686,4.129011,-167.18948,-4.3371663,2.202432,-1.5342436,1.2306365,-1.0783631,1.0105963,-1.0044061,1.0578864,-1.1885362,1.4497527,-2.0036914,3.5701866,-22.104206,-5.2034264,3.3885965,-1.9508466,1.4264625,-1.1768337,1.0523237,-1.003052],"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/secf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..cbab43de7ee0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[1.0010513,9.171987,-1.024353,-3.106566,1.103711,1.0122937,-1.2614121,-1.0019553,1.5581275,1.0408143,1.050732,-1.1391594,3.8918986,1.9081606,1.0078593,-1.6873134,-5.675502,1.1972395,1.1817254,-5.099524,1.232237,-1.0178294,1.8477212,4.213766,-1.1521274,1.0441251,-2.218712,-1.181427,1.032067,-2.050676,-3.361201,1.1144832,-1.0662004,2.5374777,2.5297167,-1.050868,2.313863,2.80468,-1.0833155,1.0935895,3.1528938,-2.2129464,1.0746388,-1.1529965,-2.4143536,1.8439527,-1.1269373,-2.661214,1.9735247,-1.1039181,1.1982785,2.1266837,-1.6843027,1.1670808,2.3099961,-1.7871459,1.139409,-1.2523502,-1.9069175,1.5556828,-1.2151077,1.367094,1.6387764,-1.182024,1.3169149,1.7344524,-1.4505727,1.272436,-1.4546006,-1.5186265,1.2329497,-1.3942362,-1.5963097,1.3637531,-1.3409344,1.5605828,1.4200548,-1.2937378,1.4873705,1.4839128,-1.2518657,1.4230975,-1.6903379,2.1372485,1.3664402,-1.6005318,1.9824084,1.316336,-1.5223154,1.8515083,-2.4284067,-1.4538121,1.7396789,-2.2245116,-1.3935412,1.6432996,-2.0555205,2.824166,1.5596235,-1.913503,2.5452912,1.4865302,-1.7927749,2.320236,-3.3898413,-1.689156,2.1351779,-2.9877996,-1.5995057,1.9806677,-2.6751957,4.2596703,1.8500283,-2.4256506,3.6337168,1.7384084,-2.2222445,3.1729987,-5.7602153,-2.053627,2.8203416,-4.6591353,14.26091,2.542236,-3.9172034,8.946805,2.3177445,-3.384213,6.526298,-129.9317,-2.983487,5.1436973,-20.200947,-2.671792,4.2506332,-10.96223,-18.26181,3.6272104,-7.531116,-77.16237,3.1681,-5.743486,34.64717,8.546949,-4.6482744,14.157494,13.267628,-3.9096005,8.906147,29.75288,-5.5932827,6.504758,-121.80525,-7.2733097,5.130406,-19.993809,-10.421922,4.168869,-10.901124,-18.434418,3.6207285,-2.9442086,-80.34558,3.163218,-3.3330631,34.04179,-1.7788672,-3.848019,14.055571,-1.8972377,-4.560606,8.865859,-2.0363002,-5.6091337,6.483361,-2.2015162,-7.300317,5.117184,-2.4004788,-10.477737,-1.5131944,-2.6440618,-18.610325,-1.5900946,-2.9484015,-83.802765,-1.6783221,-3.3385143,33.457207,-1.7802125,-3.8553755,13.955108,-1.8988099,-4.5710506,-1.3346769,-2.0381567,-5.6250763,-1.3871617,-2.2037358,-7.327527,-1.4465773,-2.4031723,-10.534156,-1.5140775,-2.6473897,-1.1781322,-1.5911047,-2.952607,-1.2107254,-1.6794847,-3.3439841,-1.2474173,-1.78156,-3.8627613,-1.2887275,-1.9003854,-4.581545,-1.335283,-2.0400174,-1.101223,-1.387847,-2.2059605,-1.123879,-1.4473544,-2.405872,-1.1495397,-1.5149621,-2.6507263,-1.1785094,-1.5921168,-2.9568253,-1.21115,-1.6806495,-1.0490991,-1.2478954,-1.7829101,-1.0641435,-1.2892658,-1.901964,-1.0815451,-1.3358903,-2.041882,-1.101484,-1.3885334,-1.0099318,-1.1241752,-1.4481326,-1.0168284,-1.1498747,-1.5158482,-1.0256262,-1.178887,-1.5931305,-1.0364062,-1.2115753,-1.6818161,-1.04927,-1.2483741,-1.0001185,-1.0643425,-1.289805,-1.0016392,-1.0817741,-1.3364984,-1.0049251,-1.1017454,-1.3892207,-1.0100052,-1.1244719,-1.4489121,-1.0169247,-1.15021,-1.0060333,-1.0257462,-1.1792651,-1.0022992,-1.0365512,-1.2120012,-1.000336,-1.0494415,-1.2488534,-1.0001265,-1.0645418,-1.2903448,-1.0016688,-1.0820035,-1.028149,-1.0049766,-1.1020073,-1.0188608,-1.0100789,-1.1247691,-1.0114923,-1.0170213,-1.1505461,-1.0059766,-1.0258667,-1.0863167,-1.0022644,-1.0366967,-1.0682948,-1.0003228,-1.0496131,-1.0526724,-1.0001348,-1.0647416,-1.039292,-1.0016987,-1.0822333,-1.028023,-1.0050282,-1.1565063,-1.0187589,-1.0101529,-1.1300435,-1.0114135,-1.0171182,-1.106657,-1.0059202,-1.0259875,-1.1800233,-1.9333826,-1.2999237,-1.0680888,-1.00031,-1.0497853,-1.2498143,-1.7037803,-1.2195556,-1.039141,-1.0017289,-1.0824634,-2.7176683,-1.532503,-1.1561617,-1.0186572,-1.0102271,-1.1253647,-2.2503824,-1.4014223,-1.1063879,-1.005864,-1.0261085,-4.796533,-1.9317416,-1.2993697,-1.0678833,-1.0002973,-1.0499576,-3.4545398,-1.7025744,-1.2191187,-1.0389905,-1.0017592,-1.0826939,-2.7141469,-1.5315899,-1.1558174,-1.0185558,-1.0103016,-7.9023304,-2.2480555,-1.4007162,-1.1061192,-1.0058081,-1.0262299,-4.785008,-1.9301037,-1.2988166,-1.0676779,-1.0002849,25.064833,-3.4486847,-1.7013708,-1.2186825,-1.0388402,-1.0017899,-22.866653,-2.7106352,-1.5306783,-1.1554736,-1.0184548,-1.0103763,-7.8706503,-2.245734,-1.4000113,-1.1058508,-1.0057526,8.147552,-4.773538,-1.9284693,-1.2982641,-1.067473,-1.0002728,25.391376,-3.4428504,-1.7001694,-1.2182469,-1.0386902,3.498978,-22.601526,-2.7071333,-1.5297681,-1.1551304,-1.0183539,4.884527,-7.8392262,-2.243418,-1.3993074,-1.105583,2.2679498,8.181523,-4.762125,-1.926838,-1.2977126,-1.0672685,2.744309,25.726551,-3.4370363,-1.6989701,-1.2178121,-1.0385406,3.505013,-22.342484,-2.7036412,-1.5288595,-1.1547877,1.9457558,4.896549,-7.808054,-2.2411072,-1.3986048,-1.1053154,2.2703233,8.215781,-4.7507677,-1.92521,-1.2971619,1.5403023,2.7479153,26.070698,-3.4312432,-1.697773,-1.2173778,1.714087,3.5110703,-22.089315,-2.7001586,-1.5279523,1.3046519,1.9474252,4.908632,-7.77713,-2.2388017,-1.397903,1.4081659,2.2727022,8.250329,-4.739465,-1.9235854,-1.2966119,1.5412297,2.751532,26.424183,-3.42547,-1.6965779,1.2237266,1.7153134,3.517149,-21.841827,-2.696686,-1.5270467,1.3052136,1.949098,4.9207754,-7.7464523,-2.2365017,1.1092285,1.4088835,2.2750866,8.2851715,-4.728218,-1.921964,1.1597984,1.5421585,2.755159,26.787394,-3.4197176,1.0407376,1.2241701,1.716542,3.5232499,-21.59983,-2.6932228,1.0702647,1.3057762,1.950774,4.9329805,-7.716018,-2.234207,1.1095021,1.4096019,2.2774768,8.320312,-4.7170258,1.0198412,1.1601486,1.5430889,2.7587962,27.160736,-3.4139853,1.0408919,1.2246143,1.7177728,3.5293732,-21.363142,1.0004741,1.0704744,1.3063396,1.9524535,4.9452477,-7.685824,1.006584,1.1097761,1.4103216,2.2798727,8.355753,-4.705887,1.0199461,1.1604992,1.544021,2.7624438,27.54464,1.001372,1.0410465,1.2250592,1.719006,3.5355184,-21.131588,1.0004901,1.0706846,1.3069038,1.9541366,4.957577,1.0245025,1.0066435,1.1100506,1.4110423,2.282274,8.3914995,1.0092499,1.0200514,1.1608504,1.5449544,2.7661016,1.0793941,1.0013453,1.0412014,1.2255046,1.7202413,3.5416863,1.0474949,1.0005063,1.0708951,1.3074689,1.9558228,4.9699697,1.0243856,1.0067034,1.1103255,1.4117641,2.284681,1.1210942,1.0091794,1.0201569,1.1612021,1.5458894,2.7697701,1.0791692,1.0013187,1.0413566,1.2259507,1.7214788,1.2429224,1.0473273,1.0005227,1.071106,1.3080349,1.9575126,1.1745863,1.0242689,1.0067635,1.1106007,1.4124871,1.4392744,1.1208028,1.0091091,1.0202628,1.1615543,1.5468259,1.3289768,1.0789444,1.0012923,1.0415121,1.2263975,1.7227187,1.2424518,1.04716,1.0005394,1.0713172,1.3086016,1.5806054,1.1742148,1.0241524,1.0068238,1.1108766,1.4132112,1.4385101,1.1205117,1.0090392,1.0203689,1.1619071,2.0188992,1.3283799,1.0787202,1.0012664,1.0416679,1.2268449,1.7662452,1.2419816,1.0469931,1.0005565,1.0715288,2.9051003,1.5796129,1.1738441,1.0240363,1.0068845,1.1111528,1.4139364,2.2919366,8.537622,-2.1507688,-6.714832,5.447484,2.017083,1.327784,1.0784963,1.0012406,1.0418241,1.227293,1.725205,3.5665832,-1.6515788,-3.2151651,56.10187,2.9010377,1.5786219,1.1734738,1.0239204,1.0069454,1.1114293,1.4146628,2.2943666,-1.3713523,-2.1528742,-6.737806,5.432547,2.0152705,1.3271887,1.0782728,1.0012151,1.0419806,1.2277417,1.7264514,-1.2009215,-1.6526945,-3.2202184,54.5312,2.896987,1.5776325,1.173104,1.0238049,1.0070065,1.1117064,1.4153903,-1.0952076,-1.3720137,-2.154984,-6.760939,5.4176927,2.0134618,1.3265945,1.0780497,1.00119,1.0421374,1.2281911,1.7277001,-1.2013319,-1.653812,-3.2252886,53.046097,2.8929484,1.5766448,1.1727349,1.0236896,1.007068,1.1119838,1.4161187,-1.095459,-1.3726759,-2.1570988,-6.7842336,5.402921,2.0116568,1.3260012,1.077827,1.0011649,1.0422945,1.2286412,-1.0330869,-1.2017429,-1.6549317,-3.2303753,51.639755,2.888922,1.5756588,1.1723663,1.0235747,1.0071298,1.1122618,-1.0037946,-1.0957108,-1.3733392,-2.159218,-6.807691,5.3882313,2.0098557,1.3254086,1.0776045,1.0011402,1.0424521,-1.0031936,-1.0332247,-1.2021545,-1.6560533,-3.235479,50.306065,2.8849072,1.5746745,1.1719981,1.02346,1.0071918,-1.0311974,-1.0038396,-1.0959629,-1.3740035,-2.1613424,-6.8313127,5.373623,2.0080583,1.3248171,1.0773826,1.0011158,1.0426098,-1.0031526,-1.0333627,-1.2025666,-1.6571767,-3.2405996,49.039543,2.8809044,1.5736917,1.1716306,1.0233457,1.007254,-1.0310643,-1.003885,-1.0962155,-1.3746688,-2.1634712,-6.855101,5.3590946,2.0062647,1.3242264,1.077161,1.0010916,-1.0917425,-1.0031117,-1.0335011,-1.2029793,-1.6583022,-3.2457376,47.835243,2.8769135,1.5727106,1.1712635,1.0232316,-1.1952583,-1.0309315,-1.0039306,-1.0964686,-1.3753352,-2.165605,-6.879058,5.344646,2.0044746,1.3236365,1.0769397,-1.3622297,-1.0914972,-1.0030712,-1.0336398,-1.2033927,-1.6594297,-3.2508926,46.688686,2.8729343,1.5717311,1.170897,-1.636214,-1.1948568,-1.0307989,-1.0039765,-1.0967219,-1.3760026,-2.1677434,-6.9031844,5.330276,2.0026884,1.3230475,-2.121879,-1.3615831,-1.0912521,-1.003031,-1.0337788,-1.2038068,-1.660559,-3.256065,45.595818,2.868967,1.5707533,1.1705312,-1.6351268,-1.1944557,-1.0306667,-1.0040226,-1.0969757,-1.3766708,-2.1698868,-6.9274826,5.315985,2.000906,1.3224595,-2.1198423,-1.3609375,-1.0910076,-1.002991,-1.033918,-1.2042212,-1.6616905,-3.2612543,44.55295,2.8650115,1.5697771,-3.136763,-1.6340415,-1.1940554,-1.0305349,-1.0040691,-1.09723,-1.3773402,-2.1720347,-6.951954,5.301772,1.999127,-6.3686814,-2.11781,-1.3602929,-1.0907633,-1.0029513,-1.0340576,-1.2046365,-1.6628239,-3.2664616,43.556736,2.8610675,109.63359,-3.1319818,-1.6329582,-1.1936556,-1.0304031,-1.0041158,-1.0974846,-1.3780106,-2.174188,-6.9766006,5.287636,5.7140307,-6.3481793,-2.115782,-1.3596493,-1.0905195,-1.0029118,-1.0341976,-1.2050523,-1.6639591,-3.271686,42.604107,2.857135,116.17342,-3.1272163,-1.6318766,-1.1932564,-1.0302719,-1.0041627,-1.0977396,-1.378682,-2.1763456,-7.0014243,5.2735763,5.7305865,-6.3278103,-2.1137586,-1.3590065,-1.0902762,-1.0028726,-1.0343378,-1.2054687,-1.6650965,-3.276928,41.69227,2.9801528,123.54302,-3.122466,-1.6307969,-1.1928577,-1.0301409,-1.00421,-1.097995,-1.3793544,-2.178508,-7.0264277,2.0521622,5.747239,-6.307574,-2.1117394,-1.3583648,-1.0900332,-1.0028337,-1.0344783,-1.2058856,-1.6662359,-3.282188,1.5987114,2.9844556,131.91098,-3.1177309,-1.629719,-1.1924597,-1.0300102,-1.0042574,-1.0982509,-1.3800278,-2.1806757,1.3398439,2.0540524,5.7639914,-6.2874675,-2.1097248,-1.3577241,-1.0897906,-1.002795,-1.0346191,-1.2063032,-1.6673772,1.1813459,1.5997362,2.9887714,141.4949,-3.113011,-1.628643,-1.1920623,-1.0298798,-1.0043052,-1.0985072,-1.3807023,-2.182848,1.3404579,2.055947,5.7808423,-6.2674913,-2.1077147,-1.3570844,-1.0895483,-1.0027566,-1.0347602,-1.2067214,-1.6685206,1.1817276,1.6007628,2.9931006,152.58063,-3.108306,-1.6275691,-1.1916654,-1.0297496,-1.0043533,-1.0987638,-1.3813777,1.0834981,1.3410728,2.0578454,5.7977943,-6.247643,-2.1057086,-1.3564454,-1.0893065,-1.0027184,-1.0349017,-1.2071403,1.0266539,1.1821101,1.6017913,2.9974432,165.55112,-3.103616,-1.6264967,-1.191269,-1.0296199,-1.0044016,-1.099021,1.0018985,1.0837303,1.3416886,2.059748,5.814847,-6.227921,-2.103707,-1.3558075,-1.0890651,-1.0026807,-1.0350435,1.0055614,1.0267766,1.1824931,1.6028212,3.001799,180.9317,-3.098941,-1.6254263,-1.1908733,-1.0294904,-1.0044501,-1.0992783,1.0019304,1.083963,1.3423053,2.0616543,5.832002,-6.2083254,-2.1017098,-1.3551706,-1.0888242,-1.002643,-1.0351856,1.005507,1.0268995,1.1828765,1.6038531,3.0061686,199.46294,-3.094281,-1.6243577,-1.1904782,-1.0293612,-1.004499,1.038023,1.0019625,1.0841961,1.3429229,2.0635653,5.84926,-6.1888547,-2.0997171,-1.3545347,-1.0885835,-1.0026057,1.1043892,1.0054529,1.0270227,1.1832606,1.6048867,3.0105515,222.22339,-3.0896358,-1.6232909,-1.1900836,-1.0292324,1.2158731,1.0378747,1.0019948,1.0844294,1.3435416,2.06548,5.866622,-6.1695065,-2.0977287,-1.3538998,-1.0883433,1.3954725,1.1041236,1.005399,1.0271463,1.1836451,1.605922,3.014948,250.8473,-3.0850055,-1.6222259,-1.1896896,1.692441,1.2154416,1.0377269,1.0020275,1.0846633,1.344161,2.0673988,5.884089,-6.150281,-2.0957444,-1.3532658,-1.0881034,1.3947756,1.1038585,1.0053453,1.0272702,1.1840303,1.606959,3.0193582,287.93542,-3.0803893,-1.6211628,-1.1892962,1.6912553,1.2150108,1.0375793,1.0020604,1.0848974,1.3447814,2.0693216,5.901662,-6.1311765,-2.0937645,-1.3526326,2.2262723,1.3940798,1.1035937,1.005292,1.0273944,1.184416,1.6079979,3.023782,337.89362,-3.0757883,-1.6201016,3.394217,1.690072,1.2145805,1.037432,1.0020937,1.085132,1.3454028,2.0712488,5.9193416,-6.112192,-2.091789,7.5827107,2.2240012,1.3933849,1.1033293,1.0052391,1.0275189,1.1848023,1.6090385,3.02822,408.82712,-3.0712016,-28.96774,3.388574,1.6888906,1.2141509,1.037285,1.002127,1.085367,1.3460251,2.07318,5.937129,-6.093326,-2.0898178,7.5535574,2.2217352,1.3926913,1.1030655,1.0051862,1.0276437,1.1851892,1.610081,3.0326715,517.4562,-3.0666292,-29.404871,3.38295,1.6877114,1.2137219,1.0371383,1.0021608,1.0856023,1.3466482,2.0751154,5.955025,-6.074578,-5.013537,7.52463,2.2194746,1.3919985,1.1028019,1.0051337,1.0277687,1.1855767,1.6111251,3.037137,704.70184,-2.7826014,-29.855408,3.377346,1.686534,1.2132936,1.0369921,1.0021948,1.0858381,1.3472724,2.077055,5.973031,-1.9634124,-5.026217,7.495925,2.2172189,1.391307,1.1025388,1.0050815,1.0278941,1.1859647,1.612171,3.0416162,-1.5500932,-2.786317,-30.31997,3.371761,1.685359,1.2128658,1.036846,1.002229,1.0860741,1.3478974,2.0789988,-1.3105779,-1.9651177,-5.038963,7.4674397,2.2149684,1.3906164,1.1022762,1.0050296,1.0280198,1.1863532,1.6132188,3.04611,2550.6528,-3.0529988,-1.6148221,-1.1869476,-1.0282123,-3.7553046,-1.7616707,-1.2403532,-1.0464156,-1.0006176,-1.0722672,-1.3111484,-1.9668264,-5.051775,7.4391723,2.212723,1.3899269,1.102014,1.004978,1.0281458,1.1867423,1.6142683,3.0506172,-8234.831,-3.0484838,-1.6137717,-1.1865581,15.625296,-3.748338,-1.7603599,-1.2398862,-1.0462502,-1.0006359,-1.0724804,-1.3117198,-1.9685388,-5.064654,7.41112,2.2104828,1.3892385,1.1017522,1.0049264,1.0282722,1.187132,1.6153197,3.0551393,-1574.9836,-3.043983,-1.6127231,-1.1861694,15.751419,-3.7413983,-1.7590516,-1.2394198,-1.0460851,-1.0006543,-1.0726941,-1.312292,-1.9702543,-5.0775995,7.383281,2.208248,1.388551,1.1014907,1.0048753,1.0283986,1.1875223,1.6163728,3.0596752,-870.76245,-3.0394957,-1.6116761,2.585595,15.8796,-3.7344851,-1.7577456,-1.2389542,-1.0459203,-1.000673,-1.072908,-1.312865,-1.9719735,-5.0906124,7.355652,2.206018,1.3878647,1.1012297,1.0048244,1.0285256,1.1879131,1.6174276,3.0642254,-601.71716,-3.035023,1.4983748,2.5887647,16.009888,-3.7275984,-1.756442,-1.238489,-1.0457557,-1.000692,-1.0731224,-1.3134389,-1.9736964,-5.1036944,7.3282304,2.203793,1.3871794,1.1009691,1.0047739,1.0286528,1.1883045,1.6184844,3.06879,-459.68533,-3.0305643,1.4992341,2.5919433,16.142336,-3.7207382,-1.7551409,-1.2380248,-1.0455917,-1.0007113,-1.0733372,-1.3140136,-1.9754227,-5.116845,7.301015,2.2015731,1.3864951,1.100709,1.0047235,1.0287802,1.1886965,1.619543,3.073369,-371.90048,1.1439135,1.5000948,2.59513,16.276999,-3.713904,-1.7538422,-1.2375612,-1.0454279,-1.0007308,-1.0735523,-1.3145893,-1.9771527,-5.1300645,7.2740026,2.1993585,1.3858118,1.1004492,1.0046734,1.0289081,1.1890891,1.6206033,3.0779626,1.0152321,1.14424,1.5009568,2.5983255,16.41393,-3.707096,-1.7525457,-1.2370982,-1.0452644,-1.0007505,-1.0737678,-1.3151656,-1.9788861,-5.1433544,7.247191,2.1971486,1.3851296,1.1001898,1.0046237,1.0290362,1.1894822,1.6216655,3.082571,1.0153235,1.144567,1.5018201,2.6015296,16.553192,-3.700314,-1.7512518,-1.2366358,-1.0451013,-1.0007706,-1.0739836,-1.315743,-1.980623,-5.1567144,7.220578,2.194944,1.3844485,1.0999309,1.0045741,1.0291646,1.189876,1.6227294,1.0128773,1.0154153,1.1448946,1.5026848,2.6047423,16.69484,-3.6935573,-1.7499602,-1.2361742,-1.0449384,-1.000791,-1.0741998,-1.316321,-1.9823635,-5.1701455,7.194163,2.1927443,1.3837683,1.0996723,1.0045248,1.0292933,1.1902702,1.1353106,1.0127938,1.0155073,1.1452225,1.503551,2.6079633,16.838938,-3.6868267,-1.7486708,-1.2357132,-1.044776,-1.0008116,-1.0744163,-1.3169,-1.9841077,-5.183648,7.1679416,2.1905496,1.3830893,1.0994143,1.0044758,1.0294223,1.190665,1.1349976,1.0127105,1.0155997,1.145551,1.5044186,2.6111934,16.985548,-3.6801212,-1.7473838,-1.235253,-1.0446138,-1.0008323,-1.0746334,-1.3174798,-1.9858555,-5.197222,7.1419125,2.1883597,1.3824112,1.0991566,1.0044272,1.0295516,1.4757683,1.1346849,1.0126274,1.0156922,1.14588,1.5052876,2.6144319,17.134739,-3.6734412,-1.7460994,-1.2347933,-1.044452,-1.0008534,-1.0748506,-1.3180606,-1.9876068,-5.21087,7.1160736,2.1861749,1.3817341,1.0988992,1.0043787,2.50338,1.4749465,1.1343727,1.0125446,1.0157852,1.1462094,1.5061579,2.617679,17.28658,-3.6667864,-1.7448171,-1.2343343,-1.0442904,-1.0008748,-1.0750684,-1.3186423,-1.9893616,-5.2245903,7.0904226,2.183995,1.3810581,1.0986423,12.9423,2.5004337,1.474126,1.134061,1.0124621,1.0158783,1.1465394,1.5070297,2.6209352,17.44114,-3.6601562,-1.7435372,-1.2338761,-1.0441293,-1.0008965,-1.0752864,-1.3192247,-1.9911203,-5.2383847,7.064958,2.18182,1.3803831,1.0983859,12.857112,2.497495,1.4733068,1.1337498,1.0123799,1.0159718,1.1468699,1.507903,2.6242,17.598492,-3.6535513,-1.7422597,-1.2334185,-1.0439684,-1.0009184,-1.0755048,-1.319808,-1.9928824,-5.252253,7.039677,2.1796498,1.3797091,-3.9533544,12.773041,2.4945638,1.4724889,1.133439,1.012298,1.0160656,1.1472008,1.5087775,2.627474,17.758715,-3.6469712,-1.7409844,-1.2329615,-1.0438079,-1.0009404,-1.0757236,-1.3203921,-1.9946482,-5.266197,7.0145793,2.1774848,-1.799242,-3.9611347,12.690065,2.49164,1.4716723,1.1331288,1.0122164,1.0161597,1.1475321,1.5096534,2.6307566,17.921886,-3.6404157,-1.7397115,-1.2325052,-1.0436475,-1.000963,-1.0759428,-1.3209772,-1.996418,-5.2802167,6.989661,2.1753242,-1.8006252,-3.9689462,12.608164,2.488724,1.470857,1.1328188,1.012135,1.016254,1.1478641,1.510531,2.634048,18.088089,-3.6338844,-1.738441,-1.2320496,-1.0434877,-1.0009856,-1.0761623,-1.3215631,-1.9981911,-5.294312,6.9649205,-1.2546369,-1.802011,-3.9767904,12.527317,2.4858153,1.4700431,1.1325096,1.012054,1.0163485,1.1481966,1.5114098,2.6373487,18.25741,-3.627378,-1.7371727,-1.2315946,-1.0433282,-1.0010086,-1.0763823,-1.3221499,-1.999968,-5.3084846,-1.051691,-1.2551254,-1.8033994,-3.984666,12.447504,2.4829142,1.4692303,1.1322006,1.0119731,1.0164434,1.1485294,1.5122899,2.640658,18.429934,-3.620895,-1.7359067,-1.2311403,-1.0431689,-1.0010318,-1.0766026,-1.3227375,-2.0017486,-5.322735,-1.0518671,-1.2556146,-1.8047904,-3.9925747,12.368704,2.4800203,1.468419,1.1318922,1.0118927,1.0165386,1.1488628,1.5131716,2.6439764,18.605755,-3.6144369,-1.7346432,-1.2306867,-1.04301,-1.0010552,-1.0768232,-1.323326,-2.003533,-1.0001664,-1.0520434,-1.2561045,-1.806184,-4.0005155,12.290899,2.477134,1.4676088,1.1315842,1.0118124,1.0166341,1.1491967,1.5140547,2.647304,18.784967,-3.6080022,-1.7333819,-1.2302336,-1.0428514,-1.0010791,-1.0770442,-1.3239154,-1.0652525,-1.0001572,-1.0522202,-1.2565953,-1.8075806,-4.0084887,12.21407,2.4742548,1.4667999,1.1312767,1.0117325,1.0167298,1.1495311,1.5149393,2.6506405,18.967672,-3.6015913,-1.7321228,-1.2297813,-1.0426931,-1.001103,-1.0772657,-1.3245056,-1.0650519,-1.0001482,-1.0523971,-1.2570865,-1.8089793,-4.016495,12.138199,2.471383,1.4659923,1.1309696,1.0116528,1.0168259,1.1498661,1.5158253,2.6539862,19.153969,-3.5952046,-1.730866,-1.2293296,-1.0425352,-1.0011274,-1.0774876,-1.2911834,-1.0648516,-1.0001395,-1.0525746,-1.2575786,-1.810381,-4.0245347,12.063267,2.4685187,1.465186,1.1306632,1.0115734,1.0169222,1.1502014,1.5167127,2.657341,19.343967,-3.588841,-1.7296115,-1.2288786,-1.0423775,-1.0011519,-1.9060035,-1.2906423,-1.0646517,-1.000131,-1.0527524,-1.2580714,-1.8117852,-4.0326076,11.989258,2.4656615,1.464381,1.130357,1.0114943,1.0170189,1.1505374,1.5176016,2.660705,19.537779,-3.582501,-1.7283592,-1.2284281,-1.0422202,-4.6085315,-1.9044172,-1.290102,-1.0644522,-1.0001229,-1.0529304,-1.2585648,-1.8131921,-4.040714,11.916155,2.4628117,1.4635772,1.1300514,1.0114155,1.0171157,1.1508737,1.5184917,2.6640785,19.735518,-3.5761843,-1.7271093,-1.2279785,-1.0420632,-4.5979104,-1.9028337,-1.2895625,-1.064253,-1.0001149,-1.0531088,-1.2590592,-1.8146018,-4.048854,11.843941,2.459969,1.4627746,1.1297462,1.0113369,1.0172129,1.1512105,1.5193835,2.667461,19.937307,-3.5698907,-1.7258615,-1.2275294,8.764758,-4.58734,-1.9012535,-1.2890236,-1.0640541,-1.0001073,-1.0532875,-1.259554,-1.8160139,-4.057028,11.7726,2.4571335,1.4619733,1.1294415,1.0112586,1.0173104,1.151548,1.5202768,2.670853,20.14327,-3.5636203,-1.7246162,2.3089473,8.804124,-4.5768185,-1.8996763,-1.2884855,-1.0638556,-1.0000999,-1.0534666,-1.2600497,-1.8174288,-4.065236,11.702115,2.4543054,1.4611734,1.1291372,1.0111806,1.0174081,1.1518859,1.5211715,2.674254,20.353537,-3.5573726,-1.7233729,2.3114176,8.843848,-4.5663466,-1.8981023,-1.2879485,-1.0636575,-1.0000927,-1.053646,-1.2605461,-1.8188465,-4.0734787,11.632474,2.4514844,1.4603746,1.1288334,1.0111029,1.0175062,1.1522243,1.5220675,2.6776648,20.568247,-3.5511477,1.4204777,2.313894,8.883935,-4.5559244,-1.8965315,-1.287412,-1.0634598,-1.000086,-1.0538257,-1.2610433,-1.8202667,-4.0817556,11.56366,2.4486701,1.4595771,1.1285301,1.0110254,1.0176045,1.1525632,1.5229651,2.6810846,20.78754,1.1139245,1.4212142,2.3163762,8.924389,-4.54555,-1.8949636,-1.2868764,-1.0632623,-1.0000794,-1.0540059,-1.2615411,-1.8216897,-4.0900674,11.495657,2.4458632,1.4587809,1.1282272,1.0109483,1.0177032,1.1529027,1.523864,2.684514,21.011566,1.1142054,1.4219518,2.3188643,8.965216,-4.535224,-1.8933991,-1.2863415,-1.0630652,-1.000073,-1.0541862,-1.2620397,-1.8231155,-4.0984144,11.4284525,2.4430635,1.457986,1.1279248,1.0108714,1.017802,1.1532426,1.5247645,2.6879532,1.0076303,1.1144867,1.4226905,2.3213584,9.00642,-4.5249467,-1.8918372,-1.2858075,-1.0628685,-1.0000669,-1.0543671,-1.2625389,-1.824544,-4.1067963,11.362034,2.4402707,1.4571923,1.1276228,1.0107949,1.0179013,1.1535829,1.5256665,1.0225589,1.0076945,1.1147686,1.4234303,2.3238587,9.048006,-4.5147166,-1.8902787,-1.2852743,-1.0626721,-1.0000612,-1.0545481,-1.263039,-1.8259751,-4.115214,11.296384,2.437485,1.4563998,1.1273214,1.0107185,1.0180007,1.1539239,1.52657,1.0224469,1.007759,1.1150508,1.4241712,2.3263648,9.089982,-4.504534,-1.8887234,-1.2847418,-1.0624762,-1.0000556,-1.0547296,-1.2635397,-1.8274089,-4.1236672,11.231491,2.4347062,1.4556087,1.1270202,1.0106424,1.0181005,1.1542653,1.1683644,1.0223352,1.0078236,1.1153334,1.4249134,2.328877,9.132351,-4.494398,-1.8871709,-1.28421,-1.0622804,-1.0000503,-1.0549114,-1.2640412,-1.8288455,-4.1321564,11.167344,2.4319344,1.4548186,1.1267197,1.0105666,1.0182006,1.5640013,1.1680021,1.0222238,1.0078886,1.1156166,1.4256568,2.3313954,9.175118,-4.484309,-1.8856215,-1.2836791,-1.0620852,-1.0000453,-1.0550935,-1.2645434,-1.8302848,-4.1406813,11.103928,2.4291694,1.4540299,1.1264197,1.0104911,2.8378346,1.5630363,1.1676404,1.0221127,1.0079539,1.1159,1.4264011,2.3339195,9.218291,-4.4742665,-1.8840752,-1.2831489,-1.0618901,-1.0000405,-1.0552759,-1.2650464,-1.831727,-4.149243,11.04123,2.4264116,1.4532424,1.12612,1.0104159,2.8339703,1.5620729,1.1672794,1.0220019,1.0080194,1.1161841,1.4271468,2.3364499,9.261875,-4.4642696,-1.8825319,-1.2826196,-1.0616956,-1.000036,-1.0554588,-1.26555,-1.8331718,-4.157841,10.97924,2.4236605,1.4524561,1.1258208,36.982113,2.8301172,1.5611112,1.1669186,1.0218912,1.0080853,1.1164685,1.4278935,2.3389864,9.305876,-4.4543185,-1.8809915,-1.282091,-1.0615013,-1.0000318,-1.0556419,-1.2660545,-1.8346194,-4.1664762,10.917944,2.4209163,1.4516711,-3.3138607,36.293163,2.826275,1.5601511,1.1665586,1.021781,1.0081514,1.1167533,1.4286414,2.3415291,9.350299,-4.444413,-1.8794544,-1.2815632,-1.0613074,-1.0000279,-1.0558255,-1.2665596,-1.8360698,-4.175148,10.857332,2.418179,1.4508873,-3.3192458,35.62942,2.8224444,1.5591924,1.166199,1.021671,1.0082177,1.1170387,1.4293904,2.3440778,9.39515,-4.434553,-1.87792,-1.2810361,-1.0611138,-1.0000242,-1.0560093,-1.2670655,-1.8375231,-4.1838574,10.797393,2.4154487,-1.6753664,-3.3246496,34.98953,2.8186245,1.5582355,1.16584,1.0215614,1.0082843,1.1173245,1.4301407,2.3466327,9.440436,-4.4247375,-1.8763888,-1.2805098,-1.0609206,-1.0000207,-1.0561935,-1.2675722,-1.8389789,-4.192604,10.738114,-1.2096453,-1.6765239,-3.3300717,34.372227,2.814816,1.5572802,1.1654814,1.0214521,1.0083513,1.1176106,1.4308921,2.349194,9.486164,-4.4149666,-1.8748605,-1.2799842,-1.0607277,-1.0000175,-1.056378,-1.2680795,-1.8404377,-4.2013884,10.679485,-1.2100683,-1.6776834,-3.3355124,33.776337,2.8110185,1.5563263,1.1651235,1.021343,1.0084186,1.1178972,1.4316447,2.3517613,9.532339,-4.40524,-1.873335,-1.2794595,-1.0605353,-1.0000147,-1.0565629,-1.2685876,-1.8418993,-4.2102113,-1.0360377,-1.210492,-1.6788447,-3.3409722,33.200764,2.807232,1.555374,1.164766,1.0212342,1.0084859,1.1181842,1.4323984,2.3543348,9.578969,-4.395557,-1.8718128,-1.2789356,-1.0603431,-1.000012,-1.0567482,-1.2690965,-1.8433636,-1.0023891,-1.0361819,-1.2109164,-1.6800083,-3.3464503,32.644485,2.803456,1.5544233,1.164409,1.0211257,1.0085537,1.1184717,1.4331533,2.3569145,9.626059,-4.3859177,-1.8702934,-1.2784123,-1.0601512,-1.0000097,-1.0569336,-1.2696061,-1.8448308,-1.0023537,-1.0363265,-1.2113413,-1.6811739,-3.3519475,32.106552,2.7996912,1.5534743,1.1640526,1.0210174,1.0086217,1.1187598,1.4339094,2.3595006,9.673617,-4.376322,-1.8687772,-1.2778898,-1.0599599,-1.0000075,-1.0571195,-1.2701163,-1.0866842,-1.0023184,-1.0364714,-1.2117668,-1.6823417,-3.3574638,31.586063,2.7959373,1.5525268,1.1636968,1.0209095,1.00869,1.119048,1.4346666,2.3620932,9.72165,-4.366769,-1.8672636,-1.2773681,-1.0597687,-1.0000056,-1.0573058,-1.3488845,-1.086447,-1.0022836,-1.0366166,-1.212193,-1.6835114,-3.362999,31.082193,2.7921941,1.5515807,1.1633414,1.0208019,1.0087585,1.119337,1.4354252,2.364692,9.770165,-4.357259,-1.8657532,-1.2768472,-1.059578,-1.000004,-2.08012,-1.3482579,-1.0862104,-1.0022489,-1.0367621,-1.2126198,-1.6846832,-3.3685532,30.594152,2.7884617,1.5506364,1.1629865,1.0206946,1.0088274,1.1196262,1.4361848,2.3672972,9.81917,-4.347791,-1.8642455,-1.2763271,-1.0593876,-1.0000027,-2.0781739,-1.3476323,-1.085974,-1.0022144,-1.0369079,-1.2130471,-1.685857,-3.3741271,30.121212,2.78474,1.5496935,1.1626322,1.0205876,1.0088966,1.119916,1.4369456,2.3699086,9.868671,-4.338366,-1.8627408,-1.2758076,-1.0591974,-5.9653826,-2.076232,-1.3470076,-1.0857381,-1.0021803,-1.0370541,-1.2134751,-1.687033,-3.37972,29.662674,2.781029,1.5487522,1.1622784,1.0204809,1.008966,1.1202061,1.4377075,2.3725266,9.918676,-4.3289824,-1.8612391,-1.2752889,6.082514,-5.947423,-2.074294,-1.3463839,-1.0855024,-1.0021465,-1.0372006,-1.2139038,-1.6882111,-3.3853326,29.217901,2.7773285,1.5478125,1.1619252,1.0203744,1.0090356,1.1204967,1.4384707,2.375151,9.969193,-4.3196406,-1.8597404,-1.2747712,-1.0588183,-1.0000004,-1.0582422,-1.2731942,-1.8551806,-4.291365,10.126729,2.3832057,1.4408088,1.121387,1.0092502,-1.1652577,-1.5566838,-2.8124418,-33.99744,3.3334694,1.6772481,1.2099096,1.0358398,1.0024744,1.0877262,1.3522683,2.092626,6.1202283,-5.911831,-2.0704312,-1.3451391,-1.0850325,-1.0020795,-1.0374944,-1.2147629,-1.6905735,-3.3966162,28.367216,2.7699592,1.5459377,1.1612202,1.0201623,1.0091758,1.1210793,1.4400007,2.3804188,10.071796,-4.3010807,-1.8567512,-1.2737377,-1.0584407,-1.0,-1.0586191,-1.2742261,-1.8581636,-4.309839,10.023005,2.377924,1.4392763,-1.0082594,-1.0216025,-1.1659745,-1.5585943,-2.8200564,-35.226864,3.3226204,1.6749327,1.2090645,1.0355531,1.0025474,1.0882051,1.3535345,2.0965853,6.158419,-5.876669,-2.0665846,-1.3438982,-1.0845641,-1.0020136,-1.0377896,-1.2156246,-1.6929444,-3.4079792,27.5647,2.7626317,1.544069,1.1605172,1.0199515,1.009317,1.1216636,1.4415354,2.3857129,10.176543,-4.2826843,-1.8537737,-1.2727071,-1.0580643,-1.0000008,-1.0589975,-1.2752609,-1.8611581,-4.3284764,9.921394,2.3726683,-1.1166464,-1.0081266,-1.0218223,-1.1666936,-1.560511,-2.8277152,-36.548584,3.311845,1.6726257,1.2082219,1.0352676,1.0026215,1.0886855,1.3548043,2.1005616,6.1970963,-5.8419285,-2.0627544,-1.3426609,-1.0840971,-1.0019488,-1.0380859,-1.2164887,-1.6953236,-3.419422,26.806362,2.7553458,1.5422064,1.1598165,1.0197419,1.0094595,1.1222498,1.443075,2.3910327,10.283503,-4.2644486,-1.8508079,-1.2716796,-1.0576894,-1.0000026,-1.0593773,-1.276299,-1.8641641,-4.347281,9.821833,-1.426867,-1.1160774,-1.0079948,-1.0220433,-1.1674148,-1.5624341,-2.8354187,-37.973396,3.301143,1.6703264,1.2073817,1.0349834,1.0026966,1.0891675,1.356078,2.1045554,6.236269,-5.8076034,-2.0589406,-1.3414273,-1.0836319,-1.001885,-1.0383836,-1.2173554,-1.6977113,-3.4309452,26.088665,2.7481012,1.54035,1.1591177,1.0195333,1.0096029,1.1228378,1.4446192,2.3963792,10.392746,-4.2463727,-1.8478534,-1.2706552,-1.0573158,-1.0000056,-1.0597584,-1.27734,-1.8671819,-9.159028,-2.3304498,-1.4253777,-1.1155103,-1.0078642,-1.0222656,-1.168138,-1.5643637,-2.8431673,-39.513844,3.2905135,1.6680355,1.2065439,1.0347004,1.0027728,1.089651,1.3573556,2.1085665,6.275947,-5.7736845,-2.055143,-1.3401974,-1.083168,-1.0018224,-1.0386825,-1.2182246,-1.7001076,-3.4425504,25.40842,2.7408974,1.5384996,1.1584209,1.019326,1.0097475,1.1234274,1.4461683,2.401752,10.504346,-4.228453,-1.8449101,-1.2696337,-1.0569437,-1.0000095,-1.060141,-1.2783841,4.508348,-9.074189,-2.325424,-1.4238931,-1.1149448,-1.0077348,-1.022489,-1.1688634,-1.5662996,-2.8509612,-41.184605,3.2799554,1.6657525,1.2057087,1.0344186,1.00285,1.0901362,1.3586369,2.112595,6.3161397,-5.7401657,-2.0513616,-1.3389713,-1.0827059,-1.0017608,-1.0389826,-1.2190963,-1.7025124,-3.454238,24.762772,2.7337344,1.5366553,1.1577264,1.0191197,1.0098933,1.124019,1.4477224,2.4071515,10.618381,-4.210689,-1.8419783,-1.268615,-1.0565729,-1.0000145,-1.0605248,1.8924228,4.5287967,-8.990917,-2.3204222,-1.4224132,-1.1143812,-1.0076063,-1.0227134,-1.169591,-1.568242,-2.8588014,-43.00294,3.2694683,1.6634775,1.204876,1.0341381,1.0029285,1.0906229,1.359922,2.1166413,6.3568573,-5.70704,-2.0475962,-1.3377485,-1.082245,-1.0017003,-1.0392841,-1.2199706,-1.7049259,-3.466009,24.14915,2.7266114,1.5348171,1.1570337,1.0189146,1.01004,1.1246123,1.4492812,2.4125779,10.734928,-4.1930776,-1.8390577,-1.2675996,-1.0562035,1.0633363,1.2870772,1.8955513,4.549436,-8.909169,-2.3154442,-1.4209378,-1.1138192,-1.007479,-1.0229392,-1.1703206,-1.570191,-2.8666875,-44.989304,3.2590516,1.6612105,1.2040454,1.0338589,1.0030079,1.0911113,1.3612112,2.1207054,6.39811,-5.6743,-2.0438468,-1.3365296,-1.0817859,-1.0016408,-1.0395869,-1.2208474,-1.707348,-3.4778636,23.56523,2.7195282,1.5329849,1.1563432,1.0187107,1.0101879,1.1252075,1.450845,2.4180315,10.854076,-4.1756177,-1.8361484,-1.266587,1.0000955,1.0637318,1.2881498,1.8986924,4.5702696,-8.828904,-2.3104904,-1.4194669,-1.1132591,-1.0073527,-1.0231661,-1.1710525,-1.5721463,-2.8746204,-47.16811,3.2487044,1.6589514,1.2032174,1.0335809,1.0030884,1.0916011,1.3625042,2.1247876,6.439908,-5.6419396,-2.0401134,-1.3353143,-1.0813283,-1.0015824,-1.0398909,-1.2217267,-1.7097789,-3.4898038,23.0089,2.7124848,1.5311584,1.1556547,1.018508,1.010337,1.1258045,1.4524138,2.4235122,10.97591,-4.158307,1.2593683,1.0532204,1.0001101,1.0641288,1.2892256,1.9018459,4.5912995,-8.750081,-2.3055596,-1.4180006,-1.1127006,-1.0072277,-1.0233941,-1.1717864,-1.5741082,-2.8826005,-49.568752,3.2384262,1.6567,1.2023917,1.0333041,1.00317,1.0920926,1.363801,2.1288874,6.4822626,-5.6099524,-2.0363955,-1.3341026,-1.0808722,-1.0015249,-1.0401962,-1.2226086,-1.7122185,-3.5018299,22.478258,2.7054806,1.5293381,1.1549683,1.0183064,1.0104871,1.1264035,1.4539872,2.4290204,11.100521,1.8126642,1.2583797,1.0528635,1.0001259,1.064527,1.2903045,1.9050118,4.612529,-8.672662,-2.3006525,-1.4165388,-1.1121439,-1.0071036,-1.0236233,-1.1725224,-1.5760767,-2.8906279,-52.226917,3.228216,1.6544567,1.2015685,1.0330286,1.0032525,1.0925858,1.3651018,2.1330056,6.5251856,-5.578331,-2.0326934,-1.3328944,-1.0804175,-1.0014688,-1.0405028,-1.2234931,-1.7146668,-3.5139427,21.971563,2.6985152,1.5275239,1.1542838,1.018106,1.0106384,1.127004,1.4555658,2.4345562,4.021515,1.809855,1.257394,1.052508,1.0001427,1.0649267,1.2913866,1.9081904,4.63396,-8.59661,-2.2957685,-1.4150816,-1.1115888,-1.0069805,-1.0238538,-1.1732608,-1.5780518,-2.8987033,-55.18639,3.2180736,1.6522212,1.2007476,1.0327543,1.0033363,1.0930804,1.3664066,2.1371417,6.5686874,-5.5470705,-2.029007,-1.33169,-1.0799644,-1.0014135,-1.0408106,-1.2243801,-1.717124,-3.5261436,21.48723,2.6915882,1.5257154,1.1536014,1.0179067,1.0107907,1.1276065,-2.475334,-12.242779,4.0054936,1.8070564,1.2564111,1.0521538,1.0001606,1.0653279,1.2924719,1.9113815,4.6555967,-8.52189,-2.2909079,-1.4136287,-1.1110355,-1.0068587,-1.0240854,-1.1740012,-1.5800335,-2.906827,-58.501476,3.207998,1.6499933,1.1999292,1.0324812,1.0034211,1.0935768,1.3677152,2.1412964,6.6127806,-5.5161643,-2.0253358,-1.330489,-1.0795128,-1.0013592,-1.0411197,-1.2252698,-1.71959,-3.5384328,21.02381,2.6846998,1.5239128,1.152921,1.0177085,1.0109441,-1.4687232,-2.481105,-12.398147,3.989604,1.8042682,1.255431,1.051801,1.0001795,1.0657305,1.2935604,1.9145852,4.6774406,-8.448464,-2.2860699,-1.4121804,-1.110484,-1.006738,-1.0243183,-1.1747439,-1.582022,-2.9149992,-62.240368,3.1979887,1.6477733,1.1991131,1.0322094,1.0035069,1.0940746,1.3690279,2.1454697,6.657476,-5.485606,-2.02168,-1.3292917,-1.0790628,-1.0013062,-1.0414301,-1.226162,-1.722065,-3.550812,20.579979,2.6778493,1.522116,1.1522427,-1.0120844,-1.1326256,-1.4703482,-2.4869056,-12.557524,3.973844,1.8014909,1.2544538,1.0514495,1.0001996,1.0661345,1.2946521,1.917802,4.699496,-8.376304,-2.281255,-1.4107364,-1.1099341,-1.0066183,-1.0245522,-1.1754887,-1.584017,-2.923221,-66.489876,3.188045,1.645561,1.1982995,1.0319388,1.0035938,1.0945741,1.3703444,2.1496613,6.702788,-5.45539,-2.0180397,-1.3280978,-1.0786142,-1.0012542,-1.0417417,-1.2270567,-1.7245488,-3.563282,20.154522,2.6710362,1.5203251,-1.0161242,-1.012247,-1.1332451,-1.4719784,-2.4927359,-12.7210655,3.958212,1.7987237,1.2534795,1.0510994,1.0002205,1.0665399,1.2957469,1.9210316,4.7217655,-8.305373,-2.2764626,-1.409297,-1.109386,-1.0064998,-1.0247874,-1.1762357,-1.5860188,-2.9314923,-71.36227,3.1781664,1.6433562,1.1974882,1.0316695,1.0036818,1.0950752,1.371665,2.1538715,6.7487273,-5.4255114,-2.0144145,-1.3269075,-1.0781672,-1.0012032,-1.0420548,-1.2279541,-1.7270417,-3.5758436,19.746319,2.6642609,-1.1467458,-1.0159367,-1.0124108,-1.1338665,-1.473614,-2.4985964,-12.888936,3.942707,1.795967,1.2525079,1.0507506,1.0002427,1.0669469,1.2968451,1.924274,4.7442517,-8.235643,-2.2716928,-1.4078621,-1.1088395,-1.0063822,-1.0250238,-1.1769849,-1.5880272,-2.9398136,-77.00531,3.1683521,1.641159,1.1966791,1.0314014,1.003771,1.095578,1.3729894,2.1581006,6.795308,-5.395963,-2.0108044,-1.3257208,-1.0777217,-1.0011532,-1.042369,-1.2288542,-1.7295438,-3.5884979,-2.6164598,-1.5058312,-1.1460857,-1.0157503,-1.0125756,-1.1344898,-1.4752545,-2.5044873,-13.061311,3.9273267,1.7932206,1.2515393,1.0504031,1.0002658,1.0673552,1.2979463,1.9275295,4.766958,-8.167083,-2.2669451,-1.4064314,-1.1082948,-1.0062658,-1.0252614,-1.1777363,-1.5900425,-2.9481852,-83.61754,3.1586013,1.6389697,1.1958725,1.0311344,1.0038611,1.0960823,1.3743181,2.1623487,6.8425436,-5.366741,-2.0072095,-1.3245375,-1.0772777,-1.0011044,-1.0426846,-1.2297568,-1.7320548,-16.93025,-2.6099806,-1.504093,-1.1454277,-1.015565,-1.0127417,-1.1351149,-1.4769005,-2.5104084,-13.238374,3.9120705,1.7904845,1.2505734,1.0500569,1.00029,1.0677649,1.2990509,1.9307978,4.7898884,-8.099662,-2.2622197,-1.4050052,-1.1077518,-1.0061505,-1.0255002,-1.1784898,-1.5920645,-2.956608,-91.472084,3.1489139,1.6367877,1.1950682,1.0308688,1.0039523,1.0965884,1.3756508,2.166616,6.890448,-5.337839,-2.0036294,-1.3233578,-1.0768352,-1.0010566,-1.0430014,-1.2306621,3.6960893,-16.641418,-2.6035361,-1.5023602,-1.1447717,-1.0153807,-1.0129088,-1.1357421,-1.4785515,-2.5163603,-13.420317,3.8969362,1.7877587,1.2496103,1.0497123,1.0003153,1.0681762,1.3001589,1.9340796,4.8130455,-8.033355,-2.2575164,-1.4035833,-1.1072105,-1.0060362,-1.02574,-1.1792457,-1.5940936,-2.9650822,-100.95535,3.1392891,1.6346133,1.1942662,1.0306042,1.0040445,1.0970958,1.3769873,2.1709023,6.939035,-5.3092527,-2.0000641,-1.3221816,-1.0763942,-1.0010098,1.2372718,1.7530318,3.709647,-16.362293,-2.5971258,-1.5006332,-1.1441176,-1.0151978,-1.013077,-1.136371,-1.4802079,-2.5223432,-13.607345,3.8819227,1.7850429,1.2486501,1.0493687,1.0003417,1.0685887,1.3012699,1.9373746,4.8364325,-7.9681315,-2.2528348,-1.4021658,-1.1066709,-1.0059232,-1.0259812,-1.1800038,-1.5961294,-2.973608,-112.63251,3.1297262,1.6324464,1.1934667,1.030341,1.004138,1.0976051,1.378328,2.1752076,6.9883194,-5.2809763,-1.9965137,-1.3210088,-1.0759547,1.0456532,1.2381989,1.7556287,3.7233088,-16.092394,-2.59075,-1.4989116,-1.1434653,-1.0150158,-1.0132464,-1.1370019,-1.4818696,-2.5283573,-13.799674,3.8670287,1.7823373,1.2476926,1.0490266,1.0003691,1.0690029,1.3023844,1.9406825,4.8600526,-7.9039683,-2.2481751,-1.4007525,-1.106133,-1.005811,-1.0262235,-1.180764,-1.598172,-2.9821863,-127.36447,3.1202245,1.6302869,1.1926694,1.030079,1.0042324,1.098116,1.3796728,2.1795328,7.0383167,-5.253005,-1.9929779,1.0728277,1.000666,1.045982,1.2391287,1.7582352,3.7370756,-15.83127,-2.5844078,-1.4971956,-1.1428151,-1.0148351,-1.0134169,-1.1376346,-1.4835365,-2.5344028,-13.997534,3.852252,1.7796416,1.246738,1.0486859,1.0003976,1.0694183,1.303502,1.944004,4.88391,-7.8408384,-2.243537,-1.3993436,-1.1055968,-1.0057001,-1.0264671,-1.1815264,-1.6002216,-2.9908173,-146.5303,3.1107838,1.6281348,1.1918745,1.0298182,1.0043279,1.0986285,1.3810216,2.1838772,7.089041,-5.2253337,1.3115053,1.0724003,1.000629,1.0463122,1.2400613,1.7608514,3.7509484,-15.578501,-2.5780995,-1.495485,-1.1421667,-1.0146555,-1.0135885,-1.1382693,-1.4852089,-2.5404801,-14.201164,3.8375926,1.7769562,1.245786,1.0483464,1.000427,1.0698354,1.3046229,1.947339,4.908008,-7.7787156,-2.2389202,-1.3979391,-1.1050622,-1.0055902,-1.0267118,-1.1822912,-1.6022781,-2.9995017,-172.48624,3.101403,1.6259903,1.1910818,1.0295587,1.0044245,1.0991426,1.3823745,2.1882415,7.140511,1.9644775,1.310364,1.0719745,1.0005931,1.0466436,1.2409966,1.7634772,3.7649286,-15.333694,-2.5718248,-1.4937799,-1.1415205,-1.014477,-1.0137612,-1.1389059,-1.4868864,-2.5465891,-14.410824,3.8230479,1.7742807,1.2448368,1.0480082,1.0004575,1.0702538,1.3057472,1.9506878,4.9323506,-7.717579,-2.234325,-1.3965389,-1.1045293,-1.0054814,-1.0269578,-1.183058,-1.6043417,-3.00824,-209.61748,3.0920823,1.6238528,1.1902915,1.0293003,1.0045222,1.0996585,1.3837316,-7.5354557,5.0087967,1.9610732,1.3092263,1.0715501,1.0005583,1.0469764,1.2419345,1.7661127,3.7790174,-15.096477,-2.565583,-1.4920803,-1.140876,-1.0142996,-1.0139351,-1.1395444,-1.4885694,-2.5527306,-14.626781,3.8086169,1.7716149,1.2438904,1.0476714,1.0004892,1.0706738,1.3068748,1.9540498,4.9569407,-7.6574035,-2.2297506,-1.3951428,-1.1039982,-1.0053736,-1.027205,-1.1838273,-1.6064123,-3.0170324,-267.12112,3.0828202,1.6217228,1.1895034,1.0290431,1.0046209,1.1001759,-2.2248528,-7.5937066,4.98368,1.9576825,1.3080918,1.0711272,1.0005244,1.0473105,1.2428752,1.7687579,3.793216,-14.866503,-2.559374,-1.4903861,-1.1402335,-1.0141234,-1.0141101,-1.1401849,-1.4902577,-2.5589042,-14.849324,3.7942986,1.7689592,1.2429467,1.0473359,1.0005219,1.0710951,1.3080057,1.9574256,4.981783,-7.598167,-2.2251976,-1.3937511,-1.1034687,-1.0052669,-1.0274532,-1.1845987,-1.60849,-3.0258796,-368.10156,3.0736172,1.6196002,1.1887177,1.0287871,-1.1039579,-1.3950369,-2.2294042,-7.6528726,4.9588184,1.9543056,1.3069606,1.0707057,1.0004916,1.0476459,1.2438186,1.7714128,3.8075256,-14.643446,-2.553198,-1.4886974,-1.1395929,-1.0139483,-1.0142863,-1.1408272,-1.4919515,-2.5651104,-15.078763,3.7800915,1.7663132,1.2420058,1.0470017,1.0005556,1.071518,1.30914,1.9608151,5.0068803,-7.5398474,-2.2206652,-1.3923635,-1.1029408,-1.0051614,-1.0277028,-1.1853725,-1.6105746,-3.0347817,-591.8349,3.0644717,1.6174847,1.1879343,-1.0054731,-1.104489,-1.3964326,-2.2339768,-7.7129755,4.9342093,1.9509425,1.3058327,1.0702857,1.0004599,1.0479826,1.2447649,1.7740778,3.8219478,-14.426998,-2.5470545,-1.4870139,-1.1389543,-1.0137744,-1.0144635,-1.1414714,-1.4936507,-2.5713496,-15.315417,3.7659945,1.763677,1.2410676,1.0466689,1.0005903,1.0719422,1.3102776,1.9642186,5.032237,-7.4824247,-2.2161539,-1.3909802,-1.1024146,-1.0050569,-1.0279535,-1.1861484,-1.6126664,-3.0437398,-1509.0297,3.055384,1.6153765,-1.0267304,-1.0055819,-1.1050217,-1.3978326,-2.2385707,-7.7740393,4.909848,1.947593,1.3047081,1.0698671,1.0004293,1.0483207,1.2457138,1.7767526,3.8364837,-14.216871,-2.540943,-1.485336,-1.1383176,-1.0136015,-1.0146419,-1.1421176,-1.4953554,-2.577622,-15.559635,3.7520063,1.7610505,1.2401322,1.0463372,1.0006262,1.0723679,1.3114185,1.9676359,5.0578575,-7.425878,-2.211663,-1.3896011,-1.1018901,-1.0049535,-1.0282055,-1.1869265,-1.6147653,-3.0527544,2744.9438,-1.6003776,-1.1815845,-1.0264857,-1.0056916,-1.1055561,-1.3992368,-2.2431855,-7.836085,4.8857317,1.9442569,1.303587,1.06945,1.0003997,1.04866,1.2466656,1.7794374,3.8511348,-14.012792,-2.5348632,-1.4836633,-1.1376828,-1.0134299,-1.0148214,-1.1427658,-1.4970654,-2.5839276,-15.811786,3.738125,1.7584336,1.2391995,1.046007,1.0006632,1.0727953,1.312563,1.9710671,5.083746,-7.3701863,-2.2071927,-1.3882263,-1.1013672,-1.0048512,-1.0284586,-1.1877071,-1.6168715,-3.0618255,-2.98284,-1.5983274,-1.1808218,-1.026242,-1.0058025,-1.1060922,-1.4006454,-2.247822,-7.899138,4.861856,1.9409344,1.302469,1.0690343,1.0003712,1.0490007,1.24762,1.7821323,3.8659024,-13.814503,-2.5288155,-1.481996,-1.1370498,-1.0132593,-1.0150021,-1.1434158,-1.4987811,-2.5902672,-16.07226,3.7243505,1.7558264,1.2382694,1.0456781,1.0007011,1.073224,1.3137107,1.9745126,5.1099057,-7.3153324,-2.2027426,-1.3868556,-1.100846,-1.00475,-1.028713,-1.1884898,-1.6189848,-113.63063,-2.9742577,-1.5962842,-1.1800613,-1.0259995,-1.0059146],"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/secf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..4ab709fa001e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[1.0010513,9.171987,-1.024353,-3.106566,1.103711,1.0122937,-1.2614121,-1.0019553,1.5581275,1.0408143,1.050732,-1.1391594,3.8918986,1.9081606,1.0078593,-1.6873134,-5.675502,1.1972395,1.1817254,-5.099524,1.232237,-1.0178294,1.8477212,4.213766,-1.1521274,1.0441251,-2.218712,-1.181427,1.032067,-2.050676,-3.361201,1.1144832,-1.0662004,2.5374777,2.5297167,-1.050868,2.313863,2.80468,-1.0833155,1.0935895,3.1528938,-2.2129464,1.0746388,-1.1529965,-2.4143536,1.8439527,-1.1269373,-2.661214,1.9735247,-1.1039181,1.1982785,2.1266837,-1.6843027,1.1670808,2.3099961,-1.7871459,1.139409,-1.2523502,-1.9069175,1.5556828,-1.2151077,1.367094,1.6387764,-1.182024,1.3169149,1.7344524,-1.4505727,1.272436,-1.4546006,-1.5186265,1.2329497,-1.3942362,-1.5963097,1.3637531,-1.3409344,1.5605828,1.4200548,-1.2937378,1.4873705,1.4839128,-1.2518657,1.4230975,-1.6903379,2.1372485,1.3664402,-1.6005318,1.9824084,1.316336,-1.5223154,1.8515083,-2.4284067,-1.4538121,1.7396789,-2.2245116,-1.3935412,1.6432996,-2.0555205,2.824166,1.5596235,-1.913503,2.5452912,1.4865302,-1.7927749,2.320236,-3.3898413,-1.689156,2.1351779,-2.9877996,-1.5995057,1.9806677,-2.6751957,4.2596703,1.8500283,-2.4256506,3.6337168,1.7384084,-2.2222445,3.1729987,-5.7602153,-2.053627,2.8203416,-4.6591353,14.26091,2.542236,-3.9172034,8.946805,2.3177445,-3.384213,6.526298,-129.9317,-2.983487,5.1436973,-20.200947,-2.671792,4.2506332,-10.96223,-18.26181,3.6272104,-7.531116,-77.16237,3.1681,-5.743486,34.64717,8.546949,-4.6482744,14.157494,13.267628,-3.9096005,8.906147,29.75288,-5.5932827,6.504758,-121.80525,-7.2733097,5.130406,-19.993809,-10.421922,4.168869,-10.901124,-18.434418,3.6207285,-2.9442086,-80.34558,3.163218,-3.3330631,34.04179,-1.7788672,-3.848019,14.055571,-1.8972377,-4.560606,8.865859,-2.0363002,-5.6091337,6.483361,-2.2015162,-7.300317,5.117184,-2.4004788,-10.477737,-1.5131944,-2.6440618,-18.610325,-1.5900946,-2.9484015,-83.802765,-1.6783221,-3.3385143,33.457207,-1.7802125,-3.8553755,13.955108,-1.8988099,-4.5710506,-1.3346769,-2.0381567,-5.6250763,-1.3871617,-2.2037358,-7.327527,-1.4465773,-2.4031723,-10.534156,-1.5140775,-2.6473897,-1.1781322,-1.5911047,-2.952607,-1.2107254,-1.6794847,-3.3439841,-1.2474173,-1.78156,-3.8627613,-1.2887275,-1.9003854,-4.581545,-1.335283,-2.0400174,-1.101223,-1.387847,-2.2059605,-1.123879,-1.4473544,-2.405872,-1.1495397,-1.5149621,-2.6507263,-1.1785094,-1.5921168,-2.9568253,-1.21115,-1.6806495,-1.0490991,-1.2478954,-1.7829101,-1.0641435,-1.2892658,-1.901964,-1.0815451,-1.3358903,-2.041882,-1.101484,-1.3885334,-1.0099318,-1.1241752,-1.4481326,-1.0168284,-1.1498747,-1.5158482,-1.0256262,-1.178887,-1.5931305,-1.0364062,-1.2115753,-1.6818161,-1.04927,-1.2483741,-1.0001185,-1.0643425,-1.289805,-1.0016392,-1.0817741,-1.3364984,-1.0049251,-1.1017454,-1.3892207,-1.0100052,-1.1244719,-1.4489121,-1.0169247,-1.15021,-1.0060333,-1.0257462,-1.1792651,-1.0022992,-1.0365512,-1.2120012,-1.000336,-1.0494415,-1.2488534,-1.0001265,-1.0645418,-1.2903448,-1.0016688,-1.0820035,-1.028149,-1.0049766,-1.1020073,-1.0188608,-1.0100789,-1.1247691,-1.0114923,-1.0170213,-1.1505461,-1.0059766,-1.0258667,-1.0863167,-1.0022644,-1.0366967,-1.0682948,-1.0003228,-1.0496131,-1.0526724,-1.0001348,-1.0647416,-1.039292,-1.0016987,-1.0822333,-1.028023,-1.0050282,-1.1565063,-1.0187589,-1.0101529,-1.1300435,-1.0114135,-1.0171182,-1.106657,-1.0059202,-1.0259875,-1.1800233,-1.9333826,-1.2999237,-1.0680888,-1.00031,-1.0497853,-1.2498143,-1.7037803,-1.2195556,-1.039141,-1.0017289,-1.0824634,-2.7176683,-1.532503,-1.1561617,-1.0186572,-1.0102271,-1.1253647,-2.2503824,-1.4014223,-1.1063879,-1.005864,-1.0261085,-4.796533,-1.9317416,-1.2993697,-1.0678833,-1.0002973,-1.0499576,-3.4545398,-1.7025744,-1.2191187,-1.0389905,-1.0017592,-1.0826939,-2.7141469,-1.5315899,-1.1558174,-1.0185558,-1.0103016,-7.9023304,-2.2480555,-1.4007162,-1.1061192,-1.0058081,-1.0262299,-4.785008,-1.9301037,-1.2988166,-1.0676779,-1.0002849,25.064833,-3.4486847,-1.7013708,-1.2186825,-1.0388402,-1.0017899,-22.866653,-2.7106352,-1.5306783,-1.1554736,-1.0184548,-1.0103763,-7.8706503,-2.245734,-1.4000113,-1.1058508,-1.0057526,8.147552,-4.773538,-1.9284693,-1.2982641,-1.067473,-1.0002728,25.391376,-3.4428504,-1.7001694,-1.2182469,-1.0386902,3.498978,-22.601526,-2.7071333,-1.5297681,-1.1551304,-1.0183539,4.884527,-7.8392262,-2.243418,-1.3993074,-1.105583,2.2679498,8.181523,-4.762125,-1.926838,-1.2977126,-1.0672685,2.744309,25.726551,-3.4370363,-1.6989701,-1.2178121,-1.0385406,3.505013,-22.342484,-2.7036412,-1.5288595,-1.1547877,1.9457558,4.896549,-7.808054,-2.2411072,-1.3986048,-1.1053154,2.2703233,8.215781,-4.7507677,-1.92521,-1.2971619,1.5403023,2.7479153,26.070698,-3.4312432,-1.697773,-1.2173778,1.714087,3.5110703,-22.089315,-2.7001586,-1.5279523,1.3046519,1.9474252,4.908632,-7.77713,-2.2388017,-1.397903,1.4081659,2.2727022,8.250329,-4.739465,-1.9235854,-1.2966119,1.5412297,2.751532,26.424183,-3.42547,-1.6965779,1.2237266,1.7153134,3.517149,-21.841827,-2.696686,-1.5270467,1.3052136,1.949098,4.9207754,-7.7464523,-2.2365017,1.1092285,1.4088835,2.2750866,8.2851715,-4.728218,-1.921964,1.1597984,1.5421585,2.755159,26.787394,-3.4197176,1.0407376,1.2241701,1.716542,3.5232499,-21.59983,-2.6932228,1.0702647,1.3057762,1.950774,4.9329805,-7.716018,-2.234207,1.1095021,1.4096019,2.2774768,8.320312,-4.7170258,1.0198412,1.1601486,1.5430889,2.7587962,27.160736,-3.4139853,1.0408919,1.2246143,1.7177728,3.5293732,-21.363142,1.0004741,1.0704744,1.3063396,1.9524535,4.9452477,-7.685824,1.006584,1.1097761,1.4103216,2.2798727,8.355753,-4.705887,1.0199461,1.1604992,1.544021,2.7624438,27.54464,1.001372,1.0410465,1.2250592,1.719006,3.5355184,-21.131588,1.0004901,1.0706846,1.3069038,1.9541366,4.957577,1.0245025,1.0066435,1.1100506,1.4110423,2.282274,8.3914995,1.0092499,1.0200514,1.1608504,1.5449544,2.7661016,1.0793941,1.0013453,1.0412014,1.2255046,1.7202413,3.5416863,1.0474949,1.0005063,1.0708951,1.3074689,1.9558228,4.9699697,1.0243856,1.0067034,1.1103255,1.4117641,2.284681,1.1210942,1.0091794,1.0201569,1.1612021,1.5458894,2.7697701,1.0791692,1.0013187,1.0413566,1.2259507,1.7214788,1.2429224,1.0473273,1.0005227,1.071106,1.3080349,1.9575126,1.1745863,1.0242689,1.0067635,1.1106007,1.4124871,1.4392744,1.1208028,1.0091091,1.0202628,1.1615543,1.5468259,1.3289768,1.0789444,1.0012923,1.0415121,1.2263975,1.7227187,1.2424518,1.04716,1.0005394,1.0713172,1.3086016,1.5806054,1.1742148,1.0241524,1.0068238,1.1108766,1.4132112,1.4385101,1.1205117,1.0090392,1.0203689,1.1619071,2.0188992,1.3283799,1.0787202,1.0012664,1.0416679,1.2268449,1.7662452,1.2419816,1.0469931,1.0005565,1.0715288,2.9051003,1.5796129,1.1738441,1.0240363,1.0068845,1.1111528,1.4139364,2.2919366,8.537622,-2.1507688,-6.714832,5.447484,2.017083,1.327784,1.0784963,1.0012406,1.0418241,1.227293,1.725205,3.5665832,-1.6515788,-3.2151651,56.10187,2.9010377,1.5786219,1.1734738,1.0239204,1.0069454,1.1114293,1.4146628,2.2943666,-1.3713523,-2.1528742,-6.737806,5.432547,2.0152705,1.3271887,1.0782728,1.0012151,1.0419806,1.2277417,1.7264514,-1.2009215,-1.6526945,-3.2202184,54.5312,2.896987,1.5776325,1.173104,1.0238049,1.0070065,1.1117064,1.4153903,-1.0952076,-1.3720137,-2.154984,-6.760939,5.4176927,2.0134618,1.3265945,1.0780497,1.00119,1.0421374,1.2281911,1.7277001,-1.2013319,-1.653812,-3.2252886,53.046097,2.8929484,1.5766448,1.1727349,1.0236896,1.007068,1.1119838,1.4161187,-1.095459,-1.3726759,-2.1570988,-6.7842336,5.402921,2.0116568,1.3260012,1.077827,1.0011649,1.0422945,1.2286412,-1.0330869,-1.2017429,-1.6549317,-3.2303753,51.639755,2.888922,1.5756588,1.1723663,1.0235747,1.0071298,1.1122618,-1.0037946,-1.0957108,-1.3733392,-2.159218,-6.807691,5.3882313,2.0098557,1.3254086,1.0776045,1.0011402,1.0424521,-1.0031936,-1.0332247,-1.2021545,-1.6560533,-3.235479,50.306065,2.8849072,1.5746745,1.1719981,1.02346,1.0071918,-1.0311974,-1.0038396,-1.0959629,-1.3740035,-2.1613424,-6.8313127,5.373623,2.0080583,1.3248171,1.0773826,1.0011158,1.0426098,-1.0031526,-1.0333627,-1.2025666,-1.6571767,-3.2405996,49.039543,2.8809044,1.5736917,1.1716306,1.0233457,1.007254,-1.0310643,-1.003885,-1.0962155,-1.3746688,-2.1634712,-6.855101,5.3590946,2.0062647,1.3242264,1.077161,1.0010916,-1.0917425,-1.0031117,-1.0335011,-1.2029793,-1.6583022,-3.2457376,47.835243,2.8769135,1.5727106,1.1712635,1.0232316,-1.1952583,-1.0309315,-1.0039306,-1.0964686,-1.3753352,-2.165605,-6.879058,5.344646,2.0044746,1.3236365,1.0769397,-1.3622297,-1.0914972,-1.0030712,-1.0336398,-1.2033927,-1.6594297,-3.2508926,46.688686,2.8729343,1.5717311,1.170897,-1.636214,-1.1948568,-1.0307989,-1.0039765,-1.0967219,-1.3760026,-2.1677434,-6.9031844,5.330276,2.0026884,1.3230475,-2.121879,-1.3615831,-1.0912521,-1.003031,-1.0337788,-1.2038068,-1.660559,-3.256065,45.595818,2.868967,1.5707533,1.1705312,-1.6351268,-1.1944557,-1.0306667,-1.0040226,-1.0969757,-1.3766708,-2.1698868,-6.9274826,5.315985,2.000906,1.3224595,-2.1198423,-1.3609375,-1.0910076,-1.002991,-1.033918,-1.2042212,-1.6616905,-3.2612543,44.55295,2.8650115,1.5697771,-3.136763,-1.6340415,-1.1940554,-1.0305349,-1.0040691,-1.09723,-1.3773402,-2.1720347,-6.951954,5.301772,1.999127,-6.3686814,-2.11781,-1.3602929,-1.0907633,-1.0029513,-1.0340576,-1.2046365,-1.6628239,-3.2664616,43.556736,2.8610675,109.63359,-3.1319818,-1.6329582,-1.1936556,-1.0304031,-1.0041158,-1.0974846,-1.3780106,-2.174188,-6.9766006,5.287636,5.7140307,-6.3481793,-2.115782,-1.3596493,-1.0905195,-1.0029118,-1.0341976,-1.2050523,-1.6639591,-3.271686,42.604107,2.857135,116.17342,-3.1272163,-1.6318766,-1.1932564,-1.0302719,-1.0041627,-1.0977396,-1.378682,-2.1763456,-7.0014243,5.2735763,5.7305865,-6.3278103,-2.1137586,-1.3590065,-1.0902762,-1.0028726,-1.0343378,-1.2054687,-1.6650965,-3.276928,41.69227,2.9801528,123.54302,-3.122466,-1.6307969,-1.1928577,-1.0301409,-1.00421,-1.097995,-1.3793544,-2.178508,-7.0264277,2.0521622,5.747239,-6.307574,-2.1117394,-1.3583648,-1.0900332,-1.0028337,-1.0344783,-1.2058856,-1.6662359,-3.282188,1.5987114,2.9844556,131.91098,-3.1177309,-1.629719,-1.1924597,-1.0300102,-1.0042574,-1.0982509,-1.3800278,-2.1806757,1.3398439,2.0540524,5.7639914,-6.2874675,-2.1097248,-1.3577241,-1.0897906,-1.002795,-1.0346191,-1.2063032,-1.6673772,1.1813459,1.5997362,2.9887714,141.4949,-3.113011,-1.628643,-1.1920623,-1.0298798,-1.0043052,-1.0985072,-1.3807023,-2.182848,1.3404579,2.055947,5.7808423,-6.2674913,-2.1077147,-1.3570844,-1.0895483,-1.0027566,-1.0347602,-1.2067214,-1.6685206,1.1817276,1.6007628,2.9931006,152.58063,-3.108306,-1.6275691,-1.1916654,-1.0297496,-1.0043533,-1.0987638,-1.3813777,1.0834981,1.3410728,2.0578454,5.7977943,-6.247643,-2.1057086,-1.3564454,-1.0893065,-1.0027184,-1.0349017,-1.2071403,1.0266539,1.1821101,1.6017913,2.9974432,165.55112,-3.103616,-1.6264967,-1.191269,-1.0296199,-1.0044016,-1.099021,1.0018985,1.0837303,1.3416886,2.059748,5.814847,-6.227921,-2.103707,-1.3558075,-1.0890651,-1.0026807,-1.0350435,1.0055614,1.0267766,1.1824931,1.6028212,3.001799,180.9317,-3.098941,-1.6254263,-1.1908733,-1.0294904,-1.0044501,-1.0992783,1.0019304,1.083963,1.3423053,2.0616543,5.832002,-6.2083254,-2.1017098,-1.3551706,-1.0888242,-1.002643,-1.0351856,1.005507,1.0268995,1.1828765,1.6038531,3.0061686,199.46294,-3.094281,-1.6243577,-1.1904782,-1.0293612,-1.004499,1.038023,1.0019625,1.0841961,1.3429229,2.0635653,5.84926,-6.1888547,-2.0997171,-1.3545347,-1.0885835,-1.0026057,1.1043892,1.0054529,1.0270227,1.1832606,1.6048867,3.0105515,222.22339,-3.0896358,-1.6232909,-1.1900836,-1.0292324,1.2158731,1.0378747,1.0019948,1.0844294,1.3435416,2.06548,5.866622,-6.1695065,-2.0977287,-1.3538998,-1.0883433,1.3954725,1.1041236,1.005399,1.0271463,1.1836451,1.605922,3.014948,250.8473,-3.0850055,-1.6222259,-1.1896896,1.692441,1.2154416,1.0377269,1.0020275,1.0846633,1.344161,2.0673988,5.884089,-6.150281,-2.0957444,-1.3532658,-1.0881034,1.3947756,1.1038585,1.0053453,1.0272702,1.1840303,1.606959,3.0193582,287.93542,-3.0803893,-1.6211628,-1.1892962,1.6912553,1.2150108,1.0375793,1.0020604,1.0848974,1.3447814,2.0693216,5.901662,-6.1311765,-2.0937645,-1.3526326,2.2262723,1.3940798,1.1035937,1.005292,1.0273944,1.184416,1.6079979,3.023782,337.89362,-3.0757883,-1.6201016,3.394217,1.690072,1.2145805,1.037432,1.0020937,1.085132,1.3454028,2.0712488,5.9193416,-6.112192,-2.091789,7.5827107,2.2240012,1.3933849,1.1033293,1.0052391,1.0275189,1.1848023,1.6090385,3.02822,408.82712,-3.0712016,-28.96774,3.388574,1.6888906,1.2141509,1.037285,1.002127,1.085367,1.3460251,2.07318,5.937129,-6.093326,-2.0898178,7.5535574,2.2217352,1.3926913,1.1030655,1.0051862,1.0276437,1.1851892,1.610081,3.0326715,517.4562,-3.0666292,-29.404871,3.38295,1.6877114,1.2137219,1.0371383,1.0021608,1.0856023,1.3466482,2.0751154,5.955025,-6.074578,-5.013537,7.52463,2.2194746,1.3919985,1.1028019,1.0051337,1.0277687,1.1855767,1.6111251,3.037137,704.70184,-2.7826014,-29.855408,3.377346,1.686534,1.2132936,1.0369921,1.0021948,1.0858381,1.3472724,2.077055,5.973031,-1.9634124,-5.026217,7.495925,2.2172189,1.391307,1.1025388,1.0050815,1.0278941,1.1859647,1.612171,3.0416162,-1.5500932,-2.786317,-30.31997,3.371761,1.685359,1.2128658,1.036846,1.002229,1.0860741,1.3478974,2.0789988,-1.3105779,-1.9651177,-5.038963,7.4674397,2.2149684,1.3906164,1.1022762,1.0050296,1.0280198,1.1863532,1.6132188,3.04611,2550.6528,-3.0529988,-1.6148221,-1.1869476,-1.0282123,-3.7553046,-1.7616707,-1.2403532,-1.0464156,-1.0006176,-1.0722672,-1.3111484,-1.9668264,-5.051775,7.4391723,2.212723,1.3899269,1.102014,1.004978,1.0281458,1.1867423,1.6142683,3.0506172,-8234.831,-3.0484838,-1.6137717,-1.1865581,15.625296,-3.748338,-1.7603599,-1.2398862,-1.0462502,-1.0006359,-1.0724804,-1.3117198,-1.9685388,-5.064654,7.41112,2.2104828,1.3892385,1.1017522,1.0049264,1.0282722,1.187132,1.6153197,3.0551393,-1574.9836,-3.043983,-1.6127231,-1.1861694,15.751419,-3.7413983,-1.7590516,-1.2394198,-1.0460851,-1.0006543,-1.0726941,-1.312292,-1.9702543,-5.0775995,7.383281,2.208248,1.388551,1.1014907,1.0048753,1.0283986,1.1875223,1.6163728,3.0596752,-870.76245,-3.0394957,-1.6116761,2.585595,15.8796,-3.7344851,-1.7577456,-1.2389542,-1.0459203,-1.000673,-1.072908,-1.312865,-1.9719735,-5.0906124,7.355652,2.206018,1.3878647,1.1012297,1.0048244,1.0285256,1.1879131,1.6174276,3.0642254,-601.71716,-3.035023,1.4983748,2.5887647,16.009888,-3.7275984,-1.756442,-1.238489,-1.0457557,-1.000692,-1.0731224,-1.3134389,-1.9736964,-5.1036944,7.3282304,2.203793,1.3871794,1.1009691,1.0047739,1.0286528,1.1883045,1.6184844,3.06879,-459.68533,-3.0305643,1.4992341,2.5919433,16.142336,-3.7207382,-1.7551409,-1.2380248,-1.0455917,-1.0007113,-1.0733372,-1.3140136,-1.9754227,-5.116845,7.301015,2.2015731,1.3864951,1.100709,1.0047235,1.0287802,1.1886965,1.619543,3.073369,-371.90048,1.1439135,1.5000948,2.59513,16.276999,-3.713904,-1.7538422,-1.2375612,-1.0454279,-1.0007308,-1.0735523,-1.3145893,-1.9771527,-5.1300645,7.2740026,2.1993585,1.3858118,1.1004492,1.0046734,1.0289081,1.1890891,1.6206033,3.0779626,1.0152321,1.14424,1.5009568,2.5983255,16.41393,-3.707096,-1.7525457,-1.2370982,-1.0452644,-1.0007505,-1.0737678,-1.3151656,-1.9788861,-5.1433544,7.247191,2.1971486,1.3851296,1.1001898,1.0046237,1.0290362,1.1894822,1.6216655,3.082571,1.0153235,1.144567,1.5018201,2.6015296,16.553192,-3.700314,-1.7512518,-1.2366358,-1.0451013,-1.0007706,-1.0739836,-1.315743,-1.980623,-5.1567144,7.220578,2.194944,1.3844485,1.0999309,1.0045741,1.0291646,1.189876,1.6227294,1.0128773,1.0154153,1.1448946,1.5026848,2.6047423,16.69484,-3.6935573,-1.7499602,-1.2361742,-1.0449384,-1.000791,-1.0741998,-1.316321,-1.9823635,-5.1701455,7.194163,2.1927443,1.3837683,1.0996723,1.0045248,1.0292933,1.1902702,1.1353106,1.0127938,1.0155073,1.1452225,1.503551,2.6079633,16.838938,-3.6868267,-1.7486708,-1.2357132,-1.044776,-1.0008116,-1.0744163,-1.3169,-1.9841077,-5.183648,7.1679416,2.1905496,1.3830893,1.0994143,1.0044758,1.0294223,1.190665,1.1349976,1.0127105,1.0155997,1.145551,1.5044186,2.6111934,16.985548,-3.6801212,-1.7473838,-1.235253,-1.0446138,-1.0008323,-1.0746334,-1.3174798,-1.9858555,-5.197222,7.1419125,2.1883597,1.3824112,1.0991566,1.0044272,1.0295516,1.4757683,1.1346849,1.0126274,1.0156922,1.14588,1.5052876,2.6144319,17.134739,-3.6734412,-1.7460994,-1.2347933,-1.044452,-1.0008534,-1.0748506,-1.3180606,-1.9876068,-5.21087,7.1160736,2.1861749,1.3817341,1.0988992,1.0043787,2.50338,1.4749465,1.1343727,1.0125446,1.0157852,1.1462094,1.5061579,2.617679,17.28658,-3.6667864,-1.7448171,-1.2343343,-1.0442904,-1.0008748,-1.0750684,-1.3186423,-1.9893616,-5.2245903,7.0904226,2.183995,1.3810581,1.0986423,12.9423,2.5004337,1.474126,1.134061,1.0124621,1.0158783,1.1465394,1.5070297,2.6209352,17.44114,-3.6601562,-1.7435372,-1.2338761,-1.0441293,-1.0008965,-1.0752864,-1.3192247,-1.9911203,-5.2383847,7.064958,2.18182,1.3803831,1.0983859,12.857112,2.497495,1.4733068,1.1337498,1.0123799,1.0159718,1.1468699,1.507903,2.6242,17.598492,-3.6535513,-1.7422597,-1.2334185,-1.0439684,-1.0009184,-1.0755048,-1.319808,-1.9928824,-5.252253,7.039677,2.1796498,1.3797091,-3.9533544,12.773041,2.4945638,1.4724889,1.133439,1.012298,1.0160656,1.1472008,1.5087775,2.627474,17.758715,-3.6469712,-1.7409844,-1.2329615,-1.0438079,-1.0009404,-1.0757236,-1.3203921,-1.9946482,-5.266197,7.0145793,2.1774848,-1.799242,-3.9611347,12.690065,2.49164,1.4716723,1.1331288,1.0122164,1.0161597,1.1475321,1.5096534,2.6307566,17.921886,-3.6404157,-1.7397115,-1.2325052,-1.0436475,-1.000963,-1.0759428,-1.3209772,-1.996418,-5.2802167,6.989661,2.1753242,-1.8006252,-3.9689462,12.608164,2.488724,1.470857,1.1328188,1.012135,1.016254,1.1478641,1.510531,2.634048,18.088089,-3.6338844,-1.738441,-1.2320496,-1.0434877,-1.0009856,-1.0761623,-1.3215631,-1.9981911,-5.294312,6.9649205,-1.2546369,-1.802011,-3.9767904,12.527317,2.4858153,1.4700431,1.1325096,1.012054,1.0163485,1.1481966,1.5114098,2.6373487,18.25741,-3.627378,-1.7371727,-1.2315946,-1.0433282,-1.0010086,-1.0763823,-1.3221499,-1.999968,-5.3084846,-1.051691,-1.2551254,-1.8033994,-3.984666,12.447504,2.4829142,1.4692303,1.1322006,1.0119731,1.0164434,1.1485294,1.5122899,2.640658,18.429934,-3.620895,-1.7359067,-1.2311403,-1.0431689,-1.0010318,-1.0766026,-1.3227375,-2.0017486,-5.322735,-1.0518671,-1.2556146,-1.8047904,-3.9925747,12.368704,2.4800203,1.468419,1.1318922,1.0118927,1.0165386,1.1488628,1.5131716,2.6439764,18.605755,-3.6144369,-1.7346432,-1.2306867,-1.04301,-1.0010552,-1.0768232,-1.323326,-2.003533,-1.0001664,-1.0520434,-1.2561045,-1.806184,-4.0005155,12.290899,2.477134,1.4676088,1.1315842,1.0118124,1.0166341,1.1491967,1.5140547,2.647304,18.784967,-3.6080022,-1.7333819,-1.2302336,-1.0428514,-1.0010791,-1.0770442,-1.3239154,-1.0652525,-1.0001572,-1.0522202,-1.2565953,-1.8075806,-4.0084887,12.21407,2.4742548,1.4667999,1.1312767,1.0117325,1.0167298,1.1495311,1.5149393,2.6506405,18.967672,-3.6015913,-1.7321228,-1.2297813,-1.0426931,-1.001103,-1.0772657,-1.3245056,-1.0650519,-1.0001482,-1.0523971,-1.2570865,-1.8089793,-4.016495,12.138199,2.471383,1.4659923,1.1309696,1.0116528,1.0168259,1.1498661,1.5158253,2.6539862,19.153969,-3.5952046,-1.730866,-1.2293296,-1.0425352,-1.0011274,-1.0774876,-1.2911834,-1.0648516,-1.0001395,-1.0525746,-1.2575786,-1.810381,-4.0245347,12.063267,2.4685187,1.465186,1.1306632,1.0115734,1.0169222,1.1502014,1.5167127,2.657341,19.343967,-3.588841,-1.7296115,-1.2288786,-1.0423775,-1.0011519,-1.9060035,-1.2906423,-1.0646517,-1.000131,-1.0527524,-1.2580714,-1.8117852,-4.0326076,11.989258,2.4656615,1.464381,1.130357,1.0114943,1.0170189,1.1505374,1.5176016,2.660705,19.537779,-3.582501,-1.7283592,-1.2284281,-1.0422202,-4.6085315,-1.9044172,-1.290102,-1.0644522,-1.0001229,-1.0529304,-1.2585648,-1.8131921,-4.040714,11.916155,2.4628117,1.4635772,1.1300514,1.0114155,1.0171157,1.1508737,1.5184917,2.6640785,19.735518,-3.5761843,-1.7271093,-1.2279785,-1.0420632,-4.5979104,-1.9028337,-1.2895625,-1.064253,-1.0001149,-1.0531088,-1.2590592,-1.8146018,-4.048854,11.843941,2.459969,1.4627746,1.1297462,1.0113369,1.0172129,1.1512105,1.5193835,2.667461,19.937307,-3.5698907,-1.7258615,-1.2275294,8.764758,-4.58734,-1.9012535,-1.2890236,-1.0640541,-1.0001073,-1.0532875,-1.259554,-1.8160139,-4.057028,11.7726,2.4571335,1.4619733,1.1294415,1.0112586,1.0173104,1.151548,1.5202768,2.670853,20.14327,-3.5636203,-1.7246162,2.3089473,8.804124,-4.5768185,-1.8996763,-1.2884855,-1.0638556,-1.0000999,-1.0534666,-1.2600497,-1.8174288,-4.065236,11.702115,2.4543054,1.4611734,1.1291372,1.0111806,1.0174081,1.1518859,1.5211715,2.674254,20.353537,-3.5573726,-1.7233729,2.3114176,8.843848,-4.5663466,-1.8981023,-1.2879485,-1.0636575,-1.0000927,-1.053646,-1.2605461,-1.8188465,-4.0734787,11.632474,2.4514844,1.4603746,1.1288334,1.0111029,1.0175062,1.1522243,1.5220675,2.6776648,20.568247,-3.5511477,1.4204777,2.313894,8.883935,-4.5559244,-1.8965315,-1.287412,-1.0634598,-1.000086,-1.0538257,-1.2610433,-1.8202667,-4.0817556,11.56366,2.4486701,1.4595771,1.1285301,1.0110254,1.0176045,1.1525632,1.5229651,2.6810846,20.78754,1.1139245,1.4212142,2.3163762,8.924389,-4.54555,-1.8949636,-1.2868764,-1.0632623,-1.0000794,-1.0540059,-1.2615411,-1.8216897,-4.0900674,11.495657,2.4458632,1.4587809,1.1282272,1.0109483,1.0177032,1.1529027,1.523864,2.684514,21.011566,1.1142054,1.4219518,2.3188643,8.965216,-4.535224,-1.8933991,-1.2863415,-1.0630652,-1.000073,-1.0541862,-1.2620397,-1.8231155,-4.0984144,11.4284525,2.4430635,1.457986,1.1279248,1.0108714,1.017802,1.1532426,1.5247645,2.6879532,1.0076303,1.1144867,1.4226905,2.3213584,9.00642,-4.5249467,-1.8918372,-1.2858075,-1.0628685,-1.0000669,-1.0543671,-1.2625389,-1.824544,-4.1067963,11.362034,2.4402707,1.4571923,1.1276228,1.0107949,1.0179013,1.1535829,1.5256665,1.0225589,1.0076945,1.1147686,1.4234303,2.3238587,9.048006,-4.5147166,-1.8902787,-1.2852743,-1.0626721,-1.0000612,-1.0545481,-1.263039,-1.8259751,-4.115214,11.296384,2.437485,1.4563998,1.1273214,1.0107185,1.0180007,1.1539239,1.52657,1.0224469,1.007759,1.1150508,1.4241712,2.3263648,9.089982,-4.504534,-1.8887234,-1.2847418,-1.0624762,-1.0000556,-1.0547296,-1.2635397,-1.8274089,-4.1236672,11.231491,2.4347062,1.4556087,1.1270202,1.0106424,1.0181005,1.1542653,1.1683644,1.0223352,1.0078236,1.1153334,1.4249134,2.328877,9.132351,-4.494398,-1.8871709,-1.28421,-1.0622804,-1.0000503,-1.0549114,-1.2640412,-1.8288455,-4.1321564,11.167344,2.4319344,1.4548186,1.1267197,1.0105666,1.0182006,1.5640013,1.1680021,1.0222238,1.0078886,1.1156166,1.4256568,2.3313954,9.175118,-4.484309,-1.8856215,-1.2836791,-1.0620852,-1.0000453,-1.0550935,-1.2645434,-1.8302848,-4.1406813,11.103928,2.4291694,1.4540299,1.1264197,1.0104911,2.8378346,1.5630363,1.1676404,1.0221127,1.0079539,1.1159,1.4264011,2.3339195,9.218291,-4.4742665,-1.8840752,-1.2831489,-1.0618901,-1.0000405,-1.0552759,-1.2650464,-1.831727,-4.149243,11.04123,2.4264116,1.4532424,1.12612,1.0104159,2.8339703,1.5620729,1.1672794,1.0220019,1.0080194,1.1161841,1.4271468,2.3364499,9.261875,-4.4642696,-1.8825319,-1.2826196,-1.0616956,-1.000036,-1.0554588,-1.26555,-1.8331718,-4.157841,10.97924,2.4236605,1.4524561,1.1258208,36.982113,2.8301172,1.5611112,1.1669186,1.0218912,1.0080853,1.1164685,1.4278935,2.3389864,9.305876,-4.4543185,-1.8809915,-1.282091,-1.0615013,-1.0000318,-1.0556419,-1.2660545,-1.8346194,-4.1664762,10.917944,2.4209163,1.4516711,-3.3138607,36.293163,2.826275,1.5601511,1.1665586,1.021781,1.0081514,1.1167533,1.4286414,2.3415291,9.350299,-4.444413,-1.8794544,-1.2815632,-1.0613074,-1.0000279,-1.0558255,-1.2665596,-1.8360698,-4.175148,10.857332,2.418179,1.4508873,-3.3192458,35.62942,2.8224444,1.5591924,1.166199,1.021671,1.0082177,1.1170387,1.4293904,2.3440778,9.39515,-4.434553,-1.87792,-1.2810361,-1.0611138,-1.0000242,-1.0560093,-1.2670655,-1.8375231,-4.1838574,10.797393,2.4154487,-1.6753664,-3.3246496,34.98953,2.8186245,1.5582355,1.16584,1.0215614,1.0082843,1.1173245,1.4301407,2.3466327,9.440436,-4.4247375,-1.8763888,-1.2805098,-1.0609206,-1.0000207,-1.0561935,-1.2675722,-1.8389789,-4.192604,10.738114,-1.2096453,-1.6765239,-3.3300717,34.372227,2.814816,1.5572802,1.1654814,1.0214521,1.0083513,1.1176106,1.4308921,2.349194,9.486164,-4.4149666,-1.8748605,-1.2799842,-1.0607277,-1.0000175,-1.056378,-1.2680795,-1.8404377,-4.2013884,10.679485,-1.2100683,-1.6776834,-3.3355124,33.776337,2.8110185,1.5563263,1.1651235,1.021343,1.0084186,1.1178972,1.4316447,2.3517613,9.532339,-4.40524,-1.873335,-1.2794595,-1.0605353,-1.0000147,-1.0565629,-1.2685876,-1.8418993,-4.2102113,-1.0360377,-1.210492,-1.6788447,-3.3409722,33.200764,2.807232,1.555374,1.164766,1.0212342,1.0084859,1.1181842,1.4323984,2.3543348,9.578969,-4.395557,-1.8718128,-1.2789356,-1.0603431,-1.000012,-1.0567482,-1.2690965,-1.8433636,-1.0023891,-1.0361819,-1.2109164,-1.6800083,-3.3464503,32.644485,2.803456,1.5544233,1.164409,1.0211257,1.0085537,1.1184717,1.4331533,2.3569145,9.626059,-4.3859177,-1.8702934,-1.2784123,-1.0601512,-1.0000097,-1.0569336,-1.2696061,-1.8448308,-1.0023537,-1.0363265,-1.2113413,-1.6811739,-3.3519475,32.106552,2.7996912,1.5534743,1.1640526,1.0210174,1.0086217,1.1187598,1.4339094,2.3595006,9.673617,-4.376322,-1.8687772,-1.2778898,-1.0599599,-1.0000075,-1.0571195,-1.2701163,-1.0866842,-1.0023184,-1.0364714,-1.2117668,-1.6823417,-3.3574638,31.586063,2.7959373,1.5525268,1.1636968,1.0209095,1.00869,1.119048,1.4346666,2.3620932,9.72165,-4.366769,-1.8672636,-1.2773681,-1.0597687,-1.0000056,-1.0573058,-1.3488845,-1.086447,-1.0022836,-1.0366166,-1.212193,-1.6835114,-3.362999,31.082193,2.7921941,1.5515807,1.1633414,1.0208019,1.0087585,1.119337,1.4354252,2.364692,9.770165,-4.357259,-1.8657532,-1.2768472,-1.059578,-1.000004,-2.08012,-1.3482579,-1.0862104,-1.0022489,-1.0367621,-1.2126198,-1.6846832,-3.3685532,30.594152,2.7884617,1.5506364,1.1629865,1.0206946,1.0088274,1.1196262,1.4361848,2.3672972,9.81917,-4.347791,-1.8642455,-1.2763271,-1.0593876,-1.0000027,-2.0781739,-1.3476323,-1.085974,-1.0022144,-1.0369079,-1.2130471,-1.685857,-3.3741271,30.121212,2.78474,1.5496935,1.1626322,1.0205876,1.0088966,1.119916,1.4369456,2.3699086,9.868671,-4.338366,-1.8627408,-1.2758076,-1.0591974,-5.9653826,-2.076232,-1.3470076,-1.0857381,-1.0021803,-1.0370541,-1.2134751,-1.687033,-3.37972,29.662674,2.781029,1.5487522,1.1622784,1.0204809,1.008966,1.1202061,1.4377075,2.3725266,9.918676,-4.3289824,-1.8612391,-1.2752889,6.082514,-5.947423,-2.074294,-1.3463839,-1.0855024,-1.0021465,-1.0372006,-1.2139038,-1.6882111,-3.3853326,29.217901,2.7773285,1.5478125,1.1619252,1.0203744,1.0090356,1.1204967,1.4384707,2.375151,9.969193,-4.3196406,-1.8597404,-1.2747712,-1.0588183,-1.0000004,-1.0582422,-1.2731942,-1.8551806,-4.291365,10.126729,2.3832057,1.4408088,1.121387,1.0092502,-1.1652577,-1.5566838,-2.8124418,-33.99744,3.3334694,1.6772481,1.2099096,1.0358398,1.0024744,1.0877262,1.3522683,2.092626,6.1202283,-5.911831,-2.0704312,-1.3451391,-1.0850325,-1.0020795,-1.0374944,-1.2147629,-1.6905735,-3.3966162,28.367216,2.7699592,1.5459377,1.1612202,1.0201623,1.0091758,1.1210793,1.4400007,2.3804188,10.071796,-4.3010807,-1.8567512,-1.2737377,-1.0584407,-1.0,-1.0586191,-1.2742261,-1.8581636,-4.309839,10.023005,2.377924,1.4392763,-1.0082594,-1.0216025,-1.1659745,-1.5585943,-2.8200564,-35.226864,3.3226204,1.6749327,1.2090645,1.0355531,1.0025474,1.0882051,1.3535345,2.0965853,6.158419,-5.876669,-2.0665846,-1.3438982,-1.0845641,-1.0020136,-1.0377896,-1.2156246,-1.6929444,-3.4079792,27.5647,2.7626317,1.544069,1.1605172,1.0199515,1.009317,1.1216636,1.4415354,2.3857129,10.176543,-4.2826843,-1.8537737,-1.2727071,-1.0580643,-1.0000008,-1.0589975,-1.2752609,-1.8611581,-4.3284764,9.921394,2.3726683,-1.1166464,-1.0081266,-1.0218223,-1.1666936,-1.560511,-2.8277152,-36.548584,3.311845,1.6726257,1.2082219,1.0352676,1.0026215,1.0886855,1.3548043,2.1005616,6.1970963,-5.8419285,-2.0627544,-1.3426609,-1.0840971,-1.0019488,-1.0380859,-1.2164887,-1.6953236,-3.419422,26.806362,2.7553458,1.5422064,1.1598165,1.0197419,1.0094595,1.1222498,1.443075,2.3910327,10.283503,-4.2644486,-1.8508079,-1.2716796,-1.0576894,-1.0000026,-1.0593773,-1.276299,-1.8641641,-4.347281,9.821833,-1.426867,-1.1160774,-1.0079948,-1.0220433,-1.1674148,-1.5624341,-2.8354187,-37.973396,3.301143,1.6703264,1.2073817,1.0349834,1.0026966,1.0891675,1.356078,2.1045554,6.236269,-5.8076034,-2.0589406,-1.3414273,-1.0836319,-1.001885,-1.0383836,-1.2173554,-1.6977113,-3.4309452,26.088665,2.7481012,1.54035,1.1591177,1.0195333,1.0096029,1.1228378,1.4446192,2.3963792,10.392746,-4.2463727,-1.8478534,-1.2706552,-1.0573158,-1.0000056,-1.0597584,-1.27734,-1.8671819,-9.159028,-2.3304498,-1.4253777,-1.1155103,-1.0078642,-1.0222656,-1.168138,-1.5643637,-2.8431673,-39.513844,3.2905135,1.6680355,1.2065439,1.0347004,1.0027728,1.089651,1.3573556,2.1085665,6.275947,-5.7736845,-2.055143,-1.3401974,-1.083168,-1.0018224,-1.0386825,-1.2182246,-1.7001076,-3.4425504,25.40842,2.7408974,1.5384996,1.1584209,1.019326,1.0097475,1.1234274,1.4461683,2.401752,10.504346,-4.228453,-1.8449101,-1.2696337,-1.0569437,-1.0000095,-1.060141,-1.2783841,4.508348,-9.074189,-2.325424,-1.4238931,-1.1149448,-1.0077348,-1.022489,-1.1688634,-1.5662996,-2.8509612,-41.184605,3.2799554,1.6657525,1.2057087,1.0344186,1.00285,1.0901362,1.3586369,2.112595,6.3161397,-5.7401657,-2.0513616,-1.3389713,-1.0827059,-1.0017608,-1.0389826,-1.2190963,-1.7025124,-3.454238,24.762772,2.7337344,1.5366553,1.1577264,1.0191197,1.0098933,1.124019,1.4477224,2.4071515,10.618381,-4.210689,-1.8419783,-1.268615,-1.0565729,-1.0000145,-1.0605248,1.8924228,4.5287967,-8.990917,-2.3204222,-1.4224132,-1.1143812,-1.0076063,-1.0227134,-1.169591,-1.568242,-2.8588014,-43.00294,3.2694683,1.6634775,1.204876,1.0341381,1.0029285,1.0906229,1.359922,2.1166413,6.3568573,-5.70704,-2.0475962,-1.3377485,-1.082245,-1.0017003,-1.0392841,-1.2199706,-1.7049259,-3.466009,24.14915,2.7266114,1.5348171,1.1570337,1.0189146,1.01004,1.1246123,1.4492812,2.4125779,10.734928,-4.1930776,-1.8390577,-1.2675996,-1.0562035,1.0633363,1.2870772,1.8955513,4.549436,-8.909169,-2.3154442,-1.4209378,-1.1138192,-1.007479,-1.0229392,-1.1703206,-1.570191,-2.8666875,-44.989304,3.2590516,1.6612105,1.2040454,1.0338589,1.0030079,1.0911113,1.3612112,2.1207054,6.39811,-5.6743,-2.0438468,-1.3365296,-1.0817859,-1.0016408,-1.0395869,-1.2208474,-1.707348,-3.4778636,23.56523,2.7195282,1.5329849,1.1563432,1.0187107,1.0101879,1.1252075,1.450845,2.4180315,10.854076,-4.1756177,-1.8361484,-1.266587,1.0000955,1.0637318,1.2881498,1.8986924,4.5702696,-8.828904,-2.3104904,-1.4194669,-1.1132591,-1.0073527,-1.0231661,-1.1710525,-1.5721463,-2.8746204,-47.16811,3.2487044,1.6589514,1.2032174,1.0335809,1.0030884,1.0916011,1.3625042,2.1247876,6.439908,-5.6419396,-2.0401134,-1.3353143,-1.0813283,-1.0015824,-1.0398909,-1.2217267,-1.7097789,-3.4898038,23.0089,2.7124848,1.5311584,1.1556547,1.018508,1.010337,1.1258045,1.4524138,2.4235122,10.97591,-4.158307,1.2593683,1.0532204,1.0001101,1.0641288,1.2892256,1.9018459,4.5912995,-8.750081,-2.3055596,-1.4180006,-1.1127006,-1.0072277,-1.0233941,-1.1717864,-1.5741082,-2.8826005,-49.568752,3.2384262,1.6567,1.2023917,1.0333041,1.00317,1.0920926,1.363801,2.1288874,6.4822626,-5.6099524,-2.0363955,-1.3341026,-1.0808722,-1.0015249,-1.0401962,-1.2226086,-1.7122185,-3.5018299,22.478258,2.7054806,1.5293381,1.1549683,1.0183064,1.0104871,1.1264035,1.4539872,2.4290204,11.100521,1.8126642,1.2583797,1.0528635,1.0001259,1.064527,1.2903045,1.9050118,4.612529,-8.672662,-2.3006525,-1.4165388,-1.1121439,-1.0071036,-1.0236233,-1.1725224,-1.5760767,-2.8906279,-52.226917,3.228216,1.6544567,1.2015685,1.0330286,1.0032525,1.0925858,1.3651018,2.1330056,6.5251856,-5.578331,-2.0326934,-1.3328944,-1.0804175,-1.0014688,-1.0405028,-1.2234931,-1.7146668,-3.5139427,21.971563,2.6985152,1.5275239,1.1542838,1.018106,1.0106384,1.127004,1.4555658,2.4345562,4.021515,1.809855,1.257394,1.052508,1.0001427,1.0649267,1.2913866,1.9081904,4.63396,-8.59661,-2.2957685,-1.4150816,-1.1115888,-1.0069805,-1.0238538,-1.1732608,-1.5780518,-2.8987033,-55.18639,3.2180736,1.6522212,1.2007476,1.0327543,1.0033363,1.0930804,1.3664066,2.1371417,6.5686874,-5.5470705,-2.029007,-1.33169,-1.0799644,-1.0014135,-1.0408106,-1.2243801,-1.717124,-3.5261436,21.48723,2.6915882,1.5257154,1.1536014,1.0179067,1.0107907,1.1276065,-2.475334,-12.242779,4.0054936,1.8070564,1.2564111,1.0521538,1.0001606,1.0653279,1.2924719,1.9113815,4.6555967,-8.52189,-2.2909079,-1.4136287,-1.1110355,-1.0068587,-1.0240854,-1.1740012,-1.5800335,-2.906827,-58.501476,3.207998,1.6499933,1.1999292,1.0324812,1.0034211,1.0935768,1.3677152,2.1412964,6.6127806,-5.5161643,-2.0253358,-1.330489,-1.0795128,-1.0013592,-1.0411197,-1.2252698,-1.71959,-3.5384328,21.02381,2.6846998,1.5239128,1.152921,1.0177085,1.0109441,-1.4687232,-2.481105,-12.398147,3.989604,1.8042682,1.255431,1.051801,1.0001795,1.0657305,1.2935604,1.9145852,4.6774406,-8.448464,-2.2860699,-1.4121804,-1.110484,-1.006738,-1.0243183,-1.1747439,-1.582022,-2.9149992,-62.240368,3.1979887,1.6477733,1.1991131,1.0322094,1.0035069,1.0940746,1.3690279,2.1454697,6.657476,-5.485606,-2.02168,-1.3292917,-1.0790628,-1.0013062,-1.0414301,-1.226162,-1.722065,-3.550812,20.579979,2.6778493,1.522116,1.1522427,-1.0120844,-1.1326256,-1.4703482,-2.4869056,-12.557524,3.973844,1.8014909,1.2544538,1.0514495,1.0001996,1.0661345,1.2946521,1.917802,4.699496,-8.376304,-2.281255,-1.4107364,-1.1099341,-1.0066183,-1.0245522,-1.1754887,-1.584017,-2.923221,-66.489876,3.188045,1.645561,1.1982995,1.0319388,1.0035938,1.0945741,1.3703444,2.1496613,6.702788,-5.45539,-2.0180397,-1.3280978,-1.0786142,-1.0012542,-1.0417417,-1.2270567,-1.7245488,-3.563282,20.154522,2.6710362,1.5203251,-1.0161242,-1.012247,-1.1332451,-1.4719784,-2.4927359,-12.7210655,3.958212,1.7987237,1.2534795,1.0510994,1.0002205,1.0665399,1.2957469,1.9210316,4.7217655,-8.305373,-2.2764626,-1.409297,-1.109386,-1.0064998,-1.0247874,-1.1762357,-1.5860188,-2.9314923,-71.36227,3.1781664,1.6433562,1.1974882,1.0316695,1.0036818,1.0950752,1.371665,2.1538715,6.7487273,-5.4255114,-2.0144145,-1.3269075,-1.0781672,-1.0012032,-1.0420548,-1.2279541,-1.7270417,-3.5758436,19.746319,2.6642609,-1.1467458,-1.0159367,-1.0124108,-1.1338665,-1.473614,-2.4985964,-12.888936,3.942707,1.795967,1.2525079,1.0507506,1.0002427,1.0669469,1.2968451,1.924274,4.7442517,-8.235643,-2.2716928,-1.4078621,-1.1088395,-1.0063822,-1.0250238,-1.1769849,-1.5880272,-2.9398136,-77.00531,3.1683521,1.641159,1.1966791,1.0314014,1.003771,1.095578,1.3729894,2.1581006,6.795308,-5.395963,-2.0108044,-1.3257208,-1.0777217,-1.0011532,-1.042369,-1.2288542,-1.7295438,-3.5884979,-2.6164598,-1.5058312,-1.1460857,-1.0157503,-1.0125756,-1.1344898,-1.4752545,-2.5044873,-13.061311,3.9273267,1.7932206,1.2515393,1.0504031,1.0002658,1.0673552,1.2979463,1.9275295,4.766958,-8.167083,-2.2669451,-1.4064314,-1.1082948,-1.0062658,-1.0252614,-1.1777363,-1.5900425,-2.9481852,-83.61754,3.1586013,1.6389697,1.1958725,1.0311344,1.0038611,1.0960823,1.3743181,2.1623487,6.8425436,-5.366741,-2.0072095,-1.3245375,-1.0772777,-1.0011044,-1.0426846,-1.2297568,-1.7320548,-16.93025,-2.6099806,-1.504093,-1.1454277,-1.015565,-1.0127417,-1.1351149,-1.4769005,-2.5104084,-13.238374,3.9120705,1.7904845,1.2505734,1.0500569,1.00029,1.0677649,1.2990509,1.9307978,4.7898884,-8.099662,-2.2622197,-1.4050052,-1.1077518,-1.0061505,-1.0255002,-1.1784898,-1.5920645,-2.956608,-91.472084,3.1489139,1.6367877,1.1950682,1.0308688,1.0039523,1.0965884,1.3756508,2.166616,6.890448,-5.337839,-2.0036294,-1.3233578,-1.0768352,-1.0010566,-1.0430014,-1.2306621,3.6960893,-16.641418,-2.6035361,-1.5023602,-1.1447717,-1.0153807,-1.0129088,-1.1357421,-1.4785515,-2.5163603,-13.420317,3.8969362,1.7877587,1.2496103,1.0497123,1.0003153,1.0681762,1.3001589,1.9340796,4.8130455,-8.033355,-2.2575164,-1.4035833,-1.1072105,-1.0060362,-1.02574,-1.1792457,-1.5940936,-2.9650822,-100.95535,3.1392891,1.6346133,1.1942662,1.0306042,1.0040445,1.0970958,1.3769873,2.1709023,6.939035,-5.3092527,-2.0000641,-1.3221816,-1.0763942,-1.0010098,1.2372718,1.7530318,3.709647,-16.362293,-2.5971258,-1.5006332,-1.1441176,-1.0151978,-1.013077,-1.136371,-1.4802079,-2.5223432,-13.607345,3.8819227,1.7850429,1.2486501,1.0493687,1.0003417,1.0685887,1.3012699,1.9373746,4.8364325,-7.9681315,-2.2528348,-1.4021658,-1.1066709,-1.0059232,-1.0259812,-1.1800038,-1.5961294,-2.973608,-112.63251,3.1297262,1.6324464,1.1934667,1.030341,1.004138,1.0976051,1.378328,2.1752076,6.9883194,-5.2809763,-1.9965137,-1.3210088,-1.0759547,1.0456532,1.2381989,1.7556287,3.7233088,-16.092394,-2.59075,-1.4989116,-1.1434653,-1.0150158,-1.0132464,-1.1370019,-1.4818696,-2.5283573,-13.799674,3.8670287,1.7823373,1.2476926,1.0490266,1.0003691,1.0690029,1.3023844,1.9406825,4.8600526,-7.9039683,-2.2481751,-1.4007525,-1.106133,-1.005811,-1.0262235,-1.180764,-1.598172,-2.9821863,-127.36447,3.1202245,1.6302869,1.1926694,1.030079,1.0042324,1.098116,1.3796728,2.1795328,7.0383167,-5.253005,-1.9929779,1.0728277,1.000666,1.045982,1.2391287,1.7582352,3.7370756,-15.83127,-2.5844078,-1.4971956,-1.1428151,-1.0148351,-1.0134169,-1.1376346,-1.4835365,-2.5344028,-13.997534,3.852252,1.7796416,1.246738,1.0486859,1.0003976,1.0694183,1.303502,1.944004,4.88391,-7.8408384,-2.243537,-1.3993436,-1.1055968,-1.0057001,-1.0264671,-1.1815264,-1.6002216,-2.9908173,-146.5303,3.1107838,1.6281348,1.1918745,1.0298182,1.0043279,1.0986285,1.3810216,2.1838772,7.089041,-5.2253337,1.3115053,1.0724003,1.000629,1.0463122,1.2400613,1.7608514,3.7509484,-15.578501,-2.5780995,-1.495485,-1.1421667,-1.0146555,-1.0135885,-1.1382693,-1.4852089,-2.5404801,-14.201164,3.8375926,1.7769562,1.245786,1.0483464,1.000427,1.0698354,1.3046229,1.947339,4.908008,-7.7787156,-2.2389202,-1.3979391,-1.1050622,-1.0055902,-1.0267118,-1.1822912,-1.6022781,-2.9995017,-172.48624,3.101403,1.6259903,1.1910818,1.0295587,1.0044245,1.0991426,1.3823745,2.1882415,7.140511,1.9644775,1.310364,1.0719745,1.0005931,1.0466436,1.2409966,1.7634772,3.7649286,-15.333694,-2.5718248,-1.4937799,-1.1415205,-1.014477,-1.0137612,-1.1389059,-1.4868864,-2.5465891,-14.410824,3.8230479,1.7742807,1.2448368,1.0480082,1.0004575,1.0702538,1.3057472,1.9506878,4.9323506,-7.717579,-2.234325,-1.3965389,-1.1045293,-1.0054814,-1.0269578,-1.183058,-1.6043417,-3.00824,-209.61748,3.0920823,1.6238528,1.1902915,1.0293003,1.0045222,1.0996585,1.3837316,-7.5354557,5.0087967,1.9610732,1.3092263,1.0715501,1.0005583,1.0469764,1.2419345,1.7661127,3.7790174,-15.096477,-2.565583,-1.4920803,-1.140876,-1.0142996,-1.0139351,-1.1395444,-1.4885694,-2.5527306,-14.626781,3.8086169,1.7716149,1.2438904,1.0476714,1.0004892,1.0706738,1.3068748,1.9540498,4.9569407,-7.6574035,-2.2297506,-1.3951428,-1.1039982,-1.0053736,-1.027205,-1.1838273,-1.6064123,-3.0170324,-267.12112,3.0828202,1.6217228,1.1895034,1.0290431,1.0046209,1.1001759,-2.2248528,-7.5937066,4.98368,1.9576825,1.3080918,1.0711272,1.0005244,1.0473105,1.2428752,1.7687579,3.793216,-14.866503,-2.559374,-1.4903861,-1.1402335,-1.0141234,-1.0141101,-1.1401849,-1.4902577,-2.5589042,-14.849324,3.7942986,1.7689592,1.2429467,1.0473359,1.0005219,1.0710951,1.3080057,1.9574256,4.981783,-7.598167,-2.2251976,-1.3937511,-1.1034687,-1.0052669,-1.0274532,-1.1845987,-1.60849,-3.0258796,-368.10156,3.0736172,1.6196002,1.1887177,1.0287871,-1.1039579,-1.3950369,-2.2294042,-7.6528726,4.9588184,1.9543056,1.3069606,1.0707057,1.0004916,1.0476459,1.2438186,1.7714128,3.8075256,-14.643446,-2.553198,-1.4886974,-1.1395929,-1.0139483,-1.0142863,-1.1408272,-1.4919515,-2.5651104,-15.078763,3.7800915,1.7663132,1.2420058,1.0470017,1.0005556,1.071518,1.30914,1.9608151,5.0068803,-7.5398474,-2.2206652,-1.3923635,-1.1029408,-1.0051614,-1.0277028,-1.1853725,-1.6105746,-3.0347817,-591.8349,3.0644717,1.6174847,1.1879343,-1.0054731,-1.104489,-1.3964326,-2.2339768,-7.7129755,4.9342093,1.9509425,1.3058327,1.0702857,1.0004599,1.0479826,1.2447649,1.7740778,3.8219478,-14.426998,-2.5470545,-1.4870139,-1.1389543,-1.0137744,-1.0144635,-1.1414714,-1.4936507,-2.5713496,-15.315417,3.7659945,1.763677,1.2410676,1.0466689,1.0005903,1.0719422,1.3102776,1.9642186,5.032237,-7.4824247,-2.2161539,-1.3909802,-1.1024146,-1.0050569,-1.0279535,-1.1861484,-1.6126664,-3.0437398,-1509.0297,3.055384,1.6153765,-1.0267304,-1.0055819,-1.1050217,-1.3978326,-2.2385707,-7.7740393,4.909848,1.947593,1.3047081,1.0698671,1.0004293,1.0483207,1.2457138,1.7767526,3.8364837,-14.216871,-2.540943,-1.485336,-1.1383176,-1.0136015,-1.0146419,-1.1421176,-1.4953554,-2.577622,-15.559635,3.7520063,1.7610505,1.2401322,1.0463372,1.0006262,1.0723679,1.3114185,1.9676359,5.0578575,-7.425878,-2.211663,-1.3896011,-1.1018901,-1.0049535,-1.0282055,-1.1869265,-1.6147653,-3.0527544,2744.9438,-1.6003776,-1.1815845,-1.0264857,-1.0056916,-1.1055561,-1.3992368,-2.2431855,-7.836085,4.8857317,1.9442569,1.303587,1.06945,1.0003997,1.04866,1.2466656,1.7794374,3.8511348,-14.012792,-2.5348632,-1.4836633,-1.1376828,-1.0134299,-1.0148214,-1.1427658,-1.4970654,-2.5839276,-15.811786,3.738125,1.7584336,1.2391995,1.046007,1.0006632,1.0727953,1.312563,1.9710671,5.083746,-7.3701863,-2.2071927,-1.3882263,-1.1013672,-1.0048512,-1.0284586,-1.1877071,-1.6168715,-3.0618255,-2.98284,-1.5983274,-1.1808218,-1.026242,-1.0058025,-1.1060922,-1.4006454,-2.247822,-7.899138,4.861856,1.9409344,1.302469,1.0690343,1.0003712,1.0490007,1.24762,1.7821323,3.8659024,-13.814503,-2.5288155,-1.481996,-1.1370498,-1.0132593,-1.0150021,-1.1434158,-1.4987811,-2.5902672,-16.07226,3.7243505,1.7558264,1.2382694,1.0456781,1.0007011,1.073224,1.3137107,1.9745126,5.1099057,-7.3153324,-2.2027426,-1.3868556,-1.100846,-1.00475,-1.028713,-1.1884898,-1.6189848,-113.63063,-2.9742577,-1.5962842,-1.1800613,-1.0259995,-1.0059146],"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/secf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..41cf16a3352f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0205647,1.0867175,1.214385,1.4419019,1.8669282,2.8081877,6.162903,-26.23308,-4.2200465,-2.346004,-1.6712149,-1.3398403,-1.1570554,-1.0555981,-1.0078499,-1.0029117,-1.0397283,-1.1264893,-1.2855877,-1.5707461,-2.1287315,-3.5217385,-11.535083,8.767235,3.2235558,2.024836,1.5206573,1.2581059,1.1110603,1.032038,1.0011876,1.0117264,1.0659128,1.1763327,1.3740621,1.7358011,2.492435,4.758446,94.16173,-5.281486,-2.6200705,-1.7901491,-1.4024478,-1.1922888,-1.0745771,-1.0152673,-1.0003774,-1.0267057,-1.0999961,-1.2383068,-1.4849633,-1.9524719,-3.027735,-7.4032893,15.249829,3.7939026,2.21748,1.6124718,1.3082656,1.1392579,1.0462704,1.004762,1.0054023,1.0483277,1.1432198,1.315296,1.6254848,2.2455828,3.8837101,16.87089,-7.075757,-2.9741359,-1.9320561,-1.4747719,-1.2327021,-1.096875,-1.0252346,-1.0002251,-1.0164018,-1.0772474,-1.1971718,-1.4111506,-1.8069583,-2.660403,-5.4585752,59.271477,4.624043,2.4574068,1.7205726,1.3660403,1.1718171,1.0634801,1.0107756,1.0015124,1.0337071,1.1144893,1.2642242,1.531766,2.047637,3.287218,9.277567,-10.755042,-3.4482968,-2.1038144,-1.5588565,-1.2790892,-1.1228354,-1.0378838,-1.0024484,-1.0086695,-1.057877,-1.1613458,-1.3474526,-1.6854964,-2.3779097,-4.3322635,-31.436113,5.935162,2.762479,1.8487422,1.4326255,1.2091998,1.0838561,1.0192856,1.0000197,1.0218966,1.0896579,1.2197009,1.4514245,1.8856851,2.85496,6.4059486,-22.547752,-4.114925,-2.3154078,-1.6574081,-1.3324568,-1.1528933,-1.0533979,-1.0070738,-1.0034142,-1.041616,-1.1302027,-1.2921871,-1.5828503,-2.1542659,-3.5983212,-12.435147,8.311549,3.162591,2.002673,1.5097961,1.2521116,1.1077049,1.0304029,1.0009001,1.0127258,1.0684166,1.1809628,1.3822917,1.7514836,2.5288393,4.902147,231.30188,-5.114571,-2.5807672,-1.7736018,-1.3938453,-1.1874576,-1.0719434,-1.0141672,-1.0005704,-1.0282325,-1.1032013,-1.2440525,-1.4952278,-1.9731433,-3.0827317,-7.7583227,13.928432,3.709323,2.1904879,1.5998833,1.3014451,1.1353782,1.0442678,1.0041642,1.0060816,1.0504297,1.1472449,1.322437,1.6387407,2.2744236,3.977786,18.872633,-6.776976,-2.9226463,-1.9121892,-1.464803,-1.2271566,-1.0937924,-1.0237975,-1.0001113,-1.0175872,-1.0799929,-1.2021781,-1.4200821,-1.824283,-2.7024078,-5.649586,43.16465,4.4963126,2.4232035,1.7055695,1.3581088,1.16735,1.061083,1.0098594,1.0018793,1.0354347,1.117941,1.2703761,1.5429599,2.0707502,3.352752,9.84394,-10.082006,-3.3788304,-2.0798488,-1.5472364,-1.2727228,-1.1192586,-1.0360914,-1.0020264,-1.0095284,-1.0602019,-1.1657035,-1.3551862,-1.7000545,-2.4107065,-4.4504795,-39.190655,5.724398,2.718453,1.8308525,1.4234586,1.2040694,1.081032,1.0180407,1.000079,1.0232726,1.0926577,1.2251124,1.461132,1.9048986,2.9039145,6.671907,-19.747213,-4.0141134,-2.2854004,-1.6437601,-1.3251354,-1.148766,-1.0512269,-1.0063456,-1.0039514,-1.043533,-1.1339487,-1.2988406,-1.5950854,-2.1802502,-3.6776626,-13.477076,7.9011903,3.10401,1.9810674,1.499148,1.2462233,1.1044134,1.0288137,1.0006526,1.0137676,1.0709748,1.1856767,1.3906761,1.7675227,2.566426,5.055003,-506.71707,-4.958074,-2.5427248,-1.7574269,-1.3854024,-1.1827121,-1.0693649,-1.0131097,-1.0008031,-1.0298046,-1.106469,-1.2499018,-1.5057979,-1.994546,-3.140458,-8.153482,12.80824,3.6277978,2.1639748,1.5874316,1.2946805,1.1316062,1.0423328,1.003612,1.0067947,1.0525607,1.1513041,1.3296379,1.6521481,2.3038154,4.076698,21.414305,-6.502652,-2.8730214,-1.8928009,-1.4550253,-1.2217091,-1.0907704,-1.0224049,-1.0000372,-1.0188159,-1.0827955,-1.2072744,-1.4291842,-1.8420168,-2.7458706,-5.8546906,33.942287,4.3756175,2.390033,1.6908921,1.350322,1.1629628,1.0587385,1.0089852,1.0022863,1.0372094,1.1214927,1.2767,1.5544925,2.0947092,3.421771,10.491078,-9.48313,-3.3115954,-2.0562768,-1.5359582,-1.2665297,-1.1157824,-1.0343632,-1.0016481,-1.0104198,-1.062556,-1.1700972,-1.3630633,-1.714935,-2.444519,-4.5755153,-52.026382,5.5283012,2.6759124,1.8133767,1.414464,1.1990297,1.0782653,1.0168391,1.000178,1.024693,1.0957175,1.2306211,1.471029,1.9245852,2.9546962,6.9611936,-17.566113,-3.9182744,-2.2562492,-1.630399,-1.3179458,-1.1447133,-1.0491064,-1.005651,-1.0045342,-1.0455173,-1.1378016,-1.305681,-1.6076975,-2.2072206,-3.7615638,-14.72339,7.5331626,3.048214,1.9602015,1.4888079,1.2404946,1.101216,1.027285,1.0004466,1.0148411,1.0735878,1.1904757,1.3992187,1.7839296,2.6052518,5.217913,-120.91529,-4.811054,-2.5058856,-1.7416127,-1.3771154,-1.1780509,-1.0668409,-1.0120944,-1.0010756,-1.0314224,-1.1098006,-1.2558564,-1.5165789,-2.0164988,-3.200517,-8.5914135,11.855255,3.5499172,2.1381793,1.5752342,1.2880366,1.127867,1.0404271,1.0030946,1.0075555,1.0547631,1.1554781,1.3370423,1.6659775,2.334369,4.179789,24.71096,-6.252266,-2.8256192,-1.8740568,-1.4455262,-1.2164092,-1.0878364,-1.0210694,-1.0000027,-1.020088,-1.0856558,-1.2124625,-1.4384612,-1.8601733,-2.790867,-6.0754986,27.967905,4.2613974,2.3578503,1.6765313,1.342677,1.1586543,1.0564461,1.0081522,1.0027333,1.0390313,1.1251118,1.2831384,1.5662613,2.1193137,3.4938328,11.229766,-8.951749,-3.2471101,-2.0333126,-1.5247947,-1.2603862,-1.1123378,-1.0326643,-1.0013058,-1.0113616,-1.064986,-1.1746143,-1.3710089,-1.7299984,-2.4790502,-4.70665,-77.00593,5.347114,2.6351779,1.7964654,1.4057225,1.194079,1.0755552,1.0156807,1.0003167,1.0261582,1.0988382,1.2362288,1.4811201,1.9447606,3.0074074,7.2770047,-15.819464,-3.8270538,-2.2279198,-1.6173171,-1.3108857,-1.1407343,-1.0470357,-1.0049973,-1.0051575,-1.0475508,-1.1417263,-1.3126462,-1.6205754,-2.2349565,-3.8495388,-16.22441,7.1950297,2.9939868,1.9396486,1.4785682,1.2348115,1.098049,1.0257862,1.0002782,1.0159675,1.0762303,1.1953136,1.4078379,1.8005514,2.6449816,5.39015,-68.93861,-4.673985,-2.4705355,-1.7261484,-1.3689808,-1.1734726,-1.064371,-1.0111213,-1.0013881,-1.0330864,-1.1131964,-1.2619182,-1.5275764,-2.0390217,-3.2630498,-9.07944,11.034667,3.475445,2.1130748,1.5632842,1.2815112,1.1241968,1.0385693,1.0026174,1.0083575,1.0570167,1.1597286,1.3445832,1.6801074,2.3658392,4.289492,29.260803,-6.0184913,-2.779422,-1.8555745,-1.4361155,-1.2111515,-1.0849323,-1.0197645,-1.0000076,-1.0213909,-1.088546,-1.2176923,-1.4478247,-1.8785841,-2.837017,-6.311474,23.782711,4.153149,2.326614,1.6624777,1.3351706,1.1544231,1.0542054,1.0073606,1.0032207,1.040901,1.1287992,1.2896934,1.5782727,2.1445894,3.5691397,12.080871,-8.477076,-3.1852124,-2.0109346,-1.5138521,-1.2543515,-1.1089582,-1.0310119,-1.0010034,-1.0123453,-1.0674695,-1.1792132,-1.3791813,-1.7455494,-2.515024,-4.84712,-149.48865,5.176016,2.5953848,1.7797754,1.397059,1.1892629,1.0729266,1.0145756,1.0004933,1.0276535,1.1019895,1.2418815,1.4913095,1.9652395,3.0621567,7.6231494,-14.389268,-3.7401285,-2.200379,-1.6045065,-1.3039521,-1.1368276,-1.0450146,-1.0043842,-1.0058216,-1.049634,-1.1457238,-1.3197385,-1.6337268,-2.2634892,-3.9418871,-18.067024,6.8862095,2.9417703,1.9195976,1.4685264,1.229229,1.0949436,1.0243323,1.0001495,1.0171367,1.0789546,1.2002864,1.4167061,1.8177258,2.6864564,5.576237,-48.0734,-4.5434523,-2.4359324,-1.7111684,-1.3610721,-1.1690192,-1.0619775,-1.0101988,-1.0017368,-1.0347801,-1.1166236,-1.268029,-1.5387961,-2.0621364,-3.3282094,-9.626654,10.320706,3.4041653,2.0886345,1.5515753,1.2751018,1.1205947,1.0367594,1.0021803,1.0092008,1.0593221,1.1640569,1.3522635,1.6945467,2.3982658,4.405288,35.86595,-5.80179,-2.734818,-1.8375255,-1.4268829,-1.2059865,-1.0820866,-1.0185033,-1.0000521,-1.0227504,-1.0915234,-1.2230676,-1.4574622,-1.8976244,-2.8853097,-6.569388,20.713882,4.0513916,2.2965739,1.6488545,1.3278708,1.1503081,1.0520368,1.0066172,1.0037429,1.0428188,1.1325558,1.2963673,1.5905334,2.1705623,3.6479125,13.072128,-8.05051,-3.125752,-1.9891218,-1.5031246,-1.2484236,-1.1056428,-1.0294056,-1.000741,-1.0133712,-1.0700071,-1.1838955,-1.3875072,-1.7614532,-2.5521598,-4.9964366,-2546.7065,5.015721,2.5568757,1.763462,1.3885565,1.1844853,1.0703274,1.0135021,1.000711,1.0292084,1.1052338,1.2476916,1.5018015,1.9864402,3.1185002,8.000325,-13.20732,-3.6579916,-2.1738517,-1.5920802,-1.2972081,-1.1330293,-1.0430614,-1.0038115,-1.0065264,-1.0517672,-1.149795,-1.3269609,-1.6471591,-2.292852,-4.0389395,-20.382706,6.6030583,2.8914564,1.9000313,1.4586773,1.2237449,1.0918989,1.022923,1.0000604,1.018349,1.0817356,1.2053487,1.4257437,1.8353043,2.729363,5.775869,-36.905045,-4.4201827,-2.402379,-1.6963698,-1.3532312,-1.1646022,-1.0596133,-1.0093088,-1.0021286,-1.036537,-1.1201502,-1.2743105,-1.5501316,-2.0856316,-3.3954897,-10.238118,9.69959,3.3365283,2.0650618,1.5402112,1.2688668,1.1170598,1.0349966,1.0017835,1.0100856,1.0616798,1.168464,1.3600862,1.7093049,2.4316914,4.5276947,46.32487,-5.600366,-2.691728,-1.8198956,-1.4178239,-1.2009128,-1.0792983,-1.0172856,-1.0001361,-1.0241541,-1.0945606,-1.2285396,-1.4672875,-1.9171312,-2.9353933,-6.849562,18.32666,3.9537275,2.2671053,1.6353865,1.3206322,1.1462275,1.0498973,1.0059073,1.0043105,1.044766,1.1363455,1.303096,1.6029276,2.1969976,3.729574,14.228871,-7.668665,-3.0691335,-1.9678546,-1.4926069,-1.2426004,-1.1023908,-1.0278449,-1.0005182,-1.0144395,-1.0725994,-1.1886623,-1.3959899,-1.7777206,-2.5905132,-5.155456,169.37213,4.865243,2.5195909,1.7475134,1.3802112,1.1797926,1.067783,1.012471,1.0009686,1.030809,1.1085413,1.2536063,1.5125027,2.0081837,3.1776667,8.421406,-12.196189,-3.5787702,-2.14779,-1.5797882,-1.2905191,-1.1292639,-1.0411376,-1.0032842,-1.0072649,-1.0539296,-1.1539007,-1.3342441,-1.660746,-2.3227825,-4.1400447,-23.347046,6.3425155,2.8429453,1.8809338,1.4490167,1.2183574,1.0889142,1.021558,1.0000111,1.0196049,1.0845742,1.2105023,1.4349544,1.8533003,2.773774,5.990572,-29.948608,-4.3035913,-2.3698304,-1.6818912,-1.3455334,-1.1602641,-1.0573014,-1.0084604,-1.0025606,-1.038341,-1.1237439,-1.2807055,-1.5618109,-2.1099908,-3.4663851,-10.940254,9.144247,3.2710297,2.0418718,1.5289634,1.2626818,1.1136245,1.0332972,1.0014298,1.0110028,1.0640666,1.1729074,1.3679768,1.7242436,2.4661613,4.657287,65.39837,-5.412666,-2.6500785,-1.8026718,-1.4089347,-1.1959289,-1.0765669,-1.0161109,-1.00026,-1.0256023,-1.0976584,-1.2341099,-1.4773052,-1.9371209,-2.9873674,-7.1549954,16.433403,3.860811,2.2384708,1.6222006,1.3135237,1.1422209,1.0478079,1.0052382,1.0049186,1.046781,1.140243,1.310014,1.6157047,2.2244425,3.8159845,15.625732,-7.3184333,-3.014122,-1.947312,-1.4823925,-1.2369351,-1.0992317,-1.0263441,-1.0003368,-1.0155392,-1.0752212,-1.1934677,-1.404633,-1.7943629,-2.6301427,-5.3251486,81.96219,4.723713,2.483475,1.7319189,1.3720198,1.1751833,1.0652927,1.011482,1.0012659,1.0324558,1.1119127,1.2596276,1.5234181,2.0304902,3.2392526,8.8896475,-11.329287,-3.5030437,-2.122429,-1.5677459,-1.2839495,-1.1255679,-1.0392618,-1.002792,-1.0080513,-1.0561639,-1.1581223,-1.3417333,-1.674762,-2.3539038,-4.2475805,-27.367203,6.104228,2.7965903,1.862468,1.4396307,1.2131162,1.0860167,1.0202497,1.0000012,1.0208914,1.087471,1.2157483,1.4443427,1.8717277,2.8197677,6.22211,-25.199596,-4.1931543,-2.3382432,-1.6677231,-1.3379751,-1.1560041,-1.0550413,-1.0076532,-1.0030328,-1.0401927,-1.1274055,-1.2872163,-1.5737305,-2.1350112,-3.540448,-11.746287,8.649378,3.2081778,2.0192761,1.5179385,1.2566065,1.1102206,1.0316274,1.0011123,1.0119708,1.0665299,1.1774755,1.3760926,1.739665,2.5013728,4.793341,110.429504,-5.2389846,-2.6101837,-1.7860023,-1.4002954,-1.1910802,-1.0739176,-1.0149792,-1.0004234,-1.0270956,-1.1008176,-1.2397803,-1.4875199,-1.9576104,-3.0413373,-7.48925,14.895225,3.7723076,2.2106373,1.609289,1.3065429,1.1382872,1.0457683,1.0046097,1.0055673,1.0488454,1.1442131,1.3170583,1.6287524,2.252672,3.9066522,17.32747,-6.9990616,-2.9611628,-1.9270744,-1.4722768,-1.2313151,-1.0961034,-1.0248733,-1.0001931,-1.0166923,-1.0779243,-1.1984073,-1.413354,-1.8112254,-2.6707075,-5.5047984,54.242207,4.5916166,2.4488096,1.7168139,1.364056,1.1706562,1.0628562,1.010535,1.0016032,1.0341487,1.1153493,1.2657574,1.5345538,2.0533798,3.3034062,9.41342,-10.577835,-3.4305885,-2.097742,-1.5559473,-1.2774967,-1.1219404,-1.037434,-1.0023398,-1.0088791,-1.0584497,-1.1624212,-1.3493608,-1.689084,-2.385966,-4.3610296,-33.0614,5.8813367,2.7513971,1.844258,1.4303316,1.2079165,1.0831491,1.0189722,1.0000308,1.0222343,1.0903977,1.2210364,1.4538189,1.8904157,2.866958,6.470007,-21.780195,-4.0893917,-2.3075771,-1.6538568,-1.330554,-1.1518205,-1.0528326,-1.0068873,-1.0035453,-1.0420924,-1.1311361,-1.2938453,-1.5858966,-2.160719,-3.617891,-12.681079,8.20563,3.1478186,1.9972534,1.5071309,1.2506387,1.1068811,1.0300038,1.000835,1.0129808,1.0690471,1.1821262,1.3843604,1.7554351,2.5380657,4.9392385,362.47464,-5.074753,-2.5711994,-1.7695487,-1.3917329,-1.1862705,-1.0712976,-1.0139005,-1.0006245,-1.0286188,-1.1040074,-1.2454962,-1.4978348,-1.978411,-3.0968642,-7.8528576,13.620844,3.687914,2.183573,1.596644,1.299687,1.1344253,1.0437778,1.0040219,1.0062567,1.0509597,1.1482565,1.3242316,1.6420782,2.2817187,4.0018964,19.446035,-6.7066526,-2.910146,-1.9073278,-1.4623559,-1.2257941,-1.0930359,-1.0234473,-1.0000893,-1.0178884,-1.0806838,-1.2034359,-1.4223275,-1.8286506,-2.7130678,-5.699173,40.434742,4.4656897,2.4148672,1.7018926,1.3561608,1.1662526,1.0604956,1.0096384,1.0019767,1.0358713,1.1188172,1.2719369,1.5458037,2.0766442,3.370289,10.003198,-9.920237,-3.3612003,-2.073704,-1.5443856,-1.2711587,-1.1183803,-1.0356535,-1.0019279,-1.0097482,-1.0607877,-1.1667986,-1.3571298,-1.7037214,-2.4190114,-4.480888,-41.74979,5.6743665,2.7077472,1.826472,1.4212078,1.2028087,1.0803393,1.0177381,1.0000999,1.0236214,1.0934123,1.226472,1.4635732,1.9097453,2.9163575,6.7414913,-19.156157,-3.9898505,-2.2780788,-1.6404139,-1.3233368,-1.1477522,-1.0506953,-1.0061692,-1.0040925,-1.0440215,-1.1348994,-1.3005948,-1.5983163,-2.1871412,-3.698948,-13.778115,7.8054867,3.0898085,1.9757833,1.4965348,1.2447764,1.1036054,1.0284259,1.0005972,1.0140331,1.0716188,1.186861,1.3927838,1.7715644,2.575955,5.094505,-282.64297,-4.920694,-2.533461,-1.7534642,-1.3833289,-1.1815461,-1.0687327,-1.0128535,-1.0008671,-1.0302023,-1.107291,-1.2513715,-1.5084566,-1.9999483,-3.1551576,-8.258041,12.557385,3.6081166,2.1574996,1.5843774,1.2930185,1.1306705,1.0418549,1.0034796,1.0069798,1.0531244,1.1523745,1.3315365,1.65569,2.3116174,4.1020675,22.155825,-6.4379416,-2.8609688,-1.8880562,-1.452625,-1.2203707,-1.0900288,-1.0220658,-1.0000249,-1.019128,-1.0835009,-1.2085549,-1.4314728,-1.846488,-2.7569044,-5.90802,32.23144,4.3466535,2.381946,1.6872948,1.3484094,1.161885,1.0581641,1.0087744,1.0023936,1.0376576,1.1223855,1.278289,1.5573944,2.1007612,3.4393845,10.665354,-9.345262,-3.295323,-2.050515,-1.5331635,-1.264993,-1.1149205,-1.0339367,-1.0015559,-1.010659,-1.0631782,-1.1712556,-1.3650432,-1.7186834,-2.4530833,-4.607708,-56.63562,5.4816775,2.6655648,1.8090972,1.4122553,1.1977913,1.0775867,1.0165473,1.0002087,1.0250529,1.0964872,1.2320051,1.4735179,1.9295518,2.967609,7.037049,-17.097017,-3.8951912,-2.249135,-1.6271228,-1.3161796,-1.1437178,-1.0485872,-1.0054848,-1.0046853,-1.046018,-1.1387701,-1.3073999,-1.6108721,-2.2140393,-3.7830307,-15.069744,7.446187,3.0345466,1.9550472,1.4862449,1.2390177,1.1003923,1.0268936,1.0003994,1.0151278,1.0742457,1.1916815,1.4013661,1.7880645,2.6150978,5.2600646,-101.68039,-4.7758965,-2.4969125,-1.737738,-1.3750801,-1.1769056,-1.0662222,-1.0118487,-1.0011495,-1.0318316,-1.1106383,-1.2573525,-1.519291,-2.0220408,-3.2158175,-8.707675,11.640136,3.531104,2.1318784,1.572242,1.2864043,1.1269487,1.039961,1.0029699,1.0077548,1.0553291,1.1565475,1.3389394,1.6695279,2.3422527,4.2070284,25.724094,-6.1913238,-2.8137617,-1.8693333,-1.4431252,-1.2150685,-1.0870951,-1.0207347,-1.0000004,-1.0204046,-1.0863615,-1.2137406,-1.4407482,-1.8646622,-2.802294,-6.133008,26.796162,4.233962,2.3500025,1.6730111,1.3407991,1.1575958,1.0558846,1.0079517,1.0028507,1.0394914,1.1260216,1.2847561,1.5692228,2.1255302,3.5122328,11.429798,-8.82888,-3.2314954,-2.0276985,-1.5220555,-1.2588474,-1.1114756,-1.0322413,-1.0012255,-1.0116069,-1.0656099,-1.1757715,-1.3730646,-1.7339048,-2.4880557,-4.7414393,-87.78811,5.302692,2.624973,1.7922013,1.4035125,1.1928864,1.0749035,1.0154049,1.0003566,1.0265219,1.0996078,1.2376101,1.4836581,1.9498514,3.0208158,7.360014,-15.438148,-3.8050666,-2.2210042,-1.614109,-1.3091512,-1.1397569,-1.0465289,-1.0048411,-1.0053188,-1.0480638,-1.1427127,-1.3143963,-1.6238173,-2.2419703,-3.8720636,-16.646172,7.1157146,2.9808295,1.9345227,1.476006,1.2333881,1.0972567,1.0254136,1.0002418,1.0162596,1.076915,1.1965648,1.4100685,1.8048644,2.6553562,5.4360833,-62.109715,-4.640198,-2.4616685,-1.7224327,-1.3670218,-1.1723697,-1.0637773,-1.0108906,-1.0014702,-1.0335071,-1.1140503,-1.2634412,-1.5303432,-2.044709,-3.2789884,-9.209478,10.848165,3.4574444,2.1069412,1.5603527,1.279908,1.1232955,1.0381153,1.0025051,1.0085632,1.0575848,1.1607968,1.3464782,1.6836658,2.3738053,4.3176756,30.692516,-5.962059,-2.767976,-1.8509623,-1.4337602,-1.2098343,-1.0842059,-1.019441,-1.0000151,-1.0217311,-1.0892947,-1.2190449,-1.4502485,-1.8833638,-2.849086,-6.374848,22.946318,4.12763,2.319143,1.6590993,1.3333627,1.1534039,1.0536673,1.0071703,1.003348,1.0413729,1.129726,1.2913404,1.5812956,2.1509767,3.5883796,12.312815,-8.366892,-3.1702166,-2.005463,-1.5111668,-1.2528687,-1.1081284,-1.0306085,-1.0009345,-1.0125962,-1.0680948,-1.1803688,-1.3812355,-1.7494676,-2.5243187,-4.8840747,-196.29279,5.134431,2.5855112,1.7756078,1.3948902,1.1880445,1.072263,1.0142996,1.0005445,1.028043,1.1028054,1.2433435,1.4939477,1.9705596,3.0758166,7.712571,-14.079257,-3.719569,-2.1937854,-1.6014259,-1.3022487,-1.1358681,-1.04452,-1.0042381,-1.0059929,-1.0501593,-1.1467284,-1.3215208,-1.6370376,-2.270706,-3.9655488,-18.59177,6.8135877,2.9290955,1.9146914,1.4660614,1.2278572,1.0941815,1.023978,1.0001236,1.0174339,1.0796403,1.2015358,1.4189793,1.8221399,2.6971872,5.6254687,-44.650387,-4.511564,-2.4273357,-1.707389,-1.3590722,-1.1678927,-1.0613736,-1.0099695,-1.0018322,-1.0352207,-1.1175107,-1.2696096,-1.5415636,-2.0678596,-3.3445003,-9.770166,10.160609,3.3872612,2.082662,1.5487027,1.273527,1.1197102,1.036317,1.0020779,1.0094167,1.059903,1.1651444,1.3541937,1.6981835,2.4064758,4.435064,37.997356,-5.7503815,-2.7239733,-1.8331065,-1.424616,-1.2047174,-1.0813884,-1.0181968,-1.0000693,-1.0231017,-1.0922871,-1.2244446,-1.4599332,-1.9025208,-2.8978236,-6.6381445,20.052156,4.0261836,2.2890284,1.6454157,1.3260248,1.1492673,1.05149,1.0064335,1.0038829,1.0432934,1.1334817,1.2980114,1.5935589,2.1769984,3.667655,13.338845,-7.9511476,-3.1113398,-1.9837874,-1.5004919,-1.2469671,-1.1048288,-1.0290135,-1.0006819,-1.0136327,-1.070646,-1.185072,-1.3896002,-1.7654606,-2.5615735,-5.035006,853.32513,4.9774513,2.5474997,1.7594657,1.3864685,1.1833115,1.0696901,1.0132369,1.0007725,1.0296096,1.1060655,1.24918,1.5044923,1.991896,3.1332667,8.102925,-12.93561,-3.6375804,-2.1671822,-1.5889426,-1.2955023,-1.1320689,-1.0425695,-1.0036781,-1.0067043,-1.0522945,-1.1507982,-1.3287405,-1.6504749,-2.3002803,-4.063825,-21.053308,6.53632,2.8792384,1.8952432,1.4562595,1.2223973,1.0911517,1.0225797,1.0000445,1.0186571,1.0824355,1.2066207,1.4280158,1.8397361,2.7402542,5.827744,-34.891216,-4.3906116,-2.3941998,-1.6927428,-1.3513054,-1.1634959,-1.0590228,-1.00909,-1.0022343,-1.0369896,-1.1210542,-1.2759196,-1.5530677,-2.0917408,-3.4131598,-10.407275,9.552596,3.3196776,2.05913,1.5373405,1.2672896,1.1162088,1.0345743,1.0016928,1.0103074,1.0622622,1.1695497,1.3620524,1.7130224,2.4401567,4.559199,49.9439,-5.5525036,-2.681248,-1.8155788,-1.4155996,-1.1996661,-1.0786144,-1.0169897,-1.0001632,-1.0245098,-1.0953246,-1.2299143,-1.4697584,-1.9220523,-2.9481268,-6.922965,17.816587,3.9302115,2.2597742,1.63202,1.3188193,1.1452056,1.0493633,1.0057338,1.0044607,1.0452718,1.137326,1.3048368,1.6061388,2.2038774,3.7510765,14.558493,-7.5767865,-3.054998,-1.9627539,-1.4900756,-1.2411975,-1.1016079,-1.0274715,-1.0004699,-1.0147114,-1.0732521,-1.18986,-1.3981223,-1.7818202,-2.6002383,-5.196582,133.89256,4.8292737,2.5105104,1.743606,1.3781618,1.1786397,1.0671592,1.0122213,1.0010388,1.0312139,1.1093729,1.2550924,1.5151945,2.0136728,3.192737,8.53305,-11.964238,-3.5592663,-2.1413004,-1.5767143,-1.2888438,-1.1283212,-1.0406579,-1.0031557,-1.0074601,-1.0544907,-1.1549629,-1.3361282,-1.664268,-2.330579,-4.166751,-24.249296,6.2821646,2.8313897,1.8763505,1.4466912,1.2170595,1.088196,1.0212257,1.0000049,1.0199237,1.0852885,1.211797,1.4372704,1.857838,2.7850509,6.0464554,-28.608892,-4.275596,-2.3618937,-1.6783422,-1.3436425,-1.1591984,-1.056735,-1.008256,-1.0026742,-1.0387967,-1.1246473,-1.2823123,-1.5647498,-2.1162653,-3.4848385,-11.133744,9.013578,3.2548647,2.0360928,1.5261499,1.2611326,1.1127561,1.0328698,1.0013456,1.011244,1.0646856,1.1740568,1.3700184,1.7281177,2.4747221,4.6900187,72.69011,-5.368861,-2.640142,-1.7985357,-1.4067945,-1.1947043,-1.0758971,-1.0158257,-1.0002968,-1.0259691,-1.0984375,-1.2355093,-1.4798245,-1.9421645,-3.000586,-7.235203,16.02224,3.8384213,2.2314816,1.6189672,1.3117774,1.1412367,1.0472965,1.0050782,1.0050759,1.0472893,1.1412227,1.3117864,1.6189841,2.2315178,3.838537,16.024324,-7.234781,-3.0005171,-1.9421383,-1.4798114,-1.235502,-1.0984335,-1.0259672,-1.0002967,-1.0158273,-1.0759006,-1.1947107,-1.4067633,-1.7984756,-2.6399975,-5.3682275,72.80855,4.6905,2.4746766,1.7280979,1.370008,1.1740509,1.0646824,1.0112429,1.001346,1.032872,1.1127605,1.2611405,1.5261642,2.036122,3.2549467,9.0142355,-11.132739,-3.4847438,-2.116233,-1.5647919,-1.2823353,-1.1246603,-1.0388032,-1.0026759,-1.0082531,-1.056738,-1.159204,-1.3436522,-1.6783606,-2.361935,-4.2757406,-28.61555,6.0461617,2.784992,1.8578142,1.4372582,1.2117902,1.0852848,1.019922,1.000005,1.0212275,1.0881855,1.2170405,1.4466572,1.8762839,2.8312218,6.2812924,-24.244514,-4.1666136,-2.3305392,-1.66425,-1.3361186,-1.1549574,-1.0544878,-1.007459,-1.0031564,-1.0406603,-1.1283259,-1.2888523,-1.57673,-2.1413336,-3.5593653,-11.9654,8.534669,3.1929538,2.0137515,1.5152332,1.2551137,1.1093849,1.0312119,1.0010383,1.0122226,1.0671624,1.1786456,1.3781724,1.7436264,2.5105574,4.829459,134.0386,-5.196366,-2.6001875,-1.7817988,-1.3981112,-1.1898538,-1.0732486,-1.01471,-1.0004692,-1.0274662,-1.1015965,-1.2411771,-1.4900389,-1.9626795,-3.0550697,-7.5772495,14.556771,3.750966,2.2038422,1.6061226,1.3048278,1.137321,1.0452691,1.00446,1.0057348,1.049366,1.1452109,1.3188286,1.6320372,2.2598116,3.9298768,17.809498,-6.9240265,-2.9483097,-1.9221228,-1.4697938,-1.2299073,-1.0953207,-1.0245079,-1.0001631,-1.0169913,-1.0786179,-1.1996727,-1.4156111,-1.8156011,-2.681302,-5.5527506,49.923615,4.559034,2.4401126,1.7130029,1.3620422,1.1695656,1.0622706,1.0103106,1.0016915,1.0345682,1.1161964,1.2672975,1.5373552,2.0591602,3.319763,9.553334,-10.406398,-3.413069,-2.0917096,-1.5530527,-1.2759113,-1.1210495,-1.0369872,-1.0022337,-1.0090911,-1.0590258,-1.1635015,-1.3512778,-1.6926911,-2.3940833,-4.3901916,-34.864002,5.828493,2.7401972,1.839713,1.428004,1.206614,1.0824319,1.0186554,1.0000446,1.0225815,1.0911556,1.2224042,1.4562721,1.8952681,2.8793018,6.5366635,-21.049707,-4.0636945,-2.3002415,-1.6505233,-1.3287665,-1.150813,-1.0523022,-1.006707,-1.0036762,-1.0425719,-1.1320738,-1.295511,-1.5889585,-2.1672163,-3.6376839,-12.936968,8.102395,3.1331909,1.991868,1.5044785,1.2491724,1.1060613,1.0296075,1.0007721,1.0132382,1.069681,1.1832947,1.3864386,1.7594087,2.547366,4.976908,859.2919,-5.034804,-2.5615244,-1.7654397,-1.3895892,-1.1850657,-1.0706427,-1.0136313,-1.0006821,-1.0290155,-1.104833,-1.2469746,-1.5005056,-1.9838152,-3.1114144,-7.9516582,13.342816,3.6679444,2.1770926,1.5936031,1.2980355,1.1334952,1.0432909,1.0038822,1.0064344,1.0514928,1.1492727,1.3260342,1.6454331,2.2890666,4.0263114,20.055426,-6.6377897,-2.8977592,-1.9024957,-1.4599205,-1.2244375,-1.0922831,-1.0230999,-1.0000695,-1.0181924,-1.0813783,-1.2046993,-1.4245836,-1.8330435,-2.7240295,-5.7506456,37.98561,4.434908,2.406433,1.6981646,1.3541837,1.1651387,1.0599,1.0094156,1.0020785,1.0363194,1.1197147,1.2735351,1.5487176,2.082693,3.387016,10.158311,-9.772292,-3.344739,-2.0679436,-1.5416042,-1.2696015,-1.1175061,-1.0352185,-1.0018318,-1.0099707,-1.0613767,-1.1678985,-1.3590825,-1.7074082,-2.4273791,-4.5117254,-44.666615,5.6252155,2.697132,1.8221173,1.4189676,1.2015537,1.07965,1.0174382,1.0001233,1.0239729,1.0941707,1.2278643,1.4660741,1.9147168,2.9291608,6.813961,-18.588963,-3.965425,-2.2706683,-1.6370203,-1.3215115,-1.1467232,-1.0501566,-1.0059919,-1.0042388,-1.0445226,-1.1358731,-1.3022575,-1.6013811,-2.1936893,-3.719271,-14.074832,7.7138915,3.076017,1.9705323,1.4939343,1.2433361,1.1028012,1.028041,1.0005443,1.0143011,1.0722663,1.1880507,1.3949012,1.775629,2.585561,5.134641,-195.97974,-4.883885,-2.5242712,-1.7495238,-1.3812649,-1.1803854,-1.0681039,-1.0126,-1.0009335,-1.0306106,-1.1081327,-1.2528764,-1.5111809,-2.0054913,-3.1702943,-8.367457,12.311584,3.588279,2.1509433,1.5812799,1.2913318,1.1297213,1.0413705,1.0033473,1.0071713,1.0536594,1.1533891,1.3333364,1.6590503,2.3190343,4.1272607,22.950598,-6.3745213,-2.849024,-1.8833395,-1.4502361,-1.219038,-1.0892909,-1.0217294,-1.0000151,-1.0194427,-1.0842097,-1.2098411,-1.4337722,-1.8509858,-2.7680342,-5.9623446,30.684856,4.3180814,2.3739195,1.6837168,1.3465055,1.160812,1.0575929,1.0085621,1.0025057,1.0381176,1.1233002,1.2799162,1.560368,2.106973,3.4575374,10.849119,-9.208792,-3.278905,-2.0446792,-1.5303288,-1.2634332,-1.1140459,-1.0335048,-1.0014714,-1.0108873,-1.0637686,-1.1723537,-1.3669932,-1.7223786,-2.4617136,-4.640369,-62.141117,5.4358473,2.655303,1.8048422,1.4100571,1.1965585,1.0769116,1.0162581,1.000242,1.0254155,1.0972606,1.2333952,1.476019,1.9345489,2.9806423,7.1145926,-16.652365,-3.8723876,-2.242071,-1.6238637,-1.3143872,-1.1427076,-1.0480611,-1.0053179,-1.0048419,-1.0465316,-1.1397619,-1.3091601,-1.6141257,-2.2210402,-3.80518,-15.4400835,7.359577,3.0207458,1.9498247,1.4836448,1.2376304,1.099619,1.0265272,1.0003572,1.015401,1.074894,1.1928926,1.4035237,1.7922231,2.6250248,5.3029165,-87.72545,-4.7412605,-2.4880097,-1.7338847,-1.3730541,-1.1757655,-1.0656068,-1.0116056,-1.001226,-1.0322435,-1.1114799,-1.2588552,-1.5220164,-2.0276184,-3.2312732,-8.8271475,11.432712,3.5124974,2.1254978,1.5692074,1.2847476,1.1260169,1.039489,1.00285,1.0079527,1.0558875,1.1576012,1.3408087,1.6730294,2.350043,4.234104,26.802002,-6.1327057,-2.8022342,-1.8647279,-1.4407816,-1.2137592,-1.0863718,-1.0204092,-1.0000004,-1.0207365,-1.087099,-1.2150753,-1.4431375,-1.8693572,-2.8138218,-6.1916313,25.718714,4.206888,2.3422122,1.6695098,1.3389297,1.1565421,1.0553262,1.0077537,1.0029705,1.0399544,1.1269356,1.286381,1.5721995,2.1317885,3.5308363,11.641234,-8.707063,-3.2157378,-2.022012,-1.5192769,-1.2573446,-1.110634,-1.0318294,-1.0011492,-1.01185,-1.0662254,-1.1769116,-1.3750906,-1.737758,-2.496959,-4.776078,-101.76458,5.259844,2.6150463,1.7880429,1.4013549,1.1916752,1.0742422,1.0151209,1.0004004,1.0269029,1.1004119,1.2390528,1.4862084,1.9549736,3.034352,7.4449577,-15.074817,-3.7833397,-2.214137,-1.6109177,-1.3074244,-1.1387839,-1.0460252,-1.0046874,-1.0054824,-1.0485798,-1.1437036,-1.3161545,-1.6270761,-2.2491717,-3.8953106,-17.099392,7.0366497,2.9675412,1.9295259,1.473505,1.231998,1.0964832,1.025051,1.0002086,1.0165488,1.0775902,1.1977977,1.4122669,1.8091193,2.6656182,5.4819183,-56.609535,-4.6075397,-2.4530385,-1.7186638,-1.364994,-1.171228,-1.0631634,-1.0106533,-1.0015581,-1.0339305,-1.1149081,-1.264971,-1.5331236,-2.050433,-3.2950914,-9.343318,10.667889,3.4396377,2.100848,1.557436,1.2783118,1.1223984,1.037664,1.0023952,1.0087713,1.0581559,1.1618696,1.3484193,1.6873134,2.3819878,4.3468037,32.23989,-5.90774,-2.756847,-1.8464649,-1.4314609,-1.2085483,-1.0834972,-1.0191263,-1.000025,-1.0220675,-1.0900326,-1.2203776,-1.4526374,-1.8880806,-2.8610313,-6.4382744,22.151836,4.1019344,2.3114312,1.6556056,1.3314912,1.1523489,1.053111,1.0069826,1.0034778,1.041848,1.1306573,1.2929947,1.5843338,2.1574073,3.6078367,12.553868,-8.259556,-3.155369,-2.000026,-1.5084947,-1.2513925,-1.1073027,-1.030208,-1.000868,-1.0128548,-1.068736,-1.1815522,-1.3833398,-1.7534847,-2.5335093,-4.920887,-283.29453,5.0942974,2.575905,1.7715434,1.3927728,1.186855,1.0716155,1.0140316,1.0005975,1.028428,1.1036096,1.244784,1.4965484,1.9758108,3.0898821,7.805979,-13.7708,-3.6984386,-2.1869767,-1.5982393,-1.300553,-1.134913,-1.0440285,-1.0040945,-1.0061667,-1.0506878,-1.1477376,-1.3233112,-1.6403661,-2.2779744,-3.9895058,-19.147959,6.7424974,2.9165363,1.909815,1.4636081,1.2264915,1.0934231,1.0236195,1.0000998,1.0177397,1.0803429,1.2028153,1.4212195,1.8264949,2.7078025,5.6746244,-41.735615,-4.4807286,-2.418968,-1.7037022,-1.3571197,-1.1667929,-1.0607846,-1.009747,-1.0019294,-1.03566,-1.1183934,-1.2711821,-1.5444282,-2.073792,-3.3614528,-9.922528,10.00087,3.3700354,2.0767865,1.5458446,1.2719592,1.1188298,1.0358776,1.001978,1.0096352,1.0604872,1.1662369,1.3561329,1.7018403,2.4147484,4.465552,40.423107,-5.6994004,-2.7131164,-1.8286705,-1.4223378,-1.2034416,-1.080687,-1.0178899,-1.0000892,-1.0234457,-1.0930399,-1.2258012,-1.4623686,-1.9073532,-2.9102106,-6.7070146,19.442963,4.0017705,2.2816808,1.6420608,1.3242222,1.1482413,1.0509517,1.0062542,1.004024,1.0437852,1.1344396,1.2997123,1.5966905,2.1836722,3.6882198,13.6251745,-7.854227,-3.0970676,-1.9784865,-1.4978721,-1.2455169,-1.1040188,-1.0286243,-1.0006253,-1.0138967,-1.0712883,-1.1862535,-1.3917233,-1.7695302,-2.571156,-5.074573,363.41272,4.939409,2.5381079,1.7554531,1.3843699,1.1821314,1.06905,1.012982,1.0008352,1.0300059,1.1068854,1.2506464,1.5071446,1.9972814,3.1478949,8.206174,-12.679775,-3.6177886,-2.1606853,-1.5858508,-1.2938205,-1.131122,-1.0420853,-1.0035433,-1.00689,-1.0528407,-1.151836,-1.3305813,-1.6539077,-2.3076894,-4.089029,-21.769594,6.4709325,2.8671305,1.8904836,1.4538534,1.2210557,1.0904083,1.0222392,1.0000309,1.0189677,1.0831459,1.2079107,1.4303211,1.8442377,2.751347,5.881094,-33.069183,-4.3611617,-2.3860028,-1.6891004,-1.3493696,-1.1624156,-1.0584468,-1.0088779,-1.0023404,-1.0374364,-1.121945,-1.2775049,-1.5559624,-2.0977736,-3.43068,-10.578741,9.411359,3.303163,2.0532937,1.5345119,1.2657346,1.1153363,1.0341424,1.0016019,1.0105385,1.0628651,1.1706729,1.3640083,1.7167602,2.448687,4.591156,54.176453,-5.5054655,-2.6708555,-1.8112866,-1.4133856,-1.198425,-1.0779339,-1.0166965,-1.000193,-1.0248717,-1.0960999,-1.2313088,-1.4722655,-1.9270519,-2.9611042,-6.9987164,17.329605,3.9067574,2.2527044,1.6287353,1.3170491,1.1442078,1.0488427,1.0055664,1.0046105,1.0457709,1.1382922,1.3065518,1.6093055,2.2106729,3.7726288,14.900406,-7.48795,-3.041133,-1.9575331,-1.4874816,-1.239759,-1.1008056,-1.02709,-1.0004227,-1.0149833,-1.0739082,-1.191063,-1.4002646,-1.7859429,-2.610043,-5.238382,110.703094,4.793844,2.501501,1.7397206,1.3761216,1.1774806,1.0665327,1.011972,1.0011121,1.0316255,1.1102167,1.2565997,1.5179262,2.0192509,3.2081082,8.648849,-11.745169,-3.54035,-2.1349785,-1.5737147,-1.2872078,-1.1274006,-1.0401903,-1.0030322,-1.0076543,-1.0550443,-1.1560096,-1.3379849,-1.6677752,-2.3383586,-4.193554,-25.21445,6.221216,2.8195937,1.8716583,1.4443074,1.2157286,1.0874602,1.0208993,1.0000013,1.0202451,1.0860064,1.2130975,1.4395974,1.8624027,2.7964268,6.103406,-27.383965,-4.247973,-2.354016,-1.674778,-1.3417418,-1.1581272,-1.0561664,-1.0080522,-1.0027914,-1.0392598,-1.1255637,-1.2839421,-1.5677325,-2.1224005,-3.5031395,-11.330326,8.8890085,3.2391713,2.0304608,1.5234039,1.2596198,1.1119083,1.0324535,1.0012655,1.0114833,1.0653019,1.1752003,1.37205,1.7319763,2.4836073,4.724223,82.119644,-5.324497,-2.629993,-1.7943003,-1.4046006,-1.1934851,-1.0752306,-1.0155432,-1.0003362,-1.0263387,-1.0992205,-1.236915,-1.4823562,-1.9472392,-3.01393,-7.317247,15.6311865,3.8160841,2.224474,1.6157193,1.310022,1.1402476,1.0467832,1.0049193,1.0052373,1.0478055,1.1422164,1.3135158,1.6222174,2.2385073,3.8609283,16.435596,-7.154583,-2.9872987,-1.9370947,-1.4772921,-1.2341026,-1.0976543,-1.0256004,-1.0002594,-1.0161152,-1.0765771,-1.1959473,-1.4089675,-1.802735,-2.6502306,-5.4133396,65.29847,4.6567917,2.466031,1.7242978,1.3680053,1.1729234,1.0640754,1.0110062,1.0014286,1.0332912,1.1136123,1.26266,1.5289239,2.0417905,3.2709572,9.143656,-10.941103,-3.4664671,-2.1100187,-1.5618242,-1.2807128,-1.123748,-1.0383431,-1.0025612,-1.0084594,-1.0573044,-1.1602697,-1.3455431,-1.6819097,-2.3698716,-4.3037376,-29.955904,5.9902844,2.7737157,1.8532767,1.4349424,1.210483,1.0845636,1.0196002,1.0000112,1.021563,1.0889251,1.2183772,1.4490522,1.881004,2.8431225,6.343445,-23.367561,-4.140417,-2.3228915,-1.6607953,-1.3342704,-1.1539156,-1.0539374,-1.0072675,-1.0032824,-1.0411308,-1.1292506,-1.2904956,-1.5797744,-2.1477609,-3.578683,-12.195132,8.421907,3.177735,2.0082088,1.512515,1.2536131,1.108545,1.030811,1.0009682,1.0124723,1.0677862,1.1797986,1.380222,1.7475338,2.5196383,4.8654313,169.6059,-5.155244,-2.590463,-1.7776595,-1.3959581,-1.1886444,-1.0725896,-1.0144354,-1.0005189,-1.0278506,-1.1024027,-1.2426219,-1.4926455,-1.9679326,-3.0689342,-7.6673603,14.233392,3.7298737,2.197094,1.6029724,1.3031205,1.1363592,1.044773,1.0043125,1.0059048,1.0498948,1.146223,1.3206241,1.6353713,2.2670724,3.95362,18.324272,-6.8498926,-2.9354513,-1.9171536,-1.4672987,-1.2285458,-1.0945566,-1.0241522,-1.000136,-1.0172871,-1.0793018,-1.2009194,-1.4178355,-1.8199182,-2.6917827,-5.6006174,46.307415,4.5272264,2.4315653,1.7092496,1.3600569,1.1684475,1.0616709,1.0100822,1.0017848,1.0350031,1.1170729,1.2688293,1.5401708,2.0649781,3.3362908,9.697495,-10.240454,-3.395736,-2.0857172,-1.5501726,-1.274333,-1.1201628,-1.0365433,-1.0021291,-1.0093079,-1.0596106,-1.1645972,-1.3532225,-1.6963533,-2.4023418,-4.4200473,-36.89535,5.776103,2.7294123,1.8352813,1.4257318,1.2053422,1.081732,1.0183475,1.0000606,1.0229248,1.0919029,1.2237518,1.4586898,1.9000564,2.89164,6.604067,-20.373003,-4.03857,-2.292741,-1.6471086,-1.3269339,-1.1497798,-1.0517591,-1.0065237,-1.0038135,-1.0430545,-1.1330159,-1.2971841,-1.5920361,-2.1737578,-3.6577039,-13.203429,8.001746,3.1187062,1.9865165,1.5018392,1.2477125,1.1052375,1.0292102,1.0007112,1.0135009,1.0703244,1.18448,1.388547,1.7634437,2.5568328,5.0155454,-2593.7473,-4.9962378,-2.5521111,-1.7614324,-1.3874964,-1.1838893,-1.0700037,-1.0133699,-1.0007412,-1.0294076,-1.105647,-1.2484312,-1.503164,-1.989202,-3.1259687,-8.052015,13.068144,3.647613,2.1704645,1.5904874,1.2963423,1.1325418,1.0428116,1.0037448,1.0066146,1.0520291,1.1502935,1.327845,1.648806,2.2964675,4.0510354,20.704296,-6.570342,-2.8854847,-1.8976461,-1.4574732,-1.2230737,-1.0915269,-1.0227519,-1.0000522,-1.018502,-1.0820833,-1.2059807,-1.4268725,-1.8375053,-2.7348747,-5.8020597,35.855488,4.4051347,2.3982234,1.694528,1.3522534,1.1640512,1.0593191,1.0091996,1.0021809,1.0367618,1.120608,1.2751254,1.5516183,2.088724,3.4044247,10.323188,-9.624496,-3.3279626,-2.0620494,-1.538754,-1.2680662,-1.116636,-1.0347862,-1.0017381,-1.0101956,-1.061969,-1.1690034,-1.3610439,-1.7111152,-2.4358113,-4.5430017,-48.02174,5.5764546,2.6865041,1.8177454,1.4167161,1.2002921,1.0789577,1.0171381,1.0001494,1.0243306,1.0949402,1.2292227,1.4685392,1.9196231,2.9418366,6.886591,-18.064373,-3.941765,-2.2634518,-1.6337097,-1.3197293,-1.1457186,-1.0496312,-1.005819,-1.0043863,-1.045022,-1.136842,-1.3039776,-1.6045536,-2.2004797,-3.7404442,-14.394103,7.6213627,3.0618815,1.9653392,1.491359,1.2419089,1.102001,1.0276588,1.0004939,1.0145718,1.0729172,1.1892457,1.3970389,1.7797369,2.5952933,5.175628,-149.819,-4.847284,-2.5150654,-1.7455672,-1.3791907,-1.1792184,-1.0674722,-1.0123453,-1.0010035,-1.031012,-1.1089585,-1.254352,-1.5138662,-2.0109632,-3.185291,-8.477656,12.079688,3.5690403,2.1445253,1.5782423,1.2896768,1.1287899,1.0408962,1.0032194,1.0073636,1.0542136,1.1544387,1.3351983,1.6625292,2.3267655,4.153669,23.800257,-6.312654,-2.837243,-1.8786738,-1.4478587,-1.2177112,-1.0885565,-1.0213957,-1.0000077,-1.0197616,-1.0849255,-1.2111392,-1.4360937,-1.8555318,-2.7793157,-6.0182366,29.266897,4.2896194,2.3658752,1.6801234,1.3445824,1.1597283,1.0570165,1.0083574,1.0026174,1.0385696,1.1242015,1.2815195,1.5632995,2.1131067,3.475539,11.035655,-9.078149,-3.26289,-2.0389647,-1.5275486,-1.2619029,-1.1131836,-1.0330802,-1.0013868,-1.0111248,-1.0643799,-1.1734895,-1.3690205,-1.7262237,-2.4703684,-4.673345,-68.796295,5.3907895,2.6451266,1.8006117,1.4078691,1.1953311,1.0762398,1.0159701,1.0002779,1.0257827,1.0980417,1.2347984,1.4785568,1.9396257,2.9939268,7.1946645,-16.22628,-3.8496404,-2.234954,-1.6205745,-1.3126456,-1.141726,-1.0475507,-1.0051575,-1.0049981,-1.0470383,-1.1407393,-1.3108947,-1.6173338,-2.2279897,-3.8272767,-15.823403,7.276178,3.007273,1.9447094,1.4810823,1.2362077,1.0988265,1.0261526,1.0003161,1.0156863,1.0755684,1.1941032,1.4056808,1.796385,2.634985,5.346485,-77.138855,-4.7071347,-2.479176,-1.730053,-1.3710375,-1.1746249,-1.0649917,-1.0113639,-1.0013051,-1.0326604,-1.1123339,-1.2603793,-1.5247823,-2.033287,-3.2470388,-8.951181,11.229702,3.493827,2.1193118,1.5662605,1.2831378,1.125107,1.0390289,1.0027328,1.0081533,1.056449,1.1586598,1.342696,1.6765668,2.3579295,4.261676,27.980234,-6.0746474,-2.7906969,-1.860105,-1.4384264,-1.2124431,-1.0856452,-1.0200816,-1.0000029,-1.0210631,-1.0878224,-1.2163839,-1.445481,-1.8739904,-2.825452,-6.251402,24.724623,4.1801686,2.3344417,1.6660103,1.3370597,1.155488,1.0547683,1.0075574,1.003094,1.040425,1.1278628,1.2880292,1.5752205,2.1381814,3.5499232,11.855327,-8.591377,-3.2005122,-2.016497,-1.5165647,-1.2558486,-1.1097963,-1.0314204,-1.0010753,-1.0120969,-1.0668472,-1.1780624,-1.3771359,-1.7416517,-2.5059764,-4.8115845,-121.25832,5.217288,2.6051052,1.783868,1.3991866,1.1904519,1.0735748,1.0148463,1.0004457,1.0272776,1.1012045,1.2404742,1.4887712,1.9601276,3.0480175,7.5319037,-14.726581,-3.761765,-2.2072847,-1.6077274,-1.3056972,-1.137806,-1.0455196,-1.004535,-1.0056503,-1.049104,-1.1447088,-1.3179464,-1.6304001,-2.2562516,-3.918282,-17.566269,6.960803,2.9546294,1.9245595,1.471016,1.230614,1.0957135,1.0246894,1.0001777,1.0168421,1.0782721,1.1990422,1.4144863,1.8134408,2.6760678,5.529005,-51.963146,-4.575037,-2.44435,-1.7148608,-1.3630241,-1.1701187,-1.0625675,-1.0104243,-1.0016469,-1.0343571,-1.1157701,-1.2665076,-1.5359181,-2.0562222,-3.3114414,-9.481812,10.492695,3.4219363,2.094766,1.5545057,1.2767073,1.1214968,1.0372114,1.0022868,1.0089842,1.0587387,1.1629633,1.3503226,1.6908933,2.3900354,4.375769,33.951664,-5.854416,-2.7458136,-1.8419937,-1.4291724,-1.2072617,-1.0827883,-1.0188128,-1.0000373,-1.0224084,-1.0907815,-1.2217293,-1.4550613,-1.8928723,-2.8732023,-6.50363,21.400103,4.076198,2.303959,1.6522132,1.3296684,1.1513214,1.0525697,1.0067973,1.00361,1.042326,1.131595,1.2946607,1.5874027,2.1639135,3.6276112,12.806452,-8.154203,-3.1405604,-1.9945705,-1.5058099,-1.2499086,-1.1064708,-1.0298053,-1.0008032,-1.0131098,-1.069365,-1.1827153,-1.3854082,-1.7574377,-2.5427732,-4.95827,-508.81503,5.054704,2.5663533,1.7674918,1.3906549,1.1856648,1.0709667,1.0137644,1.0006533,1.0288196,1.1044254,1.2462449,1.4991935,1.9811596,3.104258,7.903113,-13.482512,-3.6780534,-2.1803608,-1.5951372,-1.2988647,-1.1339623,-1.04354,-1.0039531,-1.0063435,-1.0512205,-1.1487564,-1.3251184,-1.6437283,-2.2853491,-4.0139427,-19.742954,6.67222,2.9039707,1.904909,1.461137,1.2251153,1.0926574,1.0232725,1.000079,1.0180415,1.081034,1.2040728,1.4234703,1.8308753,2.7185087,5.724784,-39.172314,-4.4501753,-2.410623,-1.7000177,-1.3551619,-1.1656898,-1.0601946,-1.0095251,-1.002028,-1.0360981,-1.1192739,-1.2727501,-1.5472932,-2.079735,-3.378503,-10.079358,9.846466,3.353033,2.0708344,1.5430006,1.2703985,1.1179514,1.03544,1.0018804,1.0098574,1.0610774,1.1673423,1.3580952,1.7055436,2.4231653,4.4961724,43.151386,-5.64969,-2.7024302,-1.8242922,-1.4200813,-1.2021776,-1.0799927,-1.0175865,-1.0001115,-1.0237993,-1.0937964,-1.2271638,-1.4648218,-1.9122266,-2.9227424,-6.777692,18.867025,3.9775443,2.2743325,1.638699,1.3224103,1.1472298,1.0504217,1.0060786,1.0041667,1.0442764,1.1353971,1.3014126,1.5998234,2.190376,3.708976,13.923365,-7.7596593,-3.082933,-1.9732058,-1.4952588,-1.2440697,-1.1032088,-1.028236,-1.0005709,-1.0141654,-1.0719389,-1.1874492,-1.3938358,-1.7735833,-2.5807233,-5.114486,231.47893,4.902135,2.5288363,1.7514822,1.3822861,1.1809596,1.0684141,1.0127249,1.0009005,1.0304055,1.1077112,1.2521228,1.5098199,2.0027277,3.1627405,8.312762,-12.432129,-3.598054,-2.1541774,-1.5828049,-1.2921604,-1.1301876,-1.0416077,-1.0034118,-1.0070775,-1.0533875,-1.1528747,-1.3324262,-1.6573507,-2.3152902,-4.1145573,-22.53736,6.4067783,2.8551016,1.8857354,1.4514499,1.2197136,1.089664,1.0218989,1.0000198,1.0192837,1.0838529,1.209194,1.4326179,1.848733,2.762469,5.9351134,-31.435614,-4.332219,-2.3778875,-1.6854867,-1.347445,-1.1613402,-1.057874,-1.0086682,-1.0024493,-1.0378877,-1.1228433,-1.2791053,-1.5588894,-2.103883,-3.4485197,-10.757518,9.275565,3.2869775,2.0475442,1.5317177,1.2641976,1.1144732,1.0337154,1.001514,1.0107713,1.06347,1.1717998,1.3660096,1.7205186,2.457294,4.623656,59.206337,-5.459063,-2.6604998,-1.8069984,-1.4111687,-1.1971804,-1.0772512,-1.0164033,-1.000225,-1.0252334,-1.0968728,-1.2326992,-1.4747697,-1.9320548,-2.974148,-7.075877,16.869661,3.8836331,2.245555,1.6254679,1.3152859,1.1432129,1.0483239,1.0054008,1.0047635,1.0462755,1.1392689,1.3082861,1.6125138,2.2175744,3.7942274,15.255482,-7.4018636,-3.0274997,-1.9523796,-1.4849143,-1.2383338,-1.1000102,-1.0267122,-1.0003781,-1.015263,-1.0745673,-1.1922722,-1.4024196,-1.7900996,-2.6199586,-5.281056,94.292694,4.7587414,2.4925027,1.735827,1.3740737,1.1763386,1.0659155,1.0117272,1.0011873,1.0320374,1.1110598,1.2581064,1.5206608,2.0248463,3.2235987,8.767674,-11.53413,-3.5216362,-2.1286912,-1.5707241,-1.2855746,-1.126481,-1.0397236,-1.0029105,-1.0078522,-1.055605,-1.1570693,-1.3398668,-1.6712676,-2.3461287,-4.2205024,-26.252134,6.161812,2.8079636,1.8670143,1.4419435,1.2144072,1.0867292,1.0205696,1.0],"x":[-804.24774,-804.04663,-803.8455,-803.6444,-803.4433,-803.2422,-803.041,-802.8399,-802.6388,-802.4377,-802.2366,-802.03546,-801.83435,-801.63324,-801.4321,-801.231,-801.0299,-800.8288,-800.6277,-800.4266,-800.22546,-800.02435,-799.82324,-799.62213,-799.421,-799.2199,-799.0188,-798.8177,-798.6166,-798.41547,-798.21436,-798.01324,-797.81213,-797.611,-797.4099,-797.2088,-797.0077,-796.8066,-796.60547,-796.40436,-796.20325,-796.00214,-795.801,-795.5999,-795.3988,-795.1977,-794.9966,-794.7955,-794.59436,-794.39325,-794.19214,-793.99097,-793.78986,-793.58875,-793.38763,-793.1865,-792.9854,-792.7843,-792.5832,-792.3821,-792.18097,-791.97986,-791.77875,-791.57764,-791.3765,-791.1754,-790.9743,-790.7732,-790.5721,-790.371,-790.16986,-789.96875,-789.76764,-789.5665,-789.3654,-789.1643,-788.9632,-788.7621,-788.561,-788.35986,-788.15875,-787.95764,-787.75653,-787.5554,-787.3543,-787.1532,-786.9521,-786.751,-786.54987,-786.34875,-786.14764,-785.94653,-785.7454,-785.5443,-785.3432,-785.1421,-784.9409,-784.7398,-784.5387,-784.3376,-784.1365,-783.93536,-783.73425,-783.53314,-783.33203,-783.1309,-782.9298,-782.7287,-782.5276,-782.3265,-782.12537,-781.92426,-781.72314,-781.52203,-781.3209,-781.1198,-780.9187,-780.7176,-780.5165,-780.31537,-780.11426,-779.91315,-779.71204,-779.5109,-779.3098,-779.1087,-778.9076,-778.7065,-778.5054,-778.30426,-778.10315,-777.90204,-777.7009,-777.4998,-777.2987,-777.0976,-776.8965,-776.6954,-776.49426,-776.29315,-776.092,-775.89087,-775.68976,-775.48865,-775.28754,-775.0864,-774.8853,-774.6842,-774.4831,-774.282,-774.0809,-773.87976,-773.67865,-773.47754,-773.2764,-773.0753,-772.8742,-772.6731,-772.472,-772.2709,-772.06976,-771.86865,-771.66754,-771.46643,-771.2653,-771.0642,-770.8631,-770.662,-770.4609,-770.25977,-770.05865,-769.85754,-769.65643,-769.4553,-769.2542,-769.0531,-768.852,-768.6509,-768.44977,-768.24866,-768.04755,-767.84644,-767.6453,-767.4442,-767.2431,-767.04193,-766.8408,-766.6397,-766.4386,-766.2375,-766.0364,-765.83527,-765.63416,-765.43304,-765.23193,-765.0308,-764.8297,-764.6286,-764.4275,-764.2264,-764.02527,-763.82416,-763.62305,-763.42194,-763.2208,-763.0197,-762.8186,-762.6175,-762.4164,-762.2153,-762.01416,-761.81305,-761.61194,-761.4108,-761.2097,-761.0086,-760.8075,-760.6064,-760.4053,-760.20416,-760.00305,-759.80194,-759.6008,-759.3997,-759.1986,-758.9975,-758.7964,-758.5953,-758.39417,-758.19305,-757.9919,-757.7908,-757.58966,-757.38855,-757.18744,-756.9863,-756.7852,-756.5841,-756.383,-756.1819,-755.9808,-755.77966,-755.57855,-755.37744,-755.17633,-754.9752,-754.7741,-754.573,-754.3719,-754.1708,-753.96967,-753.76855,-753.56744,-753.36633,-753.1652,-752.9641,-752.763,-752.5619,-752.3608,-752.15967,-751.95856,-751.75745,-751.55634,-751.3552,-751.1541,-750.953,-750.7519,-750.5508,-750.3497,-750.14856,-749.94745,-749.74634,-749.5452,-749.3441,-749.14294,-748.94183,-748.7407,-748.5396,-748.3385,-748.1374,-747.9363,-747.73517,-747.53406,-747.33295,-747.13184,-746.9307,-746.7296,-746.5285,-746.3274,-746.1263,-745.9252,-745.72406,-745.52295,-745.32184,-745.1207,-744.9196,-744.7185,-744.5174,-744.3163,-744.1152,-743.91406,-743.71295,-743.51184,-743.3107,-743.1096,-742.9085,-742.7074,-742.5063,-742.3052,-742.10406,-741.90295,-741.70184,-741.50073,-741.2996,-741.0985,-740.8974,-740.6963,-740.4952,-740.29407,-740.0929,-739.8918,-739.6907,-739.48956,-739.28845,-739.08734,-738.8862,-738.6851,-738.484,-738.2829,-738.0818,-737.8807,-737.67957,-737.47845,-737.27734,-737.07623,-736.8751,-736.674,-736.4729,-736.2718,-736.0707,-735.86957,-735.66846,-735.46735,-735.26624,-735.0651,-734.864,-734.6629,-734.4618,-734.2607,-734.0596,-733.85846,-733.65735,-733.45624,-733.2551,-733.054,-732.8529,-732.6518,-732.4507,-732.2496,-732.04846,-731.84735,-731.64624,-731.4451,-731.24396,-731.04285,-730.84174,-730.6406,-730.4395,-730.2384,-730.0373,-729.8362,-729.6351,-729.43396,-729.23285,-729.03174,-728.8306,-728.6295,-728.4284,-728.2273,-728.0262,-727.8251,-727.62396,-727.42285,-727.22174,-727.0206,-726.8195,-726.6184,-726.4173,-726.2162,-726.0151,-725.81396,-725.61285,-725.41174,-725.21063,-725.0095,-724.8084,-724.6073,-724.4062,-724.2051,-724.00397,-723.80286,-723.60175,-723.40063,-723.1995,-722.9984,-722.7973,-722.5962,-722.3951,-722.1939,-721.9928,-721.7917,-721.5906,-721.38947,-721.18835,-720.98724,-720.78613,-720.585,-720.3839,-720.1828,-719.9817,-719.7806,-719.57947,-719.37836,-719.17725,-718.97614,-718.775,-718.5739,-718.3728,-718.1717,-717.9706,-717.7695,-717.56836,-717.36725,-717.16614,-716.965,-716.7639,-716.5628,-716.3617,-716.1606,-715.9595,-715.75836,-715.55725,-715.35614,-715.155,-714.9539,-714.7528,-714.5517,-714.3506,-714.1495,-713.94836,-713.74725,-713.54614,-713.34503,-713.14386,-712.94275,-712.74164,-712.5405,-712.3394,-712.1383,-711.9372,-711.7361,-711.535,-711.33386,-711.13275,-710.93164,-710.7305,-710.5294,-710.3283,-710.1272,-709.9261,-709.725,-709.52386,-709.32275,-709.12164,-708.92053,-708.7194,-708.5183,-708.3172,-708.1161,-707.915,-707.71387,-707.51276,-707.31165,-707.11053,-706.9094,-706.7083,-706.5072,-706.3061,-706.105,-705.9039,-705.70276,-705.50165,-705.30054,-705.0994,-704.8983,-704.6972,-704.4961,-704.2949,-704.0938,-703.8927,-703.6916,-703.4905,-703.28937,-703.08826,-702.88715,-702.68604,-702.4849,-702.2838,-702.0827,-701.8816,-701.6805,-701.4794,-701.27826,-701.07715,-700.87604,-700.6749,-700.4738,-700.2727,-700.0716,-699.8705,-699.6694,-699.46826,-699.26715,-699.06604,-698.8649,-698.6638,-698.4627,-698.2616,-698.0605,-697.8594,-697.65826,-697.45715,-697.25604,-697.05493,-696.8538,-696.6527,-696.4516,-696.2505,-696.0494,-695.84827,-695.64716,-695.44604,-695.2449,-695.04376,-694.84265,-694.64154,-694.4404,-694.2393,-694.0382,-693.8371,-693.636,-693.4349,-693.23376,-693.03265,-692.83154,-692.63043,-692.4293,-692.2282,-692.0271,-691.826,-691.6249,-691.42377,-691.22266,-691.02155,-690.82043,-690.6193,-690.4182,-690.2171,-690.016,-689.8149,-689.6138,-689.41266,-689.21155,-689.01044,-688.8093,-688.6082,-688.4071,-688.206,-688.0049,-687.8038,-687.60266,-687.40155,-687.20044,-686.9993,-686.7982,-686.5971,-686.39594,-686.1948,-685.9937,-685.7926,-685.5915,-685.3904,-685.1893,-684.98816,-684.78705,-684.58594,-684.3848,-684.1837,-683.9826,-683.7815,-683.5804,-683.3793,-683.17816,-682.97705,-682.77594,-682.5748,-682.3737,-682.1726,-681.9715,-681.7704,-681.5693,-681.36816,-681.16705,-680.96594,-680.76483,-680.5637,-680.3626,-680.1615,-679.9604,-679.7593,-679.55817,-679.35706,-679.15594,-678.95483,-678.7537,-678.5526,-678.3515,-678.1504,-677.9493,-677.74817,-677.54706,-677.3459,-677.1448,-676.94366,-676.74255,-676.54144,-676.34033,-676.1392,-675.9381,-675.737,-675.5359,-675.3348,-675.13367,-674.93256,-674.73145,-674.53033,-674.3292,-674.1281,-673.927,-673.7259,-673.5248,-673.32367,-673.12256,-672.92145,-672.72034,-672.5192,-672.3181,-672.117,-671.9159,-671.7148,-671.5137,-671.31256,-671.11145,-670.91034,-670.7092,-670.5081,-670.307,-670.1059,-669.9048,-669.7037,-669.50256,-669.30145,-669.10034,-668.89923,-668.6981,-668.497,-668.29584,-668.0947,-667.8936,-667.6925,-667.4914,-667.2903,-667.0892,-666.88806,-666.68695,-666.48584,-666.2847,-666.0836,-665.8825,-665.6814,-665.4803,-665.2792,-665.07806,-664.87695,-664.67584,-664.47473,-664.2736,-664.0725,-663.8714,-663.6703,-663.4692,-663.26807,-663.06696,-662.86584,-662.66473,-662.4636,-662.2625,-662.0614,-661.8603,-661.6592,-661.45807,-661.25696,-661.05585,-660.85474,-660.6536,-660.4525,-660.2514,-660.0503,-659.8492,-659.6481,-659.4469,-659.2458,-659.0447,-658.84357,-658.64246,-658.44135,-658.24023,-658.0391,-657.838,-657.6369,-657.4358,-657.2347,-657.03357,-656.83246,-656.63135,-656.43024,-656.2291,-656.028,-655.8269,-655.6258,-655.4247,-655.2236,-655.02246,-654.82135,-654.62024,-654.4191,-654.218,-654.0169,-653.8158,-653.6147,-653.4136,-653.21246,-653.01135,-652.81024,-652.60913,-652.408,-652.2069,-652.0058,-651.8047,-651.6036,-651.40247,-651.20135,-651.00024,-650.79913,-650.598,-650.39685,-650.19574,-649.9946,-649.7935,-649.5924,-649.3913,-649.1902,-648.9891,-648.78796,-648.58685,-648.38574,-648.18463,-647.9835,-647.7824,-647.5813,-647.3802,-647.1791,-646.97797,-646.77686,-646.57574,-646.37463,-646.1735,-645.9724,-645.7713,-645.5702,-645.3691,-645.16797,-644.96686,-644.76575,-644.56464,-644.3635,-644.1624,-643.9613,-643.7602,-643.5591,-643.358,-643.15686,-642.95575,-642.75464,-642.5535,-642.3524,-642.1513,-641.9502,-641.7491,-641.548,-641.3468,-641.1457,-640.9446,-640.74347,-640.54236,-640.34125,-640.14014,-639.939,-639.7379,-639.5368,-639.3357,-639.1346,-638.9335,-638.73236,-638.53125,-638.33014,-638.129,-637.9279,-637.7268,-637.5257,-637.3246,-637.1235,-636.92236,-636.72125,-636.52014,-636.31903,-636.1179,-635.9168,-635.7157,-635.5146,-635.3135,-635.11237,-634.91125,-634.71014,-634.50903,-634.3079,-634.1068,-633.9057,-633.7046,-633.5035,-633.30237,-633.10126,-632.90015,-632.69904,-632.49786,-632.29675,-632.09564,-631.89453,-631.6934,-631.4923,-631.2912,-631.0901,-630.889,-630.68787,-630.48676,-630.28564,-630.08453,-629.8834,-629.6823,-629.4812,-629.2801,-629.079,-628.87787,-628.67676,-628.47565,-628.27454,-628.0734,-627.8723,-627.6712,-627.4701,-627.269,-627.0679,-626.86676,-626.66565,-626.46454,-626.2634,-626.0623,-625.8612,-625.6601,-625.459,-625.2579,-625.05676,-624.85565,-624.65454,-624.4534,-624.2523,-624.0512,-623.8501,-623.649,-623.4478,-623.2467,-623.0456,-622.8445,-622.6434,-622.44226,-622.24115,-622.04004,-621.8389,-621.6378,-621.4367,-621.2356,-621.0345,-620.8334,-620.63226,-620.43115,-620.23004,-620.02893,-619.8278,-619.6267,-619.4256,-619.2245,-619.0234,-618.82227,-618.62115,-618.42004,-618.21893,-618.0178,-617.8167,-617.6156,-617.4145,-617.2134,-617.01227,-616.81116,-616.61005,-616.40894,-616.2078,-616.0067,-615.8056,-615.6045,-615.4034,-615.2023,-615.00116,-614.80005,-614.5989,-614.39777,-614.19666,-613.99554,-613.79443,-613.5933,-613.3922,-613.1911,-612.99,-612.7889,-612.58777,-612.38666,-612.18555,-611.98444,-611.7833,-611.5822,-611.3811,-611.18,-610.9789,-610.7778,-610.57666,-610.37555,-610.17444,-609.9733,-609.7722,-609.5711,-609.37,-609.1689,-608.9678,-608.76666,-608.56555,-608.36444,-608.1633,-607.9622,-607.7611,-607.56,-607.3589,-607.1578,-606.95667,-606.75555,-606.55444,-606.35333,-606.1522,-605.9511,-605.75,-605.5488,-605.3477,-605.1466,-604.9455,-604.7444,-604.5433,-604.34216,-604.14105,-603.93994,-603.73883,-603.5377,-603.3366,-603.1355,-602.9344,-602.7333,-602.53217,-602.33105,-602.12994,-601.92883,-601.7277,-601.5266,-601.3255,-601.1244,-600.9233,-600.72217,-600.52106,-600.31995,-600.11884,-599.9177,-599.7166,-599.5155,-599.3144,-599.1133,-598.9122,-598.71106,-598.50995,-598.30884,-598.1077,-597.9066,-597.7055,-597.5044,-597.3033,-597.1022,-596.90106,-596.69995,-596.4988,-596.29767,-596.09656,-595.89545,-595.69434,-595.4932,-595.2921,-595.091,-594.8899,-594.6888,-594.4877,-594.28656,-594.08545,-593.88434,-593.6832,-593.4821,-593.281,-593.0799,-592.8788,-592.6777,-592.47656,-592.27545,-592.07434,-591.8732,-591.6721,-591.471,-591.2699,-591.0688,-590.8677,-590.66656,-590.46545,-590.26434,-590.06323,-589.8621,-589.661,-589.4599,-589.2588,-589.0577,-588.85657,-588.65546,-588.45435,-588.25323,-588.0521,-587.851,-587.64984,-587.4487,-587.2476,-587.0465,-586.8454,-586.6443,-586.4432,-586.24207,-586.04095,-585.83984,-585.63873,-585.4376,-585.2365,-585.0354,-584.8343,-584.6332,-584.43207,-584.23096,-584.02985,-583.82874,-583.6276,-583.4265,-583.2254,-583.0243,-582.8232,-582.6221,-582.42096,-582.21985,-582.01874,-581.8176,-581.6165,-581.4154,-581.2143,-581.0132,-580.8121,-580.61096,-580.40985,-580.20874,-580.0076,-579.8065,-579.6054,-579.4043,-579.2032,-579.0021,-578.80096,-578.5998,-578.3987,-578.1976,-577.99646,-577.79535,-577.59424,-577.3931,-577.192,-576.9909,-576.7898,-576.5887,-576.3876,-576.18646,-575.98535,-575.78424,-575.5831,-575.382,-575.1809,-574.9798,-574.7787,-574.5776,-574.37646,-574.17535,-573.97424,-573.77313,-573.572,-573.3709,-573.1698,-572.9687,-572.7676,-572.56647,-572.36536,-572.16425,-571.96313,-571.762,-571.5609,-571.3598,-571.1587,-570.9576,-570.7565,-570.55536,-570.35425,-570.15314,-569.952,-569.75085,-569.54974,-569.34863,-569.1475,-568.9464,-568.7453,-568.5442,-568.3431,-568.14197,-567.94086,-567.73975,-567.53864,-567.3375,-567.1364,-566.9353,-566.7342,-566.5331,-566.332,-566.13086,-565.92975,-565.72864,-565.5275,-565.3264,-565.1253,-564.9242,-564.7231,-564.522,-564.32086,-564.11975,-563.91864,-563.7175,-563.5164,-563.3153,-563.1142,-562.9131,-562.712,-562.51086,-562.30975,-562.10864,-561.90753,-561.7064,-561.5053,-561.3042,-561.1031,-560.902,-560.7008,-560.4997,-560.2986,-560.0975,-559.89636,-559.69525,-559.49414,-559.293,-559.0919,-558.8908,-558.6897,-558.4886,-558.2875,-558.08636,-557.88525,-557.68414,-557.48303,-557.2819,-557.0808,-556.8797,-556.6786,-556.4775,-556.27637,-556.07526,-555.87415,-555.67303,-555.4719,-555.2708,-555.0697,-554.8686,-554.6675,-554.4664,-554.26526,-554.06415,-553.86304,-553.6619,-553.4608,-553.2597,-553.0586,-552.8575,-552.6564,-552.45526,-552.25415,-552.05304,-551.8519,-551.65076,-551.44965,-551.24854,-551.0474,-550.8463,-550.6452,-550.4441,-550.243,-550.0419,-549.84076,-549.63965,-549.43854,-549.2374,-549.0363,-548.8352,-548.6341,-548.433,-548.2319,-548.03076,-547.82965,-547.62854,-547.4274,-547.2263,-547.0252,-546.8241,-546.623,-546.4219,-546.22076,-546.01965,-545.81854,-545.61743,-545.4163,-545.2152,-545.0141,-544.813,-544.6119,-544.41077,-544.20966,-544.00854,-543.80743,-543.6063,-543.4052,-543.2041,-543.003,-542.8018,-542.6007,-542.3996,-542.1985,-541.9974,-541.79626,-541.59515,-541.39404,-541.19293,-540.9918,-540.7907,-540.5896,-540.3885,-540.1874,-539.98627,-539.78516,-539.58405,-539.38293,-539.1818,-538.9807,-538.7796,-538.5785,-538.3774,-538.1763,-537.97516,-537.77405,-537.57294,-537.3718,-537.1707,-536.9696,-536.7685,-536.5674,-536.3663,-536.16516,-535.96405,-535.76294,-535.5618,-535.3607,-535.1596,-534.9585,-534.7574,-534.5563,-534.35516,-534.15405,-533.95294,-533.7518,-533.55066,-533.34955,-533.14844,-532.9473,-532.7462,-532.5451,-532.344,-532.1429,-531.9418,-531.74066,-531.53955,-531.33844,-531.1373,-530.9362,-530.7351,-530.534,-530.3329,-530.1318,-529.93066,-529.72955,-529.52844,-529.32733,-529.1262,-528.9251,-528.724,-528.5229,-528.3218,-528.12067,-527.91956,-527.71844,-527.51733,-527.3162,-527.1151,-526.914,-526.7129,-526.5118,-526.31067,-526.10956,-525.90845,-525.70734,-525.5062,-525.3051,-525.104,-524.9029,-524.7017,-524.5006,-524.2995,-524.0984,-523.8973,-523.69617,-523.49506,-523.29395,-523.09283,-522.8917,-522.6906,-522.4895,-522.2884,-522.0873,-521.88617,-521.68506,-521.48395,-521.28284,-521.0817,-520.8806,-520.6795,-520.4784,-520.2773,-520.0762,-519.87506,-519.67395,-519.47284,-519.2717,-519.0706,-518.8695,-518.6684,-518.4673,-518.2662,-518.06506,-517.86395,-517.66284,-517.46173,-517.2606,-517.0595,-516.8584,-516.6573,-516.4562,-516.25507,-516.05396,-515.8528,-515.6517,-515.45056,-515.24945,-515.04834,-514.8472,-514.6461,-514.445,-514.2439,-514.0428,-513.8417,-513.64056,-513.43945,-513.23834,-513.03723,-512.8361,-512.635,-512.4339,-512.2328,-512.0317,-511.83057,-511.62946,-511.42834,-511.22723,-511.02612,-510.825,-510.6239,-510.4228,-510.22168,-510.02057,-509.81946,-509.61835,-509.41724,-509.21613,-509.01498,-508.81387,-508.61276,-508.41165,-508.21054,-508.00943,-507.80832,-507.6072,-507.4061,-507.205,-507.00388,-506.80276,-506.60165,-506.40054,-506.19943,-505.99832,-505.7972,-505.5961,-505.395,-505.19388,-504.99277,-504.79166,-504.5905,-504.3894,-504.1883,-503.98718,-503.78607,-503.58496,-503.38385,-503.18274,-502.98163,-502.78052,-502.5794,-502.3783,-502.1772,-501.97607,-501.77496,-501.57385,-501.37274,-501.17163,-500.97052,-500.7694,-500.5683,-500.3672,-500.16605,-499.96494,-499.76382,-499.5627,-499.3616,-499.1605,-498.95938,-498.75827,-498.55716,-498.35605,-498.15494,-497.95383,-497.75272,-497.5516,-497.3505,-497.14938,-496.94827,-496.74716,-496.54605,-496.34494,-496.14383,-495.94272,-495.7416,-495.54047,-495.33936,-495.13824,-494.93713,-494.73602,-494.5349,-494.3338,-494.1327,-493.93158,-493.73047,-493.52936,-493.32825,-493.12714,-492.92603,-492.7249,-492.5238,-492.3227,-492.12158,-491.92047,-491.71936,-491.51825,-491.31714,-491.116,-490.9149,-490.71378,-490.51266,-490.31155,-490.11044,-489.90933,-489.70822,-489.5071,-489.306,-489.1049,-488.90378,-488.70267,-488.50156,-488.30045,-488.09933,-487.89822,-487.6971,-487.496,-487.2949,-487.09378,-486.89267,-486.69153,-486.49042,-486.2893,-486.0882,-485.8871,-485.68597,-485.48486,-485.28375,-485.08264,-484.88153,-484.68042,-484.4793,-484.2782,-484.0771,-483.87598,-483.67487,-483.47375,-483.27264,-483.07153,-482.87042,-482.6693,-482.4682,-482.26706,-482.06595,-481.86484,-481.66373,-481.46262,-481.2615,-481.0604,-480.85928,-480.65817,-480.45706,-480.25595,-480.05484,-479.85373,-479.65262,-479.4515,-479.2504,-479.0493,-478.84818,-478.64706,-478.44595,-478.24484,-478.04373,-477.84262,-477.64148,-477.44037,-477.23926,-477.03815,-476.83704,-476.63593,-476.4348,-476.2337,-476.0326,-475.83148,-475.63037,-475.42926,-475.22815,-475.02704,-474.82593,-474.62482,-474.4237,-474.2226,-474.02148,-473.82037,-473.61926,-473.41815,-473.217,-473.0159,-472.8148,-472.61368,-472.41257,-472.21146,-472.01035,-471.80923,-471.60812,-471.407,-471.2059,-471.0048,-470.80368,-470.60257,-470.40146,-470.20035,-469.99924,-469.79813,-469.59702,-469.3959,-469.1948,-468.99368,-468.79254,-468.59143,-468.39032,-468.1892,-467.9881,-467.787,-467.58588,-467.38477,-467.18365,-466.98254,-466.78143,-466.58032,-466.3792,-466.1781,-465.977,-465.77588,-465.57477,-465.37366,-465.17255,-464.97144,-464.77032,-464.5692,-464.3681,-464.16696,-463.96585,-463.76474,-463.56363,-463.36252,-463.1614,-462.9603,-462.7592,-462.55807,-462.35696,-462.15585,-461.95474,-461.75363,-461.55252,-461.3514,-461.1503,-460.9492,-460.74808,-460.54697,-460.34586,-460.14474,-459.94363,-459.7425,-459.54138,-459.34027,-459.13916,-458.93805,-458.73694,-458.53583,-458.33472,-458.1336,-457.9325,-457.73138,-457.53027,-457.32916,-457.12805,-456.92694,-456.72583,-456.52472,-456.3236,-456.1225,-455.9214,-455.72028,-455.51917,-455.31802,-455.1169,-454.9158,-454.7147,-454.51358,-454.31247,-454.11136,-453.91025,-453.70914,-453.50803,-453.30692,-453.1058,-452.9047,-452.70358,-452.50247,-452.30136,-452.10025,-451.89914,-451.69803,-451.49692,-451.2958,-451.0947,-450.8936,-450.69244,-450.49133,-450.29022,-450.0891,-449.888,-449.6869,-449.48578,-449.28467,-449.08356,-448.88245,-448.68134,-448.48022,-448.2791,-448.078,-447.8769,-447.67578,-447.47467,-447.27356,-447.07245,-446.87134,-446.67023,-446.46912,-446.26797,-446.06686,-445.86575,-445.66464,-445.46353,-445.26242,-445.0613,-444.8602,-444.6591,-444.45798,-444.25687,-444.05576,-443.85464,-443.65353,-443.45242,-443.2513,-443.0502,-442.8491,-442.64798,-442.44687,-442.24576,-442.04465,-441.8435,-441.6424,-441.44128,-441.24017,-441.03906,-440.83795,-440.63684,-440.43573,-440.23462,-440.0335,-439.8324,-439.6313,-439.43018,-439.22906,-439.02795,-438.82684,-438.62573,-438.42462,-438.2235,-438.0224,-437.8213,-437.62018,-437.41907,-437.21793,-437.0168,-436.8157,-436.6146,-436.41348,-436.21237,-436.01126,-435.81015,-435.60904,-435.40793,-435.20682,-435.0057,-434.8046,-434.6035,-434.40237,-434.20126,-434.00015,-433.79904,-433.59793,-433.39682,-433.1957,-432.9946,-432.79346,-432.59235,-432.39124,-432.19012,-431.989,-431.7879,-431.5868,-431.38568,-431.18457,-430.98346,-430.78235,-430.58124,-430.38013,-430.17902,-429.9779,-429.7768,-429.57568,-429.37457,-429.17346,-428.97235,-428.77124,-428.57013,-428.369,-428.16788,-427.96677,-427.76566,-427.56454,-427.36343,-427.16232,-426.9612,-426.7601,-426.559,-426.35788,-426.15677,-425.95566,-425.75455,-425.55344,-425.35233,-425.1512,-424.9501,-424.749,-424.54788,-424.34677,-424.14566,-423.94452,-423.7434,-423.5423,-423.3412,-423.14008,-422.93896,-422.73785,-422.53674,-422.33563,-422.13452,-421.9334,-421.7323,-421.5312,-421.33008,-421.12897,-420.92786,-420.72675,-420.52563,-420.32452,-420.1234,-419.9223,-419.7212,-419.52008,-419.31894,-419.11783,-418.91672,-418.7156,-418.5145,-418.3134,-418.11227,-417.91116,-417.71005,-417.50894,-417.30783,-417.10672,-416.9056,-416.7045,-416.5034,-416.30228,-416.10117,-415.90005,-415.69894,-415.49783,-415.29672,-415.0956,-414.89447,-414.69336,-414.49225,-414.29114,-414.09003,-413.88892,-413.6878,-413.4867,-413.28558,-413.08447,-412.88336,-412.68225,-412.48114,-412.28003,-412.07892,-411.8778,-411.6767,-411.4756,-411.27448,-411.07336,-410.87225,-410.67114,-410.47,-410.2689,-410.06778,-409.86667,-409.66556,-409.46445,-409.26334,-409.06223,-408.8611,-408.66,-408.4589,-408.25778,-408.05667,-407.85556,-407.65445,-407.45334,-407.25223,-407.05112,-406.85,-406.6489,-406.44778,-406.24667,-406.04556,-405.84442,-405.6433,-405.4422,-405.2411,-405.03998,-404.83887,-404.63776,-404.43665,-404.23553,-404.03442,-403.8333,-403.6322,-403.4311,-403.22998,-403.02887,-402.82776,-402.62665,-402.42554,-402.22443,-402.02332,-401.8222,-401.6211,-401.41995,-401.21884,-401.01773,-400.81662,-400.6155,-400.4144,-400.2133,-400.01218,-399.81107,-399.60995,-399.40884,-399.20773,-399.00662,-398.8055,-398.6044,-398.4033,-398.20218,-398.00107,-397.79996,-397.59885,-397.39774,-397.19662,-396.99548,-396.79437,-396.59326,-396.39215,-396.19104,-395.98993,-395.78882,-395.5877,-395.3866,-395.1855,-394.98438,-394.78326,-394.58215,-394.38104,-394.17993,-393.97882,-393.7777,-393.5766,-393.3755,-393.17438,-392.97327,-392.77216,-392.57104,-392.3699,-392.1688,-391.96768,-391.76657,-391.56546,-391.36435,-391.16324,-390.96213,-390.76102,-390.5599,-390.3588,-390.15768,-389.95657,-389.75546,-389.55435,-389.35324,-389.15213,-388.95102,-388.7499,-388.5488,-388.3477,-388.14658,-387.94543,-387.74432,-387.5432,-387.3421,-387.141,-386.93988,-386.73877,-386.53766,-386.33655,-386.13544,-385.93433,-385.73322,-385.5321,-385.331,-385.12988,-384.92877,-384.72766,-384.52655,-384.32544,-384.12433,-383.92322,-383.7221,-383.52097,-383.31985,-383.11874,-382.91763,-382.71652,-382.5154,-382.3143,-382.1132,-381.91208,-381.71097,-381.50986,-381.30875,-381.10764,-380.90652,-380.7054,-380.5043,-380.3032,-380.10208,-379.90097,-379.69986,-379.49875,-379.29764,-379.09653,-378.8954,-378.69427,-378.49316,-378.29205,-378.09094,-377.88983,-377.68872,-377.4876,-377.2865,-377.0854,-376.88428,-376.68317,-376.48206,-376.28094,-376.07983,-375.87872,-375.6776,-375.4765,-375.2754,-375.07428,-374.87317,-374.67206,-374.47092,-374.2698,-374.0687,-373.86758,-373.66647,-373.46536,-373.26425,-373.06314,-372.86203,-372.66092,-372.4598,-372.2587,-372.0576,-371.85648,-371.65536,-371.45425,-371.25314,-371.05203,-370.85092,-370.6498,-370.4487,-370.2476,-370.04645,-369.84534,-369.64423,-369.4431,-369.242,-369.0409,-368.83978,-368.63867,-368.43756,-368.23645,-368.03534,-367.83423,-367.63312,-367.432,-367.2309,-367.0298,-366.82867,-366.62756,-366.42645,-366.22534,-366.02423,-365.82312,-365.62198,-365.42087,-365.21976,-365.01865,-364.81754,-364.61642,-364.4153,-364.2142,-364.0131,-363.81198,-363.61087,-363.40976,-363.20865,-363.00754,-362.80643,-362.60532,-362.4042,-362.2031,-362.00198,-361.80087,-361.59976,-361.39865,-361.19754,-360.9964,-360.7953,-360.59418,-360.39307,-360.19196,-359.99084,-359.78973,-359.58862,-359.3875,-359.1864,-358.9853,-358.78418,-358.58307,-358.38196,-358.18085,-357.97974,-357.77863,-357.5775,-357.3764,-357.1753,-356.97418,-356.77307,-356.57193,-356.37082,-356.1697,-355.9686,-355.7675,-355.56638,-355.36526,-355.16415,-354.96304,-354.76193,-354.56082,-354.3597,-354.1586,-353.9575,-353.75638,-353.55527,-353.35416,-353.15305,-352.95193,-352.75082,-352.5497,-352.3486,-352.14746,-351.94635,-351.74524,-351.54413,-351.34302,-351.1419,-350.9408,-350.7397,-350.53857,-350.33746,-350.13635,-349.93524,-349.73413,-349.53302,-349.3319,-349.1308,-348.9297,-348.72858,-348.52747,-348.32635,-348.12524,-347.92413,-347.72302,-347.52188,-347.32077,-347.11966,-346.91855,-346.71744,-346.51633,-346.31522,-346.1141,-345.913,-345.71188,-345.51077,-345.30966,-345.10855,-344.90744,-344.70633,-344.50522,-344.3041,-344.103,-343.9019,-343.70078,-343.49966,-343.29855,-343.0974,-342.8963,-342.6952,-342.49408,-342.29297,-342.09186,-341.89075,-341.68964,-341.48853,-341.2874,-341.0863,-340.8852,-340.68408,-340.48297,-340.28186,-340.08075,-339.87964,-339.67853,-339.47742,-339.2763,-339.0752,-338.87408,-338.67294,-338.47183,-338.27072,-338.0696,-337.8685,-337.6674,-337.46628,-337.26517,-337.06406,-336.86295,-336.66183,-336.46072,-336.2596,-336.0585,-335.8574,-335.65628,-335.45517,-335.25406,-335.05295,-334.85184,-334.65073,-334.44962,-334.2485,-334.04736,-333.84625,-333.64514,-333.44403,-333.24292,-333.0418,-332.8407,-332.6396,-332.43848,-332.23737,-332.03625,-331.83514,-331.63403,-331.43292,-331.2318,-331.0307,-330.8296,-330.62848,-330.42737,-330.22626,-330.02515,-329.82404,-329.6229,-329.42178,-329.22067,-329.01956,-328.81845,-328.61734,-328.41623,-328.21512,-328.014,-327.8129,-327.6118,-327.41068,-327.20956,-327.00845,-326.80734,-326.60623,-326.40512,-326.204,-326.0029,-325.8018,-325.60068,-325.39957,-325.19843,-324.9973,-324.7962,-324.5951,-324.39398,-324.19287,-323.99176,-323.79065,-323.58954,-323.38843,-323.18732,-322.9862,-322.7851,-322.58398,-322.38287,-322.18176,-321.98065,-321.77954,-321.57843,-321.37732,-321.1762,-320.9751,-320.774,-320.57285,-320.37173,-320.17062,-319.9695,-319.7684,-319.5673,-319.36618,-319.16507,-318.96396,-318.76285,-318.56174,-318.36063,-318.15952,-317.9584,-317.7573,-317.55618,-317.35507,-317.15396,-316.95285,-316.75174,-316.55063,-316.34952,-316.14838,-315.94727,-315.74615,-315.54504,-315.34393,-315.14282,-314.9417,-314.7406,-314.5395,-314.33838,-314.13727,-313.93616,-313.73505,-313.53394,-313.33282,-313.1317,-312.9306,-312.7295,-312.52838,-312.32727,-312.12616,-311.92505,-311.7239,-311.5228,-311.3217,-311.12057,-310.91946,-310.71835,-310.51724,-310.31613,-310.11502,-309.9139,-309.7128,-309.5117,-309.31058,-309.10947,-308.90836,-308.70724,-308.50613,-308.30502,-308.1039,-307.9028,-307.7017,-307.50058,-307.29944,-307.09833,-306.89722,-306.6961,-306.495,-306.29388,-306.09277,-305.89166,-305.69055,-305.48944,-305.28833,-305.08722,-304.8861,-304.685,-304.4839,-304.28278,-304.08167,-303.88055,-303.67944,-303.47833,-303.27722,-303.0761,-302.875,-302.67386,-302.47275,-302.27164,-302.07053,-301.86942,-301.6683,-301.4672,-301.26608,-301.06497,-300.86386,-300.66275,-300.46164,-300.26053,-300.05942,-299.8583,-299.6572,-299.4561,-299.25497,-299.05386,-298.85275,-298.65164,-298.45053,-298.2494,-298.04828,-297.84717,-297.64606,-297.44495,-297.24384,-297.04272,-296.8416,-296.6405,-296.4394,-296.23828,-296.03717,-295.83606,-295.63495,-295.43384,-295.23273,-295.03162,-294.8305,-294.6294,-294.42828,-294.22717,-294.02606,-293.82492,-293.6238,-293.4227,-293.2216,-293.02048,-292.81937,-292.61826,-292.41714,-292.21603,-292.01492,-291.8138,-291.6127,-291.4116,-291.21048,-291.00937,-290.80826,-290.60715,-290.40604,-290.20493,-290.0038,-289.8027,-289.6016,-289.40048,-289.19934,-288.99823,-288.79712,-288.596,-288.3949,-288.1938,-287.99268,-287.79156,-287.59045,-287.38934,-287.18823,-286.98712,-286.786,-286.5849,-286.3838,-286.18268,-285.98157,-285.78046,-285.57935,-285.37823,-285.17712,-284.976,-284.77487,-284.57376,-284.37265,-284.17154,-283.97043,-283.76932,-283.5682,-283.3671,-283.166,-282.96487,-282.76376,-282.56265,-282.36154,-282.16043,-281.95932,-281.7582,-281.5571,-281.356,-281.15488,-280.95377,-280.75266,-280.55154,-280.3504,-280.1493,-279.94818,-279.74707,-279.54596,-279.34485,-279.14374,-278.94263,-278.74152,-278.5404,-278.3393,-278.13818,-277.93707,-277.73596,-277.53485,-277.33374,-277.13263,-276.93152,-276.7304,-276.5293,-276.3282,-276.12708,-275.92596,-275.72482,-275.5237,-275.3226,-275.1215,-274.92038,-274.71927,-274.51816,-274.31705,-274.11594,-273.91483,-273.7137,-273.5126,-273.3115,-273.11038,-272.90927,-272.70816,-272.50705,-272.30594,-272.10483,-271.90372,-271.7026,-271.5015,-271.30035,-271.09924,-270.89813,-270.69702,-270.4959,-270.2948,-270.0937,-269.89258,-269.69147,-269.49036,-269.28925,-269.08813,-268.88702,-268.6859,-268.4848,-268.2837,-268.08258,-267.88147,-267.68036,-267.47925,-267.27814,-267.07703,-266.8759,-266.67477,-266.47366,-266.27255,-266.07144,-265.87033,-265.66922,-265.4681,-265.267,-265.0659,-264.86478,-264.66367,-264.46255,-264.26144,-264.06033,-263.85922,-263.6581,-263.457,-263.2559,-263.05478,-262.85367,-262.65256,-262.45145,-262.2503,-262.0492,-261.84808,-261.64697,-261.44586,-261.24475,-261.04364,-260.84253,-260.64142,-260.4403,-260.2392,-260.0381,-259.83698,-259.63586,-259.43475,-259.23364,-259.03253,-258.83142,-258.6303,-258.4292,-258.2281,-258.02698,-257.82584,-257.62473,-257.4236,-257.2225,-257.0214,-256.82028,-256.61917,-256.41806,-256.21695,-256.01584,-255.81473,-255.61362,-255.4125,-255.2114,-255.01028,-254.80917,-254.60806,-254.40694,-254.20583,-254.00471,-253.8036,-253.6025,-253.40138,-253.20027,-252.99916,-252.79805,-252.59694,-252.39583,-252.1947,-251.99359,-251.79248,-251.59137,-251.39026,-251.18915,-250.98804,-250.78693,-250.58582,-250.3847,-250.1836,-249.98247,-249.78136,-249.58025,-249.37914,-249.17802,-248.97691,-248.7758,-248.57469,-248.37358,-248.17247,-247.97136,-247.77023,-247.56912,-247.36801,-247.1669,-246.96579,-246.76468,-246.56357,-246.36246,-246.16135,-245.96024,-245.75912,-245.558,-245.35689,-245.15578,-244.95467,-244.75356,-244.55244,-244.35133,-244.15022,-243.94911,-243.748,-243.54689,-243.34576,-243.14465,-242.94354,-242.74243,-242.54132,-242.34021,-242.1391,-241.93799,-241.73688,-241.53577,-241.33466,-241.13353,-240.93242,-240.73131,-240.5302,-240.32909,-240.12798,-239.92686,-239.72575,-239.52464,-239.32353,-239.12242,-238.92131,-238.72018,-238.51907,-238.31796,-238.11685,-237.91574,-237.71463,-237.51352,-237.31241,-237.1113,-236.91019,-236.70908,-236.50795,-236.30684,-236.10573,-235.90462,-235.7035,-235.5024,-235.30128,-235.10017,-234.89906,-234.69795,-234.49684,-234.29572,-234.0946,-233.8935,-233.69238,-233.49127,-233.29016,-233.08905,-232.88794,-232.68683,-232.48572,-232.2846,-232.08348,-231.88237,-231.68126,-231.48015,-231.27904,-231.07793,-230.87682,-230.6757,-230.4746,-230.27348,-230.07237,-229.87125,-229.67014,-229.46902,-229.26791,-229.0668,-228.86569,-228.66458,-228.46347,-228.26236,-228.06125,-227.86014,-227.65901,-227.4579,-227.25679,-227.05568,-226.85457,-226.65346,-226.45235,-226.25124,-226.05013,-225.84901,-225.6479,-225.4468,-225.24567,-225.04456,-224.84344,-224.64233,-224.44122,-224.24011,-224.039,-223.83789,-223.63678,-223.43567,-223.23456,-223.03343,-222.83232,-222.63121,-222.4301,-222.22899,-222.02788,-221.82677,-221.62566,-221.42455,-221.22343,-221.02232,-220.8212,-220.62009,-220.41898,-220.21786,-220.01675,-219.81564,-219.61453,-219.41342,-219.21231,-219.0112,-218.81009,-218.60896,-218.40785,-218.20674,-218.00563,-217.80452,-217.60341,-217.4023,-217.20119,-217.00008,-216.79897,-216.59785,-216.39673,-216.19562,-215.9945,-215.7934,-215.59229,-215.39117,-215.19006,-214.98895,-214.78784,-214.58673,-214.38562,-214.1845,-213.98338,-213.78227,-213.58116,-213.38005,-213.17894,-212.97783,-212.77672,-212.5756,-212.3745,-212.17339,-211.97226,-211.77115,-211.57004,-211.36893,-211.16782,-210.9667,-210.7656,-210.56448,-210.36337,-210.16226,-209.96115,-209.76004,-209.55891,-209.3578,-209.1567,-208.95558,-208.75447,-208.55336,-208.35225,-208.15114,-207.95003,-207.74892,-207.5478,-207.34668,-207.14557,-206.94446,-206.74335,-206.54224,-206.34113,-206.14001,-205.9389,-205.7378,-205.53668,-205.33557,-205.13445,-204.93333,-204.73222,-204.53111,-204.33,-204.12889,-203.92778,-203.72667,-203.52556,-203.32445,-203.12334,-202.92221,-202.7211,-202.51999,-202.31888,-202.11777,-201.91666,-201.71555,-201.51443,-201.31332,-201.11221,-200.9111,-200.70998,-200.50887,-200.30775,-200.10664,-199.90553,-199.70442,-199.50331,-199.3022,-199.10109,-198.89998,-198.69887,-198.49774,-198.29663,-198.09552,-197.89441,-197.6933,-197.49219,-197.29108,-197.08997,-196.88885,-196.68774,-196.48663,-196.28552,-196.0844,-195.88329,-195.68217,-195.48106,-195.27995,-195.07884,-194.87773,-194.67662,-194.47551,-194.2744,-194.07329,-193.87216,-193.67105,-193.46994,-193.26883,-193.06772,-192.86661,-192.6655,-192.46439,-192.26328,-192.06216,-191.86105,-191.65993,-191.45882,-191.2577,-191.0566,-190.85548,-190.65437,-190.45326,-190.25215,-190.05104,-189.84993,-189.64882,-189.4477,-189.24658,-189.04547,-188.84436,-188.64325,-188.44214,-188.24103,-188.03992,-187.8388,-187.6377,-187.43658,-187.23546,-187.03435,-186.83324,-186.63213,-186.43102,-186.2299,-186.0288,-185.82768,-185.62657,-185.42546,-185.22435,-185.02322,-184.82211,-184.621,-184.41989,-184.21878,-184.01767,-183.81656,-183.61545,-183.41434,-183.21323,-183.01212,-182.81099,-182.60988,-182.40877,-182.20766,-182.00655,-181.80544,-181.60432,-181.40321,-181.2021,-181.00099,-180.79988,-180.59877,-180.39764,-180.19653,-179.99542,-179.79431,-179.5932,-179.39209,-179.19098,-178.98987,-178.78876,-178.58765,-178.38654,-178.18541,-177.9843,-177.78319,-177.58208,-177.38097,-177.17986,-176.97874,-176.77763,-176.57652,-176.37541,-176.1743,-175.97318,-175.77206,-175.57095,-175.36984,-175.16873,-174.96762,-174.76651,-174.5654,-174.36429,-174.16318,-173.96207,-173.76094,-173.55983,-173.35872,-173.15761,-172.9565,-172.75539,-172.55428,-172.35316,-172.15205,-171.95094,-171.74983,-171.5487,-171.3476,-171.14648,-170.94537,-170.74426,-170.54315,-170.34204,-170.14093,-169.93982,-169.73871,-169.5376,-169.33647,-169.13536,-168.93425,-168.73314,-168.53203,-168.33092,-168.1298,-167.9287,-167.72758,-167.52647,-167.32536,-167.12425,-166.92313,-166.72202,-166.5209,-166.3198,-166.11868,-165.91757,-165.71646,-165.51535,-165.31424,-165.11313,-164.91202,-164.71089,-164.50978,-164.30867,-164.10756,-163.90645,-163.70534,-163.50423,-163.30312,-163.102,-162.9009,-162.69978,-162.49866,-162.29755,-162.09644,-161.89532,-161.69421,-161.4931,-161.29199,-161.09088,-160.88977,-160.68866,-160.48755,-160.28642,-160.08531,-159.8842,-159.68309,-159.48198,-159.28087,-159.07976,-158.87865,-158.67754,-158.47643,-158.27531,-158.07419,-157.87308,-157.67197,-157.47086,-157.26974,-157.06863,-156.86752,-156.66641,-156.4653,-156.26419,-156.06308,-155.86195,-155.66084,-155.45973,-155.25862,-155.05751,-154.8564,-154.65529,-154.45418,-154.25307,-154.05196,-153.85085,-153.64972,-153.44861,-153.2475,-153.04639,-152.84528,-152.64417,-152.44305,-152.24194,-152.04083,-151.83972,-151.63861,-151.4375,-151.23637,-151.03526,-150.83415,-150.63304,-150.43193,-150.23082,-150.02971,-149.8286,-149.62749,-149.42638,-149.22527,-149.02414,-148.82303,-148.62192,-148.4208,-148.2197,-148.01859,-147.81747,-147.61636,-147.41525,-147.21414,-147.01303,-146.8119,-146.6108,-146.40968,-146.20857,-146.00746,-145.80635,-145.60524,-145.40413,-145.20302,-145.0019,-144.8008,-144.59967,-144.39856,-144.19745,-143.99634,-143.79523,-143.59412,-143.393,-143.1919,-142.99078,-142.78967,-142.58856,-142.38744,-142.18633,-141.98521,-141.7841,-141.583,-141.38188,-141.18077,-140.97966,-140.77855,-140.57744,-140.37633,-140.1752,-139.97409,-139.77298,-139.57187,-139.37076,-139.16965,-138.96854,-138.76743,-138.56631,-138.3652,-138.1641,-137.96298,-137.76186,-137.56075,-137.35963,-137.15852,-136.95741,-136.7563,-136.55519,-136.35408,-136.15297,-135.95186,-135.75075,-135.54962,-135.34851,-135.1474,-134.94629,-134.74518,-134.54407,-134.34296,-134.14185,-133.94073,-133.73962,-133.53851,-133.33739,-133.13628,-132.93517,-132.73405,-132.53294,-132.33183,-132.13072,-131.92961,-131.7285,-131.52739,-131.32628,-131.12515,-130.92404,-130.72293,-130.52182,-130.32071,-130.1196,-129.91849,-129.71738,-129.51627,-129.31516,-129.11404,-128.91292,-128.7118,-128.5107,-128.30959,-128.10847,-127.907364,-127.70625,-127.50514,-127.30403,-127.10291,-126.9018,-126.70069,-126.49958,-126.29847,-126.09735,-125.89624,-125.69513,-125.49402,-125.29291,-125.0918,-124.89068,-124.68957,-124.48846,-124.287346,-124.086235,-123.88512,-123.684006,-123.482895,-123.281784,-123.08067,-122.87956,-122.678444,-122.47733,-122.27622,-122.07511,-121.874,-121.67288,-121.47177,-121.27066,-121.06955,-120.86844,-120.66733,-120.46621,-120.2651,-120.06399,-119.86288,-119.661766,-119.460655,-119.25954,-119.058426,-118.857315,-118.656204,-118.45509,-118.253975,-118.052864,-117.85175,-117.65064,-117.44953,-117.24842,-117.0473,-116.84619,-116.64508,-116.44397,-116.24286,-116.04174,-115.84063,-115.63952,-115.43841,-115.2373,-115.03619,-114.83507,-114.63396,-114.432846,-114.231735,-114.030624,-113.829506,-113.628395,-113.427284,-113.22617,-113.02506,-112.82395,-112.62283,-112.42172,-112.22061,-112.0195,-111.81839,-111.61728,-111.41616,-111.21505,-111.01394,-110.81283,-110.61172,-110.4106,-110.20949,-110.00838,-109.80727,-109.606155,-109.405045,-109.203926,-109.002815,-108.801704,-108.60059,-108.39948,-108.198364,-107.99725,-107.79614,-107.59503,-107.39392,-107.19281,-106.99169,-106.79058,-106.58947,-106.38836,-106.18725,-105.98613,-105.78502,-105.58391,-105.3828,-105.18169,-104.980576,-104.77946,-104.57835,-104.377235,-104.176125,-103.97501,-103.7739,-103.572784,-103.37167,-103.17056,-102.96945,-102.76834,-102.56722,-102.36611,-102.165,-101.96389,-101.76278,-101.56167,-101.36055,-101.15944,-100.95833,-100.75722,-100.55611,-100.35499,-100.15388,-99.95277,-99.751656,-99.550545,-99.349434,-99.148315,-98.947205,-98.74609,-98.54498,-98.34387,-98.14276,-97.94164,-97.74053,-97.53942,-97.33831,-97.1372,-96.93608,-96.73497,-96.53386,-96.33275,-96.13164,-95.93053,-95.72941,-95.5283,-95.32719,-95.126076,-94.924965,-94.72385,-94.522736,-94.321625,-94.120514,-93.9194,-93.71829,-93.51717,-93.31606,-93.11495,-92.91384,-92.71273,-92.51161,-92.3105,-92.10939,-91.90828,-91.70717,-91.50606,-91.30494,-91.10383,-90.90272,-90.70161,-90.500496,-90.299385,-90.09827,-89.897156,-89.696045,-89.494934,-89.29382,-89.092705,-88.891594,-88.69048,-88.48937,-88.28826,-88.08715,-87.88603,-87.68492,-87.48381,-87.2827,-87.08159,-86.88047,-86.67936,-86.47825,-86.27714,-86.07603,-85.874916,-85.6738,-85.47269,-85.271576,-85.070465,-84.869354,-84.668236,-84.467125,-84.266014,-84.0649,-83.86379,-83.66268,-83.46156,-83.26045,-83.05934,-82.85823,-82.65712,-82.45601,-82.25489,-82.05378,-81.85267,-81.65156,-81.45045,-81.24933,-81.04822,-80.84711,-80.645996,-80.444885,-80.243774,-80.042656,-79.841545,-79.640434,-79.43932,-79.23821,-79.037094,-78.83598,-78.63487,-78.43376,-78.23265,-78.03154,-77.83042,-77.62931,-77.4282,-77.22709,-77.02598,-76.82486,-76.62375,-76.42264,-76.22153,-76.02042,-75.819305,-75.61819,-75.417076,-75.215965,-75.014854,-74.81374,-74.61263,-74.411514,-74.2104,-74.00929,-73.80818,-73.60707,-73.40595,-73.20484,-73.00373,-72.80262,-72.60151,-72.4004,-72.19928,-71.99817,-71.79706,-71.59595,-71.39484,-71.19372,-70.99261,-70.7915,-70.590385,-70.389275,-70.18816,-69.987045,-69.785934,-69.58482,-69.38371,-69.1826,-68.98149,-68.78037,-68.57926,-68.37815,-68.17704,-67.97593,-67.77481,-67.5737,-67.37259,-67.17148,-66.97037,-66.76926,-66.56814,-66.36703,-66.16592,-65.964806,-65.763695,-65.56258,-65.361465,-65.160355,-64.95924,-64.75813,-64.55702,-64.3559,-64.15479,-63.953682,-63.75257,-63.551456,-63.350346,-63.149235,-62.94812,-62.74701,-62.5459,-62.344784,-62.143673,-61.94256,-61.741447,-61.540337,-61.339222,-61.13811,-60.937,-60.735886,-60.534775,-60.333664,-60.13255,-59.93144,-59.730328,-59.529213,-59.328102,-59.126987,-58.925877,-58.724766,-58.52365,-58.32254,-58.12143,-57.920315,-57.719204,-57.518093,-57.31698,-57.115868,-56.914753,-56.713642,-56.51253,-56.311417,-56.110306,-55.909195,-55.70808,-55.50697,-55.30586,-55.104744,-54.903633,-54.702522,-54.501408,-54.300297,-54.099182,-53.89807,-53.69696,-53.495846,-53.294735,-53.093624,-52.89251,-52.6914,-52.490288,-52.289173,-52.088062,-51.88695,-51.685837,-51.484726,-51.28361,-51.0825,-50.88139,-50.680275,-50.479164,-50.278053,-50.07694,-49.875828,-49.674717,-49.473602,-49.27249,-49.07138,-48.870266,-48.669155,-48.46804,-48.26693,-48.06582,-47.864704,-47.663593,-47.462482,-47.261368,-47.060257,-46.859146,-46.65803,-46.45692,-46.255806,-46.054695,-45.853584,-45.65247,-45.45136,-45.250248,-45.049133,-44.848022,-44.64691,-44.445797,-44.244686,-44.043575,-43.84246,-43.64135,-43.440235,-43.239124,-43.038013,-42.8369,-42.635788,-42.434677,-42.233562,-42.03245,-41.83134,-41.630226,-41.429115,-41.228004,-41.02689,-40.82578,-40.624664,-40.423553,-40.222443,-40.021328,-39.820217,-39.619106,-39.41799,-39.21688,-39.01577,-38.814655,-38.613544,-38.41243,-38.21132,-38.01021,-37.809093,-37.607983,-37.40687,-37.205757,-37.004646,-36.803535,-36.60242,-36.40131,-36.2002,-35.999084,-35.797974,-35.59686,-35.39575,-35.194637,-34.993523,-34.79241,-34.5913,-34.390186,-34.189075,-33.987965,-33.78685,-33.58574,-33.38463,-33.183514,-32.982403,-32.78129,-32.580177,-32.379066,-32.17795,-31.976841,-31.775728,-31.574617,-31.373505,-31.172392,-30.97128,-30.770168,-30.569056,-30.367943,-30.166832,-29.96572,-29.764606,-29.563494,-29.362383,-29.16127,-28.960157,-28.759047,-28.557934,-28.356821,-28.155708,-27.954597,-27.753485,-27.552372,-27.351261,-27.150148,-26.949036,-26.747923,-26.546812,-26.3457,-26.144587,-25.943476,-25.742363,-25.54125,-25.340137,-25.139027,-24.937914,-24.736801,-24.53569,-24.334578,-24.133465,-23.932352,-23.731241,-23.530128,-23.329016,-23.127903,-22.926792,-22.72568,-22.524567,-22.323456,-22.122343,-21.92123,-21.720118,-21.519007,-21.317894,-21.116781,-20.91567,-20.714558,-20.513445,-20.312332,-20.111221,-19.910109,-19.708996,-19.507885,-19.306772,-19.10566,-18.904547,-18.703436,-18.502323,-18.30121,-18.1001,-17.898987,-17.697874,-17.496761,-17.29565,-17.094538,-16.893425,-16.692314,-16.491201,-16.290089,-16.088976,-15.887864,-15.686752,-15.48564,-15.284528,-15.083416,-14.882303,-14.681191,-14.480079,-14.278967,-14.077854,-13.876742,-13.675631,-13.474518,-13.273406,-13.072293,-12.8711815,-12.670069,-12.468957,-12.267845,-12.066732,-11.865621,-11.664508,-11.463396,-11.262283,-11.061172,-10.860059,-10.658947,-10.457835,-10.256722,-10.055611,-9.854498,-9.653386,-9.452273,-9.251162,-9.05005,-8.848937,-8.647825,-8.4467125,-8.245601,-8.044488,-7.843376,-7.642264,-7.4411516,-7.2400393,-7.038927,-6.8378153,-6.636703,-6.4355907,-6.2344785,-6.033366,-5.832254,-5.6311417,-5.4300294,-5.2289176,-5.0278053,-4.826693,-4.625581,-4.4244685,-4.2233562,-4.022244,-3.821132,-3.6200197,-3.4189076,-3.2177954,-3.016683,-2.8155708,-2.6144588,-2.4133465,-2.2122343,-2.011122,-1.8100098,-1.6088977,-1.4077854,-1.2066733,-1.005561,-0.80444884,-0.60333663,-0.40222442,-0.20111221,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..1ab1128e85d4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0205696,1.0867292,1.2144072,1.4419435,1.8670143,2.8079636,6.161812,-26.252134,-4.2205024,-2.3461287,-1.6712676,-1.3398668,-1.1570693,-1.055605,-1.0078522,-1.0029105,-1.0397236,-1.126481,-1.2855746,-1.5707241,-2.1286912,-3.5216362,-11.53413,8.767674,3.2235987,2.0248463,1.5206608,1.2581064,1.1110598,1.0320374,1.0011873,1.0117272,1.0659155,1.1763386,1.3740737,1.735827,2.4925027,4.7587414,94.292694,-5.281056,-2.6199586,-1.7900996,-1.4024196,-1.1922722,-1.0745673,-1.015263,-1.0003781,-1.0267122,-1.1000102,-1.2383338,-1.4849143,-1.9523796,-3.0274997,-7.4018636,15.255482,3.7942274,2.2175744,1.6125138,1.3082861,1.1392689,1.0462755,1.0047635,1.0054008,1.0483239,1.1432129,1.3152859,1.6254679,2.245555,3.8836331,16.869661,-7.075877,-2.974148,-1.9320548,-1.4747697,-1.2326992,-1.0968728,-1.0252334,-1.000225,-1.0164033,-1.0772512,-1.1971804,-1.4111687,-1.8069984,-2.6604998,-5.459063,59.206337,4.623656,2.457294,1.7205186,1.3660096,1.1717998,1.06347,1.0107713,1.001514,1.0337154,1.1144732,1.2641976,1.5317177,2.0475442,3.2869775,9.275565,-10.757518,-3.4485197,-2.103883,-1.5588894,-1.2791053,-1.1228433,-1.0378877,-1.0024493,-1.0086682,-1.057874,-1.1613402,-1.347445,-1.6854867,-2.3778875,-4.332219,-31.435614,5.9351134,2.762469,1.848733,1.4326179,1.209194,1.0838529,1.0192837,1.0000198,1.0218989,1.089664,1.2197136,1.4514499,1.8857354,2.8551016,6.4067783,-22.53736,-4.1145573,-2.3152902,-1.6573507,-1.3324262,-1.1528747,-1.0533875,-1.0070775,-1.0034118,-1.0416077,-1.1301876,-1.2921604,-1.5828049,-2.1541774,-3.598054,-12.432129,8.312762,3.1627405,2.0027277,1.5098199,1.2521228,1.1077112,1.0304055,1.0009005,1.0127249,1.0684141,1.1809596,1.3822861,1.7514822,2.5288363,4.902135,231.47893,-5.114486,-2.5807233,-1.7735833,-1.3938358,-1.1874492,-1.0719389,-1.0141654,-1.0005709,-1.028236,-1.1032088,-1.2440697,-1.4952588,-1.9732058,-3.082933,-7.7596593,13.923365,3.708976,2.190376,1.5998234,1.3014126,1.1353971,1.0442764,1.0041667,1.0060786,1.0504217,1.1472298,1.3224103,1.638699,2.2743325,3.9775443,18.867025,-6.777692,-2.9227424,-1.9122266,-1.4648218,-1.2271638,-1.0937964,-1.0237993,-1.0001115,-1.0175865,-1.0799927,-1.2021776,-1.4200813,-1.8242922,-2.7024302,-5.64969,43.151386,4.4961724,2.4231653,1.7055436,1.3580952,1.1673423,1.0610774,1.0098574,1.0018804,1.03544,1.1179514,1.2703985,1.5430006,2.0708344,3.353033,9.846466,-10.079358,-3.378503,-2.079735,-1.5472932,-1.2727501,-1.1192739,-1.0360981,-1.002028,-1.0095251,-1.0601946,-1.1656898,-1.3551619,-1.7000177,-2.410623,-4.4501753,-39.172314,5.724784,2.7185087,1.8308753,1.4234703,1.2040728,1.081034,1.0180415,1.000079,1.0232725,1.0926574,1.2251153,1.461137,1.904909,2.9039707,6.67222,-19.742954,-4.0139427,-2.2853491,-1.6437283,-1.3251184,-1.1487564,-1.0512205,-1.0063435,-1.0039531,-1.04354,-1.1339623,-1.2988647,-1.5951372,-2.1803608,-3.6780534,-13.482512,7.903113,3.104258,1.9811596,1.4991935,1.2462449,1.1044254,1.0288196,1.0006533,1.0137644,1.0709667,1.1856648,1.3906549,1.7674918,2.5663533,5.054704,-508.81503,-4.95827,-2.5427732,-1.7574377,-1.3854082,-1.1827153,-1.069365,-1.0131098,-1.0008032,-1.0298053,-1.1064708,-1.2499086,-1.5058099,-1.9945705,-3.1405604,-8.154203,12.806452,3.6276112,2.1639135,1.5874027,1.2946607,1.131595,1.042326,1.00361,1.0067973,1.0525697,1.1513214,1.3296684,1.6522132,2.303959,4.076198,21.400103,-6.50363,-2.8732023,-1.8928723,-1.4550613,-1.2217293,-1.0907815,-1.0224084,-1.0000373,-1.0188128,-1.0827883,-1.2072617,-1.4291724,-1.8419937,-2.7458136,-5.854416,33.951664,4.375769,2.3900354,1.6908933,1.3503226,1.1629633,1.0587387,1.0089842,1.0022868,1.0372114,1.1214968,1.2767073,1.5545057,2.094766,3.4219363,10.492695,-9.481812,-3.3114414,-2.0562222,-1.5359181,-1.2665076,-1.1157701,-1.0343571,-1.0016469,-1.0104243,-1.0625675,-1.1701187,-1.3630241,-1.7148608,-2.44435,-4.575037,-51.963146,5.529005,2.6760678,1.8134408,1.4144863,1.1990422,1.0782721,1.0168421,1.0001777,1.0246894,1.0957135,1.230614,1.471016,1.9245595,2.9546294,6.960803,-17.566269,-3.918282,-2.2562516,-1.6304001,-1.3179464,-1.1447088,-1.049104,-1.0056503,-1.004535,-1.0455196,-1.137806,-1.3056972,-1.6077274,-2.2072847,-3.761765,-14.726581,7.5319037,3.0480175,1.9601276,1.4887712,1.2404742,1.1012045,1.0272776,1.0004457,1.0148463,1.0735748,1.1904519,1.3991866,1.783868,2.6051052,5.217288,-121.25832,-4.8115845,-2.5059764,-1.7416517,-1.3771359,-1.1780624,-1.0668472,-1.0120969,-1.0010753,-1.0314204,-1.1097963,-1.2558486,-1.5165647,-2.016497,-3.2005122,-8.591377,11.855327,3.5499232,2.1381814,1.5752205,1.2880292,1.1278628,1.040425,1.003094,1.0075574,1.0547683,1.155488,1.3370597,1.6660103,2.3344417,4.1801686,24.724623,-6.251402,-2.825452,-1.8739904,-1.445481,-1.2163839,-1.0878224,-1.0210631,-1.0000029,-1.0200816,-1.0856452,-1.2124431,-1.4384264,-1.860105,-2.7906969,-6.0746474,27.980234,4.261676,2.3579295,1.6765668,1.342696,1.1586598,1.056449,1.0081533,1.0027328,1.0390289,1.125107,1.2831378,1.5662605,2.1193118,3.493827,11.229702,-8.951181,-3.2470388,-2.033287,-1.5247823,-1.2603793,-1.1123339,-1.0326604,-1.0013051,-1.0113639,-1.0649917,-1.1746249,-1.3710375,-1.730053,-2.479176,-4.7071347,-77.138855,5.346485,2.634985,1.796385,1.4056808,1.1941032,1.0755684,1.0156863,1.0003161,1.0261526,1.0988265,1.2362077,1.4810823,1.9447094,3.007273,7.276178,-15.823403,-3.8272767,-2.2279897,-1.6173338,-1.3108947,-1.1407393,-1.0470383,-1.0049981,-1.0051575,-1.0475507,-1.141726,-1.3126456,-1.6205745,-2.234954,-3.8496404,-16.22628,7.1946645,2.9939268,1.9396257,1.4785568,1.2347984,1.0980417,1.0257827,1.0002779,1.0159701,1.0762398,1.1953311,1.4078691,1.8006117,2.6451266,5.3907895,-68.796295,-4.673345,-2.4703684,-1.7262237,-1.3690205,-1.1734895,-1.0643799,-1.0111248,-1.0013868,-1.0330802,-1.1131836,-1.2619029,-1.5275486,-2.0389647,-3.26289,-9.078149,11.035655,3.475539,2.1131067,1.5632995,1.2815195,1.1242015,1.0385696,1.0026174,1.0083574,1.0570165,1.1597283,1.3445824,1.6801234,2.3658752,4.2896194,29.266897,-6.0182366,-2.7793157,-1.8555318,-1.4360937,-1.2111392,-1.0849255,-1.0197616,-1.0000077,-1.0213957,-1.0885565,-1.2177112,-1.4478587,-1.8786738,-2.837243,-6.312654,23.800257,4.153669,2.3267655,1.6625292,1.3351983,1.1544387,1.0542136,1.0073636,1.0032194,1.0408962,1.1287899,1.2896768,1.5782423,2.1445253,3.5690403,12.079688,-8.477656,-3.185291,-2.0109632,-1.5138662,-1.254352,-1.1089585,-1.031012,-1.0010035,-1.0123453,-1.0674722,-1.1792184,-1.3791907,-1.7455672,-2.5150654,-4.847284,-149.819,5.175628,2.5952933,1.7797369,1.3970389,1.1892457,1.0729172,1.0145718,1.0004939,1.0276588,1.102001,1.2419089,1.491359,1.9653392,3.0618815,7.6213627,-14.394103,-3.7404442,-2.2004797,-1.6045536,-1.3039776,-1.136842,-1.045022,-1.0043863,-1.005819,-1.0496312,-1.1457186,-1.3197293,-1.6337097,-2.2634518,-3.941765,-18.064373,6.886591,2.9418366,1.9196231,1.4685392,1.2292227,1.0949402,1.0243306,1.0001494,1.0171381,1.0789577,1.2002921,1.4167161,1.8177454,2.6865041,5.5764546,-48.02174,-4.5430017,-2.4358113,-1.7111152,-1.3610439,-1.1690034,-1.061969,-1.0101956,-1.0017381,-1.0347862,-1.116636,-1.2680662,-1.538754,-2.0620494,-3.3279626,-9.624496,10.323188,3.4044247,2.088724,1.5516183,1.2751254,1.120608,1.0367618,1.0021809,1.0091996,1.0593191,1.1640512,1.3522534,1.694528,2.3982234,4.4051347,35.855488,-5.8020597,-2.7348747,-1.8375053,-1.4268725,-1.2059807,-1.0820833,-1.018502,-1.0000522,-1.0227519,-1.0915269,-1.2230737,-1.4574732,-1.8976461,-2.8854847,-6.570342,20.704296,4.0510354,2.2964675,1.648806,1.327845,1.1502935,1.0520291,1.0066146,1.0037448,1.0428116,1.1325418,1.2963423,1.5904874,2.1704645,3.647613,13.068144,-8.052015,-3.1259687,-1.989202,-1.503164,-1.2484312,-1.105647,-1.0294076,-1.0007412,-1.0133699,-1.0700037,-1.1838893,-1.3874964,-1.7614324,-2.5521111,-4.9962378,-2593.7473,5.0155454,2.5568328,1.7634437,1.388547,1.18448,1.0703244,1.0135009,1.0007112,1.0292102,1.1052375,1.2477125,1.5018392,1.9865165,3.1187062,8.001746,-13.203429,-3.6577039,-2.1737578,-1.5920361,-1.2971841,-1.1330159,-1.0430545,-1.0038135,-1.0065237,-1.0517591,-1.1497798,-1.3269339,-1.6471086,-2.292741,-4.03857,-20.373003,6.604067,2.89164,1.9000564,1.4586898,1.2237518,1.0919029,1.0229248,1.0000606,1.0183475,1.081732,1.2053422,1.4257318,1.8352813,2.7294123,5.776103,-36.89535,-4.4200473,-2.4023418,-1.6963533,-1.3532225,-1.1645972,-1.0596106,-1.0093079,-1.0021291,-1.0365433,-1.1201628,-1.274333,-1.5501726,-2.0857172,-3.395736,-10.240454,9.697495,3.3362908,2.0649781,1.5401708,1.2688293,1.1170729,1.0350031,1.0017848,1.0100822,1.0616709,1.1684475,1.3600569,1.7092496,2.4315653,4.5272264,46.307415,-5.6006174,-2.6917827,-1.8199182,-1.4178355,-1.2009194,-1.0793018,-1.0172871,-1.000136,-1.0241522,-1.0945566,-1.2285458,-1.4672987,-1.9171536,-2.9354513,-6.8498926,18.324272,3.95362,2.2670724,1.6353713,1.3206241,1.146223,1.0498948,1.0059048,1.0043125,1.044773,1.1363592,1.3031205,1.6029724,2.197094,3.7298737,14.233392,-7.6673603,-3.0689342,-1.9679326,-1.4926455,-1.2426219,-1.1024027,-1.0278506,-1.0005189,-1.0144354,-1.0725896,-1.1886444,-1.3959581,-1.7776595,-2.590463,-5.155244,169.6059,4.8654313,2.5196383,1.7475338,1.380222,1.1797986,1.0677862,1.0124723,1.0009682,1.030811,1.108545,1.2536131,1.512515,2.0082088,3.177735,8.421907,-12.195132,-3.578683,-2.1477609,-1.5797744,-1.2904956,-1.1292506,-1.0411308,-1.0032824,-1.0072675,-1.0539374,-1.1539156,-1.3342704,-1.6607953,-2.3228915,-4.140417,-23.367561,6.343445,2.8431225,1.881004,1.4490522,1.2183772,1.0889251,1.021563,1.0000112,1.0196002,1.0845636,1.210483,1.4349424,1.8532767,2.7737157,5.9902844,-29.955904,-4.3037376,-2.3698716,-1.6819097,-1.3455431,-1.1602697,-1.0573044,-1.0084594,-1.0025612,-1.0383431,-1.123748,-1.2807128,-1.5618242,-2.1100187,-3.4664671,-10.941103,9.143656,3.2709572,2.0417905,1.5289239,1.26266,1.1136123,1.0332912,1.0014286,1.0110062,1.0640754,1.1729234,1.3680053,1.7242978,2.466031,4.6567917,65.29847,-5.4133396,-2.6502306,-1.802735,-1.4089675,-1.1959473,-1.0765771,-1.0161152,-1.0002594,-1.0256004,-1.0976543,-1.2341026,-1.4772921,-1.9370947,-2.9872987,-7.154583,16.435596,3.8609283,2.2385073,1.6222174,1.3135158,1.1422164,1.0478055,1.0052373,1.0049193,1.0467832,1.1402476,1.310022,1.6157193,2.224474,3.8160841,15.6311865,-7.317247,-3.01393,-1.9472392,-1.4823562,-1.236915,-1.0992205,-1.0263387,-1.0003362,-1.0155432,-1.0752306,-1.1934851,-1.4046006,-1.7943003,-2.629993,-5.324497,82.119644,4.724223,2.4836073,1.7319763,1.37205,1.1752003,1.0653019,1.0114833,1.0012655,1.0324535,1.1119083,1.2596198,1.5234039,2.0304608,3.2391713,8.8890085,-11.330326,-3.5031395,-2.1224005,-1.5677325,-1.2839421,-1.1255637,-1.0392598,-1.0027914,-1.0080522,-1.0561664,-1.1581272,-1.3417418,-1.674778,-2.354016,-4.247973,-27.383965,6.103406,2.7964268,1.8624027,1.4395974,1.2130975,1.0860064,1.0202451,1.0000013,1.0208993,1.0874602,1.2157286,1.4443074,1.8716583,2.8195937,6.221216,-25.21445,-4.193554,-2.3383586,-1.6677752,-1.3379849,-1.1560096,-1.0550443,-1.0076543,-1.0030322,-1.0401903,-1.1274006,-1.2872078,-1.5737147,-2.1349785,-3.54035,-11.745169,8.648849,3.2081082,2.0192509,1.5179262,1.2565997,1.1102167,1.0316255,1.0011121,1.011972,1.0665327,1.1774806,1.3761216,1.7397206,2.501501,4.793844,110.703094,-5.238382,-2.610043,-1.7859429,-1.4002646,-1.191063,-1.0739082,-1.0149833,-1.0004227,-1.02709,-1.1008056,-1.239759,-1.4874816,-1.9575331,-3.041133,-7.48795,14.900406,3.7726288,2.2106729,1.6093055,1.3065518,1.1382922,1.0457709,1.0046105,1.0055664,1.0488427,1.1442078,1.3170491,1.6287353,2.2527044,3.9067574,17.329605,-6.9987164,-2.9611042,-1.9270519,-1.4722655,-1.2313088,-1.0960999,-1.0248717,-1.000193,-1.0166965,-1.0779339,-1.198425,-1.4133856,-1.8112866,-2.6708555,-5.5054655,54.176453,4.591156,2.448687,1.7167602,1.3640083,1.1706729,1.0628651,1.0105385,1.0016019,1.0341424,1.1153363,1.2657346,1.5345119,2.0532937,3.303163,9.411359,-10.578741,-3.43068,-2.0977736,-1.5559624,-1.2775049,-1.121945,-1.0374364,-1.0023404,-1.0088779,-1.0584468,-1.1624156,-1.3493696,-1.6891004,-2.3860028,-4.3611617,-33.069183,5.881094,2.751347,1.8442377,1.4303211,1.2079107,1.0831459,1.0189677,1.0000309,1.0222392,1.0904083,1.2210557,1.4538534,1.8904836,2.8671305,6.4709325,-21.769594,-4.089029,-2.3076894,-1.6539077,-1.3305813,-1.151836,-1.0528407,-1.00689,-1.0035433,-1.0420853,-1.131122,-1.2938205,-1.5858508,-2.1606853,-3.6177886,-12.679775,8.206174,3.1478949,1.9972814,1.5071446,1.2506464,1.1068854,1.0300059,1.0008352,1.012982,1.06905,1.1821314,1.3843699,1.7554531,2.5381079,4.939409,363.41272,-5.074573,-2.571156,-1.7695302,-1.3917233,-1.1862535,-1.0712883,-1.0138967,-1.0006253,-1.0286243,-1.1040188,-1.2455169,-1.4978721,-1.9784865,-3.0970676,-7.854227,13.6251745,3.6882198,2.1836722,1.5966905,1.2997123,1.1344396,1.0437852,1.004024,1.0062542,1.0509517,1.1482413,1.3242222,1.6420608,2.2816808,4.0017705,19.442963,-6.7070146,-2.9102106,-1.9073532,-1.4623686,-1.2258012,-1.0930399,-1.0234457,-1.0000892,-1.0178899,-1.080687,-1.2034416,-1.4223378,-1.8286705,-2.7131164,-5.6994004,40.423107,4.465552,2.4147484,1.7018403,1.3561329,1.1662369,1.0604872,1.0096352,1.001978,1.0358776,1.1188298,1.2719592,1.5458446,2.0767865,3.3700354,10.00087,-9.922528,-3.3614528,-2.073792,-1.5444282,-1.2711821,-1.1183934,-1.03566,-1.0019294,-1.009747,-1.0607846,-1.1667929,-1.3571197,-1.7037022,-2.418968,-4.4807286,-41.735615,5.6746244,2.7078025,1.8264949,1.4212195,1.2028153,1.0803429,1.0177397,1.0000998,1.0236195,1.0934231,1.2264915,1.4636081,1.909815,2.9165363,6.7424974,-19.147959,-3.9895058,-2.2779744,-1.6403661,-1.3233112,-1.1477376,-1.0506878,-1.0061667,-1.0040945,-1.0440285,-1.134913,-1.300553,-1.5982393,-2.1869767,-3.6984386,-13.7708,7.805979,3.0898821,1.9758108,1.4965484,1.244784,1.1036096,1.028428,1.0005975,1.0140316,1.0716155,1.186855,1.3927728,1.7715434,2.575905,5.0942974,-283.29453,-4.920887,-2.5335093,-1.7534847,-1.3833398,-1.1815522,-1.068736,-1.0128548,-1.000868,-1.030208,-1.1073027,-1.2513925,-1.5084947,-2.000026,-3.155369,-8.259556,12.553868,3.6078367,2.1574073,1.5843338,1.2929947,1.1306573,1.041848,1.0034778,1.0069826,1.053111,1.1523489,1.3314912,1.6556056,2.3114312,4.1019344,22.151836,-6.4382744,-2.8610313,-1.8880806,-1.4526374,-1.2203776,-1.0900326,-1.0220675,-1.000025,-1.0191263,-1.0834972,-1.2085483,-1.4314609,-1.8464649,-2.756847,-5.90774,32.23989,4.3468037,2.3819878,1.6873134,1.3484193,1.1618696,1.0581559,1.0087713,1.0023952,1.037664,1.1223984,1.2783118,1.557436,2.100848,3.4396377,10.667889,-9.343318,-3.2950914,-2.050433,-1.5331236,-1.264971,-1.1149081,-1.0339305,-1.0015581,-1.0106533,-1.0631634,-1.171228,-1.364994,-1.7186638,-2.4530385,-4.6075397,-56.609535,5.4819183,2.6656182,1.8091193,1.4122669,1.1977977,1.0775902,1.0165488,1.0002086,1.025051,1.0964832,1.231998,1.473505,1.9295259,2.9675412,7.0366497,-17.099392,-3.8953106,-2.2491717,-1.6270761,-1.3161545,-1.1437036,-1.0485798,-1.0054824,-1.0046874,-1.0460252,-1.1387839,-1.3074244,-1.6109177,-2.214137,-3.7833397,-15.074817,7.4449577,3.034352,1.9549736,1.4862084,1.2390528,1.1004119,1.0269029,1.0004004,1.0151209,1.0742422,1.1916752,1.4013549,1.7880429,2.6150463,5.259844,-101.76458,-4.776078,-2.496959,-1.737758,-1.3750906,-1.1769116,-1.0662254,-1.01185,-1.0011492,-1.0318294,-1.110634,-1.2573446,-1.5192769,-2.022012,-3.2157378,-8.707063,11.641234,3.5308363,2.1317885,1.5721995,1.286381,1.1269356,1.0399544,1.0029705,1.0077537,1.0553262,1.1565421,1.3389297,1.6695098,2.3422122,4.206888,25.718714,-6.1916313,-2.8138218,-1.8693572,-1.4431375,-1.2150753,-1.087099,-1.0207365,-1.0000004,-1.0204092,-1.0863718,-1.2137592,-1.4407816,-1.8647279,-2.8022342,-6.1327057,26.802002,4.234104,2.350043,1.6730294,1.3408087,1.1576012,1.0558875,1.0079527,1.00285,1.039489,1.1260169,1.2847476,1.5692074,2.1254978,3.5124974,11.432712,-8.8271475,-3.2312732,-2.0276184,-1.5220164,-1.2588552,-1.1114799,-1.0322435,-1.001226,-1.0116056,-1.0656068,-1.1757655,-1.3730541,-1.7338847,-2.4880097,-4.7412605,-87.72545,5.3029165,2.6250248,1.7922231,1.4035237,1.1928926,1.074894,1.015401,1.0003572,1.0265272,1.099619,1.2376304,1.4836448,1.9498247,3.0207458,7.359577,-15.4400835,-3.80518,-2.2210402,-1.6141257,-1.3091601,-1.1397619,-1.0465316,-1.0048419,-1.0053179,-1.0480611,-1.1427076,-1.3143872,-1.6238637,-2.242071,-3.8723876,-16.652365,7.1145926,2.9806423,1.9345489,1.476019,1.2333952,1.0972606,1.0254155,1.000242,1.0162581,1.0769116,1.1965585,1.4100571,1.8048422,2.655303,5.4358473,-62.141117,-4.640369,-2.4617136,-1.7223786,-1.3669932,-1.1723537,-1.0637686,-1.0108873,-1.0014714,-1.0335048,-1.1140459,-1.2634332,-1.5303288,-2.0446792,-3.278905,-9.208792,10.849119,3.4575374,2.106973,1.560368,1.2799162,1.1233002,1.0381176,1.0025057,1.0085621,1.0575929,1.160812,1.3465055,1.6837168,2.3739195,4.3180814,30.684856,-5.9623446,-2.7680342,-1.8509858,-1.4337722,-1.2098411,-1.0842097,-1.0194427,-1.0000151,-1.0217294,-1.0892909,-1.219038,-1.4502361,-1.8833395,-2.849024,-6.3745213,22.950598,4.1272607,2.3190343,1.6590503,1.3333364,1.1533891,1.0536594,1.0071713,1.0033473,1.0413705,1.1297213,1.2913318,1.5812799,2.1509433,3.588279,12.311584,-8.367457,-3.1702943,-2.0054913,-1.5111809,-1.2528764,-1.1081327,-1.0306106,-1.0009335,-1.0126,-1.0681039,-1.1803854,-1.3812649,-1.7495238,-2.5242712,-4.883885,-195.97974,5.134641,2.585561,1.775629,1.3949012,1.1880507,1.0722663,1.0143011,1.0005443,1.028041,1.1028012,1.2433361,1.4939343,1.9705323,3.076017,7.7138915,-14.074832,-3.719271,-2.1936893,-1.6013811,-1.3022575,-1.1358731,-1.0445226,-1.0042388,-1.0059919,-1.0501566,-1.1467232,-1.3215115,-1.6370203,-2.2706683,-3.965425,-18.588963,6.813961,2.9291608,1.9147168,1.4660741,1.2278643,1.0941707,1.0239729,1.0001233,1.0174382,1.07965,1.2015537,1.4189676,1.8221173,2.697132,5.6252155,-44.666615,-4.5117254,-2.4273791,-1.7074082,-1.3590825,-1.1678985,-1.0613767,-1.0099707,-1.0018318,-1.0352185,-1.1175061,-1.2696015,-1.5416042,-2.0679436,-3.344739,-9.772292,10.158311,3.387016,2.082693,1.5487176,1.2735351,1.1197147,1.0363194,1.0020785,1.0094156,1.0599,1.1651387,1.3541837,1.6981646,2.406433,4.434908,37.98561,-5.7506456,-2.7240295,-1.8330435,-1.4245836,-1.2046993,-1.0813783,-1.0181924,-1.0000695,-1.0230999,-1.0922831,-1.2244375,-1.4599205,-1.9024957,-2.8977592,-6.6377897,20.055426,4.0263114,2.2890666,1.6454331,1.3260342,1.1492727,1.0514928,1.0064344,1.0038822,1.0432909,1.1334952,1.2980355,1.5936031,2.1770926,3.6679444,13.342816,-7.9516582,-3.1114144,-1.9838152,-1.5005056,-1.2469746,-1.104833,-1.0290155,-1.0006821,-1.0136313,-1.0706427,-1.1850657,-1.3895892,-1.7654397,-2.5615244,-5.034804,859.2919,4.976908,2.547366,1.7594087,1.3864386,1.1832947,1.069681,1.0132382,1.0007721,1.0296075,1.1060613,1.2491724,1.5044785,1.991868,3.1331909,8.102395,-12.936968,-3.6376839,-2.1672163,-1.5889585,-1.295511,-1.1320738,-1.0425719,-1.0036762,-1.006707,-1.0523022,-1.150813,-1.3287665,-1.6505233,-2.3002415,-4.0636945,-21.049707,6.5366635,2.8793018,1.8952681,1.4562721,1.2224042,1.0911556,1.0225815,1.0000446,1.0186554,1.0824319,1.206614,1.428004,1.839713,2.7401972,5.828493,-34.864002,-4.3901916,-2.3940833,-1.6926911,-1.3512778,-1.1635015,-1.0590258,-1.0090911,-1.0022337,-1.0369872,-1.1210495,-1.2759113,-1.5530527,-2.0917096,-3.413069,-10.406398,9.553334,3.319763,2.0591602,1.5373552,1.2672975,1.1161964,1.0345682,1.0016915,1.0103106,1.0622706,1.1695656,1.3620422,1.7130029,2.4401126,4.559034,49.923615,-5.5527506,-2.681302,-1.8156011,-1.4156111,-1.1996727,-1.0786179,-1.0169913,-1.0001631,-1.0245079,-1.0953207,-1.2299073,-1.4697938,-1.9221228,-2.9483097,-6.9240265,17.809498,3.9298768,2.2598116,1.6320372,1.3188286,1.1452109,1.049366,1.0057348,1.00446,1.0452691,1.137321,1.3048278,1.6061226,2.2038422,3.750966,14.556771,-7.5772495,-3.0550697,-1.9626795,-1.4900389,-1.2411771,-1.1015965,-1.0274662,-1.0004692,-1.01471,-1.0732486,-1.1898538,-1.3981112,-1.7817988,-2.6001875,-5.196366,134.0386,4.829459,2.5105574,1.7436264,1.3781724,1.1786456,1.0671624,1.0122226,1.0010383,1.0312119,1.1093849,1.2551137,1.5152332,2.0137515,3.1929538,8.534669,-11.9654,-3.5593653,-2.1413336,-1.57673,-1.2888523,-1.1283259,-1.0406603,-1.0031564,-1.007459,-1.0544878,-1.1549574,-1.3361186,-1.66425,-2.3305392,-4.1666136,-24.244514,6.2812924,2.8312218,1.8762839,1.4466572,1.2170405,1.0881855,1.0212275,1.000005,1.019922,1.0852848,1.2117902,1.4372582,1.8578142,2.784992,6.0461617,-28.61555,-4.2757406,-2.361935,-1.6783606,-1.3436522,-1.159204,-1.056738,-1.0082531,-1.0026759,-1.0388032,-1.1246603,-1.2823353,-1.5647919,-2.116233,-3.4847438,-11.132739,9.0142355,3.2549467,2.036122,1.5261642,1.2611405,1.1127605,1.032872,1.001346,1.0112429,1.0646824,1.1740509,1.370008,1.7280979,2.4746766,4.6905,72.80855,-5.3682275,-2.6399975,-1.7984756,-1.4067633,-1.1947107,-1.0759006,-1.0158273,-1.0002967,-1.0259672,-1.0984335,-1.235502,-1.4798114,-1.9421383,-3.0005171,-7.234781,16.024324,3.838537,2.2315178,1.6189841,1.3117864,1.1412227,1.0472893,1.0050759,1.0050782,1.0472965,1.1412367,1.3117774,1.6189672,2.2314816,3.8384213,16.02224,-7.235203,-3.000586,-1.9421645,-1.4798245,-1.2355093,-1.0984375,-1.0259691,-1.0002968,-1.0158257,-1.0758971,-1.1947043,-1.4067945,-1.7985357,-2.640142,-5.368861,72.69011,4.6900187,2.4747221,1.7281177,1.3700184,1.1740568,1.0646856,1.011244,1.0013456,1.0328698,1.1127561,1.2611326,1.5261499,2.0360928,3.2548647,9.013578,-11.133744,-3.4848385,-2.1162653,-1.5647498,-1.2823123,-1.1246473,-1.0387967,-1.0026742,-1.008256,-1.056735,-1.1591984,-1.3436425,-1.6783422,-2.3618937,-4.275596,-28.608892,6.0464554,2.7850509,1.857838,1.4372704,1.211797,1.0852885,1.0199237,1.0000049,1.0212257,1.088196,1.2170595,1.4466912,1.8763505,2.8313897,6.2821646,-24.249296,-4.166751,-2.330579,-1.664268,-1.3361282,-1.1549629,-1.0544907,-1.0074601,-1.0031557,-1.0406579,-1.1283212,-1.2888438,-1.5767143,-2.1413004,-3.5592663,-11.964238,8.53305,3.192737,2.0136728,1.5151945,1.2550924,1.1093729,1.0312139,1.0010388,1.0122213,1.0671592,1.1786397,1.3781618,1.743606,2.5105104,4.8292737,133.89256,-5.196582,-2.6002383,-1.7818202,-1.3981223,-1.18986,-1.0732521,-1.0147114,-1.0004699,-1.0274715,-1.1016079,-1.2411975,-1.4900756,-1.9627539,-3.054998,-7.5767865,14.558493,3.7510765,2.2038774,1.6061388,1.3048368,1.137326,1.0452718,1.0044607,1.0057338,1.0493633,1.1452056,1.3188193,1.63202,2.2597742,3.9302115,17.816587,-6.922965,-2.9481268,-1.9220523,-1.4697584,-1.2299143,-1.0953246,-1.0245098,-1.0001632,-1.0169897,-1.0786144,-1.1996661,-1.4155996,-1.8155788,-2.681248,-5.5525036,49.9439,4.559199,2.4401567,1.7130224,1.3620524,1.1695497,1.0622622,1.0103074,1.0016928,1.0345743,1.1162088,1.2672896,1.5373405,2.05913,3.3196776,9.552596,-10.407275,-3.4131598,-2.0917408,-1.5530677,-1.2759196,-1.1210542,-1.0369896,-1.0022343,-1.00909,-1.0590228,-1.1634959,-1.3513054,-1.6927428,-2.3941998,-4.3906116,-34.891216,5.827744,2.7402542,1.8397361,1.4280158,1.2066207,1.0824355,1.0186571,1.0000445,1.0225797,1.0911517,1.2223973,1.4562595,1.8952432,2.8792384,6.53632,-21.053308,-4.063825,-2.3002803,-1.6504749,-1.3287405,-1.1507982,-1.0522945,-1.0067043,-1.0036781,-1.0425695,-1.1320689,-1.2955023,-1.5889426,-2.1671822,-3.6375804,-12.93561,8.102925,3.1332667,1.991896,1.5044923,1.24918,1.1060655,1.0296096,1.0007725,1.0132369,1.0696901,1.1833115,1.3864685,1.7594657,2.5474997,4.9774513,853.32513,-5.035006,-2.5615735,-1.7654606,-1.3896002,-1.185072,-1.070646,-1.0136327,-1.0006819,-1.0290135,-1.1048288,-1.2469671,-1.5004919,-1.9837874,-3.1113398,-7.9511476,13.338845,3.667655,2.1769984,1.5935589,1.2980114,1.1334817,1.0432934,1.0038829,1.0064335,1.05149,1.1492673,1.3260248,1.6454157,2.2890284,4.0261836,20.052156,-6.6381445,-2.8978236,-1.9025208,-1.4599332,-1.2244446,-1.0922871,-1.0231017,-1.0000693,-1.0181968,-1.0813884,-1.2047174,-1.424616,-1.8331065,-2.7239733,-5.7503815,37.997356,4.435064,2.4064758,1.6981835,1.3541937,1.1651444,1.059903,1.0094167,1.0020779,1.036317,1.1197102,1.273527,1.5487027,2.082662,3.3872612,10.160609,-9.770166,-3.3445003,-2.0678596,-1.5415636,-1.2696096,-1.1175107,-1.0352207,-1.0018322,-1.0099695,-1.0613736,-1.1678927,-1.3590722,-1.707389,-2.4273357,-4.511564,-44.650387,5.6254687,2.6971872,1.8221399,1.4189793,1.2015358,1.0796403,1.0174339,1.0001236,1.023978,1.0941815,1.2278572,1.4660614,1.9146914,2.9290955,6.8135877,-18.59177,-3.9655488,-2.270706,-1.6370376,-1.3215208,-1.1467284,-1.0501593,-1.0059929,-1.0042381,-1.04452,-1.1358681,-1.3022487,-1.6014259,-2.1937854,-3.719569,-14.079257,7.712571,3.0758166,1.9705596,1.4939477,1.2433435,1.1028054,1.028043,1.0005445,1.0142996,1.072263,1.1880445,1.3948902,1.7756078,2.5855112,5.134431,-196.29279,-4.8840747,-2.5243187,-1.7494676,-1.3812355,-1.1803688,-1.0680948,-1.0125962,-1.0009345,-1.0306085,-1.1081284,-1.2528687,-1.5111668,-2.005463,-3.1702166,-8.366892,12.312815,3.5883796,2.1509767,1.5812956,1.2913404,1.129726,1.0413729,1.003348,1.0071703,1.0536673,1.1534039,1.3333627,1.6590993,2.319143,4.12763,22.946318,-6.374848,-2.849086,-1.8833638,-1.4502485,-1.2190449,-1.0892947,-1.0217311,-1.0000151,-1.019441,-1.0842059,-1.2098343,-1.4337602,-1.8509623,-2.767976,-5.962059,30.692516,4.3176756,2.3738053,1.6836658,1.3464782,1.1607968,1.0575848,1.0085632,1.0025051,1.0381153,1.1232955,1.279908,1.5603527,2.1069412,3.4574444,10.848165,-9.209478,-3.2789884,-2.044709,-1.5303432,-1.2634412,-1.1140503,-1.0335071,-1.0014702,-1.0108906,-1.0637773,-1.1723697,-1.3670218,-1.7224327,-2.4616685,-4.640198,-62.109715,5.4360833,2.6553562,1.8048644,1.4100685,1.1965648,1.076915,1.0162596,1.0002418,1.0254136,1.0972567,1.2333881,1.476006,1.9345227,2.9808295,7.1157146,-16.646172,-3.8720636,-2.2419703,-1.6238173,-1.3143963,-1.1427127,-1.0480638,-1.0053188,-1.0048411,-1.0465289,-1.1397569,-1.3091512,-1.614109,-2.2210042,-3.8050666,-15.438148,7.360014,3.0208158,1.9498514,1.4836581,1.2376101,1.0996078,1.0265219,1.0003566,1.0154049,1.0749035,1.1928864,1.4035125,1.7922013,2.624973,5.302692,-87.78811,-4.7414393,-2.4880557,-1.7339048,-1.3730646,-1.1757715,-1.0656099,-1.0116069,-1.0012255,-1.0322413,-1.1114756,-1.2588474,-1.5220555,-2.0276985,-3.2314954,-8.82888,11.429798,3.5122328,2.1255302,1.5692228,1.2847561,1.1260216,1.0394914,1.0028507,1.0079517,1.0558846,1.1575958,1.3407991,1.6730111,2.3500025,4.233962,26.796162,-6.133008,-2.802294,-1.8646622,-1.4407482,-1.2137406,-1.0863615,-1.0204046,-1.0000004,-1.0207347,-1.0870951,-1.2150685,-1.4431252,-1.8693333,-2.8137617,-6.1913238,25.724094,4.2070284,2.3422527,1.6695279,1.3389394,1.1565475,1.0553291,1.0077548,1.0029699,1.039961,1.1269487,1.2864043,1.572242,2.1318784,3.531104,11.640136,-8.707675,-3.2158175,-2.0220408,-1.519291,-1.2573525,-1.1106383,-1.0318316,-1.0011495,-1.0118487,-1.0662222,-1.1769056,-1.3750801,-1.737738,-2.4969125,-4.7758965,-101.68039,5.2600646,2.6150978,1.7880645,1.4013661,1.1916815,1.0742457,1.0151278,1.0003994,1.0268936,1.1003923,1.2390177,1.4862449,1.9550472,3.0345466,7.446187,-15.069744,-3.7830307,-2.2140393,-1.6108721,-1.3073999,-1.1387701,-1.046018,-1.0046853,-1.0054848,-1.0485872,-1.1437178,-1.3161796,-1.6271228,-2.249135,-3.8951912,-17.097017,7.037049,2.967609,1.9295518,1.4735179,1.2320051,1.0964872,1.0250529,1.0002087,1.0165473,1.0775867,1.1977913,1.4122553,1.8090972,2.6655648,5.4816775,-56.63562,-4.607708,-2.4530833,-1.7186834,-1.3650432,-1.1712556,-1.0631782,-1.010659,-1.0015559,-1.0339367,-1.1149205,-1.264993,-1.5331635,-2.050515,-3.295323,-9.345262,10.665354,3.4393845,2.1007612,1.5573944,1.278289,1.1223855,1.0376576,1.0023936,1.0087744,1.0581641,1.161885,1.3484094,1.6872948,2.381946,4.3466535,32.23144,-5.90802,-2.7569044,-1.846488,-1.4314728,-1.2085549,-1.0835009,-1.019128,-1.0000249,-1.0220658,-1.0900288,-1.2203707,-1.452625,-1.8880562,-2.8609688,-6.4379416,22.155825,4.1020675,2.3116174,1.65569,1.3315365,1.1523745,1.0531244,1.0069798,1.0034796,1.0418549,1.1306705,1.2930185,1.5843774,2.1574996,3.6081166,12.557385,-8.258041,-3.1551576,-1.9999483,-1.5084566,-1.2513715,-1.107291,-1.0302023,-1.0008671,-1.0128535,-1.0687327,-1.1815461,-1.3833289,-1.7534642,-2.533461,-4.920694,-282.64297,5.094505,2.575955,1.7715644,1.3927838,1.186861,1.0716188,1.0140331,1.0005972,1.0284259,1.1036054,1.2447764,1.4965348,1.9757833,3.0898085,7.8054867,-13.778115,-3.698948,-2.1871412,-1.5983163,-1.3005948,-1.1348994,-1.0440215,-1.0040925,-1.0061692,-1.0506953,-1.1477522,-1.3233368,-1.6404139,-2.2780788,-3.9898505,-19.156157,6.7414913,2.9163575,1.9097453,1.4635732,1.226472,1.0934123,1.0236214,1.0000999,1.0177381,1.0803393,1.2028087,1.4212078,1.826472,2.7077472,5.6743665,-41.74979,-4.480888,-2.4190114,-1.7037214,-1.3571298,-1.1667986,-1.0607877,-1.0097482,-1.0019279,-1.0356535,-1.1183803,-1.2711587,-1.5443856,-2.073704,-3.3612003,-9.920237,10.003198,3.370289,2.0766442,1.5458037,1.2719369,1.1188172,1.0358713,1.0019767,1.0096384,1.0604956,1.1662526,1.3561608,1.7018926,2.4148672,4.4656897,40.434742,-5.699173,-2.7130678,-1.8286506,-1.4223275,-1.2034359,-1.0806838,-1.0178884,-1.0000893,-1.0234473,-1.0930359,-1.2257941,-1.4623559,-1.9073278,-2.910146,-6.7066526,19.446035,4.0018964,2.2817187,1.6420782,1.3242316,1.1482565,1.0509597,1.0062567,1.0040219,1.0437778,1.1344253,1.299687,1.596644,2.183573,3.687914,13.620844,-7.8528576,-3.0968642,-1.978411,-1.4978348,-1.2454962,-1.1040074,-1.0286188,-1.0006245,-1.0139005,-1.0712976,-1.1862705,-1.3917329,-1.7695487,-2.5711994,-5.074753,362.47464,4.9392385,2.5380657,1.7554351,1.3843604,1.1821262,1.0690471,1.0129808,1.000835,1.0300038,1.1068811,1.2506387,1.5071309,1.9972534,3.1478186,8.20563,-12.681079,-3.617891,-2.160719,-1.5858966,-1.2938453,-1.1311361,-1.0420924,-1.0035453,-1.0068873,-1.0528326,-1.1518205,-1.330554,-1.6538568,-2.3075771,-4.0893917,-21.780195,6.470007,2.866958,1.8904157,1.4538189,1.2210364,1.0903977,1.0222343,1.0000308,1.0189722,1.0831491,1.2079165,1.4303316,1.844258,2.7513971,5.8813367,-33.0614,-4.3610296,-2.385966,-1.689084,-1.3493608,-1.1624212,-1.0584497,-1.0088791,-1.0023398,-1.037434,-1.1219404,-1.2774967,-1.5559473,-2.097742,-3.4305885,-10.577835,9.41342,3.3034062,2.0533798,1.5345538,1.2657574,1.1153493,1.0341487,1.0016032,1.010535,1.0628562,1.1706562,1.364056,1.7168139,2.4488096,4.5916166,54.242207,-5.5047984,-2.6707075,-1.8112254,-1.413354,-1.1984073,-1.0779243,-1.0166923,-1.0001931,-1.0248733,-1.0961034,-1.2313151,-1.4722768,-1.9270744,-2.9611628,-6.9990616,17.32747,3.9066522,2.252672,1.6287524,1.3170583,1.1442131,1.0488454,1.0055673,1.0046097,1.0457683,1.1382872,1.3065429,1.609289,2.2106373,3.7723076,14.895225,-7.48925,-3.0413373,-1.9576104,-1.4875199,-1.2397803,-1.1008176,-1.0270956,-1.0004234,-1.0149792,-1.0739176,-1.1910802,-1.4002954,-1.7860023,-2.6101837,-5.2389846,110.429504,4.793341,2.5013728,1.739665,1.3760926,1.1774755,1.0665299,1.0119708,1.0011123,1.0316274,1.1102206,1.2566065,1.5179385,2.0192761,3.2081778,8.649378,-11.746287,-3.540448,-2.1350112,-1.5737305,-1.2872163,-1.1274055,-1.0401927,-1.0030328,-1.0076532,-1.0550413,-1.1560041,-1.3379751,-1.6677231,-2.3382432,-4.1931543,-25.199596,6.22211,2.8197677,1.8717277,1.4443427,1.2157483,1.087471,1.0208914,1.0000012,1.0202497,1.0860167,1.2131162,1.4396307,1.862468,2.7965903,6.104228,-27.367203,-4.2475805,-2.3539038,-1.674762,-1.3417333,-1.1581223,-1.0561639,-1.0080513,-1.002792,-1.0392618,-1.1255679,-1.2839495,-1.5677459,-2.122429,-3.5030437,-11.329287,8.8896475,3.2392526,2.0304902,1.5234181,1.2596276,1.1119127,1.0324558,1.0012659,1.011482,1.0652927,1.1751833,1.3720198,1.7319189,2.483475,4.723713,81.96219,-5.3251486,-2.6301427,-1.7943629,-1.404633,-1.1934677,-1.0752212,-1.0155392,-1.0003368,-1.0263441,-1.0992317,-1.2369351,-1.4823925,-1.947312,-3.014122,-7.3184333,15.625732,3.8159845,2.2244425,1.6157047,1.310014,1.140243,1.046781,1.0049186,1.0052382,1.0478079,1.1422209,1.3135237,1.6222006,2.2384708,3.860811,16.433403,-7.1549954,-2.9873674,-1.9371209,-1.4773052,-1.2341099,-1.0976584,-1.0256023,-1.00026,-1.0161109,-1.0765669,-1.1959289,-1.4089347,-1.8026718,-2.6500785,-5.412666,65.39837,4.657287,2.4661613,1.7242436,1.3679768,1.1729074,1.0640666,1.0110028,1.0014298,1.0332972,1.1136245,1.2626818,1.5289634,2.0418718,3.2710297,9.144247,-10.940254,-3.4663851,-2.1099908,-1.5618109,-1.2807055,-1.1237439,-1.038341,-1.0025606,-1.0084604,-1.0573014,-1.1602641,-1.3455334,-1.6818912,-2.3698304,-4.3035913,-29.948608,5.990572,2.773774,1.8533003,1.4349544,1.2105023,1.0845742,1.0196049,1.0000111,1.021558,1.0889142,1.2183574,1.4490167,1.8809338,2.8429453,6.3425155,-23.347046,-4.1400447,-2.3227825,-1.660746,-1.3342441,-1.1539007,-1.0539296,-1.0072649,-1.0032842,-1.0411376,-1.1292639,-1.2905191,-1.5797882,-2.14779,-3.5787702,-12.196189,8.421406,3.1776667,2.0081837,1.5125027,1.2536063,1.1085413,1.030809,1.0009686,1.012471,1.067783,1.1797926,1.3802112,1.7475134,2.5195909,4.865243,169.37213,-5.155456,-2.5905132,-1.7777206,-1.3959899,-1.1886623,-1.0725994,-1.0144395,-1.0005182,-1.0278449,-1.1023908,-1.2426004,-1.4926069,-1.9678546,-3.0691335,-7.668665,14.228871,3.729574,2.1969976,1.6029276,1.303096,1.1363455,1.044766,1.0043105,1.0059073,1.0498973,1.1462275,1.3206322,1.6353865,2.2671053,3.9537275,18.32666,-6.849562,-2.9353933,-1.9171312,-1.4672875,-1.2285396,-1.0945606,-1.0241541,-1.0001361,-1.0172856,-1.0792983,-1.2009128,-1.4178239,-1.8198956,-2.691728,-5.600366,46.32487,4.5276947,2.4316914,1.7093049,1.3600862,1.168464,1.0616798,1.0100856,1.0017835,1.0349966,1.1170598,1.2688668,1.5402112,2.0650618,3.3365283,9.69959,-10.238118,-3.3954897,-2.0856316,-1.5501316,-1.2743105,-1.1201502,-1.036537,-1.0021286,-1.0093088,-1.0596133,-1.1646022,-1.3532312,-1.6963698,-2.402379,-4.4201827,-36.905045,5.775869,2.729363,1.8353043,1.4257437,1.2053487,1.0817356,1.018349,1.0000604,1.022923,1.0918989,1.2237449,1.4586773,1.9000313,2.8914564,6.6030583,-20.382706,-4.0389395,-2.292852,-1.6471591,-1.3269609,-1.149795,-1.0517672,-1.0065264,-1.0038115,-1.0430614,-1.1330293,-1.2972081,-1.5920802,-2.1738517,-3.6579916,-13.20732,8.000325,3.1185002,1.9864402,1.5018015,1.2476916,1.1052338,1.0292084,1.000711,1.0135021,1.0703274,1.1844853,1.3885565,1.763462,2.5568757,5.015721,-2546.7065,-4.9964366,-2.5521598,-1.7614532,-1.3875072,-1.1838955,-1.0700071,-1.0133712,-1.000741,-1.0294056,-1.1056428,-1.2484236,-1.5031246,-1.9891218,-3.125752,-8.05051,13.072128,3.6479125,2.1705623,1.5905334,1.2963673,1.1325558,1.0428188,1.0037429,1.0066172,1.0520368,1.1503081,1.3278708,1.6488545,2.2965739,4.0513916,20.713882,-6.569388,-2.8853097,-1.8976244,-1.4574622,-1.2230676,-1.0915234,-1.0227504,-1.0000521,-1.0185033,-1.0820866,-1.2059865,-1.4268829,-1.8375255,-2.734818,-5.80179,35.86595,4.405288,2.3982658,1.6945467,1.3522635,1.1640569,1.0593221,1.0092008,1.0021803,1.0367594,1.1205947,1.2751018,1.5515753,2.0886345,3.4041653,10.320706,-9.626654,-3.3282094,-2.0621364,-1.5387961,-1.268029,-1.1166236,-1.0347801,-1.0017368,-1.0101988,-1.0619775,-1.1690192,-1.3610721,-1.7111684,-2.4359324,-4.5434523,-48.0734,5.576237,2.6864564,1.8177258,1.4167061,1.2002864,1.0789546,1.0171367,1.0001495,1.0243323,1.0949436,1.229229,1.4685264,1.9195976,2.9417703,6.8862095,-18.067024,-3.9418871,-2.2634892,-1.6337268,-1.3197385,-1.1457238,-1.049634,-1.0058216,-1.0043842,-1.0450146,-1.1368276,-1.3039521,-1.6045065,-2.200379,-3.7401285,-14.389268,7.6231494,3.0621567,1.9652395,1.4913095,1.2418815,1.1019895,1.0276535,1.0004933,1.0145756,1.0729266,1.1892629,1.397059,1.7797754,2.5953848,5.176016,-149.48865,-4.84712,-2.515024,-1.7455494,-1.3791813,-1.1792132,-1.0674695,-1.0123453,-1.0010034,-1.0310119,-1.1089582,-1.2543515,-1.5138521,-2.0109346,-3.1852124,-8.477076,12.080871,3.5691397,2.1445894,1.5782727,1.2896934,1.1287992,1.040901,1.0032207,1.0073606,1.0542054,1.1544231,1.3351706,1.6624777,2.326614,4.153149,23.782711,-6.311474,-2.837017,-1.8785841,-1.4478247,-1.2176923,-1.088546,-1.0213909,-1.0000076,-1.0197645,-1.0849323,-1.2111515,-1.4361155,-1.8555745,-2.779422,-6.0184913,29.260803,4.289492,2.3658392,1.6801074,1.3445832,1.1597286,1.0570167,1.0083575,1.0026174,1.0385693,1.1241968,1.2815112,1.5632842,2.1130748,3.475445,11.034667,-9.07944,-3.2630498,-2.0390217,-1.5275764,-1.2619182,-1.1131964,-1.0330864,-1.0013881,-1.0111213,-1.064371,-1.1734726,-1.3689808,-1.7261484,-2.4705355,-4.673985,-68.93861,5.39015,2.6449816,1.8005514,1.4078379,1.1953136,1.0762303,1.0159675,1.0002782,1.0257862,1.098049,1.2348115,1.4785682,1.9396486,2.9939868,7.1950297,-16.22441,-3.8495388,-2.2349565,-1.6205754,-1.3126462,-1.1417263,-1.0475508,-1.0051575,-1.0049973,-1.0470357,-1.1407343,-1.3108857,-1.6173171,-2.2279198,-3.8270538,-15.819464,7.2770047,3.0074074,1.9447606,1.4811201,1.2362288,1.0988382,1.0261582,1.0003167,1.0156807,1.0755552,1.194079,1.4057225,1.7964654,2.6351779,5.347114,-77.00593,-4.70665,-2.4790502,-1.7299984,-1.3710089,-1.1746143,-1.064986,-1.0113616,-1.0013058,-1.0326643,-1.1123378,-1.2603862,-1.5247947,-2.0333126,-3.2471101,-8.951749,11.229766,3.4938328,2.1193137,1.5662613,1.2831384,1.1251118,1.0390313,1.0027333,1.0081522,1.0564461,1.1586543,1.342677,1.6765313,2.3578503,4.2613974,27.967905,-6.0754986,-2.790867,-1.8601733,-1.4384612,-1.2124625,-1.0856558,-1.020088,-1.0000027,-1.0210694,-1.0878364,-1.2164092,-1.4455262,-1.8740568,-2.8256192,-6.252266,24.71096,4.179789,2.334369,1.6659775,1.3370423,1.1554781,1.0547631,1.0075555,1.0030946,1.0404271,1.127867,1.2880366,1.5752342,2.1381793,3.5499172,11.855255,-8.5914135,-3.200517,-2.0164988,-1.5165789,-1.2558564,-1.1098006,-1.0314224,-1.0010756,-1.0120944,-1.0668409,-1.1780509,-1.3771154,-1.7416127,-2.5058856,-4.811054,-120.91529,5.217913,2.6052518,1.7839296,1.3992187,1.1904757,1.0735878,1.0148411,1.0004466,1.027285,1.101216,1.2404946,1.4888079,1.9602015,3.048214,7.5331626,-14.72339,-3.7615638,-2.2072206,-1.6076975,-1.305681,-1.1378016,-1.0455173,-1.0045342,-1.005651,-1.0491064,-1.1447133,-1.3179458,-1.630399,-2.2562492,-3.9182744,-17.566113,6.9611936,2.9546962,1.9245852,1.471029,1.2306211,1.0957175,1.024693,1.000178,1.0168391,1.0782653,1.1990297,1.414464,1.8133767,2.6759124,5.5283012,-52.026382,-4.5755153,-2.444519,-1.714935,-1.3630633,-1.1700972,-1.062556,-1.0104198,-1.0016481,-1.0343632,-1.1157824,-1.2665297,-1.5359582,-2.0562768,-3.3115954,-9.48313,10.491078,3.421771,2.0947092,1.5544925,1.2767,1.1214927,1.0372094,1.0022863,1.0089852,1.0587385,1.1629628,1.350322,1.6908921,2.390033,4.3756175,33.942287,-5.8546906,-2.7458706,-1.8420168,-1.4291842,-1.2072744,-1.0827955,-1.0188159,-1.0000372,-1.0224049,-1.0907704,-1.2217091,-1.4550253,-1.8928009,-2.8730214,-6.502652,21.414305,4.076698,2.3038154,1.6521481,1.3296379,1.1513041,1.0525607,1.0067947,1.003612,1.0423328,1.1316062,1.2946805,1.5874316,2.1639748,3.6277978,12.80824,-8.153482,-3.140458,-1.994546,-1.5057979,-1.2499018,-1.106469,-1.0298046,-1.0008031,-1.0131097,-1.0693649,-1.1827121,-1.3854024,-1.7574269,-2.5427248,-4.958074,-506.71707,5.055003,2.566426,1.7675227,1.3906761,1.1856767,1.0709748,1.0137676,1.0006526,1.0288137,1.1044134,1.2462233,1.499148,1.9810674,3.10401,7.9011903,-13.477076,-3.6776626,-2.1802502,-1.5950854,-1.2988406,-1.1339487,-1.043533,-1.0039514,-1.0063456,-1.0512269,-1.148766,-1.3251354,-1.6437601,-2.2854004,-4.0141134,-19.747213,6.671907,2.9039145,1.9048986,1.461132,1.2251124,1.0926577,1.0232726,1.000079,1.0180407,1.081032,1.2040694,1.4234586,1.8308525,2.718453,5.724398,-39.190655,-4.4504795,-2.4107065,-1.7000545,-1.3551862,-1.1657035,-1.0602019,-1.0095284,-1.0020264,-1.0360914,-1.1192586,-1.2727228,-1.5472364,-2.0798488,-3.3788304,-10.082006,9.84394,3.352752,2.0707502,1.5429599,1.2703761,1.117941,1.0354347,1.0018793,1.0098594,1.061083,1.16735,1.3581088,1.7055695,2.4232035,4.4963126,43.16465,-5.649586,-2.7024078,-1.824283,-1.4200821,-1.2021781,-1.0799929,-1.0175872,-1.0001113,-1.0237975,-1.0937924,-1.2271566,-1.464803,-1.9121892,-2.9226463,-6.776976,18.872633,3.977786,2.2744236,1.6387407,1.322437,1.1472449,1.0504297,1.0060816,1.0041642,1.0442678,1.1353782,1.3014451,1.5998833,2.1904879,3.709323,13.928432,-7.7583227,-3.0827317,-1.9731433,-1.4952278,-1.2440525,-1.1032013,-1.0282325,-1.0005704,-1.0141672,-1.0719434,-1.1874576,-1.3938453,-1.7736018,-2.5807672,-5.114571,231.30188,4.902147,2.5288393,1.7514836,1.3822917,1.1809628,1.0684166,1.0127258,1.0009001,1.0304029,1.1077049,1.2521116,1.5097961,2.002673,3.162591,8.311549,-12.435147,-3.5983212,-2.1542659,-1.5828503,-1.2921871,-1.1302027,-1.041616,-1.0034142,-1.0070738,-1.0533979,-1.1528933,-1.3324568,-1.6574081,-2.3154078,-4.114925,-22.547752,6.4059486,2.85496,1.8856851,1.4514245,1.2197009,1.0896579,1.0218966,1.0000197,1.0192856,1.0838561,1.2091998,1.4326255,1.8487422,2.762479,5.935162,-31.436113,-4.3322635,-2.3779097,-1.6854964,-1.3474526,-1.1613458,-1.057877,-1.0086695,-1.0024484,-1.0378838,-1.1228354,-1.2790892,-1.5588565,-2.1038144,-3.4482968,-10.755042,9.277567,3.287218,2.047637,1.531766,1.2642242,1.1144893,1.0337071,1.0015124,1.0107756,1.0634801,1.1718171,1.3660403,1.7205726,2.4574068,4.624043,59.271477,-5.4585752,-2.660403,-1.8069583,-1.4111506,-1.1971718,-1.0772474,-1.0164018,-1.0002251,-1.0252346,-1.096875,-1.2327021,-1.4747719,-1.9320561,-2.9741359,-7.075757,16.87089,3.8837101,2.2455828,1.6254848,1.315296,1.1432198,1.0483277,1.0054023,1.004762,1.0462704,1.1392579,1.3082656,1.6124718,2.21748,3.7939026,15.249829,-7.4032893,-3.027735,-1.9524719,-1.4849633,-1.2383068,-1.0999961,-1.0267057,-1.0003774,-1.0152673,-1.0745771,-1.1922888,-1.4024478,-1.7901491,-2.6200705,-5.281486,94.16173,4.758446,2.492435,1.7358011,1.3740621,1.1763327,1.0659128,1.0117264,1.0011876,1.032038,1.1110603,1.2581059,1.5206573,2.024836,3.2235558,8.767235,-11.535083,-3.5217385,-2.1287315,-1.5707461,-1.2855877,-1.1264893,-1.0397283,-1.0029117,-1.0078499,-1.0555981,-1.1570554,-1.3398403,-1.6712149,-2.346004,-4.2200465,-26.23308,6.162903,2.8081877,1.8669282,1.4419019,1.214385,1.0867175,1.0205647,1.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/secf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/secf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..59361720e40c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/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 = sec.( 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/secf/test/test.js b/lib/node_modules/@stdlib/math/base/special/secf/test/test.js new file mode 100644 index 000000000000..7eec0c77fc40 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/test.js @@ -0,0 +1,196 @@ +/** +* @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 PI = require( '@stdlib/constants/float32/pi' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var secf = 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 secf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'if provided a multiple of `-pi/2`, the function does not return `~+infinity` due to floating-point rounding errors', function test( t ) { + t.notStrictEqual( secf( f32( -PI / f32(2.0) ) ), PINF, 'returns expected value'); + t.end(); +}); + +tape( 'if provided a multiple of `pi/2`, the function does not return `~+infinity`', function test( t ) { + t.notStrictEqual( secf( f32( PI / f32(2.0) ) ), PINF, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a `NaN`, the function returns `NaN`', function test( t ) { + var v = secf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `+infinity`, the function returns `NaN`', function test( t ) { + var v = secf( PINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `-infinity`, the function returns `NaN`', function test( t ) { + var v = secf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `+-0`, the function returns `1`', function test( t ) { + var v; + + v = secf( 0.0 ); + t.strictEqual( v, 1.0, 'returns expected value' ); + + v = secf( -0.0 ); + t.strictEqual( v, 1.0, 'returns expected value' ); + + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/secf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/secf/test/test.native.js new file mode 100644 index 000000000000..63caedaa3507 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/secf/test/test.native.js @@ -0,0 +1,205 @@ +/** +* @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 PI = require( '@stdlib/constants/float32/pi' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var secf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( secf 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 secf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the secant (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 = secf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'if provided a multiple of `-pi/2`, the function does not return `~+infinity` due to floating-point rounding errors', opts, function test( t ) { + t.notStrictEqual( secf( f32( -PI / f32(2.0) ) ), PINF, 'returns expected value'); + t.end(); +}); + +tape( 'if provided a multiple of `pi/2`, the function does not return `~+infinity`', opts, function test( t ) { + t.notStrictEqual( secf( f32( PI / f32(2.0) ) ), PINF, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a `NaN`, the function returns `NaN`', opts, function test( t ) { + var v = secf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `+infinity`, the function returns `NaN`', opts, function test( t ) { + var v = secf( PINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `-infinity`, the function returns `NaN`', opts, function test( t ) { + var v = secf( NINF ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `+-0`, the function returns `1`', opts, function test( t ) { + var v; + + v = secf( 0.0 ); + t.strictEqual( v, 1.0, 'returns expected value' ); + + v = secf( -0.0 ); + t.strictEqual( v, 1.0, 'returns expected value' ); + + t.end(); +});