diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/README.md b/lib/node_modules/@stdlib/math/base/special/vercosf/README.md
new file mode 100644
index 000000000000..0faba21cb70e
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/README.md
@@ -0,0 +1,200 @@
+
+
+# Vercosine
+
+> Compute the [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+
+
+The [versed cosine][versed-cosine] is defined as
+
+
+
+```math
+\mathop{\mathrm{vercos}}(\theta) = 1 + \cos \theta
+```
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var vercosf = require( '@stdlib/math/base/special/vercosf' );
+```
+
+#### vercosf( x )
+
+Computes the [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+```javascript
+var v = vercosf( 0.0 );
+// returns 2.0
+
+v = vercosf( 3.141592653589793/2.0 );
+// returns 1.0
+
+v = vercosf( -3.141592653589793/6.0 );
+// returns ~1.8660
+```
+
+
+
+
+
+
+
+## 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 vercosf = require( '@stdlib/math/base/special/vercosf' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'vercosf(%0.4f) = %0.4f', x, vercosf );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/vercosf.h"
+```
+
+#### stdlib_base_vercosf( x )
+
+Computes the [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+```c
+float out = stdlib_base_vercosf( 0.0f );
+// returns 2.0f
+
+out = stdlib_base_vercosf( 3.141592653589793f / 2.0f );
+// returns 1.0f
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] float` input value.
+
+```c
+float stdlib_base_vercosf( const float x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/vercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_vercosf( x[ i ] );
+ printf( "vercosf(%f) = %f\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[versed-cosine]: https://en.wikipedia.org/wiki/Versine
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/benchmark.js
new file mode 100644
index 000000000000..9f3c7a8092fe
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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 vercosf = 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 = vercosf( 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/vercosf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..27a84dce7002
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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 vercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( vercosf 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 = vercosf( 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/vercosf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/Makefile
new file mode 100644
index 000000000000..d564e8b2d6f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/Makefile
@@ -0,0 +1,127 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#/
+
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of C targets:
+c_targets := benchmark.out
+
+
+# RULES #
+
+#/
+# Compiles C source files.
+#
+# @param {string} [C_COMPILER] - C compiler
+# @param {string} [CFLAGS] - C compiler flags
+# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler
+# @param {string} CFLAGS - C compiler flags
+# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm
+
+#/
+# Runs compiled benchmarks.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/benchmark.c
new file mode 100644
index 000000000000..6222d0b273b2
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/benchmark.c
@@ -0,0 +1,137 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "vercosf"
+#define ITERATIONS 1000000
+#define REPEATS 3
+
+/**
+* Prints the TAP version.
+*/
+static void print_version( void ) {
+ printf( "TAP version 13\n" );
+}
+
+/**
+* Prints the TAP summary.
+*
+* @param total total number of tests
+* @param passing total number of passing tests
+*/
+static void print_summary( int total, int passing ) {
+ printf( "#\n" );
+ printf( "1..%d\n", total ); // TAP plan
+ printf( "# total %d\n", total );
+ printf( "# pass %d\n", passing );
+ printf( "#\n" );
+ printf( "# ok\n" );
+}
+
+/**
+* Prints benchmarks results.
+*
+* @param elapsed elapsed time in seconds
+*/
+static void print_results( double elapsed ) {
+ double rate = (double)ITERATIONS / elapsed;
+ printf( " ---\n" );
+ printf( " iterations: %d\n", ITERATIONS );
+ printf( " elapsed: %0.9f\n", elapsed );
+ printf( " rate: %0.9f\n", rate );
+ printf( " ...\n" );
+}
+
+/**
+* Returns a clock time.
+*
+* @return clock time
+*/
+static double tic( void ) {
+ struct timeval now;
+ gettimeofday( &now, NULL );
+ return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
+}
+
+/**
+* Generates a random number on the interval [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( -10.0f, 10.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = 1.0f + cosf( x[ i%100 ] );
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ }
+ return elapsed;
+}
+
+/**
+* Main execution sequence.
+*/
+int main( void ) {
+ double elapsed;
+ int i;
+
+ // Use the current time to seed the random number generator:
+ srand( time( NULL ) );
+
+ print_version();
+ for ( i = 0; i < REPEATS; i++ ) {
+ printf( "# c::%s\n", NAME );
+ elapsed = benchmark();
+ print_results( elapsed );
+ printf( "ok %d benchmark finished\n", i+1 );
+ }
+ print_summary( REPEATS, REPEATS );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/vercosf/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..b16f71f4f863
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "vercosf"
+#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_vercosf( 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/vercosf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/vercosf/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/vercosf/docs/repl.txt
new file mode 100644
index 000000000000..5d516ce4053e
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/docs/repl.txt
@@ -0,0 +1,33 @@
+
+{{alias}}( x )
+ Computes the versed cosine of a single-precision floating-point number
+ (in radians).
+
+ The versed cosine is defined as `1 + cos(x)`.
+
+ Parameters
+ ----------
+ x: number
+ Input value (in radians).
+
+ Returns
+ -------
+ y: number
+ Versed cosine.
+
+ Examples
+ --------
+ > var y = {{alias}}( 3.14 )
+ ~0.0
+ > y = {{alias}}( -4.2 )
+ ~0.5097
+ > y = {{alias}}( -4.6 )
+ ~0.8878
+ > y = {{alias}}( 9.5 )
+ ~0.0028
+ > y = {{alias}}( -0.0 )
+ 2.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/vercosf/docs/types/index.d.ts
new file mode 100644
index 000000000000..69cfbf843ecd
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/docs/types/index.d.ts
@@ -0,0 +1,52 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Computes the versed cosine of a single-precision floating-point number (in radians).
+*
+* ## Notes
+*
+* - The versed cosine is defined as `1 + cos(x)`.
+*
+* @param x - input value (in radians)
+* @returns versed cosine
+*
+* @example
+* var v = vercosf( 0.0 );
+* // returns 2.0
+*
+* @example
+* var v = vercosf( 3.141592653589793/2.0 );
+* // returns 1.0
+*
+* @example
+* var v = vercosf( -3.141592653589793/6.0 );
+* // returns ~1.8660
+*
+* @example
+* var v = vercosf( NaN );
+* // returns NaN
+*/
+declare function vercosf( x: number ): number;
+
+
+// EXPORTS //
+
+export = vercosf;
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/vercosf/docs/types/test.ts
new file mode 100644
index 000000000000..a28d0b05d694
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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 vercosf = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ vercosf( 2 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ vercosf( true ); // $ExpectError
+ vercosf( false ); // $ExpectError
+ vercosf( null ); // $ExpectError
+ vercosf( undefined ); // $ExpectError
+ vercosf( '5' ); // $ExpectError
+ vercosf( [] ); // $ExpectError
+ vercosf( {} ); // $ExpectError
+ vercosf( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ vercosf(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/vercosf/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/vercosf/examples/c/example.c
new file mode 100644
index 000000000000..6e8dbd636952
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_vercosf( x[ i ] );
+ printf( "vercosf(%f) = %f\n", x[ i ], y );
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/vercosf/examples/index.js
new file mode 100644
index 000000000000..94a2d4495822
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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 vercosf = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'vercosf(%0.4f) = %0.4f', x, vercosf );
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/include.gypi b/lib/node_modules/@stdlib/math/base/special/vercosf/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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",
+ "vercos",
+ "vercosf",
+ "vercosin",
+ "vercosine",
+ "versed cosine",
+ "vcs",
+ "cosine",
+ "cos",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ],
+ "__stdlib__": {
+ "scaffold": {
+ "$schema": "math/base@v1.0",
+ "base_alias": "vercos",
+ "alias": "vercosf",
+ "pkg_desc": "compute the versed cosine",
+ "desc": "computes the versed cosine",
+ "short_desc": "versed cosine",
+ "parameters": [
+ {
+ "name": "x",
+ "desc": "input value (in radians)",
+ "type": {
+ "javascript": "number",
+ "jsdoc": "number",
+ "c": "float",
+ "dtype": "float32"
+ },
+ "domain": [
+ {
+ "min": "-infinity",
+ "max": "infinity"
+ }
+ ],
+ "rand": {
+ "prng": "random/base/uniform",
+ "parameters": [
+ -10,
+ 10
+ ]
+ },
+ "example_values": [
+ 64,
+ 27,
+ 0,
+ 0.1,
+ -9,
+ 8,
+ -1,
+ 125,
+ -10.2,
+ 11.3,
+ -12.4,
+ 3.5,
+ -1.6,
+ 15.7,
+ -16,
+ 17.9,
+ -188,
+ 19.11,
+ -200,
+ 21.15
+ ]
+ }
+ ],
+ "output_policy": "real_floating_point_and_generic",
+ "returns": {
+ "desc": "versed cosine",
+ "type": {
+ "javascript": "number",
+ "jsdoc": "number",
+ "c": "float",
+ "dtype": "float32"
+ }
+ },
+ "keywords": [
+ "vercos",
+ "vercosf",
+ "vercosin",
+ "vercosine",
+ "versed cosine",
+ "vcs",
+ "cosine",
+ "cos",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ],
+ "extra_keywords": []
+ }
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/vercosf/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/vercosf/src/addon.c
new file mode 100644
index 000000000000..327a86a73329
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf.h"
+#include "stdlib/math/base/napi/unary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_vercosf )
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/src/main.c b/lib/node_modules/@stdlib/math/base/special/vercosf/src/main.c
new file mode 100644
index 000000000000..b907409bb6a9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/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/vercosf.h"
+#include "stdlib/math/base/special/cosf.h"
+
+/**
+* Computes the versed cosine of a single-precision floating-point number (in radians).
+*
+* @param x input value (in radians)
+* @return versed cosine
+*
+* @example
+* float y = stdlib_base_vercosf( 3.141592653589793f / 2.0f );
+* // returns 1.0f
+*/
+float stdlib_base_vercosf( const float x ) {
+ return 1.0f + stdlib_base_cosf( x );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/huge_negative.json
new file mode 100644
index 000000000000..4ac4b9f54434
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/huge_negative.json
@@ -0,0 +1 @@
+{"expected":[0.00587976,1.9913855,1.9656901,1.923357,1.8651152,1.6981214,1.7051764,1.4882315,1.4968486,1.2448393,0.974747,0.98464644,0.99454737,1.0044488,0.47674,0.48520333,0.49371707,0.5022805,0.1198926,0.12463665,0.0012754202,0.00082445145,0.00047147274,0.00021642447,5.9485435e-5,4.7683716e-7,3.9577484e-5,0.5564544,0.54760206,0.53879404,0.53003126,0.52131456,0.51264477,0.5040228,0.49544942,1.5574257,1.549178,1.5408764,1.532522,1.5241151,1.9949015,1.5071483,1.9967035,1.4899826,1.9981146,1.4726248,1.9991343,1.3977282,1.9997622,1.4158185,1.999998,1.4337455,1.9998417,1.4515026,0.3934654,1.4690825,0.4093278,1.4864784,0.42542183,1.5036836,0.44174123,1.5206914,0.4582795,0.0074120164,0.47503018,0.0052002072,0.4919868,0.0033784509,0.5091426,0.0019475222,0.6214468,0.00090795755,0.6031929,0.00026023388,0.5850947,4.529953e-6,0.5671592,1.6229448,0.5493934,1.6073325,1.9796581,1.5914819,0.5143988,0.0029018521,1.9868357,1.5590913,0.4801659,1.3031695,1.9924655,1.5258238,0.44674832,1.3406638,1.9965386,1.4917318,0.31637555,1.3776239,1.9990487,1.4568683,0.34580988,1.4139917,1.9999919,0.029296577,0.3762703,1.4497102,1.9993668,0.020543754,0.407709,1.4847233,0.7357685,0.013327122,0.44007665,1.5189762,0.6977873,0.0076580048,0.4733225,1.7126911,0.6602801,0.0035453439,0.50739443,1.6843567,0.6233058,0.0009955168,0.54223895,1.654949,0.5869222,1.257658e-5,1.9704617,1.624514,0.55118656,0.000598073,1.9792533,1.5930995,0.5161549,1.2632632,1.9865091,1.5607548,0.48188204,1.3012557,1.9922175,1.5275306,0.28660506,1.3387756,1.9963697,1.4934789,0.31491166,1.3757641,1.9989592,0.040133,0.34429276,1.4121634,1.9999819,0.029780924,0.37470233,1.4479162,0.7761203,0.020950556,0.40609258,1.4829664,0.7377053,0.013655782,1.9194603,1.5172591,0.69970167,1.0663168,0.47161698,1.714098,1.9884094,0.0037162304,1.9476895,1.5833583,0.6251663,1.1450639,0.540455,1.6564648,0.1838234,2.4676323e-5,1.9699755,0.11500192,0.55298156,1.2229012,0.61217487,1.5947146,0.2321037,0.0026042461,1.9861784,0.08093482,0.4836002,1.2993407,0.9346848,1.529235,0.28519964,1.8598514,1.9961967,0.05263138,0.41745734,1.3739029,0.8559294,1.4604363,0.34277833,1.8167562,1.9999678,0.030269206,1.8845303,1.4461203,0.7780774,1.3887502,0.4044786,1.768539,1.9974678,0.013988435,1.9186691,1.5155399,0.70161724,1.0643135,0.46991354,1.715502,0.13963658,0.00389117,1.9470468,1.5817266,0.6270283,1.1430773,0.5386728,1.6579779,0.18266505,4.082918e-5,1.9694853,0.115938425,0.55477834,1.2209437,1.0158572,1.5963275,0.23081917,0.0024614334,1.9858438,0.08172786,0.4853205,1.2974246,0.9366883,1.5309374,0.2837971,1.8608747,1.9960198,0.053276062,0.41909033,1.3720402,0.85791636,1.4622176,0.3412665,1.8179129,1.9999497,0.030761361,1.8835919,1.4443226,0.7800355,0.98313904,0.40286696,1.7698219,1.9976084,0.014325023,1.9178742,1.5138186,0.703534,1.0623099,0.46821225,1.7169031,0.13861507,0.004070103,1.9464002,0.1567707,0.6288918,1.1410899,0.53689253,1.6594884,0.18150997,6.097555e-5,1.968991,0.11687857,0.5565769,1.2189852,1.0178646,1.597938,0.22953779,1.8993173,1.9855051,0.08252466,0.48704284,1.2955072,0.93869203,1.5326376,0.28239745,1.8618944,1.9958389,0.0539245,1.8426893,1.3701758,0.85990393,1.463997,0.33975732,1.8190663,1.9999275,0.03125745,1.8826501,1.4425231,0.78199434,0.98113173,0.40125775,1.7711017,0.100244224,0.014665604,1.9170756,1.5120952,0.70545197,1.0603061,0.4665131,1.7183013,0.13759702,0.0042530894,1.9457498,0.15785164,1.6908146,1.2424263,0.53511405,1.6609962,0.18035817,1.9318306,0.008795857,1.6411889,0.55837727,1.2170259,1.0198718,0.7443567,1.9539063,0.0021879077,1.9851626,0.08332515,1.7962308,0.36934316,0.68061376,1.5343356,0.28100067,1.8629107,0.042087078,1.7542233,0.42236328,1.3683101,0.861892,0.900078,1.3322885,0.025113702,1.9999013,0.031757414,1.8817046,0.2548076,1.5664432,1.3942922,0.399651,1.7723784,0.09936994,1.9778347,0.30081666,1.5103698,0.7073712,1.0583019,1.1793295,0.5932033,1.9895966,0.004440069,1.9450957,0.1589359,1.6893616,1.2443736,0.5333375,1.6625015,0.17920971,1.9325573,0.0085321665,1.6396469,0.5601794,1.2150656,1.0218791,0.74241626,1.4786887,0.0020571947,1.9848161,0.084129274,1.7950145,0.37090248,0.6787119,1.5360316,0.27960676,1.8639235,0.041512668,1.9987247,0.4240033,1.3664429,0.8638807,0.8980806,1.3341813,0.024668574,1.999871,0.032261312,1.8807557,0.25614792,1.5647876,1.3961365,0.3980466,1.7736521,0.09849924,1.9782531,0.30225343,1.5086422,0.7092915,1.0562975,1.1813042,0.5913701,1.9898834,0.0046310425,1.9444377,0.16002363,1.6879058,0.50315464,0.5315628,1.664004,0.17806453,1.9332802,0.008272469,1.6381023,0.56198335,1.2131045,1.0238862,0.74047697,1.4804504,0.0019305348,1.9844656,0.084937155,1.7937951,0.37246436,0.67681134,1.5377253,0.27821583,1.8649329,0.040942192,1.9988241,0.4256456,1.3645742,0.8658699,0.89608365,1.3360729,0.02422738,1.9998367,0.032769084,1.8798032,0.25749117,1.5631297,1.397979,0.39644468,1.7749226,0.09763223,1.9786675,0.0005028844,1.5069127,0.711213,1.054293,1.1832782,0.5895386,1.9901664,0.004826069,1.9437759,0.1611147,1.6864474,0.50489795,0.52979004,1.6655037,0.17692268,1.9339995,0.008016765,1.6365553,0.563789,1.2111425,1.0258932,0.7385386,1.4822102,0.0018078089,1.9841111,0.08574867,1.7925725,0.37402874,0.6749121,1.539417,0.27682775,1.8659387,0.04037553,1.9989195,0.4272902,1.3627039,0.86785966,0.8940871,1.3379631,0.44914222,1.9997985,0.03328079,1.8788471,0.25883746,1.5614694,1.3998201,0.39484513,1.7761899,0.0967688,1.979078,0.0005685687,1.5051811,0.7131357,1.0522883,1.1852515,0.5877087,1.9904451,0.005025029,1.9431102,0.16220915,1.6849861,0.5066432,0.5280191,1.6670009,0.17578417,1.9347148,0.0077650547,1.993516,0.56559646,1.2091798,1.0279001,0.73660135,1.483968,0.0016891956,1.9837526,0.086563945,1.7913467,0.37559563,1.4220712,1.5411063,0.2754426,1.8669411,0.039812744,1.9990108,0.42893714,1.3608323,0.86985,0.892091,1.3398519,0.44746774,1.9997561,0.03379637,1.8778875,0.26018673,1.5598071,1.4016594,0.39324808,1.7774541,0.09590906,1.9794846,0.00063830614,1.5034475,0.7150595,1.0502832,1.187224,0.5858805,1.617543,0.0052280426,1.9424409,0.16330701,1.683522,0.50839055,0.5262501,1.6684954,0.17464894,1.9354265,0.007517338,1.9932857,0.5674056,1.2072161,1.0299069,0.73466516,1.4857239,0.0015745759,1.9833902,0.08738285,1.7901177,0.37716508,1.4202504,1.5427936,0.27406037,1.86794,0.03925383,1.9990981,0.43058634,1.3589592,0.8718408,0.89009523,1.3417394,0.44579554,1.9997098,0.034315825,1.8769243,0.26153898,1.5581423,0.65381145,0.39165348,1.7787154,0.0950529,1.9798871,0.0007120371,1.5017118,0.7169845,1.0482781,1.1891958,0.58405393,1.6191208,0.005435109,1.9417677,0.1644082,1.6820552,0.51013976,0.524483,1.6699872,0.17351705,1.9361343,0.0072736144,1.9930514,0.56921655,1.2052517,1.0319136,0.73273,1.4874778,0.0014639497,1.9830239,0.08820546,1.7888855,0.37873703,1.4184278,0.8081236,0.95444965,1.2803954,0.117540956,1.7462592,0.43223786,1.3570846,0.8738321,0.8881,1.3436254,0.44412553,1.736617,0.12439144,1.9649713,0.94009954,0.8222461,1.4053333,0.39006126,1.7799733,0.09420043,1.9802859,0.00078976154,1.9615002,0.13070703,1.7278149,1.8198745,0.06802189,1.9912579,0.0056461096,1.9410907,0.1655128,1.6805856,0.511891,1.2679667,0.9673637,0.79545605,1.9165125,0.2040152,1.6303414,0.5710292,1.2032864,1.0339202,0.7307959,1.4892297,0.31847376,1.8351943,0.058475673,1.1377056,1.1003263,0.66732836,1.5461615,0.27130467,1.8699272,0.03814763,1.9992604,0.019968808,1.9052546,0.22083127,1.6089203,1.9008067,0.022080302,1.999605,0.035366476,1.8749874,0.26425242,1.5548062,0.6575812,1.1106234,1.1274421,0.64171576,1.8408442,0.31093276,1.4982345,0.7208379,1.044267,1.1931369,0.58040583,1.6222692,0.21032572,1.9123213,0.016741276,0.9777147,1.2579763,0.5209546,1.6729625,0.17126328,1.9375387,0.0067982078,1.9925709,0.06431812,1.8257592,0.33096707,0.13587189,1.9586031,0.001254797,1.9822792,0.08986163,1.7864115,0.3818884,1.4147775,0.8120658,0.9504389,1.2842473,0.1194368,1.7435805,0.43554777,1.3533312,0.8778163,0.88411087,1.3473934,0.44079226,1.7393266,0.122459054,1.966017,0.94410807,0.8182962,1.4090006,0.38688433,1.7824798,0.09250647,1.9810712,0.0009573698,1.960389,0.13269871,1.7250556,0.45828575,0.06657386,1.9917796,0.00608021,1.9397254,0.16773206,1.6776383,0.5153994,1.2640961,0.97137713,0.79152733,1.4337522,0.20645207,1.6272192,0.5746597,1.1993533,1.0379328,0.7269311,1.4927278,0.3155409,1.8373959,0.057130396,1.9949024,1.1043204,0.6635444,1.5495206,0.26856077,1.8719006,0.037056923,1.9994068,0.02077514,1.9035413,0.22335434,1.6057303,1.9025428,0.021249115,1.9994841,0.036432624,1.8730364,0.26697773,1.5514611,0.66135645,1.1066319,1.1314236,0.63797,1.838664,0.3138482,1.4947491,0.7246958,1.0402554,1.1970751,0.5767645,1.6254072,0.20786864,1.9139581,0.016017556,0.97370064,1.2618536,0.5174339,1.6759272,0.16902286,1.938928,0.0063388348,1.9920744,0.06574243,1.8234878,0.33395672,0.13385808,1.9597387,0.0010617971,1.9815187,0.09153253,1.783925,0.3850497,1.4111207,0.816011,0.94642895,1.2880946,0.4937107,1.7408897,0.4388668,1.3495721,0.8818025,0.8801236,1.3511558,0.437468,1.7420243,0.1205408,1.9670471,0.00017654896,0.81434923,1.4126614,0.38371724,1.7849736,0.09082711,1.9818408,0.0011410713,1.9592624,0.13470447,1.7222844,0.46166515,0.065140784,1.9922855,0.0065303445,1.9383448,0.16996473,1.67468,0.5189156,1.2602212,0.975391,0.78760195,1.4373666,0.20890182,1.6240869,0.57829714,1.195417,1.0419449,0.7230706,1.4962177,0.3126191,1.8395839,0.05580026,1.9952992,1.108313,0.65976596,1.5528709,0.2658286,1.8738596,0.035981774,1.999537,0.021597207,1.9018135,0.22588998,1.6025306,1.9042645,0.020433664,1.9993471,0.03751433,1.8710712,0.26971483,1.5481071,0.66513723,1.1026386,1.1354029,0.63423,1.5754056,0.31677467,1.4912556,0.72855806,1.0362431,1.20101,0.57313,1.6285353,0.20542431,1.9155802,0.015309751,1.9979889,1.2657266,0.513921,1.6788808,0.16679585,1.9403021,0.005895436,1.9915619,0.067181826,1.8212031,0.3369571,1.4673018,1.9608588,0.00088483095,1.9807425,0.09321803,1.7814257,0.38822097,1.4074571,0.8199592,0.9424199,1.2919374,0.49025214,1.738187,0.44219488,1.3458073,0.8857905,0.87613827,1.3549125,0.43415284,1.74471,0.11863673,1.9680616,0.00010919571,0.8104053,1.4163156,0.3805601,1.787455,0.08916241,1.9825947,0.0013409257,1.9581202,0.13672411,1.7195017,0.46505326,0.06372285,1.9927752,0.006996453,1.9369493,0.17221075,1.671711,0.52243954,1.2563423,0.9794052,0.78368,1.4409739,0.21136427,1.6209445,0.58194125,1.1914777,1.0459563,0.7192146,1.4996998,0.30970836,1.8417583,0.05448532,1.9956801,0.010588944,0.655993,1.5562122,0.2631083,1.8758047,0.034922123,1.9996512,0.02243507,1.9000711,0.22843808,1.5993211,0.6068886,0.019634008,1.9991939,0.03861159,1.8690921,0.27246368,1.5447443,0.6689234,1.0986438,1.1393801,0.6304959,1.5786848,0.3197121,1.4877543,0.73242474,1.0322301,1.2049416,0.5695024,1.6316532,0.2029928,1.9171875,0.014617741,1.9977263,1.2695954,0.5104159,1.6818235,0.16458225,1.9416611,0.00546813,1.9910333,0.06863624,1.8189052,0.3399682,1.4637482,1.9619634,0.0007240176,1.9799503,0.09491819,1.778914,0.39140207,1.4037869,0.8239103,0.9384118,1.2957754,0.48680186,1.7354723,0.4455319,1.342037,0.88978046,0.87215495,1.3586636,0.43084675,1.7473838,0.11674684,1.9690604,5.787611e-5,1.9741478,1.4199629,0.37741292,1.7899234,0.087512374,1.9833326,0.0015568137,1.9569627,0.1387577,1.7167073,0.46845,1.3162647,1.9932489,0.007478595,1.9355384,0.17447013,1.668731,0.5259712,1.252459,0.9834198,0.77976155,1.4445741,0.3562883,1.6177921,0.5855922,1.1875352,1.0499669,0.71536314,1.5031738,0.30680877,1.843919,0.05318564,1.9960449,0.011179745,0.6522256,1.5595446,0.26039988,1.8777357,0.033878088,1.9997492,0.023288727,1.8983142,0.23099864,1.5961021,0.6105838,0.018850148,1.9990247,0.03972429,1.8670989,0.27522433,1.5413728,0.6727148,1.0946473,1.1433551,0.62676775,1.5819548,0.32266057,1.4842452,0.7362958,1.0282167,1.20887,0.5658817,1.634761,0.2005741,1.91878,0.013941646,1.9974477,1.2734598,0.5069188,1.6847553,0.16238213,1.9430048,0.0050567985,1.9904888,0.07010567,1.8165941,0.34298992,1.4601871,0.7627189,0.00057929754,1.9791424,0.0966329,1.7763896,0.394593,1.4001104,0.8278642,0.9344046,1.2996086,0.4833598,1.7043891,0.44887787,1.3382611,0.8937721,0.86817366,1.3624088,0.4275499,1.7500454,0.11487126,1.9700437,2.2768974e-5,1.9732329,1.4236035,0.3742758,1.7923794,0.08587706,1.9840548,0.0017888546,1.9557897,0.14080518,1.7139014,0.47185534,1.312453,1.9937067,0.00797677,1.9341125,0.17674285,1.6657401,0.5295105,1.2485719,0.9874346,0.7758467,1.4481672,0.35322076,1.6146297,0.5892498,1.1835896,1.0539768,0.71151626,1.5066397,0.30392033,1.8460665,0.05190128,1.9963936,0.011786401,0.6484638,1.5628679,0.25770342,1.8796525,0.03284955,1.999831,0.02415812,1.8965428,0.23357159,1.5928733,0.6142852,1.1566942,1.9988394,0.040852547,1.8650918,0.2779966,1.5379924,0.67651165,1.0906492,1.1473277,0.6230457,1.5852153,0.23969305,1.4807281,0.7401711,1.0242028,1.212795,0.5622681,1.6378584,0.19816834,1.9203577,0.013281465,1.9971529,0.048930526,0.50342953,1.687676,0.16019553,1.9443336,0.00466156,1.9899284,0.071590066,1.8142699,0.3460223,1.4566185,0.76662135,0.00045073032,1.9783187,0.09836221,1.7738527,0.3977937,1.3964273,0.83182096,0.9303986,1.303437,0.4799261,1.7072334,0.45223278,1.3344798,0.8977655,0.8641945,1.3661481,0.42426223,1.7526951,0.11300987,1.9710113,3.7550926e-6,1.9723022,1.4272374,0.37114877,1.7948223,0.08425653,1.984761,0.0020369291,1.9546013,0.14286655,1.711084,0.4752692,1.3086363,1.9941485,0.00849092,1.9326717,0.17902881,1.6627387,0.53305733,1.2446806,0.99144965,0.7719354,1.451753,0.35016364,1.8110876,0.073633134,1.9891405,0.0041496754,1.9461162,0.15724313,0.26208717,1.5574679,0.6545739,1.1138058,1.124265,0.6447076,1.5661821,0.2550189,1.8815551,0.03183669,1.9998968,0.02504319,1.894757,0.23615688,1.5896351,0.6179929,1.1527272,1.0852091,0.68168414,1.5333807,0.28178602,1.8623395,1.9364197,0.007176101,1.9929554,0.063192904,1.8275611,0.32859015,1.4772034,0.7440505,1.0201886,1.2167166,0.55866146,1.6409457,0.19577545,1.9219205,0.012637198,1.9968421,0.050178826,1.8489652,0.30000967,1.5113406,0.70629144,1.0594293,1.1782184,1.3443885,0.4434502,1.7371663,0.12399924,1.9651842,0.00033825636,1.9774792,0.10010606,1.7713034,0.40100414,1.3927377,0.8357804,0.9263936,1.3072605,0.47650075,1.7100666,0.14361233,1.9541695,0.00213027,1.9850115,0.08367646,1.7956991,1.67999,0.5126004,1.2671837,0.96817595,0.7946607,1.4308643,0.36803186,1.7972525,0.08265072,1.9854515,0.0023011565,1.9533975,0.14494169,1.708255,0.47869146,1.3048146,0.92895603,0.83324665,1.3950992,0.39894885,1.772936,0.09898859,0.03792566,1.9992914,0.020130694,1.9049089,0.2213409,1.6082754,0.5965848,1.1756897,1.0619937,0.70383656,1.5135468,0.29817718,1.85032,0.049378335,1.9970429,0.013047576,1.9209223,0.19730502,1.6389716,0.56096834,1.2142079,1.0227572,0.74156773,0.57966834,1.622905,0.20982742,1.9126537,0.016593516,1.9984205,0.043155313,1.8610357,0.28357607,1.5312058,0.6841208,1.082649,1.1552658,0.6156198,1.5917082,0.23450124,1.8959013,0.024475038,1.9998565,0.03248298,1.8803394,0.2567352,0.3825274,1.414038,0.812864,0.9496273,1.2850263,0.4964751,1.6934841,0.15586299,1.946945,0.0039191246,1.9887595,0.074603796,1.8095821,0.3521185,1.4494594,0.7744376,0.98888063,1.2471709,0.53078705,1.6646605,0.17756462,1.9335954,1.9812284,0.0009932518,1.9601622,0.13310355,1.7244956,0.45896894,1.3269012,0.9057572,0.85624284,1.3736091,0.41771483,1.7579577,0.10933012,1.9728994,1.4066696e-5,1.9703939,0.11419922,1.7510011,0.42636478,1.3637562,0.8667403,0.89521015,1.3369,1.4934347,0.31494868,1.8378397,0.05685997,1.9949839,0.0095671415,1.9297448,0.18364042,1.6567037,0.54017365,1.2368864,0.9994801,0.7641239,1.4589027,0.3440808,1.8157586,0.07063854,1.9902889,0.004912615,1.9434851,0.16159308,1.6858084,1.550783,0.6621212,1.1058239,1.1322291,0.6372126,1.5727832,0.24968588,1.8853178,0.029857695,1.99998,0.026860595,1.8911421,0.24136436,1.5831301,0.6254266,1.1447861,1.0932076,0.6740817,1.5401564,0.2762214,1.8663776,0.040128827,0.0062478185,1.991972,0.06603253,1.8230264,0.33456308,1.4701309,0.7518217,1.0121591,1.2245493,0.5514697,1.647089,0.19102871,1.9250016,0.011396408,1.9961722,0.05272132,1.844694,0.30576718,1.5044229,0.71397716,1.0514112,1.1861144,0.5869087,0.43679637,1.7425687,0.12015432,1.9672537,0.0001616478,1.9757531,0.10363722,1.7661674,0.40745384,1.38534,0.8437071,0.9183873,1.3148925,0.46967548,1.7156981,0.13949353,1.956542,0.0016385317,1.9835945,0.08692175,1.7908094,0.37628192,0.51962817,1.2594366,0.9762033,0.78680795,1.4380972,0.36182868,1.8020744,0.07948351,1.9867845,0.0028777719,1.9509438,0.14913327,1.702563,0.48556125,1.2971565,0.9369685,0.825334,1.4024636,0.39255017,1.7780063,0.095534086,1.9796612,1.9995614,0.02176553,1.901462,0.22640467,1.6018819,0.6039458,1.1677785,1.0700067,0.69617593,1.5204209,0.29247934,1.8545187,0.046916723,1.9976277,0.014372408,1.9177628,0.20212018,1.6327736,0.5681976,1.2063569,1.0307847,0.7338184,0.5723953,1.6291671,0.20493114,1.9159067,0.015168428,1.997937,0.04551983,1.856924,0.28920174,1.524385,0.69175017,1.0746434,1.1631938,0.60821867,1.5981629,0.22935885,1.89944,0.022740722,1.9996883,0.03454429,1.8765018,0.2621315,1.5574133,1.4067148,0.82075864,0.94160867,1.2927145,0.4895532,1.6992474,0.15158486,1.9494954,0.0032410026,1.9875271,0.07767719,1.804842,0.35825652,1.4422714,0.7822684,0.98085105,1.2549442,0.5237106,1.6706388,0.17302293,1.9364429,0.007168293,0.0013833046,1.9578872,0.13713455,1.7189372,0.46574003,1.3193014,0.91375494,0.8483004,1.381046,0.41120493,1.7631717,0.105707765,1.974725,8.8870525e-5,1.9684231,0.11795443,1.7456744,0.4329611,1.3562641,0.8747034,0.8872273,1.3444501,1.5004035,0.30912066,1.8421967,0.054221094,1.9957552,0.010707259,1.926758,0.18830466,1.6506264,0.5473196,1.2290769,1.0075105,0.7563277,1.466023,0.33804035,1.8203771,0.0677039,1.9913733,0.005739689,1.9407933,0.16599709,1.6799419,0.51265776,0.66969025,1.0978351,1.1401848,0.62974095,1.5793474,0.24440128,1.8890233,0.027941287,1.9999986,0.028740704,1.8874698,0.24662083,1.5765877,0.6328845,1.1368356,1.1012001,0.6665002,1.5468969,0.2707035,1.8703601,0.03790772,1.9992938,1.9909244,0.068932414,1.8184385,0.3405789,1.4630282,0.7596089,1.0041288,1.2323674,0.54430676,1.6531907,0.18633407,1.9280231,0.010219336,1.9954382,0.055324912,1.8403685,0.3115695,1.4974728,0.72168136,1.0433897,1.1939986,0.5796088,0.43017882,1.7479234,0.11636609,1.9692607,4.9471855e-5,1.973964,0.10722619,1.760982,0.41394174,1.3779172,0.8516439,0.91038626,1.3225043,0.46288443,1.7212836,0.13543022,1.9588528,0.001211226,1.9821142,0.090225875,1.7858688,0.38257903,1.4139782,1.2516727,0.9842323,0.778969,1.4453019,0.35566664,1.8068445,0.07637566,1.9880538,0.0035187602,1.9484289,0.1533798,1.6968257,0.49246413,1.2894791,0.94498503,0.81743264,1.409802,0.3861907,1.7830265,0.09213787,1.981241,0.0009961724,0.023463428,1.8979568,0.23151839,1.5954494,0.61133236,1.1598564,1.0780152,0.68853486,1.5272615,0.2868271,1.8586624,0.044516563,1.9981484,0.015760839,1.914544,0.20698684,1.6265349,0.5754548,1.1984926,1.0388105,0.72608626,1.4934918,1.6353886,0.20008618,1.9191005,0.01380676,1.9973893,0.047945857,1.8527572,0.29487324,1.5175302,0.6993996,1.0666329,1.1711113,0.60084283,1.604579,0.22426611,1.9029207,0.021069407,1.9994555,0.036667943,1.8726077,0.26757538,1.5507282,0.662183,0.8286648,0.9335938,1.3003838,0.48266417,1.7049656,0.1473614,1.9519846,0.0026271343,1.9862309,0.08081001,1.8000501,0.3644359,1.4350548,0.7901132,0.97282267,1.262701,0.51666486,1.6765741,0.16853458,1.9392298,0.006240487,1.9919636,1.9555504,0.14122128,1.7133322,0.47254556,1.311681,0.9217583,0.8403678,1.3884584,0.40473306,1.7683363,0.10214311,1.9764876,0.00022810698,1.9663898,0.12176657,1.7402995,0.43959397,1.3487492,0.88267463,0.8792517,1.3519781,0.43674213,0.30333716,1.8464993,0.051643193,1.9964621,0.011911154,1.9237114,0.1930213,1.644507,0.55449474,1.2212526,1.0155406,0.74854714,1.4731131,0.33204257,1.8249426,0.06482935,1.992394,0.006630957,1.9380409,0.17045486,1.6740315,0.51968575,0.67728066,1.0898399,1.1481314,0.6222931,1.5858741,0.23916543,1.8926715,0.026087582,1.9999528,0.030683458,1.8837402,0.25192583,1.5700078,0.6403661,1.1288762,1.109186,0.65894026,1.5536025,0.26523256,1.8742863,0.03574866,1.9995633,0.02177912,0.07189232,1.813798,0.34663725,1.4558954,0.76741165,0.99609834,1.2401706,0.5371733,1.6592503,0.18169194,1.9309847,0.009106159,1.9946399,0.05798942,1.8359888,0.31741625,1.4904904,0.7294035,1.0353653,1.2018702,0.57233596,1.6292181,1.7532299,0.1126349,1.9712052,1.847744e-6,1.9721119,0.110872746,1.7557476,0.4204675,1.37047,0.8595903,0.902391,1.3300953,0.45612794,1.7268226,0.1314227,1.9611018,0.0008482933,1.9805706,0.09358865,1.7808775,0.38891596,1.4066548,1.2438927,0.99226224,0.7711443,1.4524778,0.3495462,1.8115625,0.07332736,1.9892596,0.0042239428,1.9458528,0.15768087,1.6910436,0.49939978,1.2817832,0.9530051,0.809543,1.4171139,0.37987083,1.787996,0.08880025,1.9827574,0.0013867617,1.9578683,1.8943939,0.23668158,1.5889786,0.61874396,1.1519241,1.0860187,0.6809139,1.5340679,0.28122085,1.8627505,0.042178035,1.9986048,0.017212689,1.9112663,0.21190459,1.620256,0.5827393,1.1906155,1.0468336,0.71837175,1.5004604,0.3090732,0.19529277,1.922235,0.01250875,1.9967773,0.050433338,1.8485353,0.30059022,1.510642,0.7070683,1.0586181,1.1790179,0.59349275,1.6109562,0.21922344,1.9063431,0.019461155,1.9991584,0.038853645,1.8686574,0.27306652,1.5440075,0.66975224,0.83658206,0.9255832,1.3080337,0.47580856,1.7106385,0.143193,1.9544125,0.0020775795,1.9848709,0.0840022,1.7952065,0.3706563,1.4278101,0.79797155,0.96479607,1.270441,0.50965035,1.6824658,0.16409987,1.9419563,0.005376756,1.9909155,0.068956375,0.14536333,1.7076812,0.47938514,1.3040406,0.92976665,0.83244544,1.3958457,0.39829957,1.7734513,0.09863639,1.9781873,0.00043189526,1.9642942,0.12563527,1.734877,0.44626302,1.3412116,0.89065343,0.8712839,1.3594832,0.43012482,1.747967,1.8507473,0.049126446,1.9971049,0.013178766,1.9206052,0.19778997,1.6383462,0.5616986,1.213414,1.0235696,0.74078286,1.4801726,0.32608783,1.8294549,0.062015176,1.9933505,0.007586241,1.9352279,0.1749661,1.6680777,0.5267447,1.2516092,1.0818391,1.1560686,0.6148697,1.5923631,0.23397863,1.896262,0.024296701,1.9998424,0.032688737,1.8799536,0.2572791,1.5633914,0.6478708,1.1209086,1.117165,0.6514023,1.5602722,0.25980908,1.8781562,0.03365177,1.9997684,0.023477554,1.897928,1.8091048,0.35273772,1.4487333,0.77522933,0.98806804,1.2479582,0.5300696,1.6652673,0.17710263,1.9338863,0.008056819,1.9937775,0.060714662,1.8315551,0.32330692,1.4834765,0.73714304,1.0273387,1.2097288,0.5650907,1.6354394,0.20004678,0.10896093,1.9730871,1.8656254e-5,1.9701974,0.11457664,1.7504642,0.42703056,1.3629991,0.8675457,0.894402,1.337665,0.44940662,1.7323146,0.12747121,1.9632888,0.00054979324,1.9789636,0.0970099,1.7758358,0.39529228,1.3993053,0.8287295,1.0002928,0.76333433,1.4596245,0.34346765,1.8162284,0.070338845,1.9904015,0.004993379,1.9432156,0.16203624,1.6852168,0.50636774,1.2740691,0.96102816,0.8016657,1.424399,0.37359095,1.7929147,0.08552134,1.9842106,0.0018417239,1.9555311,1.890773,0.24189407,1.5824699,0.6261802,1.1439819,1.0940167,0.6733135,1.5408399,0.27566093,1.8667831,0.039901257,1.9989965,0.018727899,1.9079299,0.21687317,1.6139368,0.5900507,1.1827261,1.0548537,0.7106755,1.5073967,0.30329007,1.8465343,1.9253101,0.011274397,1.9961009,0.052982032,1.8442588,0.30635232,1.5037211,0.7147559,1.0505996,1.1869128,0.58616877,1.6172938,0.21423113,1.9097071,0.017916203,1.9987967,0.041101336,1.864651,0.27860457,1.5372518,0.6773428,1.0897746,0.9175774,1.3156637,0.46898675,1.7162654,0.13907981,1.9567786,0.0015923381,1.9834477,0.08725339,1.7903118,0.3769173,1.4205377,0.80584294,0.95677173,1.2781634,0.50266737,1.6883132,0.15971905,1.944622,0.0045772195,1.9898037,0.07191676,0.14956051,1.7019846,0.48625827,1.2963804,0.93777955,0.82453394,1.4032073,0.3919049,1.7785165,0.09518772,1.9798238,0.00070011616,1.9621363,0.12956041,1.7294071,0.45296776,1.333652,0.89863926,0.8633244,1.3669653,0.42354435,1.753273,0.11260468,0.046671033,1.9976834,0.0145100355,1.9174397,0.20261031,1.6321442,0.56893075,1.2055616,1.031597,0.7330352,1.4872012,0.32017654,1.8339138,0.05926144,1.994243,0.00860548,1.9323545,0.17953062,1.6620808,0.5338342,1.243829,0.9923279,1.1639955,0.6074711,1.598814,0.22884125,1.8997948,0.022568703,1.9996676,0.034756362,1.8761103,0.26268023,1.5567385,0.65539825,1.1129332,1.1251364,0.6438868,1.5669059,0.25443327,1.8819695,0.031617165,1.9999089,0.025238931,1.8943645,1.8043594,0.35887998,1.4415424,0.78306156,0.9800386,1.2557299,0.5229962,1.6712415,0.1725663,1.9367275,0.007071495,1.992851,0.06350052,1.8270679,0.32924134,1.4764314,0.74489963,1.0193105,1.217574,0.55787355,1.6416196,0.19525379,1.9222604,1.9749062,0.000100016594,1.9682202,0.11833763,1.7451327,0.43363065,1.3555048,0.8755097,0.8864199,1.3452129,0.44272077,1.7377595,0.123575926,1.9654136,0.0003157854,1.9772935,0.10048944,1.7707441,0.4017076,1.3919299,0.8366468,0.92551774,0.75553966,1.4667418,0.3374315,1.8208414,0.06741029,1.9914795,0.00582695,1.9405175,0.16644573,1.6793458,0.51336753,1.2663373,0.9690538,0.7938012,1.4316567,0.3673514,1.7977824,0.08230144,1.9856002,0.0023610592,1.9531322,0.14539742,0.24715543,1.5759234,0.63364047,1.1360306,1.1020085,0.6657342,1.5475771,0.27014774,1.87076,0.037686408,1.9993241,0.020306408,1.9045348,0.22189224,1.607578,0.59738857,1.1748251,1.0628703,0.7029978,1.5143003,0.2975518,1.8507819,0.04910612,0.010103822,1.9953604,0.055591762,1.8399278,0.31215912,1.4967676,0.72246194,1.0425777,1.1947957,0.5788716,1.6235919,0.20928943,1.9130124,0.01643461,1.9983706,0.043410897,1.8605888,0.2841891,1.5304614,0.68495417,1.0817736,1.1561334,1.3232734,0.46219915,1.7218462,0.13502216,1.9590832,0.0011715293,1.9819609,0.090563476,1.785366,0.38321847,1.4132384,0.81372684,0.94875014,1.285868,0.4957165,1.6941166,0.15539241,1.9472269,0.003841877,1.9886279,0.074936986,1.8090663,1.6962428,0.49316448,1.2887013,0.94579643,0.8166337,1.4105431,0.38554937,1.7835315,0.09179747,1.9813973,0.0010327697,1.9599164,0.1335417,1.7238901,0.4597078,1.326071,0.9066316,0.85537374,1.3744236,0.417001,1.7585304,0.108931184,0.04427713,1.9981976,0.015904844,1.9142151,0.20748216,1.6259015,0.57619065,1.1976961,1.0396224,0.72530484,1.4941984,0.31430912,1.8383188,0.056568384,1.9950714,0.009688735,1.9294211,0.18414795,1.6560411,0.54095376,1.236033,1.0003583,0.76327056,0.6000979,1.6052262,0.22375357,1.9032696,0.020903766,1.9994284,0.036886275,1.8722105,0.26812893,1.5500498,0.66294795,1.1049504,1.1330996,0.63639426,1.5735029,0.24910557,1.8857257,0.029645085,1.9999851,0.027063131,1.8907433,0.24193686,0.36506355,1.4343228,0.7909078,0.9720104,1.2634851,0.51595366,1.6771723,0.16808337,1.9395086,0.006150186,1.9918605,0.066346765,1.8225273,0.3352189,1.4693556,0.7526726,1.0112809,1.225405,0.5506848,1.6477585,0.19051272,1.9253349,1.9766625,0.00024580956,1.9661806,0.12215549,1.739753,0.4402672,1.3479874,0.8834817,0.8784451,1.3527385,0.4360708,1.7431567,0.11973721,1.9674761,0.0001462102,1.9755604,0.10402691,1.7656026,0.40816152,1.3845294,0.84457463,0.917512,1.315726,0.46893108,1.7163112,0.13904643,1.9567977,0.0015886426,1.9834358,0.087280214,1.7902715,0.37696862,1.4204782,0.8059073,1.0890306,1.1489351,0.62154084,1.5865326,0.23863834,1.8930373,0.025903523,1.9999444,0.03088355,1.8833597,0.2524653,1.56934,0.6411244,1.1280704,1.1099938,0.6581764,1.5542791,0.26468158,1.8746805,0.035533667,1.999587,0.021948159,1.9010814,0.2269615,1.6011803,0.6047524,1.1669126,1.0708828,0.69533926,1.5211706,0.2918589,1.8549745,0.046651244,1.9976878,0.014521182,1.9174136,0.20264995,1.6320933,0.56899,1.2054974,1.0316626,0.73297197,1.4872586,0.32012844,1.753764,0.11226052,1.9713985,5.9604645e-7,1.9719211,0.11124492,1.755215,0.42112994,1.3697152,0.8603949,0.9015823,1.3308623,0.45544624,1.7273804,0.13102031,1.9613259,0.0008151531,1.9804108,0.09393221,1.7803695,0.3895594,1.4059124,0.8216227,0.9407319,1.2935542,0.48879814,1.699875,0.15112025,1.9497707,0.0031707287,1.9873884,0.07801688,1.8043206,0.35893035,1.4414835,0.78312564,0.9799729,1.2557933,0.5229385,1.6712902,0.17252946,1.9367507,0.007063687,1.9928432,0.06352353,1.8940301,0.23720682,1.5883217,0.61949533,1.1511209,1.0868284,0.68014383,1.5347548,0.2806561,1.8631612,0.04194486,1.9986472,0.017363131,1.9109313,0.21240509,1.6196182,0.5834779,1.1898178,1.0476453,0.7175921,1.5011637,0.30848593,1.84267,0.053936183,1.9958355,0.010835826,1.9264277,0.18881798,1.6499591,0.5481029,1.2282219,1.0083888,0.755476,1.4667997,0.33738232,1.820879,0.06738657,1.9914881,0.005834043,1.9404953,0.16648197,1.6792977,0.5134249,1.266274,0.96911937,0.92477286,1.3088067,0.47511667,1.71121,0.14277428,1.9546547,0.0020255446,1.9847298,0.08432847,1.7947136,0.37128806,1.4270754,0.79876745,0.96398395,1.2712233,0.50894225,1.6830595,0.16365409,1.9422288,0.005292952,1.990806,0.069253206,1.8179336,0.3412394,1.4622495,0.76046157,1.0032506,1.2332215,0.54352516,1.6538556,0.18582386,1.92835,0.010094464,1.9953539,0.05561334,1.8398921,0.3122068,1.4967107,0.722525,1.0425122,1.1948601,0.57881206,1.6236432,0.20924926,1.8511741,0.048875213,1.9971664,0.013310611,1.9202876,0.19827539,1.6377205,0.5624292,1.21262,1.0243819,0.7399981,1.4808853,0.32548767,1.8299086,0.061733723,1.9934437,0.007686436,1.9349399,0.17542559,1.6674728,0.5274607,1.2508227,0.98511046,0.77811253,1.4460881,0.35499525,1.807363,0.076039374,1.9881889,0.0035927296,1.9481502,0.15384752,1.6961956,0.4932211,1.2886384,0.94586194,0.8165692,1.4106029,0.38549757,1.7835723,0.09176999,1.9814099,0.0010357499,1.959898,0.13357443,1.808627,0.35335737,1.448007,0.77602124,0.9872555,1.2487454,0.5293524,1.6658738,0.17664117,1.9341764,0.00795418,1.9936867,0.06099385,1.8311036,0.32390547,1.4827651,0.7379272,1.0265265,1.2105234,0.5643591,1.6360667,0.19955945,1.9194462,0.013661683,1.9973254,0.048214912,1.8522983,0.29549628,1.5167785,0.70023733,1.0657566,1.1719767,0.6000377,1.6052785,0.2237122,1.9032978,0.020890415,1.9994261,0.036903918,1.8721783,0.26817364,1.549995,0.66300976,1.1048852,1.1331646,0.7625449,1.4603461,0.34285492,1.8166976,0.07003975,1.9905136,0.005074799,1.9429452,0.16248,1.6846247,0.5070746,1.2732875,0.9618402,0.8008693,1.4251347,0.3729577,1.7934096,0.0851928,1.9843541,0.0018913746,1.955291,0.14167154,1.7127163,0.47329193,1.3108463,0.9226339,0.83950084,1.3892674,0.40402758,1.768898,0.10175675,1.9766766,0.00024729967,1.9661636,0.1221869,1.7397088,0.44032162,1.3479259,0.8835469,0.87837994,1.3527999,0.43601662,1.7432007,0.119706094,1.9256179,0.011153042,1.9960289,0.05324334,1.843823,0.30693787,1.503019,0.7155349,1.049788,1.1877111,0.5854292,1.617933,0.21372873,1.9100442,0.017763436,1.9987565,0.041332245,1.8642423,0.27916753,1.5365663,0.67811203,1.0889652,1.1489999,0.6214801,1.5865858,0.23859578,1.8930669,0.025888681,1.9999439,0.030899704,1.8833289,0.25250894,1.5692861,0.6411857,1.1280053,1.110059,0.6581148,1.5543337,0.2646371,1.8747122,0.03551632,1.999589,0.021961808,1.901053,0.22700316,1.7014056,0.48695558,1.2956042,0.9385906,0.823734,1.4039508,0.39125997,1.7790263,0.09484202,1.979986,0.00073087215,1.9619145,0.12996072,1.7288508,0.4536482,1.3328859,0.8994477,0.86251944,1.3677211,0.42288053,1.7538072,0.1122303,1.9714141,5.364418e-7,1.9719057,0.11127502,1.755172,0.42118347,1.3696542,0.8604599,0.901517,1.3309242,0.45539117,1.7274255,0.13098782,1.961344,0.0008125305,1.9803978,0.09395999,1.7803285,0.38961142,1.4058523,0.82168734,0.9406664,1.1647971,0.6067239,1.5994647,0.22832417,1.9001491,0.022397399,1.9996464,0.03496909,1.8757184,0.26322943,1.5560633,0.65616125,1.1121258,1.1259425,0.64312756,1.5675751,0.25389194,1.8823521,0.031414807,1.9999197,0.025420666,1.8940006,0.23724926,1.5882686,0.61955607,1.151056,1.0868937,0.68008167,1.5348103,0.2806105,1.8631943,0.041926026,1.9986508,0.01737529,1.9109043,0.2124455,1.6195667,0.5835376,1.1897533,1.0477109,0.7175292,1.5012205,0.30843854,1.8427052,0.053914905,1.9750868,0.00011181831,1.9680166,0.118721366,1.7445905,0.43430054,1.354745,0.876316,0.8856126,1.3459754,0.44204617,1.7383077,0.12318492,1.965625,0.00029569864,1.977121,0.10084474,1.770226,0.40235895,1.3911822,0.83744854,0.9247074,1.3088691,0.47506082,1.711256,0.14274049,1.9546742,0.0020213723,1.9847184,0.08435488,1.7946737,0.37133908,1.427016,0.7988318,0.9639183,1.2712865,0.508885,1.6831074,0.16361815,1.9422508,0.0052862167,1.990797,0.06927717,1.8178959,0.3412888,1.575259,0.63439673,1.1352254,1.1028168,0.66496843,1.5482569,0.26959246,1.8711592,0.03746575,1.9993536,0.020469666,1.904188,0.22240293,1.6069324,0.59813255,1.1740248,1.0636814,0.70222193,1.514997,0.2969737,1.8512087,0.048854947,1.9971714,0.0133212805,1.9202619,0.1983146,1.6376699,0.5624882,1.2125559,1.0244476,0.7399347,1.4809427,0.3254392,1.8299452,0.061711013,1.9934512,0.007694602,1.9349165,0.17546272,1.667424,0.5275186,1.2507591,0.9851761,0.7780485,1.3240423,0.46151423,1.7224083,0.13461465,1.9593129,0.0011325479,1.9818069,0.09090173,1.7848628,0.38385832,1.4124982,0.8145253,0.9479386,1.2866466,0.49501497,1.6947012,0.15495765,1.9474871,0.003771007,1.9885054,0.07524592,1.8085884,0.35340744,1.4479483,0.77608526,0.9871898,1.248809,0.5292945,1.6659228,0.17660391,1.9341999,0.007945955,1.9936793,0.06101644,1.831067,0.32395387,1.4827075,0.73799056,1.0264609,1.2105875,0.56430006,1.6361172,0.19952005,1.919472,0.013650894,1.998246,0.016049504,1.9138854,0.20797801,1.6252675,0.5769268,1.1968994,1.0404344,0.72452354,1.4949048,0.31371784,1.8387616,0.05629927,1.9951516,0.009801865,1.9291209,0.18461818,1.6554276,0.5416758,1.2352433,1.001171,0.7624811,1.4604044,0.34280545,1.8167355,0.07001561,1.9905225,0.005081415,1.9429234,0.16251588,1.6845767,0.5071317,1.2732244,0.9619058,0.800805,1.425194,0.37290657,1.7934496,0.085166335,1.9843657,0.0018954277,1.9552717,0.14170527,1.7126703,0.36569154,1.4335908,0.7917025,0.9711981,1.2642689,0.5152427,1.67777,0.16763276,1.9397866,0.0060605407,1.9917567,0.06663811,1.8220649,0.33582622,1.468638,0.75346005,1.0104684,1.2261966,0.54995906,1.6483773,0.19003588,1.9256427,0.011143267,1.996023,0.05326444,1.8437878,0.3069852,1.5029622,0.71559787,1.0497224,1.1877756,0.58536947,1.6179847,0.2136882,1.9100714,0.017751098,1.9987533,0.04135096,1.8642094,0.27921307,1.536511,0.67817426,1.0888999,1.1490649,0.6214193,1.4745443,0.3308339,1.8258601,0.06425494,1.9925927,0.0068190694,1.9374764,0.17136353,1.6728301,0.52111185,1.2578032,0.9778938,0.78515625,1.4396166,0.36052775,1.8030832,0.07882416,1.987057,0.003007412,1.9504194,0.15002286,1.7013588,0.48701197,1.2955415,0.9386561,0.8236694,1.4040109,0.39120787,1.7790675,0.09481412,1.9799991,0.00073337555,1.9618965,0.12999308,1.728806,0.45370317,1.332824,0.899513,0.8624544,1.3677821,0.4228269,1.7538503,0.11220008,1.9714296,4.7683716e-7,1.9944706,0.058536053,1.8350959,0.3186049,1.4890735,0.7309685,1.0337411,1.2034618,0.5708674,1.6304805,0.20390671,1.916584,0.014876425,1.997827,0.046025515,1.8560513,0.29039216,1.5229445,0.6933592,1.072957,1.1648618,0.60666347,1.5995171,0.22828239,1.9001777,0.02238357,1.9996446,0.034986258,1.8756866,0.26327384,1.5560088,0.6562229,1.1120605,1.1260077,0.6430663,1.5676291,0.25384825,1.8823831,0.031398475,1.9999204,0.025435388,1.8939712,0.23729175,1.5882156,0.5008074,1.2802234,0.9546286,0.80794775,1.4185905,0.37859666,1.7889955,0.088131905,1.9830567,0.0014736652,1.9574003,0.13799042,1.7177608,0.46717018,1.3176985,0.91543967,0.8466293,1.3826088,0.4098391,1.7642632,0.104952395,1.9751014,0.00011283159,1.9680002,0.11875242,1.7445467,0.43435466,1.3546836,0.87638116,0.88554734,1.346037,0.4419917,1.7383521,0.12315339,1.9656422,0.00029408932,1.977107,0.10087347,1.7701843,0.40241158,1.3911217,0.8375133,0.92464197,1.3089316,0.47500497,1.612242,0.21820903,1.9070287,0.019143403,1.9990904,0.03930354,1.867851,0.27418357,1.5426431,0.67128676,1.0961522,1.1418588,0.6281707,1.5807247,0.24329478,1.8897963,0.02754581,1.9999943,0.029144585,1.8866892,0.24773377,1.5752053,0.6344578,1.1351604,1.1028821,0.6649066,1.5483118,0.26954764,1.8711915,0.03744799,1.9993559,0.020482898,1.90416,0.22244424,1.6068803,0.5981927,1.1739602,1.0637468,0.7021593,1.5150533,0.29692703,1.851243,0.04883468,1.9971763,0.01333195,1.9638624,0.12642515,1.7337737,0.4476171,1.3396834,0.8922691,0.86967236,1.3609993,0.4287901,1.7490447,0.11557573,1.9696753,3.4093857e-5,1.9735792,0.10798925,1.7598839,0.41531265,1.3763511,0.8533163,0.9087023,1.3241044,0.46145886,1.7224537,0.1345818,1.9593315,0.0011294484,1.9817944,0.09092903,1.784822,0.38391,1.4124384,0.8145898,0.94787306,1.2867095,0.49495828,1.6947485,0.15492254,1.9475081,0.0037653446,1.9884955,0.07527095,1.8085498,0.35345757,1.4478896,0.6493924,1.1192951,1.1187788,0.64987946,1.5616176,0.25871724,1.8789325,0.033234954,1.9998021,0.023828924,1.8972114,0.2326014,1.5940902,0.61289084,1.1581872,1.079701,0.6869285,1.5286975,0.2856428,1.8595278,0.044019043,1.9982499,0.016061246,1.9138588,0.20801806,1.6252162,0.5769863,1.196835,1.0405,0.7244605,1.4949617,0.3136701,1.8387973,0.056277514,1.9951581,0.009811044,1.9290967,0.18465614,1.655378,0.5417342,1.2351794,1.0012367,0.7624173,1.4604627,0.34275597,1.7334204,0.12667829,1.9637238,0.00049722195,1.9786307,0.09770942,1.7748094,0.3965875,1.3978148,0.83033097,0.9319067,1.3019961,0.48121792,1.7061639,0.14647913,1.9525008,0.0025060773,1.9859498,0.081477225,1.7990346,0.36574227,1.4335316,0.79176676,0.97113246,1.2643322,0.5151853,1.6778183,0.16759634,1.9398091,0.0060533285,1.9917483,0.066661716,1.8220274,0.33587527,1.4685799,0.7535237,1.0104027,1.2262607,0.5499004,1.6484272,0.18999738,1.9256676,0.011133492,1.9960172,0.019042253,1.9072475,0.2178849,1.612653,0.59153366,1.181128,1.0564765,0.7091201,1.5087965,0.3021251,1.8473983,0.05110818,1.9966029,0.012172759,1.9230623,0.19402105,1.6432133,0.5560092,1.2196033,1.0172312,0.7469109,1.474602,0.33078516,1.8258972,0.06423181,1.9926007,0.0068267584,1.9374535,0.17140031,1.6727815,0.52116954,1.2577398,0.97795945,0.7850921,1.4396756,0.36047733,1.8031223,0.07879865,1.9870676,0.0030124784,1.9503989,0.15005744,1.7013121,0.4870683,1.2954788,0.8074375,0.95514804,1.2797242,0.501258,1.6894914,0.15883905,1.9451542,0.004423201,1.9895709,0.07252318,1.8128141,0.34791827,1.4543898,0.7690565,0.9944075,1.2418116,0.53567505,1.6605208,0.18072122,1.9316006,0.0088799,1.9944637,0.058558226,1.8350596,0.31865293,1.4890163,0.73103166,1.0336754,1.203526,0.5708081,1.6305314,0.20386702,1.9166102,0.01486516,1.9978228,0.046045244,1.8560174,0.2904384,1.5228884,0.6934217,1.0728916,1.1649265,0.60660315,1.5995697,0.22824067,1.8348097,0.05871153,1.9944158,0.00881958,1.9317657,0.18046081,1.6608618,0.53527266,1.2422525,0.9939531,0.7694986,1.4539851,0.3482628,1.8125494,0.07269311,1.9895053,0.0043806434,1.9453025,0.15859342,1.6898204,0.50086427,1.2801604,0.95469415,0.8078834,1.4186502,0.37854522,1.7890359,0.08810496,1.9830687,0.0014772415,1.9573814,0.13802373,1.717715,0.46722573,1.3176363,0.91550505,0.8465644,1.3826694,0.4097861,1.7643056,0.10492313,1.975116,0.00011378527,1.9679837,0.064071655,1.8261533,0.3304476,1.4750018,0.7464714,1.0176855,1.21916,0.55641633,1.6428654,0.1942901,1.9228874,0.012243509,1.9966402,0.050964892,1.8476394,0.30179977,1.5091876,0.7086854,1.0569301,1.1806812,0.5919484,1.612294,0.21816808,1.9070563,0.019130647,1.9990876,0.03932178,1.8678184,0.27422875,1.542588,0.67134875,1.0960869,1.1419238,0.6281098,1.5807781,0.24325186,1.8898262,0.027530491,1.999994,0.02916032,1.8866589,0.24777704,1.5751516,0.6345189,1.1350954,0.97067827,0.7922111,1.4331222,0.36609364,1.7987614,0.08165699,1.9858738,0.00247401,1.9526391,0.1462425,1.7064855,0.48082954,1.3024292,0.93145347,0.8307787,1.3973978,0.3969499,1.7745221,0.0979054,1.9785371,0.00048303604,1.963845,0.1264571,1.7337291,0.44767183,1.3396217,0.89233434,0.86960727,1.3610606,0.4287362,1.7490883,0.115545094,1.9696913,3.3557415e-5,1.9735641,0.108018875,1.7598412,0.41536593,1.3762903,0.8533813,0.9086369,1.3241665,0.4614036,1.7224991,0.20829552,1.9136741,0.016142428,1.9982767,0.043885827,1.8597598,0.28532493,1.529083,0.6864971,1.0801538,1.1577384,0.6133098,1.5937246,0.23289281,1.8970108,0.023927629,1.9998109,0.033118904,1.8791492,0.25841236,1.5619936,0.6494539,1.1192299,1.118844,0.64981794,1.561672,0.2586732,1.8789638,0.033218205,1.9998033,0.02384317,1.8971825,0.23264349,1.5940373,0.6129514,1.1581223,1.0797663,0.68686616,1.5287532,0.28559685,1.8595613,0.04399979,1.9982538,0.016072989,1.9138321,0.13435423,1.7227678,0.46107614,1.3245342,0.90824986,0.8537657,1.3759302,0.4156813,1.7595885,0.10819471,1.9734753,3.0457973e-5,1.9697862,0.11536378,1.7493457,0.4284172,1.361423,0.8692219,0.89272076,1.339256,0.4479959,1.733465,0.12664634,1.9637413,0.0004951954,1.9786172,0.09773773,1.7747679,0.39663988,1.3977544,0.83039564,0.93184125,1.3020587,0.48116177,1.7062104,0.14644498,1.9525208,0.0025014281,1.9859388,0.08150321,1.798995,0.36579305,1.4334724,0.79183096,0.97106683,1.1347102,0.6348808,1.5748336,0.24803323,1.8864791,0.029253542,1.9999926,0.027439952,1.8900034,0.24299783,1.5810945,0.62774897,1.1423085,1.0956999,0.67171586,1.5422615,0.2744962,1.8676252,0.039429784,1.9990709,0.019055009,1.9072199,0.21792579,1.6126013,0.59159356,1.1810635,1.056542,0.70905733,1.508853,0.30207807,1.8474331,0.05108744,1.9966083,0.012182951,1.923037,0.19405991,1.643163,0.55606806,1.2195392,1.0172969,0.7468474,1.4746598,0.33073634,1.8259342,0.118967235,1.967886,0.00011974573,1.9752021,0.10474986,1.7645562,0.40947235,1.3830285,0.8461803,0.91589236,1.3172677,0.4675547,1.7174444,0.13822085,1.957269,0.0014984012,1.9831399,0.08794546,1.7892747,0.37824076,1.419003,0.8075019,0.9550825,1.2797873,0.50120115,1.689539,0.15880352,1.9451756,0.004417062,1.9895613,0.072547734,1.8127759,0.34796804,1.4543314,0.7691204,0.9943418,1.2418753,0.5356169,1.6605701,0.18068361,1.9316244,0.008871138,1.9944568,0.05858034,1.8350236,0.22799355,1.5998807,0.6062459,1.1653099,1.0725039,0.6937917,1.522557,0.29071236,1.8558164,0.04616189,1.997797,0.014798462,1.9167657,0.20363188,1.6308331,0.5704571,1.2039065,1.033287,0.7314061,1.4886771,0.31893748,1.8348458,0.058689356,1.9944227,0.008828282,1.9317418,0.18049842,1.6608126,0.5353308,1.2421887,0.99401873,0.7694347,1.4540436,0.34821302,1.8125876,0.07266855,1.9895148,0.0043867826,1.945281,0.15862888,1.6897728,0.50092113,1.2800974,0.9547597,0.80781895,1.2951074,0.48740202,1.7010349,0.1502623,1.950278,0.003042698],"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/vercosf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/huge_positive.json
new file mode 100644
index 000000000000..aa2a117549ce
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/huge_positive.json
@@ -0,0 +1 @@
+{"expected":[0.00587976,1.9913855,1.9656901,1.923357,1.8651152,1.6981214,1.7051764,1.4882315,1.4968486,1.2448393,0.974747,0.98464644,0.99454737,1.0044488,0.47674,0.48520333,0.49371707,0.5022805,0.1198926,0.12463665,0.0012754202,0.00082445145,0.00047147274,0.00021642447,5.9485435e-5,4.7683716e-7,3.9577484e-5,0.5564544,0.54760206,0.53879404,0.53003126,0.52131456,0.51264477,0.5040228,0.49544942,1.5574257,1.549178,1.5408764,1.532522,1.5241151,1.9949015,1.5071483,1.9967035,1.4899826,1.9981146,1.4726248,1.9991343,1.3977282,1.9997622,1.4158185,1.999998,1.4337455,1.9998417,1.4515026,0.3934654,1.4690825,0.4093278,1.4864784,0.42542183,1.5036836,0.44174123,1.5206914,0.4582795,0.0074120164,0.47503018,0.0052002072,0.4919868,0.0033784509,0.5091426,0.0019475222,0.6214468,0.00090795755,0.6031929,0.00026023388,0.5850947,4.529953e-6,0.5671592,1.6229448,0.5493934,1.6073325,1.9796581,1.5914819,0.5143988,0.0029018521,1.9868357,1.5590913,0.4801659,1.3031695,1.9924655,1.5258238,0.44674832,1.3406638,1.9965386,1.4917318,0.31637555,1.3776239,1.9990487,1.4568683,0.34580988,1.4139917,1.9999919,0.029296577,0.3762703,1.4497102,1.9993668,0.020543754,0.407709,1.4847233,0.7357685,0.013327122,0.44007665,1.5189762,0.6977873,0.0076580048,0.4733225,1.7126911,0.6602801,0.0035453439,0.50739443,1.6843567,0.6233058,0.0009955168,0.54223895,1.654949,0.5869222,1.257658e-5,1.9704617,1.624514,0.55118656,0.000598073,1.9792533,1.5930995,0.5161549,1.2632632,1.9865091,1.5607548,0.48188204,1.3012557,1.9922175,1.5275306,0.28660506,1.3387756,1.9963697,1.4934789,0.31491166,1.3757641,1.9989592,0.040133,0.34429276,1.4121634,1.9999819,0.029780924,0.37470233,1.4479162,0.7761203,0.020950556,0.40609258,1.4829664,0.7377053,0.013655782,1.9194603,1.5172591,0.69970167,1.0663168,0.47161698,1.714098,1.9884094,0.0037162304,1.9476895,1.5833583,0.6251663,1.1450639,0.540455,1.6564648,0.1838234,2.4676323e-5,1.9699755,0.11500192,0.55298156,1.2229012,0.61217487,1.5947146,0.2321037,0.0026042461,1.9861784,0.08093482,0.4836002,1.2993407,0.9346848,1.529235,0.28519964,1.8598514,1.9961967,0.05263138,0.41745734,1.3739029,0.8559294,1.4604363,0.34277833,1.8167562,1.9999678,0.030269206,1.8845303,1.4461203,0.7780774,1.3887502,0.4044786,1.768539,1.9974678,0.013988435,1.9186691,1.5155399,0.70161724,1.0643135,0.46991354,1.715502,0.13963658,0.00389117,1.9470468,1.5817266,0.6270283,1.1430773,0.5386728,1.6579779,0.18266505,4.082918e-5,1.9694853,0.115938425,0.55477834,1.2209437,1.0158572,1.5963275,0.23081917,0.0024614334,1.9858438,0.08172786,0.4853205,1.2974246,0.9366883,1.5309374,0.2837971,1.8608747,1.9960198,0.053276062,0.41909033,1.3720402,0.85791636,1.4622176,0.3412665,1.8179129,1.9999497,0.030761361,1.8835919,1.4443226,0.7800355,0.98313904,0.40286696,1.7698219,1.9976084,0.014325023,1.9178742,1.5138186,0.703534,1.0623099,0.46821225,1.7169031,0.13861507,0.004070103,1.9464002,0.1567707,0.6288918,1.1410899,0.53689253,1.6594884,0.18150997,6.097555e-5,1.968991,0.11687857,0.5565769,1.2189852,1.0178646,1.597938,0.22953779,1.8993173,1.9855051,0.08252466,0.48704284,1.2955072,0.93869203,1.5326376,0.28239745,1.8618944,1.9958389,0.0539245,1.8426893,1.3701758,0.85990393,1.463997,0.33975732,1.8190663,1.9999275,0.03125745,1.8826501,1.4425231,0.78199434,0.98113173,0.40125775,1.7711017,0.100244224,0.014665604,1.9170756,1.5120952,0.70545197,1.0603061,0.4665131,1.7183013,0.13759702,0.0042530894,1.9457498,0.15785164,1.6908146,1.2424263,0.53511405,1.6609962,0.18035817,1.9318306,0.008795857,1.6411889,0.55837727,1.2170259,1.0198718,0.7443567,1.9539063,0.0021879077,1.9851626,0.08332515,1.7962308,0.36934316,0.68061376,1.5343356,0.28100067,1.8629107,0.042087078,1.7542233,0.42236328,1.3683101,0.861892,0.900078,1.3322885,0.025113702,1.9999013,0.031757414,1.8817046,0.2548076,1.5664432,1.3942922,0.399651,1.7723784,0.09936994,1.9778347,0.30081666,1.5103698,0.7073712,1.0583019,1.1793295,0.5932033,1.9895966,0.004440069,1.9450957,0.1589359,1.6893616,1.2443736,0.5333375,1.6625015,0.17920971,1.9325573,0.0085321665,1.6396469,0.5601794,1.2150656,1.0218791,0.74241626,1.4786887,0.0020571947,1.9848161,0.084129274,1.7950145,0.37090248,0.6787119,1.5360316,0.27960676,1.8639235,0.041512668,1.9987247,0.4240033,1.3664429,0.8638807,0.8980806,1.3341813,0.024668574,1.999871,0.032261312,1.8807557,0.25614792,1.5647876,1.3961365,0.3980466,1.7736521,0.09849924,1.9782531,0.30225343,1.5086422,0.7092915,1.0562975,1.1813042,0.5913701,1.9898834,0.0046310425,1.9444377,0.16002363,1.6879058,0.50315464,0.5315628,1.664004,0.17806453,1.9332802,0.008272469,1.6381023,0.56198335,1.2131045,1.0238862,0.74047697,1.4804504,0.0019305348,1.9844656,0.084937155,1.7937951,0.37246436,0.67681134,1.5377253,0.27821583,1.8649329,0.040942192,1.9988241,0.4256456,1.3645742,0.8658699,0.89608365,1.3360729,0.02422738,1.9998367,0.032769084,1.8798032,0.25749117,1.5631297,1.397979,0.39644468,1.7749226,0.09763223,1.9786675,0.0005028844,1.5069127,0.711213,1.054293,1.1832782,0.5895386,1.9901664,0.004826069,1.9437759,0.1611147,1.6864474,0.50489795,0.52979004,1.6655037,0.17692268,1.9339995,0.008016765,1.6365553,0.563789,1.2111425,1.0258932,0.7385386,1.4822102,0.0018078089,1.9841111,0.08574867,1.7925725,0.37402874,0.6749121,1.539417,0.27682775,1.8659387,0.04037553,1.9989195,0.4272902,1.3627039,0.86785966,0.8940871,1.3379631,0.44914222,1.9997985,0.03328079,1.8788471,0.25883746,1.5614694,1.3998201,0.39484513,1.7761899,0.0967688,1.979078,0.0005685687,1.5051811,0.7131357,1.0522883,1.1852515,0.5877087,1.9904451,0.005025029,1.9431102,0.16220915,1.6849861,0.5066432,0.5280191,1.6670009,0.17578417,1.9347148,0.0077650547,1.993516,0.56559646,1.2091798,1.0279001,0.73660135,1.483968,0.0016891956,1.9837526,0.086563945,1.7913467,0.37559563,1.4220712,1.5411063,0.2754426,1.8669411,0.039812744,1.9990108,0.42893714,1.3608323,0.86985,0.892091,1.3398519,0.44746774,1.9997561,0.03379637,1.8778875,0.26018673,1.5598071,1.4016594,0.39324808,1.7774541,0.09590906,1.9794846,0.00063830614,1.5034475,0.7150595,1.0502832,1.187224,0.5858805,1.617543,0.0052280426,1.9424409,0.16330701,1.683522,0.50839055,0.5262501,1.6684954,0.17464894,1.9354265,0.007517338,1.9932857,0.5674056,1.2072161,1.0299069,0.73466516,1.4857239,0.0015745759,1.9833902,0.08738285,1.7901177,0.37716508,1.4202504,1.5427936,0.27406037,1.86794,0.03925383,1.9990981,0.43058634,1.3589592,0.8718408,0.89009523,1.3417394,0.44579554,1.9997098,0.034315825,1.8769243,0.26153898,1.5581423,0.65381145,0.39165348,1.7787154,0.0950529,1.9798871,0.0007120371,1.5017118,0.7169845,1.0482781,1.1891958,0.58405393,1.6191208,0.005435109,1.9417677,0.1644082,1.6820552,0.51013976,0.524483,1.6699872,0.17351705,1.9361343,0.0072736144,1.9930514,0.56921655,1.2052517,1.0319136,0.73273,1.4874778,0.0014639497,1.9830239,0.08820546,1.7888855,0.37873703,1.4184278,0.8081236,0.95444965,1.2803954,0.117540956,1.7462592,0.43223786,1.3570846,0.8738321,0.8881,1.3436254,0.44412553,1.736617,0.12439144,1.9649713,0.94009954,0.8222461,1.4053333,0.39006126,1.7799733,0.09420043,1.9802859,0.00078976154,1.9615002,0.13070703,1.7278149,1.8198745,0.06802189,1.9912579,0.0056461096,1.9410907,0.1655128,1.6805856,0.511891,1.2679667,0.9673637,0.79545605,1.9165125,0.2040152,1.6303414,0.5710292,1.2032864,1.0339202,0.7307959,1.4892297,0.31847376,1.8351943,0.058475673,1.1377056,1.1003263,0.66732836,1.5461615,0.27130467,1.8699272,0.03814763,1.9992604,0.019968808,1.9052546,0.22083127,1.6089203,1.9008067,0.022080302,1.999605,0.035366476,1.8749874,0.26425242,1.5548062,0.6575812,1.1106234,1.1274421,0.64171576,1.8408442,0.31093276,1.4982345,0.7208379,1.044267,1.1931369,0.58040583,1.6222692,0.21032572,1.9123213,0.016741276,0.9777147,1.2579763,0.5209546,1.6729625,0.17126328,1.9375387,0.0067982078,1.9925709,0.06431812,1.8257592,0.33096707,0.13587189,1.9586031,0.001254797,1.9822792,0.08986163,1.7864115,0.3818884,1.4147775,0.8120658,0.9504389,1.2842473,0.1194368,1.7435805,0.43554777,1.3533312,0.8778163,0.88411087,1.3473934,0.44079226,1.7393266,0.122459054,1.966017,0.94410807,0.8182962,1.4090006,0.38688433,1.7824798,0.09250647,1.9810712,0.0009573698,1.960389,0.13269871,1.7250556,0.45828575,0.06657386,1.9917796,0.00608021,1.9397254,0.16773206,1.6776383,0.5153994,1.2640961,0.97137713,0.79152733,1.4337522,0.20645207,1.6272192,0.5746597,1.1993533,1.0379328,0.7269311,1.4927278,0.3155409,1.8373959,0.057130396,1.9949024,1.1043204,0.6635444,1.5495206,0.26856077,1.8719006,0.037056923,1.9994068,0.02077514,1.9035413,0.22335434,1.6057303,1.9025428,0.021249115,1.9994841,0.036432624,1.8730364,0.26697773,1.5514611,0.66135645,1.1066319,1.1314236,0.63797,1.838664,0.3138482,1.4947491,0.7246958,1.0402554,1.1970751,0.5767645,1.6254072,0.20786864,1.9139581,0.016017556,0.97370064,1.2618536,0.5174339,1.6759272,0.16902286,1.938928,0.0063388348,1.9920744,0.06574243,1.8234878,0.33395672,0.13385808,1.9597387,0.0010617971,1.9815187,0.09153253,1.783925,0.3850497,1.4111207,0.816011,0.94642895,1.2880946,0.4937107,1.7408897,0.4388668,1.3495721,0.8818025,0.8801236,1.3511558,0.437468,1.7420243,0.1205408,1.9670471,0.00017654896,0.81434923,1.4126614,0.38371724,1.7849736,0.09082711,1.9818408,0.0011410713,1.9592624,0.13470447,1.7222844,0.46166515,0.065140784,1.9922855,0.0065303445,1.9383448,0.16996473,1.67468,0.5189156,1.2602212,0.975391,0.78760195,1.4373666,0.20890182,1.6240869,0.57829714,1.195417,1.0419449,0.7230706,1.4962177,0.3126191,1.8395839,0.05580026,1.9952992,1.108313,0.65976596,1.5528709,0.2658286,1.8738596,0.035981774,1.999537,0.021597207,1.9018135,0.22588998,1.6025306,1.9042645,0.020433664,1.9993471,0.03751433,1.8710712,0.26971483,1.5481071,0.66513723,1.1026386,1.1354029,0.63423,1.5754056,0.31677467,1.4912556,0.72855806,1.0362431,1.20101,0.57313,1.6285353,0.20542431,1.9155802,0.015309751,1.9979889,1.2657266,0.513921,1.6788808,0.16679585,1.9403021,0.005895436,1.9915619,0.067181826,1.8212031,0.3369571,1.4673018,1.9608588,0.00088483095,1.9807425,0.09321803,1.7814257,0.38822097,1.4074571,0.8199592,0.9424199,1.2919374,0.49025214,1.738187,0.44219488,1.3458073,0.8857905,0.87613827,1.3549125,0.43415284,1.74471,0.11863673,1.9680616,0.00010919571,0.8104053,1.4163156,0.3805601,1.787455,0.08916241,1.9825947,0.0013409257,1.9581202,0.13672411,1.7195017,0.46505326,0.06372285,1.9927752,0.006996453,1.9369493,0.17221075,1.671711,0.52243954,1.2563423,0.9794052,0.78368,1.4409739,0.21136427,1.6209445,0.58194125,1.1914777,1.0459563,0.7192146,1.4996998,0.30970836,1.8417583,0.05448532,1.9956801,0.010588944,0.655993,1.5562122,0.2631083,1.8758047,0.034922123,1.9996512,0.02243507,1.9000711,0.22843808,1.5993211,0.6068886,0.019634008,1.9991939,0.03861159,1.8690921,0.27246368,1.5447443,0.6689234,1.0986438,1.1393801,0.6304959,1.5786848,0.3197121,1.4877543,0.73242474,1.0322301,1.2049416,0.5695024,1.6316532,0.2029928,1.9171875,0.014617741,1.9977263,1.2695954,0.5104159,1.6818235,0.16458225,1.9416611,0.00546813,1.9910333,0.06863624,1.8189052,0.3399682,1.4637482,1.9619634,0.0007240176,1.9799503,0.09491819,1.778914,0.39140207,1.4037869,0.8239103,0.9384118,1.2957754,0.48680186,1.7354723,0.4455319,1.342037,0.88978046,0.87215495,1.3586636,0.43084675,1.7473838,0.11674684,1.9690604,5.787611e-5,1.9741478,1.4199629,0.37741292,1.7899234,0.087512374,1.9833326,0.0015568137,1.9569627,0.1387577,1.7167073,0.46845,1.3162647,1.9932489,0.007478595,1.9355384,0.17447013,1.668731,0.5259712,1.252459,0.9834198,0.77976155,1.4445741,0.3562883,1.6177921,0.5855922,1.1875352,1.0499669,0.71536314,1.5031738,0.30680877,1.843919,0.05318564,1.9960449,0.011179745,0.6522256,1.5595446,0.26039988,1.8777357,0.033878088,1.9997492,0.023288727,1.8983142,0.23099864,1.5961021,0.6105838,0.018850148,1.9990247,0.03972429,1.8670989,0.27522433,1.5413728,0.6727148,1.0946473,1.1433551,0.62676775,1.5819548,0.32266057,1.4842452,0.7362958,1.0282167,1.20887,0.5658817,1.634761,0.2005741,1.91878,0.013941646,1.9974477,1.2734598,0.5069188,1.6847553,0.16238213,1.9430048,0.0050567985,1.9904888,0.07010567,1.8165941,0.34298992,1.4601871,0.7627189,0.00057929754,1.9791424,0.0966329,1.7763896,0.394593,1.4001104,0.8278642,0.9344046,1.2996086,0.4833598,1.7043891,0.44887787,1.3382611,0.8937721,0.86817366,1.3624088,0.4275499,1.7500454,0.11487126,1.9700437,2.2768974e-5,1.9732329,1.4236035,0.3742758,1.7923794,0.08587706,1.9840548,0.0017888546,1.9557897,0.14080518,1.7139014,0.47185534,1.312453,1.9937067,0.00797677,1.9341125,0.17674285,1.6657401,0.5295105,1.2485719,0.9874346,0.7758467,1.4481672,0.35322076,1.6146297,0.5892498,1.1835896,1.0539768,0.71151626,1.5066397,0.30392033,1.8460665,0.05190128,1.9963936,0.011786401,0.6484638,1.5628679,0.25770342,1.8796525,0.03284955,1.999831,0.02415812,1.8965428,0.23357159,1.5928733,0.6142852,1.1566942,1.9988394,0.040852547,1.8650918,0.2779966,1.5379924,0.67651165,1.0906492,1.1473277,0.6230457,1.5852153,0.23969305,1.4807281,0.7401711,1.0242028,1.212795,0.5622681,1.6378584,0.19816834,1.9203577,0.013281465,1.9971529,0.048930526,0.50342953,1.687676,0.16019553,1.9443336,0.00466156,1.9899284,0.071590066,1.8142699,0.3460223,1.4566185,0.76662135,0.00045073032,1.9783187,0.09836221,1.7738527,0.3977937,1.3964273,0.83182096,0.9303986,1.303437,0.4799261,1.7072334,0.45223278,1.3344798,0.8977655,0.8641945,1.3661481,0.42426223,1.7526951,0.11300987,1.9710113,3.7550926e-6,1.9723022,1.4272374,0.37114877,1.7948223,0.08425653,1.984761,0.0020369291,1.9546013,0.14286655,1.711084,0.4752692,1.3086363,1.9941485,0.00849092,1.9326717,0.17902881,1.6627387,0.53305733,1.2446806,0.99144965,0.7719354,1.451753,0.35016364,1.8110876,0.073633134,1.9891405,0.0041496754,1.9461162,0.15724313,0.26208717,1.5574679,0.6545739,1.1138058,1.124265,0.6447076,1.5661821,0.2550189,1.8815551,0.03183669,1.9998968,0.02504319,1.894757,0.23615688,1.5896351,0.6179929,1.1527272,1.0852091,0.68168414,1.5333807,0.28178602,1.8623395,1.9364197,0.007176101,1.9929554,0.063192904,1.8275611,0.32859015,1.4772034,0.7440505,1.0201886,1.2167166,0.55866146,1.6409457,0.19577545,1.9219205,0.012637198,1.9968421,0.050178826,1.8489652,0.30000967,1.5113406,0.70629144,1.0594293,1.1782184,1.3443885,0.4434502,1.7371663,0.12399924,1.9651842,0.00033825636,1.9774792,0.10010606,1.7713034,0.40100414,1.3927377,0.8357804,0.9263936,1.3072605,0.47650075,1.7100666,0.14361233,1.9541695,0.00213027,1.9850115,0.08367646,1.7956991,1.67999,0.5126004,1.2671837,0.96817595,0.7946607,1.4308643,0.36803186,1.7972525,0.08265072,1.9854515,0.0023011565,1.9533975,0.14494169,1.708255,0.47869146,1.3048146,0.92895603,0.83324665,1.3950992,0.39894885,1.772936,0.09898859,0.03792566,1.9992914,0.020130694,1.9049089,0.2213409,1.6082754,0.5965848,1.1756897,1.0619937,0.70383656,1.5135468,0.29817718,1.85032,0.049378335,1.9970429,0.013047576,1.9209223,0.19730502,1.6389716,0.56096834,1.2142079,1.0227572,0.74156773,0.57966834,1.622905,0.20982742,1.9126537,0.016593516,1.9984205,0.043155313,1.8610357,0.28357607,1.5312058,0.6841208,1.082649,1.1552658,0.6156198,1.5917082,0.23450124,1.8959013,0.024475038,1.9998565,0.03248298,1.8803394,0.2567352,0.3825274,1.414038,0.812864,0.9496273,1.2850263,0.4964751,1.6934841,0.15586299,1.946945,0.0039191246,1.9887595,0.074603796,1.8095821,0.3521185,1.4494594,0.7744376,0.98888063,1.2471709,0.53078705,1.6646605,0.17756462,1.9335954,1.9812284,0.0009932518,1.9601622,0.13310355,1.7244956,0.45896894,1.3269012,0.9057572,0.85624284,1.3736091,0.41771483,1.7579577,0.10933012,1.9728994,1.4066696e-5,1.9703939,0.11419922,1.7510011,0.42636478,1.3637562,0.8667403,0.89521015,1.3369,1.4934347,0.31494868,1.8378397,0.05685997,1.9949839,0.0095671415,1.9297448,0.18364042,1.6567037,0.54017365,1.2368864,0.9994801,0.7641239,1.4589027,0.3440808,1.8157586,0.07063854,1.9902889,0.004912615,1.9434851,0.16159308,1.6858084,1.550783,0.6621212,1.1058239,1.1322291,0.6372126,1.5727832,0.24968588,1.8853178,0.029857695,1.99998,0.026860595,1.8911421,0.24136436,1.5831301,0.6254266,1.1447861,1.0932076,0.6740817,1.5401564,0.2762214,1.8663776,0.040128827,0.0062478185,1.991972,0.06603253,1.8230264,0.33456308,1.4701309,0.7518217,1.0121591,1.2245493,0.5514697,1.647089,0.19102871,1.9250016,0.011396408,1.9961722,0.05272132,1.844694,0.30576718,1.5044229,0.71397716,1.0514112,1.1861144,0.5869087,0.43679637,1.7425687,0.12015432,1.9672537,0.0001616478,1.9757531,0.10363722,1.7661674,0.40745384,1.38534,0.8437071,0.9183873,1.3148925,0.46967548,1.7156981,0.13949353,1.956542,0.0016385317,1.9835945,0.08692175,1.7908094,0.37628192,0.51962817,1.2594366,0.9762033,0.78680795,1.4380972,0.36182868,1.8020744,0.07948351,1.9867845,0.0028777719,1.9509438,0.14913327,1.702563,0.48556125,1.2971565,0.9369685,0.825334,1.4024636,0.39255017,1.7780063,0.095534086,1.9796612,1.9995614,0.02176553,1.901462,0.22640467,1.6018819,0.6039458,1.1677785,1.0700067,0.69617593,1.5204209,0.29247934,1.8545187,0.046916723,1.9976277,0.014372408,1.9177628,0.20212018,1.6327736,0.5681976,1.2063569,1.0307847,0.7338184,0.5723953,1.6291671,0.20493114,1.9159067,0.015168428,1.997937,0.04551983,1.856924,0.28920174,1.524385,0.69175017,1.0746434,1.1631938,0.60821867,1.5981629,0.22935885,1.89944,0.022740722,1.9996883,0.03454429,1.8765018,0.2621315,1.5574133,1.4067148,0.82075864,0.94160867,1.2927145,0.4895532,1.6992474,0.15158486,1.9494954,0.0032410026,1.9875271,0.07767719,1.804842,0.35825652,1.4422714,0.7822684,0.98085105,1.2549442,0.5237106,1.6706388,0.17302293,1.9364429,0.007168293,0.0013833046,1.9578872,0.13713455,1.7189372,0.46574003,1.3193014,0.91375494,0.8483004,1.381046,0.41120493,1.7631717,0.105707765,1.974725,8.8870525e-5,1.9684231,0.11795443,1.7456744,0.4329611,1.3562641,0.8747034,0.8872273,1.3444501,1.5004035,0.30912066,1.8421967,0.054221094,1.9957552,0.010707259,1.926758,0.18830466,1.6506264,0.5473196,1.2290769,1.0075105,0.7563277,1.466023,0.33804035,1.8203771,0.0677039,1.9913733,0.005739689,1.9407933,0.16599709,1.6799419,0.51265776,0.66969025,1.0978351,1.1401848,0.62974095,1.5793474,0.24440128,1.8890233,0.027941287,1.9999986,0.028740704,1.8874698,0.24662083,1.5765877,0.6328845,1.1368356,1.1012001,0.6665002,1.5468969,0.2707035,1.8703601,0.03790772,1.9992938,1.9909244,0.068932414,1.8184385,0.3405789,1.4630282,0.7596089,1.0041288,1.2323674,0.54430676,1.6531907,0.18633407,1.9280231,0.010219336,1.9954382,0.055324912,1.8403685,0.3115695,1.4974728,0.72168136,1.0433897,1.1939986,0.5796088,0.43017882,1.7479234,0.11636609,1.9692607,4.9471855e-5,1.973964,0.10722619,1.760982,0.41394174,1.3779172,0.8516439,0.91038626,1.3225043,0.46288443,1.7212836,0.13543022,1.9588528,0.001211226,1.9821142,0.090225875,1.7858688,0.38257903,1.4139782,1.2516727,0.9842323,0.778969,1.4453019,0.35566664,1.8068445,0.07637566,1.9880538,0.0035187602,1.9484289,0.1533798,1.6968257,0.49246413,1.2894791,0.94498503,0.81743264,1.409802,0.3861907,1.7830265,0.09213787,1.981241,0.0009961724,0.023463428,1.8979568,0.23151839,1.5954494,0.61133236,1.1598564,1.0780152,0.68853486,1.5272615,0.2868271,1.8586624,0.044516563,1.9981484,0.015760839,1.914544,0.20698684,1.6265349,0.5754548,1.1984926,1.0388105,0.72608626,1.4934918,1.6353886,0.20008618,1.9191005,0.01380676,1.9973893,0.047945857,1.8527572,0.29487324,1.5175302,0.6993996,1.0666329,1.1711113,0.60084283,1.604579,0.22426611,1.9029207,0.021069407,1.9994555,0.036667943,1.8726077,0.26757538,1.5507282,0.662183,0.8286648,0.9335938,1.3003838,0.48266417,1.7049656,0.1473614,1.9519846,0.0026271343,1.9862309,0.08081001,1.8000501,0.3644359,1.4350548,0.7901132,0.97282267,1.262701,0.51666486,1.6765741,0.16853458,1.9392298,0.006240487,1.9919636,1.9555504,0.14122128,1.7133322,0.47254556,1.311681,0.9217583,0.8403678,1.3884584,0.40473306,1.7683363,0.10214311,1.9764876,0.00022810698,1.9663898,0.12176657,1.7402995,0.43959397,1.3487492,0.88267463,0.8792517,1.3519781,0.43674213,0.30333716,1.8464993,0.051643193,1.9964621,0.011911154,1.9237114,0.1930213,1.644507,0.55449474,1.2212526,1.0155406,0.74854714,1.4731131,0.33204257,1.8249426,0.06482935,1.992394,0.006630957,1.9380409,0.17045486,1.6740315,0.51968575,0.67728066,1.0898399,1.1481314,0.6222931,1.5858741,0.23916543,1.8926715,0.026087582,1.9999528,0.030683458,1.8837402,0.25192583,1.5700078,0.6403661,1.1288762,1.109186,0.65894026,1.5536025,0.26523256,1.8742863,0.03574866,1.9995633,0.02177912,0.07189232,1.813798,0.34663725,1.4558954,0.76741165,0.99609834,1.2401706,0.5371733,1.6592503,0.18169194,1.9309847,0.009106159,1.9946399,0.05798942,1.8359888,0.31741625,1.4904904,0.7294035,1.0353653,1.2018702,0.57233596,1.6292181,1.7532299,0.1126349,1.9712052,1.847744e-6,1.9721119,0.110872746,1.7557476,0.4204675,1.37047,0.8595903,0.902391,1.3300953,0.45612794,1.7268226,0.1314227,1.9611018,0.0008482933,1.9805706,0.09358865,1.7808775,0.38891596,1.4066548,1.2438927,0.99226224,0.7711443,1.4524778,0.3495462,1.8115625,0.07332736,1.9892596,0.0042239428,1.9458528,0.15768087,1.6910436,0.49939978,1.2817832,0.9530051,0.809543,1.4171139,0.37987083,1.787996,0.08880025,1.9827574,0.0013867617,1.9578683,1.8943939,0.23668158,1.5889786,0.61874396,1.1519241,1.0860187,0.6809139,1.5340679,0.28122085,1.8627505,0.042178035,1.9986048,0.017212689,1.9112663,0.21190459,1.620256,0.5827393,1.1906155,1.0468336,0.71837175,1.5004604,0.3090732,0.19529277,1.922235,0.01250875,1.9967773,0.050433338,1.8485353,0.30059022,1.510642,0.7070683,1.0586181,1.1790179,0.59349275,1.6109562,0.21922344,1.9063431,0.019461155,1.9991584,0.038853645,1.8686574,0.27306652,1.5440075,0.66975224,0.83658206,0.9255832,1.3080337,0.47580856,1.7106385,0.143193,1.9544125,0.0020775795,1.9848709,0.0840022,1.7952065,0.3706563,1.4278101,0.79797155,0.96479607,1.270441,0.50965035,1.6824658,0.16409987,1.9419563,0.005376756,1.9909155,0.068956375,0.14536333,1.7076812,0.47938514,1.3040406,0.92976665,0.83244544,1.3958457,0.39829957,1.7734513,0.09863639,1.9781873,0.00043189526,1.9642942,0.12563527,1.734877,0.44626302,1.3412116,0.89065343,0.8712839,1.3594832,0.43012482,1.747967,1.8507473,0.049126446,1.9971049,0.013178766,1.9206052,0.19778997,1.6383462,0.5616986,1.213414,1.0235696,0.74078286,1.4801726,0.32608783,1.8294549,0.062015176,1.9933505,0.007586241,1.9352279,0.1749661,1.6680777,0.5267447,1.2516092,1.0818391,1.1560686,0.6148697,1.5923631,0.23397863,1.896262,0.024296701,1.9998424,0.032688737,1.8799536,0.2572791,1.5633914,0.6478708,1.1209086,1.117165,0.6514023,1.5602722,0.25980908,1.8781562,0.03365177,1.9997684,0.023477554,1.897928,1.8091048,0.35273772,1.4487333,0.77522933,0.98806804,1.2479582,0.5300696,1.6652673,0.17710263,1.9338863,0.008056819,1.9937775,0.060714662,1.8315551,0.32330692,1.4834765,0.73714304,1.0273387,1.2097288,0.5650907,1.6354394,0.20004678,0.10896093,1.9730871,1.8656254e-5,1.9701974,0.11457664,1.7504642,0.42703056,1.3629991,0.8675457,0.894402,1.337665,0.44940662,1.7323146,0.12747121,1.9632888,0.00054979324,1.9789636,0.0970099,1.7758358,0.39529228,1.3993053,0.8287295,1.0002928,0.76333433,1.4596245,0.34346765,1.8162284,0.070338845,1.9904015,0.004993379,1.9432156,0.16203624,1.6852168,0.50636774,1.2740691,0.96102816,0.8016657,1.424399,0.37359095,1.7929147,0.08552134,1.9842106,0.0018417239,1.9555311,1.890773,0.24189407,1.5824699,0.6261802,1.1439819,1.0940167,0.6733135,1.5408399,0.27566093,1.8667831,0.039901257,1.9989965,0.018727899,1.9079299,0.21687317,1.6139368,0.5900507,1.1827261,1.0548537,0.7106755,1.5073967,0.30329007,1.8465343,1.9253101,0.011274397,1.9961009,0.052982032,1.8442588,0.30635232,1.5037211,0.7147559,1.0505996,1.1869128,0.58616877,1.6172938,0.21423113,1.9097071,0.017916203,1.9987967,0.041101336,1.864651,0.27860457,1.5372518,0.6773428,1.0897746,0.9175774,1.3156637,0.46898675,1.7162654,0.13907981,1.9567786,0.0015923381,1.9834477,0.08725339,1.7903118,0.3769173,1.4205377,0.80584294,0.95677173,1.2781634,0.50266737,1.6883132,0.15971905,1.944622,0.0045772195,1.9898037,0.07191676,0.14956051,1.7019846,0.48625827,1.2963804,0.93777955,0.82453394,1.4032073,0.3919049,1.7785165,0.09518772,1.9798238,0.00070011616,1.9621363,0.12956041,1.7294071,0.45296776,1.333652,0.89863926,0.8633244,1.3669653,0.42354435,1.753273,0.11260468,0.046671033,1.9976834,0.0145100355,1.9174397,0.20261031,1.6321442,0.56893075,1.2055616,1.031597,0.7330352,1.4872012,0.32017654,1.8339138,0.05926144,1.994243,0.00860548,1.9323545,0.17953062,1.6620808,0.5338342,1.243829,0.9923279,1.1639955,0.6074711,1.598814,0.22884125,1.8997948,0.022568703,1.9996676,0.034756362,1.8761103,0.26268023,1.5567385,0.65539825,1.1129332,1.1251364,0.6438868,1.5669059,0.25443327,1.8819695,0.031617165,1.9999089,0.025238931,1.8943645,1.8043594,0.35887998,1.4415424,0.78306156,0.9800386,1.2557299,0.5229962,1.6712415,0.1725663,1.9367275,0.007071495,1.992851,0.06350052,1.8270679,0.32924134,1.4764314,0.74489963,1.0193105,1.217574,0.55787355,1.6416196,0.19525379,1.9222604,1.9749062,0.000100016594,1.9682202,0.11833763,1.7451327,0.43363065,1.3555048,0.8755097,0.8864199,1.3452129,0.44272077,1.7377595,0.123575926,1.9654136,0.0003157854,1.9772935,0.10048944,1.7707441,0.4017076,1.3919299,0.8366468,0.92551774,0.75553966,1.4667418,0.3374315,1.8208414,0.06741029,1.9914795,0.00582695,1.9405175,0.16644573,1.6793458,0.51336753,1.2663373,0.9690538,0.7938012,1.4316567,0.3673514,1.7977824,0.08230144,1.9856002,0.0023610592,1.9531322,0.14539742,0.24715543,1.5759234,0.63364047,1.1360306,1.1020085,0.6657342,1.5475771,0.27014774,1.87076,0.037686408,1.9993241,0.020306408,1.9045348,0.22189224,1.607578,0.59738857,1.1748251,1.0628703,0.7029978,1.5143003,0.2975518,1.8507819,0.04910612,0.010103822,1.9953604,0.055591762,1.8399278,0.31215912,1.4967676,0.72246194,1.0425777,1.1947957,0.5788716,1.6235919,0.20928943,1.9130124,0.01643461,1.9983706,0.043410897,1.8605888,0.2841891,1.5304614,0.68495417,1.0817736,1.1561334,1.3232734,0.46219915,1.7218462,0.13502216,1.9590832,0.0011715293,1.9819609,0.090563476,1.785366,0.38321847,1.4132384,0.81372684,0.94875014,1.285868,0.4957165,1.6941166,0.15539241,1.9472269,0.003841877,1.9886279,0.074936986,1.8090663,1.6962428,0.49316448,1.2887013,0.94579643,0.8166337,1.4105431,0.38554937,1.7835315,0.09179747,1.9813973,0.0010327697,1.9599164,0.1335417,1.7238901,0.4597078,1.326071,0.9066316,0.85537374,1.3744236,0.417001,1.7585304,0.108931184,0.04427713,1.9981976,0.015904844,1.9142151,0.20748216,1.6259015,0.57619065,1.1976961,1.0396224,0.72530484,1.4941984,0.31430912,1.8383188,0.056568384,1.9950714,0.009688735,1.9294211,0.18414795,1.6560411,0.54095376,1.236033,1.0003583,0.76327056,0.6000979,1.6052262,0.22375357,1.9032696,0.020903766,1.9994284,0.036886275,1.8722105,0.26812893,1.5500498,0.66294795,1.1049504,1.1330996,0.63639426,1.5735029,0.24910557,1.8857257,0.029645085,1.9999851,0.027063131,1.8907433,0.24193686,0.36506355,1.4343228,0.7909078,0.9720104,1.2634851,0.51595366,1.6771723,0.16808337,1.9395086,0.006150186,1.9918605,0.066346765,1.8225273,0.3352189,1.4693556,0.7526726,1.0112809,1.225405,0.5506848,1.6477585,0.19051272,1.9253349,1.9766625,0.00024580956,1.9661806,0.12215549,1.739753,0.4402672,1.3479874,0.8834817,0.8784451,1.3527385,0.4360708,1.7431567,0.11973721,1.9674761,0.0001462102,1.9755604,0.10402691,1.7656026,0.40816152,1.3845294,0.84457463,0.917512,1.315726,0.46893108,1.7163112,0.13904643,1.9567977,0.0015886426,1.9834358,0.087280214,1.7902715,0.37696862,1.4204782,0.8059073,1.0890306,1.1489351,0.62154084,1.5865326,0.23863834,1.8930373,0.025903523,1.9999444,0.03088355,1.8833597,0.2524653,1.56934,0.6411244,1.1280704,1.1099938,0.6581764,1.5542791,0.26468158,1.8746805,0.035533667,1.999587,0.021948159,1.9010814,0.2269615,1.6011803,0.6047524,1.1669126,1.0708828,0.69533926,1.5211706,0.2918589,1.8549745,0.046651244,1.9976878,0.014521182,1.9174136,0.20264995,1.6320933,0.56899,1.2054974,1.0316626,0.73297197,1.4872586,0.32012844,1.753764,0.11226052,1.9713985,5.9604645e-7,1.9719211,0.11124492,1.755215,0.42112994,1.3697152,0.8603949,0.9015823,1.3308623,0.45544624,1.7273804,0.13102031,1.9613259,0.0008151531,1.9804108,0.09393221,1.7803695,0.3895594,1.4059124,0.8216227,0.9407319,1.2935542,0.48879814,1.699875,0.15112025,1.9497707,0.0031707287,1.9873884,0.07801688,1.8043206,0.35893035,1.4414835,0.78312564,0.9799729,1.2557933,0.5229385,1.6712902,0.17252946,1.9367507,0.007063687,1.9928432,0.06352353,1.8940301,0.23720682,1.5883217,0.61949533,1.1511209,1.0868284,0.68014383,1.5347548,0.2806561,1.8631612,0.04194486,1.9986472,0.017363131,1.9109313,0.21240509,1.6196182,0.5834779,1.1898178,1.0476453,0.7175921,1.5011637,0.30848593,1.84267,0.053936183,1.9958355,0.010835826,1.9264277,0.18881798,1.6499591,0.5481029,1.2282219,1.0083888,0.755476,1.4667997,0.33738232,1.820879,0.06738657,1.9914881,0.005834043,1.9404953,0.16648197,1.6792977,0.5134249,1.266274,0.96911937,0.92477286,1.3088067,0.47511667,1.71121,0.14277428,1.9546547,0.0020255446,1.9847298,0.08432847,1.7947136,0.37128806,1.4270754,0.79876745,0.96398395,1.2712233,0.50894225,1.6830595,0.16365409,1.9422288,0.005292952,1.990806,0.069253206,1.8179336,0.3412394,1.4622495,0.76046157,1.0032506,1.2332215,0.54352516,1.6538556,0.18582386,1.92835,0.010094464,1.9953539,0.05561334,1.8398921,0.3122068,1.4967107,0.722525,1.0425122,1.1948601,0.57881206,1.6236432,0.20924926,1.8511741,0.048875213,1.9971664,0.013310611,1.9202876,0.19827539,1.6377205,0.5624292,1.21262,1.0243819,0.7399981,1.4808853,0.32548767,1.8299086,0.061733723,1.9934437,0.007686436,1.9349399,0.17542559,1.6674728,0.5274607,1.2508227,0.98511046,0.77811253,1.4460881,0.35499525,1.807363,0.076039374,1.9881889,0.0035927296,1.9481502,0.15384752,1.6961956,0.4932211,1.2886384,0.94586194,0.8165692,1.4106029,0.38549757,1.7835723,0.09176999,1.9814099,0.0010357499,1.959898,0.13357443,1.808627,0.35335737,1.448007,0.77602124,0.9872555,1.2487454,0.5293524,1.6658738,0.17664117,1.9341764,0.00795418,1.9936867,0.06099385,1.8311036,0.32390547,1.4827651,0.7379272,1.0265265,1.2105234,0.5643591,1.6360667,0.19955945,1.9194462,0.013661683,1.9973254,0.048214912,1.8522983,0.29549628,1.5167785,0.70023733,1.0657566,1.1719767,0.6000377,1.6052785,0.2237122,1.9032978,0.020890415,1.9994261,0.036903918,1.8721783,0.26817364,1.549995,0.66300976,1.1048852,1.1331646,0.7625449,1.4603461,0.34285492,1.8166976,0.07003975,1.9905136,0.005074799,1.9429452,0.16248,1.6846247,0.5070746,1.2732875,0.9618402,0.8008693,1.4251347,0.3729577,1.7934096,0.0851928,1.9843541,0.0018913746,1.955291,0.14167154,1.7127163,0.47329193,1.3108463,0.9226339,0.83950084,1.3892674,0.40402758,1.768898,0.10175675,1.9766766,0.00024729967,1.9661636,0.1221869,1.7397088,0.44032162,1.3479259,0.8835469,0.87837994,1.3527999,0.43601662,1.7432007,0.119706094,1.9256179,0.011153042,1.9960289,0.05324334,1.843823,0.30693787,1.503019,0.7155349,1.049788,1.1877111,0.5854292,1.617933,0.21372873,1.9100442,0.017763436,1.9987565,0.041332245,1.8642423,0.27916753,1.5365663,0.67811203,1.0889652,1.1489999,0.6214801,1.5865858,0.23859578,1.8930669,0.025888681,1.9999439,0.030899704,1.8833289,0.25250894,1.5692861,0.6411857,1.1280053,1.110059,0.6581148,1.5543337,0.2646371,1.8747122,0.03551632,1.999589,0.021961808,1.901053,0.22700316,1.7014056,0.48695558,1.2956042,0.9385906,0.823734,1.4039508,0.39125997,1.7790263,0.09484202,1.979986,0.00073087215,1.9619145,0.12996072,1.7288508,0.4536482,1.3328859,0.8994477,0.86251944,1.3677211,0.42288053,1.7538072,0.1122303,1.9714141,5.364418e-7,1.9719057,0.11127502,1.755172,0.42118347,1.3696542,0.8604599,0.901517,1.3309242,0.45539117,1.7274255,0.13098782,1.961344,0.0008125305,1.9803978,0.09395999,1.7803285,0.38961142,1.4058523,0.82168734,0.9406664,1.1647971,0.6067239,1.5994647,0.22832417,1.9001491,0.022397399,1.9996464,0.03496909,1.8757184,0.26322943,1.5560633,0.65616125,1.1121258,1.1259425,0.64312756,1.5675751,0.25389194,1.8823521,0.031414807,1.9999197,0.025420666,1.8940006,0.23724926,1.5882686,0.61955607,1.151056,1.0868937,0.68008167,1.5348103,0.2806105,1.8631943,0.041926026,1.9986508,0.01737529,1.9109043,0.2124455,1.6195667,0.5835376,1.1897533,1.0477109,0.7175292,1.5012205,0.30843854,1.8427052,0.053914905,1.9750868,0.00011181831,1.9680166,0.118721366,1.7445905,0.43430054,1.354745,0.876316,0.8856126,1.3459754,0.44204617,1.7383077,0.12318492,1.965625,0.00029569864,1.977121,0.10084474,1.770226,0.40235895,1.3911822,0.83744854,0.9247074,1.3088691,0.47506082,1.711256,0.14274049,1.9546742,0.0020213723,1.9847184,0.08435488,1.7946737,0.37133908,1.427016,0.7988318,0.9639183,1.2712865,0.508885,1.6831074,0.16361815,1.9422508,0.0052862167,1.990797,0.06927717,1.8178959,0.3412888,1.575259,0.63439673,1.1352254,1.1028168,0.66496843,1.5482569,0.26959246,1.8711592,0.03746575,1.9993536,0.020469666,1.904188,0.22240293,1.6069324,0.59813255,1.1740248,1.0636814,0.70222193,1.514997,0.2969737,1.8512087,0.048854947,1.9971714,0.0133212805,1.9202619,0.1983146,1.6376699,0.5624882,1.2125559,1.0244476,0.7399347,1.4809427,0.3254392,1.8299452,0.061711013,1.9934512,0.007694602,1.9349165,0.17546272,1.667424,0.5275186,1.2507591,0.9851761,0.7780485,1.3240423,0.46151423,1.7224083,0.13461465,1.9593129,0.0011325479,1.9818069,0.09090173,1.7848628,0.38385832,1.4124982,0.8145253,0.9479386,1.2866466,0.49501497,1.6947012,0.15495765,1.9474871,0.003771007,1.9885054,0.07524592,1.8085884,0.35340744,1.4479483,0.77608526,0.9871898,1.248809,0.5292945,1.6659228,0.17660391,1.9341999,0.007945955,1.9936793,0.06101644,1.831067,0.32395387,1.4827075,0.73799056,1.0264609,1.2105875,0.56430006,1.6361172,0.19952005,1.919472,0.013650894,1.998246,0.016049504,1.9138854,0.20797801,1.6252675,0.5769268,1.1968994,1.0404344,0.72452354,1.4949048,0.31371784,1.8387616,0.05629927,1.9951516,0.009801865,1.9291209,0.18461818,1.6554276,0.5416758,1.2352433,1.001171,0.7624811,1.4604044,0.34280545,1.8167355,0.07001561,1.9905225,0.005081415,1.9429234,0.16251588,1.6845767,0.5071317,1.2732244,0.9619058,0.800805,1.425194,0.37290657,1.7934496,0.085166335,1.9843657,0.0018954277,1.9552717,0.14170527,1.7126703,0.36569154,1.4335908,0.7917025,0.9711981,1.2642689,0.5152427,1.67777,0.16763276,1.9397866,0.0060605407,1.9917567,0.06663811,1.8220649,0.33582622,1.468638,0.75346005,1.0104684,1.2261966,0.54995906,1.6483773,0.19003588,1.9256427,0.011143267,1.996023,0.05326444,1.8437878,0.3069852,1.5029622,0.71559787,1.0497224,1.1877756,0.58536947,1.6179847,0.2136882,1.9100714,0.017751098,1.9987533,0.04135096,1.8642094,0.27921307,1.536511,0.67817426,1.0888999,1.1490649,0.6214193,1.4745443,0.3308339,1.8258601,0.06425494,1.9925927,0.0068190694,1.9374764,0.17136353,1.6728301,0.52111185,1.2578032,0.9778938,0.78515625,1.4396166,0.36052775,1.8030832,0.07882416,1.987057,0.003007412,1.9504194,0.15002286,1.7013588,0.48701197,1.2955415,0.9386561,0.8236694,1.4040109,0.39120787,1.7790675,0.09481412,1.9799991,0.00073337555,1.9618965,0.12999308,1.728806,0.45370317,1.332824,0.899513,0.8624544,1.3677821,0.4228269,1.7538503,0.11220008,1.9714296,4.7683716e-7,1.9944706,0.058536053,1.8350959,0.3186049,1.4890735,0.7309685,1.0337411,1.2034618,0.5708674,1.6304805,0.20390671,1.916584,0.014876425,1.997827,0.046025515,1.8560513,0.29039216,1.5229445,0.6933592,1.072957,1.1648618,0.60666347,1.5995171,0.22828239,1.9001777,0.02238357,1.9996446,0.034986258,1.8756866,0.26327384,1.5560088,0.6562229,1.1120605,1.1260077,0.6430663,1.5676291,0.25384825,1.8823831,0.031398475,1.9999204,0.025435388,1.8939712,0.23729175,1.5882156,0.5008074,1.2802234,0.9546286,0.80794775,1.4185905,0.37859666,1.7889955,0.088131905,1.9830567,0.0014736652,1.9574003,0.13799042,1.7177608,0.46717018,1.3176985,0.91543967,0.8466293,1.3826088,0.4098391,1.7642632,0.104952395,1.9751014,0.00011283159,1.9680002,0.11875242,1.7445467,0.43435466,1.3546836,0.87638116,0.88554734,1.346037,0.4419917,1.7383521,0.12315339,1.9656422,0.00029408932,1.977107,0.10087347,1.7701843,0.40241158,1.3911217,0.8375133,0.92464197,1.3089316,0.47500497,1.612242,0.21820903,1.9070287,0.019143403,1.9990904,0.03930354,1.867851,0.27418357,1.5426431,0.67128676,1.0961522,1.1418588,0.6281707,1.5807247,0.24329478,1.8897963,0.02754581,1.9999943,0.029144585,1.8866892,0.24773377,1.5752053,0.6344578,1.1351604,1.1028821,0.6649066,1.5483118,0.26954764,1.8711915,0.03744799,1.9993559,0.020482898,1.90416,0.22244424,1.6068803,0.5981927,1.1739602,1.0637468,0.7021593,1.5150533,0.29692703,1.851243,0.04883468,1.9971763,0.01333195,1.9638624,0.12642515,1.7337737,0.4476171,1.3396834,0.8922691,0.86967236,1.3609993,0.4287901,1.7490447,0.11557573,1.9696753,3.4093857e-5,1.9735792,0.10798925,1.7598839,0.41531265,1.3763511,0.8533163,0.9087023,1.3241044,0.46145886,1.7224537,0.1345818,1.9593315,0.0011294484,1.9817944,0.09092903,1.784822,0.38391,1.4124384,0.8145898,0.94787306,1.2867095,0.49495828,1.6947485,0.15492254,1.9475081,0.0037653446,1.9884955,0.07527095,1.8085498,0.35345757,1.4478896,0.6493924,1.1192951,1.1187788,0.64987946,1.5616176,0.25871724,1.8789325,0.033234954,1.9998021,0.023828924,1.8972114,0.2326014,1.5940902,0.61289084,1.1581872,1.079701,0.6869285,1.5286975,0.2856428,1.8595278,0.044019043,1.9982499,0.016061246,1.9138588,0.20801806,1.6252162,0.5769863,1.196835,1.0405,0.7244605,1.4949617,0.3136701,1.8387973,0.056277514,1.9951581,0.009811044,1.9290967,0.18465614,1.655378,0.5417342,1.2351794,1.0012367,0.7624173,1.4604627,0.34275597,1.7334204,0.12667829,1.9637238,0.00049722195,1.9786307,0.09770942,1.7748094,0.3965875,1.3978148,0.83033097,0.9319067,1.3019961,0.48121792,1.7061639,0.14647913,1.9525008,0.0025060773,1.9859498,0.081477225,1.7990346,0.36574227,1.4335316,0.79176676,0.97113246,1.2643322,0.5151853,1.6778183,0.16759634,1.9398091,0.0060533285,1.9917483,0.066661716,1.8220274,0.33587527,1.4685799,0.7535237,1.0104027,1.2262607,0.5499004,1.6484272,0.18999738,1.9256676,0.011133492,1.9960172,0.019042253,1.9072475,0.2178849,1.612653,0.59153366,1.181128,1.0564765,0.7091201,1.5087965,0.3021251,1.8473983,0.05110818,1.9966029,0.012172759,1.9230623,0.19402105,1.6432133,0.5560092,1.2196033,1.0172312,0.7469109,1.474602,0.33078516,1.8258972,0.06423181,1.9926007,0.0068267584,1.9374535,0.17140031,1.6727815,0.52116954,1.2577398,0.97795945,0.7850921,1.4396756,0.36047733,1.8031223,0.07879865,1.9870676,0.0030124784,1.9503989,0.15005744,1.7013121,0.4870683,1.2954788,0.8074375,0.95514804,1.2797242,0.501258,1.6894914,0.15883905,1.9451542,0.004423201,1.9895709,0.07252318,1.8128141,0.34791827,1.4543898,0.7690565,0.9944075,1.2418116,0.53567505,1.6605208,0.18072122,1.9316006,0.0088799,1.9944637,0.058558226,1.8350596,0.31865293,1.4890163,0.73103166,1.0336754,1.203526,0.5708081,1.6305314,0.20386702,1.9166102,0.01486516,1.9978228,0.046045244,1.8560174,0.2904384,1.5228884,0.6934217,1.0728916,1.1649265,0.60660315,1.5995697,0.22824067,1.8348097,0.05871153,1.9944158,0.00881958,1.9317657,0.18046081,1.6608618,0.53527266,1.2422525,0.9939531,0.7694986,1.4539851,0.3482628,1.8125494,0.07269311,1.9895053,0.0043806434,1.9453025,0.15859342,1.6898204,0.50086427,1.2801604,0.95469415,0.8078834,1.4186502,0.37854522,1.7890359,0.08810496,1.9830687,0.0014772415,1.9573814,0.13802373,1.717715,0.46722573,1.3176363,0.91550505,0.8465644,1.3826694,0.4097861,1.7643056,0.10492313,1.975116,0.00011378527,1.9679837,0.064071655,1.8261533,0.3304476,1.4750018,0.7464714,1.0176855,1.21916,0.55641633,1.6428654,0.1942901,1.9228874,0.012243509,1.9966402,0.050964892,1.8476394,0.30179977,1.5091876,0.7086854,1.0569301,1.1806812,0.5919484,1.612294,0.21816808,1.9070563,0.019130647,1.9990876,0.03932178,1.8678184,0.27422875,1.542588,0.67134875,1.0960869,1.1419238,0.6281098,1.5807781,0.24325186,1.8898262,0.027530491,1.999994,0.02916032,1.8866589,0.24777704,1.5751516,0.6345189,1.1350954,0.97067827,0.7922111,1.4331222,0.36609364,1.7987614,0.08165699,1.9858738,0.00247401,1.9526391,0.1462425,1.7064855,0.48082954,1.3024292,0.93145347,0.8307787,1.3973978,0.3969499,1.7745221,0.0979054,1.9785371,0.00048303604,1.963845,0.1264571,1.7337291,0.44767183,1.3396217,0.89233434,0.86960727,1.3610606,0.4287362,1.7490883,0.115545094,1.9696913,3.3557415e-5,1.9735641,0.108018875,1.7598412,0.41536593,1.3762903,0.8533813,0.9086369,1.3241665,0.4614036,1.7224991,0.20829552,1.9136741,0.016142428,1.9982767,0.043885827,1.8597598,0.28532493,1.529083,0.6864971,1.0801538,1.1577384,0.6133098,1.5937246,0.23289281,1.8970108,0.023927629,1.9998109,0.033118904,1.8791492,0.25841236,1.5619936,0.6494539,1.1192299,1.118844,0.64981794,1.561672,0.2586732,1.8789638,0.033218205,1.9998033,0.02384317,1.8971825,0.23264349,1.5940373,0.6129514,1.1581223,1.0797663,0.68686616,1.5287532,0.28559685,1.8595613,0.04399979,1.9982538,0.016072989,1.9138321,0.13435423,1.7227678,0.46107614,1.3245342,0.90824986,0.8537657,1.3759302,0.4156813,1.7595885,0.10819471,1.9734753,3.0457973e-5,1.9697862,0.11536378,1.7493457,0.4284172,1.361423,0.8692219,0.89272076,1.339256,0.4479959,1.733465,0.12664634,1.9637413,0.0004951954,1.9786172,0.09773773,1.7747679,0.39663988,1.3977544,0.83039564,0.93184125,1.3020587,0.48116177,1.7062104,0.14644498,1.9525208,0.0025014281,1.9859388,0.08150321,1.798995,0.36579305,1.4334724,0.79183096,0.97106683,1.1347102,0.6348808,1.5748336,0.24803323,1.8864791,0.029253542,1.9999926,0.027439952,1.8900034,0.24299783,1.5810945,0.62774897,1.1423085,1.0956999,0.67171586,1.5422615,0.2744962,1.8676252,0.039429784,1.9990709,0.019055009,1.9072199,0.21792579,1.6126013,0.59159356,1.1810635,1.056542,0.70905733,1.508853,0.30207807,1.8474331,0.05108744,1.9966083,0.012182951,1.923037,0.19405991,1.643163,0.55606806,1.2195392,1.0172969,0.7468474,1.4746598,0.33073634,1.8259342,0.118967235,1.967886,0.00011974573,1.9752021,0.10474986,1.7645562,0.40947235,1.3830285,0.8461803,0.91589236,1.3172677,0.4675547,1.7174444,0.13822085,1.957269,0.0014984012,1.9831399,0.08794546,1.7892747,0.37824076,1.419003,0.8075019,0.9550825,1.2797873,0.50120115,1.689539,0.15880352,1.9451756,0.004417062,1.9895613,0.072547734,1.8127759,0.34796804,1.4543314,0.7691204,0.9943418,1.2418753,0.5356169,1.6605701,0.18068361,1.9316244,0.008871138,1.9944568,0.05858034,1.8350236,0.22799355,1.5998807,0.6062459,1.1653099,1.0725039,0.6937917,1.522557,0.29071236,1.8558164,0.04616189,1.997797,0.014798462,1.9167657,0.20363188,1.6308331,0.5704571,1.2039065,1.033287,0.7314061,1.4886771,0.31893748,1.8348458,0.058689356,1.9944227,0.008828282,1.9317418,0.18049842,1.6608126,0.5353308,1.2421887,0.99401873,0.7694347,1.4540436,0.34821302,1.8125876,0.07266855,1.9895148,0.0043867826,1.945281,0.15862888,1.6897728,0.50092113,1.2800974,0.9547597,0.80781895,1.2951074,0.48740202,1.7010349,0.1502623,1.950278,0.003042698],"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/vercosf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/large_negative.json
new file mode 100644
index 000000000000..01ba1ee28b84
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/large_negative.json
@@ -0,0 +1 @@
+{"expected":[1.9989498,1.1090276,0.023774028,0.6781012,1.9060342,1.9878557,0.20723772,0.0019513965,1.641796,1.9607862,1.9517174,0.12215972,1.256944,1.5240649,1.9922019,0.4073419,0.82380414,1.8352548,1.8462203,0.8039033,1.8115323,0.01751715,1.5412072,1.2373174,0.13204044,1.9577396,0.54928803,0.15356594,1.9689293,0.5123559,0.7024873,1.8972769,0.06208998,1.3940921,1.3953011,0.048405766,1.4321777,1.3565469,0.07690787,1.9144199,1.317169,0.5481138,1.9305451,0.13269472,0.5858105,1.5423133,0.11263913,0.6242317,1.5067077,0.09413564,1.8345306,1.4702157,0.40628248,1.8568387,1.4329011,0.44044858,1.8776481,0.20150131,0.47559345,1.6428046,0.17702764,1.7314786,1.6102114,0.15399349,1.7593505,1.5765508,0.31061715,1.7858942,0.31252605,0.34151024,1.811063,0.2827614,0.37355512,1.7332706,0.25425136,1.6407863,1.7041981,0.22704583,1.6723275,1.673894,0.20119232,1.7026925,0.40840232,1.4678913,1.7318286,0.37520766,1.504437,1.7596844,0.3431059,1.5401002,0.58820736,0.31215322,1.5748187,0.5504631,0.2824037,1.6085317,0.5135052,1.3540869,1.6411804,0.47739828,1.3928823,1.6727076,0.4422055,1.4309907,0.70500094,0.40798837,1.468345,0.6653055,0.37480682,1.5048802,0.62619555,1.2347599,1.5405324,0.58773947,1.2752004,1.5752388,0.5500045,1.3151593,0.8263954,0.51305664,1.354567,0.7853679,1.0701218,1.3933545,0.7447158,1.1117717,1.431454,0.70451033,1.1532263,0.99230367,0.66482174,1.1944127,0.9504974,0.62571937,1.235259,0.9087777,0.9452409,1.2756939,0.86721754,0.98704034,1.3156466,0.8258897,1.0288624,1.1170008,0.7848664,1.070634,1.0753714,0.7442194,1.112282,1.0336102,0.8212141,1.1537336,0.9917902,0.86251104,1.1949164,0.9499845,0.9040484,1.2398732,0.90826637,0.94575363,1.2761875,0.66035014,0.9875538,1.3161337,0.69997567,1.0293757,0.4378445,0.740126,1.0711461,0.4729179,0.7807309,1.1127923,0.5089133,0.82171935,1.154241,0.54576755,0.86301965,1.19542,0.58341646,0.90455955,0.33914638,0.621794,0.9462664,0.37110656,0.6608331,0.9880672,0.40416682,0.70046556,1.0298889,0.43826932,0.7406219,1.0716584,0.47335434,0.78123194,0.25075495,0.5093606,0.8222246,0.27910352,0.5462251,0.8635283,0.30871308,0.58388335,0.9050707,0.33953184,0.6222694,0.1511988,0.37150586,0.6613163,0.1740489,0.40457928,0.7009555,0.1983437,0.43869418,0.74111784,0.22404075,0.47379094,0.78173304,0.25109512,0.5098081,0.09191871,0.27945948,0.5466827,0.110224485,0.30908424,0.58435035,0.1300866,0.33991748,0.6227449,0.15147042,0.3719054,0.66179943,0.17433846,0.40499192,0.04680115,0.19865078,0.43911922,0.060277104,0.22436476,0.47422767,0.075396836,0.25143552,0.51025575,0.09213388,0.27981567,0.009834111,0.11045897,0.3094555,0.016549885,0.13033998,0.3403033,0.02498585,0.15174228,0.37230504,0.03512734,0.17462826,0.4054047,0.04695654,0.19895804,0.000118494034,0.06045282,0.224689,0.0016365647,0.07559258,0.2517761,0.004900992,0.09234929,0.280172,0.009906113,0.11069363,0.30982703,0.016643047,0.1305936,0.0059971213,0.025100052,0.15201432,0.0022939444,0.035262346,0.1749183,0.00033593178,0.047112167,0.19926554,0.00012648106,0.06062877,0.22501338,0.001666069,0.07578856,0.02737838,0.004951954,0.09256494,0.018511653,0.009978294,0.110928595,0.011361718,0.016736448,0.13084745,0.005941093,0.025214493,0.07945818,0.002259314,0.03539765,0.06392878,0.00032275915,0.047268033,0.050036788,0.0001348257,0.060805023,0.03780645,0.0016958117,0.075984776,0.027259171,0.0050030947,0.1353268,0.018413424,0.010050833,0.11507833,0.011284649,0.016830146,0.09637767,0.0058853626,0.025329232,0.1525591,0.4827718,0.23072404,0.06374824,0.00030982494,0.047424197,0.19988114,0.41306984,0.18002921,0.037666738,0.0017258525,0.07618123,0.6320375,0.34747273,0.13506901,0.018315434,0.010123551,0.111399174,0.55563104,0.28643918,0.09615785,0.005829811,0.02544415,0.79151607,0.4823324,0.23039609,0.063567996,0.00029718876,0.0475806,0.7105259,0.41265416,0.17973536,0.037527263,0.0017561316,0.07637793,0.6315601,0.3470837,0.1348114,0.018217742,0.010196567,0.87345505,0.55517113,0.28607953,0.095938265,0.005774617,0.025559425,0.79101396,0.48189312,0.23006833,0.06338793,0.000284791,1.0398965,0.7100344,0.41223866,0.17944175,0.037388027,0.0017867088,0.9562682,0.6310828,0.34669483,0.13455403,0.018120348,0.010269821,0.87294567,0.5547113,0.28572005,0.09571892,0.005719602,1.1227362,0.7905118,0.481454,0.22974074,0.06320816,0.00027263165,1.0393834,0.709543,0.41182333,0.17914838,0.03724903,1.2857977,0.9557552,0.6306056,0.34630615,0.1342969,0.018023133,1.2047281,0.8724364,0.55425155,0.28536075,0.09549981,1.4409268,1.1222266,0.79000974,0.48101503,0.22941333,0.06302863,1.3643905,1.0388703,0.70905167,0.41140813,0.17885524,0.03711033,1.2853056,0.9552422,0.63012844,0.34591764,0.13403994,1.5139391,1.2042254,0.87192714,0.553792,0.2850017,0.095280945,1.4404659,1.121717,0.7895077,0.48057616,0.22908622,1.6492232,1.3639122,1.0383573,0.70856047,0.4109931,0.17856228,1.583401,1.2848134,0.95472926,0.6296514,0.34552932,1.7664881,1.5134985,1.2037227,0.8714179,0.55333245,0.28464276,1.7101436,1.4400048,1.1212072,0.78900576,0.48013747,0.22875923,1.6488326,1.3634338,1.0378442,0.70806926,0.4105782,1.817176,1.5829839,1.2843212,0.9542163,0.6291745,0.34514117,1.7661581,1.5130578,1.20322,0.8709086,0.55287313,1.9015275,1.7097819,1.4395437,1.1206975,0.7885038,0.4796989,1.8622189,1.6484418,1.3629555,1.037331,0.7075782,1.9608569,1.81688,1.5825665,1.2838289,0.95370334,0.62869763,1.9343483,1.765828,1.5126171,1.2027172,0.8703995,0.5524139,1.9013052,1.7094202,1.4390824,1.1201878,0.788002,1.9805448,1.8619585,1.6480508,1.362477,1.0368179,0.70708716,1.9607146,1.8165836,1.5821491,1.2833364,0.9531904,1.9995261,1.9341652,1.7654977,1.512176,1.2022144,0.86989033,1.993459,1.9010826,1.7090582,1.438621,1.119678,0.7875002,1.980444,1.8616982,1.6476595,1.3619983,1.0363047,1.9986298,1.9605719,1.816287,1.5817316,1.282844,0.9526775,1.9995103,1.9339819,1.7651672,1.511735,1.2017114,1.9760835,1.9934003,1.9008598,1.7086959,1.4381595,1.1191682,1.9908348,1.9803427,1.8614374,1.6472683,1.3615196,1.9264457,1.9986565,1.960429,1.8159904,1.5813138,1.2823514,1.9546586,1.9994941,1.9337983,1.7648365,1.5112938,1.2012085,1.976195,1.9933412,1.9006369,1.7083336,1.4376979,1.8919857,1.9909041,1.9802413,1.8611765,1.6468768,1.3610408,1.9266388,1.9986831,1.9602859,1.8156934,1.5808959,1.8045554,1.9548113,1.9994776,1.9336145,1.7645056,1.5108523,1.8513637,1.9763062,1.993282,1.9004135,1.7079711,1.6947945,1.8922176,1.990973,1.9801396,1.8609154,1.6464851,1.7524586,1.9268317,1.9987092,1.9601425,1.8153963,1.5804778,1.8048602,1.9549639,1.9994608,1.9334303,1.7641745,1.632669,1.8516328,1.9764172,1.9932225,1.9001901,1.7076082,1.6951637,1.8924494,1.9910418,1.9800377,1.8606541,1.4953194,1.7527966,1.9270244,1.9987352,1.9599988,1.815099,1.5661728,1.8051648,1.955116,1.9994438,1.933246,1.3442222,1.6330665,1.8519019,1.9765279,1.9931626,1.8999662,1.7072453,1.4363122,1.1171286,0.53505,0.85107595,1.183571,1.4957654,1.7531346,1.9272169,1.9987609,1.9598548,1.8148013,1.5796413,1.2803804,0.39451873,0.688974,1.0178248,1.3447043,1.6334639,1.8521707,1.9766384,1.9931026,1.8997424,1.7068822,1.4358501,0.27079278,0.5355047,0.8515837,1.1840757,1.4962113,1.7534723,1.927409,1.9987863,1.9597108,1.8145036,1.5792228,0.16730613,0.3949275,0.68946207,1.0183381,1.3451862,1.6338612,1.8524393,1.9767487,1.9930422,1.8995181,1.7065189,0.08693105,0.27114427,0.5359595,0.85209155,1.1845804,1.496657,1.7538099,1.9276011,1.9988115,1.9595664,1.8142055,1.5788041,0.16759056,0.3953364,0.6899502,1.0188515,1.3456681,1.6342583,1.8527076,1.9768586,1.9929817,1.8992937,1.7061555,0.08714062,0.27149594,0.5364144,0.8525994,1.185085,1.4971027,1.7541472,1.9277928,1.9988364,1.9594216,1.8139074,0.032027245,0.16787523,0.39574546,0.69043845,1.019365,1.3461499,1.6346552,1.8529758,1.9769683,1.9929206,1.899069,0.0037801862,0.08735037,0.27184778,0.5368694,0.85310733,1.1855897,1.4975481,1.7544843,1.9279842,1.9988611,1.9592767,0.003183484,0.03215629,0.16816014,0.3961547,0.6909268,1.0198783,1.3466315,1.635052,1.8532436,1.9770777,1.9928596,0.03025359,0.0038249493,0.087560356,0.2721998,0.53732455,0.8536153,1.1860942,1.4979935,1.7548212,1.9281754,1.9988854,1.9591316,0.003142655,0.03228557,0.16844523,0.39656407,0.69141513,1.0203917,1.3471133,1.6354485,1.8535113,1.9771869,1.9927982,0.03012836,0.0038699508,0.08777064,0.27255207,0.53777987,0.85412323,1.1865987,1.4984387,1.755158,1.9283664,1.9989095,0.08403313,0.0031021237,0.03241515,0.16873056,0.3969736,0.6919036,1.0209051,1.3475947,1.635845,1.8537788,1.9772959,0.16336071,0.030003428,0.0039151907,0.087981105,0.27290452,0.5382353,0.85463125,1.1871032,1.4988838,1.7554944,1.9285572,0.26590943,0.0838272,0.003061831,0.03254497,0.16901612,0.39738333,0.6923922,1.0214185,1.3480761,1.6362412,1.8540461,0.388833,0.16307956,0.029878676,0.0039607286,0.08819181,0.27325714,0.5386908,0.8551393,1.1876075,1.4993289,1.7558308,0.52871966,0.2655608,0.0836215,0.0030218363,0.032675028,0.16930187,0.39779317,0.6928808,1.0219319,1.3485575,1.6366372,1.854313,0.38842666,0.16279858,0.029754221,0.004006505,0.08840281,0.27360994,0.5391464,0.85564744,1.1881119,1.4997736,1.7561669,0.5282668,0.26521242,0.083416045,0.00298208,0.032805324,0.16958785,0.3982032,0.6933695,1.0224452,1.3490387,1.6370331,0.6812,0.38802046,0.1625179,0.029630065,0.0040525794,0.08861399,0.27396297,0.5396022,0.8561555,1.1886162,1.5002184,0.84298164,0.5278141,0.2648642,0.083210886,0.002942562,0.032935917,0.16987407,0.3986134,0.6938583,1.0229585,1.3495198,1.0091213,0.68071336,0.38761443,0.1622374,0.029506087,0.004098892,0.088825464,0.2743162,0.54005814,0.8566637,1.1891204,1.1750078,0.8424745,0.5273615,0.26451623,0.083005905,0.0029033422,0.03306675,0.17016047,0.3990237,0.6943472,1.023472,1.350001,1.0086079,0.6802268,0.38720858,0.16195714,0.029382408,0.0041454434,0.08903712,0.2746696,0.5405141,0.8571719,1.1896247,1.1745023,0.84196746,0.52690905,0.26416838,0.08280122,0.0028643608,0.03319782,0.17044711,0.3994342,0.69483614,1.0239853,1.3355533,1.0080943,0.6797403,0.38680285,0.16167706,0.029258966,0.0041922927,0.089249074,0.27502316,0.54097027,0.8576802,1.487291,1.1739966,0.84146047,0.5264567,0.26382077,0.08259672,0.0028256774,0.03332913,0.17073399,0.39984488,0.6953252,1.6255038,1.3350694,1.0075809,0.67925394,0.3863973,0.16139722,0.029135823,0.0042393804,0.08946127,0.27537692,0.54142654,1.7463555,1.4868425,1.1734909,0.84095347,0.52600455,0.26347333,0.082392514,0.0027872324,0.033460736,0.17102104,0.40025568,1.846492,1.625103,1.3345857,1.0070674,0.67876756,0.38599193,0.16111761,0.029012859,0.004286766,0.08967364,0.2757309,0.5418829,1.7460136,1.4863939,1.1729852,0.84044653,0.52555245,0.26312613,0.08218855,0.0027490258,0.03359258,0.17130834,0.40066665,1.8462186,1.6247022,1.3341017,1.0065539,0.6782813,0.38558674,0.16083825,0.028890193,0.00433439,0.08988631,0.27608502,1.9229366,1.7456717,1.4859452,1.1724794,0.83993965,0.52510047,0.26277906,0.08198476,0.0027111173,0.033724725,0.17159587,1.9740381,1.8459449,1.6243011,1.3336177,1.0060405,0.6777952,0.38518167,0.16055906,0.028767824,0.0043822527,0.090099216,1.998105,1.9227388,1.7453294,1.4854963,1.1719736,0.8394328,0.52464867,0.26243222,0.08178127,0.0026734471,0.033857048,1.9944694,1.9739218,1.8456709,1.6238999,1.3331336,1.0055269,0.67730916,0.38477677,0.16028011,0.028645635,0.0044304132,0.0903123,1.9980733,1.9225407,1.744987,1.4850473,1.1714677,0.83892596,0.524197,0.26208556,0.08157802,0.002636075,0.033989668,1.9945232,1.9738052,1.8453968,1.6234984,1.3326494,1.0050135,0.67682314,0.38437206,0.1600014,0.028523743,0.004478812,1.9633698,1.9980414,1.9223424,1.7446444,1.4845982,1.1709619,0.8384192,0.52374536,0.26173913,0.081375,0.0025989413,1.9054779,1.9945767,1.9736882,1.8451223,1.623097,1.332165,1.0045,0.67633724,0.38396746,0.15972292,0.02840215,1.8224542,1.9635074,1.9980091,1.9221439,1.7443016,1.484149,1.1704558,0.8379125,0.5232939,0.2613929,0.08117223,1.7166032,1.9056957,1.99463,1.9735711,1.8448478,1.6226952,1.3316807,1.0039865,0.67585146,0.38356304,0.15944463,1.5908625,1.8227463,1.9636447,1.9979765,1.9219451,1.7439585,1.4836996,1.1699499,0.8374058,0.5228426,0.26104683,0.08096969,1.7169611,1.9059132,1.994683,1.9734538,1.844573,1.6222935,1.3311962,1.003473,0.6753657,0.3831588,0.15916657,1.5912768,1.823038,1.9637818,1.9979439,1.9217461,1.7436153,1.4832501,1.1694438,0.83689916,0.5223914,0.26070094,1.4491813,1.717319,1.9061306,1.9947357,1.973336,1.8442979,1.6218914,1.3307116,1.0029595,0.6748801,0.38275474,1.2946187,1.5916908,1.8233294,1.9639187,1.9979107,1.9215469,1.7432718,1.4828005,1.1689377,0.8363926,0.5219403,1.131879,1.44964,1.7176768,1.9063478,1.9947882,1.9732182,1.8440226,1.6214892,1.330227,1.002446,0.67439455,0.96547884,1.2951094,1.5921047,1.8236208,1.9640552,1.9978775,1.9213474,1.7429283,1.4823508,1.1684315,0.835886,0.5214894,1.132388,1.4500986,1.7180343,1.9065645,1.9948405,1.9731,1.8437471,1.6210868,1.3297423,1.0019325,0.67390907,0.96599203,1.2955999,1.5925183,1.8239119,1.9641914,1.9978439,1.9211476,1.7425845,1.4819009,1.1679254,0.8353795,0.80054003,1.1328969,1.4505571,1.7183915,1.9067812,1.9948924,1.9729815,1.8434714,1.6206843,1.3292575,1.0014191,0.64062405,0.9665052,1.2960905,1.592932,1.8242028,1.9643276,1.9978101,1.9209477,1.7422404,1.4814509,1.1674192,0.49068266,0.8010432,1.1334058,1.4510155,1.7187486,1.9069974,1.9949441,1.9728628,1.8431954,1.6202816,1.3287725,0.35487747,0.64110327,0.9670184,1.2965809,1.5933454,1.8244935,1.9644634,1.997776,1.9207475,1.7418962,1.4810008,0.23697782,0.49112463,0.80154645,1.1339147,1.4514737,1.7191055,1.9072137,1.9949956,1.9727439,1.8429193,1.6198788,1.3282876,1.0003921,0.67245317,0.38073677,0.15750283,0.027438223,0.73371005,0.432357,0.19377804,0.044356763,0.0006172657,0.06739658,0.23730981,0.49156672,0.80204976,1.1344235,1.4519318,1.7194623,1.9074295,1.9950467,1.9726248,1.8426429,1.6194757,1.3278025,0.9998786,0.6719681,0.38033366,0.15722632,1.0639988,0.7332151,0.43193436,0.19347435,0.044205666,0.0006354451,0.06758207,0.23764205,0.49200898,0.8025531,1.1349324,1.4523898,1.7198188,1.9076452,1.9950976,1.9725052,1.8423662,1.6190724,1.3273174,0.9993651,0.67148304,0.37993073,0.15695006,1.0634863,0.73272026,0.43151182,0.19317085,0.044054806,0.00065386295,0.06776774,0.23797446,0.4924513,0.80305654,1.1354412,1.4528477,1.7201753,1.9078605,1.9951483,1.9723855,1.8420894,1.6186692,1.326832,0.9988516,0.6709981,0.37952793,1.3867582,1.0629739,0.7322255,0.43108946,0.19286764,0.043904185,0.0006725788,0.067953646,0.23830706,0.49289382,0.80356,1.1359499,1.4533055,1.7205313,1.9080758,1.9951987,1.9722655,1.8418124,1.6182656,1.3263468,0.9983381,0.6705132,1.6673898,1.3862846,1.0624614,0.73173076,0.43066722,0.19256455,0.043753803,0.0006915331,0.06813985,0.23863989,0.49333644,0.8040635,1.1364586,1.4537631,1.7208873,1.9082906,1.9952488,1.9721453,1.8415351,1.617862,1.3258613,0.9978246,0.67002845,1.6670072,1.3858109,1.0619489,0.7312361,0.43024516,0.19226176,0.04360372,0.0007107854,0.068326294,0.2389729,0.49377924,0.8045671,1.1369673,1.4542207,1.7212431,1.9085054,1.9952986,1.9720249,1.8412576,1.6174581,1.3253758,0.9973111,1.874192,1.6666245,1.3853371,1.0614364,0.73074156,0.42982328,0.19195914,0.043453872,0.0007302761,0.068512976,0.23930609,0.49422216,0.8050707,1.1374758,1.454678,1.7215986,1.9087198,1.9953483,1.971904,1.8409798,1.6170542,1.3248903,1.9849966,1.8739425,1.6662416,1.3848633,1.0609238,0.7302471,0.42940146,0.19165671,0.043304265,0.00075000525,0.0686999,0.23963952,0.4946652,0.80557436,1.1379845,1.4551353,1.7219541,1.9089341,1.9953976,1.9717832,1.8407019,1.61665,1.3244045,1.9849077,1.8736928,1.6658587,1.3843893,1.0604113,0.72975266,0.42897987,0.19135451,0.043154895,0.0007700324,0.068887055,0.23997313,0.49510837,0.8060781,1.1384931,1.4555925,1.7223094,1.909148,1.9954467,1.9716618,1.8404238,1.6162457,1.9872863,1.9848187,1.8734429,1.6654756,1.3839152,1.0598987,0.7292583,0.4285584,0.19105256,0.043005824,0.000790298,0.06907445,0.24030691,0.49555165,0.80658185,1.1390016,1.4560496,1.7226644,1.9093618,1.9954956,1.9715405,1.8401453,1.8808162,1.9873679,1.9847295,1.8731928,1.6650922,1.383441,1.0593861,0.72876406,0.42813706,0.19075078,0.04285699,0.0008108616,0.06926209,0.24064094,0.4959951,0.80708563,1.13951,1.4565065,1.7230191,1.9095752,1.9955441,1.9714186,1.8398669,1.8810592,1.9874492,1.9846399,1.8729424,1.6647086,1.3829666,1.0588735,0.7282698,0.4277159,0.19044924,0.042708397,0.0008316636,0.06945002,0.24097514,0.49643868,0.80758953,1.1400185,1.4569633,1.7233738,1.9097885,1.9955924,1.9712965,1.6776131,1.8813019,1.9875301,1.9845502,1.8726918,1.6643249,1.3824923,1.0583609,0.7277757,0.4272949,0.19014788,0.04256004,0.00085270405,0.06963813,0.24130958,0.49688238,0.8080934,1.1405269,1.45742,1.7237282,1.9100015,1.9956404,1.39946,1.6779907,1.8815445,1.9876108,1.9844601,1.8724409,1.663941,1.3820179,1.0578483,0.72728163,0.42687404,0.18984675,0.042411983,0.0008740425,0.06982654,0.2416442,0.4973262,0.80859745,1.1410353,1.4578764,1.7240825,1.9102143,1.077266,1.3999306,1.6783681,1.8817868,1.9876912,1.9843698,1.8721898,1.6635569,1.3815432,1.0573357,0.7267876,0.4264533,0.18954587,0.042264163,0.0008956194,0.07001519,0.241979,0.4977702,0.80910146,1.1415436,1.458333,1.7244365,1.9104269,1.077778,1.4004012,1.6787453,1.8820288,1.9877715,1.9842793,1.8719385,1.6631727,1.3810685,1.056823,0.7262937,0.42603278,0.18924516,0.042116582,0.0009174943,0.07020408,0.24231404,0.49821424,0.80960554,1.1420519,1.4587893,1.7247905,0.7470503,1.0782899,1.4008718,1.6791222,1.8822707,1.9878514,1.9841884,1.8716869,1.6627883,1.3805937,1.0563104,0.72579986,0.42561233,0.1889447,0.04196924,0.0009396076,0.070393205,0.24264926,0.49865848,0.8101097,1.1425602,1.4592454,0.4442104,0.7475471,1.0788018,1.401342,1.6794991,1.8825123,1.987931,1.9840974,1.8714353,1.6624037,1.3801188,1.0557977,0.7253061,0.42519206,0.18864441,0.041822135,0.00096201897,0.07058257,0.24298465,0.4991029,0.8106138,1.1430684,1.4597015,0.44463736,0.74804395,1.0793136,1.4018123,1.6798757,1.8827536,1.9880104,1.984006,1.8711833,1.6620189,1.3796438,1.055285,0.7248124,0.42477196,0.18834436,0.04167533,0.0009846687,0.07077217,0.24332029,0.49954736,0.81111807,1.1435766,0.20295662,0.44506443,0.74854094,1.0798255,1.4022825,1.6802522,1.8829948,1.9880896,1.9839144,1.870931,1.661634,1.3791687,1.0547723,0.72431874,0.424352,0.18804449,0.04152876,0.0010075569,0.07096201,0.2436561,0.499992,0.8116223,0.049150407,0.20326686,0.44549167,0.749038,1.0803374,1.4027525,1.6806285,1.8832357,1.9881685,1.9838226,1.8706787,1.6612489,1.3786935,1.0542595,0.7238252,0.4239322,0.18774486,0.041382432,0.0010307431,0.07115215,0.24399209,0.5004368,0.81212664,0.04930955,0.20357728,0.44591904,0.7495351,1.0808492,1.4032226,1.6810045,1.8834764,1.9882472,1.9837304,1.8704259,1.6608636,1.3782182,1.0537468,0.7233317,0.42351258,0.18744546,0.0412364,0.0010541677,0.07134247,0.24432832,0.5008817,0.00016641617,0.049468935,0.20388788,0.44634658,0.7500322,1.081361,1.4036924,1.6813805,1.8837168,1.9883255,1.983638,1.870173,1.6604781,1.3777428,1.0532341,0.7228383,0.42309308,0.18714625,0.041090608,0.0010778904,0.071533084,0.24466473,0.061255455,0.00015717745,0.049628556,0.20419878,0.4467743,0.7505294,1.0818728,1.404162,1.6817563,1.883957,1.9884036,1.9835454,1.8699199,1.6600925,1.3772674,1.0527213,0.722345,0.4226737,0.18684727,0.040945053,0.0011018515,0.07172394,0.24500132,0.061078608,0.00014817715,0.049788415,0.2045098,0.4472021,0.75102675,1.0823846,1.4046317,1.6821318,1.884197,1.9884814,1.9834526,1.8696666,1.6597066,1.3767917,1.0522085,0.7218517,0.4222545,0.18654853,0.040799737,0.0011261106,0.07191503,0.22551668,0.06090206,0.00013947487,0.049948573,0.20482105,0.4476301,0.7515241,1.0828962,1.4051013,1.6825073,1.8844367,1.988559,1.9833593,1.8694129,1.6593206,1.3763161,1.0516957,0.72135854,0.42183548,0.18624997,0.04065466,0.0011506081,0.47534198,0.22519195,0.06072569,0.00013101101,0.05010897,0.20513254,0.4480582,0.7520215,1.083408,1.4055706,1.6828824,1.8846762,1.9886363,1.9832659,1.8691591,1.6589345,1.3758402,1.0511829,0.72086537,0.42141658,0.18595159,0.04050988,0.78301114,0.47490495,0.22486746,0.060549617,0.00012284517,0.050269604,0.20544422,0.44848645,0.752519,1.0839196,1.40604,1.6832575,1.8849156,1.9887134,1.9831723,1.8689051,1.6585481,1.3753643,1.05067,0.7203723,0.42099786,0.18565345,0.04036534,0.7825099,0.474468,0.22454315,0.060373783,0.000114917755,0.050430477,0.20575613,0.4489149,0.75301653,1.0844314,1.4065092,1.6836324,1.8851546,1.9887902,1.9830784,1.8686508,1.6581616,1.3748883,1.0501572,0.7198794,0.42057925,0.18535554,1.1140933,0.78200877,0.4740312,0.22421902,0.060198188,0.00010728836,0.050591588,0.20606822,0.44934344,0.7535142,1.084943,1.4069782,1.6840069,1.8853934,1.9888667,1.9829842,1.8683963,1.6577749,1.3744123,1.0496444,0.71938646,0.42016083,1.4330978,1.1135831,0.7815076,0.47359455,0.22389507,0.06002283,9.9897385e-5,0.050752997,0.20638055,0.44977212,0.7540118,1.0854546,1.4074472,1.6843815,1.885632,1.988943,1.9828897,1.8681415,1.6573881,1.373936,1.0491315,0.71889365,0.41974252,1.432635,1.113073,0.7810066,0.473158,0.22357142,0.059847713,9.274483e-5,0.050914645,0.20669305,0.45020097,0.75450957,1.0859662,1.4079161,1.6847558,1.8858702,1.989019,1.982795,1.8678865,1.657001,1.3734598,1.0486187,0.7184009,1.7039886,1.432172,1.1125628,0.78050554,0.47272164,0.22324789,0.059672892,8.589029e-5,0.05107653,0.2070058,0.45062995,0.7550074,1.0864778,1.4083849,1.6851299,1.8861084,1.9890947,1.9827001,1.8676314,1.6566138,1.3729833,1.0481057,1.8977269,1.7036238,1.4317088,1.1120524,0.7800046,0.4722854,0.22292459,0.05949831,7.933378e-5,0.051238656,0.20731872,0.4510591,0.75550526,1.0869894,1.4088535,1.685504,1.8863463,1.9891703,1.9826047,1.8673759,1.6562265,1.3725069,1.0475929,1.8975005,1.7032588,1.4312456,1.1115422,0.7795037,0.47184932,0.22260147,0.059323907,7.2956085e-5,0.05140102,0.20763189,0.45148838,0.7560032,1.0875009,1.4093221,1.6858776,1.8865839,1.9892454,1.9825094,1.8671203,1.655839,1.3720303,1.9924275,1.897274,1.7028935,1.4307822,1.1110319,0.7790029,0.4714133,0.2222786,0.0591498,6.687641e-5,0.05156368,0.20794523,0.45191783,0.7565012,1.0880125,1.4097906,1.6862512,1.8868213,1.9893205,1.9824135,1.8668644,1.6554513,1.9779387,1.9923643,1.8970472,1.7025282,1.4303188,1.1105216,0.77850217,0.4709775,0.22195596,0.058975935,6.109476e-5,0.05172652,0.20825881,0.4523474,0.75699925,1.0885239,1.410259,1.6866246,1.8870585,1.9893951,1.9823176,1.8666083,1.6550634,1.978046,1.9923007,1.8968201,1.7021627,1.4298552,1.1100112,0.7780014,0.47054183,0.22163343,0.058802366,5.555153e-5,0.051889658,0.20857257,0.4527771,0.75749743,1.0890354,1.4107271,1.6869979,1.8872955,1.9894696,1.9822214,1.866352,1.8558974,1.9781528,1.9922371,1.8965929,1.701797,1.4293915,1.1095009,0.7775008,0.4701063,0.22131115,0.058628976,5.0246716e-5,0.052053094,0.20888656,0.45320696,0.7579956,1.0895468,1.4111953,1.6873709,1.8875322,1.9895439,1.9821248,1.6393857,1.8561628,1.9782593,1.9921732,1.8963654,1.701431,1.4289277,1.1089904,0.7770002,0.4696709,0.22098911,0.058455884,4.5239925e-5,0.05221671,0.20920074,0.45363694,0.75849384,1.0900582,1.4116633,1.6877438,1.8877686,1.9896178,1.3523813,1.6397804,1.856428,1.9783657,1.9921088,1.8961376,1.7010651,1.4284638,1.10848,0.7764997,0.4692356,0.22066724,0.05828303,4.0471554e-5,0.05238056,0.20951515,0.4540671,0.7589922,1.0905696,1.4121312,1.6881164,1.8880049,1.9896915,1.3528619,1.640175,1.856693,1.9784718,1.9920443,1.8959095,1.7006989,1.4279997,1.1079695,0.7759992,0.4688005,0.22034562,0.058110416,3.6001205e-5,0.052544713,0.20982975,0.4544974,0.7594906,1.091081,1.4125991,1.688489,1.8882408,1.0270401,1.3533423,1.6405693,1.8569577,1.9785776,1.9919796,1.8956814,1.7003324,1.4275357,1.107459,0.77549875,0.4683655,0.22002417,0.05793804,3.1769276e-5,0.052709103,0.21014458,0.4549278,0.759989,1.0915923,1.4130667,1.6888613,0.6982372,1.0275534,1.3538226,1.6409636,1.8572223,1.9786832,1.9919145,1.8954529,1.6999657,1.4270713,1.1069485,0.7749984,0.46793067,0.2197029,0.0577659,2.783537e-5,0.05287373,0.21045959,0.4553584,0.76048756,1.0921036,1.4135343,1.6892334,0.6987268,1.0280666,1.3543029,1.6413577,1.8574866,1.9787886,1.9918492,1.8952241,1.6995989,1.426607,1.1064379,0.7744981,0.46749598,0.21938187,0.057594,2.4139881e-5,0.053038657,0.21077484,0.45578915,0.7609861,1.0926149,1.4140017,0.40311563,0.6992164,1.02858,1.3547829,1.6417515,1.8577507,1.9788938,1.9917836,1.8949952,1.6992319,1.4261425,1.1059273,0.7739979,0.4670614,0.21906102,0.0574224,2.0682812e-5,0.05320376,0.21109027,0.45621997,0.76148474,1.0931262,0.17331135,0.40352774,0.6997062,1.0290933,1.355263,1.6421452,1.8580146,1.9789984,1.9917178,1.8947661,1.6988647,1.4256779,1.1054167,0.7734977,0.466627,0.2187404,0.057251036,1.7523766e-5,0.053369164,0.21140593,0.45665097,0.76198345,1.0936375,0.17360044,0.40393996,0.700196,1.0296066,1.3557429,1.6425388,1.8582782,1.9791031,1.9916518,1.8945367,1.6984973,1.4252132,1.1049061,0.7729976,0.46619266,0.21841997,0.05707991,1.4603138e-5,0.053534806,0.21172178,0.45708215,0.7624822,0.03478414,0.17388964,0.4043523,0.7006859,1.0301198,1.3562229,1.6429322,1.8585415,1.9792073,1.9915855,1.894307,1.6981298,1.4247484,1.1043954,0.77249753,0.46575856,0.21809977,0.056909025,1.1980534e-5,0.053700686,0.21203786,0.45751345,0.002383411,0.034918487,0.17417914,0.40476483,0.7011759,1.0306331,1.3567026,1.6433253,1.8588047,1.9793113,1.9915189,1.8940771,1.697762,1.4242835,1.1038847,0.7719976,0.46532452,0.21777976,0.056738377,9.596348e-6,0.053866804,0.21235412,0.45794487,0.002348125,0.035053134,0.17446882,0.40517753,0.701666,1.0311463,1.3571823,1.6437185,1.8590677,1.9794152,1.991452,1.893847,1.6973941,1.4238185,1.103374,0.7714976,0.46489072,0.21745992,0.056568027,7.4505806e-6,0.05403316,0.21267056,0.07976943,0.0023130774,0.03518802,0.17475873,0.40559042,0.7021561,1.0316595,1.3576618,1.6441113,1.8593304,1.9795187,1.9913849,1.8936167,1.697026,1.4233533,1.1028632,0.77099776,0.46445698,0.21714032,0.056397855,5.6028366e-6,0.054199815,0.25864667,0.079568565,0.002278328,0.035323143,0.17504883,0.40600342,0.7026464,1.0321728,1.3581413,1.6445041,1.8595929,1.9796219,1.9913175,1.8933861,1.6966577,1.422888,1.1023524,0.7704979,0.4640234,0.21682096,0.056227982,4.053116e-6,0.5192585,0.25830215,0.079367995,0.0022438169,0.035458565,0.17533916,0.4064166,0.7031367,1.032686,1.3586206,1.6448965,1.8598552,1.9797249,1.9912498,1.8931552,1.6962893,1.4224226,1.1018416,0.7699982,0.46358997,0.21650177,0.056058347,2.682209e-6,0.5188083,0.25795782,0.079167604,0.0022095442,0.035594225,0.17562973,0.4068299,0.70362705,1.0331992,1.3591,1.645289,1.8601172,1.9798276,1.9911819,1.8929242,1.6959206,1.4219573,1.1013308,0.76949847,0.46315664,0.21618277,0.05588895,0.83236617,0.51835823,0.25761372,0.07896751,0.0021755695,0.035730124,0.17592049,0.40724337,0.70411754,1.0337124,1.3595791,1.6456811,1.860379,1.9799302,1.9911137,1.8926928,1.6955518,1.4214916,1.10082,0.76899886,0.4627235,0.215864,1.1644057,0.83185995,0.51790833,0.2572698,0.0787676,0.0021418333,0.03586632,0.17621148,0.40765703,0.7046081,1.0342256,1.3600583,1.6460731,1.8606406,1.9800324,1.9910452,1.8924613,1.6951828,1.4210259,1.100309,0.76849926,0.46229053,0.21554548,0.055550933,2.9802322e-7,0.055036724,0.21457386,0.4609689,0.7669739,1.0987486,1.4196029,1.6940546,1.8917527,1.9908347,0.14182073,0.3576088,0.6444371,0.970586,1.2999878,1.5962148,1.826508,1.9654002,1.9975317,1.919349,1.7394981,1.4778684,1.1633925,0.8308477,0.5170088,0.2565825,0.078368604,0.0020751953,0.03613937,0.17679411,0.40848476,0.70558935,1.035252,1.3610162,1.6468565,1.8611631,1.980236,1.9909077,1.8919976,1.6944442,1.4200941,1.0992872,0.7675003,0.4614249,0.21490896,0.05521393,0.0,0.05537319,0.2152099,0.46183425,0.76797277,1.0997705,1.4205348,1.6947936,0.008191705,0.021145701,0.14234835,0.35839623,0.6453972,0.9716126,1.3009672,1.597039,1.8270857,1.9656675,1.997459,1.9189444,1.7388065,1.476966,1.1623794,0.8298356,0.5161098,0.25589603,0.077970564,0.0020095706,0.03641349,0.17737758,0.40931314,0.706571,1.0362782,1.3619738,1.6476395,1.8616848,1.9804387,1.9907689,1.8915329,1.6937048,1.4191619,1.0982652,0.76650155,0.46055984,0.21427327,0.054877877,8.34465e-7,0.055710733,0.21584678,0.46270013,0.7689718,1.1007923,1.4214665,0.10446137,0.008061051,0.021356285,0.14287692,0.35918427,0.6463576,0.97263914,1.3019465,1.5978625,1.8276625,1.9659338,1.9973853,1.9185389,1.738114,1.4760631,1.1613659,0.8288237,0.51521134,0.25521034,0.07757348,0.0019450188,0.036688626,0.17796195,0.41014212,0.7075529,1.0373045,1.3629308,1.6484216,1.8622054,1.9806404,1.9906292,1.8910673,1.6929648,1.4182293,1.0972431,0.7655031,0.4596954,0.21363842,0.05454284,2.6226044e-6,0.056049228,0.21648455,0.46356654,0.76997113,1.101814,0.29916382,0.10400486,0.007931411,0.02156794,0.14340639,0.359973,0.64731836,0.9736658,1.3029253,1.5986854,1.8282385,1.9661992,1.9973106,1.9181324,1.7374207,1.4751598,1.1603522,0.82781196,0.51431334,0.25452542,0.077177346,0.0018815398,0.036964715,0.1785472,0.4109717,0.70853513,1.0383308,1.3638875,1.6492031,1.8627253,1.9808409,1.9904884,1.8906007,1.692224,1.4172962,1.096221,0.7645049,0.45883155,0.21300441,0.054208815,5.543232e-6,0.056388676,0.21712309,0.46443355,0.8908181,0.5708983,0.29843158,0.1035493,0.007802844,0.02178061,0.14393675,0.36076248,0.64827955,0.9746924,1.3039039,1.5995076,1.8288136,1.9664633,1.9972348,1.9177251,1.7367266,1.4742558,1.1593385,0.82680035,0.5134159,0.25384128,0.07678223,0.0018190742,0.037241876,0.1791333,0.41180193,0.7095177,1.0393571,1.364844,1.6499839,1.863244,1.9810405,1.9903466,1.8901331,1.6914824,1.4163628,1.0951986,0.7635069,0.45796818,0.21237123,0.053875804,9.4771385e-6,0.056729198,0.21776247,1.2218107,0.88979733,0.5699709,0.2977001,0.10309464,0.0076753497,0.021994293,0.14446801,0.36155254,0.6492411,0.9757191,1.3048822,1.6003293,1.8293877,1.9667265,1.997158,1.9173166,1.7360318,1.4733515,1.1583246,0.825789,0.5125189,0.25315797,0.07638806,0.001757741,0.03752005,0.17972028,0.41263276,0.71050054,1.0403832,1.3658,1.650764,1.8637619,1.9812391,1.9902036,1.8896646,1.6907401,1.4154288,1.0941763,0.76250917,0.45710546,0.21173882,0.053543746,1.4483929e-5,0.057070673,1.5284231,1.2208092,0.88877666,0.56904393,0.2969694,0.10264099,0.0075488687,0.022208989,0.14500022,0.3623433,0.65020305,0.9767458,1.3058602,1.6011503,1.8299611,1.9669888,1.9970801,1.9169072,1.7353363,1.4724466,1.1573105,0.82477784,0.5116225,0.25247538,0.07599485,0.0016973615,0.03779924,0.1803081,0.41346425,0.7114837,1.0414094,1.3667556,1.6515434,1.864279,1.9814365,1.9900599,1.8891952,1.6899972,1.4144944,1.0931538,0.7615117,0.45624328,0.21110731,0.053212702,1.9404362,1.7769542,1.5275509,1.2198075,0.8877561,0.56811744,0.29623944,0.10218823,0.0074234605,0.022424757,0.14553326,0.3631348,0.65116537,0.9777725,1.3068378,1.6019707,1.8305335,1.96725,1.9970012,1.9164968,1.7346399,1.4715412,1.1562961,0.8237668,0.5107266,0.25179362,0.07560265,0.0016381145,0.03807944,0.18089676,0.41429633,0.7124672,1.0424354,1.3677108,1.6523222,1.8647952,1.981633,1.9899149,1.8887249,1.6892536,1.4135596,1.0921313,0.7605145,0.4553817,0.21047664,1.9999046,1.9400866,1.7763072,1.5266783,1.2188054,0.8867357,0.5671914,0.29551017,0.101736486,0.0072990656,0.02264154,0.14606726,0.3639269,0.652128,0.9787992,1.3078151,1.6027904,1.831105,1.9675101,1.9969211,1.9160855,1.7339427,1.4706353,1.1552818,0.822756,0.5098312,0.25111264,0.075211406,0.0015798807,0.038360655,0.18148631,0.41512907,0.7134509,1.0434614,1.3686657,1.6531003,1.8653104,1.9818283,1.9897687,1.8882537,1.688509,1.4126244,1.0911086,0.7595175,1.7940489,1.9494689,1.9998899,1.9397359,1.7756594,1.525805,1.2178032,0.88571537,0.5662658,0.29478168,0.10128564,0.0071757436,0.022859335,0.14660215,0.3647197,0.653091,0.979826,1.308792,1.6036096,1.8316758,1.9677693,1.99684,1.9156733,1.7332448,1.469729,1.1542671,0.8217454,0.5089363,0.2504325,0.074821174,0.0015226603,0.038642883,0.18207675,0.4159624,0.714435,1.0444875,1.3696201,1.6538776,1.8658247,1.9820228,1.9896218,1.8877814,1.6877639,1.4116886,1.0900859,1.5516741,1.7946727,1.9497907,1.9998741,1.9393843,1.7750108,1.5249312,1.2168008,0.8846952,0.5653407,0.29405397,0.10083574,0.007053435,0.023078203,0.14713788,0.36551315,0.6540544,0.9808528,1.3097687,1.604428,1.8322456,1.9680274,1.996758,1.91526,1.7325461,1.468822,1.1532524,0.8207349,0.50804186,0.24975306,0.074431896,0.0014665723,0.038926125,0.18266803,0.41679633,0.7154194,1.0455134,1.3705742,1.6546543,1.866338,1.9822161,1.9894736,1.8873082,1.687018,1.4107525,1.2486625,1.5525305,1.7952957,1.9501115,1.9998573,1.9390317,1.7743614,1.5240567,1.2157981,0.8836751,0.56441605,0.29332697,0.1003868,0.006932199,0.023298085,0.14767456,0.36630726,0.65501815,0.9818796,1.3107449,1.6052458,1.8328145,1.9682845,1.9966748,1.9148457,1.7318466,1.4679147,1.1522374,0.8197247,0.507148,0.24907446,0.07404357,0.0014114976,0.03921038,0.1832602,0.41763085,0.7164041,1.0465393,1.3715279,1.6554303,1.8668506,1.9824083,1.9893246,1.8868341,0.59601414,0.9183192,1.2496572,1.5533862,1.7959179,1.9504313,1.9998394,1.9386781,1.7737112,1.5231818,1.2147952,0.88265514,0.5634918,0.2926007,0.09993875,0.0068119764,0.02351898,0.14821213,0.36710203,0.65598226,0.9829064,1.3117208,1.6060631,1.8333825,1.9685407,1.9965906,1.9144306,1.7311463,1.4670068,1.1512223,0.8187146,0.5062547,0.2483967,0.07365626,0.0013574362,0.039495647,0.18385321,0.41846603,0.717389,1.0475651,1.3724811,1.6562055,1.8673621,1.9825996,1.9891744,0.3191365,0.59695375,0.91934276,1.2506515,1.5542413,1.7965392,1.9507501,1.9998205,1.9383235,1.7730601,1.5223063,1.2137921,0.8816353,0.56256807,0.29187518,0.099491715,0.0066928864,0.023740947,0.1487506,0.3678975,0.6569468,0.98393327,1.3126966,1.6068796,1.8339497,1.9687957,1.9965053,1.9140145,1.7304454,1.4660984,1.150207,0.81770474,0.5053619,0.24771965,0.0732699,0.0013045073,0.039781928,0.18444705,0.4193018,0.71837425,1.0485909,1.3734341,1.6569802,1.8678727,0.011940062,0.11709565,0.319889,0.59789383,0.92036647,1.2516456,1.5550958,1.7971597,1.9510679,1.9998004,1.937968,1.7724082,1.5214303,1.2127888,0.8806156,0.5616448,0.2911504,0.099045634,0.00657475,0.023963869,0.14929003,0.36869365,0.6579116,0.98496014,1.3136718,1.6076956,1.8345159,1.9690497,1.996419,1.9135973,1.7297435,1.4651896,1.1491916,0.81669503,0.50446963,0.24704343,0.0728845,0.0012525916,0.040069222,0.18504179,0.42013818,0.7193599,1.0496167,1.3743865,1.6577541,0.015868425,0.012098849,0.11757833,0.32064223,0.5988344,0.92139024,1.2526393,1.5559497,1.7977793,1.9513848,1.9997795,1.9376113,1.7717557,1.5205536,1.2117852,0.879596,0.560722,0.29042637,0.09860051,0.006457746,0.024187863,0.14983028,0.36949044,0.6588768,0.985987,1.3146468,1.6085107,1.8350813,1.9693027,1.9963317,1.9131793,1.729041,1.4642802,1.1481761,0.8156856,0.5035778,0.24636799,0.07250011,0.0012017488,0.04035753,0.18563735,0.4209752,0.72034574,1.0506424,1.3753386,0.12796718,0.01568669,0.012258589,0.11806196,0.32139623,0.5997753,0.92241406,1.2536328,1.5568031,1.7983981,1.9517007,1.9997573,1.9372538,1.7711022,1.5196764,1.2107813,0.8785766,0.5597996,0.28970313,0.09815627,0.006341696,0.02441293,0.15037143,0.3702879,0.6598424,0.9870139,1.3156215,1.6093254,1.8356459,1.9695547,1.9962432,1.9127603,1.7283378,1.4633704,1.1471604,0.8146763,0.5026866,0.24569339,0.07211667,0.0011519194,0.04064685,0.18623382,0.42181283,0.72133183,0.61780417,0.33591497,0.12746495,0.015506029,0.012419462,0.118546486,0.3221509,0.6007167,0.923438,1.2546262,1.5576558,1.799016,1.9520154,1.9997342,1.9368953,1.7704479,1.5187988,1.2097774,0.8775573,0.5588777,0.2889806,0.09771305,0.006226778,0.02463895,0.15091348,0.371086,0.6608083,0.9880408,1.3165958,1.6101394,1.8362095,1.9698057,1.9961538,1.9123402,1.7276336,1.46246,1.1461445,0.8136672,0.5017959,0.2450195,0.07173425,0.0011031628,0.040937185,0.18683112,0.42265105,0.9409341,0.6168554,0.3351475,0.12696368,0.01532644,0.012581348,0.119031966,0.32290632,0.60165846,0.924462,1.255619,1.558508,1.7996333,1.9523293,1.9997101,1.9365357,1.7697928,1.5179206,1.2087731,0.87653804,0.5579563,0.28825885,0.09727073,0.0061128736,0.024866045,0.15145642,0.37188476,0.6617746,0.9890677,1.3175699,1.6109529,1.8367723,1.9700556,1.9960632,1.9119192,1.7269287,1.4615493,1.1451285,0.8126583,0.5009057,0.2443465,0.07135278,0.001055479,0.041228533,0.18742931,1.2705562,0.939909,0.61590695,0.3343807,0.12646335,0.015147805,0.012744248,0.1195184,0.3236624,0.60260063,0.9254861,1.2566118,1.5593596,1.8002495,1.952642,1.9996848,1.9361752,1.7691368,1.5170418,1.2077687,0.875519,0.5570353,0.2875378,0.096829414,0.0059999824,0.025094151,0.15200031,0.37268424,0.6627412,0.9900946,1.3185434,1.6117655,1.8373342,1.9703045,1.9959717,1.9114974,1.7262231,1.460638,1.1441122,0.81164956,0.50001603,0.24367422,0.07097232,0.0010088086,1.8082299,1.5704403,1.2695675,0.9388839,0.614959,0.33361465,0.12596393,0.014970243,0.01290822,0.12000573,0.32441926,0.6035433,0.9265103,1.2576044,1.5602107,1.8008649,1.9529538,1.9996583,1.9358137,1.7684801,1.5161624,1.206764,0.87450004,0.5561148,0.28681755,0.096388996,0.0058882236,0.025323272,0.15254503,0.37348437,0.6637082,0.9911216,1.3195168,1.6125776,1.8378952,1.9705524,1.9958792,1.9110744,1.7255168,1.4597262,1.143096,0.81064105,0.4991269,0.24300277,0.07059282,1.9563401,1.8076247,1.5695965,1.2685783,0.9378588,0.6140114,0.33284926,0.1254654,0.014793754,0.013073206,0.12049401,0.32517678,0.6044863,0.9275345,1.2585964,1.561061,1.8014795,1.9532647,1.999631,1.9354513,1.7678225,1.5152826,1.205759,0.8734813,0.5551948,0.286098,0.09594959,0.0057774186,0.025553465,0.15309066,0.3742851,0.66467553,0.9921485,1.3204898,1.613389,1.8384553,1.9707993,1.9957855,1.9106506,1.7248095,1.4588139,1.1420795,0.8096328,0.49823827,1.932116,1.9993345,1.9560394,1.8070186,1.568752,1.2675889,0.93683386,0.61306417,0.3320846,0.12496781,0.014618278,0.013239205,0.12098318,0.325935,0.60542977,0.9285588,1.2595885,1.5619109,1.8020933,1.9535744,1.9996026,1.9350877,1.7671642,1.5144022,1.204754,0.87246263,0.5542753,0.28537923,0.09551108,0.005667746,0.025784671,0.15363723,0.37508655,0.6656432,0.99317545,1.3214624,1.6141998,1.8390145,1.9710453,1.9956908,1.9102259,1.7241015,1.4579012,1.1410627,0.8086247,1.7624826,1.9324875,1.9993714,1.9557377,1.8064117,1.5679071,1.2665992,0.93580896,0.6121174,0.33132058,0.12447113,0.014443815,0.013406336,0.12147331,0.326694,0.6063736,0.92958325,1.2605801,1.5627601,1.8027061,1.9538832,1.9995732,1.9347233,1.766505,1.5135212,1.2037487,0.8714441,0.5533562,0.28466123,0.09507358,0.005559087,0.026016891,0.15418464,0.37588865,0.6666113,0.99420244,1.3224347,1.6150098,1.8395729,1.97129,1.995595,1.9098,1.723393,1.456988,1.140046,1.5090412,1.7631466,1.932858,1.9994073,1.955435,1.805804,1.5670614,1.2656093,0.9347842,0.611171,0.33055735,0.123975396,0.014270425,0.013574421,0.121964335,0.32745367,0.6073179,0.93060774,1.2615714,1.5636086,1.8033181,1.954191,1.9995427,1.9343578,1.7658451,1.5126398,1.202743,0.8704257,0.55243754,0.283944,0.09463698,0.005451441,0.026250124,0.15473294,0.3766914,0.6675797,0.9952294,1.3234067,1.6158193,1.8401303,1.9715338,1.9954982,1.9093733,1.7226834,0.867294,1.1996487,1.5099249,1.7638099,1.9332275,1.9994421,1.9551313,1.8051955,1.5662153,1.2646191,0.9337594,0.6102251,0.32979482,0.12348056,0.014098048,0.013743579,0.12245631,0.32821405,0.6082626,0.9316323,1.2625625,1.5644567,1.8039293,1.9544978,1.999511,1.9339913,1.7651843,1.5117576,1.2017373,0.8694074,0.5515194,0.2832275,0.094201386,0.0053448677,0.02648443,0.15528214,0.3774948,0.66854846,0.99625635,1.3243783,1.6166282,1.8406869,1.9717766,1.9954003,1.9089456,0.55053204,0.868312,1.200655,1.510808,1.7644724,1.9335959,1.999476,1.9548267,1.8045859,1.5653684,1.2636285,0.93273467,0.6092795,0.32903296,0.122986674,0.013926744,0.01391381,0.12294924,0.32897514,0.60920775,0.9326569,1.2635534,1.5653042,1.8045397,1.9548035,1.9994783,1.9336239,1.7645227,1.5108751,1.2007314,0.8683893,0.5506017,0.28251177,0.09376669,0.0052393675,0.02671969,0.15583223,0.37829888,0.6695176,0.99728334,1.3253496,1.6174364,1.8412426,1.9720184,0.094168365,0.28317308,0.55144966,0.8693301,1.201661,1.5116906,1.7651341,1.9339635,1.9995086,1.954521,1.8039757,1.5645211,1.2626377,0.93171006,0.60833436,0.3282718,0.122493684,0.013756454,0.014085054,0.12344301,0.3297369,0.6101532,0.93368155,1.2645439,1.566151,1.8051492,1.9551083,1.9994447,1.9332554,1.7638602,1.509992,1.1997252,0.8673713,0.5496845,0.28179675,0.093333006,0.00513494,0.026956022,0.15638328,0.3791036,0.67048705,0.9983103,1.3263205,1.6182439,1.8417974,0.0054433346,0.094603896,0.28388953,0.5523678,0.87034833,1.2026668,1.5125728,1.7657949,1.93433,1.9995403,1.9542143,1.8033645,1.5636731,1.2616467,0.9306855,0.6073896,0.32751137,0.12200165,0.013587236,0.014257312,0.123937786,0.3304994,0.6110991,0.93470633,1.2655342,1.5669973,1.8057578,1.955412,1.9994099,1.9328861,1.7631971,1.5091083,1.1987188,0.8663535,0.5487678,0.2810825,0.092900276,0.0050314665,0.027193367,0.15693516,0.37990892,0.6714568,0.9993373,1.3272911,1.6190507,0.026034534,0.0055508614,0.09504038,0.28460675,0.5532864,0.87136674,1.2036723,1.5134543,1.7664549,1.9346955,1.9995708,1.9539065,1.8027526,1.5628245,1.2606554,0.92966104,0.6064453,0.32675165,0.121510565,0.013419032,0.014430642,0.12443346,0.33126265,0.6120455,0.9357312,1.2665241,1.567843,1.8063657,1.9557147,1.9993742,1.9325157,1.7625331,1.5082241,1.1977122,0.8653358,0.54785156,0.28036904,0.09246844,0.0049291253,0.027431786,0.15748787,0.38071495,0.67242694,1.0003643,0.37514746,0.15367877,0.025802255,0.005659461,0.09547782,0.2853247,0.5542054,0.87238526,1.2046776,1.5143354,1.7671142,1.93506,1.9996004,1.9535979,1.8021398,1.5619754,1.2596637,0.9286366,0.6055014,0.32599264,0.12102038,0.013251901,0.014604986,0.124930024,0.33202654,0.6129923,0.936756,1.2675138,1.5686879,1.8069725,1.9560165,1.9993373,1.9321444,1.7618682,1.5073395,1.1967053,0.86431825,0.5469358,0.27965635,0.09203762,0.0048277974,0.027671158,0.15804154,0.38152164,0.6733974,0.664749,0.37434596,0.15313214,0.025570989,0.005769074,0.09591627,0.2860434,0.55512494,0.8734039,1.2056828,1.5152158,1.7677726,1.9354236,1.999629,1.9532882,1.8015261,1.5611255,1.2586718,0.9276123,0.60455793,0.32523435,0.12053108,0.0130857825,0.014780402,0.12542754,0.33279115,0.6139394,0.937781,1.2685032,1.5695324,1.8075787,1.9563172,1.9992994,1.931772,1.7612026,1.5064541,1.1956983,0.8633008,0.5460205,0.27894437,0.09160775,0.0047275424,0.027911603,0.1585961,0.382329,0.99119955,0.66378164,0.3735451,0.15258646,0.025340736,0.00587976],"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/vercosf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/large_positive.json
new file mode 100644
index 000000000000..35bb2f4d1fa9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/large_positive.json
@@ -0,0 +1 @@
+{"expected":[1.9989498,1.1090276,0.023774028,0.6781012,1.9060342,1.9878557,0.20723772,0.0019513965,1.641796,1.9607862,1.9517174,0.12215972,1.256944,1.5240649,1.9922019,0.4073419,0.82380414,1.8352548,1.8462203,0.8039033,1.8115323,0.01751715,1.5412072,1.2373174,0.13204044,1.9577396,0.54928803,0.15356594,1.9689293,0.5123559,0.7024873,1.8972769,0.06208998,1.3940921,1.3953011,0.048405766,1.4321777,1.3565469,0.07690787,1.9144199,1.317169,0.5481138,1.9305451,0.13269472,0.5858105,1.5423133,0.11263913,0.6242317,1.5067077,0.09413564,1.8345306,1.4702157,0.40628248,1.8568387,1.4329011,0.44044858,1.8776481,0.20150131,0.47559345,1.6428046,0.17702764,1.7314786,1.6102114,0.15399349,1.7593505,1.5765508,0.31061715,1.7858942,0.31252605,0.34151024,1.811063,0.2827614,0.37355512,1.7332706,0.25425136,1.6407863,1.7041981,0.22704583,1.6723275,1.673894,0.20119232,1.7026925,0.40840232,1.4678913,1.7318286,0.37520766,1.504437,1.7596844,0.3431059,1.5401002,0.58820736,0.31215322,1.5748187,0.5504631,0.2824037,1.6085317,0.5135052,1.3540869,1.6411804,0.47739828,1.3928823,1.6727076,0.4422055,1.4309907,0.70500094,0.40798837,1.468345,0.6653055,0.37480682,1.5048802,0.62619555,1.2347599,1.5405324,0.58773947,1.2752004,1.5752388,0.5500045,1.3151593,0.8263954,0.51305664,1.354567,0.7853679,1.0701218,1.3933545,0.7447158,1.1117717,1.431454,0.70451033,1.1532263,0.99230367,0.66482174,1.1944127,0.9504974,0.62571937,1.235259,0.9087777,0.9452409,1.2756939,0.86721754,0.98704034,1.3156466,0.8258897,1.0288624,1.1170008,0.7848664,1.070634,1.0753714,0.7442194,1.112282,1.0336102,0.8212141,1.1537336,0.9917902,0.86251104,1.1949164,0.9499845,0.9040484,1.2398732,0.90826637,0.94575363,1.2761875,0.66035014,0.9875538,1.3161337,0.69997567,1.0293757,0.4378445,0.740126,1.0711461,0.4729179,0.7807309,1.1127923,0.5089133,0.82171935,1.154241,0.54576755,0.86301965,1.19542,0.58341646,0.90455955,0.33914638,0.621794,0.9462664,0.37110656,0.6608331,0.9880672,0.40416682,0.70046556,1.0298889,0.43826932,0.7406219,1.0716584,0.47335434,0.78123194,0.25075495,0.5093606,0.8222246,0.27910352,0.5462251,0.8635283,0.30871308,0.58388335,0.9050707,0.33953184,0.6222694,0.1511988,0.37150586,0.6613163,0.1740489,0.40457928,0.7009555,0.1983437,0.43869418,0.74111784,0.22404075,0.47379094,0.78173304,0.25109512,0.5098081,0.09191871,0.27945948,0.5466827,0.110224485,0.30908424,0.58435035,0.1300866,0.33991748,0.6227449,0.15147042,0.3719054,0.66179943,0.17433846,0.40499192,0.04680115,0.19865078,0.43911922,0.060277104,0.22436476,0.47422767,0.075396836,0.25143552,0.51025575,0.09213388,0.27981567,0.009834111,0.11045897,0.3094555,0.016549885,0.13033998,0.3403033,0.02498585,0.15174228,0.37230504,0.03512734,0.17462826,0.4054047,0.04695654,0.19895804,0.000118494034,0.06045282,0.224689,0.0016365647,0.07559258,0.2517761,0.004900992,0.09234929,0.280172,0.009906113,0.11069363,0.30982703,0.016643047,0.1305936,0.0059971213,0.025100052,0.15201432,0.0022939444,0.035262346,0.1749183,0.00033593178,0.047112167,0.19926554,0.00012648106,0.06062877,0.22501338,0.001666069,0.07578856,0.02737838,0.004951954,0.09256494,0.018511653,0.009978294,0.110928595,0.011361718,0.016736448,0.13084745,0.005941093,0.025214493,0.07945818,0.002259314,0.03539765,0.06392878,0.00032275915,0.047268033,0.050036788,0.0001348257,0.060805023,0.03780645,0.0016958117,0.075984776,0.027259171,0.0050030947,0.1353268,0.018413424,0.010050833,0.11507833,0.011284649,0.016830146,0.09637767,0.0058853626,0.025329232,0.1525591,0.4827718,0.23072404,0.06374824,0.00030982494,0.047424197,0.19988114,0.41306984,0.18002921,0.037666738,0.0017258525,0.07618123,0.6320375,0.34747273,0.13506901,0.018315434,0.010123551,0.111399174,0.55563104,0.28643918,0.09615785,0.005829811,0.02544415,0.79151607,0.4823324,0.23039609,0.063567996,0.00029718876,0.0475806,0.7105259,0.41265416,0.17973536,0.037527263,0.0017561316,0.07637793,0.6315601,0.3470837,0.1348114,0.018217742,0.010196567,0.87345505,0.55517113,0.28607953,0.095938265,0.005774617,0.025559425,0.79101396,0.48189312,0.23006833,0.06338793,0.000284791,1.0398965,0.7100344,0.41223866,0.17944175,0.037388027,0.0017867088,0.9562682,0.6310828,0.34669483,0.13455403,0.018120348,0.010269821,0.87294567,0.5547113,0.28572005,0.09571892,0.005719602,1.1227362,0.7905118,0.481454,0.22974074,0.06320816,0.00027263165,1.0393834,0.709543,0.41182333,0.17914838,0.03724903,1.2857977,0.9557552,0.6306056,0.34630615,0.1342969,0.018023133,1.2047281,0.8724364,0.55425155,0.28536075,0.09549981,1.4409268,1.1222266,0.79000974,0.48101503,0.22941333,0.06302863,1.3643905,1.0388703,0.70905167,0.41140813,0.17885524,0.03711033,1.2853056,0.9552422,0.63012844,0.34591764,0.13403994,1.5139391,1.2042254,0.87192714,0.553792,0.2850017,0.095280945,1.4404659,1.121717,0.7895077,0.48057616,0.22908622,1.6492232,1.3639122,1.0383573,0.70856047,0.4109931,0.17856228,1.583401,1.2848134,0.95472926,0.6296514,0.34552932,1.7664881,1.5134985,1.2037227,0.8714179,0.55333245,0.28464276,1.7101436,1.4400048,1.1212072,0.78900576,0.48013747,0.22875923,1.6488326,1.3634338,1.0378442,0.70806926,0.4105782,1.817176,1.5829839,1.2843212,0.9542163,0.6291745,0.34514117,1.7661581,1.5130578,1.20322,0.8709086,0.55287313,1.9015275,1.7097819,1.4395437,1.1206975,0.7885038,0.4796989,1.8622189,1.6484418,1.3629555,1.037331,0.7075782,1.9608569,1.81688,1.5825665,1.2838289,0.95370334,0.62869763,1.9343483,1.765828,1.5126171,1.2027172,0.8703995,0.5524139,1.9013052,1.7094202,1.4390824,1.1201878,0.788002,1.9805448,1.8619585,1.6480508,1.362477,1.0368179,0.70708716,1.9607146,1.8165836,1.5821491,1.2833364,0.9531904,1.9995261,1.9341652,1.7654977,1.512176,1.2022144,0.86989033,1.993459,1.9010826,1.7090582,1.438621,1.119678,0.7875002,1.980444,1.8616982,1.6476595,1.3619983,1.0363047,1.9986298,1.9605719,1.816287,1.5817316,1.282844,0.9526775,1.9995103,1.9339819,1.7651672,1.511735,1.2017114,1.9760835,1.9934003,1.9008598,1.7086959,1.4381595,1.1191682,1.9908348,1.9803427,1.8614374,1.6472683,1.3615196,1.9264457,1.9986565,1.960429,1.8159904,1.5813138,1.2823514,1.9546586,1.9994941,1.9337983,1.7648365,1.5112938,1.2012085,1.976195,1.9933412,1.9006369,1.7083336,1.4376979,1.8919857,1.9909041,1.9802413,1.8611765,1.6468768,1.3610408,1.9266388,1.9986831,1.9602859,1.8156934,1.5808959,1.8045554,1.9548113,1.9994776,1.9336145,1.7645056,1.5108523,1.8513637,1.9763062,1.993282,1.9004135,1.7079711,1.6947945,1.8922176,1.990973,1.9801396,1.8609154,1.6464851,1.7524586,1.9268317,1.9987092,1.9601425,1.8153963,1.5804778,1.8048602,1.9549639,1.9994608,1.9334303,1.7641745,1.632669,1.8516328,1.9764172,1.9932225,1.9001901,1.7076082,1.6951637,1.8924494,1.9910418,1.9800377,1.8606541,1.4953194,1.7527966,1.9270244,1.9987352,1.9599988,1.815099,1.5661728,1.8051648,1.955116,1.9994438,1.933246,1.3442222,1.6330665,1.8519019,1.9765279,1.9931626,1.8999662,1.7072453,1.4363122,1.1171286,0.53505,0.85107595,1.183571,1.4957654,1.7531346,1.9272169,1.9987609,1.9598548,1.8148013,1.5796413,1.2803804,0.39451873,0.688974,1.0178248,1.3447043,1.6334639,1.8521707,1.9766384,1.9931026,1.8997424,1.7068822,1.4358501,0.27079278,0.5355047,0.8515837,1.1840757,1.4962113,1.7534723,1.927409,1.9987863,1.9597108,1.8145036,1.5792228,0.16730613,0.3949275,0.68946207,1.0183381,1.3451862,1.6338612,1.8524393,1.9767487,1.9930422,1.8995181,1.7065189,0.08693105,0.27114427,0.5359595,0.85209155,1.1845804,1.496657,1.7538099,1.9276011,1.9988115,1.9595664,1.8142055,1.5788041,0.16759056,0.3953364,0.6899502,1.0188515,1.3456681,1.6342583,1.8527076,1.9768586,1.9929817,1.8992937,1.7061555,0.08714062,0.27149594,0.5364144,0.8525994,1.185085,1.4971027,1.7541472,1.9277928,1.9988364,1.9594216,1.8139074,0.032027245,0.16787523,0.39574546,0.69043845,1.019365,1.3461499,1.6346552,1.8529758,1.9769683,1.9929206,1.899069,0.0037801862,0.08735037,0.27184778,0.5368694,0.85310733,1.1855897,1.4975481,1.7544843,1.9279842,1.9988611,1.9592767,0.003183484,0.03215629,0.16816014,0.3961547,0.6909268,1.0198783,1.3466315,1.635052,1.8532436,1.9770777,1.9928596,0.03025359,0.0038249493,0.087560356,0.2721998,0.53732455,0.8536153,1.1860942,1.4979935,1.7548212,1.9281754,1.9988854,1.9591316,0.003142655,0.03228557,0.16844523,0.39656407,0.69141513,1.0203917,1.3471133,1.6354485,1.8535113,1.9771869,1.9927982,0.03012836,0.0038699508,0.08777064,0.27255207,0.53777987,0.85412323,1.1865987,1.4984387,1.755158,1.9283664,1.9989095,0.08403313,0.0031021237,0.03241515,0.16873056,0.3969736,0.6919036,1.0209051,1.3475947,1.635845,1.8537788,1.9772959,0.16336071,0.030003428,0.0039151907,0.087981105,0.27290452,0.5382353,0.85463125,1.1871032,1.4988838,1.7554944,1.9285572,0.26590943,0.0838272,0.003061831,0.03254497,0.16901612,0.39738333,0.6923922,1.0214185,1.3480761,1.6362412,1.8540461,0.388833,0.16307956,0.029878676,0.0039607286,0.08819181,0.27325714,0.5386908,0.8551393,1.1876075,1.4993289,1.7558308,0.52871966,0.2655608,0.0836215,0.0030218363,0.032675028,0.16930187,0.39779317,0.6928808,1.0219319,1.3485575,1.6366372,1.854313,0.38842666,0.16279858,0.029754221,0.004006505,0.08840281,0.27360994,0.5391464,0.85564744,1.1881119,1.4997736,1.7561669,0.5282668,0.26521242,0.083416045,0.00298208,0.032805324,0.16958785,0.3982032,0.6933695,1.0224452,1.3490387,1.6370331,0.6812,0.38802046,0.1625179,0.029630065,0.0040525794,0.08861399,0.27396297,0.5396022,0.8561555,1.1886162,1.5002184,0.84298164,0.5278141,0.2648642,0.083210886,0.002942562,0.032935917,0.16987407,0.3986134,0.6938583,1.0229585,1.3495198,1.0091213,0.68071336,0.38761443,0.1622374,0.029506087,0.004098892,0.088825464,0.2743162,0.54005814,0.8566637,1.1891204,1.1750078,0.8424745,0.5273615,0.26451623,0.083005905,0.0029033422,0.03306675,0.17016047,0.3990237,0.6943472,1.023472,1.350001,1.0086079,0.6802268,0.38720858,0.16195714,0.029382408,0.0041454434,0.08903712,0.2746696,0.5405141,0.8571719,1.1896247,1.1745023,0.84196746,0.52690905,0.26416838,0.08280122,0.0028643608,0.03319782,0.17044711,0.3994342,0.69483614,1.0239853,1.3355533,1.0080943,0.6797403,0.38680285,0.16167706,0.029258966,0.0041922927,0.089249074,0.27502316,0.54097027,0.8576802,1.487291,1.1739966,0.84146047,0.5264567,0.26382077,0.08259672,0.0028256774,0.03332913,0.17073399,0.39984488,0.6953252,1.6255038,1.3350694,1.0075809,0.67925394,0.3863973,0.16139722,0.029135823,0.0042393804,0.08946127,0.27537692,0.54142654,1.7463555,1.4868425,1.1734909,0.84095347,0.52600455,0.26347333,0.082392514,0.0027872324,0.033460736,0.17102104,0.40025568,1.846492,1.625103,1.3345857,1.0070674,0.67876756,0.38599193,0.16111761,0.029012859,0.004286766,0.08967364,0.2757309,0.5418829,1.7460136,1.4863939,1.1729852,0.84044653,0.52555245,0.26312613,0.08218855,0.0027490258,0.03359258,0.17130834,0.40066665,1.8462186,1.6247022,1.3341017,1.0065539,0.6782813,0.38558674,0.16083825,0.028890193,0.00433439,0.08988631,0.27608502,1.9229366,1.7456717,1.4859452,1.1724794,0.83993965,0.52510047,0.26277906,0.08198476,0.0027111173,0.033724725,0.17159587,1.9740381,1.8459449,1.6243011,1.3336177,1.0060405,0.6777952,0.38518167,0.16055906,0.028767824,0.0043822527,0.090099216,1.998105,1.9227388,1.7453294,1.4854963,1.1719736,0.8394328,0.52464867,0.26243222,0.08178127,0.0026734471,0.033857048,1.9944694,1.9739218,1.8456709,1.6238999,1.3331336,1.0055269,0.67730916,0.38477677,0.16028011,0.028645635,0.0044304132,0.0903123,1.9980733,1.9225407,1.744987,1.4850473,1.1714677,0.83892596,0.524197,0.26208556,0.08157802,0.002636075,0.033989668,1.9945232,1.9738052,1.8453968,1.6234984,1.3326494,1.0050135,0.67682314,0.38437206,0.1600014,0.028523743,0.004478812,1.9633698,1.9980414,1.9223424,1.7446444,1.4845982,1.1709619,0.8384192,0.52374536,0.26173913,0.081375,0.0025989413,1.9054779,1.9945767,1.9736882,1.8451223,1.623097,1.332165,1.0045,0.67633724,0.38396746,0.15972292,0.02840215,1.8224542,1.9635074,1.9980091,1.9221439,1.7443016,1.484149,1.1704558,0.8379125,0.5232939,0.2613929,0.08117223,1.7166032,1.9056957,1.99463,1.9735711,1.8448478,1.6226952,1.3316807,1.0039865,0.67585146,0.38356304,0.15944463,1.5908625,1.8227463,1.9636447,1.9979765,1.9219451,1.7439585,1.4836996,1.1699499,0.8374058,0.5228426,0.26104683,0.08096969,1.7169611,1.9059132,1.994683,1.9734538,1.844573,1.6222935,1.3311962,1.003473,0.6753657,0.3831588,0.15916657,1.5912768,1.823038,1.9637818,1.9979439,1.9217461,1.7436153,1.4832501,1.1694438,0.83689916,0.5223914,0.26070094,1.4491813,1.717319,1.9061306,1.9947357,1.973336,1.8442979,1.6218914,1.3307116,1.0029595,0.6748801,0.38275474,1.2946187,1.5916908,1.8233294,1.9639187,1.9979107,1.9215469,1.7432718,1.4828005,1.1689377,0.8363926,0.5219403,1.131879,1.44964,1.7176768,1.9063478,1.9947882,1.9732182,1.8440226,1.6214892,1.330227,1.002446,0.67439455,0.96547884,1.2951094,1.5921047,1.8236208,1.9640552,1.9978775,1.9213474,1.7429283,1.4823508,1.1684315,0.835886,0.5214894,1.132388,1.4500986,1.7180343,1.9065645,1.9948405,1.9731,1.8437471,1.6210868,1.3297423,1.0019325,0.67390907,0.96599203,1.2955999,1.5925183,1.8239119,1.9641914,1.9978439,1.9211476,1.7425845,1.4819009,1.1679254,0.8353795,0.80054003,1.1328969,1.4505571,1.7183915,1.9067812,1.9948924,1.9729815,1.8434714,1.6206843,1.3292575,1.0014191,0.64062405,0.9665052,1.2960905,1.592932,1.8242028,1.9643276,1.9978101,1.9209477,1.7422404,1.4814509,1.1674192,0.49068266,0.8010432,1.1334058,1.4510155,1.7187486,1.9069974,1.9949441,1.9728628,1.8431954,1.6202816,1.3287725,0.35487747,0.64110327,0.9670184,1.2965809,1.5933454,1.8244935,1.9644634,1.997776,1.9207475,1.7418962,1.4810008,0.23697782,0.49112463,0.80154645,1.1339147,1.4514737,1.7191055,1.9072137,1.9949956,1.9727439,1.8429193,1.6198788,1.3282876,1.0003921,0.67245317,0.38073677,0.15750283,0.027438223,0.73371005,0.432357,0.19377804,0.044356763,0.0006172657,0.06739658,0.23730981,0.49156672,0.80204976,1.1344235,1.4519318,1.7194623,1.9074295,1.9950467,1.9726248,1.8426429,1.6194757,1.3278025,0.9998786,0.6719681,0.38033366,0.15722632,1.0639988,0.7332151,0.43193436,0.19347435,0.044205666,0.0006354451,0.06758207,0.23764205,0.49200898,0.8025531,1.1349324,1.4523898,1.7198188,1.9076452,1.9950976,1.9725052,1.8423662,1.6190724,1.3273174,0.9993651,0.67148304,0.37993073,0.15695006,1.0634863,0.73272026,0.43151182,0.19317085,0.044054806,0.00065386295,0.06776774,0.23797446,0.4924513,0.80305654,1.1354412,1.4528477,1.7201753,1.9078605,1.9951483,1.9723855,1.8420894,1.6186692,1.326832,0.9988516,0.6709981,0.37952793,1.3867582,1.0629739,0.7322255,0.43108946,0.19286764,0.043904185,0.0006725788,0.067953646,0.23830706,0.49289382,0.80356,1.1359499,1.4533055,1.7205313,1.9080758,1.9951987,1.9722655,1.8418124,1.6182656,1.3263468,0.9983381,0.6705132,1.6673898,1.3862846,1.0624614,0.73173076,0.43066722,0.19256455,0.043753803,0.0006915331,0.06813985,0.23863989,0.49333644,0.8040635,1.1364586,1.4537631,1.7208873,1.9082906,1.9952488,1.9721453,1.8415351,1.617862,1.3258613,0.9978246,0.67002845,1.6670072,1.3858109,1.0619489,0.7312361,0.43024516,0.19226176,0.04360372,0.0007107854,0.068326294,0.2389729,0.49377924,0.8045671,1.1369673,1.4542207,1.7212431,1.9085054,1.9952986,1.9720249,1.8412576,1.6174581,1.3253758,0.9973111,1.874192,1.6666245,1.3853371,1.0614364,0.73074156,0.42982328,0.19195914,0.043453872,0.0007302761,0.068512976,0.23930609,0.49422216,0.8050707,1.1374758,1.454678,1.7215986,1.9087198,1.9953483,1.971904,1.8409798,1.6170542,1.3248903,1.9849966,1.8739425,1.6662416,1.3848633,1.0609238,0.7302471,0.42940146,0.19165671,0.043304265,0.00075000525,0.0686999,0.23963952,0.4946652,0.80557436,1.1379845,1.4551353,1.7219541,1.9089341,1.9953976,1.9717832,1.8407019,1.61665,1.3244045,1.9849077,1.8736928,1.6658587,1.3843893,1.0604113,0.72975266,0.42897987,0.19135451,0.043154895,0.0007700324,0.068887055,0.23997313,0.49510837,0.8060781,1.1384931,1.4555925,1.7223094,1.909148,1.9954467,1.9716618,1.8404238,1.6162457,1.9872863,1.9848187,1.8734429,1.6654756,1.3839152,1.0598987,0.7292583,0.4285584,0.19105256,0.043005824,0.000790298,0.06907445,0.24030691,0.49555165,0.80658185,1.1390016,1.4560496,1.7226644,1.9093618,1.9954956,1.9715405,1.8401453,1.8808162,1.9873679,1.9847295,1.8731928,1.6650922,1.383441,1.0593861,0.72876406,0.42813706,0.19075078,0.04285699,0.0008108616,0.06926209,0.24064094,0.4959951,0.80708563,1.13951,1.4565065,1.7230191,1.9095752,1.9955441,1.9714186,1.8398669,1.8810592,1.9874492,1.9846399,1.8729424,1.6647086,1.3829666,1.0588735,0.7282698,0.4277159,0.19044924,0.042708397,0.0008316636,0.06945002,0.24097514,0.49643868,0.80758953,1.1400185,1.4569633,1.7233738,1.9097885,1.9955924,1.9712965,1.6776131,1.8813019,1.9875301,1.9845502,1.8726918,1.6643249,1.3824923,1.0583609,0.7277757,0.4272949,0.19014788,0.04256004,0.00085270405,0.06963813,0.24130958,0.49688238,0.8080934,1.1405269,1.45742,1.7237282,1.9100015,1.9956404,1.39946,1.6779907,1.8815445,1.9876108,1.9844601,1.8724409,1.663941,1.3820179,1.0578483,0.72728163,0.42687404,0.18984675,0.042411983,0.0008740425,0.06982654,0.2416442,0.4973262,0.80859745,1.1410353,1.4578764,1.7240825,1.9102143,1.077266,1.3999306,1.6783681,1.8817868,1.9876912,1.9843698,1.8721898,1.6635569,1.3815432,1.0573357,0.7267876,0.4264533,0.18954587,0.042264163,0.0008956194,0.07001519,0.241979,0.4977702,0.80910146,1.1415436,1.458333,1.7244365,1.9104269,1.077778,1.4004012,1.6787453,1.8820288,1.9877715,1.9842793,1.8719385,1.6631727,1.3810685,1.056823,0.7262937,0.42603278,0.18924516,0.042116582,0.0009174943,0.07020408,0.24231404,0.49821424,0.80960554,1.1420519,1.4587893,1.7247905,0.7470503,1.0782899,1.4008718,1.6791222,1.8822707,1.9878514,1.9841884,1.8716869,1.6627883,1.3805937,1.0563104,0.72579986,0.42561233,0.1889447,0.04196924,0.0009396076,0.070393205,0.24264926,0.49865848,0.8101097,1.1425602,1.4592454,0.4442104,0.7475471,1.0788018,1.401342,1.6794991,1.8825123,1.987931,1.9840974,1.8714353,1.6624037,1.3801188,1.0557977,0.7253061,0.42519206,0.18864441,0.041822135,0.00096201897,0.07058257,0.24298465,0.4991029,0.8106138,1.1430684,1.4597015,0.44463736,0.74804395,1.0793136,1.4018123,1.6798757,1.8827536,1.9880104,1.984006,1.8711833,1.6620189,1.3796438,1.055285,0.7248124,0.42477196,0.18834436,0.04167533,0.0009846687,0.07077217,0.24332029,0.49954736,0.81111807,1.1435766,0.20295662,0.44506443,0.74854094,1.0798255,1.4022825,1.6802522,1.8829948,1.9880896,1.9839144,1.870931,1.661634,1.3791687,1.0547723,0.72431874,0.424352,0.18804449,0.04152876,0.0010075569,0.07096201,0.2436561,0.499992,0.8116223,0.049150407,0.20326686,0.44549167,0.749038,1.0803374,1.4027525,1.6806285,1.8832357,1.9881685,1.9838226,1.8706787,1.6612489,1.3786935,1.0542595,0.7238252,0.4239322,0.18774486,0.041382432,0.0010307431,0.07115215,0.24399209,0.5004368,0.81212664,0.04930955,0.20357728,0.44591904,0.7495351,1.0808492,1.4032226,1.6810045,1.8834764,1.9882472,1.9837304,1.8704259,1.6608636,1.3782182,1.0537468,0.7233317,0.42351258,0.18744546,0.0412364,0.0010541677,0.07134247,0.24432832,0.5008817,0.00016641617,0.049468935,0.20388788,0.44634658,0.7500322,1.081361,1.4036924,1.6813805,1.8837168,1.9883255,1.983638,1.870173,1.6604781,1.3777428,1.0532341,0.7228383,0.42309308,0.18714625,0.041090608,0.0010778904,0.071533084,0.24466473,0.061255455,0.00015717745,0.049628556,0.20419878,0.4467743,0.7505294,1.0818728,1.404162,1.6817563,1.883957,1.9884036,1.9835454,1.8699199,1.6600925,1.3772674,1.0527213,0.722345,0.4226737,0.18684727,0.040945053,0.0011018515,0.07172394,0.24500132,0.061078608,0.00014817715,0.049788415,0.2045098,0.4472021,0.75102675,1.0823846,1.4046317,1.6821318,1.884197,1.9884814,1.9834526,1.8696666,1.6597066,1.3767917,1.0522085,0.7218517,0.4222545,0.18654853,0.040799737,0.0011261106,0.07191503,0.22551668,0.06090206,0.00013947487,0.049948573,0.20482105,0.4476301,0.7515241,1.0828962,1.4051013,1.6825073,1.8844367,1.988559,1.9833593,1.8694129,1.6593206,1.3763161,1.0516957,0.72135854,0.42183548,0.18624997,0.04065466,0.0011506081,0.47534198,0.22519195,0.06072569,0.00013101101,0.05010897,0.20513254,0.4480582,0.7520215,1.083408,1.4055706,1.6828824,1.8846762,1.9886363,1.9832659,1.8691591,1.6589345,1.3758402,1.0511829,0.72086537,0.42141658,0.18595159,0.04050988,0.78301114,0.47490495,0.22486746,0.060549617,0.00012284517,0.050269604,0.20544422,0.44848645,0.752519,1.0839196,1.40604,1.6832575,1.8849156,1.9887134,1.9831723,1.8689051,1.6585481,1.3753643,1.05067,0.7203723,0.42099786,0.18565345,0.04036534,0.7825099,0.474468,0.22454315,0.060373783,0.000114917755,0.050430477,0.20575613,0.4489149,0.75301653,1.0844314,1.4065092,1.6836324,1.8851546,1.9887902,1.9830784,1.8686508,1.6581616,1.3748883,1.0501572,0.7198794,0.42057925,0.18535554,1.1140933,0.78200877,0.4740312,0.22421902,0.060198188,0.00010728836,0.050591588,0.20606822,0.44934344,0.7535142,1.084943,1.4069782,1.6840069,1.8853934,1.9888667,1.9829842,1.8683963,1.6577749,1.3744123,1.0496444,0.71938646,0.42016083,1.4330978,1.1135831,0.7815076,0.47359455,0.22389507,0.06002283,9.9897385e-5,0.050752997,0.20638055,0.44977212,0.7540118,1.0854546,1.4074472,1.6843815,1.885632,1.988943,1.9828897,1.8681415,1.6573881,1.373936,1.0491315,0.71889365,0.41974252,1.432635,1.113073,0.7810066,0.473158,0.22357142,0.059847713,9.274483e-5,0.050914645,0.20669305,0.45020097,0.75450957,1.0859662,1.4079161,1.6847558,1.8858702,1.989019,1.982795,1.8678865,1.657001,1.3734598,1.0486187,0.7184009,1.7039886,1.432172,1.1125628,0.78050554,0.47272164,0.22324789,0.059672892,8.589029e-5,0.05107653,0.2070058,0.45062995,0.7550074,1.0864778,1.4083849,1.6851299,1.8861084,1.9890947,1.9827001,1.8676314,1.6566138,1.3729833,1.0481057,1.8977269,1.7036238,1.4317088,1.1120524,0.7800046,0.4722854,0.22292459,0.05949831,7.933378e-5,0.051238656,0.20731872,0.4510591,0.75550526,1.0869894,1.4088535,1.685504,1.8863463,1.9891703,1.9826047,1.8673759,1.6562265,1.3725069,1.0475929,1.8975005,1.7032588,1.4312456,1.1115422,0.7795037,0.47184932,0.22260147,0.059323907,7.2956085e-5,0.05140102,0.20763189,0.45148838,0.7560032,1.0875009,1.4093221,1.6858776,1.8865839,1.9892454,1.9825094,1.8671203,1.655839,1.3720303,1.9924275,1.897274,1.7028935,1.4307822,1.1110319,0.7790029,0.4714133,0.2222786,0.0591498,6.687641e-5,0.05156368,0.20794523,0.45191783,0.7565012,1.0880125,1.4097906,1.6862512,1.8868213,1.9893205,1.9824135,1.8668644,1.6554513,1.9779387,1.9923643,1.8970472,1.7025282,1.4303188,1.1105216,0.77850217,0.4709775,0.22195596,0.058975935,6.109476e-5,0.05172652,0.20825881,0.4523474,0.75699925,1.0885239,1.410259,1.6866246,1.8870585,1.9893951,1.9823176,1.8666083,1.6550634,1.978046,1.9923007,1.8968201,1.7021627,1.4298552,1.1100112,0.7780014,0.47054183,0.22163343,0.058802366,5.555153e-5,0.051889658,0.20857257,0.4527771,0.75749743,1.0890354,1.4107271,1.6869979,1.8872955,1.9894696,1.9822214,1.866352,1.8558974,1.9781528,1.9922371,1.8965929,1.701797,1.4293915,1.1095009,0.7775008,0.4701063,0.22131115,0.058628976,5.0246716e-5,0.052053094,0.20888656,0.45320696,0.7579956,1.0895468,1.4111953,1.6873709,1.8875322,1.9895439,1.9821248,1.6393857,1.8561628,1.9782593,1.9921732,1.8963654,1.701431,1.4289277,1.1089904,0.7770002,0.4696709,0.22098911,0.058455884,4.5239925e-5,0.05221671,0.20920074,0.45363694,0.75849384,1.0900582,1.4116633,1.6877438,1.8877686,1.9896178,1.3523813,1.6397804,1.856428,1.9783657,1.9921088,1.8961376,1.7010651,1.4284638,1.10848,0.7764997,0.4692356,0.22066724,0.05828303,4.0471554e-5,0.05238056,0.20951515,0.4540671,0.7589922,1.0905696,1.4121312,1.6881164,1.8880049,1.9896915,1.3528619,1.640175,1.856693,1.9784718,1.9920443,1.8959095,1.7006989,1.4279997,1.1079695,0.7759992,0.4688005,0.22034562,0.058110416,3.6001205e-5,0.052544713,0.20982975,0.4544974,0.7594906,1.091081,1.4125991,1.688489,1.8882408,1.0270401,1.3533423,1.6405693,1.8569577,1.9785776,1.9919796,1.8956814,1.7003324,1.4275357,1.107459,0.77549875,0.4683655,0.22002417,0.05793804,3.1769276e-5,0.052709103,0.21014458,0.4549278,0.759989,1.0915923,1.4130667,1.6888613,0.6982372,1.0275534,1.3538226,1.6409636,1.8572223,1.9786832,1.9919145,1.8954529,1.6999657,1.4270713,1.1069485,0.7749984,0.46793067,0.2197029,0.0577659,2.783537e-5,0.05287373,0.21045959,0.4553584,0.76048756,1.0921036,1.4135343,1.6892334,0.6987268,1.0280666,1.3543029,1.6413577,1.8574866,1.9787886,1.9918492,1.8952241,1.6995989,1.426607,1.1064379,0.7744981,0.46749598,0.21938187,0.057594,2.4139881e-5,0.053038657,0.21077484,0.45578915,0.7609861,1.0926149,1.4140017,0.40311563,0.6992164,1.02858,1.3547829,1.6417515,1.8577507,1.9788938,1.9917836,1.8949952,1.6992319,1.4261425,1.1059273,0.7739979,0.4670614,0.21906102,0.0574224,2.0682812e-5,0.05320376,0.21109027,0.45621997,0.76148474,1.0931262,0.17331135,0.40352774,0.6997062,1.0290933,1.355263,1.6421452,1.8580146,1.9789984,1.9917178,1.8947661,1.6988647,1.4256779,1.1054167,0.7734977,0.466627,0.2187404,0.057251036,1.7523766e-5,0.053369164,0.21140593,0.45665097,0.76198345,1.0936375,0.17360044,0.40393996,0.700196,1.0296066,1.3557429,1.6425388,1.8582782,1.9791031,1.9916518,1.8945367,1.6984973,1.4252132,1.1049061,0.7729976,0.46619266,0.21841997,0.05707991,1.4603138e-5,0.053534806,0.21172178,0.45708215,0.7624822,0.03478414,0.17388964,0.4043523,0.7006859,1.0301198,1.3562229,1.6429322,1.8585415,1.9792073,1.9915855,1.894307,1.6981298,1.4247484,1.1043954,0.77249753,0.46575856,0.21809977,0.056909025,1.1980534e-5,0.053700686,0.21203786,0.45751345,0.002383411,0.034918487,0.17417914,0.40476483,0.7011759,1.0306331,1.3567026,1.6433253,1.8588047,1.9793113,1.9915189,1.8940771,1.697762,1.4242835,1.1038847,0.7719976,0.46532452,0.21777976,0.056738377,9.596348e-6,0.053866804,0.21235412,0.45794487,0.002348125,0.035053134,0.17446882,0.40517753,0.701666,1.0311463,1.3571823,1.6437185,1.8590677,1.9794152,1.991452,1.893847,1.6973941,1.4238185,1.103374,0.7714976,0.46489072,0.21745992,0.056568027,7.4505806e-6,0.05403316,0.21267056,0.07976943,0.0023130774,0.03518802,0.17475873,0.40559042,0.7021561,1.0316595,1.3576618,1.6441113,1.8593304,1.9795187,1.9913849,1.8936167,1.697026,1.4233533,1.1028632,0.77099776,0.46445698,0.21714032,0.056397855,5.6028366e-6,0.054199815,0.25864667,0.079568565,0.002278328,0.035323143,0.17504883,0.40600342,0.7026464,1.0321728,1.3581413,1.6445041,1.8595929,1.9796219,1.9913175,1.8933861,1.6966577,1.422888,1.1023524,0.7704979,0.4640234,0.21682096,0.056227982,4.053116e-6,0.5192585,0.25830215,0.079367995,0.0022438169,0.035458565,0.17533916,0.4064166,0.7031367,1.032686,1.3586206,1.6448965,1.8598552,1.9797249,1.9912498,1.8931552,1.6962893,1.4224226,1.1018416,0.7699982,0.46358997,0.21650177,0.056058347,2.682209e-6,0.5188083,0.25795782,0.079167604,0.0022095442,0.035594225,0.17562973,0.4068299,0.70362705,1.0331992,1.3591,1.645289,1.8601172,1.9798276,1.9911819,1.8929242,1.6959206,1.4219573,1.1013308,0.76949847,0.46315664,0.21618277,0.05588895,0.83236617,0.51835823,0.25761372,0.07896751,0.0021755695,0.035730124,0.17592049,0.40724337,0.70411754,1.0337124,1.3595791,1.6456811,1.860379,1.9799302,1.9911137,1.8926928,1.6955518,1.4214916,1.10082,0.76899886,0.4627235,0.215864,1.1644057,0.83185995,0.51790833,0.2572698,0.0787676,0.0021418333,0.03586632,0.17621148,0.40765703,0.7046081,1.0342256,1.3600583,1.6460731,1.8606406,1.9800324,1.9910452,1.8924613,1.6951828,1.4210259,1.100309,0.76849926,0.46229053,0.21554548,0.055550933,2.9802322e-7,0.055036724,0.21457386,0.4609689,0.7669739,1.0987486,1.4196029,1.6940546,1.8917527,1.9908347,0.14182073,0.3576088,0.6444371,0.970586,1.2999878,1.5962148,1.826508,1.9654002,1.9975317,1.919349,1.7394981,1.4778684,1.1633925,0.8308477,0.5170088,0.2565825,0.078368604,0.0020751953,0.03613937,0.17679411,0.40848476,0.70558935,1.035252,1.3610162,1.6468565,1.8611631,1.980236,1.9909077,1.8919976,1.6944442,1.4200941,1.0992872,0.7675003,0.4614249,0.21490896,0.05521393,0.0,0.05537319,0.2152099,0.46183425,0.76797277,1.0997705,1.4205348,1.6947936,0.008191705,0.021145701,0.14234835,0.35839623,0.6453972,0.9716126,1.3009672,1.597039,1.8270857,1.9656675,1.997459,1.9189444,1.7388065,1.476966,1.1623794,0.8298356,0.5161098,0.25589603,0.077970564,0.0020095706,0.03641349,0.17737758,0.40931314,0.706571,1.0362782,1.3619738,1.6476395,1.8616848,1.9804387,1.9907689,1.8915329,1.6937048,1.4191619,1.0982652,0.76650155,0.46055984,0.21427327,0.054877877,8.34465e-7,0.055710733,0.21584678,0.46270013,0.7689718,1.1007923,1.4214665,0.10446137,0.008061051,0.021356285,0.14287692,0.35918427,0.6463576,0.97263914,1.3019465,1.5978625,1.8276625,1.9659338,1.9973853,1.9185389,1.738114,1.4760631,1.1613659,0.8288237,0.51521134,0.25521034,0.07757348,0.0019450188,0.036688626,0.17796195,0.41014212,0.7075529,1.0373045,1.3629308,1.6484216,1.8622054,1.9806404,1.9906292,1.8910673,1.6929648,1.4182293,1.0972431,0.7655031,0.4596954,0.21363842,0.05454284,2.6226044e-6,0.056049228,0.21648455,0.46356654,0.76997113,1.101814,0.29916382,0.10400486,0.007931411,0.02156794,0.14340639,0.359973,0.64731836,0.9736658,1.3029253,1.5986854,1.8282385,1.9661992,1.9973106,1.9181324,1.7374207,1.4751598,1.1603522,0.82781196,0.51431334,0.25452542,0.077177346,0.0018815398,0.036964715,0.1785472,0.4109717,0.70853513,1.0383308,1.3638875,1.6492031,1.8627253,1.9808409,1.9904884,1.8906007,1.692224,1.4172962,1.096221,0.7645049,0.45883155,0.21300441,0.054208815,5.543232e-6,0.056388676,0.21712309,0.46443355,0.8908181,0.5708983,0.29843158,0.1035493,0.007802844,0.02178061,0.14393675,0.36076248,0.64827955,0.9746924,1.3039039,1.5995076,1.8288136,1.9664633,1.9972348,1.9177251,1.7367266,1.4742558,1.1593385,0.82680035,0.5134159,0.25384128,0.07678223,0.0018190742,0.037241876,0.1791333,0.41180193,0.7095177,1.0393571,1.364844,1.6499839,1.863244,1.9810405,1.9903466,1.8901331,1.6914824,1.4163628,1.0951986,0.7635069,0.45796818,0.21237123,0.053875804,9.4771385e-6,0.056729198,0.21776247,1.2218107,0.88979733,0.5699709,0.2977001,0.10309464,0.0076753497,0.021994293,0.14446801,0.36155254,0.6492411,0.9757191,1.3048822,1.6003293,1.8293877,1.9667265,1.997158,1.9173166,1.7360318,1.4733515,1.1583246,0.825789,0.5125189,0.25315797,0.07638806,0.001757741,0.03752005,0.17972028,0.41263276,0.71050054,1.0403832,1.3658,1.650764,1.8637619,1.9812391,1.9902036,1.8896646,1.6907401,1.4154288,1.0941763,0.76250917,0.45710546,0.21173882,0.053543746,1.4483929e-5,0.057070673,1.5284231,1.2208092,0.88877666,0.56904393,0.2969694,0.10264099,0.0075488687,0.022208989,0.14500022,0.3623433,0.65020305,0.9767458,1.3058602,1.6011503,1.8299611,1.9669888,1.9970801,1.9169072,1.7353363,1.4724466,1.1573105,0.82477784,0.5116225,0.25247538,0.07599485,0.0016973615,0.03779924,0.1803081,0.41346425,0.7114837,1.0414094,1.3667556,1.6515434,1.864279,1.9814365,1.9900599,1.8891952,1.6899972,1.4144944,1.0931538,0.7615117,0.45624328,0.21110731,0.053212702,1.9404362,1.7769542,1.5275509,1.2198075,0.8877561,0.56811744,0.29623944,0.10218823,0.0074234605,0.022424757,0.14553326,0.3631348,0.65116537,0.9777725,1.3068378,1.6019707,1.8305335,1.96725,1.9970012,1.9164968,1.7346399,1.4715412,1.1562961,0.8237668,0.5107266,0.25179362,0.07560265,0.0016381145,0.03807944,0.18089676,0.41429633,0.7124672,1.0424354,1.3677108,1.6523222,1.8647952,1.981633,1.9899149,1.8887249,1.6892536,1.4135596,1.0921313,0.7605145,0.4553817,0.21047664,1.9999046,1.9400866,1.7763072,1.5266783,1.2188054,0.8867357,0.5671914,0.29551017,0.101736486,0.0072990656,0.02264154,0.14606726,0.3639269,0.652128,0.9787992,1.3078151,1.6027904,1.831105,1.9675101,1.9969211,1.9160855,1.7339427,1.4706353,1.1552818,0.822756,0.5098312,0.25111264,0.075211406,0.0015798807,0.038360655,0.18148631,0.41512907,0.7134509,1.0434614,1.3686657,1.6531003,1.8653104,1.9818283,1.9897687,1.8882537,1.688509,1.4126244,1.0911086,0.7595175,1.7940489,1.9494689,1.9998899,1.9397359,1.7756594,1.525805,1.2178032,0.88571537,0.5662658,0.29478168,0.10128564,0.0071757436,0.022859335,0.14660215,0.3647197,0.653091,0.979826,1.308792,1.6036096,1.8316758,1.9677693,1.99684,1.9156733,1.7332448,1.469729,1.1542671,0.8217454,0.5089363,0.2504325,0.074821174,0.0015226603,0.038642883,0.18207675,0.4159624,0.714435,1.0444875,1.3696201,1.6538776,1.8658247,1.9820228,1.9896218,1.8877814,1.6877639,1.4116886,1.0900859,1.5516741,1.7946727,1.9497907,1.9998741,1.9393843,1.7750108,1.5249312,1.2168008,0.8846952,0.5653407,0.29405397,0.10083574,0.007053435,0.023078203,0.14713788,0.36551315,0.6540544,0.9808528,1.3097687,1.604428,1.8322456,1.9680274,1.996758,1.91526,1.7325461,1.468822,1.1532524,0.8207349,0.50804186,0.24975306,0.074431896,0.0014665723,0.038926125,0.18266803,0.41679633,0.7154194,1.0455134,1.3705742,1.6546543,1.866338,1.9822161,1.9894736,1.8873082,1.687018,1.4107525,1.2486625,1.5525305,1.7952957,1.9501115,1.9998573,1.9390317,1.7743614,1.5240567,1.2157981,0.8836751,0.56441605,0.29332697,0.1003868,0.006932199,0.023298085,0.14767456,0.36630726,0.65501815,0.9818796,1.3107449,1.6052458,1.8328145,1.9682845,1.9966748,1.9148457,1.7318466,1.4679147,1.1522374,0.8197247,0.507148,0.24907446,0.07404357,0.0014114976,0.03921038,0.1832602,0.41763085,0.7164041,1.0465393,1.3715279,1.6554303,1.8668506,1.9824083,1.9893246,1.8868341,0.59601414,0.9183192,1.2496572,1.5533862,1.7959179,1.9504313,1.9998394,1.9386781,1.7737112,1.5231818,1.2147952,0.88265514,0.5634918,0.2926007,0.09993875,0.0068119764,0.02351898,0.14821213,0.36710203,0.65598226,0.9829064,1.3117208,1.6060631,1.8333825,1.9685407,1.9965906,1.9144306,1.7311463,1.4670068,1.1512223,0.8187146,0.5062547,0.2483967,0.07365626,0.0013574362,0.039495647,0.18385321,0.41846603,0.717389,1.0475651,1.3724811,1.6562055,1.8673621,1.9825996,1.9891744,0.3191365,0.59695375,0.91934276,1.2506515,1.5542413,1.7965392,1.9507501,1.9998205,1.9383235,1.7730601,1.5223063,1.2137921,0.8816353,0.56256807,0.29187518,0.099491715,0.0066928864,0.023740947,0.1487506,0.3678975,0.6569468,0.98393327,1.3126966,1.6068796,1.8339497,1.9687957,1.9965053,1.9140145,1.7304454,1.4660984,1.150207,0.81770474,0.5053619,0.24771965,0.0732699,0.0013045073,0.039781928,0.18444705,0.4193018,0.71837425,1.0485909,1.3734341,1.6569802,1.8678727,0.011940062,0.11709565,0.319889,0.59789383,0.92036647,1.2516456,1.5550958,1.7971597,1.9510679,1.9998004,1.937968,1.7724082,1.5214303,1.2127888,0.8806156,0.5616448,0.2911504,0.099045634,0.00657475,0.023963869,0.14929003,0.36869365,0.6579116,0.98496014,1.3136718,1.6076956,1.8345159,1.9690497,1.996419,1.9135973,1.7297435,1.4651896,1.1491916,0.81669503,0.50446963,0.24704343,0.0728845,0.0012525916,0.040069222,0.18504179,0.42013818,0.7193599,1.0496167,1.3743865,1.6577541,0.015868425,0.012098849,0.11757833,0.32064223,0.5988344,0.92139024,1.2526393,1.5559497,1.7977793,1.9513848,1.9997795,1.9376113,1.7717557,1.5205536,1.2117852,0.879596,0.560722,0.29042637,0.09860051,0.006457746,0.024187863,0.14983028,0.36949044,0.6588768,0.985987,1.3146468,1.6085107,1.8350813,1.9693027,1.9963317,1.9131793,1.729041,1.4642802,1.1481761,0.8156856,0.5035778,0.24636799,0.07250011,0.0012017488,0.04035753,0.18563735,0.4209752,0.72034574,1.0506424,1.3753386,0.12796718,0.01568669,0.012258589,0.11806196,0.32139623,0.5997753,0.92241406,1.2536328,1.5568031,1.7983981,1.9517007,1.9997573,1.9372538,1.7711022,1.5196764,1.2107813,0.8785766,0.5597996,0.28970313,0.09815627,0.006341696,0.02441293,0.15037143,0.3702879,0.6598424,0.9870139,1.3156215,1.6093254,1.8356459,1.9695547,1.9962432,1.9127603,1.7283378,1.4633704,1.1471604,0.8146763,0.5026866,0.24569339,0.07211667,0.0011519194,0.04064685,0.18623382,0.42181283,0.72133183,0.61780417,0.33591497,0.12746495,0.015506029,0.012419462,0.118546486,0.3221509,0.6007167,0.923438,1.2546262,1.5576558,1.799016,1.9520154,1.9997342,1.9368953,1.7704479,1.5187988,1.2097774,0.8775573,0.5588777,0.2889806,0.09771305,0.006226778,0.02463895,0.15091348,0.371086,0.6608083,0.9880408,1.3165958,1.6101394,1.8362095,1.9698057,1.9961538,1.9123402,1.7276336,1.46246,1.1461445,0.8136672,0.5017959,0.2450195,0.07173425,0.0011031628,0.040937185,0.18683112,0.42265105,0.9409341,0.6168554,0.3351475,0.12696368,0.01532644,0.012581348,0.119031966,0.32290632,0.60165846,0.924462,1.255619,1.558508,1.7996333,1.9523293,1.9997101,1.9365357,1.7697928,1.5179206,1.2087731,0.87653804,0.5579563,0.28825885,0.09727073,0.0061128736,0.024866045,0.15145642,0.37188476,0.6617746,0.9890677,1.3175699,1.6109529,1.8367723,1.9700556,1.9960632,1.9119192,1.7269287,1.4615493,1.1451285,0.8126583,0.5009057,0.2443465,0.07135278,0.001055479,0.041228533,0.18742931,1.2705562,0.939909,0.61590695,0.3343807,0.12646335,0.015147805,0.012744248,0.1195184,0.3236624,0.60260063,0.9254861,1.2566118,1.5593596,1.8002495,1.952642,1.9996848,1.9361752,1.7691368,1.5170418,1.2077687,0.875519,0.5570353,0.2875378,0.096829414,0.0059999824,0.025094151,0.15200031,0.37268424,0.6627412,0.9900946,1.3185434,1.6117655,1.8373342,1.9703045,1.9959717,1.9114974,1.7262231,1.460638,1.1441122,0.81164956,0.50001603,0.24367422,0.07097232,0.0010088086,1.8082299,1.5704403,1.2695675,0.9388839,0.614959,0.33361465,0.12596393,0.014970243,0.01290822,0.12000573,0.32441926,0.6035433,0.9265103,1.2576044,1.5602107,1.8008649,1.9529538,1.9996583,1.9358137,1.7684801,1.5161624,1.206764,0.87450004,0.5561148,0.28681755,0.096388996,0.0058882236,0.025323272,0.15254503,0.37348437,0.6637082,0.9911216,1.3195168,1.6125776,1.8378952,1.9705524,1.9958792,1.9110744,1.7255168,1.4597262,1.143096,0.81064105,0.4991269,0.24300277,0.07059282,1.9563401,1.8076247,1.5695965,1.2685783,0.9378588,0.6140114,0.33284926,0.1254654,0.014793754,0.013073206,0.12049401,0.32517678,0.6044863,0.9275345,1.2585964,1.561061,1.8014795,1.9532647,1.999631,1.9354513,1.7678225,1.5152826,1.205759,0.8734813,0.5551948,0.286098,0.09594959,0.0057774186,0.025553465,0.15309066,0.3742851,0.66467553,0.9921485,1.3204898,1.613389,1.8384553,1.9707993,1.9957855,1.9106506,1.7248095,1.4588139,1.1420795,0.8096328,0.49823827,1.932116,1.9993345,1.9560394,1.8070186,1.568752,1.2675889,0.93683386,0.61306417,0.3320846,0.12496781,0.014618278,0.013239205,0.12098318,0.325935,0.60542977,0.9285588,1.2595885,1.5619109,1.8020933,1.9535744,1.9996026,1.9350877,1.7671642,1.5144022,1.204754,0.87246263,0.5542753,0.28537923,0.09551108,0.005667746,0.025784671,0.15363723,0.37508655,0.6656432,0.99317545,1.3214624,1.6141998,1.8390145,1.9710453,1.9956908,1.9102259,1.7241015,1.4579012,1.1410627,0.8086247,1.7624826,1.9324875,1.9993714,1.9557377,1.8064117,1.5679071,1.2665992,0.93580896,0.6121174,0.33132058,0.12447113,0.014443815,0.013406336,0.12147331,0.326694,0.6063736,0.92958325,1.2605801,1.5627601,1.8027061,1.9538832,1.9995732,1.9347233,1.766505,1.5135212,1.2037487,0.8714441,0.5533562,0.28466123,0.09507358,0.005559087,0.026016891,0.15418464,0.37588865,0.6666113,0.99420244,1.3224347,1.6150098,1.8395729,1.97129,1.995595,1.9098,1.723393,1.456988,1.140046,1.5090412,1.7631466,1.932858,1.9994073,1.955435,1.805804,1.5670614,1.2656093,0.9347842,0.611171,0.33055735,0.123975396,0.014270425,0.013574421,0.121964335,0.32745367,0.6073179,0.93060774,1.2615714,1.5636086,1.8033181,1.954191,1.9995427,1.9343578,1.7658451,1.5126398,1.202743,0.8704257,0.55243754,0.283944,0.09463698,0.005451441,0.026250124,0.15473294,0.3766914,0.6675797,0.9952294,1.3234067,1.6158193,1.8401303,1.9715338,1.9954982,1.9093733,1.7226834,0.867294,1.1996487,1.5099249,1.7638099,1.9332275,1.9994421,1.9551313,1.8051955,1.5662153,1.2646191,0.9337594,0.6102251,0.32979482,0.12348056,0.014098048,0.013743579,0.12245631,0.32821405,0.6082626,0.9316323,1.2625625,1.5644567,1.8039293,1.9544978,1.999511,1.9339913,1.7651843,1.5117576,1.2017373,0.8694074,0.5515194,0.2832275,0.094201386,0.0053448677,0.02648443,0.15528214,0.3774948,0.66854846,0.99625635,1.3243783,1.6166282,1.8406869,1.9717766,1.9954003,1.9089456,0.55053204,0.868312,1.200655,1.510808,1.7644724,1.9335959,1.999476,1.9548267,1.8045859,1.5653684,1.2636285,0.93273467,0.6092795,0.32903296,0.122986674,0.013926744,0.01391381,0.12294924,0.32897514,0.60920775,0.9326569,1.2635534,1.5653042,1.8045397,1.9548035,1.9994783,1.9336239,1.7645227,1.5108751,1.2007314,0.8683893,0.5506017,0.28251177,0.09376669,0.0052393675,0.02671969,0.15583223,0.37829888,0.6695176,0.99728334,1.3253496,1.6174364,1.8412426,1.9720184,0.094168365,0.28317308,0.55144966,0.8693301,1.201661,1.5116906,1.7651341,1.9339635,1.9995086,1.954521,1.8039757,1.5645211,1.2626377,0.93171006,0.60833436,0.3282718,0.122493684,0.013756454,0.014085054,0.12344301,0.3297369,0.6101532,0.93368155,1.2645439,1.566151,1.8051492,1.9551083,1.9994447,1.9332554,1.7638602,1.509992,1.1997252,0.8673713,0.5496845,0.28179675,0.093333006,0.00513494,0.026956022,0.15638328,0.3791036,0.67048705,0.9983103,1.3263205,1.6182439,1.8417974,0.0054433346,0.094603896,0.28388953,0.5523678,0.87034833,1.2026668,1.5125728,1.7657949,1.93433,1.9995403,1.9542143,1.8033645,1.5636731,1.2616467,0.9306855,0.6073896,0.32751137,0.12200165,0.013587236,0.014257312,0.123937786,0.3304994,0.6110991,0.93470633,1.2655342,1.5669973,1.8057578,1.955412,1.9994099,1.9328861,1.7631971,1.5091083,1.1987188,0.8663535,0.5487678,0.2810825,0.092900276,0.0050314665,0.027193367,0.15693516,0.37990892,0.6714568,0.9993373,1.3272911,1.6190507,0.026034534,0.0055508614,0.09504038,0.28460675,0.5532864,0.87136674,1.2036723,1.5134543,1.7664549,1.9346955,1.9995708,1.9539065,1.8027526,1.5628245,1.2606554,0.92966104,0.6064453,0.32675165,0.121510565,0.013419032,0.014430642,0.12443346,0.33126265,0.6120455,0.9357312,1.2665241,1.567843,1.8063657,1.9557147,1.9993742,1.9325157,1.7625331,1.5082241,1.1977122,0.8653358,0.54785156,0.28036904,0.09246844,0.0049291253,0.027431786,0.15748787,0.38071495,0.67242694,1.0003643,0.37514746,0.15367877,0.025802255,0.005659461,0.09547782,0.2853247,0.5542054,0.87238526,1.2046776,1.5143354,1.7671142,1.93506,1.9996004,1.9535979,1.8021398,1.5619754,1.2596637,0.9286366,0.6055014,0.32599264,0.12102038,0.013251901,0.014604986,0.124930024,0.33202654,0.6129923,0.936756,1.2675138,1.5686879,1.8069725,1.9560165,1.9993373,1.9321444,1.7618682,1.5073395,1.1967053,0.86431825,0.5469358,0.27965635,0.09203762,0.0048277974,0.027671158,0.15804154,0.38152164,0.6733974,0.664749,0.37434596,0.15313214,0.025570989,0.005769074,0.09591627,0.2860434,0.55512494,0.8734039,1.2056828,1.5152158,1.7677726,1.9354236,1.999629,1.9532882,1.8015261,1.5611255,1.2586718,0.9276123,0.60455793,0.32523435,0.12053108,0.0130857825,0.014780402,0.12542754,0.33279115,0.6139394,0.937781,1.2685032,1.5695324,1.8075787,1.9563172,1.9992994,1.931772,1.7612026,1.5064541,1.1956983,0.8633008,0.5460205,0.27894437,0.09160775,0.0047275424,0.027911603,0.1585961,0.382329,0.99119955,0.66378164,0.3735451,0.15258646,0.025340736,0.00587976],"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/vercosf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/medium_negative.json
new file mode 100644
index 000000000000..2b744c672a10
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/medium_negative.json
@@ -0,0 +1 @@
+{"expected":[2.0,1.9798498,1.9202023,1.823462,1.6935284,1.5356393,1.3561015,1.1622612,0.9618802,0.7630358,0.5737432,0.4016329,0.25364238,0.13573712,0.052669764,0.0077887774,0.0029032826,0.038210213,0.11228627,0.22214562,0.36335987,0.53023666,0.7160493,0.91330796,1.114061,1.3102164,1.4938672,1.6576104,1.7948456,1.9000412,1.9689566,1.9988139,1.9884095,1.938163,1.8500996,1.7277691,1.5761029,1.4012141,1.2101526,1.01062,0.81065935,0.61833084,0.4413873,0.28696102,0.161277,0.06940138,0.015037715,0.0003772974,0.02601111,0.090905845,0.19244564,0.32658267,0.48782873,0.6697201,0.8649249,1.0655745,1.2635808,1.4509623,1.6201658,1.7643708,1.8777645,1.9557759,1.9952605,1.9946268,1.9539001,1.8747224,1.7602851,1.615201,1.4453187,1.2574857,1.0592737,0.8586724,0.6637679,0.4824167,0.32192904,0.18877399,0.08831906,0.02461344,0.00022506714,0.016137123,0.07170808,0.164698,0.2913584,0.4465838,0.62411714,0.816802,1.0168716,1.2162609,1.4069331,1.5812018,1.7320428,1.8533754,1.940309,1.9893394,1.9984899,1.967392,1.897272,1.7909989,1.6528412,1.4883678,1.3042086,1.1077869,0.90702033,0.71000177,0.52467287,0.35850412,0.21819371,0.10939747,0.03650093,0.0024424791,0.00859499,0.054710448,0.13893008,0.25785887,0.406703,0.5794625,0.76917374,0.9681895,1.1684874,1.3619937,1.5409083,1.698019,1.8269932,1.9226317,1.9810793,1.9999803,1.9785726,1.9177192,1.8198731,1.6889783,1.5303112,1.3502676,1.1561049,0.9556497,0.7569822,0.5681106,0.3966483,0.24950665,0.13261706,0.050691128,0.0070241094,0.0034025311,0.03995323,0.115202904,0.22611827,0.36822832,0.53580475,0.7220926,0.9195828,1.1203145,1.3161964,1.4993327,1.6623411,1.7986509,1.9027675,1.9704942,1.9991007,1.987434,1.9359645,1.8467667,1.7234364,1.5709445,1.3954383,1.2039922,1.0043234,0.8044802,0.6125183,0.43617558,0.2825603,0.15786463,0.06711495,0.013969302,0.0005700588,0.027457237,0.093547046,0.19617546,0.3312056,0.49319446,0.6756124,0.87110615,1.0717956,1.269591,1.4565194,1.6250455,1.7683766,1.8807638,1.9576087,1.9958531,1.9939551,1.9519913,1.8716534,1.7561796,1.6102247,1.4396719,1.2513962,1.0529867,0.85244155,0.6578443,0.47703922,0.31731433,0.18510813,0.085749745,0.023244321,0.00011134148,0.01728326,0.07406801,0.16817647,0.29581535,0.45183945,0.6299596,0.8229959,1.0231671,1.2224045,1.4126768,1.5863144,1.7363181,1.856641,1.9424334,1.9902368,1.9981242,1.9657779,1.8945016,1.7871685,1.6481049,1.4829167,1.2982625,1.1015854,0.9008134,0.7040396,0.5191958,0.3536864,0.21428299,0.10655147,0.034834266,0.0020223856,0.009438455,0.056783438,0.14214897,0.26209402,0.41178358,0.58518386,0.77530515,0.9744837,1.1746908,1.3678563,1.5461936,1.7025143,1.8305169,1.9250419,1.9822791,1.999921,1.9772568,1.9151998,1.8162516,1.6844008,1.5249623,1.3443627,1.1498822,0.94935995,0.750879,0.5624399,0.3916387,0.24536014,0.12950069,0.048730552,0.0063055754,0.0039358735,0.041716933,0.118125856,0.23008263,0.3730743,0.541337,0.72808814,0.9257999,1.1265632,1.3221639,1.5047784,1.6670456,1.8024244,1.9054581,1.9719932,1.9993479,1.9864194,1.9337288,1.8434002,1.7190747,1.5657636,1.3896469,1.1978238,0.9980265,0.7983088,0.6067211,0.4309863,0.27818805,0.15448564,0.06486547,0.012940049,0.00080245733,0.02894193,0.09622419,0.19993716,0.33590025,0.4986328,0.6815751,0.877353,1.0780747,1.2756493,1.4621127,1.6299484,1.7723913,1.8836997,1.9593866,1.9964011,1.9932512,1.950064,1.8685802,1.7520845,1.6052725,1.4340626,1.2452966,1.0466977,0.84621656,0.6519344,0.47168243,0.31272674,0.18147457,0.08321673,0.021913946,3.71933e-5,0.01846838,0.07646459,0.17168796,0.30030012,0.45711678,0.6358168,0.8291968,1.0294617,1.2285392,1.4184043,1.5914037,1.7405641,1.8598727,1.9445202,1.9910948,1.9977189,1.9641255,1.8916688,1.7832694,1.6432967,1.4773933,1.2922463,1.095319,0.8945496,0.6980307,0.51368415,0.3489406,0.21044093,0.10376793,0.033221543,0.0016453862,0.010312438,0.058873177,0.14537019,0.26635838,0.41688752,0.5909216,0.7814454,0.980779,1.1808873,1.3737043,1.5514574,1.7069817,1.8340077,1.9274156,1.9834397,1.999822,1.9759021,1.9126439,1.8125978,1.6797962,1.5195925,1.3384442,1.1436535,0.9430722,0.7447856,0.55678654,0.38665318,0.24124348,0.12641883,0.046807766,0.0056192875,0.0045137405,0.04353571,0.12111217,0.23411614,0.37799245,0.5469415,0.73415315,0.93208086,1.1327463,1.328061,1.5101516,1.6716783,1.80613,1.9080871,1.9734397,1.9995537,1.9853759,1.9314562,1.8400004,1.7146845,1.5605602,1.3838401,1.1916475,0.99172974,0.7921454,0.6009395,0.42581952,0.27384442,0.15114021,0.062653124,0.011949897,0.0010744929,0.030465126,0.09893721,0.20373058,0.34062117,0.5040909,0.6875505,0.8836047,1.0843508,1.2816967,1.4676876,1.6348262,1.7763755,1.8866293,1.9611437,1.9969151,1.9925013,1.9480802,1.8654425,1.7479196,1.6002482,1.4283813,1.2392465,1.0404679,0.84005797,0.6460953,0.46639824,0.30821043,0.17790824,0.08074409,0.020634651,2.682209e-6,0.019692421,0.078897774,0.17523229,0.30481267,0.4624157,0.6416884,0.83540446,1.0357553,1.2346648,1.4241152,1.5964696,1.7447808,1.8630702,1.9465698,1.9919137,1.9972742,1.962435,1.8888006,1.7793392,1.638463,1.4718509,1.2862186,1.0890491,0.88829,0.6920339,0.5081917,0.34417403,0.20659238,0.1009925,0.031631112,0.0013041496,0.011233985,0.061020494,0.14865673,0.2706101,0.42196476,0.5966197,0.78753465,0.987014,1.1870167,1.3794811,1.5566486,1.711378,1.8374655,1.9297523,1.9845614,1.9996834,1.9745086,1.9100521,1.8089118,1.6751647,1.5142021,1.3325124,1.1374192,0.9367867,0.7387024,0.5511508,0.38169205,0.23715699,0.12337166,0.04492271,0.0049723983,0.005131066,0.045392394,0.12413335,0.23818004,0.38293523,0.552564,0.74022865,0.9383645,1.1389848,1.3340027,1.5155573,1.67633,1.8098402,1.9107062,1.9748621,1.9997219,1.9842834,1.9291692,1.8366005,1.710309,1.5553854,1.3780744,1.1855236,0.9854943,0.78604984,0.5952295,0.42067552,0.26952952,0.14782846,0.060477912,0.010998964,0.001386106,0.032026768,0.10168594,0.20755559,0.34536827,0.50956875,0.69353825,0.88986105,1.0906235,1.287733,1.4732441,1.639679,1.7803288,1.889524,1.962863,1.9973896,1.9917119,1.9460588,1.8622707,1.743725,1.5952001,1.422683,1.2331278,1.0341754,0.8338454,0.640213,0.46108335,0.3036772,0.17433941,0.07828349,0.019381464,7.6293945e-6,0.020942926,0.08134341,0.17877448,0.30930865,0.4676842,0.6475171,0.8415584,1.0420474,1.2407812,1.4298092,1.6015118,1.7489679,1.8662336,1.9485817,1.9926932,1.9967897,1.9607062,1.8858972,1.7753781,1.633604,1.4662898,1.2801795,1.0827755,0.8820348,0.6860492,0.5027188,0.3394335,0.2027753,0.09825277,0.030079126,0.0010024309,0.012194812,0.06320506,0.15197694,0.27493215,0.4271145,0.60238945,0.79369193,0.9933105,1.1931988,1.3852993,1.5618687,1.7157893,1.840857,1.9320302,1.9856339,1.999507,1.9730906,1.9074497,1.8052299,1.6705515,1.5088439,1.3265672,1.1311793,0.9305038,0.73262954,0.5455328,0.37675542,0.23310065,0.12035918,0.04307556,0.0043649673,0.005787909,0.047286928,0.12718928,0.24227417,0.38790256,0.5582042,0.7463144,0.94465053,1.1452178,1.3399314,1.5209424,1.6809547,1.813518,1.9132891,1.9762458,1.9998505,1.9831519,1.9268231,1.8331344,1.7058628,1.550138,1.3722376,1.1793324,0.97919846,0.77990305,0.58947957,0.415604,0.26528507,0.1445821,0.058360457,0.010095835,0.0017337203,0.03361112,0.10444313,0.21137446,0.3501413,0.515066,0.6995381,0.89612174,1.0968926,1.2937578,1.4787817,1.6445062,1.7842512,1.8923833,1.9645439,1.9978244,1.9908831,1.9439999,1.8590646,1.7395009,1.5901283,1.416968,1.2269999,1.0278816,0.8276394,0.63434494,0.45578986,0.29917163,0.17080331,0.07585949,0.018167198,5.209446e-5,0.022244275,0.08384925,0.18238372,0.31387585,0.47302532,0.65341675,0.8477788,1.0482768,1.2468288,1.4354312,1.6064817,1.7530853,1.8693323,1.9505372,1.9934263,1.9962711,1.9589393,1.8829587,1.7713864,1.6287199,1.4607102,1.2741294,1.0764986,0.8757843,0.68007696,0.49726558,0.33471918,0.19898981,0.09554875,0.028565586,0.0007404089,0.013194799,0.06542671,0.15533084,0.27928305,0.43228692,0.60817504,0.7998574,0.9996073,1.1993731,1.3911023,1.5670664,1.7201724,1.8442485,1.9342935,1.9866778,1.9992895,1.9716206,1.904786,1.80148,1.665867,1.5034131,1.320667,1.1249949,0.9242844,0.7266259,0.539987,0.37189096,0.22911364,0.1174103,0.041283667,0.0037969947,0.0064840913,0.04921925,0.13027978,0.24639833,0.3928941,0.56386197,0.7524103,0.9509388,1.1514449,1.3458464,1.5263071,1.6855526,1.8171638,1.9158356,1.9775907,1.9999397,1.9819815,1.9244403,1.8296354,1.7013884,1.5448687,1.3663858,1.1731341,0.97290343,0.77376497,0.58374596,0.4105059,0.261028,0.14133763,0.056259513,0.009222984,0.0021241307,0.035249114,0.10726261,0.21526188,0.35489345,0.5205289,0.70549166,0.9023258,1.1030972,1.2997127,1.484247,1.6492616,1.7881048,1.8952072,1.9661868,1.9982197,1.9900151,1.9419036,1.8558245,1.7352475,1.5850332,1.4112364,1.220863,1.0215867,0.8214402,0.62849146,0.45051795,0.29469377,0.1673001,0.07347208,0.016991854,0.00013613701,0.023584366,0.08639139,0.18602544,0.3184703,0.4783873,0.6593301,0.8540053,1.0545653,1.2529259,1.4410911,1.6114762,1.7572131,1.8724272,1.9524741,1.9941275,1.995708,1.9571521,1.8800141,1.7674031,1.6238585,1.4551666,1.2681272,1.0702796,0.8695992,0.67417514,0.49183238,0.33003122,0.19523609,0.09288061,0.02709055,0.00051790476,0.014233887,0.067685485,0.15871817,0.28366244,0.43748188,0.6139761,0.80603075,1.0059042,1.2055396,1.3968898,1.5722417,1.7245268,1.8476067,1.9365199,1.9876826,1.9990324,1.9701117,1.9020865,1.7976985,1.6611559,1.4979624,1.3146963,1.118745,0.9180072,0.7205744,0.5344051,0.36700374,0.22511804,0.11446738,0.039512098,0.003273487,0.0072124004,0.05116999,0.13337433,0.25051194,0.39786094,0.56948185,0.7584567,0.95716804,1.1576662,1.3517479,1.5316508,1.6901232,1.8207772,1.918346,1.9788969,1.999989,1.980772,1.9220208,1.8261034,1.6968863,1.539578,1.3605196,1.166929,0.9666095,0.76763594,0.57802886,0.4054312,0.2568003,0.13812733,0.05419594,0.008389413,0.0025541186,0.036925316,0.110117495,0.21918035,0.3597176,0.5260643,0.71151507,0.9085944,1.1093583,1.3057141,1.4897467,1.654038,1.7919651,1.8979688,1.9677758,1.9985723,1.9891169,1.9397907,1.8525822,1.7310066,1.5799644,1.4054885,1.2147173,1.0152909,0.81524813,0.62265265,0.44526786,0.29024392,0.16382992,0.071121395,0.015855491,0.00025987625,0.0249632,0.08896977,0.18969941,0.3230918,0.48376995,0.6652571,0.8602375,1.0608517,1.2590129,1.4467335,1.6164465,1.761311,1.8754873,1.9543734,1.9947891,1.9951055,1.9553097,1.877006,1.7633506,1.618925,1.4495509,1.2620556,1.063997,0.86335874,0.6682284,0.4864716,0.32541484,0.1915502,0.09027374,0.025667846,0.00033670664,0.015301406,0.06995875,0.16210556,0.28807026,0.44269913,0.61979246,0.8122118,1.0122007,1.2116978,1.4026616,1.5773942,1.7288525,1.850931,1.938709,1.9886483,1.9987357,1.9685645,1.8993511,1.7938855,1.6564186,1.492492,1.3087132,1.1124904,0.9117332,0.7145339,0.52884173,0.36214155,0.22115314,0.11155963,0.037778556,0.0027841926,0.007986963,0.053177238,0.13653338,0.25469542,0.40290022,0.5751738,0.76457185,0.9634599,1.1638209,1.3575783,1.536922,1.6946225,1.8243234,1.9207962,1.9801521,1.9999988,1.979536,1.9195647,1.8225386,1.6923565,1.5342658,1.3546392,1.1607172,0.96031684,0.7615161,0.57232845,0.40038007,0.25260198,0.13495111,0.05216986,0.007595122,0.0030236244,0.038639724,0.113007724,0.22312981,0.36456716,0.53161836,0.71754986,0.9148667,1.1156152,1.3117034,1.495227,1.6587882,1.795794,1.9007219,1.9693422,1.9988889,1.9881709,1.9376202,1.8492746,1.7266953,1.5748234,1.3997805,1.2086227,1.0090555,0.80912334,0.6168852,0.4400903,0.28586495,0.16042602,0.068829834,0.01475817,0.00042325258,0.026380718,0.091584265,0.19340545,0.32774007,0.4891731,0.6711973,0.8664753,1.0671356,1.2650898,1.4523582,1.6213925,1.7653787,1.8785129,1.9562348,1.9954114,1.9944636,1.9534295,1.8739631,1.7592678,1.613967,1.4439173,1.2559736,1.0577118,0.85712373,0.66229486,0.48107868,0.32077992,0.18786019,0.0876773,0.02426964,0.00019311905,0.016418278,0.07229102,0.16555917,0.29246318,0.4478876,0.6255674,0.8183403,1.0184358,1.2177882,1.4083617,1.5824742,1.7331078,1.8542218,1.940861,1.9895748,1.9983993,1.9669789,1.8965802,1.7900407,1.6516552,1.4870019,1.3027178,1.1062313,0.9054627,0.7085048,0.52329695,0.3573047,0.21721911,0.10868704,0.03608322,0.002334416,0.008800864,0.055222034,0.13972664,0.2589084,0.40796316,0.58088255,0.77069634,0.96975327,1.1700294,1.3634517,1.5422235,1.6991386,1.8278718,1.923234,1.981381,1.9999692,1.9782493,1.9170966,1.8189764,1.6878436,1.5289842,1.3488017,1.1545594,0.9540867,0.75546485,0.566645,0.39535272,0.24843335,0.13180923,0.05018139,0.0068401694,0.0035327077,0.04039228,0.11593306,0.22711009,0.36944187,0.5371911,0.72359586,0.92114234,1.1218675,1.3176804,1.5006876,1.6635125,1.7995914,1.9034394,1.9708703,1.9991658,1.9871855,1.9354124,1.8459334,1.7223552,1.5696594,1.3940008,1.2024603,1.0027589,0.8029461,0.6110765,0.43488413,0.2814713,0.15702194,0.06655258,0.013709962,0.00062412024,0.027822554,0.094208896,0.19710714,0.33236963,0.49454385,0.67709273,0.87265784,1.073417,1.2711561,1.457965,1.6263137,1.769416,1.8815036,1.9580584,1.9959942,1.9937822,1.9515113,1.8708856,1.7551548,1.6089845,1.438266,1.2498815,1.0514244,0.85089433,0.65637463,0.47570628,0.31617194,0.18420231,0.08511704,0.022910118,8.922815e-5,0.017574072,0.07466,0.16904587,0.29692703,0.45314866,0.6314136,0.82453597,1.0247312,1.2239295,1.4141015,1.5875812,1.7373757,1.8574471,1.9429554,1.9904536,1.9980272,1.9653709,1.893801,1.7862025,1.6469127,1.4815462,1.2967105,1.0999681,0.89919597,0.70248723,0.5177711,0.3524933,0.21331614,0.1058498,0.034426093,0.0019241571,0.009654105,0.057304323,0.14295405,0.2631508,0.41304958,0.58660793,0.77682996,0.97604775,1.1762311,1.3693107,1.5475036,1.7036269,1.8313874,1.9256351,1.9825711,1.9999001,1.9769237,1.9145682,1.8153467,1.6832592,1.52363,1.3428935,1.1483351,0.9477975,0.749364,0.5610336,0.39039773,0.24433452,0.12873173,0.048249304,0.0061314106,0.0040757656,0.04216528,0.118864596,0.231121,0.3743416,0.5427821,0.7296529,0.92742115,1.128115,1.3236446,1.5061283,1.6682103,1.8033571,1.906121,1.9723597,1.9994031,1.9861612,1.9331677,1.8425586,1.7179866,1.5644729,1.3882055,1.1962899,0.996462,0.79677665,0.6052831,0.42970037,0.2771061,0.1536513,0.06431234,0.012690365,0.0008663535,0.029316783,0.09689498,0.20087677,0.33707076,0.49998707,0.6830586,0.8789059,1.0796344,1.2771529,1.4634995,1.6311628,1.7733841,1.8844309,1.9598267,1.9965324,1.9930685,1.9495554,1.8677735,1.7510121,1.6039778,1.4325975,1.2437795,1.0451349,0.84467083,0.65046805,0.47035474,0.3115911,0.1805768,0.082593024,0.021589398,2.4914742e-5,0.018768907,0.077065766,0.17256552,0.30141878,0.45843136,0.6372743,0.83073854,1.0310256,1.230062,1.4198248,1.5926647,1.7416146,1.8606703,1.9450331,1.991302,1.9976121,1.9637091,1.8909595,1.7822957,1.6420982,1.476018,1.2907497,1.0937616,0.8929939,0.69653964,0.51231766,0.34775388,0.20948178,0.10307503,0.032822788,0.0015535355,0.010546565,0.059423923,0.14621538,0.26742244,0.41815925,0.59234977,0.78297234,0.98234326,1.1824259,1.375155,1.5527619,1.7080872,1.83487,1.9279996,1.9837221,1.9997913,1.9755595,1.9120033,1.811685,1.678648,1.518255,1.3369716,1.142105,0.94151026,0.7432732,0.55538464,0.38541824,0.24022532,0.12565845,0.046335876,0.005454898,0.0046634674,0.043993473,0.12185961,0.23512304,0.37921828,0.54833686,0.7356617,0.93364185,1.1342969,1.3295386,1.5114965,1.6728365,1.807091,1.9087667,1.9738107,1.9996009,1.9850976,1.9308858,1.8391504,1.7135894,1.559264,1.3823949,1.1901118,0.99016523,0.7906152,0.5995054,0.42453927,0.27276963,0.15031421,0.062109172,0.011709988,0.0011482239,0.030849576,0.099616826,0.20467806,0.34179825,0.5054501,0.6890371,0.8851588,1.0859096,1.2831975,1.46907,1.6360344,1.7773607,1.8873519,1.9615746,1.997039,1.9923049,1.9475718,1.8646424,1.7468598,1.5989717,1.4269395,1.2376975,1.038874,0.83848363,0.64460385,0.46504992,0.30705947,0.17700112,0.080117345,0.020313501,2.9802322e-7,0.019996524,0.079496145,0.17610073,0.3059162,0.46370983,0.6431495,0.83694786,1.0373188,1.2361854,1.4255315,1.5977247,1.7458239,1.8638594,1.9470732,1.992111,1.9971573,1.962009,1.8880825,1.7783579,1.637258,1.4704709,1.2847192,1.0874906,0.8867354,0.69054574,0.50683004,0.34299374,0.2056225,0.10029513,0.031234324,0.0012239814,0.011473715,0.061570346,0.14949459,0.27170217,0.42326707,0.59807974,0.78909355,0.98860896,1.1885835,1.3809563,1.557973,1.7124982,1.8383029,1.9303161,1.9848287,1.9996436,1.9741633,1.9094151,1.8080089,1.6740098,1.5128596,1.3310363,1.1358693,0.93522537,0.7371925,0.54975325,0.38046318,0.23614627,0.12261993,0.044460237,0.004817784,0.0052906275,0.045859575,0.12488943,0.23919445,0.3841672,0.5539638,0.74173975,0.93992615,1.140534,1.3354771,1.5169234,1.6775041,1.8107748,1.9113638,1.9752163,1.9997582,1.9840006,1.9285784,1.8357258,1.7091854,1.5540583,1.3765973,1.1839559,0.9838995,0.78449196,0.59377146,0.4194258,0.26848274,0.14702672,0.05995363,0.0107732415,0.0014680028,0.032420754,0.102374434,0.20851088,0.34655178,0.5109328,0.6950279,0.8914162,1.0921814,1.289231,1.4746218,1.6408808,1.7813063,1.8902377,1.9632843,1.9975013,1.9915096,1.9455507,1.8614773,1.7426782,1.5939422,1.4212645,1.2316061,1.0325812,0.8322727,0.63872516,0.45974046,0.30253327,0.17344058,0.077665985,0.019070208,1.513958e-5,0.021268904,0.081974745,0.17968565,0.310463,0.46903515,0.64901024,0.8431335,1.0435799,1.2422698,1.4311938,1.6027367,1.7499835,1.8669989,1.9490662,1.9928808,1.9966632,1.9602708,1.8851703,1.7743891,1.6323929,1.4649051,1.2786773,1.0812162,0.8804813,0.6845641,0.501362,0.3382597,0.20183176,0.09757757,0.029699445,0.00093364716,0.012439609,0.063753605,0.15280712,0.2760105,0.42839754,0.6038535,0.7952529,0.9949056,1.1947635,1.3867707,1.5631874,1.7169023,1.8417193,1.932607,1.985902,1.9994557,1.9727219,1.9067783,1.8042829,1.6693674,1.5074701,1.3251169,1.1296585,0.92897356,0.73115164,0.5441669,0.37555647,0.2320975,0.11961609,0.042622447,0.0042201877,0.005957186,0.047763526,0.12795395,0.24329609,0.3891405,0.55960834,0.7478281,0.94621277,1.1467656,1.3414023,1.5222774,1.6820997,1.8144269,1.9139252,1.9765835,1.9998764,1.9828649,1.9262345,1.8322682,1.704732,1.5488052,1.3707566,1.177763,0.9776038,0.7783474,0.5880257,0.4143104,0.2642039,0.14375699,0.05782473,0.009871066,0.0018288493,0.03402239,0.10515398,0.21235627,0.351308,0.5164082,0.70100164,0.8976476,1.0984193,1.2952237,1.4801548,1.6457016,1.7852209,1.8930882,1.9649557,1.9979264,1.9906712,1.9434825,1.8582628,1.7384467,1.5888646,1.4155455,1.2254759,1.0263176,0.8260985,0.6328892,0.45447797,0.29805642,0.1699298,0.075262845,0.017871559,6.92606e-5,0.022580087,0.08448976,0.18330318,0.31503713,0.47438157,0.6549134,0.84935546,1.0498699,1.2483742,1.4368665,1.6077492,1.7541337,1.8701196,1.9510314,1.9936076,1.9961321,1.9585032,1.8822374,1.7704092,1.6275263,1.4593481,1.2726538,1.074969,0.874232,0.67859507,0.49591374,0.33355188,0.1980542,0.09488243,0.0281955,0.0006814003,0.013449311,0.06598449,0.15616935,0.2803685,0.43357557,0.60961497,0.8013905,1.0011718,1.200906,1.3925418,1.5683544,1.721257,1.8450861,1.9348502,1.9869361,1.9992281,1.971242,1.9041055,1.8005252,1.6646761,1.5020342,1.3191557,1.1234123,0.922694,0.725092,0.53857136,0.37065065,0.22809863,0.11666155,0.040831327,0.0036646128,0.0066596866,0.04969567,0.13103795,0.24740756,0.39411378,0.56527036,0.7539264,0.95250154,1.1529913,1.3473141,1.5276368,1.6866908,1.8180647,1.9164629,1.9779189,1.9999557,1.9816847,1.9238425,1.8287609,1.7002723,1.5435562,1.3649297,1.171593,0.97133946,0.7722413,0.5823239,0.4092428,0.25997484,0.14052123,0.055733263,0.00900811,0.002229333,0.0356701,0.10798246,0.21625155,0.35611308,0.5219293,0.70701635,0.9039134,1.1046836,1.301234,1.485642,1.650474,1.7890856,1.8958898,1.9665811,1.9983101,1.9897977,1.9413872,1.85503,1.7341862,1.5837636,1.4098097,1.2193367,1.0200225,0.81990105,0.6270393,0.44921148,0.29358554,0.16643476,0.07288456,0.01670587,0.00016319752,0.023923397,0.08702862,0.18693525,0.31961608,0.4797228,0.66080153,0.8555532,1.0561274,1.2544392,1.442522,1.6127377,1.758254,1.8732057,1.9529588,1.9942988,1.9955592,1.9566891,1.8792553,1.7663794,1.6226112,1.4537457,1.2665901,1.0686884,0.8680179,0.6726675,0.49051178,0.32889313,0.19432646,0.09223604,0.026737034,0.0004697442,0.014498115,0.068252444,0.15956497,0.284755,0.43877614,0.61541986,0.8075658,1.0074687,1.2070705,1.3983254,1.573524,1.7256043,1.8484358,1.9370673,1.9879262,1.9989624,1.9697309,1.9014101,1.7967541,1.6599813,1.496605,1.3132108,1.1171914,0.9164176,0.71904325,0.5329941,0.36576968,0.22411078,0.11372751,0.039069355,0.003145814,0.007404864,0.051674902,0.1341713,0.25156885,0.39913523,0.5709221,0.7600049,0.9587617,1.1591808,1.3531835,1.5329494,1.6912326,1.8216525,1.9189521,1.9792154,1.9999951,1.9804655,1.9214139,1.8252208,1.6957633,1.53826,1.3590598,1.1653862,0.9650458,0.7661145,0.5766109,0.40417397,0.2557544,0.13733494,0.053689003,0.008188367,0.0026670694,0.037347734,0.11083233,0.22015876,0.3609202,0.5274694,0.7130426,0.91018295,1.1109437,1.3072324,1.4911368,1.6552436,1.792938,1.8986695,1.9681761,1.9986563,1.9888809,1.9392445,1.8517475,1.7299173,1.5786643,1.4040858,1.2132188,1.013757,0.81374073,0.6212325,0.44399214,0.28916413,0.16297281,0.07054305,0.015579224,0.00029677153,0.025311828,0.089616,0.1906172,0.3242442,0.48511058,0.6667318,0.86178684,1.0624132,1.2605238,1.4481328,1.6176777,1.7623246,1.8762424,1.9548395,1.9949474,1.9949497,1.9548461,1.8762531,1.7623192,1.6176713,1.4481255,1.2605159,1.0624051,0.8617788,0.6667241,0.4851036,0.32423824,0.19061244,0.0896126,0.02530998,0.0002965927,0.015580654,0.07054609,0.16297728,0.2891484,0.44397354,0.62121177,0.8137188,1.0137347,1.2131969,1.4040933,1.578671,1.7299228,1.8517518,1.9392473,1.9888822,1.9986558,1.9681742,1.8986659,1.7929331,1.6552374,1.4911296,1.3072248,1.1109357,0.91017485,0.71303487,0.52746224,0.36093742,0.22017276,0.110842586,0.037353814,0.0026687384,0.008185506,0.053691685,0.13733906,0.25575984,0.40418047,0.5766183,0.7661224,0.965054,1.1653942,1.3590674,1.5382669,1.6957692,1.8252254,1.9214171,1.9804671,1.999995,1.9792137,1.9189609,1.8216653,1.6912488,1.5329684,1.3532044,1.1592029,0.9587536,0.75999695,0.57091475,0.39912874,0.25156343,0.13416725,0.05167228,0.0074038506,0.0031464696,0.03907162,0.113731265,0.22411591,0.365776,0.5330013,0.719051,0.9164257,1.1171691,1.3131896,1.4965856,1.6599644,1.7967405,1.9014004,1.9697329,1.9989628,1.9879249,1.9370644,1.8484315,1.7255986,1.5735173,1.3983179,1.2070625,1.0074606,0.8075578,0.61541235,0.4387694,0.28474933,0.15956056,0.068249464,0.014496744,0.00046902895,0.026731908,0.092226624,0.19431323,0.32887655,0.49049246,0.67267525,0.868026,1.0686965,1.266598,1.453753,1.6226175,1.7663846,1.8792592,1.9566915,1.9955599,1.994298,1.9529564,1.8732016,1.7582487,1.6127312,1.4425148,1.2544609,1.0561498,0.8555754,0.66082263,0.47974187,0.31963247,0.18693054,0.087025344,0.023921609,0.00016307831,0.01670736,0.07288766,0.1664393,0.29359132,0.4492182,0.6270469,0.8199091,1.0200306,1.2193447,1.4098172,1.5837702,1.7341917,1.8550184,1.9413797,1.9897945,1.9983114,1.9665868,1.8958998,1.7890806,1.6504678,1.4856348,1.3012264,1.1046755,0.9039053,0.7070086,0.5219222,0.35610682,0.21624649,0.10797876,0.035667956,0.0022287965,0.009009182,0.055735886,0.1405254,0.25995976,0.40922475,0.5823036,0.7722195,0.9713171,1.1715709,1.3649373,1.5435631,1.7002782,1.8287654,1.9238456,1.9816861,1.9999554,1.9779172,1.9164596,1.8180599,1.6866848,1.5276299,1.3473065,1.1529832,0.9524934,0.7539185,0.56526303,0.39413154,0.24742228,0.13104904,0.049702644,0.0066622496,0.0036627054,0.040833592,0.11666536,0.22810382,0.37065697,0.53857857,0.7250998,0.92270213,1.1234202,1.3191634,1.5020413,1.6646821,1.80053,1.904109,1.9712439,1.9992285,1.9869347,1.9348581,1.845098,1.7212725,1.5683727,1.3925624,1.200928,1.0011637,0.80138254,0.60960746,0.4335689,0.28036284,0.15616494,0.06598157,0.013448,0.0006816983,0.028197408,0.094885886,0.19805902,0.33355796,0.49592078,0.67860276,0.87424004,1.0749466,1.2726322,1.4593282,1.6275089,1.770395,1.882227,1.9585054,1.9961329,1.9936068,1.9510288,1.8701155,1.7541283,1.6077428,1.4368593,1.2483664,1.0498618,0.8493475,0.6549058,0.47437465,0.31503123,0.18329847,0.084486485,0.022578359,6.9499016e-5,0.017867327,0.07525432,0.16991735,0.29804045,0.4544592,0.6328968,0.8261065,1.0263257,1.2254839,1.4155529,1.588871,1.7384522,1.8582668,1.9434853,1.9906722,1.9979258,1.9649535,1.8930845,1.7852159,1.6456954,1.4801476,1.2952452,1.0984416,0.89766985,0.701023,0.51642776,0.35132504,0.21235126,0.10515034,0.034020305,0.0018283725,0.009872198,0.057827473,0.14376122,0.26420945,0.41431695,0.5880331,0.7783553,0.9776119,1.177771,1.3707643,1.5488122,1.7047377,1.8322558,1.926226,1.9828607,1.9998767,1.9765884,1.9139342,1.8144222,1.6820937,1.5222704,1.3413947,1.1467575,0.94620466,0.74782026,0.559601,0.38913405,0.24329072,0.12794995,0.047761023,0.005956292,0.004220903,0.04262483,0.119619966,0.23210275,0.375539,0.54414696,0.7311301,0.9289512,1.1296363,1.3250958,1.507477,1.6693735,1.8042878,1.9067817,1.9727238,1.9994559,1.9859006,1.9326041,1.8417149,1.7168967,1.5631807,1.3867632,1.1947556,0.9948974,0.79524493,0.6038461,0.4284159,0.27602595,0.15281904,0.06376147,0.012443125,0.0009326935,0.029701412,0.09758103,0.2018367,0.33826584,0.50136906,0.68457186,0.8804894,1.0812243,1.2786851,1.4649123,1.6323991,1.7743943,1.885174,1.960273,1.9966638,1.9928797,1.9490733,1.8670101,1.7499983,1.6027545,1.431214,1.2422915,1.0435718,0.84312546,0.6490026,0.4690283,0.3104571,0.179681,0.081971526,0.021267235,1.5079975e-5,0.019071817,0.07766914,0.17344517,0.3025391,0.4597473,0.6387328,0.83228076,1.0325893,1.2315843,1.4212443,1.593924,1.7426631,1.8614659,1.9455435,1.9915106,1.9975007,1.963282,1.890234,1.7813011,1.6408745,1.4746146,1.2892232,1.0921733,0.89140815,0.69502014,0.51092577,0.34654564,0.20850587,0.10237086,0.03241867,0.0014691949,0.010769963,0.059946,0.1470151,0.2684675,0.41940755,0.59377885,0.7844999,0.9839076,1.183964,1.3766048,1.554065,1.7091911,1.8357302,1.9285814,1.984002,1.999758,1.9752145,1.9113605,1.81077,1.6774981,1.5169164,1.3354981,1.1405562,0.93994844,0.7417614,0.5539838,0.38418478,0.23918921,0.1248855,0.04585713,0.005289793,0.0048186183,0.04446262,0.1226238,0.23615152,0.38046956,0.5497605,0.7372004,0.93523353,1.1358774,1.3310441,1.5128666,1.6740158,1.8079957,1.9094058,1.9741583,1.9996431,1.9848326,1.9303243,1.8382984,1.7124925,1.5579662,1.3809488,1.1885755,0.9886008,0.7890856,0.5980723,0.4232604,0.27169663,0.1494903,0.061567545,0.011472464,0.0012243986,0.03123635,0.10029864,0.20562744,0.34297687,0.50681055,0.69052446,0.88671315,1.0874683,1.2846978,1.470478,1.6372644,1.778363,1.8880862,1.9620111,1.997158,1.99211,1.9470706,1.8638554,1.7458185,1.5977181,1.4255241,1.2361774,1.0373106,0.8369398,0.64314187,0.46372873,0.30593228,0.17611337,0.07950485,0.020000994,2.9802322e-7,0.02031517,0.08012056,0.17700571,0.30706537,0.46505678,0.6446115,0.8384917,1.0388821,1.2377053,1.4269468,1.5989783,1.7468653,1.8646464,1.9475744,1.992306,1.9970384,1.9615806,1.8873622,1.7773747,1.6360517,1.4690897,1.283219,1.0859015,0.8851507,0.68902934,0.5054431,0.3417921,0.20467311,0.09961331,0.03084755,0.0011478066,0.01171124,0.062111974,0.1503185,0.27277517,0.42454588,0.5995128,0.7906232,0.9901734,1.1901197,1.3824024,1.5592706,1.7135952,1.8391548,1.9308888,1.9851043,1.9995997,1.9738019,1.9087505,1.8070681,1.6728531,1.5115159,1.3295597,1.1343191,0.9336642,0.73568326,0.5483568,0.3792358,0.23513746,0.12187028,0.04400003,0.004665613,0.0054525733,0.04632914,0.1256476,0.24021077,0.3854006,0.5553919,0.74328107,0.94151837,1.1421131,1.3369793,1.518262,1.678654,1.8116896,1.9120066,1.9755611,1.9997914,1.9837205,1.9279966,1.8348656,1.7080815,1.5527551,1.3751475,1.1824179,0.98233515,0.7829644,0.59234226,0.41815263,0.2673961,0.14619529,0.05941081,0.010540962,0.0015556812,0.032817066,0.10306507,0.20946807,0.3477369,0.5122981,0.6965183,0.89297163,1.0937393,1.2907283,1.4759983,1.642081,1.7822818,1.8909492,1.963703,1.9976106,1.9913049,1.9450403,1.8606818,1.7416091,1.592658,1.4198174,1.2300541,1.0310174,0.83073056,0.63726676,0.45842457,0.30141294,0.17256099,0.07706261,0.018767297,2.4974346e-5,0.021591067,0.08259624,0.18058145,0.311597,0.4703616,0.6504757,0.8446789,1.045143,1.2437874,1.4326324,1.6040087,1.7510376,1.8677927,1.9495676,1.9930658,1.9965343,1.9598329,1.8844414,1.7733984,1.63118,1.4635193,1.2771745,1.0796567,0.8789281,0.68307984,0.50000644,0.3370875,0.20089018,0.096904576,0.029322207,0.0008672476,0.012691677,0.0643152,0.15365565,0.27711177,0.42970705,0.60529053,0.7967846,0.9964701,1.1962979,1.388213,1.5644796,1.7179922,1.8425629,1.9331706,1.9861625,1.9994028,1.9723577,1.9061176,1.8033522,1.6682043,1.5061214,1.323637,1.128107,0.9273826,0.7296156,0.54274774,0.37431145,0.23109627,0.118875206,0.042171717,0.004077792,0.006128907,0.04824245,0.12872076,0.24431986,0.39037997,0.5610135,0.7493424,0.9477751,1.148313,1.3428725,1.523611,1.683243,1.8153338,1.9145591,1.9769255,1.9999002,1.9825695,1.925632,1.8313829,1.7036211,1.5474968,1.3693031,1.1762232,0.97603965,0.776822,0.58660054,0.41304296,0.26314533,0.14294982,0.05730158,0.009652972,0.0019256473,0.034432173,0.10586029,0.21333063,0.35251117,0.51779157,0.7025096,0.8992192,1.0999913,1.2967328,1.4815131,1.6468956,1.7861887,1.893791,1.965365,1.9980259,1.9904567,1.9429629,1.8574587,1.7373909,1.5875993,1.4141219,1.2239366,1.0247383,0.82454294,0.63142014,0.45315462,0.2969321,0.16904986,0.074662745,0.017575443,8.9108944e-5,0.022908628,0.08512032,0.18420702,0.3161779,0.47571325,0.65638226,0.8509024,1.0514325,1.2498894,1.4382734,1.6089909,1.7551603,1.870897,1.9515185,1.9937847,1.9959922,1.9580516,1.8814926,1.7694011,1.6262954,1.4579442,1.2711335,1.0733936,0.87268,0.6771139,0.49456316,0.33238626,0.19712049,0.09421837,0.02782774,0.0006248951,0.013706267,0.06654453,0.1570099,0.28146636,0.43487823,0.6110699,0.80293906,1.0027517,1.2024534,1.3939943,1.5696535,1.7223504,1.8459296,1.93541,1.9871844,1.9991655,1.9708682,1.903436,1.7995865,1.6635063,1.5006806,1.3176726,1.1218594,0.92113423,0.72358805,0.5371839,0.3694237,0.22709525,0.11592209,0.040385664,0.0035307407,0.0068429112,0.05018872,0.13182086,0.24844879,0.39537132,0.5666661,0.75544316,0.95406437,1.1545372,1.3487808,1.5289652,1.6878273,1.8189635,1.9170877,1.9782447,1.9999691,1.9813854,1.9232366,1.8278759,1.6991436,1.5422294,1.3634584,1.1700364,0.96976036,0.7707033,0.580889,0.40796888,0.25891322,0.13972253,0.055219352,0.008799791,0.0023349524,0.036085427,0.10869074,0.21722418,0.35731095,0.5233041,0.7085126,0.9054708,1.1062546,1.3027401,1.4870224,1.6516731,1.790055,1.8965905,1.9669849,1.9984007,1.9895713,1.9408531,1.8542097,1.7331333,1.5824926,1.4083822,1.21781,1.0184582,0.8183623,0.6255881,0.44790626,0.29247904,0.16557151,0.07229936,0.016422272,0.00019299984,0.02426809,0.08767438,0.18785602,0.32077467,0.4810726,0.6622881,0.85711664,1.0577047,1.2559668,1.4439108,1.6139734,1.759273,1.873967,1.9534318,1.9944644,1.9954107,1.9562324,1.878509,1.7653735,1.621386,1.452351,1.2650671,1.0671122,0.8664521,0.6711752,0.48915297,0.3277228,0.19339162,0.09157443,0.026375413,0.00042259693,0.014762163,0.06882167,0.16041386,0.28584927,0.4400717,0.61686456,0.80910134,1.0090332,1.2086009,1.39976,1.574805,1.7266799,1.8492708,1.9376178,1.9881697,1.9988892,1.9693439,1.900725,1.7957983,1.6587936,1.4952332,1.3117101,1.1156223,0.9148586,0.71754205,0.5316112,0.36456084,0.22312468,0.11300391,0.03863746,0.0030230284,0.007596135,0.052172482,0.13495523,0.2526074,0.4003988,0.5723496,0.7615388,0.9603402,1.1607403,1.354661,1.5342855,1.6923733,1.822552,1.919574,1.9795284,1.9999988,1.9801567,1.920805,1.824336,1.6946387,1.5369408,1.3575993,1.1638429,0.96348226,0.7645936,0.57519406,0.40290594,0.25470012,0.13653696,0.053179502,0.007987857,0.0027836561,0.03777665,0.11155635,0.22114867,0.36213607,0.5288354,0.7145418,0.91174126,1.1124985,1.308721,1.492499,1.6564248,1.7938904,1.8993547,1.9685665,1.9987361,1.9886471,1.938701,1.8509188,1.7288364,1.5773752,1.4026401,1.211675,1.0121773,0.81218886,0.6197709,0.4426797,0.28805387,0.16211778,0.06996697,0.01530534,0.0003361106,0.02566278,0.09026444,0.19153702,0.32539833,0.4864524,0.6682073,0.86333656,1.0639746,1.2620487,1.4495444,1.6189194,1.763346,1.8770025,1.9553076,1.9951048,1.9947898,1.9543755,1.8754909,1.7613156,1.6164402,1.4467263,1.2590051,1.0608436,0.86022943,0.6652494,0.48376298,0.32308578,0.18969464,0.08896637,0.024961412,0.0002593398,0.015859663,0.0711301,0.16384274,0.29026043,0.4452873,0.62267435,0.81527114,1.0153143,1.2147402,1.40551,1.5799463,1.7309914,1.8525705,1.9397831,1.9891136,1.9985735,1.9677814,1.8979785,1.7919788,1.6540549,1.4897662,1.3057209,1.1093655,0.9086015,0.71152186,0.5260706,0.3597231,0.21918482,0.11012077,0.036927223,0.002554655,0.00838846,0.054198563,0.13813144,0.25680572,0.40543777,0.5780362,0.7676438,0.9666176,1.166937,1.3605273,1.5395849,1.696892,1.8261166,1.9220299,1.9807767,1.9999888,1.9788921,1.9183367,1.8207638,1.6901063,1.531631,1.3517259,1.1576431,0.95720565,0.7584784,0.56950206,0.39787883,0.25052673,0.13338554,0.051177025,0.0072150826,0.003271699,0.03950584,0.11445701,0.22510391,0.3669982,0.5343988,0.7205676,0.9180001,1.1187379,1.3146895,1.4979563,1.6611505,1.7976942,1.9020834,1.9701099,1.9990327,1.9876814,1.936517,1.8476024,1.7245212,1.572235,1.3968823,1.2055316,1.005896,0.80602276,0.6139686,0.43746257,0.2836461,0.15870553,0.06767702,0.014229953,0.0005186796,0.027095973,0.09289044,0.19524997,0.33004856,0.49185252,0.674154,0.86957705,1.0702573,1.2681056,1.4551467,1.623841,1.7673888,1.8800035,1.9571457,1.995706,1.9941299,1.9524763,1.8724306,1.7572178,1.6114819,1.4410975,1.2529328,1.0545725,0.8540123,0.65933686,0.47839338,0.31847554,0.18602955,0.08638805,0.023582637,0.0001360178,0.016993344,0.07347512,0.16730464,0.29469955,0.45052475,0.62849903,0.82144827,1.0215948,1.2208858,1.4112577,1.585052,1.7352633,1.8558365,1.9419115,1.9900184,1.9982183,1.9661807,1.8951967,1.788128,1.6492786,1.4842666,1.2997341,1.1031194,0.9023481,0.705513,0.5205486,0.35491055,0.21527576,0.107272685,0.035254955,0.0021246076,0.009222031,0.05625713,0.141334,0.26102322,0.41050017,0.5837395,0.77375805,0.97289634,1.173127,1.3663793,1.5448756,1.7013942,1.8296399,1.9244434,1.9819831,1.9999394,1.977589,1.9158324,1.8171592,1.6855466,1.5263002,1.3458245,1.1514218,0.95091546,0.7523876,0.56384087,0.3928755,0.24638295,0.13026828,0.04921198,0.006481409,0.0037990212,0.04127729,0.11739981,0.2290994,0.37187356,0.5399672,0.72660446,0.9242621,1.1249727,1.3206458,1.5033938,1.6658503,1.8014667,1.904783,1.9716189,1.9992893,1.9866788,1.9342961,1.8442523,1.7201773,1.5670723,1.3911089,1.1993802,0.9996145,0.7998494,0.6081675,0.43228024,0.27927738,0.15532643,0.065423846,0.013193488,0.0007407069,0.028567493,0.095552206,0.1989947,0.33473665,0.49728584,0.6800991,0.8758075,1.076522,1.2741519,1.4607309,1.6287382,1.7714012,1.8829696,1.958946,1.9962691,1.993429,1.9505441,1.8693434,1.7530999,1.6064994,1.4354514,1.2468505,1.0482992,0.8478009,0.65343773,0.47303134,0.31388104,0.18238783,0.08385211,0.022245765,5.2154064e-5,0.018165886,0.075856745,0.17079931,0.2991665,0.4557839,0.63435256,0.82764745,1.0278897,1.2270079,1.4169754,1.5901349,1.7395064,1.8590688,1.9440026,1.9908843,1.9978238,1.9645418,1.8923727,1.7842367,1.6444883,1.4787612,1.2937354,1.0968693,0.8960985,0.6995158,0.5150455,0.35012352,0.21139765,0.10445309,0.03361684,0.0017350316,0.010092676,0.058352947,0.14457047,0.26526988,0.41558582,0.5894592,0.77988124,0.9791761,1.1793253,1.372231,1.550132,1.7058578,1.8331306,1.9268204,1.9831507,1.9998507,1.9762473,1.9132919,1.8135223,1.6809487,1.5209355,1.3399237,1.1452098,0.9446424,0.74630654,0.5581969,0.38789612,0.24226886,0.12718534,0.047284424,0.005785346,0.0043671727,0.043082356,0.12037033,0.23311567,0.37677372,0.5455537,0.73265207,0.9305271,1.1312101,1.3265965,1.508818,1.6705294,1.805212,1.9074402,1.9730856,1.9995064,1.9856375,1.9320383,1.8408692,1.7157997,1.5618808,1.3853129,1.1932132,0.9933253,0.7936989,0.602396,0.42712033,0.2749371,0.1519807,0.06320751,0.012194753,0.0010024905,0.030079246,0.09825295,0.2027756,0.33943963,0.50272584,0.686057,0.8820429,1.0827836,1.2801874,1.4663037,1.6336162,1.775388,1.8859046,1.9607105,1.9967909,1.9926903,1.9485743,1.8662219,1.7489524,1.6014931,1.4297812,1.240751,1.0420164,0.841588,0.6475452,0.4677096,0.30932486,0.17878723,0.08135229,0.020947456,7.748604e-6,0.019378603,0.07827777,0.17433107,0.3036666,0.46107095,0.6401992,0.83383834,1.0341682,1.2331209,1.4226766,1.5951943,1.7437253,1.862271,1.946059,1.9917119,1.9973894,1.9628627,1.8895202,1.7803237,1.6396728,1.4732369,1.2877252,1.0906154,0.8898454,0.6935232,0.509555,0.34535635,0.207546,0.10167563,0.032020926,0.0013848543,0.011002421,0.0604859,0.14784068,0.26955074,0.4207008,0.5952021,0.7860205,0.98546433,1.1855016,1.3780538,1.5553668,1.7102933,1.8365884,1.9291608,1.9842808,1.9997222,1.9748654,1.9107122,1.8098488,1.6763352,1.5155634,1.3340095,1.1389918,0.9383716,0.74023545,0.55256355,0.38293487,0.23817974,0.12413311,0.045392215,0.005131066,0.0049732327,0.044925094,0.123375535,0.23716223,0.38169843,0.55116487,0.7387176,0.93680245,1.1374348,1.3325272,1.5142157,1.6751819,1.8089255,1.9100617,1.9745139,1.999684,1.984556,1.9297409,1.8374486,1.7113991,1.5566735,1.3795087,1.1870388,0.98703635,0.7875565,0.59664017,0.421983,0.27062535,0.14866441,0.06102556,0.011236191,0.0013033748,0.031627417,0.1009894,0.20658803,0.34416866,0.5081855,0.6920271,0.8882829,1.0890496,1.2862191,1.4718513,1.6384635,1.7793396,1.8888043,1.9624372,1.9972746,1.9919126,1.9465672,1.8630662,1.7447703,1.596457,1.4241009,1.2346494,1.0357395,0.8353814,0.64166653,0.46239597,0.30479586,0.17521906,0.078888714,0.019686282,2.8014183e-6,0.020628572,0.080732286,0.17789114,0.30818874,0.46637934,0.6460743,0.8400359,1.0404456,1.2392248,1.428368,1.6002364,1.7479098,1.8654352,1.9480755,1.9924994,1.9969156,1.9611458,1.8866327,1.77638,1.6348318,1.4676871,1.2816962,1.0843502,0.8836042,0.68755,0.5040905,0.34061503,0.2037257,0.0989337,0.03046316,0.0010740757,0.011952341,0.06265861,0.15114856,0.2738552,0.4258324,0.60095394,0.79216826,0.99175316,1.1916704,1.3838617,1.5605795,1.7147009,1.8400172,1.9314675,1.9853709,1.9995545,1.9734466,1.9080966,1.8061433,1.6716949,1.5101709,1.3280821,1.1327685,0.9320956,0.73416734,0.54695463,0.378004,0.23412561,0.121115565,0.043537796,0.004514456,0.0056185126,0.04680562,0.12641537,0.24124384,0.3866536,0.556787,0.74478614,0.94307274,1.1436616,1.3384519,1.5195994,1.6798022,1.8126025,1.9126472,1.9759054,1.9998224,1.9834368,1.9274096,1.833999,1.7069705,1.5514379,1.3736826,1.1808643,0.98075557,0.78142256,0.59089327,0.4168623,0.26633728,0.1453858,0.05888331,0.01031673,0.0016441345,0.03321582,0.10375798,0.21042717,0.34892362,0.5136712,0.6980167,0.89453495,1.0953044,1.2922323,1.4773803,1.6432912,1.7832649,1.8916655,1.9641236,1.9977185,1.9910958,1.9445201,1.8598723,1.7405638,1.5914034,1.4184039,1.2285312,1.0294536,0.82918876,0.6358092,0.45711,0.30029434,0.17167914,0.076458514,0.0184654,3.7312508e-5,0.021917224,0.083226085,0.18148804,0.31274372,0.47170234,0.6519563,0.8462397,1.0467287,1.2453266,1.4340355,1.6052487,1.7520672,1.8685672,1.9500558,1.9932486,1.996403,1.9593928,1.8837084,1.7724032,1.6299598,1.4621257,1.2756635,1.0780857,0.87736386,0.6815855,0.49863893,0.33590555,0.19994146,0.09622562,0.028942704,0.00080257654,0.012940168,0.06486565,0.15448797,0.27819103,0.4309898,0.60672855,0.7983167,0.99803466,1.1978356,1.389658,1.5657735,1.7190857,1.8434087,1.9337358,1.9864225,1.9993472,1.9719877,1.9054482,1.8024105,1.6670253,1.5047549,1.3221382,1.1265324,0.9258298,0.72811705,0.54136026,0.37309468,0.23009688,0.118136406,0.04172337,0.0039375424,0.006303549,0.04872483,0.12949342,0.24535048,0.39162695,0.5624301,0.7508684,0.94934905,1.1498752,1.3443561,1.5249594,1.6843984,1.8162497,1.9152,1.9772568,1.999921,1.9822782,1.9250402,1.8305146,1.7025084,1.5461869,1.3678488,1.174679,0.97447175,0.7752898,0.5851695,0.41177082,0.2620808,0.1421389,0.05677694,0.009435236,0.0020238757,0.034840405,0.10656369,0.21429986,0.35371006,0.5191695,0.70401096,0.90078735,1.1015593,1.2982374,1.4828972,1.648088,1.7871547,1.8944933,1.9657731,1.9981232,1.9902388,1.9424384,1.8566468,1.7363255,1.5863233,1.4126834,1.2224114,1.0231743,0.8229991,0.6299627,0.4518422,0.29581493,0.16817617,0.07406777,0.017282486,0.00011140108,0.02324605,0.08575308,0.18511283,0.3173231,0.4770494,0.6578556,0.85245717,1.0530025,1.2514114,1.4396894,1.6102402,1.756195,1.871665,1.9519986,1.9939581,1.9958506,1.957601,1.8807491,1.7683959,1.625069,1.4565426,1.2696161,1.0718217,0.8711284,0.67563355,0.4932105,0.33121943,0.19618654,0.093553305,0.027460635,0.00057053566,0.013967514,0.067111015,0.15785873,0.28255534,0.43616968,0.61251175,0.8044769,1.00432,1.2039927,1.3954388,1.570945,1.7234392,1.8467691,1.9359667,1.987435,1.9991003,1.9704916,1.9027624,1.7986437,1.6623306,1.499319,1.3161814,1.120297,0.91956323,0.722072,0.5357857,0.3682102,0.22610223,0.11519116,0.039945662,0.003400147,0.0070277452,0.05068171,0.13260305,0.24948937,0.39662737,0.5680887,0.7569605,0.9556292,1.1560847,1.3502502,1.530297,1.6889663,1.8198646,1.9177141,1.9785705,1.9999802,1.9810811,1.9226344,1.8269973,1.6980228,1.540911,1.361995,1.1684887,0.96818894,0.7691714,0.57945865,0.40669954,0.2578547,0.13892591,0.054707825,0.0085936785,0.0024433136,0.036504626,0.10940379,0.21820354,0.35851765,0.5246884,0.71002054,0.9070417,1.1078101,1.3042309,1.48839,1.6528618,1.7910156,1.8972849,1.9673843,1.9984884,1.9893434,1.940318,1.8533881,1.7320592,1.5812201,1.4069517,1.216279,1.01689,0.81681836,0.6241308,0.4465961,0.29136747,0.16470402,0.07171142,0.016138554,0.00022494793,0.024612308,0.088317275,0.18877208,0.32192802,0.48241633,0.66376925,0.85867476,1.059278,1.2574909,1.4453242,1.6152074,1.760291,1.8747277,1.9539037,1.9946282,1.995259,1.9557712,1.8777559,1.7643588,1.6201497,1.4509432,1.2635583,1.0655502,0.8648989,0.6696944,0.48780453,0.32656044,0.19246334,0.09091753,0.026017249,0.00037795305,0.0150334835,0.06939286,0.16126531,0.28694665,0.44137186,0.6183146,0.8106439,1.0106053,1.2101396,1.4012032,1.5760943,1.7277629,1.8500954,1.9381607,1.9884088,1.9988141,1.9689572,1.9000416,1.7948453,1.6576089,1.4938647,1.3102124,1.1140554,0.9133008,0.7160411,0.5302278,0.363351,0.22213769,0.11227983,0.03820598,0.002902031,0.0077910423,0.052676022,0.13574755,0.25365716,0.4016518,0.5737659,0.7630614,0.96190786,1.16229,1.35613,1.5356145,1.6935084,1.823447,1.9201925,1.979845,2.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/vercosf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/medium_positive.json
new file mode 100644
index 000000000000..ea02702ebd18
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/medium_positive.json
@@ -0,0 +1 @@
+{"expected":[2.0,1.979845,1.9201925,1.823447,1.6935084,1.5356145,1.35613,1.16229,0.96190786,0.7630614,0.5737659,0.4016518,0.25365716,0.13574755,0.052676022,0.0077910423,0.002902031,0.03820598,0.11227983,0.22213769,0.363351,0.5302278,0.7160411,0.9133008,1.1140554,1.3102124,1.4938647,1.6576089,1.7948453,1.9000416,1.9689572,1.9988141,1.9884088,1.9381607,1.8500954,1.7277629,1.5760943,1.4012032,1.2101396,1.0106053,0.8106439,0.6183146,0.44137186,0.28694665,0.16126531,0.06939286,0.0150334835,0.00037795305,0.026017249,0.09091753,0.19246334,0.32656044,0.48780453,0.6696944,0.8648989,1.0655502,1.2635583,1.4509432,1.6201497,1.7643588,1.8777559,1.9557712,1.995259,1.9946282,1.9539037,1.8747277,1.760291,1.6152074,1.4453242,1.2574909,1.059278,0.85867476,0.66376925,0.48241633,0.32192802,0.18877208,0.088317275,0.024612308,0.00022494793,0.016138554,0.07171142,0.16470402,0.29136747,0.4465961,0.6241308,0.81681836,1.01689,1.216279,1.4069517,1.5812201,1.7320592,1.8533881,1.940318,1.9893434,1.9984884,1.9673843,1.8972849,1.7910156,1.6528618,1.48839,1.3042309,1.1078101,0.9070417,0.71002054,0.5246884,0.35851765,0.21820354,0.10940379,0.036504626,0.0024433136,0.0085936785,0.054707825,0.13892591,0.2578547,0.40669954,0.57945865,0.7691714,0.96818894,1.1684887,1.361995,1.540911,1.6980228,1.8269973,1.9226344,1.9810811,1.9999802,1.9785705,1.9177141,1.8198646,1.6889663,1.530297,1.3502502,1.1560847,0.9556292,0.7569605,0.5680887,0.39662737,0.24948937,0.13260305,0.05068171,0.0070277452,0.003400147,0.039945662,0.11519116,0.22610223,0.3682102,0.5357857,0.722072,0.91956323,1.120297,1.3161814,1.499319,1.6623306,1.7986437,1.9027624,1.9704916,1.9991003,1.987435,1.9359667,1.8467691,1.7234392,1.570945,1.3954388,1.2039927,1.00432,0.8044769,0.61251175,0.43616968,0.28255534,0.15785873,0.067111015,0.013967514,0.00057053566,0.027460635,0.093553305,0.19618654,0.33121943,0.4932105,0.67563355,0.8711284,1.0718217,1.2696161,1.4565426,1.625069,1.7683959,1.8807491,1.957601,1.9958506,1.9939581,1.9519986,1.871665,1.756195,1.6102402,1.4396894,1.2514114,1.0530025,0.85245717,0.6578556,0.4770494,0.3173231,0.18511283,0.08575308,0.02324605,0.00011140108,0.017282486,0.07406777,0.16817617,0.29581493,0.4518422,0.6299627,0.8229991,1.0231743,1.2224114,1.4126834,1.5863233,1.7363255,1.8566468,1.9424384,1.9902388,1.9981232,1.9657731,1.8944933,1.7871547,1.648088,1.4828972,1.2982374,1.1015593,0.90078735,0.70401096,0.5191695,0.35371006,0.21429986,0.10656369,0.034840405,0.0020238757,0.009435236,0.05677694,0.1421389,0.2620808,0.41177082,0.5851695,0.7752898,0.97447175,1.174679,1.3678488,1.5461869,1.7025084,1.8305146,1.9250402,1.9822782,1.999921,1.9772568,1.9152,1.8162497,1.6843984,1.5249594,1.3443561,1.1498752,0.94934905,0.7508684,0.5624301,0.39162695,0.24535048,0.12949342,0.04872483,0.006303549,0.0039375424,0.04172337,0.118136406,0.23009688,0.37309468,0.54136026,0.72811705,0.9258298,1.1265324,1.3221382,1.5047549,1.6670253,1.8024105,1.9054482,1.9719877,1.9993472,1.9864225,1.9337358,1.8434087,1.7190857,1.5657735,1.389658,1.1978356,0.99803466,0.7983167,0.60672855,0.4309898,0.27819103,0.15448797,0.06486565,0.012940168,0.00080257654,0.028942704,0.09622562,0.19994146,0.33590555,0.49863893,0.6815855,0.87736386,1.0780857,1.2756635,1.4621257,1.6299598,1.7724032,1.8837084,1.9593928,1.996403,1.9932486,1.9500558,1.8685672,1.7520672,1.6052487,1.4340355,1.2453266,1.0467287,0.8462397,0.6519563,0.47170234,0.31274372,0.18148804,0.083226085,0.021917224,3.7312508e-5,0.0184654,0.076458514,0.17167914,0.30029434,0.45711,0.6358092,0.82918876,1.0294536,1.2285312,1.4184039,1.5914034,1.7405638,1.8598723,1.9445201,1.9910958,1.9977185,1.9641236,1.8916655,1.7832649,1.6432912,1.4773803,1.2922323,1.0953044,0.89453495,0.6980167,0.5136712,0.34892362,0.21042717,0.10375798,0.03321582,0.0016441345,0.01031673,0.05888331,0.1453858,0.26633728,0.4168623,0.59089327,0.78142256,0.98075557,1.1808643,1.3736826,1.5514379,1.7069705,1.833999,1.9274096,1.9834368,1.9998224,1.9759054,1.9126472,1.8126025,1.6798022,1.5195994,1.3384519,1.1436616,0.94307274,0.74478614,0.556787,0.3866536,0.24124384,0.12641537,0.04680562,0.0056185126,0.004514456,0.043537796,0.121115565,0.23412561,0.378004,0.54695463,0.73416734,0.9320956,1.1327685,1.3280821,1.5101709,1.6716949,1.8061433,1.9080966,1.9734466,1.9995545,1.9853709,1.9314675,1.8400172,1.7147009,1.5605795,1.3838617,1.1916704,0.99175316,0.79216826,0.60095394,0.4258324,0.2738552,0.15114856,0.06265861,0.011952341,0.0010740757,0.03046316,0.0989337,0.2037257,0.34061503,0.5040905,0.68755,0.8836042,1.0843502,1.2816962,1.4676871,1.6348318,1.77638,1.8866327,1.9611458,1.9969156,1.9924994,1.9480755,1.8654352,1.7479098,1.6002364,1.428368,1.2392248,1.0404456,0.8400359,0.6460743,0.46637934,0.30818874,0.17789114,0.080732286,0.020628572,2.8014183e-6,0.019686282,0.078888714,0.17521906,0.30479586,0.46239597,0.64166653,0.8353814,1.0357395,1.2346494,1.4241009,1.596457,1.7447703,1.8630662,1.9465672,1.9919126,1.9972746,1.9624372,1.8888043,1.7793396,1.6384635,1.4718513,1.2862191,1.0890496,0.8882829,0.6920271,0.5081855,0.34416866,0.20658803,0.1009894,0.031627417,0.0013033748,0.011236191,0.06102556,0.14866441,0.27062535,0.421983,0.59664017,0.7875565,0.98703635,1.1870388,1.3795087,1.5566735,1.7113991,1.8374486,1.9297409,1.984556,1.999684,1.9745139,1.9100617,1.8089255,1.6751819,1.5142157,1.3325272,1.1374348,0.93680245,0.7387176,0.55116487,0.38169843,0.23716223,0.123375535,0.044925094,0.0049732327,0.005131066,0.045392215,0.12413311,0.23817974,0.38293487,0.55256355,0.74023545,0.9383716,1.1389918,1.3340095,1.5155634,1.6763352,1.8098488,1.9107122,1.9748654,1.9997222,1.9842808,1.9291608,1.8365884,1.7102933,1.5553668,1.3780538,1.1855016,0.98546433,0.7860205,0.5952021,0.4207008,0.26955074,0.14784068,0.0604859,0.011002421,0.0013848543,0.032020926,0.10167563,0.207546,0.34535635,0.509555,0.6935232,0.8898454,1.0906154,1.2877252,1.4732369,1.6396728,1.7803237,1.8895202,1.9628627,1.9973894,1.9917119,1.946059,1.862271,1.7437253,1.5951943,1.4226766,1.2331209,1.0341682,0.83383834,0.6401992,0.46107095,0.3036666,0.17433107,0.07827777,0.019378603,7.748604e-6,0.020947456,0.08135229,0.17878723,0.30932486,0.4677096,0.6475452,0.841588,1.0420164,1.240751,1.4297812,1.6014931,1.7489524,1.8662219,1.9485743,1.9926903,1.9967909,1.9607105,1.8859046,1.775388,1.6336162,1.4663037,1.2801874,1.0827836,0.8820429,0.686057,0.50272584,0.33943963,0.2027756,0.09825295,0.030079246,0.0010024905,0.012194753,0.06320751,0.1519807,0.2749371,0.42712033,0.602396,0.7936989,0.9933253,1.1932132,1.3853129,1.5618808,1.7157997,1.8408692,1.9320383,1.9856375,1.9995064,1.9730856,1.9074402,1.805212,1.6705294,1.508818,1.3265965,1.1312101,0.9305271,0.73265207,0.5455537,0.37677372,0.23311567,0.12037033,0.043082356,0.0043671727,0.005785346,0.047284424,0.12718534,0.24226886,0.38789612,0.5581969,0.74630654,0.9446424,1.1452098,1.3399237,1.5209355,1.6809487,1.8135223,1.9132919,1.9762473,1.9998507,1.9831507,1.9268204,1.8331306,1.7058578,1.550132,1.372231,1.1793253,0.9791761,0.77988124,0.5894592,0.41558582,0.26526988,0.14457047,0.058352947,0.010092676,0.0017350316,0.03361684,0.10445309,0.21139765,0.35012352,0.5150455,0.6995158,0.8960985,1.0968693,1.2937354,1.4787612,1.6444883,1.7842367,1.8923727,1.9645418,1.9978238,1.9908843,1.9440026,1.8590688,1.7395064,1.5901349,1.4169754,1.2270079,1.0278897,0.82764745,0.63435256,0.4557839,0.2991665,0.17079931,0.075856745,0.018165886,5.2154064e-5,0.022245765,0.08385211,0.18238783,0.31388104,0.47303134,0.65343773,0.8478009,1.0482992,1.2468505,1.4354514,1.6064994,1.7530999,1.8693434,1.9505441,1.993429,1.9962691,1.958946,1.8829696,1.7714012,1.6287382,1.4607309,1.2741519,1.076522,0.8758075,0.6800991,0.49728584,0.33473665,0.1989947,0.095552206,0.028567493,0.0007407069,0.013193488,0.065423846,0.15532643,0.27927738,0.43228024,0.6081675,0.7998494,0.9996145,1.1993802,1.3911089,1.5670723,1.7201773,1.8442523,1.9342961,1.9866788,1.9992893,1.9716189,1.904783,1.8014667,1.6658503,1.5033938,1.3206458,1.1249727,0.9242621,0.72660446,0.5399672,0.37187356,0.2290994,0.11739981,0.04127729,0.0037990212,0.006481409,0.04921198,0.13026828,0.24638295,0.3928755,0.56384087,0.7523876,0.95091546,1.1514218,1.3458245,1.5263002,1.6855466,1.8171592,1.9158324,1.977589,1.9999394,1.9819831,1.9244434,1.8296399,1.7013942,1.5448756,1.3663793,1.173127,0.97289634,0.77375805,0.5837395,0.41050017,0.26102322,0.141334,0.05625713,0.009222031,0.0021246076,0.035254955,0.107272685,0.21527576,0.35491055,0.5205486,0.705513,0.9023481,1.1031194,1.2997341,1.4842666,1.6492786,1.788128,1.8951967,1.9661807,1.9982183,1.9900184,1.9419115,1.8558365,1.7352633,1.585052,1.4112577,1.2208858,1.0215948,0.82144827,0.62849903,0.45052475,0.29469955,0.16730464,0.07347512,0.016993344,0.0001360178,0.023582637,0.08638805,0.18602955,0.31847554,0.47839338,0.65933686,0.8540123,1.0545725,1.2529328,1.4410975,1.6114819,1.7572178,1.8724306,1.9524763,1.9941299,1.995706,1.9571457,1.8800035,1.7673888,1.623841,1.4551467,1.2681056,1.0702573,0.86957705,0.674154,0.49185252,0.33004856,0.19524997,0.09289044,0.027095973,0.0005186796,0.014229953,0.06767702,0.15870553,0.2836461,0.43746257,0.6139686,0.80602276,1.005896,1.2055316,1.3968823,1.572235,1.7245212,1.8476024,1.936517,1.9876814,1.9990327,1.9701099,1.9020834,1.7976942,1.6611505,1.4979563,1.3146895,1.1187379,0.9180001,0.7205676,0.5343988,0.3669982,0.22510391,0.11445701,0.03950584,0.003271699,0.0072150826,0.051177025,0.13338554,0.25052673,0.39787883,0.56950206,0.7584784,0.95720565,1.1576431,1.3517259,1.531631,1.6901063,1.8207638,1.9183367,1.9788921,1.9999888,1.9807767,1.9220299,1.8261166,1.696892,1.5395849,1.3605273,1.166937,0.9666176,0.7676438,0.5780362,0.40543777,0.25680572,0.13813144,0.054198563,0.00838846,0.002554655,0.036927223,0.11012077,0.21918482,0.3597231,0.5260706,0.71152186,0.9086015,1.1093655,1.3057209,1.4897662,1.6540549,1.7919788,1.8979785,1.9677814,1.9985735,1.9891136,1.9397831,1.8525705,1.7309914,1.5799463,1.40551,1.2147402,1.0153143,0.81527114,0.62267435,0.4452873,0.29026043,0.16384274,0.0711301,0.015859663,0.0002593398,0.024961412,0.08896637,0.18969464,0.32308578,0.48376298,0.6652494,0.86022943,1.0608436,1.2590051,1.4467263,1.6164402,1.7613156,1.8754909,1.9543755,1.9947898,1.9951048,1.9553076,1.8770025,1.763346,1.6189194,1.4495444,1.2620487,1.0639746,0.86333656,0.6682073,0.4864524,0.32539833,0.19153702,0.09026444,0.02566278,0.0003361106,0.01530534,0.06996697,0.16211778,0.28805387,0.4426797,0.6197709,0.81218886,1.0121773,1.211675,1.4026401,1.5773752,1.7288364,1.8509188,1.938701,1.9886471,1.9987361,1.9685665,1.8993547,1.7938904,1.6564248,1.492499,1.308721,1.1124985,0.91174126,0.7145418,0.5288354,0.36213607,0.22114867,0.11155635,0.03777665,0.0027836561,0.007987857,0.053179502,0.13653696,0.25470012,0.40290594,0.57519406,0.7645936,0.96348226,1.1638429,1.3575993,1.5369408,1.6946387,1.824336,1.920805,1.9801567,1.9999988,1.9795284,1.919574,1.822552,1.6923733,1.5342855,1.354661,1.1607403,0.9603402,0.7615388,0.5723496,0.4003988,0.2526074,0.13495523,0.052172482,0.007596135,0.0030230284,0.03863746,0.11300391,0.22312468,0.36456084,0.5316112,0.71754205,0.9148586,1.1156223,1.3117101,1.4952332,1.6587936,1.7957983,1.900725,1.9693439,1.9988892,1.9881697,1.9376178,1.8492708,1.7266799,1.574805,1.39976,1.2086009,1.0090332,0.80910134,0.61686456,0.4400717,0.28584927,0.16041386,0.06882167,0.014762163,0.00042259693,0.026375413,0.09157443,0.19339162,0.3277228,0.48915297,0.6711752,0.8664521,1.0671122,1.2650671,1.452351,1.621386,1.7653735,1.878509,1.9562324,1.9954107,1.9944644,1.9534318,1.873967,1.759273,1.6139734,1.4439108,1.2559668,1.0577047,0.85711664,0.6622881,0.4810726,0.32077467,0.18785602,0.08767438,0.02426809,0.00019299984,0.016422272,0.07229936,0.16557151,0.29247904,0.44790626,0.6255881,0.8183623,1.0184582,1.21781,1.4083822,1.5824926,1.7331333,1.8542097,1.9408531,1.9895713,1.9984007,1.9669849,1.8965905,1.790055,1.6516731,1.4870224,1.3027401,1.1062546,0.9054708,0.7085126,0.5233041,0.35731095,0.21722418,0.10869074,0.036085427,0.0023349524,0.008799791,0.055219352,0.13972253,0.25891322,0.40796888,0.580889,0.7707033,0.96976036,1.1700364,1.3634584,1.5422294,1.6991436,1.8278759,1.9232366,1.9813854,1.9999691,1.9782447,1.9170877,1.8189635,1.6878273,1.5289652,1.3487808,1.1545372,0.95406437,0.75544316,0.5666661,0.39537132,0.24844879,0.13182086,0.05018872,0.0068429112,0.0035307407,0.040385664,0.11592209,0.22709525,0.3694237,0.5371839,0.72358805,0.92113423,1.1218594,1.3176726,1.5006806,1.6635063,1.7995865,1.903436,1.9708682,1.9991655,1.9871844,1.93541,1.8459296,1.7223504,1.5696535,1.3939943,1.2024534,1.0027517,0.80293906,0.6110699,0.43487823,0.28146636,0.1570099,0.06654453,0.013706267,0.0006248951,0.02782774,0.09421837,0.19712049,0.33238626,0.49456316,0.6771139,0.87268,1.0733936,1.2711335,1.4579442,1.6262954,1.7694011,1.8814926,1.9580516,1.9959922,1.9937847,1.9515185,1.870897,1.7551603,1.6089909,1.4382734,1.2498894,1.0514325,0.8509024,0.65638226,0.47571325,0.3161779,0.18420702,0.08512032,0.022908628,8.9108944e-5,0.017575443,0.074662745,0.16904986,0.2969321,0.45315462,0.63142014,0.82454294,1.0247383,1.2239366,1.4141219,1.5875993,1.7373909,1.8574587,1.9429629,1.9904567,1.9980259,1.965365,1.893791,1.7861887,1.6468956,1.4815131,1.2967328,1.0999913,0.8992192,0.7025096,0.51779157,0.35251117,0.21333063,0.10586029,0.034432173,0.0019256473,0.009652972,0.05730158,0.14294982,0.26314533,0.41304296,0.58660054,0.776822,0.97603965,1.1762232,1.3693031,1.5474968,1.7036211,1.8313829,1.925632,1.9825695,1.9999002,1.9769255,1.9145591,1.8153338,1.683243,1.523611,1.3428725,1.148313,0.9477751,0.7493424,0.5610135,0.39037997,0.24431986,0.12872076,0.04824245,0.006128907,0.004077792,0.042171717,0.118875206,0.23109627,0.37431145,0.54274774,0.7296156,0.9273826,1.128107,1.323637,1.5061214,1.6682043,1.8033522,1.9061176,1.9723577,1.9994028,1.9861625,1.9331706,1.8425629,1.7179922,1.5644796,1.388213,1.1962979,0.9964701,0.7967846,0.60529053,0.42970705,0.27711177,0.15365565,0.0643152,0.012691677,0.0008672476,0.029322207,0.096904576,0.20089018,0.3370875,0.50000644,0.68307984,0.8789281,1.0796567,1.2771745,1.4635193,1.63118,1.7733984,1.8844414,1.9598329,1.9965343,1.9930658,1.9495676,1.8677927,1.7510376,1.6040087,1.4326324,1.2437874,1.045143,0.8446789,0.6504757,0.4703616,0.311597,0.18058145,0.08259624,0.021591067,2.4974346e-5,0.018767297,0.07706261,0.17256099,0.30141294,0.45842457,0.63726676,0.83073056,1.0310174,1.2300541,1.4198174,1.592658,1.7416091,1.8606818,1.9450403,1.9913049,1.9976106,1.963703,1.8909492,1.7822818,1.642081,1.4759983,1.2907283,1.0937393,0.89297163,0.6965183,0.5122981,0.3477369,0.20946807,0.10306507,0.032817066,0.0015556812,0.010540962,0.05941081,0.14619529,0.2673961,0.41815263,0.59234226,0.7829644,0.98233515,1.1824179,1.3751475,1.5527551,1.7080815,1.8348656,1.9279966,1.9837205,1.9997914,1.9755611,1.9120066,1.8116896,1.678654,1.518262,1.3369793,1.1421131,0.94151837,0.74328107,0.5553919,0.3854006,0.24021077,0.1256476,0.04632914,0.0054525733,0.004665613,0.04400003,0.12187028,0.23513746,0.3792358,0.5483568,0.73568326,0.9336642,1.1343191,1.3295597,1.5115159,1.6728531,1.8070681,1.9087505,1.9738019,1.9995997,1.9851043,1.9308888,1.8391548,1.7135952,1.5592706,1.3824024,1.1901197,0.9901734,0.7906232,0.5995128,0.42454588,0.27277517,0.1503185,0.062111974,0.01171124,0.0011478066,0.03084755,0.09961331,0.20467311,0.3417921,0.5054431,0.68902934,0.8851507,1.0859015,1.283219,1.4690897,1.6360517,1.7773747,1.8873622,1.9615806,1.9970384,1.992306,1.9475744,1.8646464,1.7468653,1.5989783,1.4269468,1.2377053,1.0388821,0.8384917,0.6446115,0.46505678,0.30706537,0.17700571,0.08012056,0.02031517,2.9802322e-7,0.020000994,0.07950485,0.17611337,0.30593228,0.46372873,0.64314187,0.8369398,1.0373106,1.2361774,1.4255241,1.5977181,1.7458185,1.8638554,1.9470706,1.99211,1.997158,1.9620111,1.8880862,1.778363,1.6372644,1.470478,1.2846978,1.0874683,0.88671315,0.69052446,0.50681055,0.34297687,0.20562744,0.10029864,0.03123635,0.0012243986,0.011472464,0.061567545,0.1494903,0.27169663,0.4232604,0.5980723,0.7890856,0.9886008,1.1885755,1.3809488,1.5579662,1.7124925,1.8382984,1.9303243,1.9848326,1.9996431,1.9741583,1.9094058,1.8079957,1.6740158,1.5128666,1.3310441,1.1358774,0.93523353,0.7372004,0.5497605,0.38046956,0.23615152,0.1226238,0.04446262,0.0048186183,0.005289793,0.04585713,0.1248855,0.23918921,0.38418478,0.5539838,0.7417614,0.93994844,1.1405562,1.3354981,1.5169164,1.6774981,1.81077,1.9113605,1.9752145,1.999758,1.984002,1.9285814,1.8357302,1.7091911,1.554065,1.3766048,1.183964,0.9839076,0.7844999,0.59377885,0.41940755,0.2684675,0.1470151,0.059946,0.010769963,0.0014691949,0.03241867,0.10237086,0.20850587,0.34654564,0.51092577,0.69502014,0.89140815,1.0921733,1.2892232,1.4746146,1.6408745,1.7813011,1.890234,1.963282,1.9975007,1.9915106,1.9455435,1.8614659,1.7426631,1.593924,1.4212443,1.2315843,1.0325893,0.83228076,0.6387328,0.4597473,0.3025391,0.17344517,0.07766914,0.019071817,1.5079975e-5,0.021267235,0.081971526,0.179681,0.3104571,0.4690283,0.6490026,0.84312546,1.0435718,1.2422915,1.431214,1.6027545,1.7499983,1.8670101,1.9490733,1.9928797,1.9966638,1.960273,1.885174,1.7743943,1.6323991,1.4649123,1.2786851,1.0812243,0.8804894,0.68457186,0.50136906,0.33826584,0.2018367,0.09758103,0.029701412,0.0009326935,0.012443125,0.06376147,0.15281904,0.27602595,0.4284159,0.6038461,0.79524493,0.9948974,1.1947556,1.3867632,1.5631807,1.7168967,1.8417149,1.9326041,1.9859006,1.9994559,1.9727238,1.9067817,1.8042878,1.6693735,1.507477,1.3250958,1.1296363,0.9289512,0.7311301,0.54414696,0.375539,0.23210275,0.119619966,0.04262483,0.004220903,0.005956292,0.047761023,0.12794995,0.24329072,0.38913405,0.559601,0.74782026,0.94620466,1.1467575,1.3413947,1.5222704,1.6820937,1.8144222,1.9139342,1.9765884,1.9998767,1.9828607,1.926226,1.8322558,1.7047377,1.5488122,1.3707643,1.177771,0.9776119,0.7783553,0.5880331,0.41431695,0.26420945,0.14376122,0.057827473,0.009872198,0.0018283725,0.034020305,0.10515034,0.21235126,0.35132504,0.51642776,0.701023,0.89766985,1.0984416,1.2952452,1.4801476,1.6456954,1.7852159,1.8930845,1.9649535,1.9979258,1.9906722,1.9434853,1.8582668,1.7384522,1.588871,1.4155529,1.2254839,1.0263257,0.8261065,0.6328968,0.4544592,0.29804045,0.16991735,0.07525432,0.017867327,6.9499016e-5,0.022578359,0.084486485,0.18329847,0.31503123,0.47437465,0.6549058,0.8493475,1.0498618,1.2483664,1.4368593,1.6077428,1.7541283,1.8701155,1.9510288,1.9936068,1.9961329,1.9585054,1.882227,1.770395,1.6275089,1.4593282,1.2726322,1.0749466,0.87424004,0.67860276,0.49592078,0.33355796,0.19805902,0.094885886,0.028197408,0.0006816983,0.013448,0.06598157,0.15616494,0.28036284,0.4335689,0.60960746,0.80138254,1.0011637,1.200928,1.3925624,1.5683727,1.7212725,1.845098,1.9348581,1.9869347,1.9992285,1.9712439,1.904109,1.80053,1.6646821,1.5020413,1.3191634,1.1234202,0.92270213,0.7250998,0.53857857,0.37065697,0.22810382,0.11666536,0.040833592,0.0036627054,0.0066622496,0.049702644,0.13104904,0.24742228,0.39413154,0.56526303,0.7539185,0.9524934,1.1529832,1.3473065,1.5276299,1.6866848,1.8180599,1.9164596,1.9779172,1.9999554,1.9816861,1.9238456,1.8287654,1.7002782,1.5435631,1.3649373,1.1715709,0.9713171,0.7722195,0.5823036,0.40922475,0.25995976,0.1405254,0.055735886,0.009009182,0.0022287965,0.035667956,0.10797876,0.21624649,0.35610682,0.5219222,0.7070086,0.9039053,1.1046755,1.3012264,1.4856348,1.6504678,1.7890806,1.8958998,1.9665868,1.9983114,1.9897945,1.9413797,1.8550184,1.7341917,1.5837702,1.4098172,1.2193447,1.0200306,0.8199091,0.6270469,0.4492182,0.29359132,0.1664393,0.07288766,0.01670736,0.00016307831,0.023921609,0.087025344,0.18693054,0.31963247,0.47974187,0.66082263,0.8555754,1.0561498,1.2544609,1.4425148,1.6127312,1.7582487,1.8732016,1.9529564,1.994298,1.9955599,1.9566915,1.8792592,1.7663846,1.6226175,1.453753,1.266598,1.0686965,0.868026,0.67267525,0.49049246,0.32887655,0.19431323,0.092226624,0.026731908,0.00046902895,0.014496744,0.068249464,0.15956056,0.28474933,0.4387694,0.61541235,0.8075578,1.0074606,1.2070625,1.3983179,1.5735173,1.7255986,1.8484315,1.9370644,1.9879249,1.9989628,1.9697329,1.9014004,1.7967405,1.6599644,1.4965856,1.3131896,1.1171691,0.9164257,0.719051,0.5330013,0.365776,0.22411591,0.113731265,0.03907162,0.0031464696,0.0074038506,0.05167228,0.13416725,0.25156343,0.39912874,0.57091475,0.75999695,0.9587536,1.1592029,1.3532044,1.5329684,1.6912488,1.8216653,1.9189609,1.9792137,1.999995,1.9804671,1.9214171,1.8252254,1.6957692,1.5382669,1.3590674,1.1653942,0.965054,0.7661224,0.5766183,0.40418047,0.25575984,0.13733906,0.053691685,0.008185506,0.0026687384,0.037353814,0.110842586,0.22017276,0.36093742,0.52746224,0.71303487,0.91017485,1.1109357,1.3072248,1.4911296,1.6552374,1.7929331,1.8986659,1.9681742,1.9986558,1.9888822,1.9392473,1.8517518,1.7299228,1.578671,1.4040933,1.2131969,1.0137347,0.8137188,0.62121177,0.44397354,0.2891484,0.16297728,0.07054609,0.015580654,0.0002965927,0.02530998,0.0896126,0.19061244,0.32423824,0.4851036,0.6667241,0.8617788,1.0624051,1.2605159,1.4481255,1.6176713,1.7623192,1.8762531,1.9548461,1.9949497,1.9949474,1.9548395,1.8762424,1.7623246,1.6176777,1.4481328,1.2605238,1.0624132,0.86178684,0.6667318,0.48511058,0.3242442,0.1906172,0.089616,0.025311828,0.00029677153,0.015579224,0.07054305,0.16297281,0.28916413,0.44399214,0.6212325,0.81374073,1.013757,1.2132188,1.4040858,1.5786643,1.7299173,1.8517475,1.9392445,1.9888809,1.9986563,1.9681761,1.8986695,1.792938,1.6552436,1.4911368,1.3072324,1.1109437,0.91018295,0.7130426,0.5274694,0.3609202,0.22015876,0.11083233,0.037347734,0.0026670694,0.008188367,0.053689003,0.13733494,0.2557544,0.40417397,0.5766109,0.7661145,0.9650458,1.1653862,1.3590598,1.53826,1.6957633,1.8252208,1.9214139,1.9804655,1.9999951,1.9792154,1.9189521,1.8216525,1.6912326,1.5329494,1.3531835,1.1591808,0.9587617,0.7600049,0.5709221,0.39913523,0.25156885,0.1341713,0.051674902,0.007404864,0.003145814,0.039069355,0.11372751,0.22411078,0.36576968,0.5329941,0.71904325,0.9164176,1.1171914,1.3132108,1.496605,1.6599813,1.7967541,1.9014101,1.9697309,1.9989624,1.9879262,1.9370673,1.8484358,1.7256043,1.573524,1.3983254,1.2070705,1.0074687,0.8075658,0.61541986,0.43877614,0.284755,0.15956497,0.068252444,0.014498115,0.0004697442,0.026737034,0.09223604,0.19432646,0.32889313,0.49051178,0.6726675,0.8680179,1.0686884,1.2665901,1.4537457,1.6226112,1.7663794,1.8792553,1.9566891,1.9955592,1.9942988,1.9529588,1.8732057,1.758254,1.6127377,1.442522,1.2544392,1.0561274,0.8555532,0.66080153,0.4797228,0.31961608,0.18693525,0.08702862,0.023923397,0.00016319752,0.01670587,0.07288456,0.16643476,0.29358554,0.44921148,0.6270393,0.81990105,1.0200225,1.2193367,1.4098097,1.5837636,1.7341862,1.85503,1.9413872,1.9897977,1.9983101,1.9665811,1.8958898,1.7890856,1.650474,1.485642,1.301234,1.1046836,0.9039134,0.70701635,0.5219293,0.35611308,0.21625155,0.10798246,0.0356701,0.002229333,0.00900811,0.055733263,0.14052123,0.25997484,0.4092428,0.5823239,0.7722413,0.97133946,1.171593,1.3649297,1.5435562,1.7002723,1.8287609,1.9238425,1.9816847,1.9999557,1.9779189,1.9164629,1.8180647,1.6866908,1.5276368,1.3473141,1.1529913,0.95250154,0.7539264,0.56527036,0.39411378,0.24740756,0.13103795,0.04969567,0.0066596866,0.0036646128,0.040831327,0.11666155,0.22809863,0.37065065,0.53857136,0.725092,0.922694,1.1234123,1.3191557,1.5020342,1.6646761,1.8005252,1.9041055,1.971242,1.9992281,1.9869361,1.9348502,1.8450861,1.721257,1.5683544,1.3925418,1.200906,1.0011718,0.8013905,0.60961497,0.43357557,0.2803685,0.15616935,0.06598449,0.013449311,0.0006814003,0.0281955,0.09488243,0.1980542,0.33355188,0.49591374,0.67859507,0.874232,1.074969,1.2726538,1.4593481,1.6275263,1.7704092,1.8822374,1.9585032,1.9961321,1.9936076,1.9510314,1.8701196,1.7541337,1.6077492,1.4368665,1.2483742,1.0498699,0.84935546,0.6549134,0.47438157,0.31503713,0.18330318,0.08448976,0.022580087,6.92606e-5,0.017871559,0.075262845,0.1699298,0.29805642,0.45447797,0.6328892,0.8260985,1.0263176,1.2254759,1.4155455,1.5888646,1.7384467,1.8582628,1.9434825,1.9906712,1.9979264,1.9649557,1.8930882,1.7852209,1.6457016,1.4801548,1.2952237,1.0984193,0.8976476,0.70100164,0.5164082,0.351308,0.21235627,0.10515398,0.03402239,0.0018288493,0.009871066,0.05782473,0.14375699,0.2642039,0.4143104,0.5880257,0.7783474,0.9776038,1.177763,1.3707566,1.5488052,1.704732,1.8322682,1.9262345,1.9828649,1.9998764,1.9765835,1.9139252,1.8144269,1.6820997,1.5222774,1.3414023,1.1467656,0.94621277,0.7478281,0.55960834,0.3891405,0.24329609,0.12795395,0.047763526,0.005957186,0.0042201877,0.042622447,0.11961609,0.2320975,0.37555647,0.5441669,0.73115164,0.92897356,1.1296585,1.3251169,1.5074701,1.6693674,1.8042829,1.9067783,1.9727219,1.9994557,1.985902,1.932607,1.8417193,1.7169023,1.5631874,1.3867707,1.1947635,0.9949056,0.7952529,0.6038535,0.42839754,0.2760105,0.15280712,0.063753605,0.012439609,0.00093364716,0.029699445,0.09757757,0.20183176,0.3382597,0.501362,0.6845641,0.8804813,1.0812162,1.2786773,1.4649051,1.6323929,1.7743891,1.8851703,1.9602708,1.9966632,1.9928808,1.9490662,1.8669989,1.7499835,1.6027367,1.4311938,1.2422698,1.0435799,0.8431335,0.64901024,0.46903515,0.310463,0.17968565,0.081974745,0.021268904,1.513958e-5,0.019070208,0.077665985,0.17344058,0.30253327,0.45974046,0.63872516,0.8322727,1.0325812,1.2316061,1.4212645,1.5939422,1.7426782,1.8614773,1.9455507,1.9915096,1.9975013,1.9632843,1.8902377,1.7813063,1.6408808,1.4746218,1.289231,1.0921814,0.8914162,0.6950279,0.5109328,0.34655178,0.20851088,0.102374434,0.032420754,0.0014680028,0.0107732415,0.05995363,0.14702672,0.26848274,0.4194258,0.59377146,0.78449196,0.9838995,1.1839559,1.3765973,1.5540583,1.7091854,1.8357258,1.9285784,1.9840006,1.9997582,1.9752163,1.9113638,1.8107748,1.6775041,1.5169234,1.3354771,1.140534,0.93992615,0.74173975,0.5539638,0.3841672,0.23919445,0.12488943,0.045859575,0.0052906275,0.004817784,0.044460237,0.12261993,0.23614627,0.38046318,0.54975325,0.7371925,0.93522537,1.1358693,1.3310363,1.5128596,1.6740098,1.8080089,1.9094151,1.9741633,1.9996436,1.9848287,1.9303161,1.8383029,1.7124982,1.557973,1.3809563,1.1885835,0.98860896,0.78909355,0.59807974,0.42326707,0.27170217,0.14949459,0.061570346,0.011473715,0.0012239814,0.031234324,0.10029513,0.2056225,0.34299374,0.50683004,0.69054574,0.8867354,1.0874906,1.2847192,1.4704709,1.637258,1.7783579,1.8880825,1.962009,1.9971573,1.992111,1.9470732,1.8638594,1.7458239,1.5977247,1.4255315,1.2361854,1.0373188,0.83694786,0.6431495,0.46370983,0.3059162,0.17610073,0.079496145,0.019996524,2.9802322e-7,0.020313501,0.080117345,0.17700112,0.30705947,0.46504992,0.64460385,0.83848363,1.038874,1.2376975,1.4269395,1.5989717,1.7468598,1.8646424,1.9475718,1.9923049,1.997039,1.9615746,1.8873519,1.7773607,1.6360344,1.46907,1.2831975,1.0859096,0.8851588,0.6890371,0.5054501,0.34179825,0.20467806,0.099616826,0.030849576,0.0011482239,0.011709988,0.062109172,0.15031421,0.27276963,0.42453927,0.5995054,0.7906152,0.99016523,1.1901118,1.3823949,1.559264,1.7135894,1.8391504,1.9308858,1.9850976,1.9996009,1.9738107,1.9087667,1.807091,1.6728365,1.5114965,1.3295386,1.1342969,0.93364185,0.7356617,0.54833686,0.37921828,0.23512304,0.12185961,0.043993473,0.0046634674,0.005454898,0.046335876,0.12565845,0.24022532,0.38541824,0.55538464,0.7432732,0.94151026,1.142105,1.3369716,1.518255,1.678648,1.811685,1.9120033,1.9755595,1.9997913,1.9837221,1.9279996,1.83487,1.7080872,1.5527619,1.375155,1.1824259,0.98234326,0.78297234,0.59234977,0.41815925,0.26742244,0.14621538,0.059423923,0.010546565,0.0015535355,0.032822788,0.10307503,0.20948178,0.34775388,0.51231766,0.69653964,0.8929939,1.0937616,1.2907497,1.476018,1.6420982,1.7822957,1.8909595,1.9637091,1.9976121,1.991302,1.9450331,1.8606703,1.7416146,1.5926647,1.4198248,1.230062,1.0310256,0.83073854,0.6372743,0.45843136,0.30141878,0.17256552,0.077065766,0.018768907,2.4914742e-5,0.021589398,0.082593024,0.1805768,0.3115911,0.47035474,0.65046805,0.84467083,1.0451349,1.2437795,1.4325975,1.6039778,1.7510121,1.8677735,1.9495554,1.9930685,1.9965324,1.9598267,1.8844309,1.7733841,1.6311628,1.4634995,1.2771529,1.0796344,0.8789059,0.6830586,0.49998707,0.33707076,0.20087677,0.09689498,0.029316783,0.0008663535,0.012690365,0.06431234,0.1536513,0.2771061,0.42970037,0.6052831,0.79677665,0.996462,1.1962899,1.3882055,1.5644729,1.7179866,1.8425586,1.9331677,1.9861612,1.9994031,1.9723597,1.906121,1.8033571,1.6682103,1.5061283,1.3236446,1.128115,0.92742115,0.7296529,0.5427821,0.3743416,0.231121,0.118864596,0.04216528,0.0040757656,0.0061314106,0.048249304,0.12873173,0.24433452,0.39039773,0.5610336,0.749364,0.9477975,1.1483351,1.3428935,1.52363,1.6832592,1.8153467,1.9145682,1.9769237,1.9999001,1.9825711,1.9256351,1.8313874,1.7036269,1.5475036,1.3693107,1.1762311,0.97604775,0.77682996,0.58660793,0.41304958,0.2631508,0.14295405,0.057304323,0.009654105,0.0019241571,0.034426093,0.1058498,0.21331614,0.3524933,0.5177711,0.70248723,0.89919597,1.0999681,1.2967105,1.4815462,1.6469127,1.7862025,1.893801,1.9653709,1.9980272,1.9904536,1.9429554,1.8574471,1.7373757,1.5875812,1.4141015,1.2239295,1.0247312,0.82453597,0.6314136,0.45314866,0.29692703,0.16904587,0.07466,0.017574072,8.922815e-5,0.022910118,0.08511704,0.18420231,0.31617194,0.47570628,0.65637463,0.85089433,1.0514244,1.2498815,1.438266,1.6089845,1.7551548,1.8708856,1.9515113,1.9937822,1.9959942,1.9580584,1.8815036,1.769416,1.6263137,1.457965,1.2711561,1.073417,0.87265784,0.67709273,0.49454385,0.33236963,0.19710714,0.094208896,0.027822554,0.00062412024,0.013709962,0.06655258,0.15702194,0.2814713,0.43488413,0.6110765,0.8029461,1.0027589,1.2024603,1.3940008,1.5696594,1.7223552,1.8459334,1.9354124,1.9871855,1.9991658,1.9708703,1.9034394,1.7995914,1.6635125,1.5006876,1.3176804,1.1218675,0.92114234,0.72359586,0.5371911,0.36944187,0.22711009,0.11593306,0.04039228,0.0035327077,0.0068401694,0.05018139,0.13180923,0.24843335,0.39535272,0.566645,0.75546485,0.9540867,1.1545594,1.3488017,1.5289842,1.6878436,1.8189764,1.9170966,1.9782493,1.9999692,1.981381,1.923234,1.8278718,1.6991386,1.5422235,1.3634517,1.1700294,0.96975327,0.77069634,0.58088255,0.40796316,0.2589084,0.13972664,0.055222034,0.008800864,0.002334416,0.03608322,0.10868704,0.21721911,0.3573047,0.52329695,0.7085048,0.9054627,1.1062313,1.3027178,1.4870019,1.6516552,1.7900407,1.8965802,1.9669789,1.9983993,1.9895748,1.940861,1.8542218,1.7331078,1.5824742,1.4083617,1.2177882,1.0184358,0.8183403,0.6255674,0.4478876,0.29246318,0.16555917,0.07229102,0.016418278,0.00019311905,0.02426964,0.0876773,0.18786019,0.32077992,0.48107868,0.66229486,0.85712373,1.0577118,1.2559736,1.4439173,1.613967,1.7592678,1.8739631,1.9534295,1.9944636,1.9954114,1.9562348,1.8785129,1.7653787,1.6213925,1.4523582,1.2650898,1.0671356,0.8664753,0.6711973,0.4891731,0.32774007,0.19340545,0.091584265,0.026380718,0.00042325258,0.01475817,0.068829834,0.16042602,0.28586495,0.4400903,0.6168852,0.80912334,1.0090555,1.2086227,1.3997805,1.5748234,1.7266953,1.8492746,1.9376202,1.9881709,1.9988889,1.9693422,1.9007219,1.795794,1.6587882,1.495227,1.3117034,1.1156152,0.9148667,0.71754986,0.53161836,0.36456716,0.22312981,0.113007724,0.038639724,0.0030236244,0.007595122,0.05216986,0.13495111,0.25260198,0.40038007,0.57232845,0.7615161,0.96031684,1.1607172,1.3546392,1.5342658,1.6923565,1.8225386,1.9195647,1.979536,1.9999988,1.9801521,1.9207962,1.8243234,1.6946225,1.536922,1.3575783,1.1638209,0.9634599,0.76457185,0.5751738,0.40290022,0.25469542,0.13653338,0.053177238,0.007986963,0.0027841926,0.037778556,0.11155963,0.22115314,0.36214155,0.52884173,0.7145339,0.9117332,1.1124904,1.3087132,1.492492,1.6564186,1.7938855,1.8993511,1.9685645,1.9987357,1.9886483,1.938709,1.850931,1.7288525,1.5773942,1.4026616,1.2116978,1.0122007,0.8122118,0.61979246,0.44269913,0.28807026,0.16210556,0.06995875,0.015301406,0.00033670664,0.025667846,0.09027374,0.1915502,0.32541484,0.4864716,0.6682284,0.86335874,1.063997,1.2620556,1.4495509,1.618925,1.7633506,1.877006,1.9553097,1.9951055,1.9947891,1.9543734,1.8754873,1.761311,1.6164465,1.4467335,1.2590129,1.0608517,0.8602375,0.6652571,0.48376995,0.3230918,0.18969941,0.08896977,0.0249632,0.00025987625,0.015855491,0.071121395,0.16382992,0.29024392,0.44526786,0.62265265,0.81524813,1.0152909,1.2147173,1.4054885,1.5799644,1.7310066,1.8525822,1.9397907,1.9891169,1.9985723,1.9677758,1.8979688,1.7919651,1.654038,1.4897467,1.3057141,1.1093583,0.9085944,0.71151507,0.5260643,0.3597176,0.21918035,0.110117495,0.036925316,0.0025541186,0.008389413,0.05419594,0.13812733,0.2568003,0.4054312,0.57802886,0.76763594,0.9666095,1.166929,1.3605196,1.539578,1.6968863,1.8261034,1.9220208,1.980772,1.999989,1.9788969,1.918346,1.8207772,1.6901232,1.5316508,1.3517479,1.1576662,0.95716804,0.7584567,0.56948185,0.39786094,0.25051194,0.13337433,0.05116999,0.0072124004,0.003273487,0.039512098,0.11446738,0.22511804,0.36700374,0.5344051,0.7205744,0.9180072,1.118745,1.3146963,1.4979624,1.6611559,1.7976985,1.9020865,1.9701117,1.9990324,1.9876826,1.9365199,1.8476067,1.7245268,1.5722417,1.3968898,1.2055396,1.0059042,0.80603075,0.6139761,0.43748188,0.28366244,0.15871817,0.067685485,0.014233887,0.00051790476,0.02709055,0.09288061,0.19523609,0.33003122,0.49183238,0.67417514,0.8695992,1.0702796,1.2681272,1.4551666,1.6238585,1.7674031,1.8800141,1.9571521,1.995708,1.9941275,1.9524741,1.8724272,1.7572131,1.6114762,1.4410911,1.2529259,1.0545653,0.8540053,0.6593301,0.4783873,0.3184703,0.18602544,0.08639139,0.023584366,0.00013613701,0.016991854,0.07347208,0.1673001,0.29469377,0.45051795,0.62849146,0.8214402,1.0215867,1.220863,1.4112364,1.5850332,1.7352475,1.8558245,1.9419036,1.9900151,1.9982197,1.9661868,1.8952072,1.7881048,1.6492616,1.484247,1.2997127,1.1030972,0.9023258,0.70549166,0.5205289,0.35489345,0.21526188,0.10726261,0.035249114,0.0021241307,0.009222984,0.056259513,0.14133763,0.261028,0.4105059,0.58374596,0.77376497,0.97290343,1.1731341,1.3663858,1.5448687,1.7013884,1.8296354,1.9244403,1.9819815,1.9999397,1.9775907,1.9158356,1.8171638,1.6855526,1.5263071,1.3458464,1.1514449,0.9509388,0.7524103,0.56386197,0.3928941,0.24639833,0.13027978,0.04921925,0.0064840913,0.0037969947,0.041283667,0.1174103,0.22911364,0.37189096,0.539987,0.7266259,0.9242844,1.1249949,1.320667,1.5034131,1.665867,1.80148,1.904786,1.9716206,1.9992895,1.9866778,1.9342935,1.8442485,1.7201724,1.5670664,1.3911023,1.1993731,0.9996073,0.7998574,0.60817504,0.43228692,0.27928305,0.15533084,0.06542671,0.013194799,0.0007404089,0.028565586,0.09554875,0.19898981,0.33471918,0.49726558,0.68007696,0.8757843,1.0764986,1.2741294,1.4607102,1.6287199,1.7713864,1.8829587,1.9589393,1.9962711,1.9934263,1.9505372,1.8693323,1.7530853,1.6064817,1.4354312,1.2468288,1.0482768,0.8477788,0.65341675,0.47302532,0.31387585,0.18238372,0.08384925,0.022244275,5.209446e-5,0.018167198,0.07585949,0.17080331,0.29917163,0.45578986,0.63434494,0.8276394,1.0278816,1.2269999,1.416968,1.5901283,1.7395009,1.8590646,1.9439999,1.9908831,1.9978244,1.9645439,1.8923833,1.7842512,1.6445062,1.4787817,1.2937578,1.0968926,0.89612174,0.6995381,0.515066,0.3501413,0.21137446,0.10444313,0.03361112,0.0017337203,0.010095835,0.058360457,0.1445821,0.26528507,0.415604,0.58947957,0.77990305,0.97919846,1.1793324,1.3722376,1.550138,1.7058628,1.8331344,1.9268231,1.9831519,1.9998505,1.9762458,1.9132891,1.813518,1.6809547,1.5209424,1.3399314,1.1452178,0.94465053,0.7463144,0.5582042,0.38790256,0.24227417,0.12718928,0.047286928,0.005787909,0.0043649673,0.04307556,0.12035918,0.23310065,0.37675542,0.5455328,0.73262954,0.9305038,1.1311793,1.3265672,1.5088439,1.6705515,1.8052299,1.9074497,1.9730906,1.999507,1.9856339,1.9320302,1.840857,1.7157893,1.5618687,1.3852993,1.1931988,0.9933105,0.79369193,0.60238945,0.4271145,0.27493215,0.15197694,0.06320506,0.012194812,0.0010024309,0.030079126,0.09825277,0.2027753,0.3394335,0.5027188,0.6860492,0.8820348,1.0827755,1.2801795,1.4662898,1.633604,1.7753781,1.8858972,1.9607062,1.9967897,1.9926932,1.9485817,1.8662336,1.7489679,1.6015118,1.4298092,1.2407812,1.0420474,0.8415584,0.6475171,0.4676842,0.30930865,0.17877448,0.08134341,0.020942926,7.6293945e-6,0.019381464,0.07828349,0.17433941,0.3036772,0.46108335,0.640213,0.8338454,1.0341754,1.2331278,1.422683,1.5952001,1.743725,1.8622707,1.9460588,1.9917119,1.9973896,1.962863,1.889524,1.7803288,1.639679,1.4732441,1.287733,1.0906235,0.88986105,0.69353825,0.50956875,0.34536827,0.20755559,0.10168594,0.032026768,0.001386106,0.010998964,0.060477912,0.14782846,0.26952952,0.42067552,0.5952295,0.78604984,0.9854943,1.1855236,1.3780744,1.5553854,1.710309,1.8366005,1.9291692,1.9842834,1.9997219,1.9748621,1.9107062,1.8098402,1.67633,1.5155573,1.3340027,1.1389848,0.9383645,0.74022865,0.552564,0.38293523,0.23818004,0.12413335,0.045392394,0.005131066,0.0049723983,0.04492271,0.12337166,0.23715699,0.38169205,0.5511508,0.7387024,0.9367867,1.1374192,1.3325124,1.5142021,1.6751647,1.8089118,1.9100521,1.9745086,1.9996834,1.9845614,1.9297523,1.8374655,1.711378,1.5566486,1.3794811,1.1870167,0.987014,0.78753465,0.5966197,0.42196476,0.2706101,0.14865673,0.061020494,0.011233985,0.0013041496,0.031631112,0.1009925,0.20659238,0.34417403,0.5081917,0.6920339,0.88829,1.0890491,1.2862186,1.4718509,1.638463,1.7793392,1.8888006,1.962435,1.9972742,1.9919137,1.9465698,1.8630702,1.7447808,1.5964696,1.4241152,1.2346648,1.0357553,0.83540446,0.6416884,0.4624157,0.30481267,0.17523229,0.078897774,0.019692421,2.682209e-6,0.020634651,0.08074409,0.17790824,0.30821043,0.46639824,0.6460953,0.84005797,1.0404679,1.2392465,1.4283813,1.6002482,1.7479196,1.8654425,1.9480802,1.9925013,1.9969151,1.9611437,1.8866293,1.7763755,1.6348262,1.4676876,1.2816967,1.0843508,0.8836047,0.6875505,0.5040909,0.34062117,0.20373058,0.09893721,0.030465126,0.0010744929,0.011949897,0.062653124,0.15114021,0.27384442,0.42581952,0.6009395,0.7921454,0.99172974,1.1916475,1.3838401,1.5605602,1.7146845,1.8400004,1.9314562,1.9853759,1.9995537,1.9734397,1.9080871,1.80613,1.6716783,1.5101516,1.328061,1.1327463,0.93208086,0.73415315,0.5469415,0.37799245,0.23411614,0.12111217,0.04353571,0.0045137405,0.0056192875,0.046807766,0.12641883,0.24124348,0.38665318,0.55678654,0.7447856,0.9430722,1.1436535,1.3384442,1.5195925,1.6797962,1.8125978,1.9126439,1.9759021,1.999822,1.9834397,1.9274156,1.8340077,1.7069817,1.5514574,1.3737043,1.1808873,0.980779,0.7814454,0.5909216,0.41688752,0.26635838,0.14537019,0.058873177,0.010312438,0.0016453862,0.033221543,0.10376793,0.21044093,0.3489406,0.51368415,0.6980307,0.8945496,1.095319,1.2922463,1.4773933,1.6432967,1.7832694,1.8916688,1.9641255,1.9977189,1.9910948,1.9445202,1.8598727,1.7405641,1.5914037,1.4184043,1.2285392,1.0294617,0.8291968,0.6358168,0.45711678,0.30030012,0.17168796,0.07646459,0.01846838,3.71933e-5,0.021913946,0.08321673,0.18147457,0.31272674,0.47168243,0.6519344,0.84621656,1.0466977,1.2452966,1.4340626,1.6052725,1.7520845,1.8685802,1.950064,1.9932512,1.9964011,1.9593866,1.8836997,1.7723913,1.6299484,1.4621127,1.2756493,1.0780747,0.877353,0.6815751,0.4986328,0.33590025,0.19993716,0.09622419,0.02894193,0.00080245733,0.012940049,0.06486547,0.15448564,0.27818805,0.4309863,0.6067211,0.7983088,0.9980265,1.1978238,1.3896469,1.5657636,1.7190747,1.8434002,1.9337288,1.9864194,1.9993479,1.9719932,1.9054581,1.8024244,1.6670456,1.5047784,1.3221639,1.1265632,0.9257999,0.72808814,0.541337,0.3730743,0.23008263,0.118125856,0.041716933,0.0039358735,0.0063055754,0.048730552,0.12950069,0.24536014,0.3916387,0.5624399,0.750879,0.94935995,1.1498822,1.3443627,1.5249623,1.6844008,1.8162516,1.9151998,1.9772568,1.999921,1.9822791,1.9250419,1.8305169,1.7025143,1.5461936,1.3678563,1.1746908,0.9744837,0.77530515,0.58518386,0.41178358,0.26209402,0.14214897,0.056783438,0.009438455,0.0020223856,0.034834266,0.10655147,0.21428299,0.3536864,0.5191958,0.7040396,0.9008134,1.1015854,1.2982625,1.4829167,1.6481049,1.7871685,1.8945016,1.9657779,1.9981242,1.9902368,1.9424334,1.856641,1.7363181,1.5863144,1.4126768,1.2224045,1.0231671,0.8229959,0.6299596,0.45183945,0.29581535,0.16817647,0.07406801,0.01728326,0.00011134148,0.023244321,0.085749745,0.18510813,0.31731433,0.47703922,0.6578443,0.85244155,1.0529867,1.2513962,1.4396719,1.6102247,1.7561796,1.8716534,1.9519913,1.9939551,1.9958531,1.9576087,1.8807638,1.7683766,1.6250455,1.4565194,1.269591,1.0717956,0.87110615,0.6756124,0.49319446,0.3312056,0.19617546,0.093547046,0.027457237,0.0005700588,0.013969302,0.06711495,0.15786463,0.2825603,0.43617558,0.6125183,0.8044802,1.0043234,1.2039922,1.3954383,1.5709445,1.7234364,1.8467667,1.9359645,1.987434,1.9991007,1.9704942,1.9027675,1.7986509,1.6623411,1.4993327,1.3161964,1.1203145,0.9195828,0.7220926,0.53580475,0.36822832,0.22611827,0.115202904,0.03995323,0.0034025311,0.0070241094,0.050691128,0.13261706,0.24950665,0.3966483,0.5681106,0.7569822,0.9556497,1.1561049,1.3502676,1.5303112,1.6889783,1.8198731,1.9177192,1.9785726,1.9999803,1.9810793,1.9226317,1.8269932,1.698019,1.5409083,1.3619937,1.1684874,0.9681895,0.76917374,0.5794625,0.406703,0.25785887,0.13893008,0.054710448,0.00859499,0.0024424791,0.03650093,0.10939747,0.21819371,0.35850412,0.52467287,0.71000177,0.90702033,1.1077869,1.3042086,1.4883678,1.6528412,1.7909989,1.897272,1.967392,1.9984899,1.9893394,1.940309,1.8533754,1.7320428,1.5812018,1.4069331,1.2162609,1.0168716,0.816802,0.62411714,0.4465838,0.2913584,0.164698,0.07170808,0.016137123,0.00022506714,0.02461344,0.08831906,0.18877399,0.32192904,0.4824167,0.6637679,0.8586724,1.0592737,1.2574857,1.4453187,1.615201,1.7602851,1.8747224,1.9539001,1.9946268,1.9952605,1.9557759,1.8777645,1.7643708,1.6201658,1.4509623,1.2635808,1.0655745,0.8649249,0.6697201,0.48782873,0.32658267,0.19244564,0.090905845,0.02601111,0.0003772974,0.015037715,0.06940138,0.161277,0.28696102,0.4413873,0.61833084,0.81065935,1.01062,1.2101526,1.4012141,1.5761029,1.7277691,1.8500996,1.938163,1.9884095,1.9988139,1.9689566,1.9000412,1.7948456,1.6576104,1.4938672,1.3102164,1.114061,0.91330796,0.7160493,0.53023666,0.36335987,0.22214562,0.11228627,0.038210213,0.0029032826,0.0077887774,0.052669764,0.13573712,0.25364238,0.4016329,0.5737432,0.7630358,0.9618802,1.1622612,1.3561015,1.5356393,1.6935284,1.823462,1.9202023,1.9798498,2.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/vercosf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..2ceaf6d31898
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/fixtures/julia/runner.jl
@@ -0,0 +1,86 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import JSON
+
+"""
+ gen( domain, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `domain`: domain
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> x = range( -1000.0, stop = 1000.0, length = 2001 );
+julia> gen( x, \"data.json\" );
+```
+"""
+function gen( domain, name )
+ x = collect( domain );
+ y = 1.0f0 .+ cos.( x );
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("x", x),
+ ("expected", y)
+ ]);
+
+ # Based on the script directory, create an output filepath:
+ filepath = joinpath( dir, name );
+
+ # Write the data to the output filepath as JSON:
+ outfile = open( filepath, "w" );
+ write( outfile, JSON.json(data) );
+ write( outfile, "\n" );
+ close( outfile );
+end
+
+# Get the filename:
+file = @__FILE__;
+
+# Extract the directory in which this file resides:
+dir = dirname( file );
+
+# Negative medium sized values:
+x = Float32.( range( -256.0*pi, stop = 0.0, length = 4000 ) );
+gen( x, "medium_negative.json" );
+
+# Positive medium sized values:
+x = Float32.( range( 0.0, stop = 256.0*pi, length = 4000 ) );
+gen( x, "medium_positive.json" );
+
+# Negative large values:
+x = Float32.( range( -2.0^20*(pi/2.0), stop = -2.0^60*(pi/2.0), length = 4000 ) );
+gen( x, "large_negative.json" );
+
+# Positive large values:
+x = Float32.( range( 2.0^20*(pi/2.0), stop = 2.0^60*(pi/2.0), length = 4000 ) );
+gen( x, "large_positive.json" );
+
+# Negative huge values:
+x = Float32.( range( -2.0^60*(pi/2.0), stop = -2.0^120*(pi/2.0), length = 4000 ) );
+gen( x, "huge_negative.json" );
+
+# Positive huge values:
+x = Float32.( range( 2.0^60*(pi/2.0), stop = 2.0^120*(pi/2.0), length = 4000 ) );
+gen( x, "huge_positive.json" );
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.js b/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.js
new file mode 100644
index 000000000000..12dcc4325dee
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.js
@@ -0,0 +1,173 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var vercosf = 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 vercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) {
+ var v = vercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) {
+ var v = vercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) {
+ var v = vercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.native.js
new file mode 100644
index 000000000000..98067e8eed81
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/vercosf/test/test.native.js
@@ -0,0 +1,182 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var resolve = require( 'path' ).resolve;
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var vercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( vercosf 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 vercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the versed cosine (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 = vercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) {
+ var v = vercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) {
+ var v = vercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) {
+ var v = vercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});