From 2874debc724d598bac00eb680c3223a3aa654bb1 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Mon, 28 Oct 2024 22:45:01 +0530 Subject: [PATCH 1/9] feat: add math/base/special/fmodf --- .../@stdlib/math/base/special/fmodf/LICENSE | 192 ++++++++++++++ .../@stdlib/math/base/special/fmodf/README.md | 218 ++++++++++++++++ .../base/special/fmodf/benchmark/benchmark.js | 54 ++++ .../fmodf/benchmark/benchmark.native.js | 63 +++++ .../special/fmodf/benchmark/c/native/Makefile | 146 +++++++++++ .../fmodf/benchmark/c/native/benchmark.c | 138 ++++++++++ .../math/base/special/fmodf/binding.gyp | 170 ++++++++++++ .../math/base/special/fmodf/docs/repl.txt | 34 +++ .../base/special/fmodf/docs/types/index.d.ts | 57 ++++ .../base/special/fmodf/docs/types/test.ts | 56 ++++ .../base/special/fmodf/examples/c/Makefile | 146 +++++++++++ .../base/special/fmodf/examples/c/example.c | 38 +++ .../math/base/special/fmodf/examples/index.js | 30 +++ .../math/base/special/fmodf/include.gypi | 53 ++++ .../include/stdlib/math/base/special/fmodf.h | 38 +++ .../math/base/special/fmodf/lib/index.js | 55 ++++ .../math/base/special/fmodf/lib/main.js | 66 +++++ .../math/base/special/fmodf/lib/native.js | 67 +++++ .../math/base/special/fmodf/manifest.json | 93 +++++++ .../math/base/special/fmodf/package.json | 64 +++++ .../math/base/special/fmodf/src/Makefile | 70 +++++ .../math/base/special/fmodf/src/addon.c | 23 ++ .../math/base/special/fmodf/src/main.c | 177 +++++++++++++ .../special/fmodf/test/fixtures/julia/REQUIRE | 2 + .../test/fixtures/julia/large_small.json | 1 + .../fixtures/julia/negative_negative.json | 1 + .../fixtures/julia/negative_positive.json | 1 + .../fixtures/julia/positive_negative.json | 1 + .../fmodf/test/fixtures/julia/runner.jl | 102 ++++++++ .../test/fixtures/julia/small_large.json | 1 + .../test/fixtures/julia/small_small.json | 1 + .../fixtures/julia/subnormal_results.json | 1 + .../math/base/special/fmodf/test/test.js | 236 +++++++++++++++++ .../base/special/fmodf/test/test.native.js | 245 ++++++++++++++++++ 34 files changed, 2640 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/LICENSE create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/include/stdlib/math/base/special/fmodf.h create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/subnormal_results.json create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/LICENSE b/lib/node_modules/@stdlib/math/base/special/fmodf/LICENSE new file mode 100644 index 000000000000..a7566ad6f2c3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/LICENSE @@ -0,0 +1,192 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + +DEPENDENCIES & ATTRIBUTION + +The library links against the following external libraries or contains +implementations from the following external libraries, which have their own +licenses: + +* FreeBSD + +Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunPro, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/README.md b/lib/node_modules/@stdlib/math/base/special/fmodf/README.md new file mode 100644 index 000000000000..fd8c97f71374 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/README.md @@ -0,0 +1,218 @@ + + +# Modulus Function + +> [Modulus function][modulus-function]. + +
+ +The [modulus function][modulus-function] is defined as + + + +```math +z = x%y +``` + + + +where `x` is the **dividend** and `y` is the **divisor**. + +
+ + + +
+ +## Usage + +```javascript +var fmodf = require( '@stdlib/math/base/special/fmodf' ); +``` + +#### fmodf( x, y ) + +Evaluates the [modulus function][modulus-function] for single-precision floating-point numbers. + +```javascript +var v = fmodf( 8.0, 3.0 ); +// returns 2.0 + +v = fmodf( 9.0, 3.0 ); +// returns 0.0 + +v = fmodf( 8.9, 3.0 ); +// returns 2.9 + +v = fmodf( NaN, 3.0 ); +// returns NaN + +v = fmodf( 5.0, NaN ); +// returns NaN + +v = fmodf( NaN, NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var randu = require( '@stdlib/random/base/randu' ); +var roundf = require( '@stdlib/math/base/special/roundf' ); +var fmodf = require( '@stdlib/math/base/special/fmodf' ); + +var x; +var y; +var i; + +for ( i = 0; i < 100; i++ ) { + x = roundf( randu() * 10.0 ); + y = roundf( randu() * 10.0 ) - 5.0; + console.log( '%d^%d = %d', x, y, fmodf( x, y ) ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/fmodf.h" +``` + +#### stdlib_base_fmodf( x, y ) + +Evaluates the modulus function for single-precision floating-point numbers. + +```c +float out = stdlib_base_fmodf( 8.9f, 3.0f ); +// returns 2.9f + +out = stdlib_base_fmodf( 4.0f, 2.0f ); +// returns 0.0f +``` + +The function accepts the following arguments: + +- **x**: `[in] float` dividend. +- **y**: `[in] float` divisor. + +```c +float stdlib_base_fmodf( const float x, const float y ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/fmodf.h" +#include +#include + +int main( void ) { + float out; + float x; + float y; + int i; + + for ( i = 0; i < 100; i++ ) { + x = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ); + y = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ) - 5.0f; + out = stdlib_base_fmodf( x, y ); + printf( "fmodf(%f, %f) = %f\n", x, y, out ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.js new file mode 100644 index 000000000000..9c7fab9ba2b2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.js @@ -0,0 +1,54 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 randu = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var pkg = require( './../package.json' ).name; +var fmodf = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var z; + var i; + + x = randu( 100, 0.0, 100.0 ); + y = randu( 100, -50.0, 50.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + z = fmodf( x[ i % x.length ], y[ i % y.length ] ); + if ( isnanf( z ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( z ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..ac785a10f88a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/benchmark.native.js @@ -0,0 +1,63 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 randu = 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 fmodf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( fmodf instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var z; + var i; + + x = randu( 100, 0.0, 100.0 ); + y = randu( 100, -50.0, 50.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + z = fmodf( x[ i % x.length ], y[ i % y.length ] ); + if ( isnanf( z ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( z ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..f69e9da2b4d3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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/fmodf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..0aec212097da --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/benchmark/c/native/benchmark.c @@ -0,0 +1,138 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/fmodf.h" +#include +#include +#include +#include +#include + +#define NAME "fmodf" +#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 [0,1). +* +* @return random number +*/ +static float rand_float( void ) { + int r = rand(); + return (float)r / ( (float)RAND_MAX + 1.0f ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + float x[ 100 ]; + float y[ 100 ]; + double t; + float z; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = ( 100.0f * rand_float() ) - 0.0f; + y[ i ] = ( 100.0f * rand_float() ) - 50.0f; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + z = stdlib_base_fmodf( x[ i % 100 ], y[ i % 100 ] ); + if ( z != z ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( z != z ) { + 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/fmodf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/fmodf/binding.gyp new file mode 100644 index 000000000000..ec3992233442 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 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/fmodf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt new file mode 100644 index 000000000000..acaf52903876 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt @@ -0,0 +1,34 @@ + +{{alias}}( x, y ) + Evaluates the modulus function for single-precision floating-point numbers. + + Parameters + ---------- + x: number + Dividend. + + y: number + Divisor. + + Returns + ------- + z: number + Remainder. + + Examples + -------- + > var y = {{alias}}( 8.0, 3.0 ) + 2.0 + > y = {{alias}}( 9.0, 3.0 ) + 0.0 + > y = {{alias}}( 8.9, 3.0 ) + 2.9 + > y = {{alias}}( NaN, 3.0 ) + NaN + > y = {{alias}}( 5.0, NaN ) + NaN + > y = {{alias}}( NaN, NaN ) + NaN + + See Also + -------- diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/index.d.ts new file mode 100644 index 000000000000..4c2d41362803 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/index.d.ts @@ -0,0 +1,57 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 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 + +/** +* Evaluates the modulus function for single-precision floating-point numbers. +* +* @param x - dividend +* @param y - divisor +* @returns remainder +* +* @example +* var v = fmodf( 8.0, 3.0 ); +* // returns 2.0 +* +* @example +* var v = fmodf( 9.0, 3.0 ); +* // returns 0.0 +* +* @example +* var v = fmodf( 8.9, 3.0 ); +* // returns 2.9 +* +* @example +* var v = fmodf( NaN, 3.0 ); +* // returns NaN +* +* @example +* var v = fmodf( 5.0, NaN ); +* // returns NaN +* +* @example +* var v = fmodf( NaN, NaN ); +* // returns NaN +*/ +declare function fmodf( x: number, y: number ): number; + + +// EXPORTS // + +export = fmodf; diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/test.ts new file mode 100644 index 000000000000..6ecaab92d445 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/types/test.ts @@ -0,0 +1,56 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 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 fmodf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + fmodf( 8, 2 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided values other than two numbers... +{ + fmodf( true, 3 ); // $ExpectError + fmodf( false, 2 ); // $ExpectError + fmodf( '5', 1 ); // $ExpectError + fmodf( [], 1 ); // $ExpectError + fmodf( {}, 2 ); // $ExpectError + fmodf( ( x: number ): number => x, 2 ); // $ExpectError + + fmodf( 9, true ); // $ExpectError + fmodf( 9, false ); // $ExpectError + fmodf( 5, '5' ); // $ExpectError + fmodf( 8, [] ); // $ExpectError + fmodf( 9, {} ); // $ExpectError + fmodf( 8, ( x: number ): number => x ); // $ExpectError + + fmodf( [], true ); // $ExpectError + fmodf( {}, false ); // $ExpectError + fmodf( false, '5' ); // $ExpectError + fmodf( {}, [] ); // $ExpectError + fmodf( '5', ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + fmodf(); // $ExpectError + fmodf( 3 ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/Makefile new file mode 100644 index 000000000000..6aed70daf167 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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/fmodf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/example.c new file mode 100644 index 000000000000..8aae9e7d45b8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/c/example.c @@ -0,0 +1,38 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/fmodf.h" +#include +#include + +int main( void ) { + float x[ 100 ]; + float y[ 100 ]; + float out; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ); + y[ i ] = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ) - 5.0f; + } + + for ( i = 0; i < 100; i++ ) { + out = stdlib_base_fmodf( x[ i ], y[ i ] ); + printf( "fmodf(%f, %f) = %f\n", x[ i ], y[ i ], out ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/index.js new file mode 100644 index 000000000000..5b519dd727f2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/examples/index.js @@ -0,0 +1,30 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var fmodf = require( './../lib' ); + +var x = discreteUniform( 10, 0.0, 100.0 ); +var y = discreteUniform( 10, -50.0, 50.0 ); +var i; + +for ( i = 0; i < 10; i++ ) { + console.log( '%f%%%f = %f', x[ i ], y[ i ], fmodf( x[ i ], y[ i ] ) ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/include.gypi b/lib/node_modules/@stdlib/math/base/special/fmodf/include.gypi new file mode 100644 index 000000000000..575cb043c0bf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "math.fmod", + "fmodf", + "modulus", + "function" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile new file mode 100644 index 000000000000..bcf18aa46655 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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/fmodf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/fmodf/src/addon.c new file mode 100644 index 000000000000..f9128e4d351b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/addon.c @@ -0,0 +1,23 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/fmodf.h" +#include "stdlib/math/base/napi/binary.h" + +// cppcheck-suppress shadowFunction +STDLIB_MATH_BASE_NAPI_MODULE_FF_F( stdlib_base_fmodf ) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c new file mode 100644 index 000000000000..b7b2121e7f6a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c @@ -0,0 +1,177 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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. +* +* +* ## Notice +* +* The following copyright and license were part of the original implementation available as part of [Openlibm]{@link https://github.com/JuliaMath/openlibm/blob/master/src/e_fmodf.c}. The implementation follows the original, but has been modified for use in stdlib. +* +* ```text + * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + * + * Developed at SunSoft, a Sun Microsystems, Inc. business. + * Permission to use, copy, modify, and distribute this + * software is freely granted, provided that this notice + * is preserved. +* ``` +*/ + +#include "stdlib/math/base/special/fmodf.h" +#include "stdlib/number/float32/base/to_word.h" +#include "stdlib/number/float32/base/from_word.h" +#include "stdlib/constants/float32/sign_mask.h" +#include "stdlib/constants/float32/abs_mask.h" +#include "stdlib/constants/float32/exponent_mask.h" +#include "stdlib/constants/float32/smallest_normal.h" +#include "stdlib/constants/float32/exponent_bias.h" +#include + +/** +* Evaluates the modulus function for single-precision floating-point numbers. +* +* @param x dividend +* @param y divisor +* @return remainder +* +* @example +* float out = stdlib_base_fmodf( 8.9f, 3.0f ); +* // returns 2.9f +*/ +float stdlib_base_fmodf( const float x, const float y ) { + const float ZERO[] = { 0.0f, -0.0f }; + uint32_t uhx; + uint32_t uhy; + int32_t hx; + int32_t hy; + int32_t hz; + int32_t ix; + int32_t iy; + int32_t sx; + int32_t n; + int32_t i; + float xc; + + stdlib_base_float32_to_word( x, &uhx); + hx = (int32_t)uhx; + stdlib_base_float32_to_word( y, &uhy ); + hy = (int32_t)uhy; + + // sign of x + sx = hx & STDLIB_CONSTANT_FLOAT32_SIGN_MASK; + + // |x| + hx ^= sx; + + // |y| + hy &= STDLIB_CONSTANT_FLOAT32_ABS_MASK; + + // Purge off exception values + if ( ( hy == 0 ) || ( hx >= STDLIB_CONSTANT_FLOAT32_EXPONENT_MASK ) || ( hy > STDLIB_CONSTANT_FLOAT32_EXPONENT_MASK ) ) { + // y=0, x not finite, or y is NaN + return ( x * y ) / ( x * y ); + } + if ( hx < hy ) { + // |x|<|y| return x + return x; + } + if ( hx == hy ) { + // |x|=|y| return x*0 + return ZERO[ (uint32_t)sx >> 31 ]; + } + + // Determine ix = ilogb(x) + if ( hx < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + // subnormal x + ix = -126; + for ( i = ( hx << 8 ); i > 0; i <<= 1 ) { + ix -= 1; + } + } else { + ix = ( hx >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS; + } + + // determine iy = ilogb(y) + if ( hy < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + // subnormal y + iy = -126; + for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) { + iy -= 1; + } + } else iy = ( hy >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS; + + // set up {hx,lx}, {hy,ly} and align y to x + if ( ix >= -126 ) { + hx = STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL | ( 0x007fffff & hx ); + } else { + // subnormal x, shift x to normal + n = -126 - ix; + hx = hx << n; + } + if ( iy >= -126 ) { + hy = STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL | ( 0x007fffff & hy ); + } else { + // subnormal y, shift y to normal + n = -126 - iy; + hy = hy << n; + } + + // Fixed point fmod + n = ix - iy; + while ( n-- ) { + hz = hx - hy; + if ( hz < 0 ) { + hx = hx + hx; + } else { + if ( hz == 0 ) { + // return sign(x)*0 + return ZERO[ (uint32_t)sx >> 31 ]; + } + hx = hz + hz; + } + } + hz = hx - hy; + if ( hz >= 0 ) { + hx = hz; + } + + // Convert back to floating value and restore the sign + if ( hx == 0 ) { + // return sign(x)*0 + return ZERO[ (uint32_t)sx >> 31 ]; + } + while ( hx < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + // normalize x + hx = hx + hx; + iy -= 1; + } + if ( iy >= -126 ) { + // normalize output + hx = ( ( hx - STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) | ( ( iy + STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS ) << 23 ) ); + stdlib_base_float32_from_word( (uint32_t)( hx | sx ), &xc ); + } else { + // subnormal output + n = -126 - iy; + hx >>= n; + stdlib_base_float32_from_word( (uint32_t)( hx | sx ), &xc ); + + // create necessary signal + xc *= 1.0f; + } + + // exact output + return xc; +} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json new file mode 100644 index 000000000000..52a196b27e03 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json @@ -0,0 +1 @@ +{"expected":[35.5131,84.22282,65.26131,22.099964,60.22706,80.863846,48.20569,24.693798,40.768192,42.139874,5.0047207,1.8507066,8.449898,16.108255,23.060379,80.55966,18.522198,16.350853,18.439985,62.06757,2.5324347,4.628364,63.49836,0.4204604,24.063421,77.87114,39.281605,11.910125,1.3722821,22.873684,21.07654,21.257883,6.987513,55.84695,1.2137033,24.918108,55.4271,23.239645,11.958579,6.9862986,23.163874,11.426355,24.78048,9.260592,2.5674505,4.418282,3.943336,68.680504,10.815391,33.162685,13.088559,4.2415943,10.215,49.08806,46.62813,17.936804,56.57207,56.041615,22.861444,47.264515,0.54007244,13.608066,10.1675005,36.22024,9.128396,3.2456117,33.05479,0.9353555,23.48441,49.36506,1.1597368,6.575603,19.186356,17.357605,40.07906,69.50224,8.161192,22.839363,5.029745,16.383276,39.938797,5.2575836,36.200615,1.984544,28.442543,28.034412,51.907085,6.6370883,1.5712249,60.865143,18.411123,21.987581,3.7395654,3.2064295,15.954161,20.51886,17.078003,59.895554,19.89535,6.8807154,27.741331,10.773594,34.28317,69.8485,30.795172,23.641745,23.475681,14.982581,41.457573,11.373685,24.068064,14.906111,32.72006,1.0114762,11.400277,77.42571,64.06736,6.584551,57.808495,15.487123,65.12224,43.92238,16.783731,32.46,60.079987,14.786237,0.6491549,13.501836,18.063313,13.729133,27.713331,8.290049,66.42232,32.12106,21.861725,16.996548,23.076849,6.300168,5.4346986,19.397902,74.13895,4.091162,5.1145997,24.364487,49.979553,25.552338,35.70829,6.6975336,84.566475,7.279024,65.05759,37.623344,45.276066,35.852562,9.857039,26.974586,17.229929,23.275331,1.1181911,10.36027,35.657173,7.719116,58.206566,15.429729,11.522609,24.714167,2.0767682,83.12604,23.793097,33.694824,25.072561,33.732056,14.882969,25.544567,10.046681,12.717106,4.867182,21.710571,17.150791,1.9840052,97.79423,33.69117,17.069416,4.6053147,29.108139,55.87587,41.295902,0.9987513,5.9771314,7.2410226,2.474944,13.303546,3.5829306,6.1719728,0.66727924,52.078503,58.330513,0.7774527,6.5689197,29.769756,7.7607307,13.594948,34.324955,28.759237,1.9252684,5.9093976,17.139832,10.687637,42.01394,13.319201,54.337635,22.54706,35.357723,58.2898,38.366116,5.590854,18.460575,16.661283,5.971627,4.115867,8.844301,15.060774,0.4654166,28.821058,54.55537,1.7606162,10.845369,3.4782734,31.419464,26.171286,11.969805,10.320059,65.14225,8.70037,26.399618,3.2298086,10.509711,16.032259,42.317238,40.36687,16.30067,2.6435692,27.557562,30.40461,51.889942,34.178562,5.197108,0.60920537,38.132244,78.03538,38.330635,35.605347,2.2404978,12.938123,0.3419462,26.530716,23.4924,21.453737,88.005295,10.725293,5.368144,20.327877,16.510252,14.892686,9.192859,73.27024,50.344418,57.925198,31.607143,36.46962,16.181625,2.2212932,7.331676,47.631245,4.481594,41.207508,43.900406,35.858437,7.240318,22.055414,6.664994,78.332825,0.44995713,26.833454,43.59824,12.759414,16.153957,0.58950573,13.512086,7.0809875,0.2015817,12.0860815,35.745987,24.996672,15.284119,0.14981571,16.913336,63.80118,9.739734,2.599791,7.2873187,18.3088,26.41028,21.747847,5.07568,7.5144124,28.176762,30.985418,1.0774151,20.711063,6.3456755,10.802515,1.1257992,26.877947,52.55822,73.49489,6.87789,11.245418,15.952418,49.399475,29.375235,1.9522765,6.215868,14.307788,38.687836,7.9866757,54.40017,32.690113,2.2981744,49.414722,10.30834,6.047214,16.915802,1.592211,30.00152,8.830134,45.807114,83.84886,5.644313,18.06489,50.2861,19.94736,7.1754932,80.81018,26.468855,6.0988607,1.3064817,56.731155,36.742966,6.64357,19.241,51.40227,5.426048,75.82516,54.92702,24.995525,51.70199,1.5728785,21.833755,13.352644,21.772913,0.96560013,9.057855,10.205571,51.279247,29.277504,40.195175,44.921474,0.43993172,29.919333,22.365614,35.865032,9.341787,17.258154,24.691608,0.5959899,15.227077,4.517639,6.682893,49.83859,16.203455,21.911154,52.428978,36.516556,13.018479,3.7037804,14.555301,2.861081,14.519045,11.526672,30.24518,26.073965,3.53303,21.338978,94.63034,13.608983,34.668118,82.88478,42.95695,18.375156,44.945118,15.52639,37.916603,6.9653573,11.614417,34.02881,43.85031,21.36316,7.179719,4.160997,31.69874,6.8559885,78.33724,34.817963,18.571398,9.08958,9.356754,3.2430196,4.0332136,7.5206423,13.961959,69.524864,32.994995,60.792248,20.744028,6.4409347,13.760261,0.44183812,9.336318,39.873516,65.577896,61.31182,24.847956,21.66295,0.26745808,17.436434,24.403675,13.6244955,37.59145,76.31536,15.095187,36.372982,10.96178,36.8846,34.891037,3.52236,9.727509,19.55326,54.890873,8.942285,29.918947,11.734136,1.3153393,9.211613,29.81015,3.6771393,64.80227,8.811013,3.19101,1.3420081,8.669804,3.3585732,7.626019,42.995327,26.053017,19.298449,5.431026,38.182137,0.065874085,18.200636,19.933586,0.19122113,6.9369535,0.61525226,4.1963344,39.12713,25.79834,2.0399976,22.272978,64.61497,18.860096,53.727333,25.512838,57.634766,46.4102,8.763598,52.386368,42.705334,40.994244,97.96549,52.339417,39.614265,33.709446,8.541024,24.398838,37.409023,46.785282,37.769653,49.97448,34.34133,5.612908,18.85843,43.96924,1.422014,38.49424,15.520197,8.302976,0.8527905,11.311926,8.957305,4.308271,56.88539,3.9369233,4.099592,4.4675508,9.579977,5.6204576,13.105026,12.892809,7.436294,55.440647,95.717735,2.606846,32.901463,1.1241529,11.022168,0.7957577,27.157425,0.9022597,8.388459,23.872486,26.59336,96.60571,9.812966,11.38048,20.73727,2.8070064,0.5074319,7.7266917,2.4059024,74.64669,21.645554,78.53483,58.422348,40.329998,73.36702,13.190243,7.1758566,8.5919485,17.433199,10.748684,19.071428,24.947138,6.213209,3.6963305,12.19243,37.156174,12.748011,12.218292,72.647255,3.0188024,20.198755,20.239418,27.943449,3.9627588,6.806583,41.615974,36.141785,4.087182,31.05186,6.079518,3.7417033,5.8528466,10.087779,71.65615,0.41731444,31.312487,15.323889,12.226126,29.14408,1.4043769,1.4574783,39.849995,66.5446,48.18412,2.0456736,33.05173,5.467203,14.505018,10.188609,4.897195,2.2237518,0.32138965,19.25248,10.964411,52.211403,31.397808,15.351766,55.907497,25.440521,8.27164,51.396515,2.9084756,23.653103,0.1183375,47.106148,14.715959,48.53874,88.79959,17.909943,7.444409,35.307537,8.563866,4.332538,15.080999,39.42778,93.81813,56.273777,3.36485,12.713329,45.96566,85.62362,0.57902354,40.24433,11.483463,41.759945,64.16648,1.8051788,22.842825,52.434364,3.6576955,26.59122,2.651817,21.303375,26.736176,9.378015,5.578737,0.05419488,28.734945,40.95229,5.516175,4.0180693,8.508438,19.748158,30.916986,22.17583,8.399407,6.7349653,29.500992,17.254736,12.780385,13.359434,7.125437,6.7215557,1.1999651,0.90532446,38.985123,11.820516,34.26569,35.11504,25.376394,22.311802,32.75072,26.680195,10.400533,53.17729,65.56506,57.442726,31.596746,1.4531866,8.270818,65.80606,1.881775,50.33989,31.076221,1.29575,10.457226,27.940376,30.64427,45.1203,6.5389576,28.774218,50.763794,2.161241,24.797485,35.333317,66.13854,20.772568,40.337524,16.33595,60.299328,57.213303,30.14894,12.668408,47.80088,21.952158,21.813765,2.5679843,12.220418,49.700916,34.96127,25.291946,8.462289,2.911544,25.86634,45.673363,32.696056,2.3141968,50.559406,32.999874,10.544745,73.13407,16.95825,77.89008,3.2672741,34.997826,17.254715,17.424665,49.323624,17.88296,25.135263,1.3689002,12.306294,13.408683,63.49258,29.861855,29.567404,68.012695,3.0725722,1.7432706,5.8197293,46.03135,39.97134,77.50028,15.910237,34.369717,38.050385,6.333162,62.286594,12.448946,71.063736,11.714437,33.252373,70.74073,5.8412356,2.9218013,2.5559566,20.873688,7.8305287,6.9313526,46.795677,20.848135,31.07006,6.514681,0.34891558,16.772633,10.300986,38.460068,13.521564,23.71198,66.720795,8.04077,4.2303104,3.9995995,24.773645,25.833248,6.179635,25.700308,16.45489,16.866371,7.034039,2.9535713,37.287083,35.426838,1.342606,80.6033,80.51666,0.14513431,3.3535311,75.78414,53.827785,17.811134,4.1878567,6.737537,14.847992,42.127335,11.9378,52.654194,25.489496,2.0443454,28.471386,3.2971592,19.75604,20.088926,51.280388,37.652065,5.9971647,0.9539776,5.1432157,16.701132,0.7009573,0.837499,62.266575,4.8560824,17.055471,29.17036,2.5762267,8.307418,5.534942,4.5176597,18.890608,11.399226,0.16493365,24.204344,25.100107,40.957623,6.482933,9.94028,5.520217,17.520441,54.786976,54.08593,48.89841,10.798614,10.339249,45.69588,42.688324,20.26037,78.2209,6.706378,23.783878,21.078136,7.216022,9.535187,15.0100355,3.5120513,40.484566,0.52373606,36.837425,32.251373,17.893965,1.7734706,13.008759,0.026137993,2.8965175,18.932247,7.173662,52.086792,0.0008410977,11.152332,7.894177,2.1613042,0.4200967,49.591663,12.28566,10.856841,44.867237,14.766309,39.076023,4.6898994,62.07078,38.376854,9.2105055,46.994614,57.358784,4.173926,53.909542,5.9490433,12.188913,85.32281,38.46581,25.883512,61.782143,72.233475,7.1905236,2.4606605,3.0085304,39.64777,27.87201,25.415512,19.434443,13.720575,0.8914519,4.4681134,14.057414,0.96735734,71.99879,70.43372,36.512714,35.546665,37.464558,7.7819834,11.374996,8.982619,57.284664,7.1408696,55.606323,0.8929301,21.954187,8.694938,47.77995,6.8753495,11.608119,27.534666,31.423658,23.184206,33.76075,19.569483,48.233784,41.483685,8.110479,64.1688,23.191093,34.627148,2.9808588,44.532738,6.784196,49.73798,65.217834,30.089413,13.871977,45.403587,0.99446285,16.755146,42.870144,70.65277,8.537165,7.5234313,21.375168,25.536383,27.925198,55.677925,15.49753,5.1951632,62.90229,43.82312,92.065956,7.56052,6.717056,54.75171,2.8698936,25.303024,25.711533,50.627155,0.78547,24.121395,70.72553,27.354923,71.82641,2.9514172,8.982313,33.185112,36.05512,59.743656,9.783574,28.345417,49.15337,2.8598435,6.429525,8.062492,28.756195,21.542177,21.852777,11.675706,12.035081,9.111748,18.948727,1.315596,14.000482,47.25752,1.108052,4.562803,0.38291466,31.883867,4.779894,70.413605,2.7398577,10.17707,0.44355828,20.451048,6.064932,23.035675,4.923718,14.18256,0.5282608,10.617968,28.920166,72.4828,17.596062,49.67347,41.541805,5.498427,0.85884964,34.730453,53.131813,31.612577,49.05035,5.5170193,40.827183,22.84913,24.159668,24.989567,26.188614,63.960857,40.84874,47.662308,59.12634,10.895179,19.950703,33.45282,29.02989,10.034724,50.084877,71.48625,3.8109531,62.521374,1.5714004,7.52633,17.752558,24.680325,28.616749,50.996536,48.535393,21.954418,65.01562,3.3620708,16.543404,62.667244,53.114643,12.382224,5.7415905,14.200184,80.34465,33.204548,83.69319,77.058334,12.463337,65.50927,2.820974,57.388435,7.555755,42.82782,1.268727,15.53751,41.891098,32.236958,6.504425,1.882353,14.067117,30.050869,41.198498,8.474069,41.507668,73.59773,51.146793,2.6335485,0.20190024,28.807844,3.0518777,1.3857448,7.0321827,47.223225,33.239555,0.59956354,3.6403682,28.518354,36.727497,11.184505,44.07043,29.68076,27.346888,26.20939,64.353935,5.6937475,0.38431433,26.436352,65.50871,27.548521,35.141953,20.158783,81.17843,4.258467,46.66101,21.52345,2.4203207,0.12516193,1.3350993,11.822326,41.498962,71.71105,19.147099,10.462361,7.9665895,47.650005,74.02769,43.52032,44.19584,32.267494,12.151872,5.070654,15.874818,9.804115,13.281568,35.255596,69.730484,2.434041,20.747854,19.54998,47.365883,11.641527,33.714096,2.7742214,38.25852,22.655128,56.185078,0.01611101,31.548883,31.581207,50.99443,2.554814,50.669426,5.8794937,5.451286,18.164198,6.4682264,23.152437,1.8357431,13.40416,64.56965,2.921172,2.1212678,30.996332,63.679592,4.835807,14.135051,74.766624,3.1265793,8.657005,23.274359,15.939702,10.442067,33.625084,43.314564,21.221687,59.92748,14.01293,27.291574,3.9407794,7.095222,11.720755,2.374574,5.7204556,54.522224,1.0484754,25.423647,3.6899843,1.3522705,30.026367,1.5308051,81.9096,28.72699,5.251657,19.677368,22.366507,16.12012,3.8130622,29.829794,4.7701683,38.079872,11.585743,10.125214,7.6080265,9.157742,5.109088,19.035316,8.7236395,0.5444875,30.51672,17.241024,61.576664,5.5899863,83.1982,9.723927,36.214443,53.812725,2.1009884,17.875004,57.51743,18.354445,3.8587632,69.933235,24.064457,24.82864,0.42361853,21.6409,1.7946863,8.512746,3.7675335,54.79242,3.5885,54.79764,2.1689003,5.311649,37.796635,5.847449,11.732841,18.919262,12.638746,0.39697152,30.519312,14.351581,11.601695,4.2998624,8.708219,33.008892,6.254015,3.9222877,2.9132006,75.772484,39.35013,30.746597,25.951023,0.46947563,60.430916,23.497297,32.60423,17.40641,21.374802,44.87949,5.942201,7.3380666,17.706045,76.71749,29.110613,18.398067,76.55868,2.5161629,45.530727,61.126335,21.634745,3.8191962,4.952185,19.512535,45.998188,18.927036,5.684421,8.417451,52.22841,36.925453,4.6820474,37.61599,11.129984,0.013168524,2.1988056,32.333427,6.967839,50.170494,14.39577,59.236164,24.239801,11.957207,0.8491655,11.832622,38.417355,44.557465,42.487766,15.474568,15.435074,1.1532828,1.1378025,23.30377,7.5345283,3.5300999,20.697866,25.119452,23.88129,41.13905,0.6481323,38.407154,26.6677,13.737928,75.91435,24.862783,2.458513,0.10705122,73.90828,48.43963,11.3544035,64.76432,17.521244,0.50514907,18.714102,1.4946108,56.51448,33.173428,9.238163,60.542236,1.7146872,25.450037,7.4886947,6.516418,15.745448,19.887102,30.717957,17.37782,46.654255,13.221016,9.581484,71.639175,11.660352,1.4794979,76.8693,90.01628,47.41058,50.68539,42.406628,4.8625655,23.636082,7.5943255,51.73636,91.938866,40.329002,27.653751,22.864435,40.49859,4.4945874,85.735756,17.364502,7.7799697,14.533897,36.616474,32.86895,5.124887,0.2380144,5.7762504,30.10757,3.4469352,6.578391,1.6809374,24.156134,11.059104,36.17785,70.43025,29.047005,28.991001,39.46934,14.171616,5.2620654,11.818467,31.220919,44.535908,23.022049,14.66134,47.041706,27.138542,24.460182,19.72392,31.836138,1.5198835,1.433605,4.873426,60.227383,12.601704,19.172098,1.0400017,28.74913,0.28816503,27.578466,47.916187,27.689648,59.217133,8.020178,18.048977,45.060596,44.933716,44.506798,3.6022189,45.127747,37.656807,59.88203,28.003637,6.3874207,0.4651067,12.385739,40.67708,7.573748,34.04605,7.385376,23.13442,1.6760749,0.6971174,3.227713,57.3486,6.927728,8.067356,7.9437213,0.97644144,26.890715,56.814194,1.3572502,42.003433,50.460403,15.305479,20.423016,54.043793,1.9935809,20.256023,22.539768,68.78271,43.280937,9.7311735,0.57657593,19.76165,48.086353,0.049726512,7.079006,15.666575,29.937786,80.04047,40.248783,4.336013,2.3222384,8.231947,29.118399,29.110296,53.456627,40.76175,15.740815,59.953632,40.47282,52.763885,44.97831,55.701664,39.34676,36.575268,51.756714,5.6122904,34.866947,21.28389,69.075264,30.788837,47.248184,78.99279,22.162891,10.165958,27.234114,18.269117,3.3162246,27.634577,39.598255,43.636974,3.1501806,20.024593,71.97289,23.652193,30.102732,33.453266,46.691853,22.127308,70.248505,30.500694,78.427124,7.145786,7.207344,43.486732,49.76046,49.72428,26.994158,5.1288366,60.399654,5.752486,9.368679,14.00668,25.793905,23.753643,1.8612015,33.099472,6.654734,74.0711,37.728374,61.114258,1.0431981,3.922502,21.934538,8.258506,1.4431251,29.626104,54.139843,34.317787,47.272957,25.04328,13.928706,3.1984992,23.787739,9.355772,67.9109,27.506437,64.78068,26.350733,2.1335127,38.11854,8.139106,8.527456,60.700134,30.107538,5.055777,6.3621063,16.270357,3.60815,12.487462,19.016336,4.9826465,1.9713343,40.719185,47.39296,8.570668,18.679653,27.09979,50.962543,43.252026,7.530916,4.3728385,67.92801,1.3156124,73.19063,34.482662,3.6698375,14.883695,15.816546,71.88655,0.8591108,3.09039,14.278926,4.023347,30.517118,48.86704,16.814045,66.19598,6.434219,47.55844,6.2350893,18.05571,7.3499475,10.747392,12.013461,1.343186,24.602383,14.26848,15.385474,1.0966353,1.6286756,19.885841,12.275967,4.3728933,0.8914428,7.5542383,23.21406,4.3800364,12.397045,23.646091,69.14224,15.81988,14.69239,14.474695,8.156823,45.95315,22.203072,19.849756,7.6478167,21.65944,33.379757,6.237592,73.68736,16.865015,11.989894,0.69801795,2.0439563,60.68257,5.553257,28.690336,3.3941965,20.75507,13.345824,34.614098,87.10204,3.766562,0.38746822,14.286504,10.942975,10.523639,67.277855,16.931953,12.596791,11.873695,17.575102,9.890427,0.5121325,1.0117406,1.681631,52.507435,6.0074544,31.61546,15.953384,30.048357,0.40697575,41.138126,0.7624343,27.533756,17.258785,2.2163975,10.495273,23.232971,1.1556051,72.56293,25.922049,19.346228,46.380516,7.841283,35.823193,7.571915,16.571642,12.791131,2.8915348,56.561718,17.648205,35.14837,21.583988,7.8211913,7.467909,75.76537,9.334132,15.342784,98.09056,42.132168,39.067207,16.345842,2.2499907,0.30263615,25.337938,43.281788,1.3854724,17.176165,23.483334,9.595837,77.922874,9.589587,29.949602,11.77607,23.702057,15.60748,0.99453354,26.119463,51.837097,8.093634,43.14493,59.44505,46.8065,0.46268284,24.830906,30.982452,58.11109,2.6563392,3.0680816,22.16641,23.891132,4.447703,59.364555,33.805687,8.059563,15.502054,3.9509978,16.974562,59.05172,1.5322291,1.276569,0.32902277,40.07562,18.647022,7.5753193,3.9248817,71.88701,2.5952966,32.2306,0.12907359,76.59159,21.487545,27.282146,1.9212976,7.23524,41.28594,53.899178,4.747892,26.383146,49.831802,55.275867,36.308178,59.56469,32.279896,6.4377294,6.9349213,0.95971197,28.987764,78.730804,12.8289385,0.008906725,29.6776,8.831934,14.358639,1.7453271,25.40142,49.740734,34.824287,1.1278524,23.553015,16.001461,27.67564,67.512726,50.533108,21.410252,34.542656,1.0828834,4.235321,17.656317,18.862026,36.457058,61.594616,48.6553,13.869983,7.2265606,67.42306,21.615555,46.83137,11.469492,41.380646,38.06848,30.484394,24.710318,27.308487,18.604395,1.7036867,0.5653499,17.832697,0.2893691,16.851168,14.018605,19.838585,2.3473566,12.832571,3.2477827,68.9964,7.0108495,94.53914,3.2657533,4.232716,27.160595,18.20039,34.86909,2.70436,4.0620975,27.1627,49.714024,37.510895,0.7484844,4.836146,36.604736,54.592438,61.316727,47.705162,29.769087,30.060263,41.099915,2.486247,1.5082477,5.931309,5.5154557,22.591646,21.616417,8.114432,16.045116,38.44628,27.135113,1.3879843,26.612947,0.84379184,0.46245039,0.10672883,36.661472,10.438773,37.972084,11.301141,20.591753,3.1386788,21.248756,82.56721,8.068232,56.42989,2.6723092,55.77764,2.3318408,48.482685,11.127114,43.20159,2.4463449,11.554019,61.916542,5.2892556,1.2912418,2.2586396,95.41635,5.8746257,8.546649,52.499104,22.819796,20.252802,41.767628,55.423946,8.947447,0.16056095,89.97276,42.058743,15.163318,0.40644366,62.207985,23.87406,7.553157,15.513156,36.907925,35.045353,39.62957,33.997437,16.352623,9.243381,27.208126,39.29348,11.630709,9.075125,60.50706,27.78069,31.537727,28.271187,4.037557,27.350462,34.524796,13.022058,59.604687,14.590133,4.262114,0.5164445,8.297985,15.142752,1.6333636,26.327366,1.1079215,1.1923534,58.895134,11.565584,10.031529,24.337032,24.007282,2.8449101,43.16516,1.2660618,3.4266403,1.2886263,27.531425,9.256053,14.957713,24.811197,33.851223,70.37975,5.939608,14.119064,64.34036,44.073868,10.670952,23.358234,6.477086,23.142033,23.892601,14.765529,19.875643,15.045376,55.167572,2.1527083,0.052678507,35.619835,54.37297,67.49222,6.412085,60.26635,7.754078,50.432228,2.6578476,80.554886,8.858405,27.501787,2.6201956,6.433503,28.747473,29.133852,3.9462142,17.878372,6.0482426,25.880922,14.013363,47.585865,7.644393,16.830849,10.056039,0.019485002,6.831357,3.1477962,1.9253297,8.390583,7.557991,19.31064,8.562408,19.234476,1.8201517,48.19537,18.268007,68.79901,1.9516627,6.0342197,20.187578,21.40353,17.69116,30.069712,17.603191,43.12255,22.864765,3.9091275,50.721252,52.52143,71.1361,5.718017,0.58434206,19.792562,19.381393,8.114335,9.618953,62.574062,0.021172138,4.368059,11.070462,69.66622,13.327237,66.50082,12.332269,10.202609,30.500404,74.03814,8.448279,0.39163226,5.799827,9.924384,29.055542,33.942783,7.8127832,22.468372,30.368738,18.331255,0.32293004,28.962963,35.08483,4.233123,16.019672,1.0261599,3.9565132,30.30337,21.848272,68.594604,63.465347,31.470236,5.721615,71.61293,6.1775365,11.768527,9.262511,58.61454,9.528493,8.742339,16.933443,58.633266,10.133198,11.452832,41.264847,10.220409,1.2275779,23.581331,88.549515,42.8967,41.564327,0.60595864,5.008412,19.77338,2.3259375,13.641227,10.635902,29.148893,8.025253,4.93383,13.262221,6.1249266,31.066883,38.479782,27.463217,1.1702331,43.875378,13.840677,48.695316,5.9011803,1.6055816,48.4579,0.4152237,10.710476,2.6064885,0.5594891,70.90084,41.79796,53.775124,52.163555,29.265217,2.712194,8.869708,26.945597,41.700485,6.2379837,45.270798,84.171844,28.97183,38.529087,10.51861,33.778008,2.028694,28.219446,1.4529932,81.03521,28.60604,0.3051621,19.156479,17.222809,25.100117,12.577408,2.1918466,9.825391,36.61663,35.128822,0.008247035,35.10304,8.075184,45.67347,23.897142,26.453419,12.988008,47.363956,37.959675,6.874794,22.421871,80.027,2.1778495,30.130674,55.59969,2.1772037,7.01865,2.307179,62.560467,28.546667,25.995556,34.1551,2.3740053,14.744846,31.156933,41.059063,14.184661,0.5210824,1.3108482,3.86177,1.666268,31.023348,18.96004,69.64697,0.70779437,38.270218,8.164647,30.539907,33.587723,5.6982307,0.1330837,5.371164,6.423114,27.96566,5.6955304,83.99329,46.378227,5.9710927,7.3372307,10.170596,56.783195,64.822784,4.1028314,5.2709217,23.369085,16.614902,31.30184,80.28356,2.38393,35.164062,7.8157516,11.681579,6.209036,7.9178224,18.372103,17.064219,13.283316,72.10471,54.752186,26.277924,46.422497,52.23059,23.08036,10.837954,59.52902,14.340203,8.96799,21.4357,14.935184,29.079433,33.132996,62.431694,68.73364,4.0775294,35.983788,26.680326,52.48799,25.41594,58.55321,29.33438,22.970545,75.020454,19.898777,32.964825,61.477184,20.906912,56.089256,5.654136,40.13429,16.354328,12.780087,35.076305,3.7588868,27.341976,26.888582,3.479747,11.959683,15.4578705,43.7879,5.343585,59.330536,62.975925,57.703373,4.180735,1.855073,75.06469,19.523304,16.97132,21.913794,6.0645103,1.8584225,0.54059845,45.428425,17.3956,17.763742,44.723976,28.10516,33.58837,72.79955,70.526405,33.20074,0.20968315,34.943348,9.15671,0.29528636,3.7064903,18.450283,8.503364,51.804283,27.05626,93.47238,73.57142,0.7873143,5.161778,73.13188,36.24587,66.659065,4.5942802,7.639799,17.070063,32.676243,9.767033,6.196091,83.14498,38.491116,0.5980398,46.766045,30.790426,5.7653484,40.36632,77.78142,32.430145,46.24221,33.177273,56.162125,36.74807,0.7114149,10.004284,44.283356,22.635778,27.84554,29.618713,27.885487,29.28607,8.171323,8.9353285,16.98044,41.93531,2.203519,54.515266,24.873959,0.3785363,0.07003434,27.406734,25.862432,33.94044,11.974419,60.734318,5.0929294,7.4269743,12.176975,2.968207,58.514996,25.24084,7.9542913,30.798992,0.98526037,26.030436,14.449552,41.904663,44.82854,1.198461,1.7290487,8.219898,26.71202,40.91477,16.438303,31.10531,16.731611,3.9737282,3.3965125,18.729559,8.23804,9.299239,1.7618635,7.5597086,20.099157,4.253412,38.270706,11.332922,60.73303,9.310315,6.3498483,21.494345,29.841461,15.789669,2.8065429,10.670369,35.802452,1.9126419,10.142182,26.555273,37.874245,81.7304,0.3480939,0.59829754,18.565971,1.4926908,4.7340174,4.8409834,8.718597,6.7642984,0.28581426,17.091887,47.501713,34.298668,12.507913,3.4122908,13.548039,1.0496033,2.3988235,4.1634035,31.04423,10.232941,14.151972,23.434141,5.8860445,5.2077994,27.50988,16.519175,44.249123,26.468582,25.303804,10.2100525,23.015347,19.263618,14.13238,47.956673,19.48922,0.6591909,34.47162,8.446758,0.13593304,18.474382,60.201557,50.08319,0.75498897,22.238323,16.243036,0.946806,67.93491,20.516088,0.8147229,7.2654448,30.477806,33.72649,27.511059,10.222943,38.35136,3.6064525,44.24392,43.59612,5.1509514,34.844563,21.829082,20.778055,22.023222,10.821609,29.132303,21.172792,64.86236,0.13536924,4.6412587,65.087074,10.983815,10.039732,61.96991,0.683411,54.51209,3.0065432,14.232517,57.903896,51.219635,5.9735765,7.3752227,66.20004,17.036297,11.252669,74.50969,15.255254,24.944775,7.478667,21.959225,30.386816,18.646673,60.597435,4.303443,7.163337,1.8797915,56.937454,1.9809395,11.213537,8.746477,25.684458,62.046806,2.9840622,10.541201,6.2173495,28.364578,8.004152,12.32673,0.42299205,31.256096,9.13856,62.843693,34.823406,15.100023,47.574722,4.291043,71.98647,2.2060301,10.672241,56.82044,86.258385,11.068026,5.635648,10.44625,55.2184,72.833405,1.5877914,17.050295,25.383043,3.9610739,0.08994565,10.977977,2.3399746,81.66689,47.686283,5.6098356,23.755373,62.952606,14.720128,3.7379525,12.8475065,29.580431,14.638156,31.0476,29.171974,63.192093,42.8881,67.56663,7.359082,42.130993,86.41746,49.471245,22.92065,21.425608,66.54526,25.29458,17.843767,12.696819,2.927139,34.67279,29.602911,25.559547,4.596697,0.90848297,0.67101663,10.200155,51.09407,74.35086,50.055878,2.7374442,5.492376,11.9742,35.814568,0.123673186,27.739656,3.8694062,13.616007,6.1461554,0.04660373,51.462025,40.62867,22.194517,15.556702,16.597261,32.31916,73.110435,17.890995,3.4477909,2.7912347,5.6029797,5.836136,77.805466,4.3181653,33.01883,6.2042975,0.58091307,49.098156,3.30655,48.15823,69.05111,38.36988,13.698599,23.033367,23.792646,7.8247104,79.86142,4.6839395,26.104122,34.94979,19.29933,18.877254,24.980364,2.6171737,18.345335,35.040974,16.888285,26.070705,10.278683,25.825644,5.774342,2.635584,3.7831626,46.86278,25.50329,37.17797,41.3819,0.77291155,10.273092,25.73211,77.73091,31.095852,3.9877164,1.2855688,13.469464,32.909676,9.846666,0.5325663,31.711027,1.4429485,27.297482,26.571966,1.2646204,0.01517975,62.62569,59.139,83.598915,11.526779,79.53642,71.739914,8.235927,1.3137915,9.646692,8.776273,8.155506,12.195476,58.822544,8.010047,25.260675,5.089473,45.280735,12.697312,15.2911825,12.428865,17.315718,27.723234,11.266741,66.90787,19.320818,2.826943,1.0959301,16.95943,16.261284,0.32288402,3.1255093,0.4768997,14.462188,8.39324,39.187416,34.876514,75.1078,26.063232,12.684599,35.68882,26.80612,12.040482,16.900848,74.983574,2.0930324,37.704983,65.46493,21.43432,21.538742,10.315856,10.788252,26.68469,56.670128,11.438206,14.272646,22.659666,12.559048,3.186111,80.56453,12.318246,1.9743385,39.487892,61.396454,9.589356,38.23557,11.279534,21.783434,22.783007,13.378666,58.266705,11.174305,51.22224,3.3604596,77.0087,30.902443,7.243181,19.512943,7.2778964,32.837685,17.938673,21.141356,0.65750587,11.815019,35.9101,2.046488,30.323387,53.79182,10.069657,11.239314,14.227816,7.2975283,16.566954,4.819073,2.9936438,27.424135,22.084036,1.2067713,33.330433,27.51943,37.6257,61.134052,10.962898,4.471572,4.332781,57.02924,0.9045149,10.253272,50.91906,69.125145,6.318416,53.53085,10.354972,21.871418,2.292415,86.19996,5.371496,26.37382,1.5524057,12.031573,0.5153186,37.604168,54.68232,21.34948,3.5421808,30.544508,19.258022,8.629727,5.4271054,84.89365,4.07035,31.93113,17.829638,6.338503,46.451572,5.6057553,18.192152,34.416817,11.122902,32.91154,1.4954773,7.1416445,22.049429,10.888249,27.311369,30.756838,16.242228,4.3626013,68.354805,45.071373,66.50878,58.477848,6.3332205,25.73612,42.332607,69.42112,35.90924,0.54457104,46.567356,62.738007,51.437305,3.352665,47.32482,33.87521,33.905865,47.67922,4.069725,0.101432465,10.4604435,8.816997,13.0660715,55.901627,22.32382,11.122734,6.0112886,21.931564,7.3855524,9.592995,14.201683,5.970478,1.8663211,5.323382,48.221397,6.9651914,9.328893,19.570734,24.113026,6.4994087,74.141365,47.151623,10.451619,44.044487,30.848076,11.317518,13.490578,29.08109,1.1472998,15.982188,33.289894,15.2262535,26.780226,4.0409746,11.739496,32.464733,46.750313,2.274025,6.2153535,33.588116,40.912037,58.353767,51.730446,30.32328,68.5682,62.79503,40.899532,76.339455,41.071625,9.933447,9.013198,36.499226,7.1955967,3.6148121,32.944378,16.698626,55.773247,14.987036,12.683582,66.316414,39.321194,5.123198,0.32858163,38.695705,51.790882,2.844435,28.53889,4.6415286,31.130058,6.5179515,16.662115,5.329465,40.717785,29.72679,48.68944,0.6170422,1.6548212,32.9706,34.690666,2.848687,28.377176,12.444405,6.2851806,4.7506227,18.545145,24.362617,26.244432,2.5140011,4.171555,37.79585,44.69517,2.492904,1.5508753,0.07173664,52.58213,51.748405,44.651005,5.8645844,31.491318,20.22065,16.176529,32.459118,5.6707745,6.977938,22.965412,4.760854,0.9891328,2.5053322,5.5503273,9.240153,28.620085,19.939888,43.868176,96.143745,34.294094,18.796444,44.256298,30.006128,0.23485474,34.97785,2.3120968,40.265785,2.5568616,23.46076,0.10633967,46.592094,1.882526,16.818592,56.23548,24.472351,17.911997,36.65811,11.747526,0.51125425,54.814365,3.9635,16.532972,21.736649,7.9110913,74.04451,29.4137,6.4881554,71.63002,26.775267,50.28379,11.171451,47.59347,7.7851043,50.17545,69.26589,11.106757,2.2267222,16.526646,43.321533,16.227148,5.6015205,26.918373,95.02023,48.804146,59.595955,14.452173,6.867903,0.27698284,1.6319307,0.11994002,22.596022,22.234585,47.559605,4.1913924,5.807413,17.816519,18.80455,44.978947,60.90993,23.9434,2.7782502,15.666824,3.7135603,0.23263417,4.074543,64.14199,12.122186,22.180738,37.313198,0.24309152,4.8272996,51.455418,1.5979992,43.661133,4.344232,44.348618,19.806248,43.344852,48.973312,24.634136,3.064423,5.1159506,10.271427,6.05983,27.87809,0.074564256,75.455376,42.123894,84.911865,28.235737,29.088116,36.538723,27.138084,0.4048244,20.739525,17.991667,68.183464,33.638664,24.658463,38.822536,34.353836,48.83397,14.424527,14.635096,0.68765116,36.61011,58.884647,9.777708,91.99249,4.7936053,19.66367,27.476986,7.498702,2.587021,34.83354,74.5869,50.12643,8.3085985,1.6925399,38.41811,34.715992,2.500412,23.663172,19.308338,1.3026338,12.255528,45.767086,42.622704,25.70607,6.790635,10.1607065,14.170292,22.331013,70.273766,47.188164,20.168238,61.42234,15.077909,7.927823,0.74154484,13.069461,73.42419,12.7229805,9.453582,48.000713,8.378552,9.316997,53.128643,49.977028,48.64106,96.554886,38.23164,6.3935323,28.75734,7.7772946,35.416203,45.6264,21.70532,38.752808,11.071586,90.080246,0.29547256,22.698599,41.410503,5.7172365,9.706383,2.658517,25.045885,1.7986149,0.30686206,3.3754675,10.679573,0.98771006,6.6946974,0.6692334,12.501935,52.48479,40.961826,25.98733,17.875454,24.510077,2.2903852,18.379671,48.390087,46.236324,2.4409533,2.057195,32.767426,1.285841,22.396502,46.21929,35.643536,0.034614913,53.533302,90.94726,11.305411,47.435234,0.19837832,30.541838,37.114655,34.306587,11.7329645,18.040792,1.8346151,57.725605,7.044283,61.503315,3.2485461,1.6807569,3.5303943,23.396696,60.557083,6.2789283,4.7094274,30.825506,22.709692,20.297342,2.8561788,69.59021,38.08134,63.48736,26.596025,2.5707812,6.511368,14.5637455,17.324978,2.6024234,26.448881,0.93290347,14.314052,2.8302972,41.45335,15.901249,1.5194184,1.2883132,4.7775226,3.658132,62.43959,3.8516645,1.8465843,41.45012,47.479942,10.837969,44.134106,53.896286,11.250254,62.961906,19.431112,6.2908335,11.928421,41.32902,21.347042,16.630228,43.740704,34.264805,1.2249259,47.945694,15.646233,10.975274,40.683205,0.7953711,62.945366,11.395293,4.265803,0.88588923,3.4425719,10.73578,1.5917026,3.133608,9.087118,8.578713,42.93112,61.120094,22.935743,36.94837,26.63742,14.970585,0.7928967,7.394985,9.203965,37.522858,17.21706,38.577404,45.153316,8.825249,8.455481,83.344826,59.41574,24.828636,0.17022851,35.503586,30.601995,53.83175,27.179428,6.834698,1.9033176,49.995483,3.344823,36.337566,24.469612,41.81128,3.0620809,26.872015,27.568586,2.3093417,4.9757724,46.971306,13.246961,6.888782,47.366787,7.2370505,7.664844,8.054251,45.703712,20.144646,8.939066,17.625956,28.316418,50.11703,2.9134173,6.825861,33.977333,42.87783,61.159668,62.060078,6.065171,0.4649767,0.65878856,19.910685,30.182436,13.80583,47.79315,4.538746,7.9336524,26.958351,57.16164,31.781603,8.197346,9.736563,4.2302723,29.799332,8.42348,46.831917,27.826431,64.322105,41.19875,22.728712,27.651865,1.769984,7.019727,18.672756,0.67854035,15.710051,48.864323,36.530453,57.447323,0.47008303,48.236416,12.680738,2.3140116,37.30074,15.62921,13.208746,11.826757,2.215795,55.075207,51.13016,37.077316,59.4999,9.590935,21.756132,4.7542496,2.8357356,2.3165135,8.0761795,14.279277,37.578304,37.535908,1.3874228,31.110853,57.127796,15.317447,33.745583,5.58148,0.5191124,32.838833,85.32225,19.279182,2.0813622,49.31789,4.928215,13.345315,24.2145,6.144763,1.9260309,92.808556,17.686075,13.7885,4.7523804,2.3295968,4.4991827,10.0003395,49.619205,3.0422943,24.508924,1.583482,17.902912,34.103333,46.545815,20.900269,17.480036,37.60512,39.633797,40.0076,10.538554,21.160608,48.098446,20.217552,10.115363,63.97016,6.5069523,14.467254,3.0615737,15.277514,21.164444,11.536756,64.895386,8.759427,1.2873472,2.4549372,89.838615,7.2742805,49.718704,14.842001,14.674874,38.436947,0.4253121,3.9065232,95.230446,14.614698,12.030954,22.280598,12.663659,56.79167,23.886923,14.614369,5.6883035,20.843327,52.84065,76.86893,11.227281,22.431047,10.491713,33.30342,9.306949,0.1777808,7.3022933,0.7220658,11.246819,33.575,47.462864,1.0574162,16.078838,74.346596,46.6383,1.7643166,89.58955,18.299404,56.41971,16.641186,22.512506,16.74764,51.74981,30.369947,22.927238,0.39171314,78.99248,60.335327,46.377525,14.253098,0.3120873,42.101223,53.362633,31.451017,25.88907,35.850143,63.710163,4.303662,12.943379,5.23438,41.11101,26.190947,32.335518,28.092968,42.147568,7.685744,28.772596,4.890253,47.397312,60.924366,15.197757,92.18462,3.67627,11.171409,27.378506,56.07467,6.118487,57.363033,13.228399,8.024323,58.789467,48.808792,60.296448,30.468615,9.262827,52.16111,10.997996,10.04515,13.955082,10.370465,80.09436,34.179855,2.5372787,26.27087,0.10181182,16.437151,20.755259,2.5629933,67.88814,12.606185,6.751901,3.4544804,5.4608,49.000366,40.744007,53.034782,9.692547,20.06573,5.909018,48.99083,39.984383,14.160819,1.6601278,73.79492,29.047102,33.98926,13.840602,76.984566,42.864098,3.9293776,32.270374,23.342962,21.319727,11.152392,44.111633,20.54781,10.747473,5.0907702,50.317707,67.05078,3.910471,30.819927,29.59162,18.120676,26.027124,0.19229402,76.74865,0.3738979,1.657025,23.767376,13.716388,3.8904142,9.599772,4.3300447,3.279804,13.9807825,4.2323723,9.826061,3.1769207,16.175585,42.01948,20.267315,36.12485,20.680172,0.3876186,68.186584,5.826491,17.711262,6.443008,19.59886,13.258054,7.4832196,12.589276,11.21047,24.12014,34.71479,3.979288,16.737719,8.889186,41.246723,61.24853,38.868256,26.879944,49.057243,23.63882,0.7347213,28.045328,18.731682,22.265146,47.868065,18.64205,28.123621,0.5357448,52.879555,13.782508,1.1970031,23.564722,7.156008,18.845371,41.867695,37.42102,43.43323,33.84313,0.9818199,0.3311834,15.616985,22.58508,29.55786,18.192383,23.689486,5.718154,6.650559,5.127209,70.484184,4.0994067,55.080948,20.887983,15.00741,55.26453,14.925226,60.798004,16.388994,5.160781,39.66344,76.49921,32.580944,5.274897,2.5166996,44.11408,48.255066,7.4553175,6.999339,53.3764,68.701225,10.1364975,0.7154928,0.13661018,0.98932934,51.67922,9.64433,29.762764,12.5951,59.038937,30.299229,32.353382,5.491599,7.2961116,9.153112,11.808078,0.793923,0.13159943,51.35901,30.534512,2.3588212,6.6041737,6.5695734,33.90263,11.366157,24.409792,9.396769,64.46925,1.0098199,18.459547,0.3149677,23.749765,5.828877,24.312729,87.47848,16.137602,3.8079386,17.448854,19.03311,40.23234,20.573717,75.654274,53.135715,2.446736,2.4274046,2.634697,1.6783264,42.67678,14.60733,68.01436,33.648872,17.982534,16.58107,20.946884,5.013344,68.17955,11.803803,6.998225,13.089806,8.542722,57.455227,51.36517,21.185452,12.772122,8.311104,26.166039,49.966045,8.030284,18.409718,5.08423,67.74213,72.882996,23.209822,29.936731,6.433842,0.6967169,6.482444,32.34364,3.0920432,32.41568,39.839485,0.9098389,44.462868,37.650192,46.440975,19.267935,29.20575,61.366634,26.94776,20.028585,30.749159,13.645199,19.482773,51.854485,9.940497,11.13375,18.484583,1.2791588,9.225304,19.145035,6.4373727,21.51829,0.73762006,6.797147,75.6726,11.28949,22.680292,21.56228,27.580704,3.6408393,11.739651,42.16173,30.426912,0.57886857,30.464977,16.432524,17.647684,24.195724,0.15485187,55.41358,47.711296,38.697353,18.069574,15.39174,30.629707,7.4542212,6.704952,69.960846,70.61045,1.1468107,10.515646,23.276909,4.5994773,11.586108,9.201739,4.5758085,25.986393,35.134617,8.672876,1.096767,20.437939,0.9867054,50.030354,4.450697,11.640884,9.416999,8.017173,29.1236,0.30422065,4.6586604,12.323889,59.84422,0.9285932,56.618732,40.936546,32.95085,5.311883,0.14118837,31.0169,12.5044,12.716811,43.115116,24.107462,12.439572,22.913519,9.225613,49.66619,17.808233,30.376085,17.968023,12.348311,13.69419,55.785225,58.10993,46.6899,36.92307,42.014927,11.651142,14.3633375,26.983252,23.341463,1.2256498,57.243546,83.57665,21.397263,37.861156,0.8522376,43.234135,36.40045,8.27846,2.2000492,0.43535426,64.098076,27.029818,30.108583,50.060974,8.005296,6.4000416,38.400494,5.2914243,35.083,0.2394001,42.00671,16.945957,2.3110895,13.751826,0.061298486,22.061714,29.432245,52.614265,2.7172832,51.431644,22.976824,24.914442,7.1588163,56.1277,2.166873,29.4535,5.9900794,42.869923,3.161088,1.5041345,19.675432,11.949308,8.682755,45.392853,4.9843664,32.37151,24.092796,2.438541,34.965393,79.53533,45.966923,1.3119763,43.687424,66.62286,2.2954776,6.9605613,0.3238602,11.583212,52.565033,54.37567,19.783714,14.985508,32.53803,9.362368,34.728416,28.527374,50.694992,2.6515858,12.356988,38.54302,4.650561,5.0686846,70.168465,46.262585,12.061804,3.6641,7.280931,12.242476,6.3035717,38.22925,89.63989,25.453915,17.569714,43.42573,3.3847518,43.763496,17.112597,25.942064,40.478184,25.309246,35.873924,25.942234,18.345432,13.140351,25.132961,0.3960768,11.9825,18.719032,56.83638,0.2937429,26.25032,5.878587,59.629433,27.026333,45.576027,18.243258,37.552837,78.315796,20.562923,77.89417,7.540936,56.372517,4.692562,17.94782,6.252867,36.28809,44.056866,2.451909,85.57914,2.8926203,12.939886,31.523567,76.09623,10.914406,1.5529915,22.704987,43.37713,43.602303,75.30784,0.06623771,42.168056,6.846549,46.69949,7.892314,10.850429,45.843025,47.566326,24.007565,26.77897,25.640905,44.51467,43.454926,14.866343,19.570631,83.7275,31.580738,1.617079,48.613174,78.42073,10.28735,10.77175,4.176447,73.4404,2.0423272,0.060288303,1.3216424,39.031612,33.274647,32.267174,21.619564,12.723989,1.5976139,32.97109,6.8080335,21.358809,46.270668,13.77697,2.7943227,21.12268,78.861015,7.713022,6.5784683,2.3388019,3.263348,2.7097929,24.168966,20.711483,61.06991,24.621773,1.0991335,12.319309,43.733074,5.8880897,1.8528285,4.4799633,20.407175,37.258224,2.6379547,45.91171,5.7727127,2.8671744,9.62112,10.667082,3.0170999,6.1018643,14.71775,1.3865542,57.412663,2.4418688,36.68173,15.764759,11.4395485,7.0907235,30.734247,4.5276356,25.671638,77.4694,56.969994,34.321053,10.736912,38.680965,26.744436,41.72827,35.31603,43.948803,10.463149,29.537493,10.623544,4.971678,16.109634,6.5013504,36.93897,31.532854,10.549924,12.7331085,37.778744,51.4004,2.0009117,30.902184,7.6692944,88.204544,1.1668507,0.064553514,17.121058,16.221527,6.121759,0.033131994,10.793915,44.88984,88.173096,12.178122,28.957897,39.606133,1.7873783,0.42273018,12.966042,16.859995,4.564429,25.310007,81.55725,38.004574,10.489551,73.55735,4.5431886,52.649754,15.839168,3.5860343,33.77975,18.883257,25.50508,4.9326835,0.9900219,18.698364,0.9865918,8.465901,71.942406,25.220058,21.276043,17.794205,2.5752363,38.176586,14.326763,35.756413,34.12642,23.705751,45.462807,0.18992709,15.623233,14.815996,8.12924,3.5563114,8.427528,58.00554,13.182109,8.577222,11.220544,9.5891075,41.172966,3.8757815,52.705105,9.251068,5.860738,20.180063,58.236023,3.9324565,15.107707,16.374159,48.98253,67.35833,1.9350013,12.496322,11.461962,65.656334,11.582136,14.925887,23.29982,25.757124,46.42468,6.01317,34.792225,38.23317,0.33585998,8.125718,4.8307652,30.131502,23.789085,29.975576,13.53008,86.61938,43.50159,13.6204405,10.674761,6.196382,58.801727,2.5533295,6.7573886,36.083477,61.48962,84.435234,28.84533,1.5623302,63.231365,52.52803,33.304806,3.7457325,3.611249,18.726078,32.149498,28.865583,1.5836462,39.441605,42.424297,25.79658,23.386578,22.471125,24.087244,6.0225754,60.913857,2.9490402,2.409615,73.16504,5.426576,80.59023,16.671928,6.556143,1.6259296,1.8538927,45.381447,7.494207,36.335884,49.371685,2.3749866,18.223326,2.2422104,8.782896,3.0480843,8.026273,60.133724,40.95322,2.0779917,53.4244,0.14331347,36.813828,48.9428,7.3526025,18.708076,57.86095,41.23344,2.7193093,24.190695,38.096954,34.39646,1.8068955,38.287,4.817418,40.968197,4.5981703,1.1753098,10.469158,0.30382887,66.46658,34.4726,29.73833,12.841996,16.080755,7.2095013,50.786854,26.807226,8.783092,11.086206,17.812073,1.1486449,36.002483,58.953545,33.106518,36.046215,57.07278,7.6710644,42.83005,3.9154813,22.919273,39.53716,2.7505276,20.097555,19.686584,14.214416,14.595616,17.263807,37.2255,77.04393,19.890957,56.90612,25.041216,63.4565,32.01693,61.602962,57.236794,0.44893223,16.704397,4.1844583,7.3152685,23.404343,56.44016,0.616518,23.765997,53.229465,4.9222565,28.461493,0.25243223,3.2075515,22.936039,26.240343,1.3140945,85.23251,56.937683,0.107941926,6.7206225,15.938176,16.239025,18.132172,16.084703,24.416437,16.377895,35.296967,12.731305,19.251175,18.097788,76.080986,60.795185,21.548737,48.978825,0.64654696,15.652885,68.2702,30.562057,42.00283,0.14365926,37.79952,3.1920314,12.769314,8.138409,42.61652,8.100071,4.8949795,0.4649831,5.945839,25.255377,0.81165415,7.7174616,35.889175,58.002132,52.892242,49.57693,1.5324432,3.31987,2.3063743,7.3644233,21.129532,26.912535,72.620575,33.0895,0.348858,21.386078,36.90092,33.018326,7.8224335,43.455482,4.8242664,93.38971,36.39391,4.6276855,33.491783,21.16354,0.29448336,23.658888,0.2737627,6.5103464,6.23959,17.495228,34.62179,25.43147,7.806812,3.6885464,3.621103,9.653972,1.3538741,23.555809,28.476727,53.35369,4.825892,1.275472,0.41318163,8.117824,17.56571,4.5128164,40.881973,30.870014,5.8642035,6.310683,25.948753,10.173795,19.750143,25.2234,80.87569,35.084957,3.268697,13.412961,85.08733,17.000963,17.026218,27.228281,27.80735,5.8032646,4.527646,11.799477,46.051926,39.266335,23.166288,2.6900594,8.955243,41.09965,32.64962,4.0395403,22.376673,11.5087385,4.3792624,1.2408116,52.478905,6.2568784,64.21581,25.207758,33.251144,18.317867,7.215238,42.436916,0.7806977,45.230247,62.517136,75.166504,26.605059,4.658517,31.490225,15.0922,1.5007979,8.613517,53.83678,7.5894914,10.235448,15.454118,37.723774,2.681747,7.2225432,14.627886,14.736992,10.464355,72.49943,57.925755,33.2464,50.884907,53.95146,6.483047,4.6203856,33.189716,50.144577,8.266275,17.147305,33.785835,34.333244,47.03643,31.77649,66.6456,41.64032,14.6292305,72.14415,48.571373,17.717949,19.161982,16.803274,84.615135,87.04101,7.004654,83.17431,57.561695,65.17341,8.701868,6.3011265,66.024864,33.465504,0.7665923,0.03760837,2.3124185,1.9323034,9.763816,30.336243,15.386871,58.14304,0.29476982,36.345528,62.279785,32.677223,19.161669,2.190087,29.553131,33.85199,36.275814,11.462255,44.869476,0.950331,24.508951,8.8616,51.169292,20.031282,18.196306,4.712185,9.0638075,49.06765,70.83477,9.841414,46.79374,22.120312,26.797073,14.298943,32.613934,17.414621,20.771063,65.33555,10.912285,1.2407669,3.0525384,11.89128,15.5009365,18.52406,12.589446,35.32402,68.728165,19.390005,18.876116,52.600056,4.3288293,37.864464,34.28322,3.5052426,25.977915,13.699928,4.343075,81.517204,32.950935,8.00252,21.908173,32.270775,31.961239,13.696025,6.7218122,23.170567,43.36073,32.944576,3.9058857,9.319569,23.030298,2.720459,9.698133,13.594377,7.3745675,0.026968626,7.653739,2.039534,19.419872,0.06870511,2.6143432,27.081305,46.692757,32.19356,31.19782,1.5995598,29.686132,34.146366,30.080585,31.565876,27.550333,8.4678,56.402977,20.028147,35.176094,64.79042,12.2631855,0.48993093,1.0311286,20.046085,35.415504,15.194286,22.721039,78.25169,37.390392,0.41185486,83.45784,27.90368,24.269365,15.560708,72.57798,0.5705026,4.0427203,3.5619688,76.75523,1.655539,6.5134106,1.3855147,18.631512,37.287743,60.49316,20.846626,0.5721318,8.302084,10.340268,14.679283,7.108042,2.0981417,45.32653,18.27366,39.658764,49.431324,8.53366,10.0999565,25.451326,27.072294,8.479557,12.502915,39.713207,32.67339,67.08953,25.243351,11.045874,69.900566,3.5212286,25.48907,33.91431,34.376316,2.4757833,33.486115,29.719862,34.578037,7.307766,20.751436,51.35302,15.095134,0.9912383,24.878077,7.323203,18.130554,11.812525,18.271482,6.490687,0.74627835,0.22560586,44.21381,13.455597,28.011112,16.606186,8.560585,6.104149,5.4804454,0.10897196,18.239765,41.761395,83.9745,1.1313549,44.07646,7.0377445,58.221485,62.923996,20.017344,56.756336,40.296364,6.882398,24.14439,5.0404987,2.6582468,32.006165,54.787075,48.552376,60.85223,26.873102,98.82253,7.531501,2.2246644,28.275187,0.5273791,3.6842039,26.416695,7.1173944,5.509244,37.838715,57.92501,0.12674893,3.535752,18.846716,12.434822,22.37577,31.36964,0.071235284,33.147953,11.195378,13.388587,14.571536,3.491653,8.410784,34.67904,10.961779,39.73649,57.28844,37.591003,36.10786,53.160686,12.873683,21.200716,39.444164,25.867445,5.5112147,20.540342,49.41421,7.9262276,15.81884,30.335775,17.14238,38.53354,0.2215317,1.6654091,79.30774,19.317015,59.79242,3.6920788,44.935658,0.14183491,27.437277,2.2280178,11.494727,31.870834,31.985172,81.0602,9.445931,5.5748105,61.20255,16.520096,7.8392344,19.254824,1.8775142,5.289799,73.879425,37.769676,75.44979,4.118967,0.22676164,11.934369,67.8536,41.85231,15.022803,13.3158,15.929717,9.44283,21.064026,0.31835684,3.6304176,1.1837599,0.007809963,8.2145605,68.14317,78.67157,11.656995,2.4225218,2.1675878,47.559067,27.114012,12.835813,42.830677,4.946238,13.259207,0.6037584,47.897587,27.538252,42.727745,17.510643,10.283629,41.605,0.9692299,45.586826,65.65173,2.7477965,2.7287812,38.575867,23.535658,9.647602,16.27306,77.7047,6.5301933,9.907555,19.941597,30.421247,6.255125,65.43107,4.957969,0.839758,19.762827,11.489931,65.56385,0.38102734,84.03978,15.635413,2.198155,59.521477,23.760132,0.82784367,3.922763,12.279242,28.275188,6.2753477,1.6312178,1.7223778,12.584575,64.28903,48.81349,61.734947,3.8222883,11.570997,43.752666,6.759911,34.192303,18.12783,53.77357,35.62113,3.3270783,58.281067,9.227747,38.840694,35.9332,5.4186707,60.02249,29.30653,7.6722836,22.403778,13.479663,1.0527215,88.59817,31.923147,22.205097,20.617085,22.88021,7.132565,39.575375,16.142958,28.632273,2.991228,7.4321976,6.184155,76.63473,28.014898,3.3910317,83.63531,27.717098,28.375963,68.20437,7.8176355,41.226547,15.652355,36.486267,7.043958,8.553807,7.154393,38.098232,5.2235827,13.017904,12.477448,5.647519,61.299007,46.108906,4.405683,15.905105,19.406483,3.908087,8.095591,30.404959,2.6578398,3.204,20.649908,20.24882,5.1943793,67.5272,19.60841,62.63594,9.554247,77.79955,1.337063,41.61729,9.922278,9.911613,11.634412,67.29968,15.287361,11.463155,85.58046,34.225452,23.605244,12.806525,16.697432,27.76818,3.6384435,79.22722,0.16477674,3.213431,35.89119,36.419987,62.112823,77.5539,84.36031,45.190834,16.625277,22.92131,14.720069,28.949772,43.905094,22.221556,17.134499,48.782757,4.2187657,7.765636,36.22961,34.656834,4.7520657,9.482462,11.7165985,50.23777,42.192627,41.62601,38.584854,4.2828293,38.188293,13.696309,68.02004,31.947435,62.37774,8.813778,23.270788,5.742932,16.925047,10.6872015,12.512799,0.83046764,21.165596,4.682321,8.699147,12.3127,1.6639298,61.61481,11.119813,5.583341,8.908822,16.710295,25.31265,14.898463,17.789148,21.607092,19.334204,1.8067621,0.66272396,66.38787,54.452087,16.015852,21.741915,0.2748001,56.01097,1.0416408,0.47126245,40.23292,76.17373,49.03826,18.998018,29.973207,65.42552,4.0731645,6.771452,14.219368,51.75886,1.3154954,35.25888,23.41467,0.1126926,17.779045,52.16175,16.33872,31.39322,0.27751973,18.739183,63.12109,12.383448,84.78701,37.976124,7.6958895,4.7567215,22.286438,73.49641,50.444508,5.5031524,15.396307,31.938765,15.844408,55.638577,2.724636,12.074536,16.287233,0.5518585,55.81178,58.77226,5.2480903,4.9072213,66.08784,0.03455323,13.007893,29.385706,31.67366,1.938813,7.2247605,1.8729382,3.1683214,7.873564,65.294174,20.109497,7.5236874,12.612008,4.2044253,47.785286,12.283964,15.290908,17.799255,10.143302,0.014577729,60.482876,36.823856,3.3468552,53.438335,48.646168,36.796825,37.838512,13.925315,18.596556,1.5098138,23.52202,28.895704,15.996835,14.821456,25.14705,21.805782,31.35623,4.6031175,1.6351358,18.937153,29.901943,24.956017,17.04096,58.23507,1.1767021,70.623924,20.309662,14.026902,13.172008,39.50552,38.243034,64.05831,10.137196,22.466993,36.38587,13.472744,85.05213,66.358955,24.839128,70.692406,49.673515,1.0048683,25.023226,28.254011,35.56185,6.80923,0.19371074,37.193573,3.0357196,45.42354,3.943234,11.882984,7.819481,16.444113,18.77612,6.6375427,3.0588548,73.22475,29.386978,8.131614,39.621365,28.115824,15.547884,12.7665615,42.416756,52.78408,1.0090559,0.22081527,35.561756,27.881296,33.03855,57.35621,62.329987,53.064697,73.36323,14.40809,8.961779,10.629731,25.987331,0.9926259,75.5674,34.680645,41.802937,28.203388,7.964988,28.65887,1.1801639,68.33144,73.598305,55.588562,0.9711056,9.671034,32.929817,49.442772,4.4909463,15.902131,1.7604277,2.2482061,56.83315,33.1435,45.223488,5.6662645,31.032827,15.906628,50.87351,24.215843,5.1176476,12.457085,29.135052,77.36872,43.719074,14.829497,2.1696517,14.921219,8.690029,9.691729,19.039616,0.00090383925,15.703276,79.850945,9.795137,3.0579138,1.8135587,64.31093,16.531153,0.6191843,18.534748,11.431448,6.4073296,86.370735,17.576117,70.21439,17.310495,33.086784,27.612106,11.862946,1.0368145,25.360218,8.738268,12.639721,54.068413,3.2825997,72.93862,4.56519,63.93963,2.287487,0.064273946,32.309467,3.6138139,13.8020735,60.347034,12.356345,31.330929,62.736336,63.09985,69.67446,11.741078,28.355194,28.612528,0.4082101,0.52732325,16.155231,51.87742,2.874952,6.1503367,11.839327,33.39429,12.593385,18.814817,9.042048,0.33333138,9.046011,2.4118934,1.9935609,25.101315,28.410076,23.853603,28.96953,1.0358372,9.432672,77.76361,5.10859,19.213572,68.01766,57.998455,4.4743223,1.4485788,52.184616,0.18912493,1.8065531,16.622515,54.934464,74.9339,6.43272,57.472782,0.23641664,36.75038],"x":[9.05183078316214e9,1.1662682996994934e9,4.793334164850345e9,4.1410531815310514e8,6.676585450666994e8,8.106355668403143e8,7.216819616152949e9,7.853309987198483e9,3.809778754226799e9,7.713652492722279e9,9.206701013513306e9,2.6485098017140727e9,4.0981382961138635e9,4.782932735563648e9,6.269431822135328e9,1.721756613111547e9,1.722727156610232e9,2.7611917670281463e9,4.645545985738048e9,5.620723316227045e9,3.02815611459647e9,2.577629419184092e9,7.696912915751483e9,5.897446361942816e8,2.8308766141384945e9,7.394157866375275e9,7.873146346605576e9,8.015122441556554e9,7.03464237638305e9,8.700137703487432e9,2.975789101415822e9,4.731212170787972e9,8.250633300980836e8,6.07898676411152e9,2.296277401655761e9,1.8643244593672025e9,9.123432086793636e9,5.253164151487801e9,5.570870850866575e9,5.803286765274354e9,7.349199867063911e9,6.731850966777605e9,5.321977229542602e9,3.6582413343214016e9,4.2054563063171234e9,6.314112861078535e8,7.830691891099273e9,3.7724650540473026e8,6.500924176781358e9,2.203722228003583e9,9.154722706618677e9,5.732934663339082e9,6.929517138889713e9,5.62588397588961e9,4.656852149599944e8,7.373757221428792e9,7.272520080957471e9,3.006648501509025e9,6.735695079291528e9,9.770159910624654e8,9.867245131174282e9,2.890607465278681e9,3.040607708629355e9,8.493253836814216e9,4.525759935940806e9,8.500638105981845e9,8.816053162524979e9,6.081831583994295e9,9.416137862973267e9,1.6427773033504955e7,9.20746335494925e9,3.655866449372943e9,1.844987389046232e9,3.4346703195372663e9,4.795145634601023e9,4.1886506463216454e8,3.8282707647864776e9,9.93754341634424e9,9.232052255331795e9,7.785103420818414e9,5.298698240448942e9,6.762619888035512e9,9.213880515427809e9,9.17069359712442e9,6.680191702399117e9,9.85490742323469e9,1.6343019808927662e9,2.5638970884039214e8,5.426179732324087e9,2.5504269796195045e9,2.941705924658623e9,7.656283360271938e9,2.268326929441127e9,4.2584720826781797e9,4.291517071712132e9,4.567653609068169e9,4.069619296622107e8,4.868867830653361e9,8.301515229778828e9,9.617519251653212e9,2.999527318505206e9,5.129494521215435e9,3.5047103030775595e9,7.301388349868047e9,8.808364452252281e9,3.363196916591082e8,6.217385913364574e9,1.4186733108829818e9,8.912538898984737e9,3.982900330515016e8,8.394915772346545e8,2.4582145179388237e9,2.5085411521868938e8,7.628127446446842e9,4.091445415900978e9,2.660586360462888e9,5.812090803711812e9,1.2526347584984165e8,6.269577230565709e9,9.490982495641949e9,9.39867706499319e9,6.258245646913372e9,2.0172278389441423e9,9.153838170053328e9,5.954491304648667e9,4.807143801435688e9,5.58062236832152e9,1.170907401499054e9,5.891556243224541e9,9.102292733641481e9,7.221016140823588e8,3.5270498188299847e9,1.9311364977772927e9,8.4758980600720005e9,4.8818737802907915e9,7.215626421745489e9,4.566429630936451e9,5.183596656712143e9,8.237804498009537e9,2.5308384853007904e8,1.87717196806657e9,6.988728476481453e9,4.267121388845391e9,9.342829965693686e9,3.7767594091628275e9,1.838689033272104e9,1.292097424699865e9,9.96014375132198e9,7.341354326055905e9,8.09305112814479e8,1.967419069417503e9,2.875052129192943e9,8.042469290101729e9,9.174681636234901e9,8.772396538974688e9,8.609668304910074e9,6.645039852418078e8,2.4985848390232267e9,8.18951370727889e9,1.2654761450440776e9,7.729200937226119e9,7.19516392120166e9,4.429558342004911e9,4.633080289290844e9,4.914685702159904e9,2.0588383976866022e8,4.768774482737647e9,1.8622079004808269e9,1.7251853448714871e9,5.7398759451272545e9,3.4105058646249976e9,1.8604396089429965e9,3.9317022490209407e8,1.6953276223706026e9,1.7732836523914075e9,5.043890776649995e9,2.5365750484524183e9,3.175341180604473e9,1.6658118015300083e9,7.98600454084718e9,6.444087802479532e9,6.874752393860727e9,2.0873616731049495e9,8.828112717251516e9,4.083276527709282e9,6.623485974800391e8,8.045485861989419e9,9.186918315828232e9,2.813636955418224e9,4.0523992009011455e9,4.6153895823139715e9,8.509899213908517e9,1.488779052112873e9,8.154359610563813e9,6.040881642607215e9,7.435619239049007e9,1.3824582320479717e9,7.043407849377574e9,8.332395956299671e9,3.645086412831359e9,4.009572451274568e8,8.899672713793371e9,7.034769154782051e9,4.0722999065362654e9,8.111036147167369e9,2.614773213316194e9,7.495471695295166e9,8.155246914010965e9,9.686827920870125e9,4.364865365743361e9,5.485027440345816e9,5.493742254635598e9,7.269746624598075e9,9.49299597285766e9,7.679259290457715e9,1.529690790746292e9,3.2006840901862874e9,1.1248072612222326e9,7.5841740857507715e9,2.1746524512945685e9,8.676979022652662e9,6.396421058966173e9,2.506006121556048e9,3.997813542674915e9,7.347940825904346e9,1.0876075236239014e9,5.453238004500897e9,7.390187172164689e9,6.401284837928812e9,9.174260473489069e9,5.113354811500716e9,2.2840761389515905e9,5.446209208027355e9,3.2672264518484974e9,7.383390367832235e9,5.176419607346435e9,8.909827085569034e8,7.703321767824774e9,7.698976015777935e9,7.15128725240069e9,3.044151998843372e9,2.7040319216582932e9,6.97678868675816e9,4.857550669979012e9,3.300399528469633e9,2.0418317046820623e8,3.9087136861194882e9,4.871526908392327e9,5.065523966631342e9,8.843744677522017e9,8.2483590626226845e9,1.2818636836912823e9,1.5500889743494272e9,5.751703405089634e9,8.333915829700275e9,8.942390811370977e9,5.945814181172222e9,4.4030134589334804e8,5.902510396313569e9,2.4598785931610923e9,8.370784064833015e9,7.353874618773811e9,2.866099906174999e9,6.482911570445664e9,1.3637427467432683e9,5.72529242510339e8,6.724516569002011e9,3.2244400279146056e9,2.1232163253703718e9,3.305615742062551e9,6.415753140039314e9,2.871778768130954e9,9.844746887852537e9,1.1022823377594693e9,4.068842090206347e9,3.510881828837089e9,4.451485872056391e9,5.479240927234417e9,5.184015594091777e9,9.5844329969949e9,8.891576482738453e9,8.644960445601624e8,2.1610160275169377e9,3.471274395393419e9,9.122019733601094e8,8.002311111705794e9,7.812962139568262e9,5.228624269519259e9,3.9396888259994535e9,2.150019557993371e9,3.916884062975109e9,9.147753263561905e9,4.2114403203755937e9,6.347872391462803e9,5.613064037854376e9,5.614741355265768e9,9.28266399714269e9,3.3698988658993278e9,2.4511537129049797e9,4.527437327636515e9,5.23877292634764e9,2.4647869007391667e9,8.161706354457412e9,1.5910176106203933e9,4.2615695234925723e9,4.7853132841050196e8,5.544709968862855e9,9.19036305352688e9,1.5702589357327845e9,7.267936921617673e9,7.183216972532284e9,5.940657826391328e9,5.002803369093808e9,3.332458500324593e9,9.365879901253687e9,4.1851134392203603e9,4.0122236010889354e9,6.7851550117726345e9,6.730220694738244e9,7.498067250508201e9,2.6203693224529834e9,8.154447699390005e9,1.8855422595888793e9,4.959094118134149e9,7.221940737440705e9,4.1291658166125255e9,6.49884321272877e9,1.9706264533248563e9,1.0250266534709384e9,1.5906514451807563e9,9.823677938673445e9,2.567543018712031e9,1.2942023262069902e9,2.4650728065782022e9,6.083584772360649e9,7.329759733314691e9,5.029818244451428e9,5.355187828661776e9,5.679242698250366e9,1.438076055631944e9,7.505102530848515e9,5.2072161164745003e8,7.540693177494973e8,8.525276147702458e9,5.856967454887704e9,6.262631314492285e9,5.922191417762739e9,7.775811348062551e9,9.820052219207432e9,3.4738020699884295e8,2.5977669451877804e9,5.288679005849738e9,5.691404923836144e9,1.8158424283757946e9,2.163200149505098e9,1.2969083142428384e9,3.077685357276341e9,1.957378145108226e9,6.30088369239746e9,2.225427526293594e9,8.72251163079549e9,2.600880475294156e9,5.601220297925486e9,7.294430101948644e9,6.804397186996943e9,3.4650775532700186e9,3.9916566780456176e9,6.890508207603033e9,8.023227057233721e9,7.364292404798453e9,5.214947820759977e9,1.1300876920756865e9,9.543459654137167e9,7.341651559120912e9,7.1906335394849205e9,7.499233718977966e9,9.184476097989424e8,8.93546263962809e9,9.204213351059042e9,5.055911500185007e9,1.9090641645662653e9,3.496822428087648e9,9.726883703548006e9,7.393460579826631e9,3.2972183646623874e9,3.6287238773126993e9,9.660415451626884e9,9.689105474365412e8,5.652032969476827e9,3.7087421703376045e9,3.265049433208286e9,6.060342663066599e9,7.511228075221584e9,4.125352036621912e9,8.350833512965047e9,1.4262402393285024e8,8.482887505966861e9,4.640196300691474e9,2.1329878381926737e9,1.7083641793114945e8,7.156464958741804e8,5.720538707206168e9,3.7333379025604296e8,3.3202627725517087e9,9.733161223704624e9,3.217722945391368e9,4.2164356254170575e9,6.193973867698332e8,3.533610237810857e9,5.003996114349045e9,7.607127692490562e9,8.421317232893744e9,2.404849855022935e9,4.654404009917208e9,2.766112957604551e9,2.981140150221212e9,7.694535244620629e9,9.956909480180069e9,8.883170356372374e9,6.455077391974776e9,1.9885601088389003e9,1.6625211111172023e9,9.786424180776022e9,1.4139940957312958e9,3.9071368264790816e9,1.5436313890553422e9,9.153410467623104e9,2.9302382184638333e9,4.694915896983824e9,2.3655628266105957e9,6.315198879430077e9,6.032386503526376e9,6.898842428641116e9,8.65490500891185e9,1.1505661754815488e9,1.7269760448002646e9,9.122342843608528e9,1.1104396575210673e8,7.567721506798808e9,2.27934372486191e9,4.810631045873565e9,8.422913223942491e9,3.9980613046051774e9,7.451955948049663e9,3.8822859377756815e9,4.43841213439958e9,5.644391742190791e9,6.184221492144101e9,6.519593885926056e8,1.8788984157555544e9,6.731683498203383e9,8.007482950289117e9,5.146101462527253e9,8.76789062103773e9,3.251739410847093e9,7.774690838486819e8,2.126596159096098e9,1.6789999127962186e9,8.25978792872723e9,4.1259044838402414e9,3.0299488229339767e9,8.240961157145965e8,6.310519586928249e9,4.5090080803338206e8,2.5698976487638893e9,4.457724434715234e9,9.400176731041801e9,1.609357217606433e8,1.3205609271227748e9,9.75439451308113e9,4.811812964916024e9,1.2143918873238835e9,4.390192689434884e9,7.957008124542366e9,8.150156323106394e9,3.538679380811216e8,7.829365973459166e9,6.564437461907261e9,2.9809622561413164e9,2.856344266951696e9,2.4474490472052736e9,2.276445719696725e9,5.337782278005115e9,7.693054628447672e9,7.129531153161743e9,6.450105384720421e9,9.28934070043751e8,3.127345214802194e9,3.119917475184669e9,2.035453813291752e9,8.60519235942101e8,4.315716978557562e9,8.014815317683566e9,3.6839553042024765e9,6.549573272193129e9,2.3179935437711575e6,8.157435368511757e8,5.312237011755665e9,9.237203017070173e8,2.5828008066969886e9,5.634842675230045e8,7.676033012528537e9,7.419668107755652e9,8.4559252480680485e9,4.1130118849738097e9,7.570016058522463e9,5.551419525041753e9,6.441625370956545e9,2.206897954679272e9,9.065129140200901e9,1.9173540626790385e9,4.333461456232339e9,7.907174217741288e9,1.672867905795159e9,6.376603787406178e9,1.5624930164596863e9,6.635471824175434e9,2.4195567026557307e9,1.8112752241778696e9,8.666879572999615e9,4.856792596859702e9,4.7648698299664783e8,5.937289436667641e9,9.439717130000303e8,9.854582627446552e9,2.6702564621914306e9,2.8244379087388973e9,1.0293894330895615e9,2.416088289922169e8,4.384430334116888e9,8.67045955792586e9,7.486848104084772e9,7.154031927634526e9,7.945053884053968e9,3.934571005882145e9,6.480355450596024e9,2.5086008302967653e9,1.246975450890312e9,3.7221170458919883e9,9.892535052302979e9,1.5053248234342341e9,6.376386606322715e9,1.2444530495287387e9,3.1761081589329453e9,2.150401772247912e8,9.09368958660387e9,7.978188054808365e9,2.3769267864181867e9,8.707129593423483e9,6.895180905478349e9,9.780439490351704e9,7.545526481585121e9,2.0292879083404837e9,9.883127656110435e9,7.078935267574862e9,8.057603754894379e9,4.0466134173252964e9,8.502512169216225e8,3.3220896988823576e9,3.8457820408679396e7,7.873097030673969e9,9.762555851925225e8,6.086358699864768e9,2.951914041936301e9,9.995660537874762e8,1.1712377898263893e9,5.178117606484885e9,1.7259671414681587e9,1.454933355981799e9,5.549440552817999e9,7.719813548960918e8,9.591286539967897e9,9.992432605831923e9,3.90470490352116e9,4.2250153149015203e9,6.884837382209308e8,3.88444738464926e9,4.45583351967507e9,3.79956945410434e9,4.606976384617913e9,7.230774811404776e9,4.398880098179624e9,5.119427433446333e8,2.801662317382785e9,2.638867843649647e9,6.398482692748232e9,7.951350189783235e9,8.009443208029172e9,9.428304242519588e9,6.481891197863371e9,9.619127985324017e9,6.204573245524464e9,7.979769469831372e9,1.0387385021949736e9,6.699801874962099e9,3.6022665634090066e9,7.895343684721317e9,4.720324301907497e8,7.868143672349325e9,4.1601811673455725e9,1.8050736158228165e8,4.0440217521626997e9,8.81525003120003e9,8.818967950221125e9,6.486704349888518e9,7.727674658714992e9,8.0138198344903555e9,4.46638557292937e9,6.559468808165898e9,7.627569802973322e9,2.0900021028750215e7,9.360921250448402e9,4.045128395535618e9,7.580785014023171e9,9.522861998609306e9,7.210523671782868e9,5.299704864471336e9,7.848571174009986e9,6.019987162938715e9,2.589792348900721e9,6.859458536454858e9,6.060622799486475e9,4.00067484114646e9,1.662432316169008e9,8.424848737442022e9,8.137048971446466e9,3.079294840277661e9,2.108149865750729e9,7.665993034028096e8,5.802874540581651e9,2.6386194306752276e9,5.2403359690792465e9,4.62244641956053e9,2.0336156533124483e9,9.434883912928226e9,7.527028515250876e9,3.2482947882734327e9,4.682799406829203e9,5.0802186225171585e9,1.6299816234941833e9,5.86686292545327e9,1.6251598487972596e9,2.7716803008875947e9,6.536608408675725e8,4.0347608158439784e9,9.158318362673687e9,5.905843027067422e9,7.271131333349905e9,6.119688671949166e9,4.0010187337386994e9,8.021063682747674e9,2.2823115813085427e9,2.455850447370782e9,5.148830311012117e9,9.500263741514881e8,4.287094789771743e9,7.177301438375971e8,5.693945890455254e8,7.596046584224759e9,7.56651307428676e9,5.202493133911661e9,2.649809235157631e9,7.592942893322287e9,6.5030609554986925e9,2.0037424344023092e9,3.189539160855063e9,8.396996172017914e9,6.607721771196627e9,9.169194727228495e9,7.031552891499818e9,3.0712814930386066e9,7.173505150711869e9,7.242610532697425e8,5.957707437503038e9,9.65029078875217e8,1.0122655469494867e9,7.258452218503505e9,1.9357342447377012e9,5.676042171743907e9,8.043234578381853e8,7.545851574575667e9,3.9526185011463523e9,6.1136161468455105e9,3.334130381805505e9,5.290333588473319e9,7.7698146215295925e9,9.171674699545225e9,1.042812152397411e9,6.145096278571835e9,6.063672458073286e9,7.574395467659635e9,1.1092089970229812e9,1.2727959480468242e9,9.508040994702147e9,1.2559686583521924e9,5.459440232034792e9,1.9535800384198632e9,4.276845885120544e9,4.9548298320400196e8,3.3763846384404e8,9.52105969883601e9,2.609949392413595e9,1.480395940213246e9,3.7227493664913635e9,3.629276656281849e9,4.628336305793973e9,6.955181359878828e9,8.684568455124529e9,1.361823752510618e9,6.090403257511855e9,4.0989466445007205e9,8.283542911484616e9,3.0804643022533307e9,8.60430494610512e9,6.522297434769111e9,9.15264355640932e9,4.506964704148585e9,8.339761934134131e9,3.3890186506391163e9,3.6640722447800145e9,4.320836842207802e9,9.15171924556063e9,1.4415760865756243e8,2.5791447029572e9,9.052864604292185e9,1.7036365195459145e8,5.251061747722237e9,8.138681374872558e8,9.543324480165213e9,4.953310649842253e9,8.078056058546974e9,4.794541689057242e9,9.753187874860685e9,1.7183412904823349e9,6.831028110254751e9,9.6279268269763e9,3.5387716416429625e9,3.4376601590410438e9,3.130985584492536e9,2.8396805148526826e9,9.99001163422077e9,7.629792041334735e9,6.84970192606016e9,9.191214612578814e9,6.479324090865121e9,6.202164056367482e9,1.3745928686049635e9,5.769116353752278e9,5.05963874821443e9,1.5890216795287826e9,9.788061450815632e8,8.523136475552878e9,2.3620053404197928e8,6.9919247189146385e9,1.6865421376461608e9,4.006132662051358e9,4.848684436715487e9,4.975997949267009e9,2.2915786344617963e9,4.260398657597404e9,4.358571669573422e9,7.557160978664261e9,4.1693246878452215e9,6.914249369706678e9,3.2991786329555907e9,2.171577292345036e9,8.359729173266246e9,6.23615241667987e9,3.8745731949718266e9,3.3306673061990542e9,2.281602035213495e9,5.747213149813035e9,6.402520082540055e9,6.0575689297098e9,2.57006933860225e9,3.5263940815448337e9,2.722036829012973e9,7.125539753215942e9,3.3068643847411504e9,5.956137858267632e9,3.0962464002255697e9,8.981889733910257e9,6.726418322024275e8,8.927969405789986e9,7.577605657860811e9,2.163976994090597e9,5.254978940958775e9,4.1622311198380547e9,7.05873746306179e9,8.113272522946214e9,4.090525759014869e9,1.3412396915684576e9,6.618395956368508e9,4.571418076939886e9,5.6475578449535265e9,4.579004582795667e9,2.6839904942327085e9,5.860147486272442e9,2.265573792524539e9,3.9771013762126174e9,1.7197216352954736e9,7.551217421972789e9,9.615502593539019e9,8.078243544967434e8,9.325947318087019e9,2.534711367462732e9,3.0316681168088646e9,6.493929920475334e9,8.494311079650642e9,5.152247478934931e9,9.950774238880219e9,1.8768235411770305e8,6.121543547942779e9,7.875529789622517e9,8.162010036382886e9,3.386614247834596e7,7.982864734568941e9,2.566872738673738e9,4.0564112130638742e9,1.9902547269461813e9,6.224181971705361e9,3.882294937305977e9,1.534044974544656e9,4.3758135924072075e9,5.544702648952659e8,3.693902942685219e9,8.658829957510462e9,1.3070841476711726e9,5.804855156981469e8,2.9650457957823153e9,6.0112371527373295e9,6.217586344611122e9,5.92950267464899e9,2.402423916087004e9,2.096237375164588e9,7.086162520746941e9,6.321454334143461e9,6.029858978388351e9,8.349614410891178e9,5.450716963068003e9,6.6937376152106495e9,4.251080557703892e9,1.7217343543146558e9,2.1804866095280495e9,4.78687969484659e9,2.2270078409621698e8,7.003551916723816e9,9.0873911701383e9,5.092211844294348e8,8.582630479172738e9,7.321651305631358e9,6.463435052864925e9,6.072663028888903e9,1.2956518039985442e9,5.438967949459094e9,6.405175963199718e9,9.61380878283452e9,7.143264206202208e9,9.385343889465008e9,4.950802527642343e9,2.805961436047877e9,6.4094640026826725e9,3.4099903875231e9,1.874903931162072e9,4.142055152086932e8,1.0130263079124991e9,5.392403585089391e9,4.722654941995651e9,2.9819050972921324e9,9.20678404390407e9,5.012562337183586e9,5.821087560929453e9,5.666405180795804e9,8.75290181315268e9,4.403182332487259e9,4.786634297218191e9,4.902947949516129e9,1.6801258675123653e9,9.985375091973927e9,4.894639034663928e9,7.187420234920127e9,1.3566212122730691e9,9.765439699154699e8,4.5022592832678175e9,6.367443066223646e9,2.9880680608383512e9,4.546130936580361e9,3.680024040617359e9,8.882015489380985e9,2.990397539520777e9,4.8492113619144183e8,5.770412705248973e8,3.5476556185813055e9,5.4818413553124075e9,5.036490528162554e9,2.6599727212271175e9,3.9736415018169236e9,6.526630124297416e9,3.007347734478308e9,8.264128089251414e9,3.5322214558562226e9,8.950861405975294e9,7.148975340134895e9,4.66914943962429e9,1.8292072726288066e9,5.807999955557623e9,1.4312946380659552e9,2.0958367513293874e9,6.851460845734661e9,8.76635064063621e9,9.464399269710457e9,3.1242880605304146e9,6.894737031313492e8,2.491000139289681e9,2.947830429887521e8,7.065386830346727e9,4.356426643021345e9,1.3409751146302319e9,4.2306610733133807e9,9.897381334439165e9,6.05559980742785e9,3.0292732900114074e9,8.800623035070598e8,5.099270523054174e9,9.280513999778181e9,9.211826494652925e9,7.263004873217877e9,8.551111926463733e9,9.994608659502836e9,9.583693593042776e9,7.279376255296026e9,1.8303588367681155e9,8.6032078488746e9,6.300183576446657e9,3.91211385422223e9,9.279378819204268e9,9.154436235192586e8,7.529717476248653e9,9.598271682318892e8,1.3971574709383328e9,9.373868040447948e9,7.624264325018622e9,1.9320174773228593e9,6.179289401143024e9,8.797338595789288e9,9.680400515543978e9,6.574784718494672e9,4.725298880489429e9,7.276359307103745e9,7.790903970010514e9,8.392776895134653e9,4.9855768549049835e9,6.868152126616403e9,8.730807900508766e9,1.2866117607025273e8,6.993899845272932e9,9.808201861344975e9,9.846225858555027e9,7.26608236647348e8,1.0723385016577914e9,8.684513629148726e9,6.625206767900184e9,4.609566577866969e9,1.897436521834437e9,9.101472813788534e9,5.719438209485663e9,1.445340756482514e9,7.154213972368669e9,8.06093056877123e8,8.694309215093487e9,3.16100398670588e9,6.090750660659519e9,7.309621940692665e9,9.402182083334064e9,2.166624645245827e9,9.013380387388386e9,2.72948203989788e9,3.0878628434026337e8,3.7324882293314676e9,1.7690211852292826e9,1.6913540910788426e9,4.0706515769692087e9,4.0468231434741063e9,9.9349599295199e9,9.180502826813934e9,7.358453771148949e9,1.5349134566156942e8,4.143639953720172e9,5.032826955314255e9,6.061938091592309e9,7.512460711593511e9,2.6734069734896793e9,6.657533785215356e9,4.461759589620841e9,6.714780798838142e9,2.535573057699361e9,6.732749966545482e9,7.702078491844629e9,1.5000849365605795e9,6.747082429439404e9,3.15191398272445e9,6.068582145286507e9,7.6885018701734085e9,4.783332849457528e9,6.316872969971059e9,5.824105585437856e8,3.351435138369263e9,5.95222371154944e9,5.348950815693965e9,8.294983627115347e9,8.983930678718643e8,4.284878430003074e9,3.6367697080291514e9,3.0139448628087873e9,9.77649253250425e9,8.073287297831299e8,5.941821048008778e9,3.7017274552165633e8,7.065338194458862e9,4.497144511431089e9,1.559532686564441e9,4.9947461276792755e9,2.9672920394491153e9,1.945823690474261e9,5.60532999825639e9,2.8348906358540595e8,2.533043732297864e9,3.326746693617112e9,7.137227319646294e9,8.39606206491868e9,2.420227049455714e9,9.10313559160837e9,8.144812540742797e9,8.099351782567569e9,6.496751015554965e9,1.3462420173052049e9,5.230618646399736e9,3.8384315966522032e6,5.42724092605849e9,2.0548453591990633e9,3.5645297984807677e9,3.9529563366796083e9,5.474674208556297e9,8.047290700933505e9,1.2170956788748465e7,4.575779089160147e9,1.7483516161649227e8,7.071533008517369e9,7.824952310016796e9,2.3997417501735554e9,4.425753208142796e9,8.114119932526906e9,1.2231549476326332e9,3.7541778911948097e8,2.950998558976842e9,9.676250089012522e9,7.834767398229144e9,4.339931278345061e9,4.2489497253606844e8,9.27335247946441e9,7.580599419226895e9,2.2879063496146145e9,9.792145784042759e9,2.210604726874885e9,2.6902889333157377e9,7.99230491139702e8,2.1328236594961636e9,3.226729159095122e9,1.4868835180000162e9,7.59524128132617e8,5.082821823047017e9,9.35287798978797e9,3.7013196709903007e9,1.508996749374658e9,3.949180729712429e9,8.270107560094042e8,8.62035065740685e9,7.127533731987958e9,7.905266677561556e9,3.4226521267987385e9,2.666282247312346e8,7.310775610893489e9,4.545258432549532e9,3.9279539768662053e8,2.233194762796592e9,5.717948859937941e9,8.555592404485482e9,4.863751710078688e9,6.048105026447012e9,9.194139886689056e9,6.96194017464127e9,6.377137824883269e9,8.005617163879425e9,1.3425436010678127e9,7.072307821218865e9,6.196780486881692e8,8.1208167209135275e9,4.814278514611888e9,1.7735879072273486e9,5.2227379791723795e9,8.257546272490391e9,3.6268500169444575e9,9.399437988157145e8,6.759216250953725e9,6.9297753949529505e9,2.859846022975426e9,6.999826466178828e9,7.9117531732305155e9,1.2797150401530288e8,4.926732803239917e9,1.2398331911645243e9,8.011273324816197e9,9.757423771839401e9,2.222858690622951e9,1.8415695555335732e9,4.406466036220521e9,1.8220679892419868e9,4.833120582947829e9,2.97178446753132e9,3.9239249139535217e9,7.665924333650251e9,8.142249083060825e9,3.5745376000199113e9,1.142541187430085e9,5.369076464992804e9,5.4815331770343e9,8.482242893073297e9,1.7118493383133526e9,4.527419109084947e9,7.6399975412033615e9,6.431390984426471e9,8.385534375316335e9,8.8734532866753e9,4.80734452731849e9,2.982557717097848e9,1.7676790936436017e9,9.121462593088877e9,8.224158120425543e9,2.477360770730634e9,4.552015114474945e9,5.698899384167948e9,6.533111948670607e9,1.9912758384727414e9,3.8411498040717417e8,9.105168580897264e9,5.99606576063519e9,9.176333286174988e9,6.164695928438211e9,9.997398311811441e9,5.569934416196708e9,2.3530576948824987e9,7.373223829961642e9,8.651547640032608e9,1.8624017804883885e9,9.730312270520521e9,3.165465083170487e9,1.8946779532130864e9,3.8266341172252307e9,8.133750492209772e9,4.777636151616194e9,6.9971255476773815e9,1.3661417911756258e9,8.061943691373437e9,9.36347522523856e9,9.053761931835201e9,9.094343422587027e9,6.802896228693916e9,1.21667642917195e9,3.5606191749217286e9,8.335825116687305e9,2.9402571735219054e9,3.740857667318357e9,1.3132194378760097e9,6.968177237724146e9,1.479603285387825e9,2.6614214496810207e9,2.5603926517673326e9,1.4887700807700565e9,8.62226171871967e9,9.801017259684248e9,9.635854470242567e9,3.2388158201760974e9,9.085466260989908e9,4.782810305259411e8,7.056346793547529e9,6.440332188461997e9,9.297597503737354e9,9.166005266327528e9,7.698310146712845e9,1.9970888848346412e9,6.185202229693155e9,1.2004796167971232e9,6.685138456951474e9,7.517333571829904e9,2.962486664031342e9,6.514678552539847e9,7.519763785721301e9,8.362887153332827e9,7.215905303547832e8,2.8153792610663333e9,5.704730453626782e9,3.5962405498542714e9,9.237332666442726e9,7.310739189101366e9,3.475457774797974e9,4.4256552278172e9,7.271408921977742e9,6.870673134335195e9,8.590402698087954e9,9.152525992717163e9,9.596937612506779e9,4.567111835737963e9,2.9612901010228677e9,4.1542093519507093e9,3.067405130925912e9,7.6812901439877825e9,2.6307923775456166e9,7.312530856943165e9,9.01747514272817e9,7.181086967962179e9,3.678627809053192e9,2.3089084180548315e9,9.512380788920603e9,2.21322630189683e9,6.838144425394628e9,5.443243966476519e8,8.575173772235515e9,6.198284607524646e9,3.837191736195666e8,3.1313576659036145e9,7.981313743396189e9,4.672508957417952e9,4.432187411082478e9,6.09088815748032e9,5.0831386687733e9,7.763209851920411e9,2.1153954960399556e9,2.6766687313778005e9,7.908351798078413e9,9.814435677919733e9,6.845985620435535e9,9.011234787833996e9,8.562276808799865e9,8.326913126671239e9,3.662337996058397e9,5.040756236600772e9,9.422531455944775e9,5.033180570561583e9,3.9331230716168785e9,6.157431521212304e9,8.2019829697690525e9,2.7159564061932416e9,7.053441738281875e9,3.014736827801184e9,1.6948433180299282e9,6.500761953631221e9,3.995053379228426e9,3.491571183763087e7,6.086502938058896e9,3.286836925454011e9,8.43832494294908e9,1.2636740015883186e9,2.408756181000693e8,6.691068410708897e9,5.835461123971908e9,7.487579025957693e9,8.190261012110353e9,4.693481762621786e9,1.343144782864737e9,8.548238711251759e9,7.3268010806112175e9,9.88529785259683e8,4.586645145646584e9,4.504931735611816e9,2.3859546322376356e9,5.462918798645553e9,5.081240221314018e9,7.361155073590293e9,7.548472747539464e9,5.3118340017710495e9,3.943940768247092e9,5.630958871495333e9,4.674398714678235e9,5.570240336468802e9,6.311650925684875e9,2.176799145255788e9,1.0519934711101075e9,1.9338116140487106e9,3.4034458163052783e9,9.253828987769086e8,2.9830697130684624e9,9.097729293054979e8,2.635005498754225e9,4.450332303153622e9,9.781103844341221e8,6.837119892064707e9,4.604015122002303e9,4.2926560517815846e8,1.6270787743010573e9,5.246476863994953e8,9.483257737554895e9,7.378296861589947e9,4.2554190844875293e9,4.336199941246907e9,1.8085442796683028e9,7.751057259469618e9,8.474828833863598e9,5.118441200118033e9,3.0198592125134773e9,2.260505531083801e9,7.196778029972619e9,3.294317105608795e9,2.685153409529787e9,2.3778908837151246e9,7.249219639968629e9,7.106978219127044e9,1.0550489909804072e9,4.389525287370496e9,3.9552825812502546e9,6.981280008968539e9,1.3025853535697253e9,6.810832311783999e8,2.0462292866970766e9,7.534095716488832e9,7.98476725795718e9,6.235423513296099e9,4.0384894237092605e9,7.962835782266719e8,4.790172168732618e9,7.675457895365455e9,7.182266928062653e9,5.892297839911271e9,9.282075722499505e7,5.609710310312012e9,5.239793715161532e9,5.501740560756774e9,1.5880085159719603e9,1.8265638273425033e9,2.2729998388084927e9,6.190410009961746e9,6.371057066517469e9,5.747560350267583e9,5.6019568625558405e9,4.352127031325105e9,1.0482331991933347e9,1.4282264707553248e9,2.698268685013343e9,7.775410498167348e9,5.0499195306952715e9,3.928801639222994e9,6.489664743137324e8,1.4602293363684604e9,7.514194164331078e9,1.782575590846165e9,6.242458809893749e9,9.309700941781101e9,3.0601127133451223e9,9.396756392543318e9,4.895573619959391e9,9.53027618670394e9,8.848333679281448e9,7.459351004331077e9,7.608363852172222e9,3.807166696560569e9,2.812693662098802e9,3.4529858821051517e9,3.165196402418439e9,7.717545466169261e9,3.1156641595348487e9,6.490448862299461e9,2.644336642738354e9,2.933701131619153e9,4.528727862219862e9,1.2002052968272858e9,5.881292680417882e8,2.2522979354382367e9,5.051764173123763e9,7.607401208600897e9,3.536561653531579e9,5.107560841105892e9,9.414597659211695e9,8.037736896993482e9,4.030124522806541e9,8.484627958698006e9,6.760359383031679e9,9.905964575901937e9,3.546694938415973e8,5.563624434799392e9,6.430308884475445e9,7.479655127851892e8,9.56378594924665e9,4.875638985710804e9,3.024465639010276e8,9.835271578219751e9,4.986213477037133e9,4.0635899061774626e9,1.3151752123853345e9,7.678610467217221e9,9.152675051777802e9,1.4906019377143598e9,6.60788145530662e9,5.170587914718584e9,5.495546340757884e7,3.6240802020568852e9,1.3771559141107593e9,3.0911082725893545e9,8.899213363424988e9,3.6173541322096014e9,7.519472942300038e9,5.180835469738248e9,1.6811455346237535e9,5.871027060155893e9,2.34439570404021e9,3.816660874693952e9,7.315984788964114e7,3.835522298008659e9,7.62732535490298e8,8.377164438509249e9,6.8102488528807955e9,9.52301957467804e9,8.3489044516835575e9,1.6961956761191833e9,5.669170087080813e9,9.835983719378689e9,7.639965321213554e9,5.470536226631094e9,5.925145756841643e9,7.035265501753614e9,1.2636501543899958e9,8.75046898299074e9,3.418171029679109e9,4.283661553039695e9,8.078135592323435e9,4.83590097908977e9,5.856380121603655e9,1.0007248039466865e9,5.291638558079016e9,4.899300416024841e9,5.89058648625694e9,5.119770024258852e8,7.837181405184003e9,3.956795438786195e9,1.6771671274965293e9,3.106507979280082e8,9.582245196466822e9,5.604269662764816e8,1.9892354645780873e8,9.757076134176582e9,2.199297631340813e8,9.73006465699012e9,6.814311179224886e9,9.439680278261116e9,7.994856001789875e9,4.749910015378371e9,8.095289491852719e9,9.41121056128175e9,4.1612726200233674e9,5.855279020648063e8,7.446275972573837e9,2.021521421241238e9,4.449851662260123e9,6.149890525844426e9,2.1819222379321723e9,5.060914556126347e9,6.6598846858593855e9,1.1506446667493086e9,5.939643375765402e8,7.335313589252848e9,8.138312730696474e9,8.047287383722747e9,6.181438145871415e9,6.736143861977328e8,5.494148602061263e9,2.9676652475122833e9,9.388773640374569e9,7.505818228524246e9,9.74976493528943e9,5.667235496520093e9,9.383210850039097e9,3.896061391161608e9,4.923242524918144e9,4.1555078716318994e9,4.2356198179079776e9,1.3093308464024634e9,3.7189984281481323e9,6.323738110695036e9,2.172430254178762e9,3.2649961740765433e9,7.107956112891672e9,4.257153182111476e9,5.098907762595687e9,2.420423010284638e9,4.658380564334563e9,5.32718377541638e9,2.060391435156058e9,3.463826005841864e8,3.6884816777432303e9,4.075074757650836e9,2.568041606528546e9,9.124181745545768e8,6.338068947366114e9,4.68571677543045e9,4.713260922075916e9,2.86967366607778e9,6.444136305915162e9,9.590435834143112e9,9.968526373468376e9,1.9204854015505978e8,2.822794744376744e8,1.6026264493819075e9,5.427416471397822e9,1.688053324251122e9,4.776999989162742e9,9.349582255635124e9,8.403341315005801e9,7.771839690738533e9,8.915463499465338e9,7.806218206732708e9,5.874881065438634e9,8.9873323333217e9,5.754815949386094e8,2.682076671463917e9,7.870188698885084e9,3.7178201416650205e9,2.91336896314075e8,7.838443505047998e8,7.777281968552209e9,9.518919720937925e9,1.8047174373589346e9,4.418389862937382e9,3.2964181447349873e9,8.96999822379555e9,6.126717578618247e9,3.6971969203227196e9,5.454518254322311e9,7.130365293890115e9,2.0204406650751073e9,5.19677821545552e9,4.300624905452577e8,9.151600320082085e9,5.105539280599786e9,4.834421139660364e9,7.887374824238541e9,6.233168209750672e9,9.257660352206732e9,6.789120706967402e9,7.900796838968027e9,1.518615606758743e9,4.444105701050899e9,5.30769268286367e9,6.054517388945221e9,8.814227015434988e9,8.181424608152239e9,2.7418852700179605e9,1.8742457537641366e9,9.385578504031633e9,8.602160144544016e9,9.509297470312626e9,1.2015869381331034e9,3.0133659806180124e9,7.155955095212278e9,1.2565908238435242e9,9.825285631357857e9,2.5063109504725657e9,6.711975583954262e9,5.92925423449161e8,1.5018553694366e9,1.5991553599774888e8,1.0336323172669148e9,2.124436087286442e9,3.239148691471597e9,2.655958121828259e9,8.76586372616641e9,1.1387960615587378e9,9.244554113333334e9,7.261495598737003e9,4.865040481547178e8,1.2600522944299564e9,5.434098950082212e9,1.0101400617045675e8,8.024901813538743e9,4.578729241687381e9,1.700544312146297e9,9.08821262883688e9,6.389090724483459e8,4.642435470048417e9,5.175520021717885e9,9.820213868583231e9,9.057366044357916e9,8.371989493938711e9,2.2273685188130765e9,1.8676633373787498e9,2.1466815916975002e9,5.727621589586059e9,1.5870606645961595e9,4.244164490185789e9,5.790067925469755e9,4.9610675003063135e9,3.8728117952520757e9,6.6099957670954275e9,5.968665324464806e8,5.347172192352011e9,1.1417027912990997e9,7.278655599618834e9,7.472074633043604e9,7.650199886652726e9,1.5009861896433785e9,7.39603298342082e9,8.831867258191357e9,7.382904269233609e9,6.442099419590339e9,6.122751009347793e8,6.267324122504779e9,8.552102529379901e9,9.533869276932117e9,4.263579795601735e9,9.354164657525845e9,8.521536689647342e9,2.6330067039148707e9,3.3876119440025954e9,6.99046018852411e9,7.144438092992501e9,5.651196159714979e9,2.486806672848122e9,4.754464561451159e9,6.627665751000878e8,7.615151707832546e9,6.792776805076776e9,8.875328704388523e9,7.624926136088825e9,4.1648474627168064e9,6.81201736738805e9,6.171375911226937e9,5.482344547488017e9,8.475697324887205e9,4.3770745795299015e9,2.7335165018532968e9,3.702297234031028e9,3.2868232541673794e9,3.146884733028613e9,6.775237150316612e9,8.103618708955763e9,5.76278115973808e9,9.494172000927347e9,7.875704561293813e9,7.791440920683364e9,2.691449657823448e9,5.409429267740394e9,3.9198310644957457e9,7.024532161829409e9,6.33399942081304e9,7.744288490695145e9,8.832301027556759e9,2.3686483473067575e9,8.683173470724401e9,7.882082303340881e9,9.728037243085987e9,4.354620638077021e9,1.0916638991702821e9,1.771553725988191e9,7.028043137627863e9,2.622948012740237e9,1.0484791906293612e9,3.452375538985737e9,3.79681795063308e9,5.173386442573367e9,9.83368726540851e9,2.389471986859044e9,3.883331490625742e9,2.160056170372018e9,2.013375151428327e9,4.0299283920119176e9,5.08369661974718e9,2.1064757865615413e9,7.5319200828873205e9,1.4952376261272438e7,3.0372871859716046e8,3.376590522267472e9,2.8296822687058177e9,6.807499487384672e9,7.94050421334103e9,8.79924576269363e8,1.9974263321637032e9,6.805917380768012e8,9.479215730983515e8,9.42638014734466e9,3.9247828705833154e9,2.537168218574596e9,1.5815176145086095e9,5.965008313251698e9,1.9341567776924784e9,3.350608217693367e9,4.3065005264459664e8,7.300210004808715e9,6.837172051513769e9,5.4819105246575575e9,6.114117267597613e9,3.739148679361202e9,1.7775337525358825e9,5.7319830810012455e9,7.531474591766252e9,1.87398052372605e9,4.0906477269865084e9,4.335385636936856e9,3.0020834655597363e9,1.0106805629159788e9,6.058553560015374e9,5.496817865598364e9,3.345309689494517e9,3.7506977055181446e9,4.693285577432474e9,2.9640239478561006e9,4.760283689197695e9,3.001942728471456e9,4.681907929867858e9,3.904939593077219e9,7.341733166612147e9,9.91040224726149e9,4.371896726842441e9,8.012071424691622e9,1.8373135891603632e9,7.566080809526592e9,3.307369505880051e9,9.991920245026447e9,2.9070728183530483e9,6.888727828450665e9,3.8989329159646525e9,6.426890428363558e9,5.388963112551251e9,5.7594272969975605e9,3.308129001826351e9,7.245491608013455e8,5.577845450659002e8,2.8705838735320444e9,8.31315237917103e9,5.388244280108745e9,7.755599181415139e9,5.421886907608602e9,7.760394039430227e9,7.051128666278782e9,7.556584056808435e9,4.038011494186796e9,8.268426243902844e9,9.836073836217236e9,7.146582748329698e9,2.0178801330002637e9,7.42429783350066e9,3.1159822104701276e9,5.590547024688818e8,8.456024186460561e9,8.887031654237415e9,2.9509646721478553e9,6.506784042762895e9,5.0643481632267685e9,2.229145687837438e9,4.027109480240186e9,8.82561342987472e9,1.3462432408751879e9,8.976661915790829e9,5.281525534349962e9,2.2210878363219443e8,1.2805965589864554e9,9.73392897813733e8,3.4123139264039483e9,2.930295089031664e9,2.1007226975682359e9,5.763442980477806e8,7.331970236260601e9,8.481187374963222e9,2.570400254831069e9,6.917903898628129e9,4.1102302690508785e9,9.81168144099061e9,4.864043670236069e9,1.0184078516433414e9,2.954801841613698e9,4.0927711325855207e9,5.209724796224317e9,6.861934255499878e9,7.68773366337221e9,2.628401161625946e9,7.770200941131056e9,7.371219565227651e9,3.5246294923478684e9,3.5806115252844796e9,6.206261425223311e9,8.576255498519745e9,2.6253556102001553e9,9.883284514727371e9,6.50351464648129e8,8.730420432689287e9,9.833336177833864e9,1.685812794259639e9,1.9149938727373362e9,3.474664385269306e9,3.8977661665598583e9,4.357137993593624e9,2.3566301903279605e9,3.855703517094253e9,1.5345412723600938e9,3.1942983304368176e9,4.399091783840582e9,2.3624635261781125e9,4.555280868067867e9,7.243106104486425e9,6.69262351620903e9,2.4302055609701214e9,7.640328781883869e9,1.790719308683908e7,1.145332861711922e9,9.709877924666605e9,7.875956541839686e9,7.161388784152281e9,2.7217631730646152e9,3.580056501022814e9,8.93320986001076e9,4.279808689299799e9,6.802862943847192e9,8.308849039795444e9,3.8735251451101336e9,2.9513633912126904e9,4.22207470670535e9,1.6384403630520318e9,3.8394145888226027e9,7.245266183669008e9,2.3155649952978697e8,5.699653797528716e9,1.7923402006521215e9,9.78721092425953e9,2.6311392809430833e9,1.5080302276195278e9,3.8499438892880077e9,4.1789355172914653e9,4.598434467761182e9,7.245170972035055e9,6.7275487590012e9,7.418791927510852e9,2.1405591635579958e9,6.847828595912699e9,8.18688832387688e9,6.234087338799641e9,2.817661810253876e9,5.746393972776299e9,6.685212464676859e9,8.41368473377619e9,8.571272678391278e9,4.314155702474478e9,1.877116014468444e9,4.24879938553973e9,2.514389275244655e9,4.717790619124738e9,6.009424307662889e9,5.217249304445579e9,2.2626840947805104e9,7.981452009305132e9,5.027559203391083e9,4.662479335995331e9,1.7992437813821716e9,3.291793196586148e9,2.8416960030912642e9,2.702513496310741e9,9.658858998014938e9,2.9015546709698358e9,8.222642794436158e9,3.96018811817378e8,8.011363601673968e9,9.036855392107664e9,5.538000133402869e9,6.43583028337096e9,6.748632003065232e9,9.499989535678787e9,2.820882297836129e9,4.178484595775878e8,1.953094029775303e9,3.0562421780631e9,6.3511148198450575e9,1.366752830318727e9,4.672507349112065e9,9.257724057492504e9,5.985840096918292e9,3.495879195321805e9,7.401585461104634e9,6.554579885196856e9,1.5335235122505996e9,8.526870718660018e8,3.6771364962365837e9,3.7986405139495206e9,7.8982004393046255e9,5.90092119835568e9,2.5761572004773426e9,5.123209559211781e9,7.3290414329980545e9,4.45861554725197e9,8.717374514994823e9,7.687265319515235e9,3.0707130340006495e8,2.0501421938703225e9,4.246852065984423e9,2.359478142855398e8,6.440413062705278e9,5.323125424046172e9,1.4455336679176846e9,1.6088925924455655e9,3.394936170211591e9,2.8372179169472423e9,5.948321587055512e9,9.739079861247293e9,6.700855148823362e9,7.942385573303052e9,4.582638338007599e9,1.9774013152464855e8,7.176797461341116e9,5.530576050133096e8,3.717134151036695e9,2.4521361667137976e9,7.8262623463963785e9,3.717069682525451e9,4.308969359841593e9,4.970963428329962e9,9.811175829382046e8,1.832849880769124e9,6.234715525353334e9,3.3839050427954497e9,9.615487884178919e9,1.9624973003067214e9,7.531455325410027e9,8.600204824992025e9,8.98804636451152e9,5.7748140015647135e9,1.9846493366979156e9,6.922891495850675e9,1.4016076873384843e9,4.1271527081839685e9,5.063515970939529e9,6.266132085465408e9,1.3360494899008258e8,2.5811969093385334e9,4.946555995794732e9,2.4317849775642266e9,9.887208785274569e9,1.7497118939483469e9,5.198796912465498e9,6.054147966390011e9,1.9575020713696656e8,7.937950878543275e9,3.602291341348435e9,6.831276479127023e9,1.484324166840031e9,8.926445741122113e8,7.644748118238442e8,6.718772177832534e9,2.0552372682113762e9,8.599826972531305e9,7.645146601347226e9,1.642300542751971e9,3.7565014733691893e9,3.1441431088409243e9,7.123088472036968e9,6.8955391246696005e9,1.9803297450308254e9,1.158928960354111e9,1.2715616661859264e9,4.438953566507472e9,1.3088431396304524e9,4.039540832971702e9,9.127970532155378e9,4.258050539196252e9,2.2456641436218495e9,1.7207739977131608e9,3.457152295602538e9,4.520936790311847e8,6.788778974512913e9,4.179100103380503e9,6.541409982530159e9,1.9599090477372472e9,4.390145155137757e9,1.8254501680194423e9,8.756470747738113e9,9.966271366614653e9,8.942415086471634e8,2.648479348615663e9,1.7001799190791512e9,4.938738600709408e9,8.000450793111839e9,1.078493070909653e9,2.095833575933549e9,4.837467985627686e8,5.0181405874549335e8,7.236284769833934e9,6.980653951471106e8,8.230700525601112e9,6.528831768009951e9,7.321839112111408e9,2.7573284948690124e9,7.991707040545343e9,9.644427087998526e9,3.743134845129266e9,5.580083465491788e9,6.547735085824127e9,7.917550071628121e9,5.873910971210367e9,6.032769558258828e9,1.9630676980767593e8,7.108559703025735e9,5.171270277420261e9,4.04571694441769e9,4.4403663862790575e9,8.268100499269116e8,7.172171493573164e9,6.903336134627542e9,8.395895806091006e9,9.932930413677956e9,7.444404188111507e9,7.733181265550082e9,9.257261639149529e9,1.2411070153252046e8,5.434610583743141e9,2.0983470929305792e9,3.4138280841291113e9,6.414165354045155e9,1.0534520166818329e9,3.114174808890865e9,4.623109149619396e9,9.695053596799568e9,8.562795005562613e9,6.149841609083812e9,1.4621943988254704e9,9.433162200418509e9,1.9100412966906278e9,4.0118466901496286e9,9.826203943804886e9,3.475752426245906e9,8.04304963417962e9,1.0915848602849786e9,5.041597130974655e9,9.83017078592253e9,6.918393791763225e9,3.312931492629032e9,3.008537768693664e9,6.4787436446530625e7,7.869523874081943e9,9.626971729070461e9,7.500137280076848e9,4.955813717077276e9,6.765910428497171e9,6.7426153780078535e9,8.729511826299217e9,2.6354757598895197e9,7.759475205208201e9,4.719460281652576e9,7.187581550923178e9,5.923979641465876e9,1.3630833914994478e9,2.960897653276993e9,4.402242869739634e9,6.125123126865907e9,4.5195735627227676e8,1.5503179173054693e9,9.47855441253894e9,6.086124219629123e9,4.530438965233167e9,8.77286009332584e8,9.381794340025099e9,4.609213799041553e9,1.5854825112812188e9,6.712397061819741e9,8.610059981715002e9,1.2394885233973695e8,2.620038524910406e9,9.175038390632881e9,4.0168929354078007e8,1.3226922108325545e8,1.6413415707643898e9,3.632588747503057e9,4.1164209660389285e9,3.2663300550928054e9,1.771753541333053e9,6.759323444744592e8,7.009818540404157e9,8.311796847466115e9,6.795587790766021e9,2.0914808693114994e9,8.170485709225968e9,6.659400225112922e9,5.84191415438684e7,2.5543799063554752e8,5.876470936208667e8,5.881549321467434e9,4.553486041600732e9,4.1728995878938537e9,3.1429802463251266e9,7.311007614035358e9,4.396178506424383e9,8.476306301149675e9,3.2969471788503857e9,3.55714277807789e9,2.340152758258578e9,7.881178855849553e9,1.668830054375824e9,5.703298209805644e9,1.7846415892637413e9,8.365165339790266e9,1.6131760868394573e9,1.4142824408546605e9,1.1153509133986473e9,5.247539406151464e9,2.7739865780680075e9,2.3927921206930246e9,8.057732435185991e9,5.053730348902801e9,7.103602958781097e9,9.670357590748446e8,3.507206066341624e9,5.601324586334531e9,2.6948132553337255e9,7.222695538374807e9,2.833527891897671e9,8.193141030040785e9,9.998444167645546e9,5.015517969548417e9,9.132485497355742e9,1.4922560640792248e9,2.975159923135262e8,9.00944632789159e9,5.701790379737351e9,9.733019584332941e9,7.742624586167334e8,6.392950332127969e9,7.849250591006725e9,8.1350766147125e9,8.80935036788204e9,2.371080218795378e9,4.1131023425477285e9,9.816089864358027e9,9.387038078984491e9,3.3256743684722114e9,2.513170049690698e9,9.195916082729994e8,4.831171236592664e9,4.795438401520041e9,9.251424576848639e9,6.714989060642651e8,5.487374064717344e9,7.46802340462816e9,5.660986418597107e9,8.548214376687199e9,8.921850912098633e9,5.502980084351116e8,5.123067088939392e9,8.185080896082501e9,3.607821055462369e9,5.862068387855647e9,3.4011306038980284e9,6.164721477431602e9,3.3737739787272944e9,7.4409217431446495e9,5.058804188239948e9,3.626584086754394e9,3.320655088901231e9,6.267320642992672e9,3.495462344941552e9,5.710529271826042e9,3.002691740473795e8,1.5030857774867356e9,5.5887102018913e9,7.165865592489236e9,1.7802143613920152e9,8.636388743063986e9,8.676548712081964e9,5.502263584182892e9,9.465509498662062e9,9.10344954336494e9,8.484372843443415e9,7.02383815562731e9,5.029345975907593e9,2.464593569383282e9,8.113882818651139e9,4.265986822134087e9,6.513333345961717e9,5.413106136553344e9,4.4886585086506224e8,2.548032217900162e9,9.958920457405346e9,2.400972042507971e9,6.872191862689994e9,2.8279768810383797e9,5.99557738061158e9,5.404247031250871e9,7.983465007927622e9,2.8512551344411774e9,8.026594035975048e9,3.7970145759108253e9,4.513727812167972e9,7.918098680888718e8,5.191146158297029e9,6.8913971518478e9,6.943766557259412e8,5.332178827354361e9,7.050738167637655e9,7.850418805238724e9,5.134849183672554e9,5.13693304739235e9,2.6152601545202627e9,6.141495625368532e8,8.280117384140729e9,6.3427399060365095e9,4.994151517192691e8,7.656687880366049e9,7.972825632590968e9,6.0101374935183115e9,2.6362160092719455e9,2.400166104441538e9,5.866600344802541e9,7.727299315931159e9,6.172672316077233e9,8.320984298754515e9,2.032604901269297e8,6.051921307608354e8,6.896925518102127e9,4.6191864205712805e9,3.4080203200858192e9,3.943127946599635e9,8.477664301222441e9,1.546397237535524e8,3.7150925107736287e9,1.8059564892267232e9,8.692739640910824e9,2.3460771547168922e9,9.365093699333137e7,9.12400808444761e9,3.407635771027849e9,3.624457076021481e8,9.44373620641033e9,4.641810062712662e9,8.070625025785868e9,4.137476049253352e8,8.457563499658427e7,3.0207783366943107e9,4.187658224518931e9,7.556633352839222e9,7.925220546715983e8,9.209834615957487e9,9.801062216423391e9,7.322572357393916e9,8.7108301122509e8,7.093327908279204e9,2.3294847196065016e9,9.0551426837364e9,3.5267289565271587e9,2.8677066411670893e8,4.823108990647842e9,6.588242373545819e9,7.72783651169882e9,2.0573450506133773e9,1.9281858836755905e9,6.220036749278072e9,7.9119459312049055e9,3.1163464877485614e9,3.752893668922308e9,3.6537604313813086e9,6.068098597007115e9,4.832565365518534e9,7.858706344397375e9,8.785569543416e9,3.1930599152813663e9,1.7239521550460835e9,3.4252967744073834e9,3.5757263060178456e9,5.318725715851819e9,1.4187006663473055e9,9.845884310925669e9,6.959473355404452e9,6.324274645745475e9,1.3873235209118252e9,6.62893340742381e8,7.379710646848398e9,5.564913279740023e9,8.324114180462385e9,6.250132284660651e9,2.7308921116883287e9,3.682400262036717e9,1.86231437205166e9,7.349638796831735e9,1.1877174512051215e9,9.860738927081205e9,8.83665030972254e9,6.463582186605843e9,1.1897091006040938e9,8.818633096158403e9,8.875598478294886e9,9.388277388736334e9,9.895279958489275e9,3.050025348388502e9,9.954509955114296e9,3.2056425082721663e9,2.8681520143411756e9,2.372270981736749e9,7.979369894452803e9,4.4343593103657e9,3.7228300470096865e9,4.866027494391804e9,8.853567906079435e9,2.7678712333979406e9,4.73920598372058e9,8.260461549830325e9,6.803049065807285e9,3.5426778070479894e8,6.730653357229986e9,9.239994843781975e9,2.5505971772130065e9,4.487762304794652e9,6.487729306815293e9,4.715187044080113e9,4.7300473620940895e9,1.536003608698685e9,5.925199346814167e9,3.23155523013261e9,2.4092354941628356e9,3.1690017612986054e9,3.0605004146063708e7,5.779451758893222e9,3.5051324519055014e9,7.381448677351428e9,7.813609680894547e9,1.810009938617807e9,6.698278412555921e9,2.5567987507877674e9,6.6788375489777e8,6.849171411048423e9,4.590047350456542e9,1.7795692166951215e9,8.618138974171307e9,2.444589793130757e9,6.061131194895153e7,7.923481927681876e9,6.93522317186397e8,5.593338316007233e9,8.733140845722797e9,2.9046556799736066e9,8.216514919390549e9,8.247823060567688e9,1.2212309393866694e9,2.219324652306265e8,4.426729636748959e9,5.124604947733302e8,1.792411065534193e9,2.853647399358261e8,6.866504922585072e9,9.406693715499289e9,8.770492677315374e9,5.853521533844556e9,4.606097010230233e9,4.106516442985714e9,2.141829276631101e9,3.0934969978803515e9,4.60840964104802e9,5.094160660206353e9,8.528555433288393e9,8.149820292202594e9,7.967220710957124e6,8.056185294158144e9,3.187158998189452e9,2.342011699695714e9,9.155196966916798e9,7.643579137849518e9,4.0089771940165033e9,9.654564022760692e8,3.2580017709544287e9,7.59341944183438e9,1.269787262528078e9,5.276339697258605e9,9.613999895855846e9,9.232503030446674e9,6.888442130339612e8,7.132689792389988e9,5.643799842035779e8,1.3599137727523992e9,9.76907357080161e9,8.81850087080952e9,8.618665686208513e9,6.342107459066404e9,6.96428688363977e9,1.0851762521840758e9,3.044572922408102e9,3.5118605192867026e9,7.814911932997692e9,4.85363528731163e9,1.8681401905035167e9,9.400478095434933e9,1.4733406927791915e9,3.599091442127681e9,6.107538659479761e9,1.2952729704798317e9,1.9408681806649563e9,6.584923110738109e9,2.1109777158517818e9,1.0945437593286977e9,3.847188620563363e9,1.2891866892713578e9,8.550747107640283e9,5.114218792338017e9,3.84250595599828e9,2.0368741942957747e9,3.0239126140303917e9,4.9774497752639316e7,6.4630524718985405e9,8.2016605400112505e9,9.103682033291044e9,4.972388345054791e9,8.36001813418224e9,2.219465005044907e8,4.843755137277185e9,3.1019502158750267e9,8.565565411338212e9,5.530646560030185e9,7.075618954743832e9,7.933552143986924e9,9.635789916017597e9,8.098075705505633e9,3.3531336341906557e9,4.375695924365051e9,3.5972970718074217e9,2.0851176066738753e9,9.265356275385542e9,6.386037235815997e9,9.7914721148083e9,8.172420596930651e9,3.9881920212893596e9,5.012044426598442e9,9.16863206513628e9,1.817071177680677e9,2.43847810865381e9,1.013438197012243e9,7.390223303379921e9,4.9022836627708787e8,1.2103135751961713e9,2.9501344964207754e9,3.098905112516728e9,1.051318001564513e9,1.3196103746857612e9,3.244662044611163e9,4.838465389727414e9,8.830274690593353e9,6.777419252336326e8,7.976863938890487e9,6.846953271683916e9,1.8244148608070776e8,4.780350659881244e9,9.665018696733171e9,4.2095049776012297e9,7.254629660889034e8,2.367509089875963e9,5.154860669348385e9,5.628715564694238e9,3.2670853769507736e8,8.938287346371014e9,2.543746612239467e9,5.517415096661492e9,3.784837261520255e9,4.397697373756666e9,4.563196072510124e9,3.050315435482077e9,9.53076026168827e9,8.723346135984447e9,9.371495090230999e9,5.807190983573742e9,2.6096540012005663e9,3.3477005621506464e8,8.106196721379818e9,5.367966487381772e9,9.666015201246258e8,2.168619149032017e9,3.362289828973695e9,8.567765207760206e9,2.0292577778372812e9,7.752768880052026e9,5.9415013272841044e7,1.323076015428124e9,9.082533312630247e9,7.513409829418723e9,5.16051440611083e9,6.643176189919349e9,9.662507188422554e9,2.0021302364519322e9,9.277836481061647e9,9.6070708798605e9,4.1304836439387095e8,3.580695346121202e9,8.703140465626524e9,9.729478126722e9,4.1282954420474296e9,1.5645930394948683e9,1.4786926120209975e9,7.7921092206151495e9,2.200267898045265e9,1.9152253145946596e9,9.164087769409428e9,3.851551311546316e9,5.682958775364281e9,1.484135793349004e9,5.3464318407809854e8,2.9629966689174757e9,5.021047553224967e7,8.410032650110021e9,1.5834790956633294e9,8.897153264096321e9,6.299364750697997e9,1.8184022726155823e8,2.1285632039352098e9,5.978281531478129e9,2.9241005247105556e9,9.992108264354294e9,7.637284824218047e9,7.67904317980602e9,3.907848625624928e9,3.59135779584389e9,7.444883458374584e9,4.008822859500596e9,2.4098009328433514e9,7.7082423123085985e9,4.287291258087116e9,9.81861566185102e9,7.698373040505346e9,3.7279478717110605e9,9.747294369014013e9,6.462445900575101e9,5.997010356264304e9,7.271905989478194e9,3.023223177139125e9,2.499750496816191e9,7.389696401251784e9,8.836671176190845e9,7.43081550730048e9,1.8467777821926767e8,9.032775296536921e8,9.30358936735244e9,3.381565699920599e9,8.283678282798576e9,7.4099285133783455e9,5.214395432656489e9,8.736616482169838e9,2.0138162276375403e9,1.5600367957931072e8,8.267670887393862e9,7.981926249078603e9,6.107823393515187e9,5.328616736579868e9,3.3223503288569865e9,1.642398284215586e9,2.370839710896746e9,8.047779693866752e8,5.172877957343413e9,4.0150329842106915e9,7.03191221058555e9,6.224146602135513e9,7.294012269206301e9,1.881584550709795e9,7.675916076457317e9,3.4100549303516626e9,3.148549385239353e9,9.32277734017975e9,7.380522129564541e9,1.3328375060863419e9,2.689503689959353e9,3.926667006035719e9,5.326179525529166e9,9.06041931199598e9,8.227205784953158e9,7.621422755010293e9,5.835826003720819e9,2.4762447811722064e9,4.777666630331594e9,1.542090529774156e9,6.650039048660628e8,2.888448332293564e9,1.9338863896729763e9,3.163282467898396e9,1.2802797731101379e8,3.9864350287650886e9,3.6464088492364364e9,7.112314140434853e9,3.438078818985788e9,8.500364847989918e9,7.527061489293346e9,9.122932142093344e9,2.499500152562508e9,6.503543794142423e9,2.747455354097986e9,8.506055309796273e9,7.197321535742484e7,5.693726756166323e9,5.187095103275565e9,4.661681949438245e9,8.31670982122584e9,6.074405644648392e9,1.921531270744291e9,6.742962366783805e9,6.336742299784569e9,3.1945440086735177e9,1.3936688975564337e9,3.970156013720436e9,3.638660740297174e9,4.495291665537063e9,7.503548249112808e9,5.07299007158127e9,7.199467913027947e7,2.3998984828729362e9,3.873961880736854e7,7.064477612984665e9,1.5283421758590443e9,9.734657877264425e9,8.135753309906356e9,1.0826604137222407e9,8.710987295805227e9,8.49351935373569e8,7.314254755734328e8,8.289521763360184e9,5.805633509263249e9,3.713204506222848e9,3.8764203928288574e9,1.917026972032203e9,2.2111769597407384e9,8.072950584099034e9,3.356791001144315e9,3.004177354827804e9,7.060497372014507e8,9.360300522630893e8,1.97497536714214e9,4.906921251058832e9,8.801462830625824e9,7.600515041939978e9,4.804656330682461e9,9.564662414119015e9,4.825802474090083e9,2.974054321677496e9,1.1547169459315953e9,3.990654429043287e9,3.834916040639613e8,9.909210602573885e9,9.33588932270067e9,2.96146800918309e9,4.892331871380562e9,4.786877756705376e9,7.414821835321397e9,8.365031043941338e9,6.539827939094838e9,3.958690444170857e9,1.7211059100244308e9,1.0981464377553651e9,3.239020890791261e9,4.922830553988093e9,6.032748555577673e9,6.202568092140289e9,1.095426120264331e9,2.0271236999708486e9,1.312698401609852e9,7.21468396408751e9,9.456899020347256e9,6.519241058509269e9,1.8674290205627496e9,7.484018252550701e9,8.4826613898718195e9,2.8099013268498354e9,1.8149075586171236e9,5.4157733215273695e9,4.314517620824028e9,4.602682797478159e9,5.160233718654764e9,2.2498365792288165e9,3.0556793965845764e8,7.83535218182535e8,3.707744154151026e9,8.308349951592366e9,7.2527417768674755e9,5.973800586706667e9,8.469830760902625e9,1.7881144850553832e9,6.693667371072228e9,2.636586831951251e9,5.50525907283825e9,8.668677230828232e9,5.354241667642659e9,6.505107981251329e9,2.9084256115012753e8,9.286595722987175e9,4.914692212309875e9,3.1553165381470428e9,6.047539622275378e9,9.290341408686117e9,5.404632543158575e9,5.74468049354867e9,2.4025821707571526e9,3.867648237939123e9,9.043877983614883e9,7.38158136148017e9,4.646834802297694e9,1.4477189732632012e9,1.9882636972602785e9,3.9502975583172474e9,7.353831033256702e9,1.0508488784525905e9,4.2374024216841545e9,5.595943163405626e9,6.4009621920114e9,6.003480861580401e9,8.700170078139616e9,1.912208056012985e9,2.4542367114259024e9,6.688428628367718e9,1.684223657106232e9,3.3685896213537927e9,9.217052034537941e9,2.0187982771187606e9,1.2853194371075716e9,4.505893627468619e9,2.172469449856529e8,5.282791001816629e9,2.16285384394001e9,4.826907932424246e9,1.625741671282366e8,9.45618188607102e9,4.43593992015031e9,7.111528772757608e9,8.330494797284644e9,2.684937769694444e9,8.264321547720662e9,7.73865659822792e9,8.45246786160723e9,6.143282301455276e9,9.709005526735842e9,9.583912897953337e9,4.241690140828842e9,2.8935088599694705e9,2.9575336579716883e9,8.151848508868518e9,3.4507665502652993e9,7.8351673892178135e9,6.248486958213947e9,1.7807194920296187e9,9.910917088097841e9,6.818849424178962e9,3.2050815726701574e9,2.849542272693121e9,2.1125612238619895e9,6.78445663785248e9,7.854606673675448e9,6.395461025313253e8,9.789309570434444e9,8.108067222549127e9,7.221378677037561e9,8.194284054563902e9,8.709564068636002e9,2.0675349690026834e9,9.918950501395023e9,1.0674506192021571e9,9.552415512843414e9,5.698574280874665e9,3.7307287692756987e9,4.2348780487918324e9,7.34393259166017e9,5.956308065118836e9,1.235631812843696e9,2.106621881100409e9,1.8710787347543921e9,1.8363812188580185e8,3.924495050375688e9,2.3962351636796775e9,1.2716407043379807e9,8.896097892104935e9,4.593475387125764e9,6.755654217113305e9,1.0606800905051982e9,1.6419148686497886e9,2.4824737517304075e8,7.778067344921658e8,8.105236781500898e9,7.854924403430617e9,8.172211098772942e9,4.1996150074851437e9,7.737419695634279e9,7.396694932318481e8,7.85570002116033e9,6.082570802539406e9,4.904572824232513e9,9.497071732237206e9,7.712935296232245e9,9.065570986915665e9,1.5270260141058989e9,1.5861159435402849e9,1.110391058748007e9,7.489035443712355e8,1.3628539933479645e9,4.490343303399263e9,2.280992549276388e9,7.684602111705389e9,8.839152463449373e9,5.954616317485914e9,7.052106578561559e9,7.903918113135466e9,3.482450012396793e9,5.610931896528943e9,9.430109687644006e8,3.7775291900496664e9,8.827249402244686e9,1.8345551374635916e9,9.411577813552488e9,4.730141088677843e9,4.72544583831999e9,3.8010153352063756e9,9.60483080127154e9,4.1441773655873804e9,4.0834155464176016e9,8.22379786141184e9,6.651493522538113e9,9.151799754419947e9,1.0587760673449365e9,8.827933736985527e8,1.3354560981110785e9,6.780488770102789e9,7.74924919266432e8,3.150611122006588e9,3.2312473535438766e9,6.487506693776006e9,6.735311641169365e9,4.874794842040049e9,1.4324240157309465e9,6.9005709733508625e9,8.301456062255491e9,4.888681978424027e9,9.45689962913852e9,4.586359774587088e9,6.754956148342773e8,7.921818381351504e9,6.819413046794109e8,1.2220334555837798e9,6.616484578582107e9,6.867711762111429e9,1.6528586871628404e9,1.272284756465356e9,9.517224738492365e9,7.619834342741057e9,2.8471628262475066e9,7.492120330277781e9,1.344843884518202e9,6.108183943077312e9,4.924768845617625e9,6.931408201346751e9,4.5947271987076645e9,9.622136958684952e9,1.1055820087114975e9,2.4141586879544454e9,9.401802878895205e9,4.853610695806221e8,7.461060966989195e9,7.252896942643118e9,3.548640803355335e9,4.513407159601059e9,3.79607116650858e9,6.255497115680735e9,4.883314570780748e9,7.655956259271524e8,6.646751533640055e9,7.943130843438244e9,1.3991486240097928e9,5.619895687924874e9,1.0169856830706236e9,3.3204722690737433e9,1.9106452762715032e9,9.827574610150585e9,6.64816801102571e9,1.9824260339323564e9,9.342479633912659e8,3.2236242616701684e9,1.591496153057147e9,5.473934170228387e9,1.5633471088329988e9,8.473094393595224e9,4.596169108915636e9,8.330001086368952e9,4.553831432023736e8,4.738677114215234e9,8.112734084831338e9,3.058789559729862e9,2.972447082347308e9,7.320758433420476e9,3.2282881980005517e9,9.970019977105038e9,8.503641254673762e9,3.283567635547341e9,1.1888556770459979e9,1.9663691977894637e8,2.0269752522561247e9,4.493921696542957e9,3.799895429827933e9,7.84438205873853e9,3.941817286209801e9,4.66910206917133e9,6.477612005326355e9,7.523268892000499e9,4.0998852444310894e9,1.9127070834533532e9,8.1231638719894705e9,3.384596460241065e9,6.553894461953559e9,1.6004777257452152e9,5.335999128358673e9,3.398321225975822e9,1.3949523966158118e9,1.5721031871556635e9,9.563166393733631e9,6.705647118567843e9,1.637550387266099e9,8.71191267914293e9,1.6372783423451986e9,7.188236841760425e9,8.1050247056669035e9,4.601042296019778e9,3.6073778313992953e9,9.695955364627872e9,6.490426845629282e7,7.929359431742429e9,5.786404705489884e9,2.0700395041920383e9,2.425337191765965e9,6.615943710049552e9,2.389827539229783e7,9.849427961251366e9,6.360603186229424e9,4.5762498503430605e9,7.027518933845352e9,2.3378512799041452e9,3.322736252713091e9,5.381853469146992e9,5.053988778668487e9,8.0969291384205475e9,4.456614940295255e9,6.849123476217417e9,8.446732418989198e9,6.645128014600277e8,7.455469490959911e9,2.7901479744530165e8,6.217550534920021e9,1.799021189647485e9,5.901429903548333e9,9.586626284994179e9,4.219207611915253e9,1.7348917737152615e9,7.455864472904268e9,9.121672456089886e9,3.491093494843007e9,1.2181403231175669e8,7.362259048737005e9,6.619428533891847e8,5.2876878858977375e9,2.5741475292226925e9,8.20635308753901e9,6.447027525368267e9,1.9729911686484814e9,5.459687797370927e8,6.121788914184584e9,3.4796258032944417e9,6.968209889010324e9,2.8333410022144055e9,7.820322281128999e9,4.492175170790219e9,9.318066629260336e9,4.948808606326903e9,3.739359586497257e9,8.594085184857279e9,3.324356996144333e9,7.397244810219223e9,4.498452739358032e9,5.542465273618602e8,7.266995076631622e9,1.3482694620670576e9,6.301266114975822e9,4.355291475682864e9,2.3400721946659966e9,7.44317784380453e9,4.084858910452672e9,7.252594224105124e9,6.542135478463517e8,9.30644002573746e9,2.2800188349523497e9,5.189963467702381e9,7.508005887437474e9,5.904980963332111e9,4.457079100896273e9,9.203841182226782e9,8.65672212756992e9,4.679950353127769e9,4.549384600290186e9,5.934693886541758e9,1.59619700945389e9,7.9890585118391285e9,9.271476208714064e9,1.945035635756499e9,6.765327038586611e9,1.8826593804553993e9,9.215589082360563e9,8.12339779460558e9,1.295354683603892e9,2.1932374870018144e9,9.20896139414344e9,7.269505043245573e9,5.890299332636859e9,2.9691859913082185e9,5.58187189237128e9,1.062415795415822e9,2.9686320357448447e8,2.397303868169328e9,1.2181295343988752e9,3.157033704658243e9,3.3208401709543834e9,1.896464571764328e9,8.213609118263118e9,2.0333417099085839e9,8.78327442287991e9,6.447084531391328e9,8.2038924117749405e9,8.842054759823267e9,1.469569703422543e9,9.761028069758345e9,6.611874803285963e9,2.4705935571575975e9,5.179746633918862e9,3.977725691086109e8,6.229252254497703e9,8.803549301772875e9,7.248399240273243e9,9.876824814585022e9,6.378607870385114e9,6.06533517449851e9,8.217247232438683e9,1.6268207994471772e9,3.9966011241475964e9,9.59776166739559e9,7.253143400800954e8,3.4361235564733596e9,5.10872577241895e9,3.03482994281303e9,3.9465835046544394e9,6.004469830769858e9,5.444363669592134e8,3.053112791650312e9,4.706588590744531e9,7.739926739917034e9,9.384989441149073e6,7.407502929081542e9,4.674596475803836e9,8.24848221081822e9,8.698577395900011e9,2.202066930776173e9,4.9748280030313843e8,6.914821599107684e9,1.5673904085675893e9,7.718217445601263e9,7.241444800038159e9,5.206865916758392e9,4.8350163295873785e9,7.733623147217585e9,7.47920223480061e9,7.363520892337566e9,5.849522766636118e9,6.539007495318648e9,4.368636110228244e9,2.9315936338382807e9,4.355103253290749e9,6.476476397904581e9,7.9937822730545025e9,6.098988765703806e8,4.837883854328838e9,6.669322203559025e9,5.8146431049243555e9,2.857436908121136e8,2.703211205978221e9,5.939752687867328e9,1.0190845727730824e9,6.822822934802739e9,7.770356661105293e9,3.244297731298699e9,9.202214617876226e8,2.344403674856771e9,5.877958350838544e9,9.02610893968485e9,9.535629335119228e9,5.664462240220294e9,5.719094151459956e9,5.427332368154813e9,7.035769854364249e8,4.639606842641834e9,5.91762033865651e9,3.054234451768567e8,4.347083895612229e9,2.679025367124345e9,7.655600651573331e9,2.0645148034410255e9,7.593317952688494e9,3.1734025893993104e8,1.7229889137984445e9,1.5075071867574918e9,4.5551166967420566e8,4.647672591182199e9,8.1645543090845e9,9.773527608682228e9,2.3129330148504934e9,7.544792937340887e9,8.98715258348177e9,9.860583012856527e9,5.09037578810845e9,1.6066351480490048e9,9.878542570746042e9,9.959465350786926e9,9.827918484830458e9,1.1680534944786602e8,3.240533875376104e9,7.773510017296714e9,7.453862047028182e8,5.770715696320653e9,1.1837459484337697e9,6.342586065956419e9,3.57221021443448e9,7.707478786612754e8,7.086852377280376e9,8.999176794584154e9,3.8147747573912573e9,3.9698229616403093e9,9.478394344136786e9,9.537613311019322e7,6.8935781457176285e9,2.2326463462766466e9,2.261806143839052e9,8.8369967676518e9,9.840164332654016e9,3.7067145059081883e9,1.7010482074345045e9,3.0218662184359603e9,1.9284631869717162e9,3.408798951711877e9,9.155150610267607e9,2.284147912452772e8,4.597772058267313e8,4.41475267704857e9,2.336510487106873e9,4.6650866217991905e9,8.027435882431112e9,5.605659792174889e8,7.343243778906888e9,8.955152035471826e8,7.462807893018356e9,2.9621222714813566e9,5.659179040011285e9,7.576094741898154e9,3.936825695219581e9,9.07888547704921e9,2.821181494741398e8,7.948158038532662e9,1.9925796683329122e9,3.2379683038868623e9,4.303182936140145e9,3.5304275179521403e9,7.364562653209789e9,6.913290617111432e9,8.964364233600267e9,7.246917797111848e9,7.578075243203409e8,5.442474595702514e9,6.12971850268583e9,6.137285470683098e9,8.992431918475737e9,3.7457228295304947e9,8.710610158367434e9,2.7495668609919176e9,8.636355759234968e9,1.7165410840907059e9,5.3218346749758215e9,5.470550028239611e9,5.660860756744579e9,2.172028140080934e9,3.8349930237771225e8,6.456683611276945e9,6.869125991888432e9,5.477261552835177e9,9.062363195534317e9,4.2600383168833823e9,1.6049991187808254e8,2.0631001983815e9,3.3966595877132654e9,4.751177133685723e9,6.639071375949514e9,8.66125835846764e9,5.850315630255345e9,9.540641056123734e7,7.941994814760679e9,3.6203144642145715e9,1.8590830347787945e9,6.950863866171776e9,3.599211509889194e9,6.219235528889398e9,2.7452000288171854e9,9.618255623910574e9,1.2858140492364779e9,6.457597468564484e9,4.377981230766144e9,5.760517135170106e9,7.000293566107033e9,4.70395668746809e9,8.147772804499031e8,2.2791370958220735e9,3.1987963354100547e9,6.7582697387329235e9,5.74628430569336e8,9.903808846202137e9,9.391155905164194e9,7.667702429434017e9,3.9465683161513586e9,4.743195589004325e9,4.845068635529114e9,7.300175312203355e9,2.8983282917104125e9,4.785139511437987e9,7.748645129879858e9,4.954893047468952e9,9.14692819421611e9,5.816170290980766e9,3.10412020957778e9,8.805915534263855e9,4.4836709500181484e8,9.995967507967224e9,4.729174255128828e9,1.905630025696352e9,8.420781855505146e9,4.641849390677086e9,5.8964159808640785e9,5.782817567100474e9,8.5194235704829855e9,5.333034459740562e9,4.0031182198800488e9,9.404730203927494e9,1.411956629965776e9,1.3411664801553936e9,6.697069835835434e9,4.2354457029284053e9,4.233845860295362e9,9.07110441756682e9,2.1310769736354318e9,2.3071013760815806e9,3.7719261648348933e8,9.630113066346777e9,9.37016421551397e9,9.836211918060871e9,5.686611978052214e8,7.196697620141387e9,5.61805967689572e9,9.318817360285868e9,6.377358074207729e9,5.747455297136329e9,8.382625164235178e9,6.346470076565962e9,6.696117770898475e9,5.949488868785831e9,1.7092382956841311e9,6.655920847519203e7,9.660340528822067e9,2.6520538370485024e9,5.01504738053592e9,8.565106098186901e9,4.2542015085223885e9,7.097025856422073e9,5.273760220451357e9,4.2346574415762796e9,9.095824276679253e9,1.4546761148487885e9,2.607937401702197e9,2.3334563637682514e9,5.7674468730601e8,3.607551157854726e9,5.60042218656811e9,6.31971965181186e9,4.066845793672981e9,9.225939316504549e9,4.3857335281585455e9,6.285694536128405e8,5.083165256592746e9,8.93360564109135e9,8.456930495644113e9,4.413738760997857e9,7.30110667146016e9,6.115709372348541e9,4.180689225301155e9,8.090904630158044e9,6.953692073170008e9,5.953186599449619e9,9.111108557430973e9,6.658575811049032e9,5.476900310136873e9,2.078064320690438e9,9.53378419447484e9,1.3140974369891e9,4.711953051223765e9,9.064352983504322e9,7.720334278928553e8,6.506475735032551e9,4.609921662036021e8,8.74462218180612e9,5.142027007361574e9,6.562611640959756e9,1.1390360429924784e9,5.69491117370758e9,3.521921858763959e9,1.7423706146448803e9,3.8245671418686156e9,1.2927814730055575e9,4.389942164091065e8,9.426800445380781e9,1.4831437128639812e9,8.533000945548007e9,5.2638869460105715e9,4.324424884605774e9,4.678646402310493e9,3.961584537689019e9,9.899394223840958e9,8.70232744380796e9,8.395531689262475e9,2.394900521445884e9,5.960999024509881e9,2.157194500689138e9,3.880981959507236e9,1.167791383614939e9,9.400791833116993e9,6.567055696569042e9,4.544529281644372e8,5.500074761523575e9,5.6371136303105345e9,8.417569963942684e9,1.836207014807134e7,5.842484560326088e9,3.214815615079195e9,2.2310077539469776e9,8.845091576250696e9,7.88605511000976e8,3.904614079866118e9,9.747532631906555e9,3.5968166380530887e9,7.944215190703856e9,4.0131811164555955e9,8.282627103319515e9,6.785640780579599e9,1.1917778206120243e9,3.2425258334168506e9,1.521183251150593e9,3.47079603723101e9,8.425734437627996e8,1.1042901911556879e8,4.244259057004717e9,4.879920450767524e9,7.701090312618815e9,4.857463591180555e9,3.013753622509925e9,2.36714173539801e9,1.7483791413583105e9,6.665222665555735e9,9.62611502484853e9,1.3752043522210367e9,4.741078290294205e9,8.293738898437757e9,7.698466872441453e9,4.4920402992760725e9,7.82693403989163e9,6.494775984030598e9,8.880152157587881e9,4.433234375092553e9,8.78164283304239e7,9.956076819574072e9,1.7959223786661448e9,3.738348918972688e9,9.965641828806318e9,6.613433131976491e9,9.42851140067171e9,2.911365975657073e9,4.36572925595448e9,8.366323041310388e9,9.31369205581891e9,6.236549197990716e8,5.568526205314529e9,6.384117745079741e9,2.140661010050614e9,7.16689341374418e9,9.013494586769977e8,7.272155033973908e9,6.685045598067368e9,1.511872693656745e9,3.0974315390885544e9,3.4441540188314047e9,1.246760868590312e9,5.187495265308319e9,7.571096491634043e8,1.153596099688281e9,5.426061938214013e9,3.78762304479372e9,5.154552598222758e9,7.037795338589525e9,4.437627265969275e9,8.025039921346338e9,2.0638044652159948e9,2.8025854838418283e9,9.577079659340132e9,6.760299572946461e9,2.3124400694393597e9,4.2828646560475836e9,5.87718801965132e9,1.1923775024820492e9,4.1274390245802326e9,2.0774059027697578e8,9.777974365710207e8,5.155298353076399e9,1.7202617403161657e9,8.344657780312767e9,1.4388087213615053e9,3.906444001151332e8,5.301288009970561e9,7.205122021560528e9,2.6507312696217556e9,1.1220263186873636e8,8.936362579203138e9,7.211799056365376e9,4.343152835328516e9,2.2326614464568815e9,4.149203471364619e9,1.1334652881229079e9,7.416613886084042e9,5.729155768540839e9,2.7922036303833e9,6.543081335623966e9,7.730223334199557e9,9.895876519650526e8,9.265926900510668e9,4.391031409413889e9,8.976366929717552e9,9.245807004306847e9,4.952899368950276e9,8.988361491223904e9,9.31837246284766e9,7.388106583584608e9,1.1409423693200305e8,7.179638443833843e9,1.1376776430206115e9,9.618880354773582e9,6.500165662677314e9,6.126282985631625e9,3.79212408555199e9,7.852979031688967e9,8.0440254307671e7,1.1792601219513245e9,6.377568916644322e9,2.2967001779403806e8,6.171114637831009e9,4.918297240533006e9,4.70019373407198e9,6.899252747549722e8,4.0075736553856487e9,1.2423381138119438e9,5.866632250244743e9,5.615335692296172e9,7.2865080869791355e9,8.44748773671456e9,2.8285424680260763e9,7.755929918032782e9,3.9371469436373305e9,6.202219766574984e9,2.4512406221587434e9,2.5739950962076206e9,3.14117482618557e9,6.286789949604451e9,1.6744378201912956e9,4.384433140584982e9,8.177430021839849e8,9.464941163673224e8,5.811248479938857e9,4.8923706312896997e8,6.418322635206698e9,7.973233355369157e9,6.40653138336625e9,9.707987809140814e9,8.45853892161454e9,3.515418683713696e9,1.2604325603859868e9,9.561073980623682e9,5.439427218669583e9,5.712225050020239e9,4.175429383627981e9,5.0687555293727595e8,5.479961534967549e9,6.559025362008119e9,3.7994713049783845e9,6.371854346912866e9,1.5270703228504655e9,8.746155571347105e9,7.511888028307225e9,5.118743488164296e9,6.374361290649642e9,1.4946480023450048e9,7.454616992548596e9,1.4801719635335386e9,8.766418558753874e9,9.851003764670471e9,8.804326722508848e9,3.544087231705193e9,5.422970978609105e9,5.990257116907415e8,6.550211223135759e9,1.0603207629080625e8,1.0488183642556459e9,4.535115738721022e9,6.594059739812017e9,3.6814872280447717e9,8.351748380675771e9,4.642503072696342e9,1.130641371228961e9,2.2758080490444264e9,1.1982362794884238e9,2.33039808139775e9,2.0343925766975525e8,8.673031070477293e9,3.8951082898421085e8,3.197622035001806e9,3.4096699175647573e9,3.816805736596367e9,5.537525727171539e9,1.020520333728917e9,6.607827874639205e8,6.610224175258161e8,1.790260971915878e9,8.683261505841445e8,3.968697818002357e9,8.162776090862639e9,2.8614668841743097e9,5.911017692115077e9,3.6036535248279433e9,5.89053527887475e9,5.249898862736771e9,2.6960315425154624e9,5.699672722115985e9,5.241921242249654e9,8.355994763649194e9,1.0732964283041835e9,6.687120114115329e9,7.477150879772321e9,9.599154337240112e9,1.340725347233217e9,5.298925045291611e9,7.428144788793139e9,5.520237316302735e8,6.124314803230236e9,9.045407385812216e9,1.0224176308738763e9,3.689905876372845e9,5.936263060740176e8,1.9139300124669344e9,5.573816624749812e9,1.0778938315240993e9,1.7281732653459926e9,1.266070077242193e9,6.932770963858395e9,2.4686591547821913e9,4.2196786661784134e9,2.180962058326943e9,3.250745022052426e9,9.309741858665436e9,3.64152608240498e9,7.096476430857864e9,6.164940315410212e9,7.439699898119791e9,5.332150409117432e9,8.23269672623427e9,6.513142119403711e9,6.283781508257003e8,4.7153212582652813e8,7.049726624111258e9,1.8074563689070454e8,2.174817793457643e9,2.1943244621685543e9,7.087876093416921e9,4.862871617361899e9,5.312188871847763e9,7.684374562843188e8,7.498936017898252e9,2.8538867570531025e9,7.066857857623873e9,1.9333237893459709e9,6.081298696262194e8,2.767502964932188e9,3.565697297288484e8,5.575620868794231e9,3.137435683686246e9,1.8408647375966337e9,2.8595822145645123e9,2.0857169371031315e9,4.994817000962792e9,4.990930433213744e9,9.678317125813925e9,6.190792525862457e9,5.558908134687006e9,6.34457442464748e9,1.3369656856909628e9,1.513990475573125e9,6.280245235914802e9,7.093042383299508e9,7.719045428563875e8,7.55156831994359e9,5.818636403160778e9,3.394062925141298e9,1.0076422317917222e9,8.809865345817036e9,1.0994340993089113e9,3.829515093653475e9,7.003012315163407e9,9.697332072273209e9,5.187637141241026e9,7.53646270591061e9,4.996832793439452e9,2.2412946331154103e9,1.3396255353800291e8,2.4957044806562924e9,3.939188293793453e9,5.1113176363470125e8,3.817265834983444e9,3.1350925545864606e8,4.2238330865087013e9,2.0684334144380133e9,2.5942040494148154e9,7.711320823260927e9,6.571587584397572e9,6.027333128710349e9,3.0260161705654063e9,8.536254733889147e9,7.134033750718372e8,5.657155054146548e9,2.1784210348468513e9,6.758655064168145e9,7.728126195677427e9,7.56283508472601e9,9.261567989164831e9,2.475055506571984e9,2.3767975779278693e9,5.77985921750641e9,1.3276897682560785e9,8.765489105689971e8,4.299354566107135e9,6.557889374301879e9,9.73337696164567e9,8.974219580996979e9,5.127517819132702e9,2.809438391699378e9,5.235987853138513e9,6.435292561051685e9,4.2021502381566467e9,1.9847240763868046e9,3.8786899965033507e9,8.72601351401587e9,8.514148211856057e9,7.3944237526768265e9,9.018655156159782e8,9.665571803078938e9,4.987971159039495e8,6.980134375978475e9,6.684038214568008e9,1.9761214753876933e8,8.527605458620919e9,9.312548717102232e9,6.628555194134351e9,1.4607724579671834e9,7.871788114540059e9,5.736474682632903e9,8.740406666616545e9,8.08160475594553e9,1.3535551678615065e9,3.3316628593353157e9,5.736551964274909e9,7.884655174828908e9,7.314140024908392e9,6.505080805449809e9,7.492028147211305e9,3.264853218015674e9,1.484576060184003e9,4.745850175420054e9,2.9103301729852047e9,6.338932747920887e9,7.464368872219154e9,9.30404660036469e9,4.684699077350113e9,1.3078034065102472e9,6.321869486623673e9,7.331800556525728e9,5.493777202057687e9,6.156811020202246e9,8.496664071759567e9,6.324355433617271e9,1.1142729035534072e9,2.428864826042697e9,2.546225510062612e9,3.1721183022772913e9,7.462088722520929e9,3.866783297085972e9,6.722330465278053e9,5.272936792677608e9,4.3157943991287583e8,7.613314354396469e9,9.076389296870886e9,8.939068097248028e9,2.453656801266535e9,8.909076968522387e9,1.813716655294022e9,8.561089877133022e9,2.3504071551235437e9,5.678998069113505e9,4.764280328474366e9,7.541816525958757e9,3.642227959477333e9,3.918104289979685e9,7.8133575539785185e9,5.240385954316108e9,2.065389140853734e9,5.025764845136252e9,7.599027987633621e9,1.2587241399584804e9,8.042185473177671e9,8.664123335854221e9,8.508094571709239e9,3.1808936930917673e9,5.333473480019778e9,6.32267151577867e9,3.0645059470561385e9,1.392856281193584e9,2.8316893977212863e9,6.636743483963028e9,7.837577403103545e9,9.320568335647776e9,6.599927199466061e9,5.623651206030288e9,8.008289552005968e9,1.4179390065738673e9,2.5556116604523916e9,1.7707327837592678e9,7.017294366490078e9,3.3789508457199826e9,7.723911894038593e8,9.710508997917767e9,2.888295010371413e9,4.457172057387134e9,5.615038853613031e9,1.3788989635806503e9,7.133703014466463e8,1.6349168742903486e8,2.0108925454649007e9,4.945476345790705e9,4.548104963180505e9,7.074154236964485e9,4.0162675932473335e9,8.465978738522284e7,6.726347361724771e8,5.799473672491868e9,9.229145710981344e9,7.384214856661853e7,1.6012588592877297e9,9.461468929016924e9,9.890600056248579e9,5.877956112491062e9,6.816064818994701e9,1.9017125013845592e9,2.4513277963650126e9,3.489891141321324e9,6.562714012238e9,1.7474970716768267e9,9.406512097669142e9,4.912287363515178e9,2.6009658897814393e9,8.512456799823476e9,6.74667768947105e9,1.19252128992416e9,9.785793583212646e9,4.0177677487899464e8,7.625046915807366e9,9.469347506052473e8,2.4666262396459236e9,6.16675196040963e9,2.469974541023764e9,4.76783545538878e8,7.839311039319848e9,7.26680494552682e9,1.3782688566861124e9,8.798231068019701e8,4.736285407221328e9,3.5840397538930645e9,2.6445813877771506e9,2.687847985863178e9,7.388257654244528e9,9.126680488345457e9,3.368769169885171e9,3.689935166489422e8,5.971213174212017e9,8.058201149174721e9,8.601797580171202e9,8.366531971174049e9,6.140468366757615e9,5.575664886000527e9,1.2501732162095413e9,3.289867025804849e8,3.1252557166224895e9,7.904428606640645e8,3.239020129694573e9,8.56434428167027e9,6.626549308785955e9,8.851290512654533e9,5.119252195468157e9,3.7007219491424646e9,9.019902477105738e9,3.297735800467183e9,8.896568329422781e9,4.552130796791425e9,9.174816033229252e9,5.459674992887958e9,4.715556241981875e9,3.802423550577476e9,6.817122880513827e9,2.8265076753384576e9,2.6070609479701624e9,6.536996060534943e9,3.0215630687853146e9,9.069997672886987e8,1.0382702704252645e9,1.0217474036493989e9,2.0006982763098059e9,6.04361913871214e9,8.577683602593033e9,7.542882215344624e9,7.280704685171601e9,6.280921102324002e9,6.844715749054759e9,9.83446490114919e9,7.52012012556959e9,6.666452073373634e9,7.505234027196167e9,6.263197903332103e9,8.442544235314936e9,2.518930310730666e9,3.376635278124107e8,3.1659276930272694e9,6.660402114165315e9,1.4188707495503716e9,7.68499544564194e8,4.792230587337265e8,4.827712997162702e9,2.3754964451930285e9,7.35660617953514e9,3.5040843693144417e8,2.2589549678590646e9,9.77875884285169e9,2.4880893540181637e9,3.254980594282939e9,8.527069180425995e9,6.009932698513312e9,4.328418785145506e9,4.716725132475658e9,9.774460276490582e8,5.031911090321286e9,4.564566079407697e9,9.82929106587877e9,1.3833318868241472e9,9.296578211570605e8,3.901062197325693e9,2.1461274521304474e9,8.664720554004286e9,4.918079590773443e9,2.2946551988845887e9,8.722538197643309e9,7.031546754819688e9,2.061227261926537e9,3.084435935205082e9,6.513498059171769e9,3.7636918392245336e9,8.597441412420645e9,8.67443683409604e9,2.0581299182408696e8,9.033687052096603e9,6.214688850018845e9,8.534401998106965e9,2.183698871463776e9,6.765526022311836e9,2.711486265413953e9,9.046630992653477e9,5.703035324366103e9,2.0348134287937436e9,6.602560326649255e9,4.935550639994827e9,6.277272855557236e9,2.6988175859046025e9,8.109972513998431e9,5.5068366227039995e9,2.661844606931768e9,5.727117451816197e9,8.638699867251543e8,3.9038804950309978e9,3.6601460893204684e9,4.457337678259788e9,8.813395441435905e9,5.378612121582682e9,2.0973626543169055e9,2.7755124415169997e9,5.492574646970333e9,9.918672931046215e9,5.098859088915986e9,2.5979258017155304e9,1.46240413505772e9,1.9015034227985284e9,3.6967912132876434e9,2.405890057814908e9,2.747463741954836e8,4.674647140845553e9,7.534455259043761e9,8.445613125912795e9,1.9295952891888225e9,7.156708966242895e9,4.410452633359899e9,7.421123278824145e9,7.394537564643477e8,2.116994094938266e9,2.7874168798086452e9,4.317138889385316e9,8.668887702771952e9,4.149784079586354e9,5.905311099628536e9,9.935700851610996e8,1.2063381188612388e8,1.6806978383890293e9,3.8223816604220552e9,7.661634059610813e9,7.46196823601044e9,5.287571082199805e8,9.661496458366945e9,2.5520963372170725e9,1.870200877334307e9,3.298985153067784e9,2.4545510162037244e9,3.8578804365731277e9,8.544831444871527e9,4.570854681645148e9,1.9699960266234994e9,7.782803752837827e9,7.187280989346358e9,6.352235449597907e9,8.292605510552191e9,4.912630790290654e9,4.8117057241924515e9,3.9527011005553694e9,6.571382046004379e9,4.749007347396827e9,4.2314921168348784e9,4.710375956617496e8,5.265820317823935e9,5.675254567187704e9,8.460249485268827e9,1.6106317522176094e9,3.6096598836341877e9,6.389004974755613e9,7.351145800578505e9,7.079722742370803e9,6.416813188405388e9,4.964553768413175e9,2.102138965761614e9,6.981966394023239e9,6.492892940735681e9,7.999127961591909e9,9.485609153061165e9,1.0537352931708754e9,5.335174379502439e8,1.3860408484395282e9,7.424444594305491e9,1.6913078692369666e9,7.297801411631446e9,4.060686308403947e9,9.238782049474195e9,9.279474865849257e9,7.769920744589585e9,8.262518386101545e9,8.034060086683302e9,8.484583129426541e9,2.236064663132964e9,4.311191698196304e8,4.0359255424504013e9,6.700351597990133e9,8.87178389240218e9,3.080041927055922e9,9.1480636418277e9,6.0931716197862215e9,6.827710174657059e9,9.40188036810734e9,8.23568808108615e9,5.73253599458231e9,1.520614240748953e9,8.759079444611208e9,9.577954465561085e9,2.904950094493821e9,8.076677619923127e9,9.039474612491074e9,8.73209326658734e9,2.405371792334505e9,2.333834748226782e9,3.755429521072897e9,5.236783802665889e9,7.027049897520459e9,3.1640552326596293e9,1.0437542239154319e9,7.608840539957323e9,4.712845217593592e9,5.5968796796627655e9,1.4857216817570574e9,2.0203885083017004e9,2.1308140776916263e9,2.7078229983687296e9,6.675286814782281e9,9.614248316148865e9,2.8632120339086574e8,2.1282190627485297e9,8.766805745057833e9,1.0928731663779979e9,2.7399858849890156e9,9.124525999611332e9,8.805786271043058e9,6.698244362521818e9,9.514010505712711e9,4.568190015029717e9,6.048992854924682e9,4.895026752730687e9,7.334821188191252e9,2.4414853822522564e9,3.1540499504376264e9,5.717846603356657e9,5.032318631696129e9,6.892206697665686e9,5.451007027427046e9,5.944607333982877e8,5.16601559355367e9,1.9632279534055085e9,4.2034631938941236e9,2.1255926435928752e9,8.953416611550976e9,9.930102898313698e9,7.452453998805013e9,3.0985649991446886e9,6.541813157695376e8,6.025335525394922e9,3.014682151476816e9,2.6738102138650875e9,7.496998875012557e9,4.830223838296178e9,6.12920210171039e9,3.9977024826529317e9,8.529477577875019e9,9.06781586939945e9,3.8046759675387444e9,6.243054374501963e9,6.151982060103977e9,4.885591973309684e9,3.014889768141915e8,7.957300422281637e9,2.671114799835891e9,5.814000251002735e9,1.0397490805051757e9,6.959184479736304e9,9.59417586227584e9,8.066168948418571e9,6.608598358254281e9,6.747523359256835e8,7.965951186616889e9,8.711645369755528e8,9.822995864977846e9,3.396615389125984e9,9.581887981803322e9,5.84975543266083e9,8.36913626307826e9,1.218919293313413e9,9.96397140551839e9,8.933844737724056e9,5.955639686657392e9,5.917866791782737e9,9.54676526298555e9,6.765067124943198e9,1.4793213784599578e9,1.7947790132382445e9,3.1923918624261627e9,7.230990334224667e9,7.182485308116687e9,1.4720183984146674e9,9.66944585291329e9,8.84834570274763e9,7.347388581540899e9,2.2353518150395355e9,4.728070674720593e9,6.320140236768401e9,2.9317279493040037e9,4.7694901954852705e9,8.100701157553412e9,4.0539505191767287e9,4.836613210878002e9,5.481045606477465e9,2.105672470669947e9,3.1475271819064145e9,8.652623468959707e9,7.455995864993486e9,8.418007234690137e9,3.810035103324072e9,6.141962561904791e9,9.983200365515097e9,7.156334908381187e9,1.2633329204443278e9,8.908668561273388e9,7.806468689758983e7,1.2981335634754853e9,4.417004009954517e9,8.79609389887556e9,2.394858962238334e9,5.443691823267316e7,3.8485832786783856e8,4.613271740933258e9,8.112818650036298e9,4.661686982076055e9,4.22217167015863e9,1.1259736963080268e9,2.037029289599812e7,2.7519592446032257e9,6.423052167302209e9,9.644746472171387e9,2.368145824940041e9,8.383888569274101e9,2.8052894046359234e9,3.666099756241883e9,2.0018818970518725e9,5.724355686495847e9,2.213468014301202e9,9.448044586643105e9,2.544095431464005e9,2.569209929233137e9,7.141671000628441e9,6.100455791033963e9,5.995978038461171e9,8.289524439994256e9,4.514024565474346e9,6.018771289491717e9,9.296219159905941e9,9.965389756799307e9,8.459456262520267e9,7.806788550159268e9,8.131623860851572e9,5.431639753894197e9,2.1873453212595973e9,9.137451240679337e9,3.7516152542405477e9,1.6087215979959323e9,7.049905168969346e9,5.543783507740319e9,1.8793400687063322e9,1.7328657762662213e9,2.507290429801e9,6.505221574843924e9,8.5416136783218565e9,8.430614057297499e9,9.699849302655704e9,4.2202705247427397e9,7.561745283547778e9,5.343916852767029e9,7.914553180903716e8,1.7576630087922041e9,7.217931521494856e9,7.996582971785318e9,3.099567819314781e9,8.377349699599046e9,2.258755674758318e9,6.67403053045816e9,3.9394364354013443e8,4.055368040184705e9,9.501410726321146e9,9.52489023531632e8,4.2190839196803374e9,9.725032327469732e9,8.984202758780874e9,6.1736923976185665e9,3.164045097435386e9,9.309268783208872e9,4.2362172952679935e9,1.2572382951999161e9,5.955008383229905e9,9.807139838289478e9,5.464400991014497e9,2.921614413759599e7,3.3938204744138465e9,3.3203533991516485e9,4.338347369152764e9,7.396432273109945e9,9.341227950639671e9,4.88382165756693e9,8.123825832953141e9,7.600238125168595e9,2.4210622324416e9,8.914192642729504e9,6.757091383822819e9,8.032762704325816e9,8.2440113533289995e9,1.7715316164714158e9,3.0506858457236795e9,4.2169792204917545e9,9.829977958380589e9,4.303892758380359e9,7.777688479128414e9,2.4467630276952425e8,1.5188507483952374e9,1.9858369964785905e9,2.1123489378052962e9,3.750636143141184e9,6.044018678906373e9,4.0638562599436766e8,5.845343511759229e9,7.408304315434823e9,7.306927126225018e9,6.033359239120013e9,6.149205856748561e9,5.663180313284429e9,5.962714508376068e9,2.260748418644657e9,8.839347399609371e9,5.0128021740527935e9,3.228681725498451e9,9.87587598726587e9,4.921283044005764e9,6.613329065892828e9,1.8536137009898424e9,8.113721280792825e9,8.245816926787442e8,4.086861487168252e9,6.928341254691558e9,2.555918167996948e9,4.553607753448121e9,2.762533683587455e9,3.274804559109441e9,1.4429258641514897e9,2.4936152442283235e9,4.889537957630541e9,9.010740689253424e9,2.7266728255588503e9,3.9354992981694913e9,3.1203192052673354e9,4.83220421639452e9,6.354656594784985e9,4.968154884703551e9,6.975469442988658e9,6.713247429483478e9,1.4299586576655188e9,3.2656262515132017e9,8.749638219146654e9,1.4489964854755478e9,8.452868379143197e9,7.55656194785284e9,2.551613744745679e9,5.511816225759317e9,7.757269773262826e9,1.0890124924208822e7,5.997420812092684e9,8.647171867338167e9,5.113798389944755e9,4.209132385180868e9,8.156410781459072e9,5.695372942534166e9,7.100654134765275e9,9.00672137894848e9,8.0426627890563345e9,3.8506602246560016e9,9.809323045153969e9,8.575486743850522e9,4.778315774174506e9,7.815728413358103e9,2.898052542784414e9,8.881008927177017e9,1.2762224832360358e9,8.000518164814461e9,7.234266460384154e9,6.237888200325692e9,9.63510844844895e9,8.04887407409246e8,8.88720069562573e9,6.9069466572171545e9,8.339735014372157e9,6.50128127411537e9,7.286575127397732e9,8.414610939677126e9,7.539306694336312e9,9.300983859317606e9,8.401773208762056e9,1.0333964329661849e9,2.833962275707347e9,5.336345977691897e9,4.51057608483515e9,7.812443012671878e9,2.307263267440821e9,3.583873709831764e9,8.183622401986525e9,9.598871151687922e9,3.550040395677534e8,4.68018685070645e9,8.170544047196102e9,2.373528630101479e9,1.1577465217754601e8,4.64660422081674e9,7.090922139195224e9,6.335567961354275e9,8.813864524995516e9,3.6572745895186234e9,3.0070651695523252e9,4.025069452922775e9,8.06561298774126e9,2.559621224329195e9,4.0217966279616337e9,7.746414099664922e8,4.3792444717686205e9,5.366341358894515e9,3.6215629177392573e9,8.091403228157699e9,6.713898304460264e9,5.149931682860536e9,1.1704667177576344e8,1.3326238198214247e9,7.577055083035853e9,2.8574640824497986e9,3.152131833712235e8,2.289440178544373e9,8.69349863306369e8,6.67459974674476e9,1.326636039967849e9,6.520683678061499e9,4.50848454774141e9,2.228735844007379e8,5.999932312561099e9,8.249470155269456e9,1.9216494854037502e9,3.45450054247051e9,4.326045793479003e9,4.653119830531832e9,9.724769840016678e9,4.892586468203131e9,5.559300206480425e9,4.350300029603909e9,3.30213425846251e9,2.1165897960187585e9,7.430661450321138e9,3.905598406457988e7,2.6338207746935782e9,8.491743650665032e9,6.433469121707818e9,2.02421324738013e9,4.074579092475812e9,1.8765846955877163e9,9.101851753862885e9,9.16110415391709e9,4.658487583888677e9,8.951758183546778e9,1.8068462362644067e9,6.026017557489572e8,5.561480134799744e9,9.247364401792974e9,4.3711082172154665e9,8.867729658833042e9,8.295734508391636e9,6.124849092465627e9,3.5903346693280225e9,2.4573011923536983e9,6.835924397404791e8,9.477200567121737e9,6.499946345245533e7,2.3139941803851495e9,6.788657654320758e9,6.092898150649096e8,5.964483340212768e9,9.760488223638605e9,8.605380618511053e9,5.788187326143361e9,9.492135641915043e9,6.563518592975472e9,8.339643244378951e9,6.698471130788297e9,2.9911811771171384e9,4.0717008806621304e9,7.200593954128037e9,4.447813789338417e8,4.837406612227604e9,7.215939050472553e9,8.018701866044443e9,7.273307395096877e9,2.9637597354949617e9,9.378023313675901e9,8.747463584775584e8,5.239643082579783e9,9.902419817298866e9,2.5192109911386695e9,1.8275951253954825e9,7.255852557580512e8,7.406010633890374e9,1.0975369192444572e9,5.725519577555357e9,3.7100366997645874e9,7.396605254869612e9,9.835588789691263e9,8.643131640681454e9,8.957620001564892e9,3.598794041987422e9,2.168024692146767e9,8.554285825441993e9,5.132873575904674e9,9.833396717963661e9,1.4149831789902444e9,5.571622933570922e9,9.606970728998653e9,7.195615459909196e9,5.713318736376677e9,1.3565106563557606e9,8.312622111575054e9,5.662579833644776e8,9.710093032094048e9,5.144588825251012e9,6.0107691960151e9,1.5226792791524346e9,8.048197616389466e9,2.810368256622705e9,4.0374423485378942e9,7.982882144481478e9,3.2537189958362546e9,8.602131092400593e9,8.237470381124095e9,4.029107312448038e9,5.823154942645212e9,1.836870257181228e9,9.57175991638566e9,1.8082913994679773e9,1.5936183789639857e9,5.460674929213489e9,8.758606445094894e9,2.994457910745382e9,4.674362719477417e9,6.544606291426754e9,6.065068888017179e9,1.9201295964135122e9,8.27118128374186e9,6.826181790953045e9,8.171119092738227e9,7.869214402490583e9,6.040248418468744e9,4.5762506264156685e9,3.2224779031439443e9,7.335003378571036e9,3.658160110020504e9,9.89889126022086e9,1.9679085311158707e9,3.7063953384473424e9,9.277130685156557e9,3.2166628831315956e9,1.2536628560631058e9,2.243366011743281e9,9.452343488654861e9,2.3850785214895997e9,4.318077155482797e9,1.085768491724055e9,7.365609828404715e9,2.949865007013425e9,2.892187306459144e9,8.55901079731358e9,1.766137325841388e8,2.8316931860791473e9,5.6060817212763605e9,3.734813474958321e8,1.706760997827219e9,4.486640248369689e9,4.1778800753698187e9,6.284379445921259e9,1.6506588603423378e9,1.6964890204483107e8,8.459945188178672e9,9.105432033298473e9,7.743526529052722e9,4.506753452685084e9,3.899183154890873e8,8.493169598837689e9,3.1038323488652763e9,2.383698240464429e9,7.751373878028234e9,5.525635129098077e9,8.269486802160185e9,6.09265995575961e9,5.294741924448872e9,7.383676949142477e9,2.478691646310873e9,7.402747404403194e9,9.601660733761602e9,6.057608108168267e8,9.761508029394575e9,2.765544546681387e8,4.808213859642235e9,8.929450251282515e9,7.256312465360721e9,5.442814419686337e8,5.677623685760722e9,4.189189137705185e9,8.0239089144448e9,4.432604345370689e9,6.037330014683201e9,5.706056361752864e9,1.2903646922085898e9,4.707208019893816e8,2.638266074214971e9,6.790185637618e9,3.421464223893438e9,6.608481032724018e9,1.9266994409592164e9,6.816459402085201e9,2.235487343007245e9,3.850799378300147e9,4.320461449402827e9,9.067775310643156e8,9.640678978610289e9,5.5574858621498165e9,1.622839017309523e9,6.275519058144321e9,1.8058225511267467e9,3.944840071421409e9,6.231035409897445e7,7.7686450043744135e9,9.454867481397724e9,7.0566465150305e9,3.418351667065479e9,1.3244932139218059e9,3.845869252928761e9,8.725342202000341e9,5.181291326588876e9,3.020994812206257e9,7.098062574310161e9,6.149855904968456e9,8.513134000362954e9,2.1090154529981043e9,2.983765905688627e9,8.43805330748583e9,1.5938451352658079e9,5.431186993018249e9,7.491112214340234e8,1.5103713181249244e9,7.7067272451356735e9,6.817800813244686e9,9.934777111063728e9,4.4464354809795606e8,9.32614472653193e9,4.2126494534113437e8,3.021524673408793e8,8.103077265426844e9,8.692869829018826e9,4.584063934765421e9,1.9405252254494653e9,8.213837830867861e9,6.211579123032696e9,1.5034588380894763e9,9.296538218138865e9,5.342080126015926e9,7.074494457956132e9,8.595342042838034e9,9.139236113452547e9,1.0911092168533764e9,2.8321204101048694e9,2.205020223299862e9,7.074360247353254e9,5.5482136234424305e9,8.038319867727179e9,7.5033594363212595e9,6.212892548281504e9,7.842972691157319e9,4.597910121256985e9,9.524097109419643e9,5.853752137931371e9,7.702556677142205e9,6.49288980937196e9,6.873656101065943e9,3.4343123307112966e9,1.9767953755450373e9,5.477798407527669e9,7.335526098917787e9,4.3344440421747265e9,9.614934808402246e9,1.7494288606849551e9,4.251117522764546e9,4.749552883242107e9,2.6128824013547525e9,2.366834898945349e9,7.013951076599838e9,7.736385731839257e9,2.34546988500537e9,8.664546912521904e9,8.900945600358757e9,9.94969753456323e9,7.247131969121494e9,9.846632261371748e9,8.902390807479136e9,1.1793569723793417e8,1.0297712192349362e9,7.717653694756727e9,5.152512624839245e8,9.10185865436628e9,4.517717577707412e9,5.728864575820361e9,1.389686784745111e9,1.336704939936284e9,2.0890431622384431e9,7.478889191151138e9,9.69333020923244e9,4.996501090739602e9,3.2800066646834826e9,1.470673215546604e9,7.10257763305021e9,4.08485355753052e9,2.2051335301355033e9,7.456216534747767e9,5.72325322135511e9,9.150093421173159e9,6.338085583088507e9,6.642290418344885e9,3.653542736354012e9,5.113355287625306e9,1.7964227318191917e9,5.913254812899379e9,1.9488423102736874e9,3.491852840716786e9,4.527607834320691e9,6.731868965164964e9,1.3382694671270945e9,8.4850110915915785e9,9.3923762519384e9,8.988040411555616e9,1.248308764734325e9,3.780781529833743e9,1.9508476166545641e9,2.5138448993405495e9,7.374865469553733e9,8.977242285696905e9,1.2269012824052238e8,2.32266804175034e9,3.7078344223680716e9,4.018875548508893e8,4.327440007215409e9,8.497792105401685e9,7.093567610530419e9,6.391100069972111e9,6.970403549887428e9,5.715143158455449e8,1.4341063367459717e9,4.568186515983929e9,1.443076169616102e9,3.7840478149773927e9,6.097172958172073e9,3.920913775781787e9,6.721379836761532e9,4.701397042926429e9,9.61269977214459e9,5.031852904317089e9,6.696563715358505e9,3.2952728009259515e9,5.466403616621954e9,8.993297887889996e9,8.536681374124443e9,2.75719037070148e9,7.639267899134315e9,6.199763447220445e9,7.163560398452123e9,2.180361894488447e7,8.404518591005757e9,5.3096166545087595e9,1.8876728451333013e9,9.671959069204487e9,9.55554409885766e8,1.0080475874447647e9,6.439151060695602e9,9.392984804085392e9,5.893839310095171e9,4.593847550387032e9,6.680963654265471e9,6.134014916765196e9,9.61300559143993e9,7.835114594305081e8,7.550002156317135e9,1.0539715021963569e9,9.014288992131636e7,7.849149028662079e9,1.9140792124517293e9,6.023030259993219e9,6.189212087397744e9,4.522254584514476e9,3.68257209254093e9,1.1057966816954756e9,5.310231099925618e9,1.9998222017550972e9,8.643730685180988e9,2.6724628713436685e9,5.789659626927096e9,4.139629053230247e9,1.6675876348066633e9,1.6533125676333916e8,1.8038331438327181e9,6.511660889628552e9,2.0014866739556637e9,4.986128142389321e9,6.915816785711068e9,1.155540292805285e9,2.205328882808244e8,5.400836484733704e9,5.014255095050714e9,8.074326754913368e9,2.5574945799230533e9,5.555367836753556e9,2.457808812782044e9,5.874751287564577e9,8.969641951940502e9,6.787122228954774e9,8.523394688790774e9,4.916128338069257e9,3.8943121070637355e9,5.333132145098707e8,6.42987733339612e9,7.097701478492368e9,4.641145792415546e9,6.303947451622638e8,9.122973691098745e9,9.462336472404104e9,1.389799486939607e9,7.890401058555731e9,1.1302887266553018e9,4.465637719236097e9,8.141784055900136e9,7.833652025108899e9,2.4958125003055477e9,3.7074075094009393e8,4.374149774283113e9,8.173202047893329e9,4.914576583769984e9,2.0752915709248564e9,8.5655140803692255e9,3.250152135862158e9,2.2125826296678753e9,5.528461730028625e9,1.9379447258570814e9,9.676573634646591e9,5.735865647084886e9,4.486566320100741e9,2.8080380525508895e9,1.1515036036768012e9,7.851890408069454e9,5.6861446015736475e9,1.233155736607301e9,6.525825424939209e9,6.304974360483973e9,3.079852349983544e9,1.0123236404980973e9,1.6160172410145023e9,9.849517055750452e9,2.1618749254514303e9,9.244146275482944e9,6.935589608866608e9,7.847521177592402e9,1.7968598598845277e9,5.722304504143645e9,4.770561975284075e9,6.450092802034641e9,9.1718342030066e9,9.920702711673786e9,4.624268467146719e8,3.0447015543044252e9,9.603691507664787e9,3.4102838507029444e8,5.340396140698459e9,8.834831885468145e9,2.8166935281447835e9,7.818209458015544e9,4.0441092442399917e9,2.4144981319814963e9,9.884014074464022e9,3.553826401399125e9,5.413034089447062e9,7.474850566332936e9,2.9930731567208204e9,5.648181927395568e8,1.3581700535307517e9,5.363843758839633e9,1.1399028070396078e9,1.2214182666042094e9,7.317764449315852e9,3.6479305233758454e9,9.336775728634914e9,4.682873096585895e9,9.766031965055626e9,1.9055446165465283e9,4.632064498564945e9,1.6924027444915845e9,6.570949512253765e8,3.5682641625649247e9,9.505042701783995e9,6.574025581983007e9,4.980570327034869e9,5.513172522257274e9,6.65487739333641e9,5.6590177348529e8,1.344221316217076e8,2.0809259539615545e8,9.552677379462347e9,6.680366713984067e9,6.594369546457571e9,8.44845210075837e9,5.415623435438627e9,2.1238372523823001e9,7.246526753119054e9,4.2392280389068836e8,1.7214371706834364e9,6.890690531385489e9,3.16955343333867e9,9.291682523845043e9,6.348880926270372e9,1.886372956729081e9,9.112454752012705e9,7.975029000329726e9,8.030626737491867e9,3.608582392393884e9,9.757745513945698e9,1.2556970875215101e9,5.178805230585792e8,6.589662478781322e9,3.3441325223477116e9,8.852359198759252e8,2.6904917093617487e9,6.0800004766235e9,4.5816419327517235e8,4.366674393574475e9,4.95509606278588e8,8.229836115052031e9,9.37566186487911e9,9.64691987769872e9,1.9926719119448776e9,9.830368255840004e9,6.7664422605273e9,4.792451171699579e9,2.0526160920128422e9,8.267551905966352e8,4.159022189771233e8,4.99590002205112e9,5.290318655164872e9,3.3089565864642735e9,7.668706235792329e9,5.510011239904292e9,9.618801385848883e9,1.649429927653695e9,4.500763743200806e9,9.340591448126118e9,6.757766149097365e9,4.968780309445525e9,5.271891014349834e9,5.309275501191271e9,1.2755422771299863e9,2.501877174180006e9,8.177718034976043e9,8.58730225614098e9,4.997058932791358e9,8.65677226418769e9,7.030232834467161e9,8.496044495771656e9,7.888772016496148e9,9.605309647261618e9,4.664756075035402e9,3.045683011053795e9,7.5746789061490135e9,6.748922478398319e9,7.614155817957471e9,4.543522948472827e9,5.99099603818598e8,4.395431283846786e9,1.8946129816701517e8,5.085143164177351e9,1.7703929284820464e9,1.6313501931132357e9,9.43397892455649e9,7.224041447583597e9,4.865936646747191e9,9.006206743680494e9,3.287165037086316e9,5.038945411966631e9,5.927638852842528e9,8.78687893755569e9,9.101196194723536e9,7.713380194690253e9,4.6355637676818285e9,2.707750422633943e9,7.910868841176309e9,1.2154720732179325e9,1.953379163299126e9,7.303855396115934e9,2.618953671085559e9,2.0807986331607442e9,1.396206847880266e9,2.796070802209074e9,2.0859320869753283e8,2.502296620106842e9,1.7188702981078775e9,1.7738229513832104e9,6.379122965785544e8,9.713484280112692e9,9.629685943087494e9,8.562722281391866e9,5.042037404984781e9,8.870044222493628e9,6.738661342130414e8,9.682730104986954e9,8.816814168125315e9,8.850167329161934e9,1.0553642309234812e9,2.7629228334441223e9,2.6830400377975326e9,6.118574224364359e8,1.0760966846801589e9,7.27016269301343e9,5.690944260537966e8,9.96349147086802e9,8.70712174847085e9,3.014679359124237e9,7.742334842852165e9,3.176575677232805e9,8.279939665900338e8,3.8933362858808107e9,6.497680824432561e8,9.867780807302593e9,8.540547364947431e9,3.173264458653172e9,7.067044758975425e9,2.954294700298389e9,8.852028533695208e9,1.9789928401400359e9,8.580419957934921e9,7.329207146471505e9,1.7604849377105703e9,6.648955954058679e9,3.8016271146837044e9,2.997180065109618e9,6.154423340472282e9,2.1078395075325418e9,6.655663525899747e9,7.620797776967605e9,3.18986920566947e9,7.593576926586981e9,9.63561610304749e9,6.063110667408257e9,5.738873317708313e9,4.973067219821673e9,1.7355471784629152e9,9.618521493631438e8,6.841291194304466e8,8.852165633130028e9,3.986259157688188e8,6.550407837849126e9,7.9898684056658e8,8.164829591228304e9,4.896921199383946e9,8.759345011058517e9,9.48146421022474e9,4.2639053921962376e9,8.72369185125537e9,7.75618857709017e9,9.50228185809815e9,2.890178930831794e9,8.047438556655912e9,6.307805774677621e9,4.306246624046659e9,6.364800913860459e9,7.21985699826636e9,4.704542510919202e9,6.583363618523422e9,2.8649846785925117e9,6.58720238652225e8,2.715535935083093e9,5.951198791213906e9,6.913428528795025e9,6.264413701872828e9,1.5700767641682844e9,9.949305066218044e9,3.031628461058944e8,8.047511807016208e9,1.32605719733204e9,3.8704885926204915e9,8.107054358212605e9,2.3846272621993294e9,9.34557684495817e9,7.502761475821344e9,6.300515174455761e9,2.823470175001446e9,9.065116011671852e9],"y":[82.57881669284667,95.68995506861093,76.64230304587286,88.12956093974596,62.93269363395236,83.01533033058249,83.57929621493595,33.34418436075068,84.17994992125861,89.97606697430605,53.4227278800447,51.63222837777804,12.33772948509304,75.56010835019178,68.65987293306098,94.49348514974112,78.43325800429515,70.57827945368929,19.953894727609345,70.90459779174064,27.35316295122012,25.608096073252785,75.8917757048845,5.049898726014956,29.89675917121296,82.20206504550552,63.33056217192048,22.485692051299466,36.52006265578347,93.34865500948271,36.990580610043786,22.18238997379782,10.497963711802837,60.522288362230135,71.3272946595809,89.66136383372086,65.06953403081414,55.60700740140923,37.006693450461846,46.644042262221,47.69697869630768,12.95333053231803,80.65200201437077,10.297741799758665,34.98320666973659,7.676136549264701,76.2286157923086,98.26216586295165,27.691392085375433,66.81715950101965,56.36700000838061,17.26404504521496,16.459219562374372,65.41967701224603,65.54812807921843,20.19512541512425,90.91085266188867,86.30460837733126,75.01356821932684,64.33633405289318,15.344284320640478,15.06424567712148,29.089510466967493,90.18643058958803,28.984334883149376,11.752801484709597,94.42178427532889,14.854034040705278,50.82417232575514,84.06969933598324,20.860304856799928,28.521617232883113,41.24944622764472,18.01227832737221,49.13682685997035,73.73582748668404,36.3295995918133,76.90627808497538,19.629307161759492,28.416530803331586,72.24968514251123,30.716111949474566,40.740018291803324,2.167596772991809,57.620712005234274,49.33725745791734,99.5868293381052,80.11512236898558,6.158808465660903,81.41988987853811,46.1571891987891,27.51119796834719,5.408530041434889,6.163782020403308,18.19089963183983,43.80992887453166,62.087531257850706,63.020823631374626,48.81800319439328,39.4302922893046,41.910800024466845,20.613668587809485,91.1266546229407,75.34140637413986,41.50265110754703,27.439560458908442,28.705802507836154,25.392344267253144,52.984137795557984,13.703378374337326,39.18755118083814,51.79291625819843,54.64654326180691,4.481327722605433,85.60609378106273,90.69049661695627,71.24547264760768,57.39685451647071,92.14996295170583,39.86706512475769,65.274617299879,57.82394011751043,22.03694657649483,78.47732015148232,71.86489024211883,35.87506943561966,2.615046622211792,19.50584550297091,84.97738165227581,57.72371753868954,31.259389435424346,22.283065577724802,78.02640166103174,62.910579528757594,96.68149818270061,91.1255004395106,57.73411513420278,37.89736189646177,19.86921945108654,26.292219357003333,86.7382195576093,68.8329138511267,15.27078371029561,77.25705506133716,88.5423922055054,34.22659008739694,47.40567555761499,38.98679168724839,90.50750031295058,62.88389044514761,70.87737023359038,43.210446626350254,69.76443070363607,77.51877113860141,93.68250419397835,81.93468119143942,55.80955223804867,28.22864732922785,16.596968277260494,10.427618149356698,35.79565900283086,8.273308737589268,59.25749540997368,52.509398275515096,70.33102315568844,80.62634838665826,43.371608752425104,84.93107792851077,48.44161996867473,45.08210419122405,72.29079020836197,39.94249414853923,53.1546124204006,31.925908181091913,19.51328708149086,55.69896100230628,10.990959500598906,59.87261981739177,49.43250750389878,5.277950103387274,98.1829963943426,82.62140493259213,56.1396178201386,7.728615949441253,71.59953217443947,66.47215977079853,64.53683754575025,11.870618175437953,12.500926691625358,30.79603622971634,22.27852919032379,30.960659299896076,21.93538192463942,25.63659244811185,51.528478772221575,91.89019793503034,80.79252434791938,1.8394972105793217,49.81263579107983,52.371846514580355,40.22972896385117,88.21348476357751,46.31953516637961,43.743892972173036,2.1385360009734122,75.74996309677054,30.26030487845852,15.958599443708732,95.52948747342961,46.163250243767564,77.50974905984651,59.19090757514361,52.842599467361104,73.29995694633607,58.40645576569652,34.903837947452985,45.88273508572479,47.718122641698145,58.55993009367385,15.889550741560377,72.64872598934426,17.685460257640894,6.358546711191282,31.453191411092707,84.98221149239365,3.3633350741676282,73.14980478057885,59.01641461016174,74.33377019087098,60.4558633281703,21.298928292262964,12.018133077937565,88.79826843316867,44.283693246771485,85.63752270405381,65.03176548145487,84.72576779793374,21.61437269933203,99.16383302835578,46.00479140848622,70.48515311655017,9.865202533499762,97.42497256288345,62.60835372169693,80.23298873496695,70.4218681373173,10.417492776982106,86.1176073778123,52.45990079092129,87.02306191010273,38.65323186182577,36.48844344966151,3.967013276053144,75.26281406852709,19.609566734478623,32.06790864617233,82.86255392547241,73.6376530681223,93.69380309567397,12.158005400515481,20.41920516661826,30.521482145981228,30.429276403487105,49.84475109236865,13.651535418266747,84.26921401951888,70.30000552882747,73.72365267749441,74.11787485392108,72.91188391874748,20.11835606366812,20.03830517966918,23.079421537323906,59.060296110365826,7.632249027379457,85.3148076021815,65.63680515252383,50.10292219762423,12.607504766958755,80.47253729572388,12.551925408526909,82.61228095601132,8.72214510008973,39.771772849746704,49.92862278747309,80.86807318232026,66.94789537704679,0.9666288947718038,20.23957906203958,74.47578017389569,0.20305441016674752,39.86493950023202,80.0487770283611,25.713858764715138,61.623633494719144,0.3529263483885936,38.49974568522777,74.05122376064735,26.917596251087783,16.1311254544942,12.699965722570528,38.24758173195225,41.738013408167916,29.659196463375615,66.66344920330997,48.41091784391474,49.2242879810203,72.26354597462235,7.170469723144679,64.01014029568617,46.9527191587219,44.16010397845847,63.63432425568807,29.039467480433522,78.16336672596094,95.2928836980259,80.53639699459102,17.391439706327905,96.1011387024068,64.79552835279503,37.855096940358855,85.15138757018525,76.62246530795025,31.29780163355369,89.50231802314589,15.92569902034715,67.93872436022083,42.05813392219504,35.376806208125146,73.54440081309733,12.286395765035074,90.44437342085419,19.708642898974905,19.432278471776854,30.9093009231991,72.3782665970959,49.60950873926573,98.46018169565134,12.205149765124634,24.487785567390784,59.57299738528846,30.0852104534169,17.872122416056722,95.46461213869077,72.4310516232078,29.681029807216518,62.1830485506469,73.35733590908544,68.84618689227632,37.012741713188056,31.427279973324584,92.39237804216909,50.702790080083474,84.99728731903262,82.6587351646673,27.88481174275933,76.45620946588268,13.377528629302892,30.98561352152607,65.11725314456498,25.55903186291062,10.421027597998556,48.39904601781624,24.3178430985694,95.56598093628517,63.60365402421072,46.63496008536382,81.29416335358263,23.040322550085378,39.42050568087541,98.7234578596806,93.09735474999451,58.09629270849136,67.17464412756229,82.13474964716367,10.914612687925175,38.84473664057582,17.925992521018053,22.887758731116126,52.45215799433565,55.73609354154859,23.214214792756593,82.49954798255555,82.75836800937056,24.105040834750813,5.489178588484112,90.14126036949968,76.54070920333044,20.271347893842663,27.854060851354323,65.64863038144706,29.12971717438143,6.906720851581516,28.699362150634013,99.64453740201125,22.80243153928986,57.00615067966939,96.63482651443155,62.92715726063687,45.69245142761,88.0485050970407,27.655757687869265,52.835112790494485,8.259239265524855,20.73877545972831,49.66708320886002,80.79645542492622,47.03332047821361,15.94530781855228,26.950632500642058,41.43460311706968,24.926664985922354,95.48843087125725,92.9835938375896,40.1730510458546,76.3338330296673,13.95456704539263,5.914933363221642,56.14416873777663,15.706040387393404,63.853038056511025,83.11798547912612,38.46867045678818,93.30960911813253,23.8255647611213,43.03990449702951,14.174493947053012,2.9323646457037444,38.180495975297056,51.13764981441188,84.25491698486532,79.5115105997074,98.72098813499673,37.22649105260132,1.0654319459382222,29.164426359499206,65.47089068618675,61.9466142993241,52.87120912093894,88.61299347824847,18.189596071813607,47.51195730895519,15.598934817601629,78.92218840624562,48.88225400255543,38.37144682209763,33.81132361518099,32.32892115259476,79.32837934444052,28.269251796770888,38.25265578529602,30.474733106342732,15.216757104183888,36.7417713594324,97.97355884957115,35.087712623478915,75.90072563360698,16.798718750794027,6.5376076425729845,70.05024213561262,69.08236378544126,8.529412638401379,85.65120077171255,44.3130646405591,63.80936376180154,28.068599966509446,10.552227199390574,77.39729750402533,1.9041826740566647,29.465564562020308,53.532704480379145,1.2560923000130453,9.350464045501583,26.160926931383,5.002200965435644,80.46587097460635,45.33485024365417,58.740796153618916,52.906514758767884,73.7410815562174,21.77997675643355,83.42925266786266,73.78146967476245,91.65224645190384,64.8858303484484,43.74593640602363,93.2448041345999,48.50307406992916,71.66954709735991,99.32899870658343,78.06558992707664,92.04994900967075,51.268958247076554,35.033608952103435,30.64988699139044,52.4816296046271,95.50724146377308,44.11702850209123,98.82825783547842,61.8014399471739,7.952419379974762,21.987441362752456,58.41265762704586,9.78800936658506,89.40238808848808,68.78145830086376,11.779491646846008,0.8592470222068771,80.36374682972195,31.96843552257689,25.851221943367175,62.12448595378374,39.452825632762654,4.729822544972606,39.98362220576311,62.13545242803803,71.21282812282968,27.596582405601254,86.10589478978571,58.510717993757545,76.54252046010586,95.80998001083643,37.92241218970914,33.54845790450497,30.476613706457023,15.256213328438307,3.3180741929160873,81.86186085774973,1.983208518531021,65.99021284990256,81.65069647416487,35.63920720939103,96.83390321283034,22.219679574819295,21.432224923373433,20.956044620004633,3.206393764715454,14.599801953743452,14.891565598305634,2.5811752574144586,77.33292506183874,52.069302953094976,97.19781436022632,93.25556762478311,77.78699922473258,86.54652987708253,17.81930808484322,53.89425977031518,40.78785554654435,80.52604149171087,40.1540946353314,31.49111806475483,72.37014231797913,13.92885794421902,47.104968715856444,30.244764632780317,72.62878559276817,82.6859755130838,24.05437322305335,94.74101807334102,46.93794061959957,82.50681052282835,62.639523782682986,79.35961202323607,30.04428104622445,7.469948430125772,47.49425055498047,76.56579051255366,8.914724929564422,87.66201489491675,12.80661423884677,29.527660051141,9.789160592180012,23.46887548154879,75.13939674086791,35.16343122108481,39.143354968833556,27.628967889718183,69.70125741151807,55.223925542396955,2.072916617740106,2.2329382598940795,45.27688084980747,96.96553860685889,80.35225573435325,19.935243544647243,39.353559595092136,13.448496108402885,39.666701693017515,33.853845136828454,16.348836106383256,5.709015589763045,13.805405290486528,40.86747907365134,30.81174439175608,80.9592823860896,64.11510577519763,80.24616452886822,73.00640450115264,44.34513021870878,58.17490153715419,80.03223003241573,73.38050736442244,32.92155909816902,0.9034207867438693,74.23126376900085,15.36104208757061,99.81605405081496,90.7836329064442,24.937811862019423,13.288487525895999,53.223763146977795,39.0892230206991,6.002508840891297,30.080630852970135,73.4511867184787,96.41597088637998,80.54453831173682,31.643449635438902,43.08220459615174,69.70718618306287,94.59516910688836,10.858756067364883,45.60187396156332,38.4323125141244,63.110877293131594,71.01783694221585,26.08972698380201,61.13500525900181,83.87905751705864,9.397106670526668,51.30124051064278,3.238274430631627,56.1513388443028,70.52602602496994,10.302663719284066,32.551909046261464,1.1876274004547493,49.32662484287611,50.967645202579995,62.37404677149723,4.302821621640973,13.248992204607713,36.093473681295244,38.94721290422658,38.81338699867277,69.66226560717462,26.353098439088395,92.08349711384312,65.77053214956514,16.038661770053952,86.94157588280066,93.24564065252326,79.59309297607551,22.78418932798827,12.266975788193191,60.05998088173381,70.12760626792199,52.17925465811757,65.29051913377559,35.398399244062475,47.163480407944526,79.55140736510518,29.80010857722718,38.85748467412883,69.69237269493905,83.38458874385832,78.79301702480087,32.257572962798356,13.719583301501137,14.43436745604496,80.91388562286768,13.625450470422528,76.81130860283719,72.1333731935335,3.96884723954255,59.459483790688154,32.08640717869701,60.03302829708799,94.53987440395785,24.734162809121894,66.0895548973406,83.26022428779054,34.07112849285935,61.61667396829657,65.12522056725567,73.7342044842348,30.31343375945992,58.800677658674175,16.434759899139483,87.24304650083812,66.21010434989346,75.32683315152879,18.933450026512567,50.55603612702717,92.10309441246075,30.34186145102239,22.217601075753812,92.89508549989756,77.94509100903677,53.28744069948292,37.20450698042291,48.42516798551655,6.4636005505737115,67.31975698206085,85.89831848108011,40.447006023084164,2.408725682113877,62.061444133058586,53.80566310587444,51.670283956626484,87.3445147127117,94.00854186971962,97.24758695416543,50.63388750045084,49.832845867911026,87.0401256171288,26.487133644763794,94.07578684124562,91.5039079289309,29.638141643939786,25.19679548544078,23.515179312963607,27.006308960145773,81.72513094316477,93.04774144066776,92.11435999603398,72.27348220838941,13.591025797593826,4.270463548108716,9.50645334273047,87.20960187886347,84.64057239503235,84.57384197607017,52.91823084232171,65.48781664391898,82.75755018082198,33.83047914695268,86.44224843445744,18.80940156477343,92.54525029660331,25.49187914717169,72.35337876894891,84.10608706079039,56.42402786279151,30.934724865573326,46.4600199938319,80.18172285072411,39.720947021143346,14.401786215835365,57.678156260152655,55.421899492376845,47.95437136499097,23.55054790980088,45.12601059529702,91.0166237353709,17.142388513455142,39.531121228327,31.50994723066193,52.347124775567934,98.30288507636794,33.31574784232222,32.346534038269766,18.656099554755023,67.61609239374992,66.93964162662776,81.17028158238794,30.55121162051685,28.78751490311371,45.092334041538486,35.35066568267854,12.395595080030352,67.95893835885097,79.44909364970928,27.22325086418137,87.95373484361905,81.45896447830538,8.40263914753624,14.839843636236683,91.26877569100276,56.25392283839984,23.00199706266659,7.047182858639367,17.906767695411354,31.781971321996483,69.71503809861937,54.18516251717305,88.64842169276116,34.953240874085836,40.955642712035825,63.94728448432719,53.01739119270494,26.809560298200996,20.80313062739416,73.86347404389059,70.54345435722253,21.01897985551173,6.791574869506145,19.776377588954475,22.575712577005646,2.5725826038365263,1.0330881166242256,68.87793613944628,19.69452344287489,44.807803279465176,51.89576951748578,10.092302325057078,15.513119109532758,49.204771766548696,45.57504567672478,22.25158456967892,11.958701115626635,0.7954921121025693,58.45748117740555,63.93609290072714,75.37307293740182,43.45605940420416,29.598347787584554,93.69826202131607,82.95529771120782,87.65684246182887,66.74178042026814,68.16719838247815,71.39776962219187,88.24615242145906,46.27926475561611,68.29013017583354,33.30052056575552,94.45832810215448,42.67429700687877,31.8739660568508,95.29872910479627,26.913859811978746,42.77777538180293,27.0028967652718,5.460126780800689,95.95079108267437,11.310013319577038,40.706886792053055,61.62653815228628,32.25941758816289,50.898861603222954,41.556547342899485,0.8376995890938654,32.926205566020016,45.10048141388003,35.8430684208431,79.13869729108245,0.003558060375230543,27.307444258925507,67.93499383821212,6.481374250204331,21.256602740395934,52.457358818653724,55.95133196252037,26.917396407885253,64.06489601850129,94.32588263584411,80.00991839746801,66.46734871634015,70.82727992333723,93.69381548937147,40.842239521565645,70.24201296758223,67.95047814882969,16.473932950468907,65.30545894106461,6.7705661889381545,12.798038596109617,98.59307326426753,41.36448623217438,42.78996219364806,65.6946316890641,86.89600521107089,7.4177347396774955,51.31603904036511,50.01563269332704,44.1050628837173,46.34882483616023,92.96285582231256,59.792428129665964,16.409137767503033,46.74650228518678,10.117419507005964,57.399299203648766,2.884519052630097,77.55094387548603,78.58314425135441,73.7193177207533,84.43457822414238,52.409556511329605,35.93643099053987,37.81427461168878,26.86680805784961,71.22594876428282,54.16328782198568,85.7017393223521,1.5199820818271648,49.21280661641019,11.132666401606905,80.44708942764834,8.196136166299507,84.1714904553189,35.40670086952423,47.304615828279765,28.517522433629505,39.47977101109183,40.96148255062053,78.44060173233967,69.77196201084148,10.358693940952456,70.2586674059251,99.66587599823357,88.10750999813396,15.799366092100131,95.1423729459528,51.77111209854578,88.25663802247291,72.49953650551696,43.862476823958175,41.89745404431402,47.26147417423556,15.580488754588629,33.71079424975413,99.96941898985695,82.87262611603656,20.170905371941227,43.135627391974054,82.81235367192687,94.09119862585536,51.54923963327893,57.22663493024972,26.7095036438454,19.562143826439005,72.7370134846436,96.4405562284332,95.32614135789483,24.904515032498132,18.83614782348335,61.723181391838466,55.47370845090379,42.05833424284049,69.69890171870193,59.65270420651644,0.9016876469152613,43.30387803476425,78.58353866044872,68.53008540998154,74.32495223256282,76.73492850507552,10.329931834782368,75.01384581417112,45.9799309715214,95.85749530177165,23.140830495165233,38.44833648161322,74.00001548318573,70.72339361770695,13.161058672875015,62.17980873772094,40.257515491528615,47.897623440780436,59.84826319412731,34.01992000934213,46.7246823927695,77.41597609828382,35.39756934399221,6.873545603607145,38.34252518014705,56.32584343192865,11.016809282810447,7.373259792509279,6.171864181789777,43.15175396619541,12.297612834172778,79.9186543200566,68.3902999129956,47.68112051957334,1.002996888614005,71.68828946202595,6.508364000084422,89.9007357458814,90.85078957883528,42.009141739189204,2.652062828036783,35.17138413413352,72.21360475018476,87.31050417342908,37.402920182122834,53.935871585534734,68.90983411315707,62.65719700291661,1.840446268681184,75.12890141803234,59.094249329325066,97.3892716674051,95.88757368232731,82.96795795818356,72.72904744949777,79.52739881196538,43.85877104904212,38.96356659062998,44.820409579016655,88.61448298411234,51.28557573318693,87.75611936929425,77.60673736421768,74.66299024617454,62.27696524250036,90.44342162546859,68.15090010042736,23.881764266756868,50.33411133932822,77.31269863872608,12.948850636269638,78.85872601543787,69.16457774431476,8.97203446957886,63.22736504649732,85.68708961977163,79.37857360620183,85.21739160381485,76.5003916917696,22.711643240816148,94.75477139091562,14.505037316650537,17.36942372438328,84.65862368719183,69.34544267976354,40.493773901773565,23.801584331818148,88.57461310370013,83.04895635492959,38.804348789055396,88.7922006251715,96.74188207666158,13.206961766404568,76.24277147993219,23.046153609691522,61.40524000380794,27.797461789902734,63.855093919181435,2.2414933907778045,95.7935141812252,93.1302646602305,95.90415528427208,13.543471737294865,6.591309938449408,15.229545410926049,33.07996070784187,54.20102253548863,51.573598031344204,76.83929736974416,96.77467735049657,52.22439874228238,33.36540384272063,5.3330035776322005,58.32789747966696,8.73648870263829,6.974749719780105,8.019288876385854,79.74696528729642,57.034349921725145,33.45331099639763,22.988726630669643,52.51424112759307,99.93167363545874,13.277842687154873,81.2024870294984,52.19062768881317,43.78036278009597,36.66791341124684,96.13736254885447,11.96460008674719,1.054087964805539,31.950512102617846,72.4823261465921,55.17026670871665,82.95254860217503,30.05686793534139,90.76084813044426,94.66670207725684,87.79068263503255,97.06207725747232,44.17560632756854,9.18093491361358,3.4827432546761905,33.98777178752104,48.09987505580875,89.65382958523,28.895695857769176,20.30640280867466,59.66508382356043,71.92692618976714,97.46107107717594,67.24891132203325,48.833637334555334,52.19475103334419,12.983236168189228,8.172161360534702,71.93648452673462,12.225407021059286,16.139565617004102,71.90124779723047,98.33085169087676,54.840979358093676,51.42471061537014,59.58856378201296,90.74934309017905,14.814382102250267,50.37738991924224,17.43139732305209,46.45422356261324,25.43189859818451,91.93244028603037,21.075230919301436,48.25821509036644,40.10700204373497,59.06448927883646,25.857344785887616,52.93532035435323,21.177646048581334,70.84357177638087,35.70725919347968,61.18049762298609,69.92281779281198,2.8772403701035842,19.11946045884593,68.08148120095416,36.814533823104554,82.7790213193438,49.99611321725654,78.94755396523895,16.883714633730385,56.702463773963444,74.87899292836804,62.393366620892174,25.79617307255929,43.48060753231893,55.57292595325587,88.3820972662834,68.01557627925028,72.40856231232621,40.0851637432895,85.414583230935,37.402262143494404,36.019901964435164,8.490498525097268,35.50384816164982,75.85869932580506,3.2498752982541013,46.193853096335715,67.77748470203157,6.989844241317811,30.116104582356485,80.56145500658643,39.121468480562584,37.79811931484435,61.02271849829817,90.52754291838492,43.60561636090763,20.80462452393754,26.03687583629295,28.057987600802946,35.50923514114195,7.813751518894363,37.28876186811404,6.557741925480465,55.07852974686141,12.456379294554532,12.885559525509349,17.561051797231407,9.217865044171415,41.40576232698089,29.710894047794312,9.93090053787099,1.8705334816491836,56.23151420725407,30.822320931249124,63.81623071405127,91.0064653406198,99.56482981324119,52.41198570467071,78.03788264213824,86.66300773844215,6.399880042186279,37.691486802273644,72.69088339794222,22.796183640133037,86.42984130663459,78.42969531648795,81.2255663005173,65.0872288291726,3.7355087476335203,62.93589180710445,3.184583751130232,39.59643883300171,8.030182946508779,92.45169547351793,7.674968363906165,72.41413529322462,6.905201179564823,12.075233261040552,86.79334346102594,73.26657759363253,96.7765246575413,27.18057244725364,22.90286707868715,1.5789382757661508,97.21575775384525,56.89682282598461,87.45350446615218,31.277844065203908,17.091654472885587,75.88862885767116,8.654203091944868,30.126079561518026,57.767233325061476,97.65965309349532,41.619078157399436,50.47356414292924,68.14921817891302,1.639127961204978,60.504439020874024,23.80521071097721,36.913504810810046,84.84179655398012,42.267495794497776,96.70974628883879,10.138401739233128,51.22146116074475,99.35536490751635,85.29510356874268,98.01146561097653,28.009449966302423,79.69642319800442,54.53906677780225,72.07957336124832,63.71922241376951,31.429293574865223,12.169068701093344,38.0342472563805,20.494609586364554,84.34356236176647,45.79403049662694,19.4837194342781,23.64000970246316,95.90035847752914,82.26623685470742,69.88643514154288,42.090648677482136,29.88156176997293,17.606135780810618,6.646326746937225,89.3764870799483,35.09409828433447,88.68205899673211,84.54020741019046,60.31097478108391,28.11556202165533,89.65753871963078,81.40923271583058,32.59499870736,48.35221806680659,91.4745019871746,46.976540990870184,58.58954560917208,84.05069492003597,2.458292492577552,28.743889963317613,86.15215494304852,24.714629080223094,49.87378783010962,93.47323687690974,75.65150332854509,52.61371926512538,82.53928849582546,55.50964257393688,47.390772767729636,96.31651042614118,53.23147802886549,92.16823983580709,59.968215577218565,30.397029988019064,2.634376750896106,88.85266261956541,90.60736188302545,29.084469070839614,79.51367069458924,80.13008792008051,14.973210663775394,28.91092838276499,65.62601615222529,87.74857950859534,90.25522009506864,11.202126689044755,95.52392536526973,19.261939959023533,93.6579780129698,30.6409788775056,99.06957188157148,64.94734864652239,21.39049188199649,47.07221049549381,74.40969937614572,72.81020657999105,20.60988330436838,25.841613181308563,92.8873668726391,36.78057970971527,81.58638605661552,84.7879330415705,90.95243985765296,83.7061768561982,76.12129140099431,92.36464212835116,34.486780968241916,42.20023625972652,87.28855551702668,68.08974964636329,98.23053787377276,65.74374662205744,33.9550892045671,49.377241182321754,53.07835527908843,87.67615694332197,88.57289008770573,28.81697804382385,9.84067763813754,21.865551768472933,42.66462188696567,47.65856231966021,37.036790338474844,51.73591069011335,15.858578948513157,43.565511061792286,13.668739970357802,60.401182134140186,54.969017885622385,72.30875059928901,98.8014266894143,57.7988780456947,87.4599741793681,49.43888505524407,44.95598875073667,50.835733723139676,92.7251787279148,8.303443876418193,28.72141021071053,72.094195850792,86.97125106747309,38.73413266294581,32.290014444572634,68.29575739848126,45.9723806920854,24.942838320359286,37.87244280538826,46.28978862809953,61.67103658930859,25.641845589599164,58.93981512212476,93.58064287973062,31.381847683452378,43.25443526738473,1.9486004994270112,30.273245817396166,32.9418454636687,88.32947326278632,70.74830074209162,76.57313896234024,65.75887002646141,50.23098803716313,56.057079465665396,64.82246175246767,54.96309292619427,92.759294488835,5.098676557162962,61.040385473362555,64.08520093408865,88.22955222145914,62.784007702350195,40.45363798221309,51.8712719700572,30.284603181959024,83.32080004119724,58.750154309132185,50.291923855915485,61.76885236154484,42.479944476035115,8.055283407943426,3.5450025057358836,9.22786079984933,57.667910331118286,27.10337975157153,31.942201753387657,10.111582944434783,1.1973217176403872,49.078338174463475,72.79080565767765,4.081814026877206,46.20915740189431,78.68615849087948,89.82525139113166,41.16064384491818,81.7025101585287,4.105682749393724,23.193889991181305,48.54374837950384,88.60351406984378,88.46190352666538,23.460587348843443,44.245070435923225,31.799877380599504,94.66344456464486,17.68399767465936,90.02820259191584,44.90249062051998,79.93464827690696,97.84369669522258,76.55722329931834,31.546065651055656,10.706666495545637,18.72841998835254,81.04780391530997,35.402680335681666,76.67733161811321,71.69607463758851,21.066281654087405,61.19629334644857,43.637366143845,59.43006767795465,48.145098991362346,69.42086717773797,45.88577659280645,98.11749090165745,73.04483457910906,10.530179014219975,50.633769857632174,84.89619936331378,86.85023653347096,44.806590026103024,84.4346660944788,80.91669476615382,47.62483889616088,47.13316716194017,76.43938078926392,26.518112793388237,7.502014272316904,53.10217865742922,83.33857544102378,58.89431360042357,7.670597202782448,26.251689929263446,78.74650729252043,30.78153483693996,39.02823280581477,47.34240317540003,65.925378878148,26.321062841349118,80.04150120843914,35.883624829172554,94.73873829287248,13.60561201980306,67.04556305703258,87.39520716346377,61.45614748288445,70.7071975627001,30.35667846522735,19.15418615037566,99.71493381123949,16.38595274323178,48.92580351283937,29.946928697138798,96.77070957948246,95.64277730402706,13.495071007607152,74.85504337681775,91.28851681131103,94.1234754490453,62.7307470709096,94.27492108055161,21.638673519013306,54.89286291904504,31.688121884849373,48.37853363144825,2.568770845724555,47.600581386706274,61.364932895753554,93.56913918247824,66.49697455645044,25.255494798110554,70.80372895967369,28.121539606001388,97.14835644635512,18.807316739354572,76.68657710739022,96.14838247526227,89.61599650898007,43.78571991045305,10.579415073901366,50.005753275681066,13.228378636040683,24.12477019996362,64.9015523792064,42.49678468771949,58.597563672218165,20.827671066650232,20.061429277324716,12.073720614553206,23.578687508765107,52.88816355867373,50.271951926417394,3.9265653396337585,50.269018824835676,72.1141377523603,16.52610761061255,65.01576636630811,74.71669686421579,83.80493664976072,93.73467992213638,16.888122495648805,6.731223547317001,67.99570722335189,25.83083046218523,91.34814549498485,47.83464453277748,23.239544512603715,26.3482745190567,18.67651293654402,84.28689251763119,11.727277201622222,45.72100482099374,14.675828214276876,32.21875914589414,31.536602108644207,52.7165049666871,55.250585467251604,73.76058649421832,25.284358264872473,79.43084508661873,24.01532808382838,29.44657295901818,16.90103247756216,22.097323654886203,96.67831834075112,29.245556440381936,44.961687766456606,60.21085208742144,53.51183068789116,70.28277679715521,7.5604093828317565,25.0210449858291,24.978762500663166,4.3931989281944865,36.90327733688835,31.347259638091675,93.46933706840757,35.11556566994395,63.9431290421112,31.279046972204295,84.66638402639168,86.2636110587686,21.58912528739172,52.64890467623439,18.51900484001261,94.87769997367911,48.22905713945273,79.70076296381978,60.35406276936366,33.14376255519848,71.42274745367406,31.714368674348414,82.04701071517353,47.15281568020089,28.92901773519264,34.077716914626585,44.43150847331151,64.11605755446595,21.361619157855692,49.19122193572317,4.1068483818927355,61.06593391568762,42.19490094420008,45.292218699878305,89.19334767791364,13.184325989233248,3.834444394642733,25.43903958302376,31.553939244078787,16.74078807217886,91.61824158992444,61.79449212055278,26.466245336428774,76.49594822100663,45.71521491756504,46.9641667921452,7.931316770923136,34.89819291930275,98.15787751244153,87.99780650465287,54.99682075292524,63.97483491131511,59.79323413447003,44.87419098526196,59.94823749759484,75.44780922213633,3.3067659938153526,61.530334938811436,59.70801867375106,13.965196208561437,59.37926188232237,58.7699370658841,5.433399373116254,76.95354825452894,28.614317603394646,35.35676306001405,63.51190087207441,58.53506169713236,44.87836949697521,9.486631752658003,88.76459552227038,16.373771958353835,6.397799601067222,80.14286379089441,24.71308088227263,53.883804615632755,85.03630566150237,77.0652191519657,99.96120856881714,95.23200822077459,19.689992678943767,68.78570687590218,99.71066623683302,88.08844477485735,67.62572307748624,60.011240888531546,18.96152025374548,5.5183007176373255,59.71879942495064,91.04047305943175,1.556706489600912,72.23159404899889,28.797295113479326,45.8216700078935,97.0940900011284,45.42812024297332,45.12212604271275,30.050991391056524,88.75976947627123,68.35251722570841,1.5703372091653733,97.48225165412096,55.67679897379444,45.45636811631748,89.96704625218291,65.8140585035271,58.25018465399297,2.1690354755807717,25.233196343448007,51.93423115235149,78.98210580238654,73.53460225090706,36.47739795245464,78.69893885885973,25.78882385751321,67.02761580414193,69.54753305019563,39.65533644870811,17.88245811652479,74.88758503836132,5.614538113967504,41.136535240763465,67.60276230809686,12.315982749014331,41.27445946124604,0.7107728306144145,95.69389117306162,55.34063824853336,8.693155466957503,4.807133712301626,98.26371054880863,40.96170183991374,33.670759663849466,1.3656938683614728,83.77867239992042,39.08779112950882,65.46015688125503,69.49397216473801,10.17871348204904,98.33920516158872,88.34548946690113,40.78125342669801,52.43605441044844,78.05643980122518,79.26631631192281,86.98770002637096,67.05224596846422,77.03682706517972,66.08740422520647,46.32212868739375,5.118030771047966,60.614284449440326,92.93598520165604,39.301369419918764,0.7101463748283465,51.88836487348165,51.27843842850365,25.84478601020994,5.951265871482603,41.889474108210536,58.62180157545954,44.76983375288067,2.711600649876711,30.709513109160746,45.718778553658844,41.31522243520047,81.96135105058714,96.49111400349358,37.778418425417506,99.85619303536886,3.027897855506223,13.736497801477165,20.834690270981316,55.65743999368703,81.57207027357497,92.85550447799919,60.63768407072325,83.2241636653626,16.068926407712492,85.55710560070628,63.29731280493739,69.319433964103,53.1287727043132,61.0557058533537,63.30297928304653,36.23918652406959,32.22542163012627,87.0612452879264,50.067334053736225,15.03896398323663,3.3187246073945076,27.080818316923207,5.825500504179937,21.67441200322323,16.543813406425436,98.38946253350849,61.41922868694773,91.38624837444776,17.735936389010178,91.59358527264449,8.516000018147885,99.20261379026722,4.795076368825157,11.86221898403681,87.18494950044382,24.79526063722122,86.98568282652684,14.039655404491235,23.82222805419175,41.046401967320975,50.10345899193602,38.671520101848344,19.304231414985274,9.914360795159471,39.34178731085963,71.90975852095262,95.22675739711252,75.71530146637072,80.03213354777937,83.81573871778777,69.71418276789603,9.598659728905812,49.31618139809421,26.00127776265525,17.297277791018185,64.68472551143057,64.13124143433153,23.765428053000235,19.52881664867997,45.464978963267164,85.03004225816692,8.390076106348342,59.50563742100563,80.40666762261598,1.451291792414311,9.631225609074223,97.78923619620817,65.58308441811295,79.61792035869975,72.27664342694527,78.75095216724799,62.3409801435531,47.783917112365394,88.98772166065892,75.05350648646055,63.85223029303675,11.620825892054276,75.34757997673796,21.674161811916747,91.0459701791021,13.026727538200467,86.38538961990909,11.801590975597254,15.68414513261187,74.47843614077503,10.987141684413547,7.576086560144468,17.908060587865272,98.26592440632892,72.23444281598502,10.849427094017106,70.71730703900924,40.32575949767184,35.45450743068843,45.70461183608967,57.22234395040802,54.57324790273287,14.356256809386247,90.34919669440413,72.07616476404735,28.059761016643524,2.741541018080662,64.07024955045746,86.88507954011102,8.212665216165494,19.812416113313336,79.19745264150377,60.325756009940946,94.22951613295443,56.93349790042379,20.083961145650697,32.99268854263452,61.95571167290075,66.99502337913734,80.9468581433958,52.48187791011816,95.40668258010663,29.18073204680429,32.87758645728983,59.52668691226233,6.158064093734739,59.569239507032535,74.72966988398154,19.192700876761037,73.12344658278481,20.401141333168926,33.969126754578994,1.9221414744881038,29.214133754613457,30.59656747127931,5.518608514581336,43.37637529878447,9.514162811984539,88.07923074211982,60.62004306574343,54.53803494538633,37.383137696427625,47.344981507833104,40.2160953481747,4.437400940367664,68.06471319298579,2.860780838527155,13.985579221326905,62.922132304825894,42.848069605979035,9.556010464011312,67.66861127979409,31.708204348229184,49.46256232406683,90.7739372008289,25.508903603261945,22.69585634666962,72.47197330350647,67.96943804373792,12.027869132765401,36.09099932083447,91.80640672324726,48.814144882307296,73.43026962720332,21.874850331435724,20.003427910948613,23.558179948459944,73.2494314873962,2.9266317029800426,0.47101647607764585,54.60878535302008,65.95723131793913,86.75236822918025,75.2737801982335,84.51445047309106,45.57709267368819,60.03574832627092,18.611776549049296,83.29920430593899,11.684782745504362,86.36439280047853,11.987211288380406,51.94837547968045,36.73940169070823,78.74892506444833,6.418543293553814,35.76826312811463,70.81686106645529,77.92527264960546,58.28538158223721,68.33867325167459,45.47598681009632,40.45664636404204,30.40084699356884,29.490739791395104,34.13647238144502,6.15212567529313,35.433446746224085,99.48236359762326,12.943765634421055,80.84078380503429,64.33262305638759,19.67357800227907,28.778193923589356,62.94194642600153,44.536333265129024,70.686381881773,14.554503087014526,76.01715819940972,55.755842882889404,22.42078800523769,61.33869051248614,65.41073036134314,92.99362022220059,76.76695944771261,24.18866307277261,29.12788771371726,76.1603680102397,61.61301425357085,77.72018307504287,93.28892261011178,1.345981151843445,40.644802056607574,52.76492380593797,61.73079618496272,46.735570095544155,68.07463604922158,17.26669011227232,22.417986360591392,34.09393092220523,93.4227790169024,19.844682371971757,85.21488610590573,45.44868878626354,44.76311402634353,93.10198362632856,99.91237865198312,15.311516614787134,16.115407955227322,43.503320109158615,46.14225376078635,88.52724177394052,77.47873973659213,40.79021582262524,43.11665774567063,62.98218728352274,33.81975875684946,9.181602480260231,51.800505389243554,42.54868905844648,42.798401496684136,73.53981247046296,48.93571547308508,33.391108127810156,38.15602982527988,73.01156285904304,97.91828531462184,99.91068356290216,85.21285022338179,10.756664681927663,92.73124265844358,61.86868114203674,41.802199579608704,23.151602616418863,94.74439323782113,52.838404873962816,23.00019498498661,45.953642368095075,72.90821382568937,13.544123626287119,23.48268902086258,63.242723906618515,34.28701696921256,26.593784221750195,50.15164578018296,89.39187545714786,45.427332236053594,46.2680790508142,4.230557671484636,9.79727818611168,20.867431869662223,78.38815226814593,25.35268016121138,32.11974113339448,88.37817680260066,38.36827509809934,76.46919377102236,44.430221049253696,14.484879577288057,49.1596645977754,74.4428937866785,49.51208813512652,2.1951303673134026,74.37329038275952,15.964797235733085,85.61503138596376,95.78714710295974,10.302835698104229,93.28783536305136,39.705062637713226,21.301758440338283,9.490125252168212,2.936133719326961,81.58713014159589,67.46385819760356,89.57521156841638,59.19954008544538,35.61834028919174,45.782888467726615,11.551666513544046,52.65058368903185,66.79743688743869,58.58317317229511,45.42066177948916,98.74173814791189,71.00665148435186,63.15404134923538,11.077959253967762,49.67450037693124,13.085280360223006,90.00393435524707,2.0205732633966744,99.624432818929,97.07139861361215,61.52471877975911,64.81911822483269,32.671829321317915,95.05638476762658,74.86328446577953,16.855409963439282,14.384905415446203,97.46944658467817,55.35844603137616,50.12681912710356,78.81484860122941,33.49341244288031,97.14102828252422,35.974774215416026,71.0021886221827,14.531023319717262,77.42271348558067,47.75332847435405,19.40666379345053,37.014140125288264,86.53840569054087,4.004790321536211,99.18684024116253,63.01117338078745,56.41869278021052,68.49383586529616,21.42054098637276,74.6029409067852,30.79448635404225,90.50068661775133,65.9802644863238,91.12367565249191,14.74823992781923,61.14567698217107,79.0461818067397,51.79236154697007,64.7114834965982,61.58497493060142,12.104772143226706,16.72522688909436,61.93974305349717,78.24765932851906,79.09271595589951,0.9228804317196526,92.07514687367738,71.4886969568772,44.29258658453812,54.213118914660406,27.742461887118854,1.4407771430587468,34.36726734367137,91.90449474877904,88.87128331215159,6.255320275698695,91.64135926510326,71.60843602326891,6.4019108987546485,70.81108870786481,21.4076951871078,80.49855715358157,93.76791074022728,6.2858835692590205,96.47651697293264,36.49696975793345,67.93342932288597,39.65245661934757,93.46757020885539,42.912328338200865,62.313955599466034,15.519601817218586,97.64635832629118,78.01739334407071,62.47860259056445,77.0952813111117,22.43546877755831,19.69514798549554,86.00019661059795,71.1234400410939,82.07957516193643,69.52463347444498,67.22423355222122,28.53792000244847,16.741965507430688,62.83977766354708,99.59929452780104,36.25844132424716,50.98773924086078,37.06241591952492,39.289964670398916,55.067047078603515,71.80667026653586,94.85052440486838,67.05972389008949,78.5847798071972,56.263343543873376,52.854155792184464,59.51519825478968,66.06178504422103,31.041738657716078,59.700494231421665,87.3535438843961,31.824674889882033,82.97077040490561,91.05380138379665,39.13688197281072,77.16337590416346,5.747232960968141,65.76571685534239,27.281361600264333,30.14789538879239,47.933609877211566,24.747412463525386,88.97092244261509,58.70390038541914,28.733158463238073,44.56495915696061,90.51629619679974,94.41103382520637,5.872190767189367,95.33951858247694,74.85883471117441,61.674066732998476,28.98517323809604,17.88728318853491,84.3533796767113,47.904448276267566,97.48217132479596,83.8704244641406,6.159118842720368,75.97855951837913,2.8683977640246994,96.70304354464217,93.80008766438127,30.91638292553027,46.8507693822267,74.40157485276126,57.714464578559756,79.79986316054915,84.28205604378368,49.484369420508614,0.32171704799476286,65.00669246592163,32.43106790775433,2.3116780282046223,38.40907777212917,84.78882821704919,14.20322749054057,61.948746866604985,54.897925196001594,95.66219456419749,93.43916064958626,6.394067392078318,9.87836408973487,79.95401674197255,38.344745580493864,69.0377878308379,53.282365209558655,47.75173818226056,53.86082726208189,42.878273807774235,40.189546085759275,13.776870747814552,84.1355999934579,92.74113785317599,2.3209267742481776,49.07883903123279,35.86753836245731,55.38521678251157,59.525433202396094,84.29635600448006,83.19304751654177,71.54622120696548,42.11713877263929,66.21001428888937,43.86474799110466,0.7758555770843056,36.46923625105655,94.10271175196748,29.38782155731925,84.10922593367022,53.72081396056515,96.21587020512162,35.75233851346332,18.199036900195477,28.3860463194577,37.78445731151869,58.656793529649256,30.462235778954227,62.731856922845886,94.18910868640597,99.84439306786678,6.3946972530764645,41.27527253112548,33.16803145671734,36.29332011206995,44.84851906883285,82.92494485153107,20.297433459630053,38.3148465865776,51.64717189405249,3.0511737853727072,61.3705562973543,70.53496385769988,9.225849714656897,96.52004709940547,3.7902392983418354,39.5256356295392,15.8149203273228,59.54251906280261,54.89656489353091,27.997018707421518,47.23388203133767,8.44175275251805,27.013148214967618,45.49234942796514,41.377587789064776,47.040234342572795,96.52683430754644,5.25518538323706,75.2035877822027,94.33611364234189,49.842715347333645,17.293962565604094,7.813352324849154,50.246784284768964,54.817810513031496,28.858646206557438,62.70982259484822,20.846431019747026,61.45339797359695,15.007592302594874,8.513948016077698,25.24717873136759,65.33536809012293,43.951604097772325,7.846472846413488,19.093381702693122,52.388194191816,52.21122564810634,34.284701267995686,31.033439780378846,95.41446820927838,96.61751489504303,1.7872611772416835,1.3653610940569827,32.36693299389957,12.59261893702962,38.78571701095631,28.885268908656027,11.427989390512227,87.65766658631597,22.106099167462045,23.75418425535203,96.39561154201739,96.89706520322179,28.39902827074672,20.006705594635786,21.952468139254634,5.357157085884179,5.409711603250155,24.745937704381216,74.08591444016722,11.681562609683183,65.74276256782488,87.01138680202104,30.054656410622314,33.36188252580499,72.1996554552221,43.33596809787469,47.55987612669603,76.68292697924085,26.17361066938868,16.18733512482623,32.38639980570282,19.894056180388908,45.04214405752718,51.56250049315584,30.069359803452844,3.871305206399833,53.06203484013783,18.284563954045986,0.29568670163721,65.21772983392097,96.88054823038202,66.02069417706372,1.198865716494335,30.287173869822492,38.39194684287467,26.84866343752471,71.63974957438496,78.89289233143303,3.360063188785145,22.425513618743974,30.815336070819843,63.70243907875631,76.8791369220005,26.5518748931002,49.43617468900797,18.504804785480932,87.01676745969826,91.57194656334312,5.663654027975418,75.66390293940545,53.59814450534939,39.623169467788614,43.97689518138307,95.71585823271104,66.51771231040395,76.67607312269413,84.4933681157303,2.001145460948861,97.49520002928921,69.86847793940383,96.63394778775384,21.28504974446681,78.33477787289992,14.460259366771899,57.60889944725769,9.121169184541845,22.3557068401673,81.94646185161429,68.61757706599239,55.57013645276595,64.76561703807548,81.43928417162017,20.265790027041685,23.990286151369823,85.26134493173075,74.69411950798599,33.483044869469815,22.563953181893382,80.79637549752196,32.69865716901277,21.201316446890438,64.0957153845563,25.201058154423194,45.936477872241966,6.768207821963346,60.7142439383642,8.235853909764446,16.11562858193154,75.81905760086059,69.3664702485361,85.8785752340974,7.841781331628528,20.90927616001408,15.105240073562909,72.36824569793767,9.707960383307434,61.56758317693585,18.238578683858407,52.002650996772374,72.10391202173274,64.69616404789672,44.69632302611741,43.79484827327457,69.37492004306549,5.309639078056938,90.92670734360583,16.1524943403081,14.699972605372302,84.49919811836199,92.94160941097105,11.687692471032939,57.23049159128897,35.90113853862954,99.87111919214887,83.65914063141938,69.48122866079018,68.02741416559573,66.40222204863848,36.481640962291706,0.14598795300007072,41.94921643836117,16.168077686149374,91.5052210757273,51.225935433409234,16.56371243801421,32.48971564705957,69.67363115030449,32.9058383275712,60.60364456017413,15.512899553644942,34.40429788068514,37.674014923676644,71.60671886849481,39.7892084151688,74.92798874644066,88.46897824005826,80.11174432943203,7.989187555904564,49.29839987645997,95.21121059876288,63.989206697625825,26.998842597361396,59.280049613816786,75.16892533118644,51.64428107804948,22.557220060259976,15.02594899496793,20.89725930795463,43.319470058620404,97.94978032399439,47.061907336717304,18.968389446204746,3.4992472943227493,7.629845167792293,36.6073202170643,52.76440488199603,93.27346480696474,84.89806521469369,3.2920091953685504,33.37617145871351,54.06015203818506,57.47885930568412,73.07369348039636,54.48175846634036,10.329097896216322,26.43249922345936,52.25729760184332,13.219848645313448,92.9203804503205,89.18032068247078,24.003412936221636,45.485007024856586,28.088480680779103,34.33720491709506,79.68643012018028,31.932221925537497,74.0824648139636,3.9230858092544008,70.03602107349461,36.11322999975906,92.46145872381271,7.617701933476628,50.62678287222951,6.877147742446221,1.8407841683712234,61.274361589765306,7.900668287198798,62.43017365884415,80.94556354307467,64.9058483860442,20.410028011480986,25.212924390243796,51.85845411509873,14.23642194163608,88.28209962281421,7.945407044134656,99.8225948338334,41.48991625505065,89.07330866245631,28.98096412309964,97.38662995724656,11.090359686390794,93.57309681246035,65.82129347629223,18.73347977263232,28.475634770121438,62.88565758719689,39.431953569438626,74.30547204677063,24.74723251238682,34.18808769736582,76.88548795009537,26.264953642034992,71.39837628843662,60.08204018322115,1.1897617159577822,18.15960486744963,74.45370554131566,96.16844551283206,32.22331077889978,18.43690884334436,6.298215006684449,67.5237984761504,51.26000209721467,50.45828051867883,69.95922202270576,86.2732316091113,21.694441619064865,32.546245424559885,87.83908697950613,3.6783690722015705,0.1376368522308713,94.90421712210558,91.68325845749293,83.8506436027884,13.781547141472528,83.54642402655162,84.04708508977144,14.057822979545854,88.86114404032531,10.628481913018895,91.18412891294385,16.256055414321445,14.08122457131663,66.12831152574941,26.676300246942574,26.313446261806927,27.02937713718574,72.57328649094585,15.048428940678848,34.868836862854714,89.69942374142073,20.622402284823327,61.847709461273595,54.4655868571712,76.36373415674998,36.185004289477874,3.389304175440877,51.01613951234292,57.73932732201352,62.034083330563696,33.6893308589316,84.04716056799424,4.416962814863368,60.647186356372686,41.074218725218024,53.34555304101672,77.27886234639736,98.4895211488607,42.64495770171557,75.10686103974672,58.51517205886015,37.164488028675116,49.08380655377118,22.118051469959145,76.2305723221726,70.98683772416044,42.41372335355832,71.66397212568056,97.27891023601056,53.64274644048616,66.90280985630632,21.369624422374024,41.11587216499151,66.12245431636391,16.194327667038422,21.861130267937277,55.356631954492464,25.43262445971176,4.440146039383186,88.23801292022482,17.17063058087438,7.702940160602967,41.74177842437321,78.42445754777022,10.998378776625461,99.13603693506307,94.41523285022427,45.15787817376526,51.935850882905875,78.83002338326303,63.13593013807767,57.9658322489235,95.72814880570921,49.76308758740006,84.32804268042699,48.218929822129994,38.06394460225273,85.28361259663559,16.37699089017419,37.319445749612726,58.88124772084608,81.01883485487762,10.554338479604597,26.312745173842867,80.55273598893015,6.4558870639261805,48.23981897501518,86.27015006972047,72.5069245039457,18.750085120272274,54.39254457753657,14.022964458293064,76.4151148941268,4.838324505153779,11.811172620979383,78.02591723153638,24.024852457135758,72.42980286243056,66.99611797227813,32.53222735835634,82.2350311719725,79.25639343416292,17.462347270278357,88.31007008080275,75.65965749956536,58.927023551956715,13.158531998460631,62.85192392775335,55.158250638600315,86.36754957188239,39.32631339226992,72.49832842836842,22.39371418954694,25.11458432456868,2.5577441342642615,94.63385052424717,13.726374027218158,51.592999338948644,37.45944885703834,20.396664732792193,1.6285003475700943,93.33823659091202,61.623175337459536,45.5943102376431,7.983937521792117,39.73064790965084,88.7006620201559,51.911552338319645,85.05377207349561,94.95697722587917,5.144511229940941,83.26401597814646,51.67273447551517,17.72865540410008,89.10504603955012,70.60669270923896,58.56420641560066,34.60755355523856,12.679686732103434,66.40204860914827,2.509246931333531,62.68519153015072,65.95118972701256,34.52195410149199,52.48877362099821,87.13755303661884,24.013730397008516,25.551315834276355,97.08966437720049,73.07020063284848,67.50140115170349,78.35326277512098,79.58897921288276,85.45329854755721,73.08873082863275,82.42219697647673,39.050803527202014,8.524694366683194,55.31667819674263,99.26549208030654,64.23022988826973,65.29594469032062,96.98594706937277,37.50518101146654,62.1562149242443,89.77854910948652,79.07995272334392,17.220142827543317,72.3140060922492,76.0607981077099,41.6170772401141,65.83370479263418,70.57698394025482,41.953260563152405,7.31257348106138,51.37983667834688,35.51423032404447,65.79546219379318,18.330791747397246,12.34568480704662,57.742635270771025,13.494566686558008,74.69101129891705,9.088007976006551,26.641873754567857,53.558223060660815,86.34529631053638,9.667680826868574,82.83442248463308,59.54575790720419,10.672753767049837,66.45474168027941,69.635041215099,48.120609451446626,14.584366260353686,41.88861194522645,3.236977903715721,25.374810610209742,62.67725992924771,66.80971856026747,36.52841772806771,9.695755752832758,21.82944861037712,60.02700400958613,54.274807440128214,52.99299259339213,8.48491042781282,85.07767557976358,47.836724914899,78.62205991115074,66.72059011782267,94.92435753454828,88.92797052270191,78.85950164257548,57.46090165125067,90.35759977120163,57.01863666675142,23.838224184188817,51.974287760490924,49.85975323670468,30.029167984117322,36.59403468511881,34.56567541528809,69.69028641163486,62.209832555675895,19.24049485089445,40.57250393921432,67.30290640696688,94.79806250179111,8.560106300187941,0.3450896636871814,64.27135729246352,66.52879670772924,40.12034664365645,40.33828081832274,34.9451831608209,75.28147689560235,97.65758297982742,90.42655089557603,39.34430124689929,56.46584755208236,40.53163386492737,84.76428278226355,98.05197951498394,2.4070847016135044,74.38601926747565,49.21095251130024,3.3037083088092167,30.90626441072889,80.75013070717787,86.41968380603642,64.04829566485748,84.61166918106223,81.06776301337442,93.57785293095579,13.45629465669239,14.698048266921083,58.37293197919157,61.918388293480895,72.66723855242981,51.548185404499506,2.998968597270124,56.796662431685874,86.04521240863772,74.16064133220817,29.170233141508017,70.00048965792975,62.745229022408644,19.30019752988832,38.20227727499286,51.09252787605145,40.1075075936548,27.843587911950728,35.74085358418275,33.09465998077238,4.852401544819374,12.373877753466155,9.894533550170891,31.658940815734184,33.20701581784339,50.67769387019663,99.27617105811936,79.20732048565047,45.22071126234688,57.352819502212746,89.9829304228375,1.2283955769947452,63.53374680538931,92.27056617214265,80.97038680601243,86.07599963632646,65.48637578773159,0.18148920949231373,50.722605928996764,28.373002160085093,18.644751460167754,83.244471148262,99.93425276584934,49.551128673769774,87.85194869123607,38.71622762199578,5.238488425117083,66.12582156365477,4.894668598425911,33.64413335802833,44.46364628682188,76.30232553857252,77.38913682702496,44.09777519365955,88.85026306722524,94.65906585790353,32.217964778515665,97.92779517755902,18.830630333796606,48.0469690007573,24.524464370357656,83.76585022092702,93.26615323481433,29.11566133941634,34.43786076975849,76.87831339647558,44.78403023575779,45.86500134584453,75.50887128778108,73.2264943703936,97.15394351117435,91.20754790308732,66.30139474957912,52.41592508606539,14.27191186839426,1.2168540920414084,45.47169403257375,28.816952586478084,46.56161606294437,70.8632045128262,72.11047212065395,23.671243031560095,6.910806194292663,61.11050644192473,73.54194636627518,58.1960555845516,85.10073520246299,57.502702106880335,7.223903598446457,18.887001513540714,3.858475327181854,1.030891587555538,35.97598811911158,90.02828385702513,27.61663790667376,23.6527452131893,85.90092627413584,0.7560208651630984,48.71996706679571,85.64355226363402,17.86309773594069,65.30160589136406,57.31974946007627,52.1632257525957,36.833028583055516,60.353563443506054,84.48637655720033,59.47540838375885,4.180346886938646,26.93491697295044,26.22172473486568,90.21785902026443,41.91950447498542,0.29024406822331095,87.97740779634742,63.21196221011738,88.06882162241013,65.33521824133247,29.71013336467908,62.760248579069376,50.04653712500067,0.8966128495888626,23.462407328480197,84.08877585306647,73.97007589814312,48.729794604361196,49.86936105246643,40.6471918406335,37.85253473365252,92.13536976288901,23.114070371655103,21.829244827614215,28.873114442510982,73.86013303959122,73.9733175793008,50.90502049495925,99.07471631552237,18.077764244380102,31.30161360652727,61.52855136488441,85.25612251320037,33.880200318145896,85.27229645983826,90.61363552004987,61.84106218052895,48.90960326753342,2.4708591063426932,40.91407235337891,90.86568603214276,12.73721699827599,42.77247633248328,57.90038243181655,27.848688126031686,30.058697186644125,54.54129529881975,50.03648083444347,86.4581166523205,36.060745147696274,19.55773649290855,74.20697821605135,26.210615427575824,82.59935881325417,55.154117018818404,33.66034545629244,80.41539846167221,94.11638406968295,28.894518445432137,1.6299059335682098,50.65121411369839,83.75534806023963,87.06376707281758,50.408148299969355,83.10489001194232,17.304485532579285,9.707293154069042,87.58146311002042,70.01999941804759,67.67065420844051,97.99815010944344,45.21607181253944,6.596865103303395,30.567991113881355,66.03171099345728,39.2489080964596,72.6788862611753,56.96708794683333,76.30921353557517,27.79556188288973,97.94620525008125,35.6152254400968,42.90725324730113,50.70854539491499,37.822139640690246,25.16668976822608,25.035541192219746,42.63687809307226,2.107059794078292,2.210710728144094,98.81882698506412,12.508551972084636,1.8782496545664773,23.366633110743972,37.428420068400825,37.063967636858195,97.99118175024077,50.86823086058483,89.09704626301527,32.21165265732743,57.84743143616724,4.273172316825347,81.20548395502828,95.00403721604226,53.2770510740232,7.3978930468590605,3.7253425490180403,52.4309651088861,26.37023131759633,59.96763160147758,86.31462082291291,85.89281337437514,0.1375792946978982,91.14206154109348,99.79764298744112,25.981890111221805,60.327210932851806,0.25429417068655313,75.28603638501605,51.069660337014064,44.684374882874636,64.69973880547487,22.46512987164364,38.08702723090044,87.17886226124298,88.10051527930044,93.1458332850426,8.523093603853237,80.29058792917459,16.59878409177726,53.07235016247741,86.90508141501932,60.98799469015416,5.861682439776084,33.886951411508726,27.409333184512096,84.56031387579914,6.261697240675068,80.42370597253175,56.981936071803396,81.8421024671508,80.50383600821249,2.9893386814129452,75.16346540198252,47.820870966128325,48.38639030910484,63.11398222419392,76.48438423773794,1.1818228314139034,53.99341719608051,18.899587130187314,62.18058269136431,24.27117908858607,3.2155523641274386,3.3367804058252792,13.010608562392644,8.090560767759102,79.04610669723337,46.81177711668884,33.46035389815167,65.47973427418154,61.14008535043997,42.59144179574057,88.51090823401687,80.9561119260583,31.75485776242758,83.7075776288852,58.631874883855005,19.35463817227908,62.63729803560367,52.944063190740835,74.39620955321719,54.26843150019499,51.257427778916345,50.236301818903094,23.954614364551897,63.07100279640002,50.063678071902316,53.38454993086488,58.865367214398745,55.59322376833007,97.61835222658452,38.34789130449846,50.351346062421584,10.800495752071503,4.69064209085156,46.31602014660826,1.6033059185465381,12.725598795671067,97.64555679847518,10.42871494952118,93.08860549690225,71.97703377910541,79.24706705400098,58.4112018363187,28.054600967815535,25.145342565514316,62.70501260089143,70.67205891483921,17.2188127969089,63.876258268319916,26.7647293278097,41.39196213943035,88.5665074049248,53.25113729869606,42.511733755686485,97.49646126153834,69.34552117364893,25.46291204923167,2.9697716726502343,75.6386258854387,34.6849079173961,72.14700872433542,38.28191196474363,7.149447956987009,25.22217049910479,51.634547332331834,39.1164005055048,69.7963706528443,30.885704830813488,43.212478862057836,14.776958789712824,54.32457756466283,76.97133240514668,3.4186725844759236,8.26708778699573,57.82859740166588,23.889579405135876,21.06182111128917,62.59059201678642,46.32620005761321,11.450560254273723,67.61269055675183,52.89957022520154,62.77368331906366,12.101527813675483,54.68535495774016,50.60455999617233,96.69026186985435,6.293670492621295,7.2654702405017035,54.618627413081896,47.688068960216356,63.85915491935038,67.29792914152333,89.15800656569327,2.0386995336256653,86.49282583432894,44.83468390428563,51.04800222660425,42.14736650186154,73.3123287378746,79.16449171339089,48.65028088570173,67.83592852946796,64.85761841442617,40.75713557118239,10.112888321741432,11.526552330091489,58.47339321499147,41.736715375475534,77.34332212385746,98.61173508405923,78.24708455989914,96.20974597515087,98.94878760206073,27.608879267415574,38.100691624157555,11.325444921866811,8.128225311510196,39.02813038903553,14.453384010887572,16.54058166315232,65.22057572567307,45.561580847323256,79.44128046198485,0.6833350164754393,51.8154462735497,55.29651288337227,79.32487663380401,66.70730560991849,35.160635885938085,26.70333628450584,29.13991909948319,2.9613957432460314,65.59809485216431,61.367047150859555,46.78137704757206,75.35003896866033,16.93484116288124,81.90192675622002,37.61115463856359,41.623809178180124,5.4152882729296525,82.17782287973202,36.478220722256985,92.15464906935435,39.5177406592219,36.48390156752409,46.88701557854539,58.30739231344377,89.58493259860397,96.68095915047283,26.713353266916585,1.8150390292327123,61.549380049344094,91.02493120057888,27.33223803377951,15.25804787324031,90.84212438633756,46.878020887622874,87.65818057259321,40.43825228938323,7.949081813075809,9.353151549960293,99.19921354562368,94.30444161271011,25.428994832232465,13.860421146068669,26.458210877215983,36.9669449125672,31.722121663709103,61.94356528230538,66.21202731569598,68.85652424959598,7.948871407205626,36.94532963894004,50.409961946026606,49.97189872847409,95.37464756520437,34.356580522132205,66.51057514049722,56.78884167880991,60.94701677013513,74.63204667639782,76.16090855425988,68.30330148580751,65.71445437951776,89.38381134545811,88.19627598841406,14.968606909142967,16.62192851862686,65.74338631883609,38.051271542329644,34.98579118474587,20.8178444693093,87.27269258197698,44.31027832981101,3.1360310529629953,4.897881786007996,98.78261391081674,84.46929638300975,53.22809233390806,62.70424983223324,26.91827761186516,67.5657692982678,1.6033500307157778,19.49024809654658,96.89133036831795,34.24392904896029,92.58233261796028,23.887329777451615,94.58289417315041,72.24424813225714,26.221727903822856,98.43784952034486,27.226087654332886,37.491602307616276,54.593742577034156,86.84997420438822,12.438498258868403,94.37608277478104,72.59928748464228,35.150664973139165,36.96866300148079,1.2973541791403975,56.06911778775239,3.8757872136325866,58.48948427616858,54.935760567973226,90.99813068593463,9.359260335301933,64.48804579209978,99.54714270104787,49.13523398075967,69.25047870367646,91.96231128413571,23.887650161166206,57.894876748308334,27.009930692126726,40.46650965482146,30.20765316752705,60.71780507445871,41.952383047139044,25.852642832041294,69.36396477397871,80.06780932798007,63.867344138463345,65.75356972645767,80.81920635432654,1.3012084583559846,91.25855584099521,57.285026400378314,39.111854409729965,95.29708470600825,58.58875642519475,74.10027602501702,5.089458980721739,39.21536705501808,7.418752343185542,70.32951912678438,58.32697304680939,40.37079034844607,84.78901904912264,54.94694629328054,7.952524292412411,38.160348596217695,76.6836057665969,69.54416071187165,61.61384588911217,35.61104267989958,98.97594420051897,12.16331646086931,56.24159677033448,50.829806433783254,59.06864087802811,25.986304588722355,95.61480682417286,83.03710836797887,25.78945254540026,64.17924993199084,97.86817010332712,95.32562625769305,82.7680252423855,17.82524681973692,78.41681317920225,73.09464034699518,11.170717765368055,41.80604644044872,19.6727886798043,82.57617273894327,38.03927701873653,34.093620086529775,66.42218442161666,6.453413257352114,61.48284548650022,21.869770288853218,5.870138007284186,88.25304062414452,50.04308112526061,50.32771551282077,91.25131322499004,15.318831802208555,58.51446113049158,62.49970044234263,98.67459531598676,97.60750630718127,22.638298595131378,8.358759952158968,84.27539299508761,46.053662886093605,27.440577506238462,2.8830628830721183,84.30063835087081,53.51668225078097,80.88035820154174,60.58813402453137,89.1554669956928,46.327991376147395,63.44697135740086,42.55953714527789,91.2964031961629,82.1189668466801,12.977219426250885,70.63390270902588,32.479325881961984,17.514939120413064,5.28150644590526,50.97436070649856,89.44441301039586,19.42943625166955,43.802306327319485,97.05188447531737,69.30635673164193,26.900648532810166,2.33197189559492,90.10048908045609,3.834211988979097,35.46276799359336,28.208770537879445,28.272322291053044,21.731962016681262,19.971604179504542,10.676205638207092,11.535503110566337,51.70338862599036,25.105442981741476,88.23928880146063,14.971719438642205,30.08375035788191,48.09978063231032,39.32776039728172,63.10860600377198,38.27909295671511,2.219402903644352,84.58467331257728,54.000276035325655,44.230224270216176,12.898573301907446,27.48270724601093,94.98212423109183,59.303437853172355,72.76272886171287,14.720635733516719,32.64751186537707,67.28552575090661,10.768220379502036,20.58373242091591,23.952195341125957,67.7592102472667,81.99733889802933,45.238729819121914,30.700872594652584,49.96006517796139,41.11822516449964,6.4845893428643,99.61556864435686,23.21058092383469,62.475259610748026,64.61682422723136,37.39862160249054,41.33383189009591,17.297955511699715,55.20164857492853,42.78482694201714,3.8101841876484244,48.38914612240024,37.713938306121996,71.61274986320538,59.12194152962055,52.31833879503473,45.97537312879141,43.860896943621384,1.3491037956229524,2.839307871689878,16.603661997419717,62.04474312578979,38.76247858643218,48.09891701421335,25.170005937905714,25.581091726820315,43.073741421334525,59.98810087213923,77.01146924978153,31.650859457160752,74.7868555167645,52.93279529958112,44.924523138217,62.57870409265382,92.27782851197178,93.55240301878392,84.36250545413661,14.981445002545335,62.347552806891684,93.10533606140693,62.20335255586578,19.45584017642118,4.22420587584601,49.73609368126457,53.66238640263907,41.81436264203951,29.741817881389075,76.72611973354773,74.72408185597354,41.606298622598324,1.0094477929776358,19.648638781124106,3.769300947925902,99.66076172414824,17.760131488173837,59.75524017207544,33.25007295249264,97.65737901834194,73.6934751893453,99.03344560892047,72.42761306934351,49.995792834145114,28.711234874943294,31.816619719018647,1.0884499972980133,0.13395008814615084,51.415380319389705,68.41953429004123,16.740451292420932,97.81948391191216,88.79050260523492,60.946120891032386,31.28771645503764,57.32555556299752,17.719924289724233,86.87635023395032,4.722759930233201,58.479253721521765,5.956690716311808,77.80387337877065,11.590760492748831,35.82606744847728,96.85831718499655,22.14552767552538,7.525175059100874,24.612659469661267,60.166003708033756,86.92335282621151,41.37204386693071,83.2888456422328,86.72756564643026,11.276910041386223,30.734391050232723,2.7331828356786714,16.240729632333572,45.390490769884416,81.90271068879554,91.44518397712507,44.656176570994724,57.37951144588619,19.25681361766747,38.152782243666714,52.91096118326561,94.54252101921115,51.31100192317576,93.6176799005859,15.360164653996321,44.755974568889755,82.68550261292242,56.99774199884284,60.66240728468807,30.060242595455744,11.282419645727138,52.57383318591998,74.40246535899291,20.806503167785408,22.10133961020928,25.19652285180374,69.71978368281961,84.20983664685735,24.497602848681698,36.27349221277356,20.32345084637854,0.8538643264226486,14.431506349180745,59.5180996051183,5.909067820732616,38.05387752244446,90.15266707712651,0.9271979746036663,45.131887243525604,86.82238487103126,54.21132674494146,61.578461417556376,73.43073679459653,92.88153077944071,30.798527351908067,26.82367461436712,31.141054478490304,28.03941272038052,47.59516664042106,70.49316791847824,51.15842989190905,34.39486548995793,35.48574202966943,8.74503983048639,62.03827860272851,19.934549099802933,45.14588109789388,59.0637036856757,1.352482285333212,18.96235343099323,90.0266730614917,57.97428487787838,34.3730034423203,41.94399505611241,90.08576955720444,27.967699442682914,20.99345234771691,56.4306701024308,41.07894959490965,46.553688514557315,43.24278330904229,60.895986339932705,35.10680248508926,27.339665559074746,0.766685939775702,58.44426853582895,93.18776396982273,53.593093466037786,22.628282194572847,19.07451663137657,83.37093245199192,13.777203301834062,88.86858932724147,96.31692997441735,93.2494758247556,93.86288868414576,11.9093821974804,47.93292386884208,11.13184259235318,23.828380336638222,63.57592172332854,22.696890147689196,32.56358075867539,93.33102276241819,9.89325694716754,6.545608306054107,28.011042671446653,42.322877160742514,77.05626483120942,16.812499581831865,17.53025388203353,89.6744723875998,35.961161500478035,53.350327128724714,0.7532502319660517,5.413578545546471,69.60342864060661,83.02918446783976,34.06542964690998,68.24574233224132,91.1619092534456,68.9091510671975,37.74820357250067,1.7271953326598366,50.08042335516817,12.661822055118964,24.435434329905725,48.96505794840943,44.77552240398581,76.38908260050455,50.824168054184284,49.679945214781085,58.289986030944455,34.249650770529925,68.613757295345,28.17266505936068,92.93818686338334,77.67404926448775,70.45512701240634,61.849642949187036,60.965201111186914,37.16202215884087,46.164477708861625,32.33195229417527,21.572944331435828,61.02099623781064,27.310406878741023,5.965659208374163,95.84934667838223,97.57568532246762,84.06923063720878,45.67325567475535,63.35509155076656,53.038683265127084,45.0228244604045,79.26763698358462,8.99323279097236,99.08319841665944,64.87161067786693,27.411302969207608,84.0493474160427,57.769766522520364,64.81970257989413,12.489229188042849,72.73123450004869,14.91052610325012,94.18687390538413,1.830508251481,44.99819342466017,68.59520176272001,7.319386593424371,52.61531736483527,1.3521662527917533,88.47355052397637,82.46871747996863,71.42711202297679,3.393154259329456,69.71147810002141,82.12878331908419,31.410107385579387,20.167740141896672,95.86164682635491,37.20492440039703,39.64670319701112,6.327649759032761,90.44376959858049,30.76898991129796,3.393708681682195,50.965413065542386,20.77917490527995,39.932672436028206,46.527718563341224,68.16857979129483,82.77632439648669,58.63945351323565,3.3310042638373893,41.23354297453344,92.81164930607062,48.07997889983757,9.296463642382502,91.50253665409429,70.98445747417031,18.767849186709807,48.15189229938517,64.53687327333168,11.855841672349076,92.19968753147737,57.212377057633454,45.99653493839562,50.06364862804739,39.92294867033379,70.5084689904238,91.96874654076052,40.59746701350201,72.90579801727091,8.585118491497312,69.02317367178496,65.1399614681595,8.476805343960114,8.53252811112345,87.04012477122906,88.19218532178496,36.881582349478535,36.95245733972129,50.75764539769412,65.00774756102977,16.41205295426228,41.093247666182144,90.76839845924394,33.86659562853339,63.279456118302846,51.35234503961714,4.862650965230952,50.80828308184956,54.91718606684125,33.89886101039793,83.31486522338245,48.82517677127686,85.04567518125866,36.770587554984246,65.48960638274775,93.12650922375654,73.99351229897383,3.5687281397388637,48.00432772627329,67.29588518080874,88.49860837682334,0.41472680406352547,46.09495476237443,24.774383181394022,63.77165638800635,69.09721310600642,87.31701276846962,70.44863002669148,95.03437049933989,80.09907676814095,54.23657696014016,82.57845929981981,10.194261232364866,62.70919827544535,6.542710454945722,19.425381268280116,72.15149115892842,54.604089825118166,85.98052043902419,16.662195046638818,86.77457166674627,12.718400604731118,21.378025170832217,88.23368238696764,80.082240841218,44.139012391253196,29.51073190917709,54.71674774411303,67.60839884222378,94.93683752315542,78.74431713287936,3.868816546097875,65.11566328451951,9.195539338524206,83.82159113448283,72.39275936175802,23.604008379013287,66.80297745213008,55.21311844840905,38.17352251147883,63.54353478549203,28.746058202683155,55.05781959014245,78.1230509107882,20.403401887431915,27.55009267063402,86.11046752593107,54.759219662048906,8.26394781583668,80.10360545019162,89.82355331378199,10.519123546313548,80.03142010655412,47.7552455113468,92.50234661331257,13.060450466803141,0.1281177415497936,3.797255550892331,73.87717533939558,85.948253733023,78.14443387525064,34.847429281137224,85.512375298767,5.594244586488928,65.24078888771066,85.20820486805054,63.68814619073698,63.13758779335015,35.700299895034185,16.15696732898988,49.44780786747953,84.71416836698266,11.30716516439586,99.6267599080528,32.760116644378655,37.01170002439231,4.248380761360182,61.49466690212678,54.237085145045086,62.03742425431138,34.881367197593164,34.288920485478954,13.971693431201526,57.902823388679906,82.1282689585098,6.213318620663899,16.25234046642391,34.00879138101682,90.76401035097338,7.828587575779022,66.97441837661849,26.71804454680369,91.3142765917792,29.458463922850196,56.89068847874632,9.103189172350124,70.66107488276813,50.20453728173467,76.09013358350371,76.8317194856308,44.88161822808237,89.0111847264343,25.222104168666924,18.75878674479078,28.165290016339306,37.227794283018476,10.896981332837841,26.757995133335942,78.19510350524041,73.26961055719363,41.8470868169435,23.53208707898038,60.60633523972281,91.88712313677486,98.91066541994856,86.17719511983366,50.2487775431548,14.000172625111329,54.276936983677885,14.646212878148091,38.70098908798312,67.78655823022315,44.66301063016797,55.23262896689677,82.29081067301274,12.36741421385431,28.716950804409723,88.65467925191322,99.73545990027087,45.415811844104915,80.85802551295487,17.780419232158017,98.58375177688981,20.088742133824145,0.5671994203997666,58.51138294581668,46.463751291560285,23.569145901086397,20.197696715912894,10.85368985620544,89.56101113239417,96.56915746853335,19.1136682519678,91.78390371418124,64.0782166510543,43.513788627937885,45.09486831418681,31.470612272894762,31.740173852925867,98.83749579586029,56.74397188983635,84.71739514796114,67.81596782260482,56.95552178446713,80.03043290004773,49.22208251654292,56.98045042688397,50.79616121569388,88.47020244115312,70.85533390803617,76.26073308000163,78.8740729878175,72.76198229027463,32.646542947151815,19.228760421996995,4.387654290072818,32.998054987920845,75.35866072719325,40.23180309722206,34.79472645238039,28.532900720917663,4.098914108154594,68.83012591117259,37.17240293753314,84.85343208084969,68.80238646241052,36.261194629139005,66.20011372169868,0.7622864580789868,39.61768216320297,39.66907776218827,19.79097842665447,19.98339710391558,12.16541056850301,64.98797183339528,27.773916461526472,60.04067008175261,38.70296838003844,22.543558346749982,93.0669296388427,7.4511827738182435,87.7063963478519,18.45218712540977,76.85319980309345,25.504145420447134,81.51025556013506,79.36127438759952,84.20153650309973,22.01494939334374,56.05391230279226,86.935483697178,45.63190317908743,28.965688805960355,21.946614401196552,85.65506972908655,80.64048221641428,48.827147800867245,51.50519748978524,28.905785565858967,49.21055382139134,24.474777183805386,46.954004135611015,90.35231181325378,74.21046457905024,9.078159882906034,74.5191234003991,94.12720783756433,31.379931057874067,51.83821847775685,43.679430626247175,96.07205378548498,70.33016036907159,68.89527014079894,71.14222862852662,30.593214743632213,86.16277493650321,2.82641515505897,10.194183482288999,49.644010302224395,70.92208436420393,86.93084348719586,62.23502124471507,26.82472439040976,68.91779450248937,67.2378645027275,43.158131593782166,27.788208694894358,18.538498167602093,58.09855198092588,41.41739136164189,31.1945465095514,5.554693137058486,57.38069837213713,91.35536048290969,84.84207506214398,23.833259095980164,69.21302530647729,25.685587168948953,65.20930201615117,69.4099991218721,7.219506419251265,4.143521113108973,91.8957351523284,6.47812467949882,93.9649804281639,23.807666863695808,25.138545639679844,2.9511389268284005,94.8987105055118,55.340957281063574,14.733688916997245,66.7964846491442,49.62084487526551,4.316054395086189,24.46467536584859,5.41189772002264,15.67166391627196,3.6387835357173937,16.832879611833352,62.63982509790292,75.43507375221164,80.26358038478098,64.08459625251865,1.6595182258057561,77.2546881566608,58.02822013365635,96.18609999874825,22.66910245546393,68.02526681200686,54.2152991792646,9.77060622639826,79.19767259479481,42.411478000215695,71.3074698688829,9.225433765726843,98.78460475108291,21.29992325603701,67.830498235428,6.778605058528853,5.114739123678602,45.12687878786282,5.423774846683416,93.06910037466363,42.773509040046434,45.71068045455458,24.028574984505713,56.4311594360618,17.344033148663318,83.58590758407227,42.944997553850975,82.49553983120705,13.757408595616916,53.33092384111866,60.12908640454994,43.03904469330389,63.38583380525286,47.83621527097173,78.18276752010857,84.254720928438,90.53903124538508,86.32897915773871,20.546691140836458,25.24617728051618,69.14490345664768,50.29000927298788,37.63791769875381,65.59816978192055,17.566090098701448,16.705872327829695,68.90055540489392,71.11913073727145,99.08338861281017,24.790064486806575,87.5353246434993,61.5980153275933,69.8981867900529,43.92565096240331,79.60544154275836,68.14906699213577,6.1278344548409525,31.248070174255293,4.590283115670147,29.259338824554526,99.43362622997819,91.00656897094804,11.038542155553388,65.21985145031411,58.28713742986867,14.864625884950101,56.10729846640968,0.2982630777273898,44.19267960667196,52.513339891144774,44.17140785900552,24.80959447071661,89.11158559505262,70.86236306713502,0.2680974452978879,14.837618176475642,18.54356185581585,46.52461605594021,76.93022656650587,26.315767742189024,70.42764512387795,63.98224436812336,42.04724386704203,88.61681723458774,47.468195179449935,24.717718834891556,82.45003021447856,67.00627893191111,66.56824447642934,86.33935279812209,1.4123535781175867,35.6200586320339,80.17724853848071,49.52738137877758,72.22691521714549,1.1428161558996952,72.26118306684855,14.640449221465513,31.664439463527906,21.463376396219424,43.870060966959116,10.299588142474148,23.218318822842875,2.7200400301159444,13.20333959388308,72.94051735734311,72.79996318113152,78.58809860630451,68.21131381278389,67.00173529991703,90.86925914992877,58.70263310246454,2.159689044088553,42.032860944066144,17.598819722345972,22.346879764846108,29.383061714027015,72.46419875443932,80.63329638999929,88.70264784317816,1.0842851882402416,78.54781604258815,70.1527631232444,97.23650037731485,9.060621101379207,47.76690164890699,6.174915265202518,99.17710356683813,70.06890133184717,14.696662285213257,41.2952563734295,28.89659857998883,1.3295716653551004,69.21815081580151,2.407427267670037,18.929850778752378,70.51502626110445,67.68546428422297,48.095555041600576,42.6722021405046,31.13809957827316,26.511694851049615,16.938998885338997,52.41120982913326,2.9579297393065196,28.988982513521567,70.89852526342348,61.67551296971831,51.465987581047266,1.5033976706388175,9.574122667166451,42.82145102582773,69.57089308240026,43.2458547910506,44.438052992295496,39.89448325859654,14.130322808391515,32.3230280451172,27.086067566670724,25.017613929474315,66.30309367922699,34.03263612856643,98.7445024543077,43.375509269467905,9.921102456154763,39.327865803217634,90.57093730532752,22.67887378437924,54.85669954877643,37.579169577751216,59.757663764195456,39.9149905554257,50.164562548941035,59.90989650199715,49.82587033678373,87.34005343923486,97.48419459208804,5.065556674757287,96.93796438668964,41.85092033017844,89.80596835565436,20.102987903988144,78.97785991036739,72.32742295470143,12.898349520951847,2.817369777462242,67.4350582369817,12.323222023567704,89.5068449643966,34.989311095073596,91.20327007141628,79.61079031996245,48.29954849412488,84.10871769766524,2.564256347236571,58.58619238403392,90.20909622250757,89.18896400359587,29.962735565401854,49.56475719493094,49.56791943826233,30.158962923002996,16.984093676087053,19.524577254662347,55.43062631232692,49.0295136355155,11.93329302210081,69.82337747679304,74.9828889899467,4.203067699356888,48.49240287032782,89.87330101663414,20.12903254260412,28.832278526992518,99.00605733775254,71.63514723962689,57.61973196166601,57.76468465772864,57.16049261200639,70.2807962816728,93.83413694608181,97.69468125664797,70.64640806683356,64.44255593933292,87.62288699064419,43.115667167719685,35.152082057658184,59.87272908042131,43.0242834446489,70.2806789254384,56.97993054013727,52.97247073108784,85.37242467358827,82.73377850544512,29.76714541191332,58.01159494070925,44.568366888643496,87.31608652737157,95.70952082979308,84.42232350902258,94.49435022775965,65.6532466539508,67.05044732101601,16.105607620219963,22.333377043947955,81.96234248806424,92.13768409337325,17.92506939992543,2.550124599210579,10.545720161340732,3.2326500564653804,55.099772610846145,95.7519205594367,66.21173886047583,85.5789990420968,54.81512432401479,53.45016442217009,67.11463931234616,62.10837939636688,55.16971498733396,3.2314321284022007,62.599515680046835,46.36321185267216,43.721352531477244,42.82571498030464,98.70394173178106,22.033828560125322,60.22901204603725,77.7691816550177,96.65191375340474,60.076135733183456,35.563418651375436,43.10330105961141,95.23993322369935,94.00918728602346,73.14584201507958,12.138355528172362,69.45804985874943,74.44286153645545,64.44968528152619,23.34422057952278,85.1747578066826,21.015978205869512,88.04168734801027,85.05244718680984,22.72781634730133,2.405612742450236,73.21353308099204,24.720795629013224,15.642547274912811,28.755649446794973,17.695729590214516,41.343895037144684,89.0724803517774,21.522450612916,33.786174637290365,53.52537874166076,11.557006623911581,38.89737519976423,43.63584578044748,70.21208277850869,28.253939931328965,22.68448821659409,6.147351968474424,97.3507345769803,67.51536438632895,57.74800084662044,79.09400729487609,53.184064249954076,40.68857282107825,21.017143080670674,33.606885028882814,83.44651111780601,52.1776023979851,48.90491802792168,18.311102118202882,26.567369087274162,48.75509518565847,5.297716865087021,49.04996486642303,21.8377038514604,8.705360940026685,8.602594330298196,11.889849673433972,56.570770086462105,32.35967550936891,31.106307805927223,17.500581599078057,33.77653556368354,66.55824190865395,89.36412260511797,54.48260750097707,2.199199857856249,35.30941823062405,48.715480168196535,32.00017166389139,88.08680645153163,32.654034650594134,14.793107118804262,99.55800470114839,61.734731876011494,64.3983895245087,66.13177243113572,41.723563604544424,2.7350949878169106,35.777783388856136,30.903347909690005,76.35866143515956,63.54948994118559,56.440233916795776,84.66561410290977,95.5859072684698,77.47190432681398,86.6656971752922,58.53762323175341,33.30070942201101,28.25786720441411,81.51918432747416,1.4190721974602583,8.269919531272185,24.64709924618247,98.8449556291404,77.16175670287419,7.921703271529457,1.4342873298695658,20.529337453207695,72.63788175834286,73.45178496646434,56.802435352454125,21.147268241572014,21.004342393375907,36.5147883311843,17.551960247907207,16.8857818511694,23.444947458639486,47.81678192947552,78.71286391195024,70.43298713582182,83.79483201804004,21.835929227426497,23.470124902229685,41.390261919178194,29.048000582720967,27.202322347403086,24.623338907255622,68.20907335354644,59.126042503754114,69.85224118574973,31.899216665040576,24.900428423414635,76.32212615973492,34.23087183721015,43.27403119701019,95.5678126695367,90.1806448658642,5.146213296189717,53.764338171382555,46.62202574303915,41.11825354061243,21.08484266087316,37.05885362317507,58.225614461750105,53.69524196739434,27.459838328097273,41.644879764823806,16.280626802462763,21.751573401415815,37.66639152585915,38.03017237952936,99.07886645127172,6.53026337661704,7.229787769511775,93.23156389588854,28.68005711027348,45.02850669922287,34.19726053328539,88.84410827190047,60.06065537166997,13.220997917661116,8.032939354484592,24.677934447475668,83.84165427313998,92.49866706876512,5.812909980849845,64.24069091824366,19.90270769324205,76.29595147482739,71.27438842766836,29.119341276081766,65.28940713703221,49.77007326158145,19.610391513014292,33.05318715742702,71.58833198953927,26.85980258572367,46.89582546614995,64.89371891885702,86.94788733866856,87.5612502615905,49.86075782844976,99.38783363710341,32.38015462987895,2.752515158352886,53.262331084836376,11.963813586012794,42.37799253480618,48.877569915242056,34.46769533229798,20.035967769480745,38.704834920604206,64.1864082718311,0.4139297234903139,8.92216852311366,20.696284754275307,19.88965241374484,41.40047910665524,72.51661193952879,0.2288841756633353,55.683954926201274,28.116158051996898,72.4727060370441,83.38332388109421,46.93845844872231,59.49503221456827,50.65844527580524,50.380966412308226,74.83690574024081,78.16837405133936,45.67568722772406,56.21400884620438,72.70759472050837,98.7049301332574,80.44531647455393,64.25077836943075,35.257040049820674,88.37618927207241,42.343241131345074,78.84629393888864,64.08581167086923,37.28295605753662,72.01523438827981,45.468241824363545,58.367738265353985,4.3210687914681305,25.94231564205748,94.29146371583255,22.22581808771831,93.26624758674461,27.320735295764422,99.61973779011342,0.19676771310623842,31.80153323668309,3.4307209323918175,14.129526340792287,40.86063024497084,62.78937812183648,97.13146461459135,79.01959310296151,33.4209975041031,96.72071965447378,51.00798320004182,65.06230800985398,57.937247233862685,9.517316715263902,7.404067097411593,95.11405661251332,62.01910532685015,91.77418149542022,40.78928553223599,15.275484712942111,26.15817777140602,97.18758549371114,49.523844876631806,88.24143546830611,33.280834111593926,46.95023219612059,12.790029858268193,81.96063524294753,56.84309404998496,89.43692868705573,4.863481323877982,6.036945628629031,25.127183162255918,92.69330800706199,83.50562893589596,16.19885303618154,15.38248162543896,2.474301325554673,83.08277863305217,49.81019204948306,27.445039305285977,98.37684637604868,46.135349449784016,92.85159322774412,66.85014483471748,52.70677190995101,62.37685807360979,90.58924439663842,26.9750403733921,37.158118611610945,70.97734128058157,58.11466899797316,69.54626712774952,99.36864872806107,6.296837167060665,13.357695641545153,96.0129634495056,46.3267261814038,32.07550674093213,37.30553618069796,93.09173333570841,71.25407252591985,48.02982640238545,51.433887505613804,52.807925898034924,12.596753387746318,65.96263211240424,38.46016945719112,46.58007806029482,36.77251238513013,79.93897763842453,75.39808467482992,0.5903660081735929,96.13697100083954,17.906253297447783,7.197143105373116,64.26562077222098,25.58337166229223,8.003721417369448,23.01570375199775,99.6528878995602,40.93680497810573,20.30250249927802,69.10526775473778,12.44806244316542,27.01016655582177,94.46853847121479,93.62655719719602,86.94323598705873,9.293768574979577,46.216682684892916,64.451177151313,57.05153178673945,60.76988686314865,58.39262236513322,65.58971851082718,44.834193439967606,37.57448907176252,92.39087458309612,32.39764576680545,46.52227232519552,42.42253860247756,5.592754930599908,94.65458483788608,46.43994951840797,23.894007541205564,32.62251188369216,20.252263235882552,1.4074378884976646,93.26407123372195,92.2367443060484,33.621036095337786,96.07621798564654,47.36056776853985,7.286818338997736,66.0383482441882,82.99479450468604,38.877592326166464,12.672897117692406,41.72814732068131,7.55249990419985,78.70871605017771,84.59323882555032,59.55025876491868,90.35313785889815,47.849308947569966,45.849181710889866,84.81602842609085,32.6322411292581,48.38609358708488,54.472628870094056,47.83198949589502,68.80871952624031,46.00914817052192,12.853299333431313,64.91271728437236,12.59368961569215,53.33987603518218,53.97816700531792,21.8193388362117,98.44222833274465,49.84005002298243,8.347186480688695,32.67163670405705,27.78088440319251,91.10789095891298,10.005887530346492,61.920768914644455,4.3601993683864855,29.197056466828077,41.683942542137146,35.46620009018346,9.93512544081242,70.04050217093771,90.46771921088231,67.7144715475936,25.202222932893804,99.92316093472616,49.98125454320987,60.774066826137066,73.50913612287405,39.57575905207096,56.333978652934725,72.30850603566505,33.922703697559,32.64247391067185,85.74725887915078,91.40898315396818,32.37825097727293,14.594668958778179,75.98959505697292,43.7179010266678,17.88190190802885,98.83475389456984,1.981555461992457,18.408179419136562,57.53454505106666,94.24037302337726,87.94691822008703,91.68678449962985,85.14970056459433,48.819253066578625,89.78772642152356,70.77511284900454,81.8766374441757,48.400377618414815,46.96593950996088,57.93857751583806,82.00547825964392,57.24768558358865,34.26221182314465,48.68764731057801,62.24511699198372,80.98715770826378,23.66954227146545,16.163718943805872,12.780285189385998,95.33873646369506,90.94234255864706,53.70414762136839,92.58054599542638,7.551079060972111,75.02127170837096,39.17813599309776,74.29306859510315,35.52742891792754,84.9844046468241,82.6116202494008,35.56629147254269,13.303935939129385,75.31322374278547,22.080009242862342,17.490017763245604,22.413261419472853,44.02973837027866,53.48058832380707,76.17113166131082,31.034485110451993,28.47257586441424,66.3736471921427,18.994027590031614,94.5247325542293,74.89189377190536,66.88247885681075,43.73841373656071,73.66640918521375,72.46435280989127,37.86511380281823,37.54834600670627,95.44651571973641,38.90032746868529,93.9180218714833,59.684259594406285,20.819287132757648,70.04332869905735,0.38379021341543584,90.76399559961493,10.931351041194027,0.5759574118227806,94.10458059200757,96.82510195638415,67.93279358522042,24.34324496087308,65.36725190176702,71.86057082866539,6.426471992096405,58.68463800957478,50.326928997021156,85.77783190996438,27.40075598534143,40.47394642336215,68.09205181922185,1.1517292575792037,54.715176008539466,99.4196991173454,24.335801699103897,41.294951487876496,25.587166986960575,20.496887409803744,75.01755231519417,43.80485120002713,99.70769520072909,68.72783444137916,18.903598980048464,24.339846279099408,28.94084250893283,77.83648484631115,51.00037387411215,35.718008548724036,33.237999075784295,46.94295102373991,76.89614539417626,64.92531539727855,9.034965827773378,48.93653526275049,59.38427260266096,8.274190962924688,73.2863275048586,70.6491673466966,55.438660277058396,18.006326958767627,75.47587107053916,0.05866394602753733,53.74627397556006,82.42851683612624,65.8457605154933,26.939751191500083,12.300461531364116,58.81159330621284,4.866035714589234,80.53820534249125,86.5625560660305,27.170513703780475,64.1668789055132,35.9029415439161,5.416949194600019,76.68191720471049,39.312435057644365,30.10628908511207,52.34242162419854,46.67078462270954,0.12087936474409755,75.1640981093152,55.859470315435985,31.284649094705784,85.49202189163144,73.20340165168562,88.20015807057896,77.98095882066517,74.13492746638273,42.95586015409742,7.219173124782019,68.00750446521158,66.38406248403464,73.60440717620543,64.70298126235969,65.89680926823553,22.75433354491694,45.373803493119794,31.325941974527883,65.67946874685794,49.46326688895164,30.627938543063628,46.40939411384333,67.00869415779887,69.09695569073705,42.01795812629874,74.86055226358637,66.34523540638948,65.0277316049509,87.72966556869856,90.98873351402813,94.59241357741234,99.9154773129264,99.76432701522694,46.96710344249341,53.10623815034504,74.7062276149025,87.70287313150206,78.50306487486138,88.57720668715588,86.53526240879026,72.84274994490656,45.734217380161255,41.80398074920456,38.40340624164791,59.76812619118408,47.90914011991691,1.6509154619772204,83.35284337795275,7.793646376597485,60.774208163105904,16.019180620897256,28.278904340238174,27.43317997761333,36.833263738655575,64.43093383736422,12.661686347948164,4.401653419040374,88.13749857736902,68.20730308983613,48.61190148165002,70.44491052069682,31.39128453272485,74.00703706686666,59.88407456863823,68.1019416778607,61.509632181746895,46.74346960529269,17.605466881496866,77.57471218055942,72.90459505663773,54.77300698627893,69.67370014045238,70.88094282500361,72.10741687672694,83.77177259527923,91.48114034914661,24.259624348066524,24.259989564223595,31.57463986880501,11.70996719763041,89.32069158108028,87.12325922813926,61.22816826927184,92.30697792660766,38.10104268737754,50.87406108599303,65.53382923995092,99.22717976955255,76.13020915530052,87.59269476230658,1.0530294571282406,12.494342347878407,45.19186429375921,64.47225153742137,5.350924023054215,27.401801776707345,52.74448929826411,44.3282819805091,58.52819945769141,97.21363629467085,81.08823967347921,30.739502054959356,32.13702239514758,98.42486426782692,66.37357627338693,73.06944475750011,8.614274388040588,16.770554578637864,58.98150910435059,84.38643635713734,73.06272742864265,60.81676001650802,8.884177551993321,72.99131580549114,12.447418278463196,92.50967231132273,58.266779566385495,0.005844172603353126,81.62923920312647,87.65314146064122,54.593606905211175,6.783156032284399,10.850383137931342,76.132862022351,66.1635825364281,28.62566766694338,48.00633853924676,30.05597993343,9.592657657357384,95.00187540816944,57.20094322577103,82.62115119497699,34.55581489526366,59.47823749183285,28.936958252163926,22.389677320671808,68.08106995025219,47.422094384776514,9.566162061319272,25.661006219340898,88.85118485208652,75.75388603669319,90.67076686240709,49.28919500436145,64.60337561076088,16.000193700258023,0.7261281216097148,66.08401265086583,18.02065875263221,71.39566138902164,71.10010677819851,29.38043004305726,81.33192290922491,91.25899606291148,71.02196408084929,83.25640462255302,13.68148581277191,77.87834431775241,65.75130610511293,0.8022095224717307,4.832708092011718,78.51892434683492,55.9422126279899,62.97962218909519,82.05902582589879,76.3882112164728,60.50891996065908,13.863689221184394,30.79327857144446,16.88031078436998,6.54141838493969,14.67110859319909,42.10680315137424,2.6007193533186923,71.90556729702477,55.572571660509574,25.130070843754705,89.88767841461218,96.83782347957887,18.69440728642179,83.65504464740576,50.041612664328916,27.802398820607323,94.41861887365012,99.61582566697975,10.051624751670118,54.157043709361034,86.82243487611161,52.05356784310566,68.60824387272226,38.246848950845724,65.20166671300856,93.97625235462122,44.78993737673756,83.64728416596994,11.297901622247474,43.056619185464264]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_negative.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_negative.json new file mode 100644 index 000000000000..088539ff3a7b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_negative.json @@ -0,0 +1 @@ +{"expected":[-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0],"x":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0],"y":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json new file mode 100644 index 000000000000..2a87731a50ff --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json @@ -0,0 +1 @@ +{"expected":[-0.0,-0.35735735,-0.7237237,-0.8468468,-0.47447446,-0.7747748,-0.24324325,-0.21621622,-0.6936937,-1.6756756,-1.3213214,-1.3033034,-1.6216216,-0.18318318,-1.09009,-0.072072074,-1.5675676,-0.96997,-0.5405405,-0.2792793,-0.18618618,-0.26126125,-0.5045045,-0.9159159,-1.4954954,-2.2432432,-3.1591592,-0.972973,-2.1411412,-0.039039038,-1.4594594,-3.048048,-1.1141142,-2.9549549,-1.1051052,-3.198198,-1.4324324,-3.7777777,-2.096096,-0.4144144,-3.096096,-1.4984984,-4.4324327,-2.9189188,-1.4054054,-4.675676,-3.2462463,-1.8168168,-0.3873874,-4.0780783,-2.7327328,-1.3873874,-0.042042043,-4.153153,-2.891892,-1.6306306,-0.36936936,-4.900901,-3.7237236,-2.5465465,-1.3693694,-0.1921922,-5.228228,-4.135135,-3.042042,-1.948949,-0.8558559,-6.396396,-5.3873873,-4.3783784,-3.3693693,-2.3603604,-1.3513514,-0.34234235,-6.5555553,-5.6306305,-4.7057056,-3.7807808,-2.855856,-1.930931,-1.006006,-0.08108108,-7.051051,-6.2102103,-5.3693695,-4.5285287,-3.6876876,-2.8468468,-2.006006,-1.1651652,-0.3243243,-8.135135,-7.3783784,-6.6216216,-5.864865,-5.108108,-4.3513513,-3.5945945,-2.837838,-2.0810812,-1.3243244,-0.5675676,-9.387387,-8.714715,-8.042042,-7.3693695,-6.6966968,-6.024024,-5.3513513,-4.6786785,-4.0060062,-3.3333333,-2.6606607,-1.987988,-1.3153154,-0.6426426,-10.723723,-10.135135,-9.546547,-8.957958,-8.3693695,-7.780781,-7.192192,-6.603604,-6.015015,-5.4264264,-4.8378377,-4.2492495,-3.6606607,-3.072072,-2.4834836,-1.8948948,-1.3063064,-0.7177177,-0.12912913,-11.8918915,-11.387387,-10.882883,-10.378378,-9.873874,-9.3693695,-8.864865,-8.36036,-7.855856,-7.3513513,-6.846847,-6.3423424,-5.8378377,-5.3333335,-4.828829,-4.324324,-3.81982,-3.3153152,-2.8108108,-2.3063064,-1.8018018,-1.2972972,-0.7927928,-0.2882883,-14.153153,-13.732733,-13.312312,-12.8918915,-12.471472,-12.051051,-11.6306305,-11.21021,-10.78979,-10.3693695,-9.948949,-9.528528,-9.1081085,-8.687688,-8.267267,-7.846847,-7.4264264,-7.0060062,-6.5855856,-6.165165,-5.744745,-5.324324,-4.903904,-4.4834833,-4.063063,-3.6426427,-3.2222223,-2.801802,-2.3813813,-1.960961,-1.5405406,-1.1201202,-0.6996997,-0.2792793,-17.087088,-16.750751,-16.414415,-16.078077,-15.741742,-15.405405,-15.069069,-14.732733,-14.396397,-14.0600605,-13.723723,-13.387387,-13.051051,-12.714715,-12.378378,-12.042042,-11.705706,-11.3693695,-11.033033,-10.696696,-10.36036,-10.024024,-9.687688,-9.351352,-9.015015,-8.6786785,-8.342342,-8.006006,-7.6696696,-7.3333335,-6.996997,-6.6606607,-6.324324,-5.987988,-5.651652,-5.3153152,-4.978979,-4.6426425,-4.3063064,-3.96997,-3.6336336,-3.2972972,-2.9609609,-2.6246247,-2.2882884,-1.951952,-1.6156156,-1.2792792,-0.9429429,-0.6066066,-0.27027026,-21.45045,-21.198198,-20.945946,-20.693693,-20.44144,-20.18919,-19.936937,-19.684685,-19.432432,-19.18018,-18.927927,-18.675676,-18.423424,-18.171171,-17.918919,-17.666666,-17.414415,-17.162163,-16.90991,-16.657658,-16.405405,-16.153152,-15.900901,-15.648648,-15.396397,-15.144144,-14.8918915,-14.63964,-14.387387,-14.135135,-13.882883,-13.6306305,-13.378378,-13.126126,-12.873874,-12.621622,-12.3693695,-12.117117,-11.864865,-11.612613,-11.36036,-11.1081085,-10.855856,-10.603603,-10.351352,-10.099099,-9.846847,-9.594595,-9.342342,-9.09009,-8.837838,-8.585586,-8.333333,-8.081081,-7.828829,-7.5765767,-7.324324,-7.072072,-6.81982,-6.5675673,-6.3153152,-6.063063,-5.810811,-5.5585585,-5.3063064,-5.0540543,-4.8018017,-4.5495496,-4.2972975,-4.045045,-3.7927928,-3.5405405,-3.2882884,-3.036036,-2.7837837,-2.5315316,-2.2792792,-2.0270271,-1.7747748,-1.5225226,-1.2702702,-1.018018,-0.7657658,-0.5135135,-0.26126125,-0.009009009,-28.504505,-28.336336,-28.168169,-28.0,-27.831831,-27.663664,-27.495495,-27.327328,-27.159159,-26.990992,-26.822823,-26.654655,-26.486486,-26.318317,-26.15015,-25.981981,-25.813814,-25.645645,-25.477478,-25.309309,-25.141142,-24.972973,-24.804806,-24.636637,-24.468468,-24.3003,-24.132132,-23.963964,-23.795795,-23.627628,-23.45946,-23.291292,-23.123123,-22.954954,-22.786787,-22.618618,-22.45045,-22.282282,-22.114115,-21.945946,-21.777779,-21.60961,-21.44144,-21.273273,-21.105104,-20.936937,-20.768768,-20.600601,-20.432432,-20.264265,-20.096096,-19.927927,-19.75976,-19.59159,-19.423424,-19.255255,-19.087088,-18.918919,-18.750751,-18.582582,-18.414415,-18.246246,-18.078077,-17.90991,-17.741741,-17.573574,-17.405405,-17.237238,-17.069069,-16.900902,-16.732733,-16.564564,-16.396397,-16.228228,-16.06006,-15.8918915,-15.723723,-15.555555,-15.387387,-15.219219,-15.051051,-14.882883,-14.714715,-14.546547,-14.378378,-14.21021,-14.042042,-13.873874,-13.705706,-13.537538,-13.3693695,-13.201201,-13.033033,-12.864865,-12.696696,-12.528528,-12.36036,-12.192192,-12.024024,-11.855856,-11.687688,-11.51952,-11.351352,-11.183183,-11.015015,-10.846847,-10.6786785,-10.51051,-10.342342,-10.174174,-10.006006,-9.837838,-9.66967,-9.501501,-9.333333,-9.165165,-8.996997,-8.828829,-8.660661,-8.492493,-8.324325,-8.156157,-7.987988,-7.81982,-7.651652,-7.4834833,-7.3153152,-7.147147,-6.978979,-6.810811,-6.6426425,-6.4744744,-6.3063064,-6.1381383,-5.9699697,-5.8018017,-5.6336336,-5.4654655,-5.2972975,-5.129129,-4.960961,-4.792793,-4.6246247,-4.4564567,-4.288288,-4.12012,-3.951952,-3.7837837,-3.6156156,-3.4474475,-3.2792792,-3.1111112,-2.9429429,-2.7747748,-2.6066067,-2.4384384,-2.2702703,-2.102102,-1.933934,-1.7657658,-1.5975976,-1.4294294,-1.2612612,-1.093093,-0.9249249,-0.7567568,-0.5885886,-0.4204204,-0.25225225,-0.084084086,-42.95796,-42.873875,-42.78979,-42.705708,-42.62162,-42.537537,-42.453453,-42.36937,-42.285286,-42.201202,-42.11712,-42.03303,-41.948948,-41.864864,-41.78078,-41.696697,-41.612614,-41.52853,-41.444443,-41.36036,-41.276276,-41.192192,-41.10811,-41.024025,-40.93994,-40.855854,-40.77177,-40.687687,-40.603603,-40.51952,-40.435436,-40.351353,-40.26727,-40.18318,-40.0991,-40.015015,-39.93093,-39.846848,-39.762764,-39.67868,-39.594593,-39.51051,-39.426426,-39.342342,-39.25826,-39.174175,-39.09009,-39.006004,-38.92192,-38.837837,-38.753754,-38.66967,-38.585587,-38.501503,-38.417416,-38.333332,-38.24925,-38.165165,-38.08108,-37.996998,-37.912914,-37.82883,-37.744743,-37.66066,-37.576576,-37.492493,-37.40841,-37.324326,-37.240242,-37.156155,-37.07207,-36.987988,-36.903904,-36.81982,-36.735737,-36.651653,-36.567566,-36.483482,-36.3994,-36.315315,-36.23123,-36.14715,-36.063065,-35.978977,-35.894894,-35.81081,-35.726727,-35.642643,-35.55856,-35.474476,-35.39039,-35.306305,-35.22222,-35.138138,-35.054054,-34.96997,-34.885887,-34.801804,-34.717716,-34.633633,-34.54955,-34.465466,-34.381382,-34.2973,-34.213215,-34.129128,-34.045044,-33.96096,-33.876877,-33.792793,-33.70871,-33.624626,-33.54054,-33.456455,-33.37237,-33.28829,-33.204205,-33.12012,-33.036037,-32.95195,-32.867867,-32.783783,-32.6997,-32.615616,-32.531532,-32.44745,-32.363365,-32.279278,-32.195194,-32.11111,-32.027027,-31.942944,-31.858858,-31.774775,-31.690691,-31.606607,-31.522522,-31.438438,-31.354355,-31.27027,-31.186186,-31.102102,-31.018019,-30.933933,-30.84985,-30.765766,-30.681683,-30.597597,-30.513514,-30.42943,-30.345345,-30.261261,-30.177177,-30.093094,-30.009008,-29.924925,-29.840841,-29.756756,-29.672672,-29.588589,-29.504505,-29.42042,-29.336336,-29.252253,-29.168169,-29.084084,-29.0,-28.915916,-28.831831,-28.747747,-28.663664,-28.57958,-28.495495,-28.411411,-28.327328,-28.243244,-28.159159,-28.075075,-27.990992,-27.906906,-27.822823,-27.738739,-27.654655,-27.57057,-27.486486,-27.402403,-27.318317,-27.234234,-27.15015,-27.066067,-26.981981,-26.897898,-26.813814,-26.72973,-26.645645,-26.561562,-26.477478,-26.393393,-26.309309,-26.225225,-26.141142,-26.057056,-25.972973,-25.88889,-25.804806,-25.72072,-25.636637,-25.552553,-25.468468,-25.384384,-25.3003,-25.216217,-25.132132,-25.048048,-24.963964,-24.879879,-24.795795,-24.711712,-24.627628,-24.543543,-24.45946,-24.375376,-24.291292,-24.207207,-24.123123,-24.03904,-23.954954,-23.87087,-23.786787,-23.702703,-23.618618,-23.534534,-23.45045,-23.366365,-23.282282,-23.198198,-23.114115,-23.03003,-22.945946,-22.861862,-22.777779,-22.693693,-22.60961,-22.525526,-22.44144,-22.357357,-22.273273,-22.18919,-22.105104,-22.02102,-21.936937,-21.852854,-21.768768,-21.684685,-21.600601,-21.516516,-21.432432,-21.348349,-21.264265,-21.18018,-21.096096,-21.012012,-20.927927,-20.843843,-20.75976,-20.675676,-20.59159,-20.507507,-20.423424,-20.33934,-20.255255,-20.171171,-20.087088,-20.003002,-19.918919,-19.834835,-19.750751,-19.666666,-19.582582,-19.498499,-19.414415,-19.33033,-19.246246,-19.162163,-19.078077,-18.993994,-18.90991,-18.825827,-18.741741,-18.657658,-18.573574,-18.489489,-18.405405,-18.321321,-18.237238,-18.153152,-18.069069,-17.984985,-17.900902,-17.816816,-17.732733,-17.64865,-17.564564,-17.48048,-17.396397,-17.312313,-17.228228,-17.144144,-17.06006,-16.975975,-16.891891,-16.807808,-16.723724,-16.639639,-16.555555,-16.471472,-16.387388,-16.303303,-16.21922,-16.135136,-16.05105,-15.966967,-15.882883,-15.798799,-15.714715,-15.6306305,-15.546547,-15.462462,-15.378378,-15.294294,-15.21021,-15.126126,-15.042042,-14.957958,-14.873874,-14.78979,-14.705706,-14.621622,-14.537538,-14.453453,-14.3693695,-14.285285,-14.201201,-14.117117,-14.033033,-13.948949,-13.864865,-13.780781,-13.696696,-13.612613,-13.528528,-13.444445,-13.36036,-13.276277,-13.192192,-13.1081085,-13.024024,-12.9399395,-12.855856,-12.771771,-12.687688,-12.603603,-12.51952,-12.435435,-12.351352,-12.267267,-12.183183,-12.099099,-12.015015,-11.930931,-11.846847,-11.762763,-11.6786785,-11.594595,-11.51051,-11.426427,-11.342342,-11.258258,-11.174174,-11.09009,-11.006006,-10.921922,-10.837838,-10.753754,-10.66967,-10.585586,-10.501501,-10.417418,-10.333333,-10.249249,-10.165165,-10.081081,-9.996997,-9.912913,-9.828829,-9.744744,-9.660661,-9.576576,-9.492493,-9.408408,-9.324325,-9.24024,-9.156157,-9.072072,-8.9879875,-8.903904,-8.819819,-8.735736,-8.651651,-8.567568,-8.483483,-8.3994,-8.315315,-8.231232,-8.147147,-8.063063,-7.978979,-7.894895,-7.810811,-7.7267265,-7.6426425,-7.5585585,-7.4744744,-7.3903904,-7.3063064,-7.2222223,-7.1381383,-7.0540543,-6.9699697,-6.8858857,-6.8018017,-6.7177176,-6.6336336,-6.5495496,-6.4654655,-6.3813815,-6.2972975,-6.2132134,-6.129129,-6.045045,-5.960961,-5.876877,-5.792793,-5.708709,-5.6246247,-5.5405407,-5.4564567,-5.372372,-5.288288,-5.204204,-5.12012,-5.036036,-4.951952,-4.867868,-4.783784,-4.6997,-4.615616,-4.5315313,-4.4474473,-4.3633633,-4.279279,-4.195195,-4.111111,-4.027027,-3.9429429,-3.8588588,-3.7747748,-3.6906908,-3.6066067,-3.5225224,-3.4384384,-3.3543544,-3.2702703,-3.186186,-3.102102,-3.018018,-2.933934,-2.84985,-2.7657657,-2.6816816,-2.5975976,-2.5135136,-2.4294295,-2.3453453,-2.2612612,-2.1771772,-2.0930932,-2.0090091,-1.924925,-1.8408408,-1.7567568,-1.6726726,-1.5885886,-1.5045046,-1.4204204,-1.3363364,-1.2522522,-1.1681682,-1.084084,-1.0],"x":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0],"y":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json new file mode 100644 index 000000000000..c9523a6597ff --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json @@ -0,0 +1 @@ +{"expected":[1.0,1.084084,1.1681682,1.2522522,1.3363364,1.4204204,1.5045046,1.5885886,1.6726726,1.7567568,1.8408408,1.924925,2.0090091,2.0930932,2.1771772,2.2612612,2.3453453,2.4294295,2.5135136,2.5975976,2.6816816,2.7657657,2.84985,2.933934,3.018018,3.102102,3.186186,3.2702703,3.3543544,3.4384384,3.5225224,3.6066067,3.6906908,3.7747748,3.8588588,3.9429429,4.027027,4.111111,4.195195,4.279279,4.3633633,4.4474473,4.5315313,4.615616,4.6997,4.783784,4.867868,4.951952,5.036036,5.12012,5.204204,5.288288,5.372372,5.4564567,5.5405407,5.6246247,5.708709,5.792793,5.876877,5.960961,6.045045,6.129129,6.2132134,6.2972975,6.3813815,6.4654655,6.5495496,6.6336336,6.7177176,6.8018017,6.8858857,6.9699697,7.0540543,7.1381383,7.2222223,7.3063064,7.3903904,7.4744744,7.5585585,7.6426425,7.7267265,7.810811,7.894895,7.978979,8.063063,8.147147,8.231232,8.315315,8.3994,8.483483,8.567568,8.651651,8.735736,8.819819,8.903904,8.9879875,9.072072,9.156157,9.24024,9.324325,9.408408,9.492493,9.576576,9.660661,9.744744,9.828829,9.912913,9.996997,10.081081,10.165165,10.249249,10.333333,10.417418,10.501501,10.585586,10.66967,10.753754,10.837838,10.921922,11.006006,11.09009,11.174174,11.258258,11.342342,11.426427,11.51051,11.594595,11.6786785,11.762763,11.846847,11.930931,12.015015,12.099099,12.183183,12.267267,12.351352,12.435435,12.51952,12.603603,12.687688,12.771771,12.855856,12.9399395,13.024024,13.1081085,13.192192,13.276277,13.36036,13.444445,13.528528,13.612613,13.696696,13.780781,13.864865,13.948949,14.033033,14.117117,14.201201,14.285285,14.3693695,14.453453,14.537538,14.621622,14.705706,14.78979,14.873874,14.957958,15.042042,15.126126,15.21021,15.294294,15.378378,15.462462,15.546547,15.6306305,15.714715,15.798799,15.882883,15.966967,16.05105,16.135136,16.21922,16.303303,16.387388,16.471472,16.555555,16.639639,16.723724,16.807808,16.891891,16.975975,17.06006,17.144144,17.228228,17.312313,17.396397,17.48048,17.564564,17.64865,17.732733,17.816816,17.900902,17.984985,18.069069,18.153152,18.237238,18.321321,18.405405,18.489489,18.573574,18.657658,18.741741,18.825827,18.90991,18.993994,19.078077,19.162163,19.246246,19.33033,19.414415,19.498499,19.582582,19.666666,19.750751,19.834835,19.918919,20.003002,20.087088,20.171171,20.255255,20.33934,20.423424,20.507507,20.59159,20.675676,20.75976,20.843843,20.927927,21.012012,21.096096,21.18018,21.264265,21.348349,21.432432,21.516516,21.600601,21.684685,21.768768,21.852854,21.936937,22.02102,22.105104,22.18919,22.273273,22.357357,22.44144,22.525526,22.60961,22.693693,22.777779,22.861862,22.945946,23.03003,23.114115,23.198198,23.282282,23.366365,23.45045,23.534534,23.618618,23.702703,23.786787,23.87087,23.954954,24.03904,24.123123,24.207207,24.291292,24.375376,24.45946,24.543543,24.627628,24.711712,24.795795,24.879879,24.963964,25.048048,25.132132,25.216217,25.3003,25.384384,25.468468,25.552553,25.636637,25.72072,25.804806,25.88889,25.972973,26.057056,26.141142,26.225225,26.309309,26.393393,26.477478,26.561562,26.645645,26.72973,26.813814,26.897898,26.981981,27.066067,27.15015,27.234234,27.318317,27.402403,27.486486,27.57057,27.654655,27.738739,27.822823,27.906906,27.990992,28.075075,28.159159,28.243244,28.327328,28.411411,28.495495,28.57958,28.663664,28.747747,28.831831,28.915916,29.0,29.084084,29.168169,29.252253,29.336336,29.42042,29.504505,29.588589,29.672672,29.756756,29.840841,29.924925,30.009008,30.093094,30.177177,30.261261,30.345345,30.42943,30.513514,30.597597,30.681683,30.765766,30.84985,30.933933,31.018019,31.102102,31.186186,31.27027,31.354355,31.438438,31.522522,31.606607,31.690691,31.774775,31.858858,31.942944,32.027027,32.11111,32.195194,32.279278,32.363365,32.44745,32.531532,32.615616,32.6997,32.783783,32.867867,32.95195,33.036037,33.12012,33.204205,33.28829,33.37237,33.456455,33.54054,33.624626,33.70871,33.792793,33.876877,33.96096,34.045044,34.129128,34.213215,34.2973,34.381382,34.465466,34.54955,34.633633,34.717716,34.801804,34.885887,34.96997,35.054054,35.138138,35.22222,35.306305,35.39039,35.474476,35.55856,35.642643,35.726727,35.81081,35.894894,35.978977,36.063065,36.14715,36.23123,36.315315,36.3994,36.483482,36.567566,36.651653,36.735737,36.81982,36.903904,36.987988,37.07207,37.156155,37.240242,37.324326,37.40841,37.492493,37.576576,37.66066,37.744743,37.82883,37.912914,37.996998,38.08108,38.165165,38.24925,38.333332,38.417416,38.501503,38.585587,38.66967,38.753754,38.837837,38.92192,39.006004,39.09009,39.174175,39.25826,39.342342,39.426426,39.51051,39.594593,39.67868,39.762764,39.846848,39.93093,40.015015,40.0991,40.18318,40.26727,40.351353,40.435436,40.51952,40.603603,40.687687,40.77177,40.855854,40.93994,41.024025,41.10811,41.192192,41.276276,41.36036,41.444443,41.52853,41.612614,41.696697,41.78078,41.864864,41.948948,42.03303,42.11712,42.201202,42.285286,42.36937,42.453453,42.537537,42.62162,42.705708,42.78979,42.873875,42.95796,0.084084086,0.25225225,0.4204204,0.5885886,0.7567568,0.9249249,1.093093,1.2612612,1.4294294,1.5975976,1.7657658,1.933934,2.102102,2.2702703,2.4384384,2.6066067,2.7747748,2.9429429,3.1111112,3.2792792,3.4474475,3.6156156,3.7837837,3.951952,4.12012,4.288288,4.4564567,4.6246247,4.792793,4.960961,5.129129,5.2972975,5.4654655,5.6336336,5.8018017,5.9699697,6.1381383,6.3063064,6.4744744,6.6426425,6.810811,6.978979,7.147147,7.3153152,7.4834833,7.651652,7.81982,7.987988,8.156157,8.324325,8.492493,8.660661,8.828829,8.996997,9.165165,9.333333,9.501501,9.66967,9.837838,10.006006,10.174174,10.342342,10.51051,10.6786785,10.846847,11.015015,11.183183,11.351352,11.51952,11.687688,11.855856,12.024024,12.192192,12.36036,12.528528,12.696696,12.864865,13.033033,13.201201,13.3693695,13.537538,13.705706,13.873874,14.042042,14.21021,14.378378,14.546547,14.714715,14.882883,15.051051,15.219219,15.387387,15.555555,15.723723,15.8918915,16.06006,16.228228,16.396397,16.564564,16.732733,16.900902,17.069069,17.237238,17.405405,17.573574,17.741741,17.90991,18.078077,18.246246,18.414415,18.582582,18.750751,18.918919,19.087088,19.255255,19.423424,19.59159,19.75976,19.927927,20.096096,20.264265,20.432432,20.600601,20.768768,20.936937,21.105104,21.273273,21.44144,21.60961,21.777779,21.945946,22.114115,22.282282,22.45045,22.618618,22.786787,22.954954,23.123123,23.291292,23.45946,23.627628,23.795795,23.963964,24.132132,24.3003,24.468468,24.636637,24.804806,24.972973,25.141142,25.309309,25.477478,25.645645,25.813814,25.981981,26.15015,26.318317,26.486486,26.654655,26.822823,26.990992,27.159159,27.327328,27.495495,27.663664,27.831831,28.0,28.168169,28.336336,28.504505,0.009009009,0.26126125,0.5135135,0.7657658,1.018018,1.2702702,1.5225226,1.7747748,2.0270271,2.2792792,2.5315316,2.7837837,3.036036,3.2882884,3.5405405,3.7927928,4.045045,4.2972975,4.5495496,4.8018017,5.0540543,5.3063064,5.5585585,5.810811,6.063063,6.3153152,6.5675673,6.81982,7.072072,7.324324,7.5765767,7.828829,8.081081,8.333333,8.585586,8.837838,9.09009,9.342342,9.594595,9.846847,10.099099,10.351352,10.603603,10.855856,11.1081085,11.36036,11.612613,11.864865,12.117117,12.3693695,12.621622,12.873874,13.126126,13.378378,13.6306305,13.882883,14.135135,14.387387,14.63964,14.8918915,15.144144,15.396397,15.648648,15.900901,16.153152,16.405405,16.657658,16.90991,17.162163,17.414415,17.666666,17.918919,18.171171,18.423424,18.675676,18.927927,19.18018,19.432432,19.684685,19.936937,20.18919,20.44144,20.693693,20.945946,21.198198,21.45045,0.27027026,0.6066066,0.9429429,1.2792792,1.6156156,1.951952,2.2882884,2.6246247,2.9609609,3.2972972,3.6336336,3.96997,4.3063064,4.6426425,4.978979,5.3153152,5.651652,5.987988,6.324324,6.6606607,6.996997,7.3333335,7.6696696,8.006006,8.342342,8.6786785,9.015015,9.351352,9.687688,10.024024,10.36036,10.696696,11.033033,11.3693695,11.705706,12.042042,12.378378,12.714715,13.051051,13.387387,13.723723,14.0600605,14.396397,14.732733,15.069069,15.405405,15.741742,16.078077,16.414415,16.750751,17.087088,0.2792793,0.6996997,1.1201202,1.5405406,1.960961,2.3813813,2.801802,3.2222223,3.6426427,4.063063,4.4834833,4.903904,5.324324,5.744745,6.165165,6.5855856,7.0060062,7.4264264,7.846847,8.267267,8.687688,9.1081085,9.528528,9.948949,10.3693695,10.78979,11.21021,11.6306305,12.051051,12.471472,12.8918915,13.312312,13.732733,14.153153,0.2882883,0.7927928,1.2972972,1.8018018,2.3063064,2.8108108,3.3153152,3.81982,4.324324,4.828829,5.3333335,5.8378377,6.3423424,6.846847,7.3513513,7.855856,8.36036,8.864865,9.3693695,9.873874,10.378378,10.882883,11.387387,11.8918915,0.12912913,0.7177177,1.3063064,1.8948948,2.4834836,3.072072,3.6606607,4.2492495,4.8378377,5.4264264,6.015015,6.603604,7.192192,7.780781,8.3693695,8.957958,9.546547,10.135135,10.723723,0.6426426,1.3153154,1.987988,2.6606607,3.3333333,4.0060062,4.6786785,5.3513513,6.024024,6.6966968,7.3693695,8.042042,8.714715,9.387387,0.5675676,1.3243244,2.0810812,2.837838,3.5945945,4.3513513,5.108108,5.864865,6.6216216,7.3783784,8.135135,0.3243243,1.1651652,2.006006,2.8468468,3.6876876,4.5285287,5.3693695,6.2102103,7.051051,0.08108108,1.006006,1.930931,2.855856,3.7807808,4.7057056,5.6306305,6.5555553,0.34234235,1.3513514,2.3603604,3.3693693,4.3783784,5.3873873,6.396396,0.8558559,1.948949,3.042042,4.135135,5.228228,0.1921922,1.3693694,2.5465465,3.7237236,4.900901,0.36936936,1.6306306,2.891892,4.153153,0.042042043,1.3873874,2.7327328,4.0780783,0.3873874,1.8168168,3.2462463,4.675676,1.4054054,2.9189188,4.4324327,1.4984984,3.096096,0.4144144,2.096096,3.7777777,1.4324324,3.198198,1.1051052,2.9549549,1.1141142,3.048048,1.4594594,0.039039038,2.1411412,0.972973,3.1591592,2.2432432,1.4954954,0.9159159,0.5045045,0.26126125,0.18618618,0.2792793,0.5405405,0.96997,1.5675676,0.072072074,1.09009,0.18318318,1.6216216,1.3033034,1.3213214,1.6756756,0.6936937,0.21621622,0.24324325,0.7747748,0.47447446,0.8468468,0.7237237,0.35735735,0.0],"x":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0],"y":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..0d2a05507f92 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/runner.jl @@ -0,0 +1,102 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2024 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( x, y, name ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: first number +* `y`: second number +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> y = range( 0, stop = 1000, length = 1001 ); +julia> gen( x, y, \"data.json\" ); +``` +""" +function gen( x, y, name ) + z = Array{Float32}( undef, length( x ) ); + for i in eachindex(x) + z[ i ] = Float32(rem( Float32(x[ i ]), Float32(y[ i ])) ) + end + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("y", y), + ("expected", z) + ]); + + # 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 ); + +# Subnormal results: +x = range(1.18e-38, stop = 1.0e-45, length = 2001) +y = range(1.18e-38, stop = 1.0e-45, length = 2001) +gen( x, y, "subnormal_results.json" ); + +# x small, y small: +x = rand( 5001 ) .* 100 +y = rand( 5001 ) .* 100 +gen( x, y, "small_small.json" ); + +# x small, y large: +x = rand( 5001 ) .* 100; +y = rand( 5001 ) .* 1.0e10; +gen( x, y, "small_large.json" ); + +# x large, y small: +x = rand( 5001 ) .* 1.0e10; +y = rand( 5001 ) .* 100; +gen( x, y, "large_small.json" ); + +# x positive, y negative: +x = range( 1.0, stop = 85.0, length = 1000 ); +y = range( -85.0, stop = -1.0, length = 1000 ); +gen( x, y, "positive_negative.json" ); + +# x negative, y positive: +x = range( -85.0, stop = -1.0, length = 1000 ); +y = range( 1.0, stop = 85.0, length = 1000 ); +gen( x, y, "negative_positive.json" ); + +# x negative, y negative: +x = range( -85.0, stop = -1.0, length = 1000 ); +y = range( -85.0, stop = -1.0, length = 1000 ); +gen( x, y, "negative_negative.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json new file mode 100644 index 000000000000..41823b9a0a64 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json @@ -0,0 +1 @@ +{"expected":[33.021297,3.7219477,98.73055,81.23855,87.80209,99.06292,1.3014725,2.5199893,57.981388,9.815815,78.89891,65.52185,74.51134,69.70074,51.115707,71.91155,85.22769,28.939533,87.78311,40.753143,75.57081,33.08706,65.51469,56.929085,25.309412,81.86039,7.831867,45.930027,5.0772605,24.702446,18.507624,58.22065,93.05674,69.66383,12.095247,89.926346,5.500978,95.94467,37.814228,93.15884,67.8472,93.55983,58.554157,79.909004,85.57863,60.68385,21.501413,87.261024,72.33738,7.545018,32.504158,23.939743,79.84857,55.319782,3.1387029,97.3175,86.19526,75.554825,15.673348,43.783432,53.39335,76.99213,45.53897,43.901592,89.823524,2.2288284,12.494305,22.82192,55.28543,10.136592,32.018738,86.24392,30.37761,57.080902,94.27167,40.483032,40.530457,9.780312,0.64520836,31.489376,2.4849043,31.019073,75.41465,19.268023,73.48735,43.03304,80.213326,31.31176,45.940628,73.58673,44.688404,73.65796,36.69426,24.523157,11.743428,92.010925,49.692383,62.37907,3.3465066,36.548008,69.527245,62.71768,61.88579,19.385832,45.353825,41.799736,40.218212,85.67442,88.82981,40.85395,24.31887,46.052658,94.04729,39.974667,5.95123,89.04569,75.57542,8.039903,66.83996,74.52515,50.131413,49.999126,32.056522,14.6660795,32.701794,73.07966,71.76825,7.1517396,3.6604915,52.18421,32.528835,13.910883,45.079636,28.219328,54.42495,11.88168,38.516365,11.698515,1.188016,92.7389,87.3837,68.12368,80.20517,75.771935,60.53381,43.05698,30.283794,93.646225,55.374687,82.51302,91.92693,80.16244,39.10284,54.952682,21.601475,15.744615,52.904987,90.42714,57.7782,29.855885,25.44517,60.55019,69.40511,80.15993,70.01392,95.20572,8.381964,85.66363,11.261948,62.19491,80.8135,63.58054,93.11789,47.62686,20.044046,47.008606,27.41099,24.308084,13.0962925,40.351883,89.7958,29.673733,99.50606,48.66358,76.15641,48.438564,75.98641,6.5117216,60.249687,21.479733,34.947796,41.930096,24.196428,50.710896,59.943066,89.69312,38.206326,59.337086,64.94109,12.443439,62.997963,88.721115,97.97093,15.495213,89.86008,95.82921,22.11259,46.47941,17.026205,34.957417,40.016945,38.9337,91.91179,67.25826,9.759242,94.43116,90.99235,37.626442,70.14588,81.11663,39.718807,28.443104,96.63745,45.20226,72.62095,67.62651,46.63888,69.613754,93.77943,13.9422245,18.633938,68.88062,95.64659,96.418526,96.57818,94.231384,2.4217815,30.371046,48.17069,73.61834,17.3451,92.72232,71.520584,49.56834,32.602856,13.796687,77.40103,88.77375,22.265497,33.695316,66.89234,59.607727,27.645779,77.02655,86.841805,8.638894,18.77401,61.41869,6.245638,82.552345,30.710396,57.568073,91.83372,2.5116258,83.11539,95.075134,81.04096,42.347034,17.210344,10.107332,1.8537962,58.117443,33.67145,84.06879,86.769844,36.925705,75.27425,25.265976,83.71022,31.875912,91.1882,4.7238207,46.406815,47.277843,10.878961,9.667913,91.86714,40.133698,75.02706,58.701916,91.05883,44.158527,35.301502,7.045176,69.968254,37.17928,29.007723,27.312437,33.553062,14.493334,71.67701,25.18136,26.589296,92.12768,31.330042,30.865585,1.7643073,15.649388,96.37983,38.726974,3.7548323,81.593475,62.1067,74.195015,36.829483,39.085625,18.514673,52.166332,77.02652,64.017624,45.198807,69.932144,38.494102,32.15831,36.523975,37.5116,83.788345,72.4072,14.455821,90.9837,11.699957,66.938736,13.142965,70.41944,52.778606,11.875351,41.230167,88.65151,15.233863,40.32631,7.1540256,13.386148,54.83043,16.124735,93.01419,67.514824,71.2473,9.6121855,67.59025,84.64851,11.323618,22.836811,72.665054,75.021614,8.589117,23.813011,88.73735,48.83254,37.242584,69.613,67.893585,74.43575,3.8224351,7.7401943,2.9133794,25.27548,57.070213,78.34105,23.827097,46.207928,20.742302,69.76415,90.25181,12.624557,10.622533,42.43226,96.65766,20.859081,62.58792,53.636158,39.51149,41.07084,63.969822,2.407198,62.34882,90.29596,26.133053,98.60734,46.05191,64.10401,39.405506,16.044088,12.49732,55.934387,27.447422,0.6428625,4.269891,3.9998713,14.799584,89.35117,48.642117,58.944466,57.963455,66.58298,71.22267,33.87231,50.524757,76.852875,62.66189,27.925694,80.1864,41.61434,72.13617,25.839518,12.920432,73.971985,79.503555,3.7108274,25.282438,38.528416,2.9620645,44.28824,72.70701,22.305918,18.718462,45.01943,32.07759,95.95387,12.336928,0.7409862,80.093864,14.5038185,67.90466,41.331806,4.153436,12.068483,8.216453,39.354076,31.015377,13.885619,60.273254,54.498108,41.26127,23.982801,46.95422,32.491108,64.436806,64.10077,43.622852,4.1781654,83.76134,17.574108,54.814102,8.493726,2.3984668,94.78876,63.82052,7.409476,65.91192,94.87299,45.702663,63.150784,57.888393,55.90209,25.86249,49.9704,46.84101,93.35065,82.52772,89.878296,34.598312,10.123855,48.674564,90.71574,5.457139,33.738205,87.00435,28.817518,12.289733,99.12438,97.59951,35.183334,40.678886,3.9179187,33.74193,60.74652,80.29176,45.064278,21.795818,80.43393,22.17491,65.30334,56.255188,91.22379,42.743336,57.528984,81.660355,93.98418,42.959667,28.078896,45.769608,60.86709,53.1571,60.794807,90.5789,40.41457,38.36981,54.414467,24.117006,5.5703683,79.44539,92.710304,82.805405,17.762915,97.96035,28.734062,15.171996,1.305657,72.690956,34.55351,88.4359,54.188858,21.089848,20.262928,37.9634,6.330909,58.235676,77.81488,90.28817,95.537926,63.57834,81.09214,63.780304,58.791584,30.96704,17.178644,11.516631,92.437965,44.701565,79.16872,26.220549,4.4177284,52.961792,17.30698,85.008804,93.17426,60.608967,52.674335,99.4871,12.97968,21.053452,81.22629,44.114136,15.765192,75.41831,70.22451,18.529922,68.49707,47.435226,68.99104,25.450247,3.5075717,92.08094,16.494722,5.9997635,10.945833,69.96842,1.3933349,96.56619,54.968517,50.94728,73.54412,57.52818,23.044827,78.657875,18.228535,20.442204,72.9948,92.33671,10.25953,73.89412,31.464409,7.962973,57.289146,59.35491,46.376877,20.497362,97.80682,80.43889,76.196754,87.96033,79.31406,34.732925,69.05233,80.59842,34.13351,20.382202,54.581215,23.550217,77.066795,10.276369,53.023647,46.78809,28.99159,48.91773,47.00383,10.6439705,66.493355,90.23592,14.836183,68.84212,49.288208,54.92042,25.631737,79.864235,6.3320827,56.24405,61.81156,31.56978,5.4559274,43.79811,68.53812,23.209038,83.05737,42.891273,82.40452,92.07251,69.14603,56.760365,33.719845,67.09525,97.62127,56.216316,84.90047,94.45281,54.744488,7.6499653,56.493595,35.428795,92.69351,60.11536,29.478872,72.04045,88.58306,78.77165,58.28793,91.26387,45.170963,91.96003,73.25818,90.64781,41.91043,8.452239,41.045517,23.485147,33.255016,34.60333,55.582367,58.196484,97.586334,52.914253,90.20907,1.0988388,92.76407,1.9241316,52.90463,14.216074,63.43569,49.352432,40.31149,76.15902,1.557051,82.28175,99.70737,33.073296,78.849625,51.5151,83.97259,25.070526,49.949364,24.850304,4.996659,34.791775,68.838806,0.98556054,2.7386494,1.4028262,45.636112,51.340942,10.951195,45.5391,88.313805,35.867786,5.4308796,20.48639,26.594957,35.01548,68.421364,77.94099,11.351382,26.969189,3.4426117,98.479095,46.058678,61.710045,87.85991,72.224236,19.080595,57.877766,46.321125,90.2531,94.56011,71.21174,98.8264,44.958477,76.15982,58.475395,45.03822,25.877256,39.876114,43.318687,4.3303175,12.329808,54.977047,53.924206,25.341461,97.99319,64.65147,19.591839,45.549923,44.860847,51.692814,86.05658,45.546543,14.569012,94.71379,0.9568538,61.555332,93.958206,46.501595,13.924469,54.980095,59.205704,66.68214,62.381184,68.281296,65.638596,92.74691,62.334885,29.808529,3.333938,94.88138,48.335316,54.269127,11.690179,0.8621416,15.167528,94.64036,42.65325,67.31315,81.40644,20.929964,44.858257,63.970066,2.9373662,49.00377,28.11154,12.879466,35.03422,51.021,35.152676,9.465618,31.259705,30.795269,41.00874,0.7152852,74.99145,54.22215,36.61149,84.21342,59.968456,40.039673,44.267506,55.35726,89.57085,1.0245095,6.233942,20.154982,87.87595,43.76625,54.790985,10.797905,8.894829,92.97901,25.566675,23.570791,18.45794,64.530304,58.56444,97.90162,22.71785,85.33987,39.329193,55.128376,23.418966,93.825455,89.63285,26.537117,80.15543,57.873722,89.77431,99.951515,68.967186,33.024963,44.471695,24.003454,28.400446,54.042255,73.979904,37.590103,53.254887,54.926155,9.941298,53.82279,62.370396,74.76495,23.127762,70.142334,87.37006,18.080574,55.3654,15.934677,18.80477,47.596355,74.868706,35.201923,70.19063,32.896305,76.12406,85.89512,62.61507,24.200603,64.731155,0.32703537,80.84776,36.050385,5.9061766,11.018339,81.20973,29.418844,71.162125,44.905163,85.17046,76.28332,64.86157,29.303791,7.1824045,78.602165,42.780067,12.132738,10.023726,55.597477,94.2881,16.102419,35.626553,65.776726,95.32198,23.095629,85.39691,78.47062,76.34053,19.173054,51.86026,8.756803,19.59999,55.76379,23.523794,2.4928615,60.519676,70.30432,22.116215,1.5464897,3.3051858,45.874416,70.01391,80.77943,79.170815,77.78044,72.765015,41.386044,12.406432,30.750181,30.744326,58.791664,57.310913,1.5000108,5.9994974,6.420228,5.8925724,63.05685,67.21121,91.11329,28.457184,11.561448,69.86005,94.82745,25.875364,40.79715,97.530754,38.829914,46.352207,0.120177925,93.01332,47.652897,82.19585,16.366602,80.583466,32.77258,82.53459,6.50115,16.676783,14.637714,10.641319,25.645576,33.827812,93.793625,53.99126,23.879883,87.23332,46.377567,60.686848,24.891418,81.23458,57.113544,40.76951,28.904804,14.318415,26.839197,63.713642,17.61636,50.74544,56.62765,41.67753,30.731588,92.29348,46.57984,17.750422,89.30721,12.995418,26.744879,41.961967,52.66343,14.165176,83.11976,20.21548,47.97274,43.014088,87.56734,76.12847,4.1074653,94.65039,40.034653,30.39433,99.26348,94.79804,79.77269,74.497086,92.33079,2.7130504,95.95365,28.867765,92.01612,26.473907,70.676834,64.14421,10.158158,46.068493,84.739815,67.245705,42.201473,35.731003,27.493753,72.7,39.983597,43.953968,63.592247,45.0429,44.756313,47.43769,55.53899,36.977352,31.690437,18.74626,80.03109,49.887356,36.59035,79.620026,60.54372,35.089577,4.443361,90.90834,29.110577,55.41443,72.494934,2.073231,37.63966,90.74676,9.00642,20.271961,42.160915,97.00817,88.27378,0.1945957,14.192565,47.727295,76.21706,84.014534,34.6835,20.294601,44.940258,0.3664662,55.17663,2.549625,8.897493,81.53903,78.38195,33.49153,18.299755,35.003952,88.53219,33.75692,22.880404,41.000168,89.92982,18.680122,67.26561,90.102646,71.92614,21.18423,49.521496,35.046993,49.483475,8.871674,15.763866,74.31347,7.145165,36.481167,4.4788756,70.94974,92.8614,18.699125,67.76692,60.737534,20.328228,24.340929,80.45413,43.65594,24.711271,30.624184,59.629498,95.35006,35.440697,49.676197,87.447075,51.46245,83.94009,47.293526,97.32781,93.7691,45.745876,85.86362,65.80219,30.219551,17.1344,74.36702,90.45091,12.261764,3.2376633,96.890434,21.663612,88.962906,81.607506,27.474758,73.30083,94.19828,24.220795,81.29049,88.5844,44.646152,6.7395186,79.67937,31.270164,55.84137,20.906008,61.96836,28.515959,19.317543,9.391831,92.70783,96.52039,48.283833,13.600279,41.43744,51.86624,98.02818,65.48149,89.49237,45.88528,76.19999,6.1563497,45.371113,27.458363,71.49701,10.779225,38.060913,68.43888,60.79026,10.399393,17.366268,7.143242,84.17557,20.36901,63.48417,90.55814,79.10308,12.720254,8.609232,34.888184,35.173615,3.769902,40.20415,88.81249,96.70091,96.3072,89.42684,18.625423,73.897156,75.410614,73.153244,59.87544,48.31207,31.140837,5.5608487,76.47613,90.63535,62.722378,28.6818,9.1437025,37.201813,4.011724,58.20469,40.08725,33.63973,94.79274,80.75597,89.00199,65.83782,66.00603,19.047205,9.04229,80.75673,69.157,52.217678,84.250946,15.750094,43.266296,58.101173,50.627113,47.795128,44.76508,1.3934011,49.392273,55.641926,9.678491,87.287186,16.303108,86.23774,14.696062,4.6297436,55.588142,78.468285,54.98449,64.07084,39.326595,29.252176,10.797619,70.76487,57.534397,68.148636,68.71658,31.607458,74.151695,82.399254,10.289571,86.81202,82.64687,0.39773208,88.19667,92.124596,57.956963,74.26393,28.5233,65.99286,35.398792,21.785576,12.763275,30.43552,30.363838,36.58081,55.773342,53.826824,89.78373,29.6761,53.867123,66.719055,37.556232,33.423893,77.199745,45.80105,16.71653,41.10652,78.63615,62.694492,0.84346896,15.806701,16.308317,97.608665,38.342285,57.72186,64.46144,46.024693,26.895859,85.3928,16.587688,43.58037,86.49396,86.14758,23.808231,54.234955,62.70419,30.339308,71.21372,16.663092,63.599186,98.714615,85.139824,11.742935,57.598583,31.902071,23.269735,2.7512283,54.89927,24.690039,14.841269,78.867195,56.541157,89.52406,99.566475,72.905396,55.9352,67.045616,49.77629,87.56231,56.36422,7.4430566,26.912413,3.8688192,24.128942,56.940334,45.522446,60.7599,91.059204,8.547765,54.93826,26.44993,83.0369,35.83413,64.73212,44.925503,20.124037,41.20669,22.164494,23.243288,11.294061,54.741413,57.723824,33.263824,36.421154,70.19015,30.654116,50.35445,28.446857,55.087097,94.79721,37.55752,22.907152,80.37545,61.87509,78.32594,74.399376,90.17494,0.553233,57.289818,94.62327,50.22715,53.587013,48.488464,78.70751,30.991003,74.58111,93.55989,86.91438,82.38541,48.90291,73.3156,93.83107,26.173496,71.16883,45.31842,87.67949,34.655758,83.82585,97.01559,72.54905,2.183164,58.65197,52.81356,55.32541,31.263775,37.299454,15.031251,17.640783,6.284886,63.149864,97.36649,98.191536,79.019714,6.8628983,59.05993,44.396816,74.48533,86.397064,23.398623,14.726649,19.416948,67.17808,30.656475,64.562904,58.65004,10.829471,87.25937,2.5877075,16.746153,88.18888,27.418322,53.348286,11.509005,57.014233,72.450966,23.571733,51.8919,46.84374,94.406235,6.023819,10.500938,90.58374,54.492092,46.145943,95.85412,42.348637,6.598338,82.86378,60.98722,70.400185,23.071716,77.87405,87.60143,47.438766,99.90071,97.91706,25.368296,52.959576,47.74888,67.319885,31.351612,79.56174,11.087029,62.785595,71.49891,86.09134,19.807123,65.72496,5.115528,44.51066,92.14895,99.604004,33.634438,5.0631075,3.9459832,4.087121,89.93394,42.40346,54.800236,14.4378805,17.88605,51.53528,67.46218,80.12926,74.79006,50.202667,84.72755,16.74667,25.438103,77.84462,40.493706,64.714264,82.05073,18.807732,13.081917,33.193806,20.128672,11.268698,43.202183,16.923254,29.55237,34.49145,22.670143,88.29726,50.557484,19.77179,48.948868,94.17675,9.600211,66.062,17.969433,32.863247,56.527588,51.064754,42.263863,90.866325,87.6918,21.304712,43.100666,42.940052,75.06331,0.19476014,81.10806,2.8234615,82.11682,49.54793,59.10942,68.30485,22.336622,17.26913,33.74472,9.326177,62.39545,7.7419715,24.28809,89.66324,26.832275,13.702099,10.846424,9.790082,41.62484,63.077667,45.877937,87.428185,26.273026,64.43189,23.239063,43.47589,6.358493,33.6925,87.160324,81.85774,99.46281,66.70123,57.46077,91.076,69.83853,84.87225,31.688595,73.613235,62.753025,36.64937,93.61491,11.227687,55.99009,5.8743925,96.84889,92.85632,71.657875,91.45637,54.76904,89.39125,54.106865,45.101803,90.18373,35.74895,16.662802,18.90714,94.84292,77.11563,45.384396,22.261856,18.575771,67.32874,83.85356,83.75302,61.29269,92.35986,18.853518,62.15479,88.193504,82.36434,75.34486,58.139782,58.20072,26.106228,42.490494,92.70643,65.96257,33.278294,95.20001,48.81951,73.63386,49.41981,23.692764,2.793439,79.99712,51.27802,98.509094,39.344704,20.257702,61.662086,42.483974,90.94632,13.091462,47.277317,8.7948,42.10891,49.644093,81.70916,56.659893,22.454224,27.772772,79.32321,55.278133,31.841228,71.22374,78.58946,12.852264,60.424313,33.710835,95.28502,15.610272,26.5609,84.78158,66.36667,22.01567,73.75364,40.621017,1.6854643,68.487434,82.31412,92.591606,91.27571,66.24478,67.30608,34.370377,1.3617643,33.236614,86.1932,66.71994,17.17405,60.321224,81.333046,15.039786,26.01725,64.83024,62.927162,44.329697,65.53116,21.37066,86.78866,99.33587,63.583134,88.674095,71.9294,80.59719,73.718506,14.881856,51.234932,9.748484,96.532684,76.2131,40.156937,6.6907644,72.21089,51.772327,77.83045,26.140818,24.339705,27.482565,5.697883,76.86979,17.680532,60.470608,32.2891,59.08005,43.020267,8.2957325,22.331493,51.846493,89.97955,20.50531,4.334906,58.48175,64.37776,97.924706,43.239002,73.427284,44.380627,28.862392,74.14061,3.0338051,10.292403,36.239273,0.12593412,57.646835,6.428127,87.88538,0.68406993,4.9450855,55.33706,1.501623,3.869298,15.599315,70.00617,61.595047,9.298095,36.799557,91.82169,96.31162,88.425415,78.518814,74.90857,4.2191386,56.39557,18.763803,76.35146,47.741623,69.955734,99.58463,47.843903,37.21698,96.446815,65.54011,4.995071,0.782669,91.830536,43.056614,72.08545,49.552246,7.5576077,43.060814,13.066404,12.495565,66.60077,6.7349796,69.23496,63.583183,78.57273,25.015953,45.580048,70.80312,91.10072,29.641993,80.62097,56.37542,32.16231,64.51678,91.178894,32.69712,43.370872,45.426704,36.68167,28.49028,59.244896,78.863365,62.152107,48.300125,25.10395,26.029718,6.743229,37.75845,31.140743,66.22771,77.22241,43.860416,61.622887,62.66855,70.6489,82.67557,58.214687,1.9893303,13.856581,47.136795,83.99318,87.229164,42.12747,54.536827,93.908646,74.71955,33.317165,77.272804,24.692015,8.800027,99.25328,9.368848,1.0190629,87.2474,86.928894,26.69597,44.86078,32.97991,85.55998,6.4666433,33.178154,5.670854,87.71319,32.30885,94.84235,90.79591,14.84906,89.414825,31.322126,55.851955,15.958456,41.12225,42.136578,32.11418,26.073223,18.297115,41.66149,9.147123,24.5725,26.689478,17.320477,8.379055,4.269296,24.574919,40.15763,62.779724,93.99752,10.175893,59.69487,72.401924,48.409508,75.57456,90.64879,27.192944,87.21155,97.17032,32.3722,94.43282,92.1267,6.9244514,24.57226,29.34301,91.90331,22.976015,96.415306,74.882935,41.756084,3.7948236,21.368443,71.78797,58.008564,80.65176,23.751034,50.889175,79.127525,77.64096,56.59312,77.37756,9.154429,94.44222,19.282433,31.188442,39.97473,86.10683,35.812733,37.31193,63.40318,48.248554,24.085203,54.976368,89.86452,16.50593,62.281853,79.090126,12.906441,88.64735,53.96217,24.668142,58.684303,40.424133,54.162663,14.211039,16.87354,45.58096,16.157898,34.16865,54.242943,34.43386,72.40322,61.023342,15.521579,78.79066,69.51304,82.581604,53.214993,79.54055,53.787483,11.095673,36.79169,24.863848,13.573015,50.39413,13.658435,29.645695,20.900372,8.349709,47.316143,25.127438,88.277626,31.250032,6.073347,3.138138,42.203808,84.72539,74.64725,47.870674,40.847565,19.596603,99.22403,86.15293,53.04521,14.894551,8.370197,76.34198,35.203835,42.51583,18.21573,27.957657,93.424934,76.16185,24.202988,77.9337,5.1771474,60.22379,70.424934,64.69463,12.636441,99.25065,57.9438,73.42987,16.181307,17.492754,7.6888065,37.58391,56.62081,3.7030435,47.805195,16.436907,49.42664,25.709803,98.24635,15.644099,10.410598,49.116863,66.50139,91.175064,29.58364,35.77803,49.239388,50.882027,24.544231,96.97097,81.81178,89.118256,1.4676299,36.588894,62.469707,39.478275,87.26911,93.5078,30.494452,99.59853,31.518482,80.40155,81.331314,24.660597,72.26256,30.151909,83.23935,93.52461,39.595932,18.343369,70.74597,60.214314,79.60684,46.188858,54.563328,5.985204,3.1636217,81.84338,65.641174,69.7482,39.80084,67.8722,6.3565907,31.82469,28.634117,23.09296,17.33857,19.620804,59.087894,42.7762,77.09461,68.72492,23.986914,88.766335,81.67008,58.45158,7.846857,26.45145,26.091246,12.22143,49.10585,63.14532,16.081106,14.270563,4.6731715,77.302826,75.15027,15.281828,75.670364,32.582634,48.69234,4.1723704,80.65361,83.01818,82.99248,22.763817,46.900196,30.71173,33.34615,93.62117,5.11402,38.614162,92.39928,3.026868,9.943784,12.262829,78.57579,31.223495,52.72162,81.93919,11.677224,85.66229,50.439747,14.103284,50.18762,27.58087,27.306707,81.05056,75.199326,55.979263,68.40399,58.159023,91.668274,83.43502,15.470068,54.735962,72.00279,25.832003,20.400305,79.98157,58.182312,44.813614,74.68655,27.928677,37.903328,93.78014,47.090157,18.655844,59.496883,17.92504,95.07698,63.42016,14.925794,77.16671,19.868662,16.44211,80.21391,59.094852,10.64776,87.20554,26.72605,19.872295,45.08002,48.102303,97.31552,64.54411,0.23572324,45.23609,8.564243,9.824563,72.907074,53.78021,14.040596,61.94586,14.849391,99.56952,8.138823,32.201855,90.05866,27.541111,64.805176,13.694258,89.66444,8.706526,28.76581,27.63943,4.884116,90.82922,23.133104,89.57014,42.23544,16.121803,84.813416,20.488361,3.5396338,1.5205932,9.693355,27.639746,93.66871,14.314433,41.326725,58.14415,84.34487,64.36894,35.476677,64.57329,93.72202,5.3557763,70.11152,76.84924,32.08034,20.172894,44.809425,71.94744,4.985329,91.13818,67.683426,0.4565116,9.058544,29.310442,88.86281,32.67789,66.30153,9.478476,66.095345,74.81967,48.549953,70.05043,87.04078,3.895958,41.456406,54.27514,34.29985,33.210796,95.33437,15.895659,90.99727,42.98326,66.618065,38.854416,24.297945,74.9459,76.68304,70.45928,94.83388,71.43104,74.244675,12.076293,14.897438,44.073597,66.46349,49.332836,89.063675,14.00794,83.140915,93.04715,50.501263,94.94965,58.38449,50.01213,17.865288,81.303925,37.79286,63.573597,28.819218,72.30647,97.619095,30.558685,56.609085,17.12855,52.897236,0.12192961,99.256714,8.428788,48.612724,47.205914,36.193756,40.449715,39.455544,95.16762,54.91815,92.41819,22.340273,23.532457,80.12494,44.663795,64.859375,31.529078,22.818245,92.51034,33.43497,63.470375,95.90521,63.41043,78.38354,52.326645,82.35168,1.0871223,10.0007925,39.265575,55.86004,41.592434,50.468754,77.53498,78.84539,97.22363,28.46785,87.0738,82.88423,23.798054,13.412258,69.93966,46.201912,16.775864,93.91512,42.69608,26.523237,4.861097,59.068005,86.83359,21.914663,45.06678,74.1396,32.566223,10.536329,47.95051,46.397163,66.75931,19.638603,30.494684,86.930305,72.59701,43.45652,29.88192,25.317268,40.463802,61.120228,11.668275,1.9067215,53.402435,17.680124,12.669279,19.734924,15.98201,74.47166,66.80392,14.153972,39.31807,44.23006,85.80989,64.04463,7.096302,50.942547,14.05769,40.660614,99.962326,98.9542,29.361454,40.809914,40.951313,77.37348,54.60807,82.65332,80.21529,67.753876,5.252998,53.992355,98.68296,16.193396,30.274176,36.66734,49.579777,41.48815,49.59442,77.252174,88.53221,57.83971,6.631926,71.847984,61.87218,2.1023657,45.554848,33.44751,9.437232,11.030747,46.241127,15.263695,28.864944,59.337173,68.3239,99.08193,10.412643,62.82364,58.159393,31.52333,0.4921975,64.140396,68.32931,49.20043,61.664536,95.051346,63.00007,36.494102,68.837975,26.89067,60.581615,40.379898,67.43987,40.20304,29.451294,68.40438,48.167866,83.158424,84.786415,47.573532,21.07827,29.776129,35.087406,17.637123,79.411224,95.21791,2.7759893,34.582104,74.993805,22.63417,41.24233,67.559105,20.540756,72.130035,31.428318,28.109428,52.49225,62.089928,11.85472,43.794357,42.89804,57.97308,68.248764,61.762623,98.14974,78.06445,7.7864523,80.16497,80.07915,66.456245,38.802647,21.912512,85.14066,97.92368,24.874117,85.85398,58.24915,36.362625,12.944701,43.02759,98.921326,64.89655,29.974003,96.53062,97.53155,59.42367,78.958694,73.81114,98.17747,59.660812,37.626118,72.20551,36.577686,16.286478,98.20176,11.421309,75.69823,33.45881,46.130585,28.548334,85.59401,23.161465,28.892046,35.887466,35.391853,74.56654,40.958138,69.284966,45.72445,69.35637,42.135662,58.604446,37.453346,0.25104943,63.338043,57.12052,12.442175,51.221897,29.042147,53.928787,12.159245,12.974177,64.74887,18.724005,51.1766,15.09446,52.57235,75.03142,62.198666,44.141155,30.82563,41.36695,25.46213,29.10727,86.01002,96.14113,65.80063,16.496693,65.544914,79.12056,25.523705,67.43601,97.53654,83.70888,0.30959016,4.317747,68.08391,0.807498,92.74438,72.8564,82.23742,78.06342,3.2798216,82.32497,82.11824,52.43911,63.536373,52.743237,85.79445,27.025476,26.96246,64.54172,63.383114,54.98626,96.15727,13.671742,36.513912,60.623985,51.44591,27.638655,27.159101,31.730322,22.269016,79.25437,4.2522187,17.109138,77.36728,52.508984,19.640827,1.738107,18.08346,41.636932,7.3780255,60.37145,78.55849,73.84993,20.990414,76.779076,41.28074,90.901505,98.56473,27.717754,49.78935,41.06164,74.02712,92.95181,0.8803059,72.68082,82.818634,2.0342736,68.20228,78.161804,12.383662,99.468544,35.90052,60.49,9.390924,52.783512,80.24978,45.164665,40.06674,9.328303,79.68367,82.62182,1.9078648,34.70334,72.99875,56.144844,69.388466,66.00352,56.605762,83.30572,65.13898,46.291958,41.388428,91.32213,62.88705,64.46974,73.61895,15.482582,75.097916,37.51662,29.616308,84.49555,49.774326,56.01584,1.5673419,73.22409,68.99059,67.12408,51.565857,40.094025,4.947626,24.952854,49.477394,61.904922,61.997604,38.494766,80.0654,28.364805,54.744335,97.33804,30.183779,70.49052,15.850707,78.64887,17.758354,22.737307,89.66722,39.71086,57.913055,42.18235,44.110455,24.102837,24.42812,32.015446,97.11014,72.37128,59.188892,77.34323,65.50993,39.947277,79.73431,65.22014,41.18615,48.61014,90.488655,97.29304,66.694305,81.26116,9.663431,78.76856,64.148796,94.662994,56.98636,90.62664,99.71088,68.89335,21.725134,17.945179,64.62604,70.88245,82.32036,57.169403,68.04649,26.199615,65.191414,35.610428,14.615328,52.321407,16.567984,78.04384,54.294147,0.6396834,96.685,63.23571,65.11866,50.24084,33.271282,72.72038,61.432636,11.412828,28.433949,66.17434,64.807304,7.049204,36.08638,6.3151684,72.24691,82.00664,60.751263,75.2406,99.77945,13.605274,45.58491,47.14842,61.645878,24.328053,40.369358,40.749462,88.377556,9.830838,59.12699,20.278896,17.92559,6.8277497,50.721714,75.715576,94.75825,52.747303,39.264297,9.775928,96.250015,36.384804,16.683964,75.53431,0.87658536,53.286114,99.70715,0.11671888,39.871082,82.78329,27.126665,82.017044,48.816498,73.30168,72.751114,81.95424,5.7902703,41.039494,39.029137,56.93374,66.39522,4.417295,3.1286936,95.27481,10.636578,65.45474,43.571716,46.253574,4.430162,44.028706,69.85735,89.43585,51.989784,84.66196,69.08665,92.11958,76.58709,41.50538,2.447355,50.882446,36.18808,61.550503,59.983013,22.074707,61.679955,72.60755,66.38955,42.740448,70.72915,52.885586,22.534616,76.78033,10.034068,94.649994,40.27376,61.540165,98.331955,89.21843,88.122765,81.50398,74.88555,94.10319,24.83356,98.78984,27.930006,39.402634,43.25193,56.02109,65.44709,18.225336,31.699776,7.836363,90.09551,41.575294,42.9568,96.72725,77.41266,85.25343,45.264057,20.186995,20.658838,43.35902,13.522559,74.78033,27.88191,89.14079,42.12324,72.33416,43.887817,77.48901,93.34709,21.90702,62.22575,78.49275,95.77258,31.595722,48.241123,12.579379,34.723873,2.7394745,74.09861,36.399807,72.78708,42.339767,96.094345,95.26447,29.715446,88.23015,69.31297,82.28401,1.1926309,19.922401,35.661816,4.361725,20.77367,95.4748,32.735935,19.836946,32.217564,30.504404,23.131306,43.585945,94.20941,69.77376,13.390707,84.893364,2.74522,48.1787,66.29883,11.472211,21.353197,42.496605,94.78763,75.87515,48.21486,33.607277,8.205285,64.114395,73.053,46.193512,63.429676,95.32612,54.538578,68.41464,59.410072,23.72185,35.799385,59.614117,9.115312,75.92418,53.26259,57.855133,94.402756,68.266754,11.263222,56.49893,32.046688,96.266174,3.1653452,96.42046,96.53591,3.2865083,96.472565,22.258133,41.67655,36.083244,6.905051,33.830788,6.8157096,50.890797,63.044205,24.793049,44.521225,24.559671,0.37309372,41.69306,37.237324,18.94979,58.86715,12.046392,32.994205,53.07856,62.41088,44.21355,6.4871907,32.521313,93.49744,56.921623,45.74772,34.961452,76.58133,5.436452,79.06212,53.337593,92.723724,42.310223,51.637497,52.308212,24.69944,85.306946,48.357613,58.601063,30.4448,79.88907,17.158808,90.08992,48.242855,28.047155,57.74259,41.58173,83.48033,2.0539877,4.866315,15.575013,58.325954,58.3127,73.958916,8.216301,65.11504,67.05027,44.885868,36.305832,86.3038,23.893877,62.740334,47.560005,92.382095,96.20262,37.872116,62.89636,19.651924,99.300186,80.10681,33.25777,47.328094,82.04526,3.763516,95.79761,66.528206,41.089092,96.40083,34.82277,65.8543,62.419605,23.692753,77.862076,11.549524,92.67024,27.83849,70.14975,45.73167,25.981762,26.61692,4.766358,2.4840577,11.106516,54.69963,46.543476,80.7591,93.300896,89.67942,29.068787,1.6082519,14.607611,86.420395,3.880066,78.91359,39.63554,26.302319,30.779436,71.09361,73.33042,41.87048,4.294016,42.999947,33.351696,48.512318,43.371346,7.858589,92.77075,86.97335,3.2393463,46.748898,15.794329,87.54363,50.106583,47.40095,75.78327,95.579445,7.619382,63.45638,68.05478,90.66489,91.67507,46.806023,57.72074,6.471422,16.881397,21.63025,88.39246,14.673681,96.8295,32.63062,25.683054,20.974062,28.387869,63.834225,73.10024,47.590343,48.410923,57.885468,76.987305,20.844896,24.718779,72.05717,37.517426,59.59254,53.417824,87.4213,72.35592,0.29734904,28.358242,52.899376,53.262592,25.11018,45.775654,56.378426,90.006584,3.669737,93.139305,71.09718,49.14706,88.9553,47.397163,69.69645,79.00569,7.9977984,5.1604834,25.131264,99.87385,79.635345,44.759933,92.407036,1.7107503,75.43243,11.146094,18.738125,35.291603,75.11694,63.191593,72.02155,54.467213,59.54541,41.93276,87.43534,45.810017,95.43802,12.054248,84.82774,99.22817,48.975834,55.974274,6.682966,58.74343,89.44328,81.529236,71.257034,33.341225,10.147873,14.179047,89.11351,43.496296,58.261135,20.46075,29.739641,50.284615,86.29422,24.224195,70.94976,55.48129,45.547035,45.880657,53.75586,47.457108,37.739845,31.11259,99.47491,59.275677,22.967724,73.99249,86.09637,10.192928,81.19397,77.98855,8.464847,23.601686,68.11885,77.0092,99.64905,96.415215,37.409702,3.7719612,26.243008,67.90787,26.08761,33.19254,72.48435,46.755985,51.50796,73.52058,98.37805,60.434986,33.187256,90.595116,38.968292,26.804758,91.5358,42.352615,25.415968,78.50768,86.72013,60.202106,56.31876,85.50181,93.24963,66.421616,60.978226,19.178928,81.195435,81.98224,26.328772,28.04059,19.790388,77.15819,77.27749,60.30196,93.771164,81.78115,7.404602,44.24476,10.251763,25.409365,81.995605,63.27789,2.5634105,40.584846,4.1775756,28.79028,41.65948,11.043164,75.330765,82.326256,20.944418,71.473434,72.5102,22.660032,63.393208,39.22187,64.9147,95.754395,22.196608,70.68897,45.263493,44.394882,70.387924,33.797775,25.62721,6.3419847,41.50263,63.75683,54.700867,17.46199,59.73291,85.34017,77.887344,50.659416,99.32935,70.311775,29.15582,87.82898,8.304719,80.56935,93.33581,95.702835,46.778313,37.069332,52.1568,20.87017,39.558887,22.826807,91.56744,36.634727,20.709799,60.326588,75.771355,63.31306,49.986557,58.621822,94.75169,58.02102,84.84621,7.188836,72.37216,62.668106,95.635345,25.278711,58.336327,15.065355,80.69644,4.4484453,98.09063,75.04177,29.887033,71.74931,89.338776,16.581436,48.106586,57.183666,2.6609123,51.8259,84.76231,64.444336,58.965393,61.253326,59.30196,46.24951,23.316568,15.316262,11.724531,32.227318,34.963806,91.22506,81.56172,69.74228,26.179256,69.41817,43.578396,89.86066,89.72135,10.441749,45.533573,18.514269,98.60666,23.024883,36.23501,71.20753,33.534946,92.108086,11.910642,19.48698,48.840103,12.663575,56.946198,32.88429,77.96742,50.77001,30.090004,23.910688,16.696394,52.138203,20.60103,19.479593,41.328705,9.128386,66.5269,63.158165,77.55289,71.87748,10.086824,61.964096,82.65317,94.62213,30.896713,8.728912,77.317345,31.372019,68.10855,92.37999,16.118029,10.899981,33.563766,41.23591,66.72954,79.48565,98.16978,28.56901,62.507256,41.311623,17.20288,75.26428,81.34977,37.722073,81.642235,25.026308,72.88201,8.191009,60.625015,98.71469,49.696747,7.669272,8.118706,85.40499,21.991611,51.80007,26.518692,40.10116,49.913177,49.942066,95.76417,82.926994,49.47561,70.03424,62.006386,53.729004,26.612404,52.27203,86.312515,89.8919,87.15617,31.509123,18.240196,20.545034,42.931313,93.00262,2.735554,86.2625,19.77653,34.755127,39.98996,37.711567,73.19012,5.3317065,69.593414,42.297882,53.141727,98.86976,96.27146,72.75246,43.884148,52.711315,19.234144,68.056206,5.788903,13.000439,59.043987,20.418337,68.60984,10.684888,22.84855,95.59603,68.15873,48.171825,38.00852,69.496666,30.606054,79.850136,62.928623,17.14992,49.876984,53.84563,9.374244,67.15377,84.3541,50.92676,99.20002,79.149376,45.39656,16.409754,46.997803,25.090553,39.440235,21.998095,63.017754,79.044106,54.78436,78.78544,38.694992,3.676476,42.873222,53.974884,23.903875,99.70176,58.84159,33.040684,76.137665,20.923216,69.78988,86.5194,21.82372,61.31874,14.003487,98.75227,67.34707,1.2282287,48.045837,56.245033,97.027756,71.143425,75.576996,36.18723,82.78123,70.44075,28.968637,20.026817,44.314335,85.35981,32.465534,63.873734,86.372925,81.83629,51.33392,79.72552,24.255348,72.134544,40.483677,20.282158,43.958652,44.165928,90.75337,46.07679,16.284874,3.2917125,10.709247,1.4981614,48.181812,27.147657,39.640648,85.88361,47.542923,22.95364,79.5798,61.200684,99.8385,45.967113,31.852573,74.31148,4.87729,53.52718,3.6415565,67.48314,93.514244,91.64947,43.559696,57.27873,22.583372,55.944874,40.85084,57.47049,65.20775,41.73844,68.34554,86.914276,44.920425,93.047325,81.82584,28.933863,37.150726,67.57394,61.93441,81.680565,91.241035,82.48559,34.593826,33.594322,15.788339,96.499306,96.261055,6.0280547,31.712727,60.01339,24.314913,30.540049,96.82667,67.46836,29.782505,97.31915,2.3134592,50.870735,36.741158,0.45280832,18.796537,88.6926,42.826775,26.677015,13.719182,50.27074,15.072863,1.6042548,34.602676,61.80499,76.4161,74.73976,29.184473,76.6664,19.710453,37.74893,42.39213,99.07915,19.939156,78.8162,0.6639179,66.82833,17.938831,10.900166,8.794307,42.60347,69.0916,5.9693503,66.05749,83.60935,9.684493,61.999847,21.857649,85.407364,66.1532,51.110542,10.803134,4.200847,51.211433,2.0186155,28.485037,68.15519,99.00806,58.76704,75.307816,64.49391,53.781452,35.934498,99.70407,76.10848,53.224747,99.593506,43.20085,89.60305,95.35465,88.95095,41.44274,14.304199,82.6943,58.861687,11.99269,26.684977,15.832471,99.329704,32.498955,17.844189,60.366737,41.353695,94.447464,61.319744,95.21356,60.999184,22.414074,29.659788,74.23816,28.118874,70.703804,37.884953,27.65785,92.679955,11.990929,45.275837,61.93501,3.6795108,87.35245,70.78958,76.6664,90.60697,34.082764,44.891956,43.93824,83.90884,19.13648,95.41146,56.389027,64.403275,42.78298,83.66472,93.1892,59.185562,43.508194,87.917465,3.3981867,49.173748,19.3567,11.314786,57.67046,37.662548,68.61208,76.50348,4.6062093,60.918648,83.07371,18.269371,45.4122,89.0569,36.24015,18.93176,71.03209,47.747677,97.32058,78.58666,47.637512,23.003347,8.474409,71.11075,26.621021,39.745102,16.789362,86.08172,72.21056,2.23558,42.800175,64.625175,16.455055,14.810424,53.979588,29.954094,27.596342,60.578194,44.439304,1.0990762,80.29774,71.88685,37.265713,82.55323,24.37044,66.212944,39.005592,96.74074,26.488102,77.1037,64.62384,48.634933,91.07237,29.835056,1.7518207,53.182858,59.581867,93.482925,78.66322,0.5315646,71.1859,87.8872,13.707097,95.029785,63.116795,63.199535,39.909084,26.462418,72.039925,81.3747,26.930403,56.873856,15.456643,91.67507,61.936695,57.015125,25.985813,32.486305,3.1379068,56.032516,31.633623,31.173481,73.467606,5.5343122,18.71922,56.806458,64.62045,56.372013,86.58758,76.610535,10.733603,94.72755,81.77577,68.734245,39.818684,20.690228,24.989,99.8696,61.703213,49.85373,18.718803,36.29373,51.600147,82.237495,43.40704,19.945538,96.2922,38.987434,81.53857,21.262842,51.399555,17.518995,29.707254,16.953976,11.518454,70.33261,38.152126,48.032707,57.771904,89.3188,87.01421,39.469284,2.5600913,47.41624,92.448715,79.19326,69.5427,92.279655,69.82015,30.742714,1.2251964,42.81652,30.77141,95.13144,81.67378,72.90165,57.59402,61.194397,93.262054,32.63235,32.58151,70.94377,17.413136,86.3671,89.36649,54.48386,98.65284,42.534565,44.32071,55.22453,99.76271,14.772226,84.345856,59.402157,66.429245,88.718094,80.40202,83.50053,64.33454,63.45932,91.2093,72.272255,65.09487,74.98811,4.8896065,9.957516,6.984344,90.03781,15.76473,66.69286,64.698006,49.347065,35.519146,23.653852,4.0145936,92.11482,43.08228,61.188286,42.951725,63.546223,81.64745,7.105527,19.905413,65.59661,36.59651,58.71591,77.218506,56.202854,59.999046,66.12223,94.02331,17.60674,45.88721,90.77463,33.41035,31.30909,43.459187,70.715996,63.38125,9.389616,65.10594,20.327864,20.812733,12.667134,67.71936,55.61871,84.47928,47.51709,72.53574,34.54077,86.47812,88.36739,71.117165,43.35433,16.817337,14.063733,57.31687,65.0566,47.78328,87.25787,6.3677335,98.403496,54.14239,61.70355,2.4840922,28.485184,36.051395,21.91256,14.493323,48.63348,16.711058,12.514866,89.83498,17.323963,53.867683,63.728638,14.218502,82.03769,44.46766,58.669884,29.757244,25.074144,29.929707,55.151962,68.79538,13.187478,1.358539,71.0327,65.56057,78.44957,24.049408,4.0781727,43.06093,56.87164,58.78381,0.12541895,33.72787,73.00279,73.58216,92.56337,78.36293,73.34406,46.95208,98.83977,5.9396796,36.874943,57.056507,96.04909,25.083134,58.958477,77.04468,65.088234,80.62444,14.620238,41.535122,52.13321,5.882237,26.362265,11.749187,28.751373,63.964523,9.182239,52.553066,7.5220675,83.77257,45.283623,42.30962,39.8105,53.319008,73.08387,1.2026396,6.1268625,29.77451,9.001536,67.54264,49.305546,55.617653,0.17603734,33.739117,21.01507,2.6654832,32.261795,97.177185,38.19385,90.86866,68.320274,16.500292,36.345753,36.435688,45.77095,58.873665,61.73224,35.496822,70.55431,25.843372,93.4564,35.04273,25.80022,94.52591,51.513016,70.60649,24.737644,39.220093,40.19983,20.176563,1.477227,94.83888,82.08315,82.45444,83.11196,79.31052,35.731594,44.993153,79.85835,40.573563,33.117805,46.64471,98.44577,60.673496,50.74399,90.76558,96.20825,11.533486,91.17282,45.79437,87.50569,62.678085,88.93228,37.03777,25.614569,2.203309,66.39623,23.95853,62.40799,1.7363507,30.886019,94.19162,54.71862,74.6144,53.83806,22.13055,52.503567,25.699392,12.78602,71.70847,59.75551,72.18218,95.625786,29.670013,18.013306,23.102736,10.940057,42.06301,50.80781,6.075209,61.844547,72.13568,50.570023,80.29457,40.234608,88.58027,14.9973755,68.567055,35.79651,66.37154,74.06629,43.38755,24.58126,7.1782436,16.445307,94.40058,29.727558,73.53706,14.255196,90.58837,5.56902,6.3696446,38.955414,35.117058,51.37431,22.043585,53.73084,2.380369,0.37721398,33.57903,22.363459,92.63861,61.777546,35.929737,65.923615,11.553069,47.473328,45.843163,67.85457,48.934742,4.907468,74.720924,13.246496,72.68385,54.9851,24.37182,56.77794,74.96262,3.762702,35.37344,82.46411,17.98262,56.587605,25.565119,61.48032,95.177414,87.05602,10.9687195,46.69557,34.256054,83.435555,33.483677,27.43316,53.759846,4.6404405,43.167557,70.65673,59.670395,3.594501,70.15752,75.594894,27.762346,54.340595,59.015244,96.52865,62.485962,99.94366,50.24386,47.656616,66.81055,32.01618,16.05234,33.52464,82.66983,45.79467,18.170288,5.1111283,6.5580797,72.52392,62.08263,94.937775,49.70306,67.21115,62.009808,72.614044,92.154495,49.882477,64.556076,30.676542,24.64427,88.339615,32.14815,68.66952,59.60275,57.1206,27.124743,73.91733,20.411419,2.2282817,16.002026,32.44499,85.317345,23.111984,90.46243,83.88443,80.02068,80.19517,30.48021,85.91876,85.71619,28.288628,0.634522,83.95651,53.68856,30.786255,36.09066,50.014084,28.910856,62.484596,37.893887,21.662586,95.90127,87.11495,28.624825,30.81333,52.92182,3.5805314,93.517,86.37595,21.432339,68.70064,20.496586,58.13051,85.749344,90.536736,59.107174,55.036266,82.17489,40.06913,86.30214,57.060165,45.973858,70.63332,41.86991,80.79347,42.243534,95.56712,30.148144,90.3604,3.874541,86.10021,63.43795,90.801704,98.19991,27.294035,5.3372583,54.03851,4.045875,93.41003,28.38508,72.55307,31.9381,75.97698,16.76778,96.113945,1.6294868,47.184578,47.1074,0.6483707,0.32166994,15.41703,30.787563,56.510403,52.72495,18.415693,4.5439873,46.721138,88.50399,58.483368,90.965546,15.416695,60.08176,0.43035147,26.852175,78.786736,71.2157,93.4535,61.642612,74.41552,58.565357,66.02283,16.572657,62.423386,78.000374,46.314632,23.397207,35.808193,0.9318314,54.850925,97.92925,8.520299,44.90783,19.274275,14.647417,81.80914,52.853584,79.45003,15.071984,95.04665,70.333824,68.35571,22.308876,5.6850796,35.467144,21.727669,33.113983,0.94224864,49.43177,8.03495,63.943382,61.389446,4.86547,60.450047,80.85196,35.259007,73.10054,94.29983,94.02973,9.0728245,87.92964,90.7913,27.312145,63.09224,85.1959,75.5307,16.887762,89.424095,53.68069,27.622854,0.117761835,22.143572,43.58192,73.82885,4.1978045,99.04889,46.450256,52.86766,35.138332,21.14211,32.741558,33.87133,63.342197,62.551117,83.788605,95.913704,27.134012,67.12894,52.45903,97.83972,92.93193,75.458305,6.9901423,55.660023,8.955965,16.672655,44.72272,44.20514,78.81691,7.631143,77.74229,39.856976,73.399704,32.03144,64.52656,17.72372,89.79344,54.042625,56.12924,85.40779,47.76667,25.697763,58.70642,18.217669,2.4904864,33.27937,54.328144,72.1887,59.190838,66.12209,43.39495,11.749352,6.625538,48.81779,13.833117,43.653854,85.30139,93.00874,41.61842,88.70514,49.137985,0.7654804,7.6089044,47.641476,26.306044,29.250067,76.61929,75.991165,52.71509,5.4795523,61.96271,18.305342,67.1581,40.6603,30.555044,50.471424,74.584045,67.03752,72.07901,12.2957945,50.420883,96.737595,44.73382,94.719955,24.669865,85.94731,14.942267,79.31402,24.645847,24.023973,27.07051,83.6819,49.613663,39.806656,44.69295,27.603422,57.187115,99.40983,35.02567,45.117687,44.70648,30.342342,3.805824,11.570113,19.239155,72.585175,77.046364,21.423845,50.19109,46.468452,85.066765,35.099953,61.53579,63.724304,50.864994,16.762003,26.709286,82.013275,23.00763,45.453773,15.075849,79.0237,0.1718164,15.840339,15.705152,74.3034,23.434351,80.897964,4.9881997,87.521935,33.654987,25.61999,25.03397,59.39418,1.4853024,11.0123205,79.34253,43.237713,81.43556,35.908623,63.980843,12.989528,84.23608,15.145111,10.785656,17.108652,59.7608,46.985172,66.732864,32.68921,11.582425,7.0313983,86.99306,59.752632,9.983189,14.649858,38.286396,10.361363,59.453438,2.8415678,86.481064,18.990032,16.306345,76.13503,76.23941,69.01594,94.82007,6.0154023,90.43214,42.327934,91.82014,3.6578138,86.09965,78.30872,62.405132,91.53396,80.671196,17.799149,27.76965,37.69823,94.13668,26.7413,15.554583,11.7669115,60.998425,78.421326,86.022865,85.11374,91.36579,97.07139,89.66218,18.633627,68.48566,55.466076,52.263138,90.71403,53.089878,55.626617,47.66843,92.790504,37.253036,48.61141,30.711742,23.55843,71.21519,95.168045,7.7173476,54.16474,18.562956,28.126394,13.145865,12.8362,78.40498,66.39331,13.712953,32.743416,30.56561,69.94201,48.434814,57.628464,22.836586,69.43014,56.593037,56.283443,71.09945,80.527054,68.36705,9.122369,4.6539106,46.99353,64.23814,59.70784,17.77828,65.323685,23.141418,7.135514,26.303156,38.248135,15.633787,74.147804,16.2499,63.487144,27.838924,19.9675,71.12686,89.44739,24.16094,73.47817,62.833412,8.180843,55.42857,81.75215,83.650375,34.42154,50.68105,12.147742,66.291214,14.7947,16.64549,5.190483,20.461275,48.322285,87.09813,59.144104,33.264038,51.728676,5.575482,42.534657,22.875,22.376986,5.3148274,81.487854,39.579792,25.028795,60.765182,60.698368,48.484432,20.153822,63.146473,26.691702,49.622433,86.63981,82.39642,42.85477,36.136375,98.751884,21.695154,28.91156,0.645027,18.741005,53.978924,62.227825,76.05229,5.74563,99.90166,6.7896037,98.284294,30.215204,2.5194116,66.289474,71.904724,79.899796,45.597755,99.737656,3.570223,94.67383,53.367794,97.92731,89.5252,60.93705,0.9142069,50.386364,20.118622,24.99382,91.739395,27.237652,42.37441,4.020776,40.13513,95.47369,13.965044,74.54306,46.68055,39.76049,84.09821,23.566872,46.44879,90.36102,39.22077,77.56056,52.44547,45.422653,85.13707,83.28915,23.660826,38.198814,11.316997,28.395452,5.6239457,8.613117,83.95326,17.017008,93.92473,87.2873,21.86886,67.33719,60.07835,73.435486,35.934055,48.16689,22.231619,18.014883,23.523466,28.844757,27.628544,63.424007,3.987435,84.727745,96.874855,41.04828,73.27555,20.365017,7.6381683,50.21745,1.3848002,76.73979,74.327866,5.812085,2.3344543,82.4118,81.40608,7.4154596,95.765236,56.727398,81.29798,44.054592,73.97904,80.980606,36.871643,84.97145,99.0519,33.852516,42.916996,18.757782,91.594864,31.072012,7.5758376,97.19147,63.59677,39.13613,76.43937,48.97513,35.115337,12.822161,0.21225949,48.17655,59.49867,80.30845,5.831492,17.677647,33.549267,26.065151,30.991209,18.480686,62.23657,87.435425,71.93733,52.29445,58.571774,56.5337,98.73664,87.49234,26.623407,57.66974,81.90653,67.91348,27.474707,78.6246,80.279724,26.059069,74.157845,6.604344,74.00639,74.54539,82.1854,7.4490457,72.18082,27.01744,85.8035,88.30648,3.251506,73.752716,76.45616,78.403946,42.863907,39.018963,15.527294,15.370818,12.951115,36.8256,11.5317745,6.5865583,28.88033,80.58762,75.33673,4.9379845,68.11399,73.372536,80.514366,39.70453,97.235596,53.27138,8.567843,6.136166,37.087444,91.04918,53.81623,14.559855,63.341736,43.66446,29.571745,39.822754,33.476482,29.09003,59.745956,26.22429,66.03886,19.544733,22.770826,22.958199,69.20882,57.309845,14.365793,39.655533,75.48599,86.792564,48.214466,96.72476,74.08845,34.52954,58.8176,58.719494,26.399872,54.700115,39.95948,58.885674,67.90578,61.696465,65.15032,19.375164,75.67586,96.33521,78.486595,7.661924,17.03438,21.901478,16.448317,0.83660805,10.261495,25.813387,89.748695,22.225948,24.671936,44.620556,18.754501,16.332003,48.413715,78.23925,85.630104,85.17927,19.176548,46.02716,37.71973,12.34502,90.99265,76.80332,86.96757,76.85482,80.10414,72.20247,28.319473,67.6224,20.756971,94.87973,36.411686,65.79954,8.121232,74.07656,97.724625,78.47945,63.257984,10.802852,56.158535,24.249334,6.7344003,64.65123,71.327484,64.56628,8.812746,33.942104,37.78049,80.56141,49.104385,56.509094,91.45222,21.23947,69.51017,40.98661,97.0347,57.477524,85.13122,85.05231,88.62192,67.05642,81.43807,87.86924,67.50952,93.62533,63.127342,38.453487,62.41023,11.409165,52.937424,57.864433,88.54707,2.1952612,94.325035,44.484383,20.629107,13.103224,20.054296,84.97655,78.065285,16.999521,91.28595,20.946945,90.28765,99.52415,48.353973,83.593025,8.69622,28.204687,20.197906,26.652231,77.189896,2.3214498,42.272156,20.554075,37.769505,16.3847,61.52836,30.453966,3.2051852,49.95646,51.538784,0.30916345,33.287373,61.036716,64.9189,51.92516,71.13503,66.90157,35.353703,30.459003,99.319984,31.235767,81.78584,60.842888,39.653103,91.042946,61.858406,56.998047,3.1849174,79.3415,4.5643926,1.1232224,20.945095,27.707655,19.257929,20.6745,25.721708,89.11633,45.827732,63.438038,17.159822,78.885,39.778603,79.066414,77.254616,82.78832,48.51362,55.063778,36.825985,72.51456,72.3359,80.2198,8.655456,83.98733,12.544693,91.046524,81.75648,23.829409,65.215004,8.010615,70.38275,90.912094,8.998118,14.813612,71.52623,81.04059,55.922,1.2015955,16.24668,29.661388,24.907024,62.54792,80.45418,94.04614,41.25064,12.643889,17.383133,46.242,7.3774195,21.952007,77.96505,72.20521,72.44747,98.03619,51.734554,63.92031,19.111282,52.12534,56.578842,10.064243,95.27014,92.68032,13.751173,56.548615,29.977022,10.880918,41.72741,86.806885,72.025505,35.76387,18.295748,78.733444,14.147409,72.02946,76.77337,81.02014,28.794226,62.3566,9.374118,17.317957,55.865803,53.96193,98.9423,1.6910799,46.829353,28.052475,10.66166,3.1532204,50.493492,57.330338,83.24445,65.897804,71.228264,2.5000045,29.980717,91.24586,79.52391,78.27309,71.14082,81.108505,36.913876,59.411545,53.81387,25.54993,58.081963,15.743028,35.025673,38.45003,64.46764,78.436745,8.920599,7.328631,56.37169,10.769455,58.556206,59.416977,12.38242,88.763214,39.854668,78.83654,14.576374,71.730415,8.171149,94.37416,63.45153,64.85582,57.365574,76.279564,80.44981,34.17938,75.83738,22.435608,91.56511,36.436375,41.67591,66.18184,66.54669,11.700394,60.241226,37.37348,41.93904,88.372955,31.9316,14.022756,2.9494987,41.369263,21.040443,18.173508,67.58061,96.209236,22.736345,96.681625,87.63886,24.030664,12.904469,17.928661,31.23907,67.03228,86.8864,6.8727646,50.63047,12.577262,90.34469,6.026869,74.92501,61.6341,98.35979,50.592175,9.05536,79.35839,1.3693404,59.95974,25.825472,54.81712,30.00092,33.83927,64.95116,33.791603,43.773506,96.81778,37.77529,39.592003,39.084404,32.060463,1.9025608,2.4049785,37.326088,31.044977,40.21721,98.05473,19.89709,16.712698,52.54108,39.662838,58.47137,46.93672,3.571698,79.92557,96.46162,40.505917,53.87933,71.0266,37.79487,91.321884,28.863855,23.358736,11.0813465,71.52318,38.639038,58.151466,32.438107,15.836895,27.439598,38.5084,84.10184,8.373312,86.82631,2.8447015,4.6546926,59.341347,46.503365,87.737885,11.0572605,65.150215,96.54446,91.69887,57.164463,65.93022,99.999435,43.560276,57.064426,47.07886,21.447136,19.926609,88.66878,20.63052,64.82727,76.56991,3.9002366,7.60853,0.37324995,33.988613,79.245895,85.75667,28.940834,75.995674,86.03553,41.2291,51.94649,39.4475,75.466255,45.19015,43.808468,69.63684,21.547894,8.10818,48.682343,59.89677,43.46514,17.288078,3.3012424,1.5210185,69.36534,15.724173,26.89559,82.63141,84.27247,20.47251,49.915024,41.24048,64.87347,28.006601,82.08301,50.06109,60.177517,48.589268,2.8273277,89.06504,88.80986,92.748146,6.673476,12.394319,35.908638,25.127726,13.93113,2.1517515,67.96783,10.840418,41.941338,51.369507,98.44626,90.514694,52.270645,2.6214113,55.57527,77.40739,84.18756,21.915293,11.125624,61.201828,12.326768,12.99532,94.730515,96.94541,62.05723,11.948607,23.670404,86.68855,83.5476,8.715585,98.85745,92.506355,81.36624],"x":[33.02129681077022,3.721947646766155,98.73054961274048,81.23854676839765,87.80209239230159,99.06291751307607,1.3014725122489357,2.51998919257973,57.98138724466438,9.81581500495019,78.89891345582143,65.52185332963259,74.51133365114694,69.70073853358915,51.11570775983382,71.91155397974384,85.22769166467421,28.93953251997401,87.78311487770205,40.753141692992635,75.5708057183471,33.08705900295601,65.51469011671213,56.92908513093254,25.309411783726688,81.86038968011137,7.831867056399567,45.9300269233528,5.07726025938412,24.702445195450085,18.507623172857635,58.22064862693465,93.05673861078387,69.66383004466061,12.09524735777936,89.92634336041517,5.500978030002502,95.94467377140383,37.8142263069125,93.15883292981198,67.84719492166109,93.55983249043855,58.55415697299323,79.90900307905713,85.57862735692926,60.68385081562264,21.501414083547555,87.26102119537175,72.337375654312,7.545018333570153,32.50415905684474,23.939743521608392,79.84857300231725,55.3197804258162,3.138702947667593,97.31749693082226,86.19525858048576,75.55482390974771,15.67334814193292,43.78343044607975,53.39334935362513,76.99212499139449,45.538970799045906,43.90159313556117,89.82352730271424,2.228828416707529,12.494304853016281,22.821920611305448,55.28543263128276,10.136591996012246,32.018739147804766,86.24391990773047,30.377608866341077,57.08090181243184,94.27166655507936,40.48303130611549,40.53045840512104,9.780311370167317,0.6452083872617753,31.489375595770998,2.484904382307107,31.019073129796247,75.41464967416185,19.268023225912234,73.48734839661871,43.03303824245103,80.2133287873359,31.31175954468941,45.94062975773071,73.58673419019863,44.68840373895291,73.6579593485002,36.69426113113998,24.52315696406181,11.743428004993127,92.01092320465523,49.692382941780956,62.37906960318177,3.346506603296706,36.54800713960831,69.52724140388737,62.717681303679406,61.88578991022639,19.38583177931774,45.35382320256319,41.79973659376076,40.21821377635904,85.67442008647694,88.8298103320348,40.85394876091898,24.31886990940808,46.05265965881941,94.04729079699425,39.97466607271571,5.951230278990904,89.04569188896504,75.57541555612798,8.039902316936487,66.83995776597763,74.5251494928954,50.131414372145464,49.9991279659605,32.056522940396036,14.666079588999104,32.701793698240714,73.07965715799102,71.76824874250084,7.151739815406644,3.660491469787097,52.18421303557289,32.5288359546207,13.910882702628392,45.079633952932866,28.21932868821445,54.42494860966776,11.881679542500645,38.516364854476116,11.69851466991253,1.188016017543858,92.73889880598148,87.3836980277311,68.12367899242938,80.20516746052118,75.77193290432966,60.53380894484498,43.056981365425806,30.28379522327016,93.64622569331799,55.374685918084545,82.51302248201628,91.92693623912952,80.16243729765434,39.10284019298659,54.952682543574994,21.601475192034215,15.744614260368584,52.90498734738796,90.42714307276462,57.778197269639975,29.855885077992028,25.445169842811268,60.550189224124516,69.40511673927269,80.1599248008751,70.01392289569436,95.20572262304914,8.381963453860642,85.66362922577304,11.261947524151994,62.19490920830811,80.81350240657319,63.58053928838958,93.11788572669123,47.626860548034486,20.04404548171337,47.00860632196206,27.410989358960325,24.308083810798465,13.096292307982127,40.35188187320984,89.79579876521365,29.673732011031017,99.50605480830981,48.663582031474505,76.15641176293964,48.43856604614941,75.98641477140518,6.511721559224126,60.24968624314895,21.479731571691197,34.94779639371354,41.930097155944935,24.19642770183611,50.710896010989536,59.943066813676836,89.69312253462896,38.20632490697823,59.33708547028959,64.94109089282803,12.44343834296745,62.99796261968038,88.72111375984208,97.97093117963261,15.49521237160143,89.86007330271927,95.82921193407805,22.1125911903423,46.47940640689322,17.02620471892876,34.95741779415857,40.01694368379933,38.93369905637268,91.91178767053516,67.25826265420419,9.759241639444394,94.43115707876659,90.99234841276186,37.62644048390905,70.14588486878233,81.1166280023393,39.718808343529446,28.443102895947924,96.63744863142873,45.20226046256509,72.62095238772552,67.62650804443717,46.63888041693484,69.61375455282786,93.7794284768884,13.942224630379041,18.63393757383376,68.88062626991555,95.64659170841236,96.41852431566151,96.57817808062075,94.23138369484327,2.42178156908357,30.37104615474947,48.1706874986105,73.61833604381737,17.34509960575291,92.7223229246713,71.52058664456496,49.568340729929474,32.602854464673335,13.796686842742323,77.40102931301273,88.77374972009109,22.26549630671757,33.69531672199236,66.89234494203909,59.607727336483926,27.64577807231763,77.02654760488092,86.84180341604001,8.638894539547026,18.774009893324497,61.41868832909032,6.245637791827285,82.55234884833826,30.710395758216123,57.568071963538294,91.83371508345658,2.5116256500758216,83.11538416548068,95.07513200866548,81.04096172605402,42.34703575838154,17.210344855234048,10.107331806784625,1.8537962118515772,58.11744393272744,33.67145299855196,84.0687831744883,86.7698454740941,36.925704282659,75.2742462721296,25.265976084720155,83.71021667553777,31.875911243027023,91.18820180350173,4.723820747646967,46.40681290729428,47.27784162403734,10.878960370641334,9.66791389613525,91.86713999542151,40.13369588856812,75.02705942300916,58.701915278839145,91.05882846109924,44.158527394636785,35.30150375482742,7.04517602662097,69.96825432521428,37.17927798416822,29.007722267908708,27.31243690592344,33.553061640548634,14.493334027334159,71.67701173083346,25.181359813711367,26.589296552089404,92.12767713537983,31.330042058782016,30.865585051479062,1.764307298894674,15.649388785130236,96.37982569361505,38.72697398270323,3.754832367502159,81.59347578238531,62.10670185072276,74.19501447130699,36.82948450698888,39.085623965403215,18.514674093507,52.1663310128989,77.02651717430906,64.01762406249298,45.19880489364015,69.93214455047033,38.49410078816443,32.15830994431227,36.52397669436519,37.51160083689237,83.78834194037232,72.4072070120728,14.455820907242355,90.98370501335498,11.69995683242181,66.93873907077092,13.142965117110105,70.41944259144934,52.778606712770795,11.875350874482926,41.230167829694565,88.65150957915228,15.23386270646755,40.32631009231874,7.154025620105065,13.386148543271737,54.83043000118219,16.124735513834786,93.01419282028579,67.51482549977383,71.2472987013754,9.612185751416035,67.59024877642031,84.64851218993289,11.32361758075393,22.83681093506861,72.66505640842115,75.02161133611023,8.589116636406935,23.81301182988317,88.73735354615616,48.83253678519118,37.242585566120766,69.61300089708871,67.89358305508587,74.43575218957021,3.822435153652959,7.7401941922275,2.913379464798105,25.275481189881432,57.07021167899339,78.34104875342868,23.827096151468197,46.20792793912102,20.742301452798685,69.7641497999639,90.25181150482366,12.6245568902704,10.622532636919901,42.43225839804266,96.65765902226998,20.859080405309914,62.587921905760794,53.63615915857765,39.51148940108331,41.07083947687043,63.96982264310973,2.4071979004009036,62.348821456810214,90.29596289801805,26.13305192263329,98.607337560215,46.051910649599115,64.10401170296223,39.405504960508885,16.044088312474834,12.497319719188926,55.93438664746453,27.447421335232214,0.6428625175978642,4.2698909552535635,3.9998712407827486,14.799584051842729,89.35117503266773,48.64211662429738,58.94446477701478,57.963456777454944,66.58297410575418,71.22266852642875,33.87231086674005,50.524758478485296,76.8528785658934,62.661887554270656,27.925693318462653,80.1864027068358,41.61434080694908,72.13616947775978,25.83951692501436,12.92043187448153,73.9719858762017,79.50355367113059,3.7108272504513096,25.28243823832046,38.52841729399395,2.9620646035982356,44.28823796370106,72.7070089385087,22.305917515390984,18.718461949702714,45.01942981667696,32.07758934186328,95.9538753278115,12.336928212666853,0.7409862484476282,80.09386346956724,14.503818148374892,67.90466311336371,41.33180710332217,4.153436233418106,12.068483698628828,8.216453058731133,39.35407658538708,31.015376498260196,13.88561945737765,60.27325329405049,54.49810708456142,41.26127023451935,23.982801811713095,46.954218892916785,32.49110924391027,64.4368081828511,64.10076948214144,43.622850626581865,4.17816534656218,83.76133707534751,17.574108896305184,54.81410248663906,8.493726240952459,2.398466783009845,94.78875371415427,63.82051857646863,7.409475948445044,65.9119215299513,94.87299082217552,45.70266531495073,63.15078417337521,57.888393491789714,55.902087895634466,25.86249009750834,49.97040088740173,46.84101260016492,93.35064521941574,82.52771519708564,89.8782983608348,34.598313543408096,10.123854787872656,48.674563349390986,90.71573267137201,5.457139240721864,33.73820560979972,87.00435249182085,28.817517569842856,12.28973286244499,99.12438044357971,97.59950835522463,35.18333500796693,40.67888815582642,3.917918679161392,33.74192862441097,60.74652011150806,80.2917606999145,45.06427755519433,21.795818718788095,80.43392616615381,22.174908836160935,65.3033386079642,56.25518853849828,91.22379366982274,42.7433362816729,57.52898391841646,81.6603578871518,93.98417618441441,42.95966894996509,28.078895418736217,45.7696059094352,60.86708981456187,53.15710102947099,60.79480859326986,90.57890428028377,40.41457005804919,38.36980805783454,54.41446740817884,24.117006367569726,5.570368457308095,79.44538783058063,92.71030692896537,82.80540622778108,17.762914802541342,97.96034820783834,28.734062117608282,15.171996444973779,1.3056570577189341,72.69095412248147,34.5535080893274,88.43590088565345,54.18885715055737,21.0898468181798,20.2629280440592,37.963402860261,6.330908853594453,58.235676529685186,77.81487672471805,90.28817297173862,95.53792773201529,63.57833854415805,81.09214391132767,63.78030247355176,58.79158367030875,30.967038987334984,17.178643865907006,11.516631008927336,92.43796183449477,44.70156447971008,79.16871666400426,26.22054864671577,4.41772843043966,52.961790260622585,17.306979721095693,85.00880280748943,93.17426634797147,60.60896669702031,52.67433391993741,99.48709735768955,12.979679704785042,21.05345064413062,81.22628638214768,44.11413727945326,15.765192183134513,75.41831551270278,70.22450741270706,18.529922247739595,68.4970738084732,47.43522800761336,68.99104346953575,25.450246813093045,3.5075716470843843,92.08094122623453,16.494723261595425,5.999763354886067,10.945833590625309,69.96842551471842,1.3933348272009538,96.56618889623303,54.968519055309294,50.94728047638567,73.54412035696282,57.52818006173814,23.04482653636467,78.65787650714323,18.22853463292111,20.442203648547174,72.99479767154752,92.33670593644347,10.25952989562332,73.8941186385433,31.464409052117837,7.962972972806792,57.289146195496365,59.35491112660047,46.37687671819495,20.4973614019325,97.80682276218073,80.43888931889397,76.1967564538774,87.96032375964006,79.31405455594891,34.73292631739332,69.0523326052817,80.59841672131634,34.13350890730459,20.38220260264899,54.581215218692556,23.550216460220707,77.06679533928647,10.276368997703,53.02364598511421,46.78808967384841,28.991590839097235,48.91772920680586,47.0038287963323,10.643970533175807,66.49335428684225,90.23592686223596,14.836182267718911,68.842119557251,49.28820754548744,54.9204228294738,25.631736741362985,79.864231397217,6.332082711936637,56.24404925752157,61.81156032653803,31.569780364678845,5.455927568857177,43.79811192781674,68.53811322141352,23.20903838505749,83.05737120216345,42.89127298306526,82.40451480190397,92.07250734909444,69.14602706419456,56.760365552931255,33.71984512747442,67.09525499079322,97.62127016123353,56.216314902361475,84.90046978504365,94.45281004860176,54.7444887693196,7.649965244071399,56.49359640085605,35.428794981209265,92.69350928888808,60.11536112804908,29.478873123089677,72.04045130847952,88.5830630245308,78.77165001244366,58.28792988201806,91.26387164953323,45.17096459557444,91.96002702069734,73.25817891098608,90.64781078076311,41.910429187407,8.45223866657905,41.04551582840361,23.485147306646624,33.25501491772055,34.603330198859325,55.582368125652884,58.19648441576395,97.58633550396023,52.914253605335894,90.20906715285297,1.098838846428174,92.76406826332307,1.9241316395081864,52.904628989543156,14.216073849364975,63.43569243375573,49.35243092280722,40.31148931225107,76.15901931322429,1.5570509972489321,82.2817537333039,99.70736366715526,33.07329563192828,78.84962465664516,51.51509816635363,83.97258826778511,25.070526015731843,49.94936374827375,24.850304474084485,4.996659023443684,34.79177619225627,68.83880936608683,0.9855605255265965,2.738649303765739,1.4028261785008267,45.63611054600315,51.34094079007138,10.951194315638457,45.53910127759097,88.31380151945474,35.867787979488774,5.4308798101602935,20.486389391800262,26.59495762145213,35.01547831666629,68.42136289080844,77.94098862099092,11.351382022699196,26.96918905745942,3.4426116590576927,98.4790974309133,46.0586778256492,61.71004519824245,87.85990911097299,72.22423909877274,19.080595339349248,57.87776693274823,46.321125321445166,90.25309706729338,94.56011508302191,71.21173920085656,98.8264039206518,44.95847639772666,76.15982422757502,58.47539646083254,45.038221226200115,25.877257272542508,39.87611466181373,43.31868566077644,4.330317463258327,12.329807875188504,54.97704630127963,53.92420437220494,25.34146133393036,97.9931869522847,64.65146638534716,19.591839652569565,45.549924008780685,44.860847234224586,51.69281445350607,86.05657767610543,45.546544118759755,14.569011813789745,94.71379307564855,0.9568537845748737,61.55533111166166,93.95820557611776,46.50159316396045,13.924469355544488,54.9800934349191,59.20570279037057,66.68213302026406,62.381184690528876,68.28129280874997,65.638598800432,92.74691070635741,62.33488577043145,29.808528463482997,3.3339378351558535,94.88138099331536,48.33531700273434,54.26912630292624,11.690179158994418,0.8621416142464478,15.167528548737963,94.6403585156072,42.65325115525378,67.3131478817566,81.4064432497589,20.929963592542343,44.85825887156588,63.9700659779725,2.937366296975219,49.00376737596609,28.111539052616365,12.87946585055787,35.03422158183016,51.02099910243576,35.1526763016612,9.465618292818922,31.25970547755019,30.795268877679295,41.00874128897496,0.7152851812812555,74.9914506142975,54.222150584726215,36.61148878858267,84.21341738499216,59.96845438943137,40.03967379120329,44.267506221640254,55.35726201447648,89.57084711308063,1.0245094922005982,6.233942170975748,20.154982009598243,87.87595034695887,43.7662499936146,54.79098344392844,10.797905193622015,8.894828361982366,92.9790151822852,25.566674779138733,23.570791187819495,18.457939673024736,64.53030712654522,58.564441480252604,97.90161937250298,22.717849152240333,85.33986487135256,39.32919183424224,55.12837571685927,23.41896720815393,93.82545822242159,89.63285049847222,26.53711654864095,80.15543356256515,57.87372058711594,89.77430490649401,99.95151840049353,68.96718348257544,33.02496356514136,44.4716939103007,24.00345479288014,28.4004453393937,54.04225663784516,73.97990636287555,37.590104349177146,53.25488583551722,54.92615428142005,9.941297853856835,53.82278728804965,62.37039659319604,74.76495667195591,23.127762578370646,70.14233170566865,87.37006210938138,18.080574484775603,55.36539821950962,15.934677378013372,18.804770136141457,47.59635691247394,74.8687072163922,35.20192394128484,70.19062551111332,32.896304237693016,76.12406216008041,85.89511822405362,62.61507050018322,24.200603704070488,64.73115422125797,0.32703536289991897,80.84776606486088,36.050384779739794,5.906176565816146,11.018339310016733,81.20972912696523,29.418845139658323,71.16212218393083,44.905164561007446,85.17046168711335,76.28332034657515,64.86156869281905,29.303791319396964,7.18240437860842,78.60216510084771,42.78006865690248,12.13273767765769,10.023726784840592,55.59747659963734,94.28810168471668,16.102419589924423,35.62655312406922,65.77672319260198,95.32198005179148,23.09562806595469,85.39691126909585,78.47061752488257,76.340530704353,19.17305402696986,51.8602583057573,8.756802790376028,19.59999057499343,55.763789927212926,23.5237945767916,2.492861530756718,60.51967531782447,70.30432203230853,22.116214161623372,1.5464896881804413,3.305185743465444,45.8744181911922,70.01391014236542,80.779426409099,79.17081294040158,77.78043966128718,72.76501606496703,41.386043034809404,12.406432547612745,30.750182076172592,30.744325988317954,58.791664440365,57.310911423566594,1.5000108005780555,5.999497539574938,6.420227774603104,5.892572191122946,63.05685212300006,67.2112115905186,91.11328557644586,28.457183543006515,11.561447689627313,69.86004938601577,94.8274545150159,25.875364009552104,40.79715120513975,97.53075743260857,38.829912468358394,46.35220736400492,0.1201779261573499,93.01331963759945,47.65289682490747,82.19584320559113,16.366602256786646,80.58346592748165,32.77258101179766,82.53459234722766,6.501150033433611,16.676782472921392,14.637714630986576,10.64131897271735,25.645577157974884,33.82781176252504,93.79362640931623,53.99126226791297,23.879881881748243,87.23332037772352,46.37756562044959,60.68684871068998,24.89141792434999,81.23458148809526,57.113545359555374,40.76950731062527,28.90480465398203,14.318414701174875,26.839197964776073,63.713642842136565,17.61636058014353,50.745442127423004,56.62765295575268,41.6775277840731,30.731588978819524,92.293483179536,46.579840408402994,17.75042078748529,89.30721379941103,12.995417486222516,26.74487819627539,41.961965867269456,52.663428317245334,14.165176373227762,83.11976085761063,20.21548012501081,47.97273901857777,43.01408621225894,87.56733329870815,76.12846805165434,4.107465099320895,94.65039135800207,40.03465146485675,30.394329236994157,99.26347789545864,94.7980420704603,79.77269282487491,74.4970827056057,92.33078403207264,2.7130504520136878,95.95364968860113,28.867765702749402,92.01612004073077,26.473907986538535,70.67683522203866,64.14421452210958,10.158158090751746,46.06849348007781,84.73981196113559,67.24570137435745,42.201471994940384,35.73100185824263,27.493752852346297,72.69999388409668,39.9835982088419,43.953966855429925,63.592247105786626,45.04290118571647,44.75631332875367,47.43769190726199,55.53898961787678,36.97735154791544,31.690437539852923,18.74625890507974,80.03109230502999,49.88735688137359,36.590352399243706,79.62002375679619,60.54372184388621,35.08957858092816,4.443360636258786,90.9083431597248,29.11057667051662,55.41442818230563,72.49493414501545,2.0732309815373773,37.639659594584174,90.74676002548611,9.006420430901251,20.27196129732276,42.160914120027634,97.00817105363207,88.27378035687039,0.1945956953354866,14.192564505723427,47.72729542514597,76.21705838724738,84.0145352921297,34.68349712503209,20.294601143923106,44.940259102917324,0.3664661897208821,55.176628788946935,2.549624935331085,8.897493794813816,81.53902887066495,78.38195197729738,33.4915321007492,18.29975502251867,35.003950226285106,88.5321857244648,33.756918544211025,22.880403255458624,41.00016612497139,89.92981757947169,18.680123298039252,67.26561021792106,90.10264787278271,71.92613668145765,21.184231752120365,49.52149454515363,35.046992238405885,49.48347497522535,8.8716737948757,15.763866461635256,74.31346583134199,7.14516479386681,36.4811669938537,4.478875791834058,70.94973599668695,92.86139479627745,18.69912490636293,67.76691893312085,60.737531910344636,20.328227821876254,24.34092846266267,80.45412845445232,43.65594115940319,24.711271621459986,30.624183872588617,59.6294985793004,95.35005689347183,35.44069665014309,49.67619702849839,87.44707280518098,51.46244670659075,83.94008881000646,47.293526298432155,97.32781242254556,93.76909870072942,45.745877697585954,85.86361567940824,65.8021908126579,30.21955018291035,17.134400162876595,74.36701955925815,90.45091509677594,12.261763320454532,3.2376632374281344,96.89043518298665,21.663612185057623,88.96290248715334,81.60750836440181,27.474758493199857,73.30082948816724,94.19828054126457,24.220794426758594,81.29048931966794,88.5843934662803,44.64615272700738,6.739518420809021,79.67936985975179,31.270165030745723,55.841369912082094,20.906007246118474,61.968361775803785,28.515959632508636,19.317542633672346,9.391831096444857,92.70783414949517,96.5203949038046,48.28383250809342,13.600278493074248,41.43743755362739,51.86624065065121,98.02818497835081,65.48149317043757,89.49237108716179,45.885281746538844,76.19998784238288,6.156349592605636,45.37111468092589,27.4583620386201,71.4970124705518,10.779225758786115,38.06091371947963,68.43888171063995,60.790261342107186,10.399392933305085,17.36626905743217,7.143241857952088,84.17557071905848,20.369011859742702,63.48416876129268,90.55814232736039,79.10308311590319,12.72025404035385,8.609231559370667,34.88818424710256,35.17361390712915,3.7699020247240145,40.20415170579293,88.81249613747912,96.7009147002069,96.30719537578213,89.42684530454554,18.625423936725426,73.89715701667708,75.41061159177188,73.15324741337328,59.875439715302356,48.312067687661816,31.140837194097635,5.560848754584913,76.47612881352227,90.63535106009111,62.72237689755884,28.68180044032701,9.14370219588223,37.20181325942528,4.0117239916394265,58.20469027233411,40.08725062775776,33.639729391702346,94.79273907265757,80.75596704686282,89.00199312243492,65.83781825398732,66.00602698550303,19.04720494872786,9.042289269955317,80.7567316776981,69.15699425813587,52.217678750733256,84.25094848842387,15.750094301286444,43.26629483624601,58.101172910908424,50.62711152319792,47.79512963197102,44.765080888052886,1.393401101818026,49.39227327239889,55.64192635928721,9.678490464515798,87.28718226305142,16.303107422796103,86.23773816829879,14.696062120957299,4.629743430153177,55.58814367813718,78.46828666935747,54.98448994861123,64.07084200983505,39.326595011352794,29.252175783122546,10.797618535608622,70.76486765872585,57.53439610519232,68.14863554750565,68.7165804994176,31.60745820640344,74.1516920788223,82.39925098747783,10.289570489338363,86.81201770030516,82.64687251076744,0.39773208271425275,88.19667101513934,92.1245926432307,57.95696263281741,74.26393466351955,28.523299558560122,65.99285671131248,35.39879097063996,21.785576062894428,12.763275529576356,30.435519641817187,30.36383877207318,36.58080872090083,55.773340598685536,53.8268257072705,89.78373301574683,29.676099764864972,53.86712443165621,66.71905634919203,37.5562323898213,33.42389177525706,77.19974832113003,45.801049860034546,16.716529090502608,41.10652039259389,78.63614667036624,62.694491789381544,0.8434689651075855,15.806700886083892,16.30831661875092,97.6086628101052,38.34228490479907,57.72185951832854,64.46144037692696,46.02469436306949,26.895858837492824,85.39279968478358,16.58768871021171,43.58037210380507,86.49395511710499,86.14758492353623,23.808231836575033,54.23495526229979,62.70418798448787,30.339308479711324,71.21372557219011,16.66309169826732,63.59918689113056,98.71461512622307,85.13982033659711,11.742935563917323,57.5985842014165,31.902071391475683,23.269735428736162,2.7512283368055224,54.89926951621491,24.69003960078031,14.841268190806423,78.86719553868107,56.541158155066896,89.52406187320277,99.56647645600579,72.905398662655,55.935200085369715,67.04561970779307,49.776290983126756,87.56230794655879,56.3642206542982,7.443056727769437,26.9124127762284,3.8688193185008046,24.128942244212702,56.940334647352806,45.52244453977137,60.75989727133558,91.05920390718047,8.547764380910294,54.938259681919696,26.449930111570563,83.03690687697213,35.83412835631768,64.73211427851233,44.92550128796856,20.124037113256055,41.20669263599394,22.164494115051493,23.24328807977265,11.294060713943054,54.74141247938622,57.723823849712474,33.26382295625368,36.421154572139955,70.19014776303317,30.654114847448334,50.35444872993424,28.446857208367927,55.08709749038464,94.79720855965745,37.557522909139394,22.90715287348213,80.37544965084462,61.875092225119275,78.32594607956726,74.39937620504985,90.17493966572604,0.5532330446103462,57.289816165026764,94.62326491621097,50.227149457513974,53.58701391183713,48.48846579394039,78.70751432619711,30.99100352567722,74.58110459946374,93.55988977863045,86.91438074433758,82.38541002381695,48.90290768147684,73.31559507942602,93.83106810056705,26.173496066600677,71.16883101437578,45.318419735351135,87.67949022923807,34.655757515536465,83.82585008680064,97.01558378868197,72.54904825617959,2.1831637894797917,58.6519689521826,52.81355904221886,55.32540861076555,31.26377458965227,37.29945228623922,15.031250915117212,17.640783183948837,6.284885727837908,63.14986297656697,97.3664925040736,98.19153492471628,79.01971182524562,6.862898495436253,59.059927916074784,44.39681484644665,74.485326011163,86.39706157829995,23.398622053630834,14.726649590157681,19.416947549715125,67.17807482807527,30.656474996294435,64.56290657535345,58.65003815708393,10.829470306798171,87.259368117207,2.5877074287325774,16.74615349358356,88.188882203314,27.41832253589076,53.348287421381556,11.509004489678354,57.01423321076161,72.45096483721092,23.571734183578887,51.89189803641471,46.84373811545586,94.40623720287094,6.023819154337906,10.500938095923374,90.58373996415759,54.49209385606182,46.14594283207158,95.85411510579526,42.34863491539206,6.598337928457887,82.86377883277616,60.98722001583698,70.40018363214227,23.07171557602501,77.87404433998672,87.60143518877679,47.4387668191522,99.9007084114089,97.91706445224972,25.368296206709275,52.959574318088606,47.74887948991731,67.31988834608714,31.35161235774203,79.56173524830221,11.087029626738543,62.78559338095553,71.4989100535114,86.09133784740418,19.807123542169226,65.72495972316729,5.115527983015866,44.51065667339422,92.14894678060246,99.60400216497676,33.63443860802102,5.063107263459187,3.94598316781396,4.087121107993886,89.93393601176604,42.403460319923255,54.80023617390185,14.437880796282732,17.88604886635462,51.53527832009195,67.46217785085459,80.12925937777788,74.79005884933639,50.202665838648606,84.72755010369025,16.746669499943046,25.438102071129965,77.84462117817625,40.49370639581201,64.71426051514423,82.05072919431473,18.807730977683022,13.081916884730415,33.19380394351469,20.12867222017327,11.268697431540275,43.202183616748094,16.923254452792936,29.552370679685637,34.491450454627746,22.67014255732851,88.29725686797417,50.557483851871645,19.771789263789408,48.948869261475814,94.17674816703571,9.60021124993421,66.0619933206145,17.96943212855695,32.86324754581749,56.52758655069159,51.064754239055866,42.263863104957544,90.86632498971153,87.69180422949827,21.30471235667225,43.10066578835602,42.94005032051772,75.06331104907855,0.19476013911470247,81.10806074650357,2.8234615658596973,82.11682109889867,49.54793210101618,59.10942255919177,68.30484522691512,22.336622414558928,17.269130520672128,33.74472233772906,9.326176265850872,62.39544876828401,7.741971468103448,24.288089982420658,89.663241017186,26.832274771337783,13.702098958899523,10.846424072506434,9.790081520624828,41.62483896787271,63.07766752951962,45.87793867034043,87.42818136718236,26.273024702542315,64.43189612474228,23.239063953256313,43.475892095725634,6.3584928996962775,33.692502366944,87.16032316829678,81.85774074488366,99.46280762453644,66.70123420620844,57.46076801861978,91.07599764350698,69.83853294356128,84.87225458192714,31.688594723111574,73.61323889781602,62.75302610813658,36.64936964562911,93.6149076658645,11.22768695250047,55.99009012668306,5.874392693675645,96.84889432358368,92.85632491931867,71.65787416996857,91.45636795027526,54.76904065142216,89.39125299329767,54.106864794845166,45.10180101354149,90.1837318086469,35.74895088962813,16.66280086349411,18.907141379760905,94.84292046726715,77.11563124838162,45.38439531606584,22.261856430591077,18.57577043493015,67.32874613046053,83.8535607282869,83.75302347332844,61.292690740655964,92.35986050004975,18.85351684570494,62.15478926180323,88.193506937346,82.364340330381,75.34485655914894,58.13978072729715,58.20072088744824,26.106227150851414,42.490493910245895,92.70642667845252,65.96257079126964,33.278295134334215,95.20000922705087,48.819512133597534,73.63386084332528,49.41981196340666,23.692764734844797,2.793438907675394,79.99712053507479,51.278017054914606,98.50909048665815,39.34470454000303,20.257701709293396,61.66208793988114,42.48397325787033,90.94632224007866,13.0914619892031,47.27731781096299,8.794799813870247,42.10891072255156,49.64409247544038,81.70915774540168,56.65989196432303,22.45422268371451,27.77277235932226,79.32321184383878,55.27813192217308,31.841229357819945,71.22373898428776,78.58946407117834,12.852264496254806,60.42431421373264,33.710836289832066,95.28501841508263,15.61027265907564,26.560899163697293,84.78158046618206,66.36666516051716,22.015670950510845,73.75364042473223,40.62101787847787,1.6854642330521141,68.48743613152253,82.31411623545726,92.59160823727626,91.27571215960282,66.24478488039325,67.30608523112734,34.370375812324205,1.3617643685232772,33.236613812985226,86.19319830612248,66.71993719918886,17.174049911893796,60.32122317528524,81.33304629099918,15.039786140282674,26.017249957396558,64.83023783522174,62.92716127410536,44.329695214284946,65.53116221299562,21.370660291061693,86.78865584248882,99.33586717779065,63.58313464742055,88.67409235186257,71.92939679923049,80.59718898050012,73.71850488524409,14.881855622273378,51.23493277194805,9.74848385098619,96.53268100155965,76.21309375827957,40.15693580524513,6.690764423230489,72.21089289680262,51.772326120604816,77.8304538341255,26.1408183060999,24.33970381401005,27.48256406241314,5.6978830865412995,76.86979150026407,17.68053311866401,60.470607838466925,32.289099264737246,59.080052215391376,43.02026861491931,8.295732376889465,22.33149420395627,51.84649393912021,89.9795550636256,20.50530937527686,4.334906317500065,58.48175133360797,64.37776274352106,97.92470444138544,43.23900409620543,73.4272817305975,44.38062674428029,28.862392920544277,74.14061346437296,3.0338050253316484,10.29240319896405,36.23927127572393,0.12593411806307575,57.64683603487403,6.428126753127894,87.88538104000601,0.6840699022406471,4.945085723750764,55.337057284937195,1.5016230186951196,3.869298088621975,15.599315105284173,70.0061718683613,61.595045424536366,9.298094980065063,36.79955851245087,91.82169102417211,96.31161971138019,88.42541450866891,78.51881585584752,74.90857120913533,4.2191385752153865,56.395570466908275,18.763802947998986,76.35146331893864,47.74162199650637,69.95573521257816,99.58463013843635,47.84390344962921,37.21698120921984,96.44681515953516,65.54010970941317,4.995071098522674,0.782669000300773,91.83053882539173,43.056614719094114,72.0854461722857,49.55224458040581,7.5576074358678635,43.06081568999897,13.066404656725384,12.495565720063995,66.60076607443808,6.7349798371687974,69.23496184298808,63.583185096733516,78.57273415096724,25.0159539250278,45.58004591912632,70.80312257575179,91.10072578458659,29.641992350414725,80.62096994790754,56.375420991751845,32.162312650082455,64.51677848106276,91.1788978124332,32.697119732053004,43.37087087449441,45.426705004404276,36.68167280782141,28.49028032366564,59.24489425385671,78.86336509361126,62.15210744310825,48.30012574744258,25.103950308288137,26.029717448212107,6.743229101394177,37.75845092433823,31.14074351287639,66.22770377822988,77.22241135111584,43.86041810468284,61.62288561765946,62.66854802855823,70.6489032239759,82.67556669086767,58.21468682804184,1.9893303503512594,13.856580813435516,47.13679687991485,83.99317972573935,87.22916744791488,42.12746889507045,54.536825251248956,93.90864227514464,74.71954743473667,33.317164232182094,77.27280587412551,24.69201562226231,8.800026556481733,99.25328262289713,9.368848310467925,1.0190628649498379,87.2473965245003,86.92889451105638,26.695970171760653,44.86077838572563,32.97991151173007,85.55998137820615,6.46664335181053,33.17815397177581,5.670854029111894,87.7131893665746,32.308848405140914,94.8423445593784,90.79591642128875,14.849060446777928,89.41482670640167,31.32212650480265,55.851954344247204,15.958455603644639,41.12224979346505,42.136576737917565,32.114180592972716,26.07322360976967,18.29711441851338,41.66149321822511,9.147122958556563,24.572499368758383,26.689478537796564,17.320477236530774,8.379054694724907,4.269296047322014,24.574918642543565,40.157632487903314,62.77972482728986,93.99752063854673,10.175892373149297,59.69486977929227,72.40192434995527,48.40950655798515,75.574558791667,90.64878878741396,27.19294352200965,87.21154985646412,97.17031807120233,32.37219966639072,94.43282637854202,92.12670169191512,6.924451451502467,24.572259518602834,29.34301059458173,91.90331467682765,22.976014924934486,96.41530967327829,74.88293266616468,41.75608576274274,3.794823764231481,21.36844235367462,71.78797338491407,58.00856546756017,80.65175980931038,23.75103369186603,50.88917414737536,79.12752349915627,77.64096088687354,56.59312226960536,77.37756200743603,9.154429269455655,94.44222146890806,19.282431926162968,31.188441948397106,39.97473156710068,86.10683032463487,35.81273287139416,37.31193297227981,63.403177818253006,48.24855552972366,24.08520370528552,54.9763676212995,89.86451446328117,16.505929019838696,62.28185164112994,79.09012378272652,12.906440905914284,88.64734419692462,53.96216838432567,24.668143247701558,58.68430175827035,40.42413465460727,54.162661882725594,14.211038745720439,16.8735404008483,45.58095869974319,16.15789868994717,34.1686529592297,54.242941527641165,34.43385979560792,72.40322199842741,61.023340711823714,15.521579144585795,78.79065994955317,69.5130402429114,82.58160627762726,53.214994084659516,79.54055125542479,53.787482503069015,11.095672286411373,36.79168922366336,24.86384713416484,13.573014923774917,50.394129372919,13.658434449417555,29.645695545658402,20.90037185712179,8.349708253200205,47.31614275444517,25.12743828847006,88.2776228221034,31.25003206582766,6.073347079699943,3.138138125017753,42.203806859768044,84.72538426838958,74.6472465868137,47.870673328945315,40.84756648048054,19.596602905317294,99.22402888896096,86.15293226291392,53.04521316021372,14.894551605255801,8.370197543110647,76.34198181122564,35.20383492414817,42.51583265433824,18.215730076011873,27.957657798122405,93.42493718772997,76.1618462075405,24.20298784494358,77.93370098059198,5.17714752194669,60.22378985069312,70.42493297733752,64.69463031116815,12.636440806868166,99.25065087896444,57.94380319014236,73.42986722580834,16.181306908957072,17.492754264842613,7.6888063040454036,37.58391092112715,56.62081142394386,3.703043419460983,47.805196319385956,16.43690720276283,49.42663776391654,25.70980256356198,98.24635578463989,15.644098762360558,10.41059785580738,49.11686256380718,66.5013864085306,91.1750603900907,29.583638419074877,35.77802856680897,49.23938637169033,50.88202756535072,24.54423222815194,96.9709663801575,81.8117824044861,89.11825212042417,1.467629923637992,36.588894647604306,62.4697087146542,39.47827631661907,87.26911093568194,93.50780024844023,30.494451108401876,99.59853073806987,31.518482815229742,80.40154887088497,81.33131308460977,24.66059688990414,72.26255532463384,30.15190817267407,83.23934789940947,93.52461528213244,39.59593198704615,18.343368163808837,70.74597222566223,60.21431360612319,79.6068408975147,46.18885829489883,54.56332949683663,5.985204316791348,3.163621595579924,81.84338635847506,65.64117740591286,69.74820141992393,39.80083975992412,67.87219878146334,6.3565908502465245,31.824689233951176,28.63411658627576,23.092960618245428,17.338568698621437,19.620804133286505,59.08789587044376,42.77619806154122,77.09461436829874,68.72492342006363,23.98691394486171,88.76633221577637,81.67007829094383,58.45157925984904,7.846857093599279,26.451449916929135,26.091245716471168,12.221429644225113,49.105850825181854,63.145320371491266,16.081105992301104,14.270563093743082,4.673171614736993,77.3028240546865,75.15026599298565,15.281827961912908,75.67036601713652,32.58263506740614,48.69234120040845,4.172370229432454,80.65361075301227,83.01818243707002,82.9924763237113,22.763816222744026,46.9001966431349,30.711728284030425,33.346151109236274,93.62117020341985,5.114020006934661,38.614161554864026,92.39927431757364,3.0268679974241763,9.94378357251845,12.262829149074584,78.57579391267227,31.22349534616746,52.721618406829165,81.93919130595197,11.677224504004592,85.6622934090516,50.439746154673884,14.103283898754803,50.187619667121034,27.580870440168624,27.306707899855954,81.05056304200716,75.19932930755044,55.97926315313896,68.4039920850023,58.1590242017599,91.66827636027698,83.43501689575449,15.4700682887552,54.73596348635687,72.00279450932867,25.8320027627134,20.400305545215623,79.98156667144501,58.18231078939049,44.81361334389635,74.68654869263206,27.92867678599944,37.90332664808255,93.78014187883089,47.090156481937214,18.655844135866996,59.49688523004638,17.925039057202508,95.07697938822108,63.42015970116,14.92579395471334,77.1667118486641,19.86866213793602,16.44211098199404,80.21391361534857,59.094850794057905,10.647760586529476,87.20554329618881,26.72604907122902,19.87229485167319,45.08002064745291,48.102303510666154,97.31551856130581,64.54411445389663,0.23572324596877747,45.236092036857336,8.564243336542498,9.82456348846621,72.90707757075506,53.78020742629476,14.04059580435586,61.9458628869282,14.849391031448334,99.56952062449447,8.138822304987247,32.20185291923578,90.05866447768622,27.541110361077013,64.80517333881023,13.6942575527079,89.6644347594191,8.706525836863122,28.76580919388324,27.63942911113778,4.884116296992347,90.82922370280878,23.133103486323936,89.57013461331059,42.23543833298603,16.12180382160894,84.81341804060749,20.488361594857253,3.539633701788636,1.5205932006290723,9.693354159712053,27.639745006293847,93.66871134068833,14.314432670400112,41.326725756692554,58.14415047572216,84.3448723104143,64.36894598858926,35.47667608233749,64.57329146114452,93.72202533316887,5.35577607264136,70.11151713953694,76.84924365487176,32.080339637914314,20.172893367768562,44.80942566024575,71.94744211766792,4.985328933308908,91.13818507751353,67.68342732390933,0.4565115812706688,9.058543766633742,29.3104417760254,88.8628070575361,32.67789144132621,66.30153045084852,9.478475602985348,66.0953425067742,74.81966791581756,48.549953679087565,70.05043259368308,87.0407765406878,3.895957946925266,41.45640595566119,54.275139392946336,34.299848890554976,33.21079804892024,95.33437419025341,15.895659066413593,90.99726723454015,42.983259488445746,66.61806765397424,38.854417374989325,24.297945468894255,74.94589635730676,76.68304027774377,70.4592802220606,94.83387450996248,71.43104098688127,74.24467137483333,12.076292816763356,14.897438030772047,44.07359696771439,66.46349649835163,49.332837278863536,89.06367562404775,14.007940530388808,83.14091325410786,93.04714952934162,50.50126153672906,94.94965062717192,58.384490249670876,50.01213231145436,17.865287976012635,81.30392171632252,37.79285715563605,63.5735981599827,28.81921826690593,72.3064706603968,97.61909532246446,30.5586843586375,56.60908392920767,17.128550048732784,52.897237421464446,0.12192960459496138,99.25671093021509,8.428788178344304,48.61272387758015,47.2059117049117,36.193755238569224,40.44971443544956,39.45554182397869,95.16761398564843,54.918151226413805,92.41818744556198,22.340272412071947,23.532457916719164,80.12494168756803,44.66379662505852,64.85937827288886,31.52907764338069,22.81824453571486,92.51033876868065,33.434969741796685,63.47037357546297,95.90521004759795,63.41043084627642,78.38353981278983,52.32664514378364,82.35167878815561,1.0871223389849582,10.00079225530226,39.265577001299455,55.86003994841449,41.5924325655579,50.46875539072625,77.53498230892649,78.84539386983845,97.22363281126006,28.46784996308974,87.07379674183049,82.88422783057435,23.798054513399048,13.412257899227997,69.93966079205019,46.201910647739005,16.775863615170206,93.91512495746709,42.69607829817678,26.523237747071505,4.861096746584847,59.068005963530524,86.83358808341562,21.9146623764619,45.066781074351795,74.13960306435747,32.56622365656082,10.536328830578112,47.950509519274796,46.39716250349492,66.75930728255403,19.638603747608975,30.4946842545313,86.93030877182804,72.597007902494,43.456521334166254,29.88192056176593,25.317267986998772,40.46380075460208,61.120226706522494,11.668275278446716,1.9067215033250817,53.40243674381801,17.680123706853923,12.669278969798158,19.73492524589514,15.982009850105605,74.4716592531252,66.80391875349281,14.153971739989302,39.31806758844021,44.23006072765063,85.80989151915911,64.04463089952604,7.09630194784574,50.94254696827204,14.057689631961656,40.660614147344,99.96232322749631,98.95420293979178,29.36145472429078,40.809912454906275,40.951311339783615,77.37348286716686,54.60807150921742,82.65332325765237,80.21528602238473,67.75387269899498,5.252998019930521,53.99235645675273,98.68296197083131,16.193395221912166,30.274175291861848,36.6673412297308,49.579776912434795,41.48815163360502,49.59441955263429,77.25217260298665,88.53221221416109,57.83971010200548,6.631926269097532,71.8479842113913,61.87218023669403,2.1023658373291565,45.554846779074474,33.44750869515457,9.437232440077171,11.030747444593326,46.24112780027795,15.263694604791722,28.864944299755802,59.3371734645336,68.32389494213689,99.08193187232175,10.412643851273028,62.82363945459196,58.15939448838314,31.523330009166482,0.492197517377746,64.14039551482401,68.3293103072993,49.200431902579936,61.66453556054618,95.05134423047554,63.00006867916884,36.494103572222954,68.83797533656188,26.890671231126973,60.58161399407276,40.3798963389305,67.43987077587231,40.20304053313066,29.451294345392974,68.40438203747064,48.167865124212575,83.15842200593097,84.78641858882813,47.57353293686598,21.07827069175876,29.776128586050298,35.08740503102751,17.63712276897659,79.41122771061262,95.21790874873247,2.7759891866459663,34.582103607685724,74.99380335668036,22.634170999276428,41.24232844927474,67.55910181477583,20.540756525943106,72.13003582195962,31.42831850416884,28.10942812366567,52.49224941767447,62.08992609858638,11.854719658077151,43.794357245549755,42.89803986243782,57.973080059509705,68.24876313356727,61.76262358789607,98.14974439868391,78.06445408589153,7.786452252900212,80.16497415173947,80.07914550256469,66.45624664033235,38.80264761603216,21.91251256358121,85.14066619330183,97.92368553878102,24.874116900234476,85.85397893543151,58.24914763158668,36.362625159547626,12.94470160328638,43.027590653864856,98.92132552004546,64.89655108100702,29.974003671605953,96.53061485324724,97.53154825878826,59.42367023937071,78.958694558169,73.81113946764573,98.17746764314755,59.66081213993804,37.6261174298037,72.20551353525107,36.57768657070426,16.28647717282551,98.20175878439426,11.421309595595375,75.69822407474685,33.45880792372293,46.13058530227605,28.548334129892027,85.5940072338413,23.161464088301877,28.89204506089965,35.887468166987716,35.39185436582739,74.56654645626293,40.958139090940925,69.28496565858975,45.7244508079891,69.35636778109097,42.13566020385815,58.60444514336408,37.45334682722286,0.25104943699848503,63.338043656255216,57.120523315871054,12.44217477121209,51.22189590940813,29.042145977244317,53.92878629619409,12.159244539108837,12.974177754108807,64.74886977211007,18.72400547908696,51.176602130692885,15.09445961999496,52.572351265769576,75.03141455845744,62.19866577429409,44.141153574831826,30.825630529484428,41.3669518166172,25.462129725567063,29.107269354343224,86.01001874454658,96.14112932677288,65.80063146828526,16.496692226658016,65.544913565791,79.12055672326318,25.523704617785338,67.43601292276648,97.53653942931908,83.70888093044564,0.309590160357176,4.3177473302413505,68.08391023505578,0.8074979533366999,92.74437604093156,72.85639939817065,82.23742239863999,78.0634209776912,3.2798215557578225,82.32496891547548,82.11824106081028,52.43911074509475,63.53637275657976,52.74323636298873,85.79445179743895,27.025476657075064,26.962458988496596,64.54171726404797,63.38311255694325,54.986258779337206,96.15727159242667,13.671742039163902,36.51391069661769,60.623985228770586,51.44591173751355,27.638655238859087,27.15910167778518,31.730322800368448,22.269016840818125,79.25437449843207,4.2522187283512425,17.109138822988456,77.3672798921338,52.508985504378124,19.640826283957423,1.7381069142888061,18.08346062953102,41.63693225444817,7.378025707559388,60.37145013132095,78.55848426142249,73.84993050101265,20.99041386797381,76.77907871332754,41.28073726321304,90.90150664852071,98.56473148657689,27.717753883305353,49.78935040184741,41.0616406696654,74.02712443822034,92.95181615856887,0.8803058756026605,72.68081491726649,82.81863167593745,2.034273608388115,68.20227531360558,78.16180390859753,12.383662389897088,99.46854594209039,35.900519707560505,60.49000154751866,9.390924028628067,52.783512101883815,80.24977871520896,45.16466452103012,40.066736310839424,9.328302913234198,79.68367114216018,82.62182085531688,1.9078647895374168,34.703336874226224,72.99874944484698,56.14484580631327,69.38846641588924,66.00351849158727,56.605760664796954,83.30571796922023,65.13897462885024,46.29195628588921,41.38842684176848,91.32213191158193,62.88705015280512,64.46974035870457,73.61894899145092,15.48258182456712,75.09791457821434,37.51662177056517,29.616308242149568,84.49555435121916,49.7743260957271,56.01583819772653,1.5673418962941499,73.22409248050815,68.99059321395097,67.12407892794462,51.56585658655391,40.09402483563746,4.947625967791158,24.952854718770702,49.47739226773529,61.904922855438606,61.99760515983302,38.494767373110484,80.06539707751385,28.364805537043026,54.744333753040856,97.33803981429713,30.183779635437702,70.49051332632648,15.850706816174377,78.64887128457377,17.758353345095113,22.73730687180646,89.66722296395663,39.7108598818646,57.9130566493711,42.18235074074398,44.11045570528476,24.10283749082923,24.428118979165024,32.0154464290316,97.11013953570186,72.37127325033231,59.18889100530905,77.34323379424225,65.50993489422882,39.94727815825221,79.73430971784073,65.22013550691707,41.18615022102466,48.61014292515211,90.48865458653648,97.29304011837745,66.69430620627239,81.26116301460158,9.66343094926857,78.76856500242765,64.14879800429189,94.6629950484296,56.98635856203475,90.6266437368951,99.71087920024318,68.89334670182559,21.72513360114019,17.945179737420645,64.62603938193543,70.88244289348398,82.32035564175503,57.16940147365898,68.04649251297697,26.19961632716693,65.19141366255955,35.61042917409706,14.615327487153372,52.32140917169137,16.567983855910484,78.04384008097529,54.2941478459945,0.6396833994805617,96.68499897029623,63.2357085939202,65.11866323787203,50.24084025953714,33.27128284003753,72.72038487733079,61.4326372804737,11.412828100562333,28.433948344718797,66.17434124711933,64.80730694096287,7.049204054532687,36.0863795527116,6.315168317318475,72.24691220506594,82.00664071868724,60.7512637279318,75.2405999304489,99.77944836524742,13.605274015648538,45.584912060893544,47.148417533690015,61.64587733410296,24.328052522406296,40.36935760400553,40.74946091157414,88.37755829893146,9.830837947570492,59.12699079042968,20.278895806156626,17.925590617739594,6.827749753481582,50.721715497540224,75.71557815569724,94.75824876303352,52.74730159667755,39.264298749152715,9.7759270751268,96.2500120828556,36.38480424844225,16.683962946399678,75.53430811470675,0.8765853430405035,53.286113752793874,99.70715080704582,0.11671888327905444,39.871081434865765,82.783284188612,27.12666513631833,82.01704420133832,48.81649626431713,73.30168215431372,72.75111056068293,81.9542379416447,5.790270538363251,41.039492127318624,39.02913817524127,56.933739319529685,66.395214127793,4.417294982283748,3.128693622788692,95.27481367101763,10.63657724953988,65.45474229643328,43.571715404803314,46.25357521620832,4.43016184985977,44.02870468924201,69.85735505686924,89.43585407549874,51.98978264194834,84.6619565883848,69.08664427509477,92.11958093881098,76.58709078550892,41.50537741976906,2.4473550263946597,50.88244690050696,36.18808043998142,61.550503801126965,59.98301183942255,22.07470730701977,61.67995394092972,72.60755370385343,66.38954740870776,42.740446129043534,70.72915135887666,52.88558585146933,22.534615653266087,76.78032927028046,10.03406783565982,94.64999625322214,40.273762675429715,61.54016448807975,98.33195469698455,89.21842925684305,88.12276589881417,81.50398503699122,74.88555510421409,94.10318639248132,24.833561489865097,98.78984319463147,27.930006795109584,39.402632293220506,43.251928937334384,56.02109085103514,65.44708832987877,18.225335852907808,31.699775268304265,7.83636288133609,90.09551493423886,41.575294195259914,42.95679843109384,96.72724541934431,77.41265614031268,85.25343048503238,45.264056092382575,20.186994961948614,20.658837829194766,43.35902211996869,13.52255957219689,74.78033019097003,27.881909441447338,89.14078985171125,42.12324270220799,72.33415806832016,43.887815979654185,77.48901394829447,93.34709533183542,21.907020240088958,62.22575142980584,78.4927488184556,95.77258186474012,31.5957230042888,48.24112413553374,12.579378879479163,34.723871813456455,2.739474624254934,74.09861216246986,36.39980507080756,72.78707887396465,42.33976647911122,96.09434557528715,95.26447262273086,29.715445559938956,88.23015103343378,69.31297413168647,82.28400977557006,1.1926308592095536,19.92240176655733,35.66181448216958,4.361724886031649,20.773670219606522,95.47480244204374,32.735935501770065,19.83694588832562,32.21756496887881,30.50440422662214,23.131305737230623,43.58594391215176,94.20941507895324,69.77375775387499,13.390707466527251,84.8933603351933,2.745219837703572,48.178698105189596,66.29883040816932,11.472210867178323,21.353197897305563,42.49660380777504,94.7876316690197,75.87515106253726,48.21485802680452,33.607276632883966,8.205285073593382,64.11439386717771,73.05300494133166,46.193512528754255,63.429674194464965,95.32611594874962,54.53857830646025,68.41464120066965,59.41007174979972,23.721849669709883,35.79938450622605,59.614115217640354,9.115311512926528,75.92418005284189,53.262588826833834,57.85513193490929,94.4027558859662,68.2667506683157,11.263221881378271,56.49893091768931,32.04668990479126,96.26617434344682,3.165345124572627,96.42046148353583,96.5359133246796,3.286508305515312,96.4725620916953,22.25813349717203,41.67655239578421,36.083245828699106,6.905051462344424,33.830788430462775,6.815709725739405,50.89079571842745,63.044205022074486,24.793048967565422,44.52122491514522,24.559671532768956,0.37309371831281135,41.693063146280316,37.23732458040294,18.949788362901078,58.86714744873265,12.046392625656665,32.99420402287576,53.078558120959705,62.41088028596676,44.213551681380835,6.487190650859398,32.52131123529024,93.49743696859471,56.9216237128859,45.74772010930808,34.9614529368785,76.58133225899671,5.436452123939583,79.06211836931598,53.337593032924566,92.72372706144523,42.31022189182107,51.63749733164333,52.30821268678589,24.699439982693594,85.30694275743981,48.35761219569786,58.601063570908885,30.444800244975546,79.88906742090465,17.158808000764903,90.08991795745791,48.24285690150851,28.04715621909313,57.74259373823457,41.58172966198681,83.48033470337779,2.053987671751023,4.866315081262185,15.575013412990202,58.32595503153557,58.3126975830989,73.95891705055212,8.216300763340245,65.11504168761672,67.05027091666805,44.885866482240154,36.305832650528735,86.30380221977599,23.893877084121527,62.740332439979085,47.5600066217083,92.38209862030699,96.20262206839611,37.872117706585115,62.89635791646023,19.651923906109637,99.30018404783397,80.10681279605879,33.25777076342108,47.32809480455139,82.04525722801877,3.7635159748504288,95.79760450415961,66.52820205842276,41.08909140550403,96.40083296836467,34.822768966344896,65.85430069501456,62.419604292437135,23.692752595396737,77.86207580726833,11.549524572769654,92.6702425399863,27.838488887406843,70.1497482180263,45.73167114691222,25.981762330621127,26.61691986621354,4.766357981906744,2.484057692288155,11.106515925239357,54.699632015652085,46.543476218528546,80.75910198854052,93.30089504987046,89.67942301581849,29.068786942959456,1.6082519737329437,14.607610787966085,86.42039815766496,3.8800658069065186,78.91358927287216,39.63553845339739,26.302318653260702,30.77943616770995,71.09361269655099,73.33042221852473,41.87047939479888,4.294015840379284,42.99994618788018,33.351695575027094,48.51231714403236,43.37134694473498,7.858588957996526,92.77075240293931,86.97334819832446,3.239346168743784,46.74889672868201,15.794328853718653,87.54363036808658,50.106582933339396,47.4009504263732,75.78327059444689,95.5794439532018,7.619381978609441,63.456378597256624,68.05477951806928,90.66488673565372,91.67507183349525,46.80602279280802,57.720740521886206,6.471422169829211,16.88139744135968,21.630250473763514,88.39246478707673,14.673680782976128,96.82949803899359,32.63061891577098,25.683053393839096,20.97406166475917,28.387868469601152,63.83422558257589,73.10023888342774,47.590342078734935,48.410921495708024,57.885467079988075,76.98730642356254,20.84489628195407,24.71877878985196,72.05716634346197,37.517426233621556,59.592541312779304,53.41782542801524,87.42130641812939,72.35591683558121,0.2973490224499331,28.35824244427355,52.89937434911908,53.262591474888154,25.11017995160919,45.775655422183846,56.37842404810718,90.00658193394302,3.669737157774411,93.1393026016479,71.09718265228834,49.147060856268276,88.95530280133464,47.39716435781822,69.69644806991853,79.00569146237632,7.9977984882500746,5.16048318630975,25.131263938884874,99.87384586545916,79.6353443159275,44.75993406386488,92.40703430321,1.7107504004280294,75.43242690297723,11.14609470111465,18.738124538536137,35.291602025013226,75.11694296911232,63.19159335206508,72.02155555067313,54.46721118792348,59.545410855368786,41.93275758390861,87.43534321464162,45.81001661751047,95.43801601403155,12.054247952375219,84.82774431652737,99.22816925093703,48.975833994152296,55.97427482531941,6.682966284920877,58.74343055826829,89.44328608891432,81.52923499815506,71.25703480769273,33.34122486182905,10.147872955895021,14.179046379310389,89.11350873463275,43.49629542631364,58.26113530942555,20.46074993515773,29.7396414476945,50.2846155247335,86.2942189265641,24.22419520195145,70.9497608619597,55.481288988790126,45.5470338712462,45.88065872452951,53.7558577537841,47.45710853247381,37.739845912938065,31.11259139166482,99.47490844725817,59.27567691815964,22.96772324223122,73.99249644234104,86.09636345917333,10.192928408191015,81.19397323964226,77.98854874651894,8.46484632447757,23.60168598890643,68.11885050410146,77.00919850026641,99.649045970631,96.41521126791798,37.40970135526441,3.771961299837445,26.24300857221924,67.90786564856407,26.08761112265271,33.19253917640661,72.48435547640395,46.75598635188965,51.50796224351354,73.52057669157593,98.37805423437668,60.4349876929023,33.18725455678795,90.595114524208,38.96829318283099,26.804758088952095,91.53579401292292,42.35261600994349,25.415968486796746,78.50768135568747,86.72013352101663,60.20210639812572,56.31876137095777,85.50180690414375,93.24963409967485,66.4216155504516,60.97822471944726,19.178928798540518,81.19543397562995,81.98223503314689,26.328771528585758,28.0405897783495,19.790387753933025,77.15818770577981,77.27749244679958,60.301958514073064,93.77116136479216,81.78114892493802,7.404602045564246,44.244757369208244,10.251763552247063,25.40936504971044,81.99560175854687,63.27788975851004,2.563410607975114,40.584846590518545,4.177575717007587,28.790278822656866,41.65948059653783,11.043164061624644,75.33076388358332,82.32625229902301,20.944417910876943,71.47343571275665,72.51020136647301,22.66003182941797,63.393207441876,39.221868584999385,64.9147008296487,95.75439519416491,22.196607484082353,70.68897371746749,45.263494086632406,44.39488089914547,70.3879246728427,33.797775447573954,25.62721139101667,6.3419847793844575,41.502630051002,63.75682807125488,54.70086647707883,17.461990955888098,59.73290965909833,85.34017002762002,77.88734652348512,50.65941808856452,99.3293522964895,70.31177810863254,29.15582000300657,87.82898279757151,8.304718659459065,80.56934996749766,93.33580425066701,95.70283729653262,46.77831369866511,37.06933201935871,52.15679918763554,20.870171310040785,39.55888720350041,22.826807396093308,91.56743558729161,36.634726399192004,20.70979863730795,60.32658722927319,75.77135234466729,63.31305915596032,49.98655719615444,58.621822872681484,94.7516948939049,58.02102078216698,84.84620444714702,7.188835987864339,72.37216502857154,62.668105603184024,95.63534451384474,25.278711963372135,58.336325325883365,15.065355137251357,80.69644383983898,4.448445401777956,98.09062921429053,75.04177026762655,29.887033506750328,71.7493158148546,89.33877425922773,16.5814370678672,48.106585587403615,57.183668006050596,2.6609123500801135,51.8259026182923,84.76230689160127,64.44433882151918,58.965391361025624,61.25332694381282,59.301958321557045,46.2495116535205,23.316568998325373,15.316262102028732,11.724531375955527,32.227318996734624,34.96380679005061,91.22506267726634,81.56171998700158,69.74227917563542,26.179256870417213,69.41816654676022,43.57839453205118,89.86065446144455,89.72135071902167,10.441748722622822,45.53357465710787,18.514268741495922,98.60666186826748,23.024884048833407,36.235007277652144,71.20752755812957,33.53494493311433,92.10808257775048,11.910641282841649,19.48698100730517,48.840101422450424,12.663574867089356,56.946198682355046,32.88428853345121,77.96742392234698,50.770010593095684,30.09000378691622,23.910688114005694,16.69639452939775,52.138202780677275,20.60102943228548,19.479592916434672,41.328704628438594,9.128385657051064,66.52690488579735,63.15816331414238,77.55288528773593,71.87747761473163,10.086824537776462,61.96409627732491,82.65316924184677,94.62213399066547,30.896713195652147,8.728912605128658,77.3173466739061,31.372019590056087,68.10854842145048,92.3799921232209,16.118028107648353,10.899980461390369,33.56376618580141,41.235910285059454,66.72953999067225,79.48565056843591,98.16977783431976,28.56900914844268,62.507256051080695,41.311622989116195,17.202881614974295,75.26428581923614,81.34977312039867,37.72207334263298,81.64223601636684,25.026307440850015,72.8820090546264,8.191008646309395,60.625015447126444,98.71468736246995,49.696746207966825,7.669271970308367,8.118705315985618,85.40499100529709,21.991611222689055,51.800071755539236,26.518692941827247,40.10115808365714,49.913177024200394,49.94206772790323,95.76416534534883,82.92699053076254,49.475609795881724,70.03423749339076,62.00638486645028,53.729003449128996,26.61240337405697,52.27202871667769,86.31251288781269,89.89189668072383,87.15617252304511,31.509122067065764,18.240196361667017,20.545034528808014,42.93131441958351,93.00261854305984,2.735554063952561,86.26250043454135,19.776530111297884,34.755125812169574,39.989959410856535,37.711566774238534,73.19011917905208,5.33170632336708,69.59341683844842,42.297883407421835,53.1417290940692,98.86976055038312,96.2714612515183,72.75245489189977,43.884147345284404,52.71131452747858,19.234143283065308,68.05620928061138,5.7889030384768,13.000438580604289,59.0439890784659,20.418337533592425,68.60983847692216,10.684887506668861,22.848550985686465,95.59603250336558,68.15872619829399,48.17182698366111,38.00851834236861,69.49666793323577,30.60605338572955,79.8501394768412,62.92862450130453,17.14992019418007,49.87698282206486,53.845632448367994,9.374243876364352,67.15376846755996,84.35410680939394,50.92676317199799,99.20002005091388,79.1493748607992,45.39655930550991,16.40975315504114,46.997803341821495,25.090553731582343,39.44023417641915,21.998094578225757,63.01775382381234,79.04410775859698,54.784358641645504,78.78544119296559,38.6949926581054,3.676475890384856,42.87322256815862,53.97488497079422,23.903875335257606,99.70176290427251,58.84159159777873,33.04068508123428,76.13766635809716,20.92321595224391,69.78988109427246,86.51940292284512,21.82372066770669,61.31873929823812,14.003486181394297,98.75227653311217,67.34706641318286,1.228228649975105,48.04583792793028,56.245034891584936,97.0277577021011,71.14342684943017,75.5769966215098,36.18722757591688,82.78122642540147,70.44075363053922,28.968637882872972,20.02681640058125,44.31433384753641,85.35980911274207,32.465532682971755,63.87373442489639,86.37292845147795,81.83629034645234,51.33391777240831,79.72552013910064,24.255348776123643,72.13454362571572,40.483677763043545,20.282157924346468,43.95865335557213,44.16592615579212,90.75337119231685,46.07678841920173,16.284873460853035,3.2917126111795425,10.709246578816678,1.4981614287894462,48.18181340938173,27.147657680696746,39.640649470567865,85.88361148792576,47.54292446134507,22.953639091145362,79.5798017321968,61.20068491191779,99.83850463297631,45.96711332880044,31.852573795181726,74.31147882052363,4.87728971280389,53.527181483646224,3.6415564188456373,67.48313970190033,93.51424275864578,91.64946497090318,43.55969729879443,57.27872759347314,22.583372721054438,55.94487299579312,40.850842112619944,57.470491314337124,65.2077511211529,41.73844018154789,68.34554552163497,86.91427866716361,44.92042461065046,93.04732305930573,81.82584272779769,28.93386297364653,37.15072496055662,67.57393518747335,61.934410734788905,81.68056822473805,91.24103791617759,82.48558855316315,34.59382682591272,33.59432114140999,15.788338855085726,96.49930725503316,96.26105626435746,6.02805471623512,31.712725856678436,60.01338804636897,24.31491371022696,30.54004810811417,96.82666865105772,67.46836361403385,29.78250414532736,97.31915550621783,2.313459174651711,50.870735687274205,36.741157483920894,0.4528083305109343,18.79653779838758,88.69259469858197,42.82677639290914,26.677016181603374,13.719182348883475,50.27074150194719,15.072862467438664,1.6042548090504538,34.60267697832573,61.80499064250773,76.416097265614,74.73975905444352,29.18447315775692,76.66640083197062,19.710452292090487,37.74893045889682,42.39213020776455,99.07914669988983,19.939155539505336,78.81619879647353,0.6639179229732672,66.82833450968161,17.938831603587225,10.900165317571586,8.794306534553176,42.603471446128516,69.09160019727965,5.969350323958455,66.0574911181869,83.60934985544048,9.684493440194819,61.99984637349656,21.857648897134872,85.40736447262861,66.1531978781541,51.11054125129362,10.803134278020355,4.2008471980061195,51.21143247114281,2.0186155550126816,28.485036601545175,68.15518982968099,99.00805629489231,58.767039679562295,75.30781388503588,64.49391305115857,53.78145192689227,35.93449709807545,99.70407387553138,76.10848417096575,53.22474731597479,99.59350589151414,43.20085164313825,89.60304662617318,95.35464930522078,88.95094804076128,41.44273971981104,14.30419891790865,82.69429566586807,58.86168721146192,11.992689697975988,26.684976295546857,15.832471066303755,99.32970290790249,32.49895347796572,17.84418916129035,60.366737466749164,41.35369439562275,94.44746373410062,61.319743194051156,95.21356277281033,60.9991833344847,22.414074353469495,29.65978847409292,74.23815863200744,28.11887445943825,70.70380554441833,37.88495370732705,27.657849880183573,92.67995412753388,11.990928998642215,45.27583594439773,61.93500891995502,3.679510773884964,87.35245104411423,70.78958131801795,76.66639954809203,90.60697498397595,34.082763723804,44.89195658518816,43.9382415361919,83.90883433966992,19.13648054333086,95.4114584375119,56.38902842209465,64.40327344342963,42.78298027683321,83.66471853009891,93.1892006233891,59.18556336623726,43.50819459982452,87.91746832650541,3.398186615651655,49.17374674495345,19.35670130890996,11.314786010871615,57.67045834278674,37.66254762515568,68.61208704547693,76.503475892119,4.606209090662949,60.91864803606668,83.07371030551084,18.269370672293995,45.412200719858674,89.0568976054765,36.240148656866836,18.931760562651768,71.03209258456444,47.747677877366904,97.32058231437347,78.58666455930549,47.63751120444554,23.00334759518654,8.47440940015357,71.11075189298433,26.621020557922183,39.74510158234651,16.789361417541482,86.081720529356,72.21056076769548,2.235580028111639,42.80017650691449,64.62517881290508,16.455055942828224,14.810424248618592,53.97958698732529,29.954093183811526,27.596342903213845,60.5781940003048,44.439304738638675,1.0990761290750495,80.2977361997926,71.8868476455311,37.265713646354705,82.55322805949463,24.37043930317492,66.2129444171735,39.00559392941037,96.74074142119892,26.488101008468014,77.10370038152689,64.62383814404173,48.63493170679204,91.07237492238669,29.83505536780564,1.7518206404198766,53.182858925543385,59.5818690708206,93.48292585137554,78.6632248226827,0.5315645828623983,71.18589930436579,87.88720271005475,13.707096717671474,95.02978185952074,63.11679340598039,63.19953510120615,39.909085788712964,26.462416775660714,72.03992547946237,81.3747059883647,26.930403473252916,56.873855381998915,15.456642923484942,91.67507426139296,61.93669494884656,57.01512652519448,25.985812628567075,32.486305675629,3.137906737158347,56.032516687108306,31.633623228737996,31.173481411700642,73.46760862488345,5.53431220040399,18.719219051740076,56.80645703598303,64.62045252357385,56.372014440673205,86.58757705015779,76.61053192195278,10.733602911693973,94.7275429354857,81.775769158998,68.73424647195033,39.8186848641474,20.690226869483,24.988999394103594,99.86959924382052,61.70321237969976,49.853730601303006,18.718802994400896,36.293730811838984,51.600146462342636,82.23749722147825,43.40703836277638,19.945536889274006,96.29219972730716,38.98743434628601,81.53856299018642,21.26284160963724,51.399556958004176,17.5189947825794,29.70725488699115,16.953975699470302,11.518453695309127,70.3326110784064,38.15212597947281,48.03270783821325,57.77190214272101,89.31880029390454,87.01421697327227,39.46928246053907,2.5600913208611242,47.41624032284456,92.4487168373642,79.19325984322415,69.54269795105179,92.27965376857246,69.82014887852384,30.742713455065505,1.225196366463599,42.816519506788275,30.771409782743454,95.13143840278171,81.67378389838187,72.901648475805,57.594020731466365,61.194396978267264,93.26205389258325,32.63235182705553,32.581507362194984,70.94376770300798,17.413136209744952,86.36710015461388,89.36649602937585,54.48386014637207,98.65284248861231,42.53456461979963,44.320708076065806,55.22452775279601,99.76270883291065,14.772226464338301,84.34585741969958,59.40215517797447,66.42924161717039,88.71809224022819,80.40202292079215,83.50052324771961,64.33453832570038,63.459319285534264,91.20929701044149,72.27225569813233,65.09487304690087,74.98811572157088,4.889606591466656,9.957516155868495,6.984343941841975,90.03780907637099,15.764730759691192,66.69286428359379,64.69800633970817,49.34706498541394,35.51914617896481,23.653852181560698,4.014593480275752,92.11482310050722,43.08227769683126,61.18828570063128,42.95172499865433,63.54622290102171,81.6474509526526,7.10552674501721,19.905411895439286,65.59660746988055,36.596510242922676,58.7159106283127,77.21850425979747,56.20285373019931,59.99904634709996,66.12222876192382,94.02330566734992,17.6067402084633,45.887212718647405,90.77462556676721,33.410349983242185,31.30909037217824,43.45918539691418,70.71599853499852,63.38124937186331,9.389616390245624,65.10594182587639,20.32786455049961,20.812733407270855,12.667134356531761,67.71936178040552,55.618709330929285,84.47927530775809,47.51708984642165,72.53574229582199,34.54077066142273,86.47811983922911,88.36739727945522,71.11716151446636,43.354327286430404,16.81733726685878,14.063733168430115,57.31687327078856,65.05660433320006,47.78327761129998,87.25787733785617,6.367733293286104,98.40349732503758,54.142392996313994,61.70354771537128,2.484092250728942,28.485183037581574,36.05139385885526,21.91255960856121,14.493323006082337,48.63347893598282,16.71105815238103,12.514866275039937,89.83497949487005,17.323962597711372,53.86768335659594,63.72863908072024,14.218501826604768,82.03769281616596,44.46766060476512,58.66988338165295,29.757244329973354,25.074144147735623,29.929707157789498,55.15196391291075,68.79537878564103,13.187478078093662,1.3585390258509134,71.03269903059525,65.5605697913927,78.44956663732113,24.049407885805195,4.078172646840916,43.06092680454815,56.8716384817583,58.783808009856685,0.125418952447931,33.72786948456225,73.00279100109093,73.58215715308998,92.56337234357757,78.36292705553382,73.34406290600565,46.95208148895471,98.83977017984495,5.939679766334538,36.874941051126285,57.05650668964134,96.04908630615616,25.08313371179901,58.95847773206644,77.04467579606688,65.08823419462203,80.62444343311796,14.620237918063484,41.53512356690544,52.133207879124,5.882237071051555,26.362264460951923,11.74918787787449,28.751372650269168,63.964524877105745,9.182238679598754,52.55306498905262,7.5220676569332845,83.77256713290377,45.283622032972914,42.309620933994665,39.8105013334514,53.31900863013138,73.08387335250416,1.2026396215339297,6.1268627256416135,29.77450947563466,9.00153631326278,67.54264427435805,49.30554613935928,55.61765337996576,0.17603734342680477,33.73911569144189,21.015070588423555,2.66548327634083,32.26179520762512,97.17718622531936,38.193852163636436,90.86865854648447,68.32027771879739,16.500291212836448,36.34575324008957,36.43568738784819,45.77094942270303,58.87366500005319,61.73223692337134,35.49682181899152,70.55431385729814,25.843371943727036,93.45639738896642,35.042727137046285,25.800219583165752,94.52590870121784,51.513016579798034,70.60649145411992,24.737644143848982,39.2200938775305,40.19983090884131,20.176563420775995,1.4772269850278352,94.83888506303865,82.08315453541819,82.45443844063186,83.11196288775598,79.31051910152198,35.73159259814673,44.99315306607402,79.85835478244903,40.573561824449065,33.11780525608234,46.64471045940681,98.44577221033197,60.673496226155756,50.74399181353656,90.76558231112685,96.20825550592937,11.533486514146185,91.17282235878035,45.79437055497463,87.50569171837552,62.678084840466795,88.93228502804998,37.03776959996079,25.614568899639924,2.2033091073088706,66.39623334132676,23.958530593257787,62.40798976702449,1.7363506021718655,30.88601866113455,94.19161931235726,54.718621830081645,74.61440159228478,53.83805840444569,22.13054970121313,52.503566177899906,25.699392640224584,12.786020684220457,71.70847696932037,59.75550759837901,72.18218555113225,95.62578719067906,29.67001411634731,18.0133050967907,23.102735105018713,10.940056876220062,42.06301197737447,50.807813082662854,6.075209271054616,61.84454799625809,72.1356810114386,50.570023414332375,80.29456938682239,40.234608033480676,88.58026838204682,14.997375255256951,68.5670542748536,35.79650924027506,66.37153625398669,74.06629142920484,43.38754975113328,24.581260852428144,7.178243592795075,16.44530756993833,94.40058435299528,29.72755858680678,73.53706047053647,14.255195620989692,90.58837167276805,5.5690198796186525,6.369644470340363,38.95541570696839,35.11705925008673,51.37431093066623,22.043584071981257,53.7308402545886,2.3803689251302718,0.3772139810854003,33.57902759298472,22.363459550437227,92.63861398150497,61.77754513693128,35.929738319517654,65.923613628504,11.55306887810561,47.47332761162218,45.843161343907866,67.854570488834,48.93474065481642,4.907467832863521,74.72092800708538,13.246496564585764,72.68385144945235,54.98509871766495,24.371821337653333,56.77794018810929,74.96262624985906,3.7627020563389735,35.37343878462894,82.46410969596184,17.98261977496717,56.58760430460491,25.565119126949,61.480318647608726,95.17741741332951,87.05602329155533,10.968719574912278,46.69557360211793,34.25605572806041,83.43555372429246,33.48367589725271,27.433161068720334,53.75984689482074,4.6404403378340175,43.16755724413471,70.65672689225208,59.67039625334787,3.5945009007427142,70.15751537952302,75.59489283922133,27.762345363727814,54.34059649389682,59.015242293256065,96.52864679341344,62.48596310329595,99.94365992736913,50.243857297697744,47.65661477581795,66.81054617077899,32.0161795379853,16.05233897690136,33.52463929393228,82.66983235536316,45.79467141387057,18.170288831787207,5.111128392640952,6.558079716265464,72.52391804184543,62.08263036620595,94.93777281222503,49.70306183856694,67.21115392203191,62.00980751315521,72.61404079887733,92.15449420700999,49.88247534006797,64.55607972431311,30.676541628486177,24.644269543788823,88.33961866934303,32.14815317030656,68.66951775032427,59.602747388186216,57.12060210769767,27.124742143168422,73.9173306341083,20.411418280119864,2.2282816943845707,16.002026057596208,32.444990118264485,85.31734261754941,23.111983321736453,90.46243341997432,83.88443251949094,80.02068376889704,80.19516564372562,30.480210196822476,85.91876221302131,85.71618290784203,28.28862824768823,0.6345220187203848,83.9565154399563,53.68856214156228,30.78625515509611,36.0906614214323,50.01408398702776,28.91085567451468,62.48459502877748,37.89388750619078,21.662585835679614,95.90127056434925,87.11495142773303,28.624824192868882,30.813329006847567,52.92181998643759,3.5805314027195556,93.51699552004132,86.37594992583524,21.43233926163863,68.70063821064538,20.496585739908568,58.13050704057691,85.7493457414891,90.53673590278662,59.10717242813086,55.03626772648619,82.17488768988765,40.06912984205445,86.30213973419819,57.06016422048269,45.973856683417246,70.63332112465442,41.86991065160929,80.79346851237284,42.243533350036536,95.567126742456,30.148144698459724,90.36039467319358,3.8745410155139104,86.10020982925587,63.4379493899214,90.8017007377863,98.19991047455437,27.29403575206878,5.337258318051463,54.038508133839116,4.045875275129218,93.41002716398917,28.385080553998844,72.55306779977187,31.93810151652604,75.97698465080342,16.76777961023782,96.1139452523593,1.6294868461847356,47.18457913531141,47.107400280430575,0.6483706942224665,0.3216699464486994,15.417030446887903,30.787563459485057,56.51040083891512,52.72495014758169,18.415693351616202,4.54398742304829,46.72113665121317,88.50399106817476,58.48336871561588,90.96554374852535,15.416695000165726,60.08176160525377,0.43035146217784703,26.85217409799775,78.78673842873805,71.21569645025042,93.4535009037267,61.6426136047879,74.41552281619596,58.565355628050796,66.02282470172582,16.57265638715576,62.423385921214305,78.00037337133391,46.314631868949775,23.397207132448205,35.80819461816599,0.9318314359409663,54.850924670455726,97.92925180041185,8.52029875553465,44.90783053031918,19.274274779092472,14.64741730196739,81.80914638844358,52.85358345562222,79.45002478618503,15.071984096176882,95.0466529823283,70.33382490362145,68.35571596154118,22.30887644681755,5.685079565726503,35.46714418311482,21.72766793494717,33.11398272229758,0.9422486408216524,49.4317684415412,8.034950698566757,63.94338222955781,61.38944615156519,4.865470076985623,60.45004624838741,80.85196123864597,35.25900727050231,73.10054318269613,94.29982553636911,94.02972925882968,9.0728245603802,87.92964107944886,90.79129700632743,27.312144709305365,63.09224008308439,85.19589622997398,75.53070339097945,16.887761400043356,89.4240930140962,53.680690667473705,27.62285361225586,0.11776183482022917,22.14357136756011,43.581920066013836,73.82885099176265,4.197804383923565,99.0488911698182,46.450256859262986,52.86766085375161,35.1383310412401,21.14211167064535,32.74155778823575,33.871331878539976,63.34219647377227,62.551118197808165,83.78860192329695,95.91370637638026,27.134012627139725,67.12893876147065,52.459028745007345,97.83972077460125,92.93192976528016,75.45830570364673,6.990142222089435,55.660023212701134,8.955964962058616,16.672654911009353,44.72272215939965,44.20514045787041,78.81691123078215,7.63114330136233,77.74228898182906,39.85697566501501,73.39970228770835,32.03144087876857,64.52656160905377,17.72372079316017,89.79344158739045,54.04262683502831,56.12924002377871,85.40779213806078,47.76666981451672,25.697763211082293,58.70642130159457,18.21766902290681,2.4904863846665903,33.2793700307401,54.328144627565166,72.18869974450807,59.19083627178562,66.1220953949104,43.39495266587535,11.749352580118122,6.625537828254391,48.81779223422926,13.83311636509167,43.65385446699482,85.30138841126445,93.00874534667423,41.618418600377815,88.70514191679942,49.137986126885316,0.7654804169265339,7.608904125881233,47.64147758454681,26.306044057722,29.25006728920323,76.61929273100682,75.99116302275213,52.715093547063354,5.479552260197829,61.96271247834936,18.30534125203991,67.15809870261145,40.66030039032563,30.555045111552236,50.47142311188405,74.58404299537142,67.03752027736024,72.07900872571909,12.295794257250837,50.420884826134504,96.73759444562458,44.733822915911446,94.71995770003512,24.66986379786702,85.94731474612996,14.942267721141933,79.31401588723992,24.645847794912644,24.02397357564422,27.070510152617533,83.6818976245177,49.613663852540114,39.80665542602909,44.69295087541452,27.60342224392135,57.187114530291005,99.40982713230117,35.025668663519085,45.11768717100587,44.70647915774928,30.342342339172546,3.805824154706272,11.5701132265558,19.239154083754006,72.58517223158172,77.04636368544035,21.42384612368232,50.1910877491383,46.46845353996443,85.06676514630794,35.09995371023732,61.53579097762305,63.724304866288904,50.86499528853228,16.762003625499457,26.70928515250075,82.01327542051948,23.00762851354351,45.453772626369904,15.075848384329992,79.02369848550167,0.17181638862839854,15.840339010776173,15.705151394781092,74.30339754660984,23.43435007223804,80.89796441586894,4.988199494269773,87.52193180234713,33.65498547165351,25.619989843859837,25.033969401882594,59.39418162872104,1.4853024491844447,11.012320226760941,79.34253164339702,43.23771419251658,81.43556012217134,35.908624244702125,63.98084420111325,12.989528008685847,84.2360764042332,15.14511102890338,10.785656275405131,17.108651726733925,59.760797878992534,46.98517378246964,66.73286601843847,32.68920876529513,11.58242510208135,7.03139829150895,86.99305838175532,59.752633928986434,9.983188488043226,14.649858520447989,38.28639750157653,10.361363569064597,59.45343774108311,2.841567749977969,86.48106255600258,18.990031745748215,16.30634528145508,76.13503204733867,76.23941330521757,69.0159378948622,94.82007120585628,6.015402184016838,90.4321368789284,42.32793306548016,91.82013601067351,3.657813836281776,86.09964987905875,78.30872452561859,62.40513319828162,91.53395485122911,80.67119878953811,17.799147982993812,27.76964887138703,37.698230828458456,94.13668234726114,26.74130103503074,15.554582142695207,11.766911542855574,60.99842422189084,78.42132560252723,86.02286365782503,85.11373975649316,91.36578971324411,97.07138559700974,89.66217800404773,18.633625986708935,68.48565424847592,55.46607533781934,52.26313773600045,90.71402450190041,53.08987832010974,55.626615856911386,47.66842960881937,92.79050702650721,37.253036745561076,48.61140884607721,30.711742790595096,23.558428848009328,71.21518925867234,95.16804758132595,7.717347519006812,54.16474292519947,18.56295529157891,28.1263946411038,13.145865065621798,12.836200050592172,78.40498377409514,66.39330737838894,13.712952955138302,32.743417263310526,30.565610172482394,69.94200875686732,48.43481405335366,57.62846338236247,22.836585587170465,69.43013766223449,56.59303498667042,56.28344337856219,71.09944560822787,80.52705103661096,68.36704982770999,9.122368688375616,4.653910773584502,46.993531786757735,64.23813638172292,59.70783850950638,17.778279784030826,65.32368698551207,23.141418185298523,7.135513672273608,26.303156028552475,38.24813411606422,15.633787619079097,74.1478051600949,16.24990094980613,63.487144236195114,27.8389250252823,19.967500142677064,71.12686288864315,89.4473901423946,24.160939317204345,73.47817060444937,62.83341051111731,8.180843255444303,55.428570767961126,81.75215072767243,83.65037627689867,34.42153759881814,50.681049418874714,12.147742202144274,66.2912139178389,14.794699380238452,16.645490968231037,5.190483249350564,20.46127445854278,48.3222839489605,87.0981269364225,59.14410365944778,33.26403837971527,51.728673940528225,5.575482039530611,42.53465527930166,22.87499915403879,22.376984734600835,5.314827209276474,81.48785369968185,39.57979319075831,25.02879580649421,60.76518406496139,60.69836779138035,48.48443365985349,20.153821272008965,63.14647344992398,26.69170238560118,49.62243232576914,86.63981124822463,82.39642557145534,42.85477074538683,36.136374700221566,98.7518846649023,21.695153428352487,28.911559794287633,0.645026957715511,18.74100576504365,53.97892309249636,62.22782438658887,76.05228980868576,5.7456298238971915,99.90165785299614,6.789603476888695,98.28429255882683,30.215204545565488,2.5194115068884804,66.28947626312788,71.90472193618683,79.89979456231974,45.597755922353514,99.73765437791826,3.570223161930408,94.67382677003849,53.36779425028823,97.9273080176454,89.52519673537091,60.93704831139137,0.9142069278693765,50.38636310374376,20.11862093885284,24.993820433530132,91.73939567413811,27.237651737651536,42.37440787400417,4.020775701204737,40.135132526187626,95.47368973937023,13.965043743196803,74.543062084639,46.68054991563048,39.76049028181158,84.09821081437502,23.56687139708461,46.448790149317354,90.36102140472495,39.220771266967134,77.56056006234465,52.44547062860487,45.42265461873397,85.13706963365208,83.28914911603654,23.660824798383217,38.198813215288254,11.31699696947579,28.39545235994655,5.623945518022899,8.613116908804297,83.95326353262409,17.017007086976854,93.92472571657763,87.2873011259766,21.868860179788495,67.3371916052356,60.07834954280749,73.43548667199731,35.93405344218992,48.16688998672862,22.231619787203094,18.014882952120836,23.523466128548876,28.844757952832122,27.628543566552345,63.4240092377147,3.9874351794949137,84.72774561867892,96.87485374288684,41.04827798004268,73.27554840978614,20.36501603086427,7.638168523594857,50.217447695554284,1.3848001960564127,76.73979012646687,74.327867783992,5.812085358536656,2.3344543178908106,82.4117953423972,81.4060832528569,7.415459524469858,95.7652335016097,56.727397291709536,81.29798351119487,44.05459028064228,73.97904458546479,80.98060644297118,36.87164239380832,84.9714485573878,99.05190432038566,33.852517103867676,42.9169956591112,18.757782356789075,91.59486184425484,31.072012087555677,7.575837593851286,97.1914649880274,63.596771330363126,39.1361307843878,76.43936850170452,48.97512882128918,35.11533620629802,12.822160395148929,0.21225948380365622,48.1765530413928,59.4986690525602,80.30845173986086,5.8314917275167355,17.67764685938358,33.549266967961444,26.06515175537908,30.99120938906408,18.480686336032527,62.23656768846569,87.43542208367802,71.93733173069657,52.294447656478994,58.57177205062663,56.533700184294666,98.73664106618885,87.49234301286648,26.62340690302547,57.66973932124003,81.90652862487686,67.91348551970347,27.47470721984132,78.62460697574274,80.2797204443363,26.05906933506733,74.15784093706844,6.604343726136042,74.00639262457965,74.54538542811054,82.1853997433859,7.449045444424152,72.1808162821097,27.017440106245015,85.80350048848419,88.3064813125018,3.2515059753077113,73.7527192699682,76.45616238875928,78.40394285012165,42.86390823096122,39.01896155065068,15.527294417982596,15.370818406377095,12.951114308343337,36.825599430635215,11.531774442357879,6.5865585584024,28.880328631929842,80.58762703692007,75.33673303754578,4.93798441163068,68.11399400685244,73.37253575566605,80.51436463564646,39.70452957247641,97.2355987194178,53.271380168694314,8.567843757355364,6.136166313636848,37.08744475249557,91.04918228430276,53.81623042170342,14.55985583069207,63.34173746690126,43.664459357541595,29.57174576124084,39.82275493465265,33.47648089880977,29.09002995637203,59.74595830914309,26.224290412245022,66.0388574537667,19.544733586316266,22.770826298688984,22.95819940131093,69.20881891974007,57.30984449414972,14.365793694276963,39.65553215989497,75.48599617590718,86.79256441774855,48.21446766663793,96.72475835515007,74.08844653857473,34.52954033608335,58.817599548874824,58.719494402789486,26.399871291724907,54.70011697545838,39.95947912600227,58.88567217771662,67.90577706032953,61.69646554350897,65.15032080938855,19.3751642899465,75.67585959631657,96.33521433541785,78.48659588916492,7.661923831344342,17.03438029214599,21.901476927660557,16.448316480976366,0.8366080666078135,10.261494337516552,25.813387585451665,89.74869395549557,22.225947697349223,24.671935918409492,44.620554070781935,18.75450082153951,16.332001833515207,48.41371682908675,78.23925184139665,85.63010721080386,85.17927081462524,19.176547847876446,46.02715911919264,37.71972958267982,12.345019883109565,90.99265657570639,76.80332431049234,86.96756872266374,76.85482322342362,80.1041396626952,72.20246740801807,28.319473033320584,67.62239852593045,20.756971492864086,94.87972642295972,36.41168722299483,65.79953523745473,8.121232156148716,74.07655720183693,97.72462702870155,78.47944947336572,63.257982575392134,10.802851814149527,56.15853687105419,24.249334676842903,6.734400142550245,64.6512317796867,71.32748395530895,64.56627866819072,8.812746213932222,33.94210385769537,37.78048900058434,80.56140620316647,49.10438597979927,56.50909481768511,91.45222052938828,21.239468608854995,69.51017122151072,40.986612093524386,97.0346974157508,57.477522610678754,85.1312192602658,85.05230592742849,88.62191810327225,67.05641996206934,81.4380757101016,87.86924301309047,67.50952028434025,93.62532794875519,63.12734382157572,38.45348742017134,62.41022801582522,11.409165460848191,52.937422181838286,57.86443347090333,88.54707625234269,2.195261346868138,94.32503150976481,44.484381966371856,20.62910597870665,13.103223329064162,20.054296146478624,84.976547043485,78.06528384783158,16.999522053209514,91.28594592449117,20.94694525743742,90.2876494816896,99.52414578307241,48.35397429293249,83.59302772514184,8.696220064691772,28.204687325105482,20.197905796796732,26.65223118575205,77.18989678352024,2.3214497648953447,42.272156043526934,20.554075442328312,37.769506006203024,16.38470082593859,61.52835848509967,30.4539653477797,3.205185123223886,49.95645874421374,51.538783378257534,0.30916345577315374,33.287372610172675,61.03671834946206,64.91890179708942,51.925159268769775,71.13502910568674,66.90157071229042,35.35370298204968,30.45900324409545,99.31998653995315,31.235768092554306,81.78583921280055,60.84288901851791,39.65310319519212,91.04294862455168,61.85840668890993,56.998045002487096,3.184917462480319,79.34149558615081,4.56439242445863,1.1232223359717075,20.945094590163173,27.707655802024355,19.257928779442057,20.674499529724944,25.721707359118497,89.11633664772258,45.82773039082586,63.43803946511961,17.15982166320289,78.88500014601625,39.77860303198837,79.06641406403072,77.25461688692941,82.78832598637257,48.513620189510384,55.06377685507884,36.82598532129635,72.51455393316502,72.33590224388433,80.21980506228886,8.655455587095872,83.98732707180608,12.544693071016066,91.04652525759101,81.75647694856298,23.8294079395188,65.21500634135849,8.01061556593725,70.38274897459571,90.91209311273931,8.998118586764681,14.813612308608137,71.52622907315337,81.04059178397115,55.92199976770558,1.2015955391796673,16.246679136294652,29.661387731043842,24.907024618312402,62.547919110917896,80.45418020242657,94.0461392113386,41.25063924812993,12.64388975455052,17.383132126806665,46.242000778618355,7.377419662675999,21.952007834088082,77.96505096253064,72.20521023649992,72.44746828172406,98.03618536707872,51.73455546033699,63.920312246703816,19.111282194694688,52.12533956074061,56.5788419786615,10.064243445058363,95.27013831342717,92.68032141974825,13.751173189159339,56.548614190759835,29.977022676939512,10.880917788039401,41.72740896249272,86.80688540594062,72.02550882150992,35.76387010995394,18.295747376557514,78.73344446570353,14.1474091680026,72.02945329353815,76.77337009511137,81.02014405451918,28.79422503844148,62.356601484068776,9.374118184988623,17.317956091486188,55.865802758823236,53.96192760697795,98.9423005419926,1.6910798326822518,46.82935508920928,28.05247445226935,10.661660560945963,3.153220323556305,50.49349306919647,57.330336983423166,83.24445276905021,65.89780206471032,71.22826162723128,2.5000044128606236,29.98071690063213,91.24585771895075,79.52390723197506,78.27308961919017,71.1408220673956,81.10850652173724,36.913875676558305,59.41154640889638,53.81386902436053,25.549931384846182,58.081961903578616,15.74302736128942,35.0256727221272,38.45003091021394,64.46764044118851,78.43674611567573,8.920599182136135,7.328630951471005,56.37169048945053,10.769455165607356,58.55620539372723,59.41697544828042,12.382419840033842,88.76321597306493,39.85466785657965,78.83654071956302,14.576373910773476,71.7304142648896,8.171149658422582,94.374160007922,63.45153227832851,64.8558199012501,57.365573620245556,76.27956490117762,80.44980621331564,34.17938008636726,75.83737874876061,22.435607345322683,91.56510779268373,36.43637337255527,41.67591165485929,66.18184067443252,66.54669012357164,11.700393997972236,60.24122650931256,37.37348229110123,41.939042385747925,88.37295331261365,31.93159990284903,14.022755307913803,2.9494986279143154,41.36926211569985,21.040444068391917,18.173508421943275,67.58061184269195,96.20923437481419,22.73634489104325,96.68162377866219,87.63886060473303,24.03066469207036,12.90446829789399,17.928661437270176,31.23907071441028,67.03228288421089,86.88640115569686,6.872764728671365,50.6304707669015,12.577261656461204,90.34469120845502,6.026868785983563,74.92500774868911,61.63410307257092,98.35978756565001,50.59217303427977,9.055359877376812,79.3583931165971,1.3693403606600651,59.959740182502664,25.82547178847634,54.81711929163857,30.000919486167366,33.83927168769446,64.95115431214464,33.79160328957865,43.77350536163836,96.81777761580463,37.775291194591034,39.592002759193115,39.08440338923178,32.060461219237204,1.9025608313136377,2.4049785731114715,37.326087646110295,31.044977515926288,40.217208242768564,98.05473436780039,19.897091755817474,16.712698109884315,52.54108031428453,39.66283919073492,58.47137224476705,46.9367214190495,3.5716980243208796,79.92556554682162,96.46161337661813,40.50591769914313,53.87932860806066,71.02660584936724,37.79486700793644,91.32188558289884,28.86385505418515,23.35873567721809,11.081346212360222,71.52317978555544,38.63903819586726,58.1514662087706,32.43810674145554,15.83689539308224,27.43959784944505,38.50840184772459,84.10183441214532,8.37331230562982,86.82630874670811,2.844701434883279,4.654692449633102,59.34134598952504,46.50336492724411,87.73788092621913,11.05726043662607,65.1502150706872,96.54445444623182,91.69887082970871,57.16446334731975,65.93022247139938,99.99943420558745,43.560277622557855,57.06442483417183,47.078861907073524,21.447136354836594,19.926608604600204,88.66877743830867,20.630519102407728,64.82727023179291,76.5699074267371,3.9002367055673726,7.608530120648249,0.37324996079066697,33.988614157642715,79.24589232407189,85.75666632039778,28.940834101022183,75.99567075127574,86.0355281086767,41.229097640617326,51.946490156501035,39.44749836528118,75.4662589530648,45.19015279908203,43.80846777390369,69.63684065675905,21.54789393080251,8.10817988165996,48.6823422882668,59.89676914871749,43.46514228401153,17.28807921818675,3.3012423397149493,1.5210184891999878,69.365343526974,15.72417246185287,26.895589806356433,82.63140513123692,84.27247098705375,20.472509167519714,49.915022172214904,41.24048012172755,64.87346924709811,28.006602179024178,82.08301112473232,50.06108779410202,60.177517380020404,48.58926764398349,2.8273276287152926,89.06503680652456,88.80986396258255,92.74814606485347,6.673476359597386,12.394318956334072,35.908637809609004,25.12772625934163,13.931130630001654,2.1517514526182335,67.96782660332002,10.840417902374677,41.941338168614905,51.36950656325212,98.44625523973899,90.51469114504805,52.270644840876166,2.6214113680708695,55.57527181406983,77.407384891749,84.18756148360983,21.91529318102836,11.125623787105798,61.20182683595573,12.32676796115909,12.995319893210166,94.7305135528998,96.94541189920723,62.0572337210676,11.94860715328736,23.670403807020246,86.68855247583495,83.54759932482413,8.715584389352705,98.857455288282,92.50635463502888,81.36624327894395],"y":[9.05176215671295e8,1.0073460787940347e9,9.616578073200056e9,9.512743227773005e9,6.720793886860573e9,2.804271688032063e9,7.468897835426054e9,5.385795316183317e8,8.030014406771256e9,3.0170503242005186e9,7.770798180838951e9,5.773461973268034e9,5.694432147035098e9,8.497493442796078e9,5.218375427795155e9,5.651283165813714e8,6.171339560614955e9,9.895258393553404e9,2.2602906356849885e9,1.262799102824741e9,2.3498418370020967e9,6.850679989222818e9,4.484727146108233e9,4.126250672398949e9,4.378869956423603e8,2.189740935196628e9,2.932146503380297e9,9.11715017490296e9,9.461714281299343e9,9.954944801055744e9,2.240462376028055e9,9.116161940482168e9,4.0756032194667935e9,4.9472927815320086e8,7.3105141772328615e9,7.652743269191469e9,2.5075450160936484e9,1.0160210575629325e9,6.78358911003705e9,7.557362833155732e9,7.4743777140369e9,5.997670450748352e9,1.7300095961695595e9,9.454308604357603e9,1.1177639821623642e9,9.639672507286337e9,8.373866298538296e9,4.362315803611705e9,5.54420314906761e9,3.796792482770117e8,4.392298961240795e9,4.2715165437325087e9,3.528078950086747e9,2.7760482487141213e9,3.764712857985221e9,6.06197481784309e9,9.808327461348576e9,7.345872931340056e9,8.562972437386325e9,2.7011617870933205e8,8.64470582772769e9,5.403334413284261e9,6.4475501649581375e9,4.616214619406164e9,6.267906481271095e9,9.420290548062511e9,4.354390132201614e9,9.14068008223618e9,3.4171596661077895e9,3.1816736122583356e9,9.959865461359007e8,7.702107986310744e9,7.79095765146019e9,4.2625780420192437e9,1.3809630259567096e9,3.4181770247293487e9,7.249984624839985e9,7.223898470759062e9,2.0117220844687045e9,7.179766836781268e9,6.66923253076701e8,3.828497344343915e9,6.94387746097405e9,7.760165525148821e9,9.059875525405314e8,7.117470162054363e9,6.523305017658224e9,6.358740718967442e9,8.944883815397177e9,9.613892601472149e9,1.0974352861185544e9,8.895227812474335e9,9.155987750652775e9,1.6239967296846292e9,5.342900509828636e9,6.597236776493249e9,3.822045466703998e9,2.315958731262173e9,6.01863918111712e9,1.5494338470887324e8,5.463039901817932e9,1.121647590753706e9,6.773532499888788e9,6.903154717203166e9,1.4549658046080883e9,5.451712598076131e9,8.019007605273942e9,4.391535326946821e9,1.572296726008643e9,1.1582337087497408e9,8.099480529218581e9,7.2637595984210615e9,5.1158303100944823e8,1.923353536585055e9,6.12770397097137e9,9.221073727207382e9,1.569000049321284e9,7.919354485461287e9,7.449954357635303e8,7.367111128351262e9,8.1239264778189745e9,6.241751964114446e9,3.649324003803439e9,1.8477905566135745e9,3.68049637959781e9,1.609871498244707e9,8.728796808948475e9,2.6235412515704327e9,3.614844515732102e9,2.1345197732813692e9,9.624247157636171e9,2.5910539261358414e9,6.00645314339161e8,6.056774561011639e9,5.365252093565842e8,3.7155511431711054e9,1.60287436342876e9,2.4935904217536407e9,7.420722011436261e9,5.594745718504161e9,6.376189127940749e9,9.343507820752943e9,8.096983226662865e9,8.773786623020134e9,4.929821357693035e9,1.660352849997453e9,5.78759997092096e9,6.679599700314957e9,7.440974369850396e9,5.666007181686128e8,6.189431787735494e9,7.389346638492327e9,5.901352093237521e9,1.0193297769593446e9,1.1174008381322575e9,7.009705762821703e9,2.3522416001694736e9,5.242269477719599e9,6.765859112473658e9,3.171156108118317e9,5.341790006178418e9,5.377063238341717e9,5.22512731553596e9,3.5039776556414194e9,8.74212052240646e9,4.364283955799997e8,5.472674232932205e9,8.832023347631603e9,2.519603980077082e9,6.387210776170437e9,9.606312793218771e9,4.639311696928271e9,5.851768817467018e8,3.36734449922681e8,9.66477759572595e9,1.1259676001557496e9,1.3580923919169397e9,8.410407801514528e9,1.1911096023462508e9,1.3893586333999065e8,9.059777673717764e9,1.624231658038179e9,5.717831319735266e9,4.617213907572114e9,5.550878735771573e9,7.368758834953701e9,1.5773061215943007e9,4.0525458463020835e9,1.4874882346823215e8,7.404902785413774e9,3.0799267422826724e9,9.476028593239965e9,6.350839077730882e9,1.4164938221514611e9,1.457146649609774e9,7.046318842571361e9,8.080944344218898e9,8.358406245760303e9,6.993469538500822e9,8.67790481028887e9,1.9120287495079913e9,8.4762147970467005e9,2.521597317064779e9,7.642193094136454e9,1.805557423784876e8,4.823177001733403e9,1.2437059967650921e9,5.068944979114959e9,9.80283658860323e9,9.463643547849834e9,8.077089259553947e9,4.845139070658704e9,8.544334207999334e9,4.1274977069644127e9,2.24697054523771e9,3.8357902636674347e9,1.0821217511488745e9,3.793406912561973e9,9.644092201759115e9,3.35187739148043e9,6.952798509351625e9,9.152163599592794e9,8.89664835869172e9,2.1031588397740574e9,1.3747756570681734e9,1.383889179057274e8,9.618251881474113e9,6.500704986542482e9,1.3234088549840405e9,1.7535237362437317e9,4.713957896265687e9,3.1943898318422294e9,2.600532206508387e9,9.45899933850075e9,6.346750038634255e9,9.871258744224354e9,3.3905457371009626e9,4.92372789384603e8,8.733349565061514e9,9.429998360505993e9,6.310316371523928e9,2.304639904450874e9,8.570463302278567e9,3.693694776056695e9,2.4044427905696144e9,1.299475484834469e9,3.7461970634650187e9,6.89476947110391e9,7.564248181756571e9,3.7715683741665883e9,4.736710742990532e9,7.463213268985223e9,9.838226123816069e9,2.0068831982392588e9,1.8136128113876026e9,9.779419536510925e9,8.940100758277813e8,6.86478976634039e9,3.8970454951229815e9,9.308330660332544e9,3.0951896757702246e9,3.8790038623558655e9,1.0636596692446721e9,6.178890024405514e8,9.386194274912695e9,2.4771850180343723e9,8.628408696170542e9,1.1193079075857615e9,2.3600107316346254e9,7.650270522004704e9,9.195766305962072e9,4.5375964416745825e9,1.630302055909033e9,4.531643017430636e9,5.563253008681443e9,3.0391404061694517e9,9.229155472578398e9,2.2862850575134554e9,8.301814581789482e9,5.930777346132067e9,5.14026992768123e9,7.9083933579860935e9,2.5750618933602386e9,1.1648406834390314e9,8.856754988852896e9,3.656105468354953e8,4.888287650945749e9,3.564901904003267e9,1.0376080032219937e9,3.402896575906258e9,5.089856660802794e8,7.320565968017545e8,8.149875380425507e9,3.173486354497742e9,1.3984944082151296e9,9.003957929486208e9,5.328951783179568e9,1.633285911669764e9,9.012151234568266e9,9.829991696026945e9,1.9215654709405527e9,4.597606146548772e9,4.764122579703768e9,9.278987636354961e9,3.3723196137378174e8,1.3798722207249181e9,8.294155556547899e8,4.10106739822401e9,5.180714969641909e9,5.937261793949056e8,1.5925714331847307e8,7.167265620360116e9,5.448979890887403e9,8.830932494785426e8,4.562336355638528e9,5.705189447708434e9,8.156963575344958e9,6.23286306664376e9,9.219060356027043e7,9.317094848194536e9,5.58187012373622e9,1.122984121984092e9,5.767870833821029e9,2.3039327343595896e9,7.644305907023459e9,7.422243968141028e9,8.791354745697115e9,4.64030399761307e9,8.583278861929772e9,7.207333459318088e9,2.1497108119690056e9,1.4659697101004167e9,8.000068640534995e9,5.944194363199677e9,6.485521736929067e7,2.3767453281744256e9,4.38661218345115e9,3.3031967873108625e9,1.4071653610849776e9,1.9831185253472128e9,6.526170316958463e9,9.286434609750971e8,3.14430436139598e9,7.244159013672662e9,5.507556572207482e9,2.8347278379443707e9,6.694973830327324e9,4.385342033136758e9,4.021153249548536e9,1.836544451859582e9,4.429157350381708e9,8.57519871862692e9,8.052470968714517e9,4.572161995468791e9,1.0247391262260064e9,7.112823242681382e9,2.915290736825857e9,9.619470826797909e9,3.3813685202206736e9,7.647825953859487e9,1.6413289537380438e9,3.3105221507814198e9,2.0341927566989849e9,5.371844369921718e9,7.065953749412663e9,8.251930188876312e9,3.3713028182177405e9,1.2605323649294963e9,5.105679691728548e9,7.5588012599857645e9,1.129062595514675e9,9.130736796150675e9,2.157849484143929e9,8.352102414292568e9,2.8457260888432713e9,7.468456555373821e9,4.620806765402889e9,4.669266454262296e9,1.8335741950132723e9,9.788209048508995e9,8.528033183661678e9,3.396841992056411e9,4.218731396180484e9,1.8905277975795364e9,1.1628524779399774e9,8.444755504586199e9,7.287603202897289e9,9.595256019349186e9,6.816389949257497e9,1.7841013324723065e9,5.841094200177489e9,1.9301626484952593e8,3.596733998041383e9,3.405912295801803e9,1.4861141773223574e9,3.3986013384683757e9,8.057414738112956e9,5.038720295830184e9,5.927241974969821e8,6.164990589315274e9,6.205768381032146e9,2.921617307145864e9,8.94116734892769e9,4.488863660813391e9,8.997092797059511e9,7.402620177174929e9,1.185511488597135e9,6.218040968910817e9,9.629156766693731e9,7.441440853634866e9,9.160208990168716e9,4.710647495496279e9,6.64198329537148e9,6.683905464820395e9,8.940819040341833e9,4.546710362770221e9,7.011490185194422e9,6.0173154264180975e9,5.928455718958712e9,7.859825776621549e9,3.302927092946435e9,4.462320276599018e9,9.664492395211714e9,3.2835063042507772e9,5.577406373992977e9,5.41819661381194e9,6.226691962162309e9,7.075578307278596e8,2.3052951120916734e9,3.677372873302669e9,9.612426089861084e9,3.920510942890835e9,2.6797651803534517e9,6.177346944160665e9,8.59716970452724e9,1.5965655962604897e9,3.482503697534424e9,4.1703741831675224e9,1.358401470007765e9,1.9154494296091396e8,2.978234681878218e9,1.7699504872112303e9,6.455157484596544e9,3.336112253647908e9,7.12898152233722e9,9.16884234325574e9,1.4717958241799667e8,7.338811567786449e9,9.219022458549528e9,4.77610386653051e9,5.466997906318848e9,1.4027423519248328e9,2.950156233561756e9,2.334631489283988e9,5.405214737111668e9,5.932710373642787e9,2.5630782138829846e9,7.394113158952961e9,7.026234749876206e9,4.953967854324457e9,3.3625510624479494e9,9.305272796853216e9,7.93439780129351e9,9.38936617914674e9,3.7098290742435102e9,5.438573124249362e9,9.69798548585309e9,9.503031366191027e9,8.375717562776836e9,1.933135218438361e9,2.7662715982298856e9,6.408230466076015e8,7.723775363012502e9,1.957566997819078e9,9.54548678150112e9,3.94704912980115e8,6.936525455151397e9,4.074199340754552e9,9.96656493529057e9,7.806855750348681e9,8.127274277385251e9,9.938264765577917e9,8.517731356419953e9,2.0845620874939053e9,8.604253661348637e9,9.04242214804557e8,5.188963942465824e9,1.7702359491170328e9,7.106582672526309e9,6.524963822010177e9,7.225783350690936e9,1.8933376904727395e9,7.907139053693223e9,2.824361987473073e9,6.8039788789491005e9,9.345721383901775e9,1.7959727991845088e9,9.683711430440802e9,9.955524278067509e9,5.782768876009013e9,9.581966632287321e9,1.8393012787308772e9,5.053067742593628e9,8.186521348304802e9,9.165543575775892e9,7.433997562959998e9,4.7592073963752645e8,2.9195439057189245e9,9.623940973663757e9,8.414872695020136e9,5.535438809129289e8,1.374841483425635e9,9.569166954028595e9,3.531946855322592e9,8.60550816994695e9,9.790125039484512e9,7.590463176724416e8,3.1065455165590515e9,7.271105741191618e9,8.670240735513132e9,4.029359571914726e9,7.78900515080021e9,3.6720821378120394e9,6.699077831565614e9,5.984574062761863e9,5.990407483716855e9,1.8429685410176556e9,7.005146111038381e9,8.000192744347201e9,2.4481480913116637e8,1.9938545191595259e9,8.893570711954899e9,5.803119268218193e8,8.942567832530987e9,9.398923981481134e8,8.339889147139859e9,4.0350864953251586e9,3.009293072455299e8,5.984598842468047e7,4.0781222156771193e9,9.738954652400648e9,3.404472442954908e9,6.65237566599307e9,1.2646701086881752e9,7.411193037634721e9,6.049085636703932e9,2.5166956646996765e9,8.477083308490887e9,3.5153862290820827e9,9.663992385751045e9,9.605163209438036e9,7.354583187245876e9,7.189997359332024e9,6.19542032186739e9,5.60951521597029e9,6.577008066800405e9,5.716418233283893e8,9.262398644021927e9,5.931819116289454e9,8.457640136296479e9,8.393660512196629e9,2.6458189685200796e9,6.026431850124676e9,6.91580712545811e9,2.800588890454e9,2.277306373761283e9,5.243319237249254e9,1.9728479679107592e9,3.110636504301522e9,3.8701976325507126e9,6.612251299585681e9,4.480947069638481e9,4.491215589318443e9,1.407597494688857e9,9.901196313040035e9,6.973136524250328e9,3.701786795289879e9,5.125833940148407e9,9.082651163936825e9,2.7861045016423283e9,3.1494227719130354e9,1.7484916626077063e9,4.535921451318203e8,1.148478827526629e9,9.427226130756975e9,8.133584718745585e9,1.251462292403921e9,4.99693007757166e9,6.741279801936516e9,1.950192185584294e9,2.34600779415288e9,8.114334534306667e8,8.636412518339843e8,2.669924369282033e9,4.759602556229607e9,2.032819954252102e9,7.507115934606744e9,1.3912593158568754e9,2.2920143450183992e9,1.8291678418787093e9,6.514425586797288e9,8.280930904530455e9,8.604694918761536e9,1.8167773269800968e9,4.1940638114460726e9,2.0935052327622073e9,4.494120654368763e9,4.305522017801563e9,2.3936881928450394e9,5.459889836820271e9,4.928320311612505e9,2.6767966130998597e9,8.048667261762916e9,5.650680169549045e9,4.332053428912365e9,3.2899583318151703e9,7.168777456217884e9,2.2924558142762218e9,4.3905056443457544e8,5.79411365989824e9,2.7852038935055356e9,2.898756217216781e9,6.073257021266023e9,4.7406498252240305e9,1.2228290715462675e9,7.142766517328595e9,3.374047282833903e9,8.117996434147078e9,9.236341463339567e9,9.551299750535088e9,3.792876820860238e9,9.602500167928337e9,5.247068914497064e9,9.537481595764845e9,2.0800705871199565e9,9.569890164247677e9,4.870758817012298e9,1.697862729520041e9,4.4708413088875675e9,9.52193855858126e9,2.8043585577915397e9,4.903797349348671e9,5.546210361071191e8,2.0754609603664231e9,9.497982954766277e9,6.882346089914142e9,7.586491414420247e9,7.934252230537559e9,7.330195444421068e9,9.530828149867207e9,2.998295884215593e9,5.080884774979622e8,8.424096551312911e9,1.424445289745846e9,2.8513251782904735e9,8.90528875925856e9,7.042652109806809e9,9.271847663814146e9,6.510757169507391e9,8.878840185583248e9,3.7292949088828897e9,5.225320621800019e9,1.3522462729465723e9,4.8969762027109785e9,4.530192309602284e9,2.306396877028204e9,5.070397749403766e7,4.947672318181072e9,2.6311384616001077e9,3.592090809051045e9,7.028577827406212e9,7.912069261720585e9,8.95743686176612e9,5.404147038275052e9,1.9345490506530883e9,6.386249433548533e9,7.334812885315345e7,7.54836169656645e9,2.254178488787173e7,3.979987311227481e9,2.976117469461449e9,5.740530490228157e8,7.581862271965212e9,6.722374735631988e9,9.772559801651823e9,2.447202087547321e9,5.705715446939283e9,2.1610928410726957e9,5.799481123147809e9,9.43723195478389e9,7.537666473120406e9,5.161136842403826e9,3.56974635394218e9,5.881532795591637e9,8.767197288667284e9,4.450699427577482e9,1.9146273147720294e9,2.3183005851912007e9,7.465962061182474e8,7.667018486463861e9,3.156693582749466e9,3.462745593084795e9,5.2152848901133585e9,2.535177649030387e9,7.497179302834908e9,3.011487550911677e9,6.211920478015052e9,5.818513208046144e9,5.256011587946996e8,5.357354527527835e7,1.2919356537903547e8,9.458483144919498e9,3.828329368793634e9,6.028875744823335e9,9.692803966966394e9,7.662778944506695e9,4.269832256979594e9,9.822204634953327e9,8.74739542898325e9,5.494737410765893e9,3.292986384327824e9,2.3416719290083976e9,9.277967672711332e9,5.774693384279256e9,7.562175867235144e9,2.3403907991415894e8,2.0815081905822475e9,3.170650427237339e9,3.4120879969369845e9,1.157736507729914e9,1.1101229809566305e9,2.208628124880906e9,7.494842252878237e9,3.9695300523053656e9,6.273486620915075e9,7.318394006481458e9,7.234587411528149e9,9.646765886289722e9,2.3220135217903438e9,3.443456981278852e9,2.9746407710817747e9,2.5956389723094788e9,8.880800170423935e9,1.5311711550473206e9,8.533461814319664e9,5.015814483978431e8,7.456477081942339e9,7.08728965139653e9,8.057946262589351e9,9.564412255051586e9,1.0968437216137917e9,1.8853709879399028e9,6.100080454037407e9,7.267647131909088e9,1.741915942567267e9,4.82782165317858e9,1.4362047260370493e8,5.390549662179085e9,3.977095224286343e9,5.857516112513248e9,2.5981595574016824e9,8.640710352069422e9,7.301614048945302e9,2.8996242549225593e9,1.8596113525177715e9,3.194561212734223e9,8.759718216219212e9,9.151026597777779e9,1.4699792089106011e9,8.607542745633425e9,3.402731526476788e8,3.935739626849163e9,2.9878333928100595e9,6.326254599882759e9,5.959327429575888e9,8.867218882793694e9,8.775772146278316e9,8.236058542893368e9,6.034607515351445e9,1.508668803081884e9,6.199144276893022e9,5.086748806242421e9,6.93434728246939e9,3.7338036466170554e9,3.0953065721600237e9,2.6453720528805313e9,6.656786260168423e9,1.0423071094492853e9,6.513252581657621e9,5.211816491157573e8,9.473717109096058e9,4.54050364866619e9,3.5495451411236143e9,1.8319697293351588e8,3.7236041766133986e9,9.848940453666737e9,5.275292812779975e8,9.621084028037096e9,1.081720894791345e9,1.8033801302834208e9,1.4531275511919518e9,3.711465167984052e8,3.1082693796675384e8,7.523714082437644e9,5.810736705969889e9,5.155975847452067e9,7.53126981857608e9,8.774144663149569e9,1.2129915842861583e9,1.6212917954396355e9,8.568745629432656e9,8.96645019266174e9,9.95436088564549e9,5.963605148201946e9,7.144217172333122e8,9.02476662184168e9,7.081306167993216e9,4.1810117908215194e9,9.77317505294185e9,6.626919864798417e9,6.746980248145276e9,7.637115325865059e9,6.860819839457189e7,3.0747906161209583e9,9.148218820398672e9,9.789279571067111e8,1.2686253996576324e9,6.999043260020244e9,3.009433233996206e9,9.556488514558771e9,1.9135866067489848e8,8.764719499626886e9,2.1188185543488424e9,3.3105790013434267e9,3.154620586465581e9,3.274358019074123e9,3.430994613039763e9,1.0966485771139534e9,6.081415803640099e9,8.750665771558563e9,6.247421565408423e9,7.6018225722470455e9,9.43261832525807e9,7.773462915021277e9,5.705721374214208e9,7.347414241456594e9,2.0288865129050138e9,8.316070472184489e9,7.95314716912604e9,1.6543098853717709e9,9.035173502977089e9,3.965496904583282e9,3.685097401420474e9,5.651269244119537e9,4.0767006807322626e9,6.311489515975752e9,2.9066737795201383e9,8.102378632714009e9,5.179946295045001e9,5.86947981787429e8,1.9587723029977388e9,1.0663153286194139e9,3.363725343103703e9,7.070962205172151e9,6.103031343681418e9,5.645601559423211e9,8.138765993397022e9,1.1941453554026449e9,7.577164491537404e9,9.829976580858568e9,4.2422077809182115e9,6.584106644810138e9,8.13843856104946e9,9.732726078732319e9,3.8934625884727e9,5.428057475043557e9,1.919004056781436e9,7.461763977226226e9,7.5412035489629345e9,5.372755161892004e9,1.5928477852170808e9,9.756632574985092e8,1.3298983029393396e9,8.975031078543982e9,4.352260900784246e9,1.4233306689768443e9,6.877466658028611e9,2.8049954318298564e9,2.1459362725200725e9,5.137004454021879e9,3.687710432911089e9,4.655440475682516e9,8.22845340079954e9,5.578318902679102e8,5.550381405418209e9,1.2379738523835005e8,6.1001987166060505e9,7.328210228427881e9,3.5046281537045045e9,3.5419256477080607e9,2.445578965861147e9,1.4061856735056355e9,7.076294482696606e9,9.370039810473698e9,7.961125202819663e8,1.1106184602105706e9,3.9650752093833286e8,6.013249725146285e8,9.442988175466272e9,3.781721831353576e9,4.667988744015865e9,9.139389439143196e9,1.1484128112643733e9,5.325898228237176e9,2.3246210203299923e9,3.867255776206435e8,3.1819822847624393e9,8.067083881485904e9,4.560079171728282e9,8.520523059868743e9,1.2797684639803598e9,6.763112072321902e9,1.4124488848964956e9,7.053627863007551e9,5.133018687718553e9,5.90021112345141e9,3.016785162443937e9,2.5040929523152165e9,5.871765071856638e9,3.3155078569132857e9,2.5353721521451087e9,6.336468792417355e9,1.7497336857937186e9,6.019843993092522e6,6.440305090067484e9,6.38779694456805e9,5.1735129281298895e9,3.602220901525228e9,5.776020376349079e9,9.721958543343271e9,1.0292872363397121e9,6.012095664584801e9,1.4472979056762958e9,4.994931754287962e9,3.5441168965050898e9,7.313586200578168e9,1.7223776049176898e9,7.202733418959859e9,2.4191616185709887e9,7.468026048376831e9,7.87125645453271e9,8.799145542801933e9,4.850589419052383e9,4.66329445444595e9,7.863500147910183e9,3.8067058189057746e9,8.236426490860719e9,7.127868796171621e8,9.086691289309437e9,2.200316844160286e9,9.514667973249013e8,4.828262253184384e9,5.459508810106823e9,9.218121491088837e8,8.11836722290229e8,8.095117287675944e9,6.960971793573232e9,6.652709818110466e9,9.861291928451815e9,8.546198016316133e9,4.190359330850949e9,3.559934406940288e9,7.451910549744596e9,5.830738610979862e9,8.160754526708969e8,2.4094815551304984e9,5.427546615056068e9,5.415629956827578e9,7.8857505433886595e9,9.384370439653364e9,7.738022305926895e8,7.203220821299189e9,1.8549634775429204e9,7.928337008655474e9,2.5699710372753625e9,2.093729949842449e9,7.986312560486159e9,5.569117304819521e9,8.280493192391512e9,9.945523788585917e9,5.868889297948254e9,3.0714721197950025e9,8.581213792404741e8,1.5557912838333466e9,3.407841721469684e9,4.201677583725575e9,1.3351753026554224e9,2.568054550893348e9,2.0271014680313215e9,6.186186734865951e9,7.824170019871546e9,6.174275086291174e9,8.346548751964311e9,7.61295858963048e9,8.97501071095049e9,3.8898469949788704e9,6.94053982003493e8,1.7457987569315004e9,6.204269796317053e8,1.5824782688778393e9,6.356629963955003e9,9.045177555189599e8,3.9491050695423293e9,3.0115263754619837e9,1.311147107726004e9,4.363456169015154e9,5.768693424829612e9,7.157489505558528e9,4.525874824772166e9,5.572235197102941e9,3.87822834329541e9,4.943020503792833e9,5.74373813640631e9,4.435645463027557e9,3.6930288510037236e9,7.966737079561988e9,5.1797648937623733e8,2.8006519210589185e9,7.436824695947569e9,9.581666142870283e9,5.184418022859949e8,7.675761966068762e9,5.620736890951542e9,4.1198960181169252e9,3.4653863270087495e9,5.634798456938148e9,7.511688068166281e9,1.105365435098954e9,6.981525622235729e9,8.434283343137227e7,7.22760914842191e9,9.250062621610193e9,4.0137536861459255e9,8.399063482790376e9,3.1004741408266835e9,6.0396074711373415e9,6.726282840060722e9,7.631310090433336e9,3.223802260009238e9,5.983658417192609e9,6.896275041228121e9,2.59832825272857e9,4.840654370668882e9,4.2900059404788904e9,3.5436995399423575e8,9.476692377705048e9,8.694039783777979e9,4.8926223046311337e8,8.24796855208042e9,8.129392725210477e9,3.845887365434453e8,9.181246969513668e9,9.900796060250671e9,3.622068717518111e9,2.999748728170739e9,9.828953381648434e9,1.971339563483725e9,3.6441939968063164e9,3.745623177635493e7,8.82932042757661e9,6.646805459841939e9,8.939501628836334e9,8.361819843497061e9,7.098314264522477e9,9.75006299302499e9,8.231177977929496e9,4.30746182885529e9,3.90026712383318e9,9.654028134512033e9,3.283064151081906e9,9.954832893149021e9,1.0251514058515432e9,1.6801472322002997e9,9.785676545619804e8,9.091130403186642e9,3.150592212233422e9,3.9723546548880396e9,9.430052091957102e9,5.143993356110433e9,4.515235262654096e9,4.125758056992871e9,2.0852763483119485e8,8.122693177535972e9,4.29716260986637e9,9.044071690443178e8,6.509529362401618e9,8.43290817403689e8,8.840978595809017e9,6.191905584160584e9,1.9528310656616154e9,7.229227874972022e8,2.4389990975690246e9,4.699411362506788e9,7.224196513832035e9,9.389681394202154e9,6.385649803663221e9,5.464117016433984e9,9.943915102869532e9,4.297485031007498e9,8.116868271254116e9,3.0553277603444495e9,4.357674235217525e9,1.9633950826947334e9,7.647755041925974e9,7.675913051892558e9,9.257089062473967e8,5.191758231090825e9,3.062586422179292e9,8.858335409050653e9,7.1750339100404005e9,6.416863529533876e9,5.471077679983832e9,8.801299717294659e9,3.693230294934632e9,7.045745740072694e9,2.6293434703469996e9,7.040257368563995e8,9.99571515729174e8,8.203170607684618e9,6.338671436584399e9,4.478059372616893e9,2.5903916396891513e9,8.858760175077251e8,4.0979280195884094e9,5.792070016726529e9,5.119830754467007e9,6.545428102876527e8,8.575018356286412e9,8.044137806340254e9,3.2678818101059504e9,4.764350282646628e9,8.966776478787876e9,6.114155156345693e9,4.117318533447922e9,3.6922216949544683e9,3.8439373572051513e8,8.0738261656990185e9,8.117942908835259e9,7.933192169871756e9,2.1557370396768017e9,9.252836652275667e9,3.250074181592828e9,6.510902794982599e9,7.94171098228104e9,8.672690524133282e9,6.343659824555901e9,9.914814197305798e9,2.0713654429460603e6,9.755293175701393e9,8.206013636203314e9,9.163120335986385e8,9.613041596782328e9,8.320865956496329e9,2.355934219920398e9,7.927155511160073e9,7.435596561639235e9,9.409416900527893e9,5.665072647951428e9,2.780464000054955e9,7.311659144663672e9,3.5694360993455954e9,6.629395735877562e9,7.531481751496793e8,2.7327703711395144e8,3.741306531560085e9,2.5502573223747783e9,6.208849603587479e9,5.983725308981316e9,5.1551532597184813e8,6.070240634615807e9,2.628692473034253e9,8.989048235787899e9,7.112093993390155e9,3.7612878010146775e9,5.516761702275176e9,4.511493831108378e9,5.695734502356745e9,5.217402802228616e9,9.294202373091864e9,5.64779539318223e9,5.369513378213681e9,4.7404623924905854e8,3.4694932145478563e9,6.672862832118136e9,4.91698114740914e9,2.1115197978130662e8,5.938974321666214e9,1.1934478383432968e9,8.377556013700483e8,8.951175479183804e8,5.159887495480154e9,1.9245243270153677e9,6.336892563240482e9,2.4679133561456747e9,8.2721351872969265e9,9.56962088266895e9,6.501180405453288e9,6.252106132933992e9,8.67060848379109e9,3.9292640752364826e9,5.983760540497162e9,4.851645139203062e9,2.1079121473172348e9,2.3222187248346004e9,8.322333066800137e8,1.899033383763582e9,8.2970092984853325e9,4.475486073669026e9,5.287443894864435e9,4.377644240402174e9,3.5949268465823593e9,6.829319648863381e9,9.58224315817308e9,8.392137749094378e9,4.373846421717386e9,2.2437416289182076e9,7.906059398446879e9,4.383413615974085e9,2.3221100022866416e9,6.577186155833359e9,1.3830641001457222e9,2.6230159142905407e9,2.179508038218321e9,6.166429374704116e9,2.1218411696973473e8,5.744134954115569e9,6.632042409113916e9,3.0795015328037257e9,3.4647780181198697e9,4.557693619638454e9,3.7117174683939037e9,7.7729701258074465e9,9.007131273487635e9,7.498801008261844e9,9.637017091898283e9,2.0454909469116457e9,7.761191776361269e9,6.168231163872878e9,7.168388314579642e9,3.7954415494748926e9,7.29730157194094e9,2.2909481663981314e9,5.003270830879436e8,5.707935066808109e9,6.601517117080385e9,6.266825212426927e9,8.655008852612429e9,4.896989889933611e9,4.830928313131971e9,4.888637006195633e9,1.2177760950282202e9,3.496013207273919e9,4.1286059101512794e9,2.0495100012553568e9,8.434846809244426e9,5.774518639862794e9,7.921347309678052e9,8.271146232423666e9,3.3387974055537386e9,8.747371404256067e9,8.650301593358284e9,9.322928902257238e9,5.125102220522309e9,6.02283053158448e9,5.948725411041175e9,7.541350897862886e9,2.717369081101876e9,4.832415973969425e9,8.397447891350096e9,8.93509983332418e9,7.26735815586228e8,5.511756679415879e9,7.07179700168967e9,3.7582318641761637e9,1.5130722712948462e8,1.7362496563392515e9,7.080426289083993e9,5.578238856281532e9,3.8467161502400293e9,5.185477207488274e9,7.047429056264514e9,9.689620928361305e9,3.1824680162431583e9,5.800793037307483e8,9.461190904820793e9,1.8106090698447043e8,4.755056922224187e9,8.66401298763841e9,3.119214836785924e9,4.45514917553339e9,5.768651123633296e9,6.857541606616849e9,1.9045125375489213e9,2.1180977554552815e9,8.11575620237038e9,5.548377211906425e9,5.439301591800943e9,4.471459736531136e9,7.459807566725804e9,5.136447626894566e9,1.3881104196127136e9,9.514886300938019e9,1.3315828665549822e9,9.135796496401964e9,4.699117076484085e9,3.241979229625941e9,5.173032539496691e8,8.544037849366881e8,3.013606687883894e9,9.55587252217483e9,9.346537309986125e8,6.318806719678921e9,2.9155105990475717e9,2.6337578862059474e9,5.143137162287664e9,1.0576026470969013e9,1.2547440969548218e9,3.4440176932869725e9,4.0919730763907514e9,7.348705372918874e7,9.702300368477362e9,9.795106810309898e9,7.711816847667581e9,1.7617949424825952e9,4.0593576485662875e9,3.352478870866936e9,4.839754112346129e9,8.413008591949121e9,2.6058838780321956e9,1.7473253475223138e9,9.095875891103182e9,8.815109184694214e8,1.4215365887144637e9,6.532648373201954e9,1.5567843273762693e9,9.935731391918688e9,6.862568655033075e9,7.435965000713302e9,3.211780394410986e9,5.0932291703158605e8,4.1013721867269635e9,4.0614590559817586e9,3.5237315574731507e9,8.58771252251849e9,5.587903202859709e9,5.478609862861824e9,5.705699566788321e9,2.4318747017101607e9,3.4322698064647527e9,1.17847516822438e9,3.0897916976780815e9,7.446910029435887e9,5.2206727207157e9,4.8335887277514476e8,1.1659227860477583e9,4.639869243890759e9,2.835072210761702e8,9.244830806952438e9,4.736026985341991e9,8.092004483353586e9,1.7372632438609493e9,6.515935705863883e9,7.78597113197894e9,7.5158745488334675e9,7.171232529429782e9,3.5781993000801983e9,8.023984274295402e9,3.9216851760970573e9,8.80011234593501e9,4.386291663679806e9,2.4351123549989185e9,2.9874808309242864e9,8.821826889291362e8,8.748260855717955e9,3.763352791808521e9,9.444350243558172e9,7.177830227139911e9,7.526977047035117e9,5.255938389615376e9,3.2309515205752215e9,7.181102862838165e9,6.257356735084434e9,2.796905584352717e9,7.839218571778382e9,1.760025141041891e9,3.6372329027281814e9,4.259702180437708e8,5.805538888550105e9,9.42115023892748e9,4.895908119596712e9,1.9658945684812722e9,6.644473428165183e9,4.4192938801613865e9,9.203116922253662e9,4.300880092704658e9,9.779004766801464e9,2.3060386265251565e9,5.217944140730761e9,5.349635465728423e9,8.787665884178125e9,6.540730306579152e9,6.557552382474961e9,3.026835709754858e9,5.572912665623265e9,4.0781990443376136e9,6.215364260438223e9,1.4301669302803864e9,3.8497770831596045e9,7.78920055726691e9,3.434777517842202e9,6.873353101182067e8,7.924155336838899e9,1.0028092079728413e9,5.854017580678838e8,3.877704413840455e9,3.7893811184141254e8,5.960661043648069e9,2.0518013793158529e9,9.706121171162128e9,9.352561088621838e9,2.572494997547039e9,2.595488230002061e9,2.360835782606596e6,9.390175499362919e9,9.93373677924847e7,2.3393109476517715e9,1.4959556536547024e9,2.723387910356192e9,2.1513879841670804e9,4.923414704226743e9,9.535441900254494e9,4.957726023289943e9,1.157919182628334e9,4.406338700917399e9,9.85645807404997e9,1.8395679866664228e9,9.715954862342945e9,6.211500878258646e9,9.44422721136472e8,6.447642060875102e8,2.189937399713737e9,4.710251431561781e9,9.194087424767056e9,4.270493298792889e9,7.019002216494047e9,8.412303544038224e9,7.441290773816328e9,3.919172615700174e9,6.109222368353919e9,5.987884699283238e9,9.113372882686012e9,8.123052172887055e9,8.892087359089722e9,8.169320157886788e9,5.606863890049607e8,5.36373537889826e9,8.184420391511264e9,3.502361753780893e9,1.3875256344400055e9,2.908030028600439e9,1.4555570725391686e9,3.6800819452491794e9,7.622899105800737e9,5.764695799072252e9,8.247000972879294e9,9.666904458627502e9,9.259535318407482e9,2.2480622244683647e9,3.37845066132533e9,1.0115686414850255e9,5.849502971745114e9,7.075259233677767e9,5.951561076527956e8,3.0493030740288105e9,6.262762215773297e9,7.952299412079781e9,8.333066282585872e9,3.5547626766790543e9,1.4261622084390525e7,3.131069647423412e8,5.226880763907647e9,1.0133500861042888e9,3.3116794546826544e9,3.244173957896792e9,1.8429839420253768e9,5.2008753599534607e8,6.147055874579097e9,1.503978639629865e9,6.161114638184185e9,2.5854003049455733e9,5.43137745115043e9,5.280847171027637e9,7.533594852545705e9,1.8071954491162233e9,8.867118676838274e9,4.681912637626056e9,9.412041452013721e9,7.566917349495772e9,2.8672469182383842e9,5.934074324155071e9,1.4059321996081908e9,4.760992256540766e9,9.497740786777279e9,6.563880974005004e9,6.423143748689908e7,6.998387820211115e9,9.796880465843948e9,4.0114725054098344e9,7.64695906932597e9,2.1172635941300843e9,2.3684514103078036e9,6.465022927883041e9,6.762171983484564e9,2.72345427952821e9,1.307016023304607e9,3.4470983658106737e9,5.458014438188341e8,1.7087383350167108e9,5.899941700105782e8,3.710374471067159e9,9.813349010040228e9,8.282773872917298e9,4.2647353912055397e9,7.747350034449741e8,9.21619058676676e9,3.2926257324228635e9,6.349633001328553e9,4.2001893158885894e9,1.1413307753334112e9,5.3513597413810456e8,8.507475600753691e9,5.1277607025231085e9,4.750026141470221e9,3.1745197313077955e9,3.9559341043136563e9,3.1899392321473174e9,4.850348803982567e9,8.045929452752862e9,9.574505331557909e9,7.226347323038774e9,9.064668140092768e9,1.4466235588701303e9,3.747420093955811e8,8.322914096952129e9,4.966257729564619e9,5.7020873825655775e9,5.149629236989675e9,6.659027602587415e9,3.449579787655781e9,6.165567982527939e9,3.9639682778947196e9,9.312036196395403e9,9.762643560201312e8,3.15730729735859e9,1.2238264640815523e9,2.5577197959558997e9,7.984984136213065e9,5.403211819824601e9,6.7492406081498e9,3.301767584968651e8,6.525211546606425e9,9.03033977039094e9,2.6467894213438648e8,2.248646410659204e9,3.673193822309051e8,8.007802920151374e9,7.301652212323374e7,7.672365559781127e9,9.877004533904825e9,7.821932999686963e9,3.10475974432307e9,3.25834883117321e9,5.872357124192042e9,1.9927732653326168e9,2.319391289125955e9,9.483345469516357e9,1.2351982519309156e9,5.904985886534331e8,4.628935098249397e9,3.636161720115563e9,6.66672961395272e9,3.8834721772787304e9,4.2497643761047964e9,6.939342714814367e9,4.574815215976521e9,4.096018119185937e9,5.225152301371632e9,9.735232425654794e8,1.6038915885923154e9,8.444357094607056e9,8.426340679377054e9,2.91197820030908e9,4.2101286869520903e9,8.802565741575009e7,2.805634307833321e9,7.122959167364043e9,8.326424922073558e9,2.213566453315915e9,7.952864136848614e8,6.5793481890166025e9,7.725086681708468e9,3.2884235632806826e9,3.7724821519382215e9,9.828746862967937e9,4.9813907845664015e9,4.573079437961752e9,8.777050092622375e9,4.612142979205979e9,7.813452676676069e9,9.737367682930975e9,1.157442814490054e9,5.552112344814375e9,2.8618081103529625e9,5.403103140952457e9,8.637752680420944e9,6.318677051102358e9,3.3423626449092546e9,4.756453966921179e9,2.8495132634695997e9,5.203513073641541e9,7.519153950045892e9,1.428313268335657e9,7.7521191095218725e9,5.973843979230163e9,2.6253559086099453e9,9.343070096419876e9,6.160767414391235e9,7.670279410377601e9,1.4876443157542295e9,3.929341097247483e9,3.2893196717594843e9,1.4103789473261087e9,6.587886098443987e9,2.552529248634605e8,3.9755986895750494e9,7.249895552562212e9,4.973580284577158e9,1.8412653623696008e9,5.369553452099183e9,7.60921309541584e9,1.2087607126772404e9,6.916171740632411e9,1.6892410909049892e9,2.7613149443134346e9,9.661460337079283e9,6.151410146299038e9,5.103997769555795e9,2.2596661002372255e9,4.860737935762867e9,4.032748557878092e9,8.687169973649504e9,3.920207919356543e9,6.717467914141965e9,2.2098581214711976e9,5.451363707982752e9,8.28324020771805e9,2.3645244965751467e9,3.25653633163532e9,3.779294697467771e9,5.279600684813107e9,4.0048193842175574e9,1.2898655071928732e9,4.652675160097725e9,5.153276976440801e9,8.1667320506305895e9,8.993248036241755e9,9.263029423186102e9,5.025487920284308e9,7.010714639224266e9,7.095138592851409e9,5.320739255970582e9,8.253998012782258e9,4.976939887717135e9,9.863731005573854e9,7.131357295187466e9,5.635258707421686e9,2.034976961271131e9,3.950554427025179e9,6.086848101813187e9,2.929691338732054e9,9.032074987699808e9,9.19359310327843e9,4.0639499415173764e9,3.2475518397837687e8,1.6737058881581478e9,3.764579005246038e9,9.995748137032604e9,3.565669636969834e9,2.83979896108873e9,1.9168708220300655e9,4.2607809777467475e9,4.403797906294476e9,6.805254074489525e9,3.546930167162382e9,8.829052947380754e9,5.062903699666309e9,3.0144113136284876e9,2.1001051187785025e9,5.051063162829482e9,5.604186067177208e9,8.775504192222145e9,2.9910982444735537e9,1.9591159734453866e9,3.629440661206693e9,1.0279459528306468e9,1.931092905558932e9,1.474002888264444e9,8.824072859429348e9,2.8633573999502983e9,9.823022848056583e9,1.0471081116908265e9,6.349909670295706e8,9.470839604486357e9,3.303635013528874e9,9.121790972782724e9,5.768031102647359e9,3.643175237284331e9,2.3380493644919662e9,2.86918302094227e9,7.999929846826119e9,3.847964333250298e8,5.826728985319114e9,2.3539306389190516e9,4.6386258987970295e9,7.887714949791981e9,7.14240167329958e9,1.8737464092357414e9,6.769223702267995e9,9.05772448231169e9,2.932214502876349e9,5.802821711194222e9,9.210720370576397e8,3.897461733664509e8,4.608830056797202e9,7.390447464276896e9,6.439982433819041e9,7.067980548290505e9,7.858007087379335e9,1.298765800580165e9,2.6985875710502415e9,9.315494461415195e9,1.4175757009181933e9,9.987891006530119e9,5.718575922394702e9,8.511446357720438e9,5.901969166426794e9,5.094843692518622e9,8.418404480740917e9,6.575826807675766e9,8.058281345645952e9,3.711759435624056e9,3.15775558008663e8,3.087740162788032e9,2.939232093107638e9,1.1931656281411862e9,3.7272494352096686e9,9.770163618059169e8,2.71541912502225e9,6.591762297155673e9,7.201351535241243e9,2.9056134040659175e9,2.5332943492610836e9,6.44224038537031e9,2.0916018996958053e8,8.989558144542467e9,7.065359543189373e9,3.4900900213946195e9,1.292908077344037e9,1.0061555479471628e8,7.745630018405689e9,2.6067104199969125e9,9.992377290978903e9,8.435269080046688e9,6.148186578725092e9,8.5423526702762165e9,5.400583141390232e9,6.152935929697689e9,2.5715863735087052e8,7.751764916686658e9,9.801930242026875e9,2.9475377353218303e9,3.6510868552589283e9,3.846020384044678e9,5.231492348260194e9,5.000794577360392e9,6.14540056849755e9,6.140759572769679e9,9.222188139324612e9,4.783259380319873e9,4.911973690372693e9,9.530394915463642e9,1.224175344783407e8,1.155450482819319e9,8.61444543083657e9,5.0305110164750185e9,6.086359878938962e8,3.8330941052229304e9,3.552659875952382e9,1.9042362468976837e8,1.5632878811881568e9,7.8893419802048235e9,6.516312080910252e9,9.450507101081497e9,6.590173285472611e8,8.408763943555086e9,2.914095776935267e9,4.856924415964459e9,7.450744631162387e8,6.327897012282842e9,7.290584251014665e9,8.434787154561929e9,4.242374485483965e9,3.5523977604870625e9,3.16787511774427e9,4.479280228004215e9,6.468093002255555e9,8.464577959627096e9,7.813454944831465e8,3.8929404837626624e9,9.705682395320349e9,1.2526238056773386e9,6.160385843309686e9,8.756446033853556e9,1.1172668693063314e9,5.664966319844975e9,2.6017005489622803e9,4.896340118261033e8,4.849519946523858e9,2.744849148762913e9,9.433639085947454e8,6.85031813668694e9,2.9350642234922166e9,1.6370380894599302e9,9.285820635250952e9,2.268921014682973e9,9.74507012266538e9,2.0975747631921327e9,7.940228090385386e9,4.1007177290584598e9,4.2144735227939076e9,2.8021882772786045e9,3.4555380642003508e9,3.974254294269863e9,9.648746333258179e9,2.172390157569155e9,2.0693296707310426e9,9.18907918921188e9,1.779135118618449e9,2.0222555927428808e9,3.7098592667586117e9,7.708356958446887e9,7.146755501675766e9,4.64617347001816e9,4.0752082473306007e9,9.19602562291493e9,3.327720066820036e9,3.9982510892190814e9,7.233336837476423e9,3.096717953262943e9,8.198758196103702e9,3.615001990910216e8,6.36979399074828e9,3.787299932114936e9,4.289887155526957e9,2.326953275986099e9,3.364360862353111e8,9.827572540641038e7,3.009075046799928e9,9.509559054443916e9,8.009701188497091e9,6.5835724598489065e9,6.759249850733999e9,9.935599658350597e9,9.77841780235604e9,6.06906836407125e9,1.0343764484953588e9,7.790537705570335e9,5.647484278031929e9,5.79661133859184e9,4.13278247647888e8,7.154960399067376e9,6.821795690914353e9,1.9261145714859042e8,5.697571152370155e9,7.898885421453316e8,5.407293012487421e9,8.23405106264513e9,9.212462013189455e9,9.899302123368147e9,3.689475194664891e9,1.3530891713838222e9,5.5350337109790125e9,2.3109298308132796e9,6.558943753557912e9,7.537865234793361e9,6.406818426920742e9,5.886394387630996e9,9.84786696013378e9,8.97930083189639e9,3.0131294676234756e9,5.05883615739904e9,1.7428880496720111e9,4.27273850445833e9,3.808796636484848e9,5.9528932869079895e9,9.009028205216175e9,9.521202746588397e8,5.54805031580515e9,7.156583506355604e9,7.552768666841952e9,6.714885900026509e9,6.124965730516548e9,7.496522457528021e8,9.383892110841482e9,4.728673601769076e9,3.397385903744595e9,8.198578993845511e9,8.071265939529775e9,1.2994124603740332e9,9.322784979552423e9,8.4784883969745455e9,4.945916341021333e9,2.0436493650486665e9,9.8566110886341e9,6.242369780001193e9,5.708629854835136e9,1.519789250362249e9,4.1426082626830473e9,3.8216213359778605e9,6.2787112445609865e9,7.802683665891745e9,4.358679964985195e9,9.723487532097433e9,6.360012633855456e9,7.082694337123603e9,7.873099814807741e9,5.680440847504809e8,1.799776570553213e8,4.570874427821696e9,5.405366282324496e9,6.167264799375604e9,8.719230639839127e9,4.411666838978201e7,4.887849764162033e8,8.40682475478446e9,9.338822925910381e9,9.529556588221842e9,8.220193857883061e9,1.7828886409059863e9,3.691551597763687e8,2.3042801148935766e9,8.9805611146227e9,8.225984079315796e8,1.4441674153162954e9,5.316678699086144e9,4.457430328577959e9,7.565898163642582e9,6.505222297147054e9,9.338992163035194e9,4.809629653698093e9,9.659744522205293e8,4.443697916618207e9,8.165717888413805e9,3.7534445384670577e9,3.975488824561081e9,5.167173482623999e8,9.541509181878271e9,6.940521650943357e9,8.60691926928304e9,4.437402695925497e9,9.971861700700489e9,8.327511284487396e9,3.1221418716880045e9,6.303691642585916e9,5.320518431334347e9,2.2088807568585124e9,2.4363089592712216e9,6.340642953645235e9,6.942132231767821e9,1.0324818919981083e9,2.876223394456925e9,9.305715794872026e9,1.453543683725058e9,8.433564787002541e9,1.9038259306658912e9,1.8081220256384823e9,3.2073747148133845e9,5.592139450350174e9,8.307988917415254e8,8.749750555387407e9,6.810906076301925e9,1.8010399017265854e9,1.084578062720666e9,4.482668975117366e9,3.441920814372195e9,8.427230891761387e9,8.700841201443462e9,7.603816012301554e9,5.566663201053374e9,5.089553225777369e9,7.887792572960018e8,4.7496736058878975e9,8.017588478898667e9,4.930890601527291e9,3.531142943673584e9,6.893931408024422e9,4.0148277592996984e9,9.662915301550865e9,1.1234012161327622e9,8.390879649635035e9,1.82364539209097e9,2.4766877820879495e8,9.064161203387825e9,9.872533925902613e9,3.2551203566003937e8,1.6694657674277346e9,4.989336824383432e9,2.172291389471763e9,6.563821980756419e9,8.81830597792138e9,1.1842634864343748e9,4.0944155795679903e9,7.201153726853986e9,5.937645191270436e9,3.952544286398141e8,7.694651119624614e9,6.600031124484042e9,4.519471609586726e9,1.7011493352396646e9,4.0565951590269246e9,7.86468880111535e8,8.983789253359383e9,9.035303763945475e9,9.399171005651329e9,8.919245777941721e9,9.362477095570814e9,2.1021761963119657e9,3.810615793762534e9,1.809083584418304e9,1.9252234764148068e9,6.2348573698124075e9,4.668162972021298e9,5.342825085167073e9,8.893618876138485e9,5.211916958603949e9,9.985653030224644e9,6.711671139038265e9,3.325750064284713e9,2.149096659213111e9,7.602565671744035e9,2.2697102060537467e9,3.5701579354604464e9,4.6477192892257595e9,3.7564018836912584e9,1.1159004634803472e9,8.250958776565378e9,9.517150665891596e9,1.1834188651911447e9,4.465448367552292e9,1.0576429851246793e9,1.9875386941530948e9,4.17453952151801e9,1.0335658025251671e9,7.170097329414146e9,4.1099590512813864e9,6.797957527564999e9,6.665093039546244e8,6.797452656023384e9,7.730465898873137e9,3.20500116575839e9,4.90680918325492e9,3.7417488043921864e8,7.479420832924681e9,5.581555506635449e9,7.599761438254484e9,8.957175355700317e9,4.226187546557523e9,5.100765809938667e9,8.88106514973508e9,1.8914498385833511e9,4.645705945314885e9,8.524912247750936e9,2.279312451043627e9,3.4429229571028776e9,7.415575188027797e9,5.652900740652702e9,6.369805289817037e9,2.7516667948317585e9,8.548402021850409e9,4.2571369495333457e9,5.062975877377179e9,6.244642851091834e9,7.561805923612628e9,8.430575380071867e9,6.359610658070611e9,5.979221705626711e9,4.0128076768500466e9,2.812488789234735e8,5.660594285952485e9,1.7476423452295496e9,5.955052036203157e9,2.124160925141889e9,5.193445008904291e9,1.2247984270956535e9,1.8685009770089324e9,6.591140371679435e9,7.653114871346651e9,4.7911994485868025e8,8.462849289612238e9,3.887251637347958e9,2.415396049552976e8,2.621676285130795e9,4.944964195335832e8,6.633712278848191e8,7.263231785226739e9,8.731005996727848e9,1.7166289969207592e9,3.5137710327435346e9,2.9975620610058475e9,9.007970134575943e9,2.505261904423799e9,4.533986830791047e9,1.6443829781367292e9,3.7529098257285056e9,6.5904243854133625e9,6.277188154222229e9,4.183007836066959e9,6.744462897575685e9,7.808420672625761e9,2.8124749061612797e9,5.689282186087439e9,2.7913901717026024e9,5.947933103067575e9,1.4742385009047399e9,2.803597035963571e9,4.1995123658815494e9,1.3663131519929917e9,4.717337303969348e9,9.529300477145666e9,2.0281004525079226e9,9.903410011147467e9,9.62424956594724e9,4.3322807229450035e8,3.6976514708136377e9,2.3179892590869388e8,7.007900824395793e9,2.831797300389057e9,3.995165818499563e9,5.828693144037263e9,7.504868084428724e9,8.327546065007695e9,4.186996420043461e9,9.455978246646017e9,9.35924563463357e9,1.9813182980475707e9,9.873712599822033e9,1.8048680762955039e9,1.2416823329426818e9,4.774906665867515e9,1.589819991300927e9,6.274201270932393e9,3.214285102647345e9,6.098602644806748e9,1.489687188225286e9,1.870756390326983e9,9.252633765123201e9,3.3925517334253407e9,3.640656590911883e9,2.5361384550167174e9,1.6404647969706333e9,9.649554921538769e9,4.523287624727791e9,9.447132973432556e9,3.094857654843437e9,7.357101461525475e9,6.868335776032654e9,5.5787974085493765e9,2.1741207072562996e8,1.8627863753798702e9,6.436010990821817e9,9.637107664719461e9,9.670163480119463e9,4.631404075710083e9,8.636870884375458e8,6.385535645773209e9,1.0819709459795325e9,6.802201953873083e9,2.6529492583936434e9,7.47500695729465e8,2.0757632111021206e9,7.8347286585332155e9,4.302733846499615e9,9.358664078403494e9,4.498804690456404e8,1.4512384820372915e9,2.193738935786108e9,8.867173913167475e9,3.510559653838293e9,7.411508758742139e9,3.2866862375053086e9,1.0562539097323875e9,7.945561792497255e9,6.103189589616614e9,5.878973133281074e9,4.365284244503086e9,5.592840674622622e9,1.2752655914363165e9,9.409778551602083e9,8.185519050492219e8,5.502196944201696e9,5.402733151242051e9,8.383917641291757e9,9.811925943904775e8,5.4539435673740835e9,5.847612604240283e9,8.362491871542777e8,7.443109477208665e9,6.984641104019849e9,1.1411070780704114e9,4.4237020009238905e8,2.5029330306901133e8,1.6778812242175245e9,5.025182932676765e9,7.944639392697165e9,7.513186792384924e9,4.1123827215255284e9,8.650957690071213e9,6.54918114379272e9,2.145054573255124e9,7.698149969233801e9,4.233518900216398e9,3.4811495769058943e9,3.042906504401802e9,6.121242751965498e9,9.331446960375986e9,4.503304801177104e9,2.5990879349301386e9,7.859596671706587e9,7.572208274532705e9,3.6838343985211473e9,2.466324520072679e9,5.151191863179728e9,7.387273422334702e9,6.389329648779851e8,9.900923600757011e9,5.498153905979376e9,5.837372372565811e9,5.663649360185406e9,2.1323238854220395e9,6.145445726139746e9,1.5815931511015747e9,4.158609808826473e9,3.393899180963772e9,1.184008156507861e9,2.3147053776271167e9,7.311171893598922e8,7.628755916767243e9,7.352719327324645e9,3.0270528775491943e9,5.211686551700515e9,1.7007781582315395e9,7.044368737287595e9,2.546726716543345e9,8.727383582871162e9,7.685784764521646e9,2.446808483485373e9,2.204932316821907e9,8.399173032696263e9,9.833360842839886e9,3.441422466782784e9,9.554520578046799e8,1.0082532941124201e9,2.692475961957169e9,7.040325992083646e9,5.686479370551767e9,9.21468186144313e9,9.958003439341066e9,5.391755901766656e9,7.978804598944796e9,5.428683889074567e9,9.812052368213242e9,8.285692123490478e9,4.515378594238426e9,8.84028093761128e9,4.989084301615872e9,5.286181668401657e9,2.1607493807541122e9,7.5184291817338e9,5.803060278248584e8,9.843886734157465e9,1.0014608004734305e8,5.723869239854937e9,6.756140328157136e9,9.031235834538082e9,8.439721700987095e9,9.358258827656433e9,5.312062731454259e9,5.910860261277016e9,5.720731054290393e9,9.441006140262075e9,4.726228747671828e9,7.359233833837426e9,3.0090732016814837e9,4.895116660262344e8,8.504303497375146e9,4.305604006233436e9,3.80692731667572e9,8.638998544097054e9,9.428727284004845e9,1.6309924575960011e9,5.991679661785415e9,5.751182359237306e8,4.0885038005385365e9,7.441723668798277e9,3.29328785048053e9,5.730706562251109e8,1.76742712688867e9,6.190003474203198e9,6.451061451339091e8,8.973809214551422e9,6.959964711400852e9,4.628926417267798e9,7.5136511565751505e9,2.0283768658804035e9,5.063480316322334e9,1.3943111863588243e9,6.38683652621177e9,3.525327462122909e9,3.488853935296757e9,4.754129167048062e9,3.362159644509084e9,1.3289577517614171e8,7.201755286147071e8,3.8306988142335687e9,8.787881119520689e9,3.5892926852614393e9,4.9565310535418236e8,5.693577910651171e9,8.2017658881426115e9,1.2831958357227501e8,3.380593013897143e9,1.7282894469199362e9,3.745649222234522e9,5.471272640451403e9,4.815699305481836e9,9.582771450473505e9,3.7376712479444385e9,4.535123181676295e9,6.989781883572155e8,5.002873276969566e9,1.14985838204391e9,3.612315609102812e9,5.427709473153522e9,2.6949857457012873e9,1.7693464982526762e9,6.397771766713834e8,2.2537364945348783e9,2.224106380248436e9,1.1020901505385761e9,8.401434623923307e9,9.53402141172713e9,2.7783767144037295e7,3.9909902706001177e9,1.0956835359359286e9,3.915206444156719e9,6.528894123138183e9,9.69837819488322e9,2.532250903725065e9,3.118620227159573e9,2.3588789646185093e9,4.1129723968219466e9,7.533421227980076e9,8.477571030444369e9,9.510341117123173e9,1.996298531426235e9,3.038465049200918e9,8.126039929381643e9,6.261040185391634e9,6.076944393302437e9,9.8059386055296e9,3.0889905723832e9,3.212140388558138e9,9.6031505463268e9,5.977618758973509e9,2.221068066855346e9,1.1729336872045248e9,6.042920991751903e9,2.190508851481223e9,6.216149591233833e8,6.990486583896716e8,9.216716060696133e9,6.956175463273062e9,3.926901223106465e9,1.9695840634988348e9,4.366091075706111e9,1.4722868876097362e9,7.604354735512831e9,6.664743156557715e9,6.419900134936501e9,7.668707104958379e9,1.8455831886690633e9,3.6676838629606633e9,7.446580521865342e9,4.647263247093517e9,9.775538084775347e9,6.922483374666883e9,9.568967359393423e9,7.461726758078347e9,5.948400117013855e9,3.671283628895583e9,1.3082845239469643e9,3.0869196678886323e9,6.413117996979177e9,7.817885005180268e9,8.136202631152287e9,9.792322266685999e9,8.112414496153416e9,9.65493016281363e9,9.977085760236721e9,3.7232039857158937e9,4.50040017534831e9,9.013194987431728e8,4.338497248684897e9,6.002837817314884e9,9.106104666359444e9,9.173516798587982e9,8.393444649904174e9,2.9906311292941947e9,1.2127634411324196e9,3.7524372865711255e9,5.577284684172909e9,2.2415640628422084e9,3.446360232730432e9,8.638992874607014e9,5.554596966397335e9,4.852463308194285e9,3.487552353024351e9,1.1342731535200968e9,6.483586676322088e9,5.218643580034074e9,4.971266011761146e9,8.787238267061628e9,4.712655860464861e9,8.235468921516597e9,8.408890021647058e9,1.8663083211265674e9,2.3971384835119123e9,2.2585695890492642e8,1.3756960514357862e9,3.5781214817874184e9,3.8028028890442986e9,9.159793450035713e9,2.351560740051024e9,5.734686247334622e9,9.3359860615768e9,5.584329543759936e8,1.7256189314691372e9,6.020161161783307e9,4.2900811704911447e9,2.2462277713546807e8,8.248629387140425e9,7.876138728613375e9,6.533335742915739e9,1.93896890716721e9,5.161331931514844e9,8.240839930528374e9,4.915481221336789e9,8.601368003883896e9,9.403232598636642e9,3.7863781286728106e9,3.999931624669171e9,6.205978761007374e9,6.174425687326966e9,4.0877322734336796e9,8.041962726146723e8,5.128445371369709e9,3.7370403394865746e9,4.861965096506371e8,4.2797606160703015e9,9.500333396655392e9,3.2924997844806027e9,2.9169430866822953e9,7.043494658859902e9,8.658800817767387e9,1.5155966808045485e9,1.9857833331262043e9,3.909273497500809e9,5.594238459990379e9,5.932601301446785e9,7.403539002496044e9,1.6251161554571614e9,1.6040221949451373e9,5.208165315482004e9,8.85781778650953e9,7.832728231466926e9,8.236127713276064e8,3.1534631242480183e9,3.855737884424523e9,9.567903742038471e9,3.9600172044144897e9,2.635973818708153e9,5.723496340370748e8,2.4122385850961537e9,3.454381354545867e9,9.79409784797193e9,6.221357392276856e9,3.7321152378055134e9,2.751894135699884e9,3.85581771950988e8,9.59381970696741e9,4.305668404603743e9,4.9164966336788684e8,7.06512127468644e9,4.296564818762874e9,4.950546641300987e9,5.912727617608538e8,3.9881044455539503e9,2.6915905035238485e9,3.732472022795845e9,9.41031012959778e9,3.363161950398834e9,7.425807280081888e9,7.805792357475916e7,5.908649124129533e9,3.310009233149502e8,5.939939506894959e9,9.448462289043062e9,1.6590492483427577e9,9.76234877954777e9,8.730944782795924e8,1.6948674740924985e9,7.749800106181131e9,3.8185113077155366e9,3.7466784410392175e9,8.00134297102762e9,3.9899412483959074e9,7.861071463000941e9,9.101524819392514e8,8.804150222151909e9,3.279483674564897e9,8.279554510017384e9,7.81356877321905e9,8.105753929811439e9,8.390974392480243e9,3.2555378589005923e9,9.274140937566229e9,2.73446992274185e9,5.237111392245114e9,5.168819679184714e9,4.5020258066048765e9,9.985032732406038e9,4.338623484134782e9,2.1061946574258218e9,5.442614810430668e9,3.6460097369334364e9,3.5378195081252704e9,3.8203806367667346e9,8.378051175070689e8,7.407202288598182e9,5.967095894267573e9,2.775435986961172e7,5.00552784030252e9,4.88342260151129e9,3.602724909427879e9,8.219619253639144e9,2.004736055518257e9,7.4391307351576605e9,6.23766715019443e9,8.438626372257199e9,8.492843911178478e9,7.277135882136254e9,2.377072235872721e9,2.082422245006933e9,6.919277789334877e8,6.812124165070524e9,8.391278876126295e8,5.398441021094179e9,3.3401635662561746e9,6.270647892712555e9,7.165441210630128e9,8.563797675031155e9,2.9512416999051137e9,1.9459019380884567e8,9.125023461997384e8,8.665866233014128e9,3.433783497457965e8,9.863998957554643e8,7.369053404299351e9,8.721817882995651e9,5.965236796515292e9,3.4839346791353874e9,8.804992799473862e9,7.644646735827628e9,7.043928863236609e9,6.788866859003471e9,2.5016404986751637e9,4.537058214870413e9,3.6466390298481765e9,4.413847940933342e9,4.552280971784772e9,4.0150557662280684e9,7.578087276005494e9,5.682809034044759e9,2.9996197549830194e9,9.220487763396362e9,7.851540255317722e9,7.601705115418514e9,5.609688502974091e9,1.0231254064922568e9,3.6272293223499575e9,3.717132562244805e9,2.0369396296153507e9,4.116705334671451e9,8.974704663503553e9,7.336435009005508e9,6.915524736021161e8,6.076958285001072e9,2.0705090213107257e9,1.7318021768479908e9,3.5269661667802687e9,8.729461013632147e9,5.638152593026825e9,9.332824916429623e9,4.742461888082561e9,9.975991519630089e9,2.43681524799877e9,4.277187117294334e8,5.454877477825151e9,2.3419608181964535e8,9.03233180454723e9,7.292922588601686e9,5.480374495346274e9,5.812711030658873e9,7.737184758436928e9,5.970000131483818e9,1.4621447818149335e9,7.42978147094949e9,7.480571902169214e9,3.1718085175083345e8,8.739073561033947e9,7.502284470177267e9,4.029246572338874e8,1.7225010058297052e9,7.180699955855293e9,8.301637102195752e9,8.457814733936908e8,7.337789265461639e9,7.073145308257921e9,5.562623859486109e9,4.630636530676496e9,5.012363792903043e9,4.685286920515064e8,2.8505056592588506e9,1.6889444283660204e9,1.3882311856525598e9,9.930127711146315e9,2.5075970841133466e9,2.380592683154866e9,6.6252204394619665e9,1.4469922192362538e8,3.283235392285494e9,6.921748360671671e9,1.6048734577014189e9,8.355540192572428e9,4.088851134652738e9,3.7852266263842115e9,7.729110731223394e9,8.326679092108395e9,7.271168370035915e9,7.625377442047051e9,6.147148237313569e9,4.42790048483887e9,5.053153599415759e9,8.227922412683144e9,7.97944875345285e9,2.1857941247377243e9,5.453490753012971e9,2.6089875315345123e8,2.572647229801721e9,1.7510196284451919e9,2.590772597291345e9,1.6071521615212903e9,5.909186622174985e9,1.8119337174424722e9,1.1774221977107768e9,8.745592908594637e9,3.4184577391230917e9,7.423892512303619e9,3.4661752213032813e9,2.81401010660598e9,8.673362420539444e9,1.1748144218767874e9,2.5929064187127137e9,4.528337503710673e9,7.038506589742882e9,9.642853186290228e9,5.079787176801466e9,7.508361559798885e9,8.69040308620792e9,6.162312688177151e9,1.162529744864391e9,1.7143442417489886e7,8.976025698852062e9,8.32767416313309e9,6.273490631239554e9,6.567960266982542e9,6.280987734712203e9,9.425386687252438e9,2.6562079273969884e9,1.1768535833053405e9,1.4746274005643933e9,8.673760320038372e9,8.954726166943849e8,9.102324749164236e9,9.596376534390108e9,1.6690733334077222e9,8.987414754929438e9,9.068114927930038e9,3.351871107019091e9,1.8229910658901415e9,9.050371606108931e8,1.8914230385273988e9,9.586034183229826e9,2.7974329794132466e9,7.391508550976293e9,1.869938262278792e8,9.930628227926281e9,1.769117339127516e9,8.663331558871572e9,4.384572843872381e8,3.812022508022639e9,9.272906750305822e9,3.610777521913573e9,6.822049448282211e9,8.723612837732801e9,5.051920541591175e9,6.589651505776695e8,7.646436565955309e9,5.977186729859551e8,9.921148828818874e9,7.398108825376315e9,4.487413817412622e8,2.914585437953708e9,6.828130547438475e9,5.144451171897863e9,4.2175952999754305e9,5.573946976596342e9,6.211435562544759e9,8.011098468212284e9,8.984861587620895e9,1.8560366522987404e9,6.065601892935873e9,9.120879259891119e9,3.8332239654050937e9,2.9652487734592967e9,7.826346932238029e9,2.34227473071961e9,5.914773785173336e9,3.220517354444464e9,3.671233204463311e9,4.854658834013378e9,1.1021047888518565e9,4.2099003381379795e9,3.34810829369547e9,1.2192454856162772e9,1.0002768159595643e9,4.662689098689264e9,3.0512810556331215e9,5.296352501448537e9,3.7614930569986525e9,4.2619860057552395e9,6.617744372629518e9,7.400564506139008e9,4.401987618943987e9,8.394685082170582e9,7.646961896631652e9,8.667470574039106e9,1.4683249902714934e9,1.0271413782250283e9,1.8162503836001854e9,7.599028331006442e9,6.877070527748221e9,6.445629650527284e9,6.067982782283874e9,9.042643497203012e9,9.236971810215677e8,1.0496448891782583e8,8.171870162774665e9,5.332724046795189e9,5.658535376039864e8,2.0696786173354719e9,9.264394374843975e9,3.5224310409562078e9,7.13345176909581e9,5.563724454040904e9,7.659757201121367e9,5.461294186511891e9,4.219404403707857e9,4.261792583156685e9,8.312905459881706e9,8.90448008321034e9,4.924355724121285e9,8.446685640689057e9,8.73462873555846e9,9.91919565598561e9,5.121187311109009e9,8.525912801223989e9,6.561640678149826e9,2.3695805277905436e9,6.367034337887563e9,2.7778231446804924e9,7.453425145343501e9,1.2024180025040033e9,9.236546197994143e9,6.374630617737371e9,4.547597576123313e9,2.329036398793294e9,6.464847984583428e9,9.385555102546814e9,1.1824460887187138e9,8.696604404774174e9,9.088070366220013e9,3.9846403100172777e9,2.734288005399793e9,9.51715897746416e9,2.0646573295164173e9,2.1956040073889847e9,2.7430914978596964e9,9.840589272442995e9,3.3188386619153485e9,4.675286382483927e9,4.458338643486424e9,1.8770825619854715e9,4.650107772801434e9,8.261166166192819e9,7.4442481368685875e9,2.410937798117394e9,3.7588693270390973e9,4.634983195397969e9,8.773376841546864e9,9.17356285388903e9,5.663717576175095e9,7.916493576577588e8,3.96277640372647e9,8.613404268675522e9,5.013861035063164e9,4.0702980222996845e9,8.673393048054333e9,1.495725975767893e9,7.043306333591906e9,7.236031756794452e9,7.813714516836353e9,8.498345172153155e8,8.192830752571117e9,3.4834797949026265e9,8.255916312797159e9,9.203083664049807e9,3.003444454158486e9,4.868273309206487e9,2.913616490486695e9,6.277254939199501e9,3.933232031415228e9,7.859130759471511e9,2.1493702429727945e9,7.225149045636728e9,8.296599459530407e8,1.5789315396593206e9,5.170449382781141e9,4.121905469871368e8,7.039771301428703e9,1.303378254510248e9,9.731403407987949e7,1.2115106069021263e9,2.4831682851687255e9,8.87915170441605e9,5.570518571339511e8,2.7996462427179213e9,9.844309281187635e9,3.181849328350075e9,9.344777742330694e9,4.2459967860324864e9,7.035472230778745e9,2.4381253059490514e9,1.970844314818062e9,2.721942164793053e9,1.15128145592447e9,5.638999421276526e9,5.341073134722859e9,8.381096027530987e9,6.82132318651569e9,5.306647134055511e9,6.84350650553847e9,5.56048199548534e9,1.1575537325081232e9,1.5640741702563465e9,1.4139043932639673e9,5.74816751730594e9,3.0365153312586837e9,6.095657846066726e8,7.484274095178165e9,2.8827886333025365e9,4.8624497406006775e9,9.012234662677904e9,6.94912097784991e8,7.209299458210611e9,8.709636607504332e9,5.391854302682889e9,7.487330402175702e9,6.873745668201536e8,4.535349031393248e9,5.776044666722796e9,4.481933252910821e9,7.304955505292963e9,7.411356232789063e9,3.5242476625371957e9,3.07230802971989e9,3.9921530918029714e9,3.5979737309916615e9,5.449333448343788e9,9.128795496386913e9,6.069485189176914e9,3.487156100140549e9,1.618682204940771e9,5.325465146385657e9,3.322461087872216e9,5.298436143638556e9,7.684492474539306e8,3.373719007555679e9,7.457481550835987e8,2.1953752716758857e9,5.229470804519676e8,9.935392137044619e9,4.147811035631401e9,2.2712767381736298e9,9.89784732511063e9,5.838186476989545e9,9.360908341412127e9,2.5107962808436656e9,7.2447672582431555e9,1.177692407499209e8,9.925170891890656e9,5.278691803110358e8,5.762606121903351e9,9.58564357301806e9,4.2236818412339582e9,5.517918431884624e9,2.9423285153034086e9,1.2642329423661125e9,2.2688867040371e9,7.604450619954343e9,2.2559203635471106e9,8.324801938503111e9,3.1692318731379175e9,5.419075238832122e9,5.511795268778889e9,6.783675340248363e8,4.3267770616182165e9,9.855341045755236e9,3.4741751561084423e9,3.16634050350564e9,9.918970517704506e9,9.811522851946886e9,8.222247061902968e9,1.7244588358941405e9,8.042266276183651e9,6.948995327051367e8,7.633288554184911e9,3.6940409101739225e9,7.883847901862452e9,4.925701535864481e9,6.922145820437107e9,7.880355601626693e9,6.336137200802675e9,9.05665838687677e9,9.344642790937155e9,8.57061356844445e9,9.76779710967097e9,3.9494962580747395e9,2.4057201504564953e9,9.649412582454824e9,4.363572213577447e9,9.007489853530645e9,9.225200856163313e9,6.517099539609894e9,4.392002082930603e9,3.7636435969597383e9,5.962542092676447e9,3.820674392826072e9,2.092761422426266e9,9.477752519944424e9,5.561627386950276e9,2.0121934391232998e9,2.6792278322210217e9,7.5591192102549095e9,1.1762879061677022e9,3.509639414950253e9,3.5645002037134566e9,9.226055141973555e9,9.808822802158484e9,9.692517329971212e9,2.7408271555434384e9,9.651334037203373e9,6.757655290287876e9,2.4424278772960505e9,3.51448129319199e9,8.8105794205997e9,9.142499453855156e9,6.27049565112954e9,9.474429332459461e9,3.7797506974914565e9,1.3238602292276292e9,4.5878726869051285e9,3.1149717288187585e9,1.6995612154175587e9,2.6681701244835186e9,8.706756721640772e9,3.8392474476075153e9,6.270572730432697e9,3.002598269258697e9,1.3650433344050171e9,2.7881594024621534e9,5.550778521283899e9,7.784009863910692e9,1.0224283369439402e9,6.830748501084889e9,8.344228143686799e9,4.0639569217879233e9,2.921047655680322e9,4.394043144818264e9,8.409868065719572e9,4.29500079183632e9,8.964734988647299e9,6.020508688526771e7,6.96481354282091e9,8.283634580718516e9,9.600558337927359e9,4.796796577620993e9,8.92397478973842e8,5.892331398576215e9,7.427341216644018e9,6.588478740603143e8,3.8363145060312696e9,7.442362911120746e9,4.376632807767767e9,9.18288273243996e9,9.486260347738363e7,5.892412901362851e9,8.816201180398792e9,6.5375230891107025e9,7.987928869225586e9,8.012862996129759e9,7.913932566698224e9,9.48328759721299e9,6.364030293357513e9,8.883613277965397e9,6.441349214322143e9,2.1143627629330852e9,1.2241630473874165e8,2.091951822270155e9,3.5456175845910497e9,3.8569227707176967e9,6.299542384475307e9,7.734322275197239e9,7.141547403192816e8,7.110928923345611e9,6.919885537648644e9,4.623894995640535e9,1.8524995165670054e9,9.809888054915089e9,7.079364766171098e9,1.5918437026991417e9,8.002384760258153e9,1.1393870777660408e9,2.843512200641117e9,8.311898669022883e9,6.869637179103738e8,7.438848954410521e9,3.147070490768692e9,4.391111599199003e9,2.885867291944222e8,5.987531365275633e7,4.74615890839892e9,7.855260848582013e8,8.875398568993792e9,9.90948514317793e9,5.112965336981865e9,2.2529234087748795e9,3.3405034269194913e9,8.078273493480772e9,7.7930117009555e8,8.776145286532204e9,1.6903698431615977e9,3.710968013989463e9,1.8682695432133255e9,4.247821451261341e9,9.868770790774216e9,6.622913804135089e9,7.615895659269842e9,3.263372082669087e9,7.019749898879861e9,3.514635121655384e9,1.4809843004526212e9,5.560982902576998e9,9.653224563499956e9,3.9667513724237866e9,3.7139430027772534e8,5.673296798524887e9,6.402923487911463e9,6.453064390747635e9,8.308249598064613e9,2.0340820536587834e9,4.990648190561925e9,6.276425418744824e8,6.433524242676933e9,3.1428801471070633e9,8.499796013148756e9,8.841880169503368e9,7.3406030711957445e9,7.495812562394694e9,7.902709369578235e9,4.277235071182386e9,8.288536879754018e9,7.5611386339008255e9,1.9212649144459248e9,5.372037905004271e9,9.875308316182707e9,4.616242840856539e9,6.11684950333257e9,8.381596835210664e9,3.6383138433018413e9,4.776657038432692e9,5.520401887415697e9,4.663831068221975e9,8.845259646542768e9,9.86858805136873e9,4.093111005095341e9,8.571475750888779e9,7.842115342044798e8,566830.3661243712,1.2342807812064427e8,2.5383791927276134e9,6.696328747893883e9,3.317436901323505e9,4.862709155171069e9,9.87941001640752e8,6.948199542282763e8,8.304429262696849e9,9.900757420945036e9,7.273359339216458e9,5.562394749323655e9,8.453468378470333e9,3.61680638178411e8,8.503275606188944e9,5.044630693388328e9,8.209635853861985e9,5.3026756613281975e9,1.6881190136044078e9,1.3694698692971308e9,5.2074401072791487e8,5.150725890672404e9,9.232549893036268e8,6.46030186644755e9,8.445058916955496e9,8.264255462785131e9,1.9580392877900188e9,3.4029701926860824e9,8.509396608477963e9,5.40070859245757e9,5.351519671977052e9,9.572422791203596e9,3.674222741299268e9,3.464067256620699e9,3.7060502351088567e9,5.688574093458035e9,1.6434990649941838e9,7.261892306830344e9,9.522666187326344e9,6.234329319188701e9,1.5018974093175087e9,9.36306932370235e9,2.3788390631876464e9,2.9951722881629295e9,6.881942212567986e9,3.610641232317018e9,3.4397356123442903e9,1.4329241283854034e9,1.94013275493643e8,5.99874384359278e8,9.864093021191107e9,7.333324333728914e9,4.78312281460973e8,1.1077744950192893e9,3.3931223115044584e9,4.76261505663415e9,8.370208378154741e9,5.665712468239026e9,3.5858005667368765e9,5.347265212653644e9,4.2670910517642956e9,2.2385942523785915e9,5.98433110202129e8,2.7512598497923837e9,8.341034071187027e9,6.634965736577977e9,6.103424684323391e9,1.0517214102403227e9,6.885042328660296e9,8.563469164366727e9,2.9132020678613944e9,7.587023907041172e9,9.026405648010273e9,3.341167410744029e9,8.412512552391916e9,2.3446806871000137e9,6.929718983875176e9,3.950509582605786e9,5.4111419881874485e9,1.8592402743248436e9,5.124834686529939e9,2.8515139332929983e9,5.073882206789726e8,8.904229629327469e9,5.961162196933159e9,7.877823132706918e9,5.597151281401558e9,4.8418730646940243e8,6.168006711943387e9,8.829634151002884e9,6.40380240572254e9,7.490502313564157e9,2.9749866433733587e9,4.918162815695596e9,8.708820069576988e9,8.284527920506548e9,1.2515353184880328e9,9.78511127048944e9,8.258655847844311e9,6.354698009274007e9,6.512905447689947e9,4.29480157600345e9,2.6905735697479463e9,5.748239663261403e9,4.8416663734138334e8,2.258749407070363e9,9.265019081469397e9,2.252285296187049e9,1.1648997005495198e9,2.529787131498595e9,3.434146369935084e9,1.082242617653252e9,9.170073035340816e9,3.3013788847847337e8,4.8436969377633295e9,5.908316518758732e9,3.795896767370893e9,7.369868246044015e9,6.49038967842185e9,7.511492996818022e9,2.550121881956241e9,4.1660198683010387e9,3.6845250771453977e9,5.845902369013861e9,5.0661028855127945e9,3.308118270517634e9,6.811711707426924e9,3.232007397694703e8,4.446447471737816e9,7.945509702209694e9,6.177837082452911e9,3.6385196475440586e8,8.161467704831174e9,1.823338924908281e9,6.994627191999322e9,6.263963550207497e9,3.618214762549731e9,9.453803966682533e9,7.406800095598174e9,4.809360887934187e9,9.358728027617397e9,7.293597807703865e9,5.348457196921642e9,2.3160484204812627e9,4.3261115239780445e9,9.363825381120416e8,2.603581493827767e9,2.3637870854533305e9,6.649753674688722e9,8.951618489576033e9,9.970868617625046e9,3.2485992682795095e9,8.466391760814923e9,1.2395514796120844e9,8.395769143539243e9,6.643201848150338e8,7.064090977423743e9,3.426339740374329e9,7.239936896955618e9,5.299591065157524e9,9.717520460098787e9,7.778253868427444e9,8.385069940331701e9,4.0781519875111127e9,3.6178694010239387e9,4.095622983909778e9,6.241540200420368e9,3.7819977915216994e9,5.75044441619359e9,2.6058569357525983e9,9.788093091170055e9,3.328445271826508e9,3.7835172377286487e9,3.3004840667959666e9,5.981051706267922e9,2.446713488918639e9,1.842444633916216e9,2.3944611178837647e9,3.5517314612173e9,7.316698927022336e9,6.754407220971528e9,3.1128197586888185e9,3.0918180222588234e9,4.301011414175832e9,2.596138381643253e9,5.245716894108621e9,8.867124462683056e9,2.1224811565206347e9,1.0788241701527023e9,7.959155278430281e9,1.5135262282579365e9,9.30941451144213e9,5.505236081384817e9,8.258967324383913e9,1.546042086531153e9,8.319761423867894e9,8.27113391174102e9,1.7788127641875196e9,6.824600027366994e9,4.745461777421021e9,6.603148435342162e9,4.770318612531422e9,8.50313152604814e9,1.6961276585043883e9,8.3186751907986965e9,9.377980535486488e9,8.15182868971107e9,1.2499313944480793e9,6.41861737325465e9,3.859128358252213e9,7.776183894034782e7,8.441874583774856e9,4.163559692874305e9,5.850384183960884e9,1.1851931957410388e9,2.7873890103148246e9,2.9323090015809526e9,2.5805308130805383e9,7.6315287971693325e9,8.557942538271917e9,1.515385269557087e9,2.985039267200811e9,9.995360742814837e9,5.3661003442016e9,9.689033681253244e9,2.865339562189094e9,2.772166483903038e9,1.05176899549154e9,9.787073997967367e9,2.7775239317732215e9,9.809322690462053e9,6.305777535809325e9,1.0464815095957924e9,2.1485623474694214e9,1.8484464275531354e9,5.981669631712947e9,2.0295783384369116e9,6.244709070417081e9,8.229301550803646e9,6.432397857229678e9,4.461464495007487e9,9.339575116656395e8,8.94669072490154e9,5.274075686509878e9,8.744607297834175e9,5.421195698679581e9,2.3601999151065245e9,5.063476078669642e9,1.2619615941639261e9,3.510067567111894e9,1.755986784792679e9,3.5065924077646694e9,4.1183129112548966e9,3.497761014563554e9,3.2313642164049417e8,3.818033591140758e9,3.1934764471004386e9,3.2527981658730245e9,4.898590883791201e9,3.3984086366343412e9,5.545668749626736e9,5.931109186676467e9,8.381772482910488e9,3.5007544340099516e9,9.95971303555839e9,3.355254693667905e9,3.389901453990667e9,8.849702995020613e9,7.452318355815519e9,2.628728522094949e9,4.2601831692576065e9,1.6851271134048285e9,3.506881076214663e9,8.905242015025475e9,7.927349090185199e9,7.049950485175194e9,8.92196526945833e9,8.245571153899483e9,3.6720529407071867e9,3.841052357562591e9,9.436737749064714e9,9.071914966636078e9,7.851963104463655e9,1.8045908614486806e9,7.613321582645378e9,9.240350408225073e9,6.118931936842926e9,7.781731271833229e9,8.393741469134281e9,3.4267668366330204e9,8.310652252912629e9,1.940149875238717e8,5.955484843447667e8,6.906964238569997e9,8.562267558847808e9,2.3674439601739593e9,4.489514637593231e9,6.714952570227596e9,6.461180696995646e9,3.0307931791189966e9,9.36908646958654e8,7.221558275299558e9,2.9344251196007333e9,6.069657256021086e9,3.395763959378145e9,6.795022749020051e9,3.321505436677055e9,5.852026158519935e9,8.675596081681322e9,7.361127021010189e9,5.757797829816282e9,5.819320523875682e7,1.1328268374658735e9,3.11054944434071e9,5.048150850542816e9,1.1851720316152447e8,7.111501407564104e9,4.2623481143404517e9,7.255969351333232e9,6.225105930482503e9,3.688096495027291e9,3.8712007499550185e9,4.713625169776291e9,3.712849326626189e8,8.09665897913483e9,3.1226607235886173e9,8.775706588183294e9,6.776985586789186e8,4.0262851255604405e9,9.052011748974125e9,4.5302499924735155e9,8.96791611855969e9,9.569163912091858e9,4.789197984926434e9,2.0587497430152512e9,4.546941729257872e9,7.963357001660353e9,2.5732902740393414e9,7.775318751749102e9,2.324685432661777e9,5.210666334056254e9,3.8474691060668244e9,8.59771894277638e9,8.212947298991069e9,7.918694755192832e9,6.43374440446523e9,4.0526451718106484e9,9.19633425110891e9,1.391157994290454e9,8.156778011025229e9,2.8654691195027747e9,8.4503914251017475e9,6.498412984634082e9,7.681417279914327e8,4.35273412540959e9,5.069477477866147e9,1.2691379684887981e9,6.701227152641575e8,6.940770969186327e8,7.373712245211251e8,1.3860226121718445e9,9.955569324534994e9,5.878996590785232e9,6.640640376306939e9,8.977966725045283e8,2.2773876796347513e9,5.323707563332777e9,8.374888026668153e9,9.731933088310658e9,2.8876407965838637e9,5.543552987598943e8,8.853067806782122e9,6.474621349560596e9,1.800632292421015e9,2.6376624887793865e9,5.661863599452715e9,1.4698108823755918e9,7.378698800143646e8,5.181835109585994e9,8.59701151825874e9,3.9942050151101103e9,9.829320750399527e9,4.250906764512565e9,7.485568042924559e9,3.8928406048384867e9,7.237150652095068e9,5.90812020950978e9,4.418322483710853e9,5.309650270428673e9,8.818641129820034e9,2.404786619561767e9,3.341175290426224e8,8.122997597024169e9,8.324057439498349e9,7.443383373490198e8,5.190112919484698e9,5.7989369579191675e9,5.584513304200015e9,3.007115491043232e9,7.640474327395047e9,9.931274400568598e9,7.065844430903668e9,1.9997283832513013e9,9.90122531491504e9,8.560450497668289e9,5.284469378067425e9,4.209738557881031e9,7.840014161014086e9,7.284696310288252e9,1.7046958962449455e8,2.779188379610291e9,3.839833879520471e9,1.4889687013842866e9,9.797505873858654e9,9.056947365732249e8,4.907318896396958e9,2.470906655451173e9,6.027785918320451e9,9.878516302322529e9,4.915481877931037e9,9.736877027285975e9,6.111164770858421e9,4.2865967530908875e9,6.22794640481664e9,3.9410929457592936e9,3.939482289824756e9,4.870343692176996e9,2.3377881704755297e9,6.010907229064785e9,2.81306575008162e9,8.102506391539344e9,1.0139057400092111e9,5.169995924670134e8,5.778422506227098e9,6.925692773858021e9,7.303613461989916e9,2.912574873521793e9,6.407445373287619e9,5.053071656013282e9,6.780861915059764e9,2.8778565758434725e9,3.6212451083364596e9,1.9388089461221247e9,6.32812079111309e9,2.478977039586916e8,2.6001170414681916e9,3.058699762427083e9,4.262045537314725e9,6.239332866535298e9,7.453971666658001e9,2.533242472066799e9,9.92930087137691e9,7.370726709760815e9,8.086925131588915e9,8.93974322760601e9,2.8581743034662523e9,7.830664564398897e9,5.742563651851963e9,4.80359519746274e9,9.30512604542083e9,4.418945914829822e9,9.431414228319717e9,2.4426601630283394e9,9.937987041666183e9,2.1116730917441251e9,6.322877488395758e9,1.4744021266222672e9,7.597087945077085e8,8.962881352912622e9,5.956821864362092e9,6.850681636542955e9,3.129531060941173e9,7.748167311115456e9,7.032029833187205e9,9.30030953232969e9,3.4513538420144906e9,8.934506230889908e9,9.09900805323254e9,5.69748168670612e9,4.865637899848486e9,7.282001542428807e9,8.14348761329866e8,9.769691130069153e9,7.454501937220869e9,9.498939253687471e9,5.434232252256188e8,7.628020367675444e9,1.8420528203102314e9,2.1144539011697905e9,1.2234633137783492e9,3.569157558093228e9,6.712157053704532e9,9.65202000302911e9,3.1823312467761846e9,3.5462601517081447e9,6.547936495969186e9,6.786331078806573e9,1.8085400337144563e8,2.000224689698844e9,5.621245655650938e9,9.097926762258099e9,5.470856700820367e9,3.408569199968233e9,6.965990490644407e9,7.885706366358053e9,6.478708279500301e8,5.077915085621365e9,2.626547665271826e9,3.898498181527885e9,7.808836160420569e9,1.9121791639620044e9,5.092974483905212e9,6.146642216825147e9,8.078786086090983e9,5.5110347405736685e9,2.8355541482189984e9,2.3020792562008386e9,6.826837458024615e9,3.396947975156328e9,3.041446977452504e9,5.121537172968628e9,4.390283332970844e9,9.657759934581429e9,5.404799163136584e9,7.090151644900878e9,1.2475967973998282e9,2.334486788541221e9,2.96764227216076e9,1.4400094790556471e9,2.297631864570399e9,4.36380272135205e9,7.135750866574657e9,6.165075169787964e9,2.632928405897449e9,3.745915219803102e9,4.678049667081735e9,3.937444312541427e9,4.1177289031171904e9,4.427859587037922e9,1.6408772304160047e8,7.226278253486018e8,8.346723952418784e9,2.8940732040368323e9,3.068638591568867e9,5.07763017206313e9,8.706954790939878e9,1.1167234757487488e9,9.555263393349154e9,5.503120408760474e9,1.122098871348014e9,7.896968653247812e9,4.452367843961781e9,9.25996414672189e9,4.529904941129893e9,2.8886640800409737e9,6.562016374807112e9,9.15340711681584e9,6.498385124031268e9,7.328026437710689e7,1.323474916789491e9,5.100978464208875e9,8.98493772205077e9,4.357507693544381e9,5.683256956071409e9,8.909353948005121e9,9.556098142654736e9,4.986528173431414e9,6.210225255633815e9,6.878238532081966e9,9.314027100199337e9,7.896881660157396e9,9.691996801079894e8,6.995219577628026e9,7.0302453604971895e9,6.598012894576287e9,9.234640864704432e9,2.0423778247292345e9,8.74733389026767e9,2.0106148711137283e9,9.70657638470099e9,3.155297573062317e9,1.5959867582115183e9,3.7646005906044545e9,1.895990548331964e9,5.257348779960663e9,5.966683529417513e9,8.382885947548934e9,4.129042782303971e8,3.902796242458151e8,4.962524629355599e9,3.500210042796522e9,7.265438347337911e9,7.625985366518195e9,2.0398153785876594e9,3.6486153719666038e9,7.368165403496673e9,5.591394667119729e9,9.866196618740103e9,8.623504785229252e9,4.2498327020637784e9,9.743047870767332e9,5.143060966991915e9,7.052376645142905e9,2.0074496258195128e9,5.953888482266418e9,5.316150461034275e9,7.950556514892207e9,5.602195615663219e7,6.203815759783358e9,9.975726465325663e8,2.1499455414556046e9,7.038025475729455e9,6.692411517768307e9,5.327494347261882e9,2.60722786657969e9,3.790505067461407e9,9.591510537104345e9,7.066446716601329e9,6.549019121952956e9,5.44270613699066e8,8.480623645152138e9,2.6842090654473805e9,4.2673728689353676e9,4.980614325616079e9,2.4152213828966694e9,5.409101261202927e9,1.3369780273252885e9,4.179292521713244e9,3.781906538978803e9,1.6605311522349432e9,9.461490729728805e8,2.03114159898378e9,6.279077907258534e9,4.314230864766745e9,8.215406072638252e9,1.336718772651826e9,8.050406357524397e8,9.698576986705935e9,5.473780162825659e9,6.166181237934114e9,6.231629242797139e9,2.809047976796334e9,9.051115590055061e9,7.150409791626332e9,8.843978595702549e9,1.263227887955256e9,2.278386405933165e9,8.195644282210644e9,1.7829703527635143e9,8.958125146166521e9,5.200355571328087e9,3.1536810090726185e9,2.2260344492130156e9,5.053262403108123e9,1.8574821048390923e9,2.2695195899441557e9,1.0672567409090772e9,6.145007231972816e9,5.005122304230196e9,8.216876181581177e9,4.982887450456912e9,9.994164286897972e9,5.908802779517792e9,2.578752205878534e9,3.5145680559196224e9,3.7401752179830503e9,6.8875444352055855e9,8.826415473626554e9,7.380781912178032e9,2.371884523627904e9,5.443394371367548e9,2.630064980562429e9,7.573280700893403e8,2.961118390321159e9,6.377508846099361e9,1.0318442946798167e9,1.6597019504755085e9,5.28531755671342e9,8.08609670769766e9,2.29053014405753e9,3.801089461123731e9,7.740497053253351e9,5.612278340027126e9,9.383013832408582e8,1.370279604352831e8,5.835039875296926e9,6.93710715659094e9,2.4785534989980617e9,3.675793683908297e9,6.770687062885561e9,1.8772709823045442e9,6.525820968313897e9,5.192778528353061e9,6.564782357737836e9,5.716816266767086e9,3.847096026037776e9,7.861527405153347e9,9.117562858562931e9,5.267185994887537e9,7.515391874376108e9,5.285590739880196e9,8.373942884887934e9,7.974509205558755e9,5.454776826459084e9,1.172263361369178e9,3.515078910202404e9,6.660888837498313e8,6.6843151233734045e9,8.648162679091722e9,1.4680497445323758e9,2.680411211349636e9,5.840825156315511e9,3.7022069348079834e9,2.8985748223806996e9,5.229726147726601e9,4.0488758199969277e9,8.616311382103088e9,1.8284214615976634e9,9.273233528841648e9,1.5510241397992098e9,4.81217652283693e9,8.560742113519038e8,5.282002576817153e9,1.6693590271831827e9,6.620274440059206e9,6.98062193304216e9,8.948769774641056e9,5.851215888760919e7,5.082198190333324e9,1.6483173979496646e9,3.720429151836457e7,1.8936514295862296e9,2.941891699209839e9,5.727524726549719e9,2.4505418833952684e9,5.454059196787845e9,3.9353921863771e9,2.1495915792319465e8,7.184866723958612e9,1.0614471666016911e9,7.773082878989152e9,7.823817137022804e8,8.62457984186293e9,6.3817360553193035e9,6.155695386422566e8,5.263573139606721e9,2.6059094017621775e9,2.263953806609801e9,6.42768092661497e9,1.6220110711382363e9,1.4764061856951783e9,2.2235618910081367e9,9.916029337941879e8,1.5654935145197856e9,3.0772400943468204e9,5.471874893150136e9,2.8566429631177835e9,3.3389682034608793e9,2.8335040970225244e9,8.302173908217567e9,3.108266167842e9,4.9217329391423315e7,1.219669777179424e9,4.789190467857262e9,6.429915796072344e9,4.85266389364433e9,4.678045322654973e9,9.64537576648652e8,4.507031866163872e9,9.227101413822916e9,1.2212176318231349e8,8.178040997306015e9,7.079011031557074e9,1.368641647995823e9,5.961559160981228e9,1.4520814947921245e9,8.540077788620338e9,5.67739638325381e9,1.0666434515950407e9,1.6913936887725534e9,9.46730860854934e9,2.8046857634974277e8,6.748716417102818e9,8.67240290896661e9,4.9354908163415366e8,8.259637087699706e9,4.350452831384774e9,2.3840140157429078e8,8.050379778162627e9,2.690405584269495e8,7.383597158344702e9,2.5145727403814764e9,9.638071985783073e9,5.86746960944167e9,5.267499400717768e9,8.26661335984373e9,9.521045900672235e9,9.583427032076181e9,8.68143144816487e9,1.623600151626181e8,1.2166025596145914e9,8.41189309624134e9,5.904779959607879e9,7.207786707250911e9,1.1633171382921082e8,6.558751896101876e9,8.841596792507504e9,4.685735904712584e9,2.2242037136456485e9,6.538882528261569e9,1.161842537750556e9,4.317953304441894e9,1.0191129060077364e9,9.94900601651388e9,7.454512611530615e9,2.707372958997233e9,7.071704577274284e8,6.492647257977246e9,6.978159595152709e9,1.8522189119670863e9,4.319608089085647e8,8.756354503840752e9,5.514915233574796e9,8.65832682505209e9,7.301450934121299e9,6.53679787806265e9,5.561683423968851e9,9.585776434081701e9,7.725433126301205e9,8.987628182795118e9,1.508763013178872e9,1.995400256480696e9,7.173948122030366e9,9.193221528927e9,1.8364616060510154e9,1.2043523612224584e9,8.480337074912378e9,7.913122961814171e9,8.004060291764375e9,2.9300601461821876e9,5.902133845092288e9,1.4594330769943764e9,4.0855839580485497e9,9.445248300776472e9,4.478870048395777e9,3.7974813558612e9,5.003132650531566e9,6.19815303273226e9,2.0020474756713645e9,9.839805334321388e9,7.333539818888645e9,7.0614878137337675e9,5.234824771616753e8,6.822077702601937e9,8.881896156466677e9,8.92013832486097e9,3.677136834200476e9,2.0988675648804455e9,5.651246562918188e9,3.3843772909370837e9,3.6296147361023126e9,4.08433071339111e9,8.13079998481681e9,1.9060160813000715e9,6.582961954805322e8,9.603406283425512e9,2.602429584673541e9,3.3584227670746293e9,5.73838186379531e9,9.0291475269213e9,5.800198067591244e8,3.4045026341160035e9,8.76331863847266e9,6.542091243769573e9,1.4906981595317914e9,9.978335860967158e8,3.958657987498965e9,2.5378656395667486e9,8.506619844943153e8,8.320995292464451e8,5.739963132818722e9,4.308567451136166e9,2.2625793075195656e9,5.224665416697607e9,7.442872873453548e9,2.8876035546483426e9,5.156207929343288e9,2.6474912296214824e9,2.207342671176491e9,7.504111571054318e9,5.679493322176772e9,5.081792184007871e9,9.298924885552948e9,8.461761120502875e8,5.611635749245724e9,7.962252710512926e9,9.371911026530449e9,6.730059974588519e9,9.556258324608103e9,7.526115852438951e9,2.499724849903059e9,2.276528772052686e9,5.638276885593857e9,4.462040833776569e9,5.436808276079905e9,1.242666185123641e9,6.253777936953775e8,3.939125582880755e9,8.97766096564642e9,2.19825670569606e9,7.736311213042095e9,4.737277867490463e9,8.333574345449992e9,8.267955813652736e9,4.678765934859164e8,5.610319219287065e9,9.627074093509264e9,3.4395670666580005e9,1.0960177811147354e9,4.0970361818008137e9,9.501810221989126e8,1.75354616240353e8,7.045656889383214e9,1.7676709934919465e9,4.711500314336018e9,1.5521028347642107e9,4.678440491452734e9,4.691571592932267e9,5.312015596323966e9,4.980748035005263e9,5.613376139701188e9,8.302808597461231e9,8.537925794061771e9,4.773357318628417e9,5.593874282673435e9,7.507499010375507e7,7.740667429820081e8,1.7761716882726574e9,9.500024173465193e9,6.435402292516949e9,6.262523341575598e9,1.8779019824813414e9,8.444094728063823e9,2.206719507506978e9,3.447977751366316e9,4.9294994439007536e7,9.724499283764923e9,8.695961719699162e9,6.094039583815934e9,7.470108160727551e9,8.083234302340582e9,7.885143128265828e9,8.717078888214031e9,7.735897190803332e9,2.2088737912270675e9,7.35071262424385e8,8.267380723848786e9,5.55416807080078e8,5.419399809071146e9,5.45693347532054e9,3.6465659899355297e9,3.4379800199217825e9,1.2066302164614162e9,8.274483608526517e8,2.617866446847862e9,1.70643437521109e9,5.56386654743749e9,2.9030279774946723e9,5.223322499749415e9,7.3218233596490555e9,6.437928820971974e9,4.865799965153455e9,1.3436488444738703e9,5.251255132557226e9,8.258417143093441e9,7.447618519615606e9,3.844716925672509e8,5.854139950290314e9,4.891911696327945e9,6.321178709676805e9,1.8625169058763623e9,5.829816000781495e9,5.41164479874001e9,2.059452392991533e9,6.829097280854548e9,9.508229745211512e9,7.498882837552067e9,7.047912750263396e7,7.603709635680708e9,7.478276984483744e9,9.918537746428913e9,8.512415122486949e8,6.233640375108828e9,1.2541913355362988e9,6.647222671528885e8,4.900533856860125e9,6.150733559114863e9,3.791090664755903e8,9.15593278211684e9,5.89994008490694e9,4.102287335628234e9,1.544821808238498e9,4.553079809888494e8,8.858237708174932e9,8.737905530545009e8,1.7110348921338925e9,1.1743261084561741e9,8.825775236403034e9,6.631393640008761e9,6.322542524169504e9,6.746423209799769e9,4.49755248275004e9,9.433703644967728e9,5.377525642491238e9,2.882356657015317e8,5.718000685997947e9,9.005649314075838e9,7.887495460986913e9,3.894508872086766e8,9.21220274565966e9,8.707576611817942e9,5.181685958352501e9,6.800994559020431e9,2.624067841111374e9,4.8668929987315536e7,3.4285286564698215e9,5.118341081833916e9,8.821462677828024e9,7.556284607516265e9,7.166719406022854e9,5.4355004027559185e9,3.226612406628395e9,2.463907061720051e9,3.631717042281247e9,5.052763619626925e9,3.9995096695147414e9,7.513341183481723e9,5.057214724539711e9,6.9698145290438595e9,7.801668242504969e9,9.584000177115517e9,7.935781790830224e9,9.77146906647171e9,4.910051075272331e9,5.538811410337896e9,2.398200466110796e9,9.96268308739655e9,7.151854496433337e9,2.8614426514317447e8,2.883104601180798e9,2.186878831681238e9,4.385215290795803e9,6.967086202594441e9,2.1071862414994757e9,2.205123665499356e9,8.054172352646941e9,9.901574964890116e9,4.561450256513151e9,1.9325790616676152e9,6.2205078134844885e9,6.882329668468456e8,4.561130582632804e9,8.220701283013109e9,7.931090404337055e9,6.611999338697587e9,1.860615822231957e9,2.944335094122541e8,7.932653887929076e7,6.91113282299165e8,3.601557771455708e9,4.8406244187577095e9,2.4534524306886163e9,9.399720240174622e9,8.884886806260475e9,8.887767278372238e9,5.133927773342306e8,7.694361153703549e9,4.95638517219325e9,6.942963359059824e9,8.4097068505027075e9,6.502075735670489e9,8.22530513175196e9,8.954230662148518e9,2.784068286547463e9,7.387835074370431e9,5.755346185091168e9,9.269766724856005e9,7.057445655534884e9,1.4532025935557923e9,3.305644943594979e9,1.1869807780946896e9,2.455575730716296e9,6.236125409039779e9,3.9556754699548793e9,5.67519963119168e9,8.443332191909925e8,8.591837082578007e9,5.274637835068102e9,1.6867100944867585e9,1.444609479603609e8,8.730269300980232e8,7.1969130996739235e9,3.993303004565429e9,4.723605892435957e9,3.4356763421070757e9,7.174845854071048e9,3.502504725920389e9,1.7153664357555132e9,4.351092356128029e9,9.507395327334879e9,4.706917943956374e9,9.810233688945986e9,2.756079279712179e9,6.861992095650403e9,5.026978350232462e9,9.920998553615837e9,5.133255480784987e9,5.2035129283996e9,6.080754004872283e9,2.104538464721778e9,5.790813727391877e9,6.905775553926718e8,4.2183364803936872e9,4.621673277180072e9,8.821041769126581e8,5.713717335231577e9,7.366543750025225e9,3.2952704619145412e9,3.751597122797803e9,5.318450645307772e9,6.70783334934486e9,6.98758588259738e8,9.741697937103868e9,5.223346650351941e9,5.764569064059457e9,3.2459406561483307e9,9.059693972855976e9,4.852810489505659e9,2.7493632284203963e9,9.169427767049365e8,8.275444344588765e9,1.4033383759979057e9,2.792705678396541e9,1.6354719033683805e9,3.727669976233955e9,6.010761305966117e8,2.9201123579709044e9,9.369469084932835e9,9.825345637784313e9,2.4305929613390155e9,8.827672234161322e9,7.85527714641574e9,1.6361763753554282e9,2.9991088144098697e9,2.361749163260367e9,3.615185225871546e9,8.74808901271831e9,3.9787912948355e9,6.229405902988572e8,3.814086258918841e9,6.801051657891788e8,1.0559345251747499e9,8.0763150308135e9,3.418779009400452e9,8.56666575465297e9,2.2013493177918286e9,8.786841129997585e9,4.4459202525439415e9,8.164829115658995e9,7.989284522282283e9,4.2011245024776177e9,6.939961663509624e9,9.935619515133904e9,3.108040360408002e9,5.25122815653307e9,3.272559049697577e8,1.3853063108813968e9,7.445249208491156e9,3.9678129460426745e9,1.4237831589464133e9,7.0642649248493185e9,1.231286317053729e9,9.373221904792063e9,2.0128431920269184e9,6.953447661899621e9,5.148110653575666e8,1.0801549311486723e9,7.583565204331911e8,8.304134251546953e9,3.5154937959975142e9,3.6447905521202207e9,1.6333249668626459e9,4.408903814896548e8,7.83513997578735e9,1.8347428170871549e9,8.051205466747314e7,8.847149097072526e8,8.050979637967192e9,2.829591946348575e7,4.830086313757389e9,8.754265869799019e9,1.088753921475978e9,3.559935320613655e9,8.942142097123283e9,9.198525539514545e9,1.4058123320902615e9,1.0446670382994516e8,7.908222858467122e9,8.115412919616902e9,9.188555289857669e8,1.0000364109998705e9,1.5264103245646844e9,7.183658800818726e8,4.0329893878932056e9,1.5447372972184327e9,4.004498731213157e8,4.819022502874372e9,9.658834343466715e9,9.775957945749752e9,1.393257878994507e9,4.0743140984477487e9,3.405309832672142e9,9.50961625219795e8,8.336584330455862e9,6.00725069397047e9,2.057283947565438e9,7.307729387670884e9,4.1397348765050325e9,1.1601832046518369e9,9.917965694283781e9,8.916462587110115e9,7.510245202419857e9,6.624288959318864e9,4.260459720290396e9,3.675732642292151e8,7.513569432235615e9,5.77151717350311e9,1.2295632109657152e9,1.542953810463682e9,2.292790388071759e9,3.5582206394373484e9,2.239161163561025e9,4.557969626327954e9,4.260961659251685e9,6.134022901649638e8,1.383494711451171e9,8.769155025590078e9,9.55323094268357e9,4.0314282052928853e9,6.231528521904444e9,5.069669454764763e9,7.249749760537977e9,2.1427481171241846e9,8.555850396914967e9,6.486798270756587e9,6.868341904734497e9,4.508558739014391e9,9.589869972005713e9,3.401875869598483e9,9.428046088183683e9,8.259719150492291e9,1.233952238865772e9,1.3001322833842223e9,8.412897151122033e9,4.412292994248787e9,7.398779992746009e9,8.718501488015417e9,7.08194784544616e9,7.979157744760116e9,3.9550536628006063e9,8.192621122034399e9,3.972896639241551e9,9.972057771250566e9,9.175702885226028e9,9.804874936308699e9,7.788911298172641e8,7.910180277878846e9,4.0371957030400143e9,2.1112490806666462e9,7.577039354466645e9,8.47064650491775e9,8.362323906319243e9,8.501005055850094e9,9.986783258077974e9,6.378838984750037e9,7.081710038930925e9,2.01492672964789e9,3.582784021546884e9,2.116349551502843e9,9.31795952136256e9,8.232740460713531e9,5.780352110322165e9,1.4595881671247802e9,6.553558336918044e9,3.078986597287373e9,9.65278045604005e9,2.388137976088819e9,8.358898824885737e9,5.471712855008364e9,7.600661039785381e9,9.323567019080125e8,7.410794490201e9,2.552147395304454e9,8.69379826084714e9,5.956344427440397e9,4.95476950831703e9,4.415348719282712e9,3.410119499826595e9,1.0157942211331006e9,9.453985224661282e9,6.120238016846984e9,9.149533942041287e8,2.2730023431052494e9,2.5664413359002037e9,4.549377744603803e9,3.6295612364607143e9,2.6290877308423324e9,6.74284740810105e9,2.8425329484945292e9,3.365415623005946e9,4.077509572404945e9,7.283617544870378e9,3.9072136395537195e9,7.884492800019131e9,9.442874854686771e9,1.6421109361452367e9,2.714328486948849e9,7.5132151690136e9,1.2964485553175488e9,9.59122875916678e9,2.490476945813224e9,2.500020955603136e9,1.925844609616445e9,3.1338985999357605e9,7.80849004342129e8,5.694712803875779e9,6.052235544010578e9,9.501903139510926e8,5.771143861432436e9,5.087383954478736e9,2.7175053211584e9,9.74765420345308e9,9.673841175738699e9,4.2552270487547374e9,8.108487642015552e9,3.176329367308355e9,9.641364494555475e9,7.898390557902432e9,2.328276404326779e9,6.116227635021347e9,4.478670547917758e9,6.827462048493185e9,4.79922360545737e9,3.1629486619537215e9,6.433919539339789e9,8.344894636475608e8,8.348576583867186e9,8.253331268295528e7,9.476789894847095e9,8.515475562668131e9,7.311227261347197e8,9.633074995419573e9,4.677337674624334e9,3.1665580455168805e9,2.8210622297791255e8,6.76056539328786e9,2.4794452148947854e9,5.675994369064467e9,9.082996895450327e9,6.852587616238113e9,1.208399286212497e9,5.913509407734489e9,1.9816993138020334e9,8.887838358632586e9,5.274250359978967e9,9.885688074889315e9,9.136844463164629e8,7.159955432581511e9,9.990189161996437e9,8.713555616288074e9,7.777359088538837e9,8.394630275896525e9,9.794820093758976e9,1.3922018463980668e9,6.306554133198672e9,5.982403832839207e9,3.4254525347213674e9,5.215423570827475e9,2.679458488348372e9,2.604550050460562e9,7.08525656580967e9,5.764698472451423e8,1.8915006071339092e9,7.315462148585132e9,6.473826813142884e9,4.873484896582438e9,6.798553283196529e8,2.1239253549444902e9,8.429224147643532e9,3.4459358563925624e9,3.18669092522771e9,9.124165411236762e8,3.001883692528583e9,9.962970037088022e9,2.405999636997731e9,3.7447307678786545e9,5.575080082970015e9,2.8602468451997995e9,1.5703768642384918e9,9.322503488180843e9,3.8317048367379203e9,4.661646268419594e9,4.26743672070701e9,6.4323800880488825e9,8.331317513495923e9,4.047828820039623e9,4.1582304924394064e9,9.930619822399977e9,4.872045145614366e9,1.3135618186708043e9,3.850859785731453e9,4.6816389048343e9,6.216332855172326e9,5.784104190842043e8,5.223234281381591e9,5.345061224329743e9,3.285756821173209e9,2.3054960701188564e9,7.964682711056222e9,2.518562745623477e9,6.275106078311892e9,9.173301790903236e9,3.3678586403888545e9,4.7931529781331005e9,2.572137657101691e9,3.756036810343638e9,3.1079045459180365e9,9.391969781389376e9,9.6467428622313e9,6.71289271993145e9,6.210165719457302e9,2.1716081363254304e9,1.1437011502064953e9,3.6799764075790195e9,3.1208521296756363e9,7.047731523089924e9,7.0766457977800045e9,6.424537731405822e8,8.769312769470911e9,1.7316625000475528e9,3.2510730618744e9,8.056810468045013e9,8.702786828291641e9,4.195734696464737e9,8.792598194261726e9,6.388904013424639e9,1.45525625771061e9,9.96914346655517e9,4.337443945253588e9,9.573847033540705e9,7.952326917217067e8,2.580352884448872e9,6.00393182439831e9,2.4454729251472774e9,2.7023729648608106e8,9.957060607030342e9,8.38970608675671e8,3.889320087963188e9,5.065352776049215e9,5.363648253319284e9,4.048452495792766e9,4.2181420444340744e9,7.955050816169206e9,2.1872645934858246e9,1.2836253042625668e9,8.903724374366253e9,6.456698148290143e9,5.0334608358389986e8,1.4455083264272506e9,2.743694220646553e9,7.995810745625076e9,8.732230472046259e9,1.4717525421573362e9,8.813671245470028e9,8.307620984942593e9,5.804559340509227e9,8.494713379982626e9,7.224567919634618e9,4.273656782794959e9,4.326130118190448e9,5.704410707651734e9,2.1674608231109858e9,6.752379914715481e9,1.3580115221806243e7,9.355074049687445e9,6.900541877241908e9,4.974831095951883e9,7.553090475422781e9,9.534442965146166e9,7.879234032515205e9,2.260440070936447e9,6.319993335349837e9,7.822772017419452e9,4.435418991562709e9,3.8185357658526955e9,8.912488020082722e9,2.2739665162879663e9,4.779942834259332e8,1.4076255590243936e9,9.931203074006523e9,7.752708230101082e9,5.777335130686252e9,3.373607692708448e9,5.10471046045384e9,6.570245380647146e9,3.7987246980007563e9,7.903761338042483e9,5.368222177292259e8,7.369494724107198e9,5.880221146644025e9,1.1454565215544698e9,8.832808454502554e9,3.7158160147773924e9,5.907348682735664e9,6.360930795041342e8,9.154900264408983e9,9.605874235302162e9,9.740936707650204e9,1.628512792947815e9,5.949546507954118e9,9.593886442928783e9,8.734057779494586e8,6.356823267095767e9,2.89947576287235e8,3.400563336368776e9,8.869159424670855e9,9.706106198473932e9,9.393231529057905e9,3.317389008587627e9,3.0138097293945374e9,5.529874353265787e9,1.5845494431183193e9,6.753337070783568e9,1.5922571553840902e9,2.942562909176567e9,2.6794103883713794e9,8.540656943779811e7,5.987280710849587e9,1.2236834747032943e9,3.785302342470177e9,3.749466668204543e9,8.107898341371467e9,9.235977795188496e9,3.845536208808553e8,1.4646003202155323e9,2.5158252106313173e7,4.693892014255448e9,7.326302466745107e9,5.10209277183933e9,8.840484503175135e9,2.700409766803635e9,2.421876045963505e9,7.081665188007369e8,6.824207005134281e9,2.5390225207829876e9,9.537357142621433e9,7.448298150523551e9,4.878913558744861e9,1.5448543374828205e9,8.354792271208323e9,1.654161265554035e9,7.5157594759217825e9,7.453614114630881e9,6.75371350114524e9,9.74767194868635e9,7.004375920121514e9,4.931282859136946e9,9.159938747900173e9,2.3519486093193877e8,2.917801194335323e8,7.020150137977187e9,1.500088038990499e8,8.370468961392636e9,5.262728722037134e9,6.305677041624523e9,3.7091052448094087e9,4.784031939411848e9,7.324192154568714e9,9.574589670525536e9,8.71969743437082e9,1.0587811005905045e9,6.143391124757702e8,7.913522914666066e9,6.781200497244546e9,2.189853173186281e9,1.0664964065172955e9,7.616246744804842e9,8.916930865864843e9,8.76281784760425e9,4.606823938101639e9,9.81336189086889e9,5.946150807894868e9,1.5675639951617682e9,6.987659633193368e9,7.067308223831329e9,9.250597902854359e9,9.020662966506299e8,1.8092051775732975e9,5.141731048383089e9,2.3432022243640385e9,9.328585000377378e9,8.86609563344865e9,7.495972503999604e8,8.691713324800743e9,3.0878122949469266e9,6.244651453319123e9,4.576645782019765e9,6.243073082840659e9,7.228760231211899e9,8.22978519328508e9,4.730704548332831e9,1.3697272650839431e9,2.2662154479578056e9,3.9096228360537224e9,7.770425022977459e9,8.257957403667005e9,7.101219087537857e8,8.880199095619848e9,6.819531832808503e9,7.994587460449156e9,3.887711412158207e9,5.439340332439971e9,1.0662339480810034e9,8.245090129589363e9,3.9974843552088146e9,5.601597985019302e9,5.736457694644051e9,8.859182933455982e9,5.306932808708971e9,3.413764648879649e9,5.295355143543341e9,7.3781709813152485e9,4.332750018498999e8,9.767227634517548e9,6.247143928844161e9,6.207627010304681e9,1.4474552347454517e9,5.8357735554812355e9,6.061778282000378e9,5.1117845428871765e9,1.699048474452074e9,4.19439574605921e8,6.993682422145282e9,9.281130645974699e9,1.6205746368754315e9,5.1527795747015494e8,1.0583782929442754e9,9.463746395487165e9,5.800545923503326e9,9.307723933628794e9,5.971302368363171e9,3.5522756183589e9,5.945665453917527e9,2.2007464350363283e9,3.6826206272021513e9,4.141189815217997e9,5.26267441479427e9,6.972186380315373e9,2.1400462347763638e9,2.2117865240498405e9,5.003447710914577e8,8.50226381365197e9,9.580814074990797e9,3.0573935723789124e9,1.5442415718442926e9,7.4493110120127735e9,7.712613635463413e9,1.1953287291131942e9,4.2141620484110684e9,5.353120768619581e9,2.1793346368867316e9,8.778241878480373e9,2.92528635817364e9,4.926861793320054e9,8.94692042679508e9,5.586041686695582e9,7.824118348716003e8,8.447557248497108e9,7.587644377792879e9,5.655886241556614e9,4.203285807129469e9,5.541036757409177e9,7.502417252067636e9,3.1506794144113812e9,5.454156580138796e9,4.1781872969130383e9,2.784139069318251e9,2.1601594230677202e8,3.3728154179185586e9,4.884429146070296e9,8.75471249951628e9,8.22365749946935e8,2.462094197699387e9,3.3827104915077934e9,8.600675154758419e9,6.683658977464586e9,2.594004669549057e9,1.4801870202605627e9,2.353819163104033e9,7.989345555019732e9,8.698110168443874e9,6.072331997156539e9,6.26873774697592e9,1.369081679109796e8,8.203499159600768e9,9.492976535785948e9,1.226409802291365e9,4.092637590688486e9,5.897283488408331e9,7.299195770975728e9,8.264451032676788e9,3.7125036979963565e9,9.178897946872328e9,7.941911894523933e9,4.951514795516632e9,8.45922139448408e9,6.132729911152586e9,4.126887675462836e9,1.6984416006700788e9,5.262249575678889e9,8.731571965612576e9,7.125910089068846e9,6.0170590970455885e9,1.1814237573875685e9,9.699282570144928e9,8.126839116546194e9,8.600786154732086e9,2.8413713428699217e9,8.65977825654309e9,5.299934071807056e9,7.969378658479952e9,4.610128915675313e9,4.961297396493666e9,3.2529221934667087e9,2.3702293107048187e9,9.429452466998487e9,2.5584681926792054e9,2.0566039153964565e9,9.621411579058317e9,5.509298497693035e9,8.210340432689419e9,6.073034388278984e9,9.408061201718851e9,9.134073415846311e8,9.278573936440464e9,7.386674687270819e9,1.956877773722242e9,7.589308379465955e9,9.563289233375742e9,4.872597270860892e9,5.328204469268793e9,9.679092889525254e8,2.3889241104171343e9,2.397913437616462e9,9.747406462718035e9,5.134200691860104e9,3.333038128092064e9,9.193659508057148e9,3.675082518401013e9,1.1606064916303728e9,3.8822886427902293e9,3.0750597705711856e9,3.254097424776634e9,2.219505927025942e9,1.5330987007622764e9,7.010593033293707e9,3.2275562867835407e9,8.859066722701141e9,6.723589620358901e9,5.053714032385588e9,5.383293294730657e9,3.7769524711698756e9,1.8737487199229198e9,6.894137777038345e9,5.323167106557302e9,6.574707741985561e9,1.748031427389446e9,9.144381702918089e9,1.6668634350849388e9,9.672089312947329e9,2.1123815746310303e9,7.178036175157051e9,2.199545476264956e9,3.307423899052131e9,2.894692513024798e9,7.758530193230409e9,7.173050382585511e8,1.923456353941232e9,5.821780771597546e9,8.134114866098756e9,5.946756957035019e9,3.9757965242256165e8,5.767944978802199e9,5.540132197960084e9,8.348485234442136e9,4.579283523759988e9,4.919785733678282e9,2.233313837901215e9,9.422168125971142e9,5.800095860050137e9,4.808335443374017e9,1.4714657542464492e9,5.701974854826114e9,6.162962057730026e8,6.379383121593032e9,8.450104098129014e9,5.457245508959571e9,9.509400512949211e9,5.534714226430815e9,1.2588911578039951e9,6.461235988048275e9,9.7291672454181e9,2.6050607911054225e9,8.743617996042515e9,6.190408472440822e9,2.45965123420373e9,1.6530103670227003e8,1.6354759437364807e9,1.9239842462754562e8,2.112192100190169e8,3.3245367326299524e9,5.023933811007695e9,4.474042006423739e9,4.452330998608671e9,7.345990723501258e9,5.572485519474769e9,4.2798523774912376e9,3.7166307842283463e9,2.0844877519424322e8,5.745113350967274e9,5.139609390425004e9,3.652727948561687e9,6.945229192221961e9,2.1323139674878645e9,3.856259644454083e9,8.017726675863989e9,4.894915002998737e9,1.9190446653901694e9,4.780042986701833e9,5.176893213847392e9,9.305757468449928e9,1.6044138041881874e9,2.9119114289801474e9]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json new file mode 100644 index 000000000000..b0b10aba0bb8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json @@ -0,0 +1 @@ +{"expected":[72.68778,6.0213923,11.310747,12.221246,15.94728,11.382545,8.114725,50.699036,44.973854,0.29624382,6.1469646,2.8754923,9.105686,1.4466339,60.93522,39.239647,11.194659,14.730007,38.006516,69.639626,39.990234,18.22172,6.8072643,0.49828413,27.492344,9.075046,51.82701,13.141868,7.010968,13.555677,6.937394,19.880022,62.896614,82.286766,7.6044497,9.686739,25.718699,1.4166762,1.2013394,48.751842,1.8226761,19.477633,6.193088,10.7552185,61.05197,0.28290308,37.710037,27.005955,49.096992,7.840165,0.4777463,19.33751,1.7439269,19.060806,78.85758,3.6230729,25.236696,47.071663,56.96259,13.217617,1.3856536,9.610565,1.8778379,78.3874,16.876238,31.953463,21.190975,16.235027,31.052261,30.590305,26.634438,2.519017,22.235472,1.0143294,43.63498,85.430405,83.18226,73.98486,4.3933463,8.402491,0.47447821,39.344036,26.49929,16.913359,18.223131,46.372604,0.6686645,22.330906,61.281483,18.520943,1.8296484,9.509194,7.7542415,4.397039,5.9662313,41.487526,34.699795,74.78875,33.893745,26.57663,3.760698,15.933077,8.118452,7.5369363,24.239832,15.728108,12.92438,13.2465725,25.958782,10.128187,0.2744117,45.152733,6.6060996,8.098477,0.658506,16.12571,3.5632324,2.6061912,12.413401,2.1728823,20.49827,32.15569,21.155851,12.797127,2.3764966,24.094452,23.878698,4.1297398,8.370208,10.2546835,67.22067,45.194168,9.408435,54.356586,54.93819,45.913395,21.445765,54.639904,25.059872,9.230584,0.69056934,0.9058525,72.003456,18.729017,68.4939,4.008755,22.272203,47.610897,11.852208,18.132753,8.7318735,0.22906019,2.330171,9.431829,27.993158,26.661472,5.0892167,40.46835,75.37054,5.552912,4.883199,67.614555,41.261005,3.7926333,52.83577,1.342317,11.232102,51.13552,18.63506,40.388836,22.120588,12.0293865,51.476543,4.531625,10.353871,1.4041262,12.517494,0.9306352,13.242295,27.838976,7.540571,39.836697,31.172588,16.554749,27.722702,7.7701817,0.09277986,19.888163,48.529495,0.36916816,7.4971266,2.8596294,2.2770426,7.320561,42.182907,4.4504185,4.4661384,50.192265,10.077581,33.626335,38.77899,1.9526683,24.781515,1.5331204,50.448124,0.68847704,12.579326,0.27418122,5.793277,57.298687,5.8747754,13.870455,8.349897,22.111542,2.0781887,4.1554875,19.99851,21.645693,4.5451255,4.49685,39.64117,4.141388,60.344063,12.680754,33.50707,37.762012,17.075653,0.43679172,3.0804389,1.0794694,21.332787,13.663187,23.55444,22.045368,8.684362,81.414116,9.682628,2.5587118,23.707684,30.46073,7.3256445,2.078385,33.274166,3.037628,27.189589,44.475197,40.380833,19.588333,37.05012,2.8007653,28.208233,11.002189,7.9833746,53.733036,35.626873,3.2190955,33.14689,10.360887,2.8075526,14.2898035,32.385574,84.626785,4.4193645,16.705961,4.9190755,58.580143,5.2441883,13.035769,54.296993,59.553616,17.785776,12.291958,9.504682,16.035177,15.734342,60.8714,54.74824,17.20361,15.098623,2.7633522,2.434681,60.099636,11.378503,32.22258,9.34945,14.149974,12.549336,15.840406,7.050099,26.92402,37.987804,35.54381,30.28217,1.5758253,18.879974,3.2752426,21.489027,0.17117377,20.079113,0.4326288,61.3745,26.746151,11.804189,0.54932475,66.316315,5.9991136,8.910665,0.6796084,3.488379,30.857883,71.031166,0.95901024,19.986126,58.070087,15.016421,54.96818,0.14544953,1.3412687,25.792412,29.14227,21.184362,2.746139,38.713287,50.30837,22.600077,2.896189,39.708065,62.403572,11.129932,24.464731,3.2622976,26.885654,0.5495603,36.562138,28.867243,3.1587238,16.38619,26.146954,8.804531,9.797582,16.634241,22.587158,26.046028,31.880505,50.69084,3.0448961,7.8699894,3.713531,32.69221,6.6646748,36.42861,49.62432,25.74578,9.465058,68.59263,32.25238,5.532015,27.38358,57.404053,1.253054,9.673823,3.1152382,33.98671,15.669621,27.614384,37.241,10.609317,16.520344,3.671596,13.073414,36.426167,71.090645,3.3611746,0.60125756,63.50618,21.89918,71.363785,11.853663,34.151257,65.59222,21.306524,36.136948,11.075473,1.3758222,5.537026,28.651346,18.924547,36.857475,10.798963,3.1551497,0.5147048,35.603516,7.461037,6.2062817,0.94740397,19.734478,57.679382,19.704144,35.457157,5.0809593,31.498894,3.5054011,6.4270306,17.923832,5.106913,3.9410436,5.8388944,64.740715,3.2872744,33.006607,10.3885975,16.224325,11.95242,6.885801,17.043156,32.44531,82.02055,3.3630478,54.27561,24.171122,22.539091,0.75368935,29.017433,22.445307,13.29102,28.616667,11.125053,10.783571,9.822482,39.8478,0.7886517,8.767171,1.0572668,2.1899045,7.8446875,8.898038,32.875454,39.031902,5.5279307,22.702991,21.502525,6.7036576,3.0608308,18.389713,23.958834,0.75403214,6.554221,48.469486,14.248811,8.043126,10.871326,12.592334,14.348321,1.1460853,23.0259,2.4262917,23.786001,12.723538,1.4745144,2.5233157,21.991709,2.502397,10.011991,96.92932,0.9775136,8.016561,15.802377,3.458264,1.3207235,2.8865652,14.513496,4.8590074,1.3783987,6.805021,39.718056,48.011086,62.345943,36.28551,21.149967,78.89238,27.433128,33.725933,33.062584,63.748978,5.8219023,24.448343,9.751553,8.083873,81.514,25.563824,40.53324,7.3917537,1.4748454,11.655338,1.7092658,71.03721,29.071123,7.3627157,46.549206,20.438042,11.280953,7.370283,41.648266,4.8849454,44.394608,7.4694676,2.9565816,37.278446,7.625929,1.8401828,6.935213,25.349337,18.946028,28.627478,24.392115,1.162586,31.86368,12.49951,4.525434,2.000517,19.620562,20.091093,9.183097,16.364431,66.43775,43.180542,42.605564,27.806526,65.870415,31.804901,30.018843,1.335034,33.10877,0.52421474,3.8995633,2.0282936,24.130398,3.8130817,5.431226,9.142418,55.66865,7.9245033,21.174799,5.7522573,28.542124,0.6914756,4.1965446,11.786652,37.458366,5.934644,23.511255,26.29248,5.6131096,6.890693,9.024654,7.2683854,23.924381,12.801787,31.742622,3.1064749,15.697372,0.44842032,50.287376,44.859528,19.020258,6.689258,9.546948,14.252086,11.497729,9.016248,49.78347,26.967365,50.654655,11.745242,27.648201,53.91775,52.36022,21.397654,15.975642,11.059555,6.54431,44.77896,23.347849,20.132473,9.99987,10.343275,16.107605,25.56638,48.03612,6.375466,55.022633,13.975393,24.865894,83.02258,2.8463163,0.21877673,4.153118,17.742292,0.19226766,9.020792,6.757314,67.51126,21.614996,3.6972752,10.28605,52.78291,2.8904638,25.639126,69.69128,33.04306,14.6230135,13.252369,5.851551,6.650605,72.26678,1.2249646,33.03808,65.92771,83.86853,62.29653,33.133213,64.580315,6.3795857,51.566418,90.96817,30.194256,18.584358,26.02706,10.867355,3.6633124,8.713648,25.396969,53.279366,24.811773,7.4566965,52.786022,0.5737123,19.7792,5.064587,9.332242,48.858234,29.00487,0.9726884,52.28976,0.8194454,7.469047,25.483728,2.1507106,18.579775,8.134618,44.137886,7.73704,84.55605,14.969074,20.073143,22.064386,20.285486,2.4809618,27.915615,80.51059,90.24934,3.378662,18.007399,51.945934,39.303143,41.173412,7.1111755,3.6804738,2.1328053,27.369333,16.18473,0.1415016,35.646885,27.089132,4.3782516,72.99904,16.599766,21.803596,19.51473,10.331273,12.737585,6.968222,29.867151,4.0539474,72.35417,0.83528686,2.4399786,8.322116,12.516371,40.641052,12.927339,15.125946,17.119888,50.904583,31.633741,8.213982,19.519768,16.29113,56.26962,20.374395,6.228451,24.630991,1.710576,17.291645,4.4574227,7.4872084,58.478485,27.146288,1.5111057,67.87577,12.102067,58.30829,7.7085195,1.2122453,3.5410647,22.90501,11.069921,31.757957,74.86001,18.551067,52.992805,21.062395,17.846333,58.051167,6.5002227,31.718914,65.71804,2.8695288,6.8869424,44.24456,7.879247,16.021471,15.715868,39.33248,21.82853,6.065632,18.283195,9.0366955,77.80467,33.305225,13.327011,61.660736,10.846198,8.7664,49.025246,27.57183,11.985977,35.658398,15.110091,15.798516,16.47644,36.73005,9.635371,6.239686,12.684741,63.940693,40.7341,16.152126,92.69956,18.508173,43.87794,1.1090024,0.028245484,20.474571,12.099199,7.1276956,27.8714,7.1111803,28.062717,17.232513,3.8723376,3.3353748,35.701084,27.926283,48.840916,19.55441,37.49683,21.391209,30.344137,3.7847195,20.491322,10.3533945,19.495863,11.216684,16.304459,62.04605,10.705346,22.132198,18.465403,2.2803965,74.45813,13.109676,3.2858255,20.20462,6.0666046,9.243972,8.229908,0.0642474,23.878622,33.71944,2.6123722,44.503876,26.18194,1.9111105,14.216847,61.701557,4.4229927,43.763515,43.095203,17.190584,0.83787477,47.639732,23.47128,34.419983,14.225941,14.164466,21.546215,5.500821,75.95331,10.903915,13.537901,13.976766,1.474039,19.65769,39.024487,37.15434,6.584622,3.667969,18.21839,39.417316,1.3821008,21.090704,20.300407,1.7846378,1.5023518,71.23044,24.243834,6.4594936,7.6726513,0.13509688,1.0504804,38.76103,6.7219715,53.374477,14.325802,40.339798,24.503696,32.64977,3.6691544,6.76535,3.1660223,1.9274522,15.75322,62.291183,5.8814764,11.13183,9.285312,7.796026,40.91935,8.035978,7.649112,80.54935,21.704498,86.09454,54.943428,19.846228,18.449244,14.616247,7.9209995,22.801352,20.734447,4.4790936,67.10713,6.928997,45.093838,0.67986,0.78470695,5.8958626,13.97487,34.417637,28.49628,10.791212,1.4797748,12.780403,7.1966934,76.971306,2.446957,26.502348,24.97647,1.7285347,8.299263,32.891155,6.128187,5.686695,75.306625,7.9423094,85.881165,7.9590316,2.7942066,3.952208,43.423603,15.623009,0.5719799,25.185093,67.45354,42.38464,8.120574,33.005398,0.010059888,1.1463569,2.6509845,3.0132408,17.791193,24.80289,11.767591,59.671173,28.665201,62.97093,2.3843014,1.3420329,6.488109,0.17279261,51.262325,8.009537,4.9474835,73.77593,8.084542,0.3362614,23.764101,19.178326,2.3183057,23.48735,20.369274,5.573083,28.615446,8.441082,3.4732778,33.33978,0.41628242,4.802251,4.198816,33.81428,5.8326783,6.920162,10.064893,68.53478,56.141502,54.523632,2.4410253,13.377466,1.5285035,34.21277,2.1222713,10.202658,30.292944,22.873333,31.358727,20.379778,72.55197,3.5608683,44.54294,3.4329584,3.2541206,4.8059483,44.272602,14.093252,11.948986,22.345148,7.2932434,1.9894692,29.742361,21.432514,38.412025,9.809534,22.796207,36.69903,2.2103798,9.827799,10.902899,15.88833,8.811832,16.213696,40.087933,63.893276,5.1865697,39.787777,4.616746,1.4969205,0.21931495,3.524077,17.222317,9.603441,56.702072,5.4852867,2.9624925,4.6540246,0.9685667,19.002745,18.020636,22.818052,6.118333,15.8006735,1.1405556,3.4529157,6.1789327,28.517675,5.5568256,32.822243,1.9017581,74.90819,75.84793,1.4586918,58.679657,3.0832887,19.37756,10.6638155,0.4868642,17.178549,29.198435,15.329221,4.1966014,2.997511,3.439796,1.414512,2.3876562,3.5467772,21.171316,45.83755,4.320817,3.096931,17.090197,14.682451,27.475946,13.340232,8.588188,43.92026,56.07227,16.443438,7.976094,31.46522,2.6867876,30.040504,17.83252,0.08589421,1.42235,5.7859435,0.27349624,23.665344,1.8645185,1.9178425,12.203244,19.635815,16.106457,0.20647672,38.143845,32.101315,12.8805895,12.3027725,1.397529,14.57701,17.422318,48.865685,77.05797,33.589542,53.677605,31.42803,15.411545,27.003536,2.420778,42.52632,11.053514,2.1966043,14.620899,7.738748,5.3448315,8.686174,29.108097,19.554062,22.320562,21.433357,12.640218,11.724365,8.449866,2.0793827,6.371271,34.731552,1.9544394,43.421154,37.0753,82.461464,20.945415,40.083748,49.75228,95.6202,3.5030024,0.15803352,8.935199,18.875574,4.411263,48.92186,0.14969926,0.09675293,2.0776465,1.2635045,77.16724,1.0447831,2.689633,4.581911,3.6144485,2.2535136,26.762918,18.827425,24.017487,7.265799,6.1219444,19.453808,0.06959648,41.562275,43.89215,9.024291,12.201615,6.4700985,16.036518,76.44876,19.916477,27.280863,0.29424813,43.660667,20.38774,2.1134953,11.04277,7.4454894,3.5615628,16.021097,13.99697,10.871151,24.158876,16.903387,11.195632,36.246933,8.8681755,4.2029567,25.090208,61.570126,0.03308739,7.276497,17.1367,12.672935,73.44799,21.440664,50.144627,27.70209,77.08487,2.5570233,2.3972766,1.0635605,71.50483,17.25073,25.342592,1.6215531,29.425238,70.86735,33.06347,6.2554364,36.901917,62.999447,26.549992,10.054082,62.329945,16.843357,5.457793,5.165272,2.8201046,8.220725,6.990512,5.3182683,3.7116382,18.96155,42.13176,95.60812,9.938056,13.335998,17.474142,10.293729,8.595132,7.603661,0.015762229,51.84426,0.008076318,14.329557,42.222725,30.517817,41.018513,40.733913,21.031216,14.845684,9.667206,36.331196,20.735823,34.58488,28.88415,33.163826,59.07482,1.1094604,21.285717,1.567987,50.482395,0.5992343,12.456035,65.08512,13.609236,1.604877,17.096724,1.0694333,26.31074,60.016296,3.5945628,20.74059,46.664806,17.599253,18.41676,9.7376175,28.078743,14.510161,2.2074492,17.624893,33.684093,6.008277,59.792797,3.7091792,8.220021,26.960978,14.745094,4.5669427,54.6542,10.508445,35.847828,72.95317,0.4548571,1.4960258,3.412419,5.301407,48.60372,21.531586,7.6490755,20.71605,3.0849564,32.85968,0.12794647,45.320816,11.869674,4.464158,0.7305914,42.963783,11.545901,56.024117,10.0936165,66.81421,27.670095,41.273136,0.46945274,63.322002,0.3808956,18.332136,17.967112,4.1181192,10.533597,22.823116,13.672868,19.723402,17.150652,27.17005,41.59966,15.288833,1.1829021,54.432793,79.78585,41.259415,1.3263131,3.5477931,20.726025,31.26486,5.6764903,41.268505,22.978607,7.4434505,21.29673,24.377026,15.759971,81.53899,0.19717261,15.275151,19.518906,10.886251,2.8331308,13.174801,3.6008718,83.08432,23.376768,17.860815,20.456692,3.0325768,11.2999115,37.303547,22.625818,35.45527,20.258268,35.0728,15.584396,26.700672,55.92563,9.053781,21.486147,28.493462,12.038095,22.063667,16.139431,0.6964744,0.5994793,27.073393,1.6144823,8.267723,61.64991,1.316972,19.709183,13.400082,13.827332,9.41269,19.80472,3.7080538,1.4921837,27.48488,0.5743871,0.56189525,59.197067,21.244165,9.212138,46.889267,1.8745111,11.479528,21.306717,3.4771626,81.33081,31.096167,26.317265,42.248127,16.374075,10.584682,15.309246,21.52342,26.454996,0.08763113,1.023138,25.94164,15.2917185,25.018362,59.507004,9.26686,11.328953,15.728944,10.21851,68.17012,6.7793894,31.150143,16.909151,55.513363,5.6062737,17.662266,5.6050663,27.399485,13.357257,15.737797,16.261892,19.749704,18.797857,6.270441,7.1716847,13.5435295,19.573116,9.842637,26.284763,13.924778,3.2019954,12.235767,3.740312,2.4748335,68.90768,20.558453,11.17388,53.297474,13.24041,6.8152595,51.17269,16.355978,16.932753,5.8649054,58.002106,26.423615,34.08177,9.001899,51.7131,0.44429758,5.4339643,7.275867,11.621516,84.93235,23.2049,21.969496,13.744496,67.598854,36.308464,17.625364,75.267365,23.030052,35.95812,41.58683,22.573393,76.19048,71.203995,24.469534,1.3966615,23.799952,11.146352,14.244796,4.369444,14.637047,62.168915,17.228783,63.70071,43.54228,16.88663,3.6907372,12.565181,18.359789,0.7607697,29.792175,49.39029,0.6751086,18.257444,1.872811,69.694374,37.744926,5.026854,45.860725,3.614612,7.336552,44.957474,5.25704,25.567766,14.815642,23.312271,67.54485,28.594353,10.6515045,10.365773,1.1802025,22.373371,2.8145096,41.661274,11.660268,44.26826,24.305014,16.497126,15.296098,0.9017293,1.2594538,0.114352025,7.0828967,19.904226,10.222128,6.389226,35.242435,7.5709915,16.595922,53.885803,39.57048,33.731255,10.067906,2.8900547,1.6380241,10.166487,5.1518216,4.628581,12.86552,42.016056,35.548813,12.460914,3.5646064,5.011732,14.055458,12.020843,8.541762,64.528915,12.172592,29.474745,16.032106,41.484158,0.7722692,16.279861,84.29822,3.1267197,1.2369816,14.608276,31.314997,43.90509,3.7114265,1.2186351,18.845982,8.67334,35.820568,31.786974,42.725075,38.677517,11.846833,2.1415913,4.252083,21.384901,50.875843,49.820263,0.48224974,47.37428,2.8819091,17.63471,68.24598,10.663084,0.95784795,53.40386,13.683602,23.249657,91.29983,24.798016,0.073196605,6.4357867,64.45383,47.631256,8.725766,73.13242,32.05137,11.272158,25.58521,27.292608,34.226753,22.463005,19.650274,15.712567,52.834732,26.235434,35.39127,56.480736,7.278796,77.9107,0.7612872,76.459755,22.752012,8.123708,20.806389,5.0145993,4.2743382,1.4360592,3.9649432,38.05953,1.8274496,31.913216,11.429415,2.408817,7.8516145,13.30206,67.27405,44.20942,0.27843785,37.6529,23.13244,2.6955998,13.732995,4.7713823,3.0646186,23.377613,41.448208,6.874306,14.347787,5.290511,1.2946967,33.111816,6.8450785,41.932625,33.942417,2.0696404,62.748993,7.621735,34.875587,6.648994,4.8479705,70.112465,46.091675,0.53925794,20.75427,64.00375,41.53942,0.32461295,9.146732,87.861725,77.1007,82.83189,19.430143,53.83777,4.7907686,4.4764805,14.702295,62.85139,2.6013207,14.644802,5.7430215,38.62363,35.267197,35.675945,46.459343,35.748894,28.866682,0.6652047,62.6492,8.518178,7.2971673,28.432177,18.015598,35.034164,44.964054,29.57987,1.715107,24.136885,18.905329,0.09326542,13.186419,5.372136,29.157001,46.01925,26.233908,24.06422,15.674005,18.224777,2.7917266,48.688667,14.272833,21.605911,52.118496,1.0718768,35.28024,57.942257,5.4583917,1.9120473,66.38129,50.32614,17.343124,50.162373,57.854946,22.499962,31.00276,27.131926,2.9715748,15.410154,24.977873,39.14725,69.97429,25.438105,2.4000428,5.682057,6.1375456,22.417875,3.284752,2.9690077,51.964607,1.3045036,5.1219263,17.998856,78.17164,51.717087,5.0469346,35.612198,6.0437303,14.644125,5.8349004,47.545998,82.25498,30.07597,84.204796,4.264832,4.678131,21.86909,55.71312,8.111762,1.5561429,1.4877051,0.41373178,3.6094701,13.60196,7.8154373,43.479385,38.468174,4.14973,98.982864,39.124786,34.704,25.421272,9.615792,76.37914,2.4708927,79.36556,1.9798974,17.098831,17.392511,62.222652,8.532603,2.4262633,2.1173463,9.526304,11.967558,65.99709,3.6217723,39.577477,0.9195239,22.808685,29.177746,8.775112,1.9235557,13.262939,4.159717,21.973022,5.5680656,10.821438,8.996244,27.935686,37.47384,58.78153,17.82244,17.014156,20.235567,13.074177,76.03671,13.048337,2.7602782,5.8928566,8.888323,2.421556,6.229336,29.0614,33.86012,25.372227,28.611177,6.849396,0.4719003,28.486,40.303337,57.758804,23.574202,28.563837,1.6428316,7.6204767,37.17126,37.783325,33.989357,17.535769,3.3725083,4.5421276,21.087759,43.728607,14.413493,45.52921,4.3360114,2.0092983,7.809626,4.0796366,5.870281,12.991687,5.024654,7.7979217,57.267605,4.5423384,44.950264,12.348844,62.22083,0.40479004,18.526564,13.731752,12.077968,4.225684,0.7987713,2.8627524,18.836037,25.509348,27.996788,30.048388,16.321615,23.498806,25.911568,14.735339,63.94339,0.30177447,16.967724,50.446697,22.824036,86.13999,10.841919,3.8297844,17.203909,37.446323,6.051451,28.001448,40.57344,5.032666,15.890647,39.488884,9.913953,67.02949,3.7942326,16.35585,2.2151055,24.576536,51.615044,0.043649174,33.328644,15.644105,20.132223,7.138138,15.569475,34.186317,11.499903,12.072124,12.283866,74.400246,3.9524486,81.79366,1.314089,44.2837,12.218647,17.286406,9.011694,22.685026,36.08661,15.465169,49.656364,6.7735744,34.16967,43.83975,25.179691,3.6796446,69.06823,29.2754,23.891169,30.697155,2.9309251,1.6962923,9.724777,32.338146,16.138515,20.207006,10.009908,35.762383,10.761835,0.27995875,19.332226,22.206894,4.920717,0.1374659,1.5901554,35.680824,10.804829,75.234634,7.7316995,10.207164,15.033831,6.0272527,54.3736,75.63415,28.92821,1.3354956,31.43006,40.67112,15.591849,4.733397,65.98442,8.133549,12.2523985,3.7151585,13.28313,1.4410789,39.818813,6.5145907,1.2763594,3.3695152,12.966895,5.0823264,34.06073,15.908436,78.43407,27.682579,1.6066432,5.211321,37.19157,4.2265005,6.8331947,11.055311,80.90836,36.243057,56.203297,21.683424,1.8097541,22.12083,10.979886,24.027882,71.432884,87.362526,1.1433148,42.31426,26.101843,40.365997,54.11561,6.7478056,23.018671,31.751923,11.460157,38.933693,1.7071023,6.721011,17.213638,1.8339083,2.8289146,24.734877,8.062686,8.810192,8.96251,7.6533484,53.56297,75.48582,0.85340005,3.0721257,6.5997953,13.286359,1.4923569,36.436024,1.6132543,2.42596,77.17475,7.098083,7.3458867,14.281548,29.485006,2.2336705,39.231724,10.75542,28.033974,17.051615,1.781829,49.948635,5.1660504,9.770935,19.06143,2.9493594,30.13599,1.1327877,1.529069,16.655638,10.6476145,79.56759,36.328842,5.4610596,20.08554,24.70998,41.55493,6.105483,2.121514,7.8420467,17.320604,47.59644,7.252078,45.81483,15.482288,8.39663,14.400991,15.54683,40.64982,37.712936,37.77911,25.781479,0.04294669,11.905623,9.079032,0.67971814,58.096294,15.574734,43.24271,3.4770684,15.442053,23.304733,64.98522,28.589663,17.11305,0.33111292,21.195793,15.89552,16.316292,50.719334,41.34035,2.7508042,4.6432877,0.1892511,37.13702,0.07847732,5.8551335,68.65108,45.34487,18.189297,0.33073747,22.569939,55.494434,15.985446,14.449889,3.2095509,12.663659,11.838845,3.5719016,19.435007,60.19214,67.82024,1.6478785,39.86131,1.8506165,53.38531,58.026432,1.2326021,27.903954,4.904716,32.28097,38.427273,37.919815,15.901162,28.743437,19.367163,43.09869,0.06330652,4.6034455,0.69166416,14.797475,13.92425,22.745674,0.69464546,33.75377,16.864197,6.4595413,5.842037,22.432194,41.271812,27.11146,5.2351193,34.184776,3.153093,14.019959,45.640945,1.4930079,35.731266,25.902748,19.24805,78.65507,1.6728666,29.472477,1.4761205,2.5136938,40.444065,18.687225,17.791288,23.964191,29.122417,31.34126,47.818398,0.5936535,58.657978,22.512953,3.4759216,18.125738,25.113699,11.114551,9.249105,11.512213,17.22775,12.394492,2.8768656,5.634828,46.85121,37.32383,31.771416,18.241207,23.872967,58.87492,9.680196,47.32107,23.884872,20.096539,50.57389,40.58427,3.4497175,4.61142,3.0268838,58.5356,22.68914,36.62909,61.834007,10.527358,53.240578,16.666517,58.659912,72.93981,20.379581,10.460119,49.357655,8.685224,19.22928,0.6559574,29.067272,11.102364,34.86939,56.806885,88.52608,18.386114,20.171991,8.711594,26.035069,9.576792,15.052455,0.54980236,11.105655,4.1609087,52.125313,40.318108,1.2770865,23.906796,45.330257,25.064405,18.638193,12.80586,2.4959614,4.9878054,1.4476994,3.3204954,24.210007,20.017881,13.666369,66.344,70.09533,84.97101,32.070595,2.5128193,45.35223,10.04276,29.651272,2.2938676,19.322895,24.865564,23.997814,75.95316,5.011318,16.830908,0.5043916,19.33155,77.87465,1.537886,3.8319497,13.745563,79.38832,13.975273,21.130808,36.158295,0.24667293,2.920501,5.106779,6.1534,1.2277017,50.10888,35.58231,8.940502,55.797817,4.888614,5.5960226,54.780872,3.7355645,5.164799,13.020407,6.9064436,9.165907,6.963079,59.132957,69.12322,0.34579676,10.247242,11.380332,25.03796,8.437176,48.268276,29.026926,4.267816,1.8105366,6.5900865,58.379284,10.754645,47.951946,67.61212,9.270535,40.041904,9.762332,12.117679,5.6149945,19.512474,47.94096,14.245649,7.2232447,78.1373,59.78127,30.158554,3.8476286,7.922763,85.32676,18.829163,25.863956,33.855698,18.532856,1.9804363,46.24105,7.7676034,28.335876,4.6285224,11.060126,35.19347,27.774694,11.501863,7.055968,9.18793,16.288155,60.098904,53.70901,0.362341,22.533428,1.95671,5.812832,48.806522,29.210014,39.679607,79.18485,39.857174,12.210786,8.014939,0.063330896,46.725773,5.587113,60.99569,19.32383,3.5124907,7.3058753,7.5748835,62.898792,8.726499,16.252722,54.01201,10.835541,11.305142,10.920053,50.22483,62.478405,0.7546416,6.5620384,25.371115,6.222362,5.674209,5.767692,41.84427,5.198026,4.3491836,4.804331,62.0375,90.67653,30.514233,38.70887,10.154562,2.7820508,35.76295,9.01476,8.591835,37.078213,40.001102,3.9105067,6.167513,82.91478,23.402903,10.087065,23.876926,10.856845,32.81327,34.719852,23.114555,8.940853,4.6678324,24.93982,26.774387,42.8442,3.4295244,18.777416,45.251762,4.06741,19.344442,22.349974,7.137727,2.9429526,57.67666,12.169033,77.61375,43.07595,7.5053916,30.299742,11.156638,15.357777,6.6777577,9.0933895,1.1050661,38.322517,2.0841389,81.76929,0.9827429,3.865733,4.3053446,24.642344,2.228833,13.629828,13.976067,12.223029,57.455315,16.139122,39.822964,12.415981,28.395475,30.334578,27.145304,37.040577,14.775223,80.215294,6.01263,6.3157043,0.3737834,16.144478,1.7095455,35.939617,0.67331624,25.873798,35.078373,70.33565,48.92923,37.950607,0.4396651,50.14152,0.77907777,6.6186733,13.95205,1.3531557,28.036266,10.118137,23.008848,31.535347,8.311191,2.1120372,32.964504,31.678137,5.299964,23.789537,31.04538,26.154224,4.2114744,1.857687,28.490536,8.14638,14.625687,3.3731477,17.574577,50.535107,19.482649,15.570518,7.758187,26.128178,60.94065,10.8724985,9.0423565,19.589516,89.94923,85.970924,8.581428,38.482845,21.630682,57.77171,3.3319178,15.940494,7.217037,18.243032,4.3475056,11.701659,86.93317,0.048535723,58.153923,24.566504,6.7349167,31.025888,3.2859304,4.285562,0.15437295,1.3954768,27.30899,0.01616993,17.827457,18.779129,11.188826,42.745155,50.731136,56.87729,6.678229,9.196608,22.083277,37.310253,0.7377571,56.453415,9.485135,18.278963,43.102947,80.67544,7.1744995,4.08353,5.9295797,79.06941,24.05786,15.596361,1.140608,1.5558273,49.123714,62.470516,21.003994,9.21081,34.783764,29.22861,54.730446,45.86669,36.145954,36.03351,12.949532,17.182768,33.444176,54.985752,0.95132107,5.9628725,14.938866,4.5698767,15.527074,20.471972,47.87939,2.8836052,39.978367,27.603619,59.139656,59.340458,13.357794,53.042793,20.078678,8.505032,3.4100811,85.65313,13.64914,91.703094,0.095478274,88.1617,47.115498,16.671923,44.521732,35.36422,36.078808,12.854436,3.139189,65.60572,18.740185,59.625526,44.272717,7.374259,31.923676,19.01863,6.889174,12.351927,55.541653,5.810398,65.802475,16.871382,28.188118,18.904549,4.130362,2.3452551,40.359463,50.99902,9.663185,33.364807,53.18086,43.064804,17.933876,46.307056,14.046019,45.61242,16.767857,32.564163,22.974003,20.733776,4.1893573,0.13741058,0.84351087,35.39346,0.41301566,0.5919395,31.499447,19.166384,41.05494,10.439137,39.813313,3.510782,5.8104343,3.329369,29.035017,24.73343,1.7093434,14.807903,1.0250816,3.9318688,9.778391,3.177731,30.268002,17.952839,24.420122,70.23893,7.376182,59.56991,28.03078,12.165448,27.113932,31.778288,10.907416,20.8547,20.615467,1.0015284,68.45015,77.717415,1.4336294,69.21123,11.809481,39.520603,30.986095,53.817745,10.606119,46.187435,15.725028,28.197493,0.21297753,1.7838529,20.466953,10.191525,26.426607,38.105595,11.36622,47.630505,2.9018025,53.67319,4.2680893,22.964773,0.6727603,0.46235213,43.946667,1.0754846,1.0367453,3.3889012,9.66523,0.26257473,34.627964,0.29694495,11.767442,16.147346,29.010307,11.788033,16.622398,1.2419724,19.393776,4.65501,2.3674634,0.94928503,12.408134,79.895744,52.61882,18.970835,0.9004092,12.207376,6.892089,44.739384,4.599868,4.347923,35.946632,80.95444,18.822506,15.512967,7.984665,3.9686987,14.777091,29.944372,7.245838,10.463372,2.5611026,31.568562,16.297123,26.370161,64.24476,67.45193,0.021459611,23.285622,49.083683,14.845746,17.04789,8.504411,1.0848114,19.42399,0.56284815,10.588487,3.895948,20.372149,47.374607,36.03474,63.991158,1.8980832,24.277517,24.13812,7.882324,6.703364,46.0153,13.46251,21.778399,6.9439125,28.80654,27.391945,15.632144,13.742779,27.524654,0.08265111,13.576488,4.414956,0.37843075,11.626327,35.57871,2.8761168,3.6226964,64.271835,4.559779,54.5471,3.3415997,8.214591,7.029284,34.967224,41.38975,18.59578,53.75163,1.0744468,3.4574037,2.8390458,17.116144,2.2967896,36.208538,5.5075355,31.90075,15.457318,6.4933143,2.2495246,62.00917,40.12332,27.764431,18.17727,28.91847,0.9411973,35.619415,13.715264,27.0106,0.10246978,1.9389627,8.344949,1.7487029,28.897942,23.095566,22.38398,58.304756,6.275816,21.762577,42.496098,0.20788075,51.22475,0.13589771,18.359945,3.495808,2.1812036,23.886276,0.7215035,0.8654806,9.673862,8.346346,39.78465,49.708237,34.67134,30.559486,56.206142,73.84527,48.604298,0.53319263,53.249027,6.454444,4.3107567,36.59921,3.7342658,7.7885427,13.785758,0.40891454,2.163882,17.077707,45.17461,35.70132,55.30805,6.8748116,3.0810585,15.035579,5.259253,17.5893,35.850975,80.49929,18.388666,6.4364877,12.93464,17.111492,19.772314,11.869438,63.932877,82.18847,25.523548,66.289894,5.121931,20.12268,26.734903,4.536581,2.1835048,13.999722,44.456387,28.842598,18.89347,5.1065984,30.768955,0.8215787,28.505573,23.122103,23.724356,5.740639,61.94464,3.8520048,0.45115262,9.782922,25.027372,14.643743,23.667288,4.8623533,30.95578,53.632244,0.07814491,54.86329,2.2654068,20.71423,11.803727,85.45354,17.56583,33.791317,42.285908,9.719922,12.785861,1.6720502,28.422531,59.823807,19.208044,77.75385,26.395538,32.57453,26.696356,21.681751,11.294576,28.754686,7.4944954,32.218105,2.2836654,7.364808,7.2594066,0.6546457,13.255464,41.535587,20.052275,9.457576,42.029697,58.840446,59.913292,9.417858,23.306005,42.072617,29.14011,40.15158,26.19007,6.0416846,23.957737,4.882705,7.84031,37.055813,59.521095,81.6374,52.60578,5.6027994,8.626774,3.975749,8.821608,30.836962,9.371433,49.02529,0.32447475,0.769366,2.0705733,59.067966,11.74396,41.371597,36.354095,37.879444,93.55362,37.641495,12.585189,9.306456,7.8772745,10.810207,3.0360699,59.075012,16.241821,6.1639786,6.8352404,22.819855,8.36178,5.0722523,54.312916,93.71823,12.115956,0.74064285,34.406975,9.903898,9.730407,50.747124,70.60267,35.375687,7.846291,35.12606,24.020739,14.810178,34.334034,18.532671,14.274928,8.974505,39.229145,4.2961917,23.235683,52.083168,10.710115,0.3241056,69.78883,15.059114,23.12947,33.044395,13.7125,16.33488,1.3156784,43.647488,48.474915,1.6556416,1.5077258,6.4346495,22.670616,64.484535,8.461306,11.747598,17.520851,55.961975,76.093765,20.991726,25.576105,49.40924,13.149738,50.576508,23.052383,7.751495,14.710826,14.499058,16.13978,17.01866,8.835309,78.530136,19.868088,49.1345,0.38204136,13.945015,84.287224,3.7456384,31.500778,74.04166,2.2962549,1.1160084,3.96215,14.497464,6.892588,6.6600294,3.1897764,5.376119,1.6058663,16.605568,7.804011,44.16504,6.2355533,8.915735,31.808136,97.17367,46.303207,27.20502,37.322777,23.077358,2.3899415,2.3944957,19.95071,19.921701,16.234755,67.68882,19.575397,25.926231,20.214901,30.514648,93.04971,0.53109604,48.35096,35.731052,13.065225,3.0473554,13.145247,14.436983,1.0073797,32.57155,6.818411,20.319965,31.868967,4.3708134,2.3905952,1.7008548,1.0925653,17.510824,24.527477,13.105676,8.748125,19.0362,22.98634,2.0789006,43.690304,26.055853,3.1643422,16.798975,6.474596,9.993371,3.1361585,7.171862,1.6275966,25.872534,18.18494,16.957874,0.6741758,59.26517,3.5437152,0.4845257,0.3908942,62.61001,7.125393,41.777523,30.714046,14.283376,4.435661,2.4584527,59.93545,25.768469,8.286028,0.3240888,4.613428,2.7404234,7.7626944,21.863087,44.988018,12.191815,6.73477,11.690528,21.435072,0.84429723,9.78978,66.25082,6.7263927,18.89007,26.91234,39.43495,51.641514,43.439957,46.393864,28.629547,48.671955,70.28164,33.24388,5.9519806,4.8392,26.806957,57.373543,33.82381,16.331787,40.64585,8.737821,17.238472,22.36789,6.933472,16.527264,34.53906,7.0224257,2.687228,3.2139063,18.129442,18.09582,1.2371267,55.14659,14.072134,41.74472,29.189465,29.80091,4.0197945,30.132755,89.65495,2.9678147,11.505045,9.740788,8.348447,13.706097,48.85049,8.022265,11.589174,77.428696,7.2711544,91.40902,13.993168,63.901527,31.332245,8.848443,9.00155,8.781486,3.1446419,6.5922804,6.045754,64.23631,13.743864,77.29043,2.416014,12.6448,0.18690763,27.284924,37.657406,49.09962,19.173496,8.309929,27.182493,4.423868,3.3656635,34.160713,45.11662,16.990494,21.111607,29.661272,17.81228,18.892292,65.44053,3.1893768,36.762417,41.81885,34.585087,11.010002,12.738682,3.6677113,18.638527,33.97947,73.43549,13.584878,1.983582,9.39782,28.65721,10.099228,20.452314,5.989265,22.250557,10.78598,6.9649115,0.07740583,68.41345,46.08264,3.2216678,7.031504,21.139818,54.870564,8.83416,5.678724,2.3997357,16.067322,9.357373,29.147491,15.579264,12.709132,1.7269639,9.743075,26.817942,30.435741,10.556995,2.2214699,43.0185,2.5866058,4.609124,78.77025,22.093927,9.376545,1.7143153,1.0028207,27.41206,2.1038263,81.1771,69.23986,50.389225,2.892095,13.917627,2.145363,6.80142,53.16382,87.48988,3.1230414,24.684902,16.466866,17.524899,22.962212,56.9586,31.821272,37.467297,9.308413,35.131847,4.751718,7.7966423,6.4941506,2.427169,17.375036,9.008905,40.39985,5.5575323,85.33435,23.986324,11.248714,70.706154,21.187729,17.320965,2.6641474,13.06989,31.152372,39.85625,25.959408,17.723915,72.313156,53.134285,72.93817,3.7887235,0.57719797,29.027807,30.267885,0.19174017,33.44005,14.761849,29.145462,27.09407,2.02932,8.21957,7.083823,22.324688,50.31316,19.624811,69.359116,12.521375,34.358482,15.358927,19.068075,3.5781546,3.4221342,8.981688,4.291046,18.799316,7.867292,22.515408,53.96801,5.8414197,5.5511866,11.799588,16.507769,17.858177,22.161213,21.571503,61.036045,36.650463,20.286531,2.8347206,8.909204,25.175423,34.738075,23.068546,18.045523,29.813585,3.6028297,10.015356,47.668465,5.363997,1.8240122,1.3411946,3.3055773,18.714436,77.34049,3.1759746,65.18092,2.435883,6.660022,84.122986,16.904352,2.1097317,3.827367,11.518824,24.923994,14.954346,40.10786,4.402546,68.27434,69.87782,18.438604,19.254087,34.335648,45.11544,20.04774,24.253956,24.453531,22.365639,36.36971,3.225731,32.727047,11.603372,5.08618,4.7072177,19.435741,10.93465,1.4393042,5.0643644,4.0688415,31.928535,7.859545,18.632498,68.698875,1.5622764,28.944023,33.53473,18.067474,60.78108,46.299866,23.012983,7.3243856,30.282492,67.84467,40.864876,38.18099,50.898544,13.609899,22.767527,3.7066948,25.648256,15.866629,21.177092,29.16114,62.49977,9.656426,65.69551,28.57568,54.837345,22.299515,1.0588866,1.718822,37.450615,18.949541,22.337921,7.0263762,11.69512,27.638443,7.6793942,2.387121,9.545199,15.232545,33.44713,41.225304,50.32754,2.0448356,63.011692,15.423124,54.665764,2.1152349,73.994705,1.1280476,65.44617,1.7772795,42.22346,36.891376,24.99074,0.2853594,57.83195,23.910198,82.62832,33.460606,3.1761973,5.9381685,56.05318,29.802492,5.3467426,3.7178345,41.836273,18.193207,14.039989,11.248594,14.94577,3.0628626,5.719972,1.6845335,30.456612,10.719931,35.21116,88.27968,6.9611993,82.64083,22.291279,14.065027,56.627823,23.408873,42.50237,6.5016065,55.26792,5.999674,1.4987485,6.9960766,9.658002,32.84418,12.815972,0.29336718,31.751863,15.770239,70.972694,12.554574,19.931707,31.84247,28.992136,10.969022,15.879748,16.989853,56.459152,0.5792438,31.010866,0.0013834998,11.520537,30.806396,1.7369574,28.127073,41.64003,2.0011373,38.381214,12.252524,65.692154,19.75925,9.269306,84.41271,24.296175,6.4272304,18.328098,19.142496,7.009494,0.8358405,5.773713,8.5489855,26.547644,4.047361,52.100216,33.488514,16.984612,11.270428,12.2669,31.144337,18.33192,29.80911,17.869926,12.721744,10.162154,0.6909093,14.171047,8.6524,18.714045,29.151922,82.270355,43.521793,13.508182,7.857018,20.14548,51.413242,30.323133,18.252304,3.6373005,7.6828527,16.692198,26.871634,31.20906,16.693085,10.273596,60.888126,59.441933,22.38371,34.354458,32.51055,49.85461,13.757852,15.763308,14.364453,18.70859,0.816328,12.187959,31.582388,26.548359,77.8799,67.68205,34.78239,4.6710806,0.7255602,6.7245865,1.8618143,45.822224,22.611605,78.561165,49.570942,14.225287,9.363069,0.2797821,24.199198,26.191772,16.982916,5.7808533,32.11262,82.196686,0.55709475,17.598843,5.5422153,8.362556,0.15805902,15.008236,10.793122,8.63064,0.07166212,24.120897,0.021165546,3.0058005,7.1170845,9.089542,15.654899,61.83715,7.1998353,23.826115,62.584972,31.149637,45.745655,8.47066,2.442121,9.53461,34.08683,15.187629,16.209442,19.05257,44.00582,26.873795,3.7559767,9.745242,35.910755,25.263515,26.699202,13.945759,13.234012,27.826756,60.292053,42.64606,17.017572,37.373123,17.66754,38.97313,36.350315,58.955414,15.978724,9.740757,2.8153052,20.72599,36.757427,41.774776,31.492216,39.615814,8.03775,4.0127063,26.585537,2.7216966,46.813217,13.3242655,22.16948,42.278522,1.0525899,1.9783237,1.3447069,21.805286,8.895932,25.663937,15.801239,14.8396,24.148767,4.920571,20.521091,9.810283,3.2312663,43.25357,31.868069,34.192898,2.4663227,62.001255,11.854477,17.632177,12.935233,5.8174033,24.132837,18.927994,2.0121467,37.141285,25.948605,5.35763,4.095124,3.800051,23.176012,2.4326048,4.0022616,13.240778,21.153046,1.8981278,1.0164492,8.107952,14.042641,11.924618,2.037721,38.62562,9.032241,12.4855385,25.07705,76.920135,15.928295,28.713829,18.96116,5.9444356,43.701805,0.7144874,34.33539,20.682655,33.00485,19.24205,31.015076,26.188719,20.35274,24.307888,39.60917,39.59259,24.853752,42.758514,15.697478,59.174763,4.0792613,36.70236,22.93817,51.431034,18.101156,0.46874326,19.728106,1.9509861,46.6567,18.26116,23.875332,0.011374599,18.507238,0.4159043,0.016509164,82.434235,19.960413,13.155443,5.371099,11.790581,1.5136032,39.999634,1.7601578,23.574621,10.4479065,14.711832,33.27352,23.895432,38.252144,3.4564269,24.054722,12.822577,21.448341,19.027357,17.871773,24.829062,11.841321,16.31603,9.154554,14.788466,23.592304,4.869995,8.916784,35.819218,16.466705,29.481031,3.3712335,4.2480593,3.1069434,37.911724,44.09501,5.668186,7.6300187,30.10726,35.915478,15.373166,26.42819,6.3610206,14.784231,63.39419,73.6517,25.114832,80.35834,8.158248,26.342014,50.320305,50.65297,63.30845,3.1148448,39.003464,1.6025386,36.87372,13.532033,30.68866,0.82834834,1.8882629,40.514725,8.95934,17.574144,20.47115,65.282425,16.188429,20.250551,18.60964,72.491425,7.251678,28.65343,1.6151575,63.41768,6.038461,32.042843,3.2132785,56.52356,38.698776,21.945559,21.84023,10.391037,4.3889456,75.010445,12.555623,48.64144,34.63852,0.23971969,61.334988,14.720192,23.365458,7.645481,19.93946,8.962188,21.475431,3.5960732,0.37004972,18.63881,0.107140444,6.749511,7.0290885,49.410088,26.184092,14.135451,29.03539,4.633148,6.3029,34.975628,2.2161624,32.078735,8.407826,16.091904,55.136875,30.781296,2.169158,23.48421,1.108645,11.00325,7.3968062,3.5246558,59.12676,0.29166895,11.984027,15.3284855,5.027963,72.65838,62.892975,56.087692,41.621605,31.702639,68.45997,84.53047,5.74266,25.09556,1.6601855,65.442406,32.043777,47.308712,2.1297219,1.969931,16.504515,54.12002,1.814094,9.388988,29.244751,20.789948,20.72489,0.12438411,41.97679,28.32902,49.492897,16.221226,21.137022,2.0017524,5.3518405,9.4579525,7.6257915,0.7370334,52.575214,9.341748,4.27687,2.5077546,48.36166,11.360105,10.485492,37.902607,14.318269,25.80904,0.461472,1.2975509,16.235592,2.7592175,16.259651,27.283339,21.686676,1.5667912,25.953308,4.20525,36.326843,11.0659895,14.564849,56.794617,4.553971,0.96558017,35.482277,15.724327,57.239773,65.60287,35.314648,0.6973206,37.083427,9.059848,65.807205,7.9029512,30.584728,5.236828,4.7974463,12.426711,47.118595,4.3043756,14.109377,18.397207,38.23517,38.590393,61.15386,28.244331,60.610302,16.185843,4.123731,42.245018,69.124954,1.0148457,1.769141,68.23876,82.80646,64.71983,5.4851584,1.5387094,42.100212,0.32472718,5.8255205,26.868696,16.952208,2.486171,3.302717,11.849456,25.207071,20.195396,51.36981,33.273537,6.760335,1.3017827,62.13375,4.911666,40.48749,23.30664,29.543594,73.63661,77.163925,20.369402,22.951912,57.220657,39.632595,52.947636,12.048779,34.072598,40.53414,15.736272,80.75861,35.29998,18.141449,30.229374,38.243305,10.33855,41.324276,10.781465,16.175402,27.17109,6.7496257,32.15172,60.472046,80.782776,50.700996,36.02145,8.494803,46.85842,8.993739,24.46901,0.061929103,8.082822,48.61056,24.358582,21.317505,0.73771733,19.10259,10.3095,8.851215,6.2168913,28.601368,14.450207,13.575051,25.846785,96.37734,92.3676,3.9689283,31.22208,87.870224,19.51353,37.327465,77.33953,2.4102788,5.0492754,6.355986,48.674877,13.064946,3.44507,17.102419,80.14199,17.588629,0.6734012,52.339676,0.92462116,7.9333324,68.01396,27.255022,15.887697,7.045191,33.399567,4.29756,5.327215,0.06786388,5.680242,21.973684,14.012249,27.916363,35.70987,43.195663,82.70354,40.208084,37.41676,2.994694,3.0916216,11.73559,36.4901,1.2087762,4.086451,2.2503452,28.58576,4.9809604,5.8000727,0.2187066,5.4716783,71.08977,43.241314,23.648418,62.332726,38.103363,64.426315,8.453931,4.6979156,44.060818,36.153435,4.4829087,15.262246,0.57149243,52.277412,0.1723548,2.1516266,16.775808,17.826645,13.312909,20.47944,48.955685,9.849214,10.491692,58.98914,4.068761,54.956875,39.507275,39.639908,26.413078,41.807,40.96955,14.963601,21.361458,48.24748,18.823528,4.9910436,5.6361136,3.3750722,2.2788115,56.834244,5.7420096,15.527019,0.45435846,83.06408,2.5560744,2.0467238,0.33220088,29.292236,30.365896,0.21772417,23.995646,38.179,17.875149,17.078104,6.513781,26.157696,12.266781,31.819767,4.7394967,34.881237,69.271416,1.7860291,32.544594,7.4928274,69.62866,36.33735,4.2583985,39.55996,27.830734,37.871426,11.453867,5.3710666,44.151855,28.177095,83.26736,3.1552923,16.082472,1.8933152,1.1011679,0.22319439,92.113556,10.740197,23.99516,12.454386,27.76842,66.75297,47.139046,6.939908,23.520912,4.81293,18.108845,3.9457471,5.3415914,37.73425,0.5849656,11.805464,7.8730116,28.791773,75.39051,14.138514,12.559048,11.239993,4.679928,20.67584,4.082059,16.035894,10.741771,11.754513,18.636683,9.508746,73.78614,11.278071,3.3775234,12.098536,21.980469,9.899903,8.900011,10.151707,3.8437743,56.15473,8.177411,10.679639,28.6901,77.05169,4.2727466,9.506466,3.344555,0.99188524,56.923515,4.355022,20.96015,7.1733537,9.297097,0.23246619,52.067245,46.288433,13.474119,19.097895,1.299947,3.808366,24.026335,43.623875,8.553802,41.015266,68.64737,0.18135211,37.86814,12.224354,47.979473,49.248734,0.8884446,26.741331,86.69523,7.893169,56.401886,1.3809851,17.636148,0.9640692,9.875655,8.615979,14.346498,2.4614525,5.578299,28.31073,0.4284137,29.591412,15.399386,39.574852,2.8876045,64.887245,21.244827,50.65492,24.446388,10.171603,13.024044,41.19824,47.6094,10.758603,36.28855,11.972044,2.6312156,9.071763,1.3307846,68.367355,20.5699,28.677269,15.348194,71.25219,21.219788,42.71701,28.147976,11.827807,11.200283,3.837643,0.27341732,0.2669258,34.844677,3.1736615,10.202391,29.035475,33.547768,49.527233,6.301415,53.171654,3.6703365,51.389072,40.839783,51.14845,12.051588,13.559078,31.726963,38.833443,5.1326013,51.81072,22.691214,49.253292,10.387634,14.415059,75.33908,5.582131,0.34003302,29.785208,0.16058108,49.801132,3.4276195,44.118538,6.9962025,6.0113964,6.245375,5.180876,7.000001,24.250559,2.497349,4.9603295,0.8647298,15.158486,10.000314,7.8036504,5.819476,78.72481,18.955252,5.8068743,16.166271,25.878765,6.658185,67.52517,14.252258,14.302185,9.343462,7.0826283,2.1734009,13.717412,0.19561027,13.5287285,6.9664135,8.641098,0.28809083,4.449474,11.193989,7.3077197,5.540984,25.611252,87.48395,3.347211,46.29381,0.9506276,63.51609,0.638144,12.464468,33.260223,0.116530485,42.045296,1.5317419,91.62486,61.408455,69.22829,5.3029037,1.2388417,32.227505,56.378357,7.883784,8.166261,70.07958,17.026983,4.0043955,46.64676,45.785156,9.336475,5.0142736,0.7633254,20.76954,1.4421082,16.804443,61.80464,31.992254,5.397683,18.410389,4.4983883,5.143574,29.591873,66.10329,57.910263,16.549587,7.0359583,30.679594,0.77488995,4.7069516,72.11077,14.333111,11.636044,22.567825,62.40672,7.100912,7.843344,1.655827,4.423281,2.5059054,0.13199715,0.4860963,3.4914203,4.962905,30.179253,8.148608,9.705706,65.46298,11.161413,6.680438,1.4481087,31.263758,22.28373,38.299057,74.5125,60.60552,12.778093,9.01853,20.732002,8.266143,42.017014,24.641869,55.70273,11.211691,17.13646,1.164146,35.840954,2.3134665,53.416687,28.128822,1.8677502,18.645023,20.964006,25.91343,1.0660421,8.752163,0.74537283,44.760952,15.359548,28.400244,67.67862,1.3270098,69.774216,2.6548147,2.2523868,28.727213,10.795131,34.886982,8.361197,11.734246,8.66257,8.667037,4.6186366,26.96046,79.63617,9.95749,2.2569284,58.048763,13.402694,22.399506,19.664103,40.260548,25.734228,79.904785,4.428529,41.501358,0.41722444,22.209991,29.82699,1.4852976,18.326954,0.4660584,7.1712375,15.790056,19.428442,1.7196753,0.18854551,18.852688,11.22349,63.490623,4.766802,18.23604,21.480007,30.778273,13.614327,22.102804,2.6327817,63.395046,23.022135,3.5467546,42.36299,5.5820866,2.7238894,0.20957087,24.807238,42.94428,75.080956,3.448495,26.459173,31.846062,2.8148334,97.34089,3.747735,12.083991,13.473928,31.15217,1.8258425,5.1020365,0.16516413,4.0691867,26.660429,9.067392,17.884232,4.832531,2.2532468,13.111578,38.605057,28.825916,3.6443036,25.068346,25.791504,1.7185613,31.800978,7.021142,9.029356,4.2448716,43.13462,4.1931005,0.116619654,3.281517,57.663975,27.712149,88.298904,19.494083,43.62951,26.707806,28.249836,4.9621973,2.7291944,14.335348,86.229454,10.009347,12.570706,10.568415,27.412003,2.190098,1.6410655,2.533563,17.836323,8.210718,6.887707,13.003548,3.2622182,1.3153483,8.335379,55.304058,7.563513,8.401572,30.238573,13.736497,1.2148844,21.23691,1.4237803,18.450829,16.088266,11.440127,37.41871,49.410732,61.727665,9.668099,8.2057,40.67026,14.478631,0.016738625,87.75814,2.4100237,10.073887,32.18295,16.453455,27.015049,28.258085,70.43699,3.5598419,20.502367,3.4247024,19.361288,64.332726,30.560307,0.7744889,4.2659273,0.8184058,6.852295,71.75433,70.97334,0.29595336,27.17706,29.11086,16.537424,4.599816,29.357214,1.3318846,38.227676,11.172308,19.339573,6.2272663,16.152927,70.210396,29.77049,28.559048,5.969326,42.383057,13.654523,76.76802,1.2546337,3.0253491,8.569722,5.0493536,8.871092,16.467297,64.27428,35.902798,34.33433,19.70562,0.5501765,11.609784,0.9967566,37.500202,3.1258998,4.8540993,0.6528588,9.384083,19.177229,5.4048023,32.881687,23.893196,52.498837,7.0292506,40.249,12.3146305,0.19948,5.026023,8.601637,27.54329,16.084026,16.76122,14.392198,42.626728,21.572857,13.126146,1.1456369,4.1143255,15.828591,27.48525,30.945536,13.898448,14.959494,16.797033,3.9746678,19.937243,40.049435,21.778736,56.724796,4.3623614,11.528934,20.62079,10.782828,9.040923,43.308735,25.29234,0.102813154,17.664982,0.65262055,47.947014,60.71758,10.348357,1.9378239,32.477745,41.460785,54.872482,8.030096,4.836082,19.05034,10.579763,22.789724,11.539772,8.73787,38.747627,38.576523,5.0547485,1.5437112,38.974285,21.283295,66.63481,15.35281,5.891691,30.101542,66.78943,36.989044,35.17589,21.527119,0.3245112,14.045294,5.381219,21.464678,33.541725,50.31194,38.06801,7.069815,15.137235,36.376602,28.309675,28.932762,50.505096,7.8991027,74.283295,11.794513,6.07037,15.815261,95.55742,8.944911,49.943436,64.62571,12.837429,15.4872055,29.283665,43.048676,1.5681926,27.531185,87.15912,7.0437593,59.95961,17.86196,67.50425,7.2361555,35.54926,44.212605,63.216915,17.131468,63.48857,66.05417,6.0958962,5.808352,29.877825,12.623808,43.675556,67.88767,10.747087,34.089157,42.079586,64.63196,41.807514,71.55369,8.973418,3.9594123,11.842854,4.308216,58.641182,3.8392994,3.3817365,13.166597,2.3075542,3.251252,12.600626,28.37141,23.3079,18.755274,16.652882,58.422157,45.111816,8.475009,29.494993,50.63231,30.84262,43.61654,43.32321,9.207075,2.652246,73.42313,41.542053,76.6403,7.8554645,1.9221115,14.959753,10.420114,12.638444,17.682695,0.50393265,15.779812,22.200268,16.618437,35.353447,36.301094,6.0686,24.371689,25.638939,14.501965,1.6872257,37.67723,5.8614526,3.5782351,0.948283,17.438463,55.444366,2.7362902,5.9814906,5.227933,0.56265604,4.658259,58.347904,21.187613,3.4638224,18.385807,0.79508257,42.347694,86.11628,77.06706,1.781285,0.14854974,9.553765,0.5295815,69.65676,57.364555,5.0325875,39.64731,25.07408,5.607163,20.748363,11.8288,28.760033,2.9819953,15.78988,7.743943,14.861033,59.30681,13.47857,6.999072,16.638538,62.087563,58.683395,4.9983444,70.30877,13.797268,0.23285764,2.9951456,35.190334,27.154934,18.615826,3.1212423,16.90066,3.3258193,61.24581,2.6063197,1.8142531,1.064389,57.498215,61.444256,5.323335,23.415804,8.438969,33.83782,7.018134,28.367636,14.85265,26.868435,28.004856,9.201057,20.784704,23.254192,4.375083,6.240282,11.093504,47.65958,7.737157,7.161839,2.7116954,38.535397,4.618453,49.627342,50.84689,84.51801,6.863441,6.401591,9.928918,5.255395,46.52089,40.03925,2.3676307,11.784151,19.288565,0.14240284,18.631662,5.4442997,19.915808,22.601189,0.13632305,2.3024993,13.210869,2.7794151,20.486624,39.019028,7.8048005,8.576124,55.066082,4.4591355,89.22186,23.663963,49.600388,37.497505,3.8915002,1.3980305,6.1226726,68.9171,63.219166,67.342064,26.902393,0.7111599,53.52261,27.018602,61.547848,26.83494,18.070446,3.7258816,1.2644767,24.539642,41.66671,16.441484,17.914478,80.19415,29.334614,42.017338,21.374332,12.028426,8.594279,17.37133,48.689896,6.092466,70.82668,26.577908,8.780792,15.005612,59.934597,20.312515,4.355107,3.4888937,62.199795,7.7593827,62.63024,15.600585,27.735544,21.51671,13.602359,60.30312,20.563084,28.017548,7.330707,45.844673,1.3772382,2.7639236,9.320155,1.7928878,16.608816,60.73611,4.8616753,0.3562803,2.3694704,3.9548047,9.291068,16.978529,17.992758,33.947098,12.530255,0.20077053,13.214131,2.227096,5.552056,86.32238,3.7818878,11.679663,11.794471,1.9519726,20.689745,15.166603,22.132757,4.0246873,21.292728,6.1281247,77.96482,1.3367687,2.7611609,48.18907,66.10603,10.102387,14.317112,3.5063338,7.7663674,0.11992385,26.97568,44.207397,8.774541,0.8141669,13.228033,18.606392,9.334055,18.638344,26.010548,32.354713,18.857698,28.343151,62.734787,9.007691,12.917043,61.592495,23.206083,5.1750274,73.22663,48.79727,21.385923,19.791864,27.707102,2.4618895,48.75311,17.443605,35.067486,5.4536433,65.6203,9.157952,55.686188,27.656488,3.9813263,1.7827697,78.68487,23.5612,86.08593,5.1146126,69.39316,35.091057,62.065765,70.22431,2.6589017,23.578697,3.8156264,4.6141906,21.66173,7.5497804,38.651707,3.542354,59.222805,0.38988742,4.4822526,7.6768713,80.649155,8.21841,23.379648,0.12660035,6.074939,18.205967,6.2577734,18.150488,0.9909963,10.531363,7.45921,7.2641807,39.82111,6.2152505,62.69215,2.95212,21.136358,7.5251102,79.45438,10.692248,3.4076054,6.222114,21.294428,67.78173,2.3367462,11.445419,0.48891646,8.568404,36.807137,38.30374,14.682347,30.082333,40.08484,50.15561,8.823618,6.4530234,77.72415,6.162428,5.3638372,32.93498,1.747776,20.141447,97.84966,61.35991,25.382431,44.21241,4.1709857,29.202791,26.108076,36.950397,29.73043,81.49109,33.00584,22.078367,4.84595,25.820543,12.461024,4.2066765,40.590523,0.39528573,38.12049,2.6625285,8.436553,2.4769669,34.50129,24.351116,37.21883,2.0389102,12.242467,30.531685,0.53498083,10.33093,31.273188,2.0024025,6.5238175,33.3675,67.379944,3.318009,0.0047814837,1.0246143,3.3816636,18.92433,11.403859,23.534433,2.6790965,39.956703,0.07205914,0.54234713,71.95712,88.86247,0.36579362,5.708853,33.640022,2.6133723,2.6195853,18.532166,36.42509,6.5187426],"x":[72.6877798334347,6.02139225599595,49.75798856061105,12.221245333372298,15.947280388833606,32.38612821770269,84.46753178387469,50.699037387464365,95.77593888551455,53.77561693809725,6.146964631911489,2.8754923696475365,81.3446340797745,74.42972922113297,60.935218322859455,39.239645233921614,11.194658984516826,52.68693231565802,38.00651513452892,69.6396275619118,39.99023463713475,18.221719179469385,59.044216536331774,70.71938492877278,27.49234454489564,9.075045355121825,51.82700964172419,13.141867403738672,97.0287881089463,96.7946604006347,88.90126950723366,19.880022415686394,62.89661446226089,82.28676868343625,70.52514922709379,78.48958058850894,25.718698689371188,12.242119444713895,29.952633960685493,48.75184079871347,80.24889485283666,19.477632436690527,6.193087906886674,10.75521862723714,61.0519712707104,12.546884823260896,92.45867972123168,66.23878088588032,49.09699062151076,91.51686896370622,69.53235326873772,19.337509030137777,43.618552944309776,19.060805829753214,78.85758067883981,71.57813458669442,25.23669534642027,47.071663218532336,56.962587967464316,13.217616779218144,26.088209900702765,9.610565088621925,16.64308365299666,78.38739399163985,76.39814677393554,31.953463441115147,21.19097538803346,95.81559232689214,88.49427569936962,30.59030548862387,26.63443711014771,2.519016870133217,22.235471044655032,88.50167096286039,87.3508356128972,85.43040648838564,83.18226035796977,73.98486333101503,87.48755688605007,33.085041885081665,0.474478217884422,39.344036856314915,61.14724129371291,73.46529154923081,54.49705127761706,46.372604821650874,16.736323711032853,22.330905316072748,61.281480833511495,87.33189293058633,1.8296484072353736,79.72676459503768,7.754241489079572,40.18448831312923,5.966231176288583,94.95374389318236,34.69979383364723,74.7887495959844,33.893744731933296,64.26932644291202,41.33394866310779,64.72671481773556,97.97740037877732,7.536936498948532,24.239832810133954,72.09409528507325,75.8717586481137,75.19848396499769,25.95878290634055,10.128186941181095,41.74599416787059,45.152732727957314,53.88846231487744,8.098477322114771,35.1026312526711,98.23317237407694,73.68163613301381,76.85950858477204,12.413400302803613,49.39449937190445,53.73491457841701,84.5052047530421,21.155851081409992,99.92014248540721,2.376496596741151,24.094451114122496,23.878698945263878,42.31662316120883,32.72632414464341,10.254683591445113,67.22066975882686,45.19416973480552,46.38674943299532,54.356585950489425,54.938191349573884,45.91339605662069,57.410277299018084,54.639902649957115,25.059871086758356,9.230583717947027,0.6905693458926443,78.43040389661238,72.00345572263986,84.93559475507746,68.49389476087224,68.71510565908625,88.78185425546742,47.61089820812935,11.85220816731264,78.82237380803606,8.731873688257297,0.22906018770265657,93.67643375647648,9.43182903074452,91.50732307244198,84.80427164724827,5.089216632381821,40.468348660844846,75.37053328287048,36.879459226923615,80.59042608787944,67.61455354775772,96.08272987566193,49.92311903724126,52.83576865944549,1.342316975735025,11.232102715051118,51.135522682021296,61.22840956411846,40.38883603821062,72.82308117555691,76.35774338923225,51.47654347317003,43.884905999063136,65.59602284087138,95.31449143360632,12.517494216688052,28.683282359644878,84.6283321315541,72.13254313355891,7.540571046467425,39.83669692394146,71.87995990497488,70.58572689542625,27.722702108114138,7.770181891892758,74.75305883934519,59.493332881172414,48.529494752531676,1.441326073876159,95.43496173268018,93.81656400066859,55.330504240823764,88.43007985625114,42.18290869393195,81.64777484224854,94.25777216745922,50.192264963211585,10.0775810549513,33.6263366007194,82.84583434532642,72.38586730475062,91.19863368059107,83.28003497943828,50.44812526824553,29.11652855032797,81.53808427883935,63.61306905049066,5.793276739658082,57.2986884205394,92.53729736230916,13.87045523414403,8.349896922692002,47.661407700818856,2.078188654865376,71.54118489806135,19.998510603228425,96.56447446712907,4.545125668501127,83.44669778050304,39.64117206592742,37.304045932854976,60.344061867734176,12.680754024129936,33.50706900745688,37.762011743872414,40.168977155820585,94.2209278287735,62.182750366921724,97.34471312214626,21.33278613887708,57.11690816645151,75.70393224286143,22.04536855805187,97.96054471904112,81.41411971199925,50.53273872686751,88.8968690212096,23.707683152310942,30.460729001887444,7.3256444885719585,60.80319403313042,33.274167157256706,54.004533631287565,27.18958885643157,44.47519505145514,40.38083398379021,87.7522515967339,37.050121382802416,2.800765370203906,59.617837661047865,11.002188398915747,7.983374642993823,53.73303773890497,35.626872479625106,96.64131156340541,33.14688693002672,10.36088641091647,2.8075526851548904,45.4973868807029,32.385573603822806,84.62678628091585,16.380085511352817,16.705960725458667,66.81069475759203,58.58014266249998,76.26235115251939,29.85358365909111,54.29699162416479,59.55361729617512,17.785776358049578,67.27807277993719,34.54564256044156,16.035177249031673,15.7343411530249,60.871400543481066,54.748241864049554,17.203608541310842,15.098623043211123,55.81051051913051,33.91858220905035,60.09963770201712,81.94452294919432,71.48444726612408,9.349450247252344,97.56001243115499,38.52255987747413,80.21668627674356,7.050098984730724,64.87341838472305,98.8492408610543,35.54381147709522,69.7244481294506,73.10588273312682,41.199576977533816,88.17637649633025,21.489026913465725,59.288817884628465,49.41411048057456,21.488527978460315,61.37450183296006,86.30675762138719,99.84035468687318,0.5493247332226336,66.31631705687501,31.549938255769305,65.84980912662331,74.54963345574835,68.92468255349621,30.857883053938163,71.03116921695157,54.19831992029914,68.6937069288753,58.070089209132384,33.22605326898043,54.968179858160745,65.43897405919614,1.3412686795837847,96.88989563720084,29.14226889582505,21.184363037201727,2.7461390596395296,38.71328819514284,50.30836822181711,22.600075830519362,77.27730987469748,39.70806446823827,62.40357307261102,11.129932672346431,95.25017806056191,93.53186966412872,26.885653621523854,92.47263728607084,36.562139115325955,28.867243386748687,47.92229954043849,72.73769328483294,26.14695349006162,80.07779292498708,65.23842817032495,16.634241719195597,22.587157575881257,89.96155323595022,31.880504833497525,50.69084131481544,88.91898310444545,7.869989537546007,15.364192260406039,99.66208991858814,62.61830211663143,36.42861049352557,49.624321110669534,25.74578067397637,57.272529723891275,68.59262600136186,32.25237885921635,5.532015018310965,91.95836105614053,57.40405183293637,79.33532903073962,9.673823771077583,3.1152381894618886,33.98670856406745,63.74814661971463,27.614382849290276,37.241001756697734,10.609316871479091,53.50399855519664,3.6715959838024337,77.45014196034884,36.42616822841324,71.09064640357317,56.24738941865822,24.088626209347364,63.506178360705476,21.899178535791265,71.36378488386467,81.78077116025358,34.15125496883734,65.59221743968156,21.30652374757028,36.1369477447788,11.075473034987226,91.76762500038403,95.41130447380613,28.651346316461378,90.93719754307274,96.91182262354621,10.798962362862008,81.526394089209,55.58016628572141,35.60351714248002,91.2223860326123,6.206281782057365,75.07594330399301,19.734478420812827,57.67938054165151,19.704143793875794,35.45715769902012,71.1852732122849,31.49889436072574,76.06431123679546,6.427030636369668,17.923831823144088,5.106912972939048,16.707922960140355,12.928817559587436,64.74071505240978,51.24763373268543,33.006605499321395,90.41924212803234,16.22432552340275,11.952420082396731,82.20430085928967,17.04315472077351,32.445309617163154,82.02055441065338,41.76655531972436,54.275610112194364,24.17112239591677,91.82813267034443,88.89995241557818,29.017433544704485,22.44530586386765,97.06917758803138,28.616666224972718,11.125053757366965,10.783571105832056,30.472645491738437,39.847800817661785,31.336122922408883,41.82695662309596,26.554780439394953,77.1508699938333,52.294400956584056,43.50936777649379,89.37188027531646,39.03190337716948,17.435353035779954,71.60825259215915,77.81958893187455,6.703657812216823,86.76964609281677,18.38971234581147,92.00189580275882,52.575244798760615,6.554221070628053,48.46948559410599,14.248810766256792,8.043126050892745,10.871326416833437,12.592333819661562,95.77933435373863,92.80942879978181,78.57475472190025,87.57398257086408,23.786002149951948,46.48693700356576,31.081177950765525,42.26925686484623,99.77667605361327,37.18651683987208,10.01199021354504,96.92932348006417,76.12900522711632,8.016560554495078,93.50244811697085,78.91082344654143,71.88578373378854,99.21506093663812,14.513496871322983,70.1901154840361,76.50195454111014,79.10928316251817,39.71805706389488,48.01108517955102,62.34594358502202,36.28551254217724,97.05234250435758,78.89237666017358,27.43312897875373,33.7259336877649,71.7960006819682,63.748977698683774,5.821902255073253,24.44834300638292,86.38086734026001,58.36529139977622,81.51399806152774,25.563824320595153,40.53324262889154,39.0594476219972,94.5396833288678,11.655337866825278,77.23150374151533,71.03721167113466,29.071122681641537,95.12918331802526,46.549205639103455,20.43804263875193,75.5583924959673,58.43148632543246,41.64826393819215,60.48805276283154,44.39460673126949,66.90171333866203,43.74286974251586,37.278445846367056,7.625928819649963,1.8401827299228124,6.935213266524132,25.349336426359592,18.946028567536132,59.94016706121531,76.18023022360785,1.162585976609487,31.86367893284654,56.52463517846004,76.71165766856953,46.55847607973761,93.00052168129676,20.091092582413005,83.42939542099164,16.364431642732335,66.43774805266605,43.180541507970204,42.605563812897394,27.80652588379715,65.8704112386779,95.487459267371,30.018842100191456,32.12829163786422,33.10876871652154,17.30652203120937,78.08503791479566,42.49612928336245,24.13039772462845,72.54883926297228,93.82371623201449,77.36867360576191,55.66865098446024,26.72670263671738,21.174798100501548,5.752257542579631,79.10694257799896,0.691475575661904,73.27758414840501,11.78665133968405,37.458368165922536,95.45880681105866,23.511254876518706,26.29248091358415,74.4081303076322,6.890693301798601,48.885507156633366,79.02762791757264,23.924380382608625,64.47663749222784,31.74262203586902,53.290987102148115,37.86833109705652,78.77570831480784,50.28737571425591,44.85952601829955,19.020257345044676,46.67831966413887,86.22926404223593,35.626137160413194,99.30014775192049,83.74669825170865,49.78346933084972,26.967364563600793,50.65465627087852,78.21707580020544,56.129061184949656,53.91775047518445,52.36022032969656,21.39765266007747,15.975642249973054,11.059554951060768,6.54431022859896,44.77896003388796,53.81650775868337,20.13247205587646,97.4118563071757,69.89746157841314,16.10760416945225,60.60809211917434,97.6972690213889,6.375466036202393,55.02263314374959,13.97539293846325,70.96459792669818,83.02258083603185,13.115393034016165,38.502574359511165,36.882302261222996,17.742292255663273,54.98532548738076,9.020791720242293,86.05014547143674,67.51126152901247,65.01393548891201,3.6972750476289784,25.71950404368777,52.78290801640041,29.840614149004953,25.63912542082656,69.6912779417564,33.04306092601892,64.16782528780224,13.25236857682891,58.520813780642946,65.37905557615453,72.26677865388537,11.20205142283125,33.03807918411261,65.92771312902141,83.868529869661,62.296532205527114,81.00810910796537,64.5803119594458,88.96670204083289,51.5664170737968,90.96816964533527,30.19425650026998,85.05252128015141,26.027059991929,10.867355364543652,3.6633123792011,73.36252304121831,63.02463584476258,53.2793640947755,24.81177293809208,53.716485153977835,52.78602365702518,84.36958488410666,96.58669266135402,99.28870218785805,94.84922218240456,48.85823439913517,66.76115608127846,0.9726883513379803,52.28975995247333,84.53196142796335,85.40911752404713,25.483727818816305,83.72297852578536,18.57977512311175,73.90783501088657,96.26435740938575,7.7370402617008,84.55605686008924,14.969074250460102,20.07314383482608,76.58193535540508,20.28548527470231,50.97889901605661,66.36850436126915,80.51058891485916,90.24933490355707,3.3786620856416483,66.04105589998785,51.94593269481116,93.13245672424101,41.173414024604284,7.111175577238537,50.12181729659944,2.13280536353454,91.68021548532701,16.184729923992723,55.62720455038139,83.33147314969509,93.45432156464057,79.77650538480671,72.99903704565985,16.59976551542597,21.80359564708656,49.758072662324984,69.54162247835598,62.43011321013866,44.00355931069755,29.867152064426584,97.40959654176008,72.35417281299394,67.64051688014318,2.439978536233489,98.68265667911487,88.72422435335137,40.64105224519766,79.94952604598939,82.12616928440887,96.91839766108974,50.90458446856353,31.6337404299848,71.44359345658106,19.51976726399913,49.495026373697804,56.26961862943737,20.37439491414417,6.228450632577831,81.47757460751092,87.98473351621902,17.2916455588064,83.86647174815069,23.5341850147304,58.47848437640146,89.28915339677123,54.42881402323301,67.87576793453273,12.102067282710161,58.30828668251562,7.70851929324432,39.030373208572186,63.979296431773314,81.37679934312379,28.31110647760471,31.757957803617785,74.8600051620956,74.88052880200732,52.99280542186735,21.062395694022484,94.97921204281076,58.05116622858071,6.500222597093641,99.29482453155318,65.71804231976019,2.8695287573104022,25.252496939556945,44.244558922615504,7.879247062323625,83.97805935947954,83.24785117670575,39.332482952756045,64.81887709341805,54.23541720727568,18.283194896096376,84.96933308838526,77.80466950145092,33.30522721628785,89.08087916979946,61.660736807445325,10.846198037206223,45.809550674897494,49.02524407538403,27.571829821267325,98.45327871457485,35.658397288729084,15.110091016300075,15.798516102779347,16.476439996894644,36.73004813460561,40.95134089808281,6.239686200576888,50.48553889858426,63.94069406076598,94.47068306509614,16.15212659335892,92.69956414386026,93.95763252308178,43.87794233152685,55.42491874742311,73.29064685674776,20.474571326114543,29.87830966249856,7.127695622405472,27.87140056443921,70.38099536350065,64.50723519294009,73.10796899653995,75.38019744805023,62.50908784745188,35.70108322326462,27.92628282820162,48.84091734771534,63.26360234022408,92.23069770505705,85.85730375484141,30.344137032823305,25.309411786564308,64.65398567743458,52.04558825179634,19.49586278713046,11.216684795452759,87.50431808273225,62.04605284371758,10.705346042785058,97.61322091036524,18.465402202790237,2.280396462455514,74.45812751514983,67.00304571487024,81.38399828703375,51.72541826699237,57.606635020976384,68.58827566160706,36.037461228042865,78.16795812646704,48.3425126535718,72.14711975445934,51.85479107912649,89.9195378240276,26.18194054516716,22.022575286626722,36.7668974297759,61.701557292353094,98.3406815189927,43.763516535110135,43.09520336129913,17.190583702836783,89.20548828228459,47.63973266982323,23.47127992542497,72.64414748027941,14.225940487508382,14.164465758408785,68.42768917044518,49.5390766160997,75.95330689363134,57.69684457488832,13.537900542145941,51.13590496903081,93.96412526167907,46.978807492215694,39.024487830717625,84.10834680281518,71.7661105181497,49.83572825086588,18.218389970941963,39.41731502943424,47.15657105520744,21.090704847158793,77.08972555683168,57.30112757129814,89.57636251169929,71.2304360681151,98.11004298649955,59.601280631540895,71.92978134224144,52.10287895216471,88.33509712255014,38.761029584572285,6.721971509650326,53.374478337462136,79.57980340255601,40.33979905743587,24.503695568023897,32.64976807669805,75.00979124501293,64.21169278516207,74.20524446874025,1.9274522173184039,15.753219510002914,62.29118157225145,76.65069610936901,42.902085840487416,53.99240398738058,63.70190656810417,40.919349925430794,58.91331572714639,65.27685372118813,80.54934488682377,21.704498417497764,86.09453989787302,54.94342896424983,43.490615806180344,18.449243543368045,14.616247576000108,81.81194309945735,70.52997180226816,20.734446884432934,51.24596220829656,67.10713188126152,77.5367335107837,45.09383909301079,59.41494182722343,56.232495441224565,46.1060787521408,13.974869416170332,34.41763780332422,93.17971580206039,10.791212248197112,4.708718277404078,78.36760863556846,7.196693560879863,76.97130429821428,15.802666659864695,81.86722966018559,58.786449617805125,41.79376230993172,8.299263069459029,32.891156195194014,72.14151673440777,85.31285192053242,75.30662555336161,58.80106865679219,85.88116598059146,7.9590316374443475,55.24676325169092,66.92903859067155,97.86336947481593,15.623008297267537,0.5719798852600433,54.66739070129067,67.45353352193372,42.38464080064149,99.57268209829677,33.00539672853006,2.785323527842909,83.17242187528502,61.35472147258297,3.0132407699793085,17.791193530294358,24.802891179688647,11.767591921768528,59.6711723257514,58.9322923056669,62.970928789558776,63.436362713148576,72.08905262379938,6.48810909732509,42.889691322328225,51.262327138734896,34.72994522681494,4.947483680840836,73.77593316497585,8.08454193240089,53.358963678477366,59.297116544389816,19.178325762036586,63.02747816889518,65.16460521054086,72.38138239079301,5.573082760383141,28.6154468919113,17.43671338888587,33.88391936167484,85.14438528498509,43.15831449720322,57.56253194411218,4.198815673566225,83.22193190357304,30.682879449667766,71.38770037801517,95.65205756100052,68.53478589871732,56.14150218584362,54.52363022709083,50.94301243447277,53.18747765884842,45.52145479972717,34.2127701970842,87.73675697381832,10.202657472931431,63.864633811731096,77.87419375093266,31.35872697586314,55.83627964623196,72.55197228583926,3.5608681659397567,91.7968726868872,45.30127315731788,52.77380367371206,78.66621550797183,44.272602219360756,14.093251810517305,11.948985731809037,83.07187241280248,42.9192249573838,54.396035632972506,29.742361447238174,21.432513467374616,88.16204944191186,9.809533778578395,22.796208352231517,36.699031469075486,2.210379915255578,9.827799029847206,10.902898330157463,15.888330819997288,8.81183221859282,93.74786160841678,40.08793400064212,63.89327656732551,59.11025068021974,97.5447096665145,53.422837890170605,16.05289177229401,23.219164385609748,85.53433907070475,17.22231638883255,65.07041430902633,56.70207093502281,83.519909467308,95.54701247990025,4.654024542311519,21.00868541258325,98.75926608550157,18.02063579668659,22.81805293372765,6.118332808947679,15.800673519273667,44.03615957210349,68.57982469225841,18.893703217968227,63.60332275785352,13.199458865993707,32.822242643238816,98.2621500614907,74.9081912945074,75.84793215522386,96.43444149484284,58.67965676958574,38.27816403637216,39.19018648004364,75.44817009486718,84.8615765979825,68.8868020090493,29.198435346760775,15.329221217945555,91.52880548495624,90.88764196945903,82.12394460843244,1.414512040817062,76.56075747921395,16.80957827260037,82.85915577659573,45.837550819793336,73.62401081656546,71.6689750195079,50.228043186611856,47.27632649375938,68.71404536182382,59.173461581872836,68.68740347600996,98.18353924493917,56.07227004962392,53.351669349459506,85.62635828004457,81.05596922916627,52.53955847919967,97.46755708693742,65.43425151044563,51.78425082390904,1.422350037128628,12.49034694971396,40.082406493103164,75.21526501395012,89.53122161946008,1.9178424484770251,12.203244187206808,19.635814198000656,62.11084391827979,85.11183605130168,96.7588683273359,32.10131479753059,12.880589063491854,64.5029220188759,82.1890743608491,85.50975570031596,96.87796010724277,48.86568264962666,77.05796861244974,33.58954142328089,53.677605617043376,64.69395937566847,15.411545130680482,27.003535782847354,80.94783815257505,42.52632026014611,11.053513861203601,17.214916849821083,53.03456791889486,92.51287942568041,80.54544354101853,73.81343615138397,29.1080963187595,19.554062457115716,22.320563260802473,21.43335707738042,12.640217744803051,11.724365039778995,83.36817739273748,2.079382575746247,25.883339382024605,34.7315528619125,22.098192208780265,43.42115260255216,37.075297797246044,82.46146361388051,20.94541487773788,40.08374641914455,49.75228045801347,95.62020338870082,3.5030023979077063,77.65909451676296,22.363202142944914,38.33761842027648,37.754767138117806,48.921860411545204,42.69333110108088,0.09675292432430593,39.249861152948725,51.956533628679416,77.16723876098027,28.784982823395588,2.6896329896996196,48.09752094675844,67.95178763419618,99.44381870358121,84.33169069848675,59.179519318252424,83.18161433924155,7.265798813773605,36.50497733946983,93.97828758646419,69.5467482382851,41.56227363928118,43.892149596770636,9.024291322766665,82.28038614571933,6.470098656963508,84.08461775400151,76.44876195120695,75.4665593195428,27.280862846591237,61.88573983053852,99.70276207533362,70.70489453512998,77.59507291116887,11.042770300868487,76.4735526697278,17.942420069845312,16.021097311980114,31.573052974260474,88.23063277398285,51.696644602684174,44.59611823308225,30.720750824352006,36.246932886222936,26.918312356883256,4.2029569056136085,76.52663034660578,61.57012748671165,84.55008015640838,88.33230886412011,17.13669892974806,85.12174587050596,73.44799114087715,21.440664434717462,50.14462850950549,27.702090252624203,77.08486863166675,17.921260964150864,91.4316535645565,74.68565526806273,71.50482562858053,48.873246184999495,59.6738436754817,1.6215530878540774,29.425237886194576,70.86734535472002,95.51205147445543,91.5573290261374,84.98181957555356,62.99944499697475,26.549990724965923,88.56198673374772,62.32994417771963,16.843357046345687,28.555571320039896,5.165272355255324,2.820104533479695,73.71652177049768,6.990511828265089,95.90593596131147,3.711638163561959,96.25854679970487,42.1317586390439,95.60812554829768,32.2975868034177,72.85054131265164,79.22949180236972,81.6167357264,33.19659636344645,57.29674303147737,27.532065224129198,51.844260485848636,5.201068087364902,14.329556977638468,42.22272622207094,99.24850972762634,41.01851122188363,40.73391481363351,21.031215721749675,59.93641337955001,61.84192518743914,36.33119430878467,20.73582192143688,34.58488060085099,65.02061983396035,33.16382594779282,59.0748210410752,1.1094603590448782,21.28571662396802,81.02760181166751,50.482396074644655,93.78489105117612,40.179990782070455,65.08511977024531,50.59563775539322,70.1982924744897,17.09672410424371,98.95356539642812,26.310740167684465,60.016296733023076,79.53585411143314,53.41790434210968,46.664808201627174,86.27922436703162,18.41675909587728,9.737617441078939,28.078742684030665,44.15507950697483,71.64720611304189,62.02906558965589,33.68409404181314,6.008276787662603,59.79279826475859,39.04507559497583,8.220021253697086,26.960978447411744,14.745094510658364,33.52516455036497,54.65420115542447,68.7854525852298,35.84782828822025,72.95317004942324,20.6931614480361,58.43238921225146,3.4124191870478215,5.301407000394464,48.60371980284486,75.03809397882485,48.931340387273295,63.620323147637116,84.90475840008936,97.45925045628758,21.655121887046402,96.82514395302731,11.869674132168562,4.464158114698435,0.7305914065365071,42.96378147823589,11.545901329131025,56.0241176900813,51.430784437286306,66.81420798259629,72.165627546742,41.273136546885524,44.97021099625405,63.32200260854817,23.243826033968073,84.26374512060173,62.311358970435315,71.21817328678914,10.533596686584945,71.65042101167919,13.672867867877624,19.72340169330944,63.482456278905076,27.170049923203198,41.599659639195586,94.95560580466375,69.47750673474047,54.43279453849772,79.78584838946313,41.25941393554109,22.95819929748094,90.1531340138672,69.78942324941454,31.26486082725648,93.62409739819583,41.26850592166854,95.62383238084051,46.31593062478334,21.29673097927932,93.03591191620694,15.759970545011548,81.5389869921679,7.215002567852091,76.30955288099747,19.518905131939746,91.57445201662796,94.38532036124903,40.691764689409574,43.95023495189987,83.08431816478475,23.37676860167528,72.81788463012411,20.456690932577114,70.44057207457243,85.51043917221787,80.57125267299584,77.69060343593833,35.45526879563686,91.30616191683463,86.98805132561371,15.584396491081954,76.23302421445939,55.92562696824791,69.07480771031072,66.6206923708056,28.4934621733008,87.43185528186045,22.063666976980546,16.139430507043105,0.6964743969212539,32.16021851695391,27.073393393712188,1.6144823337876368,50.58699275593913,61.6499110909704,24.330130251162487,19.709182241524015,13.400081376303852,13.827331741816874,56.24464260471855,62.514775697089384,26.086098788045142,34.49396137086893,27.48488116393859,66.34319387277216,0.561895222591946,59.19706609334414,21.244165632879874,80.35042129517572,46.88926730825577,92.9957401919814,89.1007281017737,21.306717429143475,80.15332364280712,81.33081045989101,70.76937873060669,80.37024613015048,42.248125463647554,36.46783622618164,55.44973804401897,69.08733726338238,76.91017982800138,94.56515800153042,83.67678267860234,81.80126874631016,81.38153008525332,15.291718247930497,25.018362158074325,59.507005513524625,9.266859899937641,66.16657423644385,15.72894415728131,36.989556052220486,68.17011720261864,93.28512493137985,31.150142690794922,69.01728322834998,55.513364323972525,5.606273525905525,76.0225753640259,97.7492723971681,27.3994845229249,75.95362332489961,15.737797082284033,16.26189315265224,19.749705303467312,18.797857468880697,97.77771328567542,7.171684533475641,86.61767936051665,19.57311633779669,9.842637457740489,26.284763099524543,75.47370763098506,34.29673643105622,71.26534860351244,41.270208288436386,30.98210040770991,68.90767391010941,20.558452426700434,78.10446251405104,53.297473054162644,86.37092902110744,70.0410218978645,51.172690658107356,53.94642343053302,91.4554992792714,5.864905178324486,58.00210401329954,69.499850231886,68.19807495051313,63.1391626138003,51.71309988709499,66.47185712518113,94.34829819499139,93.04989193062674,11.621516445989421,84.93234683447062,64.07157890130915,96.78000464811045,13.744496141329698,67.5988544917838,36.30846376050138,87.17304337804443,75.26736208249605,85.50923740442286,35.958119750227446,41.586829088397735,78.24288549883133,76.19048392425319,71.2039952353237,88.99579558573495,51.1284003326935,23.799951171100453,73.56101099551134,14.244795511347597,46.844664534776925,58.72732591979754,62.168916174876976,17.228783369556368,63.70071152459958,91.12024078674918,62.40960161228063,46.22879598963324,84.95299143697852,18.359788246195386,0.7607697066831731,29.792174490329003,49.39029048971799,0.6751086266914563,18.25744443102071,25.67920625390756,69.69437428603689,37.74492643560997,5.026854186099006,45.86072687270687,98.7741729281448,92.80443832934026,44.95747433601951,42.594171527232206,25.56776536225214,36.60562714199986,49.64695965749078,67.54485266412811,63.359548466087915,10.651504170885296,94.89783587476602,1.1802024605257477,22.373371800036466,52.487797414338964,41.66127276227092,77.81275502926417,97.766120493104,24.30501451170478,65.02807552512292,87.28024727027443,93.29157249483269,62.214028639642514,9.013125119774312,50.574529330408616,70.39332356071247,49.73671418598112,6.389225976697044,82.15560717507033,88.84383031825197,16.595921729976936,53.88580348178107,39.57047915056885,33.73125538386545,44.7215253683577,87.29601689992246,96.11900166095288,10.166486859996404,59.76621377943183,87.77690396315239,39.300142186473295,91.97000018575491,97.35025484486417,37.44103874098553,75.76558253072886,5.0117319265134626,76.59921018202337,12.02084298743885,46.024044125847574,64.52891623953116,97.19803919501187,29.474744265872665,62.172203407994054,41.48415583549271,8.89439665341344,42.4301784960242,84.29821811090689,66.62529894747921,83.78981292133605,14.608275892032907,31.314997234192266,43.90509080721004,3.7114266053794642,1.2186350825468928,98.52925700888542,85.12454765277421,93.2490807948236,31.786974752150797,42.72507433385358,38.677515475726324,11.846832773507455,34.849663067986526,62.534385362184,21.38490070547212,50.87584306791696,49.82026205574696,18.551636880434785,47.374280213155814,30.3910735837848,77.09279746434513,68.2459757400983,85.07649683555341,7.779663546721438,53.403857805134244,13.683602472566292,82.24780572332739,91.29983058237784,24.79801488893739,51.793581192326585,6.435786491156259,64.45382998769945,47.63125706294954,70.81630127908583,73.13242255836224,32.051369805924615,49.74873707190047,54.846750075558106,82.14310653633666,97.62997301846765,22.463005803292745,50.47811124158964,55.32788358792714,52.83473045204477,26.235433064567147,35.391270349927716,56.48073569789054,70.7549796031394,77.9106956086983,10.28026336263882,76.45975234536702,67.10666359270158,64.12929870382135,52.380759437325686,23.75983390376737,4.274338102288866,62.548471825068056,3.964943094997442,84.27980797719711,1.8274495662849666,31.913215526876858,11.429414754331379,58.23457090797864,7.851614379408344,13.302060065142019,67.27404859115643,91.02535011957201,0.27843784847110253,37.65290187804775,23.132440919212073,2.69559979169951,81.55198552944434,33.016051855217476,3.064618480000858,23.377613716588375,41.44820643426526,94.71926151181519,14.347786938840457,49.034422060424376,38.01998120769036,33.111815586019,30.580646339542206,41.93262375271301,68.8830439128095,73.10025339543182,62.74899317591371,48.681631188750885,82.14774449524468,6.648994097858862,41.30465910140434,70.11246548208486,46.09167337329342,0.5392579160281907,91.36567988195034,64.00375341287564,89.5743778592032,24.852693850158968,9.146732316842998,87.86172828875665,77.1007039002755,82.83188933365672,72.18550024150716,53.83776868183517,4.790768816962254,45.077541379857585,14.702295000724197,62.851391828018656,78.94085290846607,73.27683024614939,62.09415163538768,38.62363116050803,35.267195837251975,35.6759438282965,46.459342114686905,35.74889240995019,28.866681673098437,87.74728073905976,62.64919954133211,66.34293983077909,87.76116877972542,98.59557867391223,53.4174560455065,35.03416528330978,44.964054435964506,29.579869827146766,31.85846698513415,24.136883876189717,96.05172479135817,64.84290941789301,32.0933411933306,5.372136227790747,29.157002096051333,46.01924851581748,26.233908364113624,24.06422060905904,15.67400437078118,58.887025195963346,75.81414053056123,48.688665545535734,14.2728326327741,76.23669737275613,52.11849711141843,65.37053027555424,35.280238263181765,57.942258367584586,88.57288724627402,45.32920789810066,66.38128435699313,50.32614258355801,80.53793470119115,50.16237094827755,57.85494773612769,22.499962741207913,31.002760538256712,27.13192510223392,83.51606320399794,35.136995916699455,24.977871967826815,39.14725095930366,69.97428706004496,25.438105333591533,88.01752819733838,5.682057122404105,6.137545651711617,22.417874404338345,82.79187534359255,79.08776801023191,51.964608388936895,50.77791846237434,28.757045526192783,72.87067672649606,78.17163992834053,51.71708751157106,51.06057909448539,35.61219887325701,27.662334407822065,91.27665838653876,81.74500227523708,47.545996952031174,82.25498255789317,94.9412330574955,84.20479776601971,77.02567984864201,56.08819546570389,98.4460016502803,55.7131188863497,8.111761665318806,24.823114465807038,51.35215796882451,47.01762405684428,3.6094700507524724,84.31954243843991,7.815437526614666,43.47938537486764,38.468172352690644,64.53093458233154,98.98286314746169,92.25697285102196,95.41849856315778,25.421272459872345,85.93076985220787,76.37913955793367,2.4708927154932447,79.36556036103035,20.784542193503817,72.015556066215,68.41578856214177,62.22265328146729,99.79447403520028,39.17409426248557,65.22633351715064,9.526304042007927,59.31144702681818,65.99709074251928,3.621772321342742,39.57747818751418,60.4985975752791,22.808685383829154,97.84377743832884,8.775111732483577,50.09737583033067,42.525556419829634,29.493517925735148,21.973022024432677,5.568065641605868,70.81636669271036,8.996244564518419,27.935686888487943,92.59879320603609,58.7815298592435,79.2764887829742,17.014155515642372,20.235568042310092,50.167467269826375,76.03670991795677,62.30784948295898,2.760278211518219,91.36775983520667,8.888322779683289,87.1323125550473,66.12275076584572,29.06139982667586,33.86011897772039,82.98056075392877,28.611176996638555,78.35408794967412,13.462122499913464,28.485999222468905,40.30333741621887,57.75880339050799,72.84576017413731,28.56383618744095,83.84674498881118,7.620476487192085,96.10478619879389,76.95082347026664,78.4178386202198,91.75570850685862,3.3725081967183934,56.24516409462721,21.087758425211987,43.72860869058637,14.413492821493312,45.529207238195646,4.336011535098083,2.0092984408711656,27.41626262717779,98.92158081931738,63.59798514461657,12.991687098684334,69.45496095456802,7.79792184032071,57.267604671056894,33.483639880060814,44.950264804875495,74.01097537890854,62.22083070709827,62.633484284970976,18.52656415406195,13.731752829306087,12.077967652112209,4.225684305473331,68.5508902172241,17.839104120558513,81.43236461113858,64.00366226783457,73.67390148375324,30.04838836118957,85.16410086402064,58.05126464923374,52.38802800062695,76.18165570364248,63.943391102132516,98.68114431957852,35.29682406013421,50.44669772660752,63.493059140231765,86.139994711832,73.00100252807741,60.33273254648934,17.203908896034314,37.44632287495598,68.16871436501053,88.03957151355884,93.82895929520045,32.19847847169643,15.89064694333777,39.488882800311984,9.913952659595559,67.02948680134415,56.301153522311466,78.06977224076384,2.2151055494839533,24.576535715643022,51.61504293060316,0.043649173720294865,33.32864295643761,53.69644933699944,67.58190062495946,49.772985689793295,15.569475356646766,73.18057128806653,11.499902354291258,12.072123417972215,12.283865724994737,74.40024189252594,3.952448523208707,81.7936618644907,79.48589750227356,44.283700701932794,12.218646726135363,17.286404771480647,79.43891175472278,98.43734968688516,36.08660741967199,15.465169153461888,49.65636554644163,23.484842762720515,34.16966988567927,99.73647527049958,90.07930209956932,68.15886544817114,69.06822642852295,29.275400911945237,23.89116823674633,30.69715485061204,2.93092502099761,1.6962922220315257,9.724776929276292,32.3381468140445,71.27392453778124,77.38382375638525,10.009907785779093,35.76238117799622,97.89310742108891,10.27582988821748,19.332226653979344,59.758312953650886,25.12032396322802,85.73484604628844,29.236073338009405,75.61240050726478,69.26572749624826,75.23463564630737,48.67051908830958,10.207163630827132,15.033830201357102,6.027252807834859,54.37360125900589,75.63414405564612,75.66548827880935,1.3354955772477917,31.430058738217724,83.02533310538313,15.591849532636658,36.95720826009605,65.98442221930463,42.59802755492991,12.252398888853744,92.3142207175084,62.862269605620014,1.4410789049677741,39.81881174655122,93.9373533428998,1.2763593973398435,26.77950441125724,12.966894632450298,74.86718735394219,34.060731760570384,75.2048566517006,78.43406610167258,27.68257896140147,13.54709999204845,5.211320652414586,37.19156904906996,4.226500371075637,62.70058122239324,77.55051395749952,80.90836316523111,36.24305795724314,56.203297540907,21.6834244544164,24.460604406638087,22.12083034963861,28.249201098650467,24.027881945864838,71.43288079938769,87.36252721125716,82.26059206932615,86.9521540292477,26.101843354310528,40.365997782252414,54.115607132977786,6.747805405088814,93.83006929051379,31.751923007555938,45.86991624200881,38.933692633099646,85.06537284087194,41.82876027619703,46.84162250838075,1.8339083390229272,2.828914729839116,24.734876234964453,8.062686272586127,8.81019173575216,62.9900229264151,55.672562061915784,53.562969104472394,75.4858152422334,33.721863965524044,70.98680865020019,6.599795186777547,13.286359176333807,33.13621840667273,36.43602434507913,60.97299193540942,62.26388576100492,77.17474813318248,7.098082964861829,18.245243126539723,14.281547916771242,29.485006578730644,32.235164224092536,81.60330889552215,77.80684148314421,28.033974551994866,17.051615396413457,64.00152954903893,49.948634431668935,98.5778688091234,9.770935454242192,67.88019823850996,9.779594853162877,30.13599060256866,49.39001465072672,32.466932912815174,70.71270260745676,97.48779991868481,79.56758962497152,78.52336123045846,5.46105971273777,64.57886632527756,24.709979489226086,41.554932642394235,28.63407006201857,2.1215139726108334,94.93550000409076,83.9568522938485,47.59643855947385,41.25761399415855,97.0831657189901,66.23421299840601,62.35186812637829,32.010738461149714,15.546830577948679,40.64981944988681,37.7129379131388,91.50661517271433,99.3192017243712,0.04294668915697519,41.84946569440153,9.079032380877406,0.6797181338576541,58.096295465098734,90.80528314433944,43.24271036344523,30.28664567734809,33.0146567863423,80.31165025700442,64.9852234599906,28.589662469294417,91.47573157803103,40.26993761791464,68.7947812769929,35.3006630406191,16.316290883537942,50.71933271725707,41.34034959647216,94.73247181277594,36.490852314294045,52.39749097838835,37.13701990929882,4.8897305279312135,64.77390823954057,68.65107996926832,45.34487138172545,41.03071186805701,0.33073747708980417,22.56993955376081,55.49443591437663,75.98749650903092,14.449889369253398,73.07312323270526,40.32668281683859,11.838845415821131,11.58798334025024,19.43500786095863,60.19213798496095,67.82023377524885,75.4330545170735,81.74188306634359,1.8506164307742212,53.38530966945155,58.02643329971555,1.2326021753031102,27.90395350841772,98.92100127462608,32.28097272164071,38.42727161311009,37.919816963845854,15.901162206601317,28.743437084671765,19.36716224526992,43.09868996322482,0.06330651929252751,86.2220427498825,93.26321279525249,80.717255031618,13.924249974469404,60.22133676028005,17.611696767249498,33.75376757066931,16.86419718095742,6.459541396476043,5.842037123582278,56.68981246847472,92.77525212476509,27.111460023883016,95.8843767749897,34.184777040438405,97.09734662182626,14.0199592752553,45.64094646974147,36.23994690587431,90.68391132365531,95.48717079307463,19.24805143093896,78.65507026189069,87.27824547355203,92.22747716345235,32.23425351706154,2.5136938671101783,40.44406531594613,63.08238459910028,40.03772456425479,23.96419190756842,29.122417667611543,31.341261418913213,47.8183961850691,96.23960402441311,58.65797639930979,78.47439998238922,92.90608400955065,69.74410204856844,87.1045232616483,11.114550138557021,73.50427126346462,11.512212460664273,83.12916514801695,12.39449190251639,48.04463035685501,93.59298012589718,46.851211083343216,84.5209392353844,92.94387225632033,96.88586873585031,23.87296734544818,58.874921327669895,90.3700369725765,47.32107271813112,23.884872635169398,76.16121663247719,50.57389154382924,40.5842713784994,90.16919059707838,33.859197863178025,30.588779567829405,58.53559759784686,89.72355496138891,36.62909011405942,61.83400544094364,32.901755178681846,53.2405781866809,96.0005375643756,58.65991059273665,72.93981312722543,20.379581033476246,10.460119518724431,49.35765272057113,8.68522338137957,19.229281277733044,0.6559573728010637,29.067272232104035,11.102363812876948,83.51826288215588,56.8068835027698,88.52607919997335,96.61448891930083,20.171991531007873,35.71292994311652,26.035067902535303,58.85643960818182,15.052455144380627,0.5498023469336033,11.105654703401758,13.972522777048324,52.12531399835956,83.35864992464957,55.775982943945394,71.21760396819103,45.33025764895554,25.064405306536962,85.90058517915774,12.805859924081474,76.8302478642122,4.987805526412048,59.01928955957077,56.731557096226084,24.21000643644069,20.01788151846149,84.92764211654705,66.34400523994864,70.09532878444479,84.97100791730053,68.82045180620217,31.47533261073885,99.36365023339438,10.04275984779448,29.651270904125347,2.2938676593071805,96.14780569433363,24.86556344982973,23.99781347583263,75.95316126873901,33.50852915562184,87.91888335468913,25.985577765496448,85.06277308772869,77.87464563857928,59.62645856414637,92.84721034425704,13.745563028149189,79.3883205949241,85.80613363386016,21.13080766517085,36.158295916013785,55.31930757473972,2.9205011079587173,94.12109532832574,50.182081871876996,1.2277017099473264,50.1088788951075,97.9072618462853,91.04324235247067,55.79781840570616,4.8886142917843545,38.842429303626034,54.780873739522384,62.10636707815029,83.24075272221314,56.09603194923935,6.906443755343428,94.76589267338211,77.37437308715897,59.132957083328364,69.1232218700014,5.481870269592893,10.247242101977461,89.72959910076138,25.037960552080474,95.36890447829546,48.26827448145829,29.026925178842067,4.267816033160143,52.646234205127506,6.590086677823703,58.37928251883305,10.754644996550367,47.95194598174489,67.61212529325691,68.31917703316387,40.04190545454725,9.762332399606466,36.83798491584995,5.614994290056819,63.84916117220182,47.94095925655739,98.18368181747445,94.19240008936812,78.13729896572062,59.78126718315999,30.1585540652221,3.8476286001119298,53.60166648775066,85.32676016484291,18.829163530507053,95.29649877948626,33.85569810225479,18.532856719827695,81.86170316857296,95.0382899972915,87.0321456436138,28.33587713398512,4.6285224751808745,44.5181877236646,75.24930696195645,87.08400550178769,11.501862104713013,30.524822185207377,9.187930024053259,16.288153672083084,60.09890409461386,53.709012823958425,35.75996340660902,22.533427909579196,60.835251977088845,57.78543641968271,48.806522743648706,29.210013461608362,39.67960604097107,79.18485515047496,39.857173607815646,12.210786312415767,94.91797376508076,56.773769656358176,46.72577129285166,5.587112711792752,60.99568821164173,76.80556082637061,3.5124908301344515,7.3058751404043605,7.574883435058865,62.89879111258529,43.41327026532309,16.252721736148533,54.01200921504289,10.835540826723221,90.36897893443837,77.75341245770596,50.22483129375461,62.47840688586721,80.58642064302533,6.5620382294531705,90.99221639554236,6.222362226873546,34.57991845120502,5.767692157651916,41.844267672445554,55.06077596188037,34.71541686132411,14.797718202180254,62.03749735266262,90.67652586423584,30.51423292754517,38.70886943784644,95.42697998225181,34.350694974530924,35.76295089008528,9.014760164012392,83.0992927604281,37.07821176797378,40.00110145101189,48.738162845998545,17.786464637319412,82.91477875483942,87.6705012102262,10.087064904441734,48.496805327386674,77.75910439739548,32.81327163076926,34.719851873455035,23.114556139171004,80.66119848946451,4.66783234834457,24.939818469654472,97.3300944115459,42.84420126546499,13.786895042639513,61.96429539692437,45.25176048287665,40.948180941316316,62.81888121370063,22.34997379702922,7.137726641827291,2.942952670510579,57.67665813282802,53.23461291562431,77.61374373266324,43.07595055068298,74.26458123848421,30.299740943507693,49.09380204579416,15.357776391944178,80.82984542918481,19.96263587775353,25.39633704502147,38.322517582895664,77.44812589570843,81.76928903596013,98.65125155853711,68.5748434110024,57.582344088864645,24.642343599543416,2.228832954315263,28.97982008209431,13.976067021436034,12.223029266087115,57.45531475694223,16.139121525067836,97.1926642583956,62.18097412703,28.395474591012082,99.63866198152866,81.81440609383645,37.04057846038465,54.68324578650597,80.21529174907278,6.0126300022897645,6.3157045240983205,42.19931520931347,16.14447690906663,60.433878485688375,35.93961643795174,0.6733162284392247,25.873797600722792,35.07837111663778,70.33565012041893,48.9292296781956,92.72459653758276,16.103512022183697,50.14152151929512,0.7790777925840597,6.618673126417551,13.952049847825199,1.353155765138192,28.03626566224091,10.118137808609784,23.008849008377,90.12251531702874,20.291497995369866,2.112037248070342,32.96450540258875,31.67813598366862,59.11042128772688,23.789537325187005,31.045379932708173,26.154223454119307,96.05879947836242,28.582836711450042,28.490535442806785,8.146380357530559,14.625686753025047,98.24695374766938,85.32169237900676,50.535107539463084,94.27786376206771,15.570517784895642,51.311973665613074,82.30124460000867,60.94064971832118,92.93796700705147,51.31075259721193,96.84987285065137,89.94922994877926,85.97092683170608,63.483204629940225,93.49955458940643,59.17759641479478,57.77170878992148,23.553229954946396,15.940493662746357,45.74172602249256,18.243032155572404,29.51316017587787,78.8215034972998,86.93317016235096,19.4829494897526,58.153921744016024,82.77324636868856,6.734916523037926,79.19860472968558,97.1612774496165,4.285562082695071,63.85039844353623,1.3954768730839784,83.13424120579418,12.514411706486484,60.31369718423255,18.779129067586954,90.8943970558496,42.745156125238815,50.73113512891787,56.87729067832188,46.19454213004972,73.00109328548801,22.083277648088362,37.31025416893294,51.209043892560935,56.453416054411065,9.485134720793953,42.08090515287757,43.102946430424716,80.675440648691,72.51008155608196,46.74524862091912,5.929579585666356,79.06941157038338,73.75496686423442,88.80129446267183,69.19195809957688,29.518009115051523,49.12371448599221,62.47051792074678,95.41605300022998,18.51120993177986,34.78376253537927,72.34692133259631,54.73044512286731,45.866692384981114,99.09065452969504,36.033508732681675,12.949531381394774,71.54700696934339,33.44417439874405,54.985752648966965,73.71736562973673,52.93727995545247,93.42971885928249,84.56110750772521,15.527074199850388,83.64841808892673,47.87939250265513,58.779416970470585,39.97836569020903,27.603618269446596,59.139655207036256,59.340459368303954,79.17780111943556,53.04279306123596,64.67143381410992,99.09024299341407,45.15857359482438,85.6531266362151,96.27540130053661,91.70309287198263,99.51927026817215,88.16170021081476,47.11549939174855,84.91332268161871,44.52173219194167,35.364218345672235,36.07880653908927,81.77539037155145,89.10291437022333,65.60571878608881,18.740185224361305,59.62552778797373,44.272716293014035,7.374258977510973,31.92367630556687,97.24947062695135,87.92598735824006,44.57310711591832,55.54165302905349,56.72890997036486,65.80247322139644,16.8713812677339,28.188117150863444,83.55027977718855,91.1974845986706,12.255741897782645,95.79426663036773,50.9990211430415,9.663184948202087,33.36480743942206,53.180858698874204,89.11069536191013,80.94883909184892,46.30705715312035,14.046018530396864,45.61242059575243,16.767856102745206,32.56416316298768,61.413288170422064,20.733776381951273,34.49873261717602,29.573729385113268,0.8435108508755618,35.39345928420525,75.85206429427639,0.5919395067547462,31.499446035656664,83.54016776855174,41.05494016348038,85.09960918153087,39.813310851199105,79.23501795124133,5.810434466770776,78.86895909044036,29.035016069087703,24.73343039243475,43.613085484947476,14.807903020164536,9.86439286112878,71.35655047340144,94.19148385590313,3.177731063460476,30.268001500011334,17.952838399657555,58.17789518296619,70.2389324046536,7.376182163699374,59.56990839026104,28.03078024448412,91.04535406338789,78.73576381519817,31.77828860081454,10.907415978642588,98.52678210954733,68.19832375876416,18.232016099634652,68.45014617480774,77.71741565130567,13.5659680909212,69.21122872660416,11.80948097606398,86.15905397788359,30.986095639307752,53.81774554450709,69.50778932613937,46.18743471664799,98.36530321495741,28.197492758277175,0.21297753574487377,89.7275646453675,20.466952583759745,10.191525632378106,26.42660640915564,81.89243253972481,11.366220436916507,47.63050621494999,2.901802545845533,53.67318922939267,17.162317948673376,84.11545906434267,0.672760299298214,62.64871472716921,43.94666806532164,31.92307808331335,21.91112045707956,45.84942722556972,9.665229904591833,91.95278559468447,34.62796471467694,68.73981036069858,11.767442162795271,97.46944899599093,29.010308228466496,81.19494718801332,83.69490079904713,94.58675986632376,19.393775147154813,53.89952143143749,2.367463410824977,69.81896057958956,12.408134924136338,79.89574261768963,52.618820120499684,89.19353439567708,68.12774520840173,12.207375739229121,6.8920888176273625,44.73938270123241,43.05871426320679,61.107309313681235,35.946631253400405,80.95443871316287,18.82250673325474,68.91688062570796,38.50667913368522,94.16926834857432,14.777090922260939,29.944372714961574,90.56482077673093,38.03641352921455,70.20330816118344,31.568561936909532,16.29712356423443,26.370161083842714,64.24476072521242,67.45192682617214,77.65811913150665,49.38983503848711,49.08368135389257,88.93231419536642,52.13909017555088,8.504410990451372,1.084811478888148,62.627943333864835,37.310576469930325,91.5273973455586,97.58901870734289,20.372149356319124,47.374607524400936,36.034741610688656,63.991157614799995,36.1903733628641,49.97908566119014,24.138121081041707,95.14206980343725,73.05366735923349,46.01530079222744,66.1952272091067,21.778398869124914,6.943912634059668,67.88023258144491,73.96730485934651,15.632143876583038,13.742778606688999,27.524655328678026,76.08144577614596,76.17920628952824,4.414955923796581,0.3784307654557395,11.626326692233357,35.57870895539116,2.8761167759227213,67.79102451324043,64.27183462674995,41.0818112285802,54.547099127083484,40.53938303765368,8.214591111940594,73.59509373330218,85.54989841118282,82.79843208447072,74.22636049749653,53.75162910845825,61.78791865255996,61.062995977802316,2.8390457594463236,17.116144879985818,2.2967896614030425,36.20853932132986,5.507535611686931,31.90074947177164,92.02435251689847,86.41306443113265,62.62640619997655,62.00916920734103,40.12332302244819,74.75824526872799,68.3491773948868,28.918470221782954,72.96537985860489,35.619417167209235,13.71526474907203,27.010600047439194,20.835709155642736,24.771525409615336,49.50315460606799,29.16660956685133,63.79811126638841,80.19953066284643,85.98249316585131,58.30475536959747,25.9903980042414,21.762577045846566,42.49609872782567,99.01297808830253,51.22474978918894,0.13589770805796375,18.35994595859073,3.495807823579733,63.575001011771214,23.886276146286576,12.465480833120225,65.71161669038074,46.05834725758058,58.09189709848501,80.20621407135789,49.70823783079149,34.671342495194835,91.82664152788601,56.20614414852694,73.84527039500793,48.6042992010681,68.45220669563781,53.24902638528691,28.268779648758667,4.310756856534825,36.59921052043861,3.734265800141645,62.39649355681849,82.39727750945977,99.19238437394111,2.1638821141923725,75.6986759897602,45.1746086481008,35.701320375752445,55.30804729828886,79.4577900934444,22.577588463934262,15.035578697763818,5.259253199701719,64.9435304070891,35.85097331708731,80.49929192205114,76.31393906813788,30.51253410977014,74.43439889038021,17.111492623579494,19.772313608903723,71.71930283658801,63.93287605385439,82.18846542246861,65.33774032952405,66.28989601500817,61.29541857630693,20.12268116588052,85.1333240239857,4.536581069731871,32.767626921913894,13.999721839566547,44.4563872470735,28.84259879240877,81.6687183345931,5.10659823455989,30.768954810416826,37.90003202608803,89.6825703222425,91.16492312691078,51.19668253763648,44.58105041036301,61.9446403526112,63.37307511938837,0.45115262975810033,9.782921437204894,25.027372900175926,14.643742695252659,23.66728846422783,10.358521794171205,82.79252709444418,53.63224405812682,0.07814490737023672,54.86329006935485,43.422528937193064,20.714230487688933,11.803727126377073,85.4535351240542,56.84885343112601,33.79131660359314,42.28590601299721,54.789209727453056,90.5313448819567,56.25869565938479,28.422531354419867,59.82380661173842,60.13991171948611,77.75385467944743,26.395537482048802,83.63633070170711,26.696356505064422,21.681750652375996,24.588490683261632,28.754685442240014,7.4944955674369655,87.77240370200886,20.36583047480468,82.58029716376772,7.2594063622447464,85.1416874962652,13.255463166888449,41.53558830846013,20.052275287980837,9.457576150499868,42.02969928105244,58.8404459866068,59.913293375624065,87.03564679579542,73.51598867526711,42.07261477835812,89.98039441042339,40.15158135528621,26.1900692621006,87.68561961689385,23.95773711884287,64.06169858097822,67.79384560894613,37.055812243119405,59.521096657743996,81.63740068609783,52.60578340955272,59.151802676445406,8.626773404010867,86.9018934365829,42.61460047100084,96.09275065560664,84.43164109505393,49.02529064815154,11.188076657367086,46.36940211945719,60.50100422017447,59.06796475028365,38.28324135241626,41.3715979386111,36.3540964874303,80.25172815692233,93.55361881004231,37.6414965831846,80.7001256997892,70.17642354566,22.494899618985244,10.81020775413657,81.36705244718554,59.075011504533805,16.24182036000531,67.17765137039643,57.68898159879382,22.819854320550693,8.361780618657367,5.072252389499987,54.312915683317954,93.71822858352317,55.251811031973155,0.740642869889252,34.40697375284364,49.36003832443882,42.934539605109556,50.74712284616799,70.60266824871199,35.37568765796849,66.66442121987313,35.126061769904894,24.020739236010925,94.75192480562245,75.78883725933478,56.802482489812476,14.274927723299157,8.974505873615701,39.2291452706142,65.81769881699479,93.79451428741287,52.0831690652633,10.710115259924146,86.87684944830556,69.78883700272627,46.17860951079423,72.73956229888773,91.21606310064473,13.712499671850898,16.334881085093123,1.3156784028528823,43.64748612936295,48.47491388798046,98.57379045821672,78.62134359097253,39.39606685385534,22.67061688417448,64.48453229630714,19.546797446916976,99.75298423676094,17.52085073816707,55.96197350405888,76.09376333540851,55.379496449850684,55.43398175686568,49.40923977523215,98.27882453828516,50.57650938168018,23.05238370401349,43.34593471199836,14.710826001686428,14.499057420824467,16.139779499320973,72.31747365310626,33.27225231808658,78.53013252420463,19.868088223562108,49.13449669499982,0.38204136471990946,42.04935623837891,84.2872244637435,3.745638399431206,31.50077831266216,74.04165658670799,2.296254773465267,52.565565282107315,55.70163877838229,14.497464592703047,6.892588077594897,13.682506398719807,71.60916738438111,73.11626037878742,90.61656085139145,76.12130012170785,61.13921073934071,44.16503913651758,50.39825917009594,53.03393870458115,31.808136489774373,97.17367126423552,46.30320711135748,27.205021221040372,86.0889142705455,23.077358304839812,75.31061027283614,59.65121929523324,75.0300352469283,19.92170060424835,45.32331252382645,67.688823548735,19.575396991936245,25.92623171695736,95.38933588339104,99.05420581114798,93.0497168403565,97.6072267961839,48.35095939310039,35.73105382251451,13.065225100624689,3.047355388581219,73.50510863597705,14.436982900886242,94.10891720320956,91.53224605360046,39.54765510909808,99.73220794392883,31.8689675615368,74.6801303086307,2.39059520579894,93.84429440698926,41.19647259254145,17.510824212246433,50.94928834835867,13.105676018853785,8.74812515123271,40.903853415519265,22.986339315217975,2.078900686051155,43.690304404670556,92.14095491181659,70.55202921433586,16.79897445850811,30.259498800948936,67.7144384141985,3.1361583717517516,7.171862351929359,60.83101287654949,25.87253376165225,18.184940245019277,55.26130521226003,0.6741758279743104,59.26517206893701,3.5437152739204225,0.4845257021156568,58.627247988731156,62.61000855338804,64.17694311550353,87.56899055524218,30.714047162395474,14.283375377326168,83.04483777577177,79.45288521921587,59.935450633035444,99.90202133304085,33.38349704846365,39.98347506897743,54.93020910600082,2.740423450266738,7.762694538232784,21.863087164408324,44.9880197068296,12.191815557465603,29.618560041161167,97.4673043578071,21.435072330510774,58.386909361359685,33.49008376077157,66.2508153022791,30.608717849192345,66.57664749716626,26.912340464859795,39.43495086887114,51.64151562713628,43.43995667214998,46.39386324704593,58.50454897561178,48.67195425081986,70.28163976430137,33.243882600899155,44.48166174153088,54.736357884403084,26.806956708484687,57.37354382134197,33.823809856648424,16.331786502473488,40.64585097104052,8.737820261893269,64.58304634033823,22.367889561780217,64.56722677987845,71.94695290273314,34.53905790890143,97.24935245842717,97.36298565408939,46.85643282146169,82.30336605831937,18.09581896780783,55.943997231761585,55.14659199675349,87.24703998419116,84.81490595514167,29.18946383709693,61.62434160724823,13.657119599705315,79.549185692836,89.65495631317802,79.84480473597915,35.67081597744336,9.740788853388317,8.348447014601245,97.59037841077152,48.85048918699573,8.02226586182978,11.589174153837723,77.42869203578434,7.271154367527544,91.4090162047811,13.993167810611396,63.901526979331614,31.33224468587923,75.12231644475204,76.20376915144304,8.781485369552788,64.5051472961897,33.639869687766854,94.59816921821803,64.23631372328674,13.743864129253636,77.29042772850717,85.18269378720564,12.644800462636741,76.72798762810493,27.28492438193656,37.6574042865191,49.099622438807586,19.173496741309272,87.16686871860314,27.182492467591047,4.423868114720076,3.365663474131475,34.160714974221804,98.53313183023789,16.990493780739733,64.02480400601644,87.09120445816956,45.55372291183257,65.72081934225159,65.44053098631699,59.81709977893392,85.13159454992596,41.8188529724165,34.585088011941934,84.64994606216216,74.47875619667207,3.6677112968121706,59.688792013977796,33.97946930958925,73.4354959420273,46.00231739729116,58.27730207589573,9.397820750651341,85.03661767642483,10.099228290550599,20.45231436037711,16.62825869401069,92.39354109433974,92.27273925540158,92.97766234364916,34.59318170457243,68.41345519096976,93.36809818052794,94.44597094635023,41.16928154213535,74.75613193732394,54.8705647860644,8.83415971050584,80.53174323244485,97.36085588308767,16.067321090115637,9.357373702962091,29.14749108138469,15.57926341237832,44.64539485367002,60.17983043155465,9.743075281818136,26.81794217934762,30.43574233817846,10.556995772057565,19.321903648973503,96.50461013616562,73.31511604376807,4.609124254732522,78.770247891122,22.093928027260645,72.10259437918519,27.639936598173932,1.0028207584074522,96.40333814080284,20.449555781390274,81.17710014352251,69.23986373677307,50.38922351847268,32.07940497692009,79.01838777697864,64.118115614612,90.04997069126513,53.163816578058686,87.48988477055727,93.51332351546772,24.684901859607177,16.46686565925982,17.524897924478566,82.94641053692747,56.958597893017526,31.821271957143793,37.467298407303126,9.308412962528667,35.131845641297545,28.811825984383077,67.16122361757402,58.35079877502205,67.44497878552946,17.375036149091304,19.99912687064529,40.39984712924063,5.557532249056107,85.33435085119157,23.98632391295389,11.248714008419903,70.70615181836612,71.91079072196047,17.320964719561626,74.5244205512432,13.069889706570969,65.93537769351407,39.85625255314886,67.91137812647689,97.36240734246134,72.31315300414249,53.1342847028212,72.93816910995969,3.788723494188939,0.5771979950303097,99.19003445050781,96.23566840111188,5.291157831245519,69.70796432528542,91.27378285639965,29.145461647853953,27.09406964045773,62.59497951994156,8.219570055411118,72.86161725874013,80.32336159517833,50.31316155234201,19.62481155814968,69.35911696116965,42.79901101694272,70.38516357904368,15.35892634895345,19.06807563016183,18.41189575569545,3.422134278331046,8.981687806795103,4.291046248098951,18.79931603367805,91.78581407427603,89.03972390146684,53.96801005619047,85.19799085920481,62.19627906593745,11.799588013017615,85.13630202454218,90.41855038997407,22.16121275643612,21.571501938589755,61.03604658134566,36.65046216390786,20.286531972965726,48.67362399026888,60.94031540579245,25.175422633987143,88.52988396047935,23.068546763111343,18.045522142701753,70.93512821967495,73.06846563419427,36.534640694049735,47.66846351417742,95.47661552155716,1.8240121403992893,17.363580556284784,89.88595341723213,18.71443632047801,77.34049093484174,61.25386339871666,65.18092597611725,65.33935053325033,48.14709400614869,84.12298223956998,69.12521356836135,11.063625759149165,54.834005391808546,11.51882317315237,24.923993327608475,14.954345691898652,93.06015231801132,46.454207072460285,68.2743415725329,69.8778238976923,68.55448645272955,97.78283520494708,79.25294048722888,45.11544082800791,42.726613010341964,24.25395659874665,54.1705367234283,88.6568967977069,36.369709015037955,3.2257308291258835,32.72704810147536,89.94278560025283,33.226066704111076,61.72788369267359,19.435740823511892,10.93465039532755,50.25393973346682,26.505849337579136,73.85459245800085,72.43573346378362,97.69667745800122,40.177456663966396,68.69887428410524,56.715384438245984,28.944024049779536,33.534729428808916,75.79692083248948,60.7810794399411,46.29986720150811,23.012983858450742,93.24071184527702,61.53575965942938,67.84467454257933,40.864876590974376,38.180986736597966,50.89854404646693,13.609898228980398,22.76752650470667,42.121093087278496,68.65849769070857,70.16063544341387,21.177091353898682,29.16113968801728,62.499770154410974,9.656426654290106,65.69550762131084,28.5756788657622,54.83734669371011,22.299515626278733,1.0588865937751324,1.7188219686916861,85.02351539327748,18.949541944106652,79.13725815000603,14.656319878572589,11.69511995688508,27.638442816358342,34.40303803337732,58.01736947446018,9.545199645388836,83.58532918213203,33.44712965537076,41.22530463238704,50.32754187746084,62.477901347972974,63.01169042887138,89.85546897475987,54.66576374580566,94.43170404533137,73.9947024044609,8.666901292188722,65.4461647684109,52.1433705968075,42.223462878974736,83.07481541118523,52.381021695074296,0.28535941083285277,57.83195105653054,23.910198921365712,82.62832178850115,33.46060544506892,81.2964533942932,5.938168438348734,56.0531789781476,29.802491366246052,33.445081465234026,46.5154390572884,41.83627358483051,94.82950997802783,14.039989204287739,41.115664065884076,14.945770004916426,63.58945616818254,48.72404068188055,1.6845334717742966,79.03407325958433,10.71993074387766,35.21115797709039,88.27967478931957,86.56606029449155,82.64083318995311,96.44172305623344,92.09129967097007,56.62782209192885,23.408872648581923,42.50236863236224,33.504505914012206,55.26791972288125,94.51463043557033,86.75394538734918,34.84874183102151,9.658001683829632,32.844180224711614,12.815972024549271,94.44085806228826,31.751863829214045,98.06576145256126,70.97269394831409,77.97767936424982,65.58935556590984,84.40591766962928,28.99213692092877,10.969022006113672,63.6972311617447,16.989852481499813,56.45915304959501,0.5792437504534065,79.20428786361961,92.06835275008304,11.520537045995738,30.80639686141623,5.299231974284435,28.127073073073273,94.84033892504968,79.33735884999116,38.381215886453724,71.28784433388144,65.69215484850442,19.759250563162034,9.269306036208047,84.41271386778125,24.29617498653711,80.10553053163142,95.07989870509662,95.60899620148,7.009493772738629,34.53545461229398,5.773713071199705,79.54897096481142,57.96014063502931,4.04736099441132,52.10021715162534,33.48851491604157,50.86254580063164,97.50867634480946,46.96825178597893,94.91241245126206,42.15133019097562,95.93780697539228,17.869925706651113,12.721744059912488,10.162153838225251,18.84829941698454,32.84089473074059,96.19847690431513,18.71404407165931,29.151921596013096,82.2703535081632,43.5217925658917,35.06678991879624,44.69175479605355,20.145478268058227,51.41324207767107,95.23620162690925,73.89941901896314,3.637300405846011,56.30005497265829,16.69219768906324,26.871633081165967,31.209060163351953,41.699504331176726,80.9698465943326,60.88812697400658,59.44193235393532,22.383711558130138,81.1841021436586,32.51055007305529,49.85461160229865,13.757851783953967,15.763308015284794,14.364453035720748,96.77840144781136,0.816328013630363,12.187958379946828,31.582387382132147,26.548358481663925,77.87989566163354,67.68205029225149,34.78239126906932,83.05962192844206,0.7255601695208891,94.38486827534118,91.8392227572936,45.8222218557009,22.611605244879595,78.56116618039604,49.57094331284275,14.225287163266653,42.616053734893214,0.2797820747158397,24.199197828942577,74.81860346791544,16.982915566721346,5.780853322619361,32.11262096484357,82.19668586386135,0.5570947708458895,17.59884197160129,5.542215152228536,45.47198732488764,40.894743540123315,15.0082363271957,25.890695056441572,8.630639724909306,0.07166211737549277,92.11554698362788,89.13001565499992,85.07214395936109,41.27423582454883,9.089542822803566,15.654898320512366,61.83715247578514,23.428680445186423,23.826115479417474,62.584973849917866,31.149636552257576,45.7456568047675,8.470660606978653,88.40884475272823,9.534610216346739,34.08682985114149,15.187628964885736,58.71655078883985,19.05256976914188,44.0058207216239,26.87379468069522,3.755976794394089,98.51889798453783,35.91075673544477,25.263514747970195,26.699201961687535,78.81870915882543,31.70668101256605,27.82675554018207,60.29205500466033,42.646062456935304,17.017572030889905,37.37312199131394,17.667540065785804,83.6887880832667,36.35031606062038,58.95541214950455,15.978723392832384,66.72460025449453,2.8153051941453233,52.180056602940674,78.86864961324646,90.5556058411344,31.49221606156667,39.615813807028864,8.037749987363373,4.012706455561432,26.58553790759918,34.6022117859536,46.81321905964522,83.49682452706689,22.169478741955295,97.13288006177858,78.0268696826375,72.26256556566425,96.99894544417978,21.805285758464866,96.5633490161544,93.04673504196408,15.801238587825539,66.55060516643488,24.148766536851596,51.48285161169473,83.56905826363092,9.810282678329408,99.49349483383996,43.25356994066042,82.34837986058601,95.71262575467489,2.4663225428650404,62.00125321344867,60.52368009157087,73.64300240984313,78.4852245336992,23.290452040978504,82.67583819584314,18.927993997983183,50.006996018789096,37.14128551162611,68.21642435613816,25.944611335917887,63.11137990504615,54.29606194522444,66.2829750612333,2.4326048233000552,77.04018229221185,13.240778181595314,21.153045441479858,46.44908983845011,50.926517723773124,55.252805742629775,14.042640809221819,81.92547767889849,2.0377208906058764,38.62562184878108,96.12861339287288,87.46414154424488,25.077049257444738,76.92013493727391,96.87373676753974,89.92301710735813,18.96116085665446,5.944435398036497,43.701805001616776,70.52961121117825,92.47397441083358,93.67851647110292,33.0048469629482,19.242050163659073,63.119041745484274,86.87967789239278,20.352739722912983,24.30788768983011,39.609169998524344,39.59259079340599,24.85375248481767,42.75851552553572,53.791112938767704,59.17476221084787,78.47643831345324,36.702359414550344,22.93816858512505,51.431035229985,98.97932517081956,22.39345029245805,75.16456004076144,78.80418425754505,46.65670028704662,84.82445335635876,23.87533159311024,91.29985154024375,64.86159824325392,12.2664602074543,0.016509163989963938,82.434234766994,19.960413057716064,50.46586451106839,63.1086971999262,61.08332747632117,76.45567427479185,39.99963511210567,20.703971494354324,74.78380137022224,41.323949554649694,84.47585499028602,33.27351992697787,23.895431575570893,38.252145460321266,23.297139198530314,76.32748197338441,12.822577082494513,21.448342039814207,19.027356366528004,76.0780775847984,24.829061709561262,11.841321105014813,16.316030540708827,37.04964122808205,54.235377188097175,23.592304240173924,4.869995285339579,8.916784519671694,77.00936053897918,79.64359718501971,85.72452278646534,85.96637930672004,85.73129401636763,36.57582009769512,95.97076363074596,94.78031702517879,5.668186115490991,53.57980236675203,30.107258922286462,35.91547719238945,72.67043026594655,98.75488273426856,69.98923327410854,14.78423105153217,63.3941901565097,73.65170475837222,25.114831238291213,80.3583375145236,37.52794403571914,26.342015189974653,50.32030460964314,50.65296840352577,63.30844856606619,94.54240283811316,39.003462565958266,75.28780582530027,36.87371953737825,36.28935100544572,30.688659783369644,63.12536019265016,82.47512468858916,40.51472489444124,8.959339987000458,92.58870706515387,20.471149521144184,65.28242806899432,89.43297921521048,91.42253486713105,18.60964084797675,72.49142549051437,7.25167790804544,28.653430646789445,97.13604404063821,63.41767866582349,6.038461056377676,66.68123224255059,44.58235761864703,56.523560438028674,38.6987765709278,63.372994058894236,59.26007735467434,80.28316598287556,83.86584984401995,75.01044441356906,82.62110119048138,48.64144050699488,77.29264594523427,4.506226876724484,61.33498828140228,14.720192132757692,23.36545831184852,65.55854499994699,19.9394606080863,85.88467938500457,87.535738931477,84.71244090522198,84.30275137943919,18.638808502235737,0.10714044326545213,53.859597917104374,36.77283962067168,49.410086196056234,26.184090935736492,14.135451173116742,86.73087012160356,94.9892738570725,84.45626622344736,34.975629113052484,8.086784695654202,85.03535846641405,76.98601326985928,16.091903873880074,55.136876441636254,70.93261790811465,2.1691581008152383,83.58507877242968,46.99841449302446,93.28200711084249,81.34491647162628,72.0485952675595,59.12675891999189,91.93292996689075,11.984027198947578,94.36025730105135,62.03214338876164,72.65837964493626,62.89297574046836,56.08769411789649,41.621606784849895,31.70263828345249,68.45997032191524,84.53047326614175,93.17207554505414,25.095560175141685,91.34614837409079,65.44240721883774,32.04377757584809,47.308711289897396,54.94899381485857,93.70275120721226,16.50451382692858,54.120020084087194,82.43103525688097,82.84641578251998,29.24475186525547,20.78994825182894,20.724890300592435,12.84532792524169,41.97679137013135,28.329020099094805,49.49289597767286,95.04292602537116,21.137022340452095,82.17780345862471,87.62180965229734,77.78836652351167,7.6257914689079165,0.7370334383135502,52.57521381728716,75.57366004624494,51.84375631235234,2.507754618293201,48.361661039103396,51.368626538554075,10.48549137061171,37.90260568817006,14.318269193853784,25.80903923747686,86.2726106415669,1.2975509355753867,41.64009475315073,62.98057830324267,40.210768885314565,27.283339472723046,21.686676722176056,61.93371747969957,70.05248216352705,81.45157142659244,90.88531856353701,61.32233328716038,61.54026328688003,56.79461722990854,91.27673084962589,54.972428370166746,35.482277464675235,48.92743071790591,57.239774147980214,65.60286901188302,89.87152531620667,49.2184704036441,75.20498569511551,9.059848091402323,65.80720402626015,55.47665754356028,30.584728892204215,65.07650883538712,4.797446355803259,26.826883521516287,47.118593498873196,40.846006107824984,14.109376931943984,18.397206493562802,38.235166657244434,38.5903938506764,61.15385788894944,28.244330781935112,60.610301735721485,72.4259498023867,4.123730932369529,42.245019366294024,69.12495471762344,42.817506127929136,1.7691410144913156,68.23876349913598,82.80645644092832,64.71983326557456,43.720879774065715,72.74605546494728,42.10021231471931,4.562204317907703,19.90364324465358,59.821044454412885,83.00143499747537,2.486171013014127,67.45735374968223,11.8494554893796,70.47650805481683,20.195396488292317,51.369809920096074,33.27353658419069,6.760334751031916,51.40312558114882,62.133750695619675,90.61442666810646,97.0722289788482,23.306641390357154,78.16486682768486,73.63661537840922,77.16392602192266,20.36940149572205,22.95191130120713,57.220657715297726,39.632595280656105,52.94763466177621,94.75806799863847,34.072598402026536,40.534139707737516,46.47190804043161,80.7586133245511,35.299980486002134,18.141449636228746,30.229373967629712,98.41145168160364,88.92179068871415,41.32427541334225,78.22476101557756,16.175401211641283,90.04123818049453,70.3743711487758,32.151718128975936,60.47204728109513,80.78277617784244,50.70099546834776,36.02144857834059,21.29380040304858,46.85842196542078,8.99373919044738,84.71455357403228,99.9700076635645,91.21622265371019,48.61056250049409,81.80236073609962,72.35661407859524,5.690939801687389,85.03039596581505,10.309499706478508,8.851215625017428,77.38330424830352,91.27990385560003,57.04889699059419,13.575051772404844,25.846785139244567,96.37734402043954,92.36759737587633,11.148240487134531,31.22208021374554,87.87022451832216,19.51353032298677,37.32746484475218,77.3395301056448,52.80921590493962,34.420890064015516,95.60086840877607,48.67487596284346,88.29255845116026,53.78047158602306,17.10241982469174,80.14199018686962,17.588628673137453,59.63231980729964,52.33967453702266,94.07999278630442,7.9333325381965025,68.01395939998207,27.25502111695829,67.68665775456094,7.045190704604454,75.70007109289293,88.72396885785628,23.854160566796136,90.55990827450255,5.680242284904891,21.973683554463996,14.012249144540846,90.54816710223083,35.70986961543281,43.19566296205536,82.70353571211082,40.20808570957303,37.41676001547771,78.38962061214862,17.800853793287708,72.51981131135084,36.49009896253846,38.88453712933968,4.086451094532051,2.250345121738939,28.585760936479875,62.746036517664415,86.2063514837187,56.083886928099794,80.9152455751943,71.08977006710126,43.24131580074489,23.64841920586761,62.33272633867229,38.10336284805731,64.426313242858,50.16059832348696,55.55509724715603,99.76370727618952,36.15343607663731,69.95226916175228,97.92409373010264,22.752923559174356,52.27741377393139,4.685414357055917,72.39556501177033,16.77580925480956,61.30790777562775,97.34324454411059,20.47944132316931,48.955683964750726,9.849213447070804,66.30811807660993,58.98913976138604,4.068760869529919,54.95687407552593,93.18657968324389,83.32624465178134,72.63561143912824,41.80699994122967,83.25689856125216,14.963601034528939,21.36145776064431,48.2474785727972,18.82352902360106,41.33349764159273,45.93958617437295,53.94810527701457,53.13559753221746,56.83424198207238,91.36235549609384,63.89072811016202,41.875252140710806,83.0640824137099,2.556074290054111,33.25575573393398,67.03660711190906,29.292236642545088,78.92248332448689,43.912207792922665,86.7337826225566,38.17899917522626,81.65336823050694,99.6509240146424,47.903971698070066,26.157696077277205,78.83381694481801,85.7594258820069,80.4587685578596,34.88123516610756,69.27141458190977,33.83107003960949,32.54459486950119,7.492827230763366,69.62866126231904,36.33735030135067,92.06976030386016,39.559959916047184,27.830734083213017,86.12994267726845,50.98655143286922,84.62507400305579,44.15185419097296,28.17709468955847,83.26735344694848,65.6172124079384,76.35643564848293,86.11000424346385,50.230586548342494,4.934166237082516,92.11355470595876,65.39423269951325,95.41083072520603,12.454385819135272,84.4982777627977,66.75296643700945,47.13904736465522,48.948900598833674,72.17474355082777,79.1422362339699,18.10884552009082,60.574758552827944,5.341591349205865,37.73424947405818,75.81353557384874,84.19095435274254,85.91766963450657,28.79177250453472,75.39051227148927,14.138513696061283,12.559047323916307,11.239992695942968,4.679928039424642,20.675839428017373,4.082058707889358,16.03589473468392,53.19590910077198,11.754513198894434,40.95891485017863,9.508746424707681,73.7861442473079,33.89518080001723,68.65542666387535,12.098535498911867,88.62523914394362,21.704226781530465,32.83289630371712,10.151707141517296,51.322920442622646,56.15473047325189,75.4022810244113,10.679638764919087,83.81924333203573,77.05168695715666,34.95887742651257,85.60184509613545,23.5862793409252,0.9918852476243245,56.92351622941979,75.57916089947115,93.19304931874271,57.813634474437514,59.01892771483841,50.8388563758705,52.06724577692437,46.288432206000905,92.54734820342419,40.817659773863056,92.63472657179177,52.99572067010413,56.05476821983191,43.62387355706041,8.553801489099644,88.37065726785688,68.64737034733452,87.49200854598624,37.86814143922397,37.864333728518716,47.979473470771296,49.24873354799146,34.45937949083717,93.36815608955563,86.69523089909572,32.48742914306011,56.4018873150814,1.380985137100721,96.42702187844503,87.4681433825862,94.34149317484042,67.113952013041,53.238990155515864,31.187616022348752,89.25432048159324,28.310729784758358,89.42305490074486,72.18485083694254,15.399386852810604,89.48436737377946,38.577210046339246,64.88724455679206,21.244827834350023,50.65492016185394,24.446388374944274,10.171603502694381,13.024044420193782,41.19823748595167,47.609402051100034,45.75650679249318,36.28855303026215,67.76685135159592,67.7409555411563,46.304136107918204,88.38654562217573,68.36735374298625,20.569899746317176,28.677269475611734,96.16759951286213,71.25219224744495,21.21978709647766,42.71701093976246,28.14797663678582,92.82625572319303,52.474698628822004,31.690116347988727,0.27341733489613107,52.64935202228093,34.84467536946805,30.456256567448225,10.202391076912376,29.035473980776782,33.54776777076266,49.52723314377457,76.73294748162355,53.17165481423921,67.33568106495578,51.38907307345561,40.83978449179636,51.1484497817904,27.48226758994704,13.55907809486806,80.32050982669526,87.0863263379328,16.420464630567512,51.81071995534494,22.691212836141816,49.253292591910046,39.04254829505716,59.543440879476606,75.33907726725405,89.65128074108624,71.1643540250751,29.78520859338095,69.54632870027599,49.80113302114254,30.07216562493066,96.26384008700298,81.7794996597554,48.21691380075177,39.85851932182914,43.40982870912057,42.42322721251085,24.250557978736676,2.4973490558644285,26.264355104388237,91.38977471698972,58.81668026435622,89.48869460012158,7.803650494454695,5.819476284999259,78.72481032069155,70.68425075081046,63.284446125910286,16.16627051202674,87.55021477151269,39.13580033575664,67.52517303849382,14.252258331696254,14.302185311165537,86.54565960939962,7.082628302738181,43.613428654818996,67.44884782382319,63.00789549860073,95.0499760164547,6.966413517271953,28.380062689274077,93.2124071509319,59.16667048311495,11.193988568879764,7.307719721717532,53.085027373959306,62.35596765189122,87.48395098680349,38.468693668581096,46.293812245779264,34.275279983614304,63.51608984283078,10.095991185797216,80.54664920483286,88.89676323683439,38.80640108279584,42.04529553222649,5.127301414393781,91.62486378476413,61.408454292524524,69.22828522484487,5.302903585512187,16.020465019755402,67.57005882104231,56.37835635850846,40.783916849996594,8.166261025918464,70.07957991016534,17.02698288550497,68.29107017135043,46.646759583768805,45.78515597721658,49.45131603117686,88.07568678002623,31.148028260571927,47.95074508629712,5.636688554897374,16.804442687675202,61.80464331842763,64.25842571832028,5.397683158237077,18.410388772941822,69.63813338935276,97.39021610263809,29.59187222904891,66.1032903443419,57.91026217806466,63.650727964151066,20.850370805849426,61.86632411830206,90.12204020113901,45.821700073387674,72.11077325245037,85.48850444549231,45.93640400310295,93.68000361610252,62.40671890619039,99.67765428615414,7.8433441595374465,9.156167633769485,75.14756691941434,29.144386940197876,56.346363953742575,14.087336823976937,3.4914202828211227,4.9629049566155885,30.1792532576034,8.148607747748237,88.0325376534222,65.46298443751927,93.89508086300904,6.680438098103547,97.73685125437427,89.24093194630012,60.20122130481005,93.06844608874222,74.51249333613832,60.60551848037598,12.778093585041495,75.64175429755782,95.5121202097313,8.266142646080976,42.017014031293854,85.61824881343763,55.702729015765854,11.211690892013982,74.42009129117261,1.1641459751535965,35.84095545712823,2.313466663733854,53.416688497117484,28.128821653999836,28.50955821800467,59.33785940148025,20.96400636324415,82.7576475668408,71.58232857808817,45.62268530219583,39.76182199181161,44.7609504452236,47.121150044352454,79.18735579422311,67.67862205554778,87.70404647766138,69.77421306737864,2.6548147929515764,16.411835295666755,28.727213265814534,10.795130716700296,94.1675217312583,69.09821906500248,11.734246041371144,8.662569904164263,46.817265115503126,96.69654849514424,81.43662373346721,79.6361656588999,50.09896010364812,45.63135318410059,58.04876493895668,13.402693510049913,91.65110989844689,19.66410169945498,40.26054648479148,92.30660983159241,79.90478387234305,4.42852880001724,41.50135857376078,49.012912137727525,22.209990714778407,95.00810366072558,7.122674779623406,39.06467629935905,0.46605839191338205,60.48255285767961,74.98832407479286,43.583827691679176,13.899310235159756,10.08538906574904,18.85268804436575,95.21214994006871,63.49062351411789,58.74285702063463,18.23604069186342,80.62621613201723,30.77827260377709,71.07183391506446,69.80626328624115,24.624187011558885,63.39504588076651,23.022135238083365,26.816470517253133,42.36299012673895,79.48489312583847,37.34444183155705,65.49009396382472,78.82945550426315,42.94427723640706,75.08095578443012,42.33721929417587,64.91144565675935,31.8460619396538,41.11596914517026,97.34089084550868,76.33613612013505,47.32414405613869,96.93689664092032,88.12140747657267,76.78416945806639,37.63574262182917,56.373989217243306,93.9739389016122,26.660428753183897,9.067392018304076,63.281840885829375,4.832530816656256,73.37484810476589,87.5098241347198,38.605057483968174,28.82591707648806,55.60381661115442,54.15845144267196,25.791504000032706,98.90308407605222,83.48563001182927,83.69824506440999,86.59318868801972,53.17854032213245,96.71851989205338,4.193100547959128,44.72945573891698,13.323739671068413,57.66397387192993,27.712148987413578,88.29890461308064,19.49408304247491,43.62950894514084,26.707805361277682,79.71777271125796,52.45376984882656,97.86927606908009,79.63201311472966,86.22945083524915,90.80465373533858,48.64819457610743,26.983409358535905,69.76596705370429,80.02008970204605,43.95001437881321,64.44279385996451,96.44155505873215,83.2645550734456,92.90704234700804,13.003547304946384,3.262218166439046,57.324440818627785,76.16376177251205,55.30405940749069,65.53470239372888,81.13406842597128,30.238572483695116,13.736496501612727,30.847491398151316,94.73879454284153,70.54650236828836,18.450828411598973,78.68796299971885,46.0320265963195,37.418706919160684,49.41073399265661,61.7276651841712,9.668099505364225,41.92571863630504,40.670259562446354,14.478630973006123,0.016738625658019313,87.75814000988875,63.64865748028521,45.1263456417817,67.63746312325972,64.47407886909173,27.015048646198814,69.48281370496728,70.43698689445948,61.941011849643935,20.502367636766717,49.06469470911608,91.54232693052674,64.3327229621446,30.560306721685404,63.046805688557065,80.81117103312802,99.29093917247978,82.67318597546662,71.754329762043,70.9733437010453,17.94458945512626,27.177059221044363,90.41309872554012,16.53742331689585,99.39157332624032,64.97666220487413,89.21365575520444,78.09344297339497,52.2195923752459,62.35816999629564,35.86273974160372,93.99514786919343,70.21039697464737,29.77049057636634,28.55904848100583,5.969326207467763,42.38305669172829,55.380821214275855,76.76802441205905,62.99188090251081,55.27544841499409,90.88911679136228,5.049353406549639,8.871091701186018,68.58632830996159,64.27427783911381,35.902798422996376,81.51032306133492,92.31730984007712,67.62324305476977,59.994267476652894,49.25975996337526,37.50020338908928,24.45801867013412,37.78850710227728,20.26299417656382,78.84439923992508,57.00294765975289,18.51690699359341,32.881685529500025,23.89319620588507,52.49883642819658,7.0292505405033845,89.94133510934006,12.31463052463756,97.32394434963982,5.026023098507015,8.601636774341937,27.54328922336695,93.69631697972733,68.49001158671163,14.39219748196956,85.39359911674399,21.5728574920401,13.126146187110555,1.1456369623635498,85.08297499701304,15.82859158682296,27.485250840096132,77.11217572572599,13.898447605868236,70.09783476406993,16.797033270276962,62.50079836226461,19.937241571507023,40.04943297220846,79.16506045433997,56.72479522526173,4.362361405327542,70.08882822325234,71.4114233195171,10.782828160345371,70.36970624044653,43.30873395631455,63.439716771856546,59.775729928295554,84.5554198257062,72.77847378913268,47.94701460251935,60.71758068529951,10.34835705738779,1.9378238997404207,32.477745424291236,41.46078528505376,54.872481162543274,8.030096487597294,4.836081775635293,56.431971356677494,10.579763769809691,22.789724641037324,11.539772269861636,8.73787005195834,78.2132535354288,38.576523497597556,5.05474838893557,88.93241096345353,38.9742866594264,77.11013286641673,66.63481254875417,15.352810083069556,5.8916914273764,30.101542291065808,66.78942945165541,94.19957187596862,35.17589227834503,21.527118081493857,0.3245112092535196,14.04529399328437,5.381218840546098,21.46467700304643,33.541723775101175,50.31193741157013,38.06800747970258,7.0698153301002815,53.723978317816176,36.37660191428117,92.47110119411855,28.932761246143457,50.50509604599574,31.013843173258426,74.28329576766068,32.84805666189223,6.070370247126434,65.87411435267715,95.55742134897103,8.944911379479281,49.94343624275708,64.62570577305642,56.28360834745477,67.30457423302197,29.28366469096353,98.29159235135153,65.54960985287553,62.683530791951235,87.15911865033308,7.043759427136054,59.959608860792024,72.55933652984095,67.50425328806845,80.31658397499362,76.60063617798724,44.21260577267171,63.21691578010032,17.13146854101876,63.48857288868318,66.05416726615783,6.095896135633405,33.6231121152226,29.877825143592286,12.623808100427624,43.67555682042246,67.88767063823842,84.00561507382356,34.08915848088475,42.07958694156648,64.6319561246967,41.807513267345996,71.5536872842878,8.97341862663642,3.9594123110290536,61.45046251742829,4.308215886030808,58.6411827111237,83.65115776103086,63.95883945954864,13.166597504165622,25.738513574938217,3.251251949806744,12.600625795433585,28.371410120733877,23.30789875226913,89.90747641362846,16.652881985068923,58.42215787250629,45.111816673125496,53.29930448594538,60.83258708694118,50.632308617732804,80.17098332717055,43.61653789205484,43.32321189076937,44.29398058855041,36.947657077684326,73.42312686702213,87.9693550146964,76.64029544022921,7.855464396428413,1.9221114851400878,60.62741836870619,51.513661750474895,63.95815019273658,17.682695945042624,0.5039326773795594,15.779811758948348,22.200268631975128,16.618436467278887,35.35344826052991,91.76152670947084,6.0686003285833845,24.37168837181638,95.31578387697273,14.501964655868328,71.77658976348589,95.07773007071575,84.82095253358479,75.66735170155187,38.024609023677606,98.40143579809234,55.444366246910846,2.7362902904596087,62.40874671013963,5.227933114151062,6.936448012531571,62.783343046208074,58.347903366243216,88.75959763272357,56.54447168820913,18.385806092094104,67.93418281384004,42.3476942920748,86.11628248761659,77.0670654395592,90.47607825627365,47.94215793305353,78.55296390504324,56.68144355433233,69.65676168433126,57.364555939987184,95.3823914174134,39.647309549449474,25.07408027282796,5.607163182038444,20.74836300541767,11.828800450642374,96.51462098169355,80.29576347171182,91.20748975062544,45.129686435417895,89.82861219767507,59.30680908614051,13.478569621919567,6.999072271067974,48.24748292319144,62.08756291384887,58.683394886514286,26.87730175642924,70.30876649820999,71.18258202729568,83.20050760922135,99.32843264217298,35.190334343211624,27.15493382666625,18.61582516635485,72.98516036524829,16.900660253818188,47.5538646485805,61.24580988707372,64.95901040823433,46.55709796841191,21.714102941258783,57.49821539855322,61.4442553789425,88.57526626841803,23.41580441327841,76.51029557936624,97.3096463452945,98.41747277962554,92.95878649835325,45.11156922954404,26.86843480247213,77.20630319372144,56.603687495197505,20.784704757538176,23.25419150212652,4.37508277963855,29.790781001039758,81.14457006148092,47.65958196368837,33.408670762492534,22.729100613708987,91.34154070196726,38.535396813017606,4.6184529092647475,49.627343035966774,50.846891158658245,84.51801427423146,24.228880631537542,96.85428252931364,25.46076030368214,89.6159795540689,46.520887445771166,96.58976901538911,80.86204387222047,11.784151453232338,95.86666800536698,5.62267840102415,79.33665442063898,5.44429980829576,19.91580747453576,22.601188064985767,75.61525915357078,40.11831070554518,13.210868771008544,63.03483353075321,70.21228382416079,39.01902589983727,78.84345618669244,30.1975822085498,55.066081932134544,63.33406574249647,89.22185967122137,23.663962621358504,49.60038614130319,37.49750440395405,3.891500190859698,23.55016930528465,74.60263066610581,68.91709695891794,63.21916554564777,67.34206086705109,78.79618845969311,0.7111599145422365,53.52260913869659,67.55864080494074,61.547846022140064,26.8349398236303,98.62808570066154,58.074483182946956,1.2644766139868202,24.539642687035656,41.666710232931884,34.61587793748622,83.90330310337416,80.19415557690292,64.01553181028737,42.01733638195071,84.05066785124001,71.66401705512399,8.594278845964043,72.81826161694036,48.6898960966067,6.092465902865996,70.8266796622053,54.389449968716555,76.74588529386023,33.13842317862321,59.93459624456264,20.31251592345281,4.355107013225224,61.49335464775682,62.19979567470515,47.793479933714465,62.63024190367121,99.74774798117717,91.10532828281708,52.02328411435454,13.602358992107987,60.30312107319592,67.07135913673334,28.017547174933632,7.330706836597855,45.84467193729679,1.3772382003297556,2.7639235899181824,63.31036719454781,79.16762297069532,16.60881543781192,60.73610982896962,44.3212904166206,40.60756984377195,2.3694702463308515,85.99116769795553,91.68711399074105,16.978528445905894,79.6526410211347,33.947097838410286,12.530255125821377,55.3328273382108,13.214131241706696,57.32137436324667,5.552056049168974,86.3223830844219,96.12452619951195,36.46578334164698,78.00446910713057,24.657575868578686,87.63354633947998,94.65447466111013,87.50981075404847,93.4306355328165,21.292727492014617,73.11333255947878,77.96482010824529,37.543861520515854,63.312696065807806,48.18907261737112,66.10603624396151,10.10238720223986,75.7547492984105,96.61640059443484,46.19269973077182,54.766105458659794,92.2190847061901,88.48507653426523,8.774541305457328,65.03860556274891,90.49345506582699,18.60639158885923,32.92388779266332,95.61462793114043,26.01054836234039,98.88363060879962,18.857698957297565,28.343150999298583,62.734786808147106,9.007691132207828,12.917042541954327,61.592494297230125,86.45807624094736,31.737961123276303,73.22663468093963,48.79727266065741,86.34885330419574,19.791863457328763,27.70710255411063,23.955473770989457,48.753108980706806,17.443605770203476,35.0674842762492,70.49318855166563,65.6202988336492,27.735723361971555,55.68618619001773,27.656488069264906,26.90970615830619,1.7827697033369283,78.68487061496387,62.758281359687004,86.08593015379127,56.30195663984645,69.393154273316,35.091057454611764,62.06576457997295,70.22431180606019,2.658901762940058,48.254671784524405,28.07449481465756,63.139076787268166,21.661730357973553,57.03433073420956,38.65170519863149,9.682204284753638,59.22280472845105,34.346892117248515,4.482252652153584,7.67687116380854,80.64915575094199,8.218409398606308,69.6279920917314,87.8189652990972,30.541135094583495,62.185871519786126,51.16518450013076,18.150488650960384,0.990996327996041,70.58053834929122,58.32408764391024,7.264180616505778,39.82110907201596,6.215250372448966,62.69215065747201,86.91830552329655,53.84695006110308,89.19781795044649,79.4543767411052,33.95953740636107,91.00188519649532,51.00058617718537,50.196094339625134,67.78172723935072,2.3367463064267846,75.5650369646064,0.4889164521707734,40.1000094785845,36.80713625191937,38.303740734930855,14.682347457074663,68.71833190231158,40.08484002573124,50.15560781020546,94.5999135542066,44.71958891841783,77.72415184253309,63.25074018641894,91.83007409008894,32.93497892252753,1.7477760041162638,20.14144680731058,97.84965923487714,61.3599081835268,74.02852468533749,44.212408321559295,75.27161315321287,29.202790510568256,74.81854494719572,81.11693439444487,72.43632101152585,81.49109117471059,94.21491881161947,89.91982755592801,98.18759971814163,58.462042491830665,41.239775792686274,91.7274204883167,99.31071998499326,64.28663577489361,99.23454017010667,79.61291798936962,28.3067088689555,80.49728825786423,34.50128932880312,24.351116137233497,37.218831982923106,2.038910185770182,12.242467257368872,30.53168397473165,18.888667170509656,40.31548186656438,95.71343469285807,95.96307640644682,13.225798563316115,33.36750175161952,67.37994588485083,3.318008931590377,31.259640344282367,37.35180948762261,3.3816635899296066,18.92432885689752,49.11427520227741,64.34474227877335,68.58171550068248,39.956704700848476,68.36649891963766,15.609030256058364,71.95712246282652,88.86247007992115,81.88545525671036,25.363452053924217,33.64002089482771,75.84134257693883,54.24680212342482,18.532164958215525,36.42508894658597,89.208379318799],"y":[97.38089926980595,44.73120609322696,19.223620525103524,85.48775954939326,57.719715276408856,21.003582705272407,76.3528062970723,84.76028192916124,50.802083595875246,1.2437063519606384,46.90424540200474,53.51787136328683,24.079649169686945,72.98309527853597,95.51542436105709,41.99418300228528,52.2321617571581,37.95692480747815,61.84739049358884,90.51021632430624,48.550849758240844,22.93160182247528,52.236952114664035,35.11055039467986,73.94424333486768,78.61452656303862,83.10912473466956,20.241917585640167,90.01781975145869,83.23898330943281,81.96387538079262,29.826969738877462,68.70545077093107,89.17114003266545,12.584139854535714,68.8028415328034,41.256735968022426,5.412721635453554,2.0536639027263215,91.93162926921002,11.203745544355293,80.4595857850864,31.4152694094197,22.54290694213089,66.01164565660149,3.065995439687086,54.74864225619307,39.23282689118317,94.68529913365327,9.297411551597534,0.8421293532223428,46.6054827028027,8.374925210608207,58.341592543102564,79.2559313491872,67.95506168521956,68.29152119858817,48.72252356288532,81.282900839971,44.12989476378186,12.351278155142587,63.71997261473569,7.382622860573907,83.75620731145835,59.52190864643943,60.45522716190821,23.089360291693893,39.790282090245995,57.44201515387671,32.28160262105907,60.68184094372635,6.1113011164703135,63.30630931145848,87.48734154450385,43.71585689522172,94.55029424635947,83.51375520583805,97.19047994938643,5.193388155953837,24.682550890110157,44.62028622488307,53.106234338255966,34.647950618557545,56.55193265284475,36.273919703990096,75.94008284867645,16.067659176723424,42.52800970461915,96.80735271781766,68.81094963923825,94.46437690989887,35.10878511855784,88.16346564368973,35.78744929678261,90.76879864661058,53.466218602775726,57.08626707500586,83.05600915981414,51.28136887610123,37.69269595987692,9.393312655844522,48.793638122917535,89.85894811864691,64.99969353442218,52.12324635153735,56.36598691208226,62.94737788953394,30.97595561366847,28.840929118926017,78.25108519316541,6.911930410644418,56.798198292462,15.760787494818251,29.10781994535676,4.305515657781855,82.10746361560399,70.11840360065776,74.25331747727427,95.64032452465412,47.22161709269939,33.23664455773415,52.349515359617904,98.09039057785391,21.780754015518312,74.82422316074948,28.849048857502734,57.702874365487865,38.18688342763521,24.356115895674602,17.871901429673397,93.67643410757422,85.838699223581,18.48915732816694,81.56381995473235,57.37223000196209,62.27834732541713,35.964512070111965,58.84988342256436,34.835147967718584,90.48661036765587,69.62319746230686,2.214987183226691,86.6942776927855,66.2065775650929,89.82712690797638,4.621882189542903,66.50965157017112,73.00653811997712,34.53854759156286,20.229873323481684,43.95514056286085,30.038403859990524,91.34626256612465,96.24276361834187,63.5141655686016,58.14279875062668,7.651507259730739,75.8098103924022,83.62956570196177,15.663273443648084,25.235742298699492,80.78991427099541,54.821726217876744,23.065242843631584,70.51800487677951,97.76481508682274,68.23246964669653,87.38816052627809,42.593349955252,54.09832705125548,50.702492186601454,32.16417826558122,73.25981870454365,19.676640684584555,55.24215138252695,31.30345507661829,27.688456970464504,5.550529428061068,71.38603722803673,44.29356777217141,28.981235293113627,98.32262457624677,40.707371124920314,54.03097923203849,28.815551178223497,92.64889850330668,18.665069744171724,39.605169554869335,86.78546693484076,1.0721579069956855,9.770870583740676,90.95693460416754,26.526730828883505,27.03650636628382,90.4233203525304,11.02819377998644,22.447908415808026,87.49261888349962,50.57534839308943,52.34780422941242,44.066841404909695,4.6955466024863,66.41711807167516,40.87345731086865,52.24591856737669,3.553506437394427,68.95875817359831,63.33888784078976,23.71603809876199,59.645940318848076,86.66252186214409,17.641663288723887,37.585899496064044,25.549865058402975,46.9663200001291,67.38569726795001,98.75595219373432,74.91878089398537,87.2431021562178,6.073065229665664,56.83107567573891,8.29066453313666,80.26651601869092,31.466238315666896,83.82638820208474,52.344196183135296,23.093324475892395,9.378413611705117,14.77557786962943,9.626524370332557,31.34453143282182,21.7268603651521,52.149492339015424,32.41216530378678,89.27618252010141,81.42876566977881,40.8501109084874,21.584539310791406,35.01586567029575,89.29849950610033,28.575227351945422,4.893734082878987,35.36768107448766,3.1854316003997574,80.23038970763103,93.25479354144802,82.04087330161963,68.16391875311797,41.613259051713946,41.65557095558228,31.409604781708246,15.822117141754344,65.9967098414471,99.671259568422,42.059010969368806,4.91695874217214,94.91898471196818,67.81606708756375,49.000972393309205,31.20758311586822,76.82621470835971,96.67483743817587,11.960721211358305,57.60219975436244,61.891619060100886,59.133245771548616,8.877270330953957,16.817814511895435,59.62146234314423,73.99319584029465,46.31684851405119,54.986114722766864,12.520480443035531,48.17007134994141,84.19909042880278,94.70790470965284,61.7880744339184,34.15346508878253,96.81932352556994,53.047158269751314,2.623658437919274,78.19990782912505,70.56602056825945,39.26186780575288,51.312964681395975,83.41003843936595,25.973223779230615,32.188139909593986,45.024741104051245,37.949397990026604,60.86143738599977,84.8916866434513,39.442279432972796,7.153005738785733,22.31960314673578,9.433459314625258,23.25933004772971,59.117644120619254,29.334997927565944,21.05589916658326,72.7727284758838,29.780303160855905,44.01808310800559,16.31870402562543,87.11051850904735,8.516941513153087,56.939144785991246,4.616876566013883,16.359075898870657,96.70857119458944,71.6209750027495,4.095331513300648,24.353790139327337,97.61821046313759,18.20963193716414,83.12623318931013,0.633917713893184,51.57296853317913,71.09748430595589,39.241042173973625,52.84236020395948,29.8562920734738,45.810407802041965,53.42023085720502,94.0526128012026,74.38112083587595,69.29099241157893,94.27594493792512,38.16507274147788,70.78544710200778,30.08985730643702,62.015126939315365,45.961538492934984,85.28655074057274,37.351847138813824,22.381787878418834,28.175751189174747,97.11799575491337,14.254652390813638,55.440846555910596,52.159076405567276,78.69497325602833,31.957762262029497,88.11680732657327,81.33753022235109,4.519688784882037,67.54106662544199,11.650661313065669,33.484940230439996,13.988406892477778,84.34927827987357,80.54234776149212,38.060416233458426,47.80747137051392,88.9016537343359,67.39127973419879,16.490068163690342,64.57478148082659,72.41721206210292,78.08227501394974,49.60000338967176,54.15349634660716,91.07318949669488,48.078525602859536,79.60696310167855,89.48102673776333,90.24529817816989,18.4918273304973,65.93650205368182,32.18836407160841,54.775713838406524,71.33679308834013,6.610776866522472,1.0211899398847923,98.94495669877395,66.01486391882494,80.29204736851739,69.92710776719953,41.5849638358797,66.12743100528014,41.69641215488847,97.95379116253818,79.27549288766274,90.39180287179077,29.958092865087814,32.06633960116969,36.006325142635475,60.05434875196701,75.7230559491108,39.18562221561424,0.9660607275025712,78.2152278845124,27.920449616853215,80.98272046232779,37.06426966265097,78.27318738643942,62.580501015434656,20.8027245938874,85.77492799920475,66.1043138858525,79.1998601838664,72.55891002029874,36.47856320008409,67.33207257200904,72.22007501464155,6.383439667258328,7.089922971704876,80.93080793184825,15.986786426721434,69.71029017290223,16.006128863317105,36.712814053184076,66.19885565087138,9.414812499655733,40.4555842088828,53.86598787236905,87.27614983357019,3.4912279515304845,96.36361645977163,83.08650818584698,69.28904144512686,88.14626308697437,65.01029390513904,93.68532130621489,16.755631374639258,55.42300071886207,58.2042274164002,71.43310864324114,10.325081628923138,60.36683966735465,7.636867798739944,33.05978607870043,25.497513665416662,37.480482744712276,44.449713315091266,34.61132963228237,56.496425506617975,55.2845814331062,11.907422186428928,48.90526087869508,56.31706356407962,31.08909716975775,27.90293838522763,24.336449020230933,34.02153137757021,2.8789562584223605,89.49325176824557,68.38671450442108,45.95444158154696,81.83858586837027,14.177443375038646,40.13886137394034,81.43101354053982,18.332668702643453,27.774427052020066,85.14769093959073,60.32546876093847,33.763398855724134,1.741568449617037,3.3121617735988096,25.928322407475434,11.561373253072759,55.634052547611766,97.28039767237398,15.030298324793169,61.874274873489114,38.85003578514651,4.715784956320823,10.080722884442883,3.0102654911081217,46.296475063443424,7.259011997225107,4.6952222414813445,10.329180307534713,63.54560086662738,77.10218902957537,88.7320873236783,37.398348454693796,75.90237446868969,87.10988225672894,33.20708314278852,57.708212064654965,38.733418388389076,93.77035782061127,47.50709435769781,78.9049939556304,76.6293144468699,12.570354552880803,88.46650815456606,49.915061577964195,84.90880780597251,31.667694010809633,93.06483786544125,70.50573216226563,75.5222378970235,86.75573558408509,34.282215590103824,7.978769798359664,54.03824358973582,35.66432844195311,16.069359690953732,12.765300768715292,90.09376707480833,55.603107317150446,92.79027550017305,19.810748566436676,3.1374067757016455,78.5806133545725,60.793866253495764,52.24441002993664,38.47134093536615,81.03683866727023,39.07026060361215,31.31268870140137,51.78811647461045,91.84342602913063,33.6420782554813,22.012562599630503,72.18622346168185,2.970530616925615,36.68998002005486,80.60178602567228,74.24629896915953,93.81755844095919,68.57259381818248,96.28336666079693,77.21268721777787,53.827547240342696,95.67341093970148,31.841278627355496,68.24403764948947,7.698314400783146,50.154621330709546,3.3564614602988208,37.09273728742617,4.496426198314063,67.01007199517515,22.91191917816603,88.39249051624056,34.11312766713487,70.50566720504659,18.802199147575905,81.46623793377294,93.93686905143294,50.56481799075332,34.607659872266915,6.908103931023135,47.28140924548472,68.91762337289073,6.394583026471523,65.0480726310102,78.93260912833617,68.79502085461307,40.3748847956612,39.86085299781339,14.35184845451637,77.86542018451217,17.224950137669214,61.98625437085944,16.728170726496295,22.170959037876337,78.32728800133513,98.6338039630195,81.2275730837879,61.70546146379201,39.989061556603374,19.170578786685567,21.374051342107524,43.9012092835115,37.3652251455652,64.59833374693628,88.08624896638759,78.98632398114349,66.47183402395652,28.48086107421517,93.05103529856432,80.7374438553435,67.0246700134919,86.23101598962482,50.96522006336009,45.64449929259127,97.06359419069724,30.468659746877236,77.06946841882886,29.137328797565807,59.5541864419704,59.82021929964186,35.04171193003176,49.66114587807435,32.069480947848724,75.5078446956514,94.19542655020595,46.09870402977684,84.46058179020943,5.134538373122743,0.30144722542012614,32.72918434791466,36.28372485400645,0.39994932725768706,42.0358816573024,7.929283137136711,68.88868057489893,43.3989397707343,66.1423933911052,15.433453855597667,98.83936221692136,13.475075167973404,43.58069839386399,87.90958237270509,98.23266826143258,49.544812094732585,72.20119843108907,26.334631409278696,58.72845031231403,77.47177383571298,4.988543406040735,50.18690090081937,94.00644562844248,92.49051745915894,96.79960523360128,47.87489613632216,66.17743392832054,20.64677901824331,94.12208955837687,95.69400395683009,36.92552745710276,33.23408182267457,56.331287702617736,31.267425627137925,26.248348217123883,10.774812471063445,37.62766747938057,55.915013825746264,44.84251174660863,7.709964753050436,62.3989863215762,83.79587261525302,76.8074922434835,11.778014396452274,85.51697978681041,62.71975407440004,37.75628637340541,14.362250324706894,81.54561259006236,2.4621328247272256,77.94007036416271,85.77167044436086,81.57226794840776,37.7251130736702,32.88660846119669,52.12647026010472,33.77460714132338,98.90629584607605,83.78277350992086,36.369138808339606,54.51754855065113,85.57361431537066,48.49793712024576,38.45288989724498,91.92947327949102,96.49155589174082,99.13747037691152,48.03365696514881,75.08912316980077,53.82931545194738,83.85085799256518,27.285021263110597,46.44134348062442,69.90005001122539,32.155440879468,84.6997766884574,3.467856434497496,47.68458798747904,33.18259479014105,75.39825403053672,86.8308042223677,99.35139097701611,80.15603478839176,30.243342921793616,29.605174600106622,49.69252829579097,7.4070674348287735,85.12053563055836,93.35564904043315,74.48525110181149,13.361046009421795,46.969862844713695,30.120180271896736,76.20785387475505,42.32705541158324,13.404437546211756,67.00022359368279,79.79850976790799,92.39154284611377,53.767885538144434,12.645922362899986,31.332202886041326,33.20389571584628,94.21703748257768,67.58940676545664,64.70129871392221,56.846583861884746,3.9215526097863607,67.99552017191112,19.85226227633342,16.046976868346885,62.208944092410434,31.071432654179432,2.645885419533245,88.92551059296548,53.113698037527335,72.05563244955539,59.86927470658732,6.303021301276535,15.109557924540395,58.47178876559187,17.241186116706608,77.27416525695912,83.37229134474924,56.32946106699207,79.78171567426814,60.20373732323798,25.710960032689513,83.29813222254148,82.75002892631979,33.78795485664659,68.27590694742224,16.569563628716587,18.365554469793878,94.18112608238368,83.05976343730069,16.989146910154172,67.5319827243609,88.80466342229994,42.990347550201214,16.05659511052422,62.52326026730015,75.9326380524028,97.58525556467548,91.33473522958407,75.75386762858423,70.2215214695989,25.793539680949173,12.347716667648012,89.61989376707058,70.60899291135921,21.616825267249283,71.33602996212475,91.13321425769685,99.00412123363989,32.35456086209896,96.13091014254039,10.438656576305505,35.35120498309039,37.80079783490991,87.27912335039309,53.736583731892374,50.920319633367384,96.1697981948307,75.44945979579617,60.050326022827335,54.315916357737436,0.7475755242012494,46.09197546109179,17.779110440030642,42.23974141956721,72.51861823879406,63.26981500712044,36.44451848999412,27.93772811904641,35.75392991322624,59.17371297204773,74.72873243588784,88.42788663978514,96.95351117791596,43.709191825108576,54.733865950017325,32.23304713707912,52.44067137086432,10.76234621266675,22.08133188903174,41.69219406403758,36.92078888780065,97.29373988570381,71.19985922054956,78.29802974222156,89.34199962546965,75.48102304602914,41.97941371694246,87.48661030488684,76.67140992111887,26.946684519888954,8.677574759699757,31.520797419529256,8.590005085929652,59.344303951167845,9.269184324516022,0.7810371072383249,24.463890656827637,38.4276785969389,49.24241890642569,45.41566169404852,74.10226536966258,6.703821574658598,22.550049748552148,88.28405000557773,13.416812698953883,59.010919149217735,86.03339735093711,74.81473065691408,8.033419409980558,64.43224678224055,60.233234200024356,38.22416405038509,37.561805316127476,17.280820014959463,46.88147408353394,6.291179326268271,97.92046844531089,23.39646470158033,91.9646271314793,18.57956971150354,92.49008626623375,27.32111712840809,57.25358668003453,46.954008415674686,21.727162930365118,46.167759338059724,85.68342294614506,75.20996402755013,1.6348025103865127,81.43913566481322,28.394658854492416,13.879122450382864,2.2018502690299924,79.79936386808035,36.93310512100858,13.285446765782927,12.851426001312971,51.96778207944474,1.4308953557450987,77.48567790779119,79.47750546156996,86.58708154960581,32.62700073599045,90.54633887928205,72.40502323654403,75.67997731650753,35.67031837901546,28.723171448181017,35.51961102853332,98.71388932533849,83.32417895122454,64.52343374151233,70.76921969303037,15.885127683350442,44.70709215776873,55.90588044722888,90.64007182977242,50.87733738167276,9.604623543773094,92.263697391208,40.513993282427364,93.36758593246498,82.95610715091999,23.644388348730917,77.92327232566846,71.58173534636143,73.89094333522772,23.864310273560285,39.81018317704148,5.845858564255058,67.73829027683216,70.60773650718832,60.70526514561586,9.789180305879464,2.9183046567477278,10.052554062816432,68.55574226178686,88.90113159604353,32.3417178831254,73.67700432750719,3.228943411443319,32.79360251963836,16.127324524420118,98.85666644585923,13.355709496472167,55.364881628018225,33.80997807953361,40.06522759170051,79.53596389660711,91.05471275707238,66.01332961217673,15.925231336334056,89.36134792021026,12.714689823807268,89.54936824063992,84.46734827754538,52.45255652859247,4.844371583529039,54.4397655421159,66.36134919361108,57.645985067474555,29.48229840614215,98.27913739349874,94.76798291228683,15.242018057384254,35.04665373217468,2.775263639990222,1.708876352068922,29.35186848699334,27.866515746099285,77.47726888108363,48.72817793742161,14.478524041323737,73.76543109021767,30.267090752098692,93.79164256425338,30.52603060753598,70.74701966318845,37.64546449256735,42.71689871616823,58.4452711992562,26.720408755861925,70.1287923957727,88.93323928338314,56.368917322413935,0.465111423569875,35.5330150104911,26.47249770578202,7.588646551864564,41.67725543566851,52.012107630076635,31.840645055136463,99.40686424848366,8.995631461513486,7.602660389133709,51.804607519998434,0.7006890504709928,13.19007026356429,52.34019263977828,49.407650657002556,24.8502011001822,21.48917936404763,85.58716508953387,84.0227130641091,93.20468503615773,79.15830159263868,48.50198719304258,39.81001161765912,4.399295123913216,62.704972481941134,85.61448568031209,76.43670676236073,33.5716899635593,55.00086028284702,45.606531641578044,35.4565021077103,94.43392148458994,68.18255887423402,47.25393457288703,41.86831468313494,7.074240424535239,36.93013361335935,91.67455636125983,55.955067856920074,94.59296439013643,60.72672461284295,17.812990757651615,4.367213867308561,71.984591188415,79.45717101006025,49.75002360878741,22.39027128803823,78.91703590862971,86.7699938928777,28.410111297494932,15.323869340466556,51.33709830102803,70.00942654447006,30.245296814062872,19.38354128402654,93.94243898904081,98.0668215682626,53.923681183803616,57.75693415715809,6.972298868255821,14.555971359061337,1.3529323200545451,27.336754009010058,44.340460162223394,55.4669731827955,89.92255583817884,13.005770460939626,46.29226002748767,50.23390195501756,2.8628740973524303,39.87826051352522,42.95692826756906,32.66570388959109,56.49458527747437,92.43134109438391,1.949800179361294,65.12690906790857,6.357385235175139,35.08564752354012,7.642633417929645,71.70461736167904,96.36039204028434,87.6135709429152,91.61558563172818,3.2750258523601583,85.84556583046759,35.19487526333508,19.81262679886604,32.3921772460545,84.37471237663227,51.70825267655581,45.202709331508274,79.80727107764793,10.916525520240484,87.89013101776038,78.68414858191036,35.231738013026195,2.5576931442605866,13.262801008231207,61.6878397234747,57.262244942628726,69.30319369968862,9.796006293911397,33.13784642548849,32.59387560203826,41.23809956764807,45.833229299231824,60.09921530013097,54.26327936237379,65.74924362642848,36.90823264020202,77.65026465990393,49.590749811598535,24.926385404042627,67.42705181314795,47.60173196421831,17.232785537215545,51.831995628357916,6.704403453224317,1.1373974356184147,25.774960401134383,2.087302453684803,18.01752859222421,74.14726489043952,82.39452220664242,46.00438651339479,2.4972164508672123,58.615024554324194,47.380785614645845,63.00523103275179,52.20014912365072,3.107367127161176,70.93274594948433,39.72782090769874,74.62410485558443,96.85881211833566,78.2258492868208,65.61014078984896,33.26592924637184,40.30940596697192,49.84289882243782,5.609075717859935,91.28002265069922,65.23930167859024,5.006104224802044,38.41366912079334,84.77413113859889,37.60030610463737,65.12726191899354,74.78273541364024,62.75063074142447,87.75215998778341,98.91814213426392,22.30340235077226,76.79360145886092,74.91831142509743,56.31875096289568,9.756034126549762,99.13005369850158,20.14375283965053,83.61477667665946,99.38079555607689,96.85978831314172,31.582277682588376,79.94728500278903,69.47810953303716,98.100420800347,15.33732233526387,77.50106099370369,13.428003775339725,19.46204483261116,33.34350402183387,84.33559339969132,8.508726367966801,34.839659381505136,3.09768455868471,50.69302906485167,77.46809416599635,3.962885672790417,88.67777825615167,7.252601642567402,64.33733912164618,2.69973069489694,57.56877154320358,40.35209386626348,59.16412793664715,56.20014570402974,10.127677675548618,74.52447969604398,4.631810117434043,92.0179100670646,67.8027812226606,80.77414027351571,70.07877107407839,40.14156887522561,68.04809900474605,78.22216244248699,27.775041454417547,64.08694617744779,0.9934111562321934,56.042095141439376,50.31715573408625,5.80627519275978,56.44599578431284,17.257015766995742,3.59521434276453,77.14298703500398,17.576082765014135,77.35948187880896,27.53776775660588,27.692730502749274,19.525118982782953,99.95004417745064,9.025068315199203,14.92967995290716,25.718211412772764,97.32253913823237,84.51699276461203,7.368710191683803,73.53576901021881,72.44881167373293,74.182636008979,71.94927587569927,85.34222848265411,92.75519215947755,98.39579694784602,15.36423758012332,14.839062821645044,4.601380926386578,76.67612859184395,31.62251550722768,34.33125077543514,77.14132686084754,99.3786156019069,84.13553876427878,62.44858195575102,85.30189249272038,48.07990302842694,68.30783417232621,95.773632304702,19.626976290844244,91.55243567293722,65.02809087045529,7.699259295622085,61.92257685429112,57.01947748652538,10.915966155615342,31.607850813771922,22.64691692193712,29.535726696448872,19.3242494051037,51.386550950131536,99.51973212406884,22.359530455341105,14.878635960319498,61.75534901166701,71.32300735423439,24.60146479559241,49.69308202285253,0.02773820866510679,83.8800558658344,0.009441803218246392,70.90993117131438,94.04532246912284,68.73069224994757,96.37166959070622,48.41475712024388,42.414394813717074,45.090729464530185,17.39157300984481,44.78937005858975,47.47249165167051,83.97705211560319,36.13646941998601,75.2322681349568,69.30116192410867,43.20768377654755,51.46507379605848,7.223601353138209,90.76500328357722,3.1061885582583826,13.861978286510812,77.34327550990776,18.493200837743395,22.86447183625241,48.15665542334491,12.235516506357168,73.838117033809,76.88724446414479,37.9706457043969,32.67731611767126,95.18053750184112,68.6799724883742,39.08491889117971,47.01594967171078,32.17282755618259,29.644917913501356,23.146585608293037,22.20208649959495,69.2049240479583,33.37619653553767,80.2806442077723,5.889316057084038,34.96738160151065,56.67897847198417,55.13454193140374,5.791644412385044,94.33136734585659,29.138503672060423,99.25883690508847,84.62066853306118,1.5567926416991562,28.46818168395664,34.68893300840088,58.27690134115684,95.37518053906628,53.5065092185632,13.76075491663251,42.90427483264763,8.18198020928007,64.59956994865107,21.527175414480602,51.50432776872312,40.192330931472455,57.92729852125832,9.821043453953882,95.77516919775042,26.713086277269895,68.11343806484639,10.334291977666565,80.41521048380955,44.495531282531665,56.27248809338958,44.500758244244146,70.93766102461008,3.2661329181485343,21.977203261771947,22.172123558031487,16.7750135077925,38.03987236299102,48.827305005367236,61.77533477433549,25.381280563488616,23.16590218870733,88.74408036842755,66.44580660669517,79.66677299395208,3.104300208234123,62.22141208459513,92.01268722793473,99.77060553769047,10.81594306272745,6.6619492998743475,49.063397693346424,89.6677160170934,87.94760690760197,77.77867579831683,36.32261218193188,19.43624016234412,83.59215100780459,34.32944296889795,88.22127333505252,92.98011850818084,0.7797588846418013,20.344800529722228,52.40918007776841,26.8960669412861,2.86100592010049,27.516963518428838,13.449787699562709,83.28697840588418,50.97644509412424,54.957069002033776,65.71607667604488,33.70399761935291,24.736842488774958,43.26770436450214,55.06478531254223,77.96154009084846,71.04789433465058,51.91525031777172,31.93528356656683,49.53235200498284,73.44375679362173,12.00420547208606,45.13454536559986,65.22439266496437,25.131253323687865,97.92929011985397,88.87981631925102,72.78334104924899,0.8305457691147766,58.93119425266017,84.28145828640795,42.319269658974854,62.30582050981742,23.01315827342544,53.83540892841311,36.706061554902526,33.258529764960876,46.831952324117324,21.355027907320355,22.378044861938196,33.001777636436834,34.184246862411804,1.0607872063059354,30.265006195995536,63.93246716534872,57.18022637758645,71.13828351673736,96.65274573692876,3.3748603354310958,19.40529980997393,82.00101116134697,3.4852800444055143,92.22559695659753,39.67321165230998,54.052981241640076,71.97632423935487,20.093761467141004,44.865055825821685,53.77809115605054,27.693380063427163,68.11016228648081,0.32652012325044,4.7516547459396925,55.439888795769434,68.44185346930057,66.76322095333407,87.52938794244844,80.05576343730807,54.83762142327143,69.20916678368899,13.385523384883214,92.6000672792061,43.252867805699445,83.1045843361692,52.108131206220364,72.47612311927497,74.97445229435142,58.360308715805665,92.14420598583227,90.73171147256431,62.596365992163804,31.100484539021977,36.30396212738669,34.99724637028346,38.22026766861229,30.502424129700678,27.135932081670756,14.614830011117053,33.947123118801414,92.61629863464866,45.77122831247774,15.387232526455929,31.09474106668859,29.514790723124428,9.38247405156667,28.507266889984027,91.46490085392495,58.22816196301665,66.93058265011128,66.40467074763107,73.13051964046046,31.612881144530746,83.49975858459612,37.590445569348105,24.84091566638765,20.41546278634656,58.229101780223736,43.07623642570321,34.11630346222486,27.068632107009794,81.20440455352339,1.2458030101688777,17.782866778743035,42.88701256552236,62.16890832894508,87.84003740843059,40.86667861872392,74.8105093688203,53.86086770938825,88.05268549959581,78.36034766499925,23.18255977050616,89.77974410284592,31.23959254279295,39.53486645430955,71.36460886637393,55.66949168198219,84.36885824040881,81.59686840196545,64.52626131912851,12.432934710221133,34.334228294611236,62.414659634405886,89.4138930609271,42.47522053191709,44.09027926164403,84.23691048585368,37.872446091960136,85.5219106439997,47.577961823937066,45.52297241862813,4.726450972945728,72.38781106987832,77.80023817525688,78.47759686361285,91.20929628499044,77.89725565804505,90.36935462655957,66.01369655093016,5.951598827024817,90.44038637860157,73.79247304997516,93.85063019463273,97.86358578969345,15.859926802386825,85.46788641037196,45.172157424843675,18.668565803878,73.18831556343926,21.789984863104817,26.334689295921276,81.09581119802122,34.76519610757198,43.074416135620616,84.532063005662,10.312077221575777,82.09729328871803,8.278881305669062,67.00725742617098,66.15248746643803,53.49786078210994,93.07379281849138,24.265474793254217,71.984149982852,1.7109230219272242,5.079547910353799,0.3068542447366318,43.49163275368985,50.4890965303321,19.75729313269099,32.30311462467503,46.913172395465175,81.27283878400495,86.74042994858898,64.48054288648379,43.70241990281593,92.50289783969976,34.65361922069583,28.135320709120638,23.620244378396237,52.21632537366212,54.61439203484454,27.71610761496841,13.21731152537281,49.95394583801892,61.80144298643974,12.490062402743963,6.016748002956874,48.094535637778655,15.635937947032819,78.41972987419281,12.49409400855913,84.4353624896652,42.51272372553508,85.7909989425866,46.14009656778685,48.42937504423565,0.8122127471041352,26.150317773119024,86.93384364550842,10.583096535693548,20.638207827703514,86.40407736319938,69.45097855606619,63.34710477915467,43.774141863648495,43.408914274905754,39.84163744684154,76.45120754808555,57.428513055829434,80.98753392560174,46.13274902789328,61.832974821867026,46.71558924748393,32.708071869115244,4.483254052924224,28.543287411496433,98.2149037411615,87.14632124097994,6.023129045104458,85.91065595354954,3.4386455625862955,29.72904379356496,74.43680050403295,18.60335324145317,6.8218155661858955,76.97119530400826,68.67296875688854,58.998148538609975,91.64917952538703,48.37145738451708,12.930096146020908,42.16438327361982,71.85710920166954,88.53836587999182,62.090534639326236,81.99533141989194,48.69123096244585,38.476579799500264,29.26154018812722,54.85049864389263,63.403220774046545,58.48498704892972,30.827836769732308,39.615315922861974,71.08597841984412,45.48879145601901,71.70714018252173,90.42584585212383,10.579363938995245,99.28912872734634,9.518976169916971,77.32979517575444,44.354651450821805,14.001397704639484,31.574370347823542,9.372617323498433,42.66599363941145,61.11241261499794,26.7451340868601,46.22028026719111,52.30389352355866,47.83562854529782,49.96687513298232,55.8257538271352,67.41448230325986,48.78121191834121,85.94850259008369,46.81593259351695,55.40671030330304,41.076395541975266,32.939103034169314,9.872069557530361,16.95474760814507,28.24466929918481,41.441721982779434,88.93005747610697,50.36887117706552,29.281651764629114,77.45408176948409,43.743911009535154,5.246469208583959,94.88283210447707,23.735567789727863,94.25661205752958,34.940628596155875,6.457328456064926,70.32455170004307,41.059896285261345,47.2721562524785,80.1773921191541,12.152229490648514,70.6468399499991,60.06999792397115,17.54291312644478,35.305704872224474,77.58955637062702,48.03495642743769,2.2298255375943987,13.568944741342538,92.47884342438503,78.53587038544528,98.72379877957754,52.755357029027415,83.29742748161023,81.37785565257079,40.601061025578446,87.10411024501646,76.40312882276285,9.542441506680532,58.63202793315849,18.783710054136282,60.78253216044469,45.28216925774311,59.99255427044,93.0132887903055,37.63731395113735,94.5083917059216,3.6284198338306095,75.06217816549162,57.82476155827748,40.23200081664447,70.16340234534691,35.4018576395718,55.0417430341202,60.4821656917199,75.6672635673004,15.071680004656319,45.15010819538669,38.573198026497614,32.37482199708657,18.90692313015847,52.89389256064661,64.31900146083876,68.09324530233243,30.23255762683058,87.38829817307867,31.43669492923721,40.66224767513474,3.6511206983112054,61.56780660477658,52.68462662110608,27.31539304834828,87.10630092674043,5.358221124682794,63.120685639734376,58.156915924482234,6.926207947452568,43.41716063096155,78.48849691028039,53.97309295562444,21.064936737284167,56.47313093704639,93.8502178501761,33.38255184489376,98.33504399147553,29.57544525601854,80.54448834398215,19.726841849054765,56.05860118427316,47.34893031318387,98.70408471152578,46.82560298567725,28.53916183587677,62.39296491659414,31.40868819278233,34.3634610413639,79.50712350696404,15.223752068042973,73.46391331343806,9.894682982036528,23.635119190082467,27.435910415188925,94.9193687597196,83.57726850157027,23.006822153628082,91.0892797201347,21.618604006316854,76.63253300936628,75.91010184813067,94.51955074817782,95.16351130414597,64.86526429933043,94.97838930622291,18.190211993947656,6.426258049894907,76.57691323795406,82.30783604992935,79.79154829016124,7.755657161003149,12.466113200160267,23.30194613038039,81.46991329132034,70.71758248196767,85.5031507518617,80.77449201638913,77.71140742155144,60.38120445078624,99.08949003433143,53.13218482562838,60.71450034542249,77.31344385537004,38.157488960436424,85.06459962597806,30.688975200877156,87.11176984444386,4.701161192402803,54.91672412003017,25.511638644396438,74.89302951604685,91.2618710990813,6.1246384821829984,10.518164518697626,79.13168002107992,23.671944394681887,87.41247626893117,48.08678843502157,50.71628690538337,1.567870359941348,31.39324396874016,34.33301551854271,94.94079330594472,4.014485009794222,29.262616760614925,25.333800620081494,39.91616600415775,24.704782678132663,59.994929098679606,94.18032124267648,35.57609646234204,55.124954299423976,89.06715994818185,20.484682933022125,48.89429706046887,37.46263261892109,18.546645472439682,76.24697771755132,49.25951268125147,38.76345172448459,85.47490332186317,17.584619775660215,84.71075665532771,19.96447161825705,89.63966185597222,50.72428936028479,57.608333116453004,69.65445027208304,35.752345863629365,0.8660148118039279,84.17660492323539,43.81757108523501,72.17895039860437,24.63577950983581,92.72243000672047,16.440782685405797,75.98571980477858,58.93352457942718,39.16749770257627,44.42848169498521,74.2199395138231,31.49660148248493,51.70303668823074,51.89743737472035,98.97395075762554,65.82782760833213,63.658122916152,61.33283046964695,58.86242970865384,19.606636650928266,7.295534156042938,57.72770399310583,65.35182375398968,10.738384489728547,64.42225252593141,91.88077265551438,28.941301433173916,47.53963739815769,15.41553287560118,72.50536045809876,1.003688616837084,92.99488510085821,36.450419845080496,33.0694012492036,81.85980408954238,0.9678874131531789,7.488175849709111,62.596328798684894,38.494313828664176,45.677114305523915,97.78897476569765,68.84248541420327,34.55245904014343,26.47645941622262,61.4463162653263,70.98941201434532,4.277363906187515,18.329099531233005,74.97405251954847,40.66902402316146,92.30485727865704,62.15908351776864,14.125737022687568,83.64449869262592,54.50725095979466,31.058631578537764,60.03812361543481,53.25552023770499,5.433162441105588,34.62409916974964,70.39244308094584,63.32814676546905,71.59388153021168,26.253460480166744,61.71392112438263,29.065876798017865,84.40135434123312,92.13873470442421,7.269769456043107,47.423442490666986,38.05234433181168,47.44967712605537,42.63484799888067,21.400211785412537,38.99425258069894,99.87257879618265,55.3664269272207,16.372950224972314,99.1633991984834,35.47769790654287,84.54448371933358,78.17180862107436,97.53203325798773,92.97928037237493,95.51772493267372,23.475739320660928,75.75232392867399,47.37151650947863,22.65332115009404,87.23462799056158,16.711268264544856,45.465546817874305,55.896727927738546,32.449805392328265,64.47922092302626,97.19271331456068,89.12861201794388,58.746583625644355,88.35021632653837,51.88946200535075,75.56483254125507,57.84913453781944,91.03379694892243,55.135409378326216,57.17681772376431,48.7436873056453,98.40548039432424,12.447324557902672,9.995871138136225,79.00510802276251,37.551419345030745,20.199607425424183,1.5563160028496115,27.645917998532177,39.93157639706649,58.46089844828961,92.69101429693698,40.93881970476902,93.3505783527853,74.65271819730826,19.227337973160008,81.39981507669147,95.65839267048692,46.73727879550527,45.7937648432433,84.85253961931886,42.35421492244925,41.19592348187891,5.370635201904783,90.48181830655084,17.23223937099343,99.09675614982866,4.219002960697837,16.526380127841843,24.16604347948016,75.68136350298767,43.7113812931934,27.546396747613,3.901664868108623,60.030469022723054,69.78486084930634,92.22791435816491,59.29642095663954,87.17815016969072,86.10266837583576,11.940456750109718,26.36481584660745,95.07765228262586,91.5315582224762,18.622462097747672,66.49520318604395,86.84847419044685,40.93819922962536,83.77929085857681,92.18117301908099,22.650850287254343,86.97827500116158,17.269314919732604,99.64494423144437,95.78006021553811,96.93122999684128,3.6871489635663224,44.637895024758976,39.795218040622515,47.273201195246784,66.82324463062848,64.24603041857586,70.81139780389559,56.92266059116158,11.469919479229794,48.63656675301807,27.786090199798984,17.55387452373106,29.627983912356004,50.03808445204378,89.9631857539888,48.4830604826255,92.53886040632464,44.13389819984642,10.805502489088203,48.019213844486664,63.812479503727396,98.13904817570861,32.86846391376687,67.91468304997301,71.60451821895697,98.11928839869829,1.977741342861128,57.23654555408887,1.6959925034477297,2.6016489410352284,80.23174328733226,68.9731787080814,10.89935655052069,74.93096534767662,99.21374884813137,10.000497879619385,42.371585911007436,22.350474053094484,70.54061282551358,84.81530191411969,6.221970055561155,53.404942020820926,13.344545484648151,15.57308967310773,24.409383879613465,6.830235495086489,38.010495800220326,48.257226888767235,6.187572791569485,18.01902189376021,86.84018556783042,90.5433691010676,42.194517440672605,23.319510142540267,44.49332492333414,50.19087077248267,48.26077660015601,11.264293440683804,89.0554627176368,87.09345329579399,66.63624850081314,54.6812494816054,8.50138401235161,51.26833594208012,50.75192476485003,8.992539690350299,17.609747048293244,72.89818178731929,42.826316346893925,54.98065431637248,53.7275034035083,73.53772232562315,9.426219568428273,29.943841909063785,45.02866870510195,67.15159892134977,94.58215175992083,75.23054943477105,93.81468301788868,13.40478866046142,17.572603689470846,57.00691760706575,77.26145574109165,58.1473446124721,24.78756067561013,13.312941569921543,23.799494245253562,19.405143252803292,27.917717687567965,69.17215373283906,98.62916137403509,2.967150566354504,31.847564435489282,4.746203625802781,92.00288878746754,1.2028133014537201,11.783754961702464,69.64744463805494,66.15712612239606,22.84141483457802,15.43583539593275,57.37318908568009,76.6101427788479,60.00205057028961,73.90182383212183,34.931786243588505,13.831511893965532,70.71154538785834,8.016081873553071,33.42881918836375,93.41405535479251,67.86050201962068,24.5950586768775,41.88057314328872,91.19320975002101,65.5538984301149,88.85879191058338,94.76569454607238,46.719544668805376,18.80325702892466,84.01963869539907,54.52166035925274,84.65207574414075,58.84506988289259,45.682771629987016,90.626222586006,95.01916333382705,50.71071892704477,5.829899790908232,1.0062124854891885,32.95989020310321,59.23495037819001,37.47566335240635,1.8796723664049941,77.58282487745048,87.72907940135157,57.39817297457102,62.01472762500898,34.25761777588702,51.50344101498406,78.15224780930033,6.9730198193334925,78.99993625789728,31.314751173615097,14.237541784512153,99.8129755420198,1.5107364777937726,54.95264632341864,34.792211519627884,64.76866717755775,83.37624725387954,21.40134471598172,62.7550003750904,7.689533274059757,10.09819111805551,54.64661691116066,44.395158662431136,22.246436655961055,69.38727298069068,96.20733834748751,57.73220536391522,86.35581057670989,31.881983514837586,81.89096639835422,55.96144673419254,89.43016236184243,51.61836313316848,61.990824606710746,37.73570257693496,21.418388604724292,86.33986134887137,65.90141479241575,25.50407808140587,3.4744434486920106,5.863876798772639,68.83640052073225,47.1971096709964,61.17245572938464,39.3223310952778,75.2971796372246,96.46693640720424,40.34492064102554,98.53141197014499,26.872907507773313,28.032339170392785,83.7989050229109,49.75662581041108,12.388496158064067,14.623888890043146,9.187298556811674,62.55371437052006,33.51720762469612,42.48131066166487,85.41191954530079,22.374397047911998,69.88049005752156,79.33402038411704,90.63703725659009,80.19963369407738,27.4502032879562,29.436943533830263,68.1107053467592,64.84840145837836,34.090660692272714,1.8010749005753945,58.96861060550842,61.70918330016476,48.64887498018297,82.95764986529443,98.77423879681919,39.11418779565431,68.48683861074876,27.00133647126912,93.8750687955656,16.42654912824805,29.792324061301912,50.610698553748854,78.49789964035313,4.905807024977493,78.00031345853081,43.04054350090154,27.249448243184414,47.310808714348454,78.06319504001033,31.595255838582737,67.26239265179683,64.82537329189336,37.1671431989684,33.408308811850574,4.428583852306267,53.411061806400404,54.86543209957146,58.395836750680395,17.81531807841764,76.45566478547649,98.08522153899104,94.75898451936357,36.74985651763363,14.481256605016856,54.01141917295119,31.72271520925638,40.08046488776982,53.7672449159901,76.82491131751374,72.51912532248069,45.683867055004754,85.81419580116096,28.497210833178144,35.54398760327274,3.640169454430675,32.865611115893344,84.65154509996633,14.522143126530251,17.803052142825535,21.114235574527072,88.59215058140127,71.8308608900532,26.52764319203168,99.12967272528304,55.07263464886013,19.016127224952672,5.236136250071133,11.007170425717305,89.68899472951684,90.28961831972751,62.32495280719152,16.42054805196761,79.37267535675677,40.64822425152842,11.08213560429434,94.92505415042547,19.456934194246024,39.03797664589222,43.07562497461627,74.20347958390957,14.266664306223953,70.41129406452026,81.53098236999755,90.62724564245552,1.0272147039345314,57.00043587464418,78.34926756370557,81.06994699526265,10.866466129416263,81.12887654415515,41.263454802950314,11.32161741998452,50.83569763310282,53.16962336456964,99.38673507503572,94.78665135242186,98.8561833583625,98.20750629241817,9.841440247128874,52.19075763559079,85.34026545331248,24.720306742012056,73.60696329345856,44.33668781785125,75.28541389446508,20.984508026558768,10.871144431977553,84.0199534016677,80.63265007123044,32.22251908878213,33.207358915360096,45.67890385308597,95.17727423225753,21.233720746733596,69.43254268571316,97.96366247688802,73.18310862253409,4.437848155919399,48.797240689820754,15.85290845115469,99.81004610442352,7.77097229781063,16.729030530231814,40.05583686066162,59.30931069295228,74.642923341854,11.734427223080813,26.612630390207737,24.64926712154405,90.42070320156567,62.96391409282855,0.8232005211858184,52.063808275510404,3.679908871787385,7.424657758969577,81.61950583792613,57.608287315693765,80.91387104252547,92.6422165845189,60.906582389957364,93.50069804282583,86.90303440912284,1.9555323711220818,59.688375047066465,88.42735371098631,64.9954954333922,57.48173115205192,92.03442076331577,44.92214257006245,98.09197000531888,75.87717482237935,34.68677160907464,77.68708516813116,97.8421803208358,44.10110403425646,26.354612198105563,33.41667977969991,55.67984679944177,64.34393203883172,79.83177906091399,85.26050373479731,65.6211007498442,57.909067993241635,14.452854600400356,81.11888201769901,86.11430583663575,24.931374926948536,30.36623333067968,9.993387372961472,76.29442431418796,90.69265217098535,47.484939473951094,88.50753441400306,14.212069599192878,31.56864416526599,57.82316257575969,97.79236978695907,74.50745820013579,53.48172558122566,58.57398584947623,44.82765602205569,11.618951970310754,83.34497426718936,64.26759920052308,65.38699284663608,24.619878201402067,33.45112964766983,77.00700079926222,69.65023318271868,26.224154512871667,14.344069113893864,51.319592382728786,34.73100061478791,70.55570752107184,94.32841325957793,10.35737072775278,21.593439615766297,77.16549953812964,12.293590382580344,43.474438047926476,45.44933380208134,85.32576782524198,45.27560348861359,77.01453630886543,41.06557975542026,94.67565357018422,73.82218824453311,66.75918987189338,73.45254085128467,37.93716389444546,70.86818849792223,24.717362633516604,10.86924643038596,1.1567271923851985,39.26130699735788,6.280332245422182,93.56405756786681,6.10428178974175,9.244158649436617,26.63849967988725,44.29407205386213,15.6905546237477,15.349991560736365,54.4434546348956,37.95991059064996,58.294140876507704,61.7964626147475,57.36970216050867,24.882496238808884,66.04089338097472,34.652041875584025,54.66910209824888,94.02250359641108,39.9080231736875,92.31465631586144,55.760668393521684,75.08737095109436,20.91276590643558,50.69869040542626,3.0907543690578465,59.746530801041374,85.27698522251363,62.751050798641195,44.630129519585815,95.85631665513205,67.00147690117193,54.77398946470571,2.2376924165791734,50.74397918820729,96.78255480094326,48.182663536592905,83.54186804817927,58.42175908601994,91.24508939311868,83.10119152507778,39.87954281694659,58.587168791130026,11.980307794698152,76.68381055241282,36.681707767195526,86.30704371199805,8.968409584691294,69.9210952849423,64.66386305421652,57.42968631512814,22.961831302387104,4.454191612561242,33.994536244973915,27.72214742640863,24.78831119580055,94.87380611788868,67.74711524926592,56.16620856903661,74.79521451462828,97.84346053691296,21.77689352047174,56.17306770920438,76.16741099925137,41.03273406181533,42.268396022272746,38.630178613258224,92.23793301787138,87.78900645690109,18.30059246990482,55.01671083683476,37.54691376249028,94.67628229953841,5.055328069223608,67.39693351569862,38.524688686564765,25.60625675419531,25.165654671046266,67.11984434004502,97.72165590604405,9.717206883965657,68.29385479196672,29.103371085178832,29.782294763856775,48.172716281617255,7.822945596271191,62.100360284489334,0.2793685328633777,78.55233571531134,27.912625523803158,0.035206314863045485,42.48624058746488,50.92947862749708,15.941114280587376,98.78765912042523,59.995129220713864,70.93831623497469,7.903262618111295,21.26816182338741,26.20733126473358,99.90331808246971,25.235643405084605,65.98913048503172,15.615709613947237,23.801941555014505,53.29483989481274,88.26487834297254,9.333654587058426,42.661718552596724,43.90197444911757,99.71387169454913,49.69710838187606,36.60246656791983,13.610270027648264,27.962181895266824,64.84146374303467,69.65445371499527,74.41205827142761,9.300400231897555,84.05050987391745,43.118312337583674,86.60546744694145,67.98165873152278,62.94469915265481,92.47062143723387,32.78603515484389,54.364239538592905,49.865575086758106,74.6541845629074,1.7747815749009521,15.658135852127586,19.62271336117314,19.997807697796468,89.95944056201225,63.17644609335756,66.49451602969101,13.97395294011835,68.82503991268901,41.207410054002246,95.23558917019767,66.82752529342247,32.910003531312306,66.36251765637621,44.592755346523774,10.065023475456547,20.874246202471923,88.66336493112978,27.54208706267802,93.43981924083931,99.42379199293366,92.60263535795234,82.53759341938832,68.24140067099138,88.23069418886914,64.7908872085733,98.20228405132838,22.973651637708702,3.907442062865074,94.13120374147539,63.6427159711616,99.82604526522091,80.5702621441229,82.066326968153,64.23082958258546,39.11542070514419,81.03681315551309,32.221180227931434,99.35957091156324,6.3648139893861195,87.6932789382955,50.6274397557881,78.5079203285795,64.6457314992823,14.511187054887753,9.910486852570044,55.434805052265254,79.31299092014808,31.582174208197287,81.65457677715291,80.83314424215456,46.045890184538884,63.01496271915742,58.699806824017365,79.56798405582116,47.449841971080964,79.39983641060687,65.38128840255264,38.43928529049296,58.56990628593379,10.10312506375185,1.4017294666786695,67.10269847283658,44.06375943170644,3.5923356490064173,37.41964521165596,37.95826586558086,21.457927796557165,57.74176978768721,14.932094272166497,89.92272653520243,75.7242359566398,83.57399518277575,25.179863355498767,55.758489021223134,77.02433270672444,41.90374199458279,21.046093680167065,8.839311240915503,6.742468161813275,16.882618585418918,21.714650722624075,35.074028687249914,63.70794500788386,33.75777275078126,87.65731458564416,63.71522271877437,78.4666773378028,47.645696802162384,19.71997642911687,51.62183177282543,54.56370039928407,73.03423878025711,77.67208251809511,23.791428646743228,17.230487720981024,90.33599648008955,96.90983631819651,1.5165423341019446,84.93623192301882,25.09917037682021,46.63845049947229,68.84365322447965,56.297276439628575,29.450834893063828,93.32699073636938,27.546758479622635,73.33669719397642,29.062880317521433,10.992963964189851,85.48488165146131,53.528410605821556,43.346865906881945,43.78683874715615,39.33911540595948,88.11151070818823,98.56783892686828,82.27934523116488,6.4471142120671505,30.575342893531143,23.827155889148134,5.182196883369583,63.12183595831806,30.84759347126802,10.437187544369342,21.230262957546152,62.007068269071674,15.281701812037307,40.724461759611295,2.5349209410764018,84.95574908219187,27.1073675337946,73.8863699454336,34.703457517983324,67.07250198557881,93.34478741361342,86.74663575782186,9.848902277041416,88.69644557420156,68.86967556766736,92.66168020070904,86.10566171175893,60.01795563907343,70.22269911426866,67.22733596432626,91.52531831483822,36.05900888079648,50.40977242465704,7.691769263124892,56.75938665846949,87.72916329883344,97.45017217841723,76.30804488582834,53.40391396157851,10.174004818113925,90.20056956635361,77.1096048044659,69.87668678794601,20.829745601837235,27.573041261827246,33.82110277778922,35.036239033788775,44.34487588448395,96.76366316847455,70.00497477352916,87.43146489503381,0.11043621553519234,26.104214147595385,49.93721753034096,24.695522754401523,17.545600232424786,38.32174928061366,89.27056124976968,21.60197696207904,1.9340909631162417,80.93891020047272,93.69307075044408,90.55156633563229,99.45878482448597,54.4911400945815,84.95095587445815,17.146145077670283,25.70156871397956,81.67740248614838,7.932704125115797,33.17515173883086,61.72032199064999,52.73271746552698,29.241873956785135,57.287470662021356,39.073693858368166,46.575360025077636,32.59751811311783,76.13309892445996,75.18613075170856,0.24203437792638116,31.301359576780598,17.79788011150427,18.003306659556806,43.13875442578097,58.89410317034148,13.02250542217851,32.08416405097895,71.40057687995915,18.261016115696872,63.359177886013484,37.197783278143085,58.28224170235011,33.282904864750506,50.58267486416671,41.40868176381268,55.63058039600454,53.866217873243805,6.745941314942905,28.802796187596957,83.48024157939999,73.03370236351628,39.117991165548695,61.325805906269515,72.6018804322898,59.77068921556248,76.56703385985064,19.979937509185287,60.3768815317961,81.2606386892496,57.41917438418952,46.993813506005644,25.085952866271988,57.63728278420588,2.250755705940022,42.48989103039732,16.192498026295898,87.97514356249022,5.183309843834094,11.416281331975942,41.15820591325775,6.854476676604071,34.90016940947667,28.551982595585244,63.59851296010023,60.85953379826976,19.714581953725517,80.4893736475105,49.13299380926514,4.295873797436467,95.58985067980036,46.47661269412475,72.49080173447673,49.123512947773705,8.770542473846898,48.99803140778381,1.304886368309155,4.323075739518655,12.128161452499587,49.745550904275696,40.42156453352958,77.55535502130701,44.16824856339338,61.267154339311446,97.5673226851333,77.32619449202116,76.77800431452086,67.91901408871341,98.76415655709523,21.81433570092729,44.55316376528587,73.26589929417581,28.969737792918405,10.92159015995733,34.30575967956906,49.39173491194282,47.90988310058609,58.62096935762977,92.83585524163941,92.85981633669364,64.09669509054211,14.516595700560142,19.49653003622084,68.95550041808856,93.85321749214391,47.354230640782276,99.80263604260251,93.84909200097556,57.92527205479827,24.076046457113076,61.4997594273108,47.95482023583276,88.86185844709101,11.969973026664537,83.05600266371422,84.19024749956611,39.81419168449175,67.20316388235894,56.17348751128824,32.41403316790701,58.39841990469156,22.084382991931573,15.292061064131579,14.181812701441244,61.39314520991259,35.58920245953326,62.77524730831667,77.85760547484215,77.65545195048033,1.4260943595361453,61.17699681449691,68.04282005791009,27.47232776540367,19.420205483024745,77.52262856642432,14.880267561977467,29.31566187478255,39.77529654325179,45.42290158583449,91.59454921608068,36.62676118413914,5.496168705769755,51.836746647281515,69.95052557360874,92.18511360695261,63.37978713186651,2.9397944433903644,33.68250626902255,99.36442190542938,99.05579707689641,39.28302398004194,52.074049935125046,85.30515361687104,11.267321929215758,15.549096799382689,9.097774236314947,46.26186296905668,90.3350156761377,20.465933613169273,89.31866150845421,84.16471881985288,51.0618008888416,68.93194022537024,47.39904864864491,13.293915171071236,98.95309482247745,52.252338209983364,55.554296636430756,18.08216495279161,75.21548890074084,54.95133919490315,1.4081173634386213,80.68666823252767,42.2957270936274,82.21842623311566,37.42965546030873,77.00445821126831,91.91655936155583,79.5526603319255,77.6177890142966,50.20998380527022,82.67143670965149,60.84028478494482,85.5836298617441,48.27638884091573,40.82196744925442,63.89805218553387,19.72633113457565,59.95353560275899,53.48545214344149,89.85006489703274,91.31368253607161,54.99746488189198,10.709800642579115,17.14095458883732,82.9261443148119,33.792992453867285,32.62789471392033,75.06020798679118,73.72292108732829,0.3394875598804914,11.400009021626722,3.0752858343041645,93.23623298073227,26.539281242445178,47.39082577558572,41.33453956434433,42.37228491287619,96.01810143508855,44.1631711099599,13.622987318434276,12.17399363823224,14.617624999789857,60.347715585754734,39.165491262262265,97.1662812038845,79.72186426947025,30.506836425925865,25.426870500168263,60.866050360062495,22.28909854062564,45.02713766699783,62.84436069749867,97.75963123949158,21.56792714849236,44.94637420070598,96.33220232169406,39.4561397321041,16.60206627949097,88.60387064094228,92.07268607599211,37.59301872180693,58.818129948232425,52.08022168343807,39.48802311920745,39.97087344836291,41.45480411710181,19.13490619554127,73.79093018087369,64.1328609678827,65.80672105463744,5.592864290842003,35.27941583568176,66.27022326378989,92.38910989741028,86.55274386009569,70.26716249347554,31.11949531935011,49.610091328977134,58.171668129463015,79.58134465433379,36.566187071233514,43.67903796908854,89.22946958020336,51.16094597317766,24.22953721367668,2.4098005552457336,10.987139190002637,43.04588194783165,67.83397787892355,11.085491542104043,29.33512899292039,31.202131036096326,60.56358049238489,98.50845502566766,34.38777065181874,29.857877118759802,58.38826838825295,85.12908600826778,86.32000101441328,94.77737811534757,17.797219987443015,23.56083215581979,60.21387149329076,96.78874041594267,55.29881349098679,24.43694348198021,97.13847316216719,54.866541448470564,62.436489502134684,89.4744373685256,14.052170822190902,86.27884755034673,55.24274396044267,48.51392964632345,79.55018853975943,67.72858281843314,10.289911385401574,17.24649620927603,45.94021084972425,77.54442151344347,7.022477135731187,22.80646363954978,6.7740141141115595,2.1193022511068804,59.51573191969327,13.333799955550596,60.60552207658697,22.081353005121287,22.05910173179101,39.102929023158154,97.33286048718784,62.765180690249025,57.60154239368237,48.76613579244285,89.76363486105993,24.306889572584534,7.157090431474778,55.079325416296385,36.250770360768314,29.088557374082736,67.69933948080313,87.44575321561435,51.77456485081214,37.587217682036275,68.53955642795607,97.86660153262429,13.868018675475968,74.18710730970747,48.032264824945194,24.984231470713414,41.8343166914387,15.089965305446707,97.05858282875508,2.5861538199065226,58.960697066435145,32.729244463551446,79.41224170551227,74.54289858765073,10.044188163171707,95.33352131679176,30.714479887382794,1.145825922468846,41.54482950661234,26.42181105302688,19.445941755068187,70.62256355564188,21.86765291632462,26.359212767293773,24.713143073488418,78.87603683065166,66.08510129794483,67.38768695705969,35.79173984011761,7.928300998908955,57.72106737906489,79.19358224269027,28.21291081916908,19.734472096894017,47.095746741628396,19.96557596318873,38.303430690587234,26.408767321735084,91.41769021818492,25.821242318454928,53.93304397712618,5.8236353789011375,76.86348731720109,57.0515502403328,45.79146660011602,58.26849242106344,70.13251834273852,78.60917676951415,76.99443241831997,82.9477556870481,37.06677628799261,25.097469052816358,39.65938624576668,50.31678082775274,83.96021535212166,69.98040080746031,40.628877035794275,96.67313864244342,82.49989973888349,11.441895069550267,85.77677631437251,36.728985245169014,1.2243108969838268,23.700304163789387,93.97557760622777,7.96077500723853,47.686578380092,91.18778682834814,66.95522404706686,58.06810225560607,65.28420313409006,87.8784843117855,29.875001482510566,73.93723813002282,89.08410608857461,81.71017412261915,38.529681223731714,49.897157737885244,77.87166354197295,60.87835692060808,92.94371461435989,71.52986309662104,64.96348583850477,45.46344189950856,23.672287565693306,42.487278384253976,57.63375458609216,55.41968996431097,92.13317311304026,12.88956095027942,23.66893942139785,21.82126328996349,21.39130776600451,52.29580125966693,27.35343525113376,74.21710700474567,24.39163538051181,43.070186701987055,84.21431224953673,31.823431453873607,4.818662598658808,49.416431253527705,99.92196933614764,4.270943889920764,24.165770587806335,57.41105496230412,51.35345598573854,41.942140797238594,52.058852267884326,13.773106629582665,41.183876308636236,89.2106118591263,17.527594075221188,97.53382837411894,53.38765891601791,79.17480257421617,95.6646996721425,22.091291037860515,67.20221946311642,89.59208988931245,12.272101064547659,13.523794570772896,29.5174717098842,89.44640365053455,66.616242710987,80.3601394882201,82.76667993232614,46.82613469376179,0.2657676388630681,91.83479930187882,85.24030650587295,87.36935917074108,58.93644620179579,15.77138800464729,45.24118074145209,29.64842753474074,9.006437016532798,47.09373101379266,53.41651453772668,75.95877658472384,42.91319777220873,57.42993255282376,27.741441462924975,46.828528162028945,68.34754233759337,28.313861492292812,48.36917750968953,70.58499496986278,69.69477317755688,24.54664803726202,61.74007406094629,93.07932574671966,41.05026474501653,71.42981094500985,92.60970555349635,16.208719706475193,7.036715006781469,78.89293493821395,56.37940896410998,65.08469686964172,58.82265097188141,10.638993559017962,70.14298412588701,81.48675934745894,86.01275080032697,34.515775868320766,78.65683385276884,47.285457227794105,3.3786778981392596,17.06888880064109,53.616313538043514,94.4776698701728,27.927179708483852,8.317002179775024,94.96112024601659,71.34090322552899,66.56858377809878,55.417049103726434,31.99852538557796,31.93626224483761,11.690573302765761,79.42256806807484,50.3427979770917,43.87563719368357,36.85334401035503,4.275108449557019,53.48610837728744,6.429864577881029,32.981526213754655,95.45668915787286,65.8220844512068,15.681512333902026,4.320936877320358,62.70353628223124,68.9912789467881,18.345729420369683,98.61982301269768,77.51321569457915,83.36125629755404,14.593654977901293,65.10076054432598,61.97275255509225,83.24855041134403,72.42055464601866,98.17354035966417,90.39028215515003,67.43975460660803,45.09358244303049,34.68905677417481,29.992099130242543,76.02125171110654,63.809576583731875,66.9915904487555,33.73577134869837,52.40957184806325,24.060107897287452,14.841145337763384,12.964161980783818,65.01780977991069,90.08163183830037,10.990221591622252,90.43399713025296,85.61792937125034,90.23801703213717,97.46016534111828,21.177193036353724,80.75362322369683,25.36153073694136,47.47378347856915,3.2663760584963564,81.02214021941549,34.78300482680451,90.94900541844629,41.95197018567558,79.63849253663243,90.9227938484259,65.97010566396263,91.45380036008771,46.531099269600254,23.05572695873671,70.16222750886558,65.96778403158221,0.8499029438865824,36.2679159683127,25.50397785377382,79.05501574974107,84.63973985305722,2.1630592659856562,65.84116376554483,65.77779415551768,57.99867323674752,63.25465590958609,34.85463783876545,94.60153829613829,30.27763612038994,36.02668068647539,76.9191647496277,54.17532856861192,14.833741209054496,77.70723826362257,62.03484550788909,89.7718677473193,71.65091021126086,83.91852204213721,66.52431621111947,72.45629065946342,79.35657110592742,18.881697491543314,84.422444952389,22.876178078517917,36.28018627724676,72.42956362828451,63.10292608507013,64.56912932567161,70.17985317281592,29.433557775582784,11.459725854826065,17.34370408061118,44.42309574948584,53.79180858548249,41.06269399595679,99.37424452498811,41.121543213371446,9.923662292679259,26.519284523102826,74.92853948295594,22.528154616952257,82.4437064031042,16.022385887827173,28.860125417037462,52.53476359867396,82.22382147492203,58.077888791383536,73.36253383041559,10.483911255039102,41.487072213045316,92.59719952240442,52.22086147778124,2.2384735503662045,12.751659598672738,48.14515922434298,33.78287111747509,75.24179692313382,52.95229302080574,42.05166137355215,77.48643364399344,96.29178562305567,50.11588146694059,26.176249004708197,44.91729131606728,75.87539228895939,22.67887172362326,30.561622940874187,29.71700546102595,66.29125799553766,90.91725700703788,57.56865771295372,74.15740376606384,19.584853429918457,5.627977332500455,57.020666123174024,73.24264899521195,44.01298716598308,3.754971964418119,5.36037127176977,23.261916962083586,40.507198858248486,14.972855392891194,21.5449582504742,83.61095410077256,2.6263384804088186,37.532164613053766,50.528327709410235,57.729446033986285,84.55359778399813,87.27660289073518,76.25346731365438,85.91632635433328,31.25326860733231,87.8356866242347,74.92411289577483,45.95935855754046,81.25942012633563,22.77774146124575,85.98005826243487,38.414398205520094,43.010241546671836,54.29400680889918,95.68104898789811,44.13175684002225,94.47758088079652,53.40444307277209,95.25522872012876,87.8192840123304,56.09955210067494,78.82623859168037,64.74700063673596,79.57140100298402,47.57289915268292,49.83250574297487,28.399668660571287,7.629943560265406,28.996171435275976,77.05623210683108,26.723643794349783,55.63024849474451,89.81139086130094,34.17639235096511,40.101333181057505,42.36576264363736,55.495413479985466,12.086613146284886,94.46190641251536,18.60808616435853,88.54857930766369,46.15823459697449,77.04555523460367,1.8847134344972538,80.46346409986475,25.183045559273843,92.63635494689296,46.18343997326255,27.39028113218631,31.710297368424843,84.94874653230809,61.85750345138471,96.00180640905691,53.2989493693837,39.06012806298775,31.19576906029137,90.99604370320688,46.7900709686633,9.36611288596586,42.79760469830569,84.8310322588452,38.31815190447231,23.64773256718652,29.86707014429124,71.77338265220622,10.087765592404384,8.60081369089677,62.003524528510056,48.57746216580304,57.10210324677012,39.06813410009959,91.76823590435446,7.9604860848070835,91.90318164690403,37.0752217583175,78.0262719687921,74.06832147345246,38.116932220114485,93.59745338382523,13.501449730325044,69.94040947376243,17.702991365202713,9.472799643885022,13.926332545151077,42.81747207575882,74.53421590805183,51.35408656756554,0.5847670240964886,44.30195091317971,82.29552290739747,90.56005333086624,65.42310549963571,45.65764861355063,52.563447341298996,30.234509632336458,87.26803761887054,47.81748285324442,88.8978712171794,86.36491741622478,21.0219143921753,48.193421887720454,92.06696925030538,81.3696946494261,44.244681597808345,3.562274509094132,61.76501715719746,53.20031046130791,7.030565589758464,38.87893527145998,59.035319779599185,75.68836053058683,57.849360877816395,29.327799591370496,96.96610991938392,44.6580974085602,36.83915008239934,76.75180004963732,25.48883306753371,75.2122520739568,1.3479845629142284,41.655267314077406,70.99998568993512,31.412496556448367,4.470200980275829,93.57571256216595,63.50406108380591,33.877934411395906,43.11912450225073,17.350675723900167,63.76807587552717,23.819409531729463,33.06434831060313,27.07323186222723,52.363461992579005,63.22519502315237,3.631478012326006,18.669847979583288,43.773038639331176,68.16402571602794,35.26862335305147,86.30236648829901,69.55125562923324,21.558608281140103,18.41736848901735,47.09739292503469,97.79241331738545,64.91306793573256,27.82355704870414,48.19036735090412,48.61720219563569,79.09183174127953,33.92783458739315,40.179771851403125,25.00641963337118,70.69625076942346,72.44066318548693,89.82390005414732,53.652165303449586,46.82964297616435,36.50184804559843,93.69879885651655,54.938736478751146,58.408773138322225,53.62239167729135,78.06981102505655,7.5822824088137235,84.86118927558304,35.064880105389165,60.54786390151653,93.74299565264884,77.76546408397226,86.67353763225468,78.38854138892395,76.02239946886333,29.220093994815045,6.426957751603791,64.7337198440603,68.10032813149806,90.80297495725253,85.36732991983767,18.129883863130168,11.084328542790056,1.5278026390432409,87.8570024119376,48.62683148781084,64.37691842670145,56.89874941850989,47.90846220721965,83.569142089303,53.54535250575879,21.880203570585465,14.718778657928343,18.5547152525911,1.0184171130167452,72.44431234006635,15.09757256594424,8.703388476529872,14.126077953387794,67.99464989792764,1.073600603719238,6.838861952556985,8.539287865025557,73.92764487782175,77.01591484983777,96.21592131159895,16.22884499345406,61.02459669041696,78.88604629609353,58.37649143974568,59.10863817955716,38.1322682193284,9.551858200422148,65.68047373021835,53.459982022671205,83.29089075370324,42.507109114111216,86.44355414516258,69.63488390376718,64.83480194739208,42.416072967747944,9.863739520812487,92.40090562948076,52.21728925914477,75.66338062058549,64.87295067999302,18.472669356550686,53.330810194797266,96.31104401888089,49.60712878431078,77.50101474402659,57.3822643925495,36.96079733227715,44.715658904368226,94.02551999396815,93.43969453505512,96.06445805453696,11.396768722333517,20.779779995769754,31.454065600886782,42.11122130712081,48.780827550430814,39.307874152988695,97.73727954584015,92.28408861678722,70.76847023517247,35.484525886234394,15.940257602751872,72.1092195353402,35.0862795637247,43.89762155915938,54.8543568349662,15.394855965937426,14.056848375125863,95.65423851408138,58.03858442827578,9.740824086504151,33.69139901499205,27.78631900836579,17.237001926896646,81.27404359749127,46.56228066546569,63.047967473016584,10.162076213319871,6.875873462518189,62.66208627258243,50.48031093236003,61.51972645883801,35.91785676097011,64.70491748274999,16.223067667736256,28.00541296274418,21.849997088472673,17.473048752408936,29.271500324248102,42.267367383619536,47.99484924868064,46.023487378182196,42.26781983270285,20.586981777313117,5.901625635014196,12.624002713258164,43.10696358308259,48.06444584692977,24.345973567688816,40.456810914343,53.121854544490596,22.2754810462815,6.238758566496106,47.1448535158665,92.26107840761199,23.333619830590635,86.66900274550325,92.62161197939466,14.516062159010634,74.97860285568586,81.59365136902925,81.38694447637603,40.47272059201106,30.604594089130554,39.8680057619888,51.21617260283059,61.44953922690303,13.96302477067276,58.13858694489683,36.49793040901269,47.77434513490717,34.17785666967972,32.10396553025714,60.690958778701855,76.43145253256287,53.14120409855021,92.47165448123143,47.51370501066036,27.80962364708869,94.8068206908749,38.09363427226561,73.79789868423092,74.39717696816331,61.086217103620456,31.628924261384395,91.66327126758273,80.87816987604285,4.384941403858589,55.43645406032841,10.979028303224936,49.292343139716834,22.187764232027295,23.89799105425745,0.015915006440114787,46.35435917479972,0.9875463243702698,81.00650849643407,90.97070405251068,44.822236644264514,37.31042172780177,8.248228308189343,49.29274646780043,4.683879444305106,44.83776191998774,2.104868192138487,25.604590066273936,30.87604323188442,34.88201169205571,37.841288854400254,99.12569310975155,39.49427003110026,3.968142456559476,52.27275951286068,54.21228063698293,85.24760052185647,38.705692378598485,58.2063048490205,71.67592259563604,47.44411091968288,71.06691200745792,27.89508700171237,19.72345528720959,84.6676473563966,36.96101247555963,17.128937991047323,41.19014276613432,21.05896368102682,56.24349165531953,82.59514577441963,81.48323469922325,33.46887676532215,58.059040965295026,50.685306452790044,69.20195898026493,7.658297298027062,44.18738282129225,54.97979745887459,19.099088111806807,72.32669203615359,31.814106301613766,74.69329845193037,77.5504626565874,85.43209864734386,69.60865117732101,94.40004854406723,14.684848087864943,78.37706330300205,90.07475549556196,81.70466487406401,93.95739739438194,30.4758526735727,77.22004282851564,73.68526721941974,56.839035952987295,22.75731806540291,82.10012484738364,6.229701183250813,80.58686179101913,41.24084434370491,30.483863860673253,37.50728087515775,40.67695440254201,80.98127835224984,36.62227508801939,71.17198309703272,51.80377291797809,94.70026864375082,75.15800095563114,61.468232857060244,95.52088651275587,90.11359529176646,82.05315846756966,34.63838755742037,10.342269791122838,94.59473194050084,88.61291423288095,41.427435532025655,37.41984666100887,17.473032202272776,79.47690448782315,92.70503649481178,70.06547857623782,94.61988654721199,42.654125235940896,0.8533014379925818,97.93331063957535,51.29800708734621,78.84092636460714,57.91306400442661,42.370482531331454,76.92249204155,66.06030723375143,40.558183933359935,20.983175416047427,94.53574626507039,69.31941945099246,23.555043640222138,14.871875578172322,99.44932744649483,84.21081918946007,70.64766529655381,57.695479157024685,90.35612556515615,78.15336618516316,84.14080007352332,2.935311105298266,52.956622740275414,17.144546743609734,30.03519787434875,58.16699982419726,40.151321540771114,92.69763043488226,60.10086911695396,9.177953898835067,16.45575140966049,36.97405519765583,34.26196970131264,75.30710176289129,7.636771751014004,36.03384494388165,15.80635437407535,11.400836084972621,83.86416090839202,72.58786360277337,98.10778412761765,53.75739388086096,86.71634106580332,80.91705045441483,99.36047630134497,87.42941570679841,94.45969876542868,5.979064197425243,97.14876428394673,74.53914644976183,84.62097418164376,26.40963598912014,45.866410092756674,89.63080891032084,56.791601581109596,5.374462756696563,24.485809319770745,35.62269268051761,88.83722346786264,21.35123044823256,3.1802359524319312,80.32048421726431,45.342474242186896,61.70560743180532,39.41084977245269,30.47178681657241,20.044012798447653,10.283746169462106,68.33041385609431,74.98272668772685,45.436596137351636,86.20117311073041,9.461701700030856,15.855628865683268,15.99229646957352,94.73241433343473,40.008522105623044,60.3729279014042,85.3724950465954,37.03774162366593,36.385181076234765,85.81113863432515,49.800536144507376,25.404502855758448,8.603051556456364,23.95111852722436,67.87912370610273,45.152980360082815,6.036692627942841,44.09917409140761,38.623160705342784,54.5584737251272,12.564085968294258,46.97541406349727,68.2271517290172,86.72275994705436,3.1768734252460185,36.37219438644544,33.203104061141495,64.8161477767918,80.89436622921883,54.55687769261813,48.521149796670514,38.121559556568954,34.84844979951514,66.51342572044884,9.514741257280468,83.50844545634047,6.648853444129732,62.98863379068765,14.400172037094672,78.25433732208612,36.541630513923415,76.49381532945813,97.08038535769941,66.43388594303546,72.03551752280036,99.6800320686415,51.54425540390909,65.46441869121104,28.120053362105157,94.25344141856051,58.37370609262413,69.47503934315779,41.80266038897291,60.92890282483063,76.5392903741806,89.30179127575617,66.60904035217318,38.235721487633676,71.20734600906896,84.5576260990966,1.4124923788107369,14.07812283523624,32.95234743046229,22.016409347006515,63.13136152109008,32.07731840448136,52.55216811432153,45.26943600844165,49.59950318663938,65.32992480408608,95.91417658861495,86.90493076971708,16.700447635373706,83.15525373244917,85.70276052426294,56.58473609311741,46.4662853728686,48.62127312184816,74.59908783610504,84.43898763171302,58.45968183030465,51.85971156919159,87.90422923888678,69.24647266327915,53.50479512236587,20.677322350942784,62.81827950644264,76.22351872293144,30.73563623349663,90.15028224223913,89.48185986192318,24.390609171105215,33.89702031172155,60.16814513577764,39.29162043102694,93.86235866949386,67.44329659811629,50.523391029427344,62.870149345995245,10.60412424398407,40.82173896198235,87.3982539009135,86.6859828602058,55.6755331823698,72.3867517678228,12.7989971856319,74.48484659469491,66.18308148482124,30.12277240853727,3.4451061573178787,83.13340069724514,91.11166329399225,28.721889993137808,51.039108860950755,1.2383056111439528,65.9278051898082,84.99485630080828,77.35979458338026,71.16641309353122,31.339267772222378,42.598690064480714,15.386925026813836,30.283211703674308,99.41979495925696,92.51386787502128,7.179312061762189,52.099766153177484,95.09235840343172,42.61891264142159,42.011155069688336,95.10436794158585,50.39893713405106,9.790538270386161,89.24488251353154,66.44412267290734,15.045522437500214,16.77846715043495,49.03254346774565,87.50267725621342,70.31664778263827,2.563431244070846,97.36823181082835,93.1553716311954,90.67630510097285,71.01309829132863,58.73861341505984,51.798960538577234,32.91538952864342,42.300503946179525,28.142136151491247,18.52694531839143,0.08528939150963533,7.649750766352614,92.28488023113115,74.51836345092305,62.63180463918322,71.81280078966911,73.42056809758488,89.23079533463229,56.623597351874864,89.63570296070678,75.39492672564532,14.709232133652439,15.196055315113643,72.68306984401252,2.5117173942933224,86.21637048489035,2.935647210812309,79.8104905060831,28.88253796417285,40.203139441330315,27.93259016873796,75.44356746546062,85.01140222783111,53.06757768272776,58.01926154019205,77.76713653689367,83.98173947331577,66.14182580409386,13.902222364421235,50.8571818157619,55.7028883501146,96.16811784982102,65.46936021751304,82.66184745146606,1.7062639347081743,80.53471364208528,0.75217659312381,70.24393840992091,59.618528030183036,43.481262625044906,84.03033549848531,93.41618224255922,81.10533114517598,31.181378149689255,13.95410672169678,94.98442876307783,34.008903402299126,74.78828774746783,53.67930343430092,43.68633569603839,46.2225338131775,61.824967350489466,42.2873488687521,83.44524803923174,95.73862938255134,91.87273396384586,71.22925928167939,12.114151409153095,8.060694472622709,16.857677650908432,50.85678617548003,93.920564989533,85.62034588585625,16.121236416073646,0.5177611711865593,95.41017303016297,79.07017222121829,2.2292165687076593,33.352203109508494,45.79402649210495,48.55658763269833,0.3866768461926129,62.738138009755275,51.12846146897893,63.778218901174476,27.524273386645394,41.39019048408754,29.834783827400912,66.56703601337267,53.93965879805801,12.619878658489558,46.77228174871135,82.08302755533879,32.04504092308651,82.28056771874832,9.888642069158804,82.39008817625214,45.775632862477714,29.27045392753309,46.467701258412305,65.96105325526207,48.258518866031594,39.5326848947072,19.81350182099122,90.03740825775193,76.33974280602843,92.87500572020058,31.23096010194314,60.27396435019527,84.21668905398126,4.912941857723585,2.3554859261486705,95.54156452126017,13.663508964511895,71.41567243219426,88.17150741989096,56.72985878511717,70.86078197026698,97.89679915292825,42.00899260672283,48.653832031201446,74.3293061220007,28.47649509729726,56.62901133939755,35.49456587961606,48.89834051523279,1.1941042853042094,72.3854901767466,78.04465789718857,64.33348167050326,98.58389148349069,54.34754543178926,25.780164658334904,13.326447225780536,47.60465791706153,23.38891320854275,24.751971256672366,38.06024009040251,14.15137940602137,15.489008577332243,22.32223321038409,34.63147223539054,91.43980811784598,22.617109241037035,5.021377168470509,90.58411233633325,66.64477069029941,11.804323076629942,11.966442828849456,57.82427337943925,15.826382011484563,56.74228360018048,33.612434873374255,40.108038186564734,55.12914433563946,94.46717796814335,30.68613087182246,76.09537958405738,5.060431114617147,28.20835241061086,90.61685828593089,71.22413872179719,72.23289940405215,50.6402807065653,16.573943564253067,50.60639017926104,76.39169732593187,77.45222853201963,39.536614455437814,21.719764696076304,91.33477950060605,24.593677289463443,32.028434386296524,56.787392559202,29.146636569564222,47.35539066078377,92.73604178773022,3.1182377300918995,88.09223279945559,25.63997975524116,79.44847308553555,98.29533572904397,1.4596058642967646,33.3134125689989,99.05890410294289,24.594260111528655,83.49472306282031,95.79417780422425,39.39543662076459,43.25203709445303,84.46583782991543,11.69959457767481,38.89249305563677,14.363081802922828,5.976858685705566,94.86481448875197,44.49732061261826,42.59343999551584,98.49341567822488,49.909516477330186,11.896535162575805,97.94547119332519,97.09374517458959,52.13197155062779,78.38959644404973,18.736073052693325,42.45481847747893,50.93770800852165,53.822232871349286,34.99790405149008,54.08402446298246,27.89740368320972,32.55486999675449,37.232373536495125,29.018587020845064,98.07859285166171,34.23267395655645,36.918701673745446,26.939801916961592,77.02568194151395,63.969777589218694,73.55345358816234,43.43406896807965,40.49922398621505,41.274415814768936,4.642078902274383,89.3336523248741,0.7275336972189961,83.90431901024735,13.641297597327352,16.74020532030417,85.3445927942399,44.98935572071654,90.3752024762823,7.825725844925191,66.51888593661641,63.665344635746926,92.52560796980379,76.1424227944095,87.05827812550974,15.430679286531468,98.97454847244028,48.59354727954942,48.25288246549002,5.64393168696683,61.78786920022573,84.83553476065411,74.42125195790284,28.65491422542511,45.128381373943796,83.54253847102059,21.017287476254364,0.6212659737677151,51.66756988232719,23.12858253816332,57.53707498605897,3.8063637548143903,52.145303167840204,18.695824243201475,21.102758624646633,33.61314414728038,19.11447638093563,35.42322629786915,85.1234933008324,64.78854980535505,10.652012759864283,30.175014962715675,21.829096937808846,79.48838131032888,85.87829700561544,40.09183323925607,95.02461163153538,51.72899834792285,28.738785939762412,53.57030542988414,61.67144888282575,32.47761537047506,93.03716309350463,26.86202054777945,89.81003402716998,19.300549484420447,20.412437886511515,41.44002770313172,26.865718113724213,15.703071307988225,16.30424946405088,59.6950465875485,19.738964313758856,92.92431632050119,54.71719686323204,22.927660285786178,48.07095358321318,15.848014445874714,36.744714944130365,94.2378746385722,35.1214828957978,92.81894809382858,4.16558154653811,69.82907041402126,9.457847146965292,13.616436333922355,55.63653959904911,38.68987060042494,85.0300886973402,3.595559577329266,96.95230109146713,85.78098922935229,69.35548986481531,22.243276000133992,2.956324671688526,35.342554898000245,70.82464843393385,32.90013290912708,63.15851026584911,73.52176452507912,59.74858407382821,4.285778308768984,81.68965837942406,68.10935001625965,40.11484075241554,16.61228261197698,10.128234291156357,27.181205106743445,4.194580383624302,22.60778344892297,78.66448056651791,32.26617143649928,14.15454728254405,64.42444771147808,65.13974499325545,46.123320889445466,89.79107581618038,99.83810301476011,86.02857235526967,47.10113990528577,13.814412474482939,31.186730757242064,17.86943005025772,8.22294966405217,97.60351438100788,71.15539349204418,17.150180199457466,35.55608901184453,77.19373734291726,46.28837112200185,10.132896857149287,7.500340553460417,70.72428596409284,13.319240823923305,0.32682771395660115,0.8000729732501433,58.440605550660486,15.831809150628152,30.95659780853789,43.8744394415408,13.054472034952392,89.14149299591524,82.73366795314696,7.3854332341216296,16.04812377287398,57.97717487785668,37.917491674090954,54.769388004372274,90.24031125845487,75.77738634611212,14.286739936917636,16.655806169078357,74.78011744337506,8.799043979811271,88.86255354372109,30.488189917633957,60.28236364803718,68.93381642123101,19.094543763088858,15.204043822643953,41.684542817084036,28.989069481861527,77.57264870160097,70.28152382323482,26.641808028518042,40.69283639735439,86.80002145075042,28.422108742753636,3.917571470928538,18.43526096595539,39.016449143538246,45.145242883267855,31.761602186046744,50.78711130237436,92.43776304533723,1.8777616666911134,78.52919786619374,15.444766236708729,7.079724243088503,59.70611399925768,51.756541364642636,59.280540679629766,30.368510593351772,23.203220234619394,10.453157932051448,12.71674254750722,11.509738987754004,54.476163748655345,88.98303963760404,20.070734985978955,2.2828644604219073,72.73777361606084,25.987728538084166,69.25160342237582,82.29034600156255,79.84148098153176,66.5723810189679,83.43506241282287,7.22411396962136,90.99803273283375,8.099281281791859,63.971198743776604,65.18111337294167,5.637377272472932,20.737723043641033,55.511093034328226,26.655657651772447,59.198267871821486,24.155384796898062,3.044908723183437,1.4138347935732765,97.41090687810507,11.998380074054115,95.88292016818367,53.9760553664271,18.576930996945894,59.14620802631902,46.78564505013655,57.45750637836004,47.703458919432826,7.330468393367273,84.25627155879073,47.70288128544917,3.8782859735057795,42.81540916835688,18.475701583521086,3.147322960709431,65.28052309414171,27.011108605667488,70.97742035627628,89.18109514788853,19.444362214648503,38.4522721150555,50.50526321592198,38.30113567031924,99.76851212082548,36.294200501805044,17.62007669453404,83.46296800149263,56.96923725897567,74.95832701609405,8.133426528929643,28.1044125457126,29.968250769146508,54.57534735649823,85.1452112545923,45.397608457162995,53.98889909467771,14.224320286174885,74.39824567536127,76.50117626793306,42.3069506929004,17.319837688716966,29.09010513367435,30.17370728744597,32.39484091923681,51.684651572297035,25.55903434578465,77.56383261609815,4.448515354905258,53.5838999158273,98.45133545704641,0.6560711189093182,10.042222668283497,84.02782039308514,98.57027520766366,99.99728121351879,54.15917096820838,76.78833093883635,65.69754097933269,51.46793696355114,6.7845103329990835,8.649098343127514,65.29666455570204,88.71391224444851,80.79530718735538,36.077487975233524,16.414995070163563,42.35396516721691,38.91499583798387,6.0441355580221785,12.381846178370271,39.30261640637889,75.05383728166737,43.009667453785006,20.287368953285924,98.31269584395586,28.004546259915543,33.91419139357059,83.64887605309544,57.9711893576178,10.390356607953944,80.47268444316991,96.11226256043479,29.63260697341824,36.75094194782913,7.680302448248499,22.908313290744676,31.299847869478338,11.53063319161457,57.93615573725046,59.26080097136812,91.91015333286461,68.6897496736894,8.430004650154576,60.77199049650454,94.10409617873388,4.938438135664203,92.87640534230282,61.238633763935205,35.05245858820921,35.454514791863566,24.010311967795683,87.73595437226552,41.22472801218966,91.71863826491324,58.38117008873854,32.42042066885188,45.63999219887766,72.18103850253108,80.60703625379301,57.145167650718335,31.136158368760412,10.935034783212494,5.470696297836564,75.82089082349377,90.77585696999377,77.86466448050247,0.4525291302879708,45.60134448397842,61.30223812437489,28.626412790733045,9.479175752094138,35.61944736503174,87.88177109488015,39.86576474955401,20.523642319628188,43.01859638031762,29.635473434123448,77.84222121711237,89.50079482389849,94.891921766997,86.74161246433988,9.174110130824575,98.74981950107721,41.72629863466132,99.95520451731085,2.2865647131083966,10.450019871276695,9.146599404979938,90.1197814277624,71.93602691557818,52.11903092308976,70.33190042960969,66.37137819942926,47.17599199149593,72.61168964456218,1.0995584676560588,16.12816115657263,48.26300332866842,39.93287817215051,10.66605942601766,32.93440801373224,1.7827395826854109,23.15343873853921,37.82571793414916,6.556052319108319,93.25696663762966,70.56685414633189,78.9623131000369,73.72742813575981,49.69233411759689,31.068056685711433,48.56223217724003,78.19420327208647,74.89937251912222,67.64920539057425,38.806145205450626,51.728791079256844,22.875469769929623,42.76686996953568,52.72514334570866,64.2848693431033,81.9619277036795,13.494774944808452,34.12840117564272,38.53785273970496,46.16664038208301,60.99184325318616,18.379446914126206,77.03521514656822,29.263065231993323,43.164674137946335,91.04876517011235,57.386325234882754,93.76405279247793,59.52455163400816,14.639973711702526,25.395316119221167,52.10445595003378,61.32878310832643,87.9309648103502,38.14737794407175,9.945486128604452,33.44521872895423,24.041951080970968,70.68292981835862,70.51164832148135,21.328380213476684,71.09240395637569,68.97276298339483,84.44207182250365,97.1506916514954,35.851476276306705,31.81394152907745,37.38162990107199,97.66500722439237,64.04632474172017,13.557927411173342,29.086967732626224,39.46562790202349,78.84872986996612,26.449071624656696,2.1314317007680605,80.59088095497063,55.82683879346797,68.12643662493434,42.963843908421815,84.9357735343689,42.98781087172756,85.37008577016437,57.21052745787335,60.01361070724499,48.24932442728264,80.31157279414788,97.40902515421965,99.04863867441489,43.741589615245246,72.0261908211405,83.05340913372174,84.12904102677082,34.92432509862346,19.293371778300372,89.40031100130787,32.080713006223746,75.94881981821139,73.26632130604098,23.11474054477669,81.34081156058424,21.053543582394617,41.611511019720595,25.02942673302534,99.02575210398683,59.0764433248205,92.16144316493606,85.44175847304153,43.44617891766943,51.81736885850006,32.79470657604884,55.24291617566804,63.98141725687736,35.152345757264555,95.22522666654993,17.940106841665838,79.51777056022298,27.34868834289611,95.2837424541599,73.08042867626395,41.05137727349434,62.20685896346425,78.02013767195747,97.87552511539413,70.89301832215133,71.7748151132161,33.848268937581125,27.814760225269318,33.37201752729753,61.021215195751,89.83179443837454,76.71429540486751,73.25852859883858,60.75103585515483,96.40416419178781,70.51891575617915,58.741769363207,84.88819992820093,42.35979321735688,55.46920369895035,49.60760928007962,87.04564412523379,77.972609002969,19.952964593860745,60.57710303622574,27.222939965967285,3.347279890732835,43.62307933155225,81.35433582765363,49.70361248228473,38.35844755116716,71.15220220033164,83.25091379312612,68.96849825786462,99.43268975683092,44.8242956754872,31.337593945196218,75.21288458209608,49.3283618099019,66.59877231639398,87.11939102692908,35.086905223709365,34.29541119410919,90.44670813887143,46.42729995209077,92.7907086199942,16.53900473863743,19.933863617123016,45.66766489070938,13.697849469973168,51.31970588324778,58.3678881184062,78.61502403053944,58.3764649687116,43.30383824804912,81.05164604676858,92.35568866028913,55.46043352165578,56.04691102419325,53.561086877346554,34.83842234029338,24.632737719100906,35.04468201360154,57.40050028907029,78.95950000187946,72.08911644517406,6.179387663954616,80.96297318944413,95.73637718377664,86.27446155008904,18.809085413963633,92.98568417507549,6.373791959238728,29.062542006881177,72.52093284342679,67.57198468264033,3.538709962238118,81.71601377323955,67.13910024029147,70.49480598102865,86.52276765555543,82.32940960155628,2.274225468037727,0.1999732560730938,13.799839708201622,5.615186209301792,97.3520573665862,87.70833578845215,45.174901955169965,89.81354438733379,83.77102129875803,72.58514177642368,20.913350536163488,44.781375668703426,67.75458910974223,15.462753613147374,75.41760989381824,37.385743210534386,74.96757906978034,91.88590377579975,98.77739070784179,13.379349949847995,31.60894413972897,81.71697252127773,63.84248977678747,21.878957118690167,83.84521135883195,14.346328419961306,7.542513633419523,48.166643493801786,49.29690791171216,50.18105147766997,76.41439553940941,23.287972713616366,56.185934200702256,4.422804531599855,65.51808767271324,62.352690831674686,14.914281623490655,20.649713894397735,58.503063605518534,67.24036457445243,11.893132995030975,63.21919105215261,68.07132716572065,63.47182930219778,22.849834648351308,64.59115141104151,30.258919394367478,92.30598442084565,49.20144639339728,47.402629589133085,91.83383454927493,25.77301178164124,40.526704406886715,7.850166271650927,14.010213215341638,76.44980586586514,25.67151399202725,15.567261575614388,22.157461346983087,49.33157472859704,55.91117751863304,91.94932646172717,72.84083075442591,85.82272213591615,8.682719723787692,45.226345953005286,15.531842201232271,16.872116897460653,59.05943856057555,56.550519400642344,39.247206595936426,19.28749890770225,38.289051704019805,0.7828965082685935,30.352496103048164,98.81625511613544,89.21364685325197,42.385933430655584,8.386548456782828,37.81581148182682,70.63999863132,4.635032188224231,24.862829846920718,82.60838762208941,35.51932783375482,21.62145834684861,79.59127107018908,11.774986017739298,91.12814474514693,85.19375631538834,86.83908403014867,80.13762744191133,76.57730057126204,11.076069389962074,68.47995794513278,83.95593474865287,67.68362944204308,92.2745648006567,51.89379442859734,98.84929652255585,93.26056938993769,40.54003915909146,90.59520415125931,77.82921864434107,80.55764013160719,27.174300827887098,40.72563044873069,74.67937189693511,61.80116054331326,18.17439297468323,65.98882511038681,82.23090243371777,34.680917809502276,75.99973202041286,62.67633484921477,19.878530340990118,83.1346538145467,27.72346534339024,51.13442250687344,64.08254349038164,84.59992794294422,27.81154237654051,9.709299070186317,18.13281102438047,87.82934942802768,97.29814581909444,16.253120028697275,11.60089215928004,85.86470916337316,40.03409710890995,81.98522817446374,28.04905432770547,63.36978429272584,30.506573256601087,91.38736027735331,86.14373045265326,46.50827533154458,60.946309847081224,76.72500158482346,78.7726698564517,68.96806430189886,62.078041892473365,26.995106035440784,38.687367588971874,39.79575433142164,72.53408881947723,5.6370878732994285,0.43280956485940436,72.189864124886,82.03636306309157,41.1980229855648,34.031436367457346,61.65988315838188,57.884500924287316,59.93742298724678,55.13205681338442,55.9164021400023,27.547139182568348,94.35792932303272,90.03301227077839,92.34263850944853,24.786120786061506,66.20999831057911,22.705603309482225,66.94380229183096,15.89757425690016,65.3770530547159,9.933994235955979,66.40311893400973,8.373150994153832,86.71007029275027,36.20709272314105,12.110307058589886,71.15711743335692,92.4321502807597,67.16350501218967,15.359409429297743,9.31100668540159,38.426332080894696,0.13263636312276228,65.24340579059343,44.27768065707169,37.35359499547217,64.22443865386012,38.63271084278509,89.60250253998733,11.794916594900684,38.48814248010866,69.44057432383468,33.26445926735164,68.73178440434472,62.07711473368464,95.11976287015034,88.34910757834734,48.5124464349268,64.89799327040832,31.625996656695378,13.281466917789352,79.56483001660123,90.11114715754259,32.48146524048536,93.07685174617203,32.173441463073594,3.582264041694616,57.86542634090372,78.42904351884839,89.23325774289287,65.03954532399248,83.68777650553812,18.57777152371417,72.79442763058657,62.10285061300532,4.585675982205972,86.855014258421,94.28791715083219,39.19708212191433,92.30438493330743,5.687482685575906,90.33461182732741,86.76131741255533,77.92582535889944,88.90494180477062,92.02193451889447,24.67597386898547,24.258868452091875,8.360698014301493,82.37276912549298,12.371137543142819,92.95227899207609,6.139850118351586,83.00652388846058,0.522415456632308,57.83469038900703,42.16215648073588,89.27171212648742,67.87990407868004,46.248344728594084,0.7015389195337285,8.15539870392098,43.97990415384152,22.45370553752577,30.614870757199885,86.46913050390464,60.049176017229186,25.432438748379138,64.30253268591805,81.86307762881057,9.650204085400327,64.93427021321334,9.329576150652741,32.710592602415545,27.22423584742376,97.62977394859888,23.267288631219763,12.513468541448358,44.778471934482255,28.90166667411841,91.81745329081026,27.821347113239348,64.11961730195162,8.80112832047426,15.765802799193217,90.17535969984135,91.03958396689683,38.54682230488914,38.635999002814515,47.465340904854294,62.1974966640196,17.15525912093856,9.566641387284157,97.49265102730406,14.272078127908639,7.205519736181499,48.719535346716945,79.24043367933113,36.76849495804257,99.69555056029014,78.25654088943678,48.646093836006685,79.85339056744357,23.70020922505731,42.78676346787802,48.710468452916835,44.16653530048759,42.70588971169577,94.53114400265187,61.209077180628256,67.84145963665465,31.113883216386608,32.64149906849104,14.38937571675326,29.17358133206195,58.72019813453526,1.8791573539961193,61.11405018511651,76.95038956589826,9.935077736822562,7.802032139741444,95.44311402979606,26.497556447957837,69.6636483951012,20.304532775434915,47.4787511667123,72.21294399562223,0.6797661613668127,29.984552571289925,64.44024676005954,46.98033693411945,6.701981070052653,90.09265398457877,87.82053872519258,12.686711776584037,15.627429430230254,5.189599313827909,35.98002253927072,35.54861451273496,12.570138617714733,40.81030884966273,21.96753964370136,86.86298130033387,0.3347766655853901,2.511113853658964,97.37773884640876,89.98681943024131,0.38452670583016824,9.827299749847418,71.75025845352295,14.645594071704116,5.736357415787108,21.140482549057925,36.48559766737095,27.563212236572877]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/subnormal_results.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/subnormal_results.json new file mode 100644 index 000000000000..2ddb3b031791 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/subnormal_results.json @@ -0,0 +1 @@ +{"expected":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"x":[1.18e-38,1.17941000005e-38,1.1788200001e-38,1.17823000015e-38,1.1776400002e-38,1.17705000025e-38,1.1764600003e-38,1.17587000035e-38,1.1752800004e-38,1.17469000045e-38,1.1741000005e-38,1.17351000055e-38,1.1729200006e-38,1.17233000065e-38,1.1717400007e-38,1.17115000075e-38,1.1705600008e-38,1.16997000085e-38,1.1693800009e-38,1.16879000095e-38,1.1682000009999999e-38,1.16761000105e-38,1.1670200010999999e-38,1.16643000115e-38,1.1658400011999999e-38,1.16525000125e-38,1.1646600012999999e-38,1.16407000135e-38,1.1634800013999999e-38,1.16289000145e-38,1.1623000014999999e-38,1.16171000155e-38,1.1611200015999999e-38,1.16053000165e-38,1.1599400016999999e-38,1.15935000175e-38,1.1587600017999999e-38,1.15817000185e-38,1.1575800019e-38,1.15699000195e-38,1.156400002e-38,1.15581000205e-38,1.1552200021e-38,1.15463000215e-38,1.1540400022e-38,1.15345000225e-38,1.1528600023e-38,1.15227000235e-38,1.1516800024e-38,1.15109000245e-38,1.1505000025e-38,1.14991000255e-38,1.1493200026e-38,1.14873000265e-38,1.1481400027e-38,1.14755000275e-38,1.1469600028e-38,1.1463700028499999e-38,1.1457800029e-38,1.1451900029499999e-38,1.144600003e-38,1.1440100030499999e-38,1.1434200031e-38,1.1428300031499999e-38,1.1422400032e-38,1.1416500032499999e-38,1.1410600033e-38,1.1404700033499999e-38,1.1398800034e-38,1.1392900034499999e-38,1.1387000035e-38,1.1381100035499999e-38,1.1375200036e-38,1.1369300036499999e-38,1.1363400037e-38,1.1357500037499999e-38,1.1351600038e-38,1.13457000385e-38,1.1339800039e-38,1.13339000395e-38,1.132800004e-38,1.13221000405e-38,1.1316200041e-38,1.13103000415e-38,1.1304400042e-38,1.12985000425e-38,1.1292600043e-38,1.12867000435e-38,1.1280800044e-38,1.12749000445e-38,1.1269000045e-38,1.12631000455e-38,1.1257200046e-38,1.12513000465e-38,1.1245400047e-38,1.12395000475e-38,1.1233600047999999e-38,1.12277000485e-38,1.1221800048999999e-38,1.12159000495e-38,1.1210000049999999e-38,1.12041000505e-38,1.1198200050999999e-38,1.11923000515e-38,1.1186400051999999e-38,1.11805000525e-38,1.1174600052999999e-38,1.11687000535e-38,1.1162800053999999e-38,1.11569000545e-38,1.1151000054999999e-38,1.11451000555e-38,1.1139200055999999e-38,1.11333000565e-38,1.1127400057e-38,1.11215000575e-38,1.1115600058e-38,1.11097000585e-38,1.1103800059e-38,1.10979000595e-38,1.109200006e-38,1.10861000605e-38,1.1080200061e-38,1.10743000615e-38,1.1068400062e-38,1.10625000625e-38,1.1056600063e-38,1.10507000635e-38,1.1044800064e-38,1.10389000645e-38,1.1033000065e-38,1.10271000655e-38,1.1021200066e-38,1.1015300066499999e-38,1.1009400067e-38,1.1003500067499999e-38,1.0997600068e-38,1.0991700068499999e-38,1.0985800069e-38,1.0979900069499999e-38,1.097400007e-38,1.0968100070499999e-38,1.0962200071e-38,1.0956300071499999e-38,1.0950400072e-38,1.0944500072499999e-38,1.0938600073e-38,1.0932700073499999e-38,1.0926800074e-38,1.0920900074499999e-38,1.0915000075e-38,1.0909100075499999e-38,1.0903200076e-38,1.08973000765e-38,1.0891400077e-38,1.08855000775e-38,1.0879600078e-38,1.08737000785e-38,1.0867800079e-38,1.08619000795e-38,1.085600008e-38,1.08501000805e-38,1.0844200081e-38,1.08383000815e-38,1.0832400082e-38,1.08265000825e-38,1.0820600083e-38,1.08147000835e-38,1.0808800084e-38,1.08029000845e-38,1.0797000085e-38,1.07911000855e-38,1.0785200085999999e-38,1.07793000865e-38,1.0773400086999999e-38,1.07675000875e-38,1.0761600087999999e-38,1.07557000885e-38,1.0749800088999999e-38,1.07439000895e-38,1.0738000089999999e-38,1.07321000905e-38,1.0726200090999999e-38,1.07203000915e-38,1.0714400091999999e-38,1.07085000925e-38,1.0702600092999999e-38,1.06967000935e-38,1.0690800093999999e-38,1.06849000945e-38,1.0679000095e-38,1.06731000955e-38,1.0667200096e-38,1.06613000965e-38,1.0655400097e-38,1.06495000975e-38,1.0643600098e-38,1.06377000985e-38,1.0631800099e-38,1.06259000995e-38,1.06200001e-38,1.06141001005e-38,1.0608200101e-38,1.06023001015e-38,1.0596400102e-38,1.05905001025e-38,1.0584600103e-38,1.05787001035e-38,1.0572800104e-38,1.05669001045e-38,1.0561000105e-38,1.0555100105499999e-38,1.0549200106e-38,1.0543300106499999e-38,1.0537400107e-38,1.0531500107499999e-38,1.0525600108e-38,1.0519700108499999e-38,1.0513800109e-38,1.0507900109499999e-38,1.050200011e-38,1.0496100110499999e-38,1.0490200111e-38,1.0484300111499999e-38,1.0478400112e-38,1.0472500112499999e-38,1.0466600113e-38,1.04607001135e-38,1.0454800114e-38,1.04489001145e-38,1.0443000115e-38,1.04371001155e-38,1.0431200116e-38,1.04253001165e-38,1.0419400117e-38,1.04135001175e-38,1.0407600118e-38,1.04017001185e-38,1.0395800119e-38,1.03899001195e-38,1.038400012e-38,1.03781001205e-38,1.0372200121e-38,1.03663001215e-38,1.0360400122e-38,1.03545001225e-38,1.0348600123e-38,1.03427001235e-38,1.0336800123999999e-38,1.03309001245e-38,1.0325000124999999e-38,1.03191001255e-38,1.0313200125999999e-38,1.03073001265e-38,1.0301400126999999e-38,1.02955001275e-38,1.0289600127999999e-38,1.02837001285e-38,1.0277800128999999e-38,1.02719001295e-38,1.0266000129999999e-38,1.02601001305e-38,1.0254200130999999e-38,1.02483001315e-38,1.0242400131999999e-38,1.02365001325e-38,1.0230600133e-38,1.02247001335e-38,1.0218800134e-38,1.02129001345e-38,1.0207000135e-38,1.02011001355e-38,1.0195200136e-38,1.01893001365e-38,1.0183400137e-38,1.01775001375e-38,1.0171600138e-38,1.01657001385e-38,1.0159800139e-38,1.01539001395e-38,1.014800014e-38,1.01421001405e-38,1.0136200141e-38,1.01303001415e-38,1.0124400142e-38,1.01185001425e-38,1.0112600143e-38,1.0106700143499999e-38,1.0100800144e-38,1.0094900144499999e-38,1.0089000145e-38,1.0083100145499999e-38,1.0077200146e-38,1.0071300146499999e-38,1.0065400147e-38,1.0059500147499999e-38,1.0053600148e-38,1.0047700148499999e-38,1.0041800149e-38,1.0035900149499999e-38,1.003000015e-38,1.0024100150499999e-38,1.0018200151e-38,1.00123001515e-38,1.0006400152e-38,1.00005001525e-38,9.994600153e-39,9.9887001535e-39,9.982800154e-39,9.9769001545e-39,9.971000155e-39,9.9651001555e-39,9.959200156e-39,9.9533001565e-39,9.947400157e-39,9.9415001575e-39,9.935600158e-39,9.9297001585e-39,9.923800159e-39,9.9179001595e-39,9.91200016e-39,9.9061001605e-39,9.900200161e-39,9.8943001615e-39,9.888400161999999e-39,9.8825001625e-39,9.876600162999999e-39,9.8707001635e-39,9.864800163999999e-39,9.8589001645e-39,9.853000164999999e-39,9.8471001655e-39,9.841200165999999e-39,9.8353001665e-39,9.829400166999999e-39,9.8235001675e-39,9.817600167999999e-39,9.8117001685e-39,9.805800168999999e-39,9.7999001695e-39,9.794000169999999e-39,9.7881001705e-39,9.782200171e-39,9.7763001715e-39,9.770400172e-39,9.7645001725e-39,9.758600173e-39,9.7527001735e-39,9.746800174e-39,9.7409001745e-39,9.735000175e-39,9.7291001755e-39,9.723200176e-39,9.7173001765e-39,9.711400177e-39,9.7055001775e-39,9.699600178e-39,9.6937001785e-39,9.687800179e-39,9.6819001795e-39,9.67600018e-39,9.6701001805e-39,9.664200181e-39,9.658300181499999e-39,9.652400182e-39,9.646500182499999e-39,9.640600183e-39,9.634700183499999e-39,9.628800184e-39,9.622900184499999e-39,9.617000185e-39,9.611100185499999e-39,9.605200186e-39,9.599300186499999e-39,9.593400187e-39,9.587500187499999e-39,9.581600188e-39,9.575700188499999e-39,9.569800189e-39,9.5639001895e-39,9.55800019e-39,9.5521001905e-39,9.546200191e-39,9.5403001915e-39,9.534400192e-39,9.5285001925e-39,9.522600193e-39,9.5167001935e-39,9.510800194e-39,9.5049001945e-39,9.499000195e-39,9.4931001955e-39,9.487200196e-39,9.4813001965e-39,9.475400197e-39,9.4695001975e-39,9.463600198e-39,9.4577001985e-39,9.451800199e-39,9.4459001995e-39,9.4400002e-39,9.4341002005e-39,9.428200200999999e-39,9.4223002015e-39,9.416400201999999e-39,9.4105002025e-39,9.404600202999999e-39,9.3987002035e-39,9.392800203999999e-39,9.3869002045e-39,9.381000204999999e-39,9.3751002055e-39,9.369200205999999e-39,9.3633002065e-39,9.357400206999999e-39,9.3515002075e-39,9.345600207999999e-39,9.3397002085e-39,9.333800209e-39,9.3279002095e-39,9.32200021e-39,9.3161002105e-39,9.310200211e-39,9.3043002115e-39,9.298400212e-39,9.2925002125e-39,9.286600213e-39,9.2807002135e-39,9.274800214e-39,9.2689002145e-39,9.263000215e-39,9.2571002155e-39,9.251200216e-39,9.2453002165e-39,9.239400217e-39,9.2335002175e-39,9.227600218e-39,9.2217002185e-39,9.215800219e-39,9.209900219499999e-39,9.20400022e-39,9.198100220499999e-39,9.192200221e-39,9.186300221499999e-39,9.180400222e-39,9.174500222499999e-39,9.168600223e-39,9.162700223499999e-39,9.156800224e-39,9.150900224499999e-39,9.145000225e-39,9.139100225499999e-39,9.133200226e-39,9.127300226499999e-39,9.121400227e-39,9.1155002275e-39,9.109600228e-39,9.1037002285e-39,9.097800229e-39,9.0919002295e-39,9.08600023e-39,9.0801002305e-39,9.074200231e-39,9.0683002315e-39,9.062400232e-39,9.0565002325e-39,9.050600233e-39,9.0447002335e-39,9.038800234e-39,9.0329002345e-39,9.027000235e-39,9.0211002355e-39,9.015200236e-39,9.0093002365e-39,9.003400237e-39,8.9975002375e-39,8.991600238e-39,8.9857002385e-39,8.979800238999999e-39,8.9739002395e-39,8.968000239999999e-39,8.9621002405e-39,8.956200240999999e-39,8.9503002415e-39,8.944400241999999e-39,8.9385002425e-39,8.932600242999999e-39,8.9267002435e-39,8.920800243999999e-39,8.9149002445e-39,8.909000244999999e-39,8.9031002455e-39,8.897200246e-39,8.8913002465e-39,8.885400247e-39,8.8795002475e-39,8.873600248e-39,8.8677002485e-39,8.861800249e-39,8.8559002495e-39,8.85000025e-39,8.8441002505e-39,8.838200251e-39,8.8323002515e-39,8.826400252e-39,8.8205002525e-39,8.814600253e-39,8.8087002535e-39,8.802800254e-39,8.7969002545e-39,8.791000255e-39,8.7851002555e-39,8.779200256e-39,8.7733002565e-39,8.767400257e-39,8.761500257499999e-39,8.755600258e-39,8.749700258499999e-39,8.743800259e-39,8.737900259499999e-39,8.73200026e-39,8.726100260499999e-39,8.720200261e-39,8.714300261499999e-39,8.708400262e-39,8.702500262499999e-39,8.696600263e-39,8.690700263499999e-39,8.684800264e-39,8.678900264499999e-39,8.673000265e-39,8.6671002655e-39,8.661200266e-39,8.6553002665e-39,8.649400267e-39,8.6435002675e-39,8.637600268e-39,8.6317002685e-39,8.625800269e-39,8.6199002695e-39,8.61400027e-39,8.6081002705e-39,8.602200271e-39,8.5963002715e-39,8.590400272e-39,8.5845002725e-39,8.578600273e-39,8.5727002735e-39,8.566800274e-39,8.5609002745e-39,8.555000275e-39,8.5491002755e-39,8.543200276e-39,8.5373002765e-39,8.531400276999999e-39,8.5255002775e-39,8.519600277999999e-39,8.5137002785e-39,8.507800278999999e-39,8.5019002795e-39,8.496000279999999e-39,8.4901002805e-39,8.484200280999999e-39,8.4783002815e-39,8.472400281999999e-39,8.4665002825e-39,8.460600282999999e-39,8.4547002835e-39,8.448800284e-39,8.4429002845e-39,8.437000285e-39,8.4311002855e-39,8.425200286e-39,8.4193002865e-39,8.413400287e-39,8.4075002875e-39,8.401600288e-39,8.3957002885e-39,8.389800289e-39,8.3839002895e-39,8.37800029e-39,8.3721002905e-39,8.366200291e-39,8.3603002915e-39,8.354400292e-39,8.3485002925e-39,8.342600293e-39,8.3367002935e-39,8.330800294e-39,8.3249002945e-39,8.319000295e-39,8.3131002955e-39,8.307200296e-39,8.301300296499999e-39,8.295400297e-39,8.289500297499999e-39,8.283600298e-39,8.277700298499999e-39,8.271800299e-39,8.265900299499999e-39,8.2600003e-39,8.254100300499999e-39,8.248200301e-39,8.242300301499999e-39,8.236400302e-39,8.230500302499999e-39,8.224600303e-39,8.2187003035e-39,8.212800304e-39,8.2069003045e-39,8.201000305e-39,8.1951003055e-39,8.189200306e-39,8.1833003065e-39,8.177400307e-39,8.1715003075e-39,8.165600308e-39,8.1597003085e-39,8.153800309e-39,8.1479003095e-39,8.14200031e-39,8.1361003105e-39,8.130200311e-39,8.1243003115e-39,8.118400312e-39,8.1125003125e-39,8.106600313e-39,8.1007003135e-39,8.094800314e-39,8.0889003145e-39,8.083000314999999e-39,8.0771003155e-39,8.071200315999999e-39,8.0653003165e-39,8.059400316999999e-39,8.0535003175e-39,8.047600317999999e-39,8.0417003185e-39,8.035800318999999e-39,8.0299003195e-39,8.024000319999999e-39,8.0181003205e-39,8.012200320999999e-39,8.0063003215e-39,8.000400322e-39,7.9945003225e-39,7.988600323e-39,7.9827003235e-39,7.976800324e-39,7.9709003245e-39,7.965000325e-39,7.9591003255e-39,7.953200326e-39,7.9473003265e-39,7.941400327e-39,7.9355003275e-39,7.929600328e-39,7.9237003285e-39,7.917800329e-39,7.9119003295e-39,7.90600033e-39,7.9001003305e-39,7.894200331e-39,7.8883003315e-39,7.882400332e-39,7.8765003325e-39,7.870600333e-39,7.8647003335e-39,7.858800334e-39,7.852900334499999e-39,7.847000335e-39,7.841100335499999e-39,7.835200336e-39,7.829300336499999e-39,7.823400337e-39,7.817500337499999e-39,7.811600338e-39,7.805700338499999e-39,7.799800339e-39,7.793900339499999e-39,7.78800034e-39,7.7821003405e-39,7.776200341e-39,7.7703003415e-39,7.764400342e-39,7.7585003425e-39,7.752600343e-39,7.7467003435e-39,7.740800344e-39,7.7349003445e-39,7.729000345e-39,7.7231003455e-39,7.717200346e-39,7.7113003465e-39,7.705400347e-39,7.6995003475e-39,7.693600348e-39,7.6877003485e-39,7.681800349e-39,7.6759003495e-39,7.67000035e-39,7.6641003505e-39,7.658200351e-39,7.6523003515e-39,7.646400352e-39,7.6405003525e-39,7.634600352999999e-39,7.6287003535e-39,7.622800353999999e-39,7.6169003545e-39,7.611000354999999e-39,7.6051003555e-39,7.599200355999999e-39,7.5933003565e-39,7.587400356999999e-39,7.5815003575e-39,7.575600357999999e-39,7.5697003585e-39,7.563800358999999e-39,7.5579003595e-39,7.55200036e-39,7.5461003605e-39,7.540200361e-39,7.5343003615e-39,7.528400362e-39,7.5225003625e-39,7.516600363e-39,7.5107003635e-39,7.504800364e-39,7.4989003645e-39,7.493000365e-39,7.4871003655e-39,7.481200366e-39,7.4753003665e-39,7.469400367e-39,7.4635003675e-39,7.457600368e-39,7.4517003685e-39,7.445800369e-39,7.4399003695e-39,7.43400037e-39,7.4281003705e-39,7.422200371e-39,7.4163003715e-39,7.410400372e-39,7.404500372499999e-39,7.398600373e-39,7.392700373499999e-39,7.386800374e-39,7.380900374499999e-39,7.375000375e-39,7.369100375499999e-39,7.363200376e-39,7.357300376499999e-39,7.351400377e-39,7.345500377499999e-39,7.339600378e-39,7.3337003785e-39,7.327800379e-39,7.3219003795e-39,7.31600038e-39,7.3101003805e-39,7.304200381e-39,7.2983003815e-39,7.292400382e-39,7.2865003825e-39,7.280600383e-39,7.2747003835e-39,7.268800384e-39,7.2629003845e-39,7.257000385e-39,7.2511003855e-39,7.245200386e-39,7.2393003865e-39,7.233400387e-39,7.2275003875e-39,7.221600388e-39,7.2157003885e-39,7.209800389e-39,7.2039003895e-39,7.19800039e-39,7.1921003905e-39,7.186200391e-39,7.1803003915e-39,7.174400391999999e-39,7.1685003925e-39,7.162600392999999e-39,7.1567003935e-39,7.150800393999999e-39,7.1449003945e-39,7.139000394999999e-39,7.1331003955e-39,7.127200395999999e-39,7.1213003965e-39,7.115400396999999e-39,7.1095003975e-39,7.103600398e-39,7.0977003985e-39,7.091800399e-39,7.0859003995e-39,7.0800004e-39,7.0741004005e-39,7.068200401e-39,7.0623004015e-39,7.056400402e-39,7.0505004025e-39,7.044600403e-39,7.0387004035e-39,7.032800404e-39,7.0269004045e-39,7.021000405e-39,7.0151004055e-39,7.009200406e-39,7.0033004065e-39,6.997400407e-39,6.9915004075e-39,6.985600408e-39,6.9797004085e-39,6.973800409e-39,6.9679004095e-39,6.96200041e-39,6.956100410499999e-39,6.950200411e-39,6.944300411499999e-39,6.938400412e-39,6.932500412499999e-39,6.926600413e-39,6.920700413499999e-39,6.914800414e-39,6.908900414499999e-39,6.903000415e-39,6.897100415499999e-39,6.891200416e-39,6.8853004165e-39,6.879400417e-39,6.8735004175e-39,6.867600418e-39,6.8617004185e-39,6.855800419e-39,6.8499004195e-39,6.84400042e-39,6.8381004205e-39,6.832200421e-39,6.8263004215e-39,6.820400422e-39,6.8145004225e-39,6.808600423e-39,6.8027004235e-39,6.796800424e-39,6.7909004245e-39,6.785000425e-39,6.7791004255e-39,6.773200426e-39,6.7673004265e-39,6.761400427e-39,6.7555004275e-39,6.749600428e-39,6.7437004285e-39,6.737800429e-39,6.7319004295e-39,6.726000429999999e-39,6.7201004305e-39,6.714200430999999e-39,6.7083004315e-39,6.702400431999999e-39,6.6965004325e-39,6.690600432999999e-39,6.6847004335e-39,6.678800433999999e-39,6.6729004345e-39,6.667000434999999e-39,6.6611004355e-39,6.655200436e-39,6.6493004365e-39,6.643400437e-39,6.6375004375e-39,6.631600438e-39,6.6257004385e-39,6.619800439e-39,6.6139004395e-39,6.60800044e-39,6.6021004405e-39,6.596200441e-39,6.5903004415e-39,6.584400442e-39,6.5785004425e-39,6.572600443e-39,6.5667004435e-39,6.560800444e-39,6.5549004445e-39,6.549000445e-39,6.5431004455e-39,6.537200446e-39,6.5313004465e-39,6.525400447e-39,6.5195004475e-39,6.513600448e-39,6.507700448499999e-39,6.501800449e-39,6.495900449499999e-39,6.49000045e-39,6.484100450499999e-39,6.478200451e-39,6.472300451499999e-39,6.466400452e-39,6.460500452499999e-39,6.454600453e-39,6.448700453499999e-39,6.442800454e-39,6.4369004545e-39,6.431000455e-39,6.4251004555e-39,6.419200456e-39,6.4133004565e-39,6.407400457e-39,6.4015004575e-39,6.395600458e-39,6.3897004585e-39,6.383800459e-39,6.3779004595e-39,6.37200046e-39,6.3661004605e-39,6.360200461e-39,6.3543004615e-39,6.348400462e-39,6.3425004625e-39,6.336600463e-39,6.3307004635e-39,6.324800464e-39,6.3189004645e-39,6.313000465e-39,6.3071004655e-39,6.301200466e-39,6.2953004665e-39,6.289400467e-39,6.2835004675e-39,6.277600467999999e-39,6.2717004685e-39,6.265800468999999e-39,6.2599004695e-39,6.254000469999999e-39,6.2481004705e-39,6.242200470999999e-39,6.2363004715e-39,6.230400471999999e-39,6.2245004725e-39,6.218600473e-39,6.2127004735e-39,6.206800474e-39,6.2009004745e-39,6.195000475e-39,6.1891004755e-39,6.183200476e-39,6.1773004765e-39,6.171400477e-39,6.1655004775e-39,6.159600478e-39,6.1537004785e-39,6.147800479e-39,6.1419004795e-39,6.13600048e-39,6.1301004805e-39,6.124200481e-39,6.1183004815e-39,6.112400482e-39,6.1065004825e-39,6.100600483e-39,6.0947004835e-39,6.088800484e-39,6.0829004845e-39,6.077000485e-39,6.0711004855e-39,6.065200486e-39,6.0593004865e-39,6.053400487e-39,6.047500487499999e-39,6.041600488e-39,6.035700488499999e-39,6.029800489e-39,6.023900489499999e-39,6.01800049e-39,6.012100490499999e-39,6.006200491e-39,6.000300491499999e-39,5.994400492e-39,5.9885004925e-39,5.982600493e-39,5.9767004935e-39,5.970800494e-39,5.9649004945e-39,5.959000495e-39,5.9531004955e-39,5.947200496e-39,5.9413004965e-39,5.935400497e-39,5.9295004975e-39,5.923600498e-39,5.9177004985e-39,5.911800499e-39,5.9059004995e-39,5.9000005e-39,5.8941005005e-39,5.888200501e-39,5.8823005015e-39,5.876400502e-39,5.8705005025e-39,5.864600503e-39,5.8587005035e-39,5.852800504e-39,5.8469005045e-39,5.841000505e-39,5.8351005055e-39,5.829200506e-39,5.8233005065e-39,5.817400507e-39,5.8115005075e-39,5.805600508e-39,5.7997005085e-39,5.793800509e-39,5.7879005095e-39,5.78200051e-39,5.7761005105e-39,5.770200511e-39,5.7643005115e-39,5.758400512e-39,5.7525005125e-39,5.746600513e-39,5.7407005135e-39,5.734800514e-39,5.7289005145e-39,5.723000515e-39,5.7171005154999997e-39,5.7112005159999997e-39,5.7053005164999996e-39,5.6994005169999996e-39,5.6935005174999996e-39,5.6876005179999996e-39,5.6817005184999996e-39,5.6758005189999995e-39,5.6699005194999995e-39,5.6640005199999995e-39,5.6581005205e-39,5.652200521e-39,5.6463005215e-39,5.640400522e-39,5.6345005225e-39,5.628600523e-39,5.6227005235e-39,5.616800524e-39,5.6109005245e-39,5.605000525e-39,5.5991005255e-39,5.593200526e-39,5.5873005265e-39,5.581400527e-39,5.5755005275e-39,5.569600528e-39,5.5637005285e-39,5.557800529e-39,5.5519005295e-39,5.54600053e-39,5.5401005305e-39,5.534200531e-39,5.5283005315e-39,5.522400532e-39,5.5165005325e-39,5.510600533e-39,5.5047005335e-39,5.498800534e-39,5.4929005344999997e-39,5.4870005349999997e-39,5.4811005354999996e-39,5.4752005359999996e-39,5.4693005364999996e-39,5.4634005369999996e-39,5.4575005374999996e-39,5.4516005379999996e-39,5.4457005384999995e-39,5.4398005389999995e-39,5.4339005395e-39,5.42800054e-39,5.4221005405e-39,5.416200541e-39,5.4103005415e-39,5.404400542e-39,5.3985005425e-39,5.392600543e-39,5.3867005435e-39,5.380800544e-39,5.3749005445e-39,5.369000545e-39,5.3631005455e-39,5.357200546e-39,5.3513005465e-39,5.345400547e-39,5.3395005475e-39,5.333600548e-39,5.3277005485e-39,5.321800549e-39,5.3159005495e-39,5.31000055e-39,5.3041005505e-39,5.298200551e-39,5.2923005515e-39,5.286400552e-39,5.2805005525e-39,5.274600553e-39,5.2687005535e-39,5.2628005539999997e-39,5.2569005544999996e-39,5.2510005549999996e-39,5.2451005554999996e-39,5.2392005559999996e-39,5.2333005564999996e-39,5.2274005569999996e-39,5.2215005574999995e-39,5.2156005579999995e-39,5.2097005585e-39,5.203800559e-39,5.1979005595e-39,5.19200056e-39,5.1861005605e-39,5.180200561e-39,5.1743005615e-39,5.168400562e-39,5.1625005625e-39,5.156600563e-39,5.1507005635e-39,5.144800564e-39,5.1389005645e-39,5.133000565e-39,5.1271005655e-39,5.121200566e-39,5.1153005665e-39,5.109400567e-39,5.1035005675e-39,5.097600568e-39,5.0917005685e-39,5.085800569e-39,5.0799005695e-39,5.07400057e-39,5.0681005705e-39,5.062200571e-39,5.0563005715e-39,5.050400572e-39,5.0445005725e-39,5.0386005729999997e-39,5.0327005734999996e-39,5.0268005739999996e-39,5.0209005744999996e-39,5.0150005749999996e-39,5.0091005754999996e-39,5.0032005759999996e-39,4.9973005764999995e-39,4.991400577e-39,4.9855005775e-39,4.979600578e-39,4.9737005785e-39,4.967800579e-39,4.9619005795e-39,4.95600058e-39,4.9501005805e-39,4.944200581e-39,4.9383005815e-39,4.932400582e-39,4.9265005825e-39,4.920600583e-39,4.9147005835e-39,4.908800584e-39,4.9029005845e-39,4.897000585e-39,4.8911005855e-39,4.885200586e-39,4.8793005865e-39,4.873400587e-39,4.8675005875e-39,4.861600588e-39,4.8557005885e-39,4.849800589e-39,4.8439005895e-39,4.83800059e-39,4.8321005905e-39,4.826200591e-39,4.8203005915e-39,4.8144005919999997e-39,4.8085005924999996e-39,4.8026005929999996e-39,4.7967005934999996e-39,4.7908005939999996e-39,4.7849005944999996e-39,4.7790005949999996e-39,4.7731005954999995e-39,4.767200596e-39,4.7613005965e-39,4.755400597e-39,4.7495005975e-39,4.743600598e-39,4.7377005985e-39,4.731800599e-39,4.7259005995e-39,4.7200006e-39,4.7141006005e-39,4.708200601e-39,4.7023006015e-39,4.696400602e-39,4.6905006025e-39,4.684600603e-39,4.6787006035e-39,4.672800604e-39,4.6669006045e-39,4.661000605e-39,4.6551006055e-39,4.649200606e-39,4.6433006065e-39,4.637400607e-39,4.6315006075e-39,4.625600608e-39,4.6197006085e-39,4.613800609e-39,4.6079006095e-39,4.60200061e-39,4.5961006105e-39,4.5902006109999997e-39,4.5843006114999997e-39,4.5784006119999996e-39,4.5725006124999996e-39,4.5666006129999996e-39,4.5607006134999996e-39,4.5548006139999996e-39,4.5489006144999995e-39,4.543000615e-39,4.5371006155e-39,4.531200616e-39,4.5253006165e-39,4.519400617e-39,4.5135006175e-39,4.507600618e-39,4.5017006185e-39,4.495800619e-39,4.4899006195e-39,4.48400062e-39,4.4781006205e-39,4.472200621e-39,4.4663006215e-39,4.460400622e-39,4.4545006225e-39,4.448600623e-39,4.4427006235e-39,4.436800624e-39,4.4309006245e-39,4.425000625e-39,4.4191006255e-39,4.413200626e-39,4.4073006265e-39,4.401400627e-39,4.3955006275e-39,4.389600628e-39,4.3837006285e-39,4.377800629e-39,4.3719006295e-39,4.3660006299999997e-39,4.3601006304999997e-39,4.3542006309999996e-39,4.3483006314999996e-39,4.3424006319999996e-39,4.3365006324999996e-39,4.3306006329999996e-39,4.3247006334999996e-39,4.318800634e-39,4.3129006345e-39,4.307000635e-39,4.3011006355e-39,4.295200636e-39,4.2893006365e-39,4.283400637e-39,4.2775006375e-39,4.271600638e-39,4.2657006385e-39,4.259800639e-39,4.2539006395e-39,4.24800064e-39,4.2421006405e-39,4.236200641e-39,4.2303006415e-39,4.224400642e-39,4.2185006425e-39,4.212600643e-39,4.2067006435e-39,4.200800644e-39,4.1949006445e-39,4.189000645e-39,4.1831006455e-39,4.177200646e-39,4.1713006465e-39,4.165400647e-39,4.1595006475e-39,4.153600648e-39,4.1477006485e-39,4.141800649e-39,4.1359006494999997e-39,4.1300006499999996e-39,4.1241006504999996e-39,4.1182006509999996e-39,4.1123006514999996e-39,4.1064006519999996e-39,4.1005006524999996e-39,4.094600653e-39,4.0887006535e-39,4.082800654e-39,4.0769006545e-39,4.071000655e-39,4.0651006555e-39,4.059200656e-39,4.0533006565e-39,4.047400657e-39,4.0415006575e-39,4.035600658e-39,4.0297006585e-39,4.023800659e-39,4.0179006595e-39,4.01200066e-39,4.0061006605e-39,4.000200661e-39,3.9943006615e-39,3.988400662e-39,3.9825006625e-39,3.976600663e-39,3.9707006635e-39,3.964800664e-39,3.9589006645e-39,3.953000665e-39,3.9471006655e-39,3.941200666e-39,3.9353006665e-39,3.929400667e-39,3.9235006675e-39,3.917600668e-39,3.9117006684999997e-39,3.9058006689999996e-39,3.8999006694999996e-39,3.8940006699999996e-39,3.8881006704999996e-39,3.8822006709999996e-39,3.8763006714999996e-39,3.870400672e-39,3.8645006725e-39,3.858600673e-39,3.8527006735e-39,3.846800674e-39,3.8409006745e-39,3.835000675e-39,3.8291006755e-39,3.823200676e-39,3.8173006765e-39,3.811400677e-39,3.8055006775e-39,3.799600678e-39,3.7937006785e-39,3.787800679e-39,3.7819006795e-39,3.77600068e-39,3.7701006805e-39,3.764200681e-39,3.7583006815e-39,3.752400682e-39,3.7465006825e-39,3.740600683e-39,3.7347006835e-39,3.728800684e-39,3.7229006845e-39,3.717000685e-39,3.7111006855e-39,3.705200686e-39,3.6993006865e-39,3.693400687e-39,3.6875006874999997e-39,3.6816006879999996e-39,3.6757006884999996e-39,3.6698006889999996e-39,3.6639006894999996e-39,3.6580006899999996e-39,3.6521006905e-39,3.646200691e-39,3.6403006915e-39,3.634400692e-39,3.6285006925e-39,3.622600693e-39,3.6167006935e-39,3.610800694e-39,3.6049006945e-39,3.599000695e-39,3.5931006955e-39,3.587200696e-39,3.5813006965e-39,3.575400697e-39,3.5695006975e-39,3.563600698e-39,3.5577006985e-39,3.551800699e-39,3.5459006995e-39,3.5400007e-39,3.5341007005e-39,3.528200701e-39,3.5223007015e-39,3.516400702e-39,3.5105007025e-39,3.504600703e-39,3.4987007035e-39,3.492800704e-39,3.4869007045e-39,3.481000705e-39,3.4751007055e-39,3.469200706e-39,3.4633007064999997e-39,3.4574007069999997e-39,3.4515007074999996e-39,3.4456007079999996e-39,3.4397007084999996e-39,3.4338007089999996e-39,3.4279007095e-39,3.42200071e-39,3.4161007105e-39,3.410200711e-39,3.4043007115e-39,3.398400712e-39,3.3925007125e-39,3.386600713e-39,3.3807007135e-39,3.374800714e-39,3.3689007145e-39,3.363000715e-39,3.3571007155e-39,3.351200716e-39,3.3453007165e-39,3.339400717e-39,3.3335007175e-39,3.327600718e-39,3.3217007185e-39,3.315800719e-39,3.3099007195e-39,3.30400072e-39,3.2981007205e-39,3.292200721e-39,3.2863007215e-39,3.280400722e-39,3.2745007225e-39,3.268600723e-39,3.2627007235e-39,3.256800724e-39,3.2509007245e-39,3.245000725e-39,3.2391007255e-39,3.2332007259999997e-39,3.2273007264999996e-39,3.2214007269999996e-39,3.2155007274999996e-39,3.2096007279999996e-39,3.2037007285e-39,3.197800729e-39,3.1919007295e-39,3.18600073e-39,3.1801007305e-39,3.174200731e-39,3.1683007315e-39,3.162400732e-39,3.1565007325e-39,3.150600733e-39,3.1447007335e-39,3.138800734e-39,3.1329007345e-39,3.127000735e-39,3.1211007355e-39,3.115200736e-39,3.1093007365e-39,3.103400737e-39,3.0975007375e-39,3.091600738e-39,3.0857007385e-39,3.079800739e-39,3.0739007395e-39,3.06800074e-39,3.0621007405e-39,3.056200741e-39,3.0503007415e-39,3.044400742e-39,3.0385007425e-39,3.032600743e-39,3.0267007435e-39,3.020800744e-39,3.0149007445e-39,3.0090007449999997e-39,3.0031007454999996e-39,2.9972007459999996e-39,2.9913007464999996e-39,2.9854007469999996e-39,2.9795007475e-39,2.973600748e-39,2.9677007485e-39,2.961800749e-39,2.9559007495e-39,2.95000075e-39,2.9441007505e-39,2.9382007509999998e-39,2.9323007514999998e-39,2.926400752e-39,2.9205007525e-39,2.914600753e-39,2.9087007535e-39,2.902800754e-39,2.8969007545e-39,2.891000755e-39,2.8851007555e-39,2.879200756e-39,2.8733007565e-39,2.867400757e-39,2.8615007575e-39,2.855600758e-39,2.8497007585e-39,2.8438007589999998e-39,2.8379007594999998e-39,2.8320007599999998e-39,2.8261007604999998e-39,2.8202007609999998e-39,2.8143007615e-39,2.808400762e-39,2.8025007625e-39,2.796600763e-39,2.7907007635e-39,2.784800764e-39,2.7789007645e-39,2.773000765e-39,2.7671007655e-39,2.761200766e-39,2.7553007665e-39,2.749400767e-39,2.7435007675e-39,2.737600768e-39,2.7317007685e-39,2.7258007689999998e-39,2.7199007694999998e-39,2.7140007699999998e-39,2.7081007704999998e-39,2.702200771e-39,2.6963007715e-39,2.690400772e-39,2.6845007725e-39,2.678600773e-39,2.6727007735e-39,2.666800774e-39,2.6609007745e-39,2.655000775e-39,2.6491007755e-39,2.643200776e-39,2.6373007765e-39,2.631400777e-39,2.6255007775e-39,2.619600778e-39,2.6137007784999998e-39,2.6078007789999998e-39,2.6019007794999998e-39,2.5960007799999998e-39,2.5901007805e-39,2.584200781e-39,2.5783007815e-39,2.572400782e-39,2.5665007825e-39,2.560600783e-39,2.5547007835e-39,2.548800784e-39,2.5429007845e-39,2.537000785e-39,2.5311007855e-39,2.525200786e-39,2.5193007865e-39,2.513400787e-39,2.5075007875e-39,2.5016007879999998e-39,2.4957007884999998e-39,2.4898007889999998e-39,2.4839007894999998e-39,2.47800079e-39,2.4721007905e-39,2.466200791e-39,2.4603007915e-39,2.454400792e-39,2.4485007925e-39,2.442600793e-39,2.4367007935e-39,2.430800794e-39,2.4249007945e-39,2.419000795e-39,2.4131007955e-39,2.407200796e-39,2.4013007965e-39,2.395400797e-39,2.3895007974999998e-39,2.3836007979999998e-39,2.3777007984999998e-39,2.3718007989999998e-39,2.3659007995e-39,2.3600008e-39,2.3541008005e-39,2.348200801e-39,2.3423008015e-39,2.336400802e-39,2.3305008025e-39,2.324600803e-39,2.3187008035e-39,2.312800804e-39,2.3069008045e-39,2.301000805e-39,2.2951008055e-39,2.289200806e-39,2.2833008065e-39,2.2774008069999998e-39,2.2715008074999998e-39,2.2656008079999998e-39,2.2597008084999998e-39,2.253800809e-39,2.2479008095e-39,2.24200081e-39,2.2361008105e-39,2.230200811e-39,2.2243008115e-39,2.218400812e-39,2.2125008125e-39,2.206600813e-39,2.2007008135e-39,2.194800814e-39,2.1889008145e-39,2.183000815e-39,2.1771008155e-39,2.171200816e-39,2.1653008164999998e-39,2.1594008169999998e-39,2.1535008174999998e-39,2.1476008179999998e-39,2.1417008185e-39,2.135800819e-39,2.1299008195e-39,2.12400082e-39,2.1181008205e-39,2.112200821e-39,2.1063008215e-39,2.100400822e-39,2.0945008225e-39,2.088600823e-39,2.0827008235e-39,2.076800824e-39,2.0709008245e-39,2.065000825e-39,2.0591008255e-39,2.0532008259999998e-39,2.0473008264999998e-39,2.0414008269999998e-39,2.0355008274999998e-39,2.029600828e-39,2.0237008285e-39,2.017800829e-39,2.0119008295e-39,2.00600083e-39,2.0001008305e-39,1.994200831e-39,1.9883008315e-39,1.982400832e-39,1.9765008325e-39,1.970600833e-39,1.9647008335e-39,1.958800834e-39,1.9529008345e-39,1.947000835e-39,1.9411008354999998e-39,1.9352008359999998e-39,1.9293008364999998e-39,1.9234008369999998e-39,1.9175008375e-39,1.911600838e-39,1.9057008385e-39,1.899800839e-39,1.8939008395e-39,1.88800084e-39,1.8821008405e-39,1.876200841e-39,1.8703008415e-39,1.864400842e-39,1.8585008425e-39,1.852600843e-39,1.8467008435e-39,1.840800844e-39,1.8349008445e-39,1.8290008449999998e-39,1.8231008454999998e-39,1.8172008459999998e-39,1.8113008465e-39,1.805400847e-39,1.7995008475e-39,1.793600848e-39,1.7877008485e-39,1.781800849e-39,1.7759008495e-39,1.77000085e-39,1.7641008505e-39,1.758200851e-39,1.7523008515e-39,1.746400852e-39,1.7405008525e-39,1.734600853e-39,1.7287008535e-39,1.722800854e-39,1.7169008544999998e-39,1.7110008549999998e-39,1.7051008554999998e-39,1.699200856e-39,1.6933008565e-39,1.687400857e-39,1.6815008575e-39,1.675600858e-39,1.6697008585e-39,1.663800859e-39,1.6579008595e-39,1.65200086e-39,1.6461008605e-39,1.640200861e-39,1.6343008615e-39,1.628400862e-39,1.6225008625e-39,1.616600863e-39,1.6107008635e-39,1.604800864e-39,1.5989008644999998e-39,1.5930008649999998e-39,1.5871008655e-39,1.581200866e-39,1.5753008665e-39,1.569400867e-39,1.5635008675e-39,1.557600868e-39,1.5517008685e-39,1.545800869e-39,1.5399008695e-39,1.53400087e-39,1.5281008705e-39,1.522200871e-39,1.5163008715e-39,1.510400872e-39,1.5045008725e-39,1.498600873e-39,1.4927008735e-39,1.4868008739999998e-39,1.4809008744999998e-39,1.475000875e-39,1.4691008755e-39,1.4632008759999999e-39,1.4573008764999999e-39,1.4514008769999999e-39,1.4455008775e-39,1.439600878e-39,1.4337008785e-39,1.427800879e-39,1.4219008795e-39,1.41600088e-39,1.4101008805e-39,1.4042008809999999e-39,1.3983008814999999e-39,1.392400882e-39,1.3865008825e-39,1.380600883e-39,1.3747008835e-39,1.368800884e-39,1.3629008845e-39,1.357000885e-39,1.3511008855e-39,1.3452008859999999e-39,1.3393008864999999e-39,1.333400887e-39,1.3275008875e-39,1.321600888e-39,1.3157008885e-39,1.309800889e-39,1.3039008895e-39,1.29800089e-39,1.2921008904999999e-39,1.2862008909999999e-39,1.2803008915e-39,1.274400892e-39,1.2685008925e-39,1.262600893e-39,1.2567008935e-39,1.250800894e-39,1.2449008945e-39,1.239000895e-39,1.2331008954999999e-39,1.2272008959999999e-39,1.2213008965e-39,1.215400897e-39,1.2095008975e-39,1.203600898e-39,1.1977008985e-39,1.191800899e-39,1.1859008995e-39,1.1800008999999999e-39,1.1741009004999999e-39,1.168200901e-39,1.1623009015e-39,1.156400902e-39,1.1505009025e-39,1.144600903e-39,1.1387009035e-39,1.132800904e-39,1.1269009045e-39,1.1210009049999999e-39,1.1151009054999999e-39,1.109200906e-39,1.1033009065e-39,1.097400907e-39,1.0915009075e-39,1.085600908e-39,1.0797009085e-39,1.073800909e-39,1.0679009094999999e-39,1.0620009099999999e-39,1.0561009105e-39,1.050200911e-39,1.0443009115e-39,1.038400912e-39,1.0325009125e-39,1.026600913e-39,1.0207009135e-39,1.014800914e-39,1.0089009144999999e-39,1.0030009149999999e-39,9.971009155e-40,9.91200916e-40,9.853009165e-40,9.79400917e-40,9.735009175e-40,9.67600918e-40,9.617009185e-40,9.558009189999999e-40,9.499009194999999e-40,9.4400092e-40,9.381009205e-40,9.32200921e-40,9.263009215e-40,9.20400922e-40,9.145009225e-40,9.08600923e-40,9.027009235e-40,8.968009239999999e-40,8.909009244999999e-40,8.85000925e-40,8.791009255e-40,8.73200926e-40,8.673009265e-40,8.61400927e-40,8.555009275e-40,8.49600928e-40,8.437009285e-40,8.378009289999999e-40,8.319009295e-40,8.2600093e-40,8.201009305e-40,8.14200931e-40,8.083009315e-40,8.02400932e-40,7.965009325e-40,7.90600933e-40,7.847009334999999e-40,7.78800934e-40,7.729009345e-40,7.67000935e-40,7.611009355e-40,7.55200936e-40,7.493009365e-40,7.43400937e-40,7.375009375e-40,7.31600938e-40,7.257009385e-40,7.19800939e-40,7.1390093949999995e-40,7.0800094e-40,7.021009405e-40,6.96200941e-40,6.903009415e-40,6.8440094199999995e-40,6.785009425e-40,6.72600943e-40,6.667009435e-40,6.60800944e-40,6.5490094449999994e-40,6.49000945e-40,6.431009455e-40,6.37200946e-40,6.3130094649999996e-40,6.25400947e-40,6.195009475e-40,6.13600948e-40,6.077009485e-40,6.0180094899999995e-40,5.959009495e-40,5.9000095e-40,5.841009505e-40,5.78200951e-40,5.7230095149999995e-40,5.66400952e-40,5.605009525e-40,5.54600953e-40,5.487009535e-40,5.4280095399999995e-40,5.369009545e-40,5.31000955e-40,5.251009555e-40,5.1920095599999996e-40,5.133009565e-40,5.07400957e-40,5.015009575e-40,4.95600958e-40,4.8970095849999996e-40,4.83800959e-40,4.779009595e-40,4.7200096e-40,4.661009605e-40,4.6020096099999995e-40,4.543009615e-40,4.48400962e-40,4.425009625e-40,4.36600963e-40,4.3070096349999995e-40,4.24800964e-40,4.189009645e-40,4.13000965e-40,4.071009655e-40,4.01200966e-40,3.953009665e-40,3.89400967e-40,3.835009675e-40,3.7760096799999996e-40,3.717009685e-40,3.65800969e-40,3.599009695e-40,3.5400096999999997e-40,3.481009705e-40,3.4220097099999998e-40,3.363009715e-40,3.30400972e-40,3.245009725e-40,3.18600973e-40,3.1270097349999997e-40,3.06800974e-40,3.0090097449999998e-40,2.95000975e-40,2.891009755e-40,2.83200976e-40,2.773009765e-40,2.7140097699999998e-40,2.655009775e-40,2.59600978e-40,2.537009785e-40,2.47800979e-40,2.419009795e-40,2.3600098e-40,2.3010098049999998e-40,2.24200981e-40,2.183009815e-40,2.12400982e-40,2.065009825e-40,2.0060098299999997e-40,1.947009835e-40,1.88800984e-40,1.8290098449999998e-40,1.7700098499999999e-40,1.711009855e-40,1.65200986e-40,1.593009865e-40,1.53400987e-40,1.475009875e-40,1.4160098799999999e-40,1.357009885e-40,1.29800989e-40,1.239009895e-40,1.1800099e-40,1.121009905e-40,1.0620099099999999e-40,1.003009915e-40,9.4400992e-41,8.85009925e-41,8.2600993e-41,7.670099349999999e-41,7.0800994e-41,6.49009945e-41,5.900099499999999e-41,5.31009955e-41,4.7200996e-41,4.13009965e-41,3.5400997e-41,2.95009975e-41,2.3600998e-41,1.7700998499999999e-41,1.1800999e-41,5.9009995e-42,1.0e-45],"y":[1.18e-38,1.17941000005e-38,1.1788200001e-38,1.17823000015e-38,1.1776400002e-38,1.17705000025e-38,1.1764600003e-38,1.17587000035e-38,1.1752800004e-38,1.17469000045e-38,1.1741000005e-38,1.17351000055e-38,1.1729200006e-38,1.17233000065e-38,1.1717400007e-38,1.17115000075e-38,1.1705600008e-38,1.16997000085e-38,1.1693800009e-38,1.16879000095e-38,1.1682000009999999e-38,1.16761000105e-38,1.1670200010999999e-38,1.16643000115e-38,1.1658400011999999e-38,1.16525000125e-38,1.1646600012999999e-38,1.16407000135e-38,1.1634800013999999e-38,1.16289000145e-38,1.1623000014999999e-38,1.16171000155e-38,1.1611200015999999e-38,1.16053000165e-38,1.1599400016999999e-38,1.15935000175e-38,1.1587600017999999e-38,1.15817000185e-38,1.1575800019e-38,1.15699000195e-38,1.156400002e-38,1.15581000205e-38,1.1552200021e-38,1.15463000215e-38,1.1540400022e-38,1.15345000225e-38,1.1528600023e-38,1.15227000235e-38,1.1516800024e-38,1.15109000245e-38,1.1505000025e-38,1.14991000255e-38,1.1493200026e-38,1.14873000265e-38,1.1481400027e-38,1.14755000275e-38,1.1469600028e-38,1.1463700028499999e-38,1.1457800029e-38,1.1451900029499999e-38,1.144600003e-38,1.1440100030499999e-38,1.1434200031e-38,1.1428300031499999e-38,1.1422400032e-38,1.1416500032499999e-38,1.1410600033e-38,1.1404700033499999e-38,1.1398800034e-38,1.1392900034499999e-38,1.1387000035e-38,1.1381100035499999e-38,1.1375200036e-38,1.1369300036499999e-38,1.1363400037e-38,1.1357500037499999e-38,1.1351600038e-38,1.13457000385e-38,1.1339800039e-38,1.13339000395e-38,1.132800004e-38,1.13221000405e-38,1.1316200041e-38,1.13103000415e-38,1.1304400042e-38,1.12985000425e-38,1.1292600043e-38,1.12867000435e-38,1.1280800044e-38,1.12749000445e-38,1.1269000045e-38,1.12631000455e-38,1.1257200046e-38,1.12513000465e-38,1.1245400047e-38,1.12395000475e-38,1.1233600047999999e-38,1.12277000485e-38,1.1221800048999999e-38,1.12159000495e-38,1.1210000049999999e-38,1.12041000505e-38,1.1198200050999999e-38,1.11923000515e-38,1.1186400051999999e-38,1.11805000525e-38,1.1174600052999999e-38,1.11687000535e-38,1.1162800053999999e-38,1.11569000545e-38,1.1151000054999999e-38,1.11451000555e-38,1.1139200055999999e-38,1.11333000565e-38,1.1127400057e-38,1.11215000575e-38,1.1115600058e-38,1.11097000585e-38,1.1103800059e-38,1.10979000595e-38,1.109200006e-38,1.10861000605e-38,1.1080200061e-38,1.10743000615e-38,1.1068400062e-38,1.10625000625e-38,1.1056600063e-38,1.10507000635e-38,1.1044800064e-38,1.10389000645e-38,1.1033000065e-38,1.10271000655e-38,1.1021200066e-38,1.1015300066499999e-38,1.1009400067e-38,1.1003500067499999e-38,1.0997600068e-38,1.0991700068499999e-38,1.0985800069e-38,1.0979900069499999e-38,1.097400007e-38,1.0968100070499999e-38,1.0962200071e-38,1.0956300071499999e-38,1.0950400072e-38,1.0944500072499999e-38,1.0938600073e-38,1.0932700073499999e-38,1.0926800074e-38,1.0920900074499999e-38,1.0915000075e-38,1.0909100075499999e-38,1.0903200076e-38,1.08973000765e-38,1.0891400077e-38,1.08855000775e-38,1.0879600078e-38,1.08737000785e-38,1.0867800079e-38,1.08619000795e-38,1.085600008e-38,1.08501000805e-38,1.0844200081e-38,1.08383000815e-38,1.0832400082e-38,1.08265000825e-38,1.0820600083e-38,1.08147000835e-38,1.0808800084e-38,1.08029000845e-38,1.0797000085e-38,1.07911000855e-38,1.0785200085999999e-38,1.07793000865e-38,1.0773400086999999e-38,1.07675000875e-38,1.0761600087999999e-38,1.07557000885e-38,1.0749800088999999e-38,1.07439000895e-38,1.0738000089999999e-38,1.07321000905e-38,1.0726200090999999e-38,1.07203000915e-38,1.0714400091999999e-38,1.07085000925e-38,1.0702600092999999e-38,1.06967000935e-38,1.0690800093999999e-38,1.06849000945e-38,1.0679000095e-38,1.06731000955e-38,1.0667200096e-38,1.06613000965e-38,1.0655400097e-38,1.06495000975e-38,1.0643600098e-38,1.06377000985e-38,1.0631800099e-38,1.06259000995e-38,1.06200001e-38,1.06141001005e-38,1.0608200101e-38,1.06023001015e-38,1.0596400102e-38,1.05905001025e-38,1.0584600103e-38,1.05787001035e-38,1.0572800104e-38,1.05669001045e-38,1.0561000105e-38,1.0555100105499999e-38,1.0549200106e-38,1.0543300106499999e-38,1.0537400107e-38,1.0531500107499999e-38,1.0525600108e-38,1.0519700108499999e-38,1.0513800109e-38,1.0507900109499999e-38,1.050200011e-38,1.0496100110499999e-38,1.0490200111e-38,1.0484300111499999e-38,1.0478400112e-38,1.0472500112499999e-38,1.0466600113e-38,1.04607001135e-38,1.0454800114e-38,1.04489001145e-38,1.0443000115e-38,1.04371001155e-38,1.0431200116e-38,1.04253001165e-38,1.0419400117e-38,1.04135001175e-38,1.0407600118e-38,1.04017001185e-38,1.0395800119e-38,1.03899001195e-38,1.038400012e-38,1.03781001205e-38,1.0372200121e-38,1.03663001215e-38,1.0360400122e-38,1.03545001225e-38,1.0348600123e-38,1.03427001235e-38,1.0336800123999999e-38,1.03309001245e-38,1.0325000124999999e-38,1.03191001255e-38,1.0313200125999999e-38,1.03073001265e-38,1.0301400126999999e-38,1.02955001275e-38,1.0289600127999999e-38,1.02837001285e-38,1.0277800128999999e-38,1.02719001295e-38,1.0266000129999999e-38,1.02601001305e-38,1.0254200130999999e-38,1.02483001315e-38,1.0242400131999999e-38,1.02365001325e-38,1.0230600133e-38,1.02247001335e-38,1.0218800134e-38,1.02129001345e-38,1.0207000135e-38,1.02011001355e-38,1.0195200136e-38,1.01893001365e-38,1.0183400137e-38,1.01775001375e-38,1.0171600138e-38,1.01657001385e-38,1.0159800139e-38,1.01539001395e-38,1.014800014e-38,1.01421001405e-38,1.0136200141e-38,1.01303001415e-38,1.0124400142e-38,1.01185001425e-38,1.0112600143e-38,1.0106700143499999e-38,1.0100800144e-38,1.0094900144499999e-38,1.0089000145e-38,1.0083100145499999e-38,1.0077200146e-38,1.0071300146499999e-38,1.0065400147e-38,1.0059500147499999e-38,1.0053600148e-38,1.0047700148499999e-38,1.0041800149e-38,1.0035900149499999e-38,1.003000015e-38,1.0024100150499999e-38,1.0018200151e-38,1.00123001515e-38,1.0006400152e-38,1.00005001525e-38,9.994600153e-39,9.9887001535e-39,9.982800154e-39,9.9769001545e-39,9.971000155e-39,9.9651001555e-39,9.959200156e-39,9.9533001565e-39,9.947400157e-39,9.9415001575e-39,9.935600158e-39,9.9297001585e-39,9.923800159e-39,9.9179001595e-39,9.91200016e-39,9.9061001605e-39,9.900200161e-39,9.8943001615e-39,9.888400161999999e-39,9.8825001625e-39,9.876600162999999e-39,9.8707001635e-39,9.864800163999999e-39,9.8589001645e-39,9.853000164999999e-39,9.8471001655e-39,9.841200165999999e-39,9.8353001665e-39,9.829400166999999e-39,9.8235001675e-39,9.817600167999999e-39,9.8117001685e-39,9.805800168999999e-39,9.7999001695e-39,9.794000169999999e-39,9.7881001705e-39,9.782200171e-39,9.7763001715e-39,9.770400172e-39,9.7645001725e-39,9.758600173e-39,9.7527001735e-39,9.746800174e-39,9.7409001745e-39,9.735000175e-39,9.7291001755e-39,9.723200176e-39,9.7173001765e-39,9.711400177e-39,9.7055001775e-39,9.699600178e-39,9.6937001785e-39,9.687800179e-39,9.6819001795e-39,9.67600018e-39,9.6701001805e-39,9.664200181e-39,9.658300181499999e-39,9.652400182e-39,9.646500182499999e-39,9.640600183e-39,9.634700183499999e-39,9.628800184e-39,9.622900184499999e-39,9.617000185e-39,9.611100185499999e-39,9.605200186e-39,9.599300186499999e-39,9.593400187e-39,9.587500187499999e-39,9.581600188e-39,9.575700188499999e-39,9.569800189e-39,9.5639001895e-39,9.55800019e-39,9.5521001905e-39,9.546200191e-39,9.5403001915e-39,9.534400192e-39,9.5285001925e-39,9.522600193e-39,9.5167001935e-39,9.510800194e-39,9.5049001945e-39,9.499000195e-39,9.4931001955e-39,9.487200196e-39,9.4813001965e-39,9.475400197e-39,9.4695001975e-39,9.463600198e-39,9.4577001985e-39,9.451800199e-39,9.4459001995e-39,9.4400002e-39,9.4341002005e-39,9.428200200999999e-39,9.4223002015e-39,9.416400201999999e-39,9.4105002025e-39,9.404600202999999e-39,9.3987002035e-39,9.392800203999999e-39,9.3869002045e-39,9.381000204999999e-39,9.3751002055e-39,9.369200205999999e-39,9.3633002065e-39,9.357400206999999e-39,9.3515002075e-39,9.345600207999999e-39,9.3397002085e-39,9.333800209e-39,9.3279002095e-39,9.32200021e-39,9.3161002105e-39,9.310200211e-39,9.3043002115e-39,9.298400212e-39,9.2925002125e-39,9.286600213e-39,9.2807002135e-39,9.274800214e-39,9.2689002145e-39,9.263000215e-39,9.2571002155e-39,9.251200216e-39,9.2453002165e-39,9.239400217e-39,9.2335002175e-39,9.227600218e-39,9.2217002185e-39,9.215800219e-39,9.209900219499999e-39,9.20400022e-39,9.198100220499999e-39,9.192200221e-39,9.186300221499999e-39,9.180400222e-39,9.174500222499999e-39,9.168600223e-39,9.162700223499999e-39,9.156800224e-39,9.150900224499999e-39,9.145000225e-39,9.139100225499999e-39,9.133200226e-39,9.127300226499999e-39,9.121400227e-39,9.1155002275e-39,9.109600228e-39,9.1037002285e-39,9.097800229e-39,9.0919002295e-39,9.08600023e-39,9.0801002305e-39,9.074200231e-39,9.0683002315e-39,9.062400232e-39,9.0565002325e-39,9.050600233e-39,9.0447002335e-39,9.038800234e-39,9.0329002345e-39,9.027000235e-39,9.0211002355e-39,9.015200236e-39,9.0093002365e-39,9.003400237e-39,8.9975002375e-39,8.991600238e-39,8.9857002385e-39,8.979800238999999e-39,8.9739002395e-39,8.968000239999999e-39,8.9621002405e-39,8.956200240999999e-39,8.9503002415e-39,8.944400241999999e-39,8.9385002425e-39,8.932600242999999e-39,8.9267002435e-39,8.920800243999999e-39,8.9149002445e-39,8.909000244999999e-39,8.9031002455e-39,8.897200246e-39,8.8913002465e-39,8.885400247e-39,8.8795002475e-39,8.873600248e-39,8.8677002485e-39,8.861800249e-39,8.8559002495e-39,8.85000025e-39,8.8441002505e-39,8.838200251e-39,8.8323002515e-39,8.826400252e-39,8.8205002525e-39,8.814600253e-39,8.8087002535e-39,8.802800254e-39,8.7969002545e-39,8.791000255e-39,8.7851002555e-39,8.779200256e-39,8.7733002565e-39,8.767400257e-39,8.761500257499999e-39,8.755600258e-39,8.749700258499999e-39,8.743800259e-39,8.737900259499999e-39,8.73200026e-39,8.726100260499999e-39,8.720200261e-39,8.714300261499999e-39,8.708400262e-39,8.702500262499999e-39,8.696600263e-39,8.690700263499999e-39,8.684800264e-39,8.678900264499999e-39,8.673000265e-39,8.6671002655e-39,8.661200266e-39,8.6553002665e-39,8.649400267e-39,8.6435002675e-39,8.637600268e-39,8.6317002685e-39,8.625800269e-39,8.6199002695e-39,8.61400027e-39,8.6081002705e-39,8.602200271e-39,8.5963002715e-39,8.590400272e-39,8.5845002725e-39,8.578600273e-39,8.5727002735e-39,8.566800274e-39,8.5609002745e-39,8.555000275e-39,8.5491002755e-39,8.543200276e-39,8.5373002765e-39,8.531400276999999e-39,8.5255002775e-39,8.519600277999999e-39,8.5137002785e-39,8.507800278999999e-39,8.5019002795e-39,8.496000279999999e-39,8.4901002805e-39,8.484200280999999e-39,8.4783002815e-39,8.472400281999999e-39,8.4665002825e-39,8.460600282999999e-39,8.4547002835e-39,8.448800284e-39,8.4429002845e-39,8.437000285e-39,8.4311002855e-39,8.425200286e-39,8.4193002865e-39,8.413400287e-39,8.4075002875e-39,8.401600288e-39,8.3957002885e-39,8.389800289e-39,8.3839002895e-39,8.37800029e-39,8.3721002905e-39,8.366200291e-39,8.3603002915e-39,8.354400292e-39,8.3485002925e-39,8.342600293e-39,8.3367002935e-39,8.330800294e-39,8.3249002945e-39,8.319000295e-39,8.3131002955e-39,8.307200296e-39,8.301300296499999e-39,8.295400297e-39,8.289500297499999e-39,8.283600298e-39,8.277700298499999e-39,8.271800299e-39,8.265900299499999e-39,8.2600003e-39,8.254100300499999e-39,8.248200301e-39,8.242300301499999e-39,8.236400302e-39,8.230500302499999e-39,8.224600303e-39,8.2187003035e-39,8.212800304e-39,8.2069003045e-39,8.201000305e-39,8.1951003055e-39,8.189200306e-39,8.1833003065e-39,8.177400307e-39,8.1715003075e-39,8.165600308e-39,8.1597003085e-39,8.153800309e-39,8.1479003095e-39,8.14200031e-39,8.1361003105e-39,8.130200311e-39,8.1243003115e-39,8.118400312e-39,8.1125003125e-39,8.106600313e-39,8.1007003135e-39,8.094800314e-39,8.0889003145e-39,8.083000314999999e-39,8.0771003155e-39,8.071200315999999e-39,8.0653003165e-39,8.059400316999999e-39,8.0535003175e-39,8.047600317999999e-39,8.0417003185e-39,8.035800318999999e-39,8.0299003195e-39,8.024000319999999e-39,8.0181003205e-39,8.012200320999999e-39,8.0063003215e-39,8.000400322e-39,7.9945003225e-39,7.988600323e-39,7.9827003235e-39,7.976800324e-39,7.9709003245e-39,7.965000325e-39,7.9591003255e-39,7.953200326e-39,7.9473003265e-39,7.941400327e-39,7.9355003275e-39,7.929600328e-39,7.9237003285e-39,7.917800329e-39,7.9119003295e-39,7.90600033e-39,7.9001003305e-39,7.894200331e-39,7.8883003315e-39,7.882400332e-39,7.8765003325e-39,7.870600333e-39,7.8647003335e-39,7.858800334e-39,7.852900334499999e-39,7.847000335e-39,7.841100335499999e-39,7.835200336e-39,7.829300336499999e-39,7.823400337e-39,7.817500337499999e-39,7.811600338e-39,7.805700338499999e-39,7.799800339e-39,7.793900339499999e-39,7.78800034e-39,7.7821003405e-39,7.776200341e-39,7.7703003415e-39,7.764400342e-39,7.7585003425e-39,7.752600343e-39,7.7467003435e-39,7.740800344e-39,7.7349003445e-39,7.729000345e-39,7.7231003455e-39,7.717200346e-39,7.7113003465e-39,7.705400347e-39,7.6995003475e-39,7.693600348e-39,7.6877003485e-39,7.681800349e-39,7.6759003495e-39,7.67000035e-39,7.6641003505e-39,7.658200351e-39,7.6523003515e-39,7.646400352e-39,7.6405003525e-39,7.634600352999999e-39,7.6287003535e-39,7.622800353999999e-39,7.6169003545e-39,7.611000354999999e-39,7.6051003555e-39,7.599200355999999e-39,7.5933003565e-39,7.587400356999999e-39,7.5815003575e-39,7.575600357999999e-39,7.5697003585e-39,7.563800358999999e-39,7.5579003595e-39,7.55200036e-39,7.5461003605e-39,7.540200361e-39,7.5343003615e-39,7.528400362e-39,7.5225003625e-39,7.516600363e-39,7.5107003635e-39,7.504800364e-39,7.4989003645e-39,7.493000365e-39,7.4871003655e-39,7.481200366e-39,7.4753003665e-39,7.469400367e-39,7.4635003675e-39,7.457600368e-39,7.4517003685e-39,7.445800369e-39,7.4399003695e-39,7.43400037e-39,7.4281003705e-39,7.422200371e-39,7.4163003715e-39,7.410400372e-39,7.404500372499999e-39,7.398600373e-39,7.392700373499999e-39,7.386800374e-39,7.380900374499999e-39,7.375000375e-39,7.369100375499999e-39,7.363200376e-39,7.357300376499999e-39,7.351400377e-39,7.345500377499999e-39,7.339600378e-39,7.3337003785e-39,7.327800379e-39,7.3219003795e-39,7.31600038e-39,7.3101003805e-39,7.304200381e-39,7.2983003815e-39,7.292400382e-39,7.2865003825e-39,7.280600383e-39,7.2747003835e-39,7.268800384e-39,7.2629003845e-39,7.257000385e-39,7.2511003855e-39,7.245200386e-39,7.2393003865e-39,7.233400387e-39,7.2275003875e-39,7.221600388e-39,7.2157003885e-39,7.209800389e-39,7.2039003895e-39,7.19800039e-39,7.1921003905e-39,7.186200391e-39,7.1803003915e-39,7.174400391999999e-39,7.1685003925e-39,7.162600392999999e-39,7.1567003935e-39,7.150800393999999e-39,7.1449003945e-39,7.139000394999999e-39,7.1331003955e-39,7.127200395999999e-39,7.1213003965e-39,7.115400396999999e-39,7.1095003975e-39,7.103600398e-39,7.0977003985e-39,7.091800399e-39,7.0859003995e-39,7.0800004e-39,7.0741004005e-39,7.068200401e-39,7.0623004015e-39,7.056400402e-39,7.0505004025e-39,7.044600403e-39,7.0387004035e-39,7.032800404e-39,7.0269004045e-39,7.021000405e-39,7.0151004055e-39,7.009200406e-39,7.0033004065e-39,6.997400407e-39,6.9915004075e-39,6.985600408e-39,6.9797004085e-39,6.973800409e-39,6.9679004095e-39,6.96200041e-39,6.956100410499999e-39,6.950200411e-39,6.944300411499999e-39,6.938400412e-39,6.932500412499999e-39,6.926600413e-39,6.920700413499999e-39,6.914800414e-39,6.908900414499999e-39,6.903000415e-39,6.897100415499999e-39,6.891200416e-39,6.8853004165e-39,6.879400417e-39,6.8735004175e-39,6.867600418e-39,6.8617004185e-39,6.855800419e-39,6.8499004195e-39,6.84400042e-39,6.8381004205e-39,6.832200421e-39,6.8263004215e-39,6.820400422e-39,6.8145004225e-39,6.808600423e-39,6.8027004235e-39,6.796800424e-39,6.7909004245e-39,6.785000425e-39,6.7791004255e-39,6.773200426e-39,6.7673004265e-39,6.761400427e-39,6.7555004275e-39,6.749600428e-39,6.7437004285e-39,6.737800429e-39,6.7319004295e-39,6.726000429999999e-39,6.7201004305e-39,6.714200430999999e-39,6.7083004315e-39,6.702400431999999e-39,6.6965004325e-39,6.690600432999999e-39,6.6847004335e-39,6.678800433999999e-39,6.6729004345e-39,6.667000434999999e-39,6.6611004355e-39,6.655200436e-39,6.6493004365e-39,6.643400437e-39,6.6375004375e-39,6.631600438e-39,6.6257004385e-39,6.619800439e-39,6.6139004395e-39,6.60800044e-39,6.6021004405e-39,6.596200441e-39,6.5903004415e-39,6.584400442e-39,6.5785004425e-39,6.572600443e-39,6.5667004435e-39,6.560800444e-39,6.5549004445e-39,6.549000445e-39,6.5431004455e-39,6.537200446e-39,6.5313004465e-39,6.525400447e-39,6.5195004475e-39,6.513600448e-39,6.507700448499999e-39,6.501800449e-39,6.495900449499999e-39,6.49000045e-39,6.484100450499999e-39,6.478200451e-39,6.472300451499999e-39,6.466400452e-39,6.460500452499999e-39,6.454600453e-39,6.448700453499999e-39,6.442800454e-39,6.4369004545e-39,6.431000455e-39,6.4251004555e-39,6.419200456e-39,6.4133004565e-39,6.407400457e-39,6.4015004575e-39,6.395600458e-39,6.3897004585e-39,6.383800459e-39,6.3779004595e-39,6.37200046e-39,6.3661004605e-39,6.360200461e-39,6.3543004615e-39,6.348400462e-39,6.3425004625e-39,6.336600463e-39,6.3307004635e-39,6.324800464e-39,6.3189004645e-39,6.313000465e-39,6.3071004655e-39,6.301200466e-39,6.2953004665e-39,6.289400467e-39,6.2835004675e-39,6.277600467999999e-39,6.2717004685e-39,6.265800468999999e-39,6.2599004695e-39,6.254000469999999e-39,6.2481004705e-39,6.242200470999999e-39,6.2363004715e-39,6.230400471999999e-39,6.2245004725e-39,6.218600473e-39,6.2127004735e-39,6.206800474e-39,6.2009004745e-39,6.195000475e-39,6.1891004755e-39,6.183200476e-39,6.1773004765e-39,6.171400477e-39,6.1655004775e-39,6.159600478e-39,6.1537004785e-39,6.147800479e-39,6.1419004795e-39,6.13600048e-39,6.1301004805e-39,6.124200481e-39,6.1183004815e-39,6.112400482e-39,6.1065004825e-39,6.100600483e-39,6.0947004835e-39,6.088800484e-39,6.0829004845e-39,6.077000485e-39,6.0711004855e-39,6.065200486e-39,6.0593004865e-39,6.053400487e-39,6.047500487499999e-39,6.041600488e-39,6.035700488499999e-39,6.029800489e-39,6.023900489499999e-39,6.01800049e-39,6.012100490499999e-39,6.006200491e-39,6.000300491499999e-39,5.994400492e-39,5.9885004925e-39,5.982600493e-39,5.9767004935e-39,5.970800494e-39,5.9649004945e-39,5.959000495e-39,5.9531004955e-39,5.947200496e-39,5.9413004965e-39,5.935400497e-39,5.9295004975e-39,5.923600498e-39,5.9177004985e-39,5.911800499e-39,5.9059004995e-39,5.9000005e-39,5.8941005005e-39,5.888200501e-39,5.8823005015e-39,5.876400502e-39,5.8705005025e-39,5.864600503e-39,5.8587005035e-39,5.852800504e-39,5.8469005045e-39,5.841000505e-39,5.8351005055e-39,5.829200506e-39,5.8233005065e-39,5.817400507e-39,5.8115005075e-39,5.805600508e-39,5.7997005085e-39,5.793800509e-39,5.7879005095e-39,5.78200051e-39,5.7761005105e-39,5.770200511e-39,5.7643005115e-39,5.758400512e-39,5.7525005125e-39,5.746600513e-39,5.7407005135e-39,5.734800514e-39,5.7289005145e-39,5.723000515e-39,5.7171005154999997e-39,5.7112005159999997e-39,5.7053005164999996e-39,5.6994005169999996e-39,5.6935005174999996e-39,5.6876005179999996e-39,5.6817005184999996e-39,5.6758005189999995e-39,5.6699005194999995e-39,5.6640005199999995e-39,5.6581005205e-39,5.652200521e-39,5.6463005215e-39,5.640400522e-39,5.6345005225e-39,5.628600523e-39,5.6227005235e-39,5.616800524e-39,5.6109005245e-39,5.605000525e-39,5.5991005255e-39,5.593200526e-39,5.5873005265e-39,5.581400527e-39,5.5755005275e-39,5.569600528e-39,5.5637005285e-39,5.557800529e-39,5.5519005295e-39,5.54600053e-39,5.5401005305e-39,5.534200531e-39,5.5283005315e-39,5.522400532e-39,5.5165005325e-39,5.510600533e-39,5.5047005335e-39,5.498800534e-39,5.4929005344999997e-39,5.4870005349999997e-39,5.4811005354999996e-39,5.4752005359999996e-39,5.4693005364999996e-39,5.4634005369999996e-39,5.4575005374999996e-39,5.4516005379999996e-39,5.4457005384999995e-39,5.4398005389999995e-39,5.4339005395e-39,5.42800054e-39,5.4221005405e-39,5.416200541e-39,5.4103005415e-39,5.404400542e-39,5.3985005425e-39,5.392600543e-39,5.3867005435e-39,5.380800544e-39,5.3749005445e-39,5.369000545e-39,5.3631005455e-39,5.357200546e-39,5.3513005465e-39,5.345400547e-39,5.3395005475e-39,5.333600548e-39,5.3277005485e-39,5.321800549e-39,5.3159005495e-39,5.31000055e-39,5.3041005505e-39,5.298200551e-39,5.2923005515e-39,5.286400552e-39,5.2805005525e-39,5.274600553e-39,5.2687005535e-39,5.2628005539999997e-39,5.2569005544999996e-39,5.2510005549999996e-39,5.2451005554999996e-39,5.2392005559999996e-39,5.2333005564999996e-39,5.2274005569999996e-39,5.2215005574999995e-39,5.2156005579999995e-39,5.2097005585e-39,5.203800559e-39,5.1979005595e-39,5.19200056e-39,5.1861005605e-39,5.180200561e-39,5.1743005615e-39,5.168400562e-39,5.1625005625e-39,5.156600563e-39,5.1507005635e-39,5.144800564e-39,5.1389005645e-39,5.133000565e-39,5.1271005655e-39,5.121200566e-39,5.1153005665e-39,5.109400567e-39,5.1035005675e-39,5.097600568e-39,5.0917005685e-39,5.085800569e-39,5.0799005695e-39,5.07400057e-39,5.0681005705e-39,5.062200571e-39,5.0563005715e-39,5.050400572e-39,5.0445005725e-39,5.0386005729999997e-39,5.0327005734999996e-39,5.0268005739999996e-39,5.0209005744999996e-39,5.0150005749999996e-39,5.0091005754999996e-39,5.0032005759999996e-39,4.9973005764999995e-39,4.991400577e-39,4.9855005775e-39,4.979600578e-39,4.9737005785e-39,4.967800579e-39,4.9619005795e-39,4.95600058e-39,4.9501005805e-39,4.944200581e-39,4.9383005815e-39,4.932400582e-39,4.9265005825e-39,4.920600583e-39,4.9147005835e-39,4.908800584e-39,4.9029005845e-39,4.897000585e-39,4.8911005855e-39,4.885200586e-39,4.8793005865e-39,4.873400587e-39,4.8675005875e-39,4.861600588e-39,4.8557005885e-39,4.849800589e-39,4.8439005895e-39,4.83800059e-39,4.8321005905e-39,4.826200591e-39,4.8203005915e-39,4.8144005919999997e-39,4.8085005924999996e-39,4.8026005929999996e-39,4.7967005934999996e-39,4.7908005939999996e-39,4.7849005944999996e-39,4.7790005949999996e-39,4.7731005954999995e-39,4.767200596e-39,4.7613005965e-39,4.755400597e-39,4.7495005975e-39,4.743600598e-39,4.7377005985e-39,4.731800599e-39,4.7259005995e-39,4.7200006e-39,4.7141006005e-39,4.708200601e-39,4.7023006015e-39,4.696400602e-39,4.6905006025e-39,4.684600603e-39,4.6787006035e-39,4.672800604e-39,4.6669006045e-39,4.661000605e-39,4.6551006055e-39,4.649200606e-39,4.6433006065e-39,4.637400607e-39,4.6315006075e-39,4.625600608e-39,4.6197006085e-39,4.613800609e-39,4.6079006095e-39,4.60200061e-39,4.5961006105e-39,4.5902006109999997e-39,4.5843006114999997e-39,4.5784006119999996e-39,4.5725006124999996e-39,4.5666006129999996e-39,4.5607006134999996e-39,4.5548006139999996e-39,4.5489006144999995e-39,4.543000615e-39,4.5371006155e-39,4.531200616e-39,4.5253006165e-39,4.519400617e-39,4.5135006175e-39,4.507600618e-39,4.5017006185e-39,4.495800619e-39,4.4899006195e-39,4.48400062e-39,4.4781006205e-39,4.472200621e-39,4.4663006215e-39,4.460400622e-39,4.4545006225e-39,4.448600623e-39,4.4427006235e-39,4.436800624e-39,4.4309006245e-39,4.425000625e-39,4.4191006255e-39,4.413200626e-39,4.4073006265e-39,4.401400627e-39,4.3955006275e-39,4.389600628e-39,4.3837006285e-39,4.377800629e-39,4.3719006295e-39,4.3660006299999997e-39,4.3601006304999997e-39,4.3542006309999996e-39,4.3483006314999996e-39,4.3424006319999996e-39,4.3365006324999996e-39,4.3306006329999996e-39,4.3247006334999996e-39,4.318800634e-39,4.3129006345e-39,4.307000635e-39,4.3011006355e-39,4.295200636e-39,4.2893006365e-39,4.283400637e-39,4.2775006375e-39,4.271600638e-39,4.2657006385e-39,4.259800639e-39,4.2539006395e-39,4.24800064e-39,4.2421006405e-39,4.236200641e-39,4.2303006415e-39,4.224400642e-39,4.2185006425e-39,4.212600643e-39,4.2067006435e-39,4.200800644e-39,4.1949006445e-39,4.189000645e-39,4.1831006455e-39,4.177200646e-39,4.1713006465e-39,4.165400647e-39,4.1595006475e-39,4.153600648e-39,4.1477006485e-39,4.141800649e-39,4.1359006494999997e-39,4.1300006499999996e-39,4.1241006504999996e-39,4.1182006509999996e-39,4.1123006514999996e-39,4.1064006519999996e-39,4.1005006524999996e-39,4.094600653e-39,4.0887006535e-39,4.082800654e-39,4.0769006545e-39,4.071000655e-39,4.0651006555e-39,4.059200656e-39,4.0533006565e-39,4.047400657e-39,4.0415006575e-39,4.035600658e-39,4.0297006585e-39,4.023800659e-39,4.0179006595e-39,4.01200066e-39,4.0061006605e-39,4.000200661e-39,3.9943006615e-39,3.988400662e-39,3.9825006625e-39,3.976600663e-39,3.9707006635e-39,3.964800664e-39,3.9589006645e-39,3.953000665e-39,3.9471006655e-39,3.941200666e-39,3.9353006665e-39,3.929400667e-39,3.9235006675e-39,3.917600668e-39,3.9117006684999997e-39,3.9058006689999996e-39,3.8999006694999996e-39,3.8940006699999996e-39,3.8881006704999996e-39,3.8822006709999996e-39,3.8763006714999996e-39,3.870400672e-39,3.8645006725e-39,3.858600673e-39,3.8527006735e-39,3.846800674e-39,3.8409006745e-39,3.835000675e-39,3.8291006755e-39,3.823200676e-39,3.8173006765e-39,3.811400677e-39,3.8055006775e-39,3.799600678e-39,3.7937006785e-39,3.787800679e-39,3.7819006795e-39,3.77600068e-39,3.7701006805e-39,3.764200681e-39,3.7583006815e-39,3.752400682e-39,3.7465006825e-39,3.740600683e-39,3.7347006835e-39,3.728800684e-39,3.7229006845e-39,3.717000685e-39,3.7111006855e-39,3.705200686e-39,3.6993006865e-39,3.693400687e-39,3.6875006874999997e-39,3.6816006879999996e-39,3.6757006884999996e-39,3.6698006889999996e-39,3.6639006894999996e-39,3.6580006899999996e-39,3.6521006905e-39,3.646200691e-39,3.6403006915e-39,3.634400692e-39,3.6285006925e-39,3.622600693e-39,3.6167006935e-39,3.610800694e-39,3.6049006945e-39,3.599000695e-39,3.5931006955e-39,3.587200696e-39,3.5813006965e-39,3.575400697e-39,3.5695006975e-39,3.563600698e-39,3.5577006985e-39,3.551800699e-39,3.5459006995e-39,3.5400007e-39,3.5341007005e-39,3.528200701e-39,3.5223007015e-39,3.516400702e-39,3.5105007025e-39,3.504600703e-39,3.4987007035e-39,3.492800704e-39,3.4869007045e-39,3.481000705e-39,3.4751007055e-39,3.469200706e-39,3.4633007064999997e-39,3.4574007069999997e-39,3.4515007074999996e-39,3.4456007079999996e-39,3.4397007084999996e-39,3.4338007089999996e-39,3.4279007095e-39,3.42200071e-39,3.4161007105e-39,3.410200711e-39,3.4043007115e-39,3.398400712e-39,3.3925007125e-39,3.386600713e-39,3.3807007135e-39,3.374800714e-39,3.3689007145e-39,3.363000715e-39,3.3571007155e-39,3.351200716e-39,3.3453007165e-39,3.339400717e-39,3.3335007175e-39,3.327600718e-39,3.3217007185e-39,3.315800719e-39,3.3099007195e-39,3.30400072e-39,3.2981007205e-39,3.292200721e-39,3.2863007215e-39,3.280400722e-39,3.2745007225e-39,3.268600723e-39,3.2627007235e-39,3.256800724e-39,3.2509007245e-39,3.245000725e-39,3.2391007255e-39,3.2332007259999997e-39,3.2273007264999996e-39,3.2214007269999996e-39,3.2155007274999996e-39,3.2096007279999996e-39,3.2037007285e-39,3.197800729e-39,3.1919007295e-39,3.18600073e-39,3.1801007305e-39,3.174200731e-39,3.1683007315e-39,3.162400732e-39,3.1565007325e-39,3.150600733e-39,3.1447007335e-39,3.138800734e-39,3.1329007345e-39,3.127000735e-39,3.1211007355e-39,3.115200736e-39,3.1093007365e-39,3.103400737e-39,3.0975007375e-39,3.091600738e-39,3.0857007385e-39,3.079800739e-39,3.0739007395e-39,3.06800074e-39,3.0621007405e-39,3.056200741e-39,3.0503007415e-39,3.044400742e-39,3.0385007425e-39,3.032600743e-39,3.0267007435e-39,3.020800744e-39,3.0149007445e-39,3.0090007449999997e-39,3.0031007454999996e-39,2.9972007459999996e-39,2.9913007464999996e-39,2.9854007469999996e-39,2.9795007475e-39,2.973600748e-39,2.9677007485e-39,2.961800749e-39,2.9559007495e-39,2.95000075e-39,2.9441007505e-39,2.9382007509999998e-39,2.9323007514999998e-39,2.926400752e-39,2.9205007525e-39,2.914600753e-39,2.9087007535e-39,2.902800754e-39,2.8969007545e-39,2.891000755e-39,2.8851007555e-39,2.879200756e-39,2.8733007565e-39,2.867400757e-39,2.8615007575e-39,2.855600758e-39,2.8497007585e-39,2.8438007589999998e-39,2.8379007594999998e-39,2.8320007599999998e-39,2.8261007604999998e-39,2.8202007609999998e-39,2.8143007615e-39,2.808400762e-39,2.8025007625e-39,2.796600763e-39,2.7907007635e-39,2.784800764e-39,2.7789007645e-39,2.773000765e-39,2.7671007655e-39,2.761200766e-39,2.7553007665e-39,2.749400767e-39,2.7435007675e-39,2.737600768e-39,2.7317007685e-39,2.7258007689999998e-39,2.7199007694999998e-39,2.7140007699999998e-39,2.7081007704999998e-39,2.702200771e-39,2.6963007715e-39,2.690400772e-39,2.6845007725e-39,2.678600773e-39,2.6727007735e-39,2.666800774e-39,2.6609007745e-39,2.655000775e-39,2.6491007755e-39,2.643200776e-39,2.6373007765e-39,2.631400777e-39,2.6255007775e-39,2.619600778e-39,2.6137007784999998e-39,2.6078007789999998e-39,2.6019007794999998e-39,2.5960007799999998e-39,2.5901007805e-39,2.584200781e-39,2.5783007815e-39,2.572400782e-39,2.5665007825e-39,2.560600783e-39,2.5547007835e-39,2.548800784e-39,2.5429007845e-39,2.537000785e-39,2.5311007855e-39,2.525200786e-39,2.5193007865e-39,2.513400787e-39,2.5075007875e-39,2.5016007879999998e-39,2.4957007884999998e-39,2.4898007889999998e-39,2.4839007894999998e-39,2.47800079e-39,2.4721007905e-39,2.466200791e-39,2.4603007915e-39,2.454400792e-39,2.4485007925e-39,2.442600793e-39,2.4367007935e-39,2.430800794e-39,2.4249007945e-39,2.419000795e-39,2.4131007955e-39,2.407200796e-39,2.4013007965e-39,2.395400797e-39,2.3895007974999998e-39,2.3836007979999998e-39,2.3777007984999998e-39,2.3718007989999998e-39,2.3659007995e-39,2.3600008e-39,2.3541008005e-39,2.348200801e-39,2.3423008015e-39,2.336400802e-39,2.3305008025e-39,2.324600803e-39,2.3187008035e-39,2.312800804e-39,2.3069008045e-39,2.301000805e-39,2.2951008055e-39,2.289200806e-39,2.2833008065e-39,2.2774008069999998e-39,2.2715008074999998e-39,2.2656008079999998e-39,2.2597008084999998e-39,2.253800809e-39,2.2479008095e-39,2.24200081e-39,2.2361008105e-39,2.230200811e-39,2.2243008115e-39,2.218400812e-39,2.2125008125e-39,2.206600813e-39,2.2007008135e-39,2.194800814e-39,2.1889008145e-39,2.183000815e-39,2.1771008155e-39,2.171200816e-39,2.1653008164999998e-39,2.1594008169999998e-39,2.1535008174999998e-39,2.1476008179999998e-39,2.1417008185e-39,2.135800819e-39,2.1299008195e-39,2.12400082e-39,2.1181008205e-39,2.112200821e-39,2.1063008215e-39,2.100400822e-39,2.0945008225e-39,2.088600823e-39,2.0827008235e-39,2.076800824e-39,2.0709008245e-39,2.065000825e-39,2.0591008255e-39,2.0532008259999998e-39,2.0473008264999998e-39,2.0414008269999998e-39,2.0355008274999998e-39,2.029600828e-39,2.0237008285e-39,2.017800829e-39,2.0119008295e-39,2.00600083e-39,2.0001008305e-39,1.994200831e-39,1.9883008315e-39,1.982400832e-39,1.9765008325e-39,1.970600833e-39,1.9647008335e-39,1.958800834e-39,1.9529008345e-39,1.947000835e-39,1.9411008354999998e-39,1.9352008359999998e-39,1.9293008364999998e-39,1.9234008369999998e-39,1.9175008375e-39,1.911600838e-39,1.9057008385e-39,1.899800839e-39,1.8939008395e-39,1.88800084e-39,1.8821008405e-39,1.876200841e-39,1.8703008415e-39,1.864400842e-39,1.8585008425e-39,1.852600843e-39,1.8467008435e-39,1.840800844e-39,1.8349008445e-39,1.8290008449999998e-39,1.8231008454999998e-39,1.8172008459999998e-39,1.8113008465e-39,1.805400847e-39,1.7995008475e-39,1.793600848e-39,1.7877008485e-39,1.781800849e-39,1.7759008495e-39,1.77000085e-39,1.7641008505e-39,1.758200851e-39,1.7523008515e-39,1.746400852e-39,1.7405008525e-39,1.734600853e-39,1.7287008535e-39,1.722800854e-39,1.7169008544999998e-39,1.7110008549999998e-39,1.7051008554999998e-39,1.699200856e-39,1.6933008565e-39,1.687400857e-39,1.6815008575e-39,1.675600858e-39,1.6697008585e-39,1.663800859e-39,1.6579008595e-39,1.65200086e-39,1.6461008605e-39,1.640200861e-39,1.6343008615e-39,1.628400862e-39,1.6225008625e-39,1.616600863e-39,1.6107008635e-39,1.604800864e-39,1.5989008644999998e-39,1.5930008649999998e-39,1.5871008655e-39,1.581200866e-39,1.5753008665e-39,1.569400867e-39,1.5635008675e-39,1.557600868e-39,1.5517008685e-39,1.545800869e-39,1.5399008695e-39,1.53400087e-39,1.5281008705e-39,1.522200871e-39,1.5163008715e-39,1.510400872e-39,1.5045008725e-39,1.498600873e-39,1.4927008735e-39,1.4868008739999998e-39,1.4809008744999998e-39,1.475000875e-39,1.4691008755e-39,1.4632008759999999e-39,1.4573008764999999e-39,1.4514008769999999e-39,1.4455008775e-39,1.439600878e-39,1.4337008785e-39,1.427800879e-39,1.4219008795e-39,1.41600088e-39,1.4101008805e-39,1.4042008809999999e-39,1.3983008814999999e-39,1.392400882e-39,1.3865008825e-39,1.380600883e-39,1.3747008835e-39,1.368800884e-39,1.3629008845e-39,1.357000885e-39,1.3511008855e-39,1.3452008859999999e-39,1.3393008864999999e-39,1.333400887e-39,1.3275008875e-39,1.321600888e-39,1.3157008885e-39,1.309800889e-39,1.3039008895e-39,1.29800089e-39,1.2921008904999999e-39,1.2862008909999999e-39,1.2803008915e-39,1.274400892e-39,1.2685008925e-39,1.262600893e-39,1.2567008935e-39,1.250800894e-39,1.2449008945e-39,1.239000895e-39,1.2331008954999999e-39,1.2272008959999999e-39,1.2213008965e-39,1.215400897e-39,1.2095008975e-39,1.203600898e-39,1.1977008985e-39,1.191800899e-39,1.1859008995e-39,1.1800008999999999e-39,1.1741009004999999e-39,1.168200901e-39,1.1623009015e-39,1.156400902e-39,1.1505009025e-39,1.144600903e-39,1.1387009035e-39,1.132800904e-39,1.1269009045e-39,1.1210009049999999e-39,1.1151009054999999e-39,1.109200906e-39,1.1033009065e-39,1.097400907e-39,1.0915009075e-39,1.085600908e-39,1.0797009085e-39,1.073800909e-39,1.0679009094999999e-39,1.0620009099999999e-39,1.0561009105e-39,1.050200911e-39,1.0443009115e-39,1.038400912e-39,1.0325009125e-39,1.026600913e-39,1.0207009135e-39,1.014800914e-39,1.0089009144999999e-39,1.0030009149999999e-39,9.971009155e-40,9.91200916e-40,9.853009165e-40,9.79400917e-40,9.735009175e-40,9.67600918e-40,9.617009185e-40,9.558009189999999e-40,9.499009194999999e-40,9.4400092e-40,9.381009205e-40,9.32200921e-40,9.263009215e-40,9.20400922e-40,9.145009225e-40,9.08600923e-40,9.027009235e-40,8.968009239999999e-40,8.909009244999999e-40,8.85000925e-40,8.791009255e-40,8.73200926e-40,8.673009265e-40,8.61400927e-40,8.555009275e-40,8.49600928e-40,8.437009285e-40,8.378009289999999e-40,8.319009295e-40,8.2600093e-40,8.201009305e-40,8.14200931e-40,8.083009315e-40,8.02400932e-40,7.965009325e-40,7.90600933e-40,7.847009334999999e-40,7.78800934e-40,7.729009345e-40,7.67000935e-40,7.611009355e-40,7.55200936e-40,7.493009365e-40,7.43400937e-40,7.375009375e-40,7.31600938e-40,7.257009385e-40,7.19800939e-40,7.1390093949999995e-40,7.0800094e-40,7.021009405e-40,6.96200941e-40,6.903009415e-40,6.8440094199999995e-40,6.785009425e-40,6.72600943e-40,6.667009435e-40,6.60800944e-40,6.5490094449999994e-40,6.49000945e-40,6.431009455e-40,6.37200946e-40,6.3130094649999996e-40,6.25400947e-40,6.195009475e-40,6.13600948e-40,6.077009485e-40,6.0180094899999995e-40,5.959009495e-40,5.9000095e-40,5.841009505e-40,5.78200951e-40,5.7230095149999995e-40,5.66400952e-40,5.605009525e-40,5.54600953e-40,5.487009535e-40,5.4280095399999995e-40,5.369009545e-40,5.31000955e-40,5.251009555e-40,5.1920095599999996e-40,5.133009565e-40,5.07400957e-40,5.015009575e-40,4.95600958e-40,4.8970095849999996e-40,4.83800959e-40,4.779009595e-40,4.7200096e-40,4.661009605e-40,4.6020096099999995e-40,4.543009615e-40,4.48400962e-40,4.425009625e-40,4.36600963e-40,4.3070096349999995e-40,4.24800964e-40,4.189009645e-40,4.13000965e-40,4.071009655e-40,4.01200966e-40,3.953009665e-40,3.89400967e-40,3.835009675e-40,3.7760096799999996e-40,3.717009685e-40,3.65800969e-40,3.599009695e-40,3.5400096999999997e-40,3.481009705e-40,3.4220097099999998e-40,3.363009715e-40,3.30400972e-40,3.245009725e-40,3.18600973e-40,3.1270097349999997e-40,3.06800974e-40,3.0090097449999998e-40,2.95000975e-40,2.891009755e-40,2.83200976e-40,2.773009765e-40,2.7140097699999998e-40,2.655009775e-40,2.59600978e-40,2.537009785e-40,2.47800979e-40,2.419009795e-40,2.3600098e-40,2.3010098049999998e-40,2.24200981e-40,2.183009815e-40,2.12400982e-40,2.065009825e-40,2.0060098299999997e-40,1.947009835e-40,1.88800984e-40,1.8290098449999998e-40,1.7700098499999999e-40,1.711009855e-40,1.65200986e-40,1.593009865e-40,1.53400987e-40,1.475009875e-40,1.4160098799999999e-40,1.357009885e-40,1.29800989e-40,1.239009895e-40,1.1800099e-40,1.121009905e-40,1.0620099099999999e-40,1.003009915e-40,9.4400992e-41,8.85009925e-41,8.2600993e-41,7.670099349999999e-41,7.0800994e-41,6.49009945e-41,5.900099499999999e-41,5.31009955e-41,4.7200996e-41,4.13009965e-41,3.5400997e-41,2.95009975e-41,2.3600998e-41,1.7700998499999999e-41,1.1800999e-41,5.9009995e-42,1.0e-45]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js new file mode 100644 index 000000000000..e73235d475d2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js @@ -0,0 +1,236 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var fmodf = require( './../lib' ); + + +// FIXTURES // + +var subnormalResults = require( './fixtures/julia/subnormal_results.json' ); +var smallSmall = require( './fixtures/julia/small_small.json' ); +var smallLarge = require( './fixtures/julia/small_large.json' ); +var largeSmall = require( './fixtures/julia/large_small.json' ); +var negativePositive = require( './fixtures/julia/negative_positive.json' ); +var positiveNegative = require( './fixtures/julia/positive_negative.json' ); +var negativeNegative = require( './fixtures/julia/negative_negative.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof fmodf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the modulus function (subnormal results)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = subnormalResults.x; + y = subnormalResults.y; + expected = subnormalResults.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (small `x`, large `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = smallLarge.x; + y = smallLarge.y; + expected = smallLarge.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (large `x`, small `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = largeSmall.x; + y = largeSmall.y; + expected = largeSmall.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (small `x`, small `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = smallSmall.x; + y = smallSmall.y; + expected = smallSmall.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (positive `x`, negative `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = positiveNegative.x; + y = positiveNegative.y; + expected = positiveNegative.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (negative `x`, positive `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = negativePositive.x; + y = negativePositive.y; + expected = negativePositive.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (negative `x`, negative `y`)', function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = negativeNegative.x; + y = negativeNegative.y; + expected = negativeNegative.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN` for `y`', function test( t ) { + var v; + + v = fmodf( -3.0, NaN ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( 0.0, NaN ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN` for `x`', function test( t ) { + var v; + + v = fmodf( NaN, 5.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( NaN, 1.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( NaN, 0.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js new file mode 100644 index 000000000000..c726c9ba7b93 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js @@ -0,0 +1,245 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var fmodf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( fmodf instanceof Error ) +}; + + +// FIXTURES // + +var subnormalResults = require( './fixtures/julia/subnormal_results.json' ); +var smallSmall = require( './fixtures/julia/small_small.json' ); +var smallLarge = require( './fixtures/julia/small_large.json' ); +var largeSmall = require( './fixtures/julia/large_small.json' ); +var negativePositive = require( './fixtures/julia/negative_positive.json' ); +var positiveNegative = require( './fixtures/julia/positive_negative.json' ); +var negativeNegative = require( './fixtures/julia/negative_negative.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof fmodf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the modulus function (subnormal results)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = subnormalResults.x; + y = subnormalResults.y; + expected = subnormalResults.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (small `x`, large `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = smallLarge.x; + y = smallLarge.y; + expected = smallLarge.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (large `x`, small `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = largeSmall.x; + y = largeSmall.y; + expected = largeSmall.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (small `x`, small `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = smallSmall.x; + y = smallSmall.y; + expected = smallSmall.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (positive `x`, negative `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = positiveNegative.x; + y = positiveNegative.y; + expected = positiveNegative.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (negative `x`, positive `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = negativePositive.x; + y = negativePositive.y; + expected = negativePositive.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function evaluates the modulus function (negative `x`, negative `y`)', opts, function test( t ) { + var expected; + var delta; + var tol; + var v; + var x; + var y; + var i; + var e; + + x = negativeNegative.x; + y = negativeNegative.y; + expected = negativeNegative.expected; + for ( i = 0; i < x.length; i++ ) { + e = float64ToFloat32( expected[ i ] ); + v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); + delta = absf( v - e ); + tol = EPS * absf( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN` for `y`', opts, function test( t ) { + var v; + + v = fmodf( -3.0, NaN ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( 0.0, NaN ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN` for `x`', opts, function test( t ) { + var v; + + v = fmodf( NaN, 5.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( NaN, 1.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + v = fmodf( NaN, 0.0 ); + t.equal( isnanf( v ), true, 'returns expected value' ); + + t.end(); +}); From 6d3bb8af39008e091fb75ac68a66ca9f9f322ca4 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Sun, 3 Nov 2024 22:30:50 +0530 Subject: [PATCH 2/9] feat: add math/base/special/fmodf --- checkers_report.txt | 226 ++++++++++++++++++ .../@stdlib/math/base/special/fmodf/README.md | 36 +-- .../math/base/special/fmodf/manifest.json | 39 ++- .../math/base/special/fmodf/src/Makefile | 11 + .../math/base/special/fmodf/src/main.c | 36 +-- .../test/fixtures/julia/large_small.json | 2 +- .../fixtures/julia/negative_positive.json | 2 +- .../fixtures/julia/positive_negative.json | 2 +- .../test/fixtures/julia/small_large.json | 2 +- .../test/fixtures/julia/small_small.json | 2 +- .../math/base/special/fmodf/test/test.js | 14 +- .../base/special/fmodf/test/test.native.js | 14 +- 12 files changed, 310 insertions(+), 76 deletions(-) create mode 100644 checkers_report.txt diff --git a/checkers_report.txt b/checkers_report.txt new file mode 100644 index 000000000000..770b427a3990 --- /dev/null +++ b/checkers_report.txt @@ -0,0 +1,226 @@ +Critical errors +--------------- +No critical errors encountered. +Note: There might still have been non-critical bailouts which might lead to false negatives. + + +Open source checkers +-------------------- +No Check64BitPortability::pointerassignment require:portability +No CheckAssert::assertWithSideEffects require:warning +No CheckAutoVariables::assignFunctionArg require:style,warning +Yes CheckAutoVariables::autoVariables +Yes CheckAutoVariables::checkVarLifetime +No CheckBool::checkAssignBoolToFloat require:style,c++ +Yes CheckBool::checkAssignBoolToPointer +No CheckBool::checkBitwiseOnBoolean require:style,inconclusive +No CheckBool::checkComparisonOfBoolExpressionWithInt require:warning +No CheckBool::checkComparisonOfBoolWithBool require:style,c++ +No CheckBool::checkComparisonOfBoolWithInt require:warning,c++ +No CheckBool::checkComparisonOfFuncReturningBool require:style,c++ +No CheckBool::checkIncrementBoolean require:style +Yes CheckBool::pointerArithBool +No CheckBool::returnValueOfFunctionReturningBool require:style +No CheckBoost::checkBoostForeachModification +Yes CheckBufferOverrun::analyseWholeProgram +No CheckBufferOverrun::argumentSize require:warning +Yes CheckBufferOverrun::arrayIndex +No CheckBufferOverrun::arrayIndexThenCheck +Yes CheckBufferOverrun::bufferOverflow +Yes CheckBufferOverrun::negativeArraySize +Yes CheckBufferOverrun::objectIndex +No CheckBufferOverrun::pointerArithmetic require:portability +No CheckBufferOverrun::stringNotZeroTerminated require:warning,inconclusive +Yes CheckClass::analyseWholeProgram +No CheckClass::checkConst require:style,inconclusive +No CheckClass::checkConstructors require:style,warning +No CheckClass::checkCopyConstructors require:warning +No CheckClass::checkDuplInheritedMembers require:warning +No CheckClass::checkExplicitConstructors require:style +No CheckClass::checkMemset +No CheckClass::checkMissingOverride require:style,c++03 +No CheckClass::checkReturnByReference require:performance +No CheckClass::checkSelfInitialization +No CheckClass::checkThisUseAfterFree require:warning +No CheckClass::checkUnsafeClassRefMember require:warning,safeChecks +No CheckClass::checkUselessOverride require:style +No CheckClass::checkVirtualFunctionCallInConstructor require:warning +No CheckClass::initializationListUsage require:performance +No CheckClass::initializerListOrder require:style,inconclusive +No CheckClass::operatorEqRetRefThis require:style +No CheckClass::operatorEqToSelf require:warning +No CheckClass::privateFunctions require:style +No CheckClass::thisSubtraction require:warning +No CheckClass::virtualDestructor +No CheckCondition::alwaysTrueFalse require:style +No CheckCondition::assignIf require:style +No CheckCondition::checkAssignmentInCondition require:style +No CheckCondition::checkBadBitmaskCheck require:style +No CheckCondition::checkCompareValueOutOfTypeRange require:style,platform +No CheckCondition::checkDuplicateConditionalAssign require:style +No CheckCondition::checkIncorrectLogicOperator require:style,warning +No CheckCondition::checkInvalidTestForOverflow require:warning +No CheckCondition::checkModuloAlwaysTrueFalse require:warning +No CheckCondition::checkPointerAdditionResultNotNull require:warning +No CheckCondition::clarifyCondition require:style +No CheckCondition::comparison require:style +No CheckCondition::duplicateCondition require:style +No CheckCondition::multiCondition require:style +No CheckCondition::multiCondition2 require:warning +No CheckExceptionSafety::checkCatchExceptionByValue require:style +No CheckExceptionSafety::checkRethrowCopy require:style +No CheckExceptionSafety::deallocThrow require:warning +No CheckExceptionSafety::destructors require:warning +No CheckExceptionSafety::nothrowThrows +No CheckExceptionSafety::rethrowNoCurrentException +No CheckExceptionSafety::unhandledExceptionSpecification require:style,inconclusive +No CheckFunctions::checkIgnoredReturnValue require:style,warning +No CheckFunctions::checkMathFunctions require:style,warning,c99,c++11 +Yes CheckFunctions::checkMissingReturn +Yes CheckFunctions::checkProhibitedFunctions +Yes CheckFunctions::invalidFunctionUsage +No CheckFunctions::memsetInvalid2ndParam require:warning,portability +No CheckFunctions::memsetZeroBytes require:warning +No CheckFunctions::returnLocalStdMove require:performance,c++11 +No CheckFunctions::useStandardLibrary require:style +No CheckIO::checkCoutCerrMisusage require:c +Yes CheckIO::checkFileUsage +Yes CheckIO::checkWrongPrintfScanfArguments +No CheckIO::invalidScanf +Yes CheckLeakAutoVar::check +No CheckMemoryLeakInClass::check +Yes CheckMemoryLeakInFunction::checkReallocUsage +Yes CheckMemoryLeakNoVar::check +No CheckMemoryLeakNoVar::checkForUnsafeArgAlloc +Yes CheckMemoryLeakStructMember::check +Yes CheckNullPointer::analyseWholeProgram +Yes CheckNullPointer::arithmetic +Yes CheckNullPointer::nullConstantDereference +Yes CheckNullPointer::nullPointer +No CheckOther::checkAccessOfMovedVariable require:c++11,warning +No CheckOther::checkCastIntToCharAndBack require:warning +No CheckOther::checkCharVariable require:warning,portability +Yes CheckOther::checkComparePointers +No CheckOther::checkComparisonFunctionIsAlwaysTrueOrFalse require:warning +No CheckOther::checkConstPointer require:style +No CheckOther::checkConstVariable require:style,c++ +No CheckOther::checkDuplicateBranch require:style,inconclusive +No CheckOther::checkDuplicateExpression require:style,warning +Yes CheckOther::checkEvaluationOrder +No CheckOther::checkFuncArgNamesDifferent require:style,warning,inconclusive +No CheckOther::checkIncompleteArrayFill require:warning,portability,inconclusive +No CheckOther::checkIncompleteStatement require:warning +No CheckOther::checkInterlockedDecrement require:windows-platform +Yes CheckOther::checkInvalidFree +No CheckOther::checkKnownArgument require:style +No CheckOther::checkKnownPointerToBool require:style +No CheckOther::checkMisusedScopedObject require:style,c++ +No CheckOther::checkModuloOfOne require:style +No CheckOther::checkNanInArithmeticExpression require:style +Yes CheckOther::checkNegativeBitwiseShift +Yes CheckOther::checkOverlappingWrite +No CheckOther::checkPassByReference require:performance,c++ +No CheckOther::checkRedundantAssignment require:style +No CheckOther::checkRedundantCopy require:c++,performance,inconclusive +No CheckOther::checkRedundantPointerOp require:style +No CheckOther::checkShadowVariables require:style +No CheckOther::checkSignOfUnsignedVariable require:style +No CheckOther::checkSuspiciousCaseInSwitch require:warning,inconclusive +No CheckOther::checkSuspiciousSemicolon require:warning,inconclusive +No CheckOther::checkUnreachableCode require:style +No CheckOther::checkUnusedLabel require:style,warning +No CheckOther::checkVarFuncNullUB require:portability +No CheckOther::checkVariableScope require:style,notclang +Yes CheckOther::checkZeroDivision +No CheckOther::clarifyCalculation require:style +No CheckOther::clarifyStatement require:warning +No CheckOther::invalidPointerCast require:portability +No CheckOther::redundantBitwiseOperationInSwitch require:warning +No CheckOther::suspiciousFloatingPointCast require:style +No CheckOther::warningOldStylePointerCast require:style,c++ +No CheckPostfixOperator::postfixOperator require:performance +No CheckSizeof::checkSizeofForArrayParameter require:warning +No CheckSizeof::checkSizeofForNumericParameter require:warning +No CheckSizeof::checkSizeofForPointerSize require:warning +No CheckSizeof::sizeofCalculation require:warning +No CheckSizeof::sizeofFunction require:warning +No CheckSizeof::sizeofVoid require:portability +No CheckSizeof::sizeofsizeof require:warning +No CheckSizeof::suspiciousSizeofCalculation require:warning,inconclusive +No CheckStl::checkDereferenceInvalidIterator require:warning +No CheckStl::checkDereferenceInvalidIterator2 +No CheckStl::checkFindInsert require:performance +No CheckStl::checkMutexes require:warning +No CheckStl::erase +No CheckStl::eraseIteratorOutOfBounds +No CheckStl::if_find require:warning,performance +No CheckStl::invalidContainer +No CheckStl::iterators +No CheckStl::knownEmptyContainer require:style +No CheckStl::misMatchingContainerIterator +No CheckStl::misMatchingContainers +No CheckStl::missingComparison require:warning +No CheckStl::negativeIndex +No CheckStl::outOfBounds +No CheckStl::outOfBoundsIndexExpression +No CheckStl::redundantCondition require:style +No CheckStl::size require:performance,c++03 +No CheckStl::stlBoundaries +No CheckStl::stlOutOfBounds +No CheckStl::string_c_str +No CheckStl::useStlAlgorithm require:style +No CheckStl::uselessCalls require:performance,warning +No CheckString::checkAlwaysTrueOrFalseStringCompare require:warning +No CheckString::checkIncorrectStringCompare require:warning +No CheckString::checkSuspiciousStringCompare require:warning +No CheckString::overlappingStrcmp require:warning +Yes CheckString::sprintfOverlappingData +Yes CheckString::strPlusChar +Yes CheckString::stringLiteralWrite +Yes CheckType::checkFloatToIntegerOverflow +Yes CheckType::checkIntegerOverflow +No CheckType::checkLongCast require:style +No CheckType::checkSignConversion require:warning +Yes CheckType::checkTooBigBitwiseShift +Yes CheckUninitVar::check +Yes CheckUninitVar::valueFlowUninit +No CheckUnusedFunctions::check require:unusedFunction +No CheckUnusedVar::checkFunctionVariableUsage require:style +No CheckUnusedVar::checkStructMemberUsage require:style +Yes CheckVaarg::va_list_usage +Yes CheckVaarg::va_start_argument + + +Premium checkers +---------------- +Not available, Cppcheck Premium is not used + + +Autosar +------- +Not available, Cppcheck Premium is not used + + +Cert C +------ +Not available, Cppcheck Premium is not used + + +Cert C++ +-------- +Not available, Cppcheck Premium is not used + + +Misra C +------- +Misra is not enabled + + +Misra C++ 2008 +-------------- +Not available, Cppcheck Premium is not used + + +Misra C++ 2023 +-------------- +Not available, Cppcheck Premium is not used diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/README.md b/lib/node_modules/@stdlib/math/base/special/fmodf/README.md index fd8c97f71374..5fc69800b819 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/README.md @@ -20,7 +20,7 @@ limitations under the License. # Modulus Function -> [Modulus function][modulus-function]. +> Evaluate the [Modulus function][modulus-function] for single-precision floating-point numbers.
@@ -50,7 +50,7 @@ var fmodf = require( '@stdlib/math/base/special/fmodf' ); #### fmodf( x, y ) -Evaluates the [modulus function][modulus-function] for single-precision floating-point numbers. +Evaluates the [Modulus function][modulus-function] for single-precision floating-point numbers. ```javascript var v = fmodf( 8.0, 3.0 ); @@ -60,7 +60,7 @@ v = fmodf( 9.0, 3.0 ); // returns 0.0 v = fmodf( 8.9, 3.0 ); -// returns 2.9 +// returns ~2.9 v = fmodf( NaN, 3.0 ); // returns NaN @@ -83,18 +83,15 @@ v = fmodf( NaN, NaN ); ```javascript -var randu = require( '@stdlib/random/base/randu' ); -var roundf = require( '@stdlib/math/base/special/roundf' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); var fmodf = require( '@stdlib/math/base/special/fmodf' ); -var x; -var y; +var x = discreteUniform( 10, 0.0, 100.0 ); +var y = discreteUniform( 10, -50.0, 50.0 ); var i; -for ( i = 0; i < 100; i++ ) { - x = roundf( randu() * 10.0 ); - y = roundf( randu() * 10.0 ) - 5.0; - console.log( '%d^%d = %d', x, y, fmodf( x, y ) ); +for ( i = 0; i < 10; i++ ) { + console.log( '%f%%%f = %f', x[ i ], y[ i ], fmodf( x[ i ], y[ i ] ) ); } ``` @@ -130,7 +127,7 @@ for ( i = 0; i < 100; i++ ) { #### stdlib_base_fmodf( x, y ) -Evaluates the modulus function for single-precision floating-point numbers. +Evaluates the [Modulus function][modulus-function] for single-precision floating-point numbers. ```c float out = stdlib_base_fmodf( 8.9f, 3.0f ); @@ -173,16 +170,19 @@ float stdlib_base_fmodf( const float x, const float y ); #include int main( void ) { + float x[ 100 ]; + float y[ 100 ]; float out; - float x; - float y; int i; for ( i = 0; i < 100; i++ ) { - x = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ); - y = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ) - 5.0f; - out = stdlib_base_fmodf( x, y ); - printf( "fmodf(%f, %f) = %f\n", x, y, out ); + x[ i ] = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ); + y[ i ] = ( ( (float)rand() / (float)RAND_MAX ) * 10.0f ) - 5.0f; + } + + for ( i = 0; i < 100; i++ ) { + out = stdlib_base_fmodf( x[ i ], y[ i ] ); + printf( "fmodf(%f, %f) = %f\n", x[ i ], y[ i ], out ); } } ``` diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/manifest.json b/lib/node_modules/@stdlib/math/base/special/fmodf/manifest.json index fa4fdc33435c..88fe5b9b3286 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/manifest.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/manifest.json @@ -37,14 +37,13 @@ "libpath": [], "dependencies": [ "@stdlib/math/base/napi/binary", - "@stdlib/constants/float64/high-word-abs-mask", - "@stdlib/constants/float64/high-word-sign-mask", - "@stdlib/constants/float64/high-word-exponent-mask", - "@stdlib/constants/float64/exponent-bias", - "@stdlib/constants/float64/high-word-significand-mask", - "@stdlib/constants/float64/min-base2-exponent", "@stdlib/number/float32/base/to-word", - "@stdlib/number/float32/base/from-word" + "@stdlib/number/float32/base/from-word", + "@stdlib/constants/float32/sign-mask", + "@stdlib/constants/float32/exponent-bias", + "@stdlib/constants/float32/exponent-mask", + "@stdlib/constants/float32/abs-mask", + "@stdlib/constants/float32/min-base2-exponent" ] }, { @@ -58,14 +57,13 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/constants/float64/high-word-abs-mask", - "@stdlib/constants/float64/high-word-sign-mask", - "@stdlib/constants/float64/high-word-exponent-mask", - "@stdlib/constants/float64/exponent-bias", - "@stdlib/constants/float64/high-word-significand-mask", - "@stdlib/constants/float64/min-base2-exponent", "@stdlib/number/float32/base/to-word", - "@stdlib/number/float32/base/from-word" + "@stdlib/number/float32/base/from-word", + "@stdlib/constants/float32/sign-mask", + "@stdlib/constants/float32/exponent-bias", + "@stdlib/constants/float32/exponent-mask", + "@stdlib/constants/float32/abs-mask", + "@stdlib/constants/float32/min-base2-exponent" ] }, { @@ -79,14 +77,13 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/constants/float64/high-word-abs-mask", - "@stdlib/constants/float64/high-word-sign-mask", - "@stdlib/constants/float64/high-word-exponent-mask", - "@stdlib/constants/float64/exponent-bias", - "@stdlib/constants/float64/high-word-significand-mask", - "@stdlib/constants/float64/min-base2-exponent", "@stdlib/number/float32/base/to-word", - "@stdlib/number/float32/base/from-word" + "@stdlib/number/float32/base/from-word", + "@stdlib/constants/float32/sign-mask", + "@stdlib/constants/float32/exponent-bias", + "@stdlib/constants/float32/exponent-mask", + "@stdlib/constants/float32/abs-mask", + "@stdlib/constants/float32/min-base2-exponent" ] } ] diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile index bcf18aa46655..6afff427d4aa 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile @@ -48,6 +48,17 @@ endif # RULES # +#/ +# Lints the specified file with exhaustive branch analysis and generates a checkers report. +# +# @example +# make lint +#/ +lint: + $(QUIET) cppcheck --check-level=exhaustive --checkers-report=checkers_report.txt lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c + +.PHONY: lint + #/ # Removes generated files for building an add-on. # diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c index b7b2121e7f6a..b7947d52a5ef 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c @@ -36,8 +36,8 @@ #include "stdlib/constants/float32/sign_mask.h" #include "stdlib/constants/float32/abs_mask.h" #include "stdlib/constants/float32/exponent_mask.h" -#include "stdlib/constants/float32/smallest_normal.h" #include "stdlib/constants/float32/exponent_bias.h" +#include "stdlib/constants/float32/min_base2_exponent.h" #include /** @@ -65,7 +65,7 @@ float stdlib_base_fmodf( const float x, const float y ) { int32_t i; float xc; - stdlib_base_float32_to_word( x, &uhx); + stdlib_base_float32_to_word( x, &uhx ); hx = (int32_t)uhx; stdlib_base_float32_to_word( y, &uhy ); hy = (int32_t)uhy; @@ -94,9 +94,9 @@ float stdlib_base_fmodf( const float x, const float y ) { } // Determine ix = ilogb(x) - if ( hx < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + if ( hx < 0x00800000 ) { // subnormal x - ix = -126; + ix = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT; for ( i = ( hx << 8 ); i > 0; i <<= 1 ) { ix -= 1; } @@ -105,27 +105,27 @@ float stdlib_base_fmodf( const float x, const float y ) { } // determine iy = ilogb(y) - if ( hy < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + if ( hy < 0x00800000 ) { // subnormal y - iy = -126; + iy = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT; for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) { iy -= 1; } } else iy = ( hy >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS; // set up {hx,lx}, {hy,ly} and align y to x - if ( ix >= -126 ) { - hx = STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL | ( 0x007fffff & hx ); + if ( ix >= STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT ) { + hx = 0x00800000 | ( 0x007fffff & hx ); } else { // subnormal x, shift x to normal - n = -126 - ix; + n = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT - ix; hx = hx << n; } - if ( iy >= -126 ) { - hy = STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL | ( 0x007fffff & hy ); + if ( iy >= STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT ) { + hy = 0x00800000 | ( 0x007fffff & hy ); } else { // subnormal y, shift y to normal - n = -126 - iy; + n = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT - iy; hy = hy << n; } @@ -134,7 +134,7 @@ float stdlib_base_fmodf( const float x, const float y ) { while ( n-- ) { hz = hx - hy; if ( hz < 0 ) { - hx = hx + hx; + hx += hx; } else { if ( hz == 0 ) { // return sign(x)*0 @@ -153,18 +153,18 @@ float stdlib_base_fmodf( const float x, const float y ) { // return sign(x)*0 return ZERO[ (uint32_t)sx >> 31 ]; } - while ( hx < STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) { + while ( hx < 0x00800000 ) { // normalize x - hx = hx + hx; + hx += hx; iy -= 1; } - if ( iy >= -126 ) { + if ( iy >= STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT ) { // normalize output - hx = ( ( hx - STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL ) | ( ( iy + STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS ) << 23 ) ); + hx = ( ( hx - 0x00800000 ) | ( ( iy + STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS ) << 23 ) ); stdlib_base_float32_from_word( (uint32_t)( hx | sx ), &xc ); } else { // subnormal output - n = -126 - iy; + n = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT - iy; hx >>= n; stdlib_base_float32_from_word( (uint32_t)( hx | sx ), &xc ); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json index 52a196b27e03..9ba6ec9e2bd3 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/large_small.json @@ -1 +1 @@ -{"expected":[35.5131,84.22282,65.26131,22.099964,60.22706,80.863846,48.20569,24.693798,40.768192,42.139874,5.0047207,1.8507066,8.449898,16.108255,23.060379,80.55966,18.522198,16.350853,18.439985,62.06757,2.5324347,4.628364,63.49836,0.4204604,24.063421,77.87114,39.281605,11.910125,1.3722821,22.873684,21.07654,21.257883,6.987513,55.84695,1.2137033,24.918108,55.4271,23.239645,11.958579,6.9862986,23.163874,11.426355,24.78048,9.260592,2.5674505,4.418282,3.943336,68.680504,10.815391,33.162685,13.088559,4.2415943,10.215,49.08806,46.62813,17.936804,56.57207,56.041615,22.861444,47.264515,0.54007244,13.608066,10.1675005,36.22024,9.128396,3.2456117,33.05479,0.9353555,23.48441,49.36506,1.1597368,6.575603,19.186356,17.357605,40.07906,69.50224,8.161192,22.839363,5.029745,16.383276,39.938797,5.2575836,36.200615,1.984544,28.442543,28.034412,51.907085,6.6370883,1.5712249,60.865143,18.411123,21.987581,3.7395654,3.2064295,15.954161,20.51886,17.078003,59.895554,19.89535,6.8807154,27.741331,10.773594,34.28317,69.8485,30.795172,23.641745,23.475681,14.982581,41.457573,11.373685,24.068064,14.906111,32.72006,1.0114762,11.400277,77.42571,64.06736,6.584551,57.808495,15.487123,65.12224,43.92238,16.783731,32.46,60.079987,14.786237,0.6491549,13.501836,18.063313,13.729133,27.713331,8.290049,66.42232,32.12106,21.861725,16.996548,23.076849,6.300168,5.4346986,19.397902,74.13895,4.091162,5.1145997,24.364487,49.979553,25.552338,35.70829,6.6975336,84.566475,7.279024,65.05759,37.623344,45.276066,35.852562,9.857039,26.974586,17.229929,23.275331,1.1181911,10.36027,35.657173,7.719116,58.206566,15.429729,11.522609,24.714167,2.0767682,83.12604,23.793097,33.694824,25.072561,33.732056,14.882969,25.544567,10.046681,12.717106,4.867182,21.710571,17.150791,1.9840052,97.79423,33.69117,17.069416,4.6053147,29.108139,55.87587,41.295902,0.9987513,5.9771314,7.2410226,2.474944,13.303546,3.5829306,6.1719728,0.66727924,52.078503,58.330513,0.7774527,6.5689197,29.769756,7.7607307,13.594948,34.324955,28.759237,1.9252684,5.9093976,17.139832,10.687637,42.01394,13.319201,54.337635,22.54706,35.357723,58.2898,38.366116,5.590854,18.460575,16.661283,5.971627,4.115867,8.844301,15.060774,0.4654166,28.821058,54.55537,1.7606162,10.845369,3.4782734,31.419464,26.171286,11.969805,10.320059,65.14225,8.70037,26.399618,3.2298086,10.509711,16.032259,42.317238,40.36687,16.30067,2.6435692,27.557562,30.40461,51.889942,34.178562,5.197108,0.60920537,38.132244,78.03538,38.330635,35.605347,2.2404978,12.938123,0.3419462,26.530716,23.4924,21.453737,88.005295,10.725293,5.368144,20.327877,16.510252,14.892686,9.192859,73.27024,50.344418,57.925198,31.607143,36.46962,16.181625,2.2212932,7.331676,47.631245,4.481594,41.207508,43.900406,35.858437,7.240318,22.055414,6.664994,78.332825,0.44995713,26.833454,43.59824,12.759414,16.153957,0.58950573,13.512086,7.0809875,0.2015817,12.0860815,35.745987,24.996672,15.284119,0.14981571,16.913336,63.80118,9.739734,2.599791,7.2873187,18.3088,26.41028,21.747847,5.07568,7.5144124,28.176762,30.985418,1.0774151,20.711063,6.3456755,10.802515,1.1257992,26.877947,52.55822,73.49489,6.87789,11.245418,15.952418,49.399475,29.375235,1.9522765,6.215868,14.307788,38.687836,7.9866757,54.40017,32.690113,2.2981744,49.414722,10.30834,6.047214,16.915802,1.592211,30.00152,8.830134,45.807114,83.84886,5.644313,18.06489,50.2861,19.94736,7.1754932,80.81018,26.468855,6.0988607,1.3064817,56.731155,36.742966,6.64357,19.241,51.40227,5.426048,75.82516,54.92702,24.995525,51.70199,1.5728785,21.833755,13.352644,21.772913,0.96560013,9.057855,10.205571,51.279247,29.277504,40.195175,44.921474,0.43993172,29.919333,22.365614,35.865032,9.341787,17.258154,24.691608,0.5959899,15.227077,4.517639,6.682893,49.83859,16.203455,21.911154,52.428978,36.516556,13.018479,3.7037804,14.555301,2.861081,14.519045,11.526672,30.24518,26.073965,3.53303,21.338978,94.63034,13.608983,34.668118,82.88478,42.95695,18.375156,44.945118,15.52639,37.916603,6.9653573,11.614417,34.02881,43.85031,21.36316,7.179719,4.160997,31.69874,6.8559885,78.33724,34.817963,18.571398,9.08958,9.356754,3.2430196,4.0332136,7.5206423,13.961959,69.524864,32.994995,60.792248,20.744028,6.4409347,13.760261,0.44183812,9.336318,39.873516,65.577896,61.31182,24.847956,21.66295,0.26745808,17.436434,24.403675,13.6244955,37.59145,76.31536,15.095187,36.372982,10.96178,36.8846,34.891037,3.52236,9.727509,19.55326,54.890873,8.942285,29.918947,11.734136,1.3153393,9.211613,29.81015,3.6771393,64.80227,8.811013,3.19101,1.3420081,8.669804,3.3585732,7.626019,42.995327,26.053017,19.298449,5.431026,38.182137,0.065874085,18.200636,19.933586,0.19122113,6.9369535,0.61525226,4.1963344,39.12713,25.79834,2.0399976,22.272978,64.61497,18.860096,53.727333,25.512838,57.634766,46.4102,8.763598,52.386368,42.705334,40.994244,97.96549,52.339417,39.614265,33.709446,8.541024,24.398838,37.409023,46.785282,37.769653,49.97448,34.34133,5.612908,18.85843,43.96924,1.422014,38.49424,15.520197,8.302976,0.8527905,11.311926,8.957305,4.308271,56.88539,3.9369233,4.099592,4.4675508,9.579977,5.6204576,13.105026,12.892809,7.436294,55.440647,95.717735,2.606846,32.901463,1.1241529,11.022168,0.7957577,27.157425,0.9022597,8.388459,23.872486,26.59336,96.60571,9.812966,11.38048,20.73727,2.8070064,0.5074319,7.7266917,2.4059024,74.64669,21.645554,78.53483,58.422348,40.329998,73.36702,13.190243,7.1758566,8.5919485,17.433199,10.748684,19.071428,24.947138,6.213209,3.6963305,12.19243,37.156174,12.748011,12.218292,72.647255,3.0188024,20.198755,20.239418,27.943449,3.9627588,6.806583,41.615974,36.141785,4.087182,31.05186,6.079518,3.7417033,5.8528466,10.087779,71.65615,0.41731444,31.312487,15.323889,12.226126,29.14408,1.4043769,1.4574783,39.849995,66.5446,48.18412,2.0456736,33.05173,5.467203,14.505018,10.188609,4.897195,2.2237518,0.32138965,19.25248,10.964411,52.211403,31.397808,15.351766,55.907497,25.440521,8.27164,51.396515,2.9084756,23.653103,0.1183375,47.106148,14.715959,48.53874,88.79959,17.909943,7.444409,35.307537,8.563866,4.332538,15.080999,39.42778,93.81813,56.273777,3.36485,12.713329,45.96566,85.62362,0.57902354,40.24433,11.483463,41.759945,64.16648,1.8051788,22.842825,52.434364,3.6576955,26.59122,2.651817,21.303375,26.736176,9.378015,5.578737,0.05419488,28.734945,40.95229,5.516175,4.0180693,8.508438,19.748158,30.916986,22.17583,8.399407,6.7349653,29.500992,17.254736,12.780385,13.359434,7.125437,6.7215557,1.1999651,0.90532446,38.985123,11.820516,34.26569,35.11504,25.376394,22.311802,32.75072,26.680195,10.400533,53.17729,65.56506,57.442726,31.596746,1.4531866,8.270818,65.80606,1.881775,50.33989,31.076221,1.29575,10.457226,27.940376,30.64427,45.1203,6.5389576,28.774218,50.763794,2.161241,24.797485,35.333317,66.13854,20.772568,40.337524,16.33595,60.299328,57.213303,30.14894,12.668408,47.80088,21.952158,21.813765,2.5679843,12.220418,49.700916,34.96127,25.291946,8.462289,2.911544,25.86634,45.673363,32.696056,2.3141968,50.559406,32.999874,10.544745,73.13407,16.95825,77.89008,3.2672741,34.997826,17.254715,17.424665,49.323624,17.88296,25.135263,1.3689002,12.306294,13.408683,63.49258,29.861855,29.567404,68.012695,3.0725722,1.7432706,5.8197293,46.03135,39.97134,77.50028,15.910237,34.369717,38.050385,6.333162,62.286594,12.448946,71.063736,11.714437,33.252373,70.74073,5.8412356,2.9218013,2.5559566,20.873688,7.8305287,6.9313526,46.795677,20.848135,31.07006,6.514681,0.34891558,16.772633,10.300986,38.460068,13.521564,23.71198,66.720795,8.04077,4.2303104,3.9995995,24.773645,25.833248,6.179635,25.700308,16.45489,16.866371,7.034039,2.9535713,37.287083,35.426838,1.342606,80.6033,80.51666,0.14513431,3.3535311,75.78414,53.827785,17.811134,4.1878567,6.737537,14.847992,42.127335,11.9378,52.654194,25.489496,2.0443454,28.471386,3.2971592,19.75604,20.088926,51.280388,37.652065,5.9971647,0.9539776,5.1432157,16.701132,0.7009573,0.837499,62.266575,4.8560824,17.055471,29.17036,2.5762267,8.307418,5.534942,4.5176597,18.890608,11.399226,0.16493365,24.204344,25.100107,40.957623,6.482933,9.94028,5.520217,17.520441,54.786976,54.08593,48.89841,10.798614,10.339249,45.69588,42.688324,20.26037,78.2209,6.706378,23.783878,21.078136,7.216022,9.535187,15.0100355,3.5120513,40.484566,0.52373606,36.837425,32.251373,17.893965,1.7734706,13.008759,0.026137993,2.8965175,18.932247,7.173662,52.086792,0.0008410977,11.152332,7.894177,2.1613042,0.4200967,49.591663,12.28566,10.856841,44.867237,14.766309,39.076023,4.6898994,62.07078,38.376854,9.2105055,46.994614,57.358784,4.173926,53.909542,5.9490433,12.188913,85.32281,38.46581,25.883512,61.782143,72.233475,7.1905236,2.4606605,3.0085304,39.64777,27.87201,25.415512,19.434443,13.720575,0.8914519,4.4681134,14.057414,0.96735734,71.99879,70.43372,36.512714,35.546665,37.464558,7.7819834,11.374996,8.982619,57.284664,7.1408696,55.606323,0.8929301,21.954187,8.694938,47.77995,6.8753495,11.608119,27.534666,31.423658,23.184206,33.76075,19.569483,48.233784,41.483685,8.110479,64.1688,23.191093,34.627148,2.9808588,44.532738,6.784196,49.73798,65.217834,30.089413,13.871977,45.403587,0.99446285,16.755146,42.870144,70.65277,8.537165,7.5234313,21.375168,25.536383,27.925198,55.677925,15.49753,5.1951632,62.90229,43.82312,92.065956,7.56052,6.717056,54.75171,2.8698936,25.303024,25.711533,50.627155,0.78547,24.121395,70.72553,27.354923,71.82641,2.9514172,8.982313,33.185112,36.05512,59.743656,9.783574,28.345417,49.15337,2.8598435,6.429525,8.062492,28.756195,21.542177,21.852777,11.675706,12.035081,9.111748,18.948727,1.315596,14.000482,47.25752,1.108052,4.562803,0.38291466,31.883867,4.779894,70.413605,2.7398577,10.17707,0.44355828,20.451048,6.064932,23.035675,4.923718,14.18256,0.5282608,10.617968,28.920166,72.4828,17.596062,49.67347,41.541805,5.498427,0.85884964,34.730453,53.131813,31.612577,49.05035,5.5170193,40.827183,22.84913,24.159668,24.989567,26.188614,63.960857,40.84874,47.662308,59.12634,10.895179,19.950703,33.45282,29.02989,10.034724,50.084877,71.48625,3.8109531,62.521374,1.5714004,7.52633,17.752558,24.680325,28.616749,50.996536,48.535393,21.954418,65.01562,3.3620708,16.543404,62.667244,53.114643,12.382224,5.7415905,14.200184,80.34465,33.204548,83.69319,77.058334,12.463337,65.50927,2.820974,57.388435,7.555755,42.82782,1.268727,15.53751,41.891098,32.236958,6.504425,1.882353,14.067117,30.050869,41.198498,8.474069,41.507668,73.59773,51.146793,2.6335485,0.20190024,28.807844,3.0518777,1.3857448,7.0321827,47.223225,33.239555,0.59956354,3.6403682,28.518354,36.727497,11.184505,44.07043,29.68076,27.346888,26.20939,64.353935,5.6937475,0.38431433,26.436352,65.50871,27.548521,35.141953,20.158783,81.17843,4.258467,46.66101,21.52345,2.4203207,0.12516193,1.3350993,11.822326,41.498962,71.71105,19.147099,10.462361,7.9665895,47.650005,74.02769,43.52032,44.19584,32.267494,12.151872,5.070654,15.874818,9.804115,13.281568,35.255596,69.730484,2.434041,20.747854,19.54998,47.365883,11.641527,33.714096,2.7742214,38.25852,22.655128,56.185078,0.01611101,31.548883,31.581207,50.99443,2.554814,50.669426,5.8794937,5.451286,18.164198,6.4682264,23.152437,1.8357431,13.40416,64.56965,2.921172,2.1212678,30.996332,63.679592,4.835807,14.135051,74.766624,3.1265793,8.657005,23.274359,15.939702,10.442067,33.625084,43.314564,21.221687,59.92748,14.01293,27.291574,3.9407794,7.095222,11.720755,2.374574,5.7204556,54.522224,1.0484754,25.423647,3.6899843,1.3522705,30.026367,1.5308051,81.9096,28.72699,5.251657,19.677368,22.366507,16.12012,3.8130622,29.829794,4.7701683,38.079872,11.585743,10.125214,7.6080265,9.157742,5.109088,19.035316,8.7236395,0.5444875,30.51672,17.241024,61.576664,5.5899863,83.1982,9.723927,36.214443,53.812725,2.1009884,17.875004,57.51743,18.354445,3.8587632,69.933235,24.064457,24.82864,0.42361853,21.6409,1.7946863,8.512746,3.7675335,54.79242,3.5885,54.79764,2.1689003,5.311649,37.796635,5.847449,11.732841,18.919262,12.638746,0.39697152,30.519312,14.351581,11.601695,4.2998624,8.708219,33.008892,6.254015,3.9222877,2.9132006,75.772484,39.35013,30.746597,25.951023,0.46947563,60.430916,23.497297,32.60423,17.40641,21.374802,44.87949,5.942201,7.3380666,17.706045,76.71749,29.110613,18.398067,76.55868,2.5161629,45.530727,61.126335,21.634745,3.8191962,4.952185,19.512535,45.998188,18.927036,5.684421,8.417451,52.22841,36.925453,4.6820474,37.61599,11.129984,0.013168524,2.1988056,32.333427,6.967839,50.170494,14.39577,59.236164,24.239801,11.957207,0.8491655,11.832622,38.417355,44.557465,42.487766,15.474568,15.435074,1.1532828,1.1378025,23.30377,7.5345283,3.5300999,20.697866,25.119452,23.88129,41.13905,0.6481323,38.407154,26.6677,13.737928,75.91435,24.862783,2.458513,0.10705122,73.90828,48.43963,11.3544035,64.76432,17.521244,0.50514907,18.714102,1.4946108,56.51448,33.173428,9.238163,60.542236,1.7146872,25.450037,7.4886947,6.516418,15.745448,19.887102,30.717957,17.37782,46.654255,13.221016,9.581484,71.639175,11.660352,1.4794979,76.8693,90.01628,47.41058,50.68539,42.406628,4.8625655,23.636082,7.5943255,51.73636,91.938866,40.329002,27.653751,22.864435,40.49859,4.4945874,85.735756,17.364502,7.7799697,14.533897,36.616474,32.86895,5.124887,0.2380144,5.7762504,30.10757,3.4469352,6.578391,1.6809374,24.156134,11.059104,36.17785,70.43025,29.047005,28.991001,39.46934,14.171616,5.2620654,11.818467,31.220919,44.535908,23.022049,14.66134,47.041706,27.138542,24.460182,19.72392,31.836138,1.5198835,1.433605,4.873426,60.227383,12.601704,19.172098,1.0400017,28.74913,0.28816503,27.578466,47.916187,27.689648,59.217133,8.020178,18.048977,45.060596,44.933716,44.506798,3.6022189,45.127747,37.656807,59.88203,28.003637,6.3874207,0.4651067,12.385739,40.67708,7.573748,34.04605,7.385376,23.13442,1.6760749,0.6971174,3.227713,57.3486,6.927728,8.067356,7.9437213,0.97644144,26.890715,56.814194,1.3572502,42.003433,50.460403,15.305479,20.423016,54.043793,1.9935809,20.256023,22.539768,68.78271,43.280937,9.7311735,0.57657593,19.76165,48.086353,0.049726512,7.079006,15.666575,29.937786,80.04047,40.248783,4.336013,2.3222384,8.231947,29.118399,29.110296,53.456627,40.76175,15.740815,59.953632,40.47282,52.763885,44.97831,55.701664,39.34676,36.575268,51.756714,5.6122904,34.866947,21.28389,69.075264,30.788837,47.248184,78.99279,22.162891,10.165958,27.234114,18.269117,3.3162246,27.634577,39.598255,43.636974,3.1501806,20.024593,71.97289,23.652193,30.102732,33.453266,46.691853,22.127308,70.248505,30.500694,78.427124,7.145786,7.207344,43.486732,49.76046,49.72428,26.994158,5.1288366,60.399654,5.752486,9.368679,14.00668,25.793905,23.753643,1.8612015,33.099472,6.654734,74.0711,37.728374,61.114258,1.0431981,3.922502,21.934538,8.258506,1.4431251,29.626104,54.139843,34.317787,47.272957,25.04328,13.928706,3.1984992,23.787739,9.355772,67.9109,27.506437,64.78068,26.350733,2.1335127,38.11854,8.139106,8.527456,60.700134,30.107538,5.055777,6.3621063,16.270357,3.60815,12.487462,19.016336,4.9826465,1.9713343,40.719185,47.39296,8.570668,18.679653,27.09979,50.962543,43.252026,7.530916,4.3728385,67.92801,1.3156124,73.19063,34.482662,3.6698375,14.883695,15.816546,71.88655,0.8591108,3.09039,14.278926,4.023347,30.517118,48.86704,16.814045,66.19598,6.434219,47.55844,6.2350893,18.05571,7.3499475,10.747392,12.013461,1.343186,24.602383,14.26848,15.385474,1.0966353,1.6286756,19.885841,12.275967,4.3728933,0.8914428,7.5542383,23.21406,4.3800364,12.397045,23.646091,69.14224,15.81988,14.69239,14.474695,8.156823,45.95315,22.203072,19.849756,7.6478167,21.65944,33.379757,6.237592,73.68736,16.865015,11.989894,0.69801795,2.0439563,60.68257,5.553257,28.690336,3.3941965,20.75507,13.345824,34.614098,87.10204,3.766562,0.38746822,14.286504,10.942975,10.523639,67.277855,16.931953,12.596791,11.873695,17.575102,9.890427,0.5121325,1.0117406,1.681631,52.507435,6.0074544,31.61546,15.953384,30.048357,0.40697575,41.138126,0.7624343,27.533756,17.258785,2.2163975,10.495273,23.232971,1.1556051,72.56293,25.922049,19.346228,46.380516,7.841283,35.823193,7.571915,16.571642,12.791131,2.8915348,56.561718,17.648205,35.14837,21.583988,7.8211913,7.467909,75.76537,9.334132,15.342784,98.09056,42.132168,39.067207,16.345842,2.2499907,0.30263615,25.337938,43.281788,1.3854724,17.176165,23.483334,9.595837,77.922874,9.589587,29.949602,11.77607,23.702057,15.60748,0.99453354,26.119463,51.837097,8.093634,43.14493,59.44505,46.8065,0.46268284,24.830906,30.982452,58.11109,2.6563392,3.0680816,22.16641,23.891132,4.447703,59.364555,33.805687,8.059563,15.502054,3.9509978,16.974562,59.05172,1.5322291,1.276569,0.32902277,40.07562,18.647022,7.5753193,3.9248817,71.88701,2.5952966,32.2306,0.12907359,76.59159,21.487545,27.282146,1.9212976,7.23524,41.28594,53.899178,4.747892,26.383146,49.831802,55.275867,36.308178,59.56469,32.279896,6.4377294,6.9349213,0.95971197,28.987764,78.730804,12.8289385,0.008906725,29.6776,8.831934,14.358639,1.7453271,25.40142,49.740734,34.824287,1.1278524,23.553015,16.001461,27.67564,67.512726,50.533108,21.410252,34.542656,1.0828834,4.235321,17.656317,18.862026,36.457058,61.594616,48.6553,13.869983,7.2265606,67.42306,21.615555,46.83137,11.469492,41.380646,38.06848,30.484394,24.710318,27.308487,18.604395,1.7036867,0.5653499,17.832697,0.2893691,16.851168,14.018605,19.838585,2.3473566,12.832571,3.2477827,68.9964,7.0108495,94.53914,3.2657533,4.232716,27.160595,18.20039,34.86909,2.70436,4.0620975,27.1627,49.714024,37.510895,0.7484844,4.836146,36.604736,54.592438,61.316727,47.705162,29.769087,30.060263,41.099915,2.486247,1.5082477,5.931309,5.5154557,22.591646,21.616417,8.114432,16.045116,38.44628,27.135113,1.3879843,26.612947,0.84379184,0.46245039,0.10672883,36.661472,10.438773,37.972084,11.301141,20.591753,3.1386788,21.248756,82.56721,8.068232,56.42989,2.6723092,55.77764,2.3318408,48.482685,11.127114,43.20159,2.4463449,11.554019,61.916542,5.2892556,1.2912418,2.2586396,95.41635,5.8746257,8.546649,52.499104,22.819796,20.252802,41.767628,55.423946,8.947447,0.16056095,89.97276,42.058743,15.163318,0.40644366,62.207985,23.87406,7.553157,15.513156,36.907925,35.045353,39.62957,33.997437,16.352623,9.243381,27.208126,39.29348,11.630709,9.075125,60.50706,27.78069,31.537727,28.271187,4.037557,27.350462,34.524796,13.022058,59.604687,14.590133,4.262114,0.5164445,8.297985,15.142752,1.6333636,26.327366,1.1079215,1.1923534,58.895134,11.565584,10.031529,24.337032,24.007282,2.8449101,43.16516,1.2660618,3.4266403,1.2886263,27.531425,9.256053,14.957713,24.811197,33.851223,70.37975,5.939608,14.119064,64.34036,44.073868,10.670952,23.358234,6.477086,23.142033,23.892601,14.765529,19.875643,15.045376,55.167572,2.1527083,0.052678507,35.619835,54.37297,67.49222,6.412085,60.26635,7.754078,50.432228,2.6578476,80.554886,8.858405,27.501787,2.6201956,6.433503,28.747473,29.133852,3.9462142,17.878372,6.0482426,25.880922,14.013363,47.585865,7.644393,16.830849,10.056039,0.019485002,6.831357,3.1477962,1.9253297,8.390583,7.557991,19.31064,8.562408,19.234476,1.8201517,48.19537,18.268007,68.79901,1.9516627,6.0342197,20.187578,21.40353,17.69116,30.069712,17.603191,43.12255,22.864765,3.9091275,50.721252,52.52143,71.1361,5.718017,0.58434206,19.792562,19.381393,8.114335,9.618953,62.574062,0.021172138,4.368059,11.070462,69.66622,13.327237,66.50082,12.332269,10.202609,30.500404,74.03814,8.448279,0.39163226,5.799827,9.924384,29.055542,33.942783,7.8127832,22.468372,30.368738,18.331255,0.32293004,28.962963,35.08483,4.233123,16.019672,1.0261599,3.9565132,30.30337,21.848272,68.594604,63.465347,31.470236,5.721615,71.61293,6.1775365,11.768527,9.262511,58.61454,9.528493,8.742339,16.933443,58.633266,10.133198,11.452832,41.264847,10.220409,1.2275779,23.581331,88.549515,42.8967,41.564327,0.60595864,5.008412,19.77338,2.3259375,13.641227,10.635902,29.148893,8.025253,4.93383,13.262221,6.1249266,31.066883,38.479782,27.463217,1.1702331,43.875378,13.840677,48.695316,5.9011803,1.6055816,48.4579,0.4152237,10.710476,2.6064885,0.5594891,70.90084,41.79796,53.775124,52.163555,29.265217,2.712194,8.869708,26.945597,41.700485,6.2379837,45.270798,84.171844,28.97183,38.529087,10.51861,33.778008,2.028694,28.219446,1.4529932,81.03521,28.60604,0.3051621,19.156479,17.222809,25.100117,12.577408,2.1918466,9.825391,36.61663,35.128822,0.008247035,35.10304,8.075184,45.67347,23.897142,26.453419,12.988008,47.363956,37.959675,6.874794,22.421871,80.027,2.1778495,30.130674,55.59969,2.1772037,7.01865,2.307179,62.560467,28.546667,25.995556,34.1551,2.3740053,14.744846,31.156933,41.059063,14.184661,0.5210824,1.3108482,3.86177,1.666268,31.023348,18.96004,69.64697,0.70779437,38.270218,8.164647,30.539907,33.587723,5.6982307,0.1330837,5.371164,6.423114,27.96566,5.6955304,83.99329,46.378227,5.9710927,7.3372307,10.170596,56.783195,64.822784,4.1028314,5.2709217,23.369085,16.614902,31.30184,80.28356,2.38393,35.164062,7.8157516,11.681579,6.209036,7.9178224,18.372103,17.064219,13.283316,72.10471,54.752186,26.277924,46.422497,52.23059,23.08036,10.837954,59.52902,14.340203,8.96799,21.4357,14.935184,29.079433,33.132996,62.431694,68.73364,4.0775294,35.983788,26.680326,52.48799,25.41594,58.55321,29.33438,22.970545,75.020454,19.898777,32.964825,61.477184,20.906912,56.089256,5.654136,40.13429,16.354328,12.780087,35.076305,3.7588868,27.341976,26.888582,3.479747,11.959683,15.4578705,43.7879,5.343585,59.330536,62.975925,57.703373,4.180735,1.855073,75.06469,19.523304,16.97132,21.913794,6.0645103,1.8584225,0.54059845,45.428425,17.3956,17.763742,44.723976,28.10516,33.58837,72.79955,70.526405,33.20074,0.20968315,34.943348,9.15671,0.29528636,3.7064903,18.450283,8.503364,51.804283,27.05626,93.47238,73.57142,0.7873143,5.161778,73.13188,36.24587,66.659065,4.5942802,7.639799,17.070063,32.676243,9.767033,6.196091,83.14498,38.491116,0.5980398,46.766045,30.790426,5.7653484,40.36632,77.78142,32.430145,46.24221,33.177273,56.162125,36.74807,0.7114149,10.004284,44.283356,22.635778,27.84554,29.618713,27.885487,29.28607,8.171323,8.9353285,16.98044,41.93531,2.203519,54.515266,24.873959,0.3785363,0.07003434,27.406734,25.862432,33.94044,11.974419,60.734318,5.0929294,7.4269743,12.176975,2.968207,58.514996,25.24084,7.9542913,30.798992,0.98526037,26.030436,14.449552,41.904663,44.82854,1.198461,1.7290487,8.219898,26.71202,40.91477,16.438303,31.10531,16.731611,3.9737282,3.3965125,18.729559,8.23804,9.299239,1.7618635,7.5597086,20.099157,4.253412,38.270706,11.332922,60.73303,9.310315,6.3498483,21.494345,29.841461,15.789669,2.8065429,10.670369,35.802452,1.9126419,10.142182,26.555273,37.874245,81.7304,0.3480939,0.59829754,18.565971,1.4926908,4.7340174,4.8409834,8.718597,6.7642984,0.28581426,17.091887,47.501713,34.298668,12.507913,3.4122908,13.548039,1.0496033,2.3988235,4.1634035,31.04423,10.232941,14.151972,23.434141,5.8860445,5.2077994,27.50988,16.519175,44.249123,26.468582,25.303804,10.2100525,23.015347,19.263618,14.13238,47.956673,19.48922,0.6591909,34.47162,8.446758,0.13593304,18.474382,60.201557,50.08319,0.75498897,22.238323,16.243036,0.946806,67.93491,20.516088,0.8147229,7.2654448,30.477806,33.72649,27.511059,10.222943,38.35136,3.6064525,44.24392,43.59612,5.1509514,34.844563,21.829082,20.778055,22.023222,10.821609,29.132303,21.172792,64.86236,0.13536924,4.6412587,65.087074,10.983815,10.039732,61.96991,0.683411,54.51209,3.0065432,14.232517,57.903896,51.219635,5.9735765,7.3752227,66.20004,17.036297,11.252669,74.50969,15.255254,24.944775,7.478667,21.959225,30.386816,18.646673,60.597435,4.303443,7.163337,1.8797915,56.937454,1.9809395,11.213537,8.746477,25.684458,62.046806,2.9840622,10.541201,6.2173495,28.364578,8.004152,12.32673,0.42299205,31.256096,9.13856,62.843693,34.823406,15.100023,47.574722,4.291043,71.98647,2.2060301,10.672241,56.82044,86.258385,11.068026,5.635648,10.44625,55.2184,72.833405,1.5877914,17.050295,25.383043,3.9610739,0.08994565,10.977977,2.3399746,81.66689,47.686283,5.6098356,23.755373,62.952606,14.720128,3.7379525,12.8475065,29.580431,14.638156,31.0476,29.171974,63.192093,42.8881,67.56663,7.359082,42.130993,86.41746,49.471245,22.92065,21.425608,66.54526,25.29458,17.843767,12.696819,2.927139,34.67279,29.602911,25.559547,4.596697,0.90848297,0.67101663,10.200155,51.09407,74.35086,50.055878,2.7374442,5.492376,11.9742,35.814568,0.123673186,27.739656,3.8694062,13.616007,6.1461554,0.04660373,51.462025,40.62867,22.194517,15.556702,16.597261,32.31916,73.110435,17.890995,3.4477909,2.7912347,5.6029797,5.836136,77.805466,4.3181653,33.01883,6.2042975,0.58091307,49.098156,3.30655,48.15823,69.05111,38.36988,13.698599,23.033367,23.792646,7.8247104,79.86142,4.6839395,26.104122,34.94979,19.29933,18.877254,24.980364,2.6171737,18.345335,35.040974,16.888285,26.070705,10.278683,25.825644,5.774342,2.635584,3.7831626,46.86278,25.50329,37.17797,41.3819,0.77291155,10.273092,25.73211,77.73091,31.095852,3.9877164,1.2855688,13.469464,32.909676,9.846666,0.5325663,31.711027,1.4429485,27.297482,26.571966,1.2646204,0.01517975,62.62569,59.139,83.598915,11.526779,79.53642,71.739914,8.235927,1.3137915,9.646692,8.776273,8.155506,12.195476,58.822544,8.010047,25.260675,5.089473,45.280735,12.697312,15.2911825,12.428865,17.315718,27.723234,11.266741,66.90787,19.320818,2.826943,1.0959301,16.95943,16.261284,0.32288402,3.1255093,0.4768997,14.462188,8.39324,39.187416,34.876514,75.1078,26.063232,12.684599,35.68882,26.80612,12.040482,16.900848,74.983574,2.0930324,37.704983,65.46493,21.43432,21.538742,10.315856,10.788252,26.68469,56.670128,11.438206,14.272646,22.659666,12.559048,3.186111,80.56453,12.318246,1.9743385,39.487892,61.396454,9.589356,38.23557,11.279534,21.783434,22.783007,13.378666,58.266705,11.174305,51.22224,3.3604596,77.0087,30.902443,7.243181,19.512943,7.2778964,32.837685,17.938673,21.141356,0.65750587,11.815019,35.9101,2.046488,30.323387,53.79182,10.069657,11.239314,14.227816,7.2975283,16.566954,4.819073,2.9936438,27.424135,22.084036,1.2067713,33.330433,27.51943,37.6257,61.134052,10.962898,4.471572,4.332781,57.02924,0.9045149,10.253272,50.91906,69.125145,6.318416,53.53085,10.354972,21.871418,2.292415,86.19996,5.371496,26.37382,1.5524057,12.031573,0.5153186,37.604168,54.68232,21.34948,3.5421808,30.544508,19.258022,8.629727,5.4271054,84.89365,4.07035,31.93113,17.829638,6.338503,46.451572,5.6057553,18.192152,34.416817,11.122902,32.91154,1.4954773,7.1416445,22.049429,10.888249,27.311369,30.756838,16.242228,4.3626013,68.354805,45.071373,66.50878,58.477848,6.3332205,25.73612,42.332607,69.42112,35.90924,0.54457104,46.567356,62.738007,51.437305,3.352665,47.32482,33.87521,33.905865,47.67922,4.069725,0.101432465,10.4604435,8.816997,13.0660715,55.901627,22.32382,11.122734,6.0112886,21.931564,7.3855524,9.592995,14.201683,5.970478,1.8663211,5.323382,48.221397,6.9651914,9.328893,19.570734,24.113026,6.4994087,74.141365,47.151623,10.451619,44.044487,30.848076,11.317518,13.490578,29.08109,1.1472998,15.982188,33.289894,15.2262535,26.780226,4.0409746,11.739496,32.464733,46.750313,2.274025,6.2153535,33.588116,40.912037,58.353767,51.730446,30.32328,68.5682,62.79503,40.899532,76.339455,41.071625,9.933447,9.013198,36.499226,7.1955967,3.6148121,32.944378,16.698626,55.773247,14.987036,12.683582,66.316414,39.321194,5.123198,0.32858163,38.695705,51.790882,2.844435,28.53889,4.6415286,31.130058,6.5179515,16.662115,5.329465,40.717785,29.72679,48.68944,0.6170422,1.6548212,32.9706,34.690666,2.848687,28.377176,12.444405,6.2851806,4.7506227,18.545145,24.362617,26.244432,2.5140011,4.171555,37.79585,44.69517,2.492904,1.5508753,0.07173664,52.58213,51.748405,44.651005,5.8645844,31.491318,20.22065,16.176529,32.459118,5.6707745,6.977938,22.965412,4.760854,0.9891328,2.5053322,5.5503273,9.240153,28.620085,19.939888,43.868176,96.143745,34.294094,18.796444,44.256298,30.006128,0.23485474,34.97785,2.3120968,40.265785,2.5568616,23.46076,0.10633967,46.592094,1.882526,16.818592,56.23548,24.472351,17.911997,36.65811,11.747526,0.51125425,54.814365,3.9635,16.532972,21.736649,7.9110913,74.04451,29.4137,6.4881554,71.63002,26.775267,50.28379,11.171451,47.59347,7.7851043,50.17545,69.26589,11.106757,2.2267222,16.526646,43.321533,16.227148,5.6015205,26.918373,95.02023,48.804146,59.595955,14.452173,6.867903,0.27698284,1.6319307,0.11994002,22.596022,22.234585,47.559605,4.1913924,5.807413,17.816519,18.80455,44.978947,60.90993,23.9434,2.7782502,15.666824,3.7135603,0.23263417,4.074543,64.14199,12.122186,22.180738,37.313198,0.24309152,4.8272996,51.455418,1.5979992,43.661133,4.344232,44.348618,19.806248,43.344852,48.973312,24.634136,3.064423,5.1159506,10.271427,6.05983,27.87809,0.074564256,75.455376,42.123894,84.911865,28.235737,29.088116,36.538723,27.138084,0.4048244,20.739525,17.991667,68.183464,33.638664,24.658463,38.822536,34.353836,48.83397,14.424527,14.635096,0.68765116,36.61011,58.884647,9.777708,91.99249,4.7936053,19.66367,27.476986,7.498702,2.587021,34.83354,74.5869,50.12643,8.3085985,1.6925399,38.41811,34.715992,2.500412,23.663172,19.308338,1.3026338,12.255528,45.767086,42.622704,25.70607,6.790635,10.1607065,14.170292,22.331013,70.273766,47.188164,20.168238,61.42234,15.077909,7.927823,0.74154484,13.069461,73.42419,12.7229805,9.453582,48.000713,8.378552,9.316997,53.128643,49.977028,48.64106,96.554886,38.23164,6.3935323,28.75734,7.7772946,35.416203,45.6264,21.70532,38.752808,11.071586,90.080246,0.29547256,22.698599,41.410503,5.7172365,9.706383,2.658517,25.045885,1.7986149,0.30686206,3.3754675,10.679573,0.98771006,6.6946974,0.6692334,12.501935,52.48479,40.961826,25.98733,17.875454,24.510077,2.2903852,18.379671,48.390087,46.236324,2.4409533,2.057195,32.767426,1.285841,22.396502,46.21929,35.643536,0.034614913,53.533302,90.94726,11.305411,47.435234,0.19837832,30.541838,37.114655,34.306587,11.7329645,18.040792,1.8346151,57.725605,7.044283,61.503315,3.2485461,1.6807569,3.5303943,23.396696,60.557083,6.2789283,4.7094274,30.825506,22.709692,20.297342,2.8561788,69.59021,38.08134,63.48736,26.596025,2.5707812,6.511368,14.5637455,17.324978,2.6024234,26.448881,0.93290347,14.314052,2.8302972,41.45335,15.901249,1.5194184,1.2883132,4.7775226,3.658132,62.43959,3.8516645,1.8465843,41.45012,47.479942,10.837969,44.134106,53.896286,11.250254,62.961906,19.431112,6.2908335,11.928421,41.32902,21.347042,16.630228,43.740704,34.264805,1.2249259,47.945694,15.646233,10.975274,40.683205,0.7953711,62.945366,11.395293,4.265803,0.88588923,3.4425719,10.73578,1.5917026,3.133608,9.087118,8.578713,42.93112,61.120094,22.935743,36.94837,26.63742,14.970585,0.7928967,7.394985,9.203965,37.522858,17.21706,38.577404,45.153316,8.825249,8.455481,83.344826,59.41574,24.828636,0.17022851,35.503586,30.601995,53.83175,27.179428,6.834698,1.9033176,49.995483,3.344823,36.337566,24.469612,41.81128,3.0620809,26.872015,27.568586,2.3093417,4.9757724,46.971306,13.246961,6.888782,47.366787,7.2370505,7.664844,8.054251,45.703712,20.144646,8.939066,17.625956,28.316418,50.11703,2.9134173,6.825861,33.977333,42.87783,61.159668,62.060078,6.065171,0.4649767,0.65878856,19.910685,30.182436,13.80583,47.79315,4.538746,7.9336524,26.958351,57.16164,31.781603,8.197346,9.736563,4.2302723,29.799332,8.42348,46.831917,27.826431,64.322105,41.19875,22.728712,27.651865,1.769984,7.019727,18.672756,0.67854035,15.710051,48.864323,36.530453,57.447323,0.47008303,48.236416,12.680738,2.3140116,37.30074,15.62921,13.208746,11.826757,2.215795,55.075207,51.13016,37.077316,59.4999,9.590935,21.756132,4.7542496,2.8357356,2.3165135,8.0761795,14.279277,37.578304,37.535908,1.3874228,31.110853,57.127796,15.317447,33.745583,5.58148,0.5191124,32.838833,85.32225,19.279182,2.0813622,49.31789,4.928215,13.345315,24.2145,6.144763,1.9260309,92.808556,17.686075,13.7885,4.7523804,2.3295968,4.4991827,10.0003395,49.619205,3.0422943,24.508924,1.583482,17.902912,34.103333,46.545815,20.900269,17.480036,37.60512,39.633797,40.0076,10.538554,21.160608,48.098446,20.217552,10.115363,63.97016,6.5069523,14.467254,3.0615737,15.277514,21.164444,11.536756,64.895386,8.759427,1.2873472,2.4549372,89.838615,7.2742805,49.718704,14.842001,14.674874,38.436947,0.4253121,3.9065232,95.230446,14.614698,12.030954,22.280598,12.663659,56.79167,23.886923,14.614369,5.6883035,20.843327,52.84065,76.86893,11.227281,22.431047,10.491713,33.30342,9.306949,0.1777808,7.3022933,0.7220658,11.246819,33.575,47.462864,1.0574162,16.078838,74.346596,46.6383,1.7643166,89.58955,18.299404,56.41971,16.641186,22.512506,16.74764,51.74981,30.369947,22.927238,0.39171314,78.99248,60.335327,46.377525,14.253098,0.3120873,42.101223,53.362633,31.451017,25.88907,35.850143,63.710163,4.303662,12.943379,5.23438,41.11101,26.190947,32.335518,28.092968,42.147568,7.685744,28.772596,4.890253,47.397312,60.924366,15.197757,92.18462,3.67627,11.171409,27.378506,56.07467,6.118487,57.363033,13.228399,8.024323,58.789467,48.808792,60.296448,30.468615,9.262827,52.16111,10.997996,10.04515,13.955082,10.370465,80.09436,34.179855,2.5372787,26.27087,0.10181182,16.437151,20.755259,2.5629933,67.88814,12.606185,6.751901,3.4544804,5.4608,49.000366,40.744007,53.034782,9.692547,20.06573,5.909018,48.99083,39.984383,14.160819,1.6601278,73.79492,29.047102,33.98926,13.840602,76.984566,42.864098,3.9293776,32.270374,23.342962,21.319727,11.152392,44.111633,20.54781,10.747473,5.0907702,50.317707,67.05078,3.910471,30.819927,29.59162,18.120676,26.027124,0.19229402,76.74865,0.3738979,1.657025,23.767376,13.716388,3.8904142,9.599772,4.3300447,3.279804,13.9807825,4.2323723,9.826061,3.1769207,16.175585,42.01948,20.267315,36.12485,20.680172,0.3876186,68.186584,5.826491,17.711262,6.443008,19.59886,13.258054,7.4832196,12.589276,11.21047,24.12014,34.71479,3.979288,16.737719,8.889186,41.246723,61.24853,38.868256,26.879944,49.057243,23.63882,0.7347213,28.045328,18.731682,22.265146,47.868065,18.64205,28.123621,0.5357448,52.879555,13.782508,1.1970031,23.564722,7.156008,18.845371,41.867695,37.42102,43.43323,33.84313,0.9818199,0.3311834,15.616985,22.58508,29.55786,18.192383,23.689486,5.718154,6.650559,5.127209,70.484184,4.0994067,55.080948,20.887983,15.00741,55.26453,14.925226,60.798004,16.388994,5.160781,39.66344,76.49921,32.580944,5.274897,2.5166996,44.11408,48.255066,7.4553175,6.999339,53.3764,68.701225,10.1364975,0.7154928,0.13661018,0.98932934,51.67922,9.64433,29.762764,12.5951,59.038937,30.299229,32.353382,5.491599,7.2961116,9.153112,11.808078,0.793923,0.13159943,51.35901,30.534512,2.3588212,6.6041737,6.5695734,33.90263,11.366157,24.409792,9.396769,64.46925,1.0098199,18.459547,0.3149677,23.749765,5.828877,24.312729,87.47848,16.137602,3.8079386,17.448854,19.03311,40.23234,20.573717,75.654274,53.135715,2.446736,2.4274046,2.634697,1.6783264,42.67678,14.60733,68.01436,33.648872,17.982534,16.58107,20.946884,5.013344,68.17955,11.803803,6.998225,13.089806,8.542722,57.455227,51.36517,21.185452,12.772122,8.311104,26.166039,49.966045,8.030284,18.409718,5.08423,67.74213,72.882996,23.209822,29.936731,6.433842,0.6967169,6.482444,32.34364,3.0920432,32.41568,39.839485,0.9098389,44.462868,37.650192,46.440975,19.267935,29.20575,61.366634,26.94776,20.028585,30.749159,13.645199,19.482773,51.854485,9.940497,11.13375,18.484583,1.2791588,9.225304,19.145035,6.4373727,21.51829,0.73762006,6.797147,75.6726,11.28949,22.680292,21.56228,27.580704,3.6408393,11.739651,42.16173,30.426912,0.57886857,30.464977,16.432524,17.647684,24.195724,0.15485187,55.41358,47.711296,38.697353,18.069574,15.39174,30.629707,7.4542212,6.704952,69.960846,70.61045,1.1468107,10.515646,23.276909,4.5994773,11.586108,9.201739,4.5758085,25.986393,35.134617,8.672876,1.096767,20.437939,0.9867054,50.030354,4.450697,11.640884,9.416999,8.017173,29.1236,0.30422065,4.6586604,12.323889,59.84422,0.9285932,56.618732,40.936546,32.95085,5.311883,0.14118837,31.0169,12.5044,12.716811,43.115116,24.107462,12.439572,22.913519,9.225613,49.66619,17.808233,30.376085,17.968023,12.348311,13.69419,55.785225,58.10993,46.6899,36.92307,42.014927,11.651142,14.3633375,26.983252,23.341463,1.2256498,57.243546,83.57665,21.397263,37.861156,0.8522376,43.234135,36.40045,8.27846,2.2000492,0.43535426,64.098076,27.029818,30.108583,50.060974,8.005296,6.4000416,38.400494,5.2914243,35.083,0.2394001,42.00671,16.945957,2.3110895,13.751826,0.061298486,22.061714,29.432245,52.614265,2.7172832,51.431644,22.976824,24.914442,7.1588163,56.1277,2.166873,29.4535,5.9900794,42.869923,3.161088,1.5041345,19.675432,11.949308,8.682755,45.392853,4.9843664,32.37151,24.092796,2.438541,34.965393,79.53533,45.966923,1.3119763,43.687424,66.62286,2.2954776,6.9605613,0.3238602,11.583212,52.565033,54.37567,19.783714,14.985508,32.53803,9.362368,34.728416,28.527374,50.694992,2.6515858,12.356988,38.54302,4.650561,5.0686846,70.168465,46.262585,12.061804,3.6641,7.280931,12.242476,6.3035717,38.22925,89.63989,25.453915,17.569714,43.42573,3.3847518,43.763496,17.112597,25.942064,40.478184,25.309246,35.873924,25.942234,18.345432,13.140351,25.132961,0.3960768,11.9825,18.719032,56.83638,0.2937429,26.25032,5.878587,59.629433,27.026333,45.576027,18.243258,37.552837,78.315796,20.562923,77.89417,7.540936,56.372517,4.692562,17.94782,6.252867,36.28809,44.056866,2.451909,85.57914,2.8926203,12.939886,31.523567,76.09623,10.914406,1.5529915,22.704987,43.37713,43.602303,75.30784,0.06623771,42.168056,6.846549,46.69949,7.892314,10.850429,45.843025,47.566326,24.007565,26.77897,25.640905,44.51467,43.454926,14.866343,19.570631,83.7275,31.580738,1.617079,48.613174,78.42073,10.28735,10.77175,4.176447,73.4404,2.0423272,0.060288303,1.3216424,39.031612,33.274647,32.267174,21.619564,12.723989,1.5976139,32.97109,6.8080335,21.358809,46.270668,13.77697,2.7943227,21.12268,78.861015,7.713022,6.5784683,2.3388019,3.263348,2.7097929,24.168966,20.711483,61.06991,24.621773,1.0991335,12.319309,43.733074,5.8880897,1.8528285,4.4799633,20.407175,37.258224,2.6379547,45.91171,5.7727127,2.8671744,9.62112,10.667082,3.0170999,6.1018643,14.71775,1.3865542,57.412663,2.4418688,36.68173,15.764759,11.4395485,7.0907235,30.734247,4.5276356,25.671638,77.4694,56.969994,34.321053,10.736912,38.680965,26.744436,41.72827,35.31603,43.948803,10.463149,29.537493,10.623544,4.971678,16.109634,6.5013504,36.93897,31.532854,10.549924,12.7331085,37.778744,51.4004,2.0009117,30.902184,7.6692944,88.204544,1.1668507,0.064553514,17.121058,16.221527,6.121759,0.033131994,10.793915,44.88984,88.173096,12.178122,28.957897,39.606133,1.7873783,0.42273018,12.966042,16.859995,4.564429,25.310007,81.55725,38.004574,10.489551,73.55735,4.5431886,52.649754,15.839168,3.5860343,33.77975,18.883257,25.50508,4.9326835,0.9900219,18.698364,0.9865918,8.465901,71.942406,25.220058,21.276043,17.794205,2.5752363,38.176586,14.326763,35.756413,34.12642,23.705751,45.462807,0.18992709,15.623233,14.815996,8.12924,3.5563114,8.427528,58.00554,13.182109,8.577222,11.220544,9.5891075,41.172966,3.8757815,52.705105,9.251068,5.860738,20.180063,58.236023,3.9324565,15.107707,16.374159,48.98253,67.35833,1.9350013,12.496322,11.461962,65.656334,11.582136,14.925887,23.29982,25.757124,46.42468,6.01317,34.792225,38.23317,0.33585998,8.125718,4.8307652,30.131502,23.789085,29.975576,13.53008,86.61938,43.50159,13.6204405,10.674761,6.196382,58.801727,2.5533295,6.7573886,36.083477,61.48962,84.435234,28.84533,1.5623302,63.231365,52.52803,33.304806,3.7457325,3.611249,18.726078,32.149498,28.865583,1.5836462,39.441605,42.424297,25.79658,23.386578,22.471125,24.087244,6.0225754,60.913857,2.9490402,2.409615,73.16504,5.426576,80.59023,16.671928,6.556143,1.6259296,1.8538927,45.381447,7.494207,36.335884,49.371685,2.3749866,18.223326,2.2422104,8.782896,3.0480843,8.026273,60.133724,40.95322,2.0779917,53.4244,0.14331347,36.813828,48.9428,7.3526025,18.708076,57.86095,41.23344,2.7193093,24.190695,38.096954,34.39646,1.8068955,38.287,4.817418,40.968197,4.5981703,1.1753098,10.469158,0.30382887,66.46658,34.4726,29.73833,12.841996,16.080755,7.2095013,50.786854,26.807226,8.783092,11.086206,17.812073,1.1486449,36.002483,58.953545,33.106518,36.046215,57.07278,7.6710644,42.83005,3.9154813,22.919273,39.53716,2.7505276,20.097555,19.686584,14.214416,14.595616,17.263807,37.2255,77.04393,19.890957,56.90612,25.041216,63.4565,32.01693,61.602962,57.236794,0.44893223,16.704397,4.1844583,7.3152685,23.404343,56.44016,0.616518,23.765997,53.229465,4.9222565,28.461493,0.25243223,3.2075515,22.936039,26.240343,1.3140945,85.23251,56.937683,0.107941926,6.7206225,15.938176,16.239025,18.132172,16.084703,24.416437,16.377895,35.296967,12.731305,19.251175,18.097788,76.080986,60.795185,21.548737,48.978825,0.64654696,15.652885,68.2702,30.562057,42.00283,0.14365926,37.79952,3.1920314,12.769314,8.138409,42.61652,8.100071,4.8949795,0.4649831,5.945839,25.255377,0.81165415,7.7174616,35.889175,58.002132,52.892242,49.57693,1.5324432,3.31987,2.3063743,7.3644233,21.129532,26.912535,72.620575,33.0895,0.348858,21.386078,36.90092,33.018326,7.8224335,43.455482,4.8242664,93.38971,36.39391,4.6276855,33.491783,21.16354,0.29448336,23.658888,0.2737627,6.5103464,6.23959,17.495228,34.62179,25.43147,7.806812,3.6885464,3.621103,9.653972,1.3538741,23.555809,28.476727,53.35369,4.825892,1.275472,0.41318163,8.117824,17.56571,4.5128164,40.881973,30.870014,5.8642035,6.310683,25.948753,10.173795,19.750143,25.2234,80.87569,35.084957,3.268697,13.412961,85.08733,17.000963,17.026218,27.228281,27.80735,5.8032646,4.527646,11.799477,46.051926,39.266335,23.166288,2.6900594,8.955243,41.09965,32.64962,4.0395403,22.376673,11.5087385,4.3792624,1.2408116,52.478905,6.2568784,64.21581,25.207758,33.251144,18.317867,7.215238,42.436916,0.7806977,45.230247,62.517136,75.166504,26.605059,4.658517,31.490225,15.0922,1.5007979,8.613517,53.83678,7.5894914,10.235448,15.454118,37.723774,2.681747,7.2225432,14.627886,14.736992,10.464355,72.49943,57.925755,33.2464,50.884907,53.95146,6.483047,4.6203856,33.189716,50.144577,8.266275,17.147305,33.785835,34.333244,47.03643,31.77649,66.6456,41.64032,14.6292305,72.14415,48.571373,17.717949,19.161982,16.803274,84.615135,87.04101,7.004654,83.17431,57.561695,65.17341,8.701868,6.3011265,66.024864,33.465504,0.7665923,0.03760837,2.3124185,1.9323034,9.763816,30.336243,15.386871,58.14304,0.29476982,36.345528,62.279785,32.677223,19.161669,2.190087,29.553131,33.85199,36.275814,11.462255,44.869476,0.950331,24.508951,8.8616,51.169292,20.031282,18.196306,4.712185,9.0638075,49.06765,70.83477,9.841414,46.79374,22.120312,26.797073,14.298943,32.613934,17.414621,20.771063,65.33555,10.912285,1.2407669,3.0525384,11.89128,15.5009365,18.52406,12.589446,35.32402,68.728165,19.390005,18.876116,52.600056,4.3288293,37.864464,34.28322,3.5052426,25.977915,13.699928,4.343075,81.517204,32.950935,8.00252,21.908173,32.270775,31.961239,13.696025,6.7218122,23.170567,43.36073,32.944576,3.9058857,9.319569,23.030298,2.720459,9.698133,13.594377,7.3745675,0.026968626,7.653739,2.039534,19.419872,0.06870511,2.6143432,27.081305,46.692757,32.19356,31.19782,1.5995598,29.686132,34.146366,30.080585,31.565876,27.550333,8.4678,56.402977,20.028147,35.176094,64.79042,12.2631855,0.48993093,1.0311286,20.046085,35.415504,15.194286,22.721039,78.25169,37.390392,0.41185486,83.45784,27.90368,24.269365,15.560708,72.57798,0.5705026,4.0427203,3.5619688,76.75523,1.655539,6.5134106,1.3855147,18.631512,37.287743,60.49316,20.846626,0.5721318,8.302084,10.340268,14.679283,7.108042,2.0981417,45.32653,18.27366,39.658764,49.431324,8.53366,10.0999565,25.451326,27.072294,8.479557,12.502915,39.713207,32.67339,67.08953,25.243351,11.045874,69.900566,3.5212286,25.48907,33.91431,34.376316,2.4757833,33.486115,29.719862,34.578037,7.307766,20.751436,51.35302,15.095134,0.9912383,24.878077,7.323203,18.130554,11.812525,18.271482,6.490687,0.74627835,0.22560586,44.21381,13.455597,28.011112,16.606186,8.560585,6.104149,5.4804454,0.10897196,18.239765,41.761395,83.9745,1.1313549,44.07646,7.0377445,58.221485,62.923996,20.017344,56.756336,40.296364,6.882398,24.14439,5.0404987,2.6582468,32.006165,54.787075,48.552376,60.85223,26.873102,98.82253,7.531501,2.2246644,28.275187,0.5273791,3.6842039,26.416695,7.1173944,5.509244,37.838715,57.92501,0.12674893,3.535752,18.846716,12.434822,22.37577,31.36964,0.071235284,33.147953,11.195378,13.388587,14.571536,3.491653,8.410784,34.67904,10.961779,39.73649,57.28844,37.591003,36.10786,53.160686,12.873683,21.200716,39.444164,25.867445,5.5112147,20.540342,49.41421,7.9262276,15.81884,30.335775,17.14238,38.53354,0.2215317,1.6654091,79.30774,19.317015,59.79242,3.6920788,44.935658,0.14183491,27.437277,2.2280178,11.494727,31.870834,31.985172,81.0602,9.445931,5.5748105,61.20255,16.520096,7.8392344,19.254824,1.8775142,5.289799,73.879425,37.769676,75.44979,4.118967,0.22676164,11.934369,67.8536,41.85231,15.022803,13.3158,15.929717,9.44283,21.064026,0.31835684,3.6304176,1.1837599,0.007809963,8.2145605,68.14317,78.67157,11.656995,2.4225218,2.1675878,47.559067,27.114012,12.835813,42.830677,4.946238,13.259207,0.6037584,47.897587,27.538252,42.727745,17.510643,10.283629,41.605,0.9692299,45.586826,65.65173,2.7477965,2.7287812,38.575867,23.535658,9.647602,16.27306,77.7047,6.5301933,9.907555,19.941597,30.421247,6.255125,65.43107,4.957969,0.839758,19.762827,11.489931,65.56385,0.38102734,84.03978,15.635413,2.198155,59.521477,23.760132,0.82784367,3.922763,12.279242,28.275188,6.2753477,1.6312178,1.7223778,12.584575,64.28903,48.81349,61.734947,3.8222883,11.570997,43.752666,6.759911,34.192303,18.12783,53.77357,35.62113,3.3270783,58.281067,9.227747,38.840694,35.9332,5.4186707,60.02249,29.30653,7.6722836,22.403778,13.479663,1.0527215,88.59817,31.923147,22.205097,20.617085,22.88021,7.132565,39.575375,16.142958,28.632273,2.991228,7.4321976,6.184155,76.63473,28.014898,3.3910317,83.63531,27.717098,28.375963,68.20437,7.8176355,41.226547,15.652355,36.486267,7.043958,8.553807,7.154393,38.098232,5.2235827,13.017904,12.477448,5.647519,61.299007,46.108906,4.405683,15.905105,19.406483,3.908087,8.095591,30.404959,2.6578398,3.204,20.649908,20.24882,5.1943793,67.5272,19.60841,62.63594,9.554247,77.79955,1.337063,41.61729,9.922278,9.911613,11.634412,67.29968,15.287361,11.463155,85.58046,34.225452,23.605244,12.806525,16.697432,27.76818,3.6384435,79.22722,0.16477674,3.213431,35.89119,36.419987,62.112823,77.5539,84.36031,45.190834,16.625277,22.92131,14.720069,28.949772,43.905094,22.221556,17.134499,48.782757,4.2187657,7.765636,36.22961,34.656834,4.7520657,9.482462,11.7165985,50.23777,42.192627,41.62601,38.584854,4.2828293,38.188293,13.696309,68.02004,31.947435,62.37774,8.813778,23.270788,5.742932,16.925047,10.6872015,12.512799,0.83046764,21.165596,4.682321,8.699147,12.3127,1.6639298,61.61481,11.119813,5.583341,8.908822,16.710295,25.31265,14.898463,17.789148,21.607092,19.334204,1.8067621,0.66272396,66.38787,54.452087,16.015852,21.741915,0.2748001,56.01097,1.0416408,0.47126245,40.23292,76.17373,49.03826,18.998018,29.973207,65.42552,4.0731645,6.771452,14.219368,51.75886,1.3154954,35.25888,23.41467,0.1126926,17.779045,52.16175,16.33872,31.39322,0.27751973,18.739183,63.12109,12.383448,84.78701,37.976124,7.6958895,4.7567215,22.286438,73.49641,50.444508,5.5031524,15.396307,31.938765,15.844408,55.638577,2.724636,12.074536,16.287233,0.5518585,55.81178,58.77226,5.2480903,4.9072213,66.08784,0.03455323,13.007893,29.385706,31.67366,1.938813,7.2247605,1.8729382,3.1683214,7.873564,65.294174,20.109497,7.5236874,12.612008,4.2044253,47.785286,12.283964,15.290908,17.799255,10.143302,0.014577729,60.482876,36.823856,3.3468552,53.438335,48.646168,36.796825,37.838512,13.925315,18.596556,1.5098138,23.52202,28.895704,15.996835,14.821456,25.14705,21.805782,31.35623,4.6031175,1.6351358,18.937153,29.901943,24.956017,17.04096,58.23507,1.1767021,70.623924,20.309662,14.026902,13.172008,39.50552,38.243034,64.05831,10.137196,22.466993,36.38587,13.472744,85.05213,66.358955,24.839128,70.692406,49.673515,1.0048683,25.023226,28.254011,35.56185,6.80923,0.19371074,37.193573,3.0357196,45.42354,3.943234,11.882984,7.819481,16.444113,18.77612,6.6375427,3.0588548,73.22475,29.386978,8.131614,39.621365,28.115824,15.547884,12.7665615,42.416756,52.78408,1.0090559,0.22081527,35.561756,27.881296,33.03855,57.35621,62.329987,53.064697,73.36323,14.40809,8.961779,10.629731,25.987331,0.9926259,75.5674,34.680645,41.802937,28.203388,7.964988,28.65887,1.1801639,68.33144,73.598305,55.588562,0.9711056,9.671034,32.929817,49.442772,4.4909463,15.902131,1.7604277,2.2482061,56.83315,33.1435,45.223488,5.6662645,31.032827,15.906628,50.87351,24.215843,5.1176476,12.457085,29.135052,77.36872,43.719074,14.829497,2.1696517,14.921219,8.690029,9.691729,19.039616,0.00090383925,15.703276,79.850945,9.795137,3.0579138,1.8135587,64.31093,16.531153,0.6191843,18.534748,11.431448,6.4073296,86.370735,17.576117,70.21439,17.310495,33.086784,27.612106,11.862946,1.0368145,25.360218,8.738268,12.639721,54.068413,3.2825997,72.93862,4.56519,63.93963,2.287487,0.064273946,32.309467,3.6138139,13.8020735,60.347034,12.356345,31.330929,62.736336,63.09985,69.67446,11.741078,28.355194,28.612528,0.4082101,0.52732325,16.155231,51.87742,2.874952,6.1503367,11.839327,33.39429,12.593385,18.814817,9.042048,0.33333138,9.046011,2.4118934,1.9935609,25.101315,28.410076,23.853603,28.96953,1.0358372,9.432672,77.76361,5.10859,19.213572,68.01766,57.998455,4.4743223,1.4485788,52.184616,0.18912493,1.8065531,16.622515,54.934464,74.9339,6.43272,57.472782,0.23641664,36.75038],"x":[9.05183078316214e9,1.1662682996994934e9,4.793334164850345e9,4.1410531815310514e8,6.676585450666994e8,8.106355668403143e8,7.216819616152949e9,7.853309987198483e9,3.809778754226799e9,7.713652492722279e9,9.206701013513306e9,2.6485098017140727e9,4.0981382961138635e9,4.782932735563648e9,6.269431822135328e9,1.721756613111547e9,1.722727156610232e9,2.7611917670281463e9,4.645545985738048e9,5.620723316227045e9,3.02815611459647e9,2.577629419184092e9,7.696912915751483e9,5.897446361942816e8,2.8308766141384945e9,7.394157866375275e9,7.873146346605576e9,8.015122441556554e9,7.03464237638305e9,8.700137703487432e9,2.975789101415822e9,4.731212170787972e9,8.250633300980836e8,6.07898676411152e9,2.296277401655761e9,1.8643244593672025e9,9.123432086793636e9,5.253164151487801e9,5.570870850866575e9,5.803286765274354e9,7.349199867063911e9,6.731850966777605e9,5.321977229542602e9,3.6582413343214016e9,4.2054563063171234e9,6.314112861078535e8,7.830691891099273e9,3.7724650540473026e8,6.500924176781358e9,2.203722228003583e9,9.154722706618677e9,5.732934663339082e9,6.929517138889713e9,5.62588397588961e9,4.656852149599944e8,7.373757221428792e9,7.272520080957471e9,3.006648501509025e9,6.735695079291528e9,9.770159910624654e8,9.867245131174282e9,2.890607465278681e9,3.040607708629355e9,8.493253836814216e9,4.525759935940806e9,8.500638105981845e9,8.816053162524979e9,6.081831583994295e9,9.416137862973267e9,1.6427773033504955e7,9.20746335494925e9,3.655866449372943e9,1.844987389046232e9,3.4346703195372663e9,4.795145634601023e9,4.1886506463216454e8,3.8282707647864776e9,9.93754341634424e9,9.232052255331795e9,7.785103420818414e9,5.298698240448942e9,6.762619888035512e9,9.213880515427809e9,9.17069359712442e9,6.680191702399117e9,9.85490742323469e9,1.6343019808927662e9,2.5638970884039214e8,5.426179732324087e9,2.5504269796195045e9,2.941705924658623e9,7.656283360271938e9,2.268326929441127e9,4.2584720826781797e9,4.291517071712132e9,4.567653609068169e9,4.069619296622107e8,4.868867830653361e9,8.301515229778828e9,9.617519251653212e9,2.999527318505206e9,5.129494521215435e9,3.5047103030775595e9,7.301388349868047e9,8.808364452252281e9,3.363196916591082e8,6.217385913364574e9,1.4186733108829818e9,8.912538898984737e9,3.982900330515016e8,8.394915772346545e8,2.4582145179388237e9,2.5085411521868938e8,7.628127446446842e9,4.091445415900978e9,2.660586360462888e9,5.812090803711812e9,1.2526347584984165e8,6.269577230565709e9,9.490982495641949e9,9.39867706499319e9,6.258245646913372e9,2.0172278389441423e9,9.153838170053328e9,5.954491304648667e9,4.807143801435688e9,5.58062236832152e9,1.170907401499054e9,5.891556243224541e9,9.102292733641481e9,7.221016140823588e8,3.5270498188299847e9,1.9311364977772927e9,8.4758980600720005e9,4.8818737802907915e9,7.215626421745489e9,4.566429630936451e9,5.183596656712143e9,8.237804498009537e9,2.5308384853007904e8,1.87717196806657e9,6.988728476481453e9,4.267121388845391e9,9.342829965693686e9,3.7767594091628275e9,1.838689033272104e9,1.292097424699865e9,9.96014375132198e9,7.341354326055905e9,8.09305112814479e8,1.967419069417503e9,2.875052129192943e9,8.042469290101729e9,9.174681636234901e9,8.772396538974688e9,8.609668304910074e9,6.645039852418078e8,2.4985848390232267e9,8.18951370727889e9,1.2654761450440776e9,7.729200937226119e9,7.19516392120166e9,4.429558342004911e9,4.633080289290844e9,4.914685702159904e9,2.0588383976866022e8,4.768774482737647e9,1.8622079004808269e9,1.7251853448714871e9,5.7398759451272545e9,3.4105058646249976e9,1.8604396089429965e9,3.9317022490209407e8,1.6953276223706026e9,1.7732836523914075e9,5.043890776649995e9,2.5365750484524183e9,3.175341180604473e9,1.6658118015300083e9,7.98600454084718e9,6.444087802479532e9,6.874752393860727e9,2.0873616731049495e9,8.828112717251516e9,4.083276527709282e9,6.623485974800391e8,8.045485861989419e9,9.186918315828232e9,2.813636955418224e9,4.0523992009011455e9,4.6153895823139715e9,8.509899213908517e9,1.488779052112873e9,8.154359610563813e9,6.040881642607215e9,7.435619239049007e9,1.3824582320479717e9,7.043407849377574e9,8.332395956299671e9,3.645086412831359e9,4.009572451274568e8,8.899672713793371e9,7.034769154782051e9,4.0722999065362654e9,8.111036147167369e9,2.614773213316194e9,7.495471695295166e9,8.155246914010965e9,9.686827920870125e9,4.364865365743361e9,5.485027440345816e9,5.493742254635598e9,7.269746624598075e9,9.49299597285766e9,7.679259290457715e9,1.529690790746292e9,3.2006840901862874e9,1.1248072612222326e9,7.5841740857507715e9,2.1746524512945685e9,8.676979022652662e9,6.396421058966173e9,2.506006121556048e9,3.997813542674915e9,7.347940825904346e9,1.0876075236239014e9,5.453238004500897e9,7.390187172164689e9,6.401284837928812e9,9.174260473489069e9,5.113354811500716e9,2.2840761389515905e9,5.446209208027355e9,3.2672264518484974e9,7.383390367832235e9,5.176419607346435e9,8.909827085569034e8,7.703321767824774e9,7.698976015777935e9,7.15128725240069e9,3.044151998843372e9,2.7040319216582932e9,6.97678868675816e9,4.857550669979012e9,3.300399528469633e9,2.0418317046820623e8,3.9087136861194882e9,4.871526908392327e9,5.065523966631342e9,8.843744677522017e9,8.2483590626226845e9,1.2818636836912823e9,1.5500889743494272e9,5.751703405089634e9,8.333915829700275e9,8.942390811370977e9,5.945814181172222e9,4.4030134589334804e8,5.902510396313569e9,2.4598785931610923e9,8.370784064833015e9,7.353874618773811e9,2.866099906174999e9,6.482911570445664e9,1.3637427467432683e9,5.72529242510339e8,6.724516569002011e9,3.2244400279146056e9,2.1232163253703718e9,3.305615742062551e9,6.415753140039314e9,2.871778768130954e9,9.844746887852537e9,1.1022823377594693e9,4.068842090206347e9,3.510881828837089e9,4.451485872056391e9,5.479240927234417e9,5.184015594091777e9,9.5844329969949e9,8.891576482738453e9,8.644960445601624e8,2.1610160275169377e9,3.471274395393419e9,9.122019733601094e8,8.002311111705794e9,7.812962139568262e9,5.228624269519259e9,3.9396888259994535e9,2.150019557993371e9,3.916884062975109e9,9.147753263561905e9,4.2114403203755937e9,6.347872391462803e9,5.613064037854376e9,5.614741355265768e9,9.28266399714269e9,3.3698988658993278e9,2.4511537129049797e9,4.527437327636515e9,5.23877292634764e9,2.4647869007391667e9,8.161706354457412e9,1.5910176106203933e9,4.2615695234925723e9,4.7853132841050196e8,5.544709968862855e9,9.19036305352688e9,1.5702589357327845e9,7.267936921617673e9,7.183216972532284e9,5.940657826391328e9,5.002803369093808e9,3.332458500324593e9,9.365879901253687e9,4.1851134392203603e9,4.0122236010889354e9,6.7851550117726345e9,6.730220694738244e9,7.498067250508201e9,2.6203693224529834e9,8.154447699390005e9,1.8855422595888793e9,4.959094118134149e9,7.221940737440705e9,4.1291658166125255e9,6.49884321272877e9,1.9706264533248563e9,1.0250266534709384e9,1.5906514451807563e9,9.823677938673445e9,2.567543018712031e9,1.2942023262069902e9,2.4650728065782022e9,6.083584772360649e9,7.329759733314691e9,5.029818244451428e9,5.355187828661776e9,5.679242698250366e9,1.438076055631944e9,7.505102530848515e9,5.2072161164745003e8,7.540693177494973e8,8.525276147702458e9,5.856967454887704e9,6.262631314492285e9,5.922191417762739e9,7.775811348062551e9,9.820052219207432e9,3.4738020699884295e8,2.5977669451877804e9,5.288679005849738e9,5.691404923836144e9,1.8158424283757946e9,2.163200149505098e9,1.2969083142428384e9,3.077685357276341e9,1.957378145108226e9,6.30088369239746e9,2.225427526293594e9,8.72251163079549e9,2.600880475294156e9,5.601220297925486e9,7.294430101948644e9,6.804397186996943e9,3.4650775532700186e9,3.9916566780456176e9,6.890508207603033e9,8.023227057233721e9,7.364292404798453e9,5.214947820759977e9,1.1300876920756865e9,9.543459654137167e9,7.341651559120912e9,7.1906335394849205e9,7.499233718977966e9,9.184476097989424e8,8.93546263962809e9,9.204213351059042e9,5.055911500185007e9,1.9090641645662653e9,3.496822428087648e9,9.726883703548006e9,7.393460579826631e9,3.2972183646623874e9,3.6287238773126993e9,9.660415451626884e9,9.689105474365412e8,5.652032969476827e9,3.7087421703376045e9,3.265049433208286e9,6.060342663066599e9,7.511228075221584e9,4.125352036621912e9,8.350833512965047e9,1.4262402393285024e8,8.482887505966861e9,4.640196300691474e9,2.1329878381926737e9,1.7083641793114945e8,7.156464958741804e8,5.720538707206168e9,3.7333379025604296e8,3.3202627725517087e9,9.733161223704624e9,3.217722945391368e9,4.2164356254170575e9,6.193973867698332e8,3.533610237810857e9,5.003996114349045e9,7.607127692490562e9,8.421317232893744e9,2.404849855022935e9,4.654404009917208e9,2.766112957604551e9,2.981140150221212e9,7.694535244620629e9,9.956909480180069e9,8.883170356372374e9,6.455077391974776e9,1.9885601088389003e9,1.6625211111172023e9,9.786424180776022e9,1.4139940957312958e9,3.9071368264790816e9,1.5436313890553422e9,9.153410467623104e9,2.9302382184638333e9,4.694915896983824e9,2.3655628266105957e9,6.315198879430077e9,6.032386503526376e9,6.898842428641116e9,8.65490500891185e9,1.1505661754815488e9,1.7269760448002646e9,9.122342843608528e9,1.1104396575210673e8,7.567721506798808e9,2.27934372486191e9,4.810631045873565e9,8.422913223942491e9,3.9980613046051774e9,7.451955948049663e9,3.8822859377756815e9,4.43841213439958e9,5.644391742190791e9,6.184221492144101e9,6.519593885926056e8,1.8788984157555544e9,6.731683498203383e9,8.007482950289117e9,5.146101462527253e9,8.76789062103773e9,3.251739410847093e9,7.774690838486819e8,2.126596159096098e9,1.6789999127962186e9,8.25978792872723e9,4.1259044838402414e9,3.0299488229339767e9,8.240961157145965e8,6.310519586928249e9,4.5090080803338206e8,2.5698976487638893e9,4.457724434715234e9,9.400176731041801e9,1.609357217606433e8,1.3205609271227748e9,9.75439451308113e9,4.811812964916024e9,1.2143918873238835e9,4.390192689434884e9,7.957008124542366e9,8.150156323106394e9,3.538679380811216e8,7.829365973459166e9,6.564437461907261e9,2.9809622561413164e9,2.856344266951696e9,2.4474490472052736e9,2.276445719696725e9,5.337782278005115e9,7.693054628447672e9,7.129531153161743e9,6.450105384720421e9,9.28934070043751e8,3.127345214802194e9,3.119917475184669e9,2.035453813291752e9,8.60519235942101e8,4.315716978557562e9,8.014815317683566e9,3.6839553042024765e9,6.549573272193129e9,2.3179935437711575e6,8.157435368511757e8,5.312237011755665e9,9.237203017070173e8,2.5828008066969886e9,5.634842675230045e8,7.676033012528537e9,7.419668107755652e9,8.4559252480680485e9,4.1130118849738097e9,7.570016058522463e9,5.551419525041753e9,6.441625370956545e9,2.206897954679272e9,9.065129140200901e9,1.9173540626790385e9,4.333461456232339e9,7.907174217741288e9,1.672867905795159e9,6.376603787406178e9,1.5624930164596863e9,6.635471824175434e9,2.4195567026557307e9,1.8112752241778696e9,8.666879572999615e9,4.856792596859702e9,4.7648698299664783e8,5.937289436667641e9,9.439717130000303e8,9.854582627446552e9,2.6702564621914306e9,2.8244379087388973e9,1.0293894330895615e9,2.416088289922169e8,4.384430334116888e9,8.67045955792586e9,7.486848104084772e9,7.154031927634526e9,7.945053884053968e9,3.934571005882145e9,6.480355450596024e9,2.5086008302967653e9,1.246975450890312e9,3.7221170458919883e9,9.892535052302979e9,1.5053248234342341e9,6.376386606322715e9,1.2444530495287387e9,3.1761081589329453e9,2.150401772247912e8,9.09368958660387e9,7.978188054808365e9,2.3769267864181867e9,8.707129593423483e9,6.895180905478349e9,9.780439490351704e9,7.545526481585121e9,2.0292879083404837e9,9.883127656110435e9,7.078935267574862e9,8.057603754894379e9,4.0466134173252964e9,8.502512169216225e8,3.3220896988823576e9,3.8457820408679396e7,7.873097030673969e9,9.762555851925225e8,6.086358699864768e9,2.951914041936301e9,9.995660537874762e8,1.1712377898263893e9,5.178117606484885e9,1.7259671414681587e9,1.454933355981799e9,5.549440552817999e9,7.719813548960918e8,9.591286539967897e9,9.992432605831923e9,3.90470490352116e9,4.2250153149015203e9,6.884837382209308e8,3.88444738464926e9,4.45583351967507e9,3.79956945410434e9,4.606976384617913e9,7.230774811404776e9,4.398880098179624e9,5.119427433446333e8,2.801662317382785e9,2.638867843649647e9,6.398482692748232e9,7.951350189783235e9,8.009443208029172e9,9.428304242519588e9,6.481891197863371e9,9.619127985324017e9,6.204573245524464e9,7.979769469831372e9,1.0387385021949736e9,6.699801874962099e9,3.6022665634090066e9,7.895343684721317e9,4.720324301907497e8,7.868143672349325e9,4.1601811673455725e9,1.8050736158228165e8,4.0440217521626997e9,8.81525003120003e9,8.818967950221125e9,6.486704349888518e9,7.727674658714992e9,8.0138198344903555e9,4.46638557292937e9,6.559468808165898e9,7.627569802973322e9,2.0900021028750215e7,9.360921250448402e9,4.045128395535618e9,7.580785014023171e9,9.522861998609306e9,7.210523671782868e9,5.299704864471336e9,7.848571174009986e9,6.019987162938715e9,2.589792348900721e9,6.859458536454858e9,6.060622799486475e9,4.00067484114646e9,1.662432316169008e9,8.424848737442022e9,8.137048971446466e9,3.079294840277661e9,2.108149865750729e9,7.665993034028096e8,5.802874540581651e9,2.6386194306752276e9,5.2403359690792465e9,4.62244641956053e9,2.0336156533124483e9,9.434883912928226e9,7.527028515250876e9,3.2482947882734327e9,4.682799406829203e9,5.0802186225171585e9,1.6299816234941833e9,5.86686292545327e9,1.6251598487972596e9,2.7716803008875947e9,6.536608408675725e8,4.0347608158439784e9,9.158318362673687e9,5.905843027067422e9,7.271131333349905e9,6.119688671949166e9,4.0010187337386994e9,8.021063682747674e9,2.2823115813085427e9,2.455850447370782e9,5.148830311012117e9,9.500263741514881e8,4.287094789771743e9,7.177301438375971e8,5.693945890455254e8,7.596046584224759e9,7.56651307428676e9,5.202493133911661e9,2.649809235157631e9,7.592942893322287e9,6.5030609554986925e9,2.0037424344023092e9,3.189539160855063e9,8.396996172017914e9,6.607721771196627e9,9.169194727228495e9,7.031552891499818e9,3.0712814930386066e9,7.173505150711869e9,7.242610532697425e8,5.957707437503038e9,9.65029078875217e8,1.0122655469494867e9,7.258452218503505e9,1.9357342447377012e9,5.676042171743907e9,8.043234578381853e8,7.545851574575667e9,3.9526185011463523e9,6.1136161468455105e9,3.334130381805505e9,5.290333588473319e9,7.7698146215295925e9,9.171674699545225e9,1.042812152397411e9,6.145096278571835e9,6.063672458073286e9,7.574395467659635e9,1.1092089970229812e9,1.2727959480468242e9,9.508040994702147e9,1.2559686583521924e9,5.459440232034792e9,1.9535800384198632e9,4.276845885120544e9,4.9548298320400196e8,3.3763846384404e8,9.52105969883601e9,2.609949392413595e9,1.480395940213246e9,3.7227493664913635e9,3.629276656281849e9,4.628336305793973e9,6.955181359878828e9,8.684568455124529e9,1.361823752510618e9,6.090403257511855e9,4.0989466445007205e9,8.283542911484616e9,3.0804643022533307e9,8.60430494610512e9,6.522297434769111e9,9.15264355640932e9,4.506964704148585e9,8.339761934134131e9,3.3890186506391163e9,3.6640722447800145e9,4.320836842207802e9,9.15171924556063e9,1.4415760865756243e8,2.5791447029572e9,9.052864604292185e9,1.7036365195459145e8,5.251061747722237e9,8.138681374872558e8,9.543324480165213e9,4.953310649842253e9,8.078056058546974e9,4.794541689057242e9,9.753187874860685e9,1.7183412904823349e9,6.831028110254751e9,9.6279268269763e9,3.5387716416429625e9,3.4376601590410438e9,3.130985584492536e9,2.8396805148526826e9,9.99001163422077e9,7.629792041334735e9,6.84970192606016e9,9.191214612578814e9,6.479324090865121e9,6.202164056367482e9,1.3745928686049635e9,5.769116353752278e9,5.05963874821443e9,1.5890216795287826e9,9.788061450815632e8,8.523136475552878e9,2.3620053404197928e8,6.9919247189146385e9,1.6865421376461608e9,4.006132662051358e9,4.848684436715487e9,4.975997949267009e9,2.2915786344617963e9,4.260398657597404e9,4.358571669573422e9,7.557160978664261e9,4.1693246878452215e9,6.914249369706678e9,3.2991786329555907e9,2.171577292345036e9,8.359729173266246e9,6.23615241667987e9,3.8745731949718266e9,3.3306673061990542e9,2.281602035213495e9,5.747213149813035e9,6.402520082540055e9,6.0575689297098e9,2.57006933860225e9,3.5263940815448337e9,2.722036829012973e9,7.125539753215942e9,3.3068643847411504e9,5.956137858267632e9,3.0962464002255697e9,8.981889733910257e9,6.726418322024275e8,8.927969405789986e9,7.577605657860811e9,2.163976994090597e9,5.254978940958775e9,4.1622311198380547e9,7.05873746306179e9,8.113272522946214e9,4.090525759014869e9,1.3412396915684576e9,6.618395956368508e9,4.571418076939886e9,5.6475578449535265e9,4.579004582795667e9,2.6839904942327085e9,5.860147486272442e9,2.265573792524539e9,3.9771013762126174e9,1.7197216352954736e9,7.551217421972789e9,9.615502593539019e9,8.078243544967434e8,9.325947318087019e9,2.534711367462732e9,3.0316681168088646e9,6.493929920475334e9,8.494311079650642e9,5.152247478934931e9,9.950774238880219e9,1.8768235411770305e8,6.121543547942779e9,7.875529789622517e9,8.162010036382886e9,3.386614247834596e7,7.982864734568941e9,2.566872738673738e9,4.0564112130638742e9,1.9902547269461813e9,6.224181971705361e9,3.882294937305977e9,1.534044974544656e9,4.3758135924072075e9,5.544702648952659e8,3.693902942685219e9,8.658829957510462e9,1.3070841476711726e9,5.804855156981469e8,2.9650457957823153e9,6.0112371527373295e9,6.217586344611122e9,5.92950267464899e9,2.402423916087004e9,2.096237375164588e9,7.086162520746941e9,6.321454334143461e9,6.029858978388351e9,8.349614410891178e9,5.450716963068003e9,6.6937376152106495e9,4.251080557703892e9,1.7217343543146558e9,2.1804866095280495e9,4.78687969484659e9,2.2270078409621698e8,7.003551916723816e9,9.0873911701383e9,5.092211844294348e8,8.582630479172738e9,7.321651305631358e9,6.463435052864925e9,6.072663028888903e9,1.2956518039985442e9,5.438967949459094e9,6.405175963199718e9,9.61380878283452e9,7.143264206202208e9,9.385343889465008e9,4.950802527642343e9,2.805961436047877e9,6.4094640026826725e9,3.4099903875231e9,1.874903931162072e9,4.142055152086932e8,1.0130263079124991e9,5.392403585089391e9,4.722654941995651e9,2.9819050972921324e9,9.20678404390407e9,5.012562337183586e9,5.821087560929453e9,5.666405180795804e9,8.75290181315268e9,4.403182332487259e9,4.786634297218191e9,4.902947949516129e9,1.6801258675123653e9,9.985375091973927e9,4.894639034663928e9,7.187420234920127e9,1.3566212122730691e9,9.765439699154699e8,4.5022592832678175e9,6.367443066223646e9,2.9880680608383512e9,4.546130936580361e9,3.680024040617359e9,8.882015489380985e9,2.990397539520777e9,4.8492113619144183e8,5.770412705248973e8,3.5476556185813055e9,5.4818413553124075e9,5.036490528162554e9,2.6599727212271175e9,3.9736415018169236e9,6.526630124297416e9,3.007347734478308e9,8.264128089251414e9,3.5322214558562226e9,8.950861405975294e9,7.148975340134895e9,4.66914943962429e9,1.8292072726288066e9,5.807999955557623e9,1.4312946380659552e9,2.0958367513293874e9,6.851460845734661e9,8.76635064063621e9,9.464399269710457e9,3.1242880605304146e9,6.894737031313492e8,2.491000139289681e9,2.947830429887521e8,7.065386830346727e9,4.356426643021345e9,1.3409751146302319e9,4.2306610733133807e9,9.897381334439165e9,6.05559980742785e9,3.0292732900114074e9,8.800623035070598e8,5.099270523054174e9,9.280513999778181e9,9.211826494652925e9,7.263004873217877e9,8.551111926463733e9,9.994608659502836e9,9.583693593042776e9,7.279376255296026e9,1.8303588367681155e9,8.6032078488746e9,6.300183576446657e9,3.91211385422223e9,9.279378819204268e9,9.154436235192586e8,7.529717476248653e9,9.598271682318892e8,1.3971574709383328e9,9.373868040447948e9,7.624264325018622e9,1.9320174773228593e9,6.179289401143024e9,8.797338595789288e9,9.680400515543978e9,6.574784718494672e9,4.725298880489429e9,7.276359307103745e9,7.790903970010514e9,8.392776895134653e9,4.9855768549049835e9,6.868152126616403e9,8.730807900508766e9,1.2866117607025273e8,6.993899845272932e9,9.808201861344975e9,9.846225858555027e9,7.26608236647348e8,1.0723385016577914e9,8.684513629148726e9,6.625206767900184e9,4.609566577866969e9,1.897436521834437e9,9.101472813788534e9,5.719438209485663e9,1.445340756482514e9,7.154213972368669e9,8.06093056877123e8,8.694309215093487e9,3.16100398670588e9,6.090750660659519e9,7.309621940692665e9,9.402182083334064e9,2.166624645245827e9,9.013380387388386e9,2.72948203989788e9,3.0878628434026337e8,3.7324882293314676e9,1.7690211852292826e9,1.6913540910788426e9,4.0706515769692087e9,4.0468231434741063e9,9.9349599295199e9,9.180502826813934e9,7.358453771148949e9,1.5349134566156942e8,4.143639953720172e9,5.032826955314255e9,6.061938091592309e9,7.512460711593511e9,2.6734069734896793e9,6.657533785215356e9,4.461759589620841e9,6.714780798838142e9,2.535573057699361e9,6.732749966545482e9,7.702078491844629e9,1.5000849365605795e9,6.747082429439404e9,3.15191398272445e9,6.068582145286507e9,7.6885018701734085e9,4.783332849457528e9,6.316872969971059e9,5.824105585437856e8,3.351435138369263e9,5.95222371154944e9,5.348950815693965e9,8.294983627115347e9,8.983930678718643e8,4.284878430003074e9,3.6367697080291514e9,3.0139448628087873e9,9.77649253250425e9,8.073287297831299e8,5.941821048008778e9,3.7017274552165633e8,7.065338194458862e9,4.497144511431089e9,1.559532686564441e9,4.9947461276792755e9,2.9672920394491153e9,1.945823690474261e9,5.60532999825639e9,2.8348906358540595e8,2.533043732297864e9,3.326746693617112e9,7.137227319646294e9,8.39606206491868e9,2.420227049455714e9,9.10313559160837e9,8.144812540742797e9,8.099351782567569e9,6.496751015554965e9,1.3462420173052049e9,5.230618646399736e9,3.8384315966522032e6,5.42724092605849e9,2.0548453591990633e9,3.5645297984807677e9,3.9529563366796083e9,5.474674208556297e9,8.047290700933505e9,1.2170956788748465e7,4.575779089160147e9,1.7483516161649227e8,7.071533008517369e9,7.824952310016796e9,2.3997417501735554e9,4.425753208142796e9,8.114119932526906e9,1.2231549476326332e9,3.7541778911948097e8,2.950998558976842e9,9.676250089012522e9,7.834767398229144e9,4.339931278345061e9,4.2489497253606844e8,9.27335247946441e9,7.580599419226895e9,2.2879063496146145e9,9.792145784042759e9,2.210604726874885e9,2.6902889333157377e9,7.99230491139702e8,2.1328236594961636e9,3.226729159095122e9,1.4868835180000162e9,7.59524128132617e8,5.082821823047017e9,9.35287798978797e9,3.7013196709903007e9,1.508996749374658e9,3.949180729712429e9,8.270107560094042e8,8.62035065740685e9,7.127533731987958e9,7.905266677561556e9,3.4226521267987385e9,2.666282247312346e8,7.310775610893489e9,4.545258432549532e9,3.9279539768662053e8,2.233194762796592e9,5.717948859937941e9,8.555592404485482e9,4.863751710078688e9,6.048105026447012e9,9.194139886689056e9,6.96194017464127e9,6.377137824883269e9,8.005617163879425e9,1.3425436010678127e9,7.072307821218865e9,6.196780486881692e8,8.1208167209135275e9,4.814278514611888e9,1.7735879072273486e9,5.2227379791723795e9,8.257546272490391e9,3.6268500169444575e9,9.399437988157145e8,6.759216250953725e9,6.9297753949529505e9,2.859846022975426e9,6.999826466178828e9,7.9117531732305155e9,1.2797150401530288e8,4.926732803239917e9,1.2398331911645243e9,8.011273324816197e9,9.757423771839401e9,2.222858690622951e9,1.8415695555335732e9,4.406466036220521e9,1.8220679892419868e9,4.833120582947829e9,2.97178446753132e9,3.9239249139535217e9,7.665924333650251e9,8.142249083060825e9,3.5745376000199113e9,1.142541187430085e9,5.369076464992804e9,5.4815331770343e9,8.482242893073297e9,1.7118493383133526e9,4.527419109084947e9,7.6399975412033615e9,6.431390984426471e9,8.385534375316335e9,8.8734532866753e9,4.80734452731849e9,2.982557717097848e9,1.7676790936436017e9,9.121462593088877e9,8.224158120425543e9,2.477360770730634e9,4.552015114474945e9,5.698899384167948e9,6.533111948670607e9,1.9912758384727414e9,3.8411498040717417e8,9.105168580897264e9,5.99606576063519e9,9.176333286174988e9,6.164695928438211e9,9.997398311811441e9,5.569934416196708e9,2.3530576948824987e9,7.373223829961642e9,8.651547640032608e9,1.8624017804883885e9,9.730312270520521e9,3.165465083170487e9,1.8946779532130864e9,3.8266341172252307e9,8.133750492209772e9,4.777636151616194e9,6.9971255476773815e9,1.3661417911756258e9,8.061943691373437e9,9.36347522523856e9,9.053761931835201e9,9.094343422587027e9,6.802896228693916e9,1.21667642917195e9,3.5606191749217286e9,8.335825116687305e9,2.9402571735219054e9,3.740857667318357e9,1.3132194378760097e9,6.968177237724146e9,1.479603285387825e9,2.6614214496810207e9,2.5603926517673326e9,1.4887700807700565e9,8.62226171871967e9,9.801017259684248e9,9.635854470242567e9,3.2388158201760974e9,9.085466260989908e9,4.782810305259411e8,7.056346793547529e9,6.440332188461997e9,9.297597503737354e9,9.166005266327528e9,7.698310146712845e9,1.9970888848346412e9,6.185202229693155e9,1.2004796167971232e9,6.685138456951474e9,7.517333571829904e9,2.962486664031342e9,6.514678552539847e9,7.519763785721301e9,8.362887153332827e9,7.215905303547832e8,2.8153792610663333e9,5.704730453626782e9,3.5962405498542714e9,9.237332666442726e9,7.310739189101366e9,3.475457774797974e9,4.4256552278172e9,7.271408921977742e9,6.870673134335195e9,8.590402698087954e9,9.152525992717163e9,9.596937612506779e9,4.567111835737963e9,2.9612901010228677e9,4.1542093519507093e9,3.067405130925912e9,7.6812901439877825e9,2.6307923775456166e9,7.312530856943165e9,9.01747514272817e9,7.181086967962179e9,3.678627809053192e9,2.3089084180548315e9,9.512380788920603e9,2.21322630189683e9,6.838144425394628e9,5.443243966476519e8,8.575173772235515e9,6.198284607524646e9,3.837191736195666e8,3.1313576659036145e9,7.981313743396189e9,4.672508957417952e9,4.432187411082478e9,6.09088815748032e9,5.0831386687733e9,7.763209851920411e9,2.1153954960399556e9,2.6766687313778005e9,7.908351798078413e9,9.814435677919733e9,6.845985620435535e9,9.011234787833996e9,8.562276808799865e9,8.326913126671239e9,3.662337996058397e9,5.040756236600772e9,9.422531455944775e9,5.033180570561583e9,3.9331230716168785e9,6.157431521212304e9,8.2019829697690525e9,2.7159564061932416e9,7.053441738281875e9,3.014736827801184e9,1.6948433180299282e9,6.500761953631221e9,3.995053379228426e9,3.491571183763087e7,6.086502938058896e9,3.286836925454011e9,8.43832494294908e9,1.2636740015883186e9,2.408756181000693e8,6.691068410708897e9,5.835461123971908e9,7.487579025957693e9,8.190261012110353e9,4.693481762621786e9,1.343144782864737e9,8.548238711251759e9,7.3268010806112175e9,9.88529785259683e8,4.586645145646584e9,4.504931735611816e9,2.3859546322376356e9,5.462918798645553e9,5.081240221314018e9,7.361155073590293e9,7.548472747539464e9,5.3118340017710495e9,3.943940768247092e9,5.630958871495333e9,4.674398714678235e9,5.570240336468802e9,6.311650925684875e9,2.176799145255788e9,1.0519934711101075e9,1.9338116140487106e9,3.4034458163052783e9,9.253828987769086e8,2.9830697130684624e9,9.097729293054979e8,2.635005498754225e9,4.450332303153622e9,9.781103844341221e8,6.837119892064707e9,4.604015122002303e9,4.2926560517815846e8,1.6270787743010573e9,5.246476863994953e8,9.483257737554895e9,7.378296861589947e9,4.2554190844875293e9,4.336199941246907e9,1.8085442796683028e9,7.751057259469618e9,8.474828833863598e9,5.118441200118033e9,3.0198592125134773e9,2.260505531083801e9,7.196778029972619e9,3.294317105608795e9,2.685153409529787e9,2.3778908837151246e9,7.249219639968629e9,7.106978219127044e9,1.0550489909804072e9,4.389525287370496e9,3.9552825812502546e9,6.981280008968539e9,1.3025853535697253e9,6.810832311783999e8,2.0462292866970766e9,7.534095716488832e9,7.98476725795718e9,6.235423513296099e9,4.0384894237092605e9,7.962835782266719e8,4.790172168732618e9,7.675457895365455e9,7.182266928062653e9,5.892297839911271e9,9.282075722499505e7,5.609710310312012e9,5.239793715161532e9,5.501740560756774e9,1.5880085159719603e9,1.8265638273425033e9,2.2729998388084927e9,6.190410009961746e9,6.371057066517469e9,5.747560350267583e9,5.6019568625558405e9,4.352127031325105e9,1.0482331991933347e9,1.4282264707553248e9,2.698268685013343e9,7.775410498167348e9,5.0499195306952715e9,3.928801639222994e9,6.489664743137324e8,1.4602293363684604e9,7.514194164331078e9,1.782575590846165e9,6.242458809893749e9,9.309700941781101e9,3.0601127133451223e9,9.396756392543318e9,4.895573619959391e9,9.53027618670394e9,8.848333679281448e9,7.459351004331077e9,7.608363852172222e9,3.807166696560569e9,2.812693662098802e9,3.4529858821051517e9,3.165196402418439e9,7.717545466169261e9,3.1156641595348487e9,6.490448862299461e9,2.644336642738354e9,2.933701131619153e9,4.528727862219862e9,1.2002052968272858e9,5.881292680417882e8,2.2522979354382367e9,5.051764173123763e9,7.607401208600897e9,3.536561653531579e9,5.107560841105892e9,9.414597659211695e9,8.037736896993482e9,4.030124522806541e9,8.484627958698006e9,6.760359383031679e9,9.905964575901937e9,3.546694938415973e8,5.563624434799392e9,6.430308884475445e9,7.479655127851892e8,9.56378594924665e9,4.875638985710804e9,3.024465639010276e8,9.835271578219751e9,4.986213477037133e9,4.0635899061774626e9,1.3151752123853345e9,7.678610467217221e9,9.152675051777802e9,1.4906019377143598e9,6.60788145530662e9,5.170587914718584e9,5.495546340757884e7,3.6240802020568852e9,1.3771559141107593e9,3.0911082725893545e9,8.899213363424988e9,3.6173541322096014e9,7.519472942300038e9,5.180835469738248e9,1.6811455346237535e9,5.871027060155893e9,2.34439570404021e9,3.816660874693952e9,7.315984788964114e7,3.835522298008659e9,7.62732535490298e8,8.377164438509249e9,6.8102488528807955e9,9.52301957467804e9,8.3489044516835575e9,1.6961956761191833e9,5.669170087080813e9,9.835983719378689e9,7.639965321213554e9,5.470536226631094e9,5.925145756841643e9,7.035265501753614e9,1.2636501543899958e9,8.75046898299074e9,3.418171029679109e9,4.283661553039695e9,8.078135592323435e9,4.83590097908977e9,5.856380121603655e9,1.0007248039466865e9,5.291638558079016e9,4.899300416024841e9,5.89058648625694e9,5.119770024258852e8,7.837181405184003e9,3.956795438786195e9,1.6771671274965293e9,3.106507979280082e8,9.582245196466822e9,5.604269662764816e8,1.9892354645780873e8,9.757076134176582e9,2.199297631340813e8,9.73006465699012e9,6.814311179224886e9,9.439680278261116e9,7.994856001789875e9,4.749910015378371e9,8.095289491852719e9,9.41121056128175e9,4.1612726200233674e9,5.855279020648063e8,7.446275972573837e9,2.021521421241238e9,4.449851662260123e9,6.149890525844426e9,2.1819222379321723e9,5.060914556126347e9,6.6598846858593855e9,1.1506446667493086e9,5.939643375765402e8,7.335313589252848e9,8.138312730696474e9,8.047287383722747e9,6.181438145871415e9,6.736143861977328e8,5.494148602061263e9,2.9676652475122833e9,9.388773640374569e9,7.505818228524246e9,9.74976493528943e9,5.667235496520093e9,9.383210850039097e9,3.896061391161608e9,4.923242524918144e9,4.1555078716318994e9,4.2356198179079776e9,1.3093308464024634e9,3.7189984281481323e9,6.323738110695036e9,2.172430254178762e9,3.2649961740765433e9,7.107956112891672e9,4.257153182111476e9,5.098907762595687e9,2.420423010284638e9,4.658380564334563e9,5.32718377541638e9,2.060391435156058e9,3.463826005841864e8,3.6884816777432303e9,4.075074757650836e9,2.568041606528546e9,9.124181745545768e8,6.338068947366114e9,4.68571677543045e9,4.713260922075916e9,2.86967366607778e9,6.444136305915162e9,9.590435834143112e9,9.968526373468376e9,1.9204854015505978e8,2.822794744376744e8,1.6026264493819075e9,5.427416471397822e9,1.688053324251122e9,4.776999989162742e9,9.349582255635124e9,8.403341315005801e9,7.771839690738533e9,8.915463499465338e9,7.806218206732708e9,5.874881065438634e9,8.9873323333217e9,5.754815949386094e8,2.682076671463917e9,7.870188698885084e9,3.7178201416650205e9,2.91336896314075e8,7.838443505047998e8,7.777281968552209e9,9.518919720937925e9,1.8047174373589346e9,4.418389862937382e9,3.2964181447349873e9,8.96999822379555e9,6.126717578618247e9,3.6971969203227196e9,5.454518254322311e9,7.130365293890115e9,2.0204406650751073e9,5.19677821545552e9,4.300624905452577e8,9.151600320082085e9,5.105539280599786e9,4.834421139660364e9,7.887374824238541e9,6.233168209750672e9,9.257660352206732e9,6.789120706967402e9,7.900796838968027e9,1.518615606758743e9,4.444105701050899e9,5.30769268286367e9,6.054517388945221e9,8.814227015434988e9,8.181424608152239e9,2.7418852700179605e9,1.8742457537641366e9,9.385578504031633e9,8.602160144544016e9,9.509297470312626e9,1.2015869381331034e9,3.0133659806180124e9,7.155955095212278e9,1.2565908238435242e9,9.825285631357857e9,2.5063109504725657e9,6.711975583954262e9,5.92925423449161e8,1.5018553694366e9,1.5991553599774888e8,1.0336323172669148e9,2.124436087286442e9,3.239148691471597e9,2.655958121828259e9,8.76586372616641e9,1.1387960615587378e9,9.244554113333334e9,7.261495598737003e9,4.865040481547178e8,1.2600522944299564e9,5.434098950082212e9,1.0101400617045675e8,8.024901813538743e9,4.578729241687381e9,1.700544312146297e9,9.08821262883688e9,6.389090724483459e8,4.642435470048417e9,5.175520021717885e9,9.820213868583231e9,9.057366044357916e9,8.371989493938711e9,2.2273685188130765e9,1.8676633373787498e9,2.1466815916975002e9,5.727621589586059e9,1.5870606645961595e9,4.244164490185789e9,5.790067925469755e9,4.9610675003063135e9,3.8728117952520757e9,6.6099957670954275e9,5.968665324464806e8,5.347172192352011e9,1.1417027912990997e9,7.278655599618834e9,7.472074633043604e9,7.650199886652726e9,1.5009861896433785e9,7.39603298342082e9,8.831867258191357e9,7.382904269233609e9,6.442099419590339e9,6.122751009347793e8,6.267324122504779e9,8.552102529379901e9,9.533869276932117e9,4.263579795601735e9,9.354164657525845e9,8.521536689647342e9,2.6330067039148707e9,3.3876119440025954e9,6.99046018852411e9,7.144438092992501e9,5.651196159714979e9,2.486806672848122e9,4.754464561451159e9,6.627665751000878e8,7.615151707832546e9,6.792776805076776e9,8.875328704388523e9,7.624926136088825e9,4.1648474627168064e9,6.81201736738805e9,6.171375911226937e9,5.482344547488017e9,8.475697324887205e9,4.3770745795299015e9,2.7335165018532968e9,3.702297234031028e9,3.2868232541673794e9,3.146884733028613e9,6.775237150316612e9,8.103618708955763e9,5.76278115973808e9,9.494172000927347e9,7.875704561293813e9,7.791440920683364e9,2.691449657823448e9,5.409429267740394e9,3.9198310644957457e9,7.024532161829409e9,6.33399942081304e9,7.744288490695145e9,8.832301027556759e9,2.3686483473067575e9,8.683173470724401e9,7.882082303340881e9,9.728037243085987e9,4.354620638077021e9,1.0916638991702821e9,1.771553725988191e9,7.028043137627863e9,2.622948012740237e9,1.0484791906293612e9,3.452375538985737e9,3.79681795063308e9,5.173386442573367e9,9.83368726540851e9,2.389471986859044e9,3.883331490625742e9,2.160056170372018e9,2.013375151428327e9,4.0299283920119176e9,5.08369661974718e9,2.1064757865615413e9,7.5319200828873205e9,1.4952376261272438e7,3.0372871859716046e8,3.376590522267472e9,2.8296822687058177e9,6.807499487384672e9,7.94050421334103e9,8.79924576269363e8,1.9974263321637032e9,6.805917380768012e8,9.479215730983515e8,9.42638014734466e9,3.9247828705833154e9,2.537168218574596e9,1.5815176145086095e9,5.965008313251698e9,1.9341567776924784e9,3.350608217693367e9,4.3065005264459664e8,7.300210004808715e9,6.837172051513769e9,5.4819105246575575e9,6.114117267597613e9,3.739148679361202e9,1.7775337525358825e9,5.7319830810012455e9,7.531474591766252e9,1.87398052372605e9,4.0906477269865084e9,4.335385636936856e9,3.0020834655597363e9,1.0106805629159788e9,6.058553560015374e9,5.496817865598364e9,3.345309689494517e9,3.7506977055181446e9,4.693285577432474e9,2.9640239478561006e9,4.760283689197695e9,3.001942728471456e9,4.681907929867858e9,3.904939593077219e9,7.341733166612147e9,9.91040224726149e9,4.371896726842441e9,8.012071424691622e9,1.8373135891603632e9,7.566080809526592e9,3.307369505880051e9,9.991920245026447e9,2.9070728183530483e9,6.888727828450665e9,3.8989329159646525e9,6.426890428363558e9,5.388963112551251e9,5.7594272969975605e9,3.308129001826351e9,7.245491608013455e8,5.577845450659002e8,2.8705838735320444e9,8.31315237917103e9,5.388244280108745e9,7.755599181415139e9,5.421886907608602e9,7.760394039430227e9,7.051128666278782e9,7.556584056808435e9,4.038011494186796e9,8.268426243902844e9,9.836073836217236e9,7.146582748329698e9,2.0178801330002637e9,7.42429783350066e9,3.1159822104701276e9,5.590547024688818e8,8.456024186460561e9,8.887031654237415e9,2.9509646721478553e9,6.506784042762895e9,5.0643481632267685e9,2.229145687837438e9,4.027109480240186e9,8.82561342987472e9,1.3462432408751879e9,8.976661915790829e9,5.281525534349962e9,2.2210878363219443e8,1.2805965589864554e9,9.73392897813733e8,3.4123139264039483e9,2.930295089031664e9,2.1007226975682359e9,5.763442980477806e8,7.331970236260601e9,8.481187374963222e9,2.570400254831069e9,6.917903898628129e9,4.1102302690508785e9,9.81168144099061e9,4.864043670236069e9,1.0184078516433414e9,2.954801841613698e9,4.0927711325855207e9,5.209724796224317e9,6.861934255499878e9,7.68773366337221e9,2.628401161625946e9,7.770200941131056e9,7.371219565227651e9,3.5246294923478684e9,3.5806115252844796e9,6.206261425223311e9,8.576255498519745e9,2.6253556102001553e9,9.883284514727371e9,6.50351464648129e8,8.730420432689287e9,9.833336177833864e9,1.685812794259639e9,1.9149938727373362e9,3.474664385269306e9,3.8977661665598583e9,4.357137993593624e9,2.3566301903279605e9,3.855703517094253e9,1.5345412723600938e9,3.1942983304368176e9,4.399091783840582e9,2.3624635261781125e9,4.555280868067867e9,7.243106104486425e9,6.69262351620903e9,2.4302055609701214e9,7.640328781883869e9,1.790719308683908e7,1.145332861711922e9,9.709877924666605e9,7.875956541839686e9,7.161388784152281e9,2.7217631730646152e9,3.580056501022814e9,8.93320986001076e9,4.279808689299799e9,6.802862943847192e9,8.308849039795444e9,3.8735251451101336e9,2.9513633912126904e9,4.22207470670535e9,1.6384403630520318e9,3.8394145888226027e9,7.245266183669008e9,2.3155649952978697e8,5.699653797528716e9,1.7923402006521215e9,9.78721092425953e9,2.6311392809430833e9,1.5080302276195278e9,3.8499438892880077e9,4.1789355172914653e9,4.598434467761182e9,7.245170972035055e9,6.7275487590012e9,7.418791927510852e9,2.1405591635579958e9,6.847828595912699e9,8.18688832387688e9,6.234087338799641e9,2.817661810253876e9,5.746393972776299e9,6.685212464676859e9,8.41368473377619e9,8.571272678391278e9,4.314155702474478e9,1.877116014468444e9,4.24879938553973e9,2.514389275244655e9,4.717790619124738e9,6.009424307662889e9,5.217249304445579e9,2.2626840947805104e9,7.981452009305132e9,5.027559203391083e9,4.662479335995331e9,1.7992437813821716e9,3.291793196586148e9,2.8416960030912642e9,2.702513496310741e9,9.658858998014938e9,2.9015546709698358e9,8.222642794436158e9,3.96018811817378e8,8.011363601673968e9,9.036855392107664e9,5.538000133402869e9,6.43583028337096e9,6.748632003065232e9,9.499989535678787e9,2.820882297836129e9,4.178484595775878e8,1.953094029775303e9,3.0562421780631e9,6.3511148198450575e9,1.366752830318727e9,4.672507349112065e9,9.257724057492504e9,5.985840096918292e9,3.495879195321805e9,7.401585461104634e9,6.554579885196856e9,1.5335235122505996e9,8.526870718660018e8,3.6771364962365837e9,3.7986405139495206e9,7.8982004393046255e9,5.90092119835568e9,2.5761572004773426e9,5.123209559211781e9,7.3290414329980545e9,4.45861554725197e9,8.717374514994823e9,7.687265319515235e9,3.0707130340006495e8,2.0501421938703225e9,4.246852065984423e9,2.359478142855398e8,6.440413062705278e9,5.323125424046172e9,1.4455336679176846e9,1.6088925924455655e9,3.394936170211591e9,2.8372179169472423e9,5.948321587055512e9,9.739079861247293e9,6.700855148823362e9,7.942385573303052e9,4.582638338007599e9,1.9774013152464855e8,7.176797461341116e9,5.530576050133096e8,3.717134151036695e9,2.4521361667137976e9,7.8262623463963785e9,3.717069682525451e9,4.308969359841593e9,4.970963428329962e9,9.811175829382046e8,1.832849880769124e9,6.234715525353334e9,3.3839050427954497e9,9.615487884178919e9,1.9624973003067214e9,7.531455325410027e9,8.600204824992025e9,8.98804636451152e9,5.7748140015647135e9,1.9846493366979156e9,6.922891495850675e9,1.4016076873384843e9,4.1271527081839685e9,5.063515970939529e9,6.266132085465408e9,1.3360494899008258e8,2.5811969093385334e9,4.946555995794732e9,2.4317849775642266e9,9.887208785274569e9,1.7497118939483469e9,5.198796912465498e9,6.054147966390011e9,1.9575020713696656e8,7.937950878543275e9,3.602291341348435e9,6.831276479127023e9,1.484324166840031e9,8.926445741122113e8,7.644748118238442e8,6.718772177832534e9,2.0552372682113762e9,8.599826972531305e9,7.645146601347226e9,1.642300542751971e9,3.7565014733691893e9,3.1441431088409243e9,7.123088472036968e9,6.8955391246696005e9,1.9803297450308254e9,1.158928960354111e9,1.2715616661859264e9,4.438953566507472e9,1.3088431396304524e9,4.039540832971702e9,9.127970532155378e9,4.258050539196252e9,2.2456641436218495e9,1.7207739977131608e9,3.457152295602538e9,4.520936790311847e8,6.788778974512913e9,4.179100103380503e9,6.541409982530159e9,1.9599090477372472e9,4.390145155137757e9,1.8254501680194423e9,8.756470747738113e9,9.966271366614653e9,8.942415086471634e8,2.648479348615663e9,1.7001799190791512e9,4.938738600709408e9,8.000450793111839e9,1.078493070909653e9,2.095833575933549e9,4.837467985627686e8,5.0181405874549335e8,7.236284769833934e9,6.980653951471106e8,8.230700525601112e9,6.528831768009951e9,7.321839112111408e9,2.7573284948690124e9,7.991707040545343e9,9.644427087998526e9,3.743134845129266e9,5.580083465491788e9,6.547735085824127e9,7.917550071628121e9,5.873910971210367e9,6.032769558258828e9,1.9630676980767593e8,7.108559703025735e9,5.171270277420261e9,4.04571694441769e9,4.4403663862790575e9,8.268100499269116e8,7.172171493573164e9,6.903336134627542e9,8.395895806091006e9,9.932930413677956e9,7.444404188111507e9,7.733181265550082e9,9.257261639149529e9,1.2411070153252046e8,5.434610583743141e9,2.0983470929305792e9,3.4138280841291113e9,6.414165354045155e9,1.0534520166818329e9,3.114174808890865e9,4.623109149619396e9,9.695053596799568e9,8.562795005562613e9,6.149841609083812e9,1.4621943988254704e9,9.433162200418509e9,1.9100412966906278e9,4.0118466901496286e9,9.826203943804886e9,3.475752426245906e9,8.04304963417962e9,1.0915848602849786e9,5.041597130974655e9,9.83017078592253e9,6.918393791763225e9,3.312931492629032e9,3.008537768693664e9,6.4787436446530625e7,7.869523874081943e9,9.626971729070461e9,7.500137280076848e9,4.955813717077276e9,6.765910428497171e9,6.7426153780078535e9,8.729511826299217e9,2.6354757598895197e9,7.759475205208201e9,4.719460281652576e9,7.187581550923178e9,5.923979641465876e9,1.3630833914994478e9,2.960897653276993e9,4.402242869739634e9,6.125123126865907e9,4.5195735627227676e8,1.5503179173054693e9,9.47855441253894e9,6.086124219629123e9,4.530438965233167e9,8.77286009332584e8,9.381794340025099e9,4.609213799041553e9,1.5854825112812188e9,6.712397061819741e9,8.610059981715002e9,1.2394885233973695e8,2.620038524910406e9,9.175038390632881e9,4.0168929354078007e8,1.3226922108325545e8,1.6413415707643898e9,3.632588747503057e9,4.1164209660389285e9,3.2663300550928054e9,1.771753541333053e9,6.759323444744592e8,7.009818540404157e9,8.311796847466115e9,6.795587790766021e9,2.0914808693114994e9,8.170485709225968e9,6.659400225112922e9,5.84191415438684e7,2.5543799063554752e8,5.876470936208667e8,5.881549321467434e9,4.553486041600732e9,4.1728995878938537e9,3.1429802463251266e9,7.311007614035358e9,4.396178506424383e9,8.476306301149675e9,3.2969471788503857e9,3.55714277807789e9,2.340152758258578e9,7.881178855849553e9,1.668830054375824e9,5.703298209805644e9,1.7846415892637413e9,8.365165339790266e9,1.6131760868394573e9,1.4142824408546605e9,1.1153509133986473e9,5.247539406151464e9,2.7739865780680075e9,2.3927921206930246e9,8.057732435185991e9,5.053730348902801e9,7.103602958781097e9,9.670357590748446e8,3.507206066341624e9,5.601324586334531e9,2.6948132553337255e9,7.222695538374807e9,2.833527891897671e9,8.193141030040785e9,9.998444167645546e9,5.015517969548417e9,9.132485497355742e9,1.4922560640792248e9,2.975159923135262e8,9.00944632789159e9,5.701790379737351e9,9.733019584332941e9,7.742624586167334e8,6.392950332127969e9,7.849250591006725e9,8.1350766147125e9,8.80935036788204e9,2.371080218795378e9,4.1131023425477285e9,9.816089864358027e9,9.387038078984491e9,3.3256743684722114e9,2.513170049690698e9,9.195916082729994e8,4.831171236592664e9,4.795438401520041e9,9.251424576848639e9,6.714989060642651e8,5.487374064717344e9,7.46802340462816e9,5.660986418597107e9,8.548214376687199e9,8.921850912098633e9,5.502980084351116e8,5.123067088939392e9,8.185080896082501e9,3.607821055462369e9,5.862068387855647e9,3.4011306038980284e9,6.164721477431602e9,3.3737739787272944e9,7.4409217431446495e9,5.058804188239948e9,3.626584086754394e9,3.320655088901231e9,6.267320642992672e9,3.495462344941552e9,5.710529271826042e9,3.002691740473795e8,1.5030857774867356e9,5.5887102018913e9,7.165865592489236e9,1.7802143613920152e9,8.636388743063986e9,8.676548712081964e9,5.502263584182892e9,9.465509498662062e9,9.10344954336494e9,8.484372843443415e9,7.02383815562731e9,5.029345975907593e9,2.464593569383282e9,8.113882818651139e9,4.265986822134087e9,6.513333345961717e9,5.413106136553344e9,4.4886585086506224e8,2.548032217900162e9,9.958920457405346e9,2.400972042507971e9,6.872191862689994e9,2.8279768810383797e9,5.99557738061158e9,5.404247031250871e9,7.983465007927622e9,2.8512551344411774e9,8.026594035975048e9,3.7970145759108253e9,4.513727812167972e9,7.918098680888718e8,5.191146158297029e9,6.8913971518478e9,6.943766557259412e8,5.332178827354361e9,7.050738167637655e9,7.850418805238724e9,5.134849183672554e9,5.13693304739235e9,2.6152601545202627e9,6.141495625368532e8,8.280117384140729e9,6.3427399060365095e9,4.994151517192691e8,7.656687880366049e9,7.972825632590968e9,6.0101374935183115e9,2.6362160092719455e9,2.400166104441538e9,5.866600344802541e9,7.727299315931159e9,6.172672316077233e9,8.320984298754515e9,2.032604901269297e8,6.051921307608354e8,6.896925518102127e9,4.6191864205712805e9,3.4080203200858192e9,3.943127946599635e9,8.477664301222441e9,1.546397237535524e8,3.7150925107736287e9,1.8059564892267232e9,8.692739640910824e9,2.3460771547168922e9,9.365093699333137e7,9.12400808444761e9,3.407635771027849e9,3.624457076021481e8,9.44373620641033e9,4.641810062712662e9,8.070625025785868e9,4.137476049253352e8,8.457563499658427e7,3.0207783366943107e9,4.187658224518931e9,7.556633352839222e9,7.925220546715983e8,9.209834615957487e9,9.801062216423391e9,7.322572357393916e9,8.7108301122509e8,7.093327908279204e9,2.3294847196065016e9,9.0551426837364e9,3.5267289565271587e9,2.8677066411670893e8,4.823108990647842e9,6.588242373545819e9,7.72783651169882e9,2.0573450506133773e9,1.9281858836755905e9,6.220036749278072e9,7.9119459312049055e9,3.1163464877485614e9,3.752893668922308e9,3.6537604313813086e9,6.068098597007115e9,4.832565365518534e9,7.858706344397375e9,8.785569543416e9,3.1930599152813663e9,1.7239521550460835e9,3.4252967744073834e9,3.5757263060178456e9,5.318725715851819e9,1.4187006663473055e9,9.845884310925669e9,6.959473355404452e9,6.324274645745475e9,1.3873235209118252e9,6.62893340742381e8,7.379710646848398e9,5.564913279740023e9,8.324114180462385e9,6.250132284660651e9,2.7308921116883287e9,3.682400262036717e9,1.86231437205166e9,7.349638796831735e9,1.1877174512051215e9,9.860738927081205e9,8.83665030972254e9,6.463582186605843e9,1.1897091006040938e9,8.818633096158403e9,8.875598478294886e9,9.388277388736334e9,9.895279958489275e9,3.050025348388502e9,9.954509955114296e9,3.2056425082721663e9,2.8681520143411756e9,2.372270981736749e9,7.979369894452803e9,4.4343593103657e9,3.7228300470096865e9,4.866027494391804e9,8.853567906079435e9,2.7678712333979406e9,4.73920598372058e9,8.260461549830325e9,6.803049065807285e9,3.5426778070479894e8,6.730653357229986e9,9.239994843781975e9,2.5505971772130065e9,4.487762304794652e9,6.487729306815293e9,4.715187044080113e9,4.7300473620940895e9,1.536003608698685e9,5.925199346814167e9,3.23155523013261e9,2.4092354941628356e9,3.1690017612986054e9,3.0605004146063708e7,5.779451758893222e9,3.5051324519055014e9,7.381448677351428e9,7.813609680894547e9,1.810009938617807e9,6.698278412555921e9,2.5567987507877674e9,6.6788375489777e8,6.849171411048423e9,4.590047350456542e9,1.7795692166951215e9,8.618138974171307e9,2.444589793130757e9,6.061131194895153e7,7.923481927681876e9,6.93522317186397e8,5.593338316007233e9,8.733140845722797e9,2.9046556799736066e9,8.216514919390549e9,8.247823060567688e9,1.2212309393866694e9,2.219324652306265e8,4.426729636748959e9,5.124604947733302e8,1.792411065534193e9,2.853647399358261e8,6.866504922585072e9,9.406693715499289e9,8.770492677315374e9,5.853521533844556e9,4.606097010230233e9,4.106516442985714e9,2.141829276631101e9,3.0934969978803515e9,4.60840964104802e9,5.094160660206353e9,8.528555433288393e9,8.149820292202594e9,7.967220710957124e6,8.056185294158144e9,3.187158998189452e9,2.342011699695714e9,9.155196966916798e9,7.643579137849518e9,4.0089771940165033e9,9.654564022760692e8,3.2580017709544287e9,7.59341944183438e9,1.269787262528078e9,5.276339697258605e9,9.613999895855846e9,9.232503030446674e9,6.888442130339612e8,7.132689792389988e9,5.643799842035779e8,1.3599137727523992e9,9.76907357080161e9,8.81850087080952e9,8.618665686208513e9,6.342107459066404e9,6.96428688363977e9,1.0851762521840758e9,3.044572922408102e9,3.5118605192867026e9,7.814911932997692e9,4.85363528731163e9,1.8681401905035167e9,9.400478095434933e9,1.4733406927791915e9,3.599091442127681e9,6.107538659479761e9,1.2952729704798317e9,1.9408681806649563e9,6.584923110738109e9,2.1109777158517818e9,1.0945437593286977e9,3.847188620563363e9,1.2891866892713578e9,8.550747107640283e9,5.114218792338017e9,3.84250595599828e9,2.0368741942957747e9,3.0239126140303917e9,4.9774497752639316e7,6.4630524718985405e9,8.2016605400112505e9,9.103682033291044e9,4.972388345054791e9,8.36001813418224e9,2.219465005044907e8,4.843755137277185e9,3.1019502158750267e9,8.565565411338212e9,5.530646560030185e9,7.075618954743832e9,7.933552143986924e9,9.635789916017597e9,8.098075705505633e9,3.3531336341906557e9,4.375695924365051e9,3.5972970718074217e9,2.0851176066738753e9,9.265356275385542e9,6.386037235815997e9,9.7914721148083e9,8.172420596930651e9,3.9881920212893596e9,5.012044426598442e9,9.16863206513628e9,1.817071177680677e9,2.43847810865381e9,1.013438197012243e9,7.390223303379921e9,4.9022836627708787e8,1.2103135751961713e9,2.9501344964207754e9,3.098905112516728e9,1.051318001564513e9,1.3196103746857612e9,3.244662044611163e9,4.838465389727414e9,8.830274690593353e9,6.777419252336326e8,7.976863938890487e9,6.846953271683916e9,1.8244148608070776e8,4.780350659881244e9,9.665018696733171e9,4.2095049776012297e9,7.254629660889034e8,2.367509089875963e9,5.154860669348385e9,5.628715564694238e9,3.2670853769507736e8,8.938287346371014e9,2.543746612239467e9,5.517415096661492e9,3.784837261520255e9,4.397697373756666e9,4.563196072510124e9,3.050315435482077e9,9.53076026168827e9,8.723346135984447e9,9.371495090230999e9,5.807190983573742e9,2.6096540012005663e9,3.3477005621506464e8,8.106196721379818e9,5.367966487381772e9,9.666015201246258e8,2.168619149032017e9,3.362289828973695e9,8.567765207760206e9,2.0292577778372812e9,7.752768880052026e9,5.9415013272841044e7,1.323076015428124e9,9.082533312630247e9,7.513409829418723e9,5.16051440611083e9,6.643176189919349e9,9.662507188422554e9,2.0021302364519322e9,9.277836481061647e9,9.6070708798605e9,4.1304836439387095e8,3.580695346121202e9,8.703140465626524e9,9.729478126722e9,4.1282954420474296e9,1.5645930394948683e9,1.4786926120209975e9,7.7921092206151495e9,2.200267898045265e9,1.9152253145946596e9,9.164087769409428e9,3.851551311546316e9,5.682958775364281e9,1.484135793349004e9,5.3464318407809854e8,2.9629966689174757e9,5.021047553224967e7,8.410032650110021e9,1.5834790956633294e9,8.897153264096321e9,6.299364750697997e9,1.8184022726155823e8,2.1285632039352098e9,5.978281531478129e9,2.9241005247105556e9,9.992108264354294e9,7.637284824218047e9,7.67904317980602e9,3.907848625624928e9,3.59135779584389e9,7.444883458374584e9,4.008822859500596e9,2.4098009328433514e9,7.7082423123085985e9,4.287291258087116e9,9.81861566185102e9,7.698373040505346e9,3.7279478717110605e9,9.747294369014013e9,6.462445900575101e9,5.997010356264304e9,7.271905989478194e9,3.023223177139125e9,2.499750496816191e9,7.389696401251784e9,8.836671176190845e9,7.43081550730048e9,1.8467777821926767e8,9.032775296536921e8,9.30358936735244e9,3.381565699920599e9,8.283678282798576e9,7.4099285133783455e9,5.214395432656489e9,8.736616482169838e9,2.0138162276375403e9,1.5600367957931072e8,8.267670887393862e9,7.981926249078603e9,6.107823393515187e9,5.328616736579868e9,3.3223503288569865e9,1.642398284215586e9,2.370839710896746e9,8.047779693866752e8,5.172877957343413e9,4.0150329842106915e9,7.03191221058555e9,6.224146602135513e9,7.294012269206301e9,1.881584550709795e9,7.675916076457317e9,3.4100549303516626e9,3.148549385239353e9,9.32277734017975e9,7.380522129564541e9,1.3328375060863419e9,2.689503689959353e9,3.926667006035719e9,5.326179525529166e9,9.06041931199598e9,8.227205784953158e9,7.621422755010293e9,5.835826003720819e9,2.4762447811722064e9,4.777666630331594e9,1.542090529774156e9,6.650039048660628e8,2.888448332293564e9,1.9338863896729763e9,3.163282467898396e9,1.2802797731101379e8,3.9864350287650886e9,3.6464088492364364e9,7.112314140434853e9,3.438078818985788e9,8.500364847989918e9,7.527061489293346e9,9.122932142093344e9,2.499500152562508e9,6.503543794142423e9,2.747455354097986e9,8.506055309796273e9,7.197321535742484e7,5.693726756166323e9,5.187095103275565e9,4.661681949438245e9,8.31670982122584e9,6.074405644648392e9,1.921531270744291e9,6.742962366783805e9,6.336742299784569e9,3.1945440086735177e9,1.3936688975564337e9,3.970156013720436e9,3.638660740297174e9,4.495291665537063e9,7.503548249112808e9,5.07299007158127e9,7.199467913027947e7,2.3998984828729362e9,3.873961880736854e7,7.064477612984665e9,1.5283421758590443e9,9.734657877264425e9,8.135753309906356e9,1.0826604137222407e9,8.710987295805227e9,8.49351935373569e8,7.314254755734328e8,8.289521763360184e9,5.805633509263249e9,3.713204506222848e9,3.8764203928288574e9,1.917026972032203e9,2.2111769597407384e9,8.072950584099034e9,3.356791001144315e9,3.004177354827804e9,7.060497372014507e8,9.360300522630893e8,1.97497536714214e9,4.906921251058832e9,8.801462830625824e9,7.600515041939978e9,4.804656330682461e9,9.564662414119015e9,4.825802474090083e9,2.974054321677496e9,1.1547169459315953e9,3.990654429043287e9,3.834916040639613e8,9.909210602573885e9,9.33588932270067e9,2.96146800918309e9,4.892331871380562e9,4.786877756705376e9,7.414821835321397e9,8.365031043941338e9,6.539827939094838e9,3.958690444170857e9,1.7211059100244308e9,1.0981464377553651e9,3.239020890791261e9,4.922830553988093e9,6.032748555577673e9,6.202568092140289e9,1.095426120264331e9,2.0271236999708486e9,1.312698401609852e9,7.21468396408751e9,9.456899020347256e9,6.519241058509269e9,1.8674290205627496e9,7.484018252550701e9,8.4826613898718195e9,2.8099013268498354e9,1.8149075586171236e9,5.4157733215273695e9,4.314517620824028e9,4.602682797478159e9,5.160233718654764e9,2.2498365792288165e9,3.0556793965845764e8,7.83535218182535e8,3.707744154151026e9,8.308349951592366e9,7.2527417768674755e9,5.973800586706667e9,8.469830760902625e9,1.7881144850553832e9,6.693667371072228e9,2.636586831951251e9,5.50525907283825e9,8.668677230828232e9,5.354241667642659e9,6.505107981251329e9,2.9084256115012753e8,9.286595722987175e9,4.914692212309875e9,3.1553165381470428e9,6.047539622275378e9,9.290341408686117e9,5.404632543158575e9,5.74468049354867e9,2.4025821707571526e9,3.867648237939123e9,9.043877983614883e9,7.38158136148017e9,4.646834802297694e9,1.4477189732632012e9,1.9882636972602785e9,3.9502975583172474e9,7.353831033256702e9,1.0508488784525905e9,4.2374024216841545e9,5.595943163405626e9,6.4009621920114e9,6.003480861580401e9,8.700170078139616e9,1.912208056012985e9,2.4542367114259024e9,6.688428628367718e9,1.684223657106232e9,3.3685896213537927e9,9.217052034537941e9,2.0187982771187606e9,1.2853194371075716e9,4.505893627468619e9,2.172469449856529e8,5.282791001816629e9,2.16285384394001e9,4.826907932424246e9,1.625741671282366e8,9.45618188607102e9,4.43593992015031e9,7.111528772757608e9,8.330494797284644e9,2.684937769694444e9,8.264321547720662e9,7.73865659822792e9,8.45246786160723e9,6.143282301455276e9,9.709005526735842e9,9.583912897953337e9,4.241690140828842e9,2.8935088599694705e9,2.9575336579716883e9,8.151848508868518e9,3.4507665502652993e9,7.8351673892178135e9,6.248486958213947e9,1.7807194920296187e9,9.910917088097841e9,6.818849424178962e9,3.2050815726701574e9,2.849542272693121e9,2.1125612238619895e9,6.78445663785248e9,7.854606673675448e9,6.395461025313253e8,9.789309570434444e9,8.108067222549127e9,7.221378677037561e9,8.194284054563902e9,8.709564068636002e9,2.0675349690026834e9,9.918950501395023e9,1.0674506192021571e9,9.552415512843414e9,5.698574280874665e9,3.7307287692756987e9,4.2348780487918324e9,7.34393259166017e9,5.956308065118836e9,1.235631812843696e9,2.106621881100409e9,1.8710787347543921e9,1.8363812188580185e8,3.924495050375688e9,2.3962351636796775e9,1.2716407043379807e9,8.896097892104935e9,4.593475387125764e9,6.755654217113305e9,1.0606800905051982e9,1.6419148686497886e9,2.4824737517304075e8,7.778067344921658e8,8.105236781500898e9,7.854924403430617e9,8.172211098772942e9,4.1996150074851437e9,7.737419695634279e9,7.396694932318481e8,7.85570002116033e9,6.082570802539406e9,4.904572824232513e9,9.497071732237206e9,7.712935296232245e9,9.065570986915665e9,1.5270260141058989e9,1.5861159435402849e9,1.110391058748007e9,7.489035443712355e8,1.3628539933479645e9,4.490343303399263e9,2.280992549276388e9,7.684602111705389e9,8.839152463449373e9,5.954616317485914e9,7.052106578561559e9,7.903918113135466e9,3.482450012396793e9,5.610931896528943e9,9.430109687644006e8,3.7775291900496664e9,8.827249402244686e9,1.8345551374635916e9,9.411577813552488e9,4.730141088677843e9,4.72544583831999e9,3.8010153352063756e9,9.60483080127154e9,4.1441773655873804e9,4.0834155464176016e9,8.22379786141184e9,6.651493522538113e9,9.151799754419947e9,1.0587760673449365e9,8.827933736985527e8,1.3354560981110785e9,6.780488770102789e9,7.74924919266432e8,3.150611122006588e9,3.2312473535438766e9,6.487506693776006e9,6.735311641169365e9,4.874794842040049e9,1.4324240157309465e9,6.9005709733508625e9,8.301456062255491e9,4.888681978424027e9,9.45689962913852e9,4.586359774587088e9,6.754956148342773e8,7.921818381351504e9,6.819413046794109e8,1.2220334555837798e9,6.616484578582107e9,6.867711762111429e9,1.6528586871628404e9,1.272284756465356e9,9.517224738492365e9,7.619834342741057e9,2.8471628262475066e9,7.492120330277781e9,1.344843884518202e9,6.108183943077312e9,4.924768845617625e9,6.931408201346751e9,4.5947271987076645e9,9.622136958684952e9,1.1055820087114975e9,2.4141586879544454e9,9.401802878895205e9,4.853610695806221e8,7.461060966989195e9,7.252896942643118e9,3.548640803355335e9,4.513407159601059e9,3.79607116650858e9,6.255497115680735e9,4.883314570780748e9,7.655956259271524e8,6.646751533640055e9,7.943130843438244e9,1.3991486240097928e9,5.619895687924874e9,1.0169856830706236e9,3.3204722690737433e9,1.9106452762715032e9,9.827574610150585e9,6.64816801102571e9,1.9824260339323564e9,9.342479633912659e8,3.2236242616701684e9,1.591496153057147e9,5.473934170228387e9,1.5633471088329988e9,8.473094393595224e9,4.596169108915636e9,8.330001086368952e9,4.553831432023736e8,4.738677114215234e9,8.112734084831338e9,3.058789559729862e9,2.972447082347308e9,7.320758433420476e9,3.2282881980005517e9,9.970019977105038e9,8.503641254673762e9,3.283567635547341e9,1.1888556770459979e9,1.9663691977894637e8,2.0269752522561247e9,4.493921696542957e9,3.799895429827933e9,7.84438205873853e9,3.941817286209801e9,4.66910206917133e9,6.477612005326355e9,7.523268892000499e9,4.0998852444310894e9,1.9127070834533532e9,8.1231638719894705e9,3.384596460241065e9,6.553894461953559e9,1.6004777257452152e9,5.335999128358673e9,3.398321225975822e9,1.3949523966158118e9,1.5721031871556635e9,9.563166393733631e9,6.705647118567843e9,1.637550387266099e9,8.71191267914293e9,1.6372783423451986e9,7.188236841760425e9,8.1050247056669035e9,4.601042296019778e9,3.6073778313992953e9,9.695955364627872e9,6.490426845629282e7,7.929359431742429e9,5.786404705489884e9,2.0700395041920383e9,2.425337191765965e9,6.615943710049552e9,2.389827539229783e7,9.849427961251366e9,6.360603186229424e9,4.5762498503430605e9,7.027518933845352e9,2.3378512799041452e9,3.322736252713091e9,5.381853469146992e9,5.053988778668487e9,8.0969291384205475e9,4.456614940295255e9,6.849123476217417e9,8.446732418989198e9,6.645128014600277e8,7.455469490959911e9,2.7901479744530165e8,6.217550534920021e9,1.799021189647485e9,5.901429903548333e9,9.586626284994179e9,4.219207611915253e9,1.7348917737152615e9,7.455864472904268e9,9.121672456089886e9,3.491093494843007e9,1.2181403231175669e8,7.362259048737005e9,6.619428533891847e8,5.2876878858977375e9,2.5741475292226925e9,8.20635308753901e9,6.447027525368267e9,1.9729911686484814e9,5.459687797370927e8,6.121788914184584e9,3.4796258032944417e9,6.968209889010324e9,2.8333410022144055e9,7.820322281128999e9,4.492175170790219e9,9.318066629260336e9,4.948808606326903e9,3.739359586497257e9,8.594085184857279e9,3.324356996144333e9,7.397244810219223e9,4.498452739358032e9,5.542465273618602e8,7.266995076631622e9,1.3482694620670576e9,6.301266114975822e9,4.355291475682864e9,2.3400721946659966e9,7.44317784380453e9,4.084858910452672e9,7.252594224105124e9,6.542135478463517e8,9.30644002573746e9,2.2800188349523497e9,5.189963467702381e9,7.508005887437474e9,5.904980963332111e9,4.457079100896273e9,9.203841182226782e9,8.65672212756992e9,4.679950353127769e9,4.549384600290186e9,5.934693886541758e9,1.59619700945389e9,7.9890585118391285e9,9.271476208714064e9,1.945035635756499e9,6.765327038586611e9,1.8826593804553993e9,9.215589082360563e9,8.12339779460558e9,1.295354683603892e9,2.1932374870018144e9,9.20896139414344e9,7.269505043245573e9,5.890299332636859e9,2.9691859913082185e9,5.58187189237128e9,1.062415795415822e9,2.9686320357448447e8,2.397303868169328e9,1.2181295343988752e9,3.157033704658243e9,3.3208401709543834e9,1.896464571764328e9,8.213609118263118e9,2.0333417099085839e9,8.78327442287991e9,6.447084531391328e9,8.2038924117749405e9,8.842054759823267e9,1.469569703422543e9,9.761028069758345e9,6.611874803285963e9,2.4705935571575975e9,5.179746633918862e9,3.977725691086109e8,6.229252254497703e9,8.803549301772875e9,7.248399240273243e9,9.876824814585022e9,6.378607870385114e9,6.06533517449851e9,8.217247232438683e9,1.6268207994471772e9,3.9966011241475964e9,9.59776166739559e9,7.253143400800954e8,3.4361235564733596e9,5.10872577241895e9,3.03482994281303e9,3.9465835046544394e9,6.004469830769858e9,5.444363669592134e8,3.053112791650312e9,4.706588590744531e9,7.739926739917034e9,9.384989441149073e6,7.407502929081542e9,4.674596475803836e9,8.24848221081822e9,8.698577395900011e9,2.202066930776173e9,4.9748280030313843e8,6.914821599107684e9,1.5673904085675893e9,7.718217445601263e9,7.241444800038159e9,5.206865916758392e9,4.8350163295873785e9,7.733623147217585e9,7.47920223480061e9,7.363520892337566e9,5.849522766636118e9,6.539007495318648e9,4.368636110228244e9,2.9315936338382807e9,4.355103253290749e9,6.476476397904581e9,7.9937822730545025e9,6.098988765703806e8,4.837883854328838e9,6.669322203559025e9,5.8146431049243555e9,2.857436908121136e8,2.703211205978221e9,5.939752687867328e9,1.0190845727730824e9,6.822822934802739e9,7.770356661105293e9,3.244297731298699e9,9.202214617876226e8,2.344403674856771e9,5.877958350838544e9,9.02610893968485e9,9.535629335119228e9,5.664462240220294e9,5.719094151459956e9,5.427332368154813e9,7.035769854364249e8,4.639606842641834e9,5.91762033865651e9,3.054234451768567e8,4.347083895612229e9,2.679025367124345e9,7.655600651573331e9,2.0645148034410255e9,7.593317952688494e9,3.1734025893993104e8,1.7229889137984445e9,1.5075071867574918e9,4.5551166967420566e8,4.647672591182199e9,8.1645543090845e9,9.773527608682228e9,2.3129330148504934e9,7.544792937340887e9,8.98715258348177e9,9.860583012856527e9,5.09037578810845e9,1.6066351480490048e9,9.878542570746042e9,9.959465350786926e9,9.827918484830458e9,1.1680534944786602e8,3.240533875376104e9,7.773510017296714e9,7.453862047028182e8,5.770715696320653e9,1.1837459484337697e9,6.342586065956419e9,3.57221021443448e9,7.707478786612754e8,7.086852377280376e9,8.999176794584154e9,3.8147747573912573e9,3.9698229616403093e9,9.478394344136786e9,9.537613311019322e7,6.8935781457176285e9,2.2326463462766466e9,2.261806143839052e9,8.8369967676518e9,9.840164332654016e9,3.7067145059081883e9,1.7010482074345045e9,3.0218662184359603e9,1.9284631869717162e9,3.408798951711877e9,9.155150610267607e9,2.284147912452772e8,4.597772058267313e8,4.41475267704857e9,2.336510487106873e9,4.6650866217991905e9,8.027435882431112e9,5.605659792174889e8,7.343243778906888e9,8.955152035471826e8,7.462807893018356e9,2.9621222714813566e9,5.659179040011285e9,7.576094741898154e9,3.936825695219581e9,9.07888547704921e9,2.821181494741398e8,7.948158038532662e9,1.9925796683329122e9,3.2379683038868623e9,4.303182936140145e9,3.5304275179521403e9,7.364562653209789e9,6.913290617111432e9,8.964364233600267e9,7.246917797111848e9,7.578075243203409e8,5.442474595702514e9,6.12971850268583e9,6.137285470683098e9,8.992431918475737e9,3.7457228295304947e9,8.710610158367434e9,2.7495668609919176e9,8.636355759234968e9,1.7165410840907059e9,5.3218346749758215e9,5.470550028239611e9,5.660860756744579e9,2.172028140080934e9,3.8349930237771225e8,6.456683611276945e9,6.869125991888432e9,5.477261552835177e9,9.062363195534317e9,4.2600383168833823e9,1.6049991187808254e8,2.0631001983815e9,3.3966595877132654e9,4.751177133685723e9,6.639071375949514e9,8.66125835846764e9,5.850315630255345e9,9.540641056123734e7,7.941994814760679e9,3.6203144642145715e9,1.8590830347787945e9,6.950863866171776e9,3.599211509889194e9,6.219235528889398e9,2.7452000288171854e9,9.618255623910574e9,1.2858140492364779e9,6.457597468564484e9,4.377981230766144e9,5.760517135170106e9,7.000293566107033e9,4.70395668746809e9,8.147772804499031e8,2.2791370958220735e9,3.1987963354100547e9,6.7582697387329235e9,5.74628430569336e8,9.903808846202137e9,9.391155905164194e9,7.667702429434017e9,3.9465683161513586e9,4.743195589004325e9,4.845068635529114e9,7.300175312203355e9,2.8983282917104125e9,4.785139511437987e9,7.748645129879858e9,4.954893047468952e9,9.14692819421611e9,5.816170290980766e9,3.10412020957778e9,8.805915534263855e9,4.4836709500181484e8,9.995967507967224e9,4.729174255128828e9,1.905630025696352e9,8.420781855505146e9,4.641849390677086e9,5.8964159808640785e9,5.782817567100474e9,8.5194235704829855e9,5.333034459740562e9,4.0031182198800488e9,9.404730203927494e9,1.411956629965776e9,1.3411664801553936e9,6.697069835835434e9,4.2354457029284053e9,4.233845860295362e9,9.07110441756682e9,2.1310769736354318e9,2.3071013760815806e9,3.7719261648348933e8,9.630113066346777e9,9.37016421551397e9,9.836211918060871e9,5.686611978052214e8,7.196697620141387e9,5.61805967689572e9,9.318817360285868e9,6.377358074207729e9,5.747455297136329e9,8.382625164235178e9,6.346470076565962e9,6.696117770898475e9,5.949488868785831e9,1.7092382956841311e9,6.655920847519203e7,9.660340528822067e9,2.6520538370485024e9,5.01504738053592e9,8.565106098186901e9,4.2542015085223885e9,7.097025856422073e9,5.273760220451357e9,4.2346574415762796e9,9.095824276679253e9,1.4546761148487885e9,2.607937401702197e9,2.3334563637682514e9,5.7674468730601e8,3.607551157854726e9,5.60042218656811e9,6.31971965181186e9,4.066845793672981e9,9.225939316504549e9,4.3857335281585455e9,6.285694536128405e8,5.083165256592746e9,8.93360564109135e9,8.456930495644113e9,4.413738760997857e9,7.30110667146016e9,6.115709372348541e9,4.180689225301155e9,8.090904630158044e9,6.953692073170008e9,5.953186599449619e9,9.111108557430973e9,6.658575811049032e9,5.476900310136873e9,2.078064320690438e9,9.53378419447484e9,1.3140974369891e9,4.711953051223765e9,9.064352983504322e9,7.720334278928553e8,6.506475735032551e9,4.609921662036021e8,8.74462218180612e9,5.142027007361574e9,6.562611640959756e9,1.1390360429924784e9,5.69491117370758e9,3.521921858763959e9,1.7423706146448803e9,3.8245671418686156e9,1.2927814730055575e9,4.389942164091065e8,9.426800445380781e9,1.4831437128639812e9,8.533000945548007e9,5.2638869460105715e9,4.324424884605774e9,4.678646402310493e9,3.961584537689019e9,9.899394223840958e9,8.70232744380796e9,8.395531689262475e9,2.394900521445884e9,5.960999024509881e9,2.157194500689138e9,3.880981959507236e9,1.167791383614939e9,9.400791833116993e9,6.567055696569042e9,4.544529281644372e8,5.500074761523575e9,5.6371136303105345e9,8.417569963942684e9,1.836207014807134e7,5.842484560326088e9,3.214815615079195e9,2.2310077539469776e9,8.845091576250696e9,7.88605511000976e8,3.904614079866118e9,9.747532631906555e9,3.5968166380530887e9,7.944215190703856e9,4.0131811164555955e9,8.282627103319515e9,6.785640780579599e9,1.1917778206120243e9,3.2425258334168506e9,1.521183251150593e9,3.47079603723101e9,8.425734437627996e8,1.1042901911556879e8,4.244259057004717e9,4.879920450767524e9,7.701090312618815e9,4.857463591180555e9,3.013753622509925e9,2.36714173539801e9,1.7483791413583105e9,6.665222665555735e9,9.62611502484853e9,1.3752043522210367e9,4.741078290294205e9,8.293738898437757e9,7.698466872441453e9,4.4920402992760725e9,7.82693403989163e9,6.494775984030598e9,8.880152157587881e9,4.433234375092553e9,8.78164283304239e7,9.956076819574072e9,1.7959223786661448e9,3.738348918972688e9,9.965641828806318e9,6.613433131976491e9,9.42851140067171e9,2.911365975657073e9,4.36572925595448e9,8.366323041310388e9,9.31369205581891e9,6.236549197990716e8,5.568526205314529e9,6.384117745079741e9,2.140661010050614e9,7.16689341374418e9,9.013494586769977e8,7.272155033973908e9,6.685045598067368e9,1.511872693656745e9,3.0974315390885544e9,3.4441540188314047e9,1.246760868590312e9,5.187495265308319e9,7.571096491634043e8,1.153596099688281e9,5.426061938214013e9,3.78762304479372e9,5.154552598222758e9,7.037795338589525e9,4.437627265969275e9,8.025039921346338e9,2.0638044652159948e9,2.8025854838418283e9,9.577079659340132e9,6.760299572946461e9,2.3124400694393597e9,4.2828646560475836e9,5.87718801965132e9,1.1923775024820492e9,4.1274390245802326e9,2.0774059027697578e8,9.777974365710207e8,5.155298353076399e9,1.7202617403161657e9,8.344657780312767e9,1.4388087213615053e9,3.906444001151332e8,5.301288009970561e9,7.205122021560528e9,2.6507312696217556e9,1.1220263186873636e8,8.936362579203138e9,7.211799056365376e9,4.343152835328516e9,2.2326614464568815e9,4.149203471364619e9,1.1334652881229079e9,7.416613886084042e9,5.729155768540839e9,2.7922036303833e9,6.543081335623966e9,7.730223334199557e9,9.895876519650526e8,9.265926900510668e9,4.391031409413889e9,8.976366929717552e9,9.245807004306847e9,4.952899368950276e9,8.988361491223904e9,9.31837246284766e9,7.388106583584608e9,1.1409423693200305e8,7.179638443833843e9,1.1376776430206115e9,9.618880354773582e9,6.500165662677314e9,6.126282985631625e9,3.79212408555199e9,7.852979031688967e9,8.0440254307671e7,1.1792601219513245e9,6.377568916644322e9,2.2967001779403806e8,6.171114637831009e9,4.918297240533006e9,4.70019373407198e9,6.899252747549722e8,4.0075736553856487e9,1.2423381138119438e9,5.866632250244743e9,5.615335692296172e9,7.2865080869791355e9,8.44748773671456e9,2.8285424680260763e9,7.755929918032782e9,3.9371469436373305e9,6.202219766574984e9,2.4512406221587434e9,2.5739950962076206e9,3.14117482618557e9,6.286789949604451e9,1.6744378201912956e9,4.384433140584982e9,8.177430021839849e8,9.464941163673224e8,5.811248479938857e9,4.8923706312896997e8,6.418322635206698e9,7.973233355369157e9,6.40653138336625e9,9.707987809140814e9,8.45853892161454e9,3.515418683713696e9,1.2604325603859868e9,9.561073980623682e9,5.439427218669583e9,5.712225050020239e9,4.175429383627981e9,5.0687555293727595e8,5.479961534967549e9,6.559025362008119e9,3.7994713049783845e9,6.371854346912866e9,1.5270703228504655e9,8.746155571347105e9,7.511888028307225e9,5.118743488164296e9,6.374361290649642e9,1.4946480023450048e9,7.454616992548596e9,1.4801719635335386e9,8.766418558753874e9,9.851003764670471e9,8.804326722508848e9,3.544087231705193e9,5.422970978609105e9,5.990257116907415e8,6.550211223135759e9,1.0603207629080625e8,1.0488183642556459e9,4.535115738721022e9,6.594059739812017e9,3.6814872280447717e9,8.351748380675771e9,4.642503072696342e9,1.130641371228961e9,2.2758080490444264e9,1.1982362794884238e9,2.33039808139775e9,2.0343925766975525e8,8.673031070477293e9,3.8951082898421085e8,3.197622035001806e9,3.4096699175647573e9,3.816805736596367e9,5.537525727171539e9,1.020520333728917e9,6.607827874639205e8,6.610224175258161e8,1.790260971915878e9,8.683261505841445e8,3.968697818002357e9,8.162776090862639e9,2.8614668841743097e9,5.911017692115077e9,3.6036535248279433e9,5.89053527887475e9,5.249898862736771e9,2.6960315425154624e9,5.699672722115985e9,5.241921242249654e9,8.355994763649194e9,1.0732964283041835e9,6.687120114115329e9,7.477150879772321e9,9.599154337240112e9,1.340725347233217e9,5.298925045291611e9,7.428144788793139e9,5.520237316302735e8,6.124314803230236e9,9.045407385812216e9,1.0224176308738763e9,3.689905876372845e9,5.936263060740176e8,1.9139300124669344e9,5.573816624749812e9,1.0778938315240993e9,1.7281732653459926e9,1.266070077242193e9,6.932770963858395e9,2.4686591547821913e9,4.2196786661784134e9,2.180962058326943e9,3.250745022052426e9,9.309741858665436e9,3.64152608240498e9,7.096476430857864e9,6.164940315410212e9,7.439699898119791e9,5.332150409117432e9,8.23269672623427e9,6.513142119403711e9,6.283781508257003e8,4.7153212582652813e8,7.049726624111258e9,1.8074563689070454e8,2.174817793457643e9,2.1943244621685543e9,7.087876093416921e9,4.862871617361899e9,5.312188871847763e9,7.684374562843188e8,7.498936017898252e9,2.8538867570531025e9,7.066857857623873e9,1.9333237893459709e9,6.081298696262194e8,2.767502964932188e9,3.565697297288484e8,5.575620868794231e9,3.137435683686246e9,1.8408647375966337e9,2.8595822145645123e9,2.0857169371031315e9,4.994817000962792e9,4.990930433213744e9,9.678317125813925e9,6.190792525862457e9,5.558908134687006e9,6.34457442464748e9,1.3369656856909628e9,1.513990475573125e9,6.280245235914802e9,7.093042383299508e9,7.719045428563875e8,7.55156831994359e9,5.818636403160778e9,3.394062925141298e9,1.0076422317917222e9,8.809865345817036e9,1.0994340993089113e9,3.829515093653475e9,7.003012315163407e9,9.697332072273209e9,5.187637141241026e9,7.53646270591061e9,4.996832793439452e9,2.2412946331154103e9,1.3396255353800291e8,2.4957044806562924e9,3.939188293793453e9,5.1113176363470125e8,3.817265834983444e9,3.1350925545864606e8,4.2238330865087013e9,2.0684334144380133e9,2.5942040494148154e9,7.711320823260927e9,6.571587584397572e9,6.027333128710349e9,3.0260161705654063e9,8.536254733889147e9,7.134033750718372e8,5.657155054146548e9,2.1784210348468513e9,6.758655064168145e9,7.728126195677427e9,7.56283508472601e9,9.261567989164831e9,2.475055506571984e9,2.3767975779278693e9,5.77985921750641e9,1.3276897682560785e9,8.765489105689971e8,4.299354566107135e9,6.557889374301879e9,9.73337696164567e9,8.974219580996979e9,5.127517819132702e9,2.809438391699378e9,5.235987853138513e9,6.435292561051685e9,4.2021502381566467e9,1.9847240763868046e9,3.8786899965033507e9,8.72601351401587e9,8.514148211856057e9,7.3944237526768265e9,9.018655156159782e8,9.665571803078938e9,4.987971159039495e8,6.980134375978475e9,6.684038214568008e9,1.9761214753876933e8,8.527605458620919e9,9.312548717102232e9,6.628555194134351e9,1.4607724579671834e9,7.871788114540059e9,5.736474682632903e9,8.740406666616545e9,8.08160475594553e9,1.3535551678615065e9,3.3316628593353157e9,5.736551964274909e9,7.884655174828908e9,7.314140024908392e9,6.505080805449809e9,7.492028147211305e9,3.264853218015674e9,1.484576060184003e9,4.745850175420054e9,2.9103301729852047e9,6.338932747920887e9,7.464368872219154e9,9.30404660036469e9,4.684699077350113e9,1.3078034065102472e9,6.321869486623673e9,7.331800556525728e9,5.493777202057687e9,6.156811020202246e9,8.496664071759567e9,6.324355433617271e9,1.1142729035534072e9,2.428864826042697e9,2.546225510062612e9,3.1721183022772913e9,7.462088722520929e9,3.866783297085972e9,6.722330465278053e9,5.272936792677608e9,4.3157943991287583e8,7.613314354396469e9,9.076389296870886e9,8.939068097248028e9,2.453656801266535e9,8.909076968522387e9,1.813716655294022e9,8.561089877133022e9,2.3504071551235437e9,5.678998069113505e9,4.764280328474366e9,7.541816525958757e9,3.642227959477333e9,3.918104289979685e9,7.8133575539785185e9,5.240385954316108e9,2.065389140853734e9,5.025764845136252e9,7.599027987633621e9,1.2587241399584804e9,8.042185473177671e9,8.664123335854221e9,8.508094571709239e9,3.1808936930917673e9,5.333473480019778e9,6.32267151577867e9,3.0645059470561385e9,1.392856281193584e9,2.8316893977212863e9,6.636743483963028e9,7.837577403103545e9,9.320568335647776e9,6.599927199466061e9,5.623651206030288e9,8.008289552005968e9,1.4179390065738673e9,2.5556116604523916e9,1.7707327837592678e9,7.017294366490078e9,3.3789508457199826e9,7.723911894038593e8,9.710508997917767e9,2.888295010371413e9,4.457172057387134e9,5.615038853613031e9,1.3788989635806503e9,7.133703014466463e8,1.6349168742903486e8,2.0108925454649007e9,4.945476345790705e9,4.548104963180505e9,7.074154236964485e9,4.0162675932473335e9,8.465978738522284e7,6.726347361724771e8,5.799473672491868e9,9.229145710981344e9,7.384214856661853e7,1.6012588592877297e9,9.461468929016924e9,9.890600056248579e9,5.877956112491062e9,6.816064818994701e9,1.9017125013845592e9,2.4513277963650126e9,3.489891141321324e9,6.562714012238e9,1.7474970716768267e9,9.406512097669142e9,4.912287363515178e9,2.6009658897814393e9,8.512456799823476e9,6.74667768947105e9,1.19252128992416e9,9.785793583212646e9,4.0177677487899464e8,7.625046915807366e9,9.469347506052473e8,2.4666262396459236e9,6.16675196040963e9,2.469974541023764e9,4.76783545538878e8,7.839311039319848e9,7.26680494552682e9,1.3782688566861124e9,8.798231068019701e8,4.736285407221328e9,3.5840397538930645e9,2.6445813877771506e9,2.687847985863178e9,7.388257654244528e9,9.126680488345457e9,3.368769169885171e9,3.689935166489422e8,5.971213174212017e9,8.058201149174721e9,8.601797580171202e9,8.366531971174049e9,6.140468366757615e9,5.575664886000527e9,1.2501732162095413e9,3.289867025804849e8,3.1252557166224895e9,7.904428606640645e8,3.239020129694573e9,8.56434428167027e9,6.626549308785955e9,8.851290512654533e9,5.119252195468157e9,3.7007219491424646e9,9.019902477105738e9,3.297735800467183e9,8.896568329422781e9,4.552130796791425e9,9.174816033229252e9,5.459674992887958e9,4.715556241981875e9,3.802423550577476e9,6.817122880513827e9,2.8265076753384576e9,2.6070609479701624e9,6.536996060534943e9,3.0215630687853146e9,9.069997672886987e8,1.0382702704252645e9,1.0217474036493989e9,2.0006982763098059e9,6.04361913871214e9,8.577683602593033e9,7.542882215344624e9,7.280704685171601e9,6.280921102324002e9,6.844715749054759e9,9.83446490114919e9,7.52012012556959e9,6.666452073373634e9,7.505234027196167e9,6.263197903332103e9,8.442544235314936e9,2.518930310730666e9,3.376635278124107e8,3.1659276930272694e9,6.660402114165315e9,1.4188707495503716e9,7.68499544564194e8,4.792230587337265e8,4.827712997162702e9,2.3754964451930285e9,7.35660617953514e9,3.5040843693144417e8,2.2589549678590646e9,9.77875884285169e9,2.4880893540181637e9,3.254980594282939e9,8.527069180425995e9,6.009932698513312e9,4.328418785145506e9,4.716725132475658e9,9.774460276490582e8,5.031911090321286e9,4.564566079407697e9,9.82929106587877e9,1.3833318868241472e9,9.296578211570605e8,3.901062197325693e9,2.1461274521304474e9,8.664720554004286e9,4.918079590773443e9,2.2946551988845887e9,8.722538197643309e9,7.031546754819688e9,2.061227261926537e9,3.084435935205082e9,6.513498059171769e9,3.7636918392245336e9,8.597441412420645e9,8.67443683409604e9,2.0581299182408696e8,9.033687052096603e9,6.214688850018845e9,8.534401998106965e9,2.183698871463776e9,6.765526022311836e9,2.711486265413953e9,9.046630992653477e9,5.703035324366103e9,2.0348134287937436e9,6.602560326649255e9,4.935550639994827e9,6.277272855557236e9,2.6988175859046025e9,8.109972513998431e9,5.5068366227039995e9,2.661844606931768e9,5.727117451816197e9,8.638699867251543e8,3.9038804950309978e9,3.6601460893204684e9,4.457337678259788e9,8.813395441435905e9,5.378612121582682e9,2.0973626543169055e9,2.7755124415169997e9,5.492574646970333e9,9.918672931046215e9,5.098859088915986e9,2.5979258017155304e9,1.46240413505772e9,1.9015034227985284e9,3.6967912132876434e9,2.405890057814908e9,2.747463741954836e8,4.674647140845553e9,7.534455259043761e9,8.445613125912795e9,1.9295952891888225e9,7.156708966242895e9,4.410452633359899e9,7.421123278824145e9,7.394537564643477e8,2.116994094938266e9,2.7874168798086452e9,4.317138889385316e9,8.668887702771952e9,4.149784079586354e9,5.905311099628536e9,9.935700851610996e8,1.2063381188612388e8,1.6806978383890293e9,3.8223816604220552e9,7.661634059610813e9,7.46196823601044e9,5.287571082199805e8,9.661496458366945e9,2.5520963372170725e9,1.870200877334307e9,3.298985153067784e9,2.4545510162037244e9,3.8578804365731277e9,8.544831444871527e9,4.570854681645148e9,1.9699960266234994e9,7.782803752837827e9,7.187280989346358e9,6.352235449597907e9,8.292605510552191e9,4.912630790290654e9,4.8117057241924515e9,3.9527011005553694e9,6.571382046004379e9,4.749007347396827e9,4.2314921168348784e9,4.710375956617496e8,5.265820317823935e9,5.675254567187704e9,8.460249485268827e9,1.6106317522176094e9,3.6096598836341877e9,6.389004974755613e9,7.351145800578505e9,7.079722742370803e9,6.416813188405388e9,4.964553768413175e9,2.102138965761614e9,6.981966394023239e9,6.492892940735681e9,7.999127961591909e9,9.485609153061165e9,1.0537352931708754e9,5.335174379502439e8,1.3860408484395282e9,7.424444594305491e9,1.6913078692369666e9,7.297801411631446e9,4.060686308403947e9,9.238782049474195e9,9.279474865849257e9,7.769920744589585e9,8.262518386101545e9,8.034060086683302e9,8.484583129426541e9,2.236064663132964e9,4.311191698196304e8,4.0359255424504013e9,6.700351597990133e9,8.87178389240218e9,3.080041927055922e9,9.1480636418277e9,6.0931716197862215e9,6.827710174657059e9,9.40188036810734e9,8.23568808108615e9,5.73253599458231e9,1.520614240748953e9,8.759079444611208e9,9.577954465561085e9,2.904950094493821e9,8.076677619923127e9,9.039474612491074e9,8.73209326658734e9,2.405371792334505e9,2.333834748226782e9,3.755429521072897e9,5.236783802665889e9,7.027049897520459e9,3.1640552326596293e9,1.0437542239154319e9,7.608840539957323e9,4.712845217593592e9,5.5968796796627655e9,1.4857216817570574e9,2.0203885083017004e9,2.1308140776916263e9,2.7078229983687296e9,6.675286814782281e9,9.614248316148865e9,2.8632120339086574e8,2.1282190627485297e9,8.766805745057833e9,1.0928731663779979e9,2.7399858849890156e9,9.124525999611332e9,8.805786271043058e9,6.698244362521818e9,9.514010505712711e9,4.568190015029717e9,6.048992854924682e9,4.895026752730687e9,7.334821188191252e9,2.4414853822522564e9,3.1540499504376264e9,5.717846603356657e9,5.032318631696129e9,6.892206697665686e9,5.451007027427046e9,5.944607333982877e8,5.16601559355367e9,1.9632279534055085e9,4.2034631938941236e9,2.1255926435928752e9,8.953416611550976e9,9.930102898313698e9,7.452453998805013e9,3.0985649991446886e9,6.541813157695376e8,6.025335525394922e9,3.014682151476816e9,2.6738102138650875e9,7.496998875012557e9,4.830223838296178e9,6.12920210171039e9,3.9977024826529317e9,8.529477577875019e9,9.06781586939945e9,3.8046759675387444e9,6.243054374501963e9,6.151982060103977e9,4.885591973309684e9,3.014889768141915e8,7.957300422281637e9,2.671114799835891e9,5.814000251002735e9,1.0397490805051757e9,6.959184479736304e9,9.59417586227584e9,8.066168948418571e9,6.608598358254281e9,6.747523359256835e8,7.965951186616889e9,8.711645369755528e8,9.822995864977846e9,3.396615389125984e9,9.581887981803322e9,5.84975543266083e9,8.36913626307826e9,1.218919293313413e9,9.96397140551839e9,8.933844737724056e9,5.955639686657392e9,5.917866791782737e9,9.54676526298555e9,6.765067124943198e9,1.4793213784599578e9,1.7947790132382445e9,3.1923918624261627e9,7.230990334224667e9,7.182485308116687e9,1.4720183984146674e9,9.66944585291329e9,8.84834570274763e9,7.347388581540899e9,2.2353518150395355e9,4.728070674720593e9,6.320140236768401e9,2.9317279493040037e9,4.7694901954852705e9,8.100701157553412e9,4.0539505191767287e9,4.836613210878002e9,5.481045606477465e9,2.105672470669947e9,3.1475271819064145e9,8.652623468959707e9,7.455995864993486e9,8.418007234690137e9,3.810035103324072e9,6.141962561904791e9,9.983200365515097e9,7.156334908381187e9,1.2633329204443278e9,8.908668561273388e9,7.806468689758983e7,1.2981335634754853e9,4.417004009954517e9,8.79609389887556e9,2.394858962238334e9,5.443691823267316e7,3.8485832786783856e8,4.613271740933258e9,8.112818650036298e9,4.661686982076055e9,4.22217167015863e9,1.1259736963080268e9,2.037029289599812e7,2.7519592446032257e9,6.423052167302209e9,9.644746472171387e9,2.368145824940041e9,8.383888569274101e9,2.8052894046359234e9,3.666099756241883e9,2.0018818970518725e9,5.724355686495847e9,2.213468014301202e9,9.448044586643105e9,2.544095431464005e9,2.569209929233137e9,7.141671000628441e9,6.100455791033963e9,5.995978038461171e9,8.289524439994256e9,4.514024565474346e9,6.018771289491717e9,9.296219159905941e9,9.965389756799307e9,8.459456262520267e9,7.806788550159268e9,8.131623860851572e9,5.431639753894197e9,2.1873453212595973e9,9.137451240679337e9,3.7516152542405477e9,1.6087215979959323e9,7.049905168969346e9,5.543783507740319e9,1.8793400687063322e9,1.7328657762662213e9,2.507290429801e9,6.505221574843924e9,8.5416136783218565e9,8.430614057297499e9,9.699849302655704e9,4.2202705247427397e9,7.561745283547778e9,5.343916852767029e9,7.914553180903716e8,1.7576630087922041e9,7.217931521494856e9,7.996582971785318e9,3.099567819314781e9,8.377349699599046e9,2.258755674758318e9,6.67403053045816e9,3.9394364354013443e8,4.055368040184705e9,9.501410726321146e9,9.52489023531632e8,4.2190839196803374e9,9.725032327469732e9,8.984202758780874e9,6.1736923976185665e9,3.164045097435386e9,9.309268783208872e9,4.2362172952679935e9,1.2572382951999161e9,5.955008383229905e9,9.807139838289478e9,5.464400991014497e9,2.921614413759599e7,3.3938204744138465e9,3.3203533991516485e9,4.338347369152764e9,7.396432273109945e9,9.341227950639671e9,4.88382165756693e9,8.123825832953141e9,7.600238125168595e9,2.4210622324416e9,8.914192642729504e9,6.757091383822819e9,8.032762704325816e9,8.2440113533289995e9,1.7715316164714158e9,3.0506858457236795e9,4.2169792204917545e9,9.829977958380589e9,4.303892758380359e9,7.777688479128414e9,2.4467630276952425e8,1.5188507483952374e9,1.9858369964785905e9,2.1123489378052962e9,3.750636143141184e9,6.044018678906373e9,4.0638562599436766e8,5.845343511759229e9,7.408304315434823e9,7.306927126225018e9,6.033359239120013e9,6.149205856748561e9,5.663180313284429e9,5.962714508376068e9,2.260748418644657e9,8.839347399609371e9,5.0128021740527935e9,3.228681725498451e9,9.87587598726587e9,4.921283044005764e9,6.613329065892828e9,1.8536137009898424e9,8.113721280792825e9,8.245816926787442e8,4.086861487168252e9,6.928341254691558e9,2.555918167996948e9,4.553607753448121e9,2.762533683587455e9,3.274804559109441e9,1.4429258641514897e9,2.4936152442283235e9,4.889537957630541e9,9.010740689253424e9,2.7266728255588503e9,3.9354992981694913e9,3.1203192052673354e9,4.83220421639452e9,6.354656594784985e9,4.968154884703551e9,6.975469442988658e9,6.713247429483478e9,1.4299586576655188e9,3.2656262515132017e9,8.749638219146654e9,1.4489964854755478e9,8.452868379143197e9,7.55656194785284e9,2.551613744745679e9,5.511816225759317e9,7.757269773262826e9,1.0890124924208822e7,5.997420812092684e9,8.647171867338167e9,5.113798389944755e9,4.209132385180868e9,8.156410781459072e9,5.695372942534166e9,7.100654134765275e9,9.00672137894848e9,8.0426627890563345e9,3.8506602246560016e9,9.809323045153969e9,8.575486743850522e9,4.778315774174506e9,7.815728413358103e9,2.898052542784414e9,8.881008927177017e9,1.2762224832360358e9,8.000518164814461e9,7.234266460384154e9,6.237888200325692e9,9.63510844844895e9,8.04887407409246e8,8.88720069562573e9,6.9069466572171545e9,8.339735014372157e9,6.50128127411537e9,7.286575127397732e9,8.414610939677126e9,7.539306694336312e9,9.300983859317606e9,8.401773208762056e9,1.0333964329661849e9,2.833962275707347e9,5.336345977691897e9,4.51057608483515e9,7.812443012671878e9,2.307263267440821e9,3.583873709831764e9,8.183622401986525e9,9.598871151687922e9,3.550040395677534e8,4.68018685070645e9,8.170544047196102e9,2.373528630101479e9,1.1577465217754601e8,4.64660422081674e9,7.090922139195224e9,6.335567961354275e9,8.813864524995516e9,3.6572745895186234e9,3.0070651695523252e9,4.025069452922775e9,8.06561298774126e9,2.559621224329195e9,4.0217966279616337e9,7.746414099664922e8,4.3792444717686205e9,5.366341358894515e9,3.6215629177392573e9,8.091403228157699e9,6.713898304460264e9,5.149931682860536e9,1.1704667177576344e8,1.3326238198214247e9,7.577055083035853e9,2.8574640824497986e9,3.152131833712235e8,2.289440178544373e9,8.69349863306369e8,6.67459974674476e9,1.326636039967849e9,6.520683678061499e9,4.50848454774141e9,2.228735844007379e8,5.999932312561099e9,8.249470155269456e9,1.9216494854037502e9,3.45450054247051e9,4.326045793479003e9,4.653119830531832e9,9.724769840016678e9,4.892586468203131e9,5.559300206480425e9,4.350300029603909e9,3.30213425846251e9,2.1165897960187585e9,7.430661450321138e9,3.905598406457988e7,2.6338207746935782e9,8.491743650665032e9,6.433469121707818e9,2.02421324738013e9,4.074579092475812e9,1.8765846955877163e9,9.101851753862885e9,9.16110415391709e9,4.658487583888677e9,8.951758183546778e9,1.8068462362644067e9,6.026017557489572e8,5.561480134799744e9,9.247364401792974e9,4.3711082172154665e9,8.867729658833042e9,8.295734508391636e9,6.124849092465627e9,3.5903346693280225e9,2.4573011923536983e9,6.835924397404791e8,9.477200567121737e9,6.499946345245533e7,2.3139941803851495e9,6.788657654320758e9,6.092898150649096e8,5.964483340212768e9,9.760488223638605e9,8.605380618511053e9,5.788187326143361e9,9.492135641915043e9,6.563518592975472e9,8.339643244378951e9,6.698471130788297e9,2.9911811771171384e9,4.0717008806621304e9,7.200593954128037e9,4.447813789338417e8,4.837406612227604e9,7.215939050472553e9,8.018701866044443e9,7.273307395096877e9,2.9637597354949617e9,9.378023313675901e9,8.747463584775584e8,5.239643082579783e9,9.902419817298866e9,2.5192109911386695e9,1.8275951253954825e9,7.255852557580512e8,7.406010633890374e9,1.0975369192444572e9,5.725519577555357e9,3.7100366997645874e9,7.396605254869612e9,9.835588789691263e9,8.643131640681454e9,8.957620001564892e9,3.598794041987422e9,2.168024692146767e9,8.554285825441993e9,5.132873575904674e9,9.833396717963661e9,1.4149831789902444e9,5.571622933570922e9,9.606970728998653e9,7.195615459909196e9,5.713318736376677e9,1.3565106563557606e9,8.312622111575054e9,5.662579833644776e8,9.710093032094048e9,5.144588825251012e9,6.0107691960151e9,1.5226792791524346e9,8.048197616389466e9,2.810368256622705e9,4.0374423485378942e9,7.982882144481478e9,3.2537189958362546e9,8.602131092400593e9,8.237470381124095e9,4.029107312448038e9,5.823154942645212e9,1.836870257181228e9,9.57175991638566e9,1.8082913994679773e9,1.5936183789639857e9,5.460674929213489e9,8.758606445094894e9,2.994457910745382e9,4.674362719477417e9,6.544606291426754e9,6.065068888017179e9,1.9201295964135122e9,8.27118128374186e9,6.826181790953045e9,8.171119092738227e9,7.869214402490583e9,6.040248418468744e9,4.5762506264156685e9,3.2224779031439443e9,7.335003378571036e9,3.658160110020504e9,9.89889126022086e9,1.9679085311158707e9,3.7063953384473424e9,9.277130685156557e9,3.2166628831315956e9,1.2536628560631058e9,2.243366011743281e9,9.452343488654861e9,2.3850785214895997e9,4.318077155482797e9,1.085768491724055e9,7.365609828404715e9,2.949865007013425e9,2.892187306459144e9,8.55901079731358e9,1.766137325841388e8,2.8316931860791473e9,5.6060817212763605e9,3.734813474958321e8,1.706760997827219e9,4.486640248369689e9,4.1778800753698187e9,6.284379445921259e9,1.6506588603423378e9,1.6964890204483107e8,8.459945188178672e9,9.105432033298473e9,7.743526529052722e9,4.506753452685084e9,3.899183154890873e8,8.493169598837689e9,3.1038323488652763e9,2.383698240464429e9,7.751373878028234e9,5.525635129098077e9,8.269486802160185e9,6.09265995575961e9,5.294741924448872e9,7.383676949142477e9,2.478691646310873e9,7.402747404403194e9,9.601660733761602e9,6.057608108168267e8,9.761508029394575e9,2.765544546681387e8,4.808213859642235e9,8.929450251282515e9,7.256312465360721e9,5.442814419686337e8,5.677623685760722e9,4.189189137705185e9,8.0239089144448e9,4.432604345370689e9,6.037330014683201e9,5.706056361752864e9,1.2903646922085898e9,4.707208019893816e8,2.638266074214971e9,6.790185637618e9,3.421464223893438e9,6.608481032724018e9,1.9266994409592164e9,6.816459402085201e9,2.235487343007245e9,3.850799378300147e9,4.320461449402827e9,9.067775310643156e8,9.640678978610289e9,5.5574858621498165e9,1.622839017309523e9,6.275519058144321e9,1.8058225511267467e9,3.944840071421409e9,6.231035409897445e7,7.7686450043744135e9,9.454867481397724e9,7.0566465150305e9,3.418351667065479e9,1.3244932139218059e9,3.845869252928761e9,8.725342202000341e9,5.181291326588876e9,3.020994812206257e9,7.098062574310161e9,6.149855904968456e9,8.513134000362954e9,2.1090154529981043e9,2.983765905688627e9,8.43805330748583e9,1.5938451352658079e9,5.431186993018249e9,7.491112214340234e8,1.5103713181249244e9,7.7067272451356735e9,6.817800813244686e9,9.934777111063728e9,4.4464354809795606e8,9.32614472653193e9,4.2126494534113437e8,3.021524673408793e8,8.103077265426844e9,8.692869829018826e9,4.584063934765421e9,1.9405252254494653e9,8.213837830867861e9,6.211579123032696e9,1.5034588380894763e9,9.296538218138865e9,5.342080126015926e9,7.074494457956132e9,8.595342042838034e9,9.139236113452547e9,1.0911092168533764e9,2.8321204101048694e9,2.205020223299862e9,7.074360247353254e9,5.5482136234424305e9,8.038319867727179e9,7.5033594363212595e9,6.212892548281504e9,7.842972691157319e9,4.597910121256985e9,9.524097109419643e9,5.853752137931371e9,7.702556677142205e9,6.49288980937196e9,6.873656101065943e9,3.4343123307112966e9,1.9767953755450373e9,5.477798407527669e9,7.335526098917787e9,4.3344440421747265e9,9.614934808402246e9,1.7494288606849551e9,4.251117522764546e9,4.749552883242107e9,2.6128824013547525e9,2.366834898945349e9,7.013951076599838e9,7.736385731839257e9,2.34546988500537e9,8.664546912521904e9,8.900945600358757e9,9.94969753456323e9,7.247131969121494e9,9.846632261371748e9,8.902390807479136e9,1.1793569723793417e8,1.0297712192349362e9,7.717653694756727e9,5.152512624839245e8,9.10185865436628e9,4.517717577707412e9,5.728864575820361e9,1.389686784745111e9,1.336704939936284e9,2.0890431622384431e9,7.478889191151138e9,9.69333020923244e9,4.996501090739602e9,3.2800066646834826e9,1.470673215546604e9,7.10257763305021e9,4.08485355753052e9,2.2051335301355033e9,7.456216534747767e9,5.72325322135511e9,9.150093421173159e9,6.338085583088507e9,6.642290418344885e9,3.653542736354012e9,5.113355287625306e9,1.7964227318191917e9,5.913254812899379e9,1.9488423102736874e9,3.491852840716786e9,4.527607834320691e9,6.731868965164964e9,1.3382694671270945e9,8.4850110915915785e9,9.3923762519384e9,8.988040411555616e9,1.248308764734325e9,3.780781529833743e9,1.9508476166545641e9,2.5138448993405495e9,7.374865469553733e9,8.977242285696905e9,1.2269012824052238e8,2.32266804175034e9,3.7078344223680716e9,4.018875548508893e8,4.327440007215409e9,8.497792105401685e9,7.093567610530419e9,6.391100069972111e9,6.970403549887428e9,5.715143158455449e8,1.4341063367459717e9,4.568186515983929e9,1.443076169616102e9,3.7840478149773927e9,6.097172958172073e9,3.920913775781787e9,6.721379836761532e9,4.701397042926429e9,9.61269977214459e9,5.031852904317089e9,6.696563715358505e9,3.2952728009259515e9,5.466403616621954e9,8.993297887889996e9,8.536681374124443e9,2.75719037070148e9,7.639267899134315e9,6.199763447220445e9,7.163560398452123e9,2.180361894488447e7,8.404518591005757e9,5.3096166545087595e9,1.8876728451333013e9,9.671959069204487e9,9.55554409885766e8,1.0080475874447647e9,6.439151060695602e9,9.392984804085392e9,5.893839310095171e9,4.593847550387032e9,6.680963654265471e9,6.134014916765196e9,9.61300559143993e9,7.835114594305081e8,7.550002156317135e9,1.0539715021963569e9,9.014288992131636e7,7.849149028662079e9,1.9140792124517293e9,6.023030259993219e9,6.189212087397744e9,4.522254584514476e9,3.68257209254093e9,1.1057966816954756e9,5.310231099925618e9,1.9998222017550972e9,8.643730685180988e9,2.6724628713436685e9,5.789659626927096e9,4.139629053230247e9,1.6675876348066633e9,1.6533125676333916e8,1.8038331438327181e9,6.511660889628552e9,2.0014866739556637e9,4.986128142389321e9,6.915816785711068e9,1.155540292805285e9,2.205328882808244e8,5.400836484733704e9,5.014255095050714e9,8.074326754913368e9,2.5574945799230533e9,5.555367836753556e9,2.457808812782044e9,5.874751287564577e9,8.969641951940502e9,6.787122228954774e9,8.523394688790774e9,4.916128338069257e9,3.8943121070637355e9,5.333132145098707e8,6.42987733339612e9,7.097701478492368e9,4.641145792415546e9,6.303947451622638e8,9.122973691098745e9,9.462336472404104e9,1.389799486939607e9,7.890401058555731e9,1.1302887266553018e9,4.465637719236097e9,8.141784055900136e9,7.833652025108899e9,2.4958125003055477e9,3.7074075094009393e8,4.374149774283113e9,8.173202047893329e9,4.914576583769984e9,2.0752915709248564e9,8.5655140803692255e9,3.250152135862158e9,2.2125826296678753e9,5.528461730028625e9,1.9379447258570814e9,9.676573634646591e9,5.735865647084886e9,4.486566320100741e9,2.8080380525508895e9,1.1515036036768012e9,7.851890408069454e9,5.6861446015736475e9,1.233155736607301e9,6.525825424939209e9,6.304974360483973e9,3.079852349983544e9,1.0123236404980973e9,1.6160172410145023e9,9.849517055750452e9,2.1618749254514303e9,9.244146275482944e9,6.935589608866608e9,7.847521177592402e9,1.7968598598845277e9,5.722304504143645e9,4.770561975284075e9,6.450092802034641e9,9.1718342030066e9,9.920702711673786e9,4.624268467146719e8,3.0447015543044252e9,9.603691507664787e9,3.4102838507029444e8,5.340396140698459e9,8.834831885468145e9,2.8166935281447835e9,7.818209458015544e9,4.0441092442399917e9,2.4144981319814963e9,9.884014074464022e9,3.553826401399125e9,5.413034089447062e9,7.474850566332936e9,2.9930731567208204e9,5.648181927395568e8,1.3581700535307517e9,5.363843758839633e9,1.1399028070396078e9,1.2214182666042094e9,7.317764449315852e9,3.6479305233758454e9,9.336775728634914e9,4.682873096585895e9,9.766031965055626e9,1.9055446165465283e9,4.632064498564945e9,1.6924027444915845e9,6.570949512253765e8,3.5682641625649247e9,9.505042701783995e9,6.574025581983007e9,4.980570327034869e9,5.513172522257274e9,6.65487739333641e9,5.6590177348529e8,1.344221316217076e8,2.0809259539615545e8,9.552677379462347e9,6.680366713984067e9,6.594369546457571e9,8.44845210075837e9,5.415623435438627e9,2.1238372523823001e9,7.246526753119054e9,4.2392280389068836e8,1.7214371706834364e9,6.890690531385489e9,3.16955343333867e9,9.291682523845043e9,6.348880926270372e9,1.886372956729081e9,9.112454752012705e9,7.975029000329726e9,8.030626737491867e9,3.608582392393884e9,9.757745513945698e9,1.2556970875215101e9,5.178805230585792e8,6.589662478781322e9,3.3441325223477116e9,8.852359198759252e8,2.6904917093617487e9,6.0800004766235e9,4.5816419327517235e8,4.366674393574475e9,4.95509606278588e8,8.229836115052031e9,9.37566186487911e9,9.64691987769872e9,1.9926719119448776e9,9.830368255840004e9,6.7664422605273e9,4.792451171699579e9,2.0526160920128422e9,8.267551905966352e8,4.159022189771233e8,4.99590002205112e9,5.290318655164872e9,3.3089565864642735e9,7.668706235792329e9,5.510011239904292e9,9.618801385848883e9,1.649429927653695e9,4.500763743200806e9,9.340591448126118e9,6.757766149097365e9,4.968780309445525e9,5.271891014349834e9,5.309275501191271e9,1.2755422771299863e9,2.501877174180006e9,8.177718034976043e9,8.58730225614098e9,4.997058932791358e9,8.65677226418769e9,7.030232834467161e9,8.496044495771656e9,7.888772016496148e9,9.605309647261618e9,4.664756075035402e9,3.045683011053795e9,7.5746789061490135e9,6.748922478398319e9,7.614155817957471e9,4.543522948472827e9,5.99099603818598e8,4.395431283846786e9,1.8946129816701517e8,5.085143164177351e9,1.7703929284820464e9,1.6313501931132357e9,9.43397892455649e9,7.224041447583597e9,4.865936646747191e9,9.006206743680494e9,3.287165037086316e9,5.038945411966631e9,5.927638852842528e9,8.78687893755569e9,9.101196194723536e9,7.713380194690253e9,4.6355637676818285e9,2.707750422633943e9,7.910868841176309e9,1.2154720732179325e9,1.953379163299126e9,7.303855396115934e9,2.618953671085559e9,2.0807986331607442e9,1.396206847880266e9,2.796070802209074e9,2.0859320869753283e8,2.502296620106842e9,1.7188702981078775e9,1.7738229513832104e9,6.379122965785544e8,9.713484280112692e9,9.629685943087494e9,8.562722281391866e9,5.042037404984781e9,8.870044222493628e9,6.738661342130414e8,9.682730104986954e9,8.816814168125315e9,8.850167329161934e9,1.0553642309234812e9,2.7629228334441223e9,2.6830400377975326e9,6.118574224364359e8,1.0760966846801589e9,7.27016269301343e9,5.690944260537966e8,9.96349147086802e9,8.70712174847085e9,3.014679359124237e9,7.742334842852165e9,3.176575677232805e9,8.279939665900338e8,3.8933362858808107e9,6.497680824432561e8,9.867780807302593e9,8.540547364947431e9,3.173264458653172e9,7.067044758975425e9,2.954294700298389e9,8.852028533695208e9,1.9789928401400359e9,8.580419957934921e9,7.329207146471505e9,1.7604849377105703e9,6.648955954058679e9,3.8016271146837044e9,2.997180065109618e9,6.154423340472282e9,2.1078395075325418e9,6.655663525899747e9,7.620797776967605e9,3.18986920566947e9,7.593576926586981e9,9.63561610304749e9,6.063110667408257e9,5.738873317708313e9,4.973067219821673e9,1.7355471784629152e9,9.618521493631438e8,6.841291194304466e8,8.852165633130028e9,3.986259157688188e8,6.550407837849126e9,7.9898684056658e8,8.164829591228304e9,4.896921199383946e9,8.759345011058517e9,9.48146421022474e9,4.2639053921962376e9,8.72369185125537e9,7.75618857709017e9,9.50228185809815e9,2.890178930831794e9,8.047438556655912e9,6.307805774677621e9,4.306246624046659e9,6.364800913860459e9,7.21985699826636e9,4.704542510919202e9,6.583363618523422e9,2.8649846785925117e9,6.58720238652225e8,2.715535935083093e9,5.951198791213906e9,6.913428528795025e9,6.264413701872828e9,1.5700767641682844e9,9.949305066218044e9,3.031628461058944e8,8.047511807016208e9,1.32605719733204e9,3.8704885926204915e9,8.107054358212605e9,2.3846272621993294e9,9.34557684495817e9,7.502761475821344e9,6.300515174455761e9,2.823470175001446e9,9.065116011671852e9],"y":[82.57881669284667,95.68995506861093,76.64230304587286,88.12956093974596,62.93269363395236,83.01533033058249,83.57929621493595,33.34418436075068,84.17994992125861,89.97606697430605,53.4227278800447,51.63222837777804,12.33772948509304,75.56010835019178,68.65987293306098,94.49348514974112,78.43325800429515,70.57827945368929,19.953894727609345,70.90459779174064,27.35316295122012,25.608096073252785,75.8917757048845,5.049898726014956,29.89675917121296,82.20206504550552,63.33056217192048,22.485692051299466,36.52006265578347,93.34865500948271,36.990580610043786,22.18238997379782,10.497963711802837,60.522288362230135,71.3272946595809,89.66136383372086,65.06953403081414,55.60700740140923,37.006693450461846,46.644042262221,47.69697869630768,12.95333053231803,80.65200201437077,10.297741799758665,34.98320666973659,7.676136549264701,76.2286157923086,98.26216586295165,27.691392085375433,66.81715950101965,56.36700000838061,17.26404504521496,16.459219562374372,65.41967701224603,65.54812807921843,20.19512541512425,90.91085266188867,86.30460837733126,75.01356821932684,64.33633405289318,15.344284320640478,15.06424567712148,29.089510466967493,90.18643058958803,28.984334883149376,11.752801484709597,94.42178427532889,14.854034040705278,50.82417232575514,84.06969933598324,20.860304856799928,28.521617232883113,41.24944622764472,18.01227832737221,49.13682685997035,73.73582748668404,36.3295995918133,76.90627808497538,19.629307161759492,28.416530803331586,72.24968514251123,30.716111949474566,40.740018291803324,2.167596772991809,57.620712005234274,49.33725745791734,99.5868293381052,80.11512236898558,6.158808465660903,81.41988987853811,46.1571891987891,27.51119796834719,5.408530041434889,6.163782020403308,18.19089963183983,43.80992887453166,62.087531257850706,63.020823631374626,48.81800319439328,39.4302922893046,41.910800024466845,20.613668587809485,91.1266546229407,75.34140637413986,41.50265110754703,27.439560458908442,28.705802507836154,25.392344267253144,52.984137795557984,13.703378374337326,39.18755118083814,51.79291625819843,54.64654326180691,4.481327722605433,85.60609378106273,90.69049661695627,71.24547264760768,57.39685451647071,92.14996295170583,39.86706512475769,65.274617299879,57.82394011751043,22.03694657649483,78.47732015148232,71.86489024211883,35.87506943561966,2.615046622211792,19.50584550297091,84.97738165227581,57.72371753868954,31.259389435424346,22.283065577724802,78.02640166103174,62.910579528757594,96.68149818270061,91.1255004395106,57.73411513420278,37.89736189646177,19.86921945108654,26.292219357003333,86.7382195576093,68.8329138511267,15.27078371029561,77.25705506133716,88.5423922055054,34.22659008739694,47.40567555761499,38.98679168724839,90.50750031295058,62.88389044514761,70.87737023359038,43.210446626350254,69.76443070363607,77.51877113860141,93.68250419397835,81.93468119143942,55.80955223804867,28.22864732922785,16.596968277260494,10.427618149356698,35.79565900283086,8.273308737589268,59.25749540997368,52.509398275515096,70.33102315568844,80.62634838665826,43.371608752425104,84.93107792851077,48.44161996867473,45.08210419122405,72.29079020836197,39.94249414853923,53.1546124204006,31.925908181091913,19.51328708149086,55.69896100230628,10.990959500598906,59.87261981739177,49.43250750389878,5.277950103387274,98.1829963943426,82.62140493259213,56.1396178201386,7.728615949441253,71.59953217443947,66.47215977079853,64.53683754575025,11.870618175437953,12.500926691625358,30.79603622971634,22.27852919032379,30.960659299896076,21.93538192463942,25.63659244811185,51.528478772221575,91.89019793503034,80.79252434791938,1.8394972105793217,49.81263579107983,52.371846514580355,40.22972896385117,88.21348476357751,46.31953516637961,43.743892972173036,2.1385360009734122,75.74996309677054,30.26030487845852,15.958599443708732,95.52948747342961,46.163250243767564,77.50974905984651,59.19090757514361,52.842599467361104,73.29995694633607,58.40645576569652,34.903837947452985,45.88273508572479,47.718122641698145,58.55993009367385,15.889550741560377,72.64872598934426,17.685460257640894,6.358546711191282,31.453191411092707,84.98221149239365,3.3633350741676282,73.14980478057885,59.01641461016174,74.33377019087098,60.4558633281703,21.298928292262964,12.018133077937565,88.79826843316867,44.283693246771485,85.63752270405381,65.03176548145487,84.72576779793374,21.61437269933203,99.16383302835578,46.00479140848622,70.48515311655017,9.865202533499762,97.42497256288345,62.60835372169693,80.23298873496695,70.4218681373173,10.417492776982106,86.1176073778123,52.45990079092129,87.02306191010273,38.65323186182577,36.48844344966151,3.967013276053144,75.26281406852709,19.609566734478623,32.06790864617233,82.86255392547241,73.6376530681223,93.69380309567397,12.158005400515481,20.41920516661826,30.521482145981228,30.429276403487105,49.84475109236865,13.651535418266747,84.26921401951888,70.30000552882747,73.72365267749441,74.11787485392108,72.91188391874748,20.11835606366812,20.03830517966918,23.079421537323906,59.060296110365826,7.632249027379457,85.3148076021815,65.63680515252383,50.10292219762423,12.607504766958755,80.47253729572388,12.551925408526909,82.61228095601132,8.72214510008973,39.771772849746704,49.92862278747309,80.86807318232026,66.94789537704679,0.9666288947718038,20.23957906203958,74.47578017389569,0.20305441016674752,39.86493950023202,80.0487770283611,25.713858764715138,61.623633494719144,0.3529263483885936,38.49974568522777,74.05122376064735,26.917596251087783,16.1311254544942,12.699965722570528,38.24758173195225,41.738013408167916,29.659196463375615,66.66344920330997,48.41091784391474,49.2242879810203,72.26354597462235,7.170469723144679,64.01014029568617,46.9527191587219,44.16010397845847,63.63432425568807,29.039467480433522,78.16336672596094,95.2928836980259,80.53639699459102,17.391439706327905,96.1011387024068,64.79552835279503,37.855096940358855,85.15138757018525,76.62246530795025,31.29780163355369,89.50231802314589,15.92569902034715,67.93872436022083,42.05813392219504,35.376806208125146,73.54440081309733,12.286395765035074,90.44437342085419,19.708642898974905,19.432278471776854,30.9093009231991,72.3782665970959,49.60950873926573,98.46018169565134,12.205149765124634,24.487785567390784,59.57299738528846,30.0852104534169,17.872122416056722,95.46461213869077,72.4310516232078,29.681029807216518,62.1830485506469,73.35733590908544,68.84618689227632,37.012741713188056,31.427279973324584,92.39237804216909,50.702790080083474,84.99728731903262,82.6587351646673,27.88481174275933,76.45620946588268,13.377528629302892,30.98561352152607,65.11725314456498,25.55903186291062,10.421027597998556,48.39904601781624,24.3178430985694,95.56598093628517,63.60365402421072,46.63496008536382,81.29416335358263,23.040322550085378,39.42050568087541,98.7234578596806,93.09735474999451,58.09629270849136,67.17464412756229,82.13474964716367,10.914612687925175,38.84473664057582,17.925992521018053,22.887758731116126,52.45215799433565,55.73609354154859,23.214214792756593,82.49954798255555,82.75836800937056,24.105040834750813,5.489178588484112,90.14126036949968,76.54070920333044,20.271347893842663,27.854060851354323,65.64863038144706,29.12971717438143,6.906720851581516,28.699362150634013,99.64453740201125,22.80243153928986,57.00615067966939,96.63482651443155,62.92715726063687,45.69245142761,88.0485050970407,27.655757687869265,52.835112790494485,8.259239265524855,20.73877545972831,49.66708320886002,80.79645542492622,47.03332047821361,15.94530781855228,26.950632500642058,41.43460311706968,24.926664985922354,95.48843087125725,92.9835938375896,40.1730510458546,76.3338330296673,13.95456704539263,5.914933363221642,56.14416873777663,15.706040387393404,63.853038056511025,83.11798547912612,38.46867045678818,93.30960911813253,23.8255647611213,43.03990449702951,14.174493947053012,2.9323646457037444,38.180495975297056,51.13764981441188,84.25491698486532,79.5115105997074,98.72098813499673,37.22649105260132,1.0654319459382222,29.164426359499206,65.47089068618675,61.9466142993241,52.87120912093894,88.61299347824847,18.189596071813607,47.51195730895519,15.598934817601629,78.92218840624562,48.88225400255543,38.37144682209763,33.81132361518099,32.32892115259476,79.32837934444052,28.269251796770888,38.25265578529602,30.474733106342732,15.216757104183888,36.7417713594324,97.97355884957115,35.087712623478915,75.90072563360698,16.798718750794027,6.5376076425729845,70.05024213561262,69.08236378544126,8.529412638401379,85.65120077171255,44.3130646405591,63.80936376180154,28.068599966509446,10.552227199390574,77.39729750402533,1.9041826740566647,29.465564562020308,53.532704480379145,1.2560923000130453,9.350464045501583,26.160926931383,5.002200965435644,80.46587097460635,45.33485024365417,58.740796153618916,52.906514758767884,73.7410815562174,21.77997675643355,83.42925266786266,73.78146967476245,91.65224645190384,64.8858303484484,43.74593640602363,93.2448041345999,48.50307406992916,71.66954709735991,99.32899870658343,78.06558992707664,92.04994900967075,51.268958247076554,35.033608952103435,30.64988699139044,52.4816296046271,95.50724146377308,44.11702850209123,98.82825783547842,61.8014399471739,7.952419379974762,21.987441362752456,58.41265762704586,9.78800936658506,89.40238808848808,68.78145830086376,11.779491646846008,0.8592470222068771,80.36374682972195,31.96843552257689,25.851221943367175,62.12448595378374,39.452825632762654,4.729822544972606,39.98362220576311,62.13545242803803,71.21282812282968,27.596582405601254,86.10589478978571,58.510717993757545,76.54252046010586,95.80998001083643,37.92241218970914,33.54845790450497,30.476613706457023,15.256213328438307,3.3180741929160873,81.86186085774973,1.983208518531021,65.99021284990256,81.65069647416487,35.63920720939103,96.83390321283034,22.219679574819295,21.432224923373433,20.956044620004633,3.206393764715454,14.599801953743452,14.891565598305634,2.5811752574144586,77.33292506183874,52.069302953094976,97.19781436022632,93.25556762478311,77.78699922473258,86.54652987708253,17.81930808484322,53.89425977031518,40.78785554654435,80.52604149171087,40.1540946353314,31.49111806475483,72.37014231797913,13.92885794421902,47.104968715856444,30.244764632780317,72.62878559276817,82.6859755130838,24.05437322305335,94.74101807334102,46.93794061959957,82.50681052282835,62.639523782682986,79.35961202323607,30.04428104622445,7.469948430125772,47.49425055498047,76.56579051255366,8.914724929564422,87.66201489491675,12.80661423884677,29.527660051141,9.789160592180012,23.46887548154879,75.13939674086791,35.16343122108481,39.143354968833556,27.628967889718183,69.70125741151807,55.223925542396955,2.072916617740106,2.2329382598940795,45.27688084980747,96.96553860685889,80.35225573435325,19.935243544647243,39.353559595092136,13.448496108402885,39.666701693017515,33.853845136828454,16.348836106383256,5.709015589763045,13.805405290486528,40.86747907365134,30.81174439175608,80.9592823860896,64.11510577519763,80.24616452886822,73.00640450115264,44.34513021870878,58.17490153715419,80.03223003241573,73.38050736442244,32.92155909816902,0.9034207867438693,74.23126376900085,15.36104208757061,99.81605405081496,90.7836329064442,24.937811862019423,13.288487525895999,53.223763146977795,39.0892230206991,6.002508840891297,30.080630852970135,73.4511867184787,96.41597088637998,80.54453831173682,31.643449635438902,43.08220459615174,69.70718618306287,94.59516910688836,10.858756067364883,45.60187396156332,38.4323125141244,63.110877293131594,71.01783694221585,26.08972698380201,61.13500525900181,83.87905751705864,9.397106670526668,51.30124051064278,3.238274430631627,56.1513388443028,70.52602602496994,10.302663719284066,32.551909046261464,1.1876274004547493,49.32662484287611,50.967645202579995,62.37404677149723,4.302821621640973,13.248992204607713,36.093473681295244,38.94721290422658,38.81338699867277,69.66226560717462,26.353098439088395,92.08349711384312,65.77053214956514,16.038661770053952,86.94157588280066,93.24564065252326,79.59309297607551,22.78418932798827,12.266975788193191,60.05998088173381,70.12760626792199,52.17925465811757,65.29051913377559,35.398399244062475,47.163480407944526,79.55140736510518,29.80010857722718,38.85748467412883,69.69237269493905,83.38458874385832,78.79301702480087,32.257572962798356,13.719583301501137,14.43436745604496,80.91388562286768,13.625450470422528,76.81130860283719,72.1333731935335,3.96884723954255,59.459483790688154,32.08640717869701,60.03302829708799,94.53987440395785,24.734162809121894,66.0895548973406,83.26022428779054,34.07112849285935,61.61667396829657,65.12522056725567,73.7342044842348,30.31343375945992,58.800677658674175,16.434759899139483,87.24304650083812,66.21010434989346,75.32683315152879,18.933450026512567,50.55603612702717,92.10309441246075,30.34186145102239,22.217601075753812,92.89508549989756,77.94509100903677,53.28744069948292,37.20450698042291,48.42516798551655,6.4636005505737115,67.31975698206085,85.89831848108011,40.447006023084164,2.408725682113877,62.061444133058586,53.80566310587444,51.670283956626484,87.3445147127117,94.00854186971962,97.24758695416543,50.63388750045084,49.832845867911026,87.0401256171288,26.487133644763794,94.07578684124562,91.5039079289309,29.638141643939786,25.19679548544078,23.515179312963607,27.006308960145773,81.72513094316477,93.04774144066776,92.11435999603398,72.27348220838941,13.591025797593826,4.270463548108716,9.50645334273047,87.20960187886347,84.64057239503235,84.57384197607017,52.91823084232171,65.48781664391898,82.75755018082198,33.83047914695268,86.44224843445744,18.80940156477343,92.54525029660331,25.49187914717169,72.35337876894891,84.10608706079039,56.42402786279151,30.934724865573326,46.4600199938319,80.18172285072411,39.720947021143346,14.401786215835365,57.678156260152655,55.421899492376845,47.95437136499097,23.55054790980088,45.12601059529702,91.0166237353709,17.142388513455142,39.531121228327,31.50994723066193,52.347124775567934,98.30288507636794,33.31574784232222,32.346534038269766,18.656099554755023,67.61609239374992,66.93964162662776,81.17028158238794,30.55121162051685,28.78751490311371,45.092334041538486,35.35066568267854,12.395595080030352,67.95893835885097,79.44909364970928,27.22325086418137,87.95373484361905,81.45896447830538,8.40263914753624,14.839843636236683,91.26877569100276,56.25392283839984,23.00199706266659,7.047182858639367,17.906767695411354,31.781971321996483,69.71503809861937,54.18516251717305,88.64842169276116,34.953240874085836,40.955642712035825,63.94728448432719,53.01739119270494,26.809560298200996,20.80313062739416,73.86347404389059,70.54345435722253,21.01897985551173,6.791574869506145,19.776377588954475,22.575712577005646,2.5725826038365263,1.0330881166242256,68.87793613944628,19.69452344287489,44.807803279465176,51.89576951748578,10.092302325057078,15.513119109532758,49.204771766548696,45.57504567672478,22.25158456967892,11.958701115626635,0.7954921121025693,58.45748117740555,63.93609290072714,75.37307293740182,43.45605940420416,29.598347787584554,93.69826202131607,82.95529771120782,87.65684246182887,66.74178042026814,68.16719838247815,71.39776962219187,88.24615242145906,46.27926475561611,68.29013017583354,33.30052056575552,94.45832810215448,42.67429700687877,31.8739660568508,95.29872910479627,26.913859811978746,42.77777538180293,27.0028967652718,5.460126780800689,95.95079108267437,11.310013319577038,40.706886792053055,61.62653815228628,32.25941758816289,50.898861603222954,41.556547342899485,0.8376995890938654,32.926205566020016,45.10048141388003,35.8430684208431,79.13869729108245,0.003558060375230543,27.307444258925507,67.93499383821212,6.481374250204331,21.256602740395934,52.457358818653724,55.95133196252037,26.917396407885253,64.06489601850129,94.32588263584411,80.00991839746801,66.46734871634015,70.82727992333723,93.69381548937147,40.842239521565645,70.24201296758223,67.95047814882969,16.473932950468907,65.30545894106461,6.7705661889381545,12.798038596109617,98.59307326426753,41.36448623217438,42.78996219364806,65.6946316890641,86.89600521107089,7.4177347396774955,51.31603904036511,50.01563269332704,44.1050628837173,46.34882483616023,92.96285582231256,59.792428129665964,16.409137767503033,46.74650228518678,10.117419507005964,57.399299203648766,2.884519052630097,77.55094387548603,78.58314425135441,73.7193177207533,84.43457822414238,52.409556511329605,35.93643099053987,37.81427461168878,26.86680805784961,71.22594876428282,54.16328782198568,85.7017393223521,1.5199820818271648,49.21280661641019,11.132666401606905,80.44708942764834,8.196136166299507,84.1714904553189,35.40670086952423,47.304615828279765,28.517522433629505,39.47977101109183,40.96148255062053,78.44060173233967,69.77196201084148,10.358693940952456,70.2586674059251,99.66587599823357,88.10750999813396,15.799366092100131,95.1423729459528,51.77111209854578,88.25663802247291,72.49953650551696,43.862476823958175,41.89745404431402,47.26147417423556,15.580488754588629,33.71079424975413,99.96941898985695,82.87262611603656,20.170905371941227,43.135627391974054,82.81235367192687,94.09119862585536,51.54923963327893,57.22663493024972,26.7095036438454,19.562143826439005,72.7370134846436,96.4405562284332,95.32614135789483,24.904515032498132,18.83614782348335,61.723181391838466,55.47370845090379,42.05833424284049,69.69890171870193,59.65270420651644,0.9016876469152613,43.30387803476425,78.58353866044872,68.53008540998154,74.32495223256282,76.73492850507552,10.329931834782368,75.01384581417112,45.9799309715214,95.85749530177165,23.140830495165233,38.44833648161322,74.00001548318573,70.72339361770695,13.161058672875015,62.17980873772094,40.257515491528615,47.897623440780436,59.84826319412731,34.01992000934213,46.7246823927695,77.41597609828382,35.39756934399221,6.873545603607145,38.34252518014705,56.32584343192865,11.016809282810447,7.373259792509279,6.171864181789777,43.15175396619541,12.297612834172778,79.9186543200566,68.3902999129956,47.68112051957334,1.002996888614005,71.68828946202595,6.508364000084422,89.9007357458814,90.85078957883528,42.009141739189204,2.652062828036783,35.17138413413352,72.21360475018476,87.31050417342908,37.402920182122834,53.935871585534734,68.90983411315707,62.65719700291661,1.840446268681184,75.12890141803234,59.094249329325066,97.3892716674051,95.88757368232731,82.96795795818356,72.72904744949777,79.52739881196538,43.85877104904212,38.96356659062998,44.820409579016655,88.61448298411234,51.28557573318693,87.75611936929425,77.60673736421768,74.66299024617454,62.27696524250036,90.44342162546859,68.15090010042736,23.881764266756868,50.33411133932822,77.31269863872608,12.948850636269638,78.85872601543787,69.16457774431476,8.97203446957886,63.22736504649732,85.68708961977163,79.37857360620183,85.21739160381485,76.5003916917696,22.711643240816148,94.75477139091562,14.505037316650537,17.36942372438328,84.65862368719183,69.34544267976354,40.493773901773565,23.801584331818148,88.57461310370013,83.04895635492959,38.804348789055396,88.7922006251715,96.74188207666158,13.206961766404568,76.24277147993219,23.046153609691522,61.40524000380794,27.797461789902734,63.855093919181435,2.2414933907778045,95.7935141812252,93.1302646602305,95.90415528427208,13.543471737294865,6.591309938449408,15.229545410926049,33.07996070784187,54.20102253548863,51.573598031344204,76.83929736974416,96.77467735049657,52.22439874228238,33.36540384272063,5.3330035776322005,58.32789747966696,8.73648870263829,6.974749719780105,8.019288876385854,79.74696528729642,57.034349921725145,33.45331099639763,22.988726630669643,52.51424112759307,99.93167363545874,13.277842687154873,81.2024870294984,52.19062768881317,43.78036278009597,36.66791341124684,96.13736254885447,11.96460008674719,1.054087964805539,31.950512102617846,72.4823261465921,55.17026670871665,82.95254860217503,30.05686793534139,90.76084813044426,94.66670207725684,87.79068263503255,97.06207725747232,44.17560632756854,9.18093491361358,3.4827432546761905,33.98777178752104,48.09987505580875,89.65382958523,28.895695857769176,20.30640280867466,59.66508382356043,71.92692618976714,97.46107107717594,67.24891132203325,48.833637334555334,52.19475103334419,12.983236168189228,8.172161360534702,71.93648452673462,12.225407021059286,16.139565617004102,71.90124779723047,98.33085169087676,54.840979358093676,51.42471061537014,59.58856378201296,90.74934309017905,14.814382102250267,50.37738991924224,17.43139732305209,46.45422356261324,25.43189859818451,91.93244028603037,21.075230919301436,48.25821509036644,40.10700204373497,59.06448927883646,25.857344785887616,52.93532035435323,21.177646048581334,70.84357177638087,35.70725919347968,61.18049762298609,69.92281779281198,2.8772403701035842,19.11946045884593,68.08148120095416,36.814533823104554,82.7790213193438,49.99611321725654,78.94755396523895,16.883714633730385,56.702463773963444,74.87899292836804,62.393366620892174,25.79617307255929,43.48060753231893,55.57292595325587,88.3820972662834,68.01557627925028,72.40856231232621,40.0851637432895,85.414583230935,37.402262143494404,36.019901964435164,8.490498525097268,35.50384816164982,75.85869932580506,3.2498752982541013,46.193853096335715,67.77748470203157,6.989844241317811,30.116104582356485,80.56145500658643,39.121468480562584,37.79811931484435,61.02271849829817,90.52754291838492,43.60561636090763,20.80462452393754,26.03687583629295,28.057987600802946,35.50923514114195,7.813751518894363,37.28876186811404,6.557741925480465,55.07852974686141,12.456379294554532,12.885559525509349,17.561051797231407,9.217865044171415,41.40576232698089,29.710894047794312,9.93090053787099,1.8705334816491836,56.23151420725407,30.822320931249124,63.81623071405127,91.0064653406198,99.56482981324119,52.41198570467071,78.03788264213824,86.66300773844215,6.399880042186279,37.691486802273644,72.69088339794222,22.796183640133037,86.42984130663459,78.42969531648795,81.2255663005173,65.0872288291726,3.7355087476335203,62.93589180710445,3.184583751130232,39.59643883300171,8.030182946508779,92.45169547351793,7.674968363906165,72.41413529322462,6.905201179564823,12.075233261040552,86.79334346102594,73.26657759363253,96.7765246575413,27.18057244725364,22.90286707868715,1.5789382757661508,97.21575775384525,56.89682282598461,87.45350446615218,31.277844065203908,17.091654472885587,75.88862885767116,8.654203091944868,30.126079561518026,57.767233325061476,97.65965309349532,41.619078157399436,50.47356414292924,68.14921817891302,1.639127961204978,60.504439020874024,23.80521071097721,36.913504810810046,84.84179655398012,42.267495794497776,96.70974628883879,10.138401739233128,51.22146116074475,99.35536490751635,85.29510356874268,98.01146561097653,28.009449966302423,79.69642319800442,54.53906677780225,72.07957336124832,63.71922241376951,31.429293574865223,12.169068701093344,38.0342472563805,20.494609586364554,84.34356236176647,45.79403049662694,19.4837194342781,23.64000970246316,95.90035847752914,82.26623685470742,69.88643514154288,42.090648677482136,29.88156176997293,17.606135780810618,6.646326746937225,89.3764870799483,35.09409828433447,88.68205899673211,84.54020741019046,60.31097478108391,28.11556202165533,89.65753871963078,81.40923271583058,32.59499870736,48.35221806680659,91.4745019871746,46.976540990870184,58.58954560917208,84.05069492003597,2.458292492577552,28.743889963317613,86.15215494304852,24.714629080223094,49.87378783010962,93.47323687690974,75.65150332854509,52.61371926512538,82.53928849582546,55.50964257393688,47.390772767729636,96.31651042614118,53.23147802886549,92.16823983580709,59.968215577218565,30.397029988019064,2.634376750896106,88.85266261956541,90.60736188302545,29.084469070839614,79.51367069458924,80.13008792008051,14.973210663775394,28.91092838276499,65.62601615222529,87.74857950859534,90.25522009506864,11.202126689044755,95.52392536526973,19.261939959023533,93.6579780129698,30.6409788775056,99.06957188157148,64.94734864652239,21.39049188199649,47.07221049549381,74.40969937614572,72.81020657999105,20.60988330436838,25.841613181308563,92.8873668726391,36.78057970971527,81.58638605661552,84.7879330415705,90.95243985765296,83.7061768561982,76.12129140099431,92.36464212835116,34.486780968241916,42.20023625972652,87.28855551702668,68.08974964636329,98.23053787377276,65.74374662205744,33.9550892045671,49.377241182321754,53.07835527908843,87.67615694332197,88.57289008770573,28.81697804382385,9.84067763813754,21.865551768472933,42.66462188696567,47.65856231966021,37.036790338474844,51.73591069011335,15.858578948513157,43.565511061792286,13.668739970357802,60.401182134140186,54.969017885622385,72.30875059928901,98.8014266894143,57.7988780456947,87.4599741793681,49.43888505524407,44.95598875073667,50.835733723139676,92.7251787279148,8.303443876418193,28.72141021071053,72.094195850792,86.97125106747309,38.73413266294581,32.290014444572634,68.29575739848126,45.9723806920854,24.942838320359286,37.87244280538826,46.28978862809953,61.67103658930859,25.641845589599164,58.93981512212476,93.58064287973062,31.381847683452378,43.25443526738473,1.9486004994270112,30.273245817396166,32.9418454636687,88.32947326278632,70.74830074209162,76.57313896234024,65.75887002646141,50.23098803716313,56.057079465665396,64.82246175246767,54.96309292619427,92.759294488835,5.098676557162962,61.040385473362555,64.08520093408865,88.22955222145914,62.784007702350195,40.45363798221309,51.8712719700572,30.284603181959024,83.32080004119724,58.750154309132185,50.291923855915485,61.76885236154484,42.479944476035115,8.055283407943426,3.5450025057358836,9.22786079984933,57.667910331118286,27.10337975157153,31.942201753387657,10.111582944434783,1.1973217176403872,49.078338174463475,72.79080565767765,4.081814026877206,46.20915740189431,78.68615849087948,89.82525139113166,41.16064384491818,81.7025101585287,4.105682749393724,23.193889991181305,48.54374837950384,88.60351406984378,88.46190352666538,23.460587348843443,44.245070435923225,31.799877380599504,94.66344456464486,17.68399767465936,90.02820259191584,44.90249062051998,79.93464827690696,97.84369669522258,76.55722329931834,31.546065651055656,10.706666495545637,18.72841998835254,81.04780391530997,35.402680335681666,76.67733161811321,71.69607463758851,21.066281654087405,61.19629334644857,43.637366143845,59.43006767795465,48.145098991362346,69.42086717773797,45.88577659280645,98.11749090165745,73.04483457910906,10.530179014219975,50.633769857632174,84.89619936331378,86.85023653347096,44.806590026103024,84.4346660944788,80.91669476615382,47.62483889616088,47.13316716194017,76.43938078926392,26.518112793388237,7.502014272316904,53.10217865742922,83.33857544102378,58.89431360042357,7.670597202782448,26.251689929263446,78.74650729252043,30.78153483693996,39.02823280581477,47.34240317540003,65.925378878148,26.321062841349118,80.04150120843914,35.883624829172554,94.73873829287248,13.60561201980306,67.04556305703258,87.39520716346377,61.45614748288445,70.7071975627001,30.35667846522735,19.15418615037566,99.71493381123949,16.38595274323178,48.92580351283937,29.946928697138798,96.77070957948246,95.64277730402706,13.495071007607152,74.85504337681775,91.28851681131103,94.1234754490453,62.7307470709096,94.27492108055161,21.638673519013306,54.89286291904504,31.688121884849373,48.37853363144825,2.568770845724555,47.600581386706274,61.364932895753554,93.56913918247824,66.49697455645044,25.255494798110554,70.80372895967369,28.121539606001388,97.14835644635512,18.807316739354572,76.68657710739022,96.14838247526227,89.61599650898007,43.78571991045305,10.579415073901366,50.005753275681066,13.228378636040683,24.12477019996362,64.9015523792064,42.49678468771949,58.597563672218165,20.827671066650232,20.061429277324716,12.073720614553206,23.578687508765107,52.88816355867373,50.271951926417394,3.9265653396337585,50.269018824835676,72.1141377523603,16.52610761061255,65.01576636630811,74.71669686421579,83.80493664976072,93.73467992213638,16.888122495648805,6.731223547317001,67.99570722335189,25.83083046218523,91.34814549498485,47.83464453277748,23.239544512603715,26.3482745190567,18.67651293654402,84.28689251763119,11.727277201622222,45.72100482099374,14.675828214276876,32.21875914589414,31.536602108644207,52.7165049666871,55.250585467251604,73.76058649421832,25.284358264872473,79.43084508661873,24.01532808382838,29.44657295901818,16.90103247756216,22.097323654886203,96.67831834075112,29.245556440381936,44.961687766456606,60.21085208742144,53.51183068789116,70.28277679715521,7.5604093828317565,25.0210449858291,24.978762500663166,4.3931989281944865,36.90327733688835,31.347259638091675,93.46933706840757,35.11556566994395,63.9431290421112,31.279046972204295,84.66638402639168,86.2636110587686,21.58912528739172,52.64890467623439,18.51900484001261,94.87769997367911,48.22905713945273,79.70076296381978,60.35406276936366,33.14376255519848,71.42274745367406,31.714368674348414,82.04701071517353,47.15281568020089,28.92901773519264,34.077716914626585,44.43150847331151,64.11605755446595,21.361619157855692,49.19122193572317,4.1068483818927355,61.06593391568762,42.19490094420008,45.292218699878305,89.19334767791364,13.184325989233248,3.834444394642733,25.43903958302376,31.553939244078787,16.74078807217886,91.61824158992444,61.79449212055278,26.466245336428774,76.49594822100663,45.71521491756504,46.9641667921452,7.931316770923136,34.89819291930275,98.15787751244153,87.99780650465287,54.99682075292524,63.97483491131511,59.79323413447003,44.87419098526196,59.94823749759484,75.44780922213633,3.3067659938153526,61.530334938811436,59.70801867375106,13.965196208561437,59.37926188232237,58.7699370658841,5.433399373116254,76.95354825452894,28.614317603394646,35.35676306001405,63.51190087207441,58.53506169713236,44.87836949697521,9.486631752658003,88.76459552227038,16.373771958353835,6.397799601067222,80.14286379089441,24.71308088227263,53.883804615632755,85.03630566150237,77.0652191519657,99.96120856881714,95.23200822077459,19.689992678943767,68.78570687590218,99.71066623683302,88.08844477485735,67.62572307748624,60.011240888531546,18.96152025374548,5.5183007176373255,59.71879942495064,91.04047305943175,1.556706489600912,72.23159404899889,28.797295113479326,45.8216700078935,97.0940900011284,45.42812024297332,45.12212604271275,30.050991391056524,88.75976947627123,68.35251722570841,1.5703372091653733,97.48225165412096,55.67679897379444,45.45636811631748,89.96704625218291,65.8140585035271,58.25018465399297,2.1690354755807717,25.233196343448007,51.93423115235149,78.98210580238654,73.53460225090706,36.47739795245464,78.69893885885973,25.78882385751321,67.02761580414193,69.54753305019563,39.65533644870811,17.88245811652479,74.88758503836132,5.614538113967504,41.136535240763465,67.60276230809686,12.315982749014331,41.27445946124604,0.7107728306144145,95.69389117306162,55.34063824853336,8.693155466957503,4.807133712301626,98.26371054880863,40.96170183991374,33.670759663849466,1.3656938683614728,83.77867239992042,39.08779112950882,65.46015688125503,69.49397216473801,10.17871348204904,98.33920516158872,88.34548946690113,40.78125342669801,52.43605441044844,78.05643980122518,79.26631631192281,86.98770002637096,67.05224596846422,77.03682706517972,66.08740422520647,46.32212868739375,5.118030771047966,60.614284449440326,92.93598520165604,39.301369419918764,0.7101463748283465,51.88836487348165,51.27843842850365,25.84478601020994,5.951265871482603,41.889474108210536,58.62180157545954,44.76983375288067,2.711600649876711,30.709513109160746,45.718778553658844,41.31522243520047,81.96135105058714,96.49111400349358,37.778418425417506,99.85619303536886,3.027897855506223,13.736497801477165,20.834690270981316,55.65743999368703,81.57207027357497,92.85550447799919,60.63768407072325,83.2241636653626,16.068926407712492,85.55710560070628,63.29731280493739,69.319433964103,53.1287727043132,61.0557058533537,63.30297928304653,36.23918652406959,32.22542163012627,87.0612452879264,50.067334053736225,15.03896398323663,3.3187246073945076,27.080818316923207,5.825500504179937,21.67441200322323,16.543813406425436,98.38946253350849,61.41922868694773,91.38624837444776,17.735936389010178,91.59358527264449,8.516000018147885,99.20261379026722,4.795076368825157,11.86221898403681,87.18494950044382,24.79526063722122,86.98568282652684,14.039655404491235,23.82222805419175,41.046401967320975,50.10345899193602,38.671520101848344,19.304231414985274,9.914360795159471,39.34178731085963,71.90975852095262,95.22675739711252,75.71530146637072,80.03213354777937,83.81573871778777,69.71418276789603,9.598659728905812,49.31618139809421,26.00127776265525,17.297277791018185,64.68472551143057,64.13124143433153,23.765428053000235,19.52881664867997,45.464978963267164,85.03004225816692,8.390076106348342,59.50563742100563,80.40666762261598,1.451291792414311,9.631225609074223,97.78923619620817,65.58308441811295,79.61792035869975,72.27664342694527,78.75095216724799,62.3409801435531,47.783917112365394,88.98772166065892,75.05350648646055,63.85223029303675,11.620825892054276,75.34757997673796,21.674161811916747,91.0459701791021,13.026727538200467,86.38538961990909,11.801590975597254,15.68414513261187,74.47843614077503,10.987141684413547,7.576086560144468,17.908060587865272,98.26592440632892,72.23444281598502,10.849427094017106,70.71730703900924,40.32575949767184,35.45450743068843,45.70461183608967,57.22234395040802,54.57324790273287,14.356256809386247,90.34919669440413,72.07616476404735,28.059761016643524,2.741541018080662,64.07024955045746,86.88507954011102,8.212665216165494,19.812416113313336,79.19745264150377,60.325756009940946,94.22951613295443,56.93349790042379,20.083961145650697,32.99268854263452,61.95571167290075,66.99502337913734,80.9468581433958,52.48187791011816,95.40668258010663,29.18073204680429,32.87758645728983,59.52668691226233,6.158064093734739,59.569239507032535,74.72966988398154,19.192700876761037,73.12344658278481,20.401141333168926,33.969126754578994,1.9221414744881038,29.214133754613457,30.59656747127931,5.518608514581336,43.37637529878447,9.514162811984539,88.07923074211982,60.62004306574343,54.53803494538633,37.383137696427625,47.344981507833104,40.2160953481747,4.437400940367664,68.06471319298579,2.860780838527155,13.985579221326905,62.922132304825894,42.848069605979035,9.556010464011312,67.66861127979409,31.708204348229184,49.46256232406683,90.7739372008289,25.508903603261945,22.69585634666962,72.47197330350647,67.96943804373792,12.027869132765401,36.09099932083447,91.80640672324726,48.814144882307296,73.43026962720332,21.874850331435724,20.003427910948613,23.558179948459944,73.2494314873962,2.9266317029800426,0.47101647607764585,54.60878535302008,65.95723131793913,86.75236822918025,75.2737801982335,84.51445047309106,45.57709267368819,60.03574832627092,18.611776549049296,83.29920430593899,11.684782745504362,86.36439280047853,11.987211288380406,51.94837547968045,36.73940169070823,78.74892506444833,6.418543293553814,35.76826312811463,70.81686106645529,77.92527264960546,58.28538158223721,68.33867325167459,45.47598681009632,40.45664636404204,30.40084699356884,29.490739791395104,34.13647238144502,6.15212567529313,35.433446746224085,99.48236359762326,12.943765634421055,80.84078380503429,64.33262305638759,19.67357800227907,28.778193923589356,62.94194642600153,44.536333265129024,70.686381881773,14.554503087014526,76.01715819940972,55.755842882889404,22.42078800523769,61.33869051248614,65.41073036134314,92.99362022220059,76.76695944771261,24.18866307277261,29.12788771371726,76.1603680102397,61.61301425357085,77.72018307504287,93.28892261011178,1.345981151843445,40.644802056607574,52.76492380593797,61.73079618496272,46.735570095544155,68.07463604922158,17.26669011227232,22.417986360591392,34.09393092220523,93.4227790169024,19.844682371971757,85.21488610590573,45.44868878626354,44.76311402634353,93.10198362632856,99.91237865198312,15.311516614787134,16.115407955227322,43.503320109158615,46.14225376078635,88.52724177394052,77.47873973659213,40.79021582262524,43.11665774567063,62.98218728352274,33.81975875684946,9.181602480260231,51.800505389243554,42.54868905844648,42.798401496684136,73.53981247046296,48.93571547308508,33.391108127810156,38.15602982527988,73.01156285904304,97.91828531462184,99.91068356290216,85.21285022338179,10.756664681927663,92.73124265844358,61.86868114203674,41.802199579608704,23.151602616418863,94.74439323782113,52.838404873962816,23.00019498498661,45.953642368095075,72.90821382568937,13.544123626287119,23.48268902086258,63.242723906618515,34.28701696921256,26.593784221750195,50.15164578018296,89.39187545714786,45.427332236053594,46.2680790508142,4.230557671484636,9.79727818611168,20.867431869662223,78.38815226814593,25.35268016121138,32.11974113339448,88.37817680260066,38.36827509809934,76.46919377102236,44.430221049253696,14.484879577288057,49.1596645977754,74.4428937866785,49.51208813512652,2.1951303673134026,74.37329038275952,15.964797235733085,85.61503138596376,95.78714710295974,10.302835698104229,93.28783536305136,39.705062637713226,21.301758440338283,9.490125252168212,2.936133719326961,81.58713014159589,67.46385819760356,89.57521156841638,59.19954008544538,35.61834028919174,45.782888467726615,11.551666513544046,52.65058368903185,66.79743688743869,58.58317317229511,45.42066177948916,98.74173814791189,71.00665148435186,63.15404134923538,11.077959253967762,49.67450037693124,13.085280360223006,90.00393435524707,2.0205732633966744,99.624432818929,97.07139861361215,61.52471877975911,64.81911822483269,32.671829321317915,95.05638476762658,74.86328446577953,16.855409963439282,14.384905415446203,97.46944658467817,55.35844603137616,50.12681912710356,78.81484860122941,33.49341244288031,97.14102828252422,35.974774215416026,71.0021886221827,14.531023319717262,77.42271348558067,47.75332847435405,19.40666379345053,37.014140125288264,86.53840569054087,4.004790321536211,99.18684024116253,63.01117338078745,56.41869278021052,68.49383586529616,21.42054098637276,74.6029409067852,30.79448635404225,90.50068661775133,65.9802644863238,91.12367565249191,14.74823992781923,61.14567698217107,79.0461818067397,51.79236154697007,64.7114834965982,61.58497493060142,12.104772143226706,16.72522688909436,61.93974305349717,78.24765932851906,79.09271595589951,0.9228804317196526,92.07514687367738,71.4886969568772,44.29258658453812,54.213118914660406,27.742461887118854,1.4407771430587468,34.36726734367137,91.90449474877904,88.87128331215159,6.255320275698695,91.64135926510326,71.60843602326891,6.4019108987546485,70.81108870786481,21.4076951871078,80.49855715358157,93.76791074022728,6.2858835692590205,96.47651697293264,36.49696975793345,67.93342932288597,39.65245661934757,93.46757020885539,42.912328338200865,62.313955599466034,15.519601817218586,97.64635832629118,78.01739334407071,62.47860259056445,77.0952813111117,22.43546877755831,19.69514798549554,86.00019661059795,71.1234400410939,82.07957516193643,69.52463347444498,67.22423355222122,28.53792000244847,16.741965507430688,62.83977766354708,99.59929452780104,36.25844132424716,50.98773924086078,37.06241591952492,39.289964670398916,55.067047078603515,71.80667026653586,94.85052440486838,67.05972389008949,78.5847798071972,56.263343543873376,52.854155792184464,59.51519825478968,66.06178504422103,31.041738657716078,59.700494231421665,87.3535438843961,31.824674889882033,82.97077040490561,91.05380138379665,39.13688197281072,77.16337590416346,5.747232960968141,65.76571685534239,27.281361600264333,30.14789538879239,47.933609877211566,24.747412463525386,88.97092244261509,58.70390038541914,28.733158463238073,44.56495915696061,90.51629619679974,94.41103382520637,5.872190767189367,95.33951858247694,74.85883471117441,61.674066732998476,28.98517323809604,17.88728318853491,84.3533796767113,47.904448276267566,97.48217132479596,83.8704244641406,6.159118842720368,75.97855951837913,2.8683977640246994,96.70304354464217,93.80008766438127,30.91638292553027,46.8507693822267,74.40157485276126,57.714464578559756,79.79986316054915,84.28205604378368,49.484369420508614,0.32171704799476286,65.00669246592163,32.43106790775433,2.3116780282046223,38.40907777212917,84.78882821704919,14.20322749054057,61.948746866604985,54.897925196001594,95.66219456419749,93.43916064958626,6.394067392078318,9.87836408973487,79.95401674197255,38.344745580493864,69.0377878308379,53.282365209558655,47.75173818226056,53.86082726208189,42.878273807774235,40.189546085759275,13.776870747814552,84.1355999934579,92.74113785317599,2.3209267742481776,49.07883903123279,35.86753836245731,55.38521678251157,59.525433202396094,84.29635600448006,83.19304751654177,71.54622120696548,42.11713877263929,66.21001428888937,43.86474799110466,0.7758555770843056,36.46923625105655,94.10271175196748,29.38782155731925,84.10922593367022,53.72081396056515,96.21587020512162,35.75233851346332,18.199036900195477,28.3860463194577,37.78445731151869,58.656793529649256,30.462235778954227,62.731856922845886,94.18910868640597,99.84439306786678,6.3946972530764645,41.27527253112548,33.16803145671734,36.29332011206995,44.84851906883285,82.92494485153107,20.297433459630053,38.3148465865776,51.64717189405249,3.0511737853727072,61.3705562973543,70.53496385769988,9.225849714656897,96.52004709940547,3.7902392983418354,39.5256356295392,15.8149203273228,59.54251906280261,54.89656489353091,27.997018707421518,47.23388203133767,8.44175275251805,27.013148214967618,45.49234942796514,41.377587789064776,47.040234342572795,96.52683430754644,5.25518538323706,75.2035877822027,94.33611364234189,49.842715347333645,17.293962565604094,7.813352324849154,50.246784284768964,54.817810513031496,28.858646206557438,62.70982259484822,20.846431019747026,61.45339797359695,15.007592302594874,8.513948016077698,25.24717873136759,65.33536809012293,43.951604097772325,7.846472846413488,19.093381702693122,52.388194191816,52.21122564810634,34.284701267995686,31.033439780378846,95.41446820927838,96.61751489504303,1.7872611772416835,1.3653610940569827,32.36693299389957,12.59261893702962,38.78571701095631,28.885268908656027,11.427989390512227,87.65766658631597,22.106099167462045,23.75418425535203,96.39561154201739,96.89706520322179,28.39902827074672,20.006705594635786,21.952468139254634,5.357157085884179,5.409711603250155,24.745937704381216,74.08591444016722,11.681562609683183,65.74276256782488,87.01138680202104,30.054656410622314,33.36188252580499,72.1996554552221,43.33596809787469,47.55987612669603,76.68292697924085,26.17361066938868,16.18733512482623,32.38639980570282,19.894056180388908,45.04214405752718,51.56250049315584,30.069359803452844,3.871305206399833,53.06203484013783,18.284563954045986,0.29568670163721,65.21772983392097,96.88054823038202,66.02069417706372,1.198865716494335,30.287173869822492,38.39194684287467,26.84866343752471,71.63974957438496,78.89289233143303,3.360063188785145,22.425513618743974,30.815336070819843,63.70243907875631,76.8791369220005,26.5518748931002,49.43617468900797,18.504804785480932,87.01676745969826,91.57194656334312,5.663654027975418,75.66390293940545,53.59814450534939,39.623169467788614,43.97689518138307,95.71585823271104,66.51771231040395,76.67607312269413,84.4933681157303,2.001145460948861,97.49520002928921,69.86847793940383,96.63394778775384,21.28504974446681,78.33477787289992,14.460259366771899,57.60889944725769,9.121169184541845,22.3557068401673,81.94646185161429,68.61757706599239,55.57013645276595,64.76561703807548,81.43928417162017,20.265790027041685,23.990286151369823,85.26134493173075,74.69411950798599,33.483044869469815,22.563953181893382,80.79637549752196,32.69865716901277,21.201316446890438,64.0957153845563,25.201058154423194,45.936477872241966,6.768207821963346,60.7142439383642,8.235853909764446,16.11562858193154,75.81905760086059,69.3664702485361,85.8785752340974,7.841781331628528,20.90927616001408,15.105240073562909,72.36824569793767,9.707960383307434,61.56758317693585,18.238578683858407,52.002650996772374,72.10391202173274,64.69616404789672,44.69632302611741,43.79484827327457,69.37492004306549,5.309639078056938,90.92670734360583,16.1524943403081,14.699972605372302,84.49919811836199,92.94160941097105,11.687692471032939,57.23049159128897,35.90113853862954,99.87111919214887,83.65914063141938,69.48122866079018,68.02741416559573,66.40222204863848,36.481640962291706,0.14598795300007072,41.94921643836117,16.168077686149374,91.5052210757273,51.225935433409234,16.56371243801421,32.48971564705957,69.67363115030449,32.9058383275712,60.60364456017413,15.512899553644942,34.40429788068514,37.674014923676644,71.60671886849481,39.7892084151688,74.92798874644066,88.46897824005826,80.11174432943203,7.989187555904564,49.29839987645997,95.21121059876288,63.989206697625825,26.998842597361396,59.280049613816786,75.16892533118644,51.64428107804948,22.557220060259976,15.02594899496793,20.89725930795463,43.319470058620404,97.94978032399439,47.061907336717304,18.968389446204746,3.4992472943227493,7.629845167792293,36.6073202170643,52.76440488199603,93.27346480696474,84.89806521469369,3.2920091953685504,33.37617145871351,54.06015203818506,57.47885930568412,73.07369348039636,54.48175846634036,10.329097896216322,26.43249922345936,52.25729760184332,13.219848645313448,92.9203804503205,89.18032068247078,24.003412936221636,45.485007024856586,28.088480680779103,34.33720491709506,79.68643012018028,31.932221925537497,74.0824648139636,3.9230858092544008,70.03602107349461,36.11322999975906,92.46145872381271,7.617701933476628,50.62678287222951,6.877147742446221,1.8407841683712234,61.274361589765306,7.900668287198798,62.43017365884415,80.94556354307467,64.9058483860442,20.410028011480986,25.212924390243796,51.85845411509873,14.23642194163608,88.28209962281421,7.945407044134656,99.8225948338334,41.48991625505065,89.07330866245631,28.98096412309964,97.38662995724656,11.090359686390794,93.57309681246035,65.82129347629223,18.73347977263232,28.475634770121438,62.88565758719689,39.431953569438626,74.30547204677063,24.74723251238682,34.18808769736582,76.88548795009537,26.264953642034992,71.39837628843662,60.08204018322115,1.1897617159577822,18.15960486744963,74.45370554131566,96.16844551283206,32.22331077889978,18.43690884334436,6.298215006684449,67.5237984761504,51.26000209721467,50.45828051867883,69.95922202270576,86.2732316091113,21.694441619064865,32.546245424559885,87.83908697950613,3.6783690722015705,0.1376368522308713,94.90421712210558,91.68325845749293,83.8506436027884,13.781547141472528,83.54642402655162,84.04708508977144,14.057822979545854,88.86114404032531,10.628481913018895,91.18412891294385,16.256055414321445,14.08122457131663,66.12831152574941,26.676300246942574,26.313446261806927,27.02937713718574,72.57328649094585,15.048428940678848,34.868836862854714,89.69942374142073,20.622402284823327,61.847709461273595,54.4655868571712,76.36373415674998,36.185004289477874,3.389304175440877,51.01613951234292,57.73932732201352,62.034083330563696,33.6893308589316,84.04716056799424,4.416962814863368,60.647186356372686,41.074218725218024,53.34555304101672,77.27886234639736,98.4895211488607,42.64495770171557,75.10686103974672,58.51517205886015,37.164488028675116,49.08380655377118,22.118051469959145,76.2305723221726,70.98683772416044,42.41372335355832,71.66397212568056,97.27891023601056,53.64274644048616,66.90280985630632,21.369624422374024,41.11587216499151,66.12245431636391,16.194327667038422,21.861130267937277,55.356631954492464,25.43262445971176,4.440146039383186,88.23801292022482,17.17063058087438,7.702940160602967,41.74177842437321,78.42445754777022,10.998378776625461,99.13603693506307,94.41523285022427,45.15787817376526,51.935850882905875,78.83002338326303,63.13593013807767,57.9658322489235,95.72814880570921,49.76308758740006,84.32804268042699,48.218929822129994,38.06394460225273,85.28361259663559,16.37699089017419,37.319445749612726,58.88124772084608,81.01883485487762,10.554338479604597,26.312745173842867,80.55273598893015,6.4558870639261805,48.23981897501518,86.27015006972047,72.5069245039457,18.750085120272274,54.39254457753657,14.022964458293064,76.4151148941268,4.838324505153779,11.811172620979383,78.02591723153638,24.024852457135758,72.42980286243056,66.99611797227813,32.53222735835634,82.2350311719725,79.25639343416292,17.462347270278357,88.31007008080275,75.65965749956536,58.927023551956715,13.158531998460631,62.85192392775335,55.158250638600315,86.36754957188239,39.32631339226992,72.49832842836842,22.39371418954694,25.11458432456868,2.5577441342642615,94.63385052424717,13.726374027218158,51.592999338948644,37.45944885703834,20.396664732792193,1.6285003475700943,93.33823659091202,61.623175337459536,45.5943102376431,7.983937521792117,39.73064790965084,88.7006620201559,51.911552338319645,85.05377207349561,94.95697722587917,5.144511229940941,83.26401597814646,51.67273447551517,17.72865540410008,89.10504603955012,70.60669270923896,58.56420641560066,34.60755355523856,12.679686732103434,66.40204860914827,2.509246931333531,62.68519153015072,65.95118972701256,34.52195410149199,52.48877362099821,87.13755303661884,24.013730397008516,25.551315834276355,97.08966437720049,73.07020063284848,67.50140115170349,78.35326277512098,79.58897921288276,85.45329854755721,73.08873082863275,82.42219697647673,39.050803527202014,8.524694366683194,55.31667819674263,99.26549208030654,64.23022988826973,65.29594469032062,96.98594706937277,37.50518101146654,62.1562149242443,89.77854910948652,79.07995272334392,17.220142827543317,72.3140060922492,76.0607981077099,41.6170772401141,65.83370479263418,70.57698394025482,41.953260563152405,7.31257348106138,51.37983667834688,35.51423032404447,65.79546219379318,18.330791747397246,12.34568480704662,57.742635270771025,13.494566686558008,74.69101129891705,9.088007976006551,26.641873754567857,53.558223060660815,86.34529631053638,9.667680826868574,82.83442248463308,59.54575790720419,10.672753767049837,66.45474168027941,69.635041215099,48.120609451446626,14.584366260353686,41.88861194522645,3.236977903715721,25.374810610209742,62.67725992924771,66.80971856026747,36.52841772806771,9.695755752832758,21.82944861037712,60.02700400958613,54.274807440128214,52.99299259339213,8.48491042781282,85.07767557976358,47.836724914899,78.62205991115074,66.72059011782267,94.92435753454828,88.92797052270191,78.85950164257548,57.46090165125067,90.35759977120163,57.01863666675142,23.838224184188817,51.974287760490924,49.85975323670468,30.029167984117322,36.59403468511881,34.56567541528809,69.69028641163486,62.209832555675895,19.24049485089445,40.57250393921432,67.30290640696688,94.79806250179111,8.560106300187941,0.3450896636871814,64.27135729246352,66.52879670772924,40.12034664365645,40.33828081832274,34.9451831608209,75.28147689560235,97.65758297982742,90.42655089557603,39.34430124689929,56.46584755208236,40.53163386492737,84.76428278226355,98.05197951498394,2.4070847016135044,74.38601926747565,49.21095251130024,3.3037083088092167,30.90626441072889,80.75013070717787,86.41968380603642,64.04829566485748,84.61166918106223,81.06776301337442,93.57785293095579,13.45629465669239,14.698048266921083,58.37293197919157,61.918388293480895,72.66723855242981,51.548185404499506,2.998968597270124,56.796662431685874,86.04521240863772,74.16064133220817,29.170233141508017,70.00048965792975,62.745229022408644,19.30019752988832,38.20227727499286,51.09252787605145,40.1075075936548,27.843587911950728,35.74085358418275,33.09465998077238,4.852401544819374,12.373877753466155,9.894533550170891,31.658940815734184,33.20701581784339,50.67769387019663,99.27617105811936,79.20732048565047,45.22071126234688,57.352819502212746,89.9829304228375,1.2283955769947452,63.53374680538931,92.27056617214265,80.97038680601243,86.07599963632646,65.48637578773159,0.18148920949231373,50.722605928996764,28.373002160085093,18.644751460167754,83.244471148262,99.93425276584934,49.551128673769774,87.85194869123607,38.71622762199578,5.238488425117083,66.12582156365477,4.894668598425911,33.64413335802833,44.46364628682188,76.30232553857252,77.38913682702496,44.09777519365955,88.85026306722524,94.65906585790353,32.217964778515665,97.92779517755902,18.830630333796606,48.0469690007573,24.524464370357656,83.76585022092702,93.26615323481433,29.11566133941634,34.43786076975849,76.87831339647558,44.78403023575779,45.86500134584453,75.50887128778108,73.2264943703936,97.15394351117435,91.20754790308732,66.30139474957912,52.41592508606539,14.27191186839426,1.2168540920414084,45.47169403257375,28.816952586478084,46.56161606294437,70.8632045128262,72.11047212065395,23.671243031560095,6.910806194292663,61.11050644192473,73.54194636627518,58.1960555845516,85.10073520246299,57.502702106880335,7.223903598446457,18.887001513540714,3.858475327181854,1.030891587555538,35.97598811911158,90.02828385702513,27.61663790667376,23.6527452131893,85.90092627413584,0.7560208651630984,48.71996706679571,85.64355226363402,17.86309773594069,65.30160589136406,57.31974946007627,52.1632257525957,36.833028583055516,60.353563443506054,84.48637655720033,59.47540838375885,4.180346886938646,26.93491697295044,26.22172473486568,90.21785902026443,41.91950447498542,0.29024406822331095,87.97740779634742,63.21196221011738,88.06882162241013,65.33521824133247,29.71013336467908,62.760248579069376,50.04653712500067,0.8966128495888626,23.462407328480197,84.08877585306647,73.97007589814312,48.729794604361196,49.86936105246643,40.6471918406335,37.85253473365252,92.13536976288901,23.114070371655103,21.829244827614215,28.873114442510982,73.86013303959122,73.9733175793008,50.90502049495925,99.07471631552237,18.077764244380102,31.30161360652727,61.52855136488441,85.25612251320037,33.880200318145896,85.27229645983826,90.61363552004987,61.84106218052895,48.90960326753342,2.4708591063426932,40.91407235337891,90.86568603214276,12.73721699827599,42.77247633248328,57.90038243181655,27.848688126031686,30.058697186644125,54.54129529881975,50.03648083444347,86.4581166523205,36.060745147696274,19.55773649290855,74.20697821605135,26.210615427575824,82.59935881325417,55.154117018818404,33.66034545629244,80.41539846167221,94.11638406968295,28.894518445432137,1.6299059335682098,50.65121411369839,83.75534806023963,87.06376707281758,50.408148299969355,83.10489001194232,17.304485532579285,9.707293154069042,87.58146311002042,70.01999941804759,67.67065420844051,97.99815010944344,45.21607181253944,6.596865103303395,30.567991113881355,66.03171099345728,39.2489080964596,72.6788862611753,56.96708794683333,76.30921353557517,27.79556188288973,97.94620525008125,35.6152254400968,42.90725324730113,50.70854539491499,37.822139640690246,25.16668976822608,25.035541192219746,42.63687809307226,2.107059794078292,2.210710728144094,98.81882698506412,12.508551972084636,1.8782496545664773,23.366633110743972,37.428420068400825,37.063967636858195,97.99118175024077,50.86823086058483,89.09704626301527,32.21165265732743,57.84743143616724,4.273172316825347,81.20548395502828,95.00403721604226,53.2770510740232,7.3978930468590605,3.7253425490180403,52.4309651088861,26.37023131759633,59.96763160147758,86.31462082291291,85.89281337437514,0.1375792946978982,91.14206154109348,99.79764298744112,25.981890111221805,60.327210932851806,0.25429417068655313,75.28603638501605,51.069660337014064,44.684374882874636,64.69973880547487,22.46512987164364,38.08702723090044,87.17886226124298,88.10051527930044,93.1458332850426,8.523093603853237,80.29058792917459,16.59878409177726,53.07235016247741,86.90508141501932,60.98799469015416,5.861682439776084,33.886951411508726,27.409333184512096,84.56031387579914,6.261697240675068,80.42370597253175,56.981936071803396,81.8421024671508,80.50383600821249,2.9893386814129452,75.16346540198252,47.820870966128325,48.38639030910484,63.11398222419392,76.48438423773794,1.1818228314139034,53.99341719608051,18.899587130187314,62.18058269136431,24.27117908858607,3.2155523641274386,3.3367804058252792,13.010608562392644,8.090560767759102,79.04610669723337,46.81177711668884,33.46035389815167,65.47973427418154,61.14008535043997,42.59144179574057,88.51090823401687,80.9561119260583,31.75485776242758,83.7075776288852,58.631874883855005,19.35463817227908,62.63729803560367,52.944063190740835,74.39620955321719,54.26843150019499,51.257427778916345,50.236301818903094,23.954614364551897,63.07100279640002,50.063678071902316,53.38454993086488,58.865367214398745,55.59322376833007,97.61835222658452,38.34789130449846,50.351346062421584,10.800495752071503,4.69064209085156,46.31602014660826,1.6033059185465381,12.725598795671067,97.64555679847518,10.42871494952118,93.08860549690225,71.97703377910541,79.24706705400098,58.4112018363187,28.054600967815535,25.145342565514316,62.70501260089143,70.67205891483921,17.2188127969089,63.876258268319916,26.7647293278097,41.39196213943035,88.5665074049248,53.25113729869606,42.511733755686485,97.49646126153834,69.34552117364893,25.46291204923167,2.9697716726502343,75.6386258854387,34.6849079173961,72.14700872433542,38.28191196474363,7.149447956987009,25.22217049910479,51.634547332331834,39.1164005055048,69.7963706528443,30.885704830813488,43.212478862057836,14.776958789712824,54.32457756466283,76.97133240514668,3.4186725844759236,8.26708778699573,57.82859740166588,23.889579405135876,21.06182111128917,62.59059201678642,46.32620005761321,11.450560254273723,67.61269055675183,52.89957022520154,62.77368331906366,12.101527813675483,54.68535495774016,50.60455999617233,96.69026186985435,6.293670492621295,7.2654702405017035,54.618627413081896,47.688068960216356,63.85915491935038,67.29792914152333,89.15800656569327,2.0386995336256653,86.49282583432894,44.83468390428563,51.04800222660425,42.14736650186154,73.3123287378746,79.16449171339089,48.65028088570173,67.83592852946796,64.85761841442617,40.75713557118239,10.112888321741432,11.526552330091489,58.47339321499147,41.736715375475534,77.34332212385746,98.61173508405923,78.24708455989914,96.20974597515087,98.94878760206073,27.608879267415574,38.100691624157555,11.325444921866811,8.128225311510196,39.02813038903553,14.453384010887572,16.54058166315232,65.22057572567307,45.561580847323256,79.44128046198485,0.6833350164754393,51.8154462735497,55.29651288337227,79.32487663380401,66.70730560991849,35.160635885938085,26.70333628450584,29.13991909948319,2.9613957432460314,65.59809485216431,61.367047150859555,46.78137704757206,75.35003896866033,16.93484116288124,81.90192675622002,37.61115463856359,41.623809178180124,5.4152882729296525,82.17782287973202,36.478220722256985,92.15464906935435,39.5177406592219,36.48390156752409,46.88701557854539,58.30739231344377,89.58493259860397,96.68095915047283,26.713353266916585,1.8150390292327123,61.549380049344094,91.02493120057888,27.33223803377951,15.25804787324031,90.84212438633756,46.878020887622874,87.65818057259321,40.43825228938323,7.949081813075809,9.353151549960293,99.19921354562368,94.30444161271011,25.428994832232465,13.860421146068669,26.458210877215983,36.9669449125672,31.722121663709103,61.94356528230538,66.21202731569598,68.85652424959598,7.948871407205626,36.94532963894004,50.409961946026606,49.97189872847409,95.37464756520437,34.356580522132205,66.51057514049722,56.78884167880991,60.94701677013513,74.63204667639782,76.16090855425988,68.30330148580751,65.71445437951776,89.38381134545811,88.19627598841406,14.968606909142967,16.62192851862686,65.74338631883609,38.051271542329644,34.98579118474587,20.8178444693093,87.27269258197698,44.31027832981101,3.1360310529629953,4.897881786007996,98.78261391081674,84.46929638300975,53.22809233390806,62.70424983223324,26.91827761186516,67.5657692982678,1.6033500307157778,19.49024809654658,96.89133036831795,34.24392904896029,92.58233261796028,23.887329777451615,94.58289417315041,72.24424813225714,26.221727903822856,98.43784952034486,27.226087654332886,37.491602307616276,54.593742577034156,86.84997420438822,12.438498258868403,94.37608277478104,72.59928748464228,35.150664973139165,36.96866300148079,1.2973541791403975,56.06911778775239,3.8757872136325866,58.48948427616858,54.935760567973226,90.99813068593463,9.359260335301933,64.48804579209978,99.54714270104787,49.13523398075967,69.25047870367646,91.96231128413571,23.887650161166206,57.894876748308334,27.009930692126726,40.46650965482146,30.20765316752705,60.71780507445871,41.952383047139044,25.852642832041294,69.36396477397871,80.06780932798007,63.867344138463345,65.75356972645767,80.81920635432654,1.3012084583559846,91.25855584099521,57.285026400378314,39.111854409729965,95.29708470600825,58.58875642519475,74.10027602501702,5.089458980721739,39.21536705501808,7.418752343185542,70.32951912678438,58.32697304680939,40.37079034844607,84.78901904912264,54.94694629328054,7.952524292412411,38.160348596217695,76.6836057665969,69.54416071187165,61.61384588911217,35.61104267989958,98.97594420051897,12.16331646086931,56.24159677033448,50.829806433783254,59.06864087802811,25.986304588722355,95.61480682417286,83.03710836797887,25.78945254540026,64.17924993199084,97.86817010332712,95.32562625769305,82.7680252423855,17.82524681973692,78.41681317920225,73.09464034699518,11.170717765368055,41.80604644044872,19.6727886798043,82.57617273894327,38.03927701873653,34.093620086529775,66.42218442161666,6.453413257352114,61.48284548650022,21.869770288853218,5.870138007284186,88.25304062414452,50.04308112526061,50.32771551282077,91.25131322499004,15.318831802208555,58.51446113049158,62.49970044234263,98.67459531598676,97.60750630718127,22.638298595131378,8.358759952158968,84.27539299508761,46.053662886093605,27.440577506238462,2.8830628830721183,84.30063835087081,53.51668225078097,80.88035820154174,60.58813402453137,89.1554669956928,46.327991376147395,63.44697135740086,42.55953714527789,91.2964031961629,82.1189668466801,12.977219426250885,70.63390270902588,32.479325881961984,17.514939120413064,5.28150644590526,50.97436070649856,89.44441301039586,19.42943625166955,43.802306327319485,97.05188447531737,69.30635673164193,26.900648532810166,2.33197189559492,90.10048908045609,3.834211988979097,35.46276799359336,28.208770537879445,28.272322291053044,21.731962016681262,19.971604179504542,10.676205638207092,11.535503110566337,51.70338862599036,25.105442981741476,88.23928880146063,14.971719438642205,30.08375035788191,48.09978063231032,39.32776039728172,63.10860600377198,38.27909295671511,2.219402903644352,84.58467331257728,54.000276035325655,44.230224270216176,12.898573301907446,27.48270724601093,94.98212423109183,59.303437853172355,72.76272886171287,14.720635733516719,32.64751186537707,67.28552575090661,10.768220379502036,20.58373242091591,23.952195341125957,67.7592102472667,81.99733889802933,45.238729819121914,30.700872594652584,49.96006517796139,41.11822516449964,6.4845893428643,99.61556864435686,23.21058092383469,62.475259610748026,64.61682422723136,37.39862160249054,41.33383189009591,17.297955511699715,55.20164857492853,42.78482694201714,3.8101841876484244,48.38914612240024,37.713938306121996,71.61274986320538,59.12194152962055,52.31833879503473,45.97537312879141,43.860896943621384,1.3491037956229524,2.839307871689878,16.603661997419717,62.04474312578979,38.76247858643218,48.09891701421335,25.170005937905714,25.581091726820315,43.073741421334525,59.98810087213923,77.01146924978153,31.650859457160752,74.7868555167645,52.93279529958112,44.924523138217,62.57870409265382,92.27782851197178,93.55240301878392,84.36250545413661,14.981445002545335,62.347552806891684,93.10533606140693,62.20335255586578,19.45584017642118,4.22420587584601,49.73609368126457,53.66238640263907,41.81436264203951,29.741817881389075,76.72611973354773,74.72408185597354,41.606298622598324,1.0094477929776358,19.648638781124106,3.769300947925902,99.66076172414824,17.760131488173837,59.75524017207544,33.25007295249264,97.65737901834194,73.6934751893453,99.03344560892047,72.42761306934351,49.995792834145114,28.711234874943294,31.816619719018647,1.0884499972980133,0.13395008814615084,51.415380319389705,68.41953429004123,16.740451292420932,97.81948391191216,88.79050260523492,60.946120891032386,31.28771645503764,57.32555556299752,17.719924289724233,86.87635023395032,4.722759930233201,58.479253721521765,5.956690716311808,77.80387337877065,11.590760492748831,35.82606744847728,96.85831718499655,22.14552767552538,7.525175059100874,24.612659469661267,60.166003708033756,86.92335282621151,41.37204386693071,83.2888456422328,86.72756564643026,11.276910041386223,30.734391050232723,2.7331828356786714,16.240729632333572,45.390490769884416,81.90271068879554,91.44518397712507,44.656176570994724,57.37951144588619,19.25681361766747,38.152782243666714,52.91096118326561,94.54252101921115,51.31100192317576,93.6176799005859,15.360164653996321,44.755974568889755,82.68550261292242,56.99774199884284,60.66240728468807,30.060242595455744,11.282419645727138,52.57383318591998,74.40246535899291,20.806503167785408,22.10133961020928,25.19652285180374,69.71978368281961,84.20983664685735,24.497602848681698,36.27349221277356,20.32345084637854,0.8538643264226486,14.431506349180745,59.5180996051183,5.909067820732616,38.05387752244446,90.15266707712651,0.9271979746036663,45.131887243525604,86.82238487103126,54.21132674494146,61.578461417556376,73.43073679459653,92.88153077944071,30.798527351908067,26.82367461436712,31.141054478490304,28.03941272038052,47.59516664042106,70.49316791847824,51.15842989190905,34.39486548995793,35.48574202966943,8.74503983048639,62.03827860272851,19.934549099802933,45.14588109789388,59.0637036856757,1.352482285333212,18.96235343099323,90.0266730614917,57.97428487787838,34.3730034423203,41.94399505611241,90.08576955720444,27.967699442682914,20.99345234771691,56.4306701024308,41.07894959490965,46.553688514557315,43.24278330904229,60.895986339932705,35.10680248508926,27.339665559074746,0.766685939775702,58.44426853582895,93.18776396982273,53.593093466037786,22.628282194572847,19.07451663137657,83.37093245199192,13.777203301834062,88.86858932724147,96.31692997441735,93.2494758247556,93.86288868414576,11.9093821974804,47.93292386884208,11.13184259235318,23.828380336638222,63.57592172332854,22.696890147689196,32.56358075867539,93.33102276241819,9.89325694716754,6.545608306054107,28.011042671446653,42.322877160742514,77.05626483120942,16.812499581831865,17.53025388203353,89.6744723875998,35.961161500478035,53.350327128724714,0.7532502319660517,5.413578545546471,69.60342864060661,83.02918446783976,34.06542964690998,68.24574233224132,91.1619092534456,68.9091510671975,37.74820357250067,1.7271953326598366,50.08042335516817,12.661822055118964,24.435434329905725,48.96505794840943,44.77552240398581,76.38908260050455,50.824168054184284,49.679945214781085,58.289986030944455,34.249650770529925,68.613757295345,28.17266505936068,92.93818686338334,77.67404926448775,70.45512701240634,61.849642949187036,60.965201111186914,37.16202215884087,46.164477708861625,32.33195229417527,21.572944331435828,61.02099623781064,27.310406878741023,5.965659208374163,95.84934667838223,97.57568532246762,84.06923063720878,45.67325567475535,63.35509155076656,53.038683265127084,45.0228244604045,79.26763698358462,8.99323279097236,99.08319841665944,64.87161067786693,27.411302969207608,84.0493474160427,57.769766522520364,64.81970257989413,12.489229188042849,72.73123450004869,14.91052610325012,94.18687390538413,1.830508251481,44.99819342466017,68.59520176272001,7.319386593424371,52.61531736483527,1.3521662527917533,88.47355052397637,82.46871747996863,71.42711202297679,3.393154259329456,69.71147810002141,82.12878331908419,31.410107385579387,20.167740141896672,95.86164682635491,37.20492440039703,39.64670319701112,6.327649759032761,90.44376959858049,30.76898991129796,3.393708681682195,50.965413065542386,20.77917490527995,39.932672436028206,46.527718563341224,68.16857979129483,82.77632439648669,58.63945351323565,3.3310042638373893,41.23354297453344,92.81164930607062,48.07997889983757,9.296463642382502,91.50253665409429,70.98445747417031,18.767849186709807,48.15189229938517,64.53687327333168,11.855841672349076,92.19968753147737,57.212377057633454,45.99653493839562,50.06364862804739,39.92294867033379,70.5084689904238,91.96874654076052,40.59746701350201,72.90579801727091,8.585118491497312,69.02317367178496,65.1399614681595,8.476805343960114,8.53252811112345,87.04012477122906,88.19218532178496,36.881582349478535,36.95245733972129,50.75764539769412,65.00774756102977,16.41205295426228,41.093247666182144,90.76839845924394,33.86659562853339,63.279456118302846,51.35234503961714,4.862650965230952,50.80828308184956,54.91718606684125,33.89886101039793,83.31486522338245,48.82517677127686,85.04567518125866,36.770587554984246,65.48960638274775,93.12650922375654,73.99351229897383,3.5687281397388637,48.00432772627329,67.29588518080874,88.49860837682334,0.41472680406352547,46.09495476237443,24.774383181394022,63.77165638800635,69.09721310600642,87.31701276846962,70.44863002669148,95.03437049933989,80.09907676814095,54.23657696014016,82.57845929981981,10.194261232364866,62.70919827544535,6.542710454945722,19.425381268280116,72.15149115892842,54.604089825118166,85.98052043902419,16.662195046638818,86.77457166674627,12.718400604731118,21.378025170832217,88.23368238696764,80.082240841218,44.139012391253196,29.51073190917709,54.71674774411303,67.60839884222378,94.93683752315542,78.74431713287936,3.868816546097875,65.11566328451951,9.195539338524206,83.82159113448283,72.39275936175802,23.604008379013287,66.80297745213008,55.21311844840905,38.17352251147883,63.54353478549203,28.746058202683155,55.05781959014245,78.1230509107882,20.403401887431915,27.55009267063402,86.11046752593107,54.759219662048906,8.26394781583668,80.10360545019162,89.82355331378199,10.519123546313548,80.03142010655412,47.7552455113468,92.50234661331257,13.060450466803141,0.1281177415497936,3.797255550892331,73.87717533939558,85.948253733023,78.14443387525064,34.847429281137224,85.512375298767,5.594244586488928,65.24078888771066,85.20820486805054,63.68814619073698,63.13758779335015,35.700299895034185,16.15696732898988,49.44780786747953,84.71416836698266,11.30716516439586,99.6267599080528,32.760116644378655,37.01170002439231,4.248380761360182,61.49466690212678,54.237085145045086,62.03742425431138,34.881367197593164,34.288920485478954,13.971693431201526,57.902823388679906,82.1282689585098,6.213318620663899,16.25234046642391,34.00879138101682,90.76401035097338,7.828587575779022,66.97441837661849,26.71804454680369,91.3142765917792,29.458463922850196,56.89068847874632,9.103189172350124,70.66107488276813,50.20453728173467,76.09013358350371,76.8317194856308,44.88161822808237,89.0111847264343,25.222104168666924,18.75878674479078,28.165290016339306,37.227794283018476,10.896981332837841,26.757995133335942,78.19510350524041,73.26961055719363,41.8470868169435,23.53208707898038,60.60633523972281,91.88712313677486,98.91066541994856,86.17719511983366,50.2487775431548,14.000172625111329,54.276936983677885,14.646212878148091,38.70098908798312,67.78655823022315,44.66301063016797,55.23262896689677,82.29081067301274,12.36741421385431,28.716950804409723,88.65467925191322,99.73545990027087,45.415811844104915,80.85802551295487,17.780419232158017,98.58375177688981,20.088742133824145,0.5671994203997666,58.51138294581668,46.463751291560285,23.569145901086397,20.197696715912894,10.85368985620544,89.56101113239417,96.56915746853335,19.1136682519678,91.78390371418124,64.0782166510543,43.513788627937885,45.09486831418681,31.470612272894762,31.740173852925867,98.83749579586029,56.74397188983635,84.71739514796114,67.81596782260482,56.95552178446713,80.03043290004773,49.22208251654292,56.98045042688397,50.79616121569388,88.47020244115312,70.85533390803617,76.26073308000163,78.8740729878175,72.76198229027463,32.646542947151815,19.228760421996995,4.387654290072818,32.998054987920845,75.35866072719325,40.23180309722206,34.79472645238039,28.532900720917663,4.098914108154594,68.83012591117259,37.17240293753314,84.85343208084969,68.80238646241052,36.261194629139005,66.20011372169868,0.7622864580789868,39.61768216320297,39.66907776218827,19.79097842665447,19.98339710391558,12.16541056850301,64.98797183339528,27.773916461526472,60.04067008175261,38.70296838003844,22.543558346749982,93.0669296388427,7.4511827738182435,87.7063963478519,18.45218712540977,76.85319980309345,25.504145420447134,81.51025556013506,79.36127438759952,84.20153650309973,22.01494939334374,56.05391230279226,86.935483697178,45.63190317908743,28.965688805960355,21.946614401196552,85.65506972908655,80.64048221641428,48.827147800867245,51.50519748978524,28.905785565858967,49.21055382139134,24.474777183805386,46.954004135611015,90.35231181325378,74.21046457905024,9.078159882906034,74.5191234003991,94.12720783756433,31.379931057874067,51.83821847775685,43.679430626247175,96.07205378548498,70.33016036907159,68.89527014079894,71.14222862852662,30.593214743632213,86.16277493650321,2.82641515505897,10.194183482288999,49.644010302224395,70.92208436420393,86.93084348719586,62.23502124471507,26.82472439040976,68.91779450248937,67.2378645027275,43.158131593782166,27.788208694894358,18.538498167602093,58.09855198092588,41.41739136164189,31.1945465095514,5.554693137058486,57.38069837213713,91.35536048290969,84.84207506214398,23.833259095980164,69.21302530647729,25.685587168948953,65.20930201615117,69.4099991218721,7.219506419251265,4.143521113108973,91.8957351523284,6.47812467949882,93.9649804281639,23.807666863695808,25.138545639679844,2.9511389268284005,94.8987105055118,55.340957281063574,14.733688916997245,66.7964846491442,49.62084487526551,4.316054395086189,24.46467536584859,5.41189772002264,15.67166391627196,3.6387835357173937,16.832879611833352,62.63982509790292,75.43507375221164,80.26358038478098,64.08459625251865,1.6595182258057561,77.2546881566608,58.02822013365635,96.18609999874825,22.66910245546393,68.02526681200686,54.2152991792646,9.77060622639826,79.19767259479481,42.411478000215695,71.3074698688829,9.225433765726843,98.78460475108291,21.29992325603701,67.830498235428,6.778605058528853,5.114739123678602,45.12687878786282,5.423774846683416,93.06910037466363,42.773509040046434,45.71068045455458,24.028574984505713,56.4311594360618,17.344033148663318,83.58590758407227,42.944997553850975,82.49553983120705,13.757408595616916,53.33092384111866,60.12908640454994,43.03904469330389,63.38583380525286,47.83621527097173,78.18276752010857,84.254720928438,90.53903124538508,86.32897915773871,20.546691140836458,25.24617728051618,69.14490345664768,50.29000927298788,37.63791769875381,65.59816978192055,17.566090098701448,16.705872327829695,68.90055540489392,71.11913073727145,99.08338861281017,24.790064486806575,87.5353246434993,61.5980153275933,69.8981867900529,43.92565096240331,79.60544154275836,68.14906699213577,6.1278344548409525,31.248070174255293,4.590283115670147,29.259338824554526,99.43362622997819,91.00656897094804,11.038542155553388,65.21985145031411,58.28713742986867,14.864625884950101,56.10729846640968,0.2982630777273898,44.19267960667196,52.513339891144774,44.17140785900552,24.80959447071661,89.11158559505262,70.86236306713502,0.2680974452978879,14.837618176475642,18.54356185581585,46.52461605594021,76.93022656650587,26.315767742189024,70.42764512387795,63.98224436812336,42.04724386704203,88.61681723458774,47.468195179449935,24.717718834891556,82.45003021447856,67.00627893191111,66.56824447642934,86.33935279812209,1.4123535781175867,35.6200586320339,80.17724853848071,49.52738137877758,72.22691521714549,1.1428161558996952,72.26118306684855,14.640449221465513,31.664439463527906,21.463376396219424,43.870060966959116,10.299588142474148,23.218318822842875,2.7200400301159444,13.20333959388308,72.94051735734311,72.79996318113152,78.58809860630451,68.21131381278389,67.00173529991703,90.86925914992877,58.70263310246454,2.159689044088553,42.032860944066144,17.598819722345972,22.346879764846108,29.383061714027015,72.46419875443932,80.63329638999929,88.70264784317816,1.0842851882402416,78.54781604258815,70.1527631232444,97.23650037731485,9.060621101379207,47.76690164890699,6.174915265202518,99.17710356683813,70.06890133184717,14.696662285213257,41.2952563734295,28.89659857998883,1.3295716653551004,69.21815081580151,2.407427267670037,18.929850778752378,70.51502626110445,67.68546428422297,48.095555041600576,42.6722021405046,31.13809957827316,26.511694851049615,16.938998885338997,52.41120982913326,2.9579297393065196,28.988982513521567,70.89852526342348,61.67551296971831,51.465987581047266,1.5033976706388175,9.574122667166451,42.82145102582773,69.57089308240026,43.2458547910506,44.438052992295496,39.89448325859654,14.130322808391515,32.3230280451172,27.086067566670724,25.017613929474315,66.30309367922699,34.03263612856643,98.7445024543077,43.375509269467905,9.921102456154763,39.327865803217634,90.57093730532752,22.67887378437924,54.85669954877643,37.579169577751216,59.757663764195456,39.9149905554257,50.164562548941035,59.90989650199715,49.82587033678373,87.34005343923486,97.48419459208804,5.065556674757287,96.93796438668964,41.85092033017844,89.80596835565436,20.102987903988144,78.97785991036739,72.32742295470143,12.898349520951847,2.817369777462242,67.4350582369817,12.323222023567704,89.5068449643966,34.989311095073596,91.20327007141628,79.61079031996245,48.29954849412488,84.10871769766524,2.564256347236571,58.58619238403392,90.20909622250757,89.18896400359587,29.962735565401854,49.56475719493094,49.56791943826233,30.158962923002996,16.984093676087053,19.524577254662347,55.43062631232692,49.0295136355155,11.93329302210081,69.82337747679304,74.9828889899467,4.203067699356888,48.49240287032782,89.87330101663414,20.12903254260412,28.832278526992518,99.00605733775254,71.63514723962689,57.61973196166601,57.76468465772864,57.16049261200639,70.2807962816728,93.83413694608181,97.69468125664797,70.64640806683356,64.44255593933292,87.62288699064419,43.115667167719685,35.152082057658184,59.87272908042131,43.0242834446489,70.2806789254384,56.97993054013727,52.97247073108784,85.37242467358827,82.73377850544512,29.76714541191332,58.01159494070925,44.568366888643496,87.31608652737157,95.70952082979308,84.42232350902258,94.49435022775965,65.6532466539508,67.05044732101601,16.105607620219963,22.333377043947955,81.96234248806424,92.13768409337325,17.92506939992543,2.550124599210579,10.545720161340732,3.2326500564653804,55.099772610846145,95.7519205594367,66.21173886047583,85.5789990420968,54.81512432401479,53.45016442217009,67.11463931234616,62.10837939636688,55.16971498733396,3.2314321284022007,62.599515680046835,46.36321185267216,43.721352531477244,42.82571498030464,98.70394173178106,22.033828560125322,60.22901204603725,77.7691816550177,96.65191375340474,60.076135733183456,35.563418651375436,43.10330105961141,95.23993322369935,94.00918728602346,73.14584201507958,12.138355528172362,69.45804985874943,74.44286153645545,64.44968528152619,23.34422057952278,85.1747578066826,21.015978205869512,88.04168734801027,85.05244718680984,22.72781634730133,2.405612742450236,73.21353308099204,24.720795629013224,15.642547274912811,28.755649446794973,17.695729590214516,41.343895037144684,89.0724803517774,21.522450612916,33.786174637290365,53.52537874166076,11.557006623911581,38.89737519976423,43.63584578044748,70.21208277850869,28.253939931328965,22.68448821659409,6.147351968474424,97.3507345769803,67.51536438632895,57.74800084662044,79.09400729487609,53.184064249954076,40.68857282107825,21.017143080670674,33.606885028882814,83.44651111780601,52.1776023979851,48.90491802792168,18.311102118202882,26.567369087274162,48.75509518565847,5.297716865087021,49.04996486642303,21.8377038514604,8.705360940026685,8.602594330298196,11.889849673433972,56.570770086462105,32.35967550936891,31.106307805927223,17.500581599078057,33.77653556368354,66.55824190865395,89.36412260511797,54.48260750097707,2.199199857856249,35.30941823062405,48.715480168196535,32.00017166389139,88.08680645153163,32.654034650594134,14.793107118804262,99.55800470114839,61.734731876011494,64.3983895245087,66.13177243113572,41.723563604544424,2.7350949878169106,35.777783388856136,30.903347909690005,76.35866143515956,63.54948994118559,56.440233916795776,84.66561410290977,95.5859072684698,77.47190432681398,86.6656971752922,58.53762323175341,33.30070942201101,28.25786720441411,81.51918432747416,1.4190721974602583,8.269919531272185,24.64709924618247,98.8449556291404,77.16175670287419,7.921703271529457,1.4342873298695658,20.529337453207695,72.63788175834286,73.45178496646434,56.802435352454125,21.147268241572014,21.004342393375907,36.5147883311843,17.551960247907207,16.8857818511694,23.444947458639486,47.81678192947552,78.71286391195024,70.43298713582182,83.79483201804004,21.835929227426497,23.470124902229685,41.390261919178194,29.048000582720967,27.202322347403086,24.623338907255622,68.20907335354644,59.126042503754114,69.85224118574973,31.899216665040576,24.900428423414635,76.32212615973492,34.23087183721015,43.27403119701019,95.5678126695367,90.1806448658642,5.146213296189717,53.764338171382555,46.62202574303915,41.11825354061243,21.08484266087316,37.05885362317507,58.225614461750105,53.69524196739434,27.459838328097273,41.644879764823806,16.280626802462763,21.751573401415815,37.66639152585915,38.03017237952936,99.07886645127172,6.53026337661704,7.229787769511775,93.23156389588854,28.68005711027348,45.02850669922287,34.19726053328539,88.84410827190047,60.06065537166997,13.220997917661116,8.032939354484592,24.677934447475668,83.84165427313998,92.49866706876512,5.812909980849845,64.24069091824366,19.90270769324205,76.29595147482739,71.27438842766836,29.119341276081766,65.28940713703221,49.77007326158145,19.610391513014292,33.05318715742702,71.58833198953927,26.85980258572367,46.89582546614995,64.89371891885702,86.94788733866856,87.5612502615905,49.86075782844976,99.38783363710341,32.38015462987895,2.752515158352886,53.262331084836376,11.963813586012794,42.37799253480618,48.877569915242056,34.46769533229798,20.035967769480745,38.704834920604206,64.1864082718311,0.4139297234903139,8.92216852311366,20.696284754275307,19.88965241374484,41.40047910665524,72.51661193952879,0.2288841756633353,55.683954926201274,28.116158051996898,72.4727060370441,83.38332388109421,46.93845844872231,59.49503221456827,50.65844527580524,50.380966412308226,74.83690574024081,78.16837405133936,45.67568722772406,56.21400884620438,72.70759472050837,98.7049301332574,80.44531647455393,64.25077836943075,35.257040049820674,88.37618927207241,42.343241131345074,78.84629393888864,64.08581167086923,37.28295605753662,72.01523438827981,45.468241824363545,58.367738265353985,4.3210687914681305,25.94231564205748,94.29146371583255,22.22581808771831,93.26624758674461,27.320735295764422,99.61973779011342,0.19676771310623842,31.80153323668309,3.4307209323918175,14.129526340792287,40.86063024497084,62.78937812183648,97.13146461459135,79.01959310296151,33.4209975041031,96.72071965447378,51.00798320004182,65.06230800985398,57.937247233862685,9.517316715263902,7.404067097411593,95.11405661251332,62.01910532685015,91.77418149542022,40.78928553223599,15.275484712942111,26.15817777140602,97.18758549371114,49.523844876631806,88.24143546830611,33.280834111593926,46.95023219612059,12.790029858268193,81.96063524294753,56.84309404998496,89.43692868705573,4.863481323877982,6.036945628629031,25.127183162255918,92.69330800706199,83.50562893589596,16.19885303618154,15.38248162543896,2.474301325554673,83.08277863305217,49.81019204948306,27.445039305285977,98.37684637604868,46.135349449784016,92.85159322774412,66.85014483471748,52.70677190995101,62.37685807360979,90.58924439663842,26.9750403733921,37.158118611610945,70.97734128058157,58.11466899797316,69.54626712774952,99.36864872806107,6.296837167060665,13.357695641545153,96.0129634495056,46.3267261814038,32.07550674093213,37.30553618069796,93.09173333570841,71.25407252591985,48.02982640238545,51.433887505613804,52.807925898034924,12.596753387746318,65.96263211240424,38.46016945719112,46.58007806029482,36.77251238513013,79.93897763842453,75.39808467482992,0.5903660081735929,96.13697100083954,17.906253297447783,7.197143105373116,64.26562077222098,25.58337166229223,8.003721417369448,23.01570375199775,99.6528878995602,40.93680497810573,20.30250249927802,69.10526775473778,12.44806244316542,27.01016655582177,94.46853847121479,93.62655719719602,86.94323598705873,9.293768574979577,46.216682684892916,64.451177151313,57.05153178673945,60.76988686314865,58.39262236513322,65.58971851082718,44.834193439967606,37.57448907176252,92.39087458309612,32.39764576680545,46.52227232519552,42.42253860247756,5.592754930599908,94.65458483788608,46.43994951840797,23.894007541205564,32.62251188369216,20.252263235882552,1.4074378884976646,93.26407123372195,92.2367443060484,33.621036095337786,96.07621798564654,47.36056776853985,7.286818338997736,66.0383482441882,82.99479450468604,38.877592326166464,12.672897117692406,41.72814732068131,7.55249990419985,78.70871605017771,84.59323882555032,59.55025876491868,90.35313785889815,47.849308947569966,45.849181710889866,84.81602842609085,32.6322411292581,48.38609358708488,54.472628870094056,47.83198949589502,68.80871952624031,46.00914817052192,12.853299333431313,64.91271728437236,12.59368961569215,53.33987603518218,53.97816700531792,21.8193388362117,98.44222833274465,49.84005002298243,8.347186480688695,32.67163670405705,27.78088440319251,91.10789095891298,10.005887530346492,61.920768914644455,4.3601993683864855,29.197056466828077,41.683942542137146,35.46620009018346,9.93512544081242,70.04050217093771,90.46771921088231,67.7144715475936,25.202222932893804,99.92316093472616,49.98125454320987,60.774066826137066,73.50913612287405,39.57575905207096,56.333978652934725,72.30850603566505,33.922703697559,32.64247391067185,85.74725887915078,91.40898315396818,32.37825097727293,14.594668958778179,75.98959505697292,43.7179010266678,17.88190190802885,98.83475389456984,1.981555461992457,18.408179419136562,57.53454505106666,94.24037302337726,87.94691822008703,91.68678449962985,85.14970056459433,48.819253066578625,89.78772642152356,70.77511284900454,81.8766374441757,48.400377618414815,46.96593950996088,57.93857751583806,82.00547825964392,57.24768558358865,34.26221182314465,48.68764731057801,62.24511699198372,80.98715770826378,23.66954227146545,16.163718943805872,12.780285189385998,95.33873646369506,90.94234255864706,53.70414762136839,92.58054599542638,7.551079060972111,75.02127170837096,39.17813599309776,74.29306859510315,35.52742891792754,84.9844046468241,82.6116202494008,35.56629147254269,13.303935939129385,75.31322374278547,22.080009242862342,17.490017763245604,22.413261419472853,44.02973837027866,53.48058832380707,76.17113166131082,31.034485110451993,28.47257586441424,66.3736471921427,18.994027590031614,94.5247325542293,74.89189377190536,66.88247885681075,43.73841373656071,73.66640918521375,72.46435280989127,37.86511380281823,37.54834600670627,95.44651571973641,38.90032746868529,93.9180218714833,59.684259594406285,20.819287132757648,70.04332869905735,0.38379021341543584,90.76399559961493,10.931351041194027,0.5759574118227806,94.10458059200757,96.82510195638415,67.93279358522042,24.34324496087308,65.36725190176702,71.86057082866539,6.426471992096405,58.68463800957478,50.326928997021156,85.77783190996438,27.40075598534143,40.47394642336215,68.09205181922185,1.1517292575792037,54.715176008539466,99.4196991173454,24.335801699103897,41.294951487876496,25.587166986960575,20.496887409803744,75.01755231519417,43.80485120002713,99.70769520072909,68.72783444137916,18.903598980048464,24.339846279099408,28.94084250893283,77.83648484631115,51.00037387411215,35.718008548724036,33.237999075784295,46.94295102373991,76.89614539417626,64.92531539727855,9.034965827773378,48.93653526275049,59.38427260266096,8.274190962924688,73.2863275048586,70.6491673466966,55.438660277058396,18.006326958767627,75.47587107053916,0.05866394602753733,53.74627397556006,82.42851683612624,65.8457605154933,26.939751191500083,12.300461531364116,58.81159330621284,4.866035714589234,80.53820534249125,86.5625560660305,27.170513703780475,64.1668789055132,35.9029415439161,5.416949194600019,76.68191720471049,39.312435057644365,30.10628908511207,52.34242162419854,46.67078462270954,0.12087936474409755,75.1640981093152,55.859470315435985,31.284649094705784,85.49202189163144,73.20340165168562,88.20015807057896,77.98095882066517,74.13492746638273,42.95586015409742,7.219173124782019,68.00750446521158,66.38406248403464,73.60440717620543,64.70298126235969,65.89680926823553,22.75433354491694,45.373803493119794,31.325941974527883,65.67946874685794,49.46326688895164,30.627938543063628,46.40939411384333,67.00869415779887,69.09695569073705,42.01795812629874,74.86055226358637,66.34523540638948,65.0277316049509,87.72966556869856,90.98873351402813,94.59241357741234,99.9154773129264,99.76432701522694,46.96710344249341,53.10623815034504,74.7062276149025,87.70287313150206,78.50306487486138,88.57720668715588,86.53526240879026,72.84274994490656,45.734217380161255,41.80398074920456,38.40340624164791,59.76812619118408,47.90914011991691,1.6509154619772204,83.35284337795275,7.793646376597485,60.774208163105904,16.019180620897256,28.278904340238174,27.43317997761333,36.833263738655575,64.43093383736422,12.661686347948164,4.401653419040374,88.13749857736902,68.20730308983613,48.61190148165002,70.44491052069682,31.39128453272485,74.00703706686666,59.88407456863823,68.1019416778607,61.509632181746895,46.74346960529269,17.605466881496866,77.57471218055942,72.90459505663773,54.77300698627893,69.67370014045238,70.88094282500361,72.10741687672694,83.77177259527923,91.48114034914661,24.259624348066524,24.259989564223595,31.57463986880501,11.70996719763041,89.32069158108028,87.12325922813926,61.22816826927184,92.30697792660766,38.10104268737754,50.87406108599303,65.53382923995092,99.22717976955255,76.13020915530052,87.59269476230658,1.0530294571282406,12.494342347878407,45.19186429375921,64.47225153742137,5.350924023054215,27.401801776707345,52.74448929826411,44.3282819805091,58.52819945769141,97.21363629467085,81.08823967347921,30.739502054959356,32.13702239514758,98.42486426782692,66.37357627338693,73.06944475750011,8.614274388040588,16.770554578637864,58.98150910435059,84.38643635713734,73.06272742864265,60.81676001650802,8.884177551993321,72.99131580549114,12.447418278463196,92.50967231132273,58.266779566385495,0.005844172603353126,81.62923920312647,87.65314146064122,54.593606905211175,6.783156032284399,10.850383137931342,76.132862022351,66.1635825364281,28.62566766694338,48.00633853924676,30.05597993343,9.592657657357384,95.00187540816944,57.20094322577103,82.62115119497699,34.55581489526366,59.47823749183285,28.936958252163926,22.389677320671808,68.08106995025219,47.422094384776514,9.566162061319272,25.661006219340898,88.85118485208652,75.75388603669319,90.67076686240709,49.28919500436145,64.60337561076088,16.000193700258023,0.7261281216097148,66.08401265086583,18.02065875263221,71.39566138902164,71.10010677819851,29.38043004305726,81.33192290922491,91.25899606291148,71.02196408084929,83.25640462255302,13.68148581277191,77.87834431775241,65.75130610511293,0.8022095224717307,4.832708092011718,78.51892434683492,55.9422126279899,62.97962218909519,82.05902582589879,76.3882112164728,60.50891996065908,13.863689221184394,30.79327857144446,16.88031078436998,6.54141838493969,14.67110859319909,42.10680315137424,2.6007193533186923,71.90556729702477,55.572571660509574,25.130070843754705,89.88767841461218,96.83782347957887,18.69440728642179,83.65504464740576,50.041612664328916,27.802398820607323,94.41861887365012,99.61582566697975,10.051624751670118,54.157043709361034,86.82243487611161,52.05356784310566,68.60824387272226,38.246848950845724,65.20166671300856,93.97625235462122,44.78993737673756,83.64728416596994,11.297901622247474,43.056619185464264]} +{"expected":[25.755836,45.640305,2.5656052,22.42398,45.962708,46.73242,1.5070267,14.634094,8.732285,0.022950172,10.484976,43.80407,2.6890907,38.062218,45.229446,31.75061,45.873947,21.31733,36.933716,37.997955,8.432678,8.266552,64.74261,35.294514,27.338257,53.49321,48.198532,5.2579346,67.69594,23.85999,4.214941,32.60618,16.748894,11.209564,74.87729,0.87982655,35.63504,20.842163,3.3448658,33.743668,42.963547,46.34352,25.464882,31.830688,3.8751488,39.975006,23.615387,8.634819,14.580582,31.718872,37.096268,22.699936,52.222656,14.1511345,4.165859,19.911518,20.833374,5.331238,17.18814,32.88324,41.982643,12.632683,44.308517,56.05332,66.5322,35.221687,6.9133453,2.8868637,33.00005,14.828972,2.886238,20.28946,8.8014145,40.51056,6.262787,22.79834,13.29578,9.042282,46.77089,23.326317,0.0066957474,44.847916,28.868439,14.0762825,48.40771,8.721224,40.81543,0.031726837,38.129272,2.0267944,0.13149643,5.9409866,2.5877075,14.236193,28.381866,75.484146,18.239218,3.5669098,3.8003998,0.8714371,2.7764244,76.41846,8.498136,1.758255,62.01805,13.573664,49.108986,24.26912,29.163963,1.777359,1.0162363,4.173397,27.623138,12.548908,18.329971,51.973633,46.048065,48.65298,35.153038,31.503906,2.1988258,19.95988,25.311943,28.69278,5.8170643,4.1840096,13.759094,7.0646496,6.8950615,37.970978,30.85373,7.6489105,2.955534,24.681763,64.91055,36.13314,33.063766,54.345257,8.17858,7.9470367,2.0858078,1.5705261,19.59787,20.320984,44.411682,35.6475,9.5228405,22.851921,21.866745,34.84955,24.385544,21.437641,38.445683,2.2503204,76.31827,50.6221,12.553352,22.263329,15.159899,7.5810547,1.0634289,23.185204,29.968277,11.814684,8.212322,5.708069,13.858429,3.4289494,87.555954,1.9077582,11.514648,1.1514244,5.217333,7.546051,12.531433,36.87197,20.88185,28.864182,44.941326,4.6256714,10.592651,0.6590961,6.8181076,3.3908176,13.009623,5.1471405,6.7319336,44.457058,55.37686,1.4143348,16.046867,55.710205,0.24136162,18.794495,3.5594864,13.45122,8.0005455,83.2037,65.19054,3.9033203,37.04328,26.80194,25.59694,2.4431973,77.680664,42.106728,15.803253,73.858765,57.95163,31.199997,73.37429,2.1019745,24.489044,2.0369415,15.8170395,10.308662,3.4835758,9.396187,0.33937454,28.587364,33.148796,42.04078,53.813477,6.7687283,80.17231,95.95813,9.53067,48.24466,9.839024,16.738724,16.969238,3.069333,50.19542,6.599327,34.596634,23.138477,5.918518,0.38960123,36.996582,9.117138,43.406822,8.136108,19.104889,70.00122,41.837624,39.697155,5.3438187,5.192833,31.681068,6.4348183,80.99006,20.306778,23.796066,64.588806,7.502117,7.6052017,0.28451824,76.26211,9.830139,0.543869,4.3818054,12.33157,70.004395,0.7281301,4.0948486,31.934372,27.415619,40.710777,36.477623,20.17257,48.58232,3.712387,2.9696941,22.179825,14.559998,14.073486,2.3777065,2.9154816,13.44043,14.767582,23.20337,13.981272,1.5482326,82.02486,40.97471,8.314583,49.481884,41.789948,27.296875,76.77222,4.6166115,42.436295,1.199831,15.399067,8.270374,10.174431,8.344208,57.536804,2.0997314,4.1851215,10.330124,7.633358,29.06947,2.2972975,22.925064,22.048933,27.834518,56.756958,54.434258,11.393921,35.401062,82.89195,8.983665,30.128338,3.5381165,27.508606,16.449406,59.80597,10.632111,54.36371,27.638672,2.214058,5.244053,20.854431,15.522461,20.040195,22.752151,18.899384,56.07982,0.73600006,48.89322,0.8017559,24.830399,30.351658,9.362576,32.61716,17.62587,47.82713,20.171848,0.3420291,11.376953,12.944702,4.5159607,4.3860035,31.04218,0.5116565,2.3427835,41.95124,53.537315,29.189697,2.5576935,46.601105,12.202353,0.22128868,38.164795,2.2551355,42.170525,3.2915745,9.61714,36.790817,75.51721,21.966703,2.9325867,6.5642776,14.550255,6.4757004,14.439476,52.165974,4.341175,26.066288,0.18987429,55.572723,6.7109184,13.19278,2.538147,17.542812,19.44077,1.2610149,17.922829,11.970283,4.0338383,48.19069,52.507065,48.60257,11.172577,2.4809494,0.30436575,33.606262,2.7892375,32.514893,14.507046,2.2346764,59.04718,3.3249655,0.7817006,5.573204,10.254852,2.0498257,31.700699,21.448233,3.0087967,14.275909,22.092106,2.8968544,20.567604,46.457825,0.69551015,28.17009,39.33741,3.2998514,93.72394,22.302937,10.527674,14.984558,67.31007,0.05984187,22.256626,1.2614136,34.09436,62.571777,11.224304,0.7638093,1.8175334,2.6422672,32.863323,3.7470741,3.5469055,12.387288,17.099289,0.77638245,6.5849304,16.445026,44.64476,73.54062,40.894882,26.988884,1.4999604,76.17329,0.13820474,51.882095,61.403015,17.290482,24.020409,7.8228416,40.902206,52.547974,14.960205,2.67865,88.49887,14.87735,5.4354477,16.852081,43.822914,69.26761,0.1565628,48.438065,4.552643,15.170902,31.747833,12.714325,19.43943,39.428955,18.468338,49.636875,26.646317,8.333004,44.33911,40.162895,23.275635,55.02275,35.098328,15.533501,13.540661,28.908134,17.887344,5.8739033,70.533264,18.997757,73.65198,15.134829,57.18824,29.574623,43.32251,43.082577,27.482147,33.291763,28.56839,2.8169365,38.688934,20.42028,34.008106,39.4729,6.3814697,28.496338,39.31378,0.022565842,88.3392,42.815056,62.45294,31.723389,7.082878,43.035385,4.966469,35.18735,42.01579,22.87983,85.057556,16.77182,81.50411,3.2963333,72.00718,81.992065,39.076897,50.36238,26.726341,60.853027,0.40090895,23.713562,0.9160404,22.136509,80.673744,3.2681417,9.705969,25.314735,59.872818,5.54887,78.77428,58.683197,34.58252,72.479126,20.931389,8.120221,0.7375578,10.278042,1.5536737,0.044481277,0.62165546,1.2425079,79.27351,7.704468,61.290665,1.734951,23.599403,3.5332541,58.511757,9.788269,9.1440735,6.094652,20.519272,17.375072,11.526627,20.484558,29.20736,71.33891,4.9834023,10.976791,12.432846,50.554688,0.058984756,4.2948,32.557983,30.164536,23.578888,50.05948,14.713179,3.8800507,15.320038,7.2598495,28.366238,18.711914,6.7495193,41.61727,2.770385,5.789118,4.277424,24.45821,60.671997,1.5267086,10.314436,36.264122,68.052475,44.993317,0.038773388,39.891556,27.403358,28.445099,0.7513008,9.6755295,14.904556,16.448776,78.94165,69.54028,21.641708,16.842697,5.809208,14.1775055,54.56897,55.454903,0.15941143,78.66588,1.0729752,29.44934,73.01866,18.112183,6.488818,51.001686,48.19055,11.427765,35.28235,2.6227112,12.67881,0.79745865,34.9935,5.559578,1.6871414,18.605867,3.3688116,23.046669,14.428448,37.999634,8.950014,26.341856,13.100044,16.10252,17.77438,34.6958,20.460194,12.164957,8.26931,46.000885,87.218765,5.564024,7.492999,5.612732,12.310608,61.2517,19.568527,19.327982,41.97574,8.16612,10.451237,34.01461,22.419556,11.558235,9.520924,3.0458527,21.950699,12.214775,7.657715,13.797142,22.533264,51.631218,25.824883,10.522034,7.319298,38.206993,67.057785,0.3485071,33.796173,31.623653,6.4707985,30.050468,4.070587,18.24278,10.684536,2.1895752,11.202137,15.657082,0.5665002,31.978416,14.827103,5.302948,2.322548,0.51945496,20.324707,37.06949,60.757355,50.702713,68.71826,9.941223,43.833725,42.055786,19.045776,21.330261,9.878601,12.39628,13.025223,40.820145,15.724838,46.230026,41.31604,18.715385,13.438492,1.6233101,4.177765,4.921852,17.654724,15.387306,4.544669,11.924881,8.920141,52.141052,66.819855,0.10303688,37.51686,44.805893,43.72712,43.041023,34.691746,2.2853394,7.302231,3.2153091,96.14661,9.049118,46.976044,9.115051,11.184479,8.140076,14.484741,2.3577397,51.727867,0.97136736,18.255066,31.93692,2.9662628,1.5304251,6.6151237,26.551922,36.09375,31.43335,0.1818521,10.028938,48.773544,14.850666,22.200394,30.34378,0.19296265,3.6870346,12.348613,24.279644,18.852531,40.05452,54.288704,8.903564,13.067511,68.03393,34.462402,21.482422,45.245316,1.2012506,43.305435,2.5712051,67.0702,21.793533,5.0042953,17.140625,24.09167,20.162544,16.118044,10.753513,42.34445,45.545685,8.880291,49.871925,35.003464,16.916756,16.174522,42.806015,28.55597,23.070053,22.530884,1.4073486,1.9298706,12.969826,7.1756954,0.84286046,52.88394,4.3424644,23.6268,14.978348,30.119827,1.6132736,0.6220131,2.8783097,17.748169,69.511734,11.621929,21.49971,17.007828,26.436401,12.473999,33.13752,52.23046,13.997578,14.092117,15.802055,15.362045,13.217953,40.820236,43.97856,19.007486,62.917725,36.1476,6.7291822,43.087143,0.56676483,0.88692665,0.5907669,0.7500634,5.0761604,5.1401215,4.480835,8.3545685,60.897842,43.997063,21.959045,0.5716963,0.64291346,36.980927,5.522827,20.128876,14.096069,53.17549,49.062943,71.20892,28.249016,7.900177,3.693327,2.44133,14.011279,33.999527,17.137512,47.156586,25.660889,65.706726,6.3924055,65.876686,29.07962,28.288727,22.58223,22.505745,69.42508,23.595913,35.493134,28.467407,2.6714535,14.417194,0.96045995,13.718468,31.209732,19.630207,80.176445,1.167347,2.24864,67.5327,64.51053,9.663111,3.6605816,14.851654,13.857891,27.463186,0.65299225,31.14856,42.057907,49.252213,35.837753,19.78302,35.28946,45.716362,6.0032806,19.384796,36.506516,11.340996,28.102585,55.53779,38.12526,35.47529,40.88855,30.908928,4.5498266,32.167084,26.039673,18.199589,26.49355,40.46714,18.448925,9.772812,10.457626,27.868538,34.800117,2.8957634,17.11139,1.6346684,47.65515,40.01308,76.55336,2.0800266,2.4221878,45.664864,70.6042,0.41614342,17.715282,0.4558258,21.30576,29.643597,0.97070265,36.660233,0.8326416,1.2227726,14.510683,69.32702,7.0783997,37.66574,38.626427,6.224389,55.80253,78.28549,54.221466,19.398289,65.05965,57.9606,68.9224,26.867031,6.338024,50.80475,27.52113,17.718506,1.1041155,66.737305,5.19038,3.0786934,9.516422,1.5769482,14.819517,32.572342,2.4438114,7.293236,79.762856,21.003357,10.8915415,50.958786,34.222496,7.8057556,33.0271,22.192078,14.914444,24.095123,30.266174,69.9241,5.622669,58.16272,18.605343,51.225204,27.27227,33.784348,0.13339233,5.8912582,11.95594,35.505814,2.462532,5.24667,5.486637,8.927754,49.4422,29.421661,12.201019,0.41526794,59.865295,2.9446225,73.18434,1.9183655,46.104355,10.017975,66.36776,23.329025,82.853615,54.133095,7.8411007,17.202705,63.530884,38.715996,25.392227,10.231661,23.873535,63.591705,33.807037,11.846191,49.775238,0.8809068,2.2083588,67.37547,59.83844,13.963135,31.235165,30.657331,11.918539,11.737358,38.467003,67.95743,25.318794,7.8407555,40.543,24.201435,62.229736,2.7686348,47.43225,9.473566,49.09597,43.349213,0.72214055,0.07703209,74.58543,14.344151,42.480743,27.643173,22.737041,9.911026,4.164139,19.077148,6.339615,37.55885,8.082958,0.14955354,15.384506,16.73935,37.674034,10.955978,81.566864,42.72131,27.953094,13.808716,2.8884487,0.7842814,55.22014,34.216858,82.81036,10.704353,27.304192,12.563095,0.4729009,33.25274,21.253605,17.758507,79.450226,45.046738,4.1639957,87.51861,21.2202,12.294586,15.230804,14.64093,30.878632,1.3207664,1.8632069,57.669006,36.727142,32.03332,56.23822,6.010193,0.9290619,0.8781414,35.8172,11.23193,62.415848,83.537415,1.3745422,2.0868425,14.202564,3.014801,0.9939575,0.02008009,8.078491,33.587402,19.543509,22.097488,4.389572,9.490082,35.2544,27.835953,42.09015,30.900917,15.444263,0.058390677,53.446655,8.0839,14.487297,1.0192986,0.0543257,17.930733,31.957031,3.0731544,9.971519,5.0736847,61.189453,22.70792,27.618832,3.5105991,45.419743,13.066681,30.434883,57.826202,15.464668,24.706745,1.5527649,5.3362503,35.88826,39.963696,66.765594,44.978485,50.16443,19.737522,1.1252823,1.3382282,9.634426,32.80578,33.075882,9.34172,38.21547,4.3185425,30.566528,21.00267,8.383438,72.75281,18.179382,6.2938366,18.721413,11.3667755,29.442017,69.58895,2.95372,14.160721,5.8979645,16.435085,14.358753,35.156364,32.53699,12.685204,33.60089,30.05983,0.20288104,6.0307465,83.70838,4.660797,1.0793686,10.938278,17.426025,15.958893,0.8067708,11.872047,5.1152573,10.027248,14.610394,32.74984,15.426342,12.794056,12.242538,25.263847,26.668503,33.89093,89.2486,10.712616,23.526707,6.6538677,45.995514,50.92293,31.505875,16.952042,65.399994,24.51403,0.4998306,13.327766,21.176834,40.79664,18.965275,13.425144,25.707718,67.448715,0.13847423,27.933777,59.13115,43.97339,8.726791,13.930176,0.35910034,16.413994,17.74572,59.91024,6.3128204,2.7490978,2.3350081,2.0298386,44.198425,56.257996,1.0146103,13.306107,43.44188,14.892714,11.603819,0.3606758,4.9349136,20.0018,19.055805,61.588264,49.182693,67.118835,28.693634,2.156849,1.7914777,3.41539,17.934338,4.4665728,1.5721588,4.354641,11.061493,4.6359386,3.452551,31.480927,8.144737,51.753258,12.362026,0.46619582,3.0923843,1.9167633,13.568993,6.856331,24.83609,34.65017,20.948242,20.698471,1.4871616,40.760048,11.438477,26.300457,4.128805,8.45378,2.1410065,5.0045204,17.530083,13.5546875,34.561348,44.750076,8.824741,9.567741,35.77394,14.937866,0.31741905,50.15635,18.996315,23.145317,47.74283,11.237671,4.533924,55.05841,0.080127716,14.438328,14.785049,60.8994,42.31891,67.961334,47.97293,0.1480192,41.775444,7.4499817,29.69468,47.7409,18.52592,27.103447,28.336777,5.9557,29.388939,21.115112,35.529305,0.7908926,44.819508,51.16056,6.517784,27.366661,63.151,6.3972015,9.985601,5.7228336,66.56077,18.146576,75.7547,87.84308,25.76146,40.372597,31.778625,19.187958,6.347168,10.053055,44.17775,0.54696655,0.616642,61.13159,11.448339,7.1344833,17.682129,16.690643,39.500042,30.464184,40.759216,33.178284,25.633392,29.042068,12.259697,43.576324,19.817993,88.90616,86.38338,29.233124,20.489819,4.0579224,7.5314255,8.344948,28.931988,9.455933,32.28975,10.730892,9.608379,23.9777,14.948509,11.035738,20.382977,0.018035889,5.5590343,11.013992,1.6569271,43.391457,2.2299275,30.398998,36.20758,14.1241455,49.522705,40.33316,9.378374,12.541359,1.147644,14.663868,6.4068036,65.45698,34.865166,18.73407,9.122391,7.7578125,3.6457405,3.6537952,51.309853,28.551105,24.091187,11.096079,12.613373,64.66406,42.235287,7.270262,11.219727,54.905235,2.4496102,20.717438,11.675896,74.59387,27.820435,2.7502193,35.781013,79.49655,35.880928,1.0764103,5.0284424,2.4162045,57.86078,31.606682,2.4454346,30.234276,64.25015,26.665237,13.084602,23.58889,1.9133205,11.712948,23.555641,13.757996,0.98070765,50.012703,74.63751,65.52287,0.77755356,21.94054,73.979,44.48639,22.507095,16.914093,33.35237,7.6360283,1.9968262,1.2571163,2.4432888,52.13344,12.17482,5.765587,47.291565,42.64067,53.03946,6.3858643,33.434063,10.647522,18.947006,10.706169,8.990067,58.768616,31.083092,5.1516123,65.94162,51.820557,11.588493,16.262585,34.733643,51.958817,10.465839,43.791454,22.052307,26.710693,0.09730053,86.92688,13.153198,83.0119,31.242722,18.469393,10.115761,24.486755,23.188995,0.7968445,90.936844,8.692387,62.187317,4.382614,24.106842,6.548813,37.786835,24.624237,10.542451,46.770996,1.0939856,35.699646,32.24048,9.107361,7.868042,25.103745,11.90538,3.7088623,2.5700989,3.5383644,11.429016,5.338398,39.511383,27.82994,0.39447594,8.755621,4.472679,36.870514,13.907013,22.100159,41.56691,4.393161,27.709503,0.28030777,7.262169,60.97515,29.87519,7.0332108,4.493881,23.636719,14.667503,11.344856,5.4002075,20.045507,40.53438,49.909332,51.722885,64.47292,63.971924,26.963684,70.30046,61.46585,43.450623,70.300354,19.999756,5.1223755,4.2794952,57.450073,26.830666,4.559696,7.0406237,0.77812195,0.7648139,10.535934,20.073792,29.886536,0.23476982,8.097244,16.280884,18.799858,18.41993,54.851685,8.352615,5.654785,69.38809,7.1889954,50.75511,0.6824951,30.508621,46.409103,9.609503,3.8839722,67.679535,61.20588,27.742218,24.992325,1.3646928,17.211342,32.948273,0.27601624,44.604256,6.821602,11.422647,61.64244,67.30975,14.888084,9.761311,5.853525,22.200962,6.930771,21.878311,4.9479313,23.164017,2.5352345,31.020935,10.076138,17.426392,3.876236,4.120077,12.5298,59.244965,42.2386,23.97718,75.84434,18.981201,37.066883,38.28067,12.928757,18.676224,46.18524,0.13537598,52.38591,22.948486,0.719656,50.868057,4.954936,20.776016,5.044156,83.00128,24.997757,16.845993,0.018153906,36.45764,16.505272,3.9394836,43.03351,60.94478,1.6605854,5.409622,46.584103,2.3409653,42.68943,2.4472656,15.07918,32.452286,81.47925,62.302658,4.8444157,0.7001076,25.136276,14.702507,20.412857,3.6853027,15.134123,11.389648,29.9794,7.727257,10.899658,43.809387,0.3873186,13.547813,49.123993,0.40804577,8.315567,18.82631,54.76776,10.408718,69.17788,1.9392571,32.5225,0.04714966,0.20996904,1.1332283,0.18553627,53.46057,28.512924,16.19335,18.467224,3.1541123,91.17017,9.01741,1.4199333,41.622437,17.796684,19.33709,15.213863,38.56891,11.792598,17.08929,19.847015,45.599045,44.68457,9.405762,58.112823,11.113945,63.80581,10.156418,27.981476,3.8972073,5.3625965,23.89038,30.793293,56.193382,11.826202,4.1049995,7.221388,0.22541362,5.1088505,16.219894,35.37726,6.899046,2.8205338,84.2001,58.64025,17.741516,21.762596,16.903503,2.5301456,74.152176,49.841293,18.064545,27.58281,21.353355,77.2301,26.92463,58.744797,14.405243,18.40607,34.474697,29.136383,0.027202606,14.224113,7.5966988,69.944885,30.670124,0.3580947,1.5291443,17.819267,7.7396812,23.076775,17.296028,1.6980762,9.259083,2.0399613,2.6594238,18.050987,14.694965,19.35579,46.562454,64.20032,3.3593674,0.6782932,50.08568,25.744673,0.9982228,62.385468,24.376534,26.322712,5.8999176,13.290741,15.279156,40.34967,1.7046375,8.279434,11.3081665,13.245895,6.155945,5.4550533,15.439705,86.96482,9.418121,48.55165,17.077553,20.864372,40.916473,7.699852,49.3985,69.37494,59.01838,5.63142,8.281574,5.9244537,26.027802,21.940914,9.880585,47.370102,47.577232,1.6965523,39.2574,57.732437,71.79181,1.9081573,32.466614,10.10305,44.720818,32.050537,59.198235,2.866837,0.035190463,22.494736,63.82022,15.462395,2.8766942,7.2971954,6.995285,15.00975,67.08826,13.016167,76.15173,18.841904,11.706909,54.851585,1.1697912,66.56411,38.587208,11.361206,8.925705,63.244415,37.43759,11.439209,0.83559084,5.9353905,54.979126,1.3972015,4.2328176,76.11766,3.3468628,29.395721,29.008154,14.78598,18.289558,42.513428,9.298599,4.8848743,32.763794,1.4981432,13.94141,2.6313286,28.411072,76.273346,21.037472,50.450073,4.262024,37.715378,21.064217,25.849373,29.989548,34.905373,1.6146278,57.859634,25.932678,2.925236,16.4458,1.7544899,39.05139,42.347527,0.12810516,7.492737,45.20784,40.690872,4.7421517,14.567623,1.0405731,16.008652,9.189487,6.495796,21.092987,6.5836525,8.712418,2.9925003,2.9064655,84.57892,30.499542,58.228424,27.45988,45.04033,8.645584,32.718864,24.311256,23.401917,21.562012,67.93131,10.95816,13.445389,0.6668091,40.92688,1.4304657,58.623535,21.070324,8.779205,4.72266,49.981125,17.217514,40.51758,0.1496079,43.80356,15.981117,9.978958,33.454712,54.420403,3.811514,0.91929626,14.667126,33.002174,0.6051254,5.003375,6.4420013,10.437313,20.840164,15.667091,4.0839767,3.1579533,3.689948,13.905317,43.809677,39.651367,3.435152,56.716732,49.80078,66.96985,31.825539,3.8781319,0.6918144,22.253754,7.820977,3.2236252,21.516357,42.81781,61.41619,2.8687134,70.65765,11.17482,3.8356524,0.9958496,4.0722904,17.432198,57.089783,52.664238,1.9898224,6.8344784,3.531372,67.26505,21.7359,33.034313,28.993027,57.788383,59.730072,18.910614,31.53601,2.0644188,63.89258,25.806091,72.770065,17.86575,40.956085,39.630875,6.75175,54.391663,24.644684,8.368393,39.24923,12.176956,43.052063,59.1398,28.058533,4.676132,47.29474,71.33823,3.5205612,0.35959625,44.533638,33.3349,85.18025,86.665054,35.127983,36.919403,26.066528,11.243423,58.743393,34.164036,42.131233,25.281235,24.040651,1.7113991,3.9426398,43.680466,36.587143,82.75635,66.34119,8.922485,10.445465,9.562417,1.2565517,35.93629,29.156387,1.087307,2.3361502,28.86895,5.092827,25.573616,6.081394,68.21099,30.886955,60.933655,25.51786,1.9812808,61.263763,9.283161,4.989422,93.17618,21.511292,13.00396,22.033218,88.50433,52.46482,11.356295,23.574224,20.296734,82.602585,59.530327,12.2054825,3.7039418,76.21802,19.282812,13.447159,6.1851006,5.764845,6.3612976,5.963993,13.953041,10.402977,2.4030304,25.787422,4.183857,24.109497,17.248161,36.785286,80.48815,30.211975,0.20471191,38.569458,19.823763,56.17366,44.37923,0.05996704,70.62291,83.26294,10.7272625,71.53633,14.474617,10.867615,10.820854,6.188095,11.978607,14.790459,67.760445,9.391861,21.627243,1.6814384,9.900482,65.21647,38.555664,64.238266,13.902039,2.2408447,22.955452,57.365692,7.8856964,36.23929,18.699059,22.007019,19.808563,4.872757,10.200611,8.535788,58.395874,8.195923,9.239784,37.06288,26.982729,64.33976,18.783665,9.06179,20.466713,0.94836426,18.092903,14.374184,41.917015,30.560608,0.15619531,71.457016,0.011419445,0.0803981,34.012146,24.774338,34.989353,35.02716,32.849457,32.910606,38.755737,22.753391,27.944168,9.295639,0.06185937,40.993523,6.401005,47.36902,32.63399,7.2133465,4.629278,21.251465,33.15956,21.037498,51.489998,20.95546,45.134598,88.10193,28.413597,32.455475,0.09516001,14.959549,33.87886,49.940487,51.55005,0.00014227629,4.005519,60.31664,5.106476,12.2733,19.700378,40.277332,12.217575,48.16041,25.234741,2.598549,37.014984,11.719183,10.251869,11.47357,20.10102,27.018456,1.8909435,36.708176,15.9715805,23.019676,0.7871895,9.8005295,33.8208,13.925283,42.48242,15.226784,0.7146435,24.911194,9.472992,41.453735,34.129833,60.432404,71.98822,49.32744,64.85502,2.6463852,24.275085,42.79138,56.441376,37.899666,36.954617,24.766113,43.678238,24.347954,15.138176,38.610107,25.393776,53.646324,18.522217,65.897385,96.482285,61.856323,15.215698,42.218987,12.985609,1.8785973,1.5997696,70.44906,70.60908,1.4579468,5.338993,8.076157,55.396553,40.102448,42.165314,15.56398,6.655567,11.919533,24.871433,38.18457,5.3333817,19.68357,30.398102,43.772636,16.278336,9.939568,2.730835,34.850327,3.6439023,6.5212097,8.777008,0.051995814,3.1901245,21.31247,2.3313942,6.0741987,0.50586987,5.219574,70.26837,6.72523,4.517579,2.2063904,54.42282,22.311668,55.10479,47.864517,2.1998372,25.62133,46.358414,24.10144,20.81092,72.60428,14.755215,18.434269,74.34729,0.8980489,9.165939,58.632477,32.252045,27.181519,5.2482605,33.685684,5.6900024,13.475937,17.905396,12.748661,12.728117,1.9025154,20.587814,0.003047131,31.843796,36.793602,37.683643,45.142464,8.839241,34.639587,60.417496,23.439968,40.3741,44.715546,76.44897,7.6188965,71.16615,4.099205,16.62751,48.106575,1.6959152,37.68261,17.541756,0.3294773,5.2201366,23.985474,54.131943,44.354126,21.978073,63.562202,32.93109,11.422276,4.7678223,58.781013,34.881325,8.895996,21.691631,16.240509,35.40996,1.1903627,4.488653,8.456203,15.12661,12.897583,46.174088,8.171471,22.146637,35.746857,2.5571556,3.2215438,7.293275,6.9809875,61.99756,57.928696,63.276276,51.695244,1.084671,17.502563,30.733292,50.222168,55.20719,51.38113,32.55208,7.9199295,2.8170428,3.453886,42.94011,47.15735,11.862503,43.52498,47.043648,58.326332,69.204994,51.671875,3.4202003,19.790787,66.79205,78.48144,27.960674,0.2685734,5.2720566,26.363403,6.4599113,3.6044312,20.358322,25.81556,23.679047,2.9921265,16.772205,40.974335,77.61836,58.625565,47.87281,3.3630981,24.738708,8.326977,20.77493,5.1893616,16.199928,24.05545,25.857677,18.837524,45.91983,1.3294072,50.867622,6.309906,34.516396,51.939117,38.27625,9.936829,68.58388,15.406021,50.802765,2.997696,18.438267,25.092274,88.879456,5.798622,8.80986,6.0452347,26.84401,29.668442,16.68052,2.038454,24.624062,37.547607,6.082123,38.594513,9.112043,6.837799,12.723267,20.112965,39.179504,67.159195,5.7882824,10.099522,21.312023,75.47339,75.42998,21.863953,9.885869,15.7388,3.8068366,12.340942,9.075291,22.155447,2.6732025,21.076447,82.46677,0.07980919,10.9495735,33.270615,44.75708,44.88559,42.69537,11.383057,32.251534,2.1062546,38.802597,50.848175,48.371414,33.502544,5.4521713,0.43328094,56.25895,8.965578,5.3261414,5.7287445,9.467724,3.3953247,26.513435,9.010206,85.89392,51.069286,40.28524,15.547928,1.8969116,7.465225,27.59969,2.0518303,92.3031,23.494476,4.180542,37.2797,85.46982,4.4781895,12.715271,3.5174675,19.271072,22.540009,25.85614,11.399935,0.422431,14.125504,3.8082087,9.681675,12.667923,23.938751,8.4021,40.915237,40.971058,20.219254,4.8501472,19.172394,24.258575,6.662697,10.107952,6.7152443,2.1705704,56.834785,43.402023,47.325966,10.0373535,6.6798353,7.444168,45.429657,9.898527,29.375412,37.28542,51.282074,30.30822,4.7133102,6.426176,2.4240484,44.01532,9.882538,6.3824425,36.833313,13.809349,43.100914,58.19204,32.63099,0.12564099,13.520649,51.110962,43.09777,39.56343,61.02234,2.2794342,33.547607,18.353785,63.154602,71.79764,13.799376,11.128696,11.306831,7.45269,6.7492723,9.118439,9.208199,1.1404228,2.6539307,49.03441,5.605057,44.97721,59.349945,17.904068,20.812263,13.443375,21.499481,17.070063,20.56549,12.558327,20.171612,23.296478,1.483242,36.25374,38.129623,1.115654,0.12321663,25.882446,45.70314,27.39251,22.98087,11.419785,1.1259389,94.246704,25.100925,6.6081543,72.46982,6.1088867,85.8696,3.133789,8.538666,19.148678,8.403351,12.566269,10.3896675,40.100494,13.862991,23.622393,19.06311,15.766937,69.41774,10.677898,4.7418995,16.081871,1.83144,8.201998,15.778152,22.610954,10.287201,21.906837,64.25615,0.55010414,9.644493,16.75,12.475342,0.25691223,38.049866,1.0434647,18.416908,25.390686,17.88166,55.431313,24.091976,20.73442,13.706032,10.635864,13.496571,11.2793045,8.57619,5.885488,34.393944,19.795013,53.061127,33.17093,16.701962,1.2394943,8.652635,0.5518546,0.064971924,6.2970314,43.573196,4.4473686,32.200493,9.394148,37.24643,4.4157696,18.303528,9.9021,4.3032227,22.25589,50.774902,3.9480934,42.0347,4.7491455,56.710495,0.51250696,60.57129,45.28488,0.005852758,48.293026,4.935478,66.19572,11.881193,15.556461,5.6943436,18.478226,86.91411,2.303276,2.851544,24.43351,85.17912,50.857178,2.3192596,30.992558,12.367317,6.379284,39.424934,36.102833,25.64595,5.765444,42.8407,27.338242,45.084724,36.815865,18.33543,11.718649,1.0532532,17.609756,29.523045,28.287247,6.0170155,16.968094,7.568063,13.666107,4.58482,31.687897,2.0552216,3.4562683,43.912323,8.53241,2.6425495,0.08567545,13.477497,4.564636,10.333585,26.581055,14.448013,41.295387,65.946754,40.190228,18.746708,20.214241,30.895332,15.448038,84.21508,3.9556808,11.952141,7.328491,3.505165,19.596687,13.145653,26.078217,38.02072,21.365494,19.955742,10.539673,22.1678,68.51038,25.0792,37.79377,29.318665,77.393845,4.4664764,5.7630825,6.1512647,61.270645,7.186268,13.58156,2.0377731,16.462479,13.429409,10.007381,45.24359,26.973328,29.19006,1.8415718,18.862137,53.989502,6.749649,0.96559906,20.530613,13.59478,21.04767,12.870209,19.546814,35.63748,49.672333,76.51825,36.27204,17.123795,8.962341,89.212814,43.114624,9.044434,10.083031,5.120886,82.46698,36.745186,37.833557,35.71869,2.9615326,2.2836752,1.8361568,56.84987,96.87103,8.402176,13.708487,37.773613,7.194916,10.459145,34.739746,21.460812,0.36921692,2.2495117,10.644424,6.9070454,8.9327545,23.971985,19.597443,10.0090065,35.990887,20.955276,22.42717,1.149406,13.212688,49.748566,8.295044,0.47235394,54.220192,6.4311905,0.4824829,14.383205,73.658936,27.179916,14.814072,18.957062,60.278442,31.043953,11.638443,1.1161766,90.37073,21.635517,64.08599,15.71587,0.54120636,2.0749454,2.5138016,21.226105,34.783287,14.363068,16.664764,16.384842,22.214722,10.09877,23.496487,61.891876,0.17157733,3.9209213,4.85833,15.5587845,38.916245,6.6225586,0.63591003,31.114098,27.895836,7.297271,43.91922,1.8297453,6.186961,20.330994,22.763039,8.070217,27.946617,1.2169218,8.41333,7.3621254,37.995148,13.961319,21.81665,4.0947723,36.77417,3.5744162,25.183777,91.426575,15.914053,54.509033,4.7728653,62.723778,19.030502,54.074272,12.036652,6.93079,47.234276,65.25317,18.374329,27.34351,62.47561,34.548035,59.14055,6.24765,21.634342,37.087402,15.106308,15.619238,0.107494354,19.138916,24.678669,68.161255,1.2937002,31.922058,5.6582565,77.32033,38.498444,10.399746,42.64802,1.5366135,2.0271068,22.263855,2.802393,22.529,10.476196,0.20428467,16.765984,73.1879,33.999557,6.401601,38.20987,27.112076,33.05265,6.3528595,36.767006,10.978489,33.48915,15.940804,1.2245712,39.083897,32.773193,8.247559,0.7131827,0.3190441,53.209446,48.07408,31.927876,16.792633,68.01773,19.892944,37.25128,14.079933,29.94497,4.1003,36.874588,3.6606255,6.821928,19.800064,6.9746246,84.7865,7.1739197,15.176018,3.0837379,23.32003,23.932133,43.68467,4.1746235,14.097197,3.023097,0.7034768,33.06887,23.28165,30.04068,62.513412,98.81433,4.0805964,9.244911,41.270428,27.05411,12.045214,5.639099,95.08079,40.40679,32.47632,35.65187,14.045418,7.3072586,1.2250061,3.028946,15.19265,43.59989,36.305023,32.040955,4.4429626,45.33728,38.079712,3.3459473,4.286309,45.69592,19.738997,71.42537,15.085419,0.13305998,54.27275,27.68266,23.46257,1.6246796,36.924637,75.506775,9.181168,3.1437378,6.512541,8.086533,6.9650903,20.280151,17.330643,11.554352,36.481033,6.2231827,3.6088028,9.15803,39.665985,3.3766298,70.59421,2.8316813,1.0033722,7.089203,70.49336,71.498886,1.5093594,30.305054,13.232704,19.721222,33.00406,73.660645,24.506378,3.9492817,8.239555,3.2176247,20.573208,2.786687,8.426147,49.13141,15.977663,15.532349,80.757904,8.640083,25.386894,4.9556503,34.640953,36.609386,3.6415396,0.6758113,0.614069,2.4163322,3.5391312,0.21854079,81.79733,8.881447,34.98566,0.8796921,33.265976,3.2441616,74.83804,6.2626953,7.766983,5.320366,14.169537,80.32214,9.767792,49.739624,40.242767,59.670135,74.61345,2.033165,23.415543,3.1967773,39.037643,7.603718,37.89453,78.51468,0.7250824,40.596924,18.811146,50.9949,23.097595,85.31705,2.0986538,42.296204,29.039719,59.88346,15.036911,10.201537,8.484871,7.8425217,2.0101686,45.08169,0.2621851,36.230957,4.1264496,28.0401,56.87619,27.09797,66.39093,4.859576,0.86264753,10.037582,45.9151,31.030212,13.169777,22.180344,0.3885119,47.11796,19.256958,9.66465,46.153988,0.45471,32.751266,40.81457,23.879875,42.352036,10.236824,19.502193,38.533615,43.594482,46.717102,19.88858,25.648697,7.2457275,19.59375,39.252136,37.30802,3.2293167,1.379056,70.99838,41.69407,10.741913,4.107608,48.934387,38.461555,55.24437,23.530096,5.387207,59.616257,4.841412,8.139569,47.312317,2.6931286,45.739418,5.2584314,87.14548,0.75274277,7.504963,50.789383,18.972862,29.943329,35.09281,0.74530554,12.450794,57.621292,19.236835,39.26716,81.47709,24.633793,32.777954,33.97229,13.52813,27.831543,56.95601,14.651478,36.058685,13.88134,10.073,12.921539,40.154938,43.917343,20.75003,51.35408,50.31836,0.06447679,9.487234,5.274048,30.046085,3.3450966,9.441202,15.044296,36.106323,46.04647,7.3056946,21.64801,0.24080074,1.2400608,33.799747,18.102055,9.915885,11.970146,40.545525,60.790398,4.145569,5.8301907,8.688943,64.12383,10.124084,7.1240845,23.489311,80.4958,12.978796,21.34497,81.431885,21.400124,10.797745,29.054054,18.964607,6.021162,95.606346,36.770145,85.0661,10.176552,8.719292,10.728737,25.288376,58.21216,62.42389,12.12231,6.172674,13.109188,3.0574036,40.40425,56.60086,10.975914,0.73244476,0.13954532,26.029419,5.7699013,49.99585,3.4539032,7.9280567,22.279297,4.8199368,4.526784,6.3024864,0.0959034,6.3305626,9.739777,41.548874,4.666006,19.623741,16.047539,43.48587,10.049271,63.922264,6.0042934,7.139908,5.8667946,22.712074,21.229729,2.4053864,12.928726,11.390701,1.1702728,30.944946,5.9494534,18.726543,64.82483,9.514923,10.052643,35.02957,15.9860935,5.7602754,29.307373,24.036743,29.230804,7.5300426,18.641693,8.838867,3.978321,20.840904,12.982666,31.349075,17.669838,12.531563,23.867401,10.625076,13.033165,46.22123,59.698975,1.8674889,10.857129,14.095055,46.655823,57.36685,17.875807,13.6806755,2.0611858,28.344341,5.68219,10.173462,15.877159,84.76675,0.6153908,42.75717,0.9382963,32.793552,18.734543,19.493774,5.3430176,1.8273773,30.207802,30.201485,5.983753,27.436691,89.93786,26.40966,17.065186,48.05549,31.027344,10.776001,45.753494,38.88507,4.0907288,55.55809,79.151924,22.282906,12.4392605,1.0755672,12.248291,0.98168945,21.807304,16.314919,9.075554,31.646206,10.558329,9.443672,37.19719,65.105896,51.47323,0.98435974,20.206806,3.981205,47.74881,16.728327,43.819527,11.237503,1.023304,12.670059,8.722549,27.877068,73.641464,42.95629,44.18216,0.0066622654,13.846512,39.000164,11.957321,4.687277,84.68204,17.860336,47.61931,76.95713,16.570675,66.882355,13.186047,15.289995,72.49522,73.6732,37.371216,5.5669518,9.932335,44.166687,63.83512,29.44217,7.499893,21.242466,7.1507187,4.101631,26.680115,33.09226,1.8842697,14.866196,40.68268,1.2026443,57.767242,4.152649,13.326515,10.74025,68.9727,0.427536,75.67001,0.27142334,30.037735,82.305176,19.387856,91.904854,4.9744806,4.100831,12.161049,5.274681,60.050385,39.664177,54.63775,4.815241,32.485023,55.073303,3.1182022,51.39747,10.381584,35.63379,54.007042,1.9506121,82.95697,7.9217987,10.59774,0.7504988,25.425743,27.324028,1.6725793,1.815239,0.66343534,46.99769,74.98796,1.545475,93.87152,7.217848,21.901031,46.44995,51.989235,31.096165,16.00599,2.6695404,19.517181,9.4953785,12.210724,18.541267,6.250244,4.1083984,4.4851074,43.98887,21.602936,54.315323,13.741087,20.397537,12.332401,20.851948,0.16237324,29.618103,34.082703,22.53437,49.614426,3.6041303,53.66942,21.386307,30.036621,26.585075,21.322449,10.055923,11.330542,43.153362,40.109436,37.87368,4.610388,3.2646813,22.944187,72.46843,47.8407,15.829041,38.39524,22.154877,57.283966,73.29146,72.28405,1.0875344,2.2797127,62.124863,40.332855,13.34901,85.313095,14.777309,13.701462,49.878704,47.76123,5.6620083,31.900864,0.30644226,35.836735,21.479797,53.006104,23.693665,42.0683,47.537903,43.039185,16.146835,37.217545,58.913513,26.35733,20.07727,39.73413,24.977634,2.2221746,13.773132,21.4581,42.993042,25.624443,8.17531,80.83061,1.5908432,19.868004,0.5243707,12.563271,60.389732,3.387537,30.221634,34.909782,2.7829475,13.629822,19.953838,31.621952,46.80481,93.35266,29.927029,7.047949,44.744408,34.414734,48.430172,27.396202,1.699646,53.698723,0.09443545,57.23419,11.045988,41.739594,16.143932,48.48094,52.662933,2.793457,3.0433197,6.4945717,40.552727,59.630867,43.007843,5.2459393,32.991455,36.124588,89.704895,44.768913,19.504944,21.096527,54.14257,25.228767,66.51677,7.2445946,61.45337,0.54027176,78.462006,8.20549,2.6603184,35.434822,76.96735,40.492737,32.22149,0.5683594,48.119133,27.28798,4.121357,5.1799774,27.73323,8.347328,15.903809,5.005638,1.1144185,5.386818,38.11643,16.80087,28.967834,59.903763,1.9058723,12.688187,95.7891,45.712296,14.26416,19.662567,0.037797928,1.2639595,48.392746,14.691719,51.48964,20.858429,16.816347,25.450745,19.83014,2.8055077,8.237337,6.1895447,46.716652,15.467539,27.528938,6.4505196,34.319603,49.998943,15.037735,75.53078,3.7151184,69.39643,68.16247,31.608765,17.996883,44.27218,64.3042,4.866226,38.537872,8.311653,56.25644,3.6744518,74.89891,27.867058,19.253662,6.9155426,19.477821,8.64912,1.061054,11.92659,36.45755,24.079468,38.859238,5.4124446,5.636627,28.741913,7.191719,13.154694,16.406372,2.3721008,53.047394,7.521652,9.737717,35.48167,33.927227,2.3395386,6.7141666,37.55771,17.19339,1.4084206,6.7930603,12.218376,20.159882,20.144379,9.102898,50.826874,1.7339935,14.785812,6.4087753,47.922157,27.224365,30.36679,47.729004,12.563572,68.41107,35.865387,4.757824,54.01358,64.46906,13.809387,6.0534515,13.031448,6.6250467,7.42749,31.868217,30.861633,20.178257,9.888382,3.3873444,24.899597,45.66858,35.649513,11.507141,89.16699,24.712658,17.849916,0.36877823,32.567596,7.8000984,8.124207,3.5431442,7.67342,32.35808,36.55934,66.33011,30.492962,12.536537,1.592474,6.7333107,5.9060955,16.564692,20.795197,7.7095604,5.279911,13.04998,5.409195,67.79184,2.6990204,31.940598,2.174839,46.421852,51.26407,27.656052,0.90264034,72.23352,56.04532,33.11435,41.192474,1.217102,2.259079,0.7391739,16.707458,4.330516,44.615532,8.981397,56.61978,9.487709,45.223724,56.983093,26.39787,2.5835114,2.3766508,16.669533,8.895376,63.97583,13.994537,6.126339,7.099964,12.276489,0.43924332,9.378334,21.18695,27.362808,24.84568,13.212084,36.434784,36.677525,20.02916,3.834877,0.7076473,46.2334,18.919983,18.062057,22.949974,14.951302,27.679,26.253265,63.056885,16.874485,20.750843,82.57457,23.444221,8.475513,83.34946,19.991253,53.68338,1.7212563,12.939575,12.388451,7.4989853,14.837824,0.98919153,72.678955,5.5417957,13.623024,32.919548,10.485683,17.416107,18.033783,47.311768,0.6502991,21.594147,2.315918,42.01758,89.69221,74.37704,6.0278397,1.3532104,11.928146,6.312149,0.9072523,1.6475601,42.21277,23.085121,13.1692505,7.0689087,11.2286,0.37689734,0.94794464,42.439255,3.2955322,2.5244713,62.357162,16.6875,8.139722,43.691895,40.353962,13.5466175,5.9211426,18.69989,22.757889,4.7218857,1.7164841,47.06893,0.020569801,21.205135,6.1799316,3.39474,31.779293,1.8066177,7.1328583,2.9850044,57.563637,7.295334,7.7188663,15.221166,62.68715,3.3635273,3.298934,15.750238,15.424128,38.57004,25.245605,55.379944,4.2017994,13.752966,10.354824,59.059456,7.0890217,0.75188065,4.0659657,52.550877,18.624252,8.289703,47.976715,20.114159,50.998016,68.346436,38.226562,31.331337,42.53724,54.600937,19.176956,18.572723,87.9812,27.612888,53.276436,1.6618423,6.2788167,16.215065,27.288834,15.169685,8.408882,20.483002,17.118378,2.9276505,17.89029,48.481598,12.827723,27.252121,6.319145,20.271439,41.448853,11.153381,0.045218572,1.4849148,13.96817,1.2422829,42.737167,4.000572,16.0167,1.5586395,0.07270765,22.380676,5.134392,45.99936,38.61064,0.8188534,68.894196,25.775291,4.4216766,33.16272,11.87505,17.636108,9.747734,51.998837,39.898468,50.795685,63.163757,52.85399,6.0187073,9.424553,1.0653124,26.030533,2.3632264,6.4676323,53.335224,35.148758,45.038467,0.39434814,0.002243042,32.2135,9.615135,76.33835,18.33802,1.6456757,15.514885,20.86055,46.435246,12.680916,19.159164,3.742752,28.468254,15.74958,52.48091,0.5317218,2.0666122,23.533203,17.94233,49.440666,7.7383556,43.282257,2.580593,25.530746,59.411896,17.343002,4.599118,9.732185,46.644897,35.08207,51.740425,30.155464,87.13757,15.384491,77.519226,10.016621,1.5322418,6.148754,4.6159554,65.74552,0.83775806,7.557041,0.563756,39.39795,27.90596,36.77411,26.49392,47.985962,25.441086,13.101761,20.60405,5.8007736,77.021576,5.83803,2.5396423,29.345276,65.556335,14.577526,1.6157837,17.800446,27.025253,42.46342,5.2202168,4.887106,9.733795,66.61058,1.8162079,31.381348,15.735479,31.916016,1.4012794,9.202854,22.958107,5.7951946,18.39721,0.45376754,1.2390518,47.817993,1.9620628,25.033558,15.352259,60.67079,36.342754,42.541412,63.074463,11.302771,17.563204,1.3676138,4.95648,10.004852,27.56369,88.611824,28.548187,1.1690369,0.30818176,1.3669434,4.1729736,20.8162,56.386658,10.025491,59.272446,5.008835,41.082153,95.782776,19.728823,13.358177,42.35759,71.5007,3.4789276,2.2555237,9.381274,49.650444,18.054298,22.488312,1.299068,12.58503,52.83735,21.057344,33.506084,44.784332,22.553406,46.032303,1.9497833,5.1457405,6.3676605,3.4930038,32.650276,66.487976,23.527222,47.32119,10.733154,13.66954,20.046907,1.4665222,41.921997,11.2883835,6.8371353,57.661392,27.991577,13.24321,8.948664,96.017334,4.6110535,50.330902,40.679737,15.990444,14.424469,52.05918,16.634575,8.460358,32.85208,21.36853,13.944084,31.617325,49.562576,32.24075,58.860565,3.9463844,1.9620361,13.199219,11.034493,8.616834,44.4992,47.751114,62.418434,35.152836,19.390457,21.007797,7.5292206,6.2993317,13.104492,13.877365,12.294384,21.858131,13.647461,35.05542,19.227608,29.428932,81.096436,22.186707,37.34796,64.517944,68.4406,6.360855,0.5553589,10.291885,6.4111176,1.1335382,47.21335,10.523922,2.1254578,10.159029,15.874313,9.470963,16.814377,10.066616,7.706894,9.506918,7.7716875,5.330639,16.422047,16.47815,6.360546,67.96239,48.607178,34.290985,9.892559,7.9853516,45.500015,45.025757,0.51095295,67.59851,21.39859,25.084091,42.001705,18.988647,77.26663,18.988579,15.85643,79.08803,20.54237,14.889824,58.43332,8.423151,36.11196,25.601173,3.6136322,17.915756,1.8346405,53.397644,42.567276,2.642765,28.122799,23.948578,52.41278,28.099041,57.205017,29.216652,15.724481,21.401466,16.471786,5.212036,2.6515512,4.6902847,79.77652,38.229927,9.109901,18.617157,34.22089,41.095703,29.97815,10.827911,15.663643,4.0468874,2.1702156,15.782303,8.0659485,1.9008722,1.7085972,0.35515022,24.303055,19.987747,8.968697,66.92707,36.182407,42.069687,31.667496,55.727325,51.89258,28.379898,70.63648,58.646194,3.471817,42.596954,38.788696,16.76419,34.735733,30.525467,20.20343,0.8268044,7.3098774,6.434349,13.22261,14.138752,76.25223,25.312195,7.688492,6.064476,53.694035,16.957748,1.8373871,58.534157,60.738647,15.121742,12.04068,11.881897,26.274021,57.943024,15.451792,0.1865387,59.0876,39.555202,70.388306,26.27652,1.0806427,0.34971142,0.5589013,51.97101,33.087822,11.036219,1.1828566,1.473877,6.783493,37.086143,9.909939,32.58869,0.3395996,4.671223,23.453033,36.7955,13.05352,0.22021103,57.05063,1.5531921,20.493649,42.578613,23.454433,25.772778,5.672249,25.81567,53.968445,4.234519,25.660965,76.75757,13.0289,13.061977,73.99065,47.836906,37.72384,8.582848,30.572388,3.5129938,31.321457,13.062454,5.572342,37.472107,61.331665,40.82335,71.57559,69.92139,10.304047,32.332306,55.153313,14.089466,87.87891,20.78469,5.9745255,15.125076,0.08351898,52.613365,4.436908,21.594341,29.61036,15.258499,34.39821,1.1054087,17.244457,29.65207,6.380249,36.12674,4.200508,12.483669,56.950294,21.897842,12.069885,1.3783245,26.545841,92.262634,3.6308365,61.06018,42.156685,24.139526,4.683777,8.824223,29.845161,23.147919,7.135689,34.44687,44.06646,76.92204,18.809883,0.34555054,6.1274204,17.632767,0.5146103,81.921875,63.616684,16.510876,22.006996,83.12349,17.421814,9.587776,31.20935,1.8352509,32.532326,52.778954,0.45032883,86.35889,21.717575,53.4513,19.48545,18.188473,19.843777,47.540005,75.60516,23.43821,1.2997437,55.715042,5.8442,0.7959862,72.74463,8.912693,0.38765717,30.837475,19.399094,13.711628,43.167248,36.939007,38.860588,28.90747,67.02817,19.632942,23.189362,10.741756,53.489265,29.176392,22.621117,4.5697174,25.928467,33.72809,49.64685,91.565285,31.781494,55.11844,10.531555,29.541027,3.8986206,1.7607288,0.46051073,51.07428,21.824993,2.354,47.700195,38.42578,3.4164429,33.151855,22.535854,15.423094,25.57449,45.064194,21.30304,24.744797,12.629919,1.1003761,8.987202,11.257347,33.75586,41.815777,19.79538,44.23181,11.983849,28.834366,21.873398,29.769676,12.939362,14.31415,4.074936,10.906006,1.3894501,51.407684,25.071274,0.27137375,3.7620792,4.631609,19.414429,24.201546,2.852334,11.406738,60.728104,35.380615,5.0949554,14.434784,2.563408,18.213915,40.240906,16.078354,14.611031,57.755386,44.632347,12.895306,67.980774,8.555794,71.379776,12.977303,40.412827,2.4206438,12.42347,23.072098,71.79797,0.0005404949,8.646744,17.361893,2.4332352,46.48398,50.549744,8.854404,38.79375,5.326111,4.479477,33.401917,20.82552,4.911934,29.731709,15.082512,0.44464874,77.48706,16.432394,20.237885,17.35913,36.280075,5.722654,7.527628,35.33165,23.577827,2.0802002,2.6586738,3.0506668,47.61494,63.35138,12.610054,0.22279358,39.77613,21.41211,19.100815,1.1194446,0.7407608,36.843414,3.9256668,6.8823395,1.2095356,9.741547,10.565052,48.605774,50.095,3.635563,13.618816,0.761096,24.815033,3.4037628,32.234245,1.3627243,68.59468,3.0944214,38.991302,50.40387,32.814743,2.4629135,23.401608,14.885223,47.058014,31.321991,40.685936,0.49682558,22.067833,1.5537767,10.061203,8.784607,15.125608,31.060627,13.105988,29.22107,22.605152,47.605507,62.217346,12.988468,68.51646,4.7256336,36.831024,30.120361,16.294273,38.565277,55.43451,24.873703,24.513882,33.707527,18.83184,22.125214,0.061566353,0.5383434,32.593063,7.296356,27.641014,37.434097,46.644608,28.04184,40.329525,65.37696,0.5368042,25.385822,20.91721,13.758522,30.863525,78.745605,9.7890625,14.110962,8.332527,70.3307,5.339634,26.734055,30.908325,2.8540268,57.02545,42.577393,11.900003,27.572144,38.014805,74.80038,30.144043,41.661774,2.441864,21.726944,26.542683,62.19107,27.453682,21.55223,23.260254,8.853302,42.592636,4.1878967,2.050949,19.42923,21.579681,8.498732,5.386074,2.10259,46.69603,7.4814224,13.618713,42.209106,23.944847,25.27378,19.236336,76.56708,50.442833,3.670063,15.622192,0.77978134,88.285934,11.506226,56.15161,22.503311,87.691475,10.468481,54.46499,42.845947,16.793701,3.9082336,76.48778,10.740442,4.856561,58.227966,19.869896,3.7607193,19.00496,54.624756,23.664879,62.847664,21.217957,0.8968506,9.504646,1.854229,58.8779,14.209312,2.470581,3.9785442,49.40166,35.3453,2.986268,5.3575172,11.950493,48.986137,2.4677296,15.702553,35.20993,25.685356,24.613956,2.79248,4.9102707,63.927216,11.044369,14.169136,24.299496,21.510231,0.034118652,21.8125,3.9888844,25.826477,16.196365,0.9953432,2.129198,6.196991,42.01422,11.741234,21.83902,61.31836,7.4347076,2.7127728,84.36751,18.021065,62.401764,5.479645,52.76465,0.6883545,11.76136,62.46826,42.99228,0.9802551,12.364025,1.6902771,10.229889,50.367775,1.5033321,61.050964,48.421265,47.87314,56.093628,1.618103,27.152004,51.344833,26.505226,15.096153,40.872223,73.78674,11.251884,9.080706,17.642456,5.5755615,30.432598,28.524754,42.449097,48.628265,35.847656,0.8515949,2.9268208,20.690536,2.3970413,2.2658129,31.721443,2.8336182,28.181175,7.14779,5.926628,12.850306,69.96047,50.146675,5.380188,6.233139,6.518837,0.9290581,0.66215515,48.02375,9.963806,36.53456,57.768227,4.1555786,10.630936,3.0535083,7.6018105,31.900421,17.560112,45.36561,31.29448,86.16421,75.798386,42.552704,21.245758,35.783424,53.64966,31.53601,8.061035,48.420914,72.1714,10.583416,32.129974,29.328197,7.261902,7.3560066,44.492146,40.72345,18.847137,6.7551193,36.747025,35.5902,13.950439,44.58316,39.989227,28.651394,41.021484,15.158842,7.15102,5.0948334,89.449234,3.9502182,10.958908,82.08781,6.7145386,31.256592,85.685745,14.044487,14.613258,31.661545,42.023926,1.472887,2.4596863,28.85764,39.934853,22.744354,23.236992,34.857086,44.878723,44.24121,44.161285,15.301788,16.244522,16.990967,2.492237,0.7583313,46.76851,29.583344,37.58541,2.4151268,31.048645,0.6111846,5.4650955,6.1545105,31.571503,5.1324058,4.1141863,28.088348,7.6802063,40.576523,25.332977,3.4676952,0.17443085,68.20538,31.47647,33.20937,27.254547,13.971497,26.961182,5.5662537,10.624474,6.615734,31.038818,1.7479248,18.26626,35.59298,17.841747,39.91374,56.0428,44.41507,11.076984,26.335762,37.284958,29.587189,1.9412842,5.7668076,31.596313,13.149727,47.889107,8.452133,74.95703,27.384766,14.807499,3.03125,18.055805,6.1241026,32.491486,5.3476367,0.32183492,1.281457,3.2682161,1.755012,18.684416,46.45864,11.840881,23.25946,84.17346,22.554016,0.14901769,2.5312262,1.9600163,1.6898766,5.3930893,56.83484,32.784225,26.416794,14.596748,7.5281982,50.818596,37.60962,46.645386,19.103271,6.2962475,1.4123535,3.7318268,10.064457,7.9966507,12.66172,4.9962444,17.839706,5.19783,28.925209,15.820744,4.4657593,1.7321205,2.3778887,39.007904,80.128876,13.415062,37.51532,11.034576,0.29587555,11.532898,8.747559,14.427567,34.16774,30.615967,6.593521,10.879787,0.79740596,3.1028214,6.893465,6.614746,37.081615,7.322235,5.926008,31.805725,1.4227152,79.79053,91.058975,54.843895,35.669235,9.6987,9.451073,6.3380747,14.606152,3.2305927,8.906307,37.01499,1.5870094,11.9841385,73.06012,24.314627,29.268372,17.350204,26.718235,1.8465042,12.743519,26.812828,48.64138,38.33795,33.943634,3.739479,0.22040606,6.577118,7.451828,29.656227,0.7276497,87.70831,7.502411,4.1872683,22.864204,45.5834,56.50473,39.4443,1.1054044,59.10376,24.358406,3.196865,2.2670221,63.661705,3.743537,15.923628,30.823898,46.719048,28.627335,11.542862,7.0642242,17.893677,11.463169,4.0172157,50.080376,21.745766,13.260024,6.3769646,55.96173,25.767536,2.3538666,1.8781853,43.804222,30.069046,11.089638,25.274525,1.1205215,15.708496,40.015167,72.84046,37.983967,59.42318,67.79553,9.094788,13.787585,10.204285,73.90126,19.276215,78.130516,8.425516,36.84482,2.658348,0.17247772,7.4298,56.914047,30.260162,44.20923,49.55121,12.973894,70.35256,4.363056,4.95224,11.538979,33.095116,70.78012,38.6708,55.36136,30.085663,50.39799,21.752998,27.453743,0.92256844,50.644547,28.916397,80.066895,22.527718,64.36807,10.172821,0.20141959,1.9834623,19.848167,16.640026,40.441338,25.424255,3.7893372,27.070068,2.086998,31.509079,57.444817,59.259975,32.891685,24.97113,4.5468597,15.619087,23.295464,2.4849067,22.690887,15.3059845,1.0898504,1.7530088,28.085716,86.600365,13.076332,38.433395,43.863434,0.43228644,4.8580627,6.7886963,47.475456,12.355618,77.02075,53.71888,50.672035,6.1624146,31.245918,62.09381,43.61005,53.053024,22.183365,63.093956,15.218697,21.199173,21.372437,29.2164,3.8465195,55.041748,52.494835,6.781374,54.846222,26.632782,3.6905975,3.0148392,56.616653,24.116983,23.324043,67.39399,7.9766464,24.90503,19.615967,46.21058,31.911598,75.90481,1.3864794,4.0854797,29.754688,11.712051,0.1748929,12.613068,2.1681185,4.8121796,21.843346,64.51948,45.22296,8.5785675,7.6211624,40.703533,0.3777467,2.683731,6.839325,67.65674,0.16091913,13.74527,48.077194,0.12932682,27.815842,8.448336,27.313148,25.21289,1.360981,4.772461,46.659676,4.327965,65.479324,19.900904,9.829285,0.70320845,74.62187,14.01753,11.449738,60.42607,56.486748,14.615082,38.635117,59.809143,1.8636322,76.07451,18.579258,63.332886,13.135986,76.0956,5.6398697,28.437866,4.306343,40.21051,0.535326,24.679298,78.36543,11.55291,13.329956,7.945427,31.773071,10.565014,3.1306267,14.836761,2.0047035,40.207764,34.59407,2.9408646,10.195686,2.6298828,1.952508,20.559677,49.61376,26.63472,17.78003,12.992882,33.144073,1.7391357,10.571701,2.9701805,32.267372,40.833008,30.460293,54.19104,5.47834,12.669548,10.4051075,8.648552,9.657547,23.405136,10.661119,37.235138,65.47603,15.862549,1.7420082,27.963753,5.960602,2.1230984,24.724812,5.878723,14.871536,26.616776,29.86554,18.107452,8.833488,9.044605,18.313469,26.790226,12.624908,41.668827,48.37033,4.0059834,1.5533417,53.32173,33.719955,49.898956,9.179707,5.4522552,0.24142456,6.442631,55.361115,20.039415,12.199877,78.70358,15.006645,33.959473,10.483597,18.294716,37.399323,5.416954,34.762432,9.66663,43.81903,4.9389,9.375517,23.077114,0.3606323,55.92228,32.76056,2.8150482,16.510166,4.079836,3.699295,30.688904,0.51782227,55.228966,25.695213,23.500366,8.572845,9.469003,34.03482,36.747406],"x":[2.6453968872797127e9,5.793477003074768e9,5.561566113415544e9,2.8642700225133743e9,5.12131634760369e9,6.740863406596559e9,8.87763552994147e9,6.970090689712417e9,8.748890409292805e9,2.951605772628695e9,8.517533180233499e9,2.585851625759682e9,6.485935679973604e9,7.104648424588007e9,3.738801074650245e9,8.904048128662294e9,3.0640026916596885e9,1.169436373136541e9,2.1274422155765137e8,6.341785719564176e9,2.80528530415618e8,1.3405205069878345e9,8.063063328379454e9,4.2537226761960754e9,2.318324007633725e9,9.10823407135937e9,9.837226347630913e9,5.550561206190733e9,5.816182390238578e8,7.970390429972259e9,8.928866494536237e8,7.319499069820079e9,7.108200913199797e9,1.634925570194301e8,1.0960535364000678e9,6.914694841591033e9,7.5483268646702e9,9.945833384339054e9,2.195905857005076e8,6.781157819886577e9,5.779177172553244e9,8.469718974980922e8,3.0944189409260583e9,2.0639657919415221e9,1.8492450680150008e9,5.472960329015314e9,2.560735066449643e9,7.213936328264716e9,7.143555447868438e9,2.821696284463273e9,1.6161096293777776e9,3.402970826216196e9,8.230335566565855e9,7.216837706732261e9,8.570193205221624e9,6.815291766862626e9,5.070053595928239e9,7.06509284788921e9,7.13357266635208e9,3.8623928705860954e6,8.704743606440474e9,1.186643426108519e9,2.6720566334275265e9,9.217037921616304e9,3.1545127806650586e9,4.772281394855632e9,4.78805382304822e9,5.483321877406828e9,4.414270500471212e9,7.840774221542031e9,6.075507241845457e9,3.109011504281355e9,2.2583788699762797e9,5.664349853710671e7,5.609873522744477e9,9.850400204634937e9,2.546382606518539e9,1.6601286952105386e9,9.028439413723843e9,7.232441371224866e9,2.723677218744226e9,3.487885822062227e9,7.476796697989876e9,9.942137571269512e9,7.092441017588421e9,7.146269657102073e9,1.5266680989269643e9,7.248088381100615e9,5.774620016459094e9,3.5776369442152367e9,8.344464122064607e9,8.381357411006353e9,4.126865480284382e9,3.031815607554622e9,8.622869068947401e9,9.013382008157825e9,4.921101621102774e9,5.711976825549186e9,8.818879516732338e9,2.9500511308793554e9,9.664732023804436e9,2.244210379914768e9,8.488009379981662e9,3.229893504617486e9,7.891680887738981e9,9.250960249698526e9,3.766640757865707e9,3.2379840171689444e9,6.621277897338756e9,1.1039320289046683e9,2.3700084419612155e9,5.262085602617974e9,7.64274383546987e9,6.64653392134135e9,6.065412797983016e8,3.843579391805181e9,5.577992697165987e9,8.620863289252567e9,1.226247075017296e9,4.516732741533868e9,2.84552236636475e9,6.968652217694719e9,7.7624095627746105e9,4.402357862992303e9,4.378025181895969e9,8.259118639168808e9,3.2316995374332604e9,1.8253418058768678e8,5.033101164182171e9,9.529171137958246e9,4.392314137601229e9,9.292280185431044e9,2.5680646313726497e9,9.011068690434476e8,1.526996585113467e9,3.111278692787326e9,8.067784338343872e9,8.973060583592882e9,1.3758377984293935e9,3.725265337577458e9,9.808775023752008e9,9.440945854948847e9,3.008238286633751e9,1.172426893865961e9,9.360549942777075e9,2.6468602972772136e9,9.095052531246916e8,7.162475174950885e9,9.57553686628301e9,8.736276294187487e9,4.106612604749651e9,4.176005953506686e9,4.2649450650729213e9,1.25770245574792e9,8.495335365650189e9,5.703339123860717e9,1.518008288274021e9,3.9452025861523767e9,2.443780495357961e9,3.5486260052579875e9,7.378691199804663e9,2.272551751850116e8,8.483491805780803e9,7.899411092082207e9,5.785917750852749e9,6.66741405890702e9,7.06621595329224e9,5.818019846479373e9,9.670071887973917e9,6.669237515570735e9,6.970555804950549e9,5.922112984318478e9,9.132616498582859e9,4.114676893487742e9,4.563632783013632e9,1.323799462296249e8,9.324342893907246e9,2.5380414652399883e9,3.5821922577397246e9,7.291255218929728e9,5.31174158118972e9,1.8672064099401731e9,2.2830384640441546e9,8.558835258504195e9,4.80463173228108e9,8.462272553493785e9,1.7209054709764504e9,1.9362404158873048e9,4.65115418586482e9,8.159218855160868e9,3.9486210095390086e9,3.732724819209824e9,4.483342570005483e9,6.812447078365135e9,6.260685978056811e9,3.9743199985502777e9,4.164730658125407e9,3.3342467058929324e9,6.218649475945343e9,4.1184783186752663e9,2.653472081030006e8,3.134241568357322e9,2.142903984978418e9,2.1308506881158617e9,2.310796603738341e6,5.768712787189476e9,9.907712787193819e9,2.6394568831871758e9,8.2822418147953e9,5.446178632556077e9,2.506489195265883e9,1.0628340824892113e9,1.4386169289646423e8,9.572246211326744e9,3.63984462269197e9,9.646237824154385e9,8.636989450945387e8,3.814722300069795e9,7.074354180374235e9,7.205772040125041e9,8.535877850020007e9,2.2542404067020884e9,2.0680226664004908e9,2.4371250094418607e9,4.210702183846321e9,8.063595939420219e9,9.693646804890299e9,3.2730581020706162e9,6.648869713182437e8,2.1505213166943192e9,6.669551401804831e9,6.386676378035001e9,5.64812743974238e9,5.94522668508682e9,3.0815861413337197e9,4.699525425938227e9,3.7399771199751444e9,4.681193754215602e9,3.170612582008592e8,1.8836645427245934e9,3.5696969412540345e9,7.714055185712354e9,6.252609473382369e9,7.273909628585345e9,8.514708444587904e7,1.317343059897149e9,7.225913812184594e9,4.3420166584632e9,6.141809637513422e9,8.0663900288625345e9,4.61179979984027e9,9.329638746120262e9,5.465159636580962e9,5.862850893051897e9,4.759068817075396e9,9.651049161686728e9,8.480723651648492e9,3.9702294275617833e9,5.226144015299648e9,5.769404995255813e9,4.660016988602511e8,7.7374246367289e9,4.747690198592227e9,3.8325495254319495e8,8.375803937065507e9,4.697820460996291e9,4.375281589215124e9,5.741722883697058e9,3.7093678384027762e9,2.234406824649918e9,8.675126414344069e9,7.815628467723699e9,1.2644187918422744e9,5.050149154465996e9,2.7821775632166348e9,5.054030116830233e9,8.832299863372e9,7.972026192020687e9,6.013588819774851e8,2.2035827514388504e9,1.6127069408694983e9,7.854777738197638e9,7.544473832461049e9,8.528387984297608e9,7.74809817503237e8,9.265885374751759e8,5.388924161923516e9,8.949456495723345e9,5.493053521584146e8,2.82958641544262e6,2.48496304819662e9,9.024453667836239e9,3.333750892724056e9,9.767367953613085e9,7.959488401811789e9,4.392294714936947e9,6.2867083816668625e9,2.0439701562113955e9,5.861097673163896e9,5.85265327768911e9,4.357267029062669e9,7.012332282774636e8,9.855693675224497e9,8.394244327974138e9,2.934303231869182e9,2.247992885639768e9,5.716003638824353e9,3.33178814858017e9,1.244143711835719e9,2.7038106900326285e9,2.637915848296465e9,2.533942408592995e9,4.214245205387829e9,3.2937979968656173e9,2.384055101113234e9,3.9987022746230803e9,4.207439720604569e9,9.592415485135168e9,3.863464915900708e9,5.03345312971569e9,4.214309908159454e9,4.3587315017384205e9,5.158731974255573e9,5.964659871877125e9,7.714637617121682e9,4.677173573455275e9,3.6620634590228186e9,2.3362465607569427e9,5.751739579879393e9,4.1262828195352173e9,9.623238394030077e9,3.327508911842767e9,2.7656728523856077e9,9.626762739034033e9,1.8772254098337183e9,5.909497695460614e9,8.719170298165269e8,7.18499228743132e9,7.647328894778268e9,5.972422157800331e9,2.4448958740100193e9,5.6531549116476145e9,4.627388780161661e9,6.6041673176589e9,2.811088641646198e8,5.024635139173148e9,2.828787912344921e9,8.240278510711593e9,9.846662326219543e9,5.000313319973408e9,9.815532839117685e9,9.828976602809181e9,4.821176442341849e9,1.3982872922992063e9,6.544639772482949e9,9.58380573829889e9,3.9136383025358214e9,8.433098722335063e9,6.330951122095223e9,3.049577591149588e8,8.388234614474654e9,7.0921695757641115e9,8.43097968475555e9,6.773453198797674e8,1.2542189243126457e9,1.5185136512312458e9,7.218747938524287e9,3.7954551391629033e9,6.92826661003004e9,5.493713206492411e9,4.841672195942114e9,5.474369078838222e9,2.2901650728983035e9,4.920611549821096e9,2.948888606280189e9,5.174937294505493e9,8.448875346763765e9,6.664656336546895e9,7.641151449003396e9,8.595594832849546e9,4.473268867189956e9,1.5683198766693785e9,5.253856761830655e9,8.800561578326204e7,2.5203951475038786e9,2.0763130213502145e9,5.743164769887765e9,3.690136565393339e9,2.3638755135444565e9,9.207519088602145e8,4.563701830217291e9,4.1173792306372523e9,1.4043555136394858e9,8.405960124575245e9,9.922338701305851e9,3.562028726640456e9,3.672335143299833e9,8.626566439093245e9,7.132383178786498e9,2.1087466412289503e9,9.743482766053905e9,9.800504116814564e9,2.9674085314121523e9,9.66437416148592e9,2.875466586780394e9,3.9048870850490127e9,2.697537093727953e8,8.606788963564215e9,3.0653754501196084e9,9.02514720885722e8,3.404743556092854e9,6.818853156658923e9,9.500785774424343e9,2.97877454720698e9,5.158276546329812e9,2.188097309449356e9,9.632424496567316e6,5.486887179215002e9,8.602641571257265e9,6.834317598949204e9,3.4113435059713817e9,1.8489229608573031e9,4.977475297287218e9,9.838220047991444e9,6.743866787762439e9,9.528635859411238e9,6.30693211280609e9,9.24662201353294e9,9.828297561371296e9,9.769054190463951e9,6.977976078487886e9,1.3287174792002099e9,2.1454058819739163e8,9.378577872733236e9,6.715797029974999e9,4.9701517767101634e8,8.484164960941547e9,4.624801731815042e9,4.792450609356096e9,4.371988908072767e9,7.851166008492006e9,1.964994203636383e8,6.367527043683952e9,8.84268329276633e9,7.560804121901391e9,2.4561068525452776e9,3.1257403317151556e9,4.156027629930803e9,4.0995425074856997e9,5.354041599291399e9,4.586032227216723e9,2.2417575931976066e9,3.9556939337208164e8,5.336269434297114e8,8.888508672327812e9,6.085334728573752e9,5.386434852401011e9,3.1268880810677624e9,8.85590273140209e9,2.399733658960469e9,4.1940625320957327e9,7.25486961426512e9,3.403425982561681e9,8.6505474577801e9,1.3492773636585953e9,6.235041733223962e9,8.8227174810445e9,9.561019324160175e9,1.3540434659324052e9,1.159050531433652e9,1.4027764519361608e9,3.1015097901033673e9,6.375502866893019e9,6.591359185971047e8,6.732001736031406e9,5.877569445877362e7,3.7639584619597254e9,8.637655055022562e9,3.4486593664501085e9,5.842841783325931e9,4.369465901180748e9,1.61720060546237e9,3.570414056996981e9,8.077504932371182e9,7.084506052119779e9,4.031113375313366e7,5.441720245188886e9,7.20095290776511e9,8.468321890120107e9,9.378350340549852e9,1.3883748415192232e9,7.100692204696246e9,4.9203975059836035e9,4.6411929675449383e8,3.588963704533573e9,9.500577344033796e9,2.0105808851063955e9,4.03845707397653e9,9.515515260663498e9,5.917147046158961e9,4.021422498354589e9,4.7118495346423316e8,4.8635582863919777e8,4.815416504984038e8,8.02531044204146e9,5.677590215291128e7,8.165367252773579e9,6.02589381074643e9,8.891461177362982e9,3.662831673048292e9,6.006848168044815e9,7.041082507517729e9,3.6666590185381107e9,8.668880004153889e9,1.994028259947339e9,5.877279888448311e9,9.511348047009552e9,1.7754090604693894e9,6.175781895999239e9,2.893090970357758e9,5.735201697249548e9,7.027939833953927e9,8.015540734602352e9,4.778079072935388e9,6.96466284420653e9,6.609592268481127e9,6.775343173998668e9,9.792320968530125e9,2.2105589773593135e9,4.560945258485508e9,4.370047777395257e9,1.6493663569814131e9,1.1769225554548512e8,5.202332071712409e9,7.989838040217682e9,1.9042577414423168e7,2.3685359238561544e9,6.499228664744335e9,1.2643375513364007e9,8.181572015155905e9,9.112258502008286e9,3.3289800067039375e9,8.583385416806344e9,6.875611440527905e9,1.6756797383068976e9,9.690190453348515e9,4.891091836424289e9,9.62438756465161e9,2.8889437234344894e8,5.907949439510628e9,8.609736517070518e9,1.7553888317351717e8,1.505329029391167e8,4.584312643892764e9,4.2868444153736806e9,1.7804359250607514e9,4.076529755099968e9,1.6204827070557194e9,1.4870626742101812e9,1.0722665723480219e9,8.970440725459175e9,5.814372785928778e9,9.474552449888074e8,7.250989540583654e9,6.87378552124754e9,3.746104419459695e9,8.721106596369926e9,7.449765421103704e9,3.9063350281648955e9,2.8177091273289633e9,6.4917682562580794e7,7.822135049796102e9,3.9472312476346393e9,1.802704131977162e8,4.2890134681734915e9,5.510082800277194e8,5.615447127690336e9,3.3581556740300713e9,7.718799635057897e9,2.4155462755465593e9,6.0936283109713e8,3.4421230446897e9,6.920648479397996e9,7.174303775178921e9,9.946317663076231e9,7.450561184240816e9,6.947705597039669e9,6.534142057428534e9,6.721032458323493e9,9.222493654273845e8,8.290764811797328e9,1.418120157666556e9,6.810881255353171e9,2.943027606453308e8,8.207674187336248e9,4.599617917210114e9,2.071325796168013e9,2.3871870426242704e9,7.717235361917458e9,4.432143520030122e9,7.639086392983693e9,4.098753963109714e8,9.823497431765411e9,5.948222154618323e9,1.9152080562796013e9,2.1952144726018662e9,7.26501978943812e9,4.1383623438146024e9,8.920152995824265e9,4.773163799203839e9,5.932542710905393e9,6.2141078919816675e9,4.439617872481928e9,5.837861047293075e9,3.2247473530058813e9,5.292187808238919e9,3.8169709626527557e9,5.617941442059875e9,1.9078638179058094e9,6.078195672829423e8,8.750403102743092e9,5.446814368722977e9,8.79236678468151e9,8.543727688978999e9,5.194169267815585e8,9.091728608237465e9,7.978332088745561e9,2.9063399547327805e9,2.2642947412423887e9,6.834550261665895e8,4.483027241690304e9,2.6993540684301467e9,4.113878849664363e9,8.3292024246235695e9,5.8800182804937525e9,6.233282421742458e9,8.94897407897684e9,8.384555628382155e9,6.315743312492046e9,6.827034051629822e9,2.9689996244333725e9,9.203580084758318e9,7.941212006512688e9,4.248288681219905e9,3.655867844993832e8,9.6486302347757e9,4.2603975644881654e9,1.5445483106857316e9,5.157214971801918e9,7.815813494170355e9,4.1034443939212594e9,8.901932160925694e9,1.632225117528976e9,9.09966587344274e9,2.6692867912666216e9,2.8378362063579397e9,9.513655963144127e9,6.597164626389318e9,6.518356957535552e9,3.694427315158556e9,2.1287034002481763e9,6.083620855059068e9,8.659803018818787e9,2.790050254476464e9,5.64508839620963e9,5.871117537545187e9,4.518306041835133e9,8.656619292016197e9,2.9444641851880226e9,5.550847966360628e9,7.05937198429507e7,2.8008626295386295e9,6.136410026224656e9,6.370068593281096e9,4.61115036321192e9,1.126656254820646e9,3.8712827794027915e9,1.1021916091018646e9,1.756974568509223e9,4.4788491775518265e9,7.601537243425963e9,8.57397168132537e9,6.795085177705529e8,8.607234009019148e9,3.0333506929357424e9,5.805737814239371e9,1.2789340544692273e9,4.3114206221437246e8,9.83657379238717e9,5.013583074160575e9,3.7072471651896677e9,7.700659738429262e9,9.404126773281416e9,5.432457251942163e9,5.658528700518495e8,6.752321187850651e9,4.117922528715092e9,4.8966283579732685e9,7.459188538119076e9,7.708319923717403e9,3.6972797297849402e9,1.1387586490638235e9,8.832525943310225e9,4.274541384608418e9,2.2940370824945145e9,7.085148940197496e9,6.855250998136911e9,9.879179691949305e9,9.427537626967768e9,2.772548287954759e9,8.453213181748328e9,3.3333071328141004e8,3.0238131259131827e9,7.071854523113585e9,3.8043288758795915e9,2.978984608023878e9,1.4330754786297739e9,1.70265728819606e9,3.6059135634335103e9,9.962047233544472e9,2.1252001117771869e9,6.499560761375201e9,8.547141934392164e9,4.959959526252736e9,5.747436962281192e9,2.113100935330462e9,2.6445401161718597e9,5.79376662368586e9,3.00793652907524e9,7.890909917821497e9,6.1307648455659485e9,3.0747405652612557e9,9.328626509102013e9,2.1455086283277447e9,4.1740909075933e9,9.86370034109937e9,9.794626645802196e8,6.701286785706988e9,9.249681181241753e9,9.713366866963446e9,2.160388566527338e8,4.675784112282013e9,8.193491956706554e9,4.764031700841169e9,7.149222021437146e9,8.07554938091074e8,2.8522687545834537e9,9.394520087998663e9,5.927675073823876e9,3.3556405425276394e9,9.13359008540301e9,7.988680667246361e9,4.870092780182521e9,4.772991227907492e9,3.06181290372322e9,1.9757748927498875e9,3.544718638771521e9,7.811037443877155e9,2.97742505972876e9,4.515204986871458e9,7.05298528138176e9,5.042238632601198e9,7.828201647597239e9,5.048593393335819e9,4.186707684956247e9,2.0255238695984757e9,3.19383966144291e8,2.2983777916429925e9,2.0408223535756075e9,4.96750105673184e9,5.923917742837821e9,9.682744071207218e9,6.130872320432333e9,9.486640578708906e9,9.540425220566137e9,4.837339553088995e9,6.901773467172077e9,3.0944312913494487e9,2.326782103085413e9,5.858826126997966e9,1.6029793795343761e9,8.056294496088077e9,2.306837541186568e8,8.885316427029264e9,5.729757326185041e9,2.856004380267374e9,8.945284744317686e9,7.687948267531133e9,7.629380005339572e9,8.828081110486956e9,8.825311594921803e8,9.407095956867853e9,3.5204257064553647e9,7.216928102620516e9,2.204018551673984e9,5.780771699807187e9,3.9989294612996297e9,9.520893075863224e9,4.516579129485507e9,1.08662383475008e9,2.560268416151553e9,6.286691867740575e9,5.98080250074395e9,3.203602511457384e9,2.661929805876312e9,4.445940457130686e9,7.925635168741449e9,3.0470325036622834e8,5.651958247183707e9,6.188553162346685e9,5.433118101700627e9,1.2691272300066848e9,3.458265304506064e9,8.065261547893699e9,9.685783147522667e9,3.180191519352383e9,3.6715782784651265e9,9.302985530781239e9,7.95233323219547e9,8.015702929178241e9,8.323868776206168e9,9.0944349977351e9,2.81879752252588e9,3.688269561716633e9,2.6637938744780364e9,3.439900982274536e9,8.121784489386666e9,7.787904278335814e9,7.223288194393858e9,1.9252704535938036e9,6.557063531136314e9,7.889459343846835e9,7.330927489737616e8,5.8862121294654665e9,4.389168546693419e9,7.066023230891189e9,9.531259914360369e9,9.548710629866713e9,2.790125977736708e9,2.7437293722179947e9,5.525699715671384e9,5.984502396115324e9,9.529087445836998e9,6.854994204931675e8,6.757967376806188e9,5.2087407491684e9,9.517607163324833e9,1.9133019312136357e9,8.507443217374644e8,7.818694839535853e9,4.295849848651325e9,4.803797152438103e9,8.827280856462739e8,2.157344122083985e9,3.457811828120666e9,9.733462850180151e9,8.431653478724157e9,1.0274196310912164e9,7.508855537979138e9,6.2742368904121275e9,8.315726791107327e9,1.617516514247952e9,9.30211985146971e9,1.2452523336732035e9,1.6003823064236734e9,1.628869813964432e9,6.9001275921070595e9,1.7057694479396079e9,9.86840623064461e9,5.665875240878818e9,4.599400984129223e9,7.161567800886773e9,4.415745552071037e9,7.427271644413483e9,8.21867865033568e9,8.606524176325651e9,6.593595436470525e9,1.6806968854740655e9,5.027796194868361e9,3.3963721995007267e9,1.7255068001042151e9,5.842344509361672e9,3.61107263576519e9,4.752688883382268e9,3.48930020589317e9,8.676060750001491e8,7.379232620473641e8,1.3765980264843292e9,6.7425455987009535e9,5.352002583903603e9,4.2526802144695888e9,4.105060942088956e8,5.052447833295069e9,9.32255543009633e9,7.720429266688763e9,4.355809030369086e9,3.8738963672841287e9,5.790435394626517e9,4.978043000496262e9,3.4414301518110204e8,1.4520737563472707e9,5.04789260335192e9,4.889126985310894e9,9.946284295833971e9,7.538486539989753e9,1.8464208283325735e8,5.782053368881789e9,1.54494289443316e9,1.236038782679294e9,5.483603789807779e9,3.545304143224699e9,3.9475831792258763e9,6.583610412727325e8,2.604217110700838e9,5.189327351462199e9,1.8474630121069613e9,1.1289066078347232e9,6.192831062126572e9,5.184376992087548e9,4.1341808714611826e9,2.0086873883965462e8,9.31325461960886e9,5.777629267318232e9,3.8501176977189765e9,5.161699348064025e9,5.873017384012282e9,9.626024637493809e9,6.753900931902957e8,4.507288973600322e9,8.445635440923303e9,7.142901913407198e9,3.277797612657808e9,7.904325102402125e9,6.654508376930592e9,5.558427437842995e9,7.076884464971034e9,4.5873719128766165e9,3.677499231692749e8,4.270584596194227e7,3.517727358722218e9,7.748611303220445e9,7.309313129405834e9,8.367754456058265e9,8.294294133180612e7,3.031266095745272e9,9.07987911679875e9,6.122975407894488e9,8.680815498141607e9,1.822517315639659e9,4.875480631474126e9,7.838795761773887e8,1.9720971752699778e9,8.786374598123503e8,5.06237506763004e9,7.46469530013556e9,1.2467715309315342e8,5.06591417920353e9,5.939678430477578e9,4.8216188295081675e8,7.402617136263515e9,2.4036665257119637e9,7.522675033322012e9,6.475705393057555e9,7.101419144857435e9,7.099490164523692e9,1.1235538730820649e9,1.4778740785651467e9,9.976758612641285e9,8.422384599374724e9,7.599107741588575e9,4.920275622679804e8,6.17072152487926e9,6.5301613293403635e9,6.829343544253306e9,5.079983155738174e9,3.131485897650408e9,4.5102320075527525e9,5.110345734492227e9,5.217263267162246e9,1.2964191298628314e9,3.6404999391475725e9,5.412385533913355e9,1.0242400367710125e9,9.759486318338463e9,7.656557054108728e9,2.5755408719241223e9,5.519492976539748e9,4.0781686900771384e9,6.088340102628208e9,2.2385413663213894e8,7.906940013310028e9,1.5591471346560981e9,2.1255528663405044e9,6.433115860776413e9,5.625175515994599e9,8.5720734375468e9,5.832763295951426e8,5.205054798284543e9,8.070020940964643e9,3.8768560236280293e9,7.805166204533606e9,5.480479424357922e9,6.342442385571941e9,3.414198204310582e9,6.147929058414576e9,3.6044010048567133e9,7.881560130925293e9,8.982553229796745e9,7.153824733860246e9,8.198732064794332e9,6.936050955220989e9,9.247693557048038e9,5.164877835140042e9,3.818471936321932e8,9.553178989694086e9,8.5731231420549555e9,6.662998099205596e9,1.1533147680558121e9,2.3995265473369575e9,1.162208489497034e9,3.0987643324477954e9,1.7097835592972977e9,6.444941007539306e9,5.421320530569724e9,8.511004103123376e9,4.901197397298302e9,8.514643946477601e9,2.580999591286539e9,4.0919821958144965e9,6.41336185085314e9,2.743073789712649e9,6.759765566432856e9,2.903922659437591e9,9.381937146706743e9,9.38598468491071e9,4.361160148982645e9,8.402703744084091e9,2.4504437399241786e9,8.1307337129536e9,7.579711471219638e9,6.494462386330573e9,9.937110218747156e9,4.1253796326986346e9,8.311284325192876e9,8.080321331277684e8,4.895855618034424e9,8.989249020990065e9,4.532474432202171e9,7.809670201190619e9,6.602965781357729e9,2.4671926663700614e9,4.953269246094482e9,1.09784027861625e9,2.216662949904372e9,4.801114998732284e9,5.508281673040504e9,5.424895408316203e9,2.9111253379308343e9,1.8416261811958978e9,1.7426677353218756e9,5.796791183278254e9,9.874556220531696e9,2.1786442185409484e9,4.296077632338035e9,2.163378903621228e9,5.855971728407921e9,8.87343872979361e9,3.250843709210215e9,4.629293906723584e9,3.0311240565066366e9,4.654327800223484e9,6.467795856986577e9,2.574297589495755e9,2.413004831604726e8,1.2791067153587966e9,3.861068465512738e9,4.716193795806396e9,7.802555460306745e9,6.782834502094992e8,8.335300732227503e9,2.457314541996083e9,9.350370712253902e9,6.894030629164799e9,9.447578016986914e9,9.539149993587353e9,5.081191001712464e9,9.777391261971178e9,2.1184635558567333e9,9.180783932487944e9,9.330124328302813e9,7.450080261552698e9,4.0495530110708776e9,2.242130082709416e9,4.2420148294960227e9,6.367133565962147e8,9.854780349365442e9,5.26285958932279e9,7.57498489959946e9,5.081743148699191e9,5.13989894716391e9,8.472314607426369e9,5.059108835671305e9,7.211097462414652e9,2.6876518783868732e9,6.483042843269096e9,7.292534627983757e9,7.83668783464026e9,2.9097637873720174e9,6.816109515177764e9,6.883872447646807e9,4.77423173297439e9,9.87296950175435e9,9.099308831284409e9,5.305839560153926e9,8.146084813575409e9,6.659622128001412e9,2.322612856103555e9,9.071657753322742e9,8.080542643715155e9,1.0669201210777524e9,4.342329766300177e9,4.814859449946461e9,6.512673067389884e9,8.110471315879736e9,5.560192993001856e8,3.1986228990963703e8,5.107812896883889e9,5.973497103659347e9,2.933283776894358e8,5.714396655239018e8,1.5082702748036468e8,7.377573335608789e8,9.67303052836862e8,3.371998927544485e9,5.077782429676612e9,6.678342451399423e9,9.346390782840261e9,7.816844151625422e9,1.6613176502083116e9,6.986323400836676e9,3.8478711151689196e9,8.431013470510391e9,9.121137096306889e9,6.445499086428432e9,2.503324360936099e9,2.5480649098176866e9,9.156195474738962e9,3.2941623302617474e9,4.121920734277895e9,4.298776183886686e9,2.6396224967602434e9,6.2125211344146595e9,1.6041871419503894e9,3.026235974294865e9,2.065031562939369e9,2.1250215751818159e9,9.161809371025532e9,3.4748148981674585e9,7.131140284269674e9,2.8172376474015102e9,6.862131974474922e9,9.75028243795791e9,1.9701537349116173e9,8.309278883781271e9,2.6620926750504193e9,3.789684760962927e9,4.749812342600498e9,4.377960868598108e9,7.469370247084934e9,6.228563073246607e9,9.462340913523113e9,8.596546628473938e9,2.381891027566749e9,3.056425593086358e9,4.827452923406909e9,1.6121070995774634e9,2.4007764074187155e9,7.053023192821585e9,7.890722267067269e9,5.662222393631728e9,2.4591502035512958e9,9.31633223728303e9,8.826849219328347e8,5.061210276349942e9,9.050977088140413e9,7.211099549083034e9,3.881365800575166e9,3.111907639226197e8,5.473541527820983e9,4.328984007921398e9,9.936887316007256e9,3.4351490347905912e9,9.35053461337633e9,7.69685974683597e9,4.5370294311468725e9,1.6892638541597016e9,5.851523094442621e9,7.867797919701186e9,1.8509013482828274e9,7.373375291436579e9,7.898346947160653e9,6.280728629197074e9,6.889668826406871e9,1.624037627505207e9,7.971180551199638e9,6.048196429618458e9,7.073120231729257e8,2.965883439467205e9,9.802241187327732e9,7.094805740197418e9,6.018133155161511e9,4.490290728382296e8,4.31553610895283e9,5.800432366659814e9,7.324460591496156e9,2.3774614509933877e9,1.0181155767305338e9,2.2798005996475725e9,6.477994352108987e9,7.330960220302685e9,8.001904046211094e9,7.399774155971999e9,4.832973425415895e9,4.837138032358089e9,3.3514300802816887e9,8.997371290349552e9,2.6773847422251862e8,4.780925538872725e9,9.697409704799486e9,1.5128946700737045e9,6.182722873104049e9,6.387447185362005e8,5.192501432560302e9,4.985516576743558e9,5.609447265065536e8,3.644230338699623e9,5.765780951672702e9,4.969475497067859e9,8.178920854920636e9,5.20163358294777e9,7.613566128692198e9,5.573360991397129e9,9.839383409171146e9,7.989248773787849e8,2.183251951605674e9,1.284667918884792e9,1.8939681539042041e9,4.2148150121080365e9,9.002758835147839e9,3.0402331225108314e9,3.3286569743715477e9,9.643355065070332e9,1.8526673937184656e9,6.500267445289028e9,4.426159562546001e9,6.929136493127512e9,9.870107630731798e9,6.754970009437756e9,4.712087082921137e9,9.481315002499601e9,7.704103044383097e9,3.931605065790802e9,6.292009915718851e9,6.848068063992264e9,2.472247662820146e9,4.689610431138184e9,2.135223395736665e9,9.36413278693067e9,2.3818019765586686e9,5.271015706026953e9,8.450746797206871e9,8.715467681145964e9,6.676074410896254e9,4.500917959213958e9,6.3903030746890955e9,7.006851818223334e9,3.400874346058946e8,8.389773949440079e9,4.905620896792151e9,8.971200146993061e9,3.3449605339734454e9,2.6061193363488264e9,1.4898197487759957e9,3.7381423842376847e9,7.463187567525757e9,4.005772470294573e9,3.021399772573009e9,5.533355939830109e9,1.780792205876357e9,6.746579498257168e9,6.389176578092313e9,6.997736343124658e9,3.4298581413994336e8,7.842423319777782e9,8.867918225686455e9,2.0065014988598351e9,1.2770075451609664e9,3.3155195397996273e9,3.3853245204829353e8,9.502914626331649e8,5.252032287120277e9,5.003008747420184e9,7.264495468619484e9,9.993563163690434e9,5.99886677233515e9,4.1381392774040027e9,9.699209137773838e9,3.6226939322998185e9,7.898761912136658e9,4.0922932934367795e9,1.968600121399452e9,9.52710996097775e9,1.5935254547290778e9,3.469798655763049e9,3.1801141707301617e9,7.713310436668709e9,3.154039975163402e9,6.06931137861818e9,7.119233199882758e9,1.0831290319188468e9,4.789565687316748e9,6.628156878663134e9,7.6074760734053755e9,3.773927081561197e9,1.961420069230011e9,5.375296127841767e9,2.6045913161426716e9,8.257025189211365e8,3.2406899677227397e9,5.959476109784932e9,6.906974649321957e9,6.844247277981713e9,9.667239522861959e8,1.9052755210732143e9,5.691078247375296e9,1.0464270257310104e9,8.535516277504779e9,5.012798687242408e9,5.7622451236385765e9,2.9723308997575316e9,4.751801408684698e9,3.7632565184291945e9,2.1905625722816358e9,9.327679483981104e9,5.379765050179842e8,5.1256063463213215e9,9.07322605125134e9,8.396752144452027e9,4.846149992739813e9,4.967829995586915e9,8.637888443330315e9,9.71748334495463e9,5.0268654417599325e9,6.035571672748241e8,3.692102396671926e8,8.775126632896383e9,8.82770025357063e9,2.3436706529543395e9,7.844715245053753e9,3.6599152277918167e9,4.451007212788125e9,3.5076130033003325e9,8.50189929081064e9,7.157209560931352e9,8.853890899343401e9,5.560909593037552e9,5.402382656883987e9,9.819442387002398e9,8.519903934525404e9,5.197771959924046e9,5.838643111962934e9,4.339293434196632e9,1.0202545639123817e8,6.316769048554795e9,8.902591699240793e9,5.831468275752039e9,2.709611240708385e9,1.0451506218892304e9,2.1124912522154927e9,4.531883191951913e8,5.317000301803681e9,4.819781697465766e9,9.27588196199776e9,8.931023430439356e9,7.539173195848224e9,4.7147797667225987e8,7.6277573215456915e9,2.150137616383692e9,1.9297334695567648e9,8.176238127951773e9,7.957129719811671e9,6.101491537155943e9,1.3646157485698395e9,9.43084120320836e9,2.4749122104481483e9,6.923707020633935e9,5.935387260271162e9,2.0222106303756537e9,5.184136511315112e9,4.85701396023302e9,3.095497478425283e9,4.442389599713648e9,5.225744267954652e9,2.891899305028587e9,1.1701842966795583e9,7.995671428947766e9,9.48333084558498e8,5.2721945109346e9,5.8197962803187685e9,3.89744988602182e9,5.913450992811102e9,4.250555747099012e9,4.885391641765987e9,5.450967145440878e9,9.617196248535841e9,3.720151955197405e9,7.281511036458498e9,3.337490651082731e9,4.0137589394966555e9,8.254694469210767e8,6.536751213727259e9,1.364257960376014e8,1.099226623100522e9,4.8146813526275814e8,8.151609572678484e9,8.74413320419107e9,4.056328884926258e9,3.051073178425756e8,3.852488933991778e9,9.987764305676783e9,6.54149806903086e9,8.598730236007193e9,2.3816256684905667e9,5.111085672310484e9,5.409493752898347e9,1.0128449649326055e9,5.364825227704806e8,3.946113707844334e8,5.766271971321774e9,5.542193639395155e8,9.682028539488861e9,2.4422450637371297e9,3.728138359153832e9,3.151579513144568e9,5.951399949397718e8,2.778189451868828e9,4.317015455616377e9,8.807136250096525e9,9.887442582870457e9,9.259384357256617e9,8.062055279907494e9,9.437709651373201e9,4.54220221569273e9,9.259841750916777e9,5.0887543422322047e8,8.474893171611751e9,9.201916011306625e9,7.794366673485984e9,5.142479131040214e9,3.7666451754530463e9,8.443294570196952e9,4.153224156519748e9,8.777772913167625e9,9.35225183407008e9,4.594765025367893e9,2.3222880660653987e9,6.851321816069802e9,4.525430723058862e9,2.1435145237766473e9,8.662038608511389e9,7.227058973901235e8,8.5410632777348385e9,7.237896868922531e9,8.542449239076532e9,9.823347982880806e9,3.230459436293309e9,5.804657409289166e9,6.75529391049069e9,5.4190071230046935e7,8.464141744586692e9,2.831915094648567e9,8.233706650119006e9,8.774347718337393e9,3.8047147424090743e9,6.7054575666126995e9,3.0121710141022406e9,4.6820502318974285e9,9.355783180182535e9,1.1926698651023781e9,5.526942275663902e9,6.0921464665870495e9,2.5721080497021264e8,6.961847688934112e9,4.364633677216566e9,6.776432495252279e9,8.658519268092873e9,1.7067466468854399e9,9.454242825057701e9,8.2214136517336855e9,5.643841130035893e9,8.719113986648853e9,9.579940605940998e9,7.864616211714482e9,3.9490368803596133e8,5.868375656843402e9,4.262194268836792e9,6.106877906242022e9,5.2980658182990247e8,9.09177818993848e9,9.12712960403595e9,2.8373885296421165e9,8.208847141065958e9,6.920445549580189e9,1.9250683572638338e9,1.8637180501701667e9,6.88585071082455e9,1.2210180457289443e9,9.42279234394182e9,1.081540290712324e8,1.6259220425380738e9,1.3402135277309334e9,2.356741521221679e9,3.0476219961339326e9,2.6558490604930806e9,1.4451017249600518e9,2.0388389713768651e9,1.0026901765837015e9,7.294632615574296e9,9.36647605997112e9,5.924145814183902e9,6.814041853346381e9,7.135158696192732e9,5.529203300738827e9,4.605556949608781e9,7.7971122603901e9,8.808692319822541e8,2.5430643527552876e9,7.397323196385208e9,6.607606558012062e9,8.078892788293138e9,9.848828757230265e9,5.348101552109363e8,7.260780712574058e9,6.824673977276323e9,2.1080484833363156e9,8.083458691477576e9,4.630971056004706e9,2.0780330516106305e9,8.208310827690129e9,5.998121083518149e9,6.580350193766792e9,6.178168751016483e9,5.426142956099259e9,6.048179091668047e9,3.3154122853629417e9,9.189235896552555e9,9.332365098302086e9,8.317591361356764e9,4.451616005831656e9,3.0958447096965605e8,4.558259429301264e9,4.0568316542654424e9,3.543079125423927e9,7.38224246488044e9,7.101951234817749e9,4.386078913564551e8,9.457059338959682e9,2.92885948128497e9,2.23161332703829e9,3.9603977914584975e9,8.178260315333164e9,4.778658400453705e9,4.48936047553396e9,2.601002482376141e9,8.145384704997191e9,8.219551991553329e9,8.225128504088984e9,2.45040105461129e9,3.928783050022302e9,2.3397309945019875e9,1.703135948905521e8,9.499809075796267e9,8.409425978216922e9,6.125439450936053e9,6.341533927642951e8,7.713092137929135e9,9.190571365457523e9,8.691521695987204e9,7.953910839811118e9,5.6196580585572605e9,2.426547514874625e9,8.309282247920688e9,8.112998323939691e9,3.6642011890966697e9,9.405439128497099e9,3.683881105156488e9,2.1343092691862264e9,6.967941417731745e9,5.348690716084285e9,7.729565674030558e9,8.462990000699266e8,8.124267319392443e9,8.099343963008876e8,4.945191463147958e8,5.136073021485532e8,6.168364485450407e9,6.580026141505834e9,9.563750118963902e9,8.406715246290736e9,6.2806784686870985e9,8.209654066763761e8,5.764549381056701e9,4.6543015689843756e8,2.4965392800040164e9,9.441610316843987e9,7.018086397567935e8,8.859855549117179e8,9.320676396181202e9,7.513638212844788e9,7.610764922463476e9,8.965148947529352e9,7.939813756782772e9,4.766212095212997e9,2.4100162954555526e9,1.7396962089234746e9,9.816702854678883e9,6.1782026821551485e9,2.793973508314306e9,4.975263016723029e9,2.932714617709623e9,7.644587620705054e9,3.629381701263059e9,5.947519790642358e9,8.29422111563812e9,5.2216964444243616e8,9.50880389254739e8,3.1474036714106135e9,5.454249440027001e9,2.0552881152651315e9,5.188087356339953e9,3.151930534510974e9,1.4124125804529376e9,9.278793351913641e9,2.2737167695222025e9,6.3432218546111555e9,9.756545954853135e8,7.399823253850071e9,5.092179845323026e9,6.652995350812455e9,3.391242598347477e8,5.929857657000564e9,1.7117162402829456e8,8.412884363570178e9,8.861385186265635e8,7.566051330827582e9,3.7287060717864094e9,6.836629228025084e9,8.93358881048236e9,1.8331722012551076e9,5.845382478836211e9,5.284695634906369e9,2.5611001832616353e9,3.725186978522296e9,8.09771205505725e9,8.74004829256803e9,7.313875460008165e9,8.162975498742009e8,1.9499342962389777e9,9.495805614445618e8,3.949935132954052e8,2.2024986736293893e9,3.535474205053677e9,7.023245165950078e9,6.192015127867296e9,2.392515080642239e9,4.000761138041241e9,6.074793462099092e9,2.2167833612255974e9,4.464611514033908e9,7.235774445455168e9,5.98366267074606e9,3.3834718164292755e9,8.817718173014717e9,3.1380520109756584e9,7.280984480101535e9,4.727611073448761e9,3.3016099384825215e9,2.3006047065115666e9,3.3019514729620837e7,1.7429888811554139e9,4.23174605790555e6,9.685564780668516e9,3.0927229889376316e9,1.0492917520580413e9,7.942173545440186e9,7.3424799350998335e9,1.2291776427864032e9,2.514565457744896e9,3.616706638557967e9,7.924987193534982e8,7.1522571187369e9,9.70985268978213e9,7.487571008969488e9,2.9866700047956996e9,5.099374100330427e9,7.056557494677381e9,9.047262550228012e9,4.2263188942776055e9,2.0868431504762075e9,9.359919367594315e9,9.882142715949894e9,2.7304717542519517e9,3.838420179705733e9,6.12458205034818e9,9.881328263819468e9,3.494267651685985e9,6.395922594654693e9,3.7410035886853976e9,2.0303331444488726e9,6.583046913264775e9,2.210789557977133e8,5.01951838809096e8,5.148046249468955e9,1.695135467196296e8,8.352160433745681e9,9.819565453860428e9,6.740263192146299e9,8.526892663218462e9,9.72698023787317e9,9.580560893882353e9,1.7220537154392967e9,1.5065024322854037e9,9.20739257150954e9,9.372687722425266e9,4.800049923902159e9,7.513779884483534e9,5.9141865132371855e9,3.440287187850244e8,7.005186771336886e9,6.729537201838658e9,1.4832405378441328e8,1.3846819313616877e9,6.787067005043086e9,6.108050403772905e9,7.854815976586698e9,5.338680415958343e9,4.0104938969512063e8,7.5108718778941965e9,9.567165411133009e9,5.546278352875681e9,2.4137113296309443e9,1.3453685618273325e9,3.9238765186613846e9,2.8233894384792647e9,9.53874618774202e9,5.573946325405191e9,4.278262897673979e9,8.469485934436326e9,7.139250549732305e9,3.3768006392219663e9,4.0437665550809455e9,8.042941585833719e9,5.48815726307441e9,5.594433029841039e9,1.8914293704693651e9,5.038919006293473e9,4.986491240244708e9,9.169994642351042e9,6.37642285806863e9,4.490298583144699e9,2.827020837725225e8,3.8281047668545732e9,8.367287059282657e9,9.502842081849499e9,2.8608654426934576e9,2.854814451282186e9,8.119435690185461e8,2.2160870294941716e9,8.709292192508562e9,8.210520547585905e9,3.7067249955002813e9,8.670479528564505e9,2.0396131496627324e9,1.9900287371605508e9,1.0635007851087397e9,6.774004927465937e9,9.898159882233335e9,7.718232399351719e9,5.790960476407436e8,9.217316857341497e9,8.918650195875896e9,7.6795042063368635e9,9.478716393397924e9,2.0009167646598969e9,3.1521501682326913e9,4.395940302549671e9,8.04416209744696e9,5.372514577281427e9,5.074412384367373e9,2.6169080296907744e9,6.870385779700081e9,3.896941376423112e9,8.485058885338237e9,3.441661906229655e9,8.931018227244246e9,1.3462859044052646e8,4.801971866115742e9,2.623556929158438e9,5.208724799907631e9,4.489693159011016e9,4.152133123052155e9,5.088609125086935e9,4.789486449825745e9,7.7877691297930155e9,8.015310240852587e9,6.384261479140309e9,1.6977962111798196e9,3.6719749696160054e9,9.632620172454329e9,7.388989414635565e9,8.137448351671076e9,8.450446536926548e9,1.717129458461454e9,4.67254188585281e9,1.8060039672004292e9,6.247870513754693e9,5.111730007003751e9,7.047376467733212e9,8.395289965296963e9,5.997339272032184e9,1.1457992302123642e9,7.094142501543288e9,9.522553303107712e9,1.9280900322180016e9,7.387689193211014e9,9.387427849413565e9,2.229891283879798e9,1.8975897503713102e9,8.714162190832417e9,3.252321492446969e9,8.758300281951448e9,8.056673967671193e9,6.649486006930893e9,3.4031888329455304e9,6.245546911378987e9,8.958962706656892e8,7.754567938984582e9,9.97884959601657e8,4.3969203882056265e9,3.4733494188986735e9,8.960903109670023e9,9.325615468682257e9,7.564156651948719e9,4.480881131973736e9,7.538235566742504e9,7.877555315817281e9,9.026218639522887e8,3.583676204053824e9,9.035215672738562e8,3.8086653962069216e9,4.691971509125694e9,9.533433234025034e9,2.9072979302985024e9,8.330912836750264e9,9.621518032133858e8,8.270586256372093e9,9.898328151026047e9,7.872986731822856e9,8.5673802169681225e9,2.0830451386704285e9,3.857573773520525e9,9.483380543392427e9,3.1563677785126433e9,5.43983478286616e9,8.314173744291548e9,5.175866311327765e9,9.094035711789625e9,8.962234271692438e9,1.4391529354499066e9,3.1060329434505353e9,2.9307214080035715e9,9.603707365455845e9,1.0837837192538357e9,2.7092336057368836e9,4.72554838989892e9,1.6287964514906428e9,9.914064732367052e9,7.736327102453381e9,4.576582359544949e9,5.81805588816565e9,1.4288261287801795e9,6.123941359292464e9,1.568307233372399e9,8.128497068428346e9,6.638184002237422e9,8.250043214284357e9,6.9565603149464e9,5.224288603526806e9,6.258998146687337e9,4.851787306045493e9,7.779175101359069e9,8.303579520184181e9,2.7856962398951966e8,6.719345439040873e9,4.279573445456004e9,3.2011331259930353e9,8.430853176512355e9,7.879865913224277e9,6.503982639206016e9,8.07291851392924e8,5.869266698100533e9,4.035508494985538e9,8.570438103314022e9,9.018035621095224e9,7.7630257449707155e9,9.156411151391085e9,1.7639561437015183e9,8.938542865742456e9,1.306985873549551e9,4.999601263671321e9,7.860067666680659e8,5.563761612403816e9,6.800391042143391e9,6.467551114676796e9,2.0891356904367797e9,1.2145820372789972e9,9.444787902340916e9,9.559212560338152e9,3.2241560196495357e9,8.296405905453423e9,5.559759429025266e9,9.813670634143654e9,4.871659897891259e9,8.331845565068467e9,5.11023495031081e9,3.9545455144533224e9,9.694478127013332e9,6.429436065211008e9,5.559311570135813e9,1.4026604544349763e9,3.953169844109419e9,1.5479123054267306e9,4.735905189214702e9,9.334685194513254e9,2.008191046225306e9,5.595219878104784e8,9.363263965159697e9,1.6137847034369779e9,3.141122089233743e9,4.639358767361039e9,5.2988890930430765e9,9.038138016377289e9,5.475124475070879e9,8.188138677081952e9,1.0176404471794009e9,9.586167016145218e9,6.077170514627877e9,4.889202363006303e9,3.436278207916863e9,2.185915026947981e9,2.6475430345999618e9,6.635115901105906e9,2.5797257803067407e8,3.728095911713927e9,3.8104895922203608e9,7.08382580472225e9,4.8096699344078665e9,7.08272559869433e9,9.689187281038174e9,1.7830341814571393e9,8.061848618126166e9,6.926424941831749e9,4.954132279371152e9,7.139660876714972e9,2.6992129462981205e9,3.1916275345941424e9,6.2653315367617655e9,8.323941717202388e8,6.487234321091897e9,9.714219733974869e9,5.388360557735128e8,3.7900754112419877e9,2.226837292895043e9,9.09535662381978e9,5.437350604446445e9,2.80210981671251e9,8.254411707827611e9,1.7368550755840583e9,7.276561442538635e9,1.9520169096999495e9,1.9431938645979097e9,8.963763856554712e9,9.03394017636961e9,8.111748170257635e9,9.437006796259401e9,7.975118862950193e8,7.651658261247745e9,3.6584260074281096e9,3.4845667796710724e8,4.428798763500496e9,8.295386501013047e8,8.753149536270853e9,3.449008180025808e9,3.874836078642826e9,5.476041128139794e9,9.940379732398046e9,3.8998776282157975e8,3.7738894072928495e9,1.6606369418974254e9,5.270718875139451e9,3.0027650856761312e9,4.955853282484107e9,6.632169193391607e9,8.381900883711443e9,5.4072052208800955e9,8.801674671278309e9,4.1926177152490454e9,7.694944169213258e8,5.332684896177813e9,8.678558826330633e9,8.241745829668494e9,4.562099061107433e9,5.631194998121002e9,7.005238318918587e9,6.078193065595768e9,9.955312484903458e9,7.383350422149052e9,9.438637712259537e9,9.186020675158726e9,4.922472953696287e9,3.9695838387487593e9,4.425044771437537e9,7.532370381845579e9,8.027757406041633e9,4.181035441972202e9,5.425442052055945e9,3.711042469034939e9,3.019055528782114e9,1.2680965175377278e9,2.8486068285721655e9,8.558343187260273e9,7.694986651419918e9,1.511428198043352e9,2.712480305509042e9,8.389725440780814e9,9.96308390560688e9,7.262497881972595e9,4.0565828358063116e9,9.298390183950397e9,6.104636372089907e9,5.942356301562131e9,7.789822648627748e9,8.739196925201815e9,8.538530620214617e9,8.699765222287077e9,4.415860981984936e9,3.7365654571120733e8,4.914752335058225e9,9.462731677465706e9,6.771969999092684e9,1.4640749131468167e9,9.295932701305366e8,9.7796238951991e9,8.592002867479435e9,4.239893127952321e9,4.2386862284292283e9,4.752687178661938e9,8.798633028236086e9,8.693544931742916e9,3.7735875423481603e9,7.777333195813792e9,8.909584427894373e9,4.0449364105965815e9,9.548904687012129e9,6.584901561124823e9,9.935483844917418e9,5.061450521223976e8,7.442329501048742e9,7.20525553003765e9,4.105409366009808e9,2.3543368440068645e9,1.9552982293210163e9,2.494789740178317e9,8.335099603899856e9,3.3689023635483904e9,9.446153326192427e9,7.926800781987489e9,3.5357578880145125e9,6.916750803381895e9,5.284874713527573e9,9.506828646472393e9,2.1394803539926e9,4.95177806581104e9,9.079804445266515e8,4.1507580585694427e9,4.752621900280302e9,5.9799445800210085e9,9.664581619030153e9,6.193409256487613e9,7.172795110134848e9,4.566109119838095e9,6.773734477144222e8,4.520086847221103e9,5.355274886411802e9,3.7846841509696703e9,3.61637403469668e9,5.972327448716218e9,5.895494796623941e9,6.202380067874143e9,2.044806250527108e9,9.652979607412176e9,2.6380632885532975e9,5.300756472054677e9,5.359958486894663e9,7.069052059498121e9,1.300721461320744e9,7.172355641322259e8,7.302489164846202e9,1.7486537463641193e9,6.936314612657985e9,9.425397519305815e9,2.4938063407771006e9,5.0943756613438195e8,5.019851549965432e9,9.580837262482607e9,6.512882160858084e9,6.123267920960249e9,8.979327924419304e9,4.146491646791642e9,4.367107306542046e9,5.591121972774629e9,7.458062366052328e9,9.054886191815382e9,9.914410200819157e9,3.94525141220305e9,7.677485884781891e9,6.953821564805447e9,1.8124516179064853e9,1.6816410284376738e9,2.421598423950324e9,7.688763668988959e9,1.6223866976345901e9,8.665436921341534e9,7.167116755240008e9,7.476891862625267e9,6.028711886934087e9,5.09145107532514e9,5.175924334976305e9,6.548840320128918e9,6.75661623871628e9,2.0718283947599082e9,5.801454350136972e9,2.727696658577849e8,3.04430783685309e9,1.294062078034881e9,3.901391553216621e9,3.721807169932798e9,9.822757049577414e9,8.25333510632799e9,4.707727699981702e9,5.611715608199676e9,3.292546593257866e9,7.67249361549825e9,3.9025362540706744e9,9.144283963393744e9,6.501828046426754e9,8.989219373661097e9,8.693040805773975e9,1.9297650732075377e9,3.853763485642918e9,4.908039222141932e9,3.224096226553972e9,4.958573536098687e9,9.208009286037825e9,4.1967260809283957e9,1.25145896947787e9,9.3633491245093e9,7.4481637848081875e9,7.56137007227645e9,3.3237133836914067e9,4.1986448614886527e9,6.103605448530818e9,5.744121152787483e9,3.822108159013071e8,9.70005839318903e9,1.7769278500423536e7,2.3918958043702455e9,7.51481398966012e9,2.6537205644649544e9,7.964037074719956e9,5.960575376284217e9,2.44828807631398e9,2.4615146254185705e9,7.343076956218768e9,3.124704839151504e9,4.1601792847287154e9,1.0659780436675192e9,6.850785456056911e9,7.382370572499666e9,4.825092996619235e9,3.9486998420387354e9,8.029723992261546e9,1.4722219163367877e9,3.9861961688895955e9,2.43649423907635e9,2.7222376811627235e9,6.350541890628138e9,3.0614347569037237e9,3.7948359237780285e8,6.291651975815333e9,5.348010080961371e9,1.5556083096143491e9,3.829562050864893e9,7.192379376029604e9,4.904985624660655e9,5.647502128232568e9,7.483357792800293e9,6.588083533925663e9,8.868661578394943e9,7.209692278869676e9,9.688247497639524e8,2.7970720223607802e9,5.0799887170825405e9,1.7279059280915444e9,5.5560541878013e9,9.343233693049135e8,5.876469642467708e9,3.6473258308996284e8,5.28147200683567e9,5.674516649153297e9,5.009888617484263e9,9.36661463283254e9,8.084740510695691e9,5.289232145537385e9,2.156288343320597e9,4.2453840752813997e9,1.055071937492319e9,9.785784095867933e9,8.55834285945164e8,1.046262447063916e9,7.496923346449167e9,3.9587846713552012e9,2.3377157773996606e9,3.165755348165076e9,6.962662132637923e9,5.883468427097675e9,8.868657519041178e9,3.689854576155768e9,6.785523367576299e9,4.631893030931885e9,2.7142078968421144e9,7.100559001721099e9,2.8741437751086397e9,8.252035679317093e8,3.6183137456266866e9,8.309589119177355e9,5.431080377733252e9,6.408061390933114e9,4.0172671513788505e9,7.516764665949278e9,3.4040056792463346e9,2.6158648593917146e9,9.348114459893532e9,5.447070527388296e9,4.399884851650545e9,7.563615979286153e9,5.928007261450121e9,6.784478421843207e9,2.4354473786077123e9,5.0274034955078983e8,2.537930090521545e9,1.3666804361708028e9,6.268057593476761e9,5.949200486745126e9,9.744616189936428e8,5.170723790842428e9,4.626268245369649e9,7.777336338397661e9,7.262280524172039e9,3.868478337462827e9,7.446109671007435e9,3.0688742132139826e9,3.466192773868898e9,1.217005587855744e9,6.21314558454558e9,8.35870898383062e8,8.380217496483266e9,2.993514405610749e9,6.815981153664774e9,7.2979983646734915e9,7.555376220338237e9,8.006480463789988e9,4.401535389349923e9,9.598424739297862e8,4.37191197327855e9,6.596439323407313e9,9.469785078723495e9,4.818435113331267e9,7.142843832818409e9,2.5693389773088503e9,2.518379484948202e9,3.4841465574786115e9,2.2359319263728595e9,9.46124319502896e9,6.223174029111218e9,4.871740628803829e9,1.109827530785662e9,9.805278985146664e9,7.644309639398136e9,5.776417651472015e9,1.2859603228515127e9,7.22520516170981e9,4.308844792621912e9,7.069126424907878e9,2.823322169842385e9,6.490872260956949e9,4.51508351129671e9,9.147637320006647e9,4.952733908341163e9,3.639404981176425e9,1.6008357699015462e9,3.5469661217070837e9,7.236921494024706e8,4.463746906107027e9,5.860249802599532e9,4.572772099704672e9,1.600752273737217e9,1.0344292106097952e9,6.691822674980496e9,2.611121023080124e9,3.9753144484521995e9,2.400256712907822e8,2.6915614066316085e9,9.06461803396035e9,7.467163574980007e7,9.251008738799648e8,5.666972750150273e9,3.46772987955425e9,3.526896186957782e9,8.876154377624968e9,6.030954926511751e9,4.112857373798463e9,4.2143024618744097e9,5.768256393798546e9,3.830056137496504e9,9.129853597992641e9,8.343155785494094e8,6.446524869958604e9,4.709095567351812e9,6.171232080699011e9,4.394830380278319e9,3.219950045655915e9,5.019925806355638e9,6.361271410071855e9,7.955087672114507e9,3.540383923407108e9,6.635268427101716e9,8.187170562067111e9,1.6166186618887045e9,7.418683204550335e9,4.946695013281611e9,6.000742369877627e9,2.0798795326023588e9,2.4064257483428907e9,6.867929222949349e9,1.0884206454906685e9,6.9664797169337845e9,3.690811121988354e9,1.6863725363156123e9,2.434713986075462e9,7.085133638776927e9,4.3641443157280855e9,6.329169720529194e9,1.410618919346207e8,3.9379294008909016e9,7.48824559673908e9,6.853400796504802e9,8.628357798100698e9,2.016768272743682e9,4.360404457998991e9,7.176990299856181e9,9.037086501498117e9,4.978480480991345e9,3.3337088880435095e9,7.915870921795025e9,4.76937921595846e9,5.778587146372272e8,3.3656495684655952e9,6.023676760583649e9,2.1247324198254724e9,1.2336719348605907e9,8.009106623549025e9,5.450905170374582e9,3.878892967904004e9,1.3773203307098281e9,4.2427918954974155e9,5.027299506420483e9,5.234284038616754e9,4.102268332907164e9,3.776068668505805e8,8.5755908219164e9,3.500823892353594e9,1.5884540508352606e9,4.519004805780492e9,4.2327830517733955e9,7.442695191350197e9,2.502405942151652e9,9.210251431129469e9,9.131109782854576e9,8.652447188499702e9,5.482462221471929e9,7.008196728613992e8,4.788189381194831e9,6.187300773149348e9,6.511353799023236e9,4.724221242896276e8,5.763553664427277e9,1.0465439440986323e9,6.5376526695742235e9,9.61990262459274e9,9.8706536680363e7,6.653006307744307e9,7.691801439779912e9,4.434551722636897e9,5.560739182900881e9,7.858769902666192e9,7.92106338218285e9,7.129453865310572e9,2.9125438195671415e9,4.365637154205912e9,8.329846075287332e9,7.427709674701841e9,7.047719953800738e9,5.890904250708028e9,4.857640525750918e9,7.409456121097109e9,8.029375495820245e9,2.2137090497920365e9,4.451959355910379e9,4.66173983466945e9,3.262756509527076e8,7.87294916273984e8,9.441328405106476e6,1.0308348312764337e9,3.887081377348933e8,5.531031627073673e9,6.275901764654235e9,4.382796812315912e9,9.880286931038855e9,9.263920301151228e9,3.321153910856334e8,4.848791603943757e9,8.4747320858059025e9,1.9336553331456697e9,1.45549416244094e8,4.587701700841461e9,2.5687707902293544e9,7.672233296219031e9,3.0318632554805627e9,2.770880307332528e9,5.09241000851415e9,8.78966782048088e9,8.218478478013754e9,2.4062407997406845e9,7.671248059154529e9,4.616781944770046e9,6.458568707924382e9,3.1851368726458373e9,6.289880446495377e9,3.7991723048244195e9,1.5894893495519803e9,7.084823099276705e9,3.509957272721327e9,4.720104570575498e9,6.980756261802772e9,7.615064887088937e9,7.568360091870796e9,5.8655101650832615e9,5.462678488909208e9,8.717566615501799e9,3.253299177620058e9,2.465309885008202e9,4.551987391993578e9,5.684351499842362e9,1.156088781470739e9,4.641686978826852e9,2.4182382898098874e9,6.351634680141643e9,6.004478252594444e9,3.670616287767998e9,8.788243158839737e9,2.2506457276484137e9,3.4150600548146315e9,6.777843920489186e9,3.472381274308716e9,1.220950025267604e9,1.2610940053887122e9,9.11675584824623e9,7.919024896182181e8,6.895205515760162e9,5.044452964090512e9,8.249047054065126e9,6.707566821723835e9,4.0113466618438873e9,2.8008361566660357e9,9.630046536893162e9,8.422224524467621e9,6.896271188652204e9,9.60768214817372e9,3.966602918438802e9,3.778944343976157e9,4.974398782692192e9,8.71728785471724e9,2.575007032347103e9,6.607647071035041e9,8.750738064997185e9,8.110282578014083e8,9.866085876754328e9,2.0465366202264246e8,4.0881622498084493e9,4.1437836403893948e9,1.7550256558294053e9,8.377726863809333e9,5.709919478653714e9,6.5982889477845955e9,5.723696074705902e9,7.697139266956657e9,5.985490713289722e9,3.055807752677009e9,6.097837094268001e9,6.926328789420615e9,3.876978400189709e9,1.5821101902734914e9,4.24461261304515e9,1.7328755008746178e9,4.010186841364234e9,9.436170918226528e9,5.553424022543756e9,4.1088138103949766e9,1.1236756809214866e9,2.021695682007797e9,2.1544337013813353e9,8.760608276423122e9,1.6872532026423414e9,3.6178019054216857e9,4.941960977747193e9,1.8492027411100986e9,3.770368837639797e9,1.2314116201092128e8,1.0919065659573278e9,4.393075871867158e9,1.0151273926255888e9,4.4162700738218373e8,2.2517891421322947e9,7.628337748305176e9,7.453344243642144e9,5.582771856995127e9,3.4059003098396754e9,8.272542966675652e9,7.246595190364242e9,3.972278400728696e9,6.8299009776266775e9,1.9286415904454345e8,7.984294665529703e9,1.7750967144797792e9,6.062554253376724e9,9.061730513484926e9,1.528084672383523e8,1.4434498247114068e8,8.406308702359055e8,6.657532700506129e9,9.65485796967538e9,4.428029838026563e9,6.549376822279965e9,9.311125951356096e9,9.727015903246414e9,7.807302581439563e9,9.14781492330679e9,7.310600288463273e9,7.6556221713027525e9,9.107004724272318e9,7.310461136492333e9,9.384937663333588e9,3.2377574599407187e9,5.58077393196517e9,2.4520987446127396e9,9.364366335219821e8,3.681372541420247e9,9.39857905533043e9,8.3078729231434765e9,7.965539464392986e9,4.576041651229115e9,2.2380466982407866e9,7.411023270624345e9,6.111427352684682e9,5.5653880769551525e9,2.23275950487285e8,2.92435092997651e9,6.334555725109646e9,8.935885837529287e9,1.8252773225036767e9,9.997129327548452e9,8.557493440402997e8,8.854583559227953e9,2.083667588343485e9,1.9297872265167336e9,6.791257370147622e9,8.223142056761075e9,9.86806378945178e9,4.409691396925669e9,8.293143901517057e9,3.3123456829390776e8,1.9899453373850572e6,6.888148952971126e9,5.447130045679605e8,5.141472274860158e9,2.9484171973139105e9,8.84302162378916e8,8.655629062530091e8,1.5202514822303126e9,7.61981098567829e9,8.75330069247567e9,3.4192290963055205e8,1.1959639725041559e9,9.160425679837548e8,4.977688442770305e9,8.991000763844189e9,9.538944659319915e8,2.3220042995751423e8,8.444442654380865e9,5.162642188422396e9,5.395555376933516e9,8.872008047910257e9,1.2677635005102239e9,2.3498515394323406e9,9.107827811256248e9,2.1707383735521245e9,3.984818913106418e9,1.6132624656134853e8,9.310789657536154e9,5.005784683312142e9,1.7163746854990957e9,8.647261469090088e9,6.483466279323535e9,4.439694102202227e9,2.9919162925967913e9,8.605422471931133e9,6.652153815869323e9,9.236682770346655e9,9.422342984260624e9,3.787782859946919e9,4.52531345015511e9,6.241818321263318e9,3.3043508158252435e9,2.8263903756888375e9,5.324386148422141e9,9.047009747426287e9,1.2149152143224318e9,6.969398209036401e9,8.16748584560064e9,3.267762203725867e9,9.289669252541494e9,8.589445700204105e9,6.685647740489835e9,8.547656005205962e9,8.027292344511333e9,1.6791127538263361e9,5.454828963958717e9,7.445166726600214e9,7.657156150157832e9,3.4684596256784616e9,9.783080568147995e9,4.38122967306688e9,5.194721044129399e9,1.0274493051289879e9,8.062830584284031e7,4.305746709952735e9,3.3441428016849464e8,5.732634916867916e9,4.1012597237992997e9,6.227021866700474e9,7.657905911001832e9,4.539373960562249e9,1.2099673382497056e9,9.548773303349034e8,3.267867505100486e9,8.517020856015057e9,7.19587750774219e9,5.657453513286728e9,5.444603519736659e9,8.438335196568976e9,2.635775960947112e9,4.343135517668854e9,6.861502380648736e9,5.629187600936447e7,8.162037678860088e9,3.111356650482777e9,7.104809864636796e9,8.013714072359768e9,1.348548155139585e9,4.609084210224587e9,9.348483173058632e9,1.1073992144035904e9,7.971577976124855e8,2.6736462922039075e9,6.949684345357652e9,1.1297711804336207e9,7.804938479814962e9,9.574659583745245e9,9.847237588279379e9,1.5123082930423381e9,4.1554266268624864e9,3.8223446721184273e9,8.704513317209078e9,2.641057152804612e9,7.290817342061513e9,6.016626896135422e9,6.851157711374289e9,8.465160984352771e8,5.931973183731789e9,5.391338912246025e9,3.463762369395298e9,1.2591787125028731e8,9.99771802938922e9,1.128926404198398e9,8.015874486152616e9,4.857280893120875e9,6.506652456787801e9,9.101730098610785e9,4.709020861007106e9,8.490675330758102e9,2.398179832348418e9,6.018916558293439e9,8.461113573740032e8,9.07215897441071e9,1.5286330072920496e9,1.5210468936393552e9,2.3643462327757745e9,2.172030175649388e9,1.488699908238311e8,3.7119864402914505e9,3.548878162840563e9,9.874375057544607e9,1.7241833705880704e9,2.097992110072997e9,6.804693189339462e9,6.434080948840372e9,7.532343871478804e9,2.4649295490018997e9,5.460629570585052e9,2.231064451411905e9,9.731407280663242e9,2.2014495327886963e9,4.1243484776400375e9,2.96246473040543e9,6.61481947658766e9,9.925064889975512e9,3.3179012934846044e9,5.36451330774903e9,9.929759136973482e9,2.8068002244073977e9,8.777666221122723e9,8.41162558499817e9,1.9958441760588807e8,6.223941406703421e9,3.6839566004461064e9,3.9755389102439666e9,1.8669324680244913e9,4.826003087001769e9,3.4265461330709224e9,9.791299832423437e9,4.780862418179122e9,7.944025492701328e9,7.884127131128227e9,8.67743922982727e9,7.674746235390583e9,6.364724470669984e9,7.275138536384822e9,5.963369849048984e9,5.705948058728562e9,5.77894760331391e9,4.347138612841333e9,3.8791206773143983e9,5.372990219976329e9,1.5938132042509844e9,1.0458258009412535e9,9.757032754215202e9,8.654627497663614e9,1.41284108300062e9,1.9912978286114836e9,3.2206772501336946e9,2.089723710486091e8,9.365163162519026e9,5.643152844038139e9,6.743872166519072e9,1.190845028567551e9,5.626820192396667e9,7.724042381226466e9,8.585294330790317e9,9.002538315314224e9,6.840842660570843e9,3.4359856472928996e9,5.044971245060952e9,9.406845565667421e8,3.552945457471911e9,9.417268311869576e9,5.825592166452509e9,3.1682984487031116e9,7.438009206460072e8,5.492074670879801e9,8.318812798083593e9,2.7312639068573794e9,9.178957835691359e9,6.329944930068795e9,3.5840805152995615e9,9.769402714703413e9,5.229309778183326e9,1.272373100374975e9,5.397507216059078e9,3.8613836583682114e8,5.703100360363736e9,6.648697366143796e8,8.997502641289608e9,4.0431938405519276e9,8.025190686048744e9,1.1018320949031558e9,1.32234015248767e9,8.414596964782947e9,1.7281422589918427e9,2.1009869583473418e9,2.8899973781985555e9,6.218246933509219e9,1.9023922077332401e9,8.4329895039704e9,8.285650883959467e9,5.165208559708293e9,1.7262330969521356e9,3.436567025118753e8,2.7824045247605987e9,9.240763356057652e9,4.0652126478845453e9,4.073616507834703e9,6.991342879925606e9,7.360266318055471e9,8.612926165716236e9,1.2553368989723802e9,6.305802758534508e9,2.1718395704277916e9,4.946168759210192e9,7.515817811303724e9,7.270582441998845e9,8.895539435932724e9,2.1345125096297069e9,7.747798518304025e9,7.456505936539574e9,4.708925769035319e9,1.894572006191686e9,9.37291939288648e9,5.025782264084301e9,8.816851378614655e6,8.274288939414763e9,2.195860223267344e9,6.635139068147682e9,6.691386772652364e9,7.2074225178848e9,3.661777666165502e9,3.3836532095911884e9,2.7867574620799294e9,9.444406535927921e9,1.10461674044106e9,1.5822561753624365e9,9.554694126350542e9,4.0814619200365996e9,6.457604123735937e9,5.133379672732621e9,4.775810413305154e9,4.821330064540043e9,3.995643909960135e9,6.455740781476613e9,6.880708238935379e9,2.9072248875759764e9,5.712495293435976e9,7.624537924895608e9,2.4513759692949243e9,1.2720957354254224e9,9.77741472602817e9,6.335481779051472e9,3.059227913435357e9,2.6289688741599426e9,1.4887969325016692e9,8.729740298139915e9,3.5448558716457725e9,1.5347630579202664e9,6.51846405565175e9,4.2826144783520203e9,9.501231268003935e9,3.1725445702776732e9,8.889062165689587e9,3.230462876928638e9,9.554132479849762e9,7.47766007512081e9,2.3720123205849487e8,4.464718280826982e9,5.799637653838274e9,8.472173897647526e9,3.210340078565843e9,8.280850256860361e8,7.304766390196252e9,6.435782846651738e9,1.4125521205262116e8,6.4085707960634165e9,4.3557199615299635e9,9.681560365032335e9,7.951880398427037e9,9.694436866724445e9,2.319620266043043e7,1.993743523504673e9,5.1111221268661964e8,8.342266341643005e9,3.1516282807235e9,9.530992303238761e8,4.40668148255563e8,1.5010830416740006e8,8.856785805566813e7,1.0609117450059724e9,1.0013558528348132e9,2.7352556280058002e9,2.4338700183538055e9,8.075669981516275e8,7.765189159905761e9,3.234006262694328e9,9.340312637821407e9,4.921869610574083e9,5.060580680942724e9,5.572946161825167e9,1.4237751818687449e9,7.828845296809523e9,2.3686863129185753e9,1.5559493016320515e9,3.2783322920666823e9,3.1969618296075997e9,9.642775330429708e9,7.669842588130244e9,3.185882437131554e9,8.746526364214607e9,2.75436255828988e8,8.365389397057792e9,6.234190819496244e8,6.882252741199195e9,1.967692798589813e9,4.5409353955510845e9,1.6606996624722881e9,6.51033559663806e9,3.7526252613933687e9,8.467374501229101e9,9.583611904151001e9,8.96323125896405e9,7.086657482350279e9,5.493458261058144e9,1.8663199956034915e9,6.823796570464653e9,4.305648056804115e9,5.048464842394719e9,5.915890363714416e9,3.3668460767341433e9,6.609564466673351e9,9.370636508617447e9,4.081600583712318e9,5.510124611246747e9,7.465795282100994e9,3.790872588727362e9,2.278384579782661e9,8.978819819289995e9,4.840115091056143e9,4.030425520234915e7,1.2024439022516077e9,5.930966808867062e9,1.763151500375889e9,6.153515869794145e9,8.39973673671573e9,3.7871646009695935e9,8.81461333679985e9,8.793601899722132e9,4.267897262898546e8,9.640135576462061e8,8.159141724698519e9,6.354548569415356e9,3.662627408312119e9,7.131862677182577e8,7.577707830218137e9,1.648824711398422e8,2.70579094915151e9,6.161854886018308e9,6.477232930404664e8,4.85279450490743e9,3.2585562820884194e9,9.892826390514128e9,2.5781709684582977e9,7.589413647715894e9,1.1990933472925637e9,8.672478852272025e8,3.0385795735549116e9,2.295254011530372e9,5.866223147125868e9,1.693446026575899e9,2.233538299591208e9,3.829385458975555e9,5.49600875919678e9,2.6731652312058907e9,7.495462962130517e8,4.879605210519616e9,9.479150455771255e9,7.346894742890237e9,8.818474283000813e9,3.308237656132995e9,3.998892573572458e9,7.72955295265925e9,5.575542316325914e9,5.084915295703267e9,1.9082475413408117e9,5.090035139143271e9,1.5027497257420518e9,8.043563949208776e9,3.71991097673157e9,9.839722429047388e9,4.38959218692004e9,2.210695489396973e9,3.5978076136956162e9,7.695150832273275e9,7.134430148492156e9,3.788924569602412e9,4.995876402287461e9,3.346867740528795e9,2.6471424404483767e9,7.93749011761601e9,8.85745631792193e8,6.103407097322366e9,9.191980078328583e9,9.919941992204956e9,7.52293353754299e9,5.5706447085689945e9,5.005355217686096e9,4.652191236334408e9,9.558018909242014e9,7.696087197660426e9,6.502753049274214e9,8.176622803757753e9,8.857320866368435e9,5.91076582774096e9,9.384735187630033e9,8.046160903150903e9,3.460486275252749e9,6.675871915465991e9,5.945910403383569e9,3.3786661119226956e9,2.0522480381676311e9,8.42586640782083e9,3.7069302183514886e9,3.392119595374351e9,3.2767526958428717e9,2.8154614239756937e9,3.5473251289687014e9,5.956185718897567e8,7.64908898011266e9,1.2312383813884764e9,1.3067247803386862e9,1.3549341939816418e9,5.10266243835148e8,5.296971941889667e9,2.1791832148619995e9,5.347485436545396e9,1.4386498499952028e9,4.41165829668544e9,4.398037978288404e9,3.06863577282118e9,4.776290872099055e9,4.438168793406101e9,1.5763930671809046e9,9.442319570177021e9,7.046867000962393e9,3.6891135737412486e9,7.467730040552344e9,4.958008509268747e9,7.009353206488346e9,4.1676186843161875e8,9.335850974019249e9,2.4065077797645885e8,6.5822838614936075e9,8.529980972643183e9,6.586024159533746e9,1.307919331055598e9,6.257201966852625e9,9.471657937994648e8,4.384159842075548e9,9.918121116209055e8,6.731697452556382e9,7.096980038096916e9,3.82643467100674e7,7.665286085689831e9,7.888365271312297e9,8.686526033569752e8,9.924364685203407e9,1.3274691686984807e8,3.2914196283993645e9,2.7531818239781437e9,5.231181248351606e9,3.8999071440606246e9,2.3683322977118917e9,6.40128766468664e9,8.88865424636534e9,5.589270758869293e9,8.494645810773877e9,9.631189943652575e9,8.96197129655637e9,8.133666224304404e9,3.8829547850389614e9,4.705704980484957e9,7.79303852813014e9,2.370518641006739e9,6.431038730213145e8,5.198541121297102e9,2.2057815263470716e9,9.09820735290458e9,6.164587337468238e9,5.332969250921442e9,2.7561878600925236e9,9.988245363318014e9,8.22694832910463e9,3.595568133897639e9,1.5532453231516275e9,2.3833951351818982e8,4.833286981844956e9,8.682546801016718e9,8.181863901898012e8,5.935884059736936e9,5.4723926467142e9,3.182582207340523e9,3.186985881820944e9,2.524709705670085e9,7.426370823396334e9,7.588020611391303e9,2.0756508243400152e9,2.6579380994764967e9,4.928324221426634e9,4.443382653806773e9,9.380286307777552e9,7.302823634690566e9,3.8430253223530765e9,7.237356692588383e9,2.2540773429184957e9,4.971411352825528e8,8.042213404353944e9,9.941323780628273e9,7.704397684492874e9,5.140611689721117e9,9.948421876841349e9,8.656685436682987e8,5.777266261466204e9,5.899378306489667e9,2.989167893757663e9,6.80195802728768e9,5.342991850855448e9,2.6980548991222386e9,2.660266282526467e9,5.974177044481231e9,7.178136710522435e9,3.6283692236747823e9,7.912291016652273e9,2.3994145529662304e9,6.896199911746698e9,3.0524677384638934e9,8.541224131285594e9,1.4000375891174731e9,7.818373688430943e9,8.552604882601637e9,5.014238738619979e9,5.343118307894347e9,1.7974642140682251e9,5.566262936182116e9,2.366447555107798e9,7.5778192118991375e9,1.3626395705038607e9,6.422046789507611e9,7.103664407011902e9,5.499080310959475e9,3.8831708461577606e9,4.954092495678118e9,6.845434173598299e9,4.451522347624837e9,3.753769090516077e9,5.335031173676922e9,8.332612009331307e9,6.407936440423443e9,5.247341637825161e9,2.9914412359895124e9,7.100875372428676e9,3.052534853960237e9,3.623966875076052e9,1.1708696000941665e9,4.423700159362391e9,2.7101623777697372e9,1.2454242569502227e9,8.272644708638323e9,5.647005831512744e9,3.5342911326953206e9,5.474259406389045e9,2.179350163057924e9,4.506972181080617e9,6.976312277093302e9,1.0759964108412988e9,4.730602662326351e9,7.665265575071299e9,7.497017085286699e9,7.841197589116032e9,9.657663400817608e9,9.099961879017862e9,3.840128063252002e9,2.8794635286032767e9,5.773347724236268e9,7.467307421509077e9,5.322456517853339e9,6.93185987191134e9,7.0360206908408575e9,4.83071319621894e9,5.938199300351612e9,1.2992491696241504e8,1.3312387873936281e9,8.067671630670094e9,4.421565542370981e9,3.518899871292931e9,9.838824155766262e9,7.244145341101005e9,5.991612410651763e9,2.8471754249168415e9,6.735291439422817e9,1.2942974355197866e9,1.3371327155597967e6,1.104959639897527e9,2.5996395363852887e9,1.1735590418217669e9,5.680061159146164e9,4.515500771994363e7,7.677674091774903e9,9.011195940557539e9,2.5080464118412247e9,3.7366017551621056e9,5.02834291295051e9,2.451345494796118e9,1.6876268452084763e9,3.8377133326234546e9,3.36952831898511e9,8.34014959897356e9,5.013153006137359e9,9.168934840894613e9,1.5983496991715262e9,1.367959486824204e9,3.943687007227347e9,1.799404978746384e9,2.362616656506731e9,8.352423817288855e9,3.6460862939285398e9,5.185470433132596e9,3.0125665970905715e8,6.900219810127037e9,4.397419233622684e9,3.0751087422138333e9,2.9718086010401855e9,6.081351422222053e9,7.226621588602625e9,3.9516584488056893e9,5.896676935568543e9,6.388486554199271e9,1.45792047345506e9,2.0201707567171845e9,3.271568002498546e9,4.70309146575564e9,9.960695267994884e9,3.010262342587564e9,2.546687310950282e9,9.465158276435304e8,2.0730903508877418e9,4.397154096640147e9,1.489018836763185e9,6.940004139507961e9,6.91578556109231e9,8.3535525616347065e9,6.678224368813711e9,5.823179894314955e8,9.09309363444526e9,7.938929417686665e9,5.740853819294483e9,5.295751713739171e9,2.7964990601575313e9,5.579191146940032e9,9.59891274691252e9,7.971120118824904e8,1.9334121801060588e9,6.858097413882244e9,1.2145573461492853e9,3.7320352651241417e9,1.2662431420299969e9,4.3588634539193125e9,1.6905663121216996e9,4.18402774460237e9,7.474454159177963e9,6.493629825640393e9,6.940304675705322e8,8.104371886213221e9,3.559610898572382e9,4.938047175453458e9,4.783148494870413e9,9.502191513842476e9,1.9540066991053019e9,8.388233575796935e9,2.241928238726202e9,7.69153994349333e8,7.301545738187972e9,8.468369046812172e9,3.7534257442117157e9,7.566785867535963e8,8.2328888490725565e9,4.808397082119687e9,3.230849951061161e9,1.789485504135596e9,5.39876249407877e9,6.0794887982069e8,6.175657826579202e9,1.8272916349606626e9,5.802866229340657e9,4.8896930542865145e8,8.532702360693632e9,5.857003306800865e9,4.803087782277286e9,7.52229563593785e9,7.778180579947385e9,1.6227204759138525e8,6.581885935676269e9,6.45020872784322e9,8.084363486605579e9,9.66913681458169e9,6.707542246316777e8,2.199949937036101e9,6.332189117950618e9,8.916018376561571e9,1.5377111099365404e9,1.2227129722621167e9,9.680603250040676e9,1.5128320534748217e8,4.144483506888604e9,3.568912982803958e9,2.723462112106529e9,2.858893855696292e9,2.602958193536955e9,9.71068158695547e9,3.867932788413081e9,1.5991566458966122e9,1.3215079184141555e9,2.5796691219681234e9,9.49265523105238e9,2.0515532605126817e9,9.945797132694263e9,5.923180824622074e9,3.764943988412854e9,4.638379802190789e9,4.813568206455504e9,1.0087638510346475e9,8.0605923581162615e9,6.347825009197931e9,8.645571231477196e9,4.171813520370068e9,6.303075851417951e9,5.656380848351242e9,5.646227689664963e9,5.530579783908542e9,1.5050251622881894e9,2.925408849537e9,8.04407685944441e9,8.526933491255875e9,1.4973240035139558e8,6.491084914543327e9,7.362288249577712e9,5.929922604430177e9,6.546613844936418e9,9.022191991905552e9,3.7564521202464886e9,2.402967452696291e9,6.313465814487602e9,6.052781112628923e9,1.7143337568282535e9,9.637453068688316e9,4.571679483865323e9,1.0151498141288606e9,5.083026368805929e9,8.624018984783253e9,9.436189937131851e9,4.0234860574543695e9,6.52624997383664e8,5.480202145565378e9,2.961251579202939e9,1.2922480502481992e9,6.790421522970996e9,4.2176690690211883e9,7.934643083267249e9,9.4419792909023e9,7.86965939405844e9,9.062464535784733e9,8.75677735362922e8,7.836723723027677e9,4.965231666103427e9,9.8570127999252e9,9.965208216339115e9,9.935687745204134e9,1.8085099902188272e9,4.7124524437717705e9,5.056316302272153e9,6.761544787564455e8,7.430838865000163e9,4.766004833137974e9,3.9564903013002086e9,2.108573516130654e9,8.48304097007491e9,1.9394954822590072e9,5.098784978097122e9,1.300780778910199e9,5.824151555755156e9,5.01255358273073e9,6.14503178315801e9,3.9154871837016935e9,8.56048669255157e9,5.7950208388815775e9,6.686008079164066e9,8.703534599645351e9,4.8256900656060696e7,4.729191371927731e9,6.540770483911499e9,6.831030789754903e9,8.326300057902402e9,4.2764901396917667e9,4.477624154165044e9,7.472825539496342e8,9.431603413002363e9,9.745608895462503e9,2.49523366817341e9,8.2357019669670725e9,2.5229027169386153e9,4.110308609571721e9,9.610104189988995e9,5.053665776807108e9,1.5903554978304057e9,9.232232035202244e9,2.632912027730866e9,5.913321525206962e9,7.048322849079547e9,3.133357910397816e9,7.002685313588825e9,7.293439328058545e9,5.679546631078886e9,6.158722452849853e9,1.8728601659795398e8,2.772215152038439e9,3.40758359985611e9,4.333525053935573e9,5.978270491760558e9,3.624262182245972e9,3.7080801895554028e9,3.2444596807606306e9,7.791395813329264e9,8.033859820154635e9,4.565755252633026e9,3.3040161364797406e9,6.065901879895874e9,7.333909836167618e8,7.632261363044195e9,6.077759950618116e9,9.517447992415447e9,3.7030829682463727e9,7.531037281992801e9,3.626248161017228e9,4.198134628014281e9,9.396204152025076e9,9.417103756475416e9,9.70400703991086e9,1.8828026742597003e9,2.44870755206568e9,9.568204825345358e9,9.085554926395245e9,1.7395187662271605e9,6.110478639851733e9,2.4544292675652847e9,9.543973911231924e9,7.738142620112498e9,8.194823471709539e9,9.906795373512602e9,5.06877416321818e9,2.1861902548203783e9,4.794045703923933e9,2.8089635785601673e9,3.318668510224887e6,4.453736227679267e9,7.107492040268331e9,1.3818278429274921e9,3.5484973431317625e9,4.261593966888253e9,6.8251064616993685e9,3.49061373002442e9,3.8661364208275695e9,8.91104212523539e9,5.009963884366557e9,9.075255779496857e9,3.413485758669288e7,7.599372347491967e9,3.6807615551862326e9,9.650834563608814e9,6.849131377274183e9,7.849607178978132e9,4.1892110281892414e9,1.4678422532041323e8,7.709237189409723e8,8.392002625706706e9,6.963789000198807e9,5.581680537991663e9,9.644166304478336e9,7.502905320773554e9,5.616532922383981e9,1.575942605161651e9,8.212837577503961e9,7.852948061143231e9,4.856367790076961e9,2.523162478091966e9,2.2646715265940466e9,8.049388809584848e9,8.88374121237084e9,4.105257422660272e9,9.746463583924955e9,7.461253754357245e9,1.9854611673249533e9,8.180511108912113e9,9.676692338922166e8,7.344169797706578e9,9.55535809414103e9,9.41625245048338e9,8.564798744124236e9,3.716582476026564e8,4.553839002292231e9,7.025575157137698e8,5.6700987777458935e9,8.042484784451465e7,3.3586441936981535e9,2.361325376042478e9,1.9254541043547502e9,6.1040084175723505e9,5.5356611075670395e9,7.499805788522435e9,4.868197055142389e9,5.0717626802852e9,8.126669579227568e9,3.4596901340872145e9,7.238934010992405e9,1.088676712567369e9,6.735897526602069e9,1.3327252615058804e9,7.809577512829549e9,1.864422991493937e9,7.498269293848638e9,1.213228895967321e9,3.262606600814587e9,8.13849372926297e9,8.874107456685635e9,3.590388872036071e9,9.519451637501194e9,5.600669138035185e9,5.944369457939714e9,6.077318533117463e9,6.0662229743533306e7,4.418374227698196e9,4.712106325116605e9,3.3782268189493027e9,6.069498338246935e9,4.900376568692244e7,2.997924879570282e9,7.913543790032411e9,4.614370051576831e9,5.331209958660118e9,5.223036953746192e9,7.366685707338149e9,7.258351910532369e9,4.544050549533218e7,2.327406931492628e9,9.746028059153141e9,2.445896459842367e9,4.370467941969957e9,4.030684657664405e9,5.304381547399833e9,2.1092306724589639e9,6.111186413284017e9,5.828274122145055e9,2.2569017250903444e9,8.528976546980508e9,6.904964261303286e9,4.669571070829685e9,6.693370318948016e9,5.698561997913295e9,4.5847309860401e9,2.237439639681266e9,5.503395314249309e9,1.5590337252173903e9,2.6731431792563033e9,1.9319354517741594e9,4.1155587578518147e9,1.7689561351933002e9,3.1927840859456825e9,2.1063731316331801e9,5.951437458998505e9,3.6402847250785108e9,9.05401395430425e9,4.864727730464296e9,4.750818174132154e9,1.038817921034303e9,2.417005688827059e9,1.8566489734658575e9,9.062258153330912e9,1.5822364245684316e9,1.1242290632233999e9,4.324901367594811e9,4.2469724672905517e9,6.08968102452051e8,7.5648721670876665e9,8.175281570536619e9,1.174620264050431e9,4.422472112970016e9,3.234639200143089e9,8.241129208561299e9,6.790064916583398e9,6.603128036281971e9,2.272389981694428e9,1.4957621202256753e9,3.019766000941677e9,8.026820258562293e9,8.351405583291363e9,4.3285658483314115e8,3.686878971956166e9,7.032669255273963e9,7.7786708144344425e9,5.486256465252569e9,4.359306169914003e9,4.658667473064832e9,3.4683201910184226e9,5.527995343180723e9,9.103706018355358e9,4.980531506061015e9,8.521710499049688e9,1.1625458808756094e7,5.885688342630682e9,4.369576566212619e9,9.124826784190382e9,5.781757742343768e9,3.8200423019644303e9,2.07198705082422e8,2.531350735907373e9,1.0391190814675522e9,9.873458547021206e9,8.51112812620538e9,2.5418807599073777e9,5.223334078238255e9,8.7327448769179e9,9.800056056542404e9,1.5125959774014375e9,8.245561901334148e9,2.0874216934744306e9,3.7276422133768916e9,6.116872714363404e9,7.426833341020773e9,2.6976471606971188e9,6.759220237241773e9,1.188091646326588e9,2.732673934143768e9,7.124232058491434e9,6.99881809110977e9,9.127198900928825e9,2.716028123622691e9,1.9105261711454923e9,6.632234198156894e9,8.162518256095675e9,9.831228831677829e8,5.343608165743105e9,8.687279933269741e9,4.01793406252926e9,3.8162215660053043e9,8.020800580381247e9,2.396974961941933e9,7.55298611085465e9,9.108358309043642e9,2.0707236828509345e9,1.1004799555553669e8,6.144555361549597e8,3.5851272823380833e9,6.3907947249634e9,9.995589093148941e9,2.957926483500103e9,7.771896213664691e9,1.7884527067026258e8,1.844888023218474e9,1.8604703168036597e9,7.131594871068366e9,2.173130327349815e9,2.364505140757115e9,2.404461992671143e9,4.981386949205101e9,9.75160678050719e9,9.308162461715347e9,5.395070685096204e8,1.9962593828385844e9,2.549515518776736e9,8.504317825751761e9,3.8655049643204365e9,8.69674011351128e9,6.160853133683774e8,3.575328249037294e9,2.8714642353461394e9,5.890819020531723e8,6.276647187513272e9,4.030090202195683e9,6.907053991660126e9,1.0488908758555515e9,8.321102449243733e9,2.0928587896527972e9,9.168405993265438e8,3.000787524482964e9,6.932498370825054e9,2.724046208872005e9,5.308847744107042e9,9.62692872157163e9,4.607117220073802e9,9.474651782413385e9,3.388082430178784e9,5.966660154657802e9,5.240533381651378e9,7.838480566087732e9,6.036006539392387e9,5.001241810673885e9,2.904650729140598e9,6.96443199272595e8,5.0015633132397985e8,5.067539148240735e9,3.0496029945932255e9,4.777895604680273e9,8.595693591265996e8,9.23414167240128e9,6.678845168370252e9,8.16308187631131e9,7.925412455570527e9,8.196160788241348e9,8.085607942567902e9,1.660215778874825e9,4.848843359949229e8,5.87129763706716e9,7.55654937247196e9,1.6813507320646248e9,5.894758954230025e9,6.126929821240878e9,8.580481329548932e9,1.5829004335327702e9,9.123691189127779e9,5.850400640895909e9,7.55211214924125e9,8.062780031509366e9,8.349156014971253e9,3.3640593092347913e9,2.7975443031146507e9,2.4010370619290113e9,1.4547554320639799e9,8.169439058961118e9,2.455711048190016e9,5.87675147110357e9,8.907532023763287e8,5.955647169306315e9,3.9064198205784783e9,7.771837886408669e9,8.47399354049821e9,4.914788232058303e9,6.356326909648261e9,9.770155519270012e9,5.037353211817965e9,9.973003790932077e9,7.345068094382156e8,5.7345239266407e8,4.0020510495877247e9,8.770217538251719e9,3.264498979032393e9,2.1842193710759373e9,5.578531629357859e9,5.992574442019993e8,5.64217966774279e9,4.7391607590106945e9,4.3819115862158575e9,5.337651464973662e9,3.9931948677604446e9,8.354167233781119e9,1.0558021250665439e9,6.01349248055364e9,9.787813631799961e9,4.981178324293681e9,1.6863422721741717e9,5.639737296964868e9,6.682319383458868e7,8.062521368597836e9,8.260898736004582e9,1.6743621617773051e9,6.789262840321766e9,8.805951650624231e9,5.68155279943171e9,3.2785101597194853e9,5.912497717771297e9,1.0097446147024747e9,3.1629084656103144e9,4.377405509778071e9,5.238009069912136e9,3.2404756584701e9,7.131599892367807e9,1.2167548880679545e9,2.972503632215352e9,7.524912630398223e9,3.8734225837703176e9,3.318368435755519e9,2.0361029173282475e9,4.6569838194003935e9,2.92038167470678e9,5.619365722243615e9,7.484890503112877e9,6.166890311065567e9,3.412222882772018e9,1.6577654729773405e9,2.994521696681585e9,4.524610981653777e9,2.8249190727097816e9,7.483087408828968e9,2.1085673853039744e9,9.817192929230593e9,6.212762141795952e9,1.7541039602847365e8,6.368645192929103e9,6.498058827333883e9,1.5887900965038115e7,7.773836551373365e9,1.0663626486948009e9,7.450163644546567e9,1.4567152771838698e9,9.945009756681614e9,5.023485918212023e8,6.50412114026336e9,7.909064886028725e9,4.858695830340093e9,7.104081100194046e9,4.6401176402413435e9,8.170705157816449e9,5.649134878106176e9,4.47336269854705e9,9.0004880953245e7,1.8880925182625773e9,9.236678661850006e9,6.524674359756476e9,8.268829589783156e8,8.298449463757095e9,1.134200469323401e9,2.536141581701489e9,6.616004934169648e9,1.9658580202676935e9,6.568177926658658e8,7.64326239245146e9,3.7028176353769393e9,3.4603376191499567e9,4.96980867795549e8,1.4528164636214714e9,6.621646105118591e9,5.150561982833856e9,2.936423143920501e9,5.916701824572123e9,3.264330782302417e9,1.4733320207182589e9,8.510468111836578e8,5.022454234214131e9,8.055717242106533e9,4.2441889368032694e9,1.9829835175930798e9,8.5827361581886e9,7.595467406125243e9,4.503623771106208e9,3.674395418678045e9,8.008866558912226e9,6.097924572850913e9,6.2623029782522335e9,3.367729159733943e9,3.089846159136611e8,1.205484055121746e9,9.897416376785334e9,1.3650521286629868e9,9.90091223283255e9,2.9013157152889357e9,8.858105413537937e9,3.203696866615042e9,3.6992900045205746e9,8.470635268546658e9,3.5531010188351364e9,5.199723113714413e9,5.313525903279637e9,9.416264027897833e9,7.634796451569836e8,9.65749448652186e9,4.484572747927483e9,4.741012786731602e9,6.387862926082892e9,8.753961694527355e9,8.863603319667587e9,7.324679021252194e9,2.551519498485374e9,3.2544636360093703e9,1.0318857949145433e9,9.162892450921878e8,2.8437821029773693e9,3.4585453982007885e9,7.700280923796122e9,3.092211755743578e9,2.048676904520751e9,8.337448756813641e9,6.017522945179802e9,5.802567551268978e9,5.988349010984498e9,3.919049791337832e9,6.4799667361069765e9,4.644403315716091e9,8.374927625840768e9,5.872347521133557e9,5.243229278087931e9,9.181398013560732e9,7.087610032969016e9,3.7904245295968876e9,7.117025413321203e9,1.8844165954890192e9,5.137735076096335e9,7.619985205231669e9,5.251579834788943e9,1.5590123885747454e9,7.84574886399814e9,9.554842278211935e9,4.798764838073496e9,8.083297787681947e9,8.480592780155587e9,5.305449422344858e9,5.3802525071804285e9,6.356956135313384e9,2.769731408756486e9,9.126729569314575e9,2.839094778331135e9,2.8546959131977177e9,8.075878432632756e9,9.016596599545536e9,9.881957781563387e9,1.5042024749281602e9,9.532177419622322e9,7.654727859854636e9,2.544242963411293e9,7.082110823302412e9,1.5106273901729195e9,2.2051500011020474e9,8.857738795279177e9,4.256031624193801e8,7.59447261667301e9,8.252566429021362e9,6.028398308185552e9,3.2645211653133833e8,2.064503571952495e9,2.4407678403228173e9,7.920726172192386e9,9.70246697169607e9,6.181167558193559e9,5.1610504885029955e9,8.164996557314831e9,9.374823338649055e9,7.454369149755424e8,7.310403207357276e9,6.990104278176564e9,3.802183658112476e9,9.951967236734196e9,1.5524233895265217e9,7.366241662410067e7,8.18895544713454e9,7.4676850498957205e9,1.6718617010679994e9,4.426213073131936e9,1.8747435905031219e9,2.6270022810354977e9,4.396676931720545e9,5.686675129110287e9,9.296801063689142e9,5.229003027904631e9,9.192872740242256e9,3.6641085099470836e8,4.8281768507254297e8,2.9942962581409025e9,7.306829276922975e9,9.929310647764877e9,7.717556018259331e8,6.814278543103874e9,8.045661597757809e9,3.7611229678331814e9,6.156281804388292e9,4.354307397532677e9,4.681739090128969e9,2.1477049946195526e9,4.977747399568483e9,2.3319706860713806e9,5.542243454078991e9,2.0004860675617242e9,5.148645927236262e9,1.4537663247765076e9,1.5604457534256954e9,3.8692174070481334e9,9.534946941174133e9,1.5029084008852456e9,7.378287802930325e9,2.54437923930431e9,3.1159585810981703e9,5.801225644501017e9,1.6369643293867476e9,2.7012778389663763e9,1.050739300302943e9,1.9894254349578855e9,6.846522121629582e9,9.117351444975489e9,3.0946508133990135e9,4.1094657301200166e9,7.614499953488777e9,9.103553950884869e9,2.357921424573974e9,7.582151453620852e9,4.364556429551375e9,5.879821417474665e9,6.198966909671391e9,3.7178316667838273e9,2.832238620786148e9,5.107896974021488e9,4.098732480900869e8,1.3726126295036888e9,3.717588643293841e9,1.2906675249679568e9,5.526801513326744e9,1.3798125975583975e9,3.385078070707147e9,9.990112348037989e9,9.238120182235325e9,3.5304728452391696e9,8.359146554036377e9,2.3511199517075443e9,5.182935808902248e9,7.009651683660154e9,7.6705838080711975e9,3.019020436566633e8,3.284217242903181e9,1.7603148107436528e9,6.204014450639024e9,3.6550900655676055e9,5.2746526912768376e8,8.69180066418067e9,1.9378624005584133e9,8.937100120653515e9,9.050656534208447e9,5.553701363066899e9,3.278588472340328e9,8.67786534826759e9,7.399885550680383e9,5.934095018401886e9,9.950405532699993e9,1.814531215152161e9,5.383145527790183e9,8.639221560724718e9,5.089746988619777e9,2.8092021358611283e9,5.51171699705554e9,6.091022254292501e9,8.543003442517936e9,4.583785162405939e9,4.327992457099459e9,1.257996123418902e9,2.4667326770139985e9,3.5806074383177376e9,2.007959471811519e9,9.372543300710312e9,3.2403579797192783e9,5.358579767999729e9,1.0211779552029233e8,4.9701595415740385e9,3.915357384869488e9,5.996047231038098e9,1.2028403170860612e9,5.884300182943897e9,4.7950635290327425e9,7.877209988116119e9,3.6925069706745763e9,5.576736718843748e9,9.38763147583081e9,1.7713345091023126e9,9.863623966696121e9,5.298718832026848e9,7.985894744697485e9,5.484895298270718e9,6.949056273887107e9,4.525327212447444e9,9.216453683639652e9,7.960833145368681e9,9.5895785886761e9,5.260392390352781e9,3.8527456536074524e9,8.798936211528172e9,3.395683972349359e9,5.666272834428705e9,2.8664457913397713e9,9.78080642943516e9,1.171396548459217e9,5.231658207733705e9,9.113261533182515e8,3.833325363939629e9,9.06861625639023e9,2.6089684560599556e9,8.649297910064571e9,8.567003609824615e9,1.353516471975069e8,4.5910546338127744e8,9.90801367360645e9,5.799343280844273e9,3.0166072433438563e9,8.503483196341311e9,4.543897052725222e9,6.943910772133298e9,9.104985681257444e9,3.956941356643837e9,2.951006237920686e9,2.305889907622045e9,9.672248387957394e9,6.13211030807169e9,3.719600168581487e9,5.184185298299226e7,5.799316861257468e9,3.796652100514423e9,6.425905604797537e9,3.8361009347191554e8,7.814412065692178e9,4.427717647365259e9,2.7008782143394217e9,4.612256396425497e9,9.11332088138782e9,8.454808680974629e9,7.98508871117391e9,5.126427171440048e9,6.69297564591795e9,5.37054860393044e9,3.32386499024425e9,1.3026758448091447e9,1.5515054742552447e9,4.838903618706645e9,6.711209585967672e9,4.552324986710057e9,3.004424047023457e8,7.512744102823187e9,6.399721949781536e9,8.016992175386846e9,3.987775685766255e9,6.446805309427384e9,9.324559551360231e9,8.5073489777405205e9,2.273727598908347e9,4.1637744181354275e9,7.150029498066281e9,2.786864316412525e9,8.927581470483864e9,2.5677030250722523e9,3.913994524630877e9,5.381296919262476e9,5.137133359725862e9,5.826946055873244e9,4.1615994972905135e8,9.226358125636892e9,1.9375415667669204e8,7.78756066988937e9,5.796925782521461e9,1.2605649763091898e9,5.834270208994752e9,8.89716226320226e9,8.822521492357504e9,5.033518412422059e9,2.9046032957719235e9,2.221047238763312e9,3.3093119725451427e9,3.2122225692799945e9,4.580202899542279e9,8.408093310681332e9,2.6800810026974874e9,7.501960936609301e9,1.4408164071887052e9,9.35739961711218e9,4.1769459678833356e9,6.359929647501797e9,1.6670827127897992e9,5.134431065790456e9,4.956645604043619e8,6.06597602036879e9,6.982076139203445e9,4.2345000144276547e9,3.8485939248109837e9,1.5735988611348617e9,5.509809699036875e9,1.602516868163334e9,1.7645838778072197e9,4.665618766469348e8,8.025624720014328e9,1.7384622818086693e9,1.8833441820955698e9,7.68735061822616e9,3.1136270705230727e9,4.2612626810444045e9,6.278574521439788e9,9.34789271060773e9,6.457605004442801e9,9.411222035573015e9,4.549704072047378e8,5.069026282561196e9,1.4329832330437808e9,5.819857839834509e9,8.02659220555329e9,9.642527789596842e9,7.2598135388892355e9,7.772686642958921e9,3.6006319358526306e9,8.496554515660688e9,2.8525515657691145e9,6.484173467920752e9,2.66806256844229e9,1.3203773150654118e9,5.345175099174671e9,4.161207336852967e9,4.114078709364954e8,2.2814344813389163e9,8.065479385119033e9,9.216441019778376e9,8.319203043249512e7,2.4427491268750024e9,1.0047665536821504e9,8.720111869849768e9,3.288861653836975e9,1.13306121867898e9,6.100264984244176e9,1.0281441349070275e9,9.396389820090141e9,1.2989992914260674e9,5.725898715009998e9,6.5475107832623625e9,6.278596546885063e9,3.100269697894151e9,1.732321251949953e9,4.577572749381442e8,7.605636969150441e9,6.086688134299282e9,5.775976340882087e9,7.430689861836663e9,1.3424627631325269e9,8.98563731264601e9,9.164637761233185e9,8.329232589283271e9,8.226925737271045e9,1.9527212836399233e9,6.884460848585637e9,5.157630512208742e9,5.08381585620372e9,2.252587178838097e9,7.788745926631502e9,6.713922329479285e9,9.892604670881126e9,4.924615286127003e9,2.719710924354696e9,3.664451311255368e8,3.053496993946558e8,8.325135728452368e9,4.0155210198664403e9,2.5612937660903687e9,1.2381733283219965e9,3.6146758814926684e8,5.309064971490469e9,8.958628356641596e9,6.707295351311626e9,6.009683797318277e8,2.1243113716123307e8,7.685260717783435e9,6.450090457543909e9,9.724553550219225e9,8.379944729063112e9,5.463247792185754e9,3.639236732616442e9,6.907928114726014e8,9.326487151985598e9,5.934563157220391e9,5.896549826142375e9,8.793295982424116e9,8.142344767234078e7,6.149699743625807e9,6.872996216895418e9,5.921181113052396e9,6.46882054404077e9,1.836923796526335e7,1.3160599448790789e9,1.0837720599412248e9,5.499086236988367e9,6.319465588077741e9,5.968805018965123e9,7.969914987356326e9,4.565402821733812e9,9.127448864854203e8,3.0008283678000956e9,9.410337139579028e8,5.628738740896951e9,7.549428597291576e9,4.1742311918163767e9,7.499425497434414e9,5.641083359882338e9,8.228156469161915e9,9.166258025707561e9,4.836469887409659e9,4.322549157316695e9,7.090213927155533e9,3.960058978333547e8,9.818416629226599e9,4.368348274216399e9,3.3030316035573215e9,6.921117014842817e9,5.818428518613891e9,4.219169626819347e9,5.00452005139066e9,2.177743810808397e9,4.520000017026399e9,3.636904033083409e9,7.761287918609672e8,5.800788948570973e9,9.1620285216805e9,3.3272459230934157e9,4.813080603597637e9,3.0850487053286037e9,2.723442710883551e9,4.572779474776267e9,6.230182019552366e8,1.1756702964627242e9,4.844628742709642e9,8.038038517875734e9,5.33936171633968e9,2.4787966744060154e9,4.491050711238607e9,2.5073227648298726e9,9.278987962653013e9,6.609192148511439e9,6.562378496782961e9,5.305407280288388e9,2.6105076669318795e9,4.088910342305319e8,4.2154567423844724e9,2.2913056509869823e9,7.995813533380775e9,8.887654898354414e9,6.790101166604919e9,9.263953575181605e8,6.284204374404499e9,2.1753103425761323e9,3.8387545718966967e8,5.041340882991927e9,9.23366655033898e9,8.152513416309841e9,2.546691289718673e9,5.121696946703736e9,6.374934060017057e9,6.03140918261591e8,2.9425268743160305e9,5.667154027766447e9,2.6304877200479903e9,8.550849565326747e9,8.2030729351797085e9,4.292801905261402e9,4.109828803397305e9,3.420369913529826e9,8.07836759775468e9,8.956284255129562e9,3.863976278086223e9,9.856116030902225e9,1.8308474770513837e9,7.322401810345931e9,3.401795044587691e9,2.0794904273464544e9,1.080900617566185e9,8.79737399377572e9,7.382609898681149e9,2.7236451113911045e8,5.442384471570091e9,6.539607217026244e9,1.7766218437619586e9,7.832300825653778e9,6.7154248126931505e9,9.635159152368189e9,4.198496170411936e8,6.016157444279202e9,5.62845445356979e9,2.381969602586467e9,9.839340461310045e9,4.423140569949417e9,3.3795213838464932e9,4.524112978681893e9,2.322871860492771e9,9.98764955179545e9,7.871755387827089e9,9.499760482693672e9,1.732652857981305e9,7.212051278070164e9,8.703415300479937e9,7.632857695361127e9,6.766526825174217e9,3.1673077799518533e9,8.255594599162245e9,9.552841910359901e9,7.725554999243456e9,4.487301316445509e9,8.051243810659643e9,6.814190779375573e8,2.1004030774504511e9,3.539935337317979e9,7.121455581781164e9,9.801513801916264e9,4.642062842999472e9,2.0041102579810944e9,1.899912134236903e8,3.858413313858634e9,2.954503459907509e8,3.5087601757856636e9,9.668688229732547e6,8.386772008673239e9,1.7374264582632937e9,3.9012735606215477e9,2.8511728294108963e9,9.986858854734299e9,5.928613890090036e9,3.61259345777429e9,7.898693665871085e9,7.956401354675266e9,5.897429620889635e9,4.398606123824182e9,8.910009597063187e9,1.1865282789513397e9,8.08207169968729e9,6.909245778087177e9,2.864447328391495e9,7.41745724523657e9,9.38980201834939e9,3.56460049984498e9,3.1554812523213115e9,7.590310085644143e9,5.920220357482694e9,9.757561596315361e9,4.1945117266676292e9,9.492427000015057e9,8.808227228822392e9,6.281610512813224e9,3.4413603599682486e8,9.029748514525135e9,4.247564103712241e9,8.283830931848387e9,2.62433029800192e9,1.8905833087763214e9,7.134964086706006e9,3.2785112529899564e9,9.015353168059763e9,3.4524872894851465e9,1.081192042574597e9,6.767865198736587e9,1.2236624180496435e9,3.005888618047721e9,4.154091536674809e9,8.310649501451256e9,7.405082949675757e8,6.951688352396173e9,9.876098676766573e9,4.0854043016351004e9,7.664485914461749e9,9.449220081443232e9,4.843321747367307e9,5.499402178371655e9,4.443354764390159e9,8.847730744277304e9,3.927914738766203e9,2.0384860526490512e9,1.6926268141026556e9,8.719282845132104e8,3.2419358970271826e9,8.1604057533418865e9,1.4686780211580164e9,6.341214301450337e8,2.947853193848494e9,2.4203190447483867e8,9.613703911214626e9,9.74426486997363e9,4.458561602663572e9,1.5418913096019826e9,4.2646170796662885e8,5.203846550333557e8,4.229052656821789e9,1.4090313628272543e9,7.547761850806759e9,1.2018842289028165e9,5.750553540516874e9,3.0544807605704784e9,1.0284012192689363e9,9.414578809182547e9,3.222309903216506e9,9.090773464698345e9,5.202670383624972e9,5.523505377614018e9,6.357981068454007e9,2.0859957277309315e9,8.760158381655752e9,9.60805835292301e9,5.566514869309994e9,9.169961520343937e9,2.3536163061086335e9,2.177839005029525e9,9.22104103834813e9,9.604851445712938e9,8.976767443780548e9,2.6259058072097864e9,4.361495681700124e9,3.5887200526278405e9,4.889573460865088e9,9.657621021142107e9,6.638854689370866e9,4.1045137805325236e9,8.101948257912653e9,2.309601329183586e9,9.56822475274304e9,2.7066697304980457e7,5.653587891158874e9,7.182085259770943e9,5.113661306740135e9,4.555684697724184e9,3.6666731203309245e9,5.554269948425848e9,5.156002228891658e9,8.739037252246451e8,9.43709883770895e9,1.790431128580755e9,8.347921280922786e9,8.285454482371721e9,1.2415846760967185e9,7.164191885625569e9,2.4526270145337024e9,2.2306323457174306e9,1.3743564676155994e9,5.952556085340706e9,9.27510342305627e9,7.467719097510357e9,4.23577238039201e9,7.452939424553626e9,7.83018982708622e8,3.9240090806389437e9,5.915265699522823e9,4.427891330783342e9,7.021493950794693e9,6.693439614906181e9,9.26814600084375e9,8.046866159459029e9,5.307279340097265e9,9.769748686592432e9,9.141355212964588e9,7.527224941385185e9,6.959718337933565e9,9.24941961929019e9,7.067249135860095e9,4.279188883751239e8,9.814582496472559e9,8.763172539772678e9,4.885422473623454e9,3.973710818334817e9,4.1199232832185626e9,1.2169949032210147e9,3.340261930153415e9,7.500869795679581e9,5.932686582055116e9,7.34298669286381e9,9.088694846131783e9,1.143716286659735e8,9.095159990480164e9,1.0122979451084157e9,7.673090382444078e9,8.234198772094537e9,7.504759232163928e9,8.736466849159852e7,8.062720430125624e9,1.9666932782994273e9,5.675008905877789e9,2.0240116795186257e9,1.6919109767817576e9,4.295980163246512e9,5.008542550639656e9,7.155084367021099e9,8.354807326574343e9,4.747533273550462e9,8.199408954642402e9,3.7529703877049394e9,4.932499894075432e9,1.7515485923220253e9,1.7483262700763845e9,3.486673003372631e9,3.4411882075641007e9,2.569808171969985e9,6.505307114143267e8,6.047080343049712e9,9.969861096924032e9,6.530763205719863e9,4.6964611736667883e8,4.828449637028888e9,6.011571983918685e8,1.1814859644775522e9,7.493513641092636e9,3.7988144981358805e9,6.034975207840218e9,1.654290138062924e9,3.616744635908754e9,5.9662795973328e9,2.9087647491302514e9,2.4764122316748595e9,9.676233189059374e9,5.370810602406909e9,5.33843996601331e9,6.38130438556725e9,1.0611175385866956e9,3.1705620257511225e9,2.618352197560747e8,4.6303481486411613e8,3.6132681119438224e9,3.004080495085684e9,1.3782774418965948e9,6.726760815918087e8,1.0284949332917237e8,4.319179080950048e9,5.078598321151879e9,3.779245242826633e9,3.521615318980692e9,3.03232476436472e9,2.343204624392392e8,7.062806193809655e9,6.394674235354536e9,8.813514997741716e9,8.296302688173569e9,2.8576331394765806e9,3.802205943857081e9,7.415767674361637e9,8.40558974320905e9,5.16416177043233e6,6.844083309322948e9,3.291540307524832e8,9.569411649187304e9,2.262526259985183e9,1.6643432954906545e9,6.61205813963425e9,1.2236380380900857e9,5.127537243144466e9,4.2878358279070725e9,4.97399226967017e9,5.728155608192976e9,8.299524821000044e9,9.15104907635188e8,5.216053598739569e9,9.07563307945951e9,3.650315665314072e9,8.847407678817266e9,4.655723290337323e9,3.8040251554838057e9,1.2268301379924006e9,8.032990834190367e9,9.071224945943214e9,9.18822463858151e9,6.468460850848408e9,7.263621506148579e9,2.3190607208845913e8,7.645711349516525e9,8.376076374337417e9,9.626083528082876e9,8.79043279326289e9,6.937369185081113e9,6.402094012724216e9,8.42009584447397e9,2.491915686015949e9,8.965580771259567e9,7.739622753716654e9,3.955695237795922e9,6.928413149686355e9,3.64804297283458e9,2.909691604532099e9,6.30044634665321e9,3.077073730747828e9,6.79580829922315e9,7.966498545874033e9,1.1734931027475092e9,5.676532372195484e9,7.2520281356015005e9,5.992112451433902e9,2.8067284293179107e9,6.799115025282551e9,5.179787697315888e9,8.884140690930353e9,8.026888813120012e9,1.4679406564190567e9,2.299657685400929e9,4.303419227016231e9,7.176305273451952e9,7.429480503863673e9,2.368810601390582e9,2.685489384499484e9,9.388521796269264e9,5.053875207634157e9,3.0927361428961077e9,7.936101146002953e9,4.94272651558746e9,4.367141988737599e8,7.835103363425921e9,6.081110912562404e8,6.806615654734823e9,8.534350933460808e9,9.37903670214108e9,7.792400531386767e9,2.8949822787730174e9,7.213089968110141e9,2.6310653203872004e9,4.409969190916835e9,7.040634737694914e9,7.969615457801388e9,5.84638777634642e9,5.777627270836846e9,7.014725043167461e9,9.920240490706266e9,2.1315613611878238e9,1.4255932992222452e9,4.801008775980221e9,3.4474705841679096e9,7.428271147689706e9,8.053176415712616e9,8.2539995202414055e9,6.133477292753889e9,2.2257743727082925e9,6.03629809275905e9,4.88282769631611e9,7.570602981261525e9,5.732136488840283e9,8.838599146909634e9,1.1395314811076095e9,1.2925345756433294e9,8.556399562058815e9,9.401382840170825e8,8.62045161257084e9,3.9962920294098225e9,4.897625003641577e9,5.408518289479204e9,5.249234535988578e7,1.1869206491534746e9,6.375139464377563e9,1.741802744555726e9,4.517163603783508e9,5.256522940778251e9,6.874306759820356e9,3.544392031160702e9,1.4736779213456697e9,5.695699660707965e9,9.103833381888739e9,9.000271156390062e9,7.893680792689606e8,3.3116821532208853e9,6.77136415094447e9,1.5515113620993915e9,9.032620307406115e9,3.6230727507381144e9,3.4265386281270847e9,3.399717627941471e9,3.674464098959147e9,2.147098761802594e9,5.648017753377833e9,5.415033601782276e9,1.2926462325683742e9,2.0885613537668512e9,5.245430358025717e9,7.254264917041605e9,1.9028637209272714e9,9.318886809377129e9,8.066087726007308e9,4.7079073160793085e9,8.489722720797057e9,7.995183748997138e9,1.7208156849542966e9,6.558778834515541e9,1.850279262869422e9,2.572865918944132e9,9.998554079838665e9,4.590896277375829e9,2.2697890487551e9,7.651991351173538e9,2.884921194878621e9,9.339074438459017e9,6.409382139562692e9,2.95546546437646e9,2.1381430998953843e9,5.59781590499052e9,7.743750345782762e9,4.647983183225112e9,4.0350798198789597e9,7.411435390648889e9,5.132789707604317e9,1.9221707567191648e9,9.881450790480406e9,7.982887202473049e9,4.233989314898282e9,7.735401337740562e9,2.8469356166198487e9,5.399074374135983e9,5.1109692932385767e8,4.3475521053171206e8,1.2709121315102901e9,2.724269519627495e9,7.232623282422951e9,7.897849311803819e9,7.573280708622498e9,1.4365277520071006e9,7.946408651934185e9,7.462783459018608e9,1.1053753106965747e9,3.645576781092833e9,5.297058172053184e9,2.655429620103209e9,2.2553717087864842e9,2.5474084898641715e9,2.0619965400097096e9,3.062341921401923e9,6.922814495141269e9,1.3373410951908326e9,1.788363226586397e9,8.161049177358028e9,2.7355310871895355e8,1.1213899101212032e9,2.502094304899345e9,2.876657325351092e9,8.76374100765197e9,8.701951367116956e8,2.962203694091482e9,6.575013748252918e9,9.641160574467237e9,8.83793034384637e9,3.888076469351204e9,4.339474759535094e9,4.902634720608413e9,5.676477303091748e9,3.75336863899703e9,7.202840985263197e9,2.581003051330535e9,5.180290218519995e9,8.432849386096674e7,1.7146581760682044e9,5.495068811130184e9,6.444534235865073e8,8.328598028624566e9,2.394667609739095e9,8.110013725282743e9,7.150942693672304e9,9.091599611792082e9,1.0070609886118387e9,6.71383522731332e9,6.111695739496916e9,2.3713184917572637e9,3.235622535898499e9,8.644174809133541e9,2.853769614829176e9,1.5516516486123688e9,3.0350041522879367e9,6.509800721836757e9,9.507839438915506e9,1.1198930371789117e9,8.936635440565344e9,7.828671864336868e9,9.135754429839811e9,7.180663469190083e9,2.2943219493737897e8,9.44779365728966e9,3.116856846267656e9,3.31060324918936e9,9.60834705015988e9,9.415205421864454e9,3.042381196289886e9,5.825352389906273e9,5.1530709013187015e8,5.836437272894911e9,4.467468131191741e9,4.7667165606901455e9,6.003609716272832e9,8.92005934340383e8,1.0160538979305111e9,7.090674171410156e9,7.151185885709225e9,9.075283264522896e9,3.866332774259473e8,6.51486934385274e9,3.3448138669842486e9,7.712507674909235e9,4.007284970655285e9,4.464501827524849e9,7.237777014989821e9,8.877523925946392e9,3.046514659236329e9,5.759158431461867e9,7.08355884029028e9,9.67235992060571e9,3.925521047679297e9,4.5023668314165125e9,8.77699411125847e9,8.923956289684565e8,8.445647154387458e9,2.0834913544071476e9,1.2791691229592893e9,6.532046073045403e9,7.808003513744514e9,3.8963220208539386e9,2.0594686310723798e9,2.9662560040625486e9,1.5866449247900815e9,4.747394200205051e9,9.847268069864021e9,6.717383091926814e9,7.871829931232873e9,9.336832361500675e9,9.175659312238535e9,1.4163114478901029e9,4.584934784224838e9,6.65719155613903e9,7.173678020443514e9,3.9179912429534e9,2.639770655938112e9,3.6224736406837845e9,5.528919148050627e8,2.1959124858220925e9,1.8230181950916991e9,2.3328112495052177e8,3.7986032642791147e9,2.5773731192679615e9,5.632727750816679e8,8.509323191479384e9,6.178047085469126e9,9.78368800956983e9,2.199891717510568e9,1.621630190663751e9,4.778882344735748e9,5.242707503788722e9,9.5296726849037e8,9.992256897261208e9,7.658457571976867e9,3.5119124840711803e9,7.645685517706192e8,1.5142752659726243e9,8.103630585601888e9,4.3078974112209425e9,2.2349797458250775e9,3.4423118906929284e8,6.6493545466944685e9,9.575321374049906e9,6.366452633263992e9,8.450367336454928e9,6.069369598804402e9,4.486770861282518e9,1.7966017767526665e9,5.420467326910951e9,6.685839745272523e9,6.930849266647906e9,7.033715835484294e9,5.612018833796053e9,4.236474929477584e9,8.779356771313887e9,1.7651688191150817e8,9.33205541605663e9,2.581978114571991e9,4.941457307851721e9,3.560337044229167e8,3.0033100160540347e9,2.8273578562675395e9,2.0705354243197482e9,7.541257811592424e9,2.2409494295428777e9,3.979888879439625e9,2.9606746157498586e8,3.439014234951423e9,3.727412860193424e9,6.86591084513658e9,8.924552491306433e9,5.621232943039743e9,3.435458667532265e9,5.913947858391052e9,8.345053913106134e9],"y":[57.70145560044734,77.52726254475526,27.444529591542,99.45515700760487,73.24346776707739,76.96679733856506,39.01557325539321,36.83947078727917,42.68599538712351,3.3216147892949577,10.744899193726532,72.03935968221109,57.154675591545804,74.81958778796732,90.74794442588518,96.08728305638984,64.3104344146566,25.53960691370435,40.8639980808244,43.30078998600408,89.6410554230262,59.350817374077195,98.02458993562402,46.736803737588275,40.42504637410832,70.69403802061044,73.69514625170406,18.378093347166104,72.31724638909182,40.005147170851984,13.801621469847646,52.517580149233346,54.639157636156725,43.59812880475354,77.81979367278666,15.511712178550363,43.313203750561854,43.89427086916163,11.948388961065193,67.3226815001891,56.893751401552585,69.1918154733366,70.26950853743749,63.255677921689966,30.054249256391174,69.7743242844071,38.768608404405015,25.01177233053653,18.34052555661996,96.98179932432592,68.46126042503738,48.18582870359073,52.24389688636767,61.20310499345947,12.443392264751019,62.97183521337093,98.24234045955956,6.555488374851826,67.97427285451954,76.70413494182506,54.316968626157966,18.88667770739083,53.12629056361607,98.9831278369254,77.67844245262415,91.48400182798106,86.60975365291175,4.091518155009489,34.87113647863449,54.28888174471227,14.509954107331502,87.61582724171791,38.15326774620617,69.24289822432699,91.85596142505274,91.07210225030613,40.46786037413143,25.711525217380014,46.88352984726908,99.4134453580411,3.972088893548309,45.095875159244834,34.43568418563772,55.355733527366304,63.244204740967334,15.079343567716341,79.99493644690212,2.1254487013412815,79.8490027539096,95.32553630721893,23.73466899581781,59.01396829854705,16.97521281932105,31.696920363377966,75.84201543406618,79.47097188572012,23.811536461463334,30.595291926578728,38.032607305831135,14.082878289255918,32.37202678590991,84.84399488751544,13.902821804952104,67.75899783173087,85.20627773835187,17.73359940939061,56.93097855255276,94.43934579544212,87.02819074648515,18.898960406205045,3.105945175685443,57.94842289901909,52.96721387164983,16.277522798334264,99.38093625721963,94.60607896940827,93.97867801689046,59.25860995071549,57.78225492816178,67.04248302347054,43.2969930169544,24.651875017065763,32.285285499217586,44.06395147904032,9.494324488146589,28.847369805469793,95.43914557969799,13.308350487021336,18.21823408531744,61.713271749319674,80.32332527205321,37.2379244398364,24.588940763136613,51.61663777054572,78.22421823723774,42.282145797973804,99.54072039848114,59.92942477820227,15.898449524459979,8.454870552715965,23.788456764752,36.81639897841866,33.06714220980991,56.855170147421376,69.43890285097788,38.88615223125002,21.130483342343297,53.61422319596999,62.44652454234074,69.28802382613118,59.36860458535288,45.00705516427903,46.0082362818897,27.49348409828415,79.46629448873482,53.002961963772385,12.850545748533504,28.52860659650104,21.491228671411765,69.36474729684431,3.028219254251807,40.3036831291036,72.01609868429384,18.183717337343353,9.61749647588228,43.24246309471855,15.12985580329589,15.025889582505215,92.87978161349754,3.361626086312508,15.008636672434495,7.961315173083527,28.183274354682997,7.867826247551157,56.98560870726483,58.38311046143492,31.182641672620683,56.43949852996175,53.82988475701973,72.64983184118557,90.47274154809176,0.8316099249935816,8.9261435081594,27.33296688520408,18.737577057471754,11.480235532035564,19.41666362621025,61.667043583337154,93.58212124758899,1.823910815405816,24.220264465453557,63.92407405173097,2.406889010534996,47.63479572419872,6.621448528441476,16.547999378768196,30.284249628388782,96.29294558574259,69.37422144633331,57.13427704969624,42.40151242935708,37.618501222540516,36.93656815396991,7.31735686449132,86.26269569171022,63.88196900155656,44.8194213363967,94.4500727893684,99.52280473201638,63.01396772909138,94.41210124471014,42.45243648882665,87.848980967704,41.88800801445706,22.271508317887832,28.040962111886692,18.2629872021826,38.17562360263509,8.806183573608116,81.27588682734824,76.2201335620057,51.982515384246206,53.9795384914142,9.646494119492877,80.84995303818489,97.11971726044793,92.03012457329552,61.326398417930974,11.542542859798822,55.08788249904517,81.3586449998256,9.582839401530618,86.56990635525472,14.4210280357429,80.94185778823582,38.88631940585289,24.769832366325563,4.076828246476882,37.14147762166138,21.80222565817904,51.90680411452273,99.93224905338201,35.691400223717686,79.31274129731685,56.498399842656454,49.812337437101064,56.16666494609236,17.832806580985782,67.68669870816585,27.075398423359086,95.9206014005781,34.33094090704807,46.55043008682927,84.32644557615319,21.56889775291563,11.049780891625726,0.8468053174980672,99.95925360405919,75.7877517742232,1.0467284884560724,78.95103451347171,16.995331989785235,90.03202686173594,2.6375342708534366,66.99139602079575,49.76129932115949,62.73476995509111,95.59280010864295,48.99165099590017,41.51302387925774,62.16560895699536,80.82133558990984,26.12827056397289,62.50563148268674,79.88678516882813,35.0023181465196,17.375501961747563,6.4514749553585276,45.42732117010054,50.36087231020666,88.98852831541774,16.468838887641034,2.9878087968195244,86.43775629997315,41.28974630067026,42.47795440905799,56.259205434745155,52.70799888020075,88.45312712092476,81.32644325859225,9.957128357541833,48.852243490692715,26.21450544016334,30.300775219346733,54.88026985965458,64.81681366346835,49.109563919922174,85.57583744494072,96.46838197005178,5.6573624862028,97.53457092425919,52.05921377782542,52.49728056920924,3.882892861441467,41.79578739334787,25.693658173948165,37.093668099439235,56.77987850807548,95.78795645130177,79.91052251246603,46.256542978999605,89.47336441210007,97.7180217881263,35.90964960388008,20.69232565133815,57.45120481958309,54.77060895256686,68.96872030973918,67.40564446443419,77.76370239401089,65.40210108384728,20.587788764653236,5.9099084912408895,31.890346748726163,17.229858796200215,57.91740931870285,81.23969744191504,22.522084207702175,71.53865061665373,56.96976137540525,56.34806843032683,2.2994366533982014,52.28538374739662,31.178193576727264,19.06652384082086,57.406130073966985,57.32875009230705,61.409985928841174,47.44125918630685,1.0947093354162662,16.545593672946325,21.78980944294895,35.83412038996173,29.686887907023774,40.068506432789086,1.1029154796311502,3.5862003434171674,97.60846365378305,81.44870584560837,44.555878198885935,60.75907981850596,73.25784319785791,24.02131371391969,23.52750212998117,75.89163426516356,13.766900281253935,52.06190294572009,17.937425602630665,26.426424377540457,50.73113235766483,80.47604504116647,22.823248330232403,23.412124733511142,92.34447743153615,39.63470935898491,44.515331279413104,47.34444460784217,55.72689331107614,4.670514987926433,33.66581193822134,0.6257671076364879,90.74935807905395,26.822521460893178,81.01100437526819,6.712554794313763,19.622913667185106,29.12219401048759,6.180589676128179,94.93212133377699,13.30984067183907,8.95600300813757,71.96223594796139,69.96141291467399,70.98934776889287,34.9737852442913,3.748931219485707,0.34797418169201233,78.61471315879665,5.623864637705001,54.290161715103466,22.82976792721478,58.21546542501112,84.77935610593066,7.2227685074090715,2.123942843738924,57.86515438522659,10.367210573113327,18.161829354891978,44.986112391873476,29.55044057837085,41.38522830357243,32.095842768054396,59.6066394875411,49.38243384323939,44.02017774190363,75.95111307299311,2.2686488472058564,88.42359813097981,63.651227284991975,10.527416730456151,96.92858164874927,43.79929576234291,23.54717829065599,93.300009157946,87.56029760632357,0.16956538580903402,40.28490150143932,40.50648391904513,54.561888848780995,74.92870158773563,16.873952558931272,1.7694043311147434,1.906811375515527,20.241682880213375,39.72081499763228,13.892672632940394,8.340408447028935,14.658499829554227,86.34642450043745,46.185349570176214,55.044035752881385,32.78081877874649,81.46058948028072,94.57217097162912,98.00330796297999,36.05598914344418,2.15689243617595,95.37262618273178,0.17723749351464813,70.81651164497111,95.3793340662843,18.83879870202304,69.41472948945587,43.45545435362803,58.84536050037673,66.61602583151097,84.61169196040944,9.133606050865072,94.35113963793323,80.80605231711705,34.58479879889682,54.32718525631797,45.715019756906116,81.99449159113506,84.1240950336712,77.89362135543605,34.24624796089647,57.10574548084012,95.47556841334871,82.58108223097706,60.76641366505115,60.077125388969385,61.16477376991243,52.578661835839625,37.38520736979824,58.25320055556536,46.68600761800869,72.36277355228879,30.89428620269813,55.94807156950503,44.428810030794466,42.1562519198159,15.568698676962123,29.514926850654042,18.91004158797287,15.856740820646632,97.0080198487992,52.72397537073884,97.90417768480295,15.218034891537934,63.140877615546145,40.87991613648227,95.90356465357985,47.25796274074048,68.16303794498494,57.553409498545804,88.1219251961019,4.9794718026783364,61.47055494306836,35.40718382375129,42.00752030442894,96.96078590845651,79.70324954941084,41.93432735689894,65.17767689223135,2.226438460780522,96.17665110414488,91.0354422741109,73.107265686154,95.98622766598366,7.255333123530416,71.62074288190345,94.4643514857191,43.77891101108089,59.67358841669539,27.968165429533233,87.27556605101861,83.32681450783456,99.84601265641388,24.160804980389592,93.63537089237384,85.11865716494962,58.0786657560961,93.81513868184108,69.52208373362757,96.55616987800173,1.940210794291275,42.190123985601325,8.459719196599602,34.754938668460376,99.69593185343413,15.42796656084744,16.94564546373978,94.25734680536235,86.55524447393954,15.471518614848245,91.54424051109181,97.2142061737714,35.58486349731578,74.56352150251806,48.25981473170313,11.104085245633755,0.7434042340937475,16.272004553786168,8.020878932595664,14.608121938438812,7.0737585546229775,40.10515799606227,96.47582480960601,68.90148964817843,85.20189749213824,47.35090163219758,31.629144730910998,4.509880341614025,79.01784506207005,61.66987556113999,10.630153997114455,18.9250134257567,78.62595818151887,41.884920798934225,29.52791177747921,57.44403326046283,50.20677744079616,93.19935259160111,32.1998011250443,16.799156948671968,30.453040286588852,97.4140592340528,3.58304123924047,8.15289285147448,40.68019241054455,48.69220358479185,79.19888157185636,59.78727342288415,16.311926660320854,77.28693877285156,49.03760761224567,51.68319088172062,33.003513427023975,41.19677863870571,11.515770250845092,63.21845326251292,3.3202202713106366,31.979231009339504,27.095460940690753,62.68803875961174,73.20639143166201,3.995926241247183,29.23827579427879,60.48772984144222,69.60904625584344,93.47219806870402,0.15489348544639459,61.643167416278146,57.11131967801097,94.91604855205526,22.618540154890532,48.56941661364892,38.432759174262586,81.90332793020667,96.44207637399205,77.57299827519061,26.918692351939356,17.451308387666785,37.548517907553034,64.45381895079142,63.36315729147629,57.20885592367001,1.7333428736711065,93.87925978574091,1.5841265253983883,79.41751009768066,84.94202944336608,61.67132676300871,11.31339582612071,59.12454891121096,85.79138310968654,20.238700466885142,39.55114712072909,36.84686596744326,24.892373169571556,5.9080162852856555,49.76535033180631,90.22834177493431,16.847163258529342,22.039549457073527,12.466803326549513,90.80593089576186,29.31682476329682,77.70599132095151,27.430323260068867,26.748644321416915,17.27661641028011,16.90450674092432,22.000959856246084,39.26803668624432,62.691219942692136,28.318850271640073,73.50903904028375,61.89867673419802,94.80977859482167,23.039324161265217,8.056369162692434,11.712926006498625,43.78501226195402,72.48522028393668,25.55373335822071,23.15561043645955,62.55775527630928,13.383011343542982,19.621702252666363,41.96581660978732,49.28842803039999,72.91230055611108,16.343577553235733,41.1204038591819,28.06526861701162,72.83966632546539,12.373841983735101,55.46819718390361,31.77144181386219,64.815682224973,50.707621547140505,39.48451692237821,64.33966653865848,42.415233869351276,70.65889949401145,0.9666438936077659,64.03146520470816,52.451426758555996,20.946878524635803,51.65847251166847,21.000239334290793,31.199080459902373,19.422709590146493,20.7158829653343,36.138414650755855,76.43649860994215,1.695856625060077,64.71119024109781,47.12240964912818,5.984327356940167,5.65163434524496,1.3257274385694573,75.6313501941353,37.85301176645189,61.17005997821173,93.1131086587814,74.30120860340648,80.79851926891789,98.26795664714236,61.091187407583114,33.49990730163817,56.29415973971338,25.261261932432554,29.033281186967663,19.745322652803367,68.00923143018105,16.107383558327005,72.46427298899665,48.88857438914484,84.22430020046548,36.89891011708636,51.47892371518411,95.49015164618251,10.064399949720338,64.98264031870835,69.60375565497372,6.446789385966745,66.37077469356939,29.841638230829826,87.22610785791387,80.52169772776101,1.1734256378456043,77.94453283960266,46.36161796869913,63.009073500420065,72.15551301247972,47.69187571520486,49.476641320626456,35.155018952068836,47.93974521227952,97.0704773018054,27.60101592868861,98.99209035397247,44.793854312082395,56.82319524994476,32.15875412938688,88.93254125666347,2.717810866252668,54.80507754016899,2.49077435490338,21.479388538475753,47.989336871552766,40.59864907588224,9.431458381332403,42.075251225511444,44.49955463658347,37.57031393342752,60.42984016307621,1.2290857483861495,61.99668187409848,64.3328494454238,25.146222911606454,45.00757984866037,86.90849334226799,5.69867317605155,20.363278223803295,15.017890244102116,24.757114762608488,87.50908812218549,79.09378484807729,62.72227729334803,20.295165672917303,15.910824620984798,75.9663744233916,39.56638103357886,93.82513091750268,53.51679825907911,1.779341183879568,45.775162843041926,55.35436737194595,82.60898308925904,42.80959077378487,20.964502618338877,51.09863093323603,28.328363173530647,39.75145901053342,30.755842994711248,63.38620207985534,51.163240241217004,88.72382122870765,31.183512688874572,71.78548486491356,90.55046072173806,63.89298676752829,21.17256905396463,66.51529803408404,71.75074293132994,65.39518653469942,51.27517804647317,73.52792468220072,43.35404278716902,23.174506689918807,8.757062639437486,0.9887908215329588,68.08148609247364,27.52785213353308,65.59109974249932,92.50971617012257,96.96693643261113,38.71074176747628,23.683225547518326,7.659686546324663,94.88467670608122,71.23204398896152,26.28836396808458,37.30400658641656,26.547134175822716,68.87873153913664,91.22381420976056,54.144566701879285,52.98050645128243,14.148199001949369,18.007760893213675,25.556127327876908,57.00138742427654,46.754361726274226,86.34855765677116,98.50874934302102,19.64543682501817,99.33581653336519,61.57536287273102,15.909268296634128,76.78361482880982,42.653651560075126,2.6411991434291737,1.133763763759943,1.8762858624175371,20.618616204216643,80.89602066049271,93.69900794107812,60.28189796974538,61.92128009474167,69.21198412796615,28.201146792939692,7.214571795117464,1.8271275629756611,46.53802114235648,16.68019150252992,25.595230955709336,63.48959779004405,90.62416529086107,66.55179770697461,95.67389082429804,39.83512238586896,60.56208871449653,24.419439546363474,12.377486962212124,15.826666842688198,70.58442682538875,19.050400204120123,86.11356413818419,63.87103388935823,75.61404469801654,14.493323640582268,87.83721527789173,89.55863379352284,78.18214390979904,63.5683142063527,57.549781654922846,75.54950604326605,43.95802764289648,56.067622499851446,47.306879587551784,5.6017823156775615,50.29523264206179,2.2598688852648374,83.9200498398708,81.90220721930129,53.96267379929567,82.5496619176011,25.88351911730301,6.967490662004138,87.88756835588451,91.39456356960663,10.07979372020399,6.788563648167322,41.12639016141726,62.650289208953616,27.80006158590076,54.83689666608856,48.87747132465003,73.92719821850436,59.68998341304592,74.06016591021306,69.28753329970054,45.272611381169995,95.60932123131441,61.80671788693457,27.248273078711026,43.1105483166902,81.06943333622169,33.622573208832186,85.62757360148181,57.205329212065,61.81342579831104,45.14138461391474,49.43110279028377,14.685460506292536,69.78616281767364,93.36096264797646,58.255251075428546,62.8307749657064,83.9029182949782,61.9256768295126,22.027389612295966,63.65211969422596,73.05150491512283,52.41599643492282,4.163096980029657,36.89967399745898,4.285590410701734,77.13092358349513,41.239263166416315,78.04053506779917,19.768327297705547,14.928233053710994,67.46738593947978,73.64777349843074,5.6803796629502195,29.02910146661135,73.1753366153478,31.685177162050536,59.88656895198553,3.5053184937456017,68.77039095779543,5.9142149601571825,8.019038435513126,18.190617794774965,88.02614275535609,54.7472456683846,94.8322856605691,55.55302032002655,7.068464544025021,56.443245598977185,84.4925211279398,58.27871754660949,53.72582693925925,95.12831190901561,62.39010254075726,77.5547583277754,35.157506524354,11.297548754829744,92.84701829052405,31.431769054191072,70.77759129100319,8.841378231899133,89.77536031697791,13.672587960205295,61.29314916243261,40.28493776196328,12.35855308006789,15.151608631566427,55.54040125981112,8.017900183141203,33.42206789240995,86.82922900109838,41.90801890002274,13.34628757668459,95.50734188477801,68.47326228185442,13.028709545490235,59.47582903279365,56.870070308833554,68.77580258782953,28.670149836169323,87.73935066730876,97.12501229616547,24.889901720937768,61.65541103241354,26.56103746942493,70.51039012563339,31.986706877146887,36.051519201339644,17.80634118340332,52.24260537996813,52.66583743334468,47.14662314636586,96.4494858522337,5.394902406696356,35.24559993254337,9.616223372811616,52.860822691598464,47.37815381554646,15.473368050178504,11.84506968457536,95.39573380822372,3.1533749215916007,99.20841679786585,28.244266440091714,66.0133761809949,83.51499181461615,97.18094503235301,42.16875333952474,91.95157605255726,54.23170018676618,9.804867755051028,36.91352002378693,78.07036333341993,76.59223246539828,92.07729285145359,18.81874954365854,91.94712991858901,79.12246818371673,82.90017510743051,16.044432753422477,59.86288489630694,3.201363685996206,37.931473194150286,75.89787464539717,64.63373146998352,74.15942508753854,54.608914717357685,30.73224084225875,25.25663935588596,22.752906925501083,45.727349658390104,72.50316213046499,91.63956365425302,36.48806245307811,52.67025569519224,34.18166025976148,87.08471307858636,15.659497536961997,85.9224219594586,13.199398893624004,55.18404576176378,95.62985391004985,1.5707598623476482,4.1444911145673835,94.14092299491092,34.15621623532839,66.18612926712962,70.6704146622499,63.93693105576859,66.08167146518782,43.07930405639938,80.42508154079292,50.243331281588674,51.57901445635994,9.11836074570591,2.5364042673527654,54.3142499234619,48.360738407700374,89.18359809639371,17.614752580718495,90.02927933811682,59.100855749193,70.53366220644492,51.15883798705105,19.05126825227844,1.1337131677634837,73.83457510298086,87.78527050460582,89.71934712724581,14.489862612413262,50.13750946721267,56.00862780534456,0.49631639601425137,72.8853959845383,22.21027026816319,46.96159823745189,98.08866327104643,85.5352411584736,5.640606762359557,93.05690884795996,25.41810644163126,29.286850836018765,94.05433340340062,84.89508227442514,99.91036571647189,7.4095934785348145,6.241548462433933,95.30658977244101,79.45613253901524,60.8047751959948,78.9063917617742,33.41159311963785,59.364554635296116,6.859909571942124,81.50616749991656,40.81185662642065,88.7648251298098,99.07063045228314,64.74885281611331,5.052517724609096,16.580762859416474,84.63840978305885,75.2527456156689,0.49560281767795367,50.587934863896855,34.58323554716296,22.51974669231458,34.17792998304917,67.40727077227108,11.766044735610171,44.24564126395695,94.12776531132816,92.38521164210665,31.138667204347925,15.839091812284224,0.7402649423493557,81.27348264645211,31.518878377686764,49.15996485988627,14.06058634321974,1.3231459292787684,39.08236266410263,98.59002646154357,22.62495960876647,21.31514621254784,84.39540090614153,72.7367176629606,37.84209734259603,35.01117215746131,25.520819478404366,46.1522795564007,95.2194034372125,35.56672352305639,80.30606966781433,81.98778188758811,46.61832798664152,68.09873137122754,11.272589747532958,97.01680693458866,62.42475343867157,70.85665679499293,56.36477671605215,98.83971788858847,50.83622934048676,12.669929222935783,14.421960962153225,17.75432159435154,81.22992675511827,55.485221503013605,9.594366985258663,94.61620120790724,36.9651020814892,73.47408008533715,51.48761783395268,21.03700235813489,92.18318254790357,54.15894166006,19.533041256218798,70.36663374207049,18.67547459023784,73.29095185647695,82.66297257308496,86.10347855591041,91.43325090601046,52.248031707504936,57.50458101010116,31.824642299489426,48.69666557870256,35.88633295713425,34.027509287952405,51.7617815530707,34.022151842863224,0.25588791045502157,82.36092239091298,98.69085257645781,65.6074104764189,75.47619153937808,20.04480318912123,92.57296505343734,22.684799608848184,1.1588645640025041,37.81312229884964,14.223085805372481,31.811839719527047,54.45677701698109,91.25803500073309,43.36451525136401,16.337930611647323,14.461663601933129,44.2525062674509,30.59233172881468,59.1969923255465,91.23488861652372,32.445359216231104,34.71399205330039,10.956624607614485,64.52371031686287,63.19545416406211,71.74527977188612,46.92130916940434,76.58131572996358,41.562374170519576,1.2846216502898522,25.54750818289978,55.70164575539707,85.3321314411392,36.6888241318321,32.79149271229085,30.99315710952235,97.57681967654972,2.182567831013771,57.44148685896712,80.31205906306332,59.27551296087608,90.33466433847373,14.924469357341918,6.209234064636659,62.33350626799719,79.78577368259326,75.8112719961823,7.1795503336756,8.864144078532343,6.610277741513748,3.070747390452788,58.18276811809982,80.62020221886378,27.851023957402056,36.31944227858979,45.52298568684382,19.319220421243987,13.566348443931076,0.5798139610874276,52.05484672312759,34.69187927822793,32.71792247834623,86.39376387997724,69.38227771348708,96.08660933762788,42.42643790460706,33.12448608457855,1.8553262293576123,69.58235097673055,26.367649958977402,9.811379433751366,16.726282118802448,29.999484355731187,48.9464025437366,20.56376444554948,16.795812899955553,82.49576614525122,33.32587498269063,99.68682306080274,21.95981983967935,2.7584335493459067,7.932304644749177,18.6602020198108,82.73921626116511,9.517984094060928,38.743340269883795,49.95918858045945,38.74627607622577,45.618089636196224,6.770460173406123,94.92485466770579,49.88895768288578,57.363299685801316,8.231180626780576,9.838570580354489,33.84364331259351,7.73789616601478,40.07561006775475,90.76171819044976,94.11870642084257,97.97724501587666,37.0584297056009,12.094398840744592,62.96598062144654,21.320037363273837,17.096177101151522,76.88883538980375,80.51154626681387,25.58849651807934,66.62342677533726,13.26461511334024,25.015261091535713,98.92427644043688,15.736221952202545,36.110073688964825,69.2128812122066,78.58073520314618,45.89794285687854,84.30033923844528,94.06468422107912,0.36321154096196073,67.79658055761007,45.16271332529133,93.89047691463882,71.70911480151709,29.436586500027385,41.21929453812816,77.09568896460036,22.080363447028073,60.102682588375124,91.96594073527964,56.518041408941436,10.47857740006053,46.83434710565242,68.92420221881278,23.33136763721181,48.412359900708765,63.86184743583565,89.69640248420538,18.10307410982812,26.360295882569307,72.90515723408565,31.88320972319928,92.27601911147289,89.40213313013953,43.30761511061022,49.47089301802078,97.31182834586919,31.758256571769692,66.88818491292032,84.6414359077292,77.05162161681972,38.21949751509266,21.321925406845345,81.9199653608345,12.168836697174633,90.5774435742203,30.67045534982843,61.342296706907476,57.506864464035935,41.236780468903056,62.68303836213458,74.03494062305982,59.92676560601576,69.48747310653417,33.420264904783814,83.14509285800973,23.90124575458773,95.06287138989804,89.38679730227558,76.11192676028186,25.705889932613978,81.76815545666219,10.431378107104239,43.68916940846583,33.53651087606559,22.24273628253961,46.31648378475032,10.923991853979164,32.59408215569406,57.59143898949418,97.20209286923777,12.221082156338625,49.85225956438495,19.67826828537348,8.29427409075798,16.01179921394825,21.94761880461803,51.576346582819255,3.90711745166894,35.572604367761805,74.90859985038131,60.6511823485097,82.19604318819611,96.52113101351195,14.530359077415433,49.0486814984436,55.32370079464359,26.705950802449486,7.111809245723233,79.59214397550697,44.87633566534672,64.08830840866261,98.93956060210121,63.73144571772733,14.27216836417835,21.193353464471954,77.53455443688846,31.401286386782377,25.76219239170753,14.876089196817343,89.87144218880076,78.62206914311462,47.88168592559844,19.37652027445789,45.82470557124205,97.10938528424306,2.7245758525029196,74.45976038665776,98.04821139748219,78.69607809959174,70.59069554693444,8.364667682886873,92.65630126668354,94.80458018777425,75.69624786452013,14.563989269433474,73.63162134493498,24.76120949472528,67.67146516745251,73.90290332238725,91.5057720320733,53.660593903423106,68.48366706238043,33.48017217630623,59.27253138533965,24.82587367331588,18.403632033630867,17.701227601666847,41.58175222538721,43.613721898559035,3.369483473588064,68.60671130515014,80.02167967702643,98.48689560670253,12.711205733317932,25.209099886901086,89.63808580910246,75.68695571877302,30.11293259543314,96.3088497269261,99.63480839274985,45.153300091513806,36.56646634927391,3.1652646667257756,11.652486142170225,79.02574533061369,48.700415108000705,35.120721332851964,72.63351116705996,99.79725411572907,72.11570448994304,73.3268194704122,47.01437748904108,30.762693511773843,40.43193239991224,36.78698422807333,34.16702638687576,78.33453539991005,71.67613766020595,6.177693581102616,77.45829190278639,62.14416647799823,41.65677563127414,25.94242718279339,57.19909785981131,86.96764623616473,32.40118725651612,61.19475001207356,24.0906370269915,69.58581484890195,8.262057413276658,96.36297544432202,16.579055104498075,83.31683239855404,39.53141022674609,25.533620485433783,39.51216790732334,32.50890522137584,36.232109816192626,32.21808192782557,97.14765830892202,58.39278790524119,76.28433122643511,11.131706589399492,39.85437912929388,72.25562848454626,84.92741581594782,47.56812213913489,12.018069522155795,96.4141871037109,4.901932947437537,80.13604306556418,77.6664731357335,69.30478022608429,44.213591423756284,50.71718533319903,71.65037298970805,33.8583570155373,64.22712712223938,58.47336266563804,12.465057676937386,6.39023395125331,63.59303047008683,77.30424039975708,10.977796331525935,20.665071279183632,16.921486301267908,87.71258043525256,76.42042295162807,43.99502708302726,64.3587605966231,8.855503815515286,53.47874139865717,30.74573207674982,39.9899044464425,90.64789572970153,79.00002536505829,27.953974856434648,9.752304488102526,92.20996172329397,53.031608785854885,66.85871451740196,20.043121673128482,28.57360564048499,53.884928376804496,94.6701253718861,64.84083481797272,78.17110273596829,79.7549409431834,51.51551796850852,75.72129960926813,96.2150785466369,46.8036514234166,76.68975651884607,37.64048505211953,66.39201190405718,99.1869870794222,91.18120176007814,32.30591689551021,35.661601690794754,11.887146748300225,85.10116049804776,0.869715977439689,29.57408110503239,35.58111524201274,33.5493834384109,18.17799226340171,70.63709697530871,74.81704911022248,89.33486315220914,74.82775118572235,89.27740605903927,53.18314940000429,79.37963574342649,89.91945429233604,46.14909757010697,54.74738986831037,84.17531469855966,49.88862673717796,57.88172319100653,31.369901248554378,65.87665861983349,80.16803738848216,83.59699281862359,40.87717871622431,64.26604557730178,1.5540822676645583,66.6924544961473,84.25119191997538,31.72738273295417,62.83153361251998,28.547039054056324,30.889791374019516,81.58017415387509,90.42266528839278,22.895667263660414,59.652446786239075,13.037614487719296,30.130870118202157,44.163507191543175,69.04128498897997,18.325884722576724,74.91526480278061,21.248418240672574,59.6750778152196,24.33228762231584,74.98056376247143,16.60485491055602,13.74280365619459,60.45271014205233,95.14412414836661,91.83414365960485,90.41005954229111,78.14090591828742,87.54155672450773,44.54738151794106,44.93807290166683,39.81990640114048,24.293776079233243,66.66494616822054,18.68873589457163,60.60651986846485,91.52868895357238,7.844052540006086,82.24043382114785,6.020219133029292,71.01646054366293,8.313679340903256,90.6491415410949,36.622854436254826,37.472616673916605,1.8977201920529985,90.7680173571081,21.468354844846615,26.145256793259364,68.7889787254307,95.95817697755668,20.463571365547494,78.24979871862507,61.22756493870304,26.93211721493699,69.84412459251553,94.17720194827764,19.30707815367616,74.00785883482219,93.72686484028078,65.2662697667168,17.544332778676008,3.8904250889301717,57.30118893156304,24.070003916235873,54.3653023196095,95.05505710690822,20.48890126628806,88.66009389922282,76.48825077042954,21.09987937226343,92.68578795606469,54.24871894895125,9.918038064302259,47.48178912796646,69.64698943768593,0.9565482949082882,22.931648524633918,54.7687819398382,75.58076783408374,42.249468412060274,74.91936843142454,3.4863650836701177,40.17608286867247,64.77707189199965,2.323394196130779,1.858642053605719,1.0801015542722059,55.741684015526126,67.69243832039137,22.570700407854027,90.08868246731076,7.43669850919998,93.12943540191543,77.56529924018865,16.955996740127823,63.6846823466482,18.92257138524225,22.50554709529854,25.46058377123862,92.44438100186733,11.93859203697727,56.36104788657943,72.77212859543789,50.67228533887047,76.03588488629283,72.38235142477535,95.99356142028074,46.76469939273703,79.75290497222232,37.912392128246765,43.880417909567726,5.688737608571004,6.832964566218813,64.09837811530657,34.214563571197395,89.84051903361357,19.807934334640088,36.12364590663611,11.883766726047384,0.5223222244339909,18.821779851102825,71.51369096421766,61.98070641588933,13.817397333482939,5.545047556529736,99.47073157917752,65.74916571157361,71.05157512907668,38.784014638148676,71.04222392001748,15.36352318584594,74.47862412015519,57.406327646061584,90.58098846478556,76.53848808555483,47.7513521698539,94.78720164883565,94.62041679044242,89.46061983739268,32.983416873454786,22.673779208335297,63.16212011086056,50.47810195322909,7.106504959122462,16.92812354305503,12.148363020356411,97.39605431074231,32.343197805829895,3.9214833131789417,8.039535804999753,43.47444809461846,10.940198526275125,47.558741249837574,19.636117131496555,25.785723563391493,19.897142268266233,2.8499166705063694,46.34131958416939,62.812844763089394,60.53404683372876,19.706253500802728,64.36336130082401,93.7110822376375,25.899664898374297,7.765147008214079,76.30375899177825,29.99473758858081,4.86278293198501,75.46900979885058,35.34993807551554,37.00719842883099,27.048993773074315,62.43519741703493,37.78729790653303,52.52925022713264,5.952628092361323,34.29660514962494,64.5021482646298,91.40275871959534,6.4612199277409355,10.563000526139966,38.47266322017619,92.09216920791908,15.265141335664511,90.43634749204051,56.558842783451894,23.369469156076896,80.28221903742235,92.47696447479879,65.39202874621624,91.84695876364317,62.38278564054639,36.558903796582975,22.601399193331297,27.259097935237175,65.3003051140489,26.427585716232304,19.109731014531985,97.45258673293137,79.29090017573445,12.06740419484934,89.91184274848936,71.76055348679255,98.84263911351596,37.42016077550838,85.86179788586898,35.137719339091355,48.32267528220743,98.56338754176073,81.83005492980999,6.1110165618422085,0.5339380144779193,41.83250570870045,84.48757755328073,94.53388517650329,5.1991847675243115,94.69666482511278,45.252844828011675,47.609267548299414,86.85339672486772,49.330941955372275,83.20032087491963,28.470168891782176,99.41125685769904,74.33008320752774,13.739411490956266,76.18774012636817,53.7630511042038,47.75870927725997,36.42127072903845,63.26512104613019,76.44351273044929,86.53609953302379,6.552752815032969,10.866932184618994,80.65813992221756,42.65305427802074,9.233343870539123,99.89064917455491,16.72378492281499,83.27316408239268,29.1979199027138,15.307841919666721,79.08235768579837,69.73760674241804,16.16353236410719,15.026746898281507,57.315734726961395,11.081347579115807,53.525875273763305,62.06719563553052,70.79449324373451,86.51252651170411,27.7230124081822,81.99534725355376,7.828712265589011,49.35359238259199,51.00433044935686,31.725925773224073,43.70732825527847,90.15511616066215,35.788446623897464,91.07203506938718,52.25401362849185,3.2181709190298946,39.880128196546316,22.56306338641264,92.1273190896979,43.86429327879081,25.908487001321202,86.94235568950306,59.6853468726618,59.32481398381366,7.205015882864762,19.107585089560175,9.494014424515761,90.96009613248721,38.09281682941329,51.11295190297279,86.73585849395144,12.315545703347674,58.333826607410025,49.647821397555184,6.128442611534157,85.08566442095562,41.3720390963799,92.8792573118096,54.44780396702822,69.97942034323924,66.30907229179317,37.384710451505185,38.98424599688488,36.28411789540274,32.00100924444785,82.54080972079616,25.257187052794038,77.91428866368456,10.269839963757166,41.20135342116604,2.36310002345691,78.0373501106317,53.46409375800637,20.859400651028494,16.417458848937137,73.11990755156224,97.47652211117095,73.64550695787491,1.6699754868657601,75.95957889654348,81.14473940423012,27.22743687510115,85.81182990945125,78.48697411003045,16.675934867256647,1.9012127302950321,59.68649686190667,48.67981663413915,12.34351002612054,13.93472404005024,65.84220121487962,20.731965336422075,47.47932330946132,30.397608150772115,13.631450876358153,10.251523565458998,9.132161337599143,31.08048814874601,73.41404690907255,42.965087933161186,18.3936407061138,62.63180284478188,82.45052756971843,84.58386056245133,41.27573948669113,20.169579598548648,34.4261287993812,89.14243156570156,7.902768432417496,4.643337471778519,44.51909516976368,94.88017166090448,70.92477026584393,6.73054494457872,85.7671243295648,25.44106431628972,7.32245912236319,15.905934816021938,21.91936617452236,80.66055707027024,95.13726205142434,62.74048874083176,9.66563399677911,12.639882765166877,26.782514251413502,73.44378207363813,83.94485847884073,37.348286792326626,82.86671796358466,87.19879657762962,64.7205109897574,30.42228398193937,59.64254570457004,14.649250176576778,98.35454971132745,27.773987541224553,78.25606907099201,20.147649104677246,86.78799168038049,87.71018284540631,8.149523433989291,69.67207480848515,57.300200919030885,88.02302479949509,86.00928660292793,55.25412358946576,90.102036181754,81.72603837370522,33.60061175834759,70.78425277546795,74.286038128599,76.9045488367939,57.36563418859038,8.749520431400292,73.68156951676002,89.87901969752849,99.76762080530216,89.9833251155615,38.48706476023436,67.46070742619126,35.27595514313803,95.29597145815814,80.39735644267769,54.344493465316056,68.0588134013158,98.21980279226116,29.874467659911364,61.938565293997286,7.742039395951594,52.940779280533825,67.47014721331807,86.48606833637777,67.88850725913534,62.734755038240074,65.20118945808238,14.535852931651071,30.364554069238046,36.511166156806496,60.220747467654434,1.37643809592084,7.728446692160906,79.42354565404852,84.61586737709314,78.18462459932591,53.020922558355885,76.6026047404649,52.903226397671446,92.78368245943756,36.45306981163945,4.231979109458461,66.48071935933453,14.645412102085508,31.891610890239306,95.10324274066284,83.245744199763,15.894024214710145,95.62410178885507,99.01334228214209,80.73382109128939,28.571276169586103,29.09415594334139,61.42515850529689,99.15943829516945,60.4387564476902,64.52565492459027,6.3946137196422175,96.1573879603309,20.239206710194757,34.30097853092994,57.46128580344563,9.237929299606728,27.647187091220683,26.61330955106138,67.53470973277464,26.453544288204988,14.864394822874317,53.813327644050766,53.631833514381896,43.4345946214016,18.540864563220527,81.95722020102252,89.50781931053268,52.36921613476889,77.30583470150773,48.253784404379296,22.54605717341933,92.74500202121322,56.79021989951002,85.80892917715828,84.05733559665212,84.40716231329563,12.042531989384441,88.40227797504244,22.083065352641984,22.967111754051206,16.101025147432956,30.066936360160412,46.86456814611636,62.38577566514885,78.0801804283383,13.894511425583989,86.9807084632779,5.205771044356943,17.75376028025003,79.94426681213544,69.44116284163748,83.72954104505365,82.60174230594518,8.194214250669262,52.73816581527462,58.946119391288775,62.108283912960935,81.3139828515702,65.75037194876998,77.25297440658284,47.13815222438234,59.89092422073189,40.18999077822034,24.05901493007202,91.32769453350578,76.11558854066406,39.08404218689468,77.8412406403354,31.685147385273325,70.7648411826507,47.92125144732997,11.612414600022813,45.63890976949012,91.93169601015131,72.14418589988222,75.55402649510054,49.07912288506196,98.52947098184698,0.38858990316191777,87.38045693934103,0.047965177239939205,0.2265824592151633,98.07611319114709,36.10505741703811,41.128156188052664,94.123042795636,65.39501455586819,62.172418054767554,58.5338044712237,50.88238138349773,36.06462858247278,12.376244568899718,1.1921334930406147,61.69417742800256,22.284275959207132,74.61151430273421,37.034617075964306,12.939020084467767,6.697332420026947,81.4846630586942,92.29841644157392,70.17516255167764,66.29652846315827,53.749060690418204,64.24135492826896,95.7777126259898,82.54413978336713,62.87659205969503,1.4068149467013957,92.27635229856351,47.899420065991634,58.66834611418361,73.59133036654114,0.17428824466375614,4.00632214713027,60.884478192468364,34.92587303117677,51.91814278960465,80.66594158791774,56.63964536598925,74.64549668447418,53.89726697403119,63.56268337364403,80.9253180788496,61.0612351244455,21.039499529219952,32.91321519694957,12.393232165986934,90.14838707175716,41.9079402391126,24.783563323669778,58.93703127643434,25.911262704062043,46.53429972808741,1.1098559220378057,14.502567026891045,65.64913953683649,15.69351140173928,65.5829242000556,94.63518206355805,1.12986122792339,46.98269526776602,39.736650463954206,94.59027139777596,36.588565025810524,97.64981237246451,72.4075636548909,81.4879337865151,70.61545792889812,32.87839542796254,84.08877709875946,45.12430364781122,60.883742368891625,72.24457626737615,54.14630576797549,57.522828231183084,71.21617137413351,87.60059691340788,29.063898567897105,39.21359095513903,43.2915475496598,93.41524569419202,49.70199978536159,68.33319588821915,97.67503063440954,73.9944421445392,56.10067600834575,57.28701407472232,19.37194186065696,20.39808406987973,35.93654809301374,93.96810364700426,92.38942824981693,27.229325110263723,27.194344524867574,59.39112026442353,79.12715860588322,99.02499016017146,89.30275925318558,52.222601362165165,20.93787200620263,48.849475166374134,50.483577940901526,73.20294198305304,29.6393542789694,32.20874894080096,96.19095764086863,51.88344201423961,32.26856918210825,75.53421537067213,38.51775990505124,53.60536120491939,4.744826657354206,67.6079045632101,54.03866318803311,0.29976310753592195,76.67007705042217,22.63528517464195,27.378468205111915,15.436495378918025,2.3432542551211966,6.939250961449883,79.62471551008557,9.843913285515304,14.53174140723429,18.169512894881834,97.60291512746409,97.13473038826342,69.15654678946636,99.08690834243211,2.6359964114945678,72.85060742742185,52.670639385220284,82.55154280465764,54.53825644156603,91.0017429546984,38.00154458531083,57.412157304112675,93.45451230919124,2.4885059560650458,65.05650536999383,74.6461362323205,53.29039322631882,78.05167463328809,44.69047709490125,39.955452301784035,89.27646100681544,37.943984380150084,95.92271251710288,12.939143895308348,16.715802253828027,13.723753115436821,66.98930525540234,0.0037514055622023257,50.21344685204072,62.06212352752591,57.884052422617025,69.40523646690812,44.642858941353715,64.40801989562401,73.28809365521964,51.763981661040035,68.72638554023467,65.81295232278364,99.19832336485145,42.65415258659695,94.79527817467603,76.71099414579055,46.011361013823695,51.91821946174642,59.94559036322495,62.14131822564821,90.8329666455875,1.5789236654362049,25.751889496007664,72.78306872174899,75.65889460692571,90.55941897991372,28.414284121133505,72.81209745603624,48.657169868551705,28.86324909463559,71.16778198439273,64.35990327403825,80.84749752565472,16.763046999344855,41.890018450107455,68.54418190443562,61.68856432732307,2.62431077474482,14.348615532279984,14.181570245714326,33.60153798179615,79.92774662700968,92.72236954745352,86.99063653559683,92.9940860636911,66.85441254531369,17.314869250012155,6.940646597505884,7.6670333320195905,24.376007203883443,64.14166384969944,81.4286632742284,85.6551176674558,73.742315012302,1.5317249289692247,18.06028739170439,46.72934848046116,65.79773068778668,56.94675062918393,59.36902107879377,57.851096461819395,12.582086437191741,6.211439739185032,17.89895861565536,58.040433312496845,52.446461470121776,96.53587218609599,96.56046793634083,98.34401562449463,69.10669386384205,79.55635624390108,56.613616604374315,29.33094399810159,42.962669788655504,75.32916036937593,87.95473361335475,51.67873954646212,0.7046306633334165,55.303292496568645,69.63391325729339,7.51384934552739,22.87038103134845,93.20390855431089,78.05798738081276,32.87949250066793,91.52867207756485,28.897794005648404,46.33908141469183,99.18599187518137,89.22325106511583,64.25779118924439,55.011576626540695,86.18753568749369,25.14980766665882,56.01535356344394,6.656411509978288,70.54979742851786,29.614906109766547,53.11039462649019,24.361511134056222,86.82119614056734,4.117921161505667,99.42003252833281,32.997343083619334,67.64903996937011,76.93148597716777,50.82318527401601,17.97813897287911,72.48789109903927,80.90214304952053,62.76773349365532,52.98423919720552,58.52958978751934,32.69391827739897,89.68904980748921,90.95737509794,20.170935796118496,10.112630422990588,45.35699090132568,89.30686109720637,93.53656752294611,2.4706831408643715,39.540106910377695,64.67883231030666,16.04651083983627,64.61136155270627,9.625211125290312,18.67893810504786,19.02056973370708,40.3764066938551,64.19720753867867,86.57536949258619,17.247060545366445,11.090401295674724,58.53008566093094,78.16381463152362,91.60971462507031,66.57065117084119,11.747725899243655,98.77705310691475,6.274298311139992,97.64065511904583,38.557916782058044,24.085646351524815,72.73918173928679,88.3588755480164,96.3236256730147,0.3421584913800624,52.19627138267664,48.90217106865929,77.74597139994627,86.19361936766981,58.48648498906114,61.065002054245156,65.3074449654153,38.246219764877075,65.02889226410576,67.43863046936745,51.90245553711844,52.639903277626075,58.922708033800355,77.89734996698073,79.30223838787978,11.933164781043871,32.60976434873343,15.8016559563242,31.13724228498238,15.889738625852956,42.64098064985321,23.80190043489563,88.05718668063695,54.15214062542242,60.734170289120634,41.836684870156496,55.30049049363674,47.53999699095043,32.4702027075068,22.191737616361863,99.22230081708008,58.95649836085667,31.666362894699706,62.21413260442977,89.89553588636612,10.076105266506662,35.089386304781435,5.318783438109154,48.975479121538214,53.68374459247861,43.51222353722063,14.910814774324876,11.37324205600969,68.66730593164132,3.902158944138956,21.782292028819672,76.3944606709898,81.8327917251285,71.38930515555943,98.66410978815668,47.06557731927472,91.01182565672119,18.68251499269852,21.481643483577162,51.828302446027955,48.050023528352725,24.84580533505141,8.78268320636979,96.07868422310165,57.25597908141494,77.54602868088469,61.6642826806749,13.445617212365303,13.231448478100472,50.29915870444175,68.57457278609373,14.333738739516132,95.9976875842237,44.15356073718538,66.36025624254425,42.48356245605493,6.675066090932313,10.890615138537306,8.677157398185598,71.74234247467217,90.9740380110956,51.621798511742924,68.73262107762383,13.863502336870582,45.74154378916436,86.827813890332,71.7634217151715,0.7852939770968459,31.7356976165173,79.40780737276097,78.68799512038667,63.97444304192823,99.96701060653373,37.99901417529653,42.89952125416179,28.42860916388581,63.210226910964685,95.03544912584701,26.581121610357883,52.783999556505115,27.315876499701595,46.03899518199361,12.339614223882457,30.500938995051964,38.161676613934546,29.850420453813353,20.53708026350749,66.81757467306447,30.890862038229507,88.58623857557144,92.44898983260458,80.625804926502,29.353981433202158,76.84702818853614,99.62100682729962,21.105971257926882,71.4087010217024,67.01281099168548,24.350877959260465,43.753204181116075,24.761730360128276,76.85515423950568,42.18724169959582,53.769662147681984,3.5417269912702554,38.92935020209543,73.0396265913029,94.72148840670444,40.561320466987674,94.31443356698553,2.6049228823358583,95.5610547484517,63.437113350247444,46.65925840702359,97.50381709445993,78.1272852737496,91.89368794209997,72.22192068035885,13.83927436995771,22.92442809284726,36.675240202018514,72.27733091781533,22.061062634401672,65.46737416743092,72.43981199159798,25.48316699662503,66.95867148051384,59.38991464228843,90.09459345244215,17.29345102997435,11.775309032072634,24.265189509016437,2.0072420409447123,9.476905249799806,42.24751172416218,55.43855983152633,12.468543565295764,70.10149597525309,72.09364689394957,2.738487426226799,17.47990944876714,78.38152843704954,89.62420946111644,65.09651782542629,58.59549848764881,18.858360676901153,75.51727688513121,38.46738224889279,60.03973143218676,85.59966564299754,41.10084224821505,89.76255877098704,16.077445911486755,46.82013060823148,49.30707996565285,45.158532239128505,15.89714911428225,7.208145827260093,50.959934242071306,77.44151080604888,95.90355576463107,67.33248457357068,21.98046527784816,9.564366672148395,15.217763331493062,0.6857632053425822,27.6196188447141,27.2362605218608,47.40333692474694,10.949186024349089,84.78879237662669,19.06141910928768,75.18269463890071,18.26626372680241,41.884971744940145,76.93130563236284,20.454497830411633,79.67052017808388,59.92272790357376,19.372319088920875,43.807832375038515,99.5854383412378,90.11790682338145,7.906548767856281,91.74121202999316,67.9672533544988,0.00660650836092902,51.96648731690255,43.83997379633313,84.50691893373751,14.058797829553814,20.15994699776971,43.60857807931393,50.379286945361834,89.2753420067563,42.53455686096152,3.4753061255504702,66.01313341223032,91.12805607343297,69.76967625874418,78.86421970510973,52.99700455502221,63.96345762893093,13.210315986529963,52.972159180097755,37.32684728661211,32.519587668086345,6.558053177712475,68.64559704804081,48.293064711377966,64.06100074373116,37.92362605985705,32.049075984980924,15.406870137466166,81.99290100771017,40.78617475287313,63.21550396741716,29.620067747572453,9.358113164919358,43.53653243661111,15.9502897073443,73.20804994170888,43.329799921427096,40.906220574650284,35.74168532531401,35.626516849547876,51.11155523490033,91.63045296328677,16.57365191668154,0.23844965717586541,31.485746996803734,15.652679282366378,14.092856766831074,83.40913626680945,59.19705579951062,96.95720347121065,78.72728409819662,40.97973318794396,36.764821775910974,75.65569153159983,45.41086699261264,16.941690221022377,94.04912902597403,16.67219919234236,56.72244905907866,27.311950427558674,14.267299531884593,26.614937563313013,20.858269039650622,31.89076170251466,49.03694040977037,39.61327905886323,22.931577432711236,34.75411895935613,55.99491985927347,86.78557934146089,35.899189946890516,57.24653894838614,78.13131668801475,96.40523498608388,46.48994096754815,7.064439330565564,7.5178563302850225,78.8157223584188,19.09373035150883,27.525229299112432,70.71633102671005,31.807754981922454,32.31860118546375,48.95031355459724,45.926165048356104,64.72970874375379,57.50660255496744,6.794172489459438,25.943294234639612,55.8644410583044,12.725714703251079,32.20409312961912,45.45093159139167,44.20492352381979,28.129861976796366,71.20222244046182,61.69040663566753,57.54304404150072,88.23948537702601,85.71722612084857,37.48781242095386,80.44944722306788,58.37196206800108,96.58130486132873,92.5232888836918,74.02594204986991,34.503195112493145,20.653074835512953,89.78778352350372,68.06652099087091,46.22648797241099,56.97081632697265,95.03139740556928,2.6460313484644504,7.658097387269647,82.31322118613615,98.98653900704369,29.28527443805785,18.06048694411636,56.19266649878897,81.43618345793755,38.33687336157854,68.11292569151497,44.83456715443146,2.7305875167346505,37.005390389420036,39.510388475081015,17.749833152102667,60.52836591608789,42.315271170057045,58.33174100724728,10.30432985272859,43.461421967605375,49.24562216267581,85.13567491378606,2.036561679367621,20.719809163648694,68.23053501834009,73.25510651372669,6.308545213434369,69.57277994019967,62.14580513651582,13.623233441715076,31.916055492986406,76.64959509884997,67.94014667528326,56.17506276604606,67.3052239225771,68.75586684773818,32.7341184316751,55.834210581710764,28.615947411111442,90.54019378113478,34.8711220150685,68.8758473777356,63.43902890899963,68.6548985817798,15.453847591664028,3.2625432684031286,60.70578481717017,57.29241159073793,68.42762675589015,79.68296397976357,51.55641396031919,64.57685879949902,63.184054400181246,53.42786726852646,71.84959486215432,1.6486936867024293,43.62501166164038,45.197987327753744,39.6192192389253,73.84373593477792,68.12756314914172,81.6210494229117,88.06678188391555,47.804040474223356,8.324126038652157,68.78304692259304,8.111487599651902,14.608311233834359,46.48902523632782,30.504042180483804,9.901976160003677,42.86860015453715,14.729424768199106,13.003784526359896,10.447632403577668,40.98005604487117,40.9672943815901,33.46254135393152,48.081703269805764,79.61273759946967,5.832955407034435,31.768157422740074,92.03219537813114,17.46170300937866,95.68170321608,8.902221041830105,83.1825330360495,47.836929265818284,65.74130842686243,38.53163129271081,46.08688162863713,64.43964474401565,65.99291035828966,23.52772547784229,29.361812957814916,84.11627860254438,72.07485847027762,68.11695381816492,33.80973373471205,58.351635831623426,93.9901122785925,75.38569486554415,20.755765666528113,17.525325740211407,72.24932591997532,40.31798195569232,83.79772761775735,8.450601079196296,45.004576402681074,74.0719350822051,96.81580714050692,51.19950513996238,13.677913346394298,51.67321356584268,5.714723959165157,2.392633065837413,99.34976033116453,21.32314156992129,45.861720690912044,61.42636116621914,30.522751523862045,21.89601593913154,95.79573046918293,69.45527944315629,8.041931904807742,61.12862795597801,75.74674935505155,34.30964949439081,8.962832968979795,43.11391949709764,53.9664786240171,74.44581452521662,69.20223440319904,1.6833181004686781,58.99336600056656,59.86038312141274,18.945799875877512,3.709557304235922,20.706685730196494,63.95302994875626,62.132820259343816,36.8038294718845,46.87328901096103,81.42036171898206,28.90127101830077,43.28411750009607,54.972036792453096,40.045235829182424,13.556095091183263,38.134475284543015,11.969612832849986,6.918568837506145,81.10056312036865,16.761259821357854,96.31760183247286,39.267181675668574,56.605446516178105,5.787594380461547,27.5518909837967,27.97487434805882,78.63300678871006,11.340334305073485,29.550398527011655,11.654627413237817,1.0942274227024318,60.25397654136868,34.46755774614472,40.296431563468715,83.39551292020899,99.4728225248121,4.79535701397884,94.54543223046296,52.015925313256126,29.028321271281566,20.503378361824133,48.51817135875843,97.53145606778834,48.91203918813818,48.647704011929726,51.89225674751374,43.41913836684198,17.79047306889696,11.404075902797594,54.88511729062638,31.98926474008561,73.71963957571785,81.87486443878328,81.88246451230924,29.395579219253364,76.35467379467336,43.8363974645341,82.95953390159632,5.15350090601463,59.37286109963023,23.06227272054423,92.0617313270633,82.00301016355589,4.32326081362886,59.29897275802715,35.036084810973655,62.05739910935842,5.496794504487967,58.56487235498926,76.70637295768213,25.441160955896457,62.29765401084272,20.70162801672857,12.613380528075735,7.099292199076013,65.38497655886826,83.68288752407119,33.53693769262467,79.93058558022156,6.829354468869564,52.77161317028556,19.50690282869133,71.182102680453,9.885153572131976,76.55778590981271,4.9875750628858295,37.23908882786271,23.979416493724194,95.98334314238642,98.61066652358052,3.1128253725995814,75.3161353557118,70.04808821248312,33.06889847946902,55.581572380613665,99.63013052417577,73.82408172573687,4.312969482040407,19.278072378919685,13.27525597448983,38.34172486143411,8.057219066516863,74.56190564273568,77.98311967609042,21.595784432710474,16.096557333587434,91.3739805703636,28.33875713193743,75.80466487560365,37.24056251526521,36.45455315794699,54.66504171681766,3.9088493887904474,5.86266637646522,8.92477257083324,6.738040964543912,99.47190308919951,0.5645461626192394,87.26553548857265,17.728906831828617,38.964198979489815,16.582576556454732,68.28386197241308,18.96344586256401,93.67048718474817,11.404621543585069,99.89854749770154,27.535129108425238,63.031825562427514,88.24236772397734,72.51363487819008,66.90785388792365,98.65231603133708,81.68912978042502,75.05235518471895,8.07757980483843,72.63675749368339,35.153959669352155,59.86027629274647,48.81026757891341,90.70824446076142,96.19720959184464,58.071303580724575,74.11547738819945,28.453836463849246,59.9834788629879,37.640946514139095,93.80154393223029,28.5337734903906,47.762559681481676,55.787337650710114,63.375619856657714,21.649189347655085,14.190474574327116,84.2369760595875,29.665546373905492,3.812009337271971,45.260356956992695,2.3259954931203586,53.63975283514305,17.537711965815728,53.768005400562856,64.02066176372384,93.67135021962676,91.43404794791155,14.015771086866923,4.7857318029833396,18.235100548839423,96.74081191757946,71.53250064769209,28.42126888735772,67.4120907578681,1.790696038543671,49.09495927588352,81.61416065675957,45.95335912827808,61.93909655199498,6.1240607109120715,80.73442237146826,51.825281380888235,77.91763879381894,71.65830648123207,11.218142506472217,26.821135332679958,67.1311434400166,68.70495314264913,97.75717026028401,50.24080031419459,96.30692346497689,10.152953923523512,78.35230965734485,56.124955383128,60.97179302587944,29.38880550104517,7.165304646641424,81.76534073550953,54.017645152494,90.9472364238556,7.895140648479937,87.23192172427875,71.96448836409283,72.8963458514744,24.25005625174501,34.80786097920823,86.05939550802185,6.2288280679200785,8.528984963500042,70.89910552641464,9.058114378497638,47.188349932655484,11.249472348797429,96.04012885484114,39.16296943425386,9.702266372993085,97.11841878802993,91.17145678097816,91.00043911803913,47.211712562573936,2.8316645499847692,24.848209058243555,62.24749534562146,23.046747001995904,76.17731446794477,96.38277374888798,63.98839153288045,94.73875305766298,81.71636903403532,90.18341867549137,33.22509840725905,58.17937340796203,14.960818929970976,77.3658644396402,17.80840612162403,30.192109685451484,83.9140296420814,53.461299507493564,81.81132971435859,80.1524302098003,76.1454926593546,81.65527644929615,0.4677204591026829,18.04971156345603,78.38678195811346,54.78267381459958,43.37300360333079,10.265528602489194,93.83753662459326,36.42794362348318,63.396096169623206,28.1465491767536,22.903991256636434,0.35846252361796394,2.832849352373612,61.232905959781384,20.163552346474166,11.69867050363359,32.47912979922448,98.63922792587665,95.34759127178958,72.81435104314377,9.37491069181472,14.853148858975407,64.51578434903122,52.513754866376914,90.24985748414267,29.717576756961495,86.79349384189136,30.17484849723281,92.10207865448258,97.17345952225179,98.52294053385194,20.095241219334483,56.45261290171369,69.83366846445386,10.638418731520904,98.69394588228766,50.64649626299321,97.97169489241794,68.84375674954723,29.897224009300682,16.75670597072243,53.90744531753056,97.2946804519503,82.68096655365001,14.655915225443362,26.810983762702346,21.122556151094795,64.02499369774316,98.33946868616974,63.1821585804334,11.133856047851332,63.73740612155322,0.8046934911080328,73.17352632808715,55.55449183075084,60.32299706201193,26.07069433404322,28.909463273512337,51.98318326159175,19.78075258522438,13.721044014122995,21.607654180357095,8.217266581746873,55.48952091348599,17.423659681966075,51.05949154582958,11.97242785811361,55.033011982600556,36.578343590115004,92.99398995284173,30.47936306786999,67.83830877639178,16.947821029069544,9.608518735933524,36.38141301148601,47.65818487939212,42.07570840586151,2.6230817056469347,40.1759127088267,49.90318374958229,56.64261787951281,97.83484393370426,9.516415148073154,30.05601240907617,81.9984578924919,64.05478844945506,21.95132455002643,75.93979123451471,26.40369216188958,7.863711849764943,77.26836794848056,95.51745966174344,70.21285732980166,13.091880191666005,92.87393568823425,16.038230858254565,24.867725599390678,51.226814402725815,44.53942920304138,80.01062559473795,68.12946417163701,35.790135205369786,44.74917192908284,90.39573695214797,19.39148685191927,92.75617583739657,64.38482839362186,57.85142035545867,12.690728623892678,14.608965818902398,69.33005012595933,83.8081383956155,26.10431877804571,61.76676722023375,15.2522103803018,30.12767483672342,68.3041722911224,57.70251291752263,37.110925154714515,90.09619944459189,47.87250216385378,73.2078691307187,1.2878078569170448,34.39463376676459,36.50071862700028,41.0912162545925,40.9364026625099,8.725631649003795,47.86571871646714,39.74948987476552,11.786435640187932,75.68216366029995,94.8513573884414,92.91279008527556,17.98600772129535,79.72414726117324,77.77703827790388,15.794311760800127,91.45781416308581,69.73215824134502,6.663685003761577,97.9790555926503,79.84918815575921,74.97894869065937,25.269446193730705,13.58198459906783,37.173034008311454,12.051477851171576,40.63932555934715,38.2496088466179,17.472415174196463,58.52701165359814,24.56555054409022,17.497172271295025,78.51238279506182,99.7339368130259,63.69045370358385,92.11334939463411,59.288248349717854,4.646409049935107,97.66210400869336,20.16012766811299,61.55867996736407,72.24469761060246,50.60737073893357,63.621713459997,80.73951619866807,54.70527081887913,92.65949653040994,54.7428768498503,63.71908587440752,0.0121901917625733,16.132911163244156,45.329968909215225,31.158308651780953,22.20353806671298,85.44040111231196,33.661911499321505,70.02894222615589,87.67942302105888,56.31335048054934,74.83839309294251,29.533166183293304,19.97135675428926,89.93278096146425,78.17292554506436,86.66550939097534,55.51673611881769,16.397836321506453,66.5338757002372,82.98668350035932,55.92921882621206,29.078578440262525,58.26056335135155,21.570409772383314,4.787891886420159,53.07388934638573,54.60159514082367,50.19957549003584,45.81361915232286,81.31423515646607,21.341743058093364,99.20898853479129,91.17014297938488,41.466848769084976,11.131453934877344,97.91896461133366,6.20094075640999,77.09805617627347,6.154846374795864,75.63481396920163,83.49148381971585,20.302300454058873,98.7662724929429,11.3050871857581,9.733897144721325,19.501399616442672,58.669810849966645,82.07865612811575,69.01161849084588,98.48558903535034,16.920431536879576,76.0396930997785,57.52230803990872,6.496171675171992,79.8954718215532,56.95456630197199,61.99182140870673,55.81238072200549,3.6059097350608194,91.64242006326337,30.092240232984857,19.086804008807757,9.98491387132031,28.255833406975494,65.02494251473662,3.741561086719125,16.571306437181455,0.8144132109769497,50.95241480950493,93.35740988710324,15.401975118574473,99.16387887548096,16.515875021250224,91.90090397492766,61.47457929908029,68.82942912778486,42.17310877142906,48.51453597449387,12.825240822540263,36.0057659997129,14.197824446357254,75.47019744432244,34.62569363750019,26.49960355075648,18.757751691668567,35.77589568161651,92.26652931434195,99.39944380910666,71.02229570144989,15.085602545197574,65.65611607163146,36.25565564690824,28.88808731475897,0.464629632823399,86.26388551467355,99.61104997197751,80.7415238608342,79.92017610408601,6.287046910973104,68.01320116518806,70.89686949347845,51.54197542235928,43.31373317118913,31.883117787911896,25.549710219850763,22.949629593476416,51.34662878223064,97.91680647540218,97.19502645998735,26.76769363892172,3.7576888123583507,45.40699335146103,82.90239759734168,69.69927875764222,23.545470852412166,61.22601598531382,87.80495671114397,88.01834415232533,91.69030175673001,96.98718725024335,6.941372381016864,24.349572556790033,90.87635875241372,75.09877105439796,31.214322082537528,87.59055845842306,18.565568905695596,76.87910464576049,57.32460287764759,49.259506672056084,12.857399651777012,40.11744779270102,72.74940243264817,54.6759394240104,73.7025774001872,65.60131850362512,87.1857273555665,91.19434789783688,68.2450341917746,64.08046087296945,66.75135963073099,79.31562614642509,75.85683874530675,80.94845459443516,44.721802352148956,71.0426136536333,27.757618314650845,13.896496545683446,58.788056265403924,28.973122125295557,90.58674519608606,74.90685314909534,10.814152659249277,94.71165411164387,2.6843129343888217,39.072244543058076,7.184611057567725,16.977061520484384,68.36925503215174,11.906123170859505,69.90162878823884,99.23711579030726,19.573236764967994,71.23187864869094,58.310078573208,46.4439889645131,90.14984194965922,96.9658325617539,54.17756202539432,17.721521994318667,48.298162561406855,74.15655888996872,53.2755305253908,33.43253871160826,11.391296738786993,95.27094623955877,1.9850174829253775,99.09958956443883,16.667058469851646,45.49623207156542,57.94094540507287,66.88965485312805,54.85654551983015,9.181762387062175,17.26057434191851,22.39295630403364,79.28072599158689,83.25066345633147,57.79940654030187,16.785028168638227,65.40939048995999,99.4034327158432,92.9736941873271,48.192848736499684,51.53643876816707,41.46249435982464,75.07271310154525,35.66147707277868,71.5636538632638,10.852634576760678,88.82506156874459,2.340956039904607,91.51138212049,8.61785680350624,22.919217429832262,35.52887880013542,86.298004083529,65.41387704809729,64.96685128534962,82.63383150144126,52.48420150129016,44.559129355895685,4.26065449837062,70.66866080920867,65.80381217405372,87.61006782410303,53.28283879703055,20.440784075844775,1.8492589436293838,9.497020717256277,58.01944412497536,27.793427629741462,34.1031962904693,61.33861705107029,42.10190206978832,97.1952113226038,97.96291683550804,90.8283263209849,34.882080861320865,26.41380351084165,3.7388176518815763,1.446046202163831,94.19621386738997,99.13729129086917,60.65332774261291,81.67826970307874,30.501329774730447,86.5341209352426,58.01579430315839,14.887081036831795,9.693694476516768,19.276108706852966,53.4789792011329,17.360051349174523,31.261926262206607,38.614215453928736,38.24151948113759,57.61847977904875,69.58338019513707,97.59879304331761,72.94170038282456,89.4014192356432,80.39803066512151,75.88028732604533,34.3282971609513,45.58309190153251,80.81786729917489,93.18556047562025,68.77019450412692,12.523079181799268,80.65492281575646,10.882978476373095,75.89832405379224,63.16865307039322,96.97527446757685,86.46604637730123,89.84970967572686,9.086874249837095,1.3349119209541294,21.752056667409715,39.06287272576206,26.88831406109269,75.26007524396468,5.975634244468909,8.748367329130813,61.73928689012983,21.297381272775173,98.5930603219118,19.89680950872006,42.221584852115136,80.71793999096893,12.59170717242909,94.76002663735889,38.02919379274455,58.726139971261595,42.28616338971884,10.328394405497853,56.16317855649848,83.70022317576047,22.93492460482077,33.53813822139266,53.97137981838762,41.45755238249378,79.90562477136415,89.26813238476258,82.72002127396853,52.39180187204839,32.317429610836236,29.22067968308839,63.808682148904715,57.21610152660757,92.4817033637847,85.70170372758416,63.22801719906901,79.90920794240635,52.9601357384363,6.029144695528954,95.125869114737,94.81429122303953,83.90972612242132,19.972465268382933,40.53147081474036,12.560240820096634,48.47693040763637,69.54689986410627,31.48925520697219,24.927877877247205,43.445989997196044,4.62510251235253,30.99520659252647,49.29757503698843,41.71457700573957,73.055876673066,96.50030218013924,40.60484509646488,28.22646472303093,2.6247215211350428,50.18309140318258,17.257296610422856,25.65372394852551,50.830894664359406,44.699674188933415,54.11964008955971,47.60414259945143,80.62425637907057,49.94448612538122,18.45912982500515,2.2284848276718505,40.25145516506875,15.624451842781351,22.589204732536082,24.75925367022652,10.811506990718122,53.13187167781025,56.801014523941106,98.26649366888161,75.14436587934506,47.894184906809414,53.9297204477624,15.418928143015131,53.06634183395135,54.4823844396476,63.16924435698588,8.652784983101203,97.86901873814193,73.29850506382503,49.51579376206937,68.66494619749164,46.81658756281573,78.51448189095426,76.64969436189462,53.93573766337867,9.018500270143848,83.52531988033802,13.740922064364359,89.62098143596955,30.7368570950764,94.39524250752518,65.75717001097308,52.42582267624475,25.079506652768757,10.60974422919636,17.70643033897822,22.074933628166715,75.56323035374434,46.87946050104935,39.48115039448563,32.898982820908074,33.764464564966445,1.4819325021204977,20.009819382144677,39.661156722806,56.50215285492936,36.6813905459177,22.591188605021618,43.85340899597626,50.508992483707395,64.5796065394402,7.240196401536226,5.716765602190311,69.12737728586353,66.60272135227143,38.725693404808915,78.87696277834895,64.98862799714038,89.79771229131308,53.67101127165203,71.42126360636448,39.05617906906866,35.83905473074604,89.95845319232313,35.49821164399173,20.072270696885475,86.96544217334419,34.95708251053422,89.2951953618437,12.347220076224241,61.06466649692596,36.62635132219102,11.38175574282716,16.55387398697271,2.903772674442895,87.9213039269711,30.49522300693561,32.7619562605505,74.74065765085072,61.879795723371366,34.29471640120478,30.428199110723064,69.14751829650871,43.167484233758756,31.524655112351198,52.36526838273768,65.19655994895093,97.54897577054481,85.38733567574872,72.16781126322847,9.578364661080563,32.63393927561431,9.442588847012424,8.920257005600163,94.01165325675446,83.47682271666486,65.32360404599761,29.342743617773436,15.091995203457397,74.37770795937931,7.390248776262642,30.183494817952795,77.41779343716863,42.174975294157434,26.69322650011896,92.58504138289472,98.39234051838419,9.271834043775174,94.06480434123887,53.35282695584137,28.044542333014842,23.96578974523206,39.48611378300423,84.68486013073719,79.16024165091436,3.3554301512658813,84.17258527606238,4.591533323798114,27.26564604158782,44.411437984422534,9.527945610950784,63.53347572177476,66.23668587488824,16.372183452608525,29.91670853054449,92.1376075778909,56.84676514817283,12.153322127095112,15.967429392417875,66.68511047148068,11.278699437218688,7.0745432964906545,22.92695384850282,24.990259236346233,57.4236483886132,32.07220492711688,64.01486179225533,12.11259148283389,14.552845804850346,12.263671216788396,63.07176999404101,13.635912806645667,44.24277849476439,21.615216612948508,57.13638760592219,50.73988535676408,49.937667919401605,94.07029049390977,27.18289983263109,67.92880243764965,95.866757960988,65.33611737736344,44.29768797784684,70.41352271971115,62.32127789396149,28.24135497308956,27.130898313404405,97.425640270988,33.730945615342534,68.7615402825982,14.639366134593669,6.922911272996157,57.806435431824376,64.86173336359847,29.866021564599677,14.0948376070145,79.45272239789446,30.435393557425215,17.838661394476006,46.30853989544632,65.88606131413826,14.669869142071533,82.41434171664788,55.6713926361862,66.2667694421554,68.02581935407423,91.34710571972789,0.1765319492529005,12.565389274052963,47.39450577807016,39.892069861227455,81.02171521186115,65.81104498794883,60.56058536118145,78.22184422672989,0.15145093833318635,94.52835368179538,5.451438072936576,91.8673152093258,99.05735365136667,7.261513661352581,73.65367125335737,35.71668727487219,71.25859484557073,57.203248634341875,39.08334807416248,89.17392076978811,60.34345740141946,56.41953540120518,94.11630374908437,64.3211988637449,98.92166048443151,81.11006378290872,44.23399376103233,90.53404970439821,7.398370479654581,64.4903697840286,4.962070891204973,15.22404547226227,53.71183356753757,38.24712372465977,92.17671269395026,36.736021257361294,8.42736029312361,50.49685818140186,27.29557028360121,97.5674710720349,39.62685183167159,74.16578449494313,62.312063884759205,40.11857452921461,59.43953493397769,93.91728813053011,75.60936202222067,34.08617426882572,87.75338293723061,72.62271753355584,91.01936515536751,0.6475102410613109,26.92922250054729,64.22753957998026,32.83596514066536,69.1168266001211,15.001578266387805,72.57675352235536,15.248618328893793,36.699509182811966,98.9797409700347,84.59669687586045,6.586376602685872,42.376808013788,49.24266483403122,42.41855697096673,75.46691139567999,40.69392587901854,93.15147521256092,64.31238529710988,81.11715487304501,21.372647588369155,11.471250676692335,45.16658333106711,44.31648640562788,85.14201838065271,10.169323591596024,45.893735197949205,5.4396517453798365,53.866820015648386,90.44675873782424,86.96955417253821,37.192254765071695,51.39339537062746,75.34633761612358,32.84025745093761,90.77800052422327,65.776909946276,78.53854045683427,9.576230930382746,20.282623167258983,81.64688418331319,90.71664800045826,38.445094880559196,4.383964637604287,44.34799066538402,60.5602351678627,44.20527206499649,17.88324573869069,8.91819555788712,32.53842919171637,86.56422862354388,57.31361197449206,42.81786927054139,23.871393515465,41.12829454162535,48.07706764520303,56.04150594461802,59.94949643469889,7.663332528745337,95.62241020536369,3.0190156081046915,49.943609748119,72.84777532727993,7.197550828570353,51.2311429903838,23.723905383634005,79.65815736018844,51.688404127133246,57.10988505038834,83.04617800247024,19.96043898387002,29.525686552047947,14.2842057970047,7.595525845953144,16.333976342876145,87.9471911208654,96.86223672383662,40.400787444026285,4.22274795379094,96.91966188453846,34.03161799309034,23.65399149695664,94.26084066552073,71.27837785159625,12.310839556829256,66.16676589665789,8.734481652067638,82.68762485935103,99.02170654470528,29.038496533061885,18.17203595743261,85.55403176756788,83.62563360482574,32.21881927661905,23.715751263095473,11.360271942194899,97.5870286457368,41.67851814430519,37.27864214784308,5.0624001388040245,45.180152328586566,74.67396109153432,23.958067365327608,40.95974978299145,45.83683385499606,93.51150406447154,69.91899559137174,96.34724929581641,25.634350146155416,8.337499840290452,60.8561198408007,47.06268740937906,85.55294418981687,25.157863841742934,75.45752846405726,70.83410649841915,19.970202779881387,30.466284650048557,62.20106679083672,95.67013207048363,19.457573873622824,65.736415706035,98.61500604534145,43.4766240163824,18.300747975525546,30.421190393902688,97.53540214100276,82.28922979443264,60.72531192751476,63.67884289965593,31.26238403604117,34.83047637153578,63.41745300332355,42.19452602720588,31.651579975885635,37.52793109276534,54.18862885831839,53.868444647954036,39.27745485037896,80.73488130079105,63.1154900224972,70.83077548228053,10.643634604054707,98.83050468207378,14.368843023594069,14.355742738369448,10.18228844836776,96.30577953345568,99.02738031147908,82.80456050320575,37.70288295106485,73.61885955026194,25.82337689244224,96.98918121455426,24.920832835139926,17.103821628358716,53.52708371699112,32.12254756154456,85.2915244959921,39.6215212232924,56.208374800993674,49.20271928249513,37.14481230544187,94.76601937106228,80.5955181427358,68.48539094988598,89.60963569401764,96.06845615361318,81.5032416478609,53.325943252546935,42.14118846142954,17.017989917233667,1.9335541858246819,75.45242946457441,16.30583320705946,46.95418740758447,19.61800622064851,54.115553958340115,79.86201277134836,43.956305592840515,14.063390493837558,77.15932295669118,11.271408890403334,10.182032569503862,23.09783749101446,21.26055509073663,99.67663320358592,35.18886878396472,89.72420438761593,51.906479081745815,85.38178973363759,11.474186278794996,89.08088714754633,78.95631057306429,75.79729005174269,12.959641667751631,96.29641372693493,59.567818493639905,65.56840677707302,45.831479608908964,21.644958750872522,78.49990406114273,20.87407448531482,98.18995608738189,92.26456932085758,49.75071500267813,37.98332707578954,97.22810582891226,14.912684460012947,48.50298233299106,76.99405726886778,4.113212431046598,26.051704293115783,53.8369382259821,95.81891916520505,77.52930847195316,6.372157133447942,45.46872965974574,79.66655501095953,57.607415746753674,51.83970258197935,63.50845490370144,52.83956491116724,15.902085561127477,90.31563489591771,81.69505646713166,6.838679417751692,9.60462623307129,42.79491645851014,95.63796803151158,99.51866922830445,50.94760947307869,41.9618437335613,46.37951962350589,95.61427423845555,53.43835489521058,38.8131771869203,93.26476476326926,6.640372986195475,52.75465619416493,28.408881158973955,22.88900729415323,3.4636852726854683,20.13782377276251,11.072038616919366,39.12513792920771,82.49619310891183,20.47336922092491,72.1142057129619,50.395426413648906,57.60896475810339,97.70146318981664,63.54289139481478,71.42986243333532,44.957692666525986,87.72382188107109,75.67536384504709,82.0931326582882,63.98919077372941,53.29410386184009,68.39704986776414,43.01678884345941,79.63111180848246,85.20880020247449,1.430551729685936,18.066477399514703,41.1783959158214,38.505242690330256,57.40661269157295,86.40623183675584,30.716533756414965,14.676253930577543,8.977969655911433,57.8714578538769,64.76994453196875,25.923297885504038,72.26073751700551,75.15920665474812,56.52939596030375,54.81692571774748,78.96013206703059,26.622381328158305,78.08453837968159,31.439709955575257,80.10630539789439,97.64671080656866,49.94280694749714,85.17962489752937,55.368400602538,79.30931716700677,8.284109600410172,5.981130960470149,53.73968591301339,42.5844664574081,15.378863740176197,1.5044011604030239,32.69543377731948,28.24651498758528,54.70407414317354,45.46619198297795,61.60796667891262,80.13061218243077,7.237987991048489,46.17446748921338,86.56700440707887,47.293920060011885,5.141094325753848,80.8036691655549,99.76449314926447,58.02720918451434,65.86477741071252,39.144549794383096,44.34260955707643,27.03501130193372,26.620105172681185,59.672384767153844,9.678744163591634,96.8700140365488,90.44262904096503,43.11672829657913,55.9642970408505,76.79511645783855,54.19533040299957,43.83739364353093,69.18787563250496,94.94537612366939,11.147996060963738,32.60884482926755,65.16045227985559,57.55081475296823,99.96763972206423,73.7898421957457,61.80308501381272,71.6994761668557,87.92818772832473,83.72892660188954,54.93044251293391,91.40223194736512,27.92182308023441,93.81445450943909,63.41719383611062,91.10962706481702,77.16780616723543,24.093692695130297,64.04238422153121,4.479429903297305,49.104716074867284,88.2990486028894,76.40775427895429,77.41020075186289,15.257390236834523,33.20380056081681,94.26295973342195,96.2551870464974,94.21957424964742,39.4446837748726,62.892581509252985,68.23673439098916,48.83116538497898,94.66107183817213,2.6592535211839796,49.60963209836131,94.5046995967834,27.441744382950017,71.1304938675171,54.52665398496078,71.06087273918511,79.33933902232691,30.002483694016536,72.5527895319344,86.8016672645966,31.138527467964128,70.77695953149184,58.43880237763265,80.94819620159657,35.890098046574,52.253887201333484,12.524179485686183,46.960108213730024,24.46447228545968,84.83351452564027,63.66473594455195,21.464619988479694,76.51578509788236,98.50960550756972,18.185745816991584,18.923378893539923,47.56593322478938,36.89034283991457,45.7124306898141,76.34407616912965,39.25960164488096,95.54150602776085,21.9977849082689,84.79541707228314,20.27341169735566,34.65911665931426,22.00493154329107,52.40364410406988,85.30819732607041,87.79395543530134,47.83388681267786,70.28141004314794,70.79158806065263,18.022839613697528,79.73510661490512,58.478639783062704,46.402200652031354,54.78937251339637,34.732900799044295,13.760518089268214,61.57058379627961,45.41423541318251,43.56949544026515,33.27526039949505,71.70755694220236,97.47415772343544,47.07115943774524,26.54190394185878,72.48799796728143,36.76116979772319,96.73992366781535,15.927283988596875,33.398193801218824,77.37140403513826,91.26340505095207,97.99171900085355,41.4528530412134,80.58244300142188,51.33926291332026,30.643735617475787,7.528503307411361,17.8901806100924,3.731031888866043,95.52255339257715,23.942158494762122,63.35668534740627,50.12356560122222,99.16503791374306,9.648025121942306,66.80908341515782,31.7270762772483,19.108796598435298,35.85467794780265,73.69748951059127,40.03228026436262,83.6374967118427,14.99743599902904,18.102777033200578,16.695448684920123,25.359032190589026,52.315704543159505,53.78739647011116,51.27560663931019,45.74352421621396,58.86377688881701,57.925822220854315,43.22816277293779,41.95234251258437,76.6482355150226,14.605313900656435,21.193893781816698,68.6725191014658,4.489998809358253,67.86062556512897,57.959462084345745,23.896023303722767,21.997289414802225,20.855978793942054,48.30874483914054,49.424883687284726,8.044165416732518,76.61865572359639,81.14246699901237,55.42860506945452,38.34673439707712,45.64540665765906,19.008796076844426,25.49920542830607,79.36402531877339,63.222164524130456,91.12929357266812,98.49705873137304,87.1445512489683,51.21668035607989,69.78854722859312,90.88999511830075,89.99013045812616,77.86812572521143,74.32695089545489,2.751889211399461,54.41868227254984,71.8451388377397,91.21942261162793,1.2039234129599619,81.8725417268474,77.54407871344037,44.280520863229555,96.8379958734055,95.23126179894462,31.46491115752412,40.49957002106353,74.91156132392172,9.404132473770677,36.69101141069719,23.912981478398976,87.79567752832457,55.82783838627595,53.713442018447196,21.277599961380556,96.34807998892991,17.102908056988063,70.29964427129518,72.48251549558937,76.70680287463058,5.812367685399511,10.94153719089771,45.564041705816564,79.14672450591385,55.57922294616883,5.4427503999844635,32.59709625108677,49.87941329239982,75.9376152183054,57.83598573913237,7.247080794367022,71.46737263417033,74.93200976692268,79.47008640004599,1.938397739738762,65.80750573973133,73.7971055971868,6.0184342196201275,10.313850621071607,10.877897461866882,77.56144798336145,21.941873548117087,71.84780730838712,73.15785151865236,55.282025617380285,13.922523998901992,1.1160009862582032,30.296008405466356,78.10252022968794,55.42213716646731,2.743977581752166,70.00080217720975,10.322496719828866,63.7087112124634,56.04414274341926,49.67263086131225,3.6841846564848457,30.291386967220557,22.33519563383276,83.79818871619,78.79268313758668,74.89432272221178,0.4982055377220185,60.16856743175127,5.290640911927169,85.48677851966224,38.20454276324258,21.400853246298755,52.76912462908847,24.774922092980066,89.14758448733178,29.48321146681363,70.56974152576502,85.43526034818825,27.548573260497335,73.6586818982074,24.00394272810281,83.88906904361657,58.13418750675524,63.76869655509449,60.31458986400254,81.48461190886229,44.84114226279458,28.08443332860554,75.05561022988807,80.50774449817881,28.381853524812417,8.941792185107122,9.207658262173691,67.56440649214085,22.849654346640904,69.3152365046017,59.5310129599849,74.6659458743814,48.86012454191161,41.66414931695024,71.54721734668887,46.59565641744668,28.47301147973087,25.58747628887168,60.95331952692625,68.27558550971465,91.76327007593457,84.39258120243217,27.025962902194088,8.482254551204916,96.96471515790782,11.036462426702009,51.52211998339615,50.44643986623167,14.540835064158275,68.38790425506821,61.78881660049588,15.748204933728127,67.79107938379185,39.45222761840086,83.54468280032278,93.70715619907374,68.97279704158392,93.93038971910204,88.6266923885492,40.24228102650861,78.91913486275598,28.19803039993748,71.98536435937092,28.76696704592552,24.095614536958408,43.79785490274117,43.489057884500646,85.63759360655783,91.73739686196394,92.72029158803876,9.168077286607247,18.771993214814977,3.9907642248371955,85.40550021266878,57.35880471945083,32.11196023718665,67.75329335230003,54.34288642867499,30.432841964702472,26.717485466452928,91.61740081519686,61.029806725053916,9.352052227353491,50.20529160303384,8.642848556329842,89.9301610431432,60.30725037140444,58.45948741830291,61.736413355400835,90.66252624673547,29.98019947356534,98.65546689209039,64.11532509671767,83.18432388050269,18.085678990818177,80.4873440369264,23.965334624832867,6.177407663102564,74.69157723727417,29.50464692102547,13.77710758951739,19.748990991023817,62.85819658735764,28.80690373035876,99.0172227048273,60.228363122051306,34.86839112933017,25.568366802999222,50.09389070404695,80.2619468747945,74.19723030160145,55.89263088875075,19.990491556289356,61.14366511015575,43.14600233999089,4.95599666103812,32.85557054638548,28.042193716004615,65.4601688937788,17.69748841274542,16.775417454806096,45.732131911477225,35.892111757523345,37.540021411983815,3.4549251387561264,16.01431485017849,69.32414656621215,13.634259126001325,18.781609509731112,54.01345526401949,36.86199051516614,79.44520109611683,31.56249995502437,4.356053867178888,66.71988139582984,51.138472241218366,3.0992740852011758,23.681219255589614,49.69601210341167,77.0088786710324,97.44200627312554,36.405426472116766,73.49156259398468,43.23871092698478,4.667627999714696,99.17488425497147,57.07631976109847,66.91001611668976,14.658352163135934,94.55700839685119,68.97262288186779,28.73847768306407,82.59173704035608,88.038499924505,31.185710567462287,50.99045078774618,94.68248287577048,22.1577461650751,91.7433860263388,2.1978015386790117,97.85753307773798,90.16223454869939,69.55845491029422,70.61958290686773,74.91668324037933,36.75417117075923,59.38111796188276,82.2089772155413,18.470314826680667,80.03343343800104,77.0363483337625,39.15171273385224,22.53915599116202,20.842910340483044,64.0529154495749,42.161471416719806,52.8353062421357,97.1443492556974,77.73214963584529,49.355467679682775,6.399683532469702,29.495856040616488,68.17029500151344,25.03978227365815,6.263310155101543,37.74725894368973,63.54298342530835,84.22104910734257,12.480074539598341,64.58932043479338,16.671641348603007,75.58551974933071,55.80722305286695,15.760650254444508,45.56204989742988,62.96966084199944,30.57080409491291,72.71589892708718,96.66410255214406,16.8014465993936,54.2740098003208,72.46501956792495,4.39080828635936,88.03684849139863,7.382620428564602,45.48926255571997,60.24287463545207,64.2422752188277,51.33706270647488,42.55570167402326,87.86646448379018,96.80534603151429,72.53590186320123,71.53531467721,97.89559126548035,87.16885398122433,46.5074449291572,50.82397303450008,70.89839484408851,75.81974973100994,27.58429282208279,36.34908184661276,55.025469075966235,80.43295895636842,52.42114779248085,55.89410694740935,46.34752803992572,77.65230111742557,13.87024152907027,69.16669083358197,38.10868277061572,68.5699803879197,67.45836598841274,64.64014686933002,59.34752287214323,74.49451924152942,29.83853321978649,17.21079881866203,14.318668554442349,99.43678065105837,13.605781682336826,23.838446483203914,91.7188328523054,12.903595425631487,65.10083017692584,91.70167633292283,64.79512413611643,79.06893141404919,48.29763453467755,90.44348472030603,4.281990958228022,4.897933957989242,32.321095916205344,91.59958826236036,30.474827083682264,35.73993653359605,41.70327624070791,75.51580662460134,87.14451821021252,83.6721937589699,93.61276299240097,30.71144079531336,94.18350420974836,10.751514337189239,92.42546083138531,78.58761130342866,35.07883460892178,83.50315444253009,14.212986229396163,73.98458375619037,1.5822187428122247,78.95785095562083,15.292953136363451,58.5232837167016,5.819661676793341,7.662095147359571,33.68915151995058,79.55226231488254,41.28087300239605,48.56108235933161,13.570040065395972,11.77133944474904,84.05327992400358,34.710945937659375,39.402210199290074,76.80107662570661,99.71005612672697,42.419279128077115,66.32663304519232,27.363306653049126,26.60964564562044,86.40551893947183,54.06791790954968,23.270178002036168,52.16311444458589,52.26787917461465,52.140749945316045,68.30835819202802,85.0284120748403,16.021083739314978,56.731907842528706,99.94312703756849,86.61447417474642,8.522187956929738,79.09994125279525,32.319332442862205,18.266155294766218,71.94956325654393,55.380833510017844,98.76011668498448,82.01806783760523,19.00053013371119,13.205078478777455,34.062655688118745,14.683407909196234,55.22970443953691,5.585762372443492,0.571818676301028,6.2735236196497235,4.2739606270231985,2.1835142730708523,24.385065372627956,51.542684504457746,59.986955454867065,54.65411335932987,86.15090140476347,40.730805393892076,1.3471016066875952,14.288638424173106,4.2931929381216705,32.17620565728739,74.71197078756185,83.40335671474523,77.21681068032892,50.73297528791759,48.321965952468645,45.20265082155983,84.51184806719688,85.49645995347834,52.30871422546205,54.74363823851712,8.179960100237338,72.41437000058528,58.47141906065948,19.805339460979944,11.209612939591363,31.598487507232075,5.0548215294966,84.19355429944173,37.83028113319234,41.68566255610779,49.08647690026383,89.64601790124522,3.1021386102129234,7.220278180622952,86.30478848272344,89.70260342475098,76.00248291665604,42.76064185731319,57.957500541406084,79.45990388315273,99.65195972554575,99.61846691177794,34.37574953054769,65.26277408366438,32.08172616807532,55.35575752844878,14.898179748118634,2.250227635289581,7.359335004783063,11.73117769666564,59.63903640957952,51.36494975280655,31.203598489527273,21.096963829358018,87.72087445340028,1.6853164642765206,85.30737026513447,91.71085286624738,72.79753777644854,46.34580859925844,19.894074414720762,62.343131270183115,12.84582598002375,19.841296697511602,17.90387945996801,21.641430728611954,41.85387888644081,60.10776019467492,29.050925494160495,73.99594509903406,28.40583282095176,47.689225654542064,67.32444398356864,53.37456958121105,17.683275383360876,19.862993846761345,67.78442809449957,58.52153716307274,51.20196505787632,56.590072366366414,19.36017660502739,4.906698606679405,36.610566719400815,31.768363122550568,90.08463577421463,6.792969924550163,93.59567447336862,67.47524685359996,14.151889019911811,58.00674821331425,50.661724548821574,90.34146868080316,56.80980287059041,4.796619665327717,96.71361213794711,96.48899316490352,17.8500656008007,3.4854950337992574,88.89591125213798,12.677794338143233,16.854967589298752,48.67262962624097,81.12447156311467,91.91682884126612,70.93149317847124,41.39665410616315,57.01873867709293,12.758089477049595,17.686086242173726,87.43273527348875,81.70775963842026,13.660363437906497,42.541714552618274,72.1439068519492,30.67274134701068,17.99913596866879,27.020008126930094,94.1631425928296,74.86049376565317,66.91968520667957,60.89359591076923,42.798191338051595,87.29931622049766,86.89063220146825,76.92845815301763,55.82934171604636,96.25237422277966,94.92956366147025,37.059876305584304,15.015879946561906,73.2945719519642,82.447474866432,50.088594309639255,91.1117912358695,16.42103711537469,64.89125524589937,52.27129237604886,25.196540532652644,18.83106727635334,72.56660575305854,87.97048931128056,75.88316327827228,95.94167036272474,29.748224899115016,84.76881795250243,50.22950462423508,81.5672208070314,31.122980302472914,35.09315738971522,75.84047252056821,60.73653024303087,86.38253911388819,43.60032519679973,63.301737725799725,30.212742913692026,83.84653583700663,1.3134313533644804,57.07104291980488,86.23420632708533,89.15783810696422,63.74036137296508,67.90199987224219,33.2249316150266,2.341181541795234,10.113667473824982,38.360040950634875,53.63853211381736,92.94464655176354,97.7709434817179,92.90805424178869,88.32684216715559,41.55230939776368,48.821670784001604,62.57952289558476,60.109087714430956,46.821489866250445,36.60504051429129,41.82685768688841,86.2956890907613,93.70412284881414,4.253004788754033,55.30854624695674,40.785577523148255,7.14572243314866,11.509502913277247,37.96485295577007,92.11528491666624,19.841382928606087,76.22596701210969,82.58298026794898,0.7380843869799536,44.108280600133234,92.41998044060907,51.763268913358296,46.75581686127318,82.66393952359033,63.85383098041943,90.8696094367039,39.99217079571798,36.72169810820076,74.0584872674477,51.868016123326846,78.48525426925374,42.837869314230105,97.90279765335839,17.83013720055632,64.80324593065767,70.06871132840479,80.29532967794907,83.65492760654622,63.67209889555811,84.61141441106123,19.410067463698866,83.11823986089615,99.24481908145995,25.552401886883892,30.384207800895425,65.91724892596159,26.192002827824588,67.68470007830281,88.54846577302925,10.45845392996384,83.23755950366352,71.7065382141389,73.8696348066354,80.62270348057802,88.89000679184807,2.7234862024606343,14.840263143133193,32.54584761104813,12.117453391229327,0.8162596106989439,47.9743411947502,15.858456450308012,11.734085397709837,50.19563780670471,94.35610253569466,56.91781690418763,10.021167860573799,65.84465986208072,41.49138141702464,0.8599575893585953,57.417247161191796,24.137422348640293,95.42342453540736,0.2817907902572414,31.621169611153366,64.98481661170091,4.161792350095128,97.60771234581016,12.832792474121435,80.10573885460258,30.374542713250996,4.347837366121343,29.110457785238463,92.10790573557286,53.33856444311868,98.72282619178648,24.95044528468513,25.750427045193312,7.315391915609548,95.32011269460425,15.72067730824539,55.253080987318214,70.2311466683912,89.50691682268574,89.029159911556,98.41828880188136,66.90060565110812,77.59981341171887,89.4122750677074,38.65347849084865,64.76223129838921,68.79712190433868,78.23905881644606,9.193854954191705,38.5560777883389,27.139225228136045,66.72432783061151,12.037210429854516,58.24016932377,93.27482942497166,48.46587605750964,69.61543000252158,49.628240378157344,95.8931851237068,32.26548988396687,30.88904695897793,80.68547015592021,9.484346179534086,63.77537643048387,88.91544303866212,38.61033979513076,70.78251125707196,48.55444182692481,6.645189724493184,90.90314214014063,54.86217351150731,93.75018867118847,68.42767287943637,43.0888437208335,44.957473558997606,1.9236450218148349,18.747658982768712,4.709751146271635,32.39813963897918,42.803834693171716,39.49625100622202,91.97467362459035,21.600989952993,40.46973351343712,28.453402479977253,56.94869385332512,34.290560151064234,32.170404678682154,12.776380557964384,40.77177255799151,87.19334491088414,27.31734308518493,38.88631215956821,29.265526646137417,56.18113778471718,12.48942837936774,55.26105937300403,42.09693164246451,37.62918829948718,58.91838957495743,44.692169070192215,64.6286140614828,42.366687147824464,22.609674607311415,19.150614585943025,36.99014007180619,99.85450583885458,53.689191746085186,97.82675543872553,6.05118359289275,1.8240951266305094,71.35399236646893,60.46846731949904,69.70820816752543,10.389547573916246,63.3855004263134,7.8988077389047895,21.722958421577143,80.50888049864444,21.989350414158782,27.23891645585096,88.99940121490025,91.73786052328992,79.89523214172995,74.34509903814906,35.2925657629504,58.532918444058765,26.272302819876003,38.94875011983672,29.460237762786267,72.71542229802505,14.119876538189825,27.836027733638623,32.072734841750496,1.3389938936348211,58.08814195210586,38.49871797032477,9.724257873111641,57.33901763151158,6.001676485401742,42.86742342787151,50.261404658449294,62.078764026157685,81.24948593919181,31.03563776303965,89.43762209142518,91.41653592155491,12.273357928057704,72.1649280385488,85.71790957904798]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json index 2a87731a50ff..7e4163d2c7d9 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/negative_positive.json @@ -1 +1 @@ -{"expected":[-0.0,-0.35735735,-0.7237237,-0.8468468,-0.47447446,-0.7747748,-0.24324325,-0.21621622,-0.6936937,-1.6756756,-1.3213214,-1.3033034,-1.6216216,-0.18318318,-1.09009,-0.072072074,-1.5675676,-0.96997,-0.5405405,-0.2792793,-0.18618618,-0.26126125,-0.5045045,-0.9159159,-1.4954954,-2.2432432,-3.1591592,-0.972973,-2.1411412,-0.039039038,-1.4594594,-3.048048,-1.1141142,-2.9549549,-1.1051052,-3.198198,-1.4324324,-3.7777777,-2.096096,-0.4144144,-3.096096,-1.4984984,-4.4324327,-2.9189188,-1.4054054,-4.675676,-3.2462463,-1.8168168,-0.3873874,-4.0780783,-2.7327328,-1.3873874,-0.042042043,-4.153153,-2.891892,-1.6306306,-0.36936936,-4.900901,-3.7237236,-2.5465465,-1.3693694,-0.1921922,-5.228228,-4.135135,-3.042042,-1.948949,-0.8558559,-6.396396,-5.3873873,-4.3783784,-3.3693693,-2.3603604,-1.3513514,-0.34234235,-6.5555553,-5.6306305,-4.7057056,-3.7807808,-2.855856,-1.930931,-1.006006,-0.08108108,-7.051051,-6.2102103,-5.3693695,-4.5285287,-3.6876876,-2.8468468,-2.006006,-1.1651652,-0.3243243,-8.135135,-7.3783784,-6.6216216,-5.864865,-5.108108,-4.3513513,-3.5945945,-2.837838,-2.0810812,-1.3243244,-0.5675676,-9.387387,-8.714715,-8.042042,-7.3693695,-6.6966968,-6.024024,-5.3513513,-4.6786785,-4.0060062,-3.3333333,-2.6606607,-1.987988,-1.3153154,-0.6426426,-10.723723,-10.135135,-9.546547,-8.957958,-8.3693695,-7.780781,-7.192192,-6.603604,-6.015015,-5.4264264,-4.8378377,-4.2492495,-3.6606607,-3.072072,-2.4834836,-1.8948948,-1.3063064,-0.7177177,-0.12912913,-11.8918915,-11.387387,-10.882883,-10.378378,-9.873874,-9.3693695,-8.864865,-8.36036,-7.855856,-7.3513513,-6.846847,-6.3423424,-5.8378377,-5.3333335,-4.828829,-4.324324,-3.81982,-3.3153152,-2.8108108,-2.3063064,-1.8018018,-1.2972972,-0.7927928,-0.2882883,-14.153153,-13.732733,-13.312312,-12.8918915,-12.471472,-12.051051,-11.6306305,-11.21021,-10.78979,-10.3693695,-9.948949,-9.528528,-9.1081085,-8.687688,-8.267267,-7.846847,-7.4264264,-7.0060062,-6.5855856,-6.165165,-5.744745,-5.324324,-4.903904,-4.4834833,-4.063063,-3.6426427,-3.2222223,-2.801802,-2.3813813,-1.960961,-1.5405406,-1.1201202,-0.6996997,-0.2792793,-17.087088,-16.750751,-16.414415,-16.078077,-15.741742,-15.405405,-15.069069,-14.732733,-14.396397,-14.0600605,-13.723723,-13.387387,-13.051051,-12.714715,-12.378378,-12.042042,-11.705706,-11.3693695,-11.033033,-10.696696,-10.36036,-10.024024,-9.687688,-9.351352,-9.015015,-8.6786785,-8.342342,-8.006006,-7.6696696,-7.3333335,-6.996997,-6.6606607,-6.324324,-5.987988,-5.651652,-5.3153152,-4.978979,-4.6426425,-4.3063064,-3.96997,-3.6336336,-3.2972972,-2.9609609,-2.6246247,-2.2882884,-1.951952,-1.6156156,-1.2792792,-0.9429429,-0.6066066,-0.27027026,-21.45045,-21.198198,-20.945946,-20.693693,-20.44144,-20.18919,-19.936937,-19.684685,-19.432432,-19.18018,-18.927927,-18.675676,-18.423424,-18.171171,-17.918919,-17.666666,-17.414415,-17.162163,-16.90991,-16.657658,-16.405405,-16.153152,-15.900901,-15.648648,-15.396397,-15.144144,-14.8918915,-14.63964,-14.387387,-14.135135,-13.882883,-13.6306305,-13.378378,-13.126126,-12.873874,-12.621622,-12.3693695,-12.117117,-11.864865,-11.612613,-11.36036,-11.1081085,-10.855856,-10.603603,-10.351352,-10.099099,-9.846847,-9.594595,-9.342342,-9.09009,-8.837838,-8.585586,-8.333333,-8.081081,-7.828829,-7.5765767,-7.324324,-7.072072,-6.81982,-6.5675673,-6.3153152,-6.063063,-5.810811,-5.5585585,-5.3063064,-5.0540543,-4.8018017,-4.5495496,-4.2972975,-4.045045,-3.7927928,-3.5405405,-3.2882884,-3.036036,-2.7837837,-2.5315316,-2.2792792,-2.0270271,-1.7747748,-1.5225226,-1.2702702,-1.018018,-0.7657658,-0.5135135,-0.26126125,-0.009009009,-28.504505,-28.336336,-28.168169,-28.0,-27.831831,-27.663664,-27.495495,-27.327328,-27.159159,-26.990992,-26.822823,-26.654655,-26.486486,-26.318317,-26.15015,-25.981981,-25.813814,-25.645645,-25.477478,-25.309309,-25.141142,-24.972973,-24.804806,-24.636637,-24.468468,-24.3003,-24.132132,-23.963964,-23.795795,-23.627628,-23.45946,-23.291292,-23.123123,-22.954954,-22.786787,-22.618618,-22.45045,-22.282282,-22.114115,-21.945946,-21.777779,-21.60961,-21.44144,-21.273273,-21.105104,-20.936937,-20.768768,-20.600601,-20.432432,-20.264265,-20.096096,-19.927927,-19.75976,-19.59159,-19.423424,-19.255255,-19.087088,-18.918919,-18.750751,-18.582582,-18.414415,-18.246246,-18.078077,-17.90991,-17.741741,-17.573574,-17.405405,-17.237238,-17.069069,-16.900902,-16.732733,-16.564564,-16.396397,-16.228228,-16.06006,-15.8918915,-15.723723,-15.555555,-15.387387,-15.219219,-15.051051,-14.882883,-14.714715,-14.546547,-14.378378,-14.21021,-14.042042,-13.873874,-13.705706,-13.537538,-13.3693695,-13.201201,-13.033033,-12.864865,-12.696696,-12.528528,-12.36036,-12.192192,-12.024024,-11.855856,-11.687688,-11.51952,-11.351352,-11.183183,-11.015015,-10.846847,-10.6786785,-10.51051,-10.342342,-10.174174,-10.006006,-9.837838,-9.66967,-9.501501,-9.333333,-9.165165,-8.996997,-8.828829,-8.660661,-8.492493,-8.324325,-8.156157,-7.987988,-7.81982,-7.651652,-7.4834833,-7.3153152,-7.147147,-6.978979,-6.810811,-6.6426425,-6.4744744,-6.3063064,-6.1381383,-5.9699697,-5.8018017,-5.6336336,-5.4654655,-5.2972975,-5.129129,-4.960961,-4.792793,-4.6246247,-4.4564567,-4.288288,-4.12012,-3.951952,-3.7837837,-3.6156156,-3.4474475,-3.2792792,-3.1111112,-2.9429429,-2.7747748,-2.6066067,-2.4384384,-2.2702703,-2.102102,-1.933934,-1.7657658,-1.5975976,-1.4294294,-1.2612612,-1.093093,-0.9249249,-0.7567568,-0.5885886,-0.4204204,-0.25225225,-0.084084086,-42.95796,-42.873875,-42.78979,-42.705708,-42.62162,-42.537537,-42.453453,-42.36937,-42.285286,-42.201202,-42.11712,-42.03303,-41.948948,-41.864864,-41.78078,-41.696697,-41.612614,-41.52853,-41.444443,-41.36036,-41.276276,-41.192192,-41.10811,-41.024025,-40.93994,-40.855854,-40.77177,-40.687687,-40.603603,-40.51952,-40.435436,-40.351353,-40.26727,-40.18318,-40.0991,-40.015015,-39.93093,-39.846848,-39.762764,-39.67868,-39.594593,-39.51051,-39.426426,-39.342342,-39.25826,-39.174175,-39.09009,-39.006004,-38.92192,-38.837837,-38.753754,-38.66967,-38.585587,-38.501503,-38.417416,-38.333332,-38.24925,-38.165165,-38.08108,-37.996998,-37.912914,-37.82883,-37.744743,-37.66066,-37.576576,-37.492493,-37.40841,-37.324326,-37.240242,-37.156155,-37.07207,-36.987988,-36.903904,-36.81982,-36.735737,-36.651653,-36.567566,-36.483482,-36.3994,-36.315315,-36.23123,-36.14715,-36.063065,-35.978977,-35.894894,-35.81081,-35.726727,-35.642643,-35.55856,-35.474476,-35.39039,-35.306305,-35.22222,-35.138138,-35.054054,-34.96997,-34.885887,-34.801804,-34.717716,-34.633633,-34.54955,-34.465466,-34.381382,-34.2973,-34.213215,-34.129128,-34.045044,-33.96096,-33.876877,-33.792793,-33.70871,-33.624626,-33.54054,-33.456455,-33.37237,-33.28829,-33.204205,-33.12012,-33.036037,-32.95195,-32.867867,-32.783783,-32.6997,-32.615616,-32.531532,-32.44745,-32.363365,-32.279278,-32.195194,-32.11111,-32.027027,-31.942944,-31.858858,-31.774775,-31.690691,-31.606607,-31.522522,-31.438438,-31.354355,-31.27027,-31.186186,-31.102102,-31.018019,-30.933933,-30.84985,-30.765766,-30.681683,-30.597597,-30.513514,-30.42943,-30.345345,-30.261261,-30.177177,-30.093094,-30.009008,-29.924925,-29.840841,-29.756756,-29.672672,-29.588589,-29.504505,-29.42042,-29.336336,-29.252253,-29.168169,-29.084084,-29.0,-28.915916,-28.831831,-28.747747,-28.663664,-28.57958,-28.495495,-28.411411,-28.327328,-28.243244,-28.159159,-28.075075,-27.990992,-27.906906,-27.822823,-27.738739,-27.654655,-27.57057,-27.486486,-27.402403,-27.318317,-27.234234,-27.15015,-27.066067,-26.981981,-26.897898,-26.813814,-26.72973,-26.645645,-26.561562,-26.477478,-26.393393,-26.309309,-26.225225,-26.141142,-26.057056,-25.972973,-25.88889,-25.804806,-25.72072,-25.636637,-25.552553,-25.468468,-25.384384,-25.3003,-25.216217,-25.132132,-25.048048,-24.963964,-24.879879,-24.795795,-24.711712,-24.627628,-24.543543,-24.45946,-24.375376,-24.291292,-24.207207,-24.123123,-24.03904,-23.954954,-23.87087,-23.786787,-23.702703,-23.618618,-23.534534,-23.45045,-23.366365,-23.282282,-23.198198,-23.114115,-23.03003,-22.945946,-22.861862,-22.777779,-22.693693,-22.60961,-22.525526,-22.44144,-22.357357,-22.273273,-22.18919,-22.105104,-22.02102,-21.936937,-21.852854,-21.768768,-21.684685,-21.600601,-21.516516,-21.432432,-21.348349,-21.264265,-21.18018,-21.096096,-21.012012,-20.927927,-20.843843,-20.75976,-20.675676,-20.59159,-20.507507,-20.423424,-20.33934,-20.255255,-20.171171,-20.087088,-20.003002,-19.918919,-19.834835,-19.750751,-19.666666,-19.582582,-19.498499,-19.414415,-19.33033,-19.246246,-19.162163,-19.078077,-18.993994,-18.90991,-18.825827,-18.741741,-18.657658,-18.573574,-18.489489,-18.405405,-18.321321,-18.237238,-18.153152,-18.069069,-17.984985,-17.900902,-17.816816,-17.732733,-17.64865,-17.564564,-17.48048,-17.396397,-17.312313,-17.228228,-17.144144,-17.06006,-16.975975,-16.891891,-16.807808,-16.723724,-16.639639,-16.555555,-16.471472,-16.387388,-16.303303,-16.21922,-16.135136,-16.05105,-15.966967,-15.882883,-15.798799,-15.714715,-15.6306305,-15.546547,-15.462462,-15.378378,-15.294294,-15.21021,-15.126126,-15.042042,-14.957958,-14.873874,-14.78979,-14.705706,-14.621622,-14.537538,-14.453453,-14.3693695,-14.285285,-14.201201,-14.117117,-14.033033,-13.948949,-13.864865,-13.780781,-13.696696,-13.612613,-13.528528,-13.444445,-13.36036,-13.276277,-13.192192,-13.1081085,-13.024024,-12.9399395,-12.855856,-12.771771,-12.687688,-12.603603,-12.51952,-12.435435,-12.351352,-12.267267,-12.183183,-12.099099,-12.015015,-11.930931,-11.846847,-11.762763,-11.6786785,-11.594595,-11.51051,-11.426427,-11.342342,-11.258258,-11.174174,-11.09009,-11.006006,-10.921922,-10.837838,-10.753754,-10.66967,-10.585586,-10.501501,-10.417418,-10.333333,-10.249249,-10.165165,-10.081081,-9.996997,-9.912913,-9.828829,-9.744744,-9.660661,-9.576576,-9.492493,-9.408408,-9.324325,-9.24024,-9.156157,-9.072072,-8.9879875,-8.903904,-8.819819,-8.735736,-8.651651,-8.567568,-8.483483,-8.3994,-8.315315,-8.231232,-8.147147,-8.063063,-7.978979,-7.894895,-7.810811,-7.7267265,-7.6426425,-7.5585585,-7.4744744,-7.3903904,-7.3063064,-7.2222223,-7.1381383,-7.0540543,-6.9699697,-6.8858857,-6.8018017,-6.7177176,-6.6336336,-6.5495496,-6.4654655,-6.3813815,-6.2972975,-6.2132134,-6.129129,-6.045045,-5.960961,-5.876877,-5.792793,-5.708709,-5.6246247,-5.5405407,-5.4564567,-5.372372,-5.288288,-5.204204,-5.12012,-5.036036,-4.951952,-4.867868,-4.783784,-4.6997,-4.615616,-4.5315313,-4.4474473,-4.3633633,-4.279279,-4.195195,-4.111111,-4.027027,-3.9429429,-3.8588588,-3.7747748,-3.6906908,-3.6066067,-3.5225224,-3.4384384,-3.3543544,-3.2702703,-3.186186,-3.102102,-3.018018,-2.933934,-2.84985,-2.7657657,-2.6816816,-2.5975976,-2.5135136,-2.4294295,-2.3453453,-2.2612612,-2.1771772,-2.0930932,-2.0090091,-1.924925,-1.8408408,-1.7567568,-1.6726726,-1.5885886,-1.5045046,-1.4204204,-1.3363364,-1.2522522,-1.1681682,-1.084084,-1.0],"x":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0],"y":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0]} +{"expected":[-0.0,-0.3573618,-0.7237234,-0.8468505,-0.4744742,-0.7747781,-0.24324322,-0.21621954,-0.69369245,-1.6756716,-1.32132,-1.3032995,-1.6216156,-0.18317986,-1.0900893,-0.0720737,-1.5675714,-0.96996784,-0.5405407,-0.27928162,-0.1861906,-0.26126766,-0.50449824,-0.9159117,-1.4954932,-2.2432427,-3.1591604,-0.97297,-2.14114,-0.03903961,-1.4594617,-3.0480466,-1.1141143,-2.9549568,-1.1051085,-3.198203,-1.4324341,-3.7777734,-2.0960932,-0.41441298,-3.096096,-1.4984999,-4.432435,-2.9189148,-1.4054027,-4.6756744,-3.2462463,-1.8168182,-0.38739014,-4.078082,-2.732738,-1.3873863,-0.042042255,-4.1531477,-2.8918877,-1.6306276,-0.3693676,-4.9009004,-3.7237244,-2.5465484,-1.3693724,-0.19219637,-5.2282276,-4.1351357,-3.0420437,-1.9489517,-0.8558521,-6.396394,-5.387386,-4.378378,-3.36937,-2.360362,-1.3513489,-0.34234095,-6.5555553,-5.6306314,-4.7057076,-3.7807837,-2.8558598,-1.9309359,-1.0060043,-0.08107567,-7.051047,-6.210207,-5.3693714,-4.5285273,-3.687683,-2.8468475,-2.0060034,-1.1651678,-0.32432365,-8.135139,-7.37838,-6.621628,-5.864868,-5.1081085,-4.351349,-3.5945892,-2.8378372,-2.0810776,-1.3243256,-0.5675659,-9.38739,-8.714715,-8.042047,-7.3693714,-6.6966963,-6.024028,-5.3513527,-4.6786766,-4.0060015,-3.333333,-2.660658,-1.9879894,-1.3153143,-0.64263916,-10.723724,-10.135134,-9.546549,-8.957958,-8.369373,-7.7807827,-7.192198,-6.603607,-6.015009,-5.426424,-4.8378334,-4.2492485,-3.660658,-3.072073,-2.4834824,-1.8948975,-1.3063068,-0.71772194,-0.12913132,-11.891892,-11.387391,-10.882885,-10.378376,-9.87387,-9.369369,-8.864862,-8.360361,-7.855855,-7.351349,-6.8468475,-6.3423414,-5.83784,-5.333334,-4.8288326,-4.3243265,-3.8198252,-3.315319,-2.8108053,-2.306304,-1.8017979,-1.2972965,-0.7927904,-0.28828907,-14.153152,-13.732735,-13.312313,-12.8918915,-12.471474,-12.051052,-11.630634,-11.210213,-10.789787,-10.369366,-9.948948,-9.528526,-9.1081085,-8.687687,-8.267265,-7.8468475,-7.426426,-7.006008,-6.5855865,-6.165169,-5.744751,-5.3243256,-4.9039,-4.4834824,-4.063057,-3.6426392,-3.2222214,-2.8018036,-2.3813782,-1.9609604,-1.5405426,-1.1201248,-0.6996994,-0.27928162,-17.087091,-16.750751,-16.414417,-16.078075,-15.741741,-15.405401,-15.069067,-14.732733,-14.396393,-14.060059,-13.723724,-13.38739,-13.05105,-12.714716,-12.378382,-12.0420475,-11.705708,-11.369366,-11.033031,-10.6966915,-10.360357,-10.024023,-9.687689,-9.351349,-9.015015,-8.67868,-8.34234,-8.006006,-7.669672,-7.333338,-6.996998,-6.6606636,-6.3243217,-5.9879875,-5.6516476,-5.3153133,-4.978979,-4.642639,-4.306305,-3.9699707,-3.6336365,-3.2972965,-2.9609623,-2.624628,-2.2882938,-1.9519539,-1.615612,-1.2792778,-0.94293785,-0.6066036,-0.2702694,-21.45045,-21.198196,-20.945946,-20.693695,-20.44144,-20.18919,-19.936935,-19.684685,-19.43243,-19.18018,-18.927929,-18.675678,-18.423424,-18.17117,-17.918919,-17.666664,-17.414413,-17.162163,-16.909912,-16.657658,-16.405407,-16.153152,-15.900902,-15.648647,-15.396397,-15.144146,-14.8918915,-14.639641,-14.387386,-14.135136,-13.882881,-13.6306305,-13.37838,-13.126125,-12.873875,-12.62162,-12.3693695,-12.117115,-11.864864,-11.612614,-11.360363,-11.1081085,-10.855854,-10.603603,-10.351349,-10.099098,-9.846848,-9.594597,-9.342342,-9.090092,-8.837837,-8.585583,-8.333332,-8.081081,-7.8288307,-7.576576,-7.3243256,-7.072071,-6.8198204,-6.567566,-6.3153152,-6.0630646,-5.81081,-5.5585594,-5.306305,-5.0540543,-4.8018,-4.549549,-4.2972984,-4.0450478,-3.7927933,-3.5405388,-3.288288,-3.0360336,-2.783783,-2.5315323,-2.2792816,-2.0270271,-1.7747765,-1.522522,-1.2702675,-1.0180168,-0.76576614,-0.5135155,-0.261261,-0.009010315,-28.504503,-28.336336,-28.168167,-28.0,-27.831833,-27.663664,-27.495497,-27.327326,-27.159159,-26.99099,-26.822823,-26.654655,-26.486488,-26.31832,-26.150148,-25.981981,-25.813812,-25.645645,-25.477478,-25.30931,-25.141142,-24.972975,-24.804804,-24.636635,-24.468468,-24.3003,-24.132133,-23.963964,-23.795797,-23.627626,-23.45946,-23.29129,-23.123123,-22.954956,-22.786787,-22.61862,-22.450449,-22.282282,-22.114113,-21.945946,-21.777779,-21.609612,-21.441444,-21.27327,-21.105103,-20.936935,-20.768768,-20.600601,-20.432434,-20.264267,-20.0961,-19.927925,-19.759758,-19.59159,-19.423424,-19.255257,-19.08709,-18.918922,-18.750748,-18.58258,-18.414413,-18.246246,-18.07808,-17.909912,-17.741745,-17.57357,-17.405403,-17.237236,-17.069069,-16.900902,-16.732735,-16.564568,-16.396393,-16.228226,-16.060059,-15.8918915,-15.723724,-15.555557,-15.38739,-15.219223,-15.051048,-14.882881,-14.714714,-14.546547,-14.37838,-14.210213,-14.042046,-13.873871,-13.705704,-13.537537,-13.3693695,-13.201202,-13.033035,-12.864868,-12.696693,-12.528526,-12.360359,-12.192192,-12.024025,-11.855858,-11.687691,-11.519516,-11.351349,-11.183182,-11.015015,-10.846848,-10.67868,-10.510513,-10.342339,-10.174171,-10.006004,-9.837837,-9.66967,-9.501503,-9.333336,-9.165169,-8.996994,-8.828827,-8.66066,-8.492493,-8.324326,-8.156158,-7.9879913,-7.8198166,-7.6516495,-7.4834824,-7.3153152,-7.147148,-6.978981,-6.810814,-6.642639,-6.474472,-6.306305,-6.138138,-5.9699707,-5.8018036,-5.6336365,-5.4654617,-5.2972946,-5.1291275,-4.9609604,-4.7927933,-4.624626,-4.456459,-4.288292,-4.120117,-3.95195,-3.783783,-3.6156158,-3.4474487,-3.2792816,-3.1111145,-2.9429398,-2.7747726,-2.6066055,-2.4384384,-2.2702713,-2.1021042,-1.9339371,-1.7657623,-1.5975952,-1.4294281,-1.261261,-1.0930939,-0.92492676,-0.75675964,-0.5885849,-0.4204178,-0.25225067,-0.08408356,-42.95796,-42.873875,-42.78979,-42.705708,-42.62162,-42.537537,-42.453453,-42.36937,-42.285286,-42.201202,-42.11712,-42.03303,-41.948948,-41.864864,-41.78078,-41.696697,-41.612614,-41.52853,-41.444443,-41.36036,-41.276276,-41.192192,-41.10811,-41.024025,-40.93994,-40.855854,-40.77177,-40.687687,-40.603603,-40.51952,-40.435436,-40.351353,-40.26727,-40.18318,-40.0991,-40.015015,-39.93093,-39.846848,-39.762764,-39.67868,-39.594593,-39.51051,-39.426426,-39.342342,-39.25826,-39.174175,-39.09009,-39.006004,-38.92192,-38.837837,-38.753754,-38.66967,-38.585587,-38.501503,-38.417416,-38.333332,-38.24925,-38.165165,-38.08108,-37.996998,-37.912914,-37.82883,-37.744743,-37.66066,-37.576576,-37.492493,-37.40841,-37.324326,-37.240242,-37.156155,-37.07207,-36.987988,-36.903904,-36.81982,-36.735737,-36.651653,-36.567566,-36.483482,-36.3994,-36.315315,-36.23123,-36.14715,-36.063065,-35.978977,-35.894894,-35.81081,-35.726727,-35.642643,-35.55856,-35.474476,-35.39039,-35.306305,-35.22222,-35.138138,-35.054054,-34.96997,-34.885887,-34.801804,-34.717716,-34.633633,-34.54955,-34.465466,-34.381382,-34.2973,-34.213215,-34.129128,-34.045044,-33.96096,-33.876877,-33.792793,-33.70871,-33.624626,-33.54054,-33.456455,-33.37237,-33.28829,-33.204205,-33.12012,-33.036037,-32.95195,-32.867867,-32.783783,-32.6997,-32.615616,-32.531532,-32.44745,-32.363365,-32.279278,-32.195194,-32.11111,-32.027027,-31.942944,-31.858858,-31.774775,-31.690691,-31.606607,-31.522522,-31.438438,-31.354355,-31.27027,-31.186186,-31.102102,-31.018019,-30.933933,-30.84985,-30.765766,-30.681683,-30.597597,-30.513514,-30.42943,-30.345345,-30.261261,-30.177177,-30.093094,-30.009008,-29.924925,-29.840841,-29.756756,-29.672672,-29.588589,-29.504505,-29.42042,-29.336336,-29.252253,-29.168169,-29.084084,-29.0,-28.915916,-28.831831,-28.747747,-28.663664,-28.57958,-28.495495,-28.411411,-28.327328,-28.243244,-28.159159,-28.075075,-27.990992,-27.906906,-27.822823,-27.738739,-27.654655,-27.57057,-27.486486,-27.402403,-27.318317,-27.234234,-27.15015,-27.066067,-26.981981,-26.897898,-26.813814,-26.72973,-26.645645,-26.561562,-26.477478,-26.393393,-26.309309,-26.225225,-26.141142,-26.057056,-25.972973,-25.88889,-25.804806,-25.72072,-25.636637,-25.552553,-25.468468,-25.384384,-25.3003,-25.216217,-25.132132,-25.048048,-24.963964,-24.879879,-24.795795,-24.711712,-24.627628,-24.543543,-24.45946,-24.375376,-24.291292,-24.207207,-24.123123,-24.03904,-23.954954,-23.87087,-23.786787,-23.702703,-23.618618,-23.534534,-23.45045,-23.366365,-23.282282,-23.198198,-23.114115,-23.03003,-22.945946,-22.861862,-22.777779,-22.693693,-22.60961,-22.525526,-22.44144,-22.357357,-22.273273,-22.18919,-22.105104,-22.02102,-21.936937,-21.852854,-21.768768,-21.684685,-21.600601,-21.516516,-21.432432,-21.348349,-21.264265,-21.18018,-21.096096,-21.012012,-20.927927,-20.843843,-20.75976,-20.675676,-20.59159,-20.507507,-20.423424,-20.33934,-20.255255,-20.171171,-20.087088,-20.003002,-19.918919,-19.834835,-19.750751,-19.666666,-19.582582,-19.498499,-19.414415,-19.33033,-19.246246,-19.162163,-19.078077,-18.993994,-18.90991,-18.825827,-18.741741,-18.657658,-18.573574,-18.489489,-18.405405,-18.321321,-18.237238,-18.153152,-18.069069,-17.984985,-17.900902,-17.816816,-17.732733,-17.64865,-17.564564,-17.48048,-17.396397,-17.312313,-17.228228,-17.144144,-17.06006,-16.975975,-16.891891,-16.807808,-16.723724,-16.639639,-16.555555,-16.471472,-16.387388,-16.303303,-16.21922,-16.135136,-16.05105,-15.966967,-15.882883,-15.798799,-15.714715,-15.6306305,-15.546547,-15.462462,-15.378378,-15.294294,-15.21021,-15.126126,-15.042042,-14.957958,-14.873874,-14.78979,-14.705706,-14.621622,-14.537538,-14.453453,-14.3693695,-14.285285,-14.201201,-14.117117,-14.033033,-13.948949,-13.864865,-13.780781,-13.696696,-13.612613,-13.528528,-13.444445,-13.36036,-13.276277,-13.192192,-13.1081085,-13.024024,-12.9399395,-12.855856,-12.771771,-12.687688,-12.603603,-12.51952,-12.435435,-12.351352,-12.267267,-12.183183,-12.099099,-12.015015,-11.930931,-11.846847,-11.762763,-11.6786785,-11.594595,-11.51051,-11.426427,-11.342342,-11.258258,-11.174174,-11.09009,-11.006006,-10.921922,-10.837838,-10.753754,-10.66967,-10.585586,-10.501501,-10.417418,-10.333333,-10.249249,-10.165165,-10.081081,-9.996997,-9.912913,-9.828829,-9.744744,-9.660661,-9.576576,-9.492493,-9.408408,-9.324325,-9.24024,-9.156157,-9.072072,-8.9879875,-8.903904,-8.819819,-8.735736,-8.651651,-8.567568,-8.483483,-8.3994,-8.315315,-8.231232,-8.147147,-8.063063,-7.978979,-7.894895,-7.810811,-7.7267265,-7.6426425,-7.5585585,-7.4744744,-7.3903904,-7.3063064,-7.2222223,-7.1381383,-7.0540543,-6.9699697,-6.8858857,-6.8018017,-6.7177176,-6.6336336,-6.5495496,-6.4654655,-6.3813815,-6.2972975,-6.2132134,-6.129129,-6.045045,-5.960961,-5.876877,-5.792793,-5.708709,-5.6246247,-5.5405407,-5.4564567,-5.372372,-5.288288,-5.204204,-5.12012,-5.036036,-4.951952,-4.867868,-4.783784,-4.6997,-4.615616,-4.5315313,-4.4474473,-4.3633633,-4.279279,-4.195195,-4.111111,-4.027027,-3.9429429,-3.8588588,-3.7747748,-3.6906908,-3.6066067,-3.5225224,-3.4384384,-3.3543544,-3.2702703,-3.186186,-3.102102,-3.018018,-2.933934,-2.84985,-2.7657657,-2.6816816,-2.5975976,-2.5135136,-2.4294295,-2.3453453,-2.2612612,-2.1771772,-2.0930932,-2.0090091,-1.924925,-1.8408408,-1.7567568,-1.6726726,-1.5885886,-1.5045046,-1.4204204,-1.3363364,-1.2522522,-1.1681682,-1.084084,-1.0],"x":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0],"y":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json index c9523a6597ff..52e33e79432f 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/positive_negative.json @@ -1 +1 @@ -{"expected":[1.0,1.084084,1.1681682,1.2522522,1.3363364,1.4204204,1.5045046,1.5885886,1.6726726,1.7567568,1.8408408,1.924925,2.0090091,2.0930932,2.1771772,2.2612612,2.3453453,2.4294295,2.5135136,2.5975976,2.6816816,2.7657657,2.84985,2.933934,3.018018,3.102102,3.186186,3.2702703,3.3543544,3.4384384,3.5225224,3.6066067,3.6906908,3.7747748,3.8588588,3.9429429,4.027027,4.111111,4.195195,4.279279,4.3633633,4.4474473,4.5315313,4.615616,4.6997,4.783784,4.867868,4.951952,5.036036,5.12012,5.204204,5.288288,5.372372,5.4564567,5.5405407,5.6246247,5.708709,5.792793,5.876877,5.960961,6.045045,6.129129,6.2132134,6.2972975,6.3813815,6.4654655,6.5495496,6.6336336,6.7177176,6.8018017,6.8858857,6.9699697,7.0540543,7.1381383,7.2222223,7.3063064,7.3903904,7.4744744,7.5585585,7.6426425,7.7267265,7.810811,7.894895,7.978979,8.063063,8.147147,8.231232,8.315315,8.3994,8.483483,8.567568,8.651651,8.735736,8.819819,8.903904,8.9879875,9.072072,9.156157,9.24024,9.324325,9.408408,9.492493,9.576576,9.660661,9.744744,9.828829,9.912913,9.996997,10.081081,10.165165,10.249249,10.333333,10.417418,10.501501,10.585586,10.66967,10.753754,10.837838,10.921922,11.006006,11.09009,11.174174,11.258258,11.342342,11.426427,11.51051,11.594595,11.6786785,11.762763,11.846847,11.930931,12.015015,12.099099,12.183183,12.267267,12.351352,12.435435,12.51952,12.603603,12.687688,12.771771,12.855856,12.9399395,13.024024,13.1081085,13.192192,13.276277,13.36036,13.444445,13.528528,13.612613,13.696696,13.780781,13.864865,13.948949,14.033033,14.117117,14.201201,14.285285,14.3693695,14.453453,14.537538,14.621622,14.705706,14.78979,14.873874,14.957958,15.042042,15.126126,15.21021,15.294294,15.378378,15.462462,15.546547,15.6306305,15.714715,15.798799,15.882883,15.966967,16.05105,16.135136,16.21922,16.303303,16.387388,16.471472,16.555555,16.639639,16.723724,16.807808,16.891891,16.975975,17.06006,17.144144,17.228228,17.312313,17.396397,17.48048,17.564564,17.64865,17.732733,17.816816,17.900902,17.984985,18.069069,18.153152,18.237238,18.321321,18.405405,18.489489,18.573574,18.657658,18.741741,18.825827,18.90991,18.993994,19.078077,19.162163,19.246246,19.33033,19.414415,19.498499,19.582582,19.666666,19.750751,19.834835,19.918919,20.003002,20.087088,20.171171,20.255255,20.33934,20.423424,20.507507,20.59159,20.675676,20.75976,20.843843,20.927927,21.012012,21.096096,21.18018,21.264265,21.348349,21.432432,21.516516,21.600601,21.684685,21.768768,21.852854,21.936937,22.02102,22.105104,22.18919,22.273273,22.357357,22.44144,22.525526,22.60961,22.693693,22.777779,22.861862,22.945946,23.03003,23.114115,23.198198,23.282282,23.366365,23.45045,23.534534,23.618618,23.702703,23.786787,23.87087,23.954954,24.03904,24.123123,24.207207,24.291292,24.375376,24.45946,24.543543,24.627628,24.711712,24.795795,24.879879,24.963964,25.048048,25.132132,25.216217,25.3003,25.384384,25.468468,25.552553,25.636637,25.72072,25.804806,25.88889,25.972973,26.057056,26.141142,26.225225,26.309309,26.393393,26.477478,26.561562,26.645645,26.72973,26.813814,26.897898,26.981981,27.066067,27.15015,27.234234,27.318317,27.402403,27.486486,27.57057,27.654655,27.738739,27.822823,27.906906,27.990992,28.075075,28.159159,28.243244,28.327328,28.411411,28.495495,28.57958,28.663664,28.747747,28.831831,28.915916,29.0,29.084084,29.168169,29.252253,29.336336,29.42042,29.504505,29.588589,29.672672,29.756756,29.840841,29.924925,30.009008,30.093094,30.177177,30.261261,30.345345,30.42943,30.513514,30.597597,30.681683,30.765766,30.84985,30.933933,31.018019,31.102102,31.186186,31.27027,31.354355,31.438438,31.522522,31.606607,31.690691,31.774775,31.858858,31.942944,32.027027,32.11111,32.195194,32.279278,32.363365,32.44745,32.531532,32.615616,32.6997,32.783783,32.867867,32.95195,33.036037,33.12012,33.204205,33.28829,33.37237,33.456455,33.54054,33.624626,33.70871,33.792793,33.876877,33.96096,34.045044,34.129128,34.213215,34.2973,34.381382,34.465466,34.54955,34.633633,34.717716,34.801804,34.885887,34.96997,35.054054,35.138138,35.22222,35.306305,35.39039,35.474476,35.55856,35.642643,35.726727,35.81081,35.894894,35.978977,36.063065,36.14715,36.23123,36.315315,36.3994,36.483482,36.567566,36.651653,36.735737,36.81982,36.903904,36.987988,37.07207,37.156155,37.240242,37.324326,37.40841,37.492493,37.576576,37.66066,37.744743,37.82883,37.912914,37.996998,38.08108,38.165165,38.24925,38.333332,38.417416,38.501503,38.585587,38.66967,38.753754,38.837837,38.92192,39.006004,39.09009,39.174175,39.25826,39.342342,39.426426,39.51051,39.594593,39.67868,39.762764,39.846848,39.93093,40.015015,40.0991,40.18318,40.26727,40.351353,40.435436,40.51952,40.603603,40.687687,40.77177,40.855854,40.93994,41.024025,41.10811,41.192192,41.276276,41.36036,41.444443,41.52853,41.612614,41.696697,41.78078,41.864864,41.948948,42.03303,42.11712,42.201202,42.285286,42.36937,42.453453,42.537537,42.62162,42.705708,42.78979,42.873875,42.95796,0.084084086,0.25225225,0.4204204,0.5885886,0.7567568,0.9249249,1.093093,1.2612612,1.4294294,1.5975976,1.7657658,1.933934,2.102102,2.2702703,2.4384384,2.6066067,2.7747748,2.9429429,3.1111112,3.2792792,3.4474475,3.6156156,3.7837837,3.951952,4.12012,4.288288,4.4564567,4.6246247,4.792793,4.960961,5.129129,5.2972975,5.4654655,5.6336336,5.8018017,5.9699697,6.1381383,6.3063064,6.4744744,6.6426425,6.810811,6.978979,7.147147,7.3153152,7.4834833,7.651652,7.81982,7.987988,8.156157,8.324325,8.492493,8.660661,8.828829,8.996997,9.165165,9.333333,9.501501,9.66967,9.837838,10.006006,10.174174,10.342342,10.51051,10.6786785,10.846847,11.015015,11.183183,11.351352,11.51952,11.687688,11.855856,12.024024,12.192192,12.36036,12.528528,12.696696,12.864865,13.033033,13.201201,13.3693695,13.537538,13.705706,13.873874,14.042042,14.21021,14.378378,14.546547,14.714715,14.882883,15.051051,15.219219,15.387387,15.555555,15.723723,15.8918915,16.06006,16.228228,16.396397,16.564564,16.732733,16.900902,17.069069,17.237238,17.405405,17.573574,17.741741,17.90991,18.078077,18.246246,18.414415,18.582582,18.750751,18.918919,19.087088,19.255255,19.423424,19.59159,19.75976,19.927927,20.096096,20.264265,20.432432,20.600601,20.768768,20.936937,21.105104,21.273273,21.44144,21.60961,21.777779,21.945946,22.114115,22.282282,22.45045,22.618618,22.786787,22.954954,23.123123,23.291292,23.45946,23.627628,23.795795,23.963964,24.132132,24.3003,24.468468,24.636637,24.804806,24.972973,25.141142,25.309309,25.477478,25.645645,25.813814,25.981981,26.15015,26.318317,26.486486,26.654655,26.822823,26.990992,27.159159,27.327328,27.495495,27.663664,27.831831,28.0,28.168169,28.336336,28.504505,0.009009009,0.26126125,0.5135135,0.7657658,1.018018,1.2702702,1.5225226,1.7747748,2.0270271,2.2792792,2.5315316,2.7837837,3.036036,3.2882884,3.5405405,3.7927928,4.045045,4.2972975,4.5495496,4.8018017,5.0540543,5.3063064,5.5585585,5.810811,6.063063,6.3153152,6.5675673,6.81982,7.072072,7.324324,7.5765767,7.828829,8.081081,8.333333,8.585586,8.837838,9.09009,9.342342,9.594595,9.846847,10.099099,10.351352,10.603603,10.855856,11.1081085,11.36036,11.612613,11.864865,12.117117,12.3693695,12.621622,12.873874,13.126126,13.378378,13.6306305,13.882883,14.135135,14.387387,14.63964,14.8918915,15.144144,15.396397,15.648648,15.900901,16.153152,16.405405,16.657658,16.90991,17.162163,17.414415,17.666666,17.918919,18.171171,18.423424,18.675676,18.927927,19.18018,19.432432,19.684685,19.936937,20.18919,20.44144,20.693693,20.945946,21.198198,21.45045,0.27027026,0.6066066,0.9429429,1.2792792,1.6156156,1.951952,2.2882884,2.6246247,2.9609609,3.2972972,3.6336336,3.96997,4.3063064,4.6426425,4.978979,5.3153152,5.651652,5.987988,6.324324,6.6606607,6.996997,7.3333335,7.6696696,8.006006,8.342342,8.6786785,9.015015,9.351352,9.687688,10.024024,10.36036,10.696696,11.033033,11.3693695,11.705706,12.042042,12.378378,12.714715,13.051051,13.387387,13.723723,14.0600605,14.396397,14.732733,15.069069,15.405405,15.741742,16.078077,16.414415,16.750751,17.087088,0.2792793,0.6996997,1.1201202,1.5405406,1.960961,2.3813813,2.801802,3.2222223,3.6426427,4.063063,4.4834833,4.903904,5.324324,5.744745,6.165165,6.5855856,7.0060062,7.4264264,7.846847,8.267267,8.687688,9.1081085,9.528528,9.948949,10.3693695,10.78979,11.21021,11.6306305,12.051051,12.471472,12.8918915,13.312312,13.732733,14.153153,0.2882883,0.7927928,1.2972972,1.8018018,2.3063064,2.8108108,3.3153152,3.81982,4.324324,4.828829,5.3333335,5.8378377,6.3423424,6.846847,7.3513513,7.855856,8.36036,8.864865,9.3693695,9.873874,10.378378,10.882883,11.387387,11.8918915,0.12912913,0.7177177,1.3063064,1.8948948,2.4834836,3.072072,3.6606607,4.2492495,4.8378377,5.4264264,6.015015,6.603604,7.192192,7.780781,8.3693695,8.957958,9.546547,10.135135,10.723723,0.6426426,1.3153154,1.987988,2.6606607,3.3333333,4.0060062,4.6786785,5.3513513,6.024024,6.6966968,7.3693695,8.042042,8.714715,9.387387,0.5675676,1.3243244,2.0810812,2.837838,3.5945945,4.3513513,5.108108,5.864865,6.6216216,7.3783784,8.135135,0.3243243,1.1651652,2.006006,2.8468468,3.6876876,4.5285287,5.3693695,6.2102103,7.051051,0.08108108,1.006006,1.930931,2.855856,3.7807808,4.7057056,5.6306305,6.5555553,0.34234235,1.3513514,2.3603604,3.3693693,4.3783784,5.3873873,6.396396,0.8558559,1.948949,3.042042,4.135135,5.228228,0.1921922,1.3693694,2.5465465,3.7237236,4.900901,0.36936936,1.6306306,2.891892,4.153153,0.042042043,1.3873874,2.7327328,4.0780783,0.3873874,1.8168168,3.2462463,4.675676,1.4054054,2.9189188,4.4324327,1.4984984,3.096096,0.4144144,2.096096,3.7777777,1.4324324,3.198198,1.1051052,2.9549549,1.1141142,3.048048,1.4594594,0.039039038,2.1411412,0.972973,3.1591592,2.2432432,1.4954954,0.9159159,0.5045045,0.26126125,0.18618618,0.2792793,0.5405405,0.96997,1.5675676,0.072072074,1.09009,0.18318318,1.6216216,1.3033034,1.3213214,1.6756756,0.6936937,0.21621622,0.24324325,0.7747748,0.47447446,0.8468468,0.7237237,0.35735735,0.0],"x":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0],"y":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0]} +{"expected":[1.0,1.084084,1.1681682,1.2522522,1.3363364,1.4204204,1.5045046,1.5885886,1.6726726,1.7567568,1.8408408,1.924925,2.0090091,2.0930932,2.1771772,2.2612612,2.3453453,2.4294295,2.5135136,2.5975976,2.6816816,2.7657657,2.84985,2.933934,3.018018,3.102102,3.186186,3.2702703,3.3543544,3.4384384,3.5225224,3.6066067,3.6906908,3.7747748,3.8588588,3.9429429,4.027027,4.111111,4.195195,4.279279,4.3633633,4.4474473,4.5315313,4.615616,4.6997,4.783784,4.867868,4.951952,5.036036,5.12012,5.204204,5.288288,5.372372,5.4564567,5.5405407,5.6246247,5.708709,5.792793,5.876877,5.960961,6.045045,6.129129,6.2132134,6.2972975,6.3813815,6.4654655,6.5495496,6.6336336,6.7177176,6.8018017,6.8858857,6.9699697,7.0540543,7.1381383,7.2222223,7.3063064,7.3903904,7.4744744,7.5585585,7.6426425,7.7267265,7.810811,7.894895,7.978979,8.063063,8.147147,8.231232,8.315315,8.3994,8.483483,8.567568,8.651651,8.735736,8.819819,8.903904,8.9879875,9.072072,9.156157,9.24024,9.324325,9.408408,9.492493,9.576576,9.660661,9.744744,9.828829,9.912913,9.996997,10.081081,10.165165,10.249249,10.333333,10.417418,10.501501,10.585586,10.66967,10.753754,10.837838,10.921922,11.006006,11.09009,11.174174,11.258258,11.342342,11.426427,11.51051,11.594595,11.6786785,11.762763,11.846847,11.930931,12.015015,12.099099,12.183183,12.267267,12.351352,12.435435,12.51952,12.603603,12.687688,12.771771,12.855856,12.9399395,13.024024,13.1081085,13.192192,13.276277,13.36036,13.444445,13.528528,13.612613,13.696696,13.780781,13.864865,13.948949,14.033033,14.117117,14.201201,14.285285,14.3693695,14.453453,14.537538,14.621622,14.705706,14.78979,14.873874,14.957958,15.042042,15.126126,15.21021,15.294294,15.378378,15.462462,15.546547,15.6306305,15.714715,15.798799,15.882883,15.966967,16.05105,16.135136,16.21922,16.303303,16.387388,16.471472,16.555555,16.639639,16.723724,16.807808,16.891891,16.975975,17.06006,17.144144,17.228228,17.312313,17.396397,17.48048,17.564564,17.64865,17.732733,17.816816,17.900902,17.984985,18.069069,18.153152,18.237238,18.321321,18.405405,18.489489,18.573574,18.657658,18.741741,18.825827,18.90991,18.993994,19.078077,19.162163,19.246246,19.33033,19.414415,19.498499,19.582582,19.666666,19.750751,19.834835,19.918919,20.003002,20.087088,20.171171,20.255255,20.33934,20.423424,20.507507,20.59159,20.675676,20.75976,20.843843,20.927927,21.012012,21.096096,21.18018,21.264265,21.348349,21.432432,21.516516,21.600601,21.684685,21.768768,21.852854,21.936937,22.02102,22.105104,22.18919,22.273273,22.357357,22.44144,22.525526,22.60961,22.693693,22.777779,22.861862,22.945946,23.03003,23.114115,23.198198,23.282282,23.366365,23.45045,23.534534,23.618618,23.702703,23.786787,23.87087,23.954954,24.03904,24.123123,24.207207,24.291292,24.375376,24.45946,24.543543,24.627628,24.711712,24.795795,24.879879,24.963964,25.048048,25.132132,25.216217,25.3003,25.384384,25.468468,25.552553,25.636637,25.72072,25.804806,25.88889,25.972973,26.057056,26.141142,26.225225,26.309309,26.393393,26.477478,26.561562,26.645645,26.72973,26.813814,26.897898,26.981981,27.066067,27.15015,27.234234,27.318317,27.402403,27.486486,27.57057,27.654655,27.738739,27.822823,27.906906,27.990992,28.075075,28.159159,28.243244,28.327328,28.411411,28.495495,28.57958,28.663664,28.747747,28.831831,28.915916,29.0,29.084084,29.168169,29.252253,29.336336,29.42042,29.504505,29.588589,29.672672,29.756756,29.840841,29.924925,30.009008,30.093094,30.177177,30.261261,30.345345,30.42943,30.513514,30.597597,30.681683,30.765766,30.84985,30.933933,31.018019,31.102102,31.186186,31.27027,31.354355,31.438438,31.522522,31.606607,31.690691,31.774775,31.858858,31.942944,32.027027,32.11111,32.195194,32.279278,32.363365,32.44745,32.531532,32.615616,32.6997,32.783783,32.867867,32.95195,33.036037,33.12012,33.204205,33.28829,33.37237,33.456455,33.54054,33.624626,33.70871,33.792793,33.876877,33.96096,34.045044,34.129128,34.213215,34.2973,34.381382,34.465466,34.54955,34.633633,34.717716,34.801804,34.885887,34.96997,35.054054,35.138138,35.22222,35.306305,35.39039,35.474476,35.55856,35.642643,35.726727,35.81081,35.894894,35.978977,36.063065,36.14715,36.23123,36.315315,36.3994,36.483482,36.567566,36.651653,36.735737,36.81982,36.903904,36.987988,37.07207,37.156155,37.240242,37.324326,37.40841,37.492493,37.576576,37.66066,37.744743,37.82883,37.912914,37.996998,38.08108,38.165165,38.24925,38.333332,38.417416,38.501503,38.585587,38.66967,38.753754,38.837837,38.92192,39.006004,39.09009,39.174175,39.25826,39.342342,39.426426,39.51051,39.594593,39.67868,39.762764,39.846848,39.93093,40.015015,40.0991,40.18318,40.26727,40.351353,40.435436,40.51952,40.603603,40.687687,40.77177,40.855854,40.93994,41.024025,41.10811,41.192192,41.276276,41.36036,41.444443,41.52853,41.612614,41.696697,41.78078,41.864864,41.948948,42.03303,42.11712,42.201202,42.285286,42.36937,42.453453,42.537537,42.62162,42.705708,42.78979,42.873875,42.95796,0.08408356,0.25225067,0.4204178,0.5885849,0.75675964,0.92492676,1.0930939,1.261261,1.4294281,1.5975952,1.7657623,1.9339371,2.1021042,2.2702713,2.4384384,2.6066055,2.7747726,2.9429398,3.1111145,3.2792816,3.4474487,3.6156158,3.783783,3.95195,4.120117,4.288292,4.456459,4.624626,4.7927933,4.9609604,5.1291275,5.2972946,5.4654617,5.6336365,5.8018036,5.9699707,6.138138,6.306305,6.474472,6.642639,6.810814,6.978981,7.147148,7.3153152,7.4834824,7.6516495,7.8198166,7.9879913,8.156158,8.324326,8.492493,8.66066,8.828827,8.996994,9.165169,9.333336,9.501503,9.66967,9.837837,10.006004,10.174171,10.342339,10.510513,10.67868,10.846848,11.015015,11.183182,11.351349,11.519516,11.687691,11.855858,12.024025,12.192192,12.360359,12.528526,12.696693,12.864868,13.033035,13.201202,13.3693695,13.537537,13.705704,13.873871,14.042046,14.210213,14.37838,14.546547,14.714714,14.882881,15.051048,15.219223,15.38739,15.555557,15.723724,15.8918915,16.060059,16.228226,16.396393,16.564568,16.732735,16.900902,17.069069,17.237236,17.405403,17.57357,17.741745,17.909912,18.07808,18.246246,18.414413,18.58258,18.750748,18.918922,19.08709,19.255257,19.423424,19.59159,19.759758,19.927925,20.0961,20.264267,20.432434,20.600601,20.768768,20.936935,21.105103,21.27327,21.441444,21.609612,21.777779,21.945946,22.114113,22.282282,22.450449,22.61862,22.786787,22.954956,23.123123,23.29129,23.45946,23.627626,23.795797,23.963964,24.132133,24.3003,24.468468,24.636635,24.804804,24.972975,25.141142,25.30931,25.477478,25.645645,25.813812,25.981981,26.150148,26.31832,26.486488,26.654655,26.822823,26.99099,27.159159,27.327326,27.495497,27.663664,27.831833,28.0,28.168167,28.336336,28.504503,0.009010315,0.261261,0.5135155,0.76576614,1.0180168,1.2702675,1.522522,1.7747765,2.0270271,2.2792816,2.5315323,2.783783,3.0360336,3.288288,3.5405388,3.7927933,4.0450478,4.2972984,4.549549,4.8018,5.0540543,5.306305,5.5585594,5.81081,6.0630646,6.3153152,6.567566,6.8198204,7.072071,7.3243256,7.576576,7.8288307,8.081081,8.333332,8.585583,8.837837,9.090092,9.342342,9.594597,9.846848,10.099098,10.351349,10.603603,10.855854,11.1081085,11.360363,11.612614,11.864864,12.117115,12.3693695,12.62162,12.873875,13.126125,13.37838,13.6306305,13.882881,14.135136,14.387386,14.639641,14.8918915,15.144146,15.396397,15.648647,15.900902,16.153152,16.405407,16.657658,16.909912,17.162163,17.414413,17.666664,17.918919,18.17117,18.423424,18.675678,18.927929,19.18018,19.43243,19.684685,19.936935,20.18919,20.44144,20.693695,20.945946,21.198196,21.45045,0.2702694,0.6066036,0.94293785,1.2792778,1.615612,1.9519539,2.2882938,2.624628,2.9609623,3.2972965,3.6336365,3.9699707,4.306305,4.642639,4.978979,5.3153133,5.6516476,5.9879875,6.3243217,6.6606636,6.996998,7.333338,7.669672,8.006006,8.34234,8.67868,9.015015,9.351349,9.687689,10.024023,10.360357,10.6966915,11.033031,11.369366,11.705708,12.0420475,12.378382,12.714716,13.05105,13.38739,13.723724,14.060059,14.396393,14.732733,15.069067,15.405401,15.741741,16.078075,16.414417,16.750751,17.087091,0.27928162,0.6996994,1.1201248,1.5405426,1.9609604,2.3813782,2.8018036,3.2222214,3.6426392,4.063057,4.4834824,4.9039,5.3243256,5.744751,6.165169,6.5855865,7.006008,7.426426,7.8468475,8.267265,8.687687,9.1081085,9.528526,9.948948,10.369366,10.789787,11.210213,11.630634,12.051052,12.471474,12.8918915,13.312313,13.732735,14.153152,0.28828907,0.7927904,1.2972965,1.8017979,2.306304,2.8108053,3.315319,3.8198252,4.3243265,4.8288326,5.333334,5.83784,6.3423414,6.8468475,7.351349,7.855855,8.360361,8.864862,9.369369,9.87387,10.378376,10.882885,11.387391,11.891892,0.12913132,0.71772194,1.3063068,1.8948975,2.4834824,3.072073,3.660658,4.2492485,4.8378334,5.426424,6.015009,6.603607,7.192198,7.7807827,8.369373,8.957958,9.546549,10.135134,10.723724,0.64263916,1.3153143,1.9879894,2.660658,3.333333,4.0060015,4.6786766,5.3513527,6.024028,6.6966963,7.3693714,8.042047,8.714715,9.38739,0.5675659,1.3243256,2.0810776,2.8378372,3.5945892,4.351349,5.1081085,5.864868,6.621628,7.37838,8.135139,0.32432365,1.1651678,2.0060034,2.8468475,3.687683,4.5285273,5.3693714,6.210207,7.051047,0.08107567,1.0060043,1.9309359,2.8558598,3.7807837,4.7057076,5.6306314,6.5555553,0.34234095,1.3513489,2.360362,3.36937,4.378378,5.387386,6.396394,0.8558521,1.9489517,3.0420437,4.1351357,5.2282276,0.19219637,1.3693724,2.5465484,3.7237244,4.9009004,0.3693676,1.6306276,2.8918877,4.1531477,0.042042255,1.3873863,2.732738,4.078082,0.38739014,1.8168182,3.2462463,4.6756744,1.4054027,2.9189148,4.432435,1.4984999,3.096096,0.41441298,2.0960932,3.7777734,1.4324341,3.198203,1.1051085,2.9549568,1.1141143,3.0480466,1.4594617,0.03903961,2.14114,0.97297,3.1591604,2.2432427,1.4954932,0.9159117,0.50449824,0.26126766,0.1861906,0.27928162,0.5405407,0.96996784,1.5675714,0.0720737,1.0900893,0.18317986,1.6216156,1.3032995,1.32132,1.6756716,0.69369245,0.21621954,0.24324322,0.7747781,0.4744742,0.8468505,0.7237234,0.3573618,0.0],"x":[1.0,1.0840840840840842,1.1681681681681682,1.2522522522522523,1.3363363363363363,1.4204204204204205,1.5045045045045045,1.5885885885885886,1.6726726726726726,1.7567567567567568,1.8408408408408408,1.924924924924925,2.009009009009009,2.093093093093093,2.1771771771771773,2.2612612612612613,2.3453453453453452,2.4294294294294296,2.5135135135135136,2.5975975975975976,2.6816816816816815,2.765765765765766,2.84984984984985,2.933933933933934,3.018018018018018,3.1021021021021022,3.186186186186186,3.27027027027027,3.354354354354354,3.4384384384384385,3.5225225225225225,3.6066066066066065,3.690690690690691,3.774774774774775,3.858858858858859,3.942942942942943,4.027027027027027,4.111111111111111,4.195195195195195,4.2792792792792795,4.363363363363363,4.4474474474474475,4.531531531531532,4.615615615615615,4.6996996996997,4.783783783783784,4.867867867867868,4.951951951951952,5.036036036036036,5.12012012012012,5.2042042042042045,5.288288288288288,5.372372372372372,5.456456456456457,5.54054054054054,5.624624624624625,5.708708708708708,5.792792792792793,5.876876876876877,5.960960960960961,6.045045045045045,6.129129129129129,6.213213213213213,6.297297297297297,6.381381381381382,6.465465465465465,6.54954954954955,6.633633633633633,6.717717717717718,6.801801801801802,6.885885885885886,6.96996996996997,7.054054054054054,7.138138138138138,7.222222222222222,7.306306306306307,7.39039039039039,7.474474474474475,7.558558558558558,7.642642642642643,7.726726726726727,7.8108108108108105,7.894894894894895,7.978978978978979,8.063063063063064,8.147147147147146,8.23123123123123,8.315315315315315,8.3993993993994,8.483483483483484,8.567567567567568,8.651651651651651,8.735735735735735,8.81981981981982,8.903903903903904,8.987987987987989,9.072072072072071,9.156156156156156,9.24024024024024,9.324324324324325,9.408408408408409,9.492492492492492,9.576576576576576,9.66066066066066,9.744744744744745,9.82882882882883,9.912912912912914,9.996996996996996,10.08108108108108,10.165165165165165,10.24924924924925,10.333333333333334,10.417417417417417,10.501501501501501,10.585585585585585,10.66966966966967,10.753753753753754,10.837837837837839,10.921921921921921,11.006006006006006,11.09009009009009,11.174174174174174,11.258258258258259,11.342342342342342,11.426426426426426,11.51051051051051,11.594594594594595,11.67867867867868,11.762762762762764,11.846846846846846,11.93093093093093,12.015015015015015,12.0990990990991,12.183183183183184,12.267267267267266,12.35135135135135,12.435435435435435,12.51951951951952,12.603603603603604,12.687687687687689,12.771771771771771,12.855855855855856,12.93993993993994,13.024024024024024,13.108108108108109,13.192192192192191,13.276276276276276,13.36036036036036,13.444444444444445,13.528528528528529,13.612612612612613,13.696696696696696,13.78078078078078,13.864864864864865,13.94894894894895,14.033033033033034,14.117117117117116,14.2012012012012,14.285285285285285,14.36936936936937,14.453453453453454,14.537537537537538,14.621621621621621,14.705705705705705,14.78978978978979,14.873873873873874,14.957957957957959,15.042042042042041,15.126126126126126,15.21021021021021,15.294294294294295,15.378378378378379,15.462462462462462,15.546546546546546,15.63063063063063,15.714714714714715,15.7987987987988,15.882882882882884,15.966966966966966,16.05105105105105,16.135135135135137,16.21921921921922,16.303303303303302,16.38738738738739,16.47147147147147,16.555555555555557,16.63963963963964,16.723723723723722,16.80780780780781,16.89189189189189,16.975975975975977,17.06006006006006,17.144144144144143,17.22822822822823,17.31231231231231,17.396396396396398,17.48048048048048,17.564564564564563,17.64864864864865,17.73273273273273,17.816816816816818,17.9009009009009,17.984984984984983,18.06906906906907,18.153153153153152,18.237237237237238,18.32132132132132,18.405405405405407,18.48948948948949,18.573573573573572,18.65765765765766,18.74174174174174,18.825825825825827,18.90990990990991,18.993993993993993,19.07807807807808,19.16216216216216,19.246246246246248,19.33033033033033,19.414414414414413,19.4984984984985,19.58258258258258,19.666666666666668,19.75075075075075,19.834834834834833,19.91891891891892,20.003003003003002,20.087087087087088,20.17117117117117,20.255255255255257,20.33933933933934,20.423423423423422,20.50750750750751,20.59159159159159,20.675675675675677,20.75975975975976,20.843843843843842,20.92792792792793,21.01201201201201,21.096096096096097,21.18018018018018,21.264264264264263,21.34834834834835,21.43243243243243,21.516516516516518,21.6006006006006,21.684684684684683,21.76876876876877,21.852852852852852,21.936936936936938,22.02102102102102,22.105105105105107,22.18918918918919,22.273273273273272,22.35735735735736,22.44144144144144,22.525525525525527,22.60960960960961,22.693693693693692,22.77777777777778,22.86186186186186,22.945945945945947,23.03003003003003,23.114114114114113,23.1981981981982,23.28228228228228,23.366366366366368,23.45045045045045,23.534534534534533,23.61861861861862,23.7027027027027,23.786786786786788,23.87087087087087,23.954954954954953,24.03903903903904,24.123123123123122,24.207207207207208,24.29129129129129,24.375375375375377,24.45945945945946,24.543543543543542,24.62762762762763,24.71171171171171,24.795795795795797,24.87987987987988,24.963963963963963,25.04804804804805,25.13213213213213,25.216216216216218,25.3003003003003,25.384384384384383,25.46846846846847,25.55255255255255,25.636636636636638,25.72072072072072,25.804804804804803,25.88888888888889,25.972972972972972,26.057057057057058,26.14114114114114,26.225225225225227,26.30930930930931,26.393393393393392,26.47747747747748,26.56156156156156,26.645645645645647,26.72972972972973,26.813813813813812,26.8978978978979,26.98198198198198,27.066066066066067,27.15015015015015,27.234234234234233,27.31831831831832,27.4024024024024,27.486486486486488,27.57057057057057,27.654654654654653,27.73873873873874,27.822822822822822,27.906906906906908,27.99099099099099,28.075075075075077,28.15915915915916,28.243243243243242,28.32732732732733,28.41141141141141,28.495495495495497,28.57957957957958,28.663663663663662,28.74774774774775,28.83183183183183,28.915915915915917,29.0,29.084084084084083,29.16816816816817,29.25225225225225,29.336336336336338,29.42042042042042,29.504504504504503,29.58858858858859,29.67267267267267,29.756756756756758,29.84084084084084,29.924924924924923,30.00900900900901,30.093093093093092,30.177177177177178,30.26126126126126,30.345345345345347,30.42942942942943,30.513513513513512,30.5975975975976,30.68168168168168,30.765765765765767,30.84984984984985,30.933933933933933,31.01801801801802,31.1021021021021,31.186186186186188,31.27027027027027,31.354354354354353,31.43843843843844,31.52252252252252,31.606606606606608,31.69069069069069,31.774774774774773,31.85885885885886,31.942942942942942,32.027027027027025,32.111111111111114,32.1951951951952,32.27927927927928,32.36336336336336,32.447447447447445,32.531531531531535,32.61561561561562,32.6996996996997,32.78378378378378,32.867867867867865,32.951951951951955,33.03603603603604,33.12012012012012,33.2042042042042,33.288288288288285,33.372372372372375,33.45645645645646,33.54054054054054,33.62462462462462,33.708708708708706,33.792792792792795,33.87687687687688,33.96096096096096,34.04504504504504,34.129129129129126,34.213213213213216,34.2972972972973,34.38138138138138,34.46546546546546,34.549549549549546,34.633633633633636,34.71771771771772,34.8018018018018,34.885885885885884,34.969969969969966,35.054054054054056,35.13813813813814,35.22222222222222,35.306306306306304,35.390390390390394,35.474474474474476,35.55855855855856,35.64264264264264,35.726726726726724,35.810810810810814,35.8948948948949,35.97897897897898,36.06306306306306,36.147147147147145,36.231231231231234,36.31531531531532,36.3993993993994,36.48348348348348,36.567567567567565,36.651651651651655,36.73573573573574,36.81981981981982,36.9039039039039,36.987987987987985,37.072072072072075,37.15615615615616,37.24024024024024,37.32432432432432,37.408408408408405,37.492492492492495,37.57657657657658,37.66066066066066,37.74474474474474,37.828828828828826,37.912912912912915,37.996996996997,38.08108108108108,38.16516516516516,38.249249249249246,38.333333333333336,38.41741741741742,38.5015015015015,38.585585585585584,38.669669669669666,38.753753753753756,38.83783783783784,38.92192192192192,39.006006006006004,39.090090090090094,39.174174174174176,39.25825825825826,39.34234234234234,39.426426426426424,39.510510510510514,39.5945945945946,39.67867867867868,39.76276276276276,39.846846846846844,39.930930930930934,40.01501501501502,40.0990990990991,40.18318318318318,40.267267267267265,40.351351351351354,40.43543543543544,40.51951951951952,40.6036036036036,40.687687687687685,40.771771771771775,40.85585585585586,40.93993993993994,41.02402402402402,41.108108108108105,41.192192192192195,41.27627627627628,41.36036036036036,41.44444444444444,41.528528528528525,41.612612612612615,41.6966966966967,41.78078078078078,41.86486486486486,41.948948948948946,42.033033033033036,42.11711711711712,42.2012012012012,42.28528528528528,42.369369369369366,42.453453453453456,42.53753753753754,42.62162162162162,42.705705705705704,42.789789789789786,42.873873873873876,42.95795795795796,43.04204204204204,43.126126126126124,43.210210210210214,43.294294294294296,43.37837837837838,43.46246246246246,43.546546546546544,43.630630630630634,43.71471471471472,43.7987987987988,43.88288288288288,43.966966966966964,44.051051051051054,44.13513513513514,44.21921921921922,44.3033033033033,44.387387387387385,44.471471471471475,44.55555555555556,44.63963963963964,44.72372372372372,44.807807807807805,44.891891891891895,44.97597597597598,45.06006006006006,45.14414414414414,45.228228228228225,45.312312312312315,45.3963963963964,45.48048048048048,45.56456456456456,45.648648648648646,45.732732732732735,45.81681681681682,45.9009009009009,45.98498498498498,46.069069069069066,46.153153153153156,46.23723723723724,46.32132132132132,46.4054054054054,46.489489489489486,46.573573573573576,46.65765765765766,46.74174174174174,46.825825825825824,46.909909909909906,46.993993993993996,47.07807807807808,47.16216216216216,47.246246246246244,47.330330330330334,47.414414414414416,47.4984984984985,47.58258258258258,47.666666666666664,47.750750750750754,47.83483483483484,47.91891891891892,48.003003003003,48.087087087087085,48.171171171171174,48.25525525525526,48.33933933933934,48.42342342342342,48.507507507507505,48.591591591591595,48.67567567567568,48.75975975975976,48.84384384384384,48.927927927927925,49.012012012012015,49.0960960960961,49.18018018018018,49.26426426426426,49.348348348348345,49.432432432432435,49.51651651651652,49.6006006006006,49.68468468468468,49.768768768768766,49.852852852852855,49.93693693693694,50.02102102102102,50.1051051051051,50.189189189189186,50.273273273273276,50.35735735735736,50.44144144144144,50.525525525525524,50.609609609609606,50.693693693693696,50.77777777777778,50.86186186186186,50.945945945945944,51.030030030030034,51.114114114114116,51.1981981981982,51.28228228228228,51.366366366366364,51.450450450450454,51.53453453453454,51.61861861861862,51.7027027027027,51.786786786786784,51.870870870870874,51.95495495495496,52.03903903903904,52.12312312312312,52.207207207207205,52.291291291291294,52.37537537537538,52.45945945945946,52.54354354354354,52.627627627627625,52.711711711711715,52.7957957957958,52.87987987987988,52.96396396396396,53.048048048048045,53.132132132132135,53.21621621621622,53.3003003003003,53.38438438438438,53.468468468468465,53.552552552552555,53.63663663663664,53.72072072072072,53.8048048048048,53.888888888888886,53.972972972972975,54.05705705705706,54.14114114114114,54.22522522522522,54.309309309309306,54.393393393393396,54.47747747747748,54.56156156156156,54.645645645645644,54.729729729729726,54.813813813813816,54.8978978978979,54.98198198198198,55.066066066066064,55.150150150150154,55.234234234234236,55.31831831831832,55.4024024024024,55.486486486486484,55.570570570570574,55.65465465465466,55.73873873873874,55.82282282282282,55.906906906906904,55.990990990990994,56.07507507507508,56.15915915915916,56.24324324324324,56.327327327327325,56.411411411411414,56.4954954954955,56.57957957957958,56.66366366366366,56.747747747747745,56.831831831831835,56.91591591591592,57.0,57.08408408408408,57.168168168168165,57.252252252252255,57.33633633633634,57.42042042042042,57.5045045045045,57.588588588588586,57.672672672672675,57.75675675675676,57.84084084084084,57.92492492492492,58.009009009009006,58.093093093093096,58.17717717717718,58.26126126126126,58.34534534534534,58.429429429429426,58.513513513513516,58.5975975975976,58.68168168168168,58.765765765765764,58.849849849849846,58.933933933933936,59.01801801801802,59.1021021021021,59.186186186186184,59.270270270270274,59.354354354354356,59.43843843843844,59.52252252252252,59.606606606606604,59.690690690690694,59.77477477477478,59.85885885885886,59.94294294294294,60.027027027027025,60.111111111111114,60.1951951951952,60.27927927927928,60.36336336336336,60.447447447447445,60.531531531531535,60.61561561561562,60.6996996996997,60.78378378378378,60.867867867867865,60.951951951951955,61.03603603603604,61.12012012012012,61.2042042042042,61.288288288288285,61.372372372372375,61.45645645645646,61.54054054054054,61.62462462462462,61.708708708708706,61.792792792792795,61.87687687687688,61.96096096096096,62.04504504504504,62.129129129129126,62.213213213213216,62.2972972972973,62.38138138138138,62.46546546546546,62.549549549549546,62.633633633633636,62.71771771771772,62.8018018018018,62.885885885885884,62.969969969969966,63.054054054054056,63.13813813813814,63.22222222222222,63.306306306306304,63.390390390390394,63.474474474474476,63.55855855855856,63.64264264264264,63.726726726726724,63.810810810810814,63.8948948948949,63.97897897897898,64.06306306306307,64.14714714714715,64.23123123123123,64.31531531531532,64.3993993993994,64.48348348348348,64.56756756756756,64.65165165165165,64.73573573573573,64.81981981981981,64.90390390390391,64.98798798798799,65.07207207207207,65.15615615615616,65.24024024024024,65.32432432432432,65.4084084084084,65.49249249249249,65.57657657657657,65.66066066066067,65.74474474474475,65.82882882882883,65.91291291291292,65.996996996997,66.08108108108108,66.16516516516516,66.24924924924925,66.33333333333333,66.41741741741741,66.50150150150151,66.58558558558559,66.66966966966967,66.75375375375376,66.83783783783784,66.92192192192192,67.006006006006,67.09009009009009,67.17417417417417,67.25825825825825,67.34234234234235,67.42642642642643,67.51051051051051,67.5945945945946,67.67867867867868,67.76276276276276,67.84684684684684,67.93093093093093,68.01501501501501,68.09909909909909,68.18318318318319,68.26726726726727,68.35135135135135,68.43543543543544,68.51951951951952,68.6036036036036,68.68768768768768,68.77177177177177,68.85585585585585,68.93993993993993,69.02402402402403,69.10810810810811,69.1921921921922,69.27627627627628,69.36036036036036,69.44444444444444,69.52852852852853,69.61261261261261,69.69669669669669,69.78078078078079,69.86486486486487,69.94894894894895,70.03303303303304,70.11711711711712,70.2012012012012,70.28528528528528,70.36936936936937,70.45345345345345,70.53753753753753,70.62162162162163,70.70570570570571,70.7897897897898,70.87387387387388,70.95795795795796,71.04204204204204,71.12612612612612,71.2102102102102,71.29429429429429,71.37837837837837,71.46246246246247,71.54654654654655,71.63063063063063,71.71471471471472,71.7987987987988,71.88288288288288,71.96696696696696,72.05105105105105,72.13513513513513,72.21921921921921,72.30330330330331,72.38738738738739,72.47147147147147,72.55555555555556,72.63963963963964,72.72372372372372,72.8078078078078,72.89189189189189,72.97597597597597,73.06006006006007,73.14414414414415,73.22822822822823,73.31231231231232,73.3963963963964,73.48048048048048,73.56456456456456,73.64864864864865,73.73273273273273,73.81681681681681,73.90090090090091,73.98498498498499,74.06906906906907,74.15315315315316,74.23723723723724,74.32132132132132,74.4054054054054,74.48948948948949,74.57357357357357,74.65765765765765,74.74174174174175,74.82582582582583,74.90990990990991,74.993993993994,75.07807807807808,75.16216216216216,75.24624624624624,75.33033033033033,75.41441441441441,75.49849849849849,75.58258258258259,75.66666666666667,75.75075075075075,75.83483483483484,75.91891891891892,76.003003003003,76.08708708708708,76.17117117117117,76.25525525525525,76.33933933933933,76.42342342342343,76.50750750750751,76.5915915915916,76.67567567567568,76.75975975975976,76.84384384384384,76.92792792792793,77.01201201201201,77.09609609609609,77.18018018018019,77.26426426426427,77.34834834834835,77.43243243243244,77.51651651651652,77.6006006006006,77.68468468468468,77.76876876876877,77.85285285285285,77.93693693693693,78.02102102102103,78.10510510510511,78.1891891891892,78.27327327327328,78.35735735735736,78.44144144144144,78.52552552552552,78.6096096096096,78.69369369369369,78.77777777777777,78.86186186186187,78.94594594594595,79.03003003003003,79.11411411411412,79.1981981981982,79.28228228228228,79.36636636636636,79.45045045045045,79.53453453453453,79.61861861861861,79.70270270270271,79.78678678678679,79.87087087087087,79.95495495495496,80.03903903903904,80.12312312312312,80.2072072072072,80.29129129129129,80.37537537537537,80.45945945945945,80.54354354354355,80.62762762762763,80.71171171171171,80.7957957957958,80.87987987987988,80.96396396396396,81.04804804804805,81.13213213213213,81.21621621621621,81.30030030030031,81.38438438438439,81.46846846846847,81.55255255255256,81.63663663663664,81.72072072072072,81.8048048048048,81.88888888888889,81.97297297297297,82.05705705705705,82.14114114114115,82.22522522522523,82.30930930930931,82.3933933933934,82.47747747747748,82.56156156156156,82.64564564564564,82.72972972972973,82.81381381381381,82.89789789789789,82.98198198198199,83.06606606606607,83.15015015015015,83.23423423423424,83.31831831831832,83.4024024024024,83.48648648648648,83.57057057057057,83.65465465465465,83.73873873873873,83.82282282282283,83.90690690690691,83.990990990991,84.07507507507508,84.15915915915916,84.24324324324324,84.32732732732732,84.41141141141141,84.49549549549549,84.57957957957957,84.66366366366367,84.74774774774775,84.83183183183183,84.91591591591592,85.0],"y":[-85.0,-84.91591591591592,-84.83183183183183,-84.74774774774775,-84.66366366366367,-84.57957957957957,-84.49549549549549,-84.41141141141141,-84.32732732732732,-84.24324324324324,-84.15915915915916,-84.07507507507508,-83.990990990991,-83.90690690690691,-83.82282282282283,-83.73873873873873,-83.65465465465465,-83.57057057057057,-83.48648648648648,-83.4024024024024,-83.31831831831832,-83.23423423423424,-83.15015015015015,-83.06606606606607,-82.98198198198199,-82.89789789789789,-82.81381381381381,-82.72972972972973,-82.64564564564564,-82.56156156156156,-82.47747747747748,-82.3933933933934,-82.30930930930931,-82.22522522522523,-82.14114114114115,-82.05705705705705,-81.97297297297297,-81.88888888888889,-81.8048048048048,-81.72072072072072,-81.63663663663664,-81.55255255255256,-81.46846846846847,-81.38438438438439,-81.30030030030031,-81.21621621621621,-81.13213213213213,-81.04804804804805,-80.96396396396396,-80.87987987987988,-80.7957957957958,-80.71171171171171,-80.62762762762763,-80.54354354354355,-80.45945945945945,-80.37537537537537,-80.29129129129129,-80.2072072072072,-80.12312312312312,-80.03903903903904,-79.95495495495496,-79.87087087087087,-79.78678678678679,-79.70270270270271,-79.61861861861861,-79.53453453453453,-79.45045045045045,-79.36636636636636,-79.28228228228228,-79.1981981981982,-79.11411411411412,-79.03003003003003,-78.94594594594595,-78.86186186186187,-78.77777777777777,-78.69369369369369,-78.6096096096096,-78.52552552552552,-78.44144144144144,-78.35735735735736,-78.27327327327328,-78.1891891891892,-78.10510510510511,-78.02102102102103,-77.93693693693693,-77.85285285285285,-77.76876876876877,-77.68468468468468,-77.6006006006006,-77.51651651651652,-77.43243243243244,-77.34834834834835,-77.26426426426427,-77.18018018018019,-77.09609609609609,-77.01201201201201,-76.92792792792793,-76.84384384384384,-76.75975975975976,-76.67567567567568,-76.5915915915916,-76.50750750750751,-76.42342342342343,-76.33933933933933,-76.25525525525525,-76.17117117117117,-76.08708708708708,-76.003003003003,-75.91891891891892,-75.83483483483484,-75.75075075075075,-75.66666666666667,-75.58258258258259,-75.49849849849849,-75.41441441441441,-75.33033033033033,-75.24624624624624,-75.16216216216216,-75.07807807807808,-74.993993993994,-74.90990990990991,-74.82582582582583,-74.74174174174175,-74.65765765765765,-74.57357357357357,-74.48948948948949,-74.4054054054054,-74.32132132132132,-74.23723723723724,-74.15315315315316,-74.06906906906907,-73.98498498498499,-73.90090090090091,-73.81681681681681,-73.73273273273273,-73.64864864864865,-73.56456456456456,-73.48048048048048,-73.3963963963964,-73.31231231231232,-73.22822822822823,-73.14414414414415,-73.06006006006007,-72.97597597597597,-72.89189189189189,-72.8078078078078,-72.72372372372372,-72.63963963963964,-72.55555555555556,-72.47147147147147,-72.38738738738739,-72.30330330330331,-72.21921921921921,-72.13513513513513,-72.05105105105105,-71.96696696696696,-71.88288288288288,-71.7987987987988,-71.71471471471472,-71.63063063063063,-71.54654654654655,-71.46246246246247,-71.37837837837837,-71.29429429429429,-71.2102102102102,-71.12612612612612,-71.04204204204204,-70.95795795795796,-70.87387387387388,-70.7897897897898,-70.70570570570571,-70.62162162162163,-70.53753753753753,-70.45345345345345,-70.36936936936937,-70.28528528528528,-70.2012012012012,-70.11711711711712,-70.03303303303304,-69.94894894894895,-69.86486486486487,-69.78078078078079,-69.69669669669669,-69.61261261261261,-69.52852852852853,-69.44444444444444,-69.36036036036036,-69.27627627627628,-69.1921921921922,-69.10810810810811,-69.02402402402403,-68.93993993993993,-68.85585585585585,-68.77177177177177,-68.68768768768768,-68.6036036036036,-68.51951951951952,-68.43543543543544,-68.35135135135135,-68.26726726726727,-68.18318318318319,-68.09909909909909,-68.01501501501501,-67.93093093093093,-67.84684684684684,-67.76276276276276,-67.67867867867868,-67.5945945945946,-67.51051051051051,-67.42642642642643,-67.34234234234235,-67.25825825825825,-67.17417417417417,-67.09009009009009,-67.006006006006,-66.92192192192192,-66.83783783783784,-66.75375375375376,-66.66966966966967,-66.58558558558559,-66.50150150150151,-66.41741741741741,-66.33333333333333,-66.24924924924925,-66.16516516516516,-66.08108108108108,-65.996996996997,-65.91291291291292,-65.82882882882883,-65.74474474474475,-65.66066066066067,-65.57657657657657,-65.49249249249249,-65.4084084084084,-65.32432432432432,-65.24024024024024,-65.15615615615616,-65.07207207207207,-64.98798798798799,-64.90390390390391,-64.81981981981981,-64.73573573573573,-64.65165165165165,-64.56756756756756,-64.48348348348348,-64.3993993993994,-64.31531531531532,-64.23123123123123,-64.14714714714715,-64.06306306306307,-63.97897897897898,-63.8948948948949,-63.810810810810814,-63.726726726726724,-63.64264264264264,-63.55855855855856,-63.474474474474476,-63.390390390390394,-63.306306306306304,-63.22222222222222,-63.13813813813814,-63.054054054054056,-62.969969969969966,-62.885885885885884,-62.8018018018018,-62.71771771771772,-62.633633633633636,-62.549549549549546,-62.46546546546546,-62.38138138138138,-62.2972972972973,-62.213213213213216,-62.129129129129126,-62.04504504504504,-61.96096096096096,-61.87687687687688,-61.792792792792795,-61.708708708708706,-61.62462462462462,-61.54054054054054,-61.45645645645646,-61.372372372372375,-61.288288288288285,-61.2042042042042,-61.12012012012012,-61.03603603603604,-60.951951951951955,-60.867867867867865,-60.78378378378378,-60.6996996996997,-60.61561561561562,-60.531531531531535,-60.447447447447445,-60.36336336336336,-60.27927927927928,-60.1951951951952,-60.111111111111114,-60.027027027027025,-59.94294294294294,-59.85885885885886,-59.77477477477478,-59.690690690690694,-59.606606606606604,-59.52252252252252,-59.43843843843844,-59.354354354354356,-59.270270270270274,-59.186186186186184,-59.1021021021021,-59.01801801801802,-58.933933933933936,-58.849849849849846,-58.765765765765764,-58.68168168168168,-58.5975975975976,-58.513513513513516,-58.429429429429426,-58.34534534534534,-58.26126126126126,-58.17717717717718,-58.093093093093096,-58.009009009009006,-57.92492492492492,-57.84084084084084,-57.75675675675676,-57.672672672672675,-57.588588588588586,-57.5045045045045,-57.42042042042042,-57.33633633633634,-57.252252252252255,-57.168168168168165,-57.08408408408408,-57.0,-56.91591591591592,-56.831831831831835,-56.747747747747745,-56.66366366366366,-56.57957957957958,-56.4954954954955,-56.411411411411414,-56.327327327327325,-56.24324324324324,-56.15915915915916,-56.07507507507508,-55.990990990990994,-55.906906906906904,-55.82282282282282,-55.73873873873874,-55.65465465465466,-55.570570570570574,-55.486486486486484,-55.4024024024024,-55.31831831831832,-55.234234234234236,-55.150150150150154,-55.066066066066064,-54.98198198198198,-54.8978978978979,-54.813813813813816,-54.729729729729726,-54.645645645645644,-54.56156156156156,-54.47747747747748,-54.393393393393396,-54.309309309309306,-54.22522522522522,-54.14114114114114,-54.05705705705706,-53.972972972972975,-53.888888888888886,-53.8048048048048,-53.72072072072072,-53.63663663663664,-53.552552552552555,-53.468468468468465,-53.38438438438438,-53.3003003003003,-53.21621621621622,-53.132132132132135,-53.048048048048045,-52.96396396396396,-52.87987987987988,-52.7957957957958,-52.711711711711715,-52.627627627627625,-52.54354354354354,-52.45945945945946,-52.37537537537538,-52.291291291291294,-52.207207207207205,-52.12312312312312,-52.03903903903904,-51.95495495495496,-51.870870870870874,-51.786786786786784,-51.7027027027027,-51.61861861861862,-51.53453453453454,-51.450450450450454,-51.366366366366364,-51.28228228228228,-51.1981981981982,-51.114114114114116,-51.030030030030034,-50.945945945945944,-50.86186186186186,-50.77777777777778,-50.693693693693696,-50.609609609609606,-50.525525525525524,-50.44144144144144,-50.35735735735736,-50.273273273273276,-50.189189189189186,-50.1051051051051,-50.02102102102102,-49.93693693693694,-49.852852852852855,-49.768768768768766,-49.68468468468468,-49.6006006006006,-49.51651651651652,-49.432432432432435,-49.348348348348345,-49.26426426426426,-49.18018018018018,-49.0960960960961,-49.012012012012015,-48.927927927927925,-48.84384384384384,-48.75975975975976,-48.67567567567568,-48.591591591591595,-48.507507507507505,-48.42342342342342,-48.33933933933934,-48.25525525525526,-48.171171171171174,-48.087087087087085,-48.003003003003,-47.91891891891892,-47.83483483483484,-47.750750750750754,-47.666666666666664,-47.58258258258258,-47.4984984984985,-47.414414414414416,-47.330330330330334,-47.246246246246244,-47.16216216216216,-47.07807807807808,-46.993993993993996,-46.909909909909906,-46.825825825825824,-46.74174174174174,-46.65765765765766,-46.573573573573576,-46.489489489489486,-46.4054054054054,-46.32132132132132,-46.23723723723724,-46.153153153153156,-46.069069069069066,-45.98498498498498,-45.9009009009009,-45.81681681681682,-45.732732732732735,-45.648648648648646,-45.56456456456456,-45.48048048048048,-45.3963963963964,-45.312312312312315,-45.228228228228225,-45.14414414414414,-45.06006006006006,-44.97597597597598,-44.891891891891895,-44.807807807807805,-44.72372372372372,-44.63963963963964,-44.55555555555556,-44.471471471471475,-44.387387387387385,-44.3033033033033,-44.21921921921922,-44.13513513513514,-44.051051051051054,-43.966966966966964,-43.88288288288288,-43.7987987987988,-43.71471471471472,-43.630630630630634,-43.546546546546544,-43.46246246246246,-43.37837837837838,-43.294294294294296,-43.210210210210214,-43.126126126126124,-43.04204204204204,-42.95795795795796,-42.873873873873876,-42.789789789789786,-42.705705705705704,-42.62162162162162,-42.53753753753754,-42.453453453453456,-42.369369369369366,-42.28528528528528,-42.2012012012012,-42.11711711711712,-42.033033033033036,-41.948948948948946,-41.86486486486486,-41.78078078078078,-41.6966966966967,-41.612612612612615,-41.528528528528525,-41.44444444444444,-41.36036036036036,-41.27627627627628,-41.192192192192195,-41.108108108108105,-41.02402402402402,-40.93993993993994,-40.85585585585586,-40.771771771771775,-40.687687687687685,-40.6036036036036,-40.51951951951952,-40.43543543543544,-40.351351351351354,-40.267267267267265,-40.18318318318318,-40.0990990990991,-40.01501501501502,-39.930930930930934,-39.846846846846844,-39.76276276276276,-39.67867867867868,-39.5945945945946,-39.510510510510514,-39.426426426426424,-39.34234234234234,-39.25825825825826,-39.174174174174176,-39.090090090090094,-39.006006006006004,-38.92192192192192,-38.83783783783784,-38.753753753753756,-38.669669669669666,-38.585585585585584,-38.5015015015015,-38.41741741741742,-38.333333333333336,-38.249249249249246,-38.16516516516516,-38.08108108108108,-37.996996996997,-37.912912912912915,-37.828828828828826,-37.74474474474474,-37.66066066066066,-37.57657657657658,-37.492492492492495,-37.408408408408405,-37.32432432432432,-37.24024024024024,-37.15615615615616,-37.072072072072075,-36.987987987987985,-36.9039039039039,-36.81981981981982,-36.73573573573574,-36.651651651651655,-36.567567567567565,-36.48348348348348,-36.3993993993994,-36.31531531531532,-36.231231231231234,-36.147147147147145,-36.06306306306306,-35.97897897897898,-35.8948948948949,-35.810810810810814,-35.726726726726724,-35.64264264264264,-35.55855855855856,-35.474474474474476,-35.390390390390394,-35.306306306306304,-35.22222222222222,-35.13813813813814,-35.054054054054056,-34.969969969969966,-34.885885885885884,-34.8018018018018,-34.71771771771772,-34.633633633633636,-34.549549549549546,-34.46546546546546,-34.38138138138138,-34.2972972972973,-34.213213213213216,-34.129129129129126,-34.04504504504504,-33.96096096096096,-33.87687687687688,-33.792792792792795,-33.708708708708706,-33.62462462462462,-33.54054054054054,-33.45645645645646,-33.372372372372375,-33.288288288288285,-33.2042042042042,-33.12012012012012,-33.03603603603604,-32.951951951951955,-32.867867867867865,-32.78378378378378,-32.6996996996997,-32.61561561561562,-32.531531531531535,-32.447447447447445,-32.36336336336336,-32.27927927927928,-32.1951951951952,-32.111111111111114,-32.027027027027025,-31.942942942942942,-31.85885885885886,-31.774774774774773,-31.69069069069069,-31.606606606606608,-31.52252252252252,-31.43843843843844,-31.354354354354353,-31.27027027027027,-31.186186186186188,-31.1021021021021,-31.01801801801802,-30.933933933933933,-30.84984984984985,-30.765765765765767,-30.68168168168168,-30.5975975975976,-30.513513513513512,-30.42942942942943,-30.345345345345347,-30.26126126126126,-30.177177177177178,-30.093093093093092,-30.00900900900901,-29.924924924924923,-29.84084084084084,-29.756756756756758,-29.67267267267267,-29.58858858858859,-29.504504504504503,-29.42042042042042,-29.336336336336338,-29.25225225225225,-29.16816816816817,-29.084084084084083,-29.0,-28.915915915915917,-28.83183183183183,-28.74774774774775,-28.663663663663662,-28.57957957957958,-28.495495495495497,-28.41141141141141,-28.32732732732733,-28.243243243243242,-28.15915915915916,-28.075075075075077,-27.99099099099099,-27.906906906906908,-27.822822822822822,-27.73873873873874,-27.654654654654653,-27.57057057057057,-27.486486486486488,-27.4024024024024,-27.31831831831832,-27.234234234234233,-27.15015015015015,-27.066066066066067,-26.98198198198198,-26.8978978978979,-26.813813813813812,-26.72972972972973,-26.645645645645647,-26.56156156156156,-26.47747747747748,-26.393393393393392,-26.30930930930931,-26.225225225225227,-26.14114114114114,-26.057057057057058,-25.972972972972972,-25.88888888888889,-25.804804804804803,-25.72072072072072,-25.636636636636638,-25.55255255255255,-25.46846846846847,-25.384384384384383,-25.3003003003003,-25.216216216216218,-25.13213213213213,-25.04804804804805,-24.963963963963963,-24.87987987987988,-24.795795795795797,-24.71171171171171,-24.62762762762763,-24.543543543543542,-24.45945945945946,-24.375375375375377,-24.29129129129129,-24.207207207207208,-24.123123123123122,-24.03903903903904,-23.954954954954953,-23.87087087087087,-23.786786786786788,-23.7027027027027,-23.61861861861862,-23.534534534534533,-23.45045045045045,-23.366366366366368,-23.28228228228228,-23.1981981981982,-23.114114114114113,-23.03003003003003,-22.945945945945947,-22.86186186186186,-22.77777777777778,-22.693693693693692,-22.60960960960961,-22.525525525525527,-22.44144144144144,-22.35735735735736,-22.273273273273272,-22.18918918918919,-22.105105105105107,-22.02102102102102,-21.936936936936938,-21.852852852852852,-21.76876876876877,-21.684684684684683,-21.6006006006006,-21.516516516516518,-21.43243243243243,-21.34834834834835,-21.264264264264263,-21.18018018018018,-21.096096096096097,-21.01201201201201,-20.92792792792793,-20.843843843843842,-20.75975975975976,-20.675675675675677,-20.59159159159159,-20.50750750750751,-20.423423423423422,-20.33933933933934,-20.255255255255257,-20.17117117117117,-20.087087087087088,-20.003003003003002,-19.91891891891892,-19.834834834834833,-19.75075075075075,-19.666666666666668,-19.58258258258258,-19.4984984984985,-19.414414414414413,-19.33033033033033,-19.246246246246248,-19.16216216216216,-19.07807807807808,-18.993993993993993,-18.90990990990991,-18.825825825825827,-18.74174174174174,-18.65765765765766,-18.573573573573572,-18.48948948948949,-18.405405405405407,-18.32132132132132,-18.237237237237238,-18.153153153153152,-18.06906906906907,-17.984984984984983,-17.9009009009009,-17.816816816816818,-17.73273273273273,-17.64864864864865,-17.564564564564563,-17.48048048048048,-17.396396396396398,-17.31231231231231,-17.22822822822823,-17.144144144144143,-17.06006006006006,-16.975975975975977,-16.89189189189189,-16.80780780780781,-16.723723723723722,-16.63963963963964,-16.555555555555557,-16.47147147147147,-16.38738738738739,-16.303303303303302,-16.21921921921922,-16.135135135135137,-16.05105105105105,-15.966966966966966,-15.882882882882884,-15.7987987987988,-15.714714714714715,-15.63063063063063,-15.546546546546546,-15.462462462462462,-15.378378378378379,-15.294294294294295,-15.21021021021021,-15.126126126126126,-15.042042042042041,-14.957957957957959,-14.873873873873874,-14.78978978978979,-14.705705705705705,-14.621621621621621,-14.537537537537538,-14.453453453453454,-14.36936936936937,-14.285285285285285,-14.2012012012012,-14.117117117117116,-14.033033033033034,-13.94894894894895,-13.864864864864865,-13.78078078078078,-13.696696696696696,-13.612612612612613,-13.528528528528529,-13.444444444444445,-13.36036036036036,-13.276276276276276,-13.192192192192191,-13.108108108108109,-13.024024024024024,-12.93993993993994,-12.855855855855856,-12.771771771771771,-12.687687687687689,-12.603603603603604,-12.51951951951952,-12.435435435435435,-12.35135135135135,-12.267267267267266,-12.183183183183184,-12.0990990990991,-12.015015015015015,-11.93093093093093,-11.846846846846846,-11.762762762762764,-11.67867867867868,-11.594594594594595,-11.51051051051051,-11.426426426426426,-11.342342342342342,-11.258258258258259,-11.174174174174174,-11.09009009009009,-11.006006006006006,-10.921921921921921,-10.837837837837839,-10.753753753753754,-10.66966966966967,-10.585585585585585,-10.501501501501501,-10.417417417417417,-10.333333333333334,-10.24924924924925,-10.165165165165165,-10.08108108108108,-9.996996996996996,-9.912912912912914,-9.82882882882883,-9.744744744744745,-9.66066066066066,-9.576576576576576,-9.492492492492492,-9.408408408408409,-9.324324324324325,-9.24024024024024,-9.156156156156156,-9.072072072072071,-8.987987987987989,-8.903903903903904,-8.81981981981982,-8.735735735735735,-8.651651651651651,-8.567567567567568,-8.483483483483484,-8.3993993993994,-8.315315315315315,-8.23123123123123,-8.147147147147146,-8.063063063063064,-7.978978978978979,-7.894894894894895,-7.8108108108108105,-7.726726726726727,-7.642642642642643,-7.558558558558558,-7.474474474474475,-7.39039039039039,-7.306306306306307,-7.222222222222222,-7.138138138138138,-7.054054054054054,-6.96996996996997,-6.885885885885886,-6.801801801801802,-6.717717717717718,-6.633633633633633,-6.54954954954955,-6.465465465465465,-6.381381381381382,-6.297297297297297,-6.213213213213213,-6.129129129129129,-6.045045045045045,-5.960960960960961,-5.876876876876877,-5.792792792792793,-5.708708708708708,-5.624624624624625,-5.54054054054054,-5.456456456456457,-5.372372372372372,-5.288288288288288,-5.2042042042042045,-5.12012012012012,-5.036036036036036,-4.951951951951952,-4.867867867867868,-4.783783783783784,-4.6996996996997,-4.615615615615615,-4.531531531531532,-4.4474474474474475,-4.363363363363363,-4.2792792792792795,-4.195195195195195,-4.111111111111111,-4.027027027027027,-3.942942942942943,-3.858858858858859,-3.774774774774775,-3.690690690690691,-3.6066066066066065,-3.5225225225225225,-3.4384384384384385,-3.354354354354354,-3.27027027027027,-3.186186186186186,-3.1021021021021022,-3.018018018018018,-2.933933933933934,-2.84984984984985,-2.765765765765766,-2.6816816816816815,-2.5975975975975976,-2.5135135135135136,-2.4294294294294296,-2.3453453453453452,-2.2612612612612613,-2.1771771771771773,-2.093093093093093,-2.009009009009009,-1.924924924924925,-1.8408408408408408,-1.7567567567567568,-1.6726726726726726,-1.5885885885885886,-1.5045045045045045,-1.4204204204204205,-1.3363363363363363,-1.2522522522522523,-1.1681681681681682,-1.0840840840840842,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json index 41823b9a0a64..c49e53277c37 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_large.json @@ -1 +1 @@ -{"expected":[33.021297,3.7219477,98.73055,81.23855,87.80209,99.06292,1.3014725,2.5199893,57.981388,9.815815,78.89891,65.52185,74.51134,69.70074,51.115707,71.91155,85.22769,28.939533,87.78311,40.753143,75.57081,33.08706,65.51469,56.929085,25.309412,81.86039,7.831867,45.930027,5.0772605,24.702446,18.507624,58.22065,93.05674,69.66383,12.095247,89.926346,5.500978,95.94467,37.814228,93.15884,67.8472,93.55983,58.554157,79.909004,85.57863,60.68385,21.501413,87.261024,72.33738,7.545018,32.504158,23.939743,79.84857,55.319782,3.1387029,97.3175,86.19526,75.554825,15.673348,43.783432,53.39335,76.99213,45.53897,43.901592,89.823524,2.2288284,12.494305,22.82192,55.28543,10.136592,32.018738,86.24392,30.37761,57.080902,94.27167,40.483032,40.530457,9.780312,0.64520836,31.489376,2.4849043,31.019073,75.41465,19.268023,73.48735,43.03304,80.213326,31.31176,45.940628,73.58673,44.688404,73.65796,36.69426,24.523157,11.743428,92.010925,49.692383,62.37907,3.3465066,36.548008,69.527245,62.71768,61.88579,19.385832,45.353825,41.799736,40.218212,85.67442,88.82981,40.85395,24.31887,46.052658,94.04729,39.974667,5.95123,89.04569,75.57542,8.039903,66.83996,74.52515,50.131413,49.999126,32.056522,14.6660795,32.701794,73.07966,71.76825,7.1517396,3.6604915,52.18421,32.528835,13.910883,45.079636,28.219328,54.42495,11.88168,38.516365,11.698515,1.188016,92.7389,87.3837,68.12368,80.20517,75.771935,60.53381,43.05698,30.283794,93.646225,55.374687,82.51302,91.92693,80.16244,39.10284,54.952682,21.601475,15.744615,52.904987,90.42714,57.7782,29.855885,25.44517,60.55019,69.40511,80.15993,70.01392,95.20572,8.381964,85.66363,11.261948,62.19491,80.8135,63.58054,93.11789,47.62686,20.044046,47.008606,27.41099,24.308084,13.0962925,40.351883,89.7958,29.673733,99.50606,48.66358,76.15641,48.438564,75.98641,6.5117216,60.249687,21.479733,34.947796,41.930096,24.196428,50.710896,59.943066,89.69312,38.206326,59.337086,64.94109,12.443439,62.997963,88.721115,97.97093,15.495213,89.86008,95.82921,22.11259,46.47941,17.026205,34.957417,40.016945,38.9337,91.91179,67.25826,9.759242,94.43116,90.99235,37.626442,70.14588,81.11663,39.718807,28.443104,96.63745,45.20226,72.62095,67.62651,46.63888,69.613754,93.77943,13.9422245,18.633938,68.88062,95.64659,96.418526,96.57818,94.231384,2.4217815,30.371046,48.17069,73.61834,17.3451,92.72232,71.520584,49.56834,32.602856,13.796687,77.40103,88.77375,22.265497,33.695316,66.89234,59.607727,27.645779,77.02655,86.841805,8.638894,18.77401,61.41869,6.245638,82.552345,30.710396,57.568073,91.83372,2.5116258,83.11539,95.075134,81.04096,42.347034,17.210344,10.107332,1.8537962,58.117443,33.67145,84.06879,86.769844,36.925705,75.27425,25.265976,83.71022,31.875912,91.1882,4.7238207,46.406815,47.277843,10.878961,9.667913,91.86714,40.133698,75.02706,58.701916,91.05883,44.158527,35.301502,7.045176,69.968254,37.17928,29.007723,27.312437,33.553062,14.493334,71.67701,25.18136,26.589296,92.12768,31.330042,30.865585,1.7643073,15.649388,96.37983,38.726974,3.7548323,81.593475,62.1067,74.195015,36.829483,39.085625,18.514673,52.166332,77.02652,64.017624,45.198807,69.932144,38.494102,32.15831,36.523975,37.5116,83.788345,72.4072,14.455821,90.9837,11.699957,66.938736,13.142965,70.41944,52.778606,11.875351,41.230167,88.65151,15.233863,40.32631,7.1540256,13.386148,54.83043,16.124735,93.01419,67.514824,71.2473,9.6121855,67.59025,84.64851,11.323618,22.836811,72.665054,75.021614,8.589117,23.813011,88.73735,48.83254,37.242584,69.613,67.893585,74.43575,3.8224351,7.7401943,2.9133794,25.27548,57.070213,78.34105,23.827097,46.207928,20.742302,69.76415,90.25181,12.624557,10.622533,42.43226,96.65766,20.859081,62.58792,53.636158,39.51149,41.07084,63.969822,2.407198,62.34882,90.29596,26.133053,98.60734,46.05191,64.10401,39.405506,16.044088,12.49732,55.934387,27.447422,0.6428625,4.269891,3.9998713,14.799584,89.35117,48.642117,58.944466,57.963455,66.58298,71.22267,33.87231,50.524757,76.852875,62.66189,27.925694,80.1864,41.61434,72.13617,25.839518,12.920432,73.971985,79.503555,3.7108274,25.282438,38.528416,2.9620645,44.28824,72.70701,22.305918,18.718462,45.01943,32.07759,95.95387,12.336928,0.7409862,80.093864,14.5038185,67.90466,41.331806,4.153436,12.068483,8.216453,39.354076,31.015377,13.885619,60.273254,54.498108,41.26127,23.982801,46.95422,32.491108,64.436806,64.10077,43.622852,4.1781654,83.76134,17.574108,54.814102,8.493726,2.3984668,94.78876,63.82052,7.409476,65.91192,94.87299,45.702663,63.150784,57.888393,55.90209,25.86249,49.9704,46.84101,93.35065,82.52772,89.878296,34.598312,10.123855,48.674564,90.71574,5.457139,33.738205,87.00435,28.817518,12.289733,99.12438,97.59951,35.183334,40.678886,3.9179187,33.74193,60.74652,80.29176,45.064278,21.795818,80.43393,22.17491,65.30334,56.255188,91.22379,42.743336,57.528984,81.660355,93.98418,42.959667,28.078896,45.769608,60.86709,53.1571,60.794807,90.5789,40.41457,38.36981,54.414467,24.117006,5.5703683,79.44539,92.710304,82.805405,17.762915,97.96035,28.734062,15.171996,1.305657,72.690956,34.55351,88.4359,54.188858,21.089848,20.262928,37.9634,6.330909,58.235676,77.81488,90.28817,95.537926,63.57834,81.09214,63.780304,58.791584,30.96704,17.178644,11.516631,92.437965,44.701565,79.16872,26.220549,4.4177284,52.961792,17.30698,85.008804,93.17426,60.608967,52.674335,99.4871,12.97968,21.053452,81.22629,44.114136,15.765192,75.41831,70.22451,18.529922,68.49707,47.435226,68.99104,25.450247,3.5075717,92.08094,16.494722,5.9997635,10.945833,69.96842,1.3933349,96.56619,54.968517,50.94728,73.54412,57.52818,23.044827,78.657875,18.228535,20.442204,72.9948,92.33671,10.25953,73.89412,31.464409,7.962973,57.289146,59.35491,46.376877,20.497362,97.80682,80.43889,76.196754,87.96033,79.31406,34.732925,69.05233,80.59842,34.13351,20.382202,54.581215,23.550217,77.066795,10.276369,53.023647,46.78809,28.99159,48.91773,47.00383,10.6439705,66.493355,90.23592,14.836183,68.84212,49.288208,54.92042,25.631737,79.864235,6.3320827,56.24405,61.81156,31.56978,5.4559274,43.79811,68.53812,23.209038,83.05737,42.891273,82.40452,92.07251,69.14603,56.760365,33.719845,67.09525,97.62127,56.216316,84.90047,94.45281,54.744488,7.6499653,56.493595,35.428795,92.69351,60.11536,29.478872,72.04045,88.58306,78.77165,58.28793,91.26387,45.170963,91.96003,73.25818,90.64781,41.91043,8.452239,41.045517,23.485147,33.255016,34.60333,55.582367,58.196484,97.586334,52.914253,90.20907,1.0988388,92.76407,1.9241316,52.90463,14.216074,63.43569,49.352432,40.31149,76.15902,1.557051,82.28175,99.70737,33.073296,78.849625,51.5151,83.97259,25.070526,49.949364,24.850304,4.996659,34.791775,68.838806,0.98556054,2.7386494,1.4028262,45.636112,51.340942,10.951195,45.5391,88.313805,35.867786,5.4308796,20.48639,26.594957,35.01548,68.421364,77.94099,11.351382,26.969189,3.4426117,98.479095,46.058678,61.710045,87.85991,72.224236,19.080595,57.877766,46.321125,90.2531,94.56011,71.21174,98.8264,44.958477,76.15982,58.475395,45.03822,25.877256,39.876114,43.318687,4.3303175,12.329808,54.977047,53.924206,25.341461,97.99319,64.65147,19.591839,45.549923,44.860847,51.692814,86.05658,45.546543,14.569012,94.71379,0.9568538,61.555332,93.958206,46.501595,13.924469,54.980095,59.205704,66.68214,62.381184,68.281296,65.638596,92.74691,62.334885,29.808529,3.333938,94.88138,48.335316,54.269127,11.690179,0.8621416,15.167528,94.64036,42.65325,67.31315,81.40644,20.929964,44.858257,63.970066,2.9373662,49.00377,28.11154,12.879466,35.03422,51.021,35.152676,9.465618,31.259705,30.795269,41.00874,0.7152852,74.99145,54.22215,36.61149,84.21342,59.968456,40.039673,44.267506,55.35726,89.57085,1.0245095,6.233942,20.154982,87.87595,43.76625,54.790985,10.797905,8.894829,92.97901,25.566675,23.570791,18.45794,64.530304,58.56444,97.90162,22.71785,85.33987,39.329193,55.128376,23.418966,93.825455,89.63285,26.537117,80.15543,57.873722,89.77431,99.951515,68.967186,33.024963,44.471695,24.003454,28.400446,54.042255,73.979904,37.590103,53.254887,54.926155,9.941298,53.82279,62.370396,74.76495,23.127762,70.142334,87.37006,18.080574,55.3654,15.934677,18.80477,47.596355,74.868706,35.201923,70.19063,32.896305,76.12406,85.89512,62.61507,24.200603,64.731155,0.32703537,80.84776,36.050385,5.9061766,11.018339,81.20973,29.418844,71.162125,44.905163,85.17046,76.28332,64.86157,29.303791,7.1824045,78.602165,42.780067,12.132738,10.023726,55.597477,94.2881,16.102419,35.626553,65.776726,95.32198,23.095629,85.39691,78.47062,76.34053,19.173054,51.86026,8.756803,19.59999,55.76379,23.523794,2.4928615,60.519676,70.30432,22.116215,1.5464897,3.3051858,45.874416,70.01391,80.77943,79.170815,77.78044,72.765015,41.386044,12.406432,30.750181,30.744326,58.791664,57.310913,1.5000108,5.9994974,6.420228,5.8925724,63.05685,67.21121,91.11329,28.457184,11.561448,69.86005,94.82745,25.875364,40.79715,97.530754,38.829914,46.352207,0.120177925,93.01332,47.652897,82.19585,16.366602,80.583466,32.77258,82.53459,6.50115,16.676783,14.637714,10.641319,25.645576,33.827812,93.793625,53.99126,23.879883,87.23332,46.377567,60.686848,24.891418,81.23458,57.113544,40.76951,28.904804,14.318415,26.839197,63.713642,17.61636,50.74544,56.62765,41.67753,30.731588,92.29348,46.57984,17.750422,89.30721,12.995418,26.744879,41.961967,52.66343,14.165176,83.11976,20.21548,47.97274,43.014088,87.56734,76.12847,4.1074653,94.65039,40.034653,30.39433,99.26348,94.79804,79.77269,74.497086,92.33079,2.7130504,95.95365,28.867765,92.01612,26.473907,70.676834,64.14421,10.158158,46.068493,84.739815,67.245705,42.201473,35.731003,27.493753,72.7,39.983597,43.953968,63.592247,45.0429,44.756313,47.43769,55.53899,36.977352,31.690437,18.74626,80.03109,49.887356,36.59035,79.620026,60.54372,35.089577,4.443361,90.90834,29.110577,55.41443,72.494934,2.073231,37.63966,90.74676,9.00642,20.271961,42.160915,97.00817,88.27378,0.1945957,14.192565,47.727295,76.21706,84.014534,34.6835,20.294601,44.940258,0.3664662,55.17663,2.549625,8.897493,81.53903,78.38195,33.49153,18.299755,35.003952,88.53219,33.75692,22.880404,41.000168,89.92982,18.680122,67.26561,90.102646,71.92614,21.18423,49.521496,35.046993,49.483475,8.871674,15.763866,74.31347,7.145165,36.481167,4.4788756,70.94974,92.8614,18.699125,67.76692,60.737534,20.328228,24.340929,80.45413,43.65594,24.711271,30.624184,59.629498,95.35006,35.440697,49.676197,87.447075,51.46245,83.94009,47.293526,97.32781,93.7691,45.745876,85.86362,65.80219,30.219551,17.1344,74.36702,90.45091,12.261764,3.2376633,96.890434,21.663612,88.962906,81.607506,27.474758,73.30083,94.19828,24.220795,81.29049,88.5844,44.646152,6.7395186,79.67937,31.270164,55.84137,20.906008,61.96836,28.515959,19.317543,9.391831,92.70783,96.52039,48.283833,13.600279,41.43744,51.86624,98.02818,65.48149,89.49237,45.88528,76.19999,6.1563497,45.371113,27.458363,71.49701,10.779225,38.060913,68.43888,60.79026,10.399393,17.366268,7.143242,84.17557,20.36901,63.48417,90.55814,79.10308,12.720254,8.609232,34.888184,35.173615,3.769902,40.20415,88.81249,96.70091,96.3072,89.42684,18.625423,73.897156,75.410614,73.153244,59.87544,48.31207,31.140837,5.5608487,76.47613,90.63535,62.722378,28.6818,9.1437025,37.201813,4.011724,58.20469,40.08725,33.63973,94.79274,80.75597,89.00199,65.83782,66.00603,19.047205,9.04229,80.75673,69.157,52.217678,84.250946,15.750094,43.266296,58.101173,50.627113,47.795128,44.76508,1.3934011,49.392273,55.641926,9.678491,87.287186,16.303108,86.23774,14.696062,4.6297436,55.588142,78.468285,54.98449,64.07084,39.326595,29.252176,10.797619,70.76487,57.534397,68.148636,68.71658,31.607458,74.151695,82.399254,10.289571,86.81202,82.64687,0.39773208,88.19667,92.124596,57.956963,74.26393,28.5233,65.99286,35.398792,21.785576,12.763275,30.43552,30.363838,36.58081,55.773342,53.826824,89.78373,29.6761,53.867123,66.719055,37.556232,33.423893,77.199745,45.80105,16.71653,41.10652,78.63615,62.694492,0.84346896,15.806701,16.308317,97.608665,38.342285,57.72186,64.46144,46.024693,26.895859,85.3928,16.587688,43.58037,86.49396,86.14758,23.808231,54.234955,62.70419,30.339308,71.21372,16.663092,63.599186,98.714615,85.139824,11.742935,57.598583,31.902071,23.269735,2.7512283,54.89927,24.690039,14.841269,78.867195,56.541157,89.52406,99.566475,72.905396,55.9352,67.045616,49.77629,87.56231,56.36422,7.4430566,26.912413,3.8688192,24.128942,56.940334,45.522446,60.7599,91.059204,8.547765,54.93826,26.44993,83.0369,35.83413,64.73212,44.925503,20.124037,41.20669,22.164494,23.243288,11.294061,54.741413,57.723824,33.263824,36.421154,70.19015,30.654116,50.35445,28.446857,55.087097,94.79721,37.55752,22.907152,80.37545,61.87509,78.32594,74.399376,90.17494,0.553233,57.289818,94.62327,50.22715,53.587013,48.488464,78.70751,30.991003,74.58111,93.55989,86.91438,82.38541,48.90291,73.3156,93.83107,26.173496,71.16883,45.31842,87.67949,34.655758,83.82585,97.01559,72.54905,2.183164,58.65197,52.81356,55.32541,31.263775,37.299454,15.031251,17.640783,6.284886,63.149864,97.36649,98.191536,79.019714,6.8628983,59.05993,44.396816,74.48533,86.397064,23.398623,14.726649,19.416948,67.17808,30.656475,64.562904,58.65004,10.829471,87.25937,2.5877075,16.746153,88.18888,27.418322,53.348286,11.509005,57.014233,72.450966,23.571733,51.8919,46.84374,94.406235,6.023819,10.500938,90.58374,54.492092,46.145943,95.85412,42.348637,6.598338,82.86378,60.98722,70.400185,23.071716,77.87405,87.60143,47.438766,99.90071,97.91706,25.368296,52.959576,47.74888,67.319885,31.351612,79.56174,11.087029,62.785595,71.49891,86.09134,19.807123,65.72496,5.115528,44.51066,92.14895,99.604004,33.634438,5.0631075,3.9459832,4.087121,89.93394,42.40346,54.800236,14.4378805,17.88605,51.53528,67.46218,80.12926,74.79006,50.202667,84.72755,16.74667,25.438103,77.84462,40.493706,64.714264,82.05073,18.807732,13.081917,33.193806,20.128672,11.268698,43.202183,16.923254,29.55237,34.49145,22.670143,88.29726,50.557484,19.77179,48.948868,94.17675,9.600211,66.062,17.969433,32.863247,56.527588,51.064754,42.263863,90.866325,87.6918,21.304712,43.100666,42.940052,75.06331,0.19476014,81.10806,2.8234615,82.11682,49.54793,59.10942,68.30485,22.336622,17.26913,33.74472,9.326177,62.39545,7.7419715,24.28809,89.66324,26.832275,13.702099,10.846424,9.790082,41.62484,63.077667,45.877937,87.428185,26.273026,64.43189,23.239063,43.47589,6.358493,33.6925,87.160324,81.85774,99.46281,66.70123,57.46077,91.076,69.83853,84.87225,31.688595,73.613235,62.753025,36.64937,93.61491,11.227687,55.99009,5.8743925,96.84889,92.85632,71.657875,91.45637,54.76904,89.39125,54.106865,45.101803,90.18373,35.74895,16.662802,18.90714,94.84292,77.11563,45.384396,22.261856,18.575771,67.32874,83.85356,83.75302,61.29269,92.35986,18.853518,62.15479,88.193504,82.36434,75.34486,58.139782,58.20072,26.106228,42.490494,92.70643,65.96257,33.278294,95.20001,48.81951,73.63386,49.41981,23.692764,2.793439,79.99712,51.27802,98.509094,39.344704,20.257702,61.662086,42.483974,90.94632,13.091462,47.277317,8.7948,42.10891,49.644093,81.70916,56.659893,22.454224,27.772772,79.32321,55.278133,31.841228,71.22374,78.58946,12.852264,60.424313,33.710835,95.28502,15.610272,26.5609,84.78158,66.36667,22.01567,73.75364,40.621017,1.6854643,68.487434,82.31412,92.591606,91.27571,66.24478,67.30608,34.370377,1.3617643,33.236614,86.1932,66.71994,17.17405,60.321224,81.333046,15.039786,26.01725,64.83024,62.927162,44.329697,65.53116,21.37066,86.78866,99.33587,63.583134,88.674095,71.9294,80.59719,73.718506,14.881856,51.234932,9.748484,96.532684,76.2131,40.156937,6.6907644,72.21089,51.772327,77.83045,26.140818,24.339705,27.482565,5.697883,76.86979,17.680532,60.470608,32.2891,59.08005,43.020267,8.2957325,22.331493,51.846493,89.97955,20.50531,4.334906,58.48175,64.37776,97.924706,43.239002,73.427284,44.380627,28.862392,74.14061,3.0338051,10.292403,36.239273,0.12593412,57.646835,6.428127,87.88538,0.68406993,4.9450855,55.33706,1.501623,3.869298,15.599315,70.00617,61.595047,9.298095,36.799557,91.82169,96.31162,88.425415,78.518814,74.90857,4.2191386,56.39557,18.763803,76.35146,47.741623,69.955734,99.58463,47.843903,37.21698,96.446815,65.54011,4.995071,0.782669,91.830536,43.056614,72.08545,49.552246,7.5576077,43.060814,13.066404,12.495565,66.60077,6.7349796,69.23496,63.583183,78.57273,25.015953,45.580048,70.80312,91.10072,29.641993,80.62097,56.37542,32.16231,64.51678,91.178894,32.69712,43.370872,45.426704,36.68167,28.49028,59.244896,78.863365,62.152107,48.300125,25.10395,26.029718,6.743229,37.75845,31.140743,66.22771,77.22241,43.860416,61.622887,62.66855,70.6489,82.67557,58.214687,1.9893303,13.856581,47.136795,83.99318,87.229164,42.12747,54.536827,93.908646,74.71955,33.317165,77.272804,24.692015,8.800027,99.25328,9.368848,1.0190629,87.2474,86.928894,26.69597,44.86078,32.97991,85.55998,6.4666433,33.178154,5.670854,87.71319,32.30885,94.84235,90.79591,14.84906,89.414825,31.322126,55.851955,15.958456,41.12225,42.136578,32.11418,26.073223,18.297115,41.66149,9.147123,24.5725,26.689478,17.320477,8.379055,4.269296,24.574919,40.15763,62.779724,93.99752,10.175893,59.69487,72.401924,48.409508,75.57456,90.64879,27.192944,87.21155,97.17032,32.3722,94.43282,92.1267,6.9244514,24.57226,29.34301,91.90331,22.976015,96.415306,74.882935,41.756084,3.7948236,21.368443,71.78797,58.008564,80.65176,23.751034,50.889175,79.127525,77.64096,56.59312,77.37756,9.154429,94.44222,19.282433,31.188442,39.97473,86.10683,35.812733,37.31193,63.40318,48.248554,24.085203,54.976368,89.86452,16.50593,62.281853,79.090126,12.906441,88.64735,53.96217,24.668142,58.684303,40.424133,54.162663,14.211039,16.87354,45.58096,16.157898,34.16865,54.242943,34.43386,72.40322,61.023342,15.521579,78.79066,69.51304,82.581604,53.214993,79.54055,53.787483,11.095673,36.79169,24.863848,13.573015,50.39413,13.658435,29.645695,20.900372,8.349709,47.316143,25.127438,88.277626,31.250032,6.073347,3.138138,42.203808,84.72539,74.64725,47.870674,40.847565,19.596603,99.22403,86.15293,53.04521,14.894551,8.370197,76.34198,35.203835,42.51583,18.21573,27.957657,93.424934,76.16185,24.202988,77.9337,5.1771474,60.22379,70.424934,64.69463,12.636441,99.25065,57.9438,73.42987,16.181307,17.492754,7.6888065,37.58391,56.62081,3.7030435,47.805195,16.436907,49.42664,25.709803,98.24635,15.644099,10.410598,49.116863,66.50139,91.175064,29.58364,35.77803,49.239388,50.882027,24.544231,96.97097,81.81178,89.118256,1.4676299,36.588894,62.469707,39.478275,87.26911,93.5078,30.494452,99.59853,31.518482,80.40155,81.331314,24.660597,72.26256,30.151909,83.23935,93.52461,39.595932,18.343369,70.74597,60.214314,79.60684,46.188858,54.563328,5.985204,3.1636217,81.84338,65.641174,69.7482,39.80084,67.8722,6.3565907,31.82469,28.634117,23.09296,17.33857,19.620804,59.087894,42.7762,77.09461,68.72492,23.986914,88.766335,81.67008,58.45158,7.846857,26.45145,26.091246,12.22143,49.10585,63.14532,16.081106,14.270563,4.6731715,77.302826,75.15027,15.281828,75.670364,32.582634,48.69234,4.1723704,80.65361,83.01818,82.99248,22.763817,46.900196,30.71173,33.34615,93.62117,5.11402,38.614162,92.39928,3.026868,9.943784,12.262829,78.57579,31.223495,52.72162,81.93919,11.677224,85.66229,50.439747,14.103284,50.18762,27.58087,27.306707,81.05056,75.199326,55.979263,68.40399,58.159023,91.668274,83.43502,15.470068,54.735962,72.00279,25.832003,20.400305,79.98157,58.182312,44.813614,74.68655,27.928677,37.903328,93.78014,47.090157,18.655844,59.496883,17.92504,95.07698,63.42016,14.925794,77.16671,19.868662,16.44211,80.21391,59.094852,10.64776,87.20554,26.72605,19.872295,45.08002,48.102303,97.31552,64.54411,0.23572324,45.23609,8.564243,9.824563,72.907074,53.78021,14.040596,61.94586,14.849391,99.56952,8.138823,32.201855,90.05866,27.541111,64.805176,13.694258,89.66444,8.706526,28.76581,27.63943,4.884116,90.82922,23.133104,89.57014,42.23544,16.121803,84.813416,20.488361,3.5396338,1.5205932,9.693355,27.639746,93.66871,14.314433,41.326725,58.14415,84.34487,64.36894,35.476677,64.57329,93.72202,5.3557763,70.11152,76.84924,32.08034,20.172894,44.809425,71.94744,4.985329,91.13818,67.683426,0.4565116,9.058544,29.310442,88.86281,32.67789,66.30153,9.478476,66.095345,74.81967,48.549953,70.05043,87.04078,3.895958,41.456406,54.27514,34.29985,33.210796,95.33437,15.895659,90.99727,42.98326,66.618065,38.854416,24.297945,74.9459,76.68304,70.45928,94.83388,71.43104,74.244675,12.076293,14.897438,44.073597,66.46349,49.332836,89.063675,14.00794,83.140915,93.04715,50.501263,94.94965,58.38449,50.01213,17.865288,81.303925,37.79286,63.573597,28.819218,72.30647,97.619095,30.558685,56.609085,17.12855,52.897236,0.12192961,99.256714,8.428788,48.612724,47.205914,36.193756,40.449715,39.455544,95.16762,54.91815,92.41819,22.340273,23.532457,80.12494,44.663795,64.859375,31.529078,22.818245,92.51034,33.43497,63.470375,95.90521,63.41043,78.38354,52.326645,82.35168,1.0871223,10.0007925,39.265575,55.86004,41.592434,50.468754,77.53498,78.84539,97.22363,28.46785,87.0738,82.88423,23.798054,13.412258,69.93966,46.201912,16.775864,93.91512,42.69608,26.523237,4.861097,59.068005,86.83359,21.914663,45.06678,74.1396,32.566223,10.536329,47.95051,46.397163,66.75931,19.638603,30.494684,86.930305,72.59701,43.45652,29.88192,25.317268,40.463802,61.120228,11.668275,1.9067215,53.402435,17.680124,12.669279,19.734924,15.98201,74.47166,66.80392,14.153972,39.31807,44.23006,85.80989,64.04463,7.096302,50.942547,14.05769,40.660614,99.962326,98.9542,29.361454,40.809914,40.951313,77.37348,54.60807,82.65332,80.21529,67.753876,5.252998,53.992355,98.68296,16.193396,30.274176,36.66734,49.579777,41.48815,49.59442,77.252174,88.53221,57.83971,6.631926,71.847984,61.87218,2.1023657,45.554848,33.44751,9.437232,11.030747,46.241127,15.263695,28.864944,59.337173,68.3239,99.08193,10.412643,62.82364,58.159393,31.52333,0.4921975,64.140396,68.32931,49.20043,61.664536,95.051346,63.00007,36.494102,68.837975,26.89067,60.581615,40.379898,67.43987,40.20304,29.451294,68.40438,48.167866,83.158424,84.786415,47.573532,21.07827,29.776129,35.087406,17.637123,79.411224,95.21791,2.7759893,34.582104,74.993805,22.63417,41.24233,67.559105,20.540756,72.130035,31.428318,28.109428,52.49225,62.089928,11.85472,43.794357,42.89804,57.97308,68.248764,61.762623,98.14974,78.06445,7.7864523,80.16497,80.07915,66.456245,38.802647,21.912512,85.14066,97.92368,24.874117,85.85398,58.24915,36.362625,12.944701,43.02759,98.921326,64.89655,29.974003,96.53062,97.53155,59.42367,78.958694,73.81114,98.17747,59.660812,37.626118,72.20551,36.577686,16.286478,98.20176,11.421309,75.69823,33.45881,46.130585,28.548334,85.59401,23.161465,28.892046,35.887466,35.391853,74.56654,40.958138,69.284966,45.72445,69.35637,42.135662,58.604446,37.453346,0.25104943,63.338043,57.12052,12.442175,51.221897,29.042147,53.928787,12.159245,12.974177,64.74887,18.724005,51.1766,15.09446,52.57235,75.03142,62.198666,44.141155,30.82563,41.36695,25.46213,29.10727,86.01002,96.14113,65.80063,16.496693,65.544914,79.12056,25.523705,67.43601,97.53654,83.70888,0.30959016,4.317747,68.08391,0.807498,92.74438,72.8564,82.23742,78.06342,3.2798216,82.32497,82.11824,52.43911,63.536373,52.743237,85.79445,27.025476,26.96246,64.54172,63.383114,54.98626,96.15727,13.671742,36.513912,60.623985,51.44591,27.638655,27.159101,31.730322,22.269016,79.25437,4.2522187,17.109138,77.36728,52.508984,19.640827,1.738107,18.08346,41.636932,7.3780255,60.37145,78.55849,73.84993,20.990414,76.779076,41.28074,90.901505,98.56473,27.717754,49.78935,41.06164,74.02712,92.95181,0.8803059,72.68082,82.818634,2.0342736,68.20228,78.161804,12.383662,99.468544,35.90052,60.49,9.390924,52.783512,80.24978,45.164665,40.06674,9.328303,79.68367,82.62182,1.9078648,34.70334,72.99875,56.144844,69.388466,66.00352,56.605762,83.30572,65.13898,46.291958,41.388428,91.32213,62.88705,64.46974,73.61895,15.482582,75.097916,37.51662,29.616308,84.49555,49.774326,56.01584,1.5673419,73.22409,68.99059,67.12408,51.565857,40.094025,4.947626,24.952854,49.477394,61.904922,61.997604,38.494766,80.0654,28.364805,54.744335,97.33804,30.183779,70.49052,15.850707,78.64887,17.758354,22.737307,89.66722,39.71086,57.913055,42.18235,44.110455,24.102837,24.42812,32.015446,97.11014,72.37128,59.188892,77.34323,65.50993,39.947277,79.73431,65.22014,41.18615,48.61014,90.488655,97.29304,66.694305,81.26116,9.663431,78.76856,64.148796,94.662994,56.98636,90.62664,99.71088,68.89335,21.725134,17.945179,64.62604,70.88245,82.32036,57.169403,68.04649,26.199615,65.191414,35.610428,14.615328,52.321407,16.567984,78.04384,54.294147,0.6396834,96.685,63.23571,65.11866,50.24084,33.271282,72.72038,61.432636,11.412828,28.433949,66.17434,64.807304,7.049204,36.08638,6.3151684,72.24691,82.00664,60.751263,75.2406,99.77945,13.605274,45.58491,47.14842,61.645878,24.328053,40.369358,40.749462,88.377556,9.830838,59.12699,20.278896,17.92559,6.8277497,50.721714,75.715576,94.75825,52.747303,39.264297,9.775928,96.250015,36.384804,16.683964,75.53431,0.87658536,53.286114,99.70715,0.11671888,39.871082,82.78329,27.126665,82.017044,48.816498,73.30168,72.751114,81.95424,5.7902703,41.039494,39.029137,56.93374,66.39522,4.417295,3.1286936,95.27481,10.636578,65.45474,43.571716,46.253574,4.430162,44.028706,69.85735,89.43585,51.989784,84.66196,69.08665,92.11958,76.58709,41.50538,2.447355,50.882446,36.18808,61.550503,59.983013,22.074707,61.679955,72.60755,66.38955,42.740448,70.72915,52.885586,22.534616,76.78033,10.034068,94.649994,40.27376,61.540165,98.331955,89.21843,88.122765,81.50398,74.88555,94.10319,24.83356,98.78984,27.930006,39.402634,43.25193,56.02109,65.44709,18.225336,31.699776,7.836363,90.09551,41.575294,42.9568,96.72725,77.41266,85.25343,45.264057,20.186995,20.658838,43.35902,13.522559,74.78033,27.88191,89.14079,42.12324,72.33416,43.887817,77.48901,93.34709,21.90702,62.22575,78.49275,95.77258,31.595722,48.241123,12.579379,34.723873,2.7394745,74.09861,36.399807,72.78708,42.339767,96.094345,95.26447,29.715446,88.23015,69.31297,82.28401,1.1926309,19.922401,35.661816,4.361725,20.77367,95.4748,32.735935,19.836946,32.217564,30.504404,23.131306,43.585945,94.20941,69.77376,13.390707,84.893364,2.74522,48.1787,66.29883,11.472211,21.353197,42.496605,94.78763,75.87515,48.21486,33.607277,8.205285,64.114395,73.053,46.193512,63.429676,95.32612,54.538578,68.41464,59.410072,23.72185,35.799385,59.614117,9.115312,75.92418,53.26259,57.855133,94.402756,68.266754,11.263222,56.49893,32.046688,96.266174,3.1653452,96.42046,96.53591,3.2865083,96.472565,22.258133,41.67655,36.083244,6.905051,33.830788,6.8157096,50.890797,63.044205,24.793049,44.521225,24.559671,0.37309372,41.69306,37.237324,18.94979,58.86715,12.046392,32.994205,53.07856,62.41088,44.21355,6.4871907,32.521313,93.49744,56.921623,45.74772,34.961452,76.58133,5.436452,79.06212,53.337593,92.723724,42.310223,51.637497,52.308212,24.69944,85.306946,48.357613,58.601063,30.4448,79.88907,17.158808,90.08992,48.242855,28.047155,57.74259,41.58173,83.48033,2.0539877,4.866315,15.575013,58.325954,58.3127,73.958916,8.216301,65.11504,67.05027,44.885868,36.305832,86.3038,23.893877,62.740334,47.560005,92.382095,96.20262,37.872116,62.89636,19.651924,99.300186,80.10681,33.25777,47.328094,82.04526,3.763516,95.79761,66.528206,41.089092,96.40083,34.82277,65.8543,62.419605,23.692753,77.862076,11.549524,92.67024,27.83849,70.14975,45.73167,25.981762,26.61692,4.766358,2.4840577,11.106516,54.69963,46.543476,80.7591,93.300896,89.67942,29.068787,1.6082519,14.607611,86.420395,3.880066,78.91359,39.63554,26.302319,30.779436,71.09361,73.33042,41.87048,4.294016,42.999947,33.351696,48.512318,43.371346,7.858589,92.77075,86.97335,3.2393463,46.748898,15.794329,87.54363,50.106583,47.40095,75.78327,95.579445,7.619382,63.45638,68.05478,90.66489,91.67507,46.806023,57.72074,6.471422,16.881397,21.63025,88.39246,14.673681,96.8295,32.63062,25.683054,20.974062,28.387869,63.834225,73.10024,47.590343,48.410923,57.885468,76.987305,20.844896,24.718779,72.05717,37.517426,59.59254,53.417824,87.4213,72.35592,0.29734904,28.358242,52.899376,53.262592,25.11018,45.775654,56.378426,90.006584,3.669737,93.139305,71.09718,49.14706,88.9553,47.397163,69.69645,79.00569,7.9977984,5.1604834,25.131264,99.87385,79.635345,44.759933,92.407036,1.7107503,75.43243,11.146094,18.738125,35.291603,75.11694,63.191593,72.02155,54.467213,59.54541,41.93276,87.43534,45.810017,95.43802,12.054248,84.82774,99.22817,48.975834,55.974274,6.682966,58.74343,89.44328,81.529236,71.257034,33.341225,10.147873,14.179047,89.11351,43.496296,58.261135,20.46075,29.739641,50.284615,86.29422,24.224195,70.94976,55.48129,45.547035,45.880657,53.75586,47.457108,37.739845,31.11259,99.47491,59.275677,22.967724,73.99249,86.09637,10.192928,81.19397,77.98855,8.464847,23.601686,68.11885,77.0092,99.64905,96.415215,37.409702,3.7719612,26.243008,67.90787,26.08761,33.19254,72.48435,46.755985,51.50796,73.52058,98.37805,60.434986,33.187256,90.595116,38.968292,26.804758,91.5358,42.352615,25.415968,78.50768,86.72013,60.202106,56.31876,85.50181,93.24963,66.421616,60.978226,19.178928,81.195435,81.98224,26.328772,28.04059,19.790388,77.15819,77.27749,60.30196,93.771164,81.78115,7.404602,44.24476,10.251763,25.409365,81.995605,63.27789,2.5634105,40.584846,4.1775756,28.79028,41.65948,11.043164,75.330765,82.326256,20.944418,71.473434,72.5102,22.660032,63.393208,39.22187,64.9147,95.754395,22.196608,70.68897,45.263493,44.394882,70.387924,33.797775,25.62721,6.3419847,41.50263,63.75683,54.700867,17.46199,59.73291,85.34017,77.887344,50.659416,99.32935,70.311775,29.15582,87.82898,8.304719,80.56935,93.33581,95.702835,46.778313,37.069332,52.1568,20.87017,39.558887,22.826807,91.56744,36.634727,20.709799,60.326588,75.771355,63.31306,49.986557,58.621822,94.75169,58.02102,84.84621,7.188836,72.37216,62.668106,95.635345,25.278711,58.336327,15.065355,80.69644,4.4484453,98.09063,75.04177,29.887033,71.74931,89.338776,16.581436,48.106586,57.183666,2.6609123,51.8259,84.76231,64.444336,58.965393,61.253326,59.30196,46.24951,23.316568,15.316262,11.724531,32.227318,34.963806,91.22506,81.56172,69.74228,26.179256,69.41817,43.578396,89.86066,89.72135,10.441749,45.533573,18.514269,98.60666,23.024883,36.23501,71.20753,33.534946,92.108086,11.910642,19.48698,48.840103,12.663575,56.946198,32.88429,77.96742,50.77001,30.090004,23.910688,16.696394,52.138203,20.60103,19.479593,41.328705,9.128386,66.5269,63.158165,77.55289,71.87748,10.086824,61.964096,82.65317,94.62213,30.896713,8.728912,77.317345,31.372019,68.10855,92.37999,16.118029,10.899981,33.563766,41.23591,66.72954,79.48565,98.16978,28.56901,62.507256,41.311623,17.20288,75.26428,81.34977,37.722073,81.642235,25.026308,72.88201,8.191009,60.625015,98.71469,49.696747,7.669272,8.118706,85.40499,21.991611,51.80007,26.518692,40.10116,49.913177,49.942066,95.76417,82.926994,49.47561,70.03424,62.006386,53.729004,26.612404,52.27203,86.312515,89.8919,87.15617,31.509123,18.240196,20.545034,42.931313,93.00262,2.735554,86.2625,19.77653,34.755127,39.98996,37.711567,73.19012,5.3317065,69.593414,42.297882,53.141727,98.86976,96.27146,72.75246,43.884148,52.711315,19.234144,68.056206,5.788903,13.000439,59.043987,20.418337,68.60984,10.684888,22.84855,95.59603,68.15873,48.171825,38.00852,69.496666,30.606054,79.850136,62.928623,17.14992,49.876984,53.84563,9.374244,67.15377,84.3541,50.92676,99.20002,79.149376,45.39656,16.409754,46.997803,25.090553,39.440235,21.998095,63.017754,79.044106,54.78436,78.78544,38.694992,3.676476,42.873222,53.974884,23.903875,99.70176,58.84159,33.040684,76.137665,20.923216,69.78988,86.5194,21.82372,61.31874,14.003487,98.75227,67.34707,1.2282287,48.045837,56.245033,97.027756,71.143425,75.576996,36.18723,82.78123,70.44075,28.968637,20.026817,44.314335,85.35981,32.465534,63.873734,86.372925,81.83629,51.33392,79.72552,24.255348,72.134544,40.483677,20.282158,43.958652,44.165928,90.75337,46.07679,16.284874,3.2917125,10.709247,1.4981614,48.181812,27.147657,39.640648,85.88361,47.542923,22.95364,79.5798,61.200684,99.8385,45.967113,31.852573,74.31148,4.87729,53.52718,3.6415565,67.48314,93.514244,91.64947,43.559696,57.27873,22.583372,55.944874,40.85084,57.47049,65.20775,41.73844,68.34554,86.914276,44.920425,93.047325,81.82584,28.933863,37.150726,67.57394,61.93441,81.680565,91.241035,82.48559,34.593826,33.594322,15.788339,96.499306,96.261055,6.0280547,31.712727,60.01339,24.314913,30.540049,96.82667,67.46836,29.782505,97.31915,2.3134592,50.870735,36.741158,0.45280832,18.796537,88.6926,42.826775,26.677015,13.719182,50.27074,15.072863,1.6042548,34.602676,61.80499,76.4161,74.73976,29.184473,76.6664,19.710453,37.74893,42.39213,99.07915,19.939156,78.8162,0.6639179,66.82833,17.938831,10.900166,8.794307,42.60347,69.0916,5.9693503,66.05749,83.60935,9.684493,61.999847,21.857649,85.407364,66.1532,51.110542,10.803134,4.200847,51.211433,2.0186155,28.485037,68.15519,99.00806,58.76704,75.307816,64.49391,53.781452,35.934498,99.70407,76.10848,53.224747,99.593506,43.20085,89.60305,95.35465,88.95095,41.44274,14.304199,82.6943,58.861687,11.99269,26.684977,15.832471,99.329704,32.498955,17.844189,60.366737,41.353695,94.447464,61.319744,95.21356,60.999184,22.414074,29.659788,74.23816,28.118874,70.703804,37.884953,27.65785,92.679955,11.990929,45.275837,61.93501,3.6795108,87.35245,70.78958,76.6664,90.60697,34.082764,44.891956,43.93824,83.90884,19.13648,95.41146,56.389027,64.403275,42.78298,83.66472,93.1892,59.185562,43.508194,87.917465,3.3981867,49.173748,19.3567,11.314786,57.67046,37.662548,68.61208,76.50348,4.6062093,60.918648,83.07371,18.269371,45.4122,89.0569,36.24015,18.93176,71.03209,47.747677,97.32058,78.58666,47.637512,23.003347,8.474409,71.11075,26.621021,39.745102,16.789362,86.08172,72.21056,2.23558,42.800175,64.625175,16.455055,14.810424,53.979588,29.954094,27.596342,60.578194,44.439304,1.0990762,80.29774,71.88685,37.265713,82.55323,24.37044,66.212944,39.005592,96.74074,26.488102,77.1037,64.62384,48.634933,91.07237,29.835056,1.7518207,53.182858,59.581867,93.482925,78.66322,0.5315646,71.1859,87.8872,13.707097,95.029785,63.116795,63.199535,39.909084,26.462418,72.039925,81.3747,26.930403,56.873856,15.456643,91.67507,61.936695,57.015125,25.985813,32.486305,3.1379068,56.032516,31.633623,31.173481,73.467606,5.5343122,18.71922,56.806458,64.62045,56.372013,86.58758,76.610535,10.733603,94.72755,81.77577,68.734245,39.818684,20.690228,24.989,99.8696,61.703213,49.85373,18.718803,36.29373,51.600147,82.237495,43.40704,19.945538,96.2922,38.987434,81.53857,21.262842,51.399555,17.518995,29.707254,16.953976,11.518454,70.33261,38.152126,48.032707,57.771904,89.3188,87.01421,39.469284,2.5600913,47.41624,92.448715,79.19326,69.5427,92.279655,69.82015,30.742714,1.2251964,42.81652,30.77141,95.13144,81.67378,72.90165,57.59402,61.194397,93.262054,32.63235,32.58151,70.94377,17.413136,86.3671,89.36649,54.48386,98.65284,42.534565,44.32071,55.22453,99.76271,14.772226,84.345856,59.402157,66.429245,88.718094,80.40202,83.50053,64.33454,63.45932,91.2093,72.272255,65.09487,74.98811,4.8896065,9.957516,6.984344,90.03781,15.76473,66.69286,64.698006,49.347065,35.519146,23.653852,4.0145936,92.11482,43.08228,61.188286,42.951725,63.546223,81.64745,7.105527,19.905413,65.59661,36.59651,58.71591,77.218506,56.202854,59.999046,66.12223,94.02331,17.60674,45.88721,90.77463,33.41035,31.30909,43.459187,70.715996,63.38125,9.389616,65.10594,20.327864,20.812733,12.667134,67.71936,55.61871,84.47928,47.51709,72.53574,34.54077,86.47812,88.36739,71.117165,43.35433,16.817337,14.063733,57.31687,65.0566,47.78328,87.25787,6.3677335,98.403496,54.14239,61.70355,2.4840922,28.485184,36.051395,21.91256,14.493323,48.63348,16.711058,12.514866,89.83498,17.323963,53.867683,63.728638,14.218502,82.03769,44.46766,58.669884,29.757244,25.074144,29.929707,55.151962,68.79538,13.187478,1.358539,71.0327,65.56057,78.44957,24.049408,4.0781727,43.06093,56.87164,58.78381,0.12541895,33.72787,73.00279,73.58216,92.56337,78.36293,73.34406,46.95208,98.83977,5.9396796,36.874943,57.056507,96.04909,25.083134,58.958477,77.04468,65.088234,80.62444,14.620238,41.535122,52.13321,5.882237,26.362265,11.749187,28.751373,63.964523,9.182239,52.553066,7.5220675,83.77257,45.283623,42.30962,39.8105,53.319008,73.08387,1.2026396,6.1268625,29.77451,9.001536,67.54264,49.305546,55.617653,0.17603734,33.739117,21.01507,2.6654832,32.261795,97.177185,38.19385,90.86866,68.320274,16.500292,36.345753,36.435688,45.77095,58.873665,61.73224,35.496822,70.55431,25.843372,93.4564,35.04273,25.80022,94.52591,51.513016,70.60649,24.737644,39.220093,40.19983,20.176563,1.477227,94.83888,82.08315,82.45444,83.11196,79.31052,35.731594,44.993153,79.85835,40.573563,33.117805,46.64471,98.44577,60.673496,50.74399,90.76558,96.20825,11.533486,91.17282,45.79437,87.50569,62.678085,88.93228,37.03777,25.614569,2.203309,66.39623,23.95853,62.40799,1.7363507,30.886019,94.19162,54.71862,74.6144,53.83806,22.13055,52.503567,25.699392,12.78602,71.70847,59.75551,72.18218,95.625786,29.670013,18.013306,23.102736,10.940057,42.06301,50.80781,6.075209,61.844547,72.13568,50.570023,80.29457,40.234608,88.58027,14.9973755,68.567055,35.79651,66.37154,74.06629,43.38755,24.58126,7.1782436,16.445307,94.40058,29.727558,73.53706,14.255196,90.58837,5.56902,6.3696446,38.955414,35.117058,51.37431,22.043585,53.73084,2.380369,0.37721398,33.57903,22.363459,92.63861,61.777546,35.929737,65.923615,11.553069,47.473328,45.843163,67.85457,48.934742,4.907468,74.720924,13.246496,72.68385,54.9851,24.37182,56.77794,74.96262,3.762702,35.37344,82.46411,17.98262,56.587605,25.565119,61.48032,95.177414,87.05602,10.9687195,46.69557,34.256054,83.435555,33.483677,27.43316,53.759846,4.6404405,43.167557,70.65673,59.670395,3.594501,70.15752,75.594894,27.762346,54.340595,59.015244,96.52865,62.485962,99.94366,50.24386,47.656616,66.81055,32.01618,16.05234,33.52464,82.66983,45.79467,18.170288,5.1111283,6.5580797,72.52392,62.08263,94.937775,49.70306,67.21115,62.009808,72.614044,92.154495,49.882477,64.556076,30.676542,24.64427,88.339615,32.14815,68.66952,59.60275,57.1206,27.124743,73.91733,20.411419,2.2282817,16.002026,32.44499,85.317345,23.111984,90.46243,83.88443,80.02068,80.19517,30.48021,85.91876,85.71619,28.288628,0.634522,83.95651,53.68856,30.786255,36.09066,50.014084,28.910856,62.484596,37.893887,21.662586,95.90127,87.11495,28.624825,30.81333,52.92182,3.5805314,93.517,86.37595,21.432339,68.70064,20.496586,58.13051,85.749344,90.536736,59.107174,55.036266,82.17489,40.06913,86.30214,57.060165,45.973858,70.63332,41.86991,80.79347,42.243534,95.56712,30.148144,90.3604,3.874541,86.10021,63.43795,90.801704,98.19991,27.294035,5.3372583,54.03851,4.045875,93.41003,28.38508,72.55307,31.9381,75.97698,16.76778,96.113945,1.6294868,47.184578,47.1074,0.6483707,0.32166994,15.41703,30.787563,56.510403,52.72495,18.415693,4.5439873,46.721138,88.50399,58.483368,90.965546,15.416695,60.08176,0.43035147,26.852175,78.786736,71.2157,93.4535,61.642612,74.41552,58.565357,66.02283,16.572657,62.423386,78.000374,46.314632,23.397207,35.808193,0.9318314,54.850925,97.92925,8.520299,44.90783,19.274275,14.647417,81.80914,52.853584,79.45003,15.071984,95.04665,70.333824,68.35571,22.308876,5.6850796,35.467144,21.727669,33.113983,0.94224864,49.43177,8.03495,63.943382,61.389446,4.86547,60.450047,80.85196,35.259007,73.10054,94.29983,94.02973,9.0728245,87.92964,90.7913,27.312145,63.09224,85.1959,75.5307,16.887762,89.424095,53.68069,27.622854,0.117761835,22.143572,43.58192,73.82885,4.1978045,99.04889,46.450256,52.86766,35.138332,21.14211,32.741558,33.87133,63.342197,62.551117,83.788605,95.913704,27.134012,67.12894,52.45903,97.83972,92.93193,75.458305,6.9901423,55.660023,8.955965,16.672655,44.72272,44.20514,78.81691,7.631143,77.74229,39.856976,73.399704,32.03144,64.52656,17.72372,89.79344,54.042625,56.12924,85.40779,47.76667,25.697763,58.70642,18.217669,2.4904864,33.27937,54.328144,72.1887,59.190838,66.12209,43.39495,11.749352,6.625538,48.81779,13.833117,43.653854,85.30139,93.00874,41.61842,88.70514,49.137985,0.7654804,7.6089044,47.641476,26.306044,29.250067,76.61929,75.991165,52.71509,5.4795523,61.96271,18.305342,67.1581,40.6603,30.555044,50.471424,74.584045,67.03752,72.07901,12.2957945,50.420883,96.737595,44.73382,94.719955,24.669865,85.94731,14.942267,79.31402,24.645847,24.023973,27.07051,83.6819,49.613663,39.806656,44.69295,27.603422,57.187115,99.40983,35.02567,45.117687,44.70648,30.342342,3.805824,11.570113,19.239155,72.585175,77.046364,21.423845,50.19109,46.468452,85.066765,35.099953,61.53579,63.724304,50.864994,16.762003,26.709286,82.013275,23.00763,45.453773,15.075849,79.0237,0.1718164,15.840339,15.705152,74.3034,23.434351,80.897964,4.9881997,87.521935,33.654987,25.61999,25.03397,59.39418,1.4853024,11.0123205,79.34253,43.237713,81.43556,35.908623,63.980843,12.989528,84.23608,15.145111,10.785656,17.108652,59.7608,46.985172,66.732864,32.68921,11.582425,7.0313983,86.99306,59.752632,9.983189,14.649858,38.286396,10.361363,59.453438,2.8415678,86.481064,18.990032,16.306345,76.13503,76.23941,69.01594,94.82007,6.0154023,90.43214,42.327934,91.82014,3.6578138,86.09965,78.30872,62.405132,91.53396,80.671196,17.799149,27.76965,37.69823,94.13668,26.7413,15.554583,11.7669115,60.998425,78.421326,86.022865,85.11374,91.36579,97.07139,89.66218,18.633627,68.48566,55.466076,52.263138,90.71403,53.089878,55.626617,47.66843,92.790504,37.253036,48.61141,30.711742,23.55843,71.21519,95.168045,7.7173476,54.16474,18.562956,28.126394,13.145865,12.8362,78.40498,66.39331,13.712953,32.743416,30.56561,69.94201,48.434814,57.628464,22.836586,69.43014,56.593037,56.283443,71.09945,80.527054,68.36705,9.122369,4.6539106,46.99353,64.23814,59.70784,17.77828,65.323685,23.141418,7.135514,26.303156,38.248135,15.633787,74.147804,16.2499,63.487144,27.838924,19.9675,71.12686,89.44739,24.16094,73.47817,62.833412,8.180843,55.42857,81.75215,83.650375,34.42154,50.68105,12.147742,66.291214,14.7947,16.64549,5.190483,20.461275,48.322285,87.09813,59.144104,33.264038,51.728676,5.575482,42.534657,22.875,22.376986,5.3148274,81.487854,39.579792,25.028795,60.765182,60.698368,48.484432,20.153822,63.146473,26.691702,49.622433,86.63981,82.39642,42.85477,36.136375,98.751884,21.695154,28.91156,0.645027,18.741005,53.978924,62.227825,76.05229,5.74563,99.90166,6.7896037,98.284294,30.215204,2.5194116,66.289474,71.904724,79.899796,45.597755,99.737656,3.570223,94.67383,53.367794,97.92731,89.5252,60.93705,0.9142069,50.386364,20.118622,24.99382,91.739395,27.237652,42.37441,4.020776,40.13513,95.47369,13.965044,74.54306,46.68055,39.76049,84.09821,23.566872,46.44879,90.36102,39.22077,77.56056,52.44547,45.422653,85.13707,83.28915,23.660826,38.198814,11.316997,28.395452,5.6239457,8.613117,83.95326,17.017008,93.92473,87.2873,21.86886,67.33719,60.07835,73.435486,35.934055,48.16689,22.231619,18.014883,23.523466,28.844757,27.628544,63.424007,3.987435,84.727745,96.874855,41.04828,73.27555,20.365017,7.6381683,50.21745,1.3848002,76.73979,74.327866,5.812085,2.3344543,82.4118,81.40608,7.4154596,95.765236,56.727398,81.29798,44.054592,73.97904,80.980606,36.871643,84.97145,99.0519,33.852516,42.916996,18.757782,91.594864,31.072012,7.5758376,97.19147,63.59677,39.13613,76.43937,48.97513,35.115337,12.822161,0.21225949,48.17655,59.49867,80.30845,5.831492,17.677647,33.549267,26.065151,30.991209,18.480686,62.23657,87.435425,71.93733,52.29445,58.571774,56.5337,98.73664,87.49234,26.623407,57.66974,81.90653,67.91348,27.474707,78.6246,80.279724,26.059069,74.157845,6.604344,74.00639,74.54539,82.1854,7.4490457,72.18082,27.01744,85.8035,88.30648,3.251506,73.752716,76.45616,78.403946,42.863907,39.018963,15.527294,15.370818,12.951115,36.8256,11.5317745,6.5865583,28.88033,80.58762,75.33673,4.9379845,68.11399,73.372536,80.514366,39.70453,97.235596,53.27138,8.567843,6.136166,37.087444,91.04918,53.81623,14.559855,63.341736,43.66446,29.571745,39.822754,33.476482,29.09003,59.745956,26.22429,66.03886,19.544733,22.770826,22.958199,69.20882,57.309845,14.365793,39.655533,75.48599,86.792564,48.214466,96.72476,74.08845,34.52954,58.8176,58.719494,26.399872,54.700115,39.95948,58.885674,67.90578,61.696465,65.15032,19.375164,75.67586,96.33521,78.486595,7.661924,17.03438,21.901478,16.448317,0.83660805,10.261495,25.813387,89.748695,22.225948,24.671936,44.620556,18.754501,16.332003,48.413715,78.23925,85.630104,85.17927,19.176548,46.02716,37.71973,12.34502,90.99265,76.80332,86.96757,76.85482,80.10414,72.20247,28.319473,67.6224,20.756971,94.87973,36.411686,65.79954,8.121232,74.07656,97.724625,78.47945,63.257984,10.802852,56.158535,24.249334,6.7344003,64.65123,71.327484,64.56628,8.812746,33.942104,37.78049,80.56141,49.104385,56.509094,91.45222,21.23947,69.51017,40.98661,97.0347,57.477524,85.13122,85.05231,88.62192,67.05642,81.43807,87.86924,67.50952,93.62533,63.127342,38.453487,62.41023,11.409165,52.937424,57.864433,88.54707,2.1952612,94.325035,44.484383,20.629107,13.103224,20.054296,84.97655,78.065285,16.999521,91.28595,20.946945,90.28765,99.52415,48.353973,83.593025,8.69622,28.204687,20.197906,26.652231,77.189896,2.3214498,42.272156,20.554075,37.769505,16.3847,61.52836,30.453966,3.2051852,49.95646,51.538784,0.30916345,33.287373,61.036716,64.9189,51.92516,71.13503,66.90157,35.353703,30.459003,99.319984,31.235767,81.78584,60.842888,39.653103,91.042946,61.858406,56.998047,3.1849174,79.3415,4.5643926,1.1232224,20.945095,27.707655,19.257929,20.6745,25.721708,89.11633,45.827732,63.438038,17.159822,78.885,39.778603,79.066414,77.254616,82.78832,48.51362,55.063778,36.825985,72.51456,72.3359,80.2198,8.655456,83.98733,12.544693,91.046524,81.75648,23.829409,65.215004,8.010615,70.38275,90.912094,8.998118,14.813612,71.52623,81.04059,55.922,1.2015955,16.24668,29.661388,24.907024,62.54792,80.45418,94.04614,41.25064,12.643889,17.383133,46.242,7.3774195,21.952007,77.96505,72.20521,72.44747,98.03619,51.734554,63.92031,19.111282,52.12534,56.578842,10.064243,95.27014,92.68032,13.751173,56.548615,29.977022,10.880918,41.72741,86.806885,72.025505,35.76387,18.295748,78.733444,14.147409,72.02946,76.77337,81.02014,28.794226,62.3566,9.374118,17.317957,55.865803,53.96193,98.9423,1.6910799,46.829353,28.052475,10.66166,3.1532204,50.493492,57.330338,83.24445,65.897804,71.228264,2.5000045,29.980717,91.24586,79.52391,78.27309,71.14082,81.108505,36.913876,59.411545,53.81387,25.54993,58.081963,15.743028,35.025673,38.45003,64.46764,78.436745,8.920599,7.328631,56.37169,10.769455,58.556206,59.416977,12.38242,88.763214,39.854668,78.83654,14.576374,71.730415,8.171149,94.37416,63.45153,64.85582,57.365574,76.279564,80.44981,34.17938,75.83738,22.435608,91.56511,36.436375,41.67591,66.18184,66.54669,11.700394,60.241226,37.37348,41.93904,88.372955,31.9316,14.022756,2.9494987,41.369263,21.040443,18.173508,67.58061,96.209236,22.736345,96.681625,87.63886,24.030664,12.904469,17.928661,31.23907,67.03228,86.8864,6.8727646,50.63047,12.577262,90.34469,6.026869,74.92501,61.6341,98.35979,50.592175,9.05536,79.35839,1.3693404,59.95974,25.825472,54.81712,30.00092,33.83927,64.95116,33.791603,43.773506,96.81778,37.77529,39.592003,39.084404,32.060463,1.9025608,2.4049785,37.326088,31.044977,40.21721,98.05473,19.89709,16.712698,52.54108,39.662838,58.47137,46.93672,3.571698,79.92557,96.46162,40.505917,53.87933,71.0266,37.79487,91.321884,28.863855,23.358736,11.0813465,71.52318,38.639038,58.151466,32.438107,15.836895,27.439598,38.5084,84.10184,8.373312,86.82631,2.8447015,4.6546926,59.341347,46.503365,87.737885,11.0572605,65.150215,96.54446,91.69887,57.164463,65.93022,99.999435,43.560276,57.064426,47.07886,21.447136,19.926609,88.66878,20.63052,64.82727,76.56991,3.9002366,7.60853,0.37324995,33.988613,79.245895,85.75667,28.940834,75.995674,86.03553,41.2291,51.94649,39.4475,75.466255,45.19015,43.808468,69.63684,21.547894,8.10818,48.682343,59.89677,43.46514,17.288078,3.3012424,1.5210185,69.36534,15.724173,26.89559,82.63141,84.27247,20.47251,49.915024,41.24048,64.87347,28.006601,82.08301,50.06109,60.177517,48.589268,2.8273277,89.06504,88.80986,92.748146,6.673476,12.394319,35.908638,25.127726,13.93113,2.1517515,67.96783,10.840418,41.941338,51.369507,98.44626,90.514694,52.270645,2.6214113,55.57527,77.40739,84.18756,21.915293,11.125624,61.201828,12.326768,12.99532,94.730515,96.94541,62.05723,11.948607,23.670404,86.68855,83.5476,8.715585,98.85745,92.506355,81.36624],"x":[33.02129681077022,3.721947646766155,98.73054961274048,81.23854676839765,87.80209239230159,99.06291751307607,1.3014725122489357,2.51998919257973,57.98138724466438,9.81581500495019,78.89891345582143,65.52185332963259,74.51133365114694,69.70073853358915,51.11570775983382,71.91155397974384,85.22769166467421,28.93953251997401,87.78311487770205,40.753141692992635,75.5708057183471,33.08705900295601,65.51469011671213,56.92908513093254,25.309411783726688,81.86038968011137,7.831867056399567,45.9300269233528,5.07726025938412,24.702445195450085,18.507623172857635,58.22064862693465,93.05673861078387,69.66383004466061,12.09524735777936,89.92634336041517,5.500978030002502,95.94467377140383,37.8142263069125,93.15883292981198,67.84719492166109,93.55983249043855,58.55415697299323,79.90900307905713,85.57862735692926,60.68385081562264,21.501414083547555,87.26102119537175,72.337375654312,7.545018333570153,32.50415905684474,23.939743521608392,79.84857300231725,55.3197804258162,3.138702947667593,97.31749693082226,86.19525858048576,75.55482390974771,15.67334814193292,43.78343044607975,53.39334935362513,76.99212499139449,45.538970799045906,43.90159313556117,89.82352730271424,2.228828416707529,12.494304853016281,22.821920611305448,55.28543263128276,10.136591996012246,32.018739147804766,86.24391990773047,30.377608866341077,57.08090181243184,94.27166655507936,40.48303130611549,40.53045840512104,9.780311370167317,0.6452083872617753,31.489375595770998,2.484904382307107,31.019073129796247,75.41464967416185,19.268023225912234,73.48734839661871,43.03303824245103,80.2133287873359,31.31175954468941,45.94062975773071,73.58673419019863,44.68840373895291,73.6579593485002,36.69426113113998,24.52315696406181,11.743428004993127,92.01092320465523,49.692382941780956,62.37906960318177,3.346506603296706,36.54800713960831,69.52724140388737,62.717681303679406,61.88578991022639,19.38583177931774,45.35382320256319,41.79973659376076,40.21821377635904,85.67442008647694,88.8298103320348,40.85394876091898,24.31886990940808,46.05265965881941,94.04729079699425,39.97466607271571,5.951230278990904,89.04569188896504,75.57541555612798,8.039902316936487,66.83995776597763,74.5251494928954,50.131414372145464,49.9991279659605,32.056522940396036,14.666079588999104,32.701793698240714,73.07965715799102,71.76824874250084,7.151739815406644,3.660491469787097,52.18421303557289,32.5288359546207,13.910882702628392,45.079633952932866,28.21932868821445,54.42494860966776,11.881679542500645,38.516364854476116,11.69851466991253,1.188016017543858,92.73889880598148,87.3836980277311,68.12367899242938,80.20516746052118,75.77193290432966,60.53380894484498,43.056981365425806,30.28379522327016,93.64622569331799,55.374685918084545,82.51302248201628,91.92693623912952,80.16243729765434,39.10284019298659,54.952682543574994,21.601475192034215,15.744614260368584,52.90498734738796,90.42714307276462,57.778197269639975,29.855885077992028,25.445169842811268,60.550189224124516,69.40511673927269,80.1599248008751,70.01392289569436,95.20572262304914,8.381963453860642,85.66362922577304,11.261947524151994,62.19490920830811,80.81350240657319,63.58053928838958,93.11788572669123,47.626860548034486,20.04404548171337,47.00860632196206,27.410989358960325,24.308083810798465,13.096292307982127,40.35188187320984,89.79579876521365,29.673732011031017,99.50605480830981,48.663582031474505,76.15641176293964,48.43856604614941,75.98641477140518,6.511721559224126,60.24968624314895,21.479731571691197,34.94779639371354,41.930097155944935,24.19642770183611,50.710896010989536,59.943066813676836,89.69312253462896,38.20632490697823,59.33708547028959,64.94109089282803,12.44343834296745,62.99796261968038,88.72111375984208,97.97093117963261,15.49521237160143,89.86007330271927,95.82921193407805,22.1125911903423,46.47940640689322,17.02620471892876,34.95741779415857,40.01694368379933,38.93369905637268,91.91178767053516,67.25826265420419,9.759241639444394,94.43115707876659,90.99234841276186,37.62644048390905,70.14588486878233,81.1166280023393,39.718808343529446,28.443102895947924,96.63744863142873,45.20226046256509,72.62095238772552,67.62650804443717,46.63888041693484,69.61375455282786,93.7794284768884,13.942224630379041,18.63393757383376,68.88062626991555,95.64659170841236,96.41852431566151,96.57817808062075,94.23138369484327,2.42178156908357,30.37104615474947,48.1706874986105,73.61833604381737,17.34509960575291,92.7223229246713,71.52058664456496,49.568340729929474,32.602854464673335,13.796686842742323,77.40102931301273,88.77374972009109,22.26549630671757,33.69531672199236,66.89234494203909,59.607727336483926,27.64577807231763,77.02654760488092,86.84180341604001,8.638894539547026,18.774009893324497,61.41868832909032,6.245637791827285,82.55234884833826,30.710395758216123,57.568071963538294,91.83371508345658,2.5116256500758216,83.11538416548068,95.07513200866548,81.04096172605402,42.34703575838154,17.210344855234048,10.107331806784625,1.8537962118515772,58.11744393272744,33.67145299855196,84.0687831744883,86.7698454740941,36.925704282659,75.2742462721296,25.265976084720155,83.71021667553777,31.875911243027023,91.18820180350173,4.723820747646967,46.40681290729428,47.27784162403734,10.878960370641334,9.66791389613525,91.86713999542151,40.13369588856812,75.02705942300916,58.701915278839145,91.05882846109924,44.158527394636785,35.30150375482742,7.04517602662097,69.96825432521428,37.17927798416822,29.007722267908708,27.31243690592344,33.553061640548634,14.493334027334159,71.67701173083346,25.181359813711367,26.589296552089404,92.12767713537983,31.330042058782016,30.865585051479062,1.764307298894674,15.649388785130236,96.37982569361505,38.72697398270323,3.754832367502159,81.59347578238531,62.10670185072276,74.19501447130699,36.82948450698888,39.085623965403215,18.514674093507,52.1663310128989,77.02651717430906,64.01762406249298,45.19880489364015,69.93214455047033,38.49410078816443,32.15830994431227,36.52397669436519,37.51160083689237,83.78834194037232,72.4072070120728,14.455820907242355,90.98370501335498,11.69995683242181,66.93873907077092,13.142965117110105,70.41944259144934,52.778606712770795,11.875350874482926,41.230167829694565,88.65150957915228,15.23386270646755,40.32631009231874,7.154025620105065,13.386148543271737,54.83043000118219,16.124735513834786,93.01419282028579,67.51482549977383,71.2472987013754,9.612185751416035,67.59024877642031,84.64851218993289,11.32361758075393,22.83681093506861,72.66505640842115,75.02161133611023,8.589116636406935,23.81301182988317,88.73735354615616,48.83253678519118,37.242585566120766,69.61300089708871,67.89358305508587,74.43575218957021,3.822435153652959,7.7401941922275,2.913379464798105,25.275481189881432,57.07021167899339,78.34104875342868,23.827096151468197,46.20792793912102,20.742301452798685,69.7641497999639,90.25181150482366,12.6245568902704,10.622532636919901,42.43225839804266,96.65765902226998,20.859080405309914,62.587921905760794,53.63615915857765,39.51148940108331,41.07083947687043,63.96982264310973,2.4071979004009036,62.348821456810214,90.29596289801805,26.13305192263329,98.607337560215,46.051910649599115,64.10401170296223,39.405504960508885,16.044088312474834,12.497319719188926,55.93438664746453,27.447421335232214,0.6428625175978642,4.2698909552535635,3.9998712407827486,14.799584051842729,89.35117503266773,48.64211662429738,58.94446477701478,57.963456777454944,66.58297410575418,71.22266852642875,33.87231086674005,50.524758478485296,76.8528785658934,62.661887554270656,27.925693318462653,80.1864027068358,41.61434080694908,72.13616947775978,25.83951692501436,12.92043187448153,73.9719858762017,79.50355367113059,3.7108272504513096,25.28243823832046,38.52841729399395,2.9620646035982356,44.28823796370106,72.7070089385087,22.305917515390984,18.718461949702714,45.01942981667696,32.07758934186328,95.9538753278115,12.336928212666853,0.7409862484476282,80.09386346956724,14.503818148374892,67.90466311336371,41.33180710332217,4.153436233418106,12.068483698628828,8.216453058731133,39.35407658538708,31.015376498260196,13.88561945737765,60.27325329405049,54.49810708456142,41.26127023451935,23.982801811713095,46.954218892916785,32.49110924391027,64.4368081828511,64.10076948214144,43.622850626581865,4.17816534656218,83.76133707534751,17.574108896305184,54.81410248663906,8.493726240952459,2.398466783009845,94.78875371415427,63.82051857646863,7.409475948445044,65.9119215299513,94.87299082217552,45.70266531495073,63.15078417337521,57.888393491789714,55.902087895634466,25.86249009750834,49.97040088740173,46.84101260016492,93.35064521941574,82.52771519708564,89.8782983608348,34.598313543408096,10.123854787872656,48.674563349390986,90.71573267137201,5.457139240721864,33.73820560979972,87.00435249182085,28.817517569842856,12.28973286244499,99.12438044357971,97.59950835522463,35.18333500796693,40.67888815582642,3.917918679161392,33.74192862441097,60.74652011150806,80.2917606999145,45.06427755519433,21.795818718788095,80.43392616615381,22.174908836160935,65.3033386079642,56.25518853849828,91.22379366982274,42.7433362816729,57.52898391841646,81.6603578871518,93.98417618441441,42.95966894996509,28.078895418736217,45.7696059094352,60.86708981456187,53.15710102947099,60.79480859326986,90.57890428028377,40.41457005804919,38.36980805783454,54.41446740817884,24.117006367569726,5.570368457308095,79.44538783058063,92.71030692896537,82.80540622778108,17.762914802541342,97.96034820783834,28.734062117608282,15.171996444973779,1.3056570577189341,72.69095412248147,34.5535080893274,88.43590088565345,54.18885715055737,21.0898468181798,20.2629280440592,37.963402860261,6.330908853594453,58.235676529685186,77.81487672471805,90.28817297173862,95.53792773201529,63.57833854415805,81.09214391132767,63.78030247355176,58.79158367030875,30.967038987334984,17.178643865907006,11.516631008927336,92.43796183449477,44.70156447971008,79.16871666400426,26.22054864671577,4.41772843043966,52.961790260622585,17.306979721095693,85.00880280748943,93.17426634797147,60.60896669702031,52.67433391993741,99.48709735768955,12.979679704785042,21.05345064413062,81.22628638214768,44.11413727945326,15.765192183134513,75.41831551270278,70.22450741270706,18.529922247739595,68.4970738084732,47.43522800761336,68.99104346953575,25.450246813093045,3.5075716470843843,92.08094122623453,16.494723261595425,5.999763354886067,10.945833590625309,69.96842551471842,1.3933348272009538,96.56618889623303,54.968519055309294,50.94728047638567,73.54412035696282,57.52818006173814,23.04482653636467,78.65787650714323,18.22853463292111,20.442203648547174,72.99479767154752,92.33670593644347,10.25952989562332,73.8941186385433,31.464409052117837,7.962972972806792,57.289146195496365,59.35491112660047,46.37687671819495,20.4973614019325,97.80682276218073,80.43888931889397,76.1967564538774,87.96032375964006,79.31405455594891,34.73292631739332,69.0523326052817,80.59841672131634,34.13350890730459,20.38220260264899,54.581215218692556,23.550216460220707,77.06679533928647,10.276368997703,53.02364598511421,46.78808967384841,28.991590839097235,48.91772920680586,47.0038287963323,10.643970533175807,66.49335428684225,90.23592686223596,14.836182267718911,68.842119557251,49.28820754548744,54.9204228294738,25.631736741362985,79.864231397217,6.332082711936637,56.24404925752157,61.81156032653803,31.569780364678845,5.455927568857177,43.79811192781674,68.53811322141352,23.20903838505749,83.05737120216345,42.89127298306526,82.40451480190397,92.07250734909444,69.14602706419456,56.760365552931255,33.71984512747442,67.09525499079322,97.62127016123353,56.216314902361475,84.90046978504365,94.45281004860176,54.7444887693196,7.649965244071399,56.49359640085605,35.428794981209265,92.69350928888808,60.11536112804908,29.478873123089677,72.04045130847952,88.5830630245308,78.77165001244366,58.28792988201806,91.26387164953323,45.17096459557444,91.96002702069734,73.25817891098608,90.64781078076311,41.910429187407,8.45223866657905,41.04551582840361,23.485147306646624,33.25501491772055,34.603330198859325,55.582368125652884,58.19648441576395,97.58633550396023,52.914253605335894,90.20906715285297,1.098838846428174,92.76406826332307,1.9241316395081864,52.904628989543156,14.216073849364975,63.43569243375573,49.35243092280722,40.31148931225107,76.15901931322429,1.5570509972489321,82.2817537333039,99.70736366715526,33.07329563192828,78.84962465664516,51.51509816635363,83.97258826778511,25.070526015731843,49.94936374827375,24.850304474084485,4.996659023443684,34.79177619225627,68.83880936608683,0.9855605255265965,2.738649303765739,1.4028261785008267,45.63611054600315,51.34094079007138,10.951194315638457,45.53910127759097,88.31380151945474,35.867787979488774,5.4308798101602935,20.486389391800262,26.59495762145213,35.01547831666629,68.42136289080844,77.94098862099092,11.351382022699196,26.96918905745942,3.4426116590576927,98.4790974309133,46.0586778256492,61.71004519824245,87.85990911097299,72.22423909877274,19.080595339349248,57.87776693274823,46.321125321445166,90.25309706729338,94.56011508302191,71.21173920085656,98.8264039206518,44.95847639772666,76.15982422757502,58.47539646083254,45.038221226200115,25.877257272542508,39.87611466181373,43.31868566077644,4.330317463258327,12.329807875188504,54.97704630127963,53.92420437220494,25.34146133393036,97.9931869522847,64.65146638534716,19.591839652569565,45.549924008780685,44.860847234224586,51.69281445350607,86.05657767610543,45.546544118759755,14.569011813789745,94.71379307564855,0.9568537845748737,61.55533111166166,93.95820557611776,46.50159316396045,13.924469355544488,54.9800934349191,59.20570279037057,66.68213302026406,62.381184690528876,68.28129280874997,65.638598800432,92.74691070635741,62.33488577043145,29.808528463482997,3.3339378351558535,94.88138099331536,48.33531700273434,54.26912630292624,11.690179158994418,0.8621416142464478,15.167528548737963,94.6403585156072,42.65325115525378,67.3131478817566,81.4064432497589,20.929963592542343,44.85825887156588,63.9700659779725,2.937366296975219,49.00376737596609,28.111539052616365,12.87946585055787,35.03422158183016,51.02099910243576,35.1526763016612,9.465618292818922,31.25970547755019,30.795268877679295,41.00874128897496,0.7152851812812555,74.9914506142975,54.222150584726215,36.61148878858267,84.21341738499216,59.96845438943137,40.03967379120329,44.267506221640254,55.35726201447648,89.57084711308063,1.0245094922005982,6.233942170975748,20.154982009598243,87.87595034695887,43.7662499936146,54.79098344392844,10.797905193622015,8.894828361982366,92.9790151822852,25.566674779138733,23.570791187819495,18.457939673024736,64.53030712654522,58.564441480252604,97.90161937250298,22.717849152240333,85.33986487135256,39.32919183424224,55.12837571685927,23.41896720815393,93.82545822242159,89.63285049847222,26.53711654864095,80.15543356256515,57.87372058711594,89.77430490649401,99.95151840049353,68.96718348257544,33.02496356514136,44.4716939103007,24.00345479288014,28.4004453393937,54.04225663784516,73.97990636287555,37.590104349177146,53.25488583551722,54.92615428142005,9.941297853856835,53.82278728804965,62.37039659319604,74.76495667195591,23.127762578370646,70.14233170566865,87.37006210938138,18.080574484775603,55.36539821950962,15.934677378013372,18.804770136141457,47.59635691247394,74.8687072163922,35.20192394128484,70.19062551111332,32.896304237693016,76.12406216008041,85.89511822405362,62.61507050018322,24.200603704070488,64.73115422125797,0.32703536289991897,80.84776606486088,36.050384779739794,5.906176565816146,11.018339310016733,81.20972912696523,29.418845139658323,71.16212218393083,44.905164561007446,85.17046168711335,76.28332034657515,64.86156869281905,29.303791319396964,7.18240437860842,78.60216510084771,42.78006865690248,12.13273767765769,10.023726784840592,55.59747659963734,94.28810168471668,16.102419589924423,35.62655312406922,65.77672319260198,95.32198005179148,23.09562806595469,85.39691126909585,78.47061752488257,76.340530704353,19.17305402696986,51.8602583057573,8.756802790376028,19.59999057499343,55.763789927212926,23.5237945767916,2.492861530756718,60.51967531782447,70.30432203230853,22.116214161623372,1.5464896881804413,3.305185743465444,45.8744181911922,70.01391014236542,80.779426409099,79.17081294040158,77.78043966128718,72.76501606496703,41.386043034809404,12.406432547612745,30.750182076172592,30.744325988317954,58.791664440365,57.310911423566594,1.5000108005780555,5.999497539574938,6.420227774603104,5.892572191122946,63.05685212300006,67.2112115905186,91.11328557644586,28.457183543006515,11.561447689627313,69.86004938601577,94.8274545150159,25.875364009552104,40.79715120513975,97.53075743260857,38.829912468358394,46.35220736400492,0.1201779261573499,93.01331963759945,47.65289682490747,82.19584320559113,16.366602256786646,80.58346592748165,32.77258101179766,82.53459234722766,6.501150033433611,16.676782472921392,14.637714630986576,10.64131897271735,25.645577157974884,33.82781176252504,93.79362640931623,53.99126226791297,23.879881881748243,87.23332037772352,46.37756562044959,60.68684871068998,24.89141792434999,81.23458148809526,57.113545359555374,40.76950731062527,28.90480465398203,14.318414701174875,26.839197964776073,63.713642842136565,17.61636058014353,50.745442127423004,56.62765295575268,41.6775277840731,30.731588978819524,92.293483179536,46.579840408402994,17.75042078748529,89.30721379941103,12.995417486222516,26.74487819627539,41.961965867269456,52.663428317245334,14.165176373227762,83.11976085761063,20.21548012501081,47.97273901857777,43.01408621225894,87.56733329870815,76.12846805165434,4.107465099320895,94.65039135800207,40.03465146485675,30.394329236994157,99.26347789545864,94.7980420704603,79.77269282487491,74.4970827056057,92.33078403207264,2.7130504520136878,95.95364968860113,28.867765702749402,92.01612004073077,26.473907986538535,70.67683522203866,64.14421452210958,10.158158090751746,46.06849348007781,84.73981196113559,67.24570137435745,42.201471994940384,35.73100185824263,27.493752852346297,72.69999388409668,39.9835982088419,43.953966855429925,63.592247105786626,45.04290118571647,44.75631332875367,47.43769190726199,55.53898961787678,36.97735154791544,31.690437539852923,18.74625890507974,80.03109230502999,49.88735688137359,36.590352399243706,79.62002375679619,60.54372184388621,35.08957858092816,4.443360636258786,90.9083431597248,29.11057667051662,55.41442818230563,72.49493414501545,2.0732309815373773,37.639659594584174,90.74676002548611,9.006420430901251,20.27196129732276,42.160914120027634,97.00817105363207,88.27378035687039,0.1945956953354866,14.192564505723427,47.72729542514597,76.21705838724738,84.0145352921297,34.68349712503209,20.294601143923106,44.940259102917324,0.3664661897208821,55.176628788946935,2.549624935331085,8.897493794813816,81.53902887066495,78.38195197729738,33.4915321007492,18.29975502251867,35.003950226285106,88.5321857244648,33.756918544211025,22.880403255458624,41.00016612497139,89.92981757947169,18.680123298039252,67.26561021792106,90.10264787278271,71.92613668145765,21.184231752120365,49.52149454515363,35.046992238405885,49.48347497522535,8.8716737948757,15.763866461635256,74.31346583134199,7.14516479386681,36.4811669938537,4.478875791834058,70.94973599668695,92.86139479627745,18.69912490636293,67.76691893312085,60.737531910344636,20.328227821876254,24.34092846266267,80.45412845445232,43.65594115940319,24.711271621459986,30.624183872588617,59.6294985793004,95.35005689347183,35.44069665014309,49.67619702849839,87.44707280518098,51.46244670659075,83.94008881000646,47.293526298432155,97.32781242254556,93.76909870072942,45.745877697585954,85.86361567940824,65.8021908126579,30.21955018291035,17.134400162876595,74.36701955925815,90.45091509677594,12.261763320454532,3.2376632374281344,96.89043518298665,21.663612185057623,88.96290248715334,81.60750836440181,27.474758493199857,73.30082948816724,94.19828054126457,24.220794426758594,81.29048931966794,88.5843934662803,44.64615272700738,6.739518420809021,79.67936985975179,31.270165030745723,55.841369912082094,20.906007246118474,61.968361775803785,28.515959632508636,19.317542633672346,9.391831096444857,92.70783414949517,96.5203949038046,48.28383250809342,13.600278493074248,41.43743755362739,51.86624065065121,98.02818497835081,65.48149317043757,89.49237108716179,45.885281746538844,76.19998784238288,6.156349592605636,45.37111468092589,27.4583620386201,71.4970124705518,10.779225758786115,38.06091371947963,68.43888171063995,60.790261342107186,10.399392933305085,17.36626905743217,7.143241857952088,84.17557071905848,20.369011859742702,63.48416876129268,90.55814232736039,79.10308311590319,12.72025404035385,8.609231559370667,34.88818424710256,35.17361390712915,3.7699020247240145,40.20415170579293,88.81249613747912,96.7009147002069,96.30719537578213,89.42684530454554,18.625423936725426,73.89715701667708,75.41061159177188,73.15324741337328,59.875439715302356,48.312067687661816,31.140837194097635,5.560848754584913,76.47612881352227,90.63535106009111,62.72237689755884,28.68180044032701,9.14370219588223,37.20181325942528,4.0117239916394265,58.20469027233411,40.08725062775776,33.639729391702346,94.79273907265757,80.75596704686282,89.00199312243492,65.83781825398732,66.00602698550303,19.04720494872786,9.042289269955317,80.7567316776981,69.15699425813587,52.217678750733256,84.25094848842387,15.750094301286444,43.26629483624601,58.101172910908424,50.62711152319792,47.79512963197102,44.765080888052886,1.393401101818026,49.39227327239889,55.64192635928721,9.678490464515798,87.28718226305142,16.303107422796103,86.23773816829879,14.696062120957299,4.629743430153177,55.58814367813718,78.46828666935747,54.98448994861123,64.07084200983505,39.326595011352794,29.252175783122546,10.797618535608622,70.76486765872585,57.53439610519232,68.14863554750565,68.7165804994176,31.60745820640344,74.1516920788223,82.39925098747783,10.289570489338363,86.81201770030516,82.64687251076744,0.39773208271425275,88.19667101513934,92.1245926432307,57.95696263281741,74.26393466351955,28.523299558560122,65.99285671131248,35.39879097063996,21.785576062894428,12.763275529576356,30.435519641817187,30.36383877207318,36.58080872090083,55.773340598685536,53.8268257072705,89.78373301574683,29.676099764864972,53.86712443165621,66.71905634919203,37.5562323898213,33.42389177525706,77.19974832113003,45.801049860034546,16.716529090502608,41.10652039259389,78.63614667036624,62.694491789381544,0.8434689651075855,15.806700886083892,16.30831661875092,97.6086628101052,38.34228490479907,57.72185951832854,64.46144037692696,46.02469436306949,26.895858837492824,85.39279968478358,16.58768871021171,43.58037210380507,86.49395511710499,86.14758492353623,23.808231836575033,54.23495526229979,62.70418798448787,30.339308479711324,71.21372557219011,16.66309169826732,63.59918689113056,98.71461512622307,85.13982033659711,11.742935563917323,57.5985842014165,31.902071391475683,23.269735428736162,2.7512283368055224,54.89926951621491,24.69003960078031,14.841268190806423,78.86719553868107,56.541158155066896,89.52406187320277,99.56647645600579,72.905398662655,55.935200085369715,67.04561970779307,49.776290983126756,87.56230794655879,56.3642206542982,7.443056727769437,26.9124127762284,3.8688193185008046,24.128942244212702,56.940334647352806,45.52244453977137,60.75989727133558,91.05920390718047,8.547764380910294,54.938259681919696,26.449930111570563,83.03690687697213,35.83412835631768,64.73211427851233,44.92550128796856,20.124037113256055,41.20669263599394,22.164494115051493,23.24328807977265,11.294060713943054,54.74141247938622,57.723823849712474,33.26382295625368,36.421154572139955,70.19014776303317,30.654114847448334,50.35444872993424,28.446857208367927,55.08709749038464,94.79720855965745,37.557522909139394,22.90715287348213,80.37544965084462,61.875092225119275,78.32594607956726,74.39937620504985,90.17493966572604,0.5532330446103462,57.289816165026764,94.62326491621097,50.227149457513974,53.58701391183713,48.48846579394039,78.70751432619711,30.99100352567722,74.58110459946374,93.55988977863045,86.91438074433758,82.38541002381695,48.90290768147684,73.31559507942602,93.83106810056705,26.173496066600677,71.16883101437578,45.318419735351135,87.67949022923807,34.655757515536465,83.82585008680064,97.01558378868197,72.54904825617959,2.1831637894797917,58.6519689521826,52.81355904221886,55.32540861076555,31.26377458965227,37.29945228623922,15.031250915117212,17.640783183948837,6.284885727837908,63.14986297656697,97.3664925040736,98.19153492471628,79.01971182524562,6.862898495436253,59.059927916074784,44.39681484644665,74.485326011163,86.39706157829995,23.398622053630834,14.726649590157681,19.416947549715125,67.17807482807527,30.656474996294435,64.56290657535345,58.65003815708393,10.829470306798171,87.259368117207,2.5877074287325774,16.74615349358356,88.188882203314,27.41832253589076,53.348287421381556,11.509004489678354,57.01423321076161,72.45096483721092,23.571734183578887,51.89189803641471,46.84373811545586,94.40623720287094,6.023819154337906,10.500938095923374,90.58373996415759,54.49209385606182,46.14594283207158,95.85411510579526,42.34863491539206,6.598337928457887,82.86377883277616,60.98722001583698,70.40018363214227,23.07171557602501,77.87404433998672,87.60143518877679,47.4387668191522,99.9007084114089,97.91706445224972,25.368296206709275,52.959574318088606,47.74887948991731,67.31988834608714,31.35161235774203,79.56173524830221,11.087029626738543,62.78559338095553,71.4989100535114,86.09133784740418,19.807123542169226,65.72495972316729,5.115527983015866,44.51065667339422,92.14894678060246,99.60400216497676,33.63443860802102,5.063107263459187,3.94598316781396,4.087121107993886,89.93393601176604,42.403460319923255,54.80023617390185,14.437880796282732,17.88604886635462,51.53527832009195,67.46217785085459,80.12925937777788,74.79005884933639,50.202665838648606,84.72755010369025,16.746669499943046,25.438102071129965,77.84462117817625,40.49370639581201,64.71426051514423,82.05072919431473,18.807730977683022,13.081916884730415,33.19380394351469,20.12867222017327,11.268697431540275,43.202183616748094,16.923254452792936,29.552370679685637,34.491450454627746,22.67014255732851,88.29725686797417,50.557483851871645,19.771789263789408,48.948869261475814,94.17674816703571,9.60021124993421,66.0619933206145,17.96943212855695,32.86324754581749,56.52758655069159,51.064754239055866,42.263863104957544,90.86632498971153,87.69180422949827,21.30471235667225,43.10066578835602,42.94005032051772,75.06331104907855,0.19476013911470247,81.10806074650357,2.8234615658596973,82.11682109889867,49.54793210101618,59.10942255919177,68.30484522691512,22.336622414558928,17.269130520672128,33.74472233772906,9.326176265850872,62.39544876828401,7.741971468103448,24.288089982420658,89.663241017186,26.832274771337783,13.702098958899523,10.846424072506434,9.790081520624828,41.62483896787271,63.07766752951962,45.87793867034043,87.42818136718236,26.273024702542315,64.43189612474228,23.239063953256313,43.475892095725634,6.3584928996962775,33.692502366944,87.16032316829678,81.85774074488366,99.46280762453644,66.70123420620844,57.46076801861978,91.07599764350698,69.83853294356128,84.87225458192714,31.688594723111574,73.61323889781602,62.75302610813658,36.64936964562911,93.6149076658645,11.22768695250047,55.99009012668306,5.874392693675645,96.84889432358368,92.85632491931867,71.65787416996857,91.45636795027526,54.76904065142216,89.39125299329767,54.106864794845166,45.10180101354149,90.1837318086469,35.74895088962813,16.66280086349411,18.907141379760905,94.84292046726715,77.11563124838162,45.38439531606584,22.261856430591077,18.57577043493015,67.32874613046053,83.8535607282869,83.75302347332844,61.292690740655964,92.35986050004975,18.85351684570494,62.15478926180323,88.193506937346,82.364340330381,75.34485655914894,58.13978072729715,58.20072088744824,26.106227150851414,42.490493910245895,92.70642667845252,65.96257079126964,33.278295134334215,95.20000922705087,48.819512133597534,73.63386084332528,49.41981196340666,23.692764734844797,2.793438907675394,79.99712053507479,51.278017054914606,98.50909048665815,39.34470454000303,20.257701709293396,61.66208793988114,42.48397325787033,90.94632224007866,13.0914619892031,47.27731781096299,8.794799813870247,42.10891072255156,49.64409247544038,81.70915774540168,56.65989196432303,22.45422268371451,27.77277235932226,79.32321184383878,55.27813192217308,31.841229357819945,71.22373898428776,78.58946407117834,12.852264496254806,60.42431421373264,33.710836289832066,95.28501841508263,15.61027265907564,26.560899163697293,84.78158046618206,66.36666516051716,22.015670950510845,73.75364042473223,40.62101787847787,1.6854642330521141,68.48743613152253,82.31411623545726,92.59160823727626,91.27571215960282,66.24478488039325,67.30608523112734,34.370375812324205,1.3617643685232772,33.236613812985226,86.19319830612248,66.71993719918886,17.174049911893796,60.32122317528524,81.33304629099918,15.039786140282674,26.017249957396558,64.83023783522174,62.92716127410536,44.329695214284946,65.53116221299562,21.370660291061693,86.78865584248882,99.33586717779065,63.58313464742055,88.67409235186257,71.92939679923049,80.59718898050012,73.71850488524409,14.881855622273378,51.23493277194805,9.74848385098619,96.53268100155965,76.21309375827957,40.15693580524513,6.690764423230489,72.21089289680262,51.772326120604816,77.8304538341255,26.1408183060999,24.33970381401005,27.48256406241314,5.6978830865412995,76.86979150026407,17.68053311866401,60.470607838466925,32.289099264737246,59.080052215391376,43.02026861491931,8.295732376889465,22.33149420395627,51.84649393912021,89.9795550636256,20.50530937527686,4.334906317500065,58.48175133360797,64.37776274352106,97.92470444138544,43.23900409620543,73.4272817305975,44.38062674428029,28.862392920544277,74.14061346437296,3.0338050253316484,10.29240319896405,36.23927127572393,0.12593411806307575,57.64683603487403,6.428126753127894,87.88538104000601,0.6840699022406471,4.945085723750764,55.337057284937195,1.5016230186951196,3.869298088621975,15.599315105284173,70.0061718683613,61.595045424536366,9.298094980065063,36.79955851245087,91.82169102417211,96.31161971138019,88.42541450866891,78.51881585584752,74.90857120913533,4.2191385752153865,56.395570466908275,18.763802947998986,76.35146331893864,47.74162199650637,69.95573521257816,99.58463013843635,47.84390344962921,37.21698120921984,96.44681515953516,65.54010970941317,4.995071098522674,0.782669000300773,91.83053882539173,43.056614719094114,72.0854461722857,49.55224458040581,7.5576074358678635,43.06081568999897,13.066404656725384,12.495565720063995,66.60076607443808,6.7349798371687974,69.23496184298808,63.583185096733516,78.57273415096724,25.0159539250278,45.58004591912632,70.80312257575179,91.10072578458659,29.641992350414725,80.62096994790754,56.375420991751845,32.162312650082455,64.51677848106276,91.1788978124332,32.697119732053004,43.37087087449441,45.426705004404276,36.68167280782141,28.49028032366564,59.24489425385671,78.86336509361126,62.15210744310825,48.30012574744258,25.103950308288137,26.029717448212107,6.743229101394177,37.75845092433823,31.14074351287639,66.22770377822988,77.22241135111584,43.86041810468284,61.62288561765946,62.66854802855823,70.6489032239759,82.67556669086767,58.21468682804184,1.9893303503512594,13.856580813435516,47.13679687991485,83.99317972573935,87.22916744791488,42.12746889507045,54.536825251248956,93.90864227514464,74.71954743473667,33.317164232182094,77.27280587412551,24.69201562226231,8.800026556481733,99.25328262289713,9.368848310467925,1.0190628649498379,87.2473965245003,86.92889451105638,26.695970171760653,44.86077838572563,32.97991151173007,85.55998137820615,6.46664335181053,33.17815397177581,5.670854029111894,87.7131893665746,32.308848405140914,94.8423445593784,90.79591642128875,14.849060446777928,89.41482670640167,31.32212650480265,55.851954344247204,15.958455603644639,41.12224979346505,42.136576737917565,32.114180592972716,26.07322360976967,18.29711441851338,41.66149321822511,9.147122958556563,24.572499368758383,26.689478537796564,17.320477236530774,8.379054694724907,4.269296047322014,24.574918642543565,40.157632487903314,62.77972482728986,93.99752063854673,10.175892373149297,59.69486977929227,72.40192434995527,48.40950655798515,75.574558791667,90.64878878741396,27.19294352200965,87.21154985646412,97.17031807120233,32.37219966639072,94.43282637854202,92.12670169191512,6.924451451502467,24.572259518602834,29.34301059458173,91.90331467682765,22.976014924934486,96.41530967327829,74.88293266616468,41.75608576274274,3.794823764231481,21.36844235367462,71.78797338491407,58.00856546756017,80.65175980931038,23.75103369186603,50.88917414737536,79.12752349915627,77.64096088687354,56.59312226960536,77.37756200743603,9.154429269455655,94.44222146890806,19.282431926162968,31.188441948397106,39.97473156710068,86.10683032463487,35.81273287139416,37.31193297227981,63.403177818253006,48.24855552972366,24.08520370528552,54.9763676212995,89.86451446328117,16.505929019838696,62.28185164112994,79.09012378272652,12.906440905914284,88.64734419692462,53.96216838432567,24.668143247701558,58.68430175827035,40.42413465460727,54.162661882725594,14.211038745720439,16.8735404008483,45.58095869974319,16.15789868994717,34.1686529592297,54.242941527641165,34.43385979560792,72.40322199842741,61.023340711823714,15.521579144585795,78.79065994955317,69.5130402429114,82.58160627762726,53.214994084659516,79.54055125542479,53.787482503069015,11.095672286411373,36.79168922366336,24.86384713416484,13.573014923774917,50.394129372919,13.658434449417555,29.645695545658402,20.90037185712179,8.349708253200205,47.31614275444517,25.12743828847006,88.2776228221034,31.25003206582766,6.073347079699943,3.138138125017753,42.203806859768044,84.72538426838958,74.6472465868137,47.870673328945315,40.84756648048054,19.596602905317294,99.22402888896096,86.15293226291392,53.04521316021372,14.894551605255801,8.370197543110647,76.34198181122564,35.20383492414817,42.51583265433824,18.215730076011873,27.957657798122405,93.42493718772997,76.1618462075405,24.20298784494358,77.93370098059198,5.17714752194669,60.22378985069312,70.42493297733752,64.69463031116815,12.636440806868166,99.25065087896444,57.94380319014236,73.42986722580834,16.181306908957072,17.492754264842613,7.6888063040454036,37.58391092112715,56.62081142394386,3.703043419460983,47.805196319385956,16.43690720276283,49.42663776391654,25.70980256356198,98.24635578463989,15.644098762360558,10.41059785580738,49.11686256380718,66.5013864085306,91.1750603900907,29.583638419074877,35.77802856680897,49.23938637169033,50.88202756535072,24.54423222815194,96.9709663801575,81.8117824044861,89.11825212042417,1.467629923637992,36.588894647604306,62.4697087146542,39.47827631661907,87.26911093568194,93.50780024844023,30.494451108401876,99.59853073806987,31.518482815229742,80.40154887088497,81.33131308460977,24.66059688990414,72.26255532463384,30.15190817267407,83.23934789940947,93.52461528213244,39.59593198704615,18.343368163808837,70.74597222566223,60.21431360612319,79.6068408975147,46.18885829489883,54.56332949683663,5.985204316791348,3.163621595579924,81.84338635847506,65.64117740591286,69.74820141992393,39.80083975992412,67.87219878146334,6.3565908502465245,31.824689233951176,28.63411658627576,23.092960618245428,17.338568698621437,19.620804133286505,59.08789587044376,42.77619806154122,77.09461436829874,68.72492342006363,23.98691394486171,88.76633221577637,81.67007829094383,58.45157925984904,7.846857093599279,26.451449916929135,26.091245716471168,12.221429644225113,49.105850825181854,63.145320371491266,16.081105992301104,14.270563093743082,4.673171614736993,77.3028240546865,75.15026599298565,15.281827961912908,75.67036601713652,32.58263506740614,48.69234120040845,4.172370229432454,80.65361075301227,83.01818243707002,82.9924763237113,22.763816222744026,46.9001966431349,30.711728284030425,33.346151109236274,93.62117020341985,5.114020006934661,38.614161554864026,92.39927431757364,3.0268679974241763,9.94378357251845,12.262829149074584,78.57579391267227,31.22349534616746,52.721618406829165,81.93919130595197,11.677224504004592,85.6622934090516,50.439746154673884,14.103283898754803,50.187619667121034,27.580870440168624,27.306707899855954,81.05056304200716,75.19932930755044,55.97926315313896,68.4039920850023,58.1590242017599,91.66827636027698,83.43501689575449,15.4700682887552,54.73596348635687,72.00279450932867,25.8320027627134,20.400305545215623,79.98156667144501,58.18231078939049,44.81361334389635,74.68654869263206,27.92867678599944,37.90332664808255,93.78014187883089,47.090156481937214,18.655844135866996,59.49688523004638,17.925039057202508,95.07697938822108,63.42015970116,14.92579395471334,77.1667118486641,19.86866213793602,16.44211098199404,80.21391361534857,59.094850794057905,10.647760586529476,87.20554329618881,26.72604907122902,19.87229485167319,45.08002064745291,48.102303510666154,97.31551856130581,64.54411445389663,0.23572324596877747,45.236092036857336,8.564243336542498,9.82456348846621,72.90707757075506,53.78020742629476,14.04059580435586,61.9458628869282,14.849391031448334,99.56952062449447,8.138822304987247,32.20185291923578,90.05866447768622,27.541110361077013,64.80517333881023,13.6942575527079,89.6644347594191,8.706525836863122,28.76580919388324,27.63942911113778,4.884116296992347,90.82922370280878,23.133103486323936,89.57013461331059,42.23543833298603,16.12180382160894,84.81341804060749,20.488361594857253,3.539633701788636,1.5205932006290723,9.693354159712053,27.639745006293847,93.66871134068833,14.314432670400112,41.326725756692554,58.14415047572216,84.3448723104143,64.36894598858926,35.47667608233749,64.57329146114452,93.72202533316887,5.35577607264136,70.11151713953694,76.84924365487176,32.080339637914314,20.172893367768562,44.80942566024575,71.94744211766792,4.985328933308908,91.13818507751353,67.68342732390933,0.4565115812706688,9.058543766633742,29.3104417760254,88.8628070575361,32.67789144132621,66.30153045084852,9.478475602985348,66.0953425067742,74.81966791581756,48.549953679087565,70.05043259368308,87.0407765406878,3.895957946925266,41.45640595566119,54.275139392946336,34.299848890554976,33.21079804892024,95.33437419025341,15.895659066413593,90.99726723454015,42.983259488445746,66.61806765397424,38.854417374989325,24.297945468894255,74.94589635730676,76.68304027774377,70.4592802220606,94.83387450996248,71.43104098688127,74.24467137483333,12.076292816763356,14.897438030772047,44.07359696771439,66.46349649835163,49.332837278863536,89.06367562404775,14.007940530388808,83.14091325410786,93.04714952934162,50.50126153672906,94.94965062717192,58.384490249670876,50.01213231145436,17.865287976012635,81.30392171632252,37.79285715563605,63.5735981599827,28.81921826690593,72.3064706603968,97.61909532246446,30.5586843586375,56.60908392920767,17.128550048732784,52.897237421464446,0.12192960459496138,99.25671093021509,8.428788178344304,48.61272387758015,47.2059117049117,36.193755238569224,40.44971443544956,39.45554182397869,95.16761398564843,54.918151226413805,92.41818744556198,22.340272412071947,23.532457916719164,80.12494168756803,44.66379662505852,64.85937827288886,31.52907764338069,22.81824453571486,92.51033876868065,33.434969741796685,63.47037357546297,95.90521004759795,63.41043084627642,78.38353981278983,52.32664514378364,82.35167878815561,1.0871223389849582,10.00079225530226,39.265577001299455,55.86003994841449,41.5924325655579,50.46875539072625,77.53498230892649,78.84539386983845,97.22363281126006,28.46784996308974,87.07379674183049,82.88422783057435,23.798054513399048,13.412257899227997,69.93966079205019,46.201910647739005,16.775863615170206,93.91512495746709,42.69607829817678,26.523237747071505,4.861096746584847,59.068005963530524,86.83358808341562,21.9146623764619,45.066781074351795,74.13960306435747,32.56622365656082,10.536328830578112,47.950509519274796,46.39716250349492,66.75930728255403,19.638603747608975,30.4946842545313,86.93030877182804,72.597007902494,43.456521334166254,29.88192056176593,25.317267986998772,40.46380075460208,61.120226706522494,11.668275278446716,1.9067215033250817,53.40243674381801,17.680123706853923,12.669278969798158,19.73492524589514,15.982009850105605,74.4716592531252,66.80391875349281,14.153971739989302,39.31806758844021,44.23006072765063,85.80989151915911,64.04463089952604,7.09630194784574,50.94254696827204,14.057689631961656,40.660614147344,99.96232322749631,98.95420293979178,29.36145472429078,40.809912454906275,40.951311339783615,77.37348286716686,54.60807150921742,82.65332325765237,80.21528602238473,67.75387269899498,5.252998019930521,53.99235645675273,98.68296197083131,16.193395221912166,30.274175291861848,36.6673412297308,49.579776912434795,41.48815163360502,49.59441955263429,77.25217260298665,88.53221221416109,57.83971010200548,6.631926269097532,71.8479842113913,61.87218023669403,2.1023658373291565,45.554846779074474,33.44750869515457,9.437232440077171,11.030747444593326,46.24112780027795,15.263694604791722,28.864944299755802,59.3371734645336,68.32389494213689,99.08193187232175,10.412643851273028,62.82363945459196,58.15939448838314,31.523330009166482,0.492197517377746,64.14039551482401,68.3293103072993,49.200431902579936,61.66453556054618,95.05134423047554,63.00006867916884,36.494103572222954,68.83797533656188,26.890671231126973,60.58161399407276,40.3798963389305,67.43987077587231,40.20304053313066,29.451294345392974,68.40438203747064,48.167865124212575,83.15842200593097,84.78641858882813,47.57353293686598,21.07827069175876,29.776128586050298,35.08740503102751,17.63712276897659,79.41122771061262,95.21790874873247,2.7759891866459663,34.582103607685724,74.99380335668036,22.634170999276428,41.24232844927474,67.55910181477583,20.540756525943106,72.13003582195962,31.42831850416884,28.10942812366567,52.49224941767447,62.08992609858638,11.854719658077151,43.794357245549755,42.89803986243782,57.973080059509705,68.24876313356727,61.76262358789607,98.14974439868391,78.06445408589153,7.786452252900212,80.16497415173947,80.07914550256469,66.45624664033235,38.80264761603216,21.91251256358121,85.14066619330183,97.92368553878102,24.874116900234476,85.85397893543151,58.24914763158668,36.362625159547626,12.94470160328638,43.027590653864856,98.92132552004546,64.89655108100702,29.974003671605953,96.53061485324724,97.53154825878826,59.42367023937071,78.958694558169,73.81113946764573,98.17746764314755,59.66081213993804,37.6261174298037,72.20551353525107,36.57768657070426,16.28647717282551,98.20175878439426,11.421309595595375,75.69822407474685,33.45880792372293,46.13058530227605,28.548334129892027,85.5940072338413,23.161464088301877,28.89204506089965,35.887468166987716,35.39185436582739,74.56654645626293,40.958139090940925,69.28496565858975,45.7244508079891,69.35636778109097,42.13566020385815,58.60444514336408,37.45334682722286,0.25104943699848503,63.338043656255216,57.120523315871054,12.44217477121209,51.22189590940813,29.042145977244317,53.92878629619409,12.159244539108837,12.974177754108807,64.74886977211007,18.72400547908696,51.176602130692885,15.09445961999496,52.572351265769576,75.03141455845744,62.19866577429409,44.141153574831826,30.825630529484428,41.3669518166172,25.462129725567063,29.107269354343224,86.01001874454658,96.14112932677288,65.80063146828526,16.496692226658016,65.544913565791,79.12055672326318,25.523704617785338,67.43601292276648,97.53653942931908,83.70888093044564,0.309590160357176,4.3177473302413505,68.08391023505578,0.8074979533366999,92.74437604093156,72.85639939817065,82.23742239863999,78.0634209776912,3.2798215557578225,82.32496891547548,82.11824106081028,52.43911074509475,63.53637275657976,52.74323636298873,85.79445179743895,27.025476657075064,26.962458988496596,64.54171726404797,63.38311255694325,54.986258779337206,96.15727159242667,13.671742039163902,36.51391069661769,60.623985228770586,51.44591173751355,27.638655238859087,27.15910167778518,31.730322800368448,22.269016840818125,79.25437449843207,4.2522187283512425,17.109138822988456,77.3672798921338,52.508985504378124,19.640826283957423,1.7381069142888061,18.08346062953102,41.63693225444817,7.378025707559388,60.37145013132095,78.55848426142249,73.84993050101265,20.99041386797381,76.77907871332754,41.28073726321304,90.90150664852071,98.56473148657689,27.717753883305353,49.78935040184741,41.0616406696654,74.02712443822034,92.95181615856887,0.8803058756026605,72.68081491726649,82.81863167593745,2.034273608388115,68.20227531360558,78.16180390859753,12.383662389897088,99.46854594209039,35.900519707560505,60.49000154751866,9.390924028628067,52.783512101883815,80.24977871520896,45.16466452103012,40.066736310839424,9.328302913234198,79.68367114216018,82.62182085531688,1.9078647895374168,34.703336874226224,72.99874944484698,56.14484580631327,69.38846641588924,66.00351849158727,56.605760664796954,83.30571796922023,65.13897462885024,46.29195628588921,41.38842684176848,91.32213191158193,62.88705015280512,64.46974035870457,73.61894899145092,15.48258182456712,75.09791457821434,37.51662177056517,29.616308242149568,84.49555435121916,49.7743260957271,56.01583819772653,1.5673418962941499,73.22409248050815,68.99059321395097,67.12407892794462,51.56585658655391,40.09402483563746,4.947625967791158,24.952854718770702,49.47739226773529,61.904922855438606,61.99760515983302,38.494767373110484,80.06539707751385,28.364805537043026,54.744333753040856,97.33803981429713,30.183779635437702,70.49051332632648,15.850706816174377,78.64887128457377,17.758353345095113,22.73730687180646,89.66722296395663,39.7108598818646,57.9130566493711,42.18235074074398,44.11045570528476,24.10283749082923,24.428118979165024,32.0154464290316,97.11013953570186,72.37127325033231,59.18889100530905,77.34323379424225,65.50993489422882,39.94727815825221,79.73430971784073,65.22013550691707,41.18615022102466,48.61014292515211,90.48865458653648,97.29304011837745,66.69430620627239,81.26116301460158,9.66343094926857,78.76856500242765,64.14879800429189,94.6629950484296,56.98635856203475,90.6266437368951,99.71087920024318,68.89334670182559,21.72513360114019,17.945179737420645,64.62603938193543,70.88244289348398,82.32035564175503,57.16940147365898,68.04649251297697,26.19961632716693,65.19141366255955,35.61042917409706,14.615327487153372,52.32140917169137,16.567983855910484,78.04384008097529,54.2941478459945,0.6396833994805617,96.68499897029623,63.2357085939202,65.11866323787203,50.24084025953714,33.27128284003753,72.72038487733079,61.4326372804737,11.412828100562333,28.433948344718797,66.17434124711933,64.80730694096287,7.049204054532687,36.0863795527116,6.315168317318475,72.24691220506594,82.00664071868724,60.7512637279318,75.2405999304489,99.77944836524742,13.605274015648538,45.584912060893544,47.148417533690015,61.64587733410296,24.328052522406296,40.36935760400553,40.74946091157414,88.37755829893146,9.830837947570492,59.12699079042968,20.278895806156626,17.925590617739594,6.827749753481582,50.721715497540224,75.71557815569724,94.75824876303352,52.74730159667755,39.264298749152715,9.7759270751268,96.2500120828556,36.38480424844225,16.683962946399678,75.53430811470675,0.8765853430405035,53.286113752793874,99.70715080704582,0.11671888327905444,39.871081434865765,82.783284188612,27.12666513631833,82.01704420133832,48.81649626431713,73.30168215431372,72.75111056068293,81.9542379416447,5.790270538363251,41.039492127318624,39.02913817524127,56.933739319529685,66.395214127793,4.417294982283748,3.128693622788692,95.27481367101763,10.63657724953988,65.45474229643328,43.571715404803314,46.25357521620832,4.43016184985977,44.02870468924201,69.85735505686924,89.43585407549874,51.98978264194834,84.6619565883848,69.08664427509477,92.11958093881098,76.58709078550892,41.50537741976906,2.4473550263946597,50.88244690050696,36.18808043998142,61.550503801126965,59.98301183942255,22.07470730701977,61.67995394092972,72.60755370385343,66.38954740870776,42.740446129043534,70.72915135887666,52.88558585146933,22.534615653266087,76.78032927028046,10.03406783565982,94.64999625322214,40.273762675429715,61.54016448807975,98.33195469698455,89.21842925684305,88.12276589881417,81.50398503699122,74.88555510421409,94.10318639248132,24.833561489865097,98.78984319463147,27.930006795109584,39.402632293220506,43.251928937334384,56.02109085103514,65.44708832987877,18.225335852907808,31.699775268304265,7.83636288133609,90.09551493423886,41.575294195259914,42.95679843109384,96.72724541934431,77.41265614031268,85.25343048503238,45.264056092382575,20.186994961948614,20.658837829194766,43.35902211996869,13.52255957219689,74.78033019097003,27.881909441447338,89.14078985171125,42.12324270220799,72.33415806832016,43.887815979654185,77.48901394829447,93.34709533183542,21.907020240088958,62.22575142980584,78.4927488184556,95.77258186474012,31.5957230042888,48.24112413553374,12.579378879479163,34.723871813456455,2.739474624254934,74.09861216246986,36.39980507080756,72.78707887396465,42.33976647911122,96.09434557528715,95.26447262273086,29.715445559938956,88.23015103343378,69.31297413168647,82.28400977557006,1.1926308592095536,19.92240176655733,35.66181448216958,4.361724886031649,20.773670219606522,95.47480244204374,32.735935501770065,19.83694588832562,32.21756496887881,30.50440422662214,23.131305737230623,43.58594391215176,94.20941507895324,69.77375775387499,13.390707466527251,84.8933603351933,2.745219837703572,48.178698105189596,66.29883040816932,11.472210867178323,21.353197897305563,42.49660380777504,94.7876316690197,75.87515106253726,48.21485802680452,33.607276632883966,8.205285073593382,64.11439386717771,73.05300494133166,46.193512528754255,63.429674194464965,95.32611594874962,54.53857830646025,68.41464120066965,59.41007174979972,23.721849669709883,35.79938450622605,59.614115217640354,9.115311512926528,75.92418005284189,53.262588826833834,57.85513193490929,94.4027558859662,68.2667506683157,11.263221881378271,56.49893091768931,32.04668990479126,96.26617434344682,3.165345124572627,96.42046148353583,96.5359133246796,3.286508305515312,96.4725620916953,22.25813349717203,41.67655239578421,36.083245828699106,6.905051462344424,33.830788430462775,6.815709725739405,50.89079571842745,63.044205022074486,24.793048967565422,44.52122491514522,24.559671532768956,0.37309371831281135,41.693063146280316,37.23732458040294,18.949788362901078,58.86714744873265,12.046392625656665,32.99420402287576,53.078558120959705,62.41088028596676,44.213551681380835,6.487190650859398,32.52131123529024,93.49743696859471,56.9216237128859,45.74772010930808,34.9614529368785,76.58133225899671,5.436452123939583,79.06211836931598,53.337593032924566,92.72372706144523,42.31022189182107,51.63749733164333,52.30821268678589,24.699439982693594,85.30694275743981,48.35761219569786,58.601063570908885,30.444800244975546,79.88906742090465,17.158808000764903,90.08991795745791,48.24285690150851,28.04715621909313,57.74259373823457,41.58172966198681,83.48033470337779,2.053987671751023,4.866315081262185,15.575013412990202,58.32595503153557,58.3126975830989,73.95891705055212,8.216300763340245,65.11504168761672,67.05027091666805,44.885866482240154,36.305832650528735,86.30380221977599,23.893877084121527,62.740332439979085,47.5600066217083,92.38209862030699,96.20262206839611,37.872117706585115,62.89635791646023,19.651923906109637,99.30018404783397,80.10681279605879,33.25777076342108,47.32809480455139,82.04525722801877,3.7635159748504288,95.79760450415961,66.52820205842276,41.08909140550403,96.40083296836467,34.822768966344896,65.85430069501456,62.419604292437135,23.692752595396737,77.86207580726833,11.549524572769654,92.6702425399863,27.838488887406843,70.1497482180263,45.73167114691222,25.981762330621127,26.61691986621354,4.766357981906744,2.484057692288155,11.106515925239357,54.699632015652085,46.543476218528546,80.75910198854052,93.30089504987046,89.67942301581849,29.068786942959456,1.6082519737329437,14.607610787966085,86.42039815766496,3.8800658069065186,78.91358927287216,39.63553845339739,26.302318653260702,30.77943616770995,71.09361269655099,73.33042221852473,41.87047939479888,4.294015840379284,42.99994618788018,33.351695575027094,48.51231714403236,43.37134694473498,7.858588957996526,92.77075240293931,86.97334819832446,3.239346168743784,46.74889672868201,15.794328853718653,87.54363036808658,50.106582933339396,47.4009504263732,75.78327059444689,95.5794439532018,7.619381978609441,63.456378597256624,68.05477951806928,90.66488673565372,91.67507183349525,46.80602279280802,57.720740521886206,6.471422169829211,16.88139744135968,21.630250473763514,88.39246478707673,14.673680782976128,96.82949803899359,32.63061891577098,25.683053393839096,20.97406166475917,28.387868469601152,63.83422558257589,73.10023888342774,47.590342078734935,48.410921495708024,57.885467079988075,76.98730642356254,20.84489628195407,24.71877878985196,72.05716634346197,37.517426233621556,59.592541312779304,53.41782542801524,87.42130641812939,72.35591683558121,0.2973490224499331,28.35824244427355,52.89937434911908,53.262591474888154,25.11017995160919,45.775655422183846,56.37842404810718,90.00658193394302,3.669737157774411,93.1393026016479,71.09718265228834,49.147060856268276,88.95530280133464,47.39716435781822,69.69644806991853,79.00569146237632,7.9977984882500746,5.16048318630975,25.131263938884874,99.87384586545916,79.6353443159275,44.75993406386488,92.40703430321,1.7107504004280294,75.43242690297723,11.14609470111465,18.738124538536137,35.291602025013226,75.11694296911232,63.19159335206508,72.02155555067313,54.46721118792348,59.545410855368786,41.93275758390861,87.43534321464162,45.81001661751047,95.43801601403155,12.054247952375219,84.82774431652737,99.22816925093703,48.975833994152296,55.97427482531941,6.682966284920877,58.74343055826829,89.44328608891432,81.52923499815506,71.25703480769273,33.34122486182905,10.147872955895021,14.179046379310389,89.11350873463275,43.49629542631364,58.26113530942555,20.46074993515773,29.7396414476945,50.2846155247335,86.2942189265641,24.22419520195145,70.9497608619597,55.481288988790126,45.5470338712462,45.88065872452951,53.7558577537841,47.45710853247381,37.739845912938065,31.11259139166482,99.47490844725817,59.27567691815964,22.96772324223122,73.99249644234104,86.09636345917333,10.192928408191015,81.19397323964226,77.98854874651894,8.46484632447757,23.60168598890643,68.11885050410146,77.00919850026641,99.649045970631,96.41521126791798,37.40970135526441,3.771961299837445,26.24300857221924,67.90786564856407,26.08761112265271,33.19253917640661,72.48435547640395,46.75598635188965,51.50796224351354,73.52057669157593,98.37805423437668,60.4349876929023,33.18725455678795,90.595114524208,38.96829318283099,26.804758088952095,91.53579401292292,42.35261600994349,25.415968486796746,78.50768135568747,86.72013352101663,60.20210639812572,56.31876137095777,85.50180690414375,93.24963409967485,66.4216155504516,60.97822471944726,19.178928798540518,81.19543397562995,81.98223503314689,26.328771528585758,28.0405897783495,19.790387753933025,77.15818770577981,77.27749244679958,60.301958514073064,93.77116136479216,81.78114892493802,7.404602045564246,44.244757369208244,10.251763552247063,25.40936504971044,81.99560175854687,63.27788975851004,2.563410607975114,40.584846590518545,4.177575717007587,28.790278822656866,41.65948059653783,11.043164061624644,75.33076388358332,82.32625229902301,20.944417910876943,71.47343571275665,72.51020136647301,22.66003182941797,63.393207441876,39.221868584999385,64.9147008296487,95.75439519416491,22.196607484082353,70.68897371746749,45.263494086632406,44.39488089914547,70.3879246728427,33.797775447573954,25.62721139101667,6.3419847793844575,41.502630051002,63.75682807125488,54.70086647707883,17.461990955888098,59.73290965909833,85.34017002762002,77.88734652348512,50.65941808856452,99.3293522964895,70.31177810863254,29.15582000300657,87.82898279757151,8.304718659459065,80.56934996749766,93.33580425066701,95.70283729653262,46.77831369866511,37.06933201935871,52.15679918763554,20.870171310040785,39.55888720350041,22.826807396093308,91.56743558729161,36.634726399192004,20.70979863730795,60.32658722927319,75.77135234466729,63.31305915596032,49.98655719615444,58.621822872681484,94.7516948939049,58.02102078216698,84.84620444714702,7.188835987864339,72.37216502857154,62.668105603184024,95.63534451384474,25.278711963372135,58.336325325883365,15.065355137251357,80.69644383983898,4.448445401777956,98.09062921429053,75.04177026762655,29.887033506750328,71.7493158148546,89.33877425922773,16.5814370678672,48.106585587403615,57.183668006050596,2.6609123500801135,51.8259026182923,84.76230689160127,64.44433882151918,58.965391361025624,61.25332694381282,59.301958321557045,46.2495116535205,23.316568998325373,15.316262102028732,11.724531375955527,32.227318996734624,34.96380679005061,91.22506267726634,81.56171998700158,69.74227917563542,26.179256870417213,69.41816654676022,43.57839453205118,89.86065446144455,89.72135071902167,10.441748722622822,45.53357465710787,18.514268741495922,98.60666186826748,23.024884048833407,36.235007277652144,71.20752755812957,33.53494493311433,92.10808257775048,11.910641282841649,19.48698100730517,48.840101422450424,12.663574867089356,56.946198682355046,32.88428853345121,77.96742392234698,50.770010593095684,30.09000378691622,23.910688114005694,16.69639452939775,52.138202780677275,20.60102943228548,19.479592916434672,41.328704628438594,9.128385657051064,66.52690488579735,63.15816331414238,77.55288528773593,71.87747761473163,10.086824537776462,61.96409627732491,82.65316924184677,94.62213399066547,30.896713195652147,8.728912605128658,77.3173466739061,31.372019590056087,68.10854842145048,92.3799921232209,16.118028107648353,10.899980461390369,33.56376618580141,41.235910285059454,66.72953999067225,79.48565056843591,98.16977783431976,28.56900914844268,62.507256051080695,41.311622989116195,17.202881614974295,75.26428581923614,81.34977312039867,37.72207334263298,81.64223601636684,25.026307440850015,72.8820090546264,8.191008646309395,60.625015447126444,98.71468736246995,49.696746207966825,7.669271970308367,8.118705315985618,85.40499100529709,21.991611222689055,51.800071755539236,26.518692941827247,40.10115808365714,49.913177024200394,49.94206772790323,95.76416534534883,82.92699053076254,49.475609795881724,70.03423749339076,62.00638486645028,53.729003449128996,26.61240337405697,52.27202871667769,86.31251288781269,89.89189668072383,87.15617252304511,31.509122067065764,18.240196361667017,20.545034528808014,42.93131441958351,93.00261854305984,2.735554063952561,86.26250043454135,19.776530111297884,34.755125812169574,39.989959410856535,37.711566774238534,73.19011917905208,5.33170632336708,69.59341683844842,42.297883407421835,53.1417290940692,98.86976055038312,96.2714612515183,72.75245489189977,43.884147345284404,52.71131452747858,19.234143283065308,68.05620928061138,5.7889030384768,13.000438580604289,59.0439890784659,20.418337533592425,68.60983847692216,10.684887506668861,22.848550985686465,95.59603250336558,68.15872619829399,48.17182698366111,38.00851834236861,69.49666793323577,30.60605338572955,79.8501394768412,62.92862450130453,17.14992019418007,49.87698282206486,53.845632448367994,9.374243876364352,67.15376846755996,84.35410680939394,50.92676317199799,99.20002005091388,79.1493748607992,45.39655930550991,16.40975315504114,46.997803341821495,25.090553731582343,39.44023417641915,21.998094578225757,63.01775382381234,79.04410775859698,54.784358641645504,78.78544119296559,38.6949926581054,3.676475890384856,42.87322256815862,53.97488497079422,23.903875335257606,99.70176290427251,58.84159159777873,33.04068508123428,76.13766635809716,20.92321595224391,69.78988109427246,86.51940292284512,21.82372066770669,61.31873929823812,14.003486181394297,98.75227653311217,67.34706641318286,1.228228649975105,48.04583792793028,56.245034891584936,97.0277577021011,71.14342684943017,75.5769966215098,36.18722757591688,82.78122642540147,70.44075363053922,28.968637882872972,20.02681640058125,44.31433384753641,85.35980911274207,32.465532682971755,63.87373442489639,86.37292845147795,81.83629034645234,51.33391777240831,79.72552013910064,24.255348776123643,72.13454362571572,40.483677763043545,20.282157924346468,43.95865335557213,44.16592615579212,90.75337119231685,46.07678841920173,16.284873460853035,3.2917126111795425,10.709246578816678,1.4981614287894462,48.18181340938173,27.147657680696746,39.640649470567865,85.88361148792576,47.54292446134507,22.953639091145362,79.5798017321968,61.20068491191779,99.83850463297631,45.96711332880044,31.852573795181726,74.31147882052363,4.87728971280389,53.527181483646224,3.6415564188456373,67.48313970190033,93.51424275864578,91.64946497090318,43.55969729879443,57.27872759347314,22.583372721054438,55.94487299579312,40.850842112619944,57.470491314337124,65.2077511211529,41.73844018154789,68.34554552163497,86.91427866716361,44.92042461065046,93.04732305930573,81.82584272779769,28.93386297364653,37.15072496055662,67.57393518747335,61.934410734788905,81.68056822473805,91.24103791617759,82.48558855316315,34.59382682591272,33.59432114140999,15.788338855085726,96.49930725503316,96.26105626435746,6.02805471623512,31.712725856678436,60.01338804636897,24.31491371022696,30.54004810811417,96.82666865105772,67.46836361403385,29.78250414532736,97.31915550621783,2.313459174651711,50.870735687274205,36.741157483920894,0.4528083305109343,18.79653779838758,88.69259469858197,42.82677639290914,26.677016181603374,13.719182348883475,50.27074150194719,15.072862467438664,1.6042548090504538,34.60267697832573,61.80499064250773,76.416097265614,74.73975905444352,29.18447315775692,76.66640083197062,19.710452292090487,37.74893045889682,42.39213020776455,99.07914669988983,19.939155539505336,78.81619879647353,0.6639179229732672,66.82833450968161,17.938831603587225,10.900165317571586,8.794306534553176,42.603471446128516,69.09160019727965,5.969350323958455,66.0574911181869,83.60934985544048,9.684493440194819,61.99984637349656,21.857648897134872,85.40736447262861,66.1531978781541,51.11054125129362,10.803134278020355,4.2008471980061195,51.21143247114281,2.0186155550126816,28.485036601545175,68.15518982968099,99.00805629489231,58.767039679562295,75.30781388503588,64.49391305115857,53.78145192689227,35.93449709807545,99.70407387553138,76.10848417096575,53.22474731597479,99.59350589151414,43.20085164313825,89.60304662617318,95.35464930522078,88.95094804076128,41.44273971981104,14.30419891790865,82.69429566586807,58.86168721146192,11.992689697975988,26.684976295546857,15.832471066303755,99.32970290790249,32.49895347796572,17.84418916129035,60.366737466749164,41.35369439562275,94.44746373410062,61.319743194051156,95.21356277281033,60.9991833344847,22.414074353469495,29.65978847409292,74.23815863200744,28.11887445943825,70.70380554441833,37.88495370732705,27.657849880183573,92.67995412753388,11.990928998642215,45.27583594439773,61.93500891995502,3.679510773884964,87.35245104411423,70.78958131801795,76.66639954809203,90.60697498397595,34.082763723804,44.89195658518816,43.9382415361919,83.90883433966992,19.13648054333086,95.4114584375119,56.38902842209465,64.40327344342963,42.78298027683321,83.66471853009891,93.1892006233891,59.18556336623726,43.50819459982452,87.91746832650541,3.398186615651655,49.17374674495345,19.35670130890996,11.314786010871615,57.67045834278674,37.66254762515568,68.61208704547693,76.503475892119,4.606209090662949,60.91864803606668,83.07371030551084,18.269370672293995,45.412200719858674,89.0568976054765,36.240148656866836,18.931760562651768,71.03209258456444,47.747677877366904,97.32058231437347,78.58666455930549,47.63751120444554,23.00334759518654,8.47440940015357,71.11075189298433,26.621020557922183,39.74510158234651,16.789361417541482,86.081720529356,72.21056076769548,2.235580028111639,42.80017650691449,64.62517881290508,16.455055942828224,14.810424248618592,53.97958698732529,29.954093183811526,27.596342903213845,60.5781940003048,44.439304738638675,1.0990761290750495,80.2977361997926,71.8868476455311,37.265713646354705,82.55322805949463,24.37043930317492,66.2129444171735,39.00559392941037,96.74074142119892,26.488101008468014,77.10370038152689,64.62383814404173,48.63493170679204,91.07237492238669,29.83505536780564,1.7518206404198766,53.182858925543385,59.5818690708206,93.48292585137554,78.6632248226827,0.5315645828623983,71.18589930436579,87.88720271005475,13.707096717671474,95.02978185952074,63.11679340598039,63.19953510120615,39.909085788712964,26.462416775660714,72.03992547946237,81.3747059883647,26.930403473252916,56.873855381998915,15.456642923484942,91.67507426139296,61.93669494884656,57.01512652519448,25.985812628567075,32.486305675629,3.137906737158347,56.032516687108306,31.633623228737996,31.173481411700642,73.46760862488345,5.53431220040399,18.719219051740076,56.80645703598303,64.62045252357385,56.372014440673205,86.58757705015779,76.61053192195278,10.733602911693973,94.7275429354857,81.775769158998,68.73424647195033,39.8186848641474,20.690226869483,24.988999394103594,99.86959924382052,61.70321237969976,49.853730601303006,18.718802994400896,36.293730811838984,51.600146462342636,82.23749722147825,43.40703836277638,19.945536889274006,96.29219972730716,38.98743434628601,81.53856299018642,21.26284160963724,51.399556958004176,17.5189947825794,29.70725488699115,16.953975699470302,11.518453695309127,70.3326110784064,38.15212597947281,48.03270783821325,57.77190214272101,89.31880029390454,87.01421697327227,39.46928246053907,2.5600913208611242,47.41624032284456,92.4487168373642,79.19325984322415,69.54269795105179,92.27965376857246,69.82014887852384,30.742713455065505,1.225196366463599,42.816519506788275,30.771409782743454,95.13143840278171,81.67378389838187,72.901648475805,57.594020731466365,61.194396978267264,93.26205389258325,32.63235182705553,32.581507362194984,70.94376770300798,17.413136209744952,86.36710015461388,89.36649602937585,54.48386014637207,98.65284248861231,42.53456461979963,44.320708076065806,55.22452775279601,99.76270883291065,14.772226464338301,84.34585741969958,59.40215517797447,66.42924161717039,88.71809224022819,80.40202292079215,83.50052324771961,64.33453832570038,63.459319285534264,91.20929701044149,72.27225569813233,65.09487304690087,74.98811572157088,4.889606591466656,9.957516155868495,6.984343941841975,90.03780907637099,15.764730759691192,66.69286428359379,64.69800633970817,49.34706498541394,35.51914617896481,23.653852181560698,4.014593480275752,92.11482310050722,43.08227769683126,61.18828570063128,42.95172499865433,63.54622290102171,81.6474509526526,7.10552674501721,19.905411895439286,65.59660746988055,36.596510242922676,58.7159106283127,77.21850425979747,56.20285373019931,59.99904634709996,66.12222876192382,94.02330566734992,17.6067402084633,45.887212718647405,90.77462556676721,33.410349983242185,31.30909037217824,43.45918539691418,70.71599853499852,63.38124937186331,9.389616390245624,65.10594182587639,20.32786455049961,20.812733407270855,12.667134356531761,67.71936178040552,55.618709330929285,84.47927530775809,47.51708984642165,72.53574229582199,34.54077066142273,86.47811983922911,88.36739727945522,71.11716151446636,43.354327286430404,16.81733726685878,14.063733168430115,57.31687327078856,65.05660433320006,47.78327761129998,87.25787733785617,6.367733293286104,98.40349732503758,54.142392996313994,61.70354771537128,2.484092250728942,28.485183037581574,36.05139385885526,21.91255960856121,14.493323006082337,48.63347893598282,16.71105815238103,12.514866275039937,89.83497949487005,17.323962597711372,53.86768335659594,63.72863908072024,14.218501826604768,82.03769281616596,44.46766060476512,58.66988338165295,29.757244329973354,25.074144147735623,29.929707157789498,55.15196391291075,68.79537878564103,13.187478078093662,1.3585390258509134,71.03269903059525,65.5605697913927,78.44956663732113,24.049407885805195,4.078172646840916,43.06092680454815,56.8716384817583,58.783808009856685,0.125418952447931,33.72786948456225,73.00279100109093,73.58215715308998,92.56337234357757,78.36292705553382,73.34406290600565,46.95208148895471,98.83977017984495,5.939679766334538,36.874941051126285,57.05650668964134,96.04908630615616,25.08313371179901,58.95847773206644,77.04467579606688,65.08823419462203,80.62444343311796,14.620237918063484,41.53512356690544,52.133207879124,5.882237071051555,26.362264460951923,11.74918787787449,28.751372650269168,63.964524877105745,9.182238679598754,52.55306498905262,7.5220676569332845,83.77256713290377,45.283622032972914,42.309620933994665,39.8105013334514,53.31900863013138,73.08387335250416,1.2026396215339297,6.1268627256416135,29.77450947563466,9.00153631326278,67.54264427435805,49.30554613935928,55.61765337996576,0.17603734342680477,33.73911569144189,21.015070588423555,2.66548327634083,32.26179520762512,97.17718622531936,38.193852163636436,90.86865854648447,68.32027771879739,16.500291212836448,36.34575324008957,36.43568738784819,45.77094942270303,58.87366500005319,61.73223692337134,35.49682181899152,70.55431385729814,25.843371943727036,93.45639738896642,35.042727137046285,25.800219583165752,94.52590870121784,51.513016579798034,70.60649145411992,24.737644143848982,39.2200938775305,40.19983090884131,20.176563420775995,1.4772269850278352,94.83888506303865,82.08315453541819,82.45443844063186,83.11196288775598,79.31051910152198,35.73159259814673,44.99315306607402,79.85835478244903,40.573561824449065,33.11780525608234,46.64471045940681,98.44577221033197,60.673496226155756,50.74399181353656,90.76558231112685,96.20825550592937,11.533486514146185,91.17282235878035,45.79437055497463,87.50569171837552,62.678084840466795,88.93228502804998,37.03776959996079,25.614568899639924,2.2033091073088706,66.39623334132676,23.958530593257787,62.40798976702449,1.7363506021718655,30.88601866113455,94.19161931235726,54.718621830081645,74.61440159228478,53.83805840444569,22.13054970121313,52.503566177899906,25.699392640224584,12.786020684220457,71.70847696932037,59.75550759837901,72.18218555113225,95.62578719067906,29.67001411634731,18.0133050967907,23.102735105018713,10.940056876220062,42.06301197737447,50.807813082662854,6.075209271054616,61.84454799625809,72.1356810114386,50.570023414332375,80.29456938682239,40.234608033480676,88.58026838204682,14.997375255256951,68.5670542748536,35.79650924027506,66.37153625398669,74.06629142920484,43.38754975113328,24.581260852428144,7.178243592795075,16.44530756993833,94.40058435299528,29.72755858680678,73.53706047053647,14.255195620989692,90.58837167276805,5.5690198796186525,6.369644470340363,38.95541570696839,35.11705925008673,51.37431093066623,22.043584071981257,53.7308402545886,2.3803689251302718,0.3772139810854003,33.57902759298472,22.363459550437227,92.63861398150497,61.77754513693128,35.929738319517654,65.923613628504,11.55306887810561,47.47332761162218,45.843161343907866,67.854570488834,48.93474065481642,4.907467832863521,74.72092800708538,13.246496564585764,72.68385144945235,54.98509871766495,24.371821337653333,56.77794018810929,74.96262624985906,3.7627020563389735,35.37343878462894,82.46410969596184,17.98261977496717,56.58760430460491,25.565119126949,61.480318647608726,95.17741741332951,87.05602329155533,10.968719574912278,46.69557360211793,34.25605572806041,83.43555372429246,33.48367589725271,27.433161068720334,53.75984689482074,4.6404403378340175,43.16755724413471,70.65672689225208,59.67039625334787,3.5945009007427142,70.15751537952302,75.59489283922133,27.762345363727814,54.34059649389682,59.015242293256065,96.52864679341344,62.48596310329595,99.94365992736913,50.243857297697744,47.65661477581795,66.81054617077899,32.0161795379853,16.05233897690136,33.52463929393228,82.66983235536316,45.79467141387057,18.170288831787207,5.111128392640952,6.558079716265464,72.52391804184543,62.08263036620595,94.93777281222503,49.70306183856694,67.21115392203191,62.00980751315521,72.61404079887733,92.15449420700999,49.88247534006797,64.55607972431311,30.676541628486177,24.644269543788823,88.33961866934303,32.14815317030656,68.66951775032427,59.602747388186216,57.12060210769767,27.124742143168422,73.9173306341083,20.411418280119864,2.2282816943845707,16.002026057596208,32.444990118264485,85.31734261754941,23.111983321736453,90.46243341997432,83.88443251949094,80.02068376889704,80.19516564372562,30.480210196822476,85.91876221302131,85.71618290784203,28.28862824768823,0.6345220187203848,83.9565154399563,53.68856214156228,30.78625515509611,36.0906614214323,50.01408398702776,28.91085567451468,62.48459502877748,37.89388750619078,21.662585835679614,95.90127056434925,87.11495142773303,28.624824192868882,30.813329006847567,52.92181998643759,3.5805314027195556,93.51699552004132,86.37594992583524,21.43233926163863,68.70063821064538,20.496585739908568,58.13050704057691,85.7493457414891,90.53673590278662,59.10717242813086,55.03626772648619,82.17488768988765,40.06912984205445,86.30213973419819,57.06016422048269,45.973856683417246,70.63332112465442,41.86991065160929,80.79346851237284,42.243533350036536,95.567126742456,30.148144698459724,90.36039467319358,3.8745410155139104,86.10020982925587,63.4379493899214,90.8017007377863,98.19991047455437,27.29403575206878,5.337258318051463,54.038508133839116,4.045875275129218,93.41002716398917,28.385080553998844,72.55306779977187,31.93810151652604,75.97698465080342,16.76777961023782,96.1139452523593,1.6294868461847356,47.18457913531141,47.107400280430575,0.6483706942224665,0.3216699464486994,15.417030446887903,30.787563459485057,56.51040083891512,52.72495014758169,18.415693351616202,4.54398742304829,46.72113665121317,88.50399106817476,58.48336871561588,90.96554374852535,15.416695000165726,60.08176160525377,0.43035146217784703,26.85217409799775,78.78673842873805,71.21569645025042,93.4535009037267,61.6426136047879,74.41552281619596,58.565355628050796,66.02282470172582,16.57265638715576,62.423385921214305,78.00037337133391,46.314631868949775,23.397207132448205,35.80819461816599,0.9318314359409663,54.850924670455726,97.92925180041185,8.52029875553465,44.90783053031918,19.274274779092472,14.64741730196739,81.80914638844358,52.85358345562222,79.45002478618503,15.071984096176882,95.0466529823283,70.33382490362145,68.35571596154118,22.30887644681755,5.685079565726503,35.46714418311482,21.72766793494717,33.11398272229758,0.9422486408216524,49.4317684415412,8.034950698566757,63.94338222955781,61.38944615156519,4.865470076985623,60.45004624838741,80.85196123864597,35.25900727050231,73.10054318269613,94.29982553636911,94.02972925882968,9.0728245603802,87.92964107944886,90.79129700632743,27.312144709305365,63.09224008308439,85.19589622997398,75.53070339097945,16.887761400043356,89.4240930140962,53.680690667473705,27.62285361225586,0.11776183482022917,22.14357136756011,43.581920066013836,73.82885099176265,4.197804383923565,99.0488911698182,46.450256859262986,52.86766085375161,35.1383310412401,21.14211167064535,32.74155778823575,33.871331878539976,63.34219647377227,62.551118197808165,83.78860192329695,95.91370637638026,27.134012627139725,67.12893876147065,52.459028745007345,97.83972077460125,92.93192976528016,75.45830570364673,6.990142222089435,55.660023212701134,8.955964962058616,16.672654911009353,44.72272215939965,44.20514045787041,78.81691123078215,7.63114330136233,77.74228898182906,39.85697566501501,73.39970228770835,32.03144087876857,64.52656160905377,17.72372079316017,89.79344158739045,54.04262683502831,56.12924002377871,85.40779213806078,47.76666981451672,25.697763211082293,58.70642130159457,18.21766902290681,2.4904863846665903,33.2793700307401,54.328144627565166,72.18869974450807,59.19083627178562,66.1220953949104,43.39495266587535,11.749352580118122,6.625537828254391,48.81779223422926,13.83311636509167,43.65385446699482,85.30138841126445,93.00874534667423,41.618418600377815,88.70514191679942,49.137986126885316,0.7654804169265339,7.608904125881233,47.64147758454681,26.306044057722,29.25006728920323,76.61929273100682,75.99116302275213,52.715093547063354,5.479552260197829,61.96271247834936,18.30534125203991,67.15809870261145,40.66030039032563,30.555045111552236,50.47142311188405,74.58404299537142,67.03752027736024,72.07900872571909,12.295794257250837,50.420884826134504,96.73759444562458,44.733822915911446,94.71995770003512,24.66986379786702,85.94731474612996,14.942267721141933,79.31401588723992,24.645847794912644,24.02397357564422,27.070510152617533,83.6818976245177,49.613663852540114,39.80665542602909,44.69295087541452,27.60342224392135,57.187114530291005,99.40982713230117,35.025668663519085,45.11768717100587,44.70647915774928,30.342342339172546,3.805824154706272,11.5701132265558,19.239154083754006,72.58517223158172,77.04636368544035,21.42384612368232,50.1910877491383,46.46845353996443,85.06676514630794,35.09995371023732,61.53579097762305,63.724304866288904,50.86499528853228,16.762003625499457,26.70928515250075,82.01327542051948,23.00762851354351,45.453772626369904,15.075848384329992,79.02369848550167,0.17181638862839854,15.840339010776173,15.705151394781092,74.30339754660984,23.43435007223804,80.89796441586894,4.988199494269773,87.52193180234713,33.65498547165351,25.619989843859837,25.033969401882594,59.39418162872104,1.4853024491844447,11.012320226760941,79.34253164339702,43.23771419251658,81.43556012217134,35.908624244702125,63.98084420111325,12.989528008685847,84.2360764042332,15.14511102890338,10.785656275405131,17.108651726733925,59.760797878992534,46.98517378246964,66.73286601843847,32.68920876529513,11.58242510208135,7.03139829150895,86.99305838175532,59.752633928986434,9.983188488043226,14.649858520447989,38.28639750157653,10.361363569064597,59.45343774108311,2.841567749977969,86.48106255600258,18.990031745748215,16.30634528145508,76.13503204733867,76.23941330521757,69.0159378948622,94.82007120585628,6.015402184016838,90.4321368789284,42.32793306548016,91.82013601067351,3.657813836281776,86.09964987905875,78.30872452561859,62.40513319828162,91.53395485122911,80.67119878953811,17.799147982993812,27.76964887138703,37.698230828458456,94.13668234726114,26.74130103503074,15.554582142695207,11.766911542855574,60.99842422189084,78.42132560252723,86.02286365782503,85.11373975649316,91.36578971324411,97.07138559700974,89.66217800404773,18.633625986708935,68.48565424847592,55.46607533781934,52.26313773600045,90.71402450190041,53.08987832010974,55.626615856911386,47.66842960881937,92.79050702650721,37.253036745561076,48.61140884607721,30.711742790595096,23.558428848009328,71.21518925867234,95.16804758132595,7.717347519006812,54.16474292519947,18.56295529157891,28.1263946411038,13.145865065621798,12.836200050592172,78.40498377409514,66.39330737838894,13.712952955138302,32.743417263310526,30.565610172482394,69.94200875686732,48.43481405335366,57.62846338236247,22.836585587170465,69.43013766223449,56.59303498667042,56.28344337856219,71.09944560822787,80.52705103661096,68.36704982770999,9.122368688375616,4.653910773584502,46.993531786757735,64.23813638172292,59.70783850950638,17.778279784030826,65.32368698551207,23.141418185298523,7.135513672273608,26.303156028552475,38.24813411606422,15.633787619079097,74.1478051600949,16.24990094980613,63.487144236195114,27.8389250252823,19.967500142677064,71.12686288864315,89.4473901423946,24.160939317204345,73.47817060444937,62.83341051111731,8.180843255444303,55.428570767961126,81.75215072767243,83.65037627689867,34.42153759881814,50.681049418874714,12.147742202144274,66.2912139178389,14.794699380238452,16.645490968231037,5.190483249350564,20.46127445854278,48.3222839489605,87.0981269364225,59.14410365944778,33.26403837971527,51.728673940528225,5.575482039530611,42.53465527930166,22.87499915403879,22.376984734600835,5.314827209276474,81.48785369968185,39.57979319075831,25.02879580649421,60.76518406496139,60.69836779138035,48.48443365985349,20.153821272008965,63.14647344992398,26.69170238560118,49.62243232576914,86.63981124822463,82.39642557145534,42.85477074538683,36.136374700221566,98.7518846649023,21.695153428352487,28.911559794287633,0.645026957715511,18.74100576504365,53.97892309249636,62.22782438658887,76.05228980868576,5.7456298238971915,99.90165785299614,6.789603476888695,98.28429255882683,30.215204545565488,2.5194115068884804,66.28947626312788,71.90472193618683,79.89979456231974,45.597755922353514,99.73765437791826,3.570223161930408,94.67382677003849,53.36779425028823,97.9273080176454,89.52519673537091,60.93704831139137,0.9142069278693765,50.38636310374376,20.11862093885284,24.993820433530132,91.73939567413811,27.237651737651536,42.37440787400417,4.020775701204737,40.135132526187626,95.47368973937023,13.965043743196803,74.543062084639,46.68054991563048,39.76049028181158,84.09821081437502,23.56687139708461,46.448790149317354,90.36102140472495,39.220771266967134,77.56056006234465,52.44547062860487,45.42265461873397,85.13706963365208,83.28914911603654,23.660824798383217,38.198813215288254,11.31699696947579,28.39545235994655,5.623945518022899,8.613116908804297,83.95326353262409,17.017007086976854,93.92472571657763,87.2873011259766,21.868860179788495,67.3371916052356,60.07834954280749,73.43548667199731,35.93405344218992,48.16688998672862,22.231619787203094,18.014882952120836,23.523466128548876,28.844757952832122,27.628543566552345,63.4240092377147,3.9874351794949137,84.72774561867892,96.87485374288684,41.04827798004268,73.27554840978614,20.36501603086427,7.638168523594857,50.217447695554284,1.3848001960564127,76.73979012646687,74.327867783992,5.812085358536656,2.3344543178908106,82.4117953423972,81.4060832528569,7.415459524469858,95.7652335016097,56.727397291709536,81.29798351119487,44.05459028064228,73.97904458546479,80.98060644297118,36.87164239380832,84.9714485573878,99.05190432038566,33.852517103867676,42.9169956591112,18.757782356789075,91.59486184425484,31.072012087555677,7.575837593851286,97.1914649880274,63.596771330363126,39.1361307843878,76.43936850170452,48.97512882128918,35.11533620629802,12.822160395148929,0.21225948380365622,48.1765530413928,59.4986690525602,80.30845173986086,5.8314917275167355,17.67764685938358,33.549266967961444,26.06515175537908,30.99120938906408,18.480686336032527,62.23656768846569,87.43542208367802,71.93733173069657,52.294447656478994,58.57177205062663,56.533700184294666,98.73664106618885,87.49234301286648,26.62340690302547,57.66973932124003,81.90652862487686,67.91348551970347,27.47470721984132,78.62460697574274,80.2797204443363,26.05906933506733,74.15784093706844,6.604343726136042,74.00639262457965,74.54538542811054,82.1853997433859,7.449045444424152,72.1808162821097,27.017440106245015,85.80350048848419,88.3064813125018,3.2515059753077113,73.7527192699682,76.45616238875928,78.40394285012165,42.86390823096122,39.01896155065068,15.527294417982596,15.370818406377095,12.951114308343337,36.825599430635215,11.531774442357879,6.5865585584024,28.880328631929842,80.58762703692007,75.33673303754578,4.93798441163068,68.11399400685244,73.37253575566605,80.51436463564646,39.70452957247641,97.2355987194178,53.271380168694314,8.567843757355364,6.136166313636848,37.08744475249557,91.04918228430276,53.81623042170342,14.55985583069207,63.34173746690126,43.664459357541595,29.57174576124084,39.82275493465265,33.47648089880977,29.09002995637203,59.74595830914309,26.224290412245022,66.0388574537667,19.544733586316266,22.770826298688984,22.95819940131093,69.20881891974007,57.30984449414972,14.365793694276963,39.65553215989497,75.48599617590718,86.79256441774855,48.21446766663793,96.72475835515007,74.08844653857473,34.52954033608335,58.817599548874824,58.719494402789486,26.399871291724907,54.70011697545838,39.95947912600227,58.88567217771662,67.90577706032953,61.69646554350897,65.15032080938855,19.3751642899465,75.67585959631657,96.33521433541785,78.48659588916492,7.661923831344342,17.03438029214599,21.901476927660557,16.448316480976366,0.8366080666078135,10.261494337516552,25.813387585451665,89.74869395549557,22.225947697349223,24.671935918409492,44.620554070781935,18.75450082153951,16.332001833515207,48.41371682908675,78.23925184139665,85.63010721080386,85.17927081462524,19.176547847876446,46.02715911919264,37.71972958267982,12.345019883109565,90.99265657570639,76.80332431049234,86.96756872266374,76.85482322342362,80.1041396626952,72.20246740801807,28.319473033320584,67.62239852593045,20.756971492864086,94.87972642295972,36.41168722299483,65.79953523745473,8.121232156148716,74.07655720183693,97.72462702870155,78.47944947336572,63.257982575392134,10.802851814149527,56.15853687105419,24.249334676842903,6.734400142550245,64.6512317796867,71.32748395530895,64.56627866819072,8.812746213932222,33.94210385769537,37.78048900058434,80.56140620316647,49.10438597979927,56.50909481768511,91.45222052938828,21.239468608854995,69.51017122151072,40.986612093524386,97.0346974157508,57.477522610678754,85.1312192602658,85.05230592742849,88.62191810327225,67.05641996206934,81.4380757101016,87.86924301309047,67.50952028434025,93.62532794875519,63.12734382157572,38.45348742017134,62.41022801582522,11.409165460848191,52.937422181838286,57.86443347090333,88.54707625234269,2.195261346868138,94.32503150976481,44.484381966371856,20.62910597870665,13.103223329064162,20.054296146478624,84.976547043485,78.06528384783158,16.999522053209514,91.28594592449117,20.94694525743742,90.2876494816896,99.52414578307241,48.35397429293249,83.59302772514184,8.696220064691772,28.204687325105482,20.197905796796732,26.65223118575205,77.18989678352024,2.3214497648953447,42.272156043526934,20.554075442328312,37.769506006203024,16.38470082593859,61.52835848509967,30.4539653477797,3.205185123223886,49.95645874421374,51.538783378257534,0.30916345577315374,33.287372610172675,61.03671834946206,64.91890179708942,51.925159268769775,71.13502910568674,66.90157071229042,35.35370298204968,30.45900324409545,99.31998653995315,31.235768092554306,81.78583921280055,60.84288901851791,39.65310319519212,91.04294862455168,61.85840668890993,56.998045002487096,3.184917462480319,79.34149558615081,4.56439242445863,1.1232223359717075,20.945094590163173,27.707655802024355,19.257928779442057,20.674499529724944,25.721707359118497,89.11633664772258,45.82773039082586,63.43803946511961,17.15982166320289,78.88500014601625,39.77860303198837,79.06641406403072,77.25461688692941,82.78832598637257,48.513620189510384,55.06377685507884,36.82598532129635,72.51455393316502,72.33590224388433,80.21980506228886,8.655455587095872,83.98732707180608,12.544693071016066,91.04652525759101,81.75647694856298,23.8294079395188,65.21500634135849,8.01061556593725,70.38274897459571,90.91209311273931,8.998118586764681,14.813612308608137,71.52622907315337,81.04059178397115,55.92199976770558,1.2015955391796673,16.246679136294652,29.661387731043842,24.907024618312402,62.547919110917896,80.45418020242657,94.0461392113386,41.25063924812993,12.64388975455052,17.383132126806665,46.242000778618355,7.377419662675999,21.952007834088082,77.96505096253064,72.20521023649992,72.44746828172406,98.03618536707872,51.73455546033699,63.920312246703816,19.111282194694688,52.12533956074061,56.5788419786615,10.064243445058363,95.27013831342717,92.68032141974825,13.751173189159339,56.548614190759835,29.977022676939512,10.880917788039401,41.72740896249272,86.80688540594062,72.02550882150992,35.76387010995394,18.295747376557514,78.73344446570353,14.1474091680026,72.02945329353815,76.77337009511137,81.02014405451918,28.79422503844148,62.356601484068776,9.374118184988623,17.317956091486188,55.865802758823236,53.96192760697795,98.9423005419926,1.6910798326822518,46.82935508920928,28.05247445226935,10.661660560945963,3.153220323556305,50.49349306919647,57.330336983423166,83.24445276905021,65.89780206471032,71.22826162723128,2.5000044128606236,29.98071690063213,91.24585771895075,79.52390723197506,78.27308961919017,71.1408220673956,81.10850652173724,36.913875676558305,59.41154640889638,53.81386902436053,25.549931384846182,58.081961903578616,15.74302736128942,35.0256727221272,38.45003091021394,64.46764044118851,78.43674611567573,8.920599182136135,7.328630951471005,56.37169048945053,10.769455165607356,58.55620539372723,59.41697544828042,12.382419840033842,88.76321597306493,39.85466785657965,78.83654071956302,14.576373910773476,71.7304142648896,8.171149658422582,94.374160007922,63.45153227832851,64.8558199012501,57.365573620245556,76.27956490117762,80.44980621331564,34.17938008636726,75.83737874876061,22.435607345322683,91.56510779268373,36.43637337255527,41.67591165485929,66.18184067443252,66.54669012357164,11.700393997972236,60.24122650931256,37.37348229110123,41.939042385747925,88.37295331261365,31.93159990284903,14.022755307913803,2.9494986279143154,41.36926211569985,21.040444068391917,18.173508421943275,67.58061184269195,96.20923437481419,22.73634489104325,96.68162377866219,87.63886060473303,24.03066469207036,12.90446829789399,17.928661437270176,31.23907071441028,67.03228288421089,86.88640115569686,6.872764728671365,50.6304707669015,12.577261656461204,90.34469120845502,6.026868785983563,74.92500774868911,61.63410307257092,98.35978756565001,50.59217303427977,9.055359877376812,79.3583931165971,1.3693403606600651,59.959740182502664,25.82547178847634,54.81711929163857,30.000919486167366,33.83927168769446,64.95115431214464,33.79160328957865,43.77350536163836,96.81777761580463,37.775291194591034,39.592002759193115,39.08440338923178,32.060461219237204,1.9025608313136377,2.4049785731114715,37.326087646110295,31.044977515926288,40.217208242768564,98.05473436780039,19.897091755817474,16.712698109884315,52.54108031428453,39.66283919073492,58.47137224476705,46.9367214190495,3.5716980243208796,79.92556554682162,96.46161337661813,40.50591769914313,53.87932860806066,71.02660584936724,37.79486700793644,91.32188558289884,28.86385505418515,23.35873567721809,11.081346212360222,71.52317978555544,38.63903819586726,58.1514662087706,32.43810674145554,15.83689539308224,27.43959784944505,38.50840184772459,84.10183441214532,8.37331230562982,86.82630874670811,2.844701434883279,4.654692449633102,59.34134598952504,46.50336492724411,87.73788092621913,11.05726043662607,65.1502150706872,96.54445444623182,91.69887082970871,57.16446334731975,65.93022247139938,99.99943420558745,43.560277622557855,57.06442483417183,47.078861907073524,21.447136354836594,19.926608604600204,88.66877743830867,20.630519102407728,64.82727023179291,76.5699074267371,3.9002367055673726,7.608530120648249,0.37324996079066697,33.988614157642715,79.24589232407189,85.75666632039778,28.940834101022183,75.99567075127574,86.0355281086767,41.229097640617326,51.946490156501035,39.44749836528118,75.4662589530648,45.19015279908203,43.80846777390369,69.63684065675905,21.54789393080251,8.10817988165996,48.6823422882668,59.89676914871749,43.46514228401153,17.28807921818675,3.3012423397149493,1.5210184891999878,69.365343526974,15.72417246185287,26.895589806356433,82.63140513123692,84.27247098705375,20.472509167519714,49.915022172214904,41.24048012172755,64.87346924709811,28.006602179024178,82.08301112473232,50.06108779410202,60.177517380020404,48.58926764398349,2.8273276287152926,89.06503680652456,88.80986396258255,92.74814606485347,6.673476359597386,12.394318956334072,35.908637809609004,25.12772625934163,13.931130630001654,2.1517514526182335,67.96782660332002,10.840417902374677,41.941338168614905,51.36950656325212,98.44625523973899,90.51469114504805,52.270644840876166,2.6214113680708695,55.57527181406983,77.407384891749,84.18756148360983,21.91529318102836,11.125623787105798,61.20182683595573,12.32676796115909,12.995319893210166,94.7305135528998,96.94541189920723,62.0572337210676,11.94860715328736,23.670403807020246,86.68855247583495,83.54759932482413,8.715584389352705,98.857455288282,92.50635463502888,81.36624327894395],"y":[9.05176215671295e8,1.0073460787940347e9,9.616578073200056e9,9.512743227773005e9,6.720793886860573e9,2.804271688032063e9,7.468897835426054e9,5.385795316183317e8,8.030014406771256e9,3.0170503242005186e9,7.770798180838951e9,5.773461973268034e9,5.694432147035098e9,8.497493442796078e9,5.218375427795155e9,5.651283165813714e8,6.171339560614955e9,9.895258393553404e9,2.2602906356849885e9,1.262799102824741e9,2.3498418370020967e9,6.850679989222818e9,4.484727146108233e9,4.126250672398949e9,4.378869956423603e8,2.189740935196628e9,2.932146503380297e9,9.11715017490296e9,9.461714281299343e9,9.954944801055744e9,2.240462376028055e9,9.116161940482168e9,4.0756032194667935e9,4.9472927815320086e8,7.3105141772328615e9,7.652743269191469e9,2.5075450160936484e9,1.0160210575629325e9,6.78358911003705e9,7.557362833155732e9,7.4743777140369e9,5.997670450748352e9,1.7300095961695595e9,9.454308604357603e9,1.1177639821623642e9,9.639672507286337e9,8.373866298538296e9,4.362315803611705e9,5.54420314906761e9,3.796792482770117e8,4.392298961240795e9,4.2715165437325087e9,3.528078950086747e9,2.7760482487141213e9,3.764712857985221e9,6.06197481784309e9,9.808327461348576e9,7.345872931340056e9,8.562972437386325e9,2.7011617870933205e8,8.64470582772769e9,5.403334413284261e9,6.4475501649581375e9,4.616214619406164e9,6.267906481271095e9,9.420290548062511e9,4.354390132201614e9,9.14068008223618e9,3.4171596661077895e9,3.1816736122583356e9,9.959865461359007e8,7.702107986310744e9,7.79095765146019e9,4.2625780420192437e9,1.3809630259567096e9,3.4181770247293487e9,7.249984624839985e9,7.223898470759062e9,2.0117220844687045e9,7.179766836781268e9,6.66923253076701e8,3.828497344343915e9,6.94387746097405e9,7.760165525148821e9,9.059875525405314e8,7.117470162054363e9,6.523305017658224e9,6.358740718967442e9,8.944883815397177e9,9.613892601472149e9,1.0974352861185544e9,8.895227812474335e9,9.155987750652775e9,1.6239967296846292e9,5.342900509828636e9,6.597236776493249e9,3.822045466703998e9,2.315958731262173e9,6.01863918111712e9,1.5494338470887324e8,5.463039901817932e9,1.121647590753706e9,6.773532499888788e9,6.903154717203166e9,1.4549658046080883e9,5.451712598076131e9,8.019007605273942e9,4.391535326946821e9,1.572296726008643e9,1.1582337087497408e9,8.099480529218581e9,7.2637595984210615e9,5.1158303100944823e8,1.923353536585055e9,6.12770397097137e9,9.221073727207382e9,1.569000049321284e9,7.919354485461287e9,7.449954357635303e8,7.367111128351262e9,8.1239264778189745e9,6.241751964114446e9,3.649324003803439e9,1.8477905566135745e9,3.68049637959781e9,1.609871498244707e9,8.728796808948475e9,2.6235412515704327e9,3.614844515732102e9,2.1345197732813692e9,9.624247157636171e9,2.5910539261358414e9,6.00645314339161e8,6.056774561011639e9,5.365252093565842e8,3.7155511431711054e9,1.60287436342876e9,2.4935904217536407e9,7.420722011436261e9,5.594745718504161e9,6.376189127940749e9,9.343507820752943e9,8.096983226662865e9,8.773786623020134e9,4.929821357693035e9,1.660352849997453e9,5.78759997092096e9,6.679599700314957e9,7.440974369850396e9,5.666007181686128e8,6.189431787735494e9,7.389346638492327e9,5.901352093237521e9,1.0193297769593446e9,1.1174008381322575e9,7.009705762821703e9,2.3522416001694736e9,5.242269477719599e9,6.765859112473658e9,3.171156108118317e9,5.341790006178418e9,5.377063238341717e9,5.22512731553596e9,3.5039776556414194e9,8.74212052240646e9,4.364283955799997e8,5.472674232932205e9,8.832023347631603e9,2.519603980077082e9,6.387210776170437e9,9.606312793218771e9,4.639311696928271e9,5.851768817467018e8,3.36734449922681e8,9.66477759572595e9,1.1259676001557496e9,1.3580923919169397e9,8.410407801514528e9,1.1911096023462508e9,1.3893586333999065e8,9.059777673717764e9,1.624231658038179e9,5.717831319735266e9,4.617213907572114e9,5.550878735771573e9,7.368758834953701e9,1.5773061215943007e9,4.0525458463020835e9,1.4874882346823215e8,7.404902785413774e9,3.0799267422826724e9,9.476028593239965e9,6.350839077730882e9,1.4164938221514611e9,1.457146649609774e9,7.046318842571361e9,8.080944344218898e9,8.358406245760303e9,6.993469538500822e9,8.67790481028887e9,1.9120287495079913e9,8.4762147970467005e9,2.521597317064779e9,7.642193094136454e9,1.805557423784876e8,4.823177001733403e9,1.2437059967650921e9,5.068944979114959e9,9.80283658860323e9,9.463643547849834e9,8.077089259553947e9,4.845139070658704e9,8.544334207999334e9,4.1274977069644127e9,2.24697054523771e9,3.8357902636674347e9,1.0821217511488745e9,3.793406912561973e9,9.644092201759115e9,3.35187739148043e9,6.952798509351625e9,9.152163599592794e9,8.89664835869172e9,2.1031588397740574e9,1.3747756570681734e9,1.383889179057274e8,9.618251881474113e9,6.500704986542482e9,1.3234088549840405e9,1.7535237362437317e9,4.713957896265687e9,3.1943898318422294e9,2.600532206508387e9,9.45899933850075e9,6.346750038634255e9,9.871258744224354e9,3.3905457371009626e9,4.92372789384603e8,8.733349565061514e9,9.429998360505993e9,6.310316371523928e9,2.304639904450874e9,8.570463302278567e9,3.693694776056695e9,2.4044427905696144e9,1.299475484834469e9,3.7461970634650187e9,6.89476947110391e9,7.564248181756571e9,3.7715683741665883e9,4.736710742990532e9,7.463213268985223e9,9.838226123816069e9,2.0068831982392588e9,1.8136128113876026e9,9.779419536510925e9,8.940100758277813e8,6.86478976634039e9,3.8970454951229815e9,9.308330660332544e9,3.0951896757702246e9,3.8790038623558655e9,1.0636596692446721e9,6.178890024405514e8,9.386194274912695e9,2.4771850180343723e9,8.628408696170542e9,1.1193079075857615e9,2.3600107316346254e9,7.650270522004704e9,9.195766305962072e9,4.5375964416745825e9,1.630302055909033e9,4.531643017430636e9,5.563253008681443e9,3.0391404061694517e9,9.229155472578398e9,2.2862850575134554e9,8.301814581789482e9,5.930777346132067e9,5.14026992768123e9,7.9083933579860935e9,2.5750618933602386e9,1.1648406834390314e9,8.856754988852896e9,3.656105468354953e8,4.888287650945749e9,3.564901904003267e9,1.0376080032219937e9,3.402896575906258e9,5.089856660802794e8,7.320565968017545e8,8.149875380425507e9,3.173486354497742e9,1.3984944082151296e9,9.003957929486208e9,5.328951783179568e9,1.633285911669764e9,9.012151234568266e9,9.829991696026945e9,1.9215654709405527e9,4.597606146548772e9,4.764122579703768e9,9.278987636354961e9,3.3723196137378174e8,1.3798722207249181e9,8.294155556547899e8,4.10106739822401e9,5.180714969641909e9,5.937261793949056e8,1.5925714331847307e8,7.167265620360116e9,5.448979890887403e9,8.830932494785426e8,4.562336355638528e9,5.705189447708434e9,8.156963575344958e9,6.23286306664376e9,9.219060356027043e7,9.317094848194536e9,5.58187012373622e9,1.122984121984092e9,5.767870833821029e9,2.3039327343595896e9,7.644305907023459e9,7.422243968141028e9,8.791354745697115e9,4.64030399761307e9,8.583278861929772e9,7.207333459318088e9,2.1497108119690056e9,1.4659697101004167e9,8.000068640534995e9,5.944194363199677e9,6.485521736929067e7,2.3767453281744256e9,4.38661218345115e9,3.3031967873108625e9,1.4071653610849776e9,1.9831185253472128e9,6.526170316958463e9,9.286434609750971e8,3.14430436139598e9,7.244159013672662e9,5.507556572207482e9,2.8347278379443707e9,6.694973830327324e9,4.385342033136758e9,4.021153249548536e9,1.836544451859582e9,4.429157350381708e9,8.57519871862692e9,8.052470968714517e9,4.572161995468791e9,1.0247391262260064e9,7.112823242681382e9,2.915290736825857e9,9.619470826797909e9,3.3813685202206736e9,7.647825953859487e9,1.6413289537380438e9,3.3105221507814198e9,2.0341927566989849e9,5.371844369921718e9,7.065953749412663e9,8.251930188876312e9,3.3713028182177405e9,1.2605323649294963e9,5.105679691728548e9,7.5588012599857645e9,1.129062595514675e9,9.130736796150675e9,2.157849484143929e9,8.352102414292568e9,2.8457260888432713e9,7.468456555373821e9,4.620806765402889e9,4.669266454262296e9,1.8335741950132723e9,9.788209048508995e9,8.528033183661678e9,3.396841992056411e9,4.218731396180484e9,1.8905277975795364e9,1.1628524779399774e9,8.444755504586199e9,7.287603202897289e9,9.595256019349186e9,6.816389949257497e9,1.7841013324723065e9,5.841094200177489e9,1.9301626484952593e8,3.596733998041383e9,3.405912295801803e9,1.4861141773223574e9,3.3986013384683757e9,8.057414738112956e9,5.038720295830184e9,5.927241974969821e8,6.164990589315274e9,6.205768381032146e9,2.921617307145864e9,8.94116734892769e9,4.488863660813391e9,8.997092797059511e9,7.402620177174929e9,1.185511488597135e9,6.218040968910817e9,9.629156766693731e9,7.441440853634866e9,9.160208990168716e9,4.710647495496279e9,6.64198329537148e9,6.683905464820395e9,8.940819040341833e9,4.546710362770221e9,7.011490185194422e9,6.0173154264180975e9,5.928455718958712e9,7.859825776621549e9,3.302927092946435e9,4.462320276599018e9,9.664492395211714e9,3.2835063042507772e9,5.577406373992977e9,5.41819661381194e9,6.226691962162309e9,7.075578307278596e8,2.3052951120916734e9,3.677372873302669e9,9.612426089861084e9,3.920510942890835e9,2.6797651803534517e9,6.177346944160665e9,8.59716970452724e9,1.5965655962604897e9,3.482503697534424e9,4.1703741831675224e9,1.358401470007765e9,1.9154494296091396e8,2.978234681878218e9,1.7699504872112303e9,6.455157484596544e9,3.336112253647908e9,7.12898152233722e9,9.16884234325574e9,1.4717958241799667e8,7.338811567786449e9,9.219022458549528e9,4.77610386653051e9,5.466997906318848e9,1.4027423519248328e9,2.950156233561756e9,2.334631489283988e9,5.405214737111668e9,5.932710373642787e9,2.5630782138829846e9,7.394113158952961e9,7.026234749876206e9,4.953967854324457e9,3.3625510624479494e9,9.305272796853216e9,7.93439780129351e9,9.38936617914674e9,3.7098290742435102e9,5.438573124249362e9,9.69798548585309e9,9.503031366191027e9,8.375717562776836e9,1.933135218438361e9,2.7662715982298856e9,6.408230466076015e8,7.723775363012502e9,1.957566997819078e9,9.54548678150112e9,3.94704912980115e8,6.936525455151397e9,4.074199340754552e9,9.96656493529057e9,7.806855750348681e9,8.127274277385251e9,9.938264765577917e9,8.517731356419953e9,2.0845620874939053e9,8.604253661348637e9,9.04242214804557e8,5.188963942465824e9,1.7702359491170328e9,7.106582672526309e9,6.524963822010177e9,7.225783350690936e9,1.8933376904727395e9,7.907139053693223e9,2.824361987473073e9,6.8039788789491005e9,9.345721383901775e9,1.7959727991845088e9,9.683711430440802e9,9.955524278067509e9,5.782768876009013e9,9.581966632287321e9,1.8393012787308772e9,5.053067742593628e9,8.186521348304802e9,9.165543575775892e9,7.433997562959998e9,4.7592073963752645e8,2.9195439057189245e9,9.623940973663757e9,8.414872695020136e9,5.535438809129289e8,1.374841483425635e9,9.569166954028595e9,3.531946855322592e9,8.60550816994695e9,9.790125039484512e9,7.590463176724416e8,3.1065455165590515e9,7.271105741191618e9,8.670240735513132e9,4.029359571914726e9,7.78900515080021e9,3.6720821378120394e9,6.699077831565614e9,5.984574062761863e9,5.990407483716855e9,1.8429685410176556e9,7.005146111038381e9,8.000192744347201e9,2.4481480913116637e8,1.9938545191595259e9,8.893570711954899e9,5.803119268218193e8,8.942567832530987e9,9.398923981481134e8,8.339889147139859e9,4.0350864953251586e9,3.009293072455299e8,5.984598842468047e7,4.0781222156771193e9,9.738954652400648e9,3.404472442954908e9,6.65237566599307e9,1.2646701086881752e9,7.411193037634721e9,6.049085636703932e9,2.5166956646996765e9,8.477083308490887e9,3.5153862290820827e9,9.663992385751045e9,9.605163209438036e9,7.354583187245876e9,7.189997359332024e9,6.19542032186739e9,5.60951521597029e9,6.577008066800405e9,5.716418233283893e8,9.262398644021927e9,5.931819116289454e9,8.457640136296479e9,8.393660512196629e9,2.6458189685200796e9,6.026431850124676e9,6.91580712545811e9,2.800588890454e9,2.277306373761283e9,5.243319237249254e9,1.9728479679107592e9,3.110636504301522e9,3.8701976325507126e9,6.612251299585681e9,4.480947069638481e9,4.491215589318443e9,1.407597494688857e9,9.901196313040035e9,6.973136524250328e9,3.701786795289879e9,5.125833940148407e9,9.082651163936825e9,2.7861045016423283e9,3.1494227719130354e9,1.7484916626077063e9,4.535921451318203e8,1.148478827526629e9,9.427226130756975e9,8.133584718745585e9,1.251462292403921e9,4.99693007757166e9,6.741279801936516e9,1.950192185584294e9,2.34600779415288e9,8.114334534306667e8,8.636412518339843e8,2.669924369282033e9,4.759602556229607e9,2.032819954252102e9,7.507115934606744e9,1.3912593158568754e9,2.2920143450183992e9,1.8291678418787093e9,6.514425586797288e9,8.280930904530455e9,8.604694918761536e9,1.8167773269800968e9,4.1940638114460726e9,2.0935052327622073e9,4.494120654368763e9,4.305522017801563e9,2.3936881928450394e9,5.459889836820271e9,4.928320311612505e9,2.6767966130998597e9,8.048667261762916e9,5.650680169549045e9,4.332053428912365e9,3.2899583318151703e9,7.168777456217884e9,2.2924558142762218e9,4.3905056443457544e8,5.79411365989824e9,2.7852038935055356e9,2.898756217216781e9,6.073257021266023e9,4.7406498252240305e9,1.2228290715462675e9,7.142766517328595e9,3.374047282833903e9,8.117996434147078e9,9.236341463339567e9,9.551299750535088e9,3.792876820860238e9,9.602500167928337e9,5.247068914497064e9,9.537481595764845e9,2.0800705871199565e9,9.569890164247677e9,4.870758817012298e9,1.697862729520041e9,4.4708413088875675e9,9.52193855858126e9,2.8043585577915397e9,4.903797349348671e9,5.546210361071191e8,2.0754609603664231e9,9.497982954766277e9,6.882346089914142e9,7.586491414420247e9,7.934252230537559e9,7.330195444421068e9,9.530828149867207e9,2.998295884215593e9,5.080884774979622e8,8.424096551312911e9,1.424445289745846e9,2.8513251782904735e9,8.90528875925856e9,7.042652109806809e9,9.271847663814146e9,6.510757169507391e9,8.878840185583248e9,3.7292949088828897e9,5.225320621800019e9,1.3522462729465723e9,4.8969762027109785e9,4.530192309602284e9,2.306396877028204e9,5.070397749403766e7,4.947672318181072e9,2.6311384616001077e9,3.592090809051045e9,7.028577827406212e9,7.912069261720585e9,8.95743686176612e9,5.404147038275052e9,1.9345490506530883e9,6.386249433548533e9,7.334812885315345e7,7.54836169656645e9,2.254178488787173e7,3.979987311227481e9,2.976117469461449e9,5.740530490228157e8,7.581862271965212e9,6.722374735631988e9,9.772559801651823e9,2.447202087547321e9,5.705715446939283e9,2.1610928410726957e9,5.799481123147809e9,9.43723195478389e9,7.537666473120406e9,5.161136842403826e9,3.56974635394218e9,5.881532795591637e9,8.767197288667284e9,4.450699427577482e9,1.9146273147720294e9,2.3183005851912007e9,7.465962061182474e8,7.667018486463861e9,3.156693582749466e9,3.462745593084795e9,5.2152848901133585e9,2.535177649030387e9,7.497179302834908e9,3.011487550911677e9,6.211920478015052e9,5.818513208046144e9,5.256011587946996e8,5.357354527527835e7,1.2919356537903547e8,9.458483144919498e9,3.828329368793634e9,6.028875744823335e9,9.692803966966394e9,7.662778944506695e9,4.269832256979594e9,9.822204634953327e9,8.74739542898325e9,5.494737410765893e9,3.292986384327824e9,2.3416719290083976e9,9.277967672711332e9,5.774693384279256e9,7.562175867235144e9,2.3403907991415894e8,2.0815081905822475e9,3.170650427237339e9,3.4120879969369845e9,1.157736507729914e9,1.1101229809566305e9,2.208628124880906e9,7.494842252878237e9,3.9695300523053656e9,6.273486620915075e9,7.318394006481458e9,7.234587411528149e9,9.646765886289722e9,2.3220135217903438e9,3.443456981278852e9,2.9746407710817747e9,2.5956389723094788e9,8.880800170423935e9,1.5311711550473206e9,8.533461814319664e9,5.015814483978431e8,7.456477081942339e9,7.08728965139653e9,8.057946262589351e9,9.564412255051586e9,1.0968437216137917e9,1.8853709879399028e9,6.100080454037407e9,7.267647131909088e9,1.741915942567267e9,4.82782165317858e9,1.4362047260370493e8,5.390549662179085e9,3.977095224286343e9,5.857516112513248e9,2.5981595574016824e9,8.640710352069422e9,7.301614048945302e9,2.8996242549225593e9,1.8596113525177715e9,3.194561212734223e9,8.759718216219212e9,9.151026597777779e9,1.4699792089106011e9,8.607542745633425e9,3.402731526476788e8,3.935739626849163e9,2.9878333928100595e9,6.326254599882759e9,5.959327429575888e9,8.867218882793694e9,8.775772146278316e9,8.236058542893368e9,6.034607515351445e9,1.508668803081884e9,6.199144276893022e9,5.086748806242421e9,6.93434728246939e9,3.7338036466170554e9,3.0953065721600237e9,2.6453720528805313e9,6.656786260168423e9,1.0423071094492853e9,6.513252581657621e9,5.211816491157573e8,9.473717109096058e9,4.54050364866619e9,3.5495451411236143e9,1.8319697293351588e8,3.7236041766133986e9,9.848940453666737e9,5.275292812779975e8,9.621084028037096e9,1.081720894791345e9,1.8033801302834208e9,1.4531275511919518e9,3.711465167984052e8,3.1082693796675384e8,7.523714082437644e9,5.810736705969889e9,5.155975847452067e9,7.53126981857608e9,8.774144663149569e9,1.2129915842861583e9,1.6212917954396355e9,8.568745629432656e9,8.96645019266174e9,9.95436088564549e9,5.963605148201946e9,7.144217172333122e8,9.02476662184168e9,7.081306167993216e9,4.1810117908215194e9,9.77317505294185e9,6.626919864798417e9,6.746980248145276e9,7.637115325865059e9,6.860819839457189e7,3.0747906161209583e9,9.148218820398672e9,9.789279571067111e8,1.2686253996576324e9,6.999043260020244e9,3.009433233996206e9,9.556488514558771e9,1.9135866067489848e8,8.764719499626886e9,2.1188185543488424e9,3.3105790013434267e9,3.154620586465581e9,3.274358019074123e9,3.430994613039763e9,1.0966485771139534e9,6.081415803640099e9,8.750665771558563e9,6.247421565408423e9,7.6018225722470455e9,9.43261832525807e9,7.773462915021277e9,5.705721374214208e9,7.347414241456594e9,2.0288865129050138e9,8.316070472184489e9,7.95314716912604e9,1.6543098853717709e9,9.035173502977089e9,3.965496904583282e9,3.685097401420474e9,5.651269244119537e9,4.0767006807322626e9,6.311489515975752e9,2.9066737795201383e9,8.102378632714009e9,5.179946295045001e9,5.86947981787429e8,1.9587723029977388e9,1.0663153286194139e9,3.363725343103703e9,7.070962205172151e9,6.103031343681418e9,5.645601559423211e9,8.138765993397022e9,1.1941453554026449e9,7.577164491537404e9,9.829976580858568e9,4.2422077809182115e9,6.584106644810138e9,8.13843856104946e9,9.732726078732319e9,3.8934625884727e9,5.428057475043557e9,1.919004056781436e9,7.461763977226226e9,7.5412035489629345e9,5.372755161892004e9,1.5928477852170808e9,9.756632574985092e8,1.3298983029393396e9,8.975031078543982e9,4.352260900784246e9,1.4233306689768443e9,6.877466658028611e9,2.8049954318298564e9,2.1459362725200725e9,5.137004454021879e9,3.687710432911089e9,4.655440475682516e9,8.22845340079954e9,5.578318902679102e8,5.550381405418209e9,1.2379738523835005e8,6.1001987166060505e9,7.328210228427881e9,3.5046281537045045e9,3.5419256477080607e9,2.445578965861147e9,1.4061856735056355e9,7.076294482696606e9,9.370039810473698e9,7.961125202819663e8,1.1106184602105706e9,3.9650752093833286e8,6.013249725146285e8,9.442988175466272e9,3.781721831353576e9,4.667988744015865e9,9.139389439143196e9,1.1484128112643733e9,5.325898228237176e9,2.3246210203299923e9,3.867255776206435e8,3.1819822847624393e9,8.067083881485904e9,4.560079171728282e9,8.520523059868743e9,1.2797684639803598e9,6.763112072321902e9,1.4124488848964956e9,7.053627863007551e9,5.133018687718553e9,5.90021112345141e9,3.016785162443937e9,2.5040929523152165e9,5.871765071856638e9,3.3155078569132857e9,2.5353721521451087e9,6.336468792417355e9,1.7497336857937186e9,6.019843993092522e6,6.440305090067484e9,6.38779694456805e9,5.1735129281298895e9,3.602220901525228e9,5.776020376349079e9,9.721958543343271e9,1.0292872363397121e9,6.012095664584801e9,1.4472979056762958e9,4.994931754287962e9,3.5441168965050898e9,7.313586200578168e9,1.7223776049176898e9,7.202733418959859e9,2.4191616185709887e9,7.468026048376831e9,7.87125645453271e9,8.799145542801933e9,4.850589419052383e9,4.66329445444595e9,7.863500147910183e9,3.8067058189057746e9,8.236426490860719e9,7.127868796171621e8,9.086691289309437e9,2.200316844160286e9,9.514667973249013e8,4.828262253184384e9,5.459508810106823e9,9.218121491088837e8,8.11836722290229e8,8.095117287675944e9,6.960971793573232e9,6.652709818110466e9,9.861291928451815e9,8.546198016316133e9,4.190359330850949e9,3.559934406940288e9,7.451910549744596e9,5.830738610979862e9,8.160754526708969e8,2.4094815551304984e9,5.427546615056068e9,5.415629956827578e9,7.8857505433886595e9,9.384370439653364e9,7.738022305926895e8,7.203220821299189e9,1.8549634775429204e9,7.928337008655474e9,2.5699710372753625e9,2.093729949842449e9,7.986312560486159e9,5.569117304819521e9,8.280493192391512e9,9.945523788585917e9,5.868889297948254e9,3.0714721197950025e9,8.581213792404741e8,1.5557912838333466e9,3.407841721469684e9,4.201677583725575e9,1.3351753026554224e9,2.568054550893348e9,2.0271014680313215e9,6.186186734865951e9,7.824170019871546e9,6.174275086291174e9,8.346548751964311e9,7.61295858963048e9,8.97501071095049e9,3.8898469949788704e9,6.94053982003493e8,1.7457987569315004e9,6.204269796317053e8,1.5824782688778393e9,6.356629963955003e9,9.045177555189599e8,3.9491050695423293e9,3.0115263754619837e9,1.311147107726004e9,4.363456169015154e9,5.768693424829612e9,7.157489505558528e9,4.525874824772166e9,5.572235197102941e9,3.87822834329541e9,4.943020503792833e9,5.74373813640631e9,4.435645463027557e9,3.6930288510037236e9,7.966737079561988e9,5.1797648937623733e8,2.8006519210589185e9,7.436824695947569e9,9.581666142870283e9,5.184418022859949e8,7.675761966068762e9,5.620736890951542e9,4.1198960181169252e9,3.4653863270087495e9,5.634798456938148e9,7.511688068166281e9,1.105365435098954e9,6.981525622235729e9,8.434283343137227e7,7.22760914842191e9,9.250062621610193e9,4.0137536861459255e9,8.399063482790376e9,3.1004741408266835e9,6.0396074711373415e9,6.726282840060722e9,7.631310090433336e9,3.223802260009238e9,5.983658417192609e9,6.896275041228121e9,2.59832825272857e9,4.840654370668882e9,4.2900059404788904e9,3.5436995399423575e8,9.476692377705048e9,8.694039783777979e9,4.8926223046311337e8,8.24796855208042e9,8.129392725210477e9,3.845887365434453e8,9.181246969513668e9,9.900796060250671e9,3.622068717518111e9,2.999748728170739e9,9.828953381648434e9,1.971339563483725e9,3.6441939968063164e9,3.745623177635493e7,8.82932042757661e9,6.646805459841939e9,8.939501628836334e9,8.361819843497061e9,7.098314264522477e9,9.75006299302499e9,8.231177977929496e9,4.30746182885529e9,3.90026712383318e9,9.654028134512033e9,3.283064151081906e9,9.954832893149021e9,1.0251514058515432e9,1.6801472322002997e9,9.785676545619804e8,9.091130403186642e9,3.150592212233422e9,3.9723546548880396e9,9.430052091957102e9,5.143993356110433e9,4.515235262654096e9,4.125758056992871e9,2.0852763483119485e8,8.122693177535972e9,4.29716260986637e9,9.044071690443178e8,6.509529362401618e9,8.43290817403689e8,8.840978595809017e9,6.191905584160584e9,1.9528310656616154e9,7.229227874972022e8,2.4389990975690246e9,4.699411362506788e9,7.224196513832035e9,9.389681394202154e9,6.385649803663221e9,5.464117016433984e9,9.943915102869532e9,4.297485031007498e9,8.116868271254116e9,3.0553277603444495e9,4.357674235217525e9,1.9633950826947334e9,7.647755041925974e9,7.675913051892558e9,9.257089062473967e8,5.191758231090825e9,3.062586422179292e9,8.858335409050653e9,7.1750339100404005e9,6.416863529533876e9,5.471077679983832e9,8.801299717294659e9,3.693230294934632e9,7.045745740072694e9,2.6293434703469996e9,7.040257368563995e8,9.99571515729174e8,8.203170607684618e9,6.338671436584399e9,4.478059372616893e9,2.5903916396891513e9,8.858760175077251e8,4.0979280195884094e9,5.792070016726529e9,5.119830754467007e9,6.545428102876527e8,8.575018356286412e9,8.044137806340254e9,3.2678818101059504e9,4.764350282646628e9,8.966776478787876e9,6.114155156345693e9,4.117318533447922e9,3.6922216949544683e9,3.8439373572051513e8,8.0738261656990185e9,8.117942908835259e9,7.933192169871756e9,2.1557370396768017e9,9.252836652275667e9,3.250074181592828e9,6.510902794982599e9,7.94171098228104e9,8.672690524133282e9,6.343659824555901e9,9.914814197305798e9,2.0713654429460603e6,9.755293175701393e9,8.206013636203314e9,9.163120335986385e8,9.613041596782328e9,8.320865956496329e9,2.355934219920398e9,7.927155511160073e9,7.435596561639235e9,9.409416900527893e9,5.665072647951428e9,2.780464000054955e9,7.311659144663672e9,3.5694360993455954e9,6.629395735877562e9,7.531481751496793e8,2.7327703711395144e8,3.741306531560085e9,2.5502573223747783e9,6.208849603587479e9,5.983725308981316e9,5.1551532597184813e8,6.070240634615807e9,2.628692473034253e9,8.989048235787899e9,7.112093993390155e9,3.7612878010146775e9,5.516761702275176e9,4.511493831108378e9,5.695734502356745e9,5.217402802228616e9,9.294202373091864e9,5.64779539318223e9,5.369513378213681e9,4.7404623924905854e8,3.4694932145478563e9,6.672862832118136e9,4.91698114740914e9,2.1115197978130662e8,5.938974321666214e9,1.1934478383432968e9,8.377556013700483e8,8.951175479183804e8,5.159887495480154e9,1.9245243270153677e9,6.336892563240482e9,2.4679133561456747e9,8.2721351872969265e9,9.56962088266895e9,6.501180405453288e9,6.252106132933992e9,8.67060848379109e9,3.9292640752364826e9,5.983760540497162e9,4.851645139203062e9,2.1079121473172348e9,2.3222187248346004e9,8.322333066800137e8,1.899033383763582e9,8.2970092984853325e9,4.475486073669026e9,5.287443894864435e9,4.377644240402174e9,3.5949268465823593e9,6.829319648863381e9,9.58224315817308e9,8.392137749094378e9,4.373846421717386e9,2.2437416289182076e9,7.906059398446879e9,4.383413615974085e9,2.3221100022866416e9,6.577186155833359e9,1.3830641001457222e9,2.6230159142905407e9,2.179508038218321e9,6.166429374704116e9,2.1218411696973473e8,5.744134954115569e9,6.632042409113916e9,3.0795015328037257e9,3.4647780181198697e9,4.557693619638454e9,3.7117174683939037e9,7.7729701258074465e9,9.007131273487635e9,7.498801008261844e9,9.637017091898283e9,2.0454909469116457e9,7.761191776361269e9,6.168231163872878e9,7.168388314579642e9,3.7954415494748926e9,7.29730157194094e9,2.2909481663981314e9,5.003270830879436e8,5.707935066808109e9,6.601517117080385e9,6.266825212426927e9,8.655008852612429e9,4.896989889933611e9,4.830928313131971e9,4.888637006195633e9,1.2177760950282202e9,3.496013207273919e9,4.1286059101512794e9,2.0495100012553568e9,8.434846809244426e9,5.774518639862794e9,7.921347309678052e9,8.271146232423666e9,3.3387974055537386e9,8.747371404256067e9,8.650301593358284e9,9.322928902257238e9,5.125102220522309e9,6.02283053158448e9,5.948725411041175e9,7.541350897862886e9,2.717369081101876e9,4.832415973969425e9,8.397447891350096e9,8.93509983332418e9,7.26735815586228e8,5.511756679415879e9,7.07179700168967e9,3.7582318641761637e9,1.5130722712948462e8,1.7362496563392515e9,7.080426289083993e9,5.578238856281532e9,3.8467161502400293e9,5.185477207488274e9,7.047429056264514e9,9.689620928361305e9,3.1824680162431583e9,5.800793037307483e8,9.461190904820793e9,1.8106090698447043e8,4.755056922224187e9,8.66401298763841e9,3.119214836785924e9,4.45514917553339e9,5.768651123633296e9,6.857541606616849e9,1.9045125375489213e9,2.1180977554552815e9,8.11575620237038e9,5.548377211906425e9,5.439301591800943e9,4.471459736531136e9,7.459807566725804e9,5.136447626894566e9,1.3881104196127136e9,9.514886300938019e9,1.3315828665549822e9,9.135796496401964e9,4.699117076484085e9,3.241979229625941e9,5.173032539496691e8,8.544037849366881e8,3.013606687883894e9,9.55587252217483e9,9.346537309986125e8,6.318806719678921e9,2.9155105990475717e9,2.6337578862059474e9,5.143137162287664e9,1.0576026470969013e9,1.2547440969548218e9,3.4440176932869725e9,4.0919730763907514e9,7.348705372918874e7,9.702300368477362e9,9.795106810309898e9,7.711816847667581e9,1.7617949424825952e9,4.0593576485662875e9,3.352478870866936e9,4.839754112346129e9,8.413008591949121e9,2.6058838780321956e9,1.7473253475223138e9,9.095875891103182e9,8.815109184694214e8,1.4215365887144637e9,6.532648373201954e9,1.5567843273762693e9,9.935731391918688e9,6.862568655033075e9,7.435965000713302e9,3.211780394410986e9,5.0932291703158605e8,4.1013721867269635e9,4.0614590559817586e9,3.5237315574731507e9,8.58771252251849e9,5.587903202859709e9,5.478609862861824e9,5.705699566788321e9,2.4318747017101607e9,3.4322698064647527e9,1.17847516822438e9,3.0897916976780815e9,7.446910029435887e9,5.2206727207157e9,4.8335887277514476e8,1.1659227860477583e9,4.639869243890759e9,2.835072210761702e8,9.244830806952438e9,4.736026985341991e9,8.092004483353586e9,1.7372632438609493e9,6.515935705863883e9,7.78597113197894e9,7.5158745488334675e9,7.171232529429782e9,3.5781993000801983e9,8.023984274295402e9,3.9216851760970573e9,8.80011234593501e9,4.386291663679806e9,2.4351123549989185e9,2.9874808309242864e9,8.821826889291362e8,8.748260855717955e9,3.763352791808521e9,9.444350243558172e9,7.177830227139911e9,7.526977047035117e9,5.255938389615376e9,3.2309515205752215e9,7.181102862838165e9,6.257356735084434e9,2.796905584352717e9,7.839218571778382e9,1.760025141041891e9,3.6372329027281814e9,4.259702180437708e8,5.805538888550105e9,9.42115023892748e9,4.895908119596712e9,1.9658945684812722e9,6.644473428165183e9,4.4192938801613865e9,9.203116922253662e9,4.300880092704658e9,9.779004766801464e9,2.3060386265251565e9,5.217944140730761e9,5.349635465728423e9,8.787665884178125e9,6.540730306579152e9,6.557552382474961e9,3.026835709754858e9,5.572912665623265e9,4.0781990443376136e9,6.215364260438223e9,1.4301669302803864e9,3.8497770831596045e9,7.78920055726691e9,3.434777517842202e9,6.873353101182067e8,7.924155336838899e9,1.0028092079728413e9,5.854017580678838e8,3.877704413840455e9,3.7893811184141254e8,5.960661043648069e9,2.0518013793158529e9,9.706121171162128e9,9.352561088621838e9,2.572494997547039e9,2.595488230002061e9,2.360835782606596e6,9.390175499362919e9,9.93373677924847e7,2.3393109476517715e9,1.4959556536547024e9,2.723387910356192e9,2.1513879841670804e9,4.923414704226743e9,9.535441900254494e9,4.957726023289943e9,1.157919182628334e9,4.406338700917399e9,9.85645807404997e9,1.8395679866664228e9,9.715954862342945e9,6.211500878258646e9,9.44422721136472e8,6.447642060875102e8,2.189937399713737e9,4.710251431561781e9,9.194087424767056e9,4.270493298792889e9,7.019002216494047e9,8.412303544038224e9,7.441290773816328e9,3.919172615700174e9,6.109222368353919e9,5.987884699283238e9,9.113372882686012e9,8.123052172887055e9,8.892087359089722e9,8.169320157886788e9,5.606863890049607e8,5.36373537889826e9,8.184420391511264e9,3.502361753780893e9,1.3875256344400055e9,2.908030028600439e9,1.4555570725391686e9,3.6800819452491794e9,7.622899105800737e9,5.764695799072252e9,8.247000972879294e9,9.666904458627502e9,9.259535318407482e9,2.2480622244683647e9,3.37845066132533e9,1.0115686414850255e9,5.849502971745114e9,7.075259233677767e9,5.951561076527956e8,3.0493030740288105e9,6.262762215773297e9,7.952299412079781e9,8.333066282585872e9,3.5547626766790543e9,1.4261622084390525e7,3.131069647423412e8,5.226880763907647e9,1.0133500861042888e9,3.3116794546826544e9,3.244173957896792e9,1.8429839420253768e9,5.2008753599534607e8,6.147055874579097e9,1.503978639629865e9,6.161114638184185e9,2.5854003049455733e9,5.43137745115043e9,5.280847171027637e9,7.533594852545705e9,1.8071954491162233e9,8.867118676838274e9,4.681912637626056e9,9.412041452013721e9,7.566917349495772e9,2.8672469182383842e9,5.934074324155071e9,1.4059321996081908e9,4.760992256540766e9,9.497740786777279e9,6.563880974005004e9,6.423143748689908e7,6.998387820211115e9,9.796880465843948e9,4.0114725054098344e9,7.64695906932597e9,2.1172635941300843e9,2.3684514103078036e9,6.465022927883041e9,6.762171983484564e9,2.72345427952821e9,1.307016023304607e9,3.4470983658106737e9,5.458014438188341e8,1.7087383350167108e9,5.899941700105782e8,3.710374471067159e9,9.813349010040228e9,8.282773872917298e9,4.2647353912055397e9,7.747350034449741e8,9.21619058676676e9,3.2926257324228635e9,6.349633001328553e9,4.2001893158885894e9,1.1413307753334112e9,5.3513597413810456e8,8.507475600753691e9,5.1277607025231085e9,4.750026141470221e9,3.1745197313077955e9,3.9559341043136563e9,3.1899392321473174e9,4.850348803982567e9,8.045929452752862e9,9.574505331557909e9,7.226347323038774e9,9.064668140092768e9,1.4466235588701303e9,3.747420093955811e8,8.322914096952129e9,4.966257729564619e9,5.7020873825655775e9,5.149629236989675e9,6.659027602587415e9,3.449579787655781e9,6.165567982527939e9,3.9639682778947196e9,9.312036196395403e9,9.762643560201312e8,3.15730729735859e9,1.2238264640815523e9,2.5577197959558997e9,7.984984136213065e9,5.403211819824601e9,6.7492406081498e9,3.301767584968651e8,6.525211546606425e9,9.03033977039094e9,2.6467894213438648e8,2.248646410659204e9,3.673193822309051e8,8.007802920151374e9,7.301652212323374e7,7.672365559781127e9,9.877004533904825e9,7.821932999686963e9,3.10475974432307e9,3.25834883117321e9,5.872357124192042e9,1.9927732653326168e9,2.319391289125955e9,9.483345469516357e9,1.2351982519309156e9,5.904985886534331e8,4.628935098249397e9,3.636161720115563e9,6.66672961395272e9,3.8834721772787304e9,4.2497643761047964e9,6.939342714814367e9,4.574815215976521e9,4.096018119185937e9,5.225152301371632e9,9.735232425654794e8,1.6038915885923154e9,8.444357094607056e9,8.426340679377054e9,2.91197820030908e9,4.2101286869520903e9,8.802565741575009e7,2.805634307833321e9,7.122959167364043e9,8.326424922073558e9,2.213566453315915e9,7.952864136848614e8,6.5793481890166025e9,7.725086681708468e9,3.2884235632806826e9,3.7724821519382215e9,9.828746862967937e9,4.9813907845664015e9,4.573079437961752e9,8.777050092622375e9,4.612142979205979e9,7.813452676676069e9,9.737367682930975e9,1.157442814490054e9,5.552112344814375e9,2.8618081103529625e9,5.403103140952457e9,8.637752680420944e9,6.318677051102358e9,3.3423626449092546e9,4.756453966921179e9,2.8495132634695997e9,5.203513073641541e9,7.519153950045892e9,1.428313268335657e9,7.7521191095218725e9,5.973843979230163e9,2.6253559086099453e9,9.343070096419876e9,6.160767414391235e9,7.670279410377601e9,1.4876443157542295e9,3.929341097247483e9,3.2893196717594843e9,1.4103789473261087e9,6.587886098443987e9,2.552529248634605e8,3.9755986895750494e9,7.249895552562212e9,4.973580284577158e9,1.8412653623696008e9,5.369553452099183e9,7.60921309541584e9,1.2087607126772404e9,6.916171740632411e9,1.6892410909049892e9,2.7613149443134346e9,9.661460337079283e9,6.151410146299038e9,5.103997769555795e9,2.2596661002372255e9,4.860737935762867e9,4.032748557878092e9,8.687169973649504e9,3.920207919356543e9,6.717467914141965e9,2.2098581214711976e9,5.451363707982752e9,8.28324020771805e9,2.3645244965751467e9,3.25653633163532e9,3.779294697467771e9,5.279600684813107e9,4.0048193842175574e9,1.2898655071928732e9,4.652675160097725e9,5.153276976440801e9,8.1667320506305895e9,8.993248036241755e9,9.263029423186102e9,5.025487920284308e9,7.010714639224266e9,7.095138592851409e9,5.320739255970582e9,8.253998012782258e9,4.976939887717135e9,9.863731005573854e9,7.131357295187466e9,5.635258707421686e9,2.034976961271131e9,3.950554427025179e9,6.086848101813187e9,2.929691338732054e9,9.032074987699808e9,9.19359310327843e9,4.0639499415173764e9,3.2475518397837687e8,1.6737058881581478e9,3.764579005246038e9,9.995748137032604e9,3.565669636969834e9,2.83979896108873e9,1.9168708220300655e9,4.2607809777467475e9,4.403797906294476e9,6.805254074489525e9,3.546930167162382e9,8.829052947380754e9,5.062903699666309e9,3.0144113136284876e9,2.1001051187785025e9,5.051063162829482e9,5.604186067177208e9,8.775504192222145e9,2.9910982444735537e9,1.9591159734453866e9,3.629440661206693e9,1.0279459528306468e9,1.931092905558932e9,1.474002888264444e9,8.824072859429348e9,2.8633573999502983e9,9.823022848056583e9,1.0471081116908265e9,6.349909670295706e8,9.470839604486357e9,3.303635013528874e9,9.121790972782724e9,5.768031102647359e9,3.643175237284331e9,2.3380493644919662e9,2.86918302094227e9,7.999929846826119e9,3.847964333250298e8,5.826728985319114e9,2.3539306389190516e9,4.6386258987970295e9,7.887714949791981e9,7.14240167329958e9,1.8737464092357414e9,6.769223702267995e9,9.05772448231169e9,2.932214502876349e9,5.802821711194222e9,9.210720370576397e8,3.897461733664509e8,4.608830056797202e9,7.390447464276896e9,6.439982433819041e9,7.067980548290505e9,7.858007087379335e9,1.298765800580165e9,2.6985875710502415e9,9.315494461415195e9,1.4175757009181933e9,9.987891006530119e9,5.718575922394702e9,8.511446357720438e9,5.901969166426794e9,5.094843692518622e9,8.418404480740917e9,6.575826807675766e9,8.058281345645952e9,3.711759435624056e9,3.15775558008663e8,3.087740162788032e9,2.939232093107638e9,1.1931656281411862e9,3.7272494352096686e9,9.770163618059169e8,2.71541912502225e9,6.591762297155673e9,7.201351535241243e9,2.9056134040659175e9,2.5332943492610836e9,6.44224038537031e9,2.0916018996958053e8,8.989558144542467e9,7.065359543189373e9,3.4900900213946195e9,1.292908077344037e9,1.0061555479471628e8,7.745630018405689e9,2.6067104199969125e9,9.992377290978903e9,8.435269080046688e9,6.148186578725092e9,8.5423526702762165e9,5.400583141390232e9,6.152935929697689e9,2.5715863735087052e8,7.751764916686658e9,9.801930242026875e9,2.9475377353218303e9,3.6510868552589283e9,3.846020384044678e9,5.231492348260194e9,5.000794577360392e9,6.14540056849755e9,6.140759572769679e9,9.222188139324612e9,4.783259380319873e9,4.911973690372693e9,9.530394915463642e9,1.224175344783407e8,1.155450482819319e9,8.61444543083657e9,5.0305110164750185e9,6.086359878938962e8,3.8330941052229304e9,3.552659875952382e9,1.9042362468976837e8,1.5632878811881568e9,7.8893419802048235e9,6.516312080910252e9,9.450507101081497e9,6.590173285472611e8,8.408763943555086e9,2.914095776935267e9,4.856924415964459e9,7.450744631162387e8,6.327897012282842e9,7.290584251014665e9,8.434787154561929e9,4.242374485483965e9,3.5523977604870625e9,3.16787511774427e9,4.479280228004215e9,6.468093002255555e9,8.464577959627096e9,7.813454944831465e8,3.8929404837626624e9,9.705682395320349e9,1.2526238056773386e9,6.160385843309686e9,8.756446033853556e9,1.1172668693063314e9,5.664966319844975e9,2.6017005489622803e9,4.896340118261033e8,4.849519946523858e9,2.744849148762913e9,9.433639085947454e8,6.85031813668694e9,2.9350642234922166e9,1.6370380894599302e9,9.285820635250952e9,2.268921014682973e9,9.74507012266538e9,2.0975747631921327e9,7.940228090385386e9,4.1007177290584598e9,4.2144735227939076e9,2.8021882772786045e9,3.4555380642003508e9,3.974254294269863e9,9.648746333258179e9,2.172390157569155e9,2.0693296707310426e9,9.18907918921188e9,1.779135118618449e9,2.0222555927428808e9,3.7098592667586117e9,7.708356958446887e9,7.146755501675766e9,4.64617347001816e9,4.0752082473306007e9,9.19602562291493e9,3.327720066820036e9,3.9982510892190814e9,7.233336837476423e9,3.096717953262943e9,8.198758196103702e9,3.615001990910216e8,6.36979399074828e9,3.787299932114936e9,4.289887155526957e9,2.326953275986099e9,3.364360862353111e8,9.827572540641038e7,3.009075046799928e9,9.509559054443916e9,8.009701188497091e9,6.5835724598489065e9,6.759249850733999e9,9.935599658350597e9,9.77841780235604e9,6.06906836407125e9,1.0343764484953588e9,7.790537705570335e9,5.647484278031929e9,5.79661133859184e9,4.13278247647888e8,7.154960399067376e9,6.821795690914353e9,1.9261145714859042e8,5.697571152370155e9,7.898885421453316e8,5.407293012487421e9,8.23405106264513e9,9.212462013189455e9,9.899302123368147e9,3.689475194664891e9,1.3530891713838222e9,5.5350337109790125e9,2.3109298308132796e9,6.558943753557912e9,7.537865234793361e9,6.406818426920742e9,5.886394387630996e9,9.84786696013378e9,8.97930083189639e9,3.0131294676234756e9,5.05883615739904e9,1.7428880496720111e9,4.27273850445833e9,3.808796636484848e9,5.9528932869079895e9,9.009028205216175e9,9.521202746588397e8,5.54805031580515e9,7.156583506355604e9,7.552768666841952e9,6.714885900026509e9,6.124965730516548e9,7.496522457528021e8,9.383892110841482e9,4.728673601769076e9,3.397385903744595e9,8.198578993845511e9,8.071265939529775e9,1.2994124603740332e9,9.322784979552423e9,8.4784883969745455e9,4.945916341021333e9,2.0436493650486665e9,9.8566110886341e9,6.242369780001193e9,5.708629854835136e9,1.519789250362249e9,4.1426082626830473e9,3.8216213359778605e9,6.2787112445609865e9,7.802683665891745e9,4.358679964985195e9,9.723487532097433e9,6.360012633855456e9,7.082694337123603e9,7.873099814807741e9,5.680440847504809e8,1.799776570553213e8,4.570874427821696e9,5.405366282324496e9,6.167264799375604e9,8.719230639839127e9,4.411666838978201e7,4.887849764162033e8,8.40682475478446e9,9.338822925910381e9,9.529556588221842e9,8.220193857883061e9,1.7828886409059863e9,3.691551597763687e8,2.3042801148935766e9,8.9805611146227e9,8.225984079315796e8,1.4441674153162954e9,5.316678699086144e9,4.457430328577959e9,7.565898163642582e9,6.505222297147054e9,9.338992163035194e9,4.809629653698093e9,9.659744522205293e8,4.443697916618207e9,8.165717888413805e9,3.7534445384670577e9,3.975488824561081e9,5.167173482623999e8,9.541509181878271e9,6.940521650943357e9,8.60691926928304e9,4.437402695925497e9,9.971861700700489e9,8.327511284487396e9,3.1221418716880045e9,6.303691642585916e9,5.320518431334347e9,2.2088807568585124e9,2.4363089592712216e9,6.340642953645235e9,6.942132231767821e9,1.0324818919981083e9,2.876223394456925e9,9.305715794872026e9,1.453543683725058e9,8.433564787002541e9,1.9038259306658912e9,1.8081220256384823e9,3.2073747148133845e9,5.592139450350174e9,8.307988917415254e8,8.749750555387407e9,6.810906076301925e9,1.8010399017265854e9,1.084578062720666e9,4.482668975117366e9,3.441920814372195e9,8.427230891761387e9,8.700841201443462e9,7.603816012301554e9,5.566663201053374e9,5.089553225777369e9,7.887792572960018e8,4.7496736058878975e9,8.017588478898667e9,4.930890601527291e9,3.531142943673584e9,6.893931408024422e9,4.0148277592996984e9,9.662915301550865e9,1.1234012161327622e9,8.390879649635035e9,1.82364539209097e9,2.4766877820879495e8,9.064161203387825e9,9.872533925902613e9,3.2551203566003937e8,1.6694657674277346e9,4.989336824383432e9,2.172291389471763e9,6.563821980756419e9,8.81830597792138e9,1.1842634864343748e9,4.0944155795679903e9,7.201153726853986e9,5.937645191270436e9,3.952544286398141e8,7.694651119624614e9,6.600031124484042e9,4.519471609586726e9,1.7011493352396646e9,4.0565951590269246e9,7.86468880111535e8,8.983789253359383e9,9.035303763945475e9,9.399171005651329e9,8.919245777941721e9,9.362477095570814e9,2.1021761963119657e9,3.810615793762534e9,1.809083584418304e9,1.9252234764148068e9,6.2348573698124075e9,4.668162972021298e9,5.342825085167073e9,8.893618876138485e9,5.211916958603949e9,9.985653030224644e9,6.711671139038265e9,3.325750064284713e9,2.149096659213111e9,7.602565671744035e9,2.2697102060537467e9,3.5701579354604464e9,4.6477192892257595e9,3.7564018836912584e9,1.1159004634803472e9,8.250958776565378e9,9.517150665891596e9,1.1834188651911447e9,4.465448367552292e9,1.0576429851246793e9,1.9875386941530948e9,4.17453952151801e9,1.0335658025251671e9,7.170097329414146e9,4.1099590512813864e9,6.797957527564999e9,6.665093039546244e8,6.797452656023384e9,7.730465898873137e9,3.20500116575839e9,4.90680918325492e9,3.7417488043921864e8,7.479420832924681e9,5.581555506635449e9,7.599761438254484e9,8.957175355700317e9,4.226187546557523e9,5.100765809938667e9,8.88106514973508e9,1.8914498385833511e9,4.645705945314885e9,8.524912247750936e9,2.279312451043627e9,3.4429229571028776e9,7.415575188027797e9,5.652900740652702e9,6.369805289817037e9,2.7516667948317585e9,8.548402021850409e9,4.2571369495333457e9,5.062975877377179e9,6.244642851091834e9,7.561805923612628e9,8.430575380071867e9,6.359610658070611e9,5.979221705626711e9,4.0128076768500466e9,2.812488789234735e8,5.660594285952485e9,1.7476423452295496e9,5.955052036203157e9,2.124160925141889e9,5.193445008904291e9,1.2247984270956535e9,1.8685009770089324e9,6.591140371679435e9,7.653114871346651e9,4.7911994485868025e8,8.462849289612238e9,3.887251637347958e9,2.415396049552976e8,2.621676285130795e9,4.944964195335832e8,6.633712278848191e8,7.263231785226739e9,8.731005996727848e9,1.7166289969207592e9,3.5137710327435346e9,2.9975620610058475e9,9.007970134575943e9,2.505261904423799e9,4.533986830791047e9,1.6443829781367292e9,3.7529098257285056e9,6.5904243854133625e9,6.277188154222229e9,4.183007836066959e9,6.744462897575685e9,7.808420672625761e9,2.8124749061612797e9,5.689282186087439e9,2.7913901717026024e9,5.947933103067575e9,1.4742385009047399e9,2.803597035963571e9,4.1995123658815494e9,1.3663131519929917e9,4.717337303969348e9,9.529300477145666e9,2.0281004525079226e9,9.903410011147467e9,9.62424956594724e9,4.3322807229450035e8,3.6976514708136377e9,2.3179892590869388e8,7.007900824395793e9,2.831797300389057e9,3.995165818499563e9,5.828693144037263e9,7.504868084428724e9,8.327546065007695e9,4.186996420043461e9,9.455978246646017e9,9.35924563463357e9,1.9813182980475707e9,9.873712599822033e9,1.8048680762955039e9,1.2416823329426818e9,4.774906665867515e9,1.589819991300927e9,6.274201270932393e9,3.214285102647345e9,6.098602644806748e9,1.489687188225286e9,1.870756390326983e9,9.252633765123201e9,3.3925517334253407e9,3.640656590911883e9,2.5361384550167174e9,1.6404647969706333e9,9.649554921538769e9,4.523287624727791e9,9.447132973432556e9,3.094857654843437e9,7.357101461525475e9,6.868335776032654e9,5.5787974085493765e9,2.1741207072562996e8,1.8627863753798702e9,6.436010990821817e9,9.637107664719461e9,9.670163480119463e9,4.631404075710083e9,8.636870884375458e8,6.385535645773209e9,1.0819709459795325e9,6.802201953873083e9,2.6529492583936434e9,7.47500695729465e8,2.0757632111021206e9,7.8347286585332155e9,4.302733846499615e9,9.358664078403494e9,4.498804690456404e8,1.4512384820372915e9,2.193738935786108e9,8.867173913167475e9,3.510559653838293e9,7.411508758742139e9,3.2866862375053086e9,1.0562539097323875e9,7.945561792497255e9,6.103189589616614e9,5.878973133281074e9,4.365284244503086e9,5.592840674622622e9,1.2752655914363165e9,9.409778551602083e9,8.185519050492219e8,5.502196944201696e9,5.402733151242051e9,8.383917641291757e9,9.811925943904775e8,5.4539435673740835e9,5.847612604240283e9,8.362491871542777e8,7.443109477208665e9,6.984641104019849e9,1.1411070780704114e9,4.4237020009238905e8,2.5029330306901133e8,1.6778812242175245e9,5.025182932676765e9,7.944639392697165e9,7.513186792384924e9,4.1123827215255284e9,8.650957690071213e9,6.54918114379272e9,2.145054573255124e9,7.698149969233801e9,4.233518900216398e9,3.4811495769058943e9,3.042906504401802e9,6.121242751965498e9,9.331446960375986e9,4.503304801177104e9,2.5990879349301386e9,7.859596671706587e9,7.572208274532705e9,3.6838343985211473e9,2.466324520072679e9,5.151191863179728e9,7.387273422334702e9,6.389329648779851e8,9.900923600757011e9,5.498153905979376e9,5.837372372565811e9,5.663649360185406e9,2.1323238854220395e9,6.145445726139746e9,1.5815931511015747e9,4.158609808826473e9,3.393899180963772e9,1.184008156507861e9,2.3147053776271167e9,7.311171893598922e8,7.628755916767243e9,7.352719327324645e9,3.0270528775491943e9,5.211686551700515e9,1.7007781582315395e9,7.044368737287595e9,2.546726716543345e9,8.727383582871162e9,7.685784764521646e9,2.446808483485373e9,2.204932316821907e9,8.399173032696263e9,9.833360842839886e9,3.441422466782784e9,9.554520578046799e8,1.0082532941124201e9,2.692475961957169e9,7.040325992083646e9,5.686479370551767e9,9.21468186144313e9,9.958003439341066e9,5.391755901766656e9,7.978804598944796e9,5.428683889074567e9,9.812052368213242e9,8.285692123490478e9,4.515378594238426e9,8.84028093761128e9,4.989084301615872e9,5.286181668401657e9,2.1607493807541122e9,7.5184291817338e9,5.803060278248584e8,9.843886734157465e9,1.0014608004734305e8,5.723869239854937e9,6.756140328157136e9,9.031235834538082e9,8.439721700987095e9,9.358258827656433e9,5.312062731454259e9,5.910860261277016e9,5.720731054290393e9,9.441006140262075e9,4.726228747671828e9,7.359233833837426e9,3.0090732016814837e9,4.895116660262344e8,8.504303497375146e9,4.305604006233436e9,3.80692731667572e9,8.638998544097054e9,9.428727284004845e9,1.6309924575960011e9,5.991679661785415e9,5.751182359237306e8,4.0885038005385365e9,7.441723668798277e9,3.29328785048053e9,5.730706562251109e8,1.76742712688867e9,6.190003474203198e9,6.451061451339091e8,8.973809214551422e9,6.959964711400852e9,4.628926417267798e9,7.5136511565751505e9,2.0283768658804035e9,5.063480316322334e9,1.3943111863588243e9,6.38683652621177e9,3.525327462122909e9,3.488853935296757e9,4.754129167048062e9,3.362159644509084e9,1.3289577517614171e8,7.201755286147071e8,3.8306988142335687e9,8.787881119520689e9,3.5892926852614393e9,4.9565310535418236e8,5.693577910651171e9,8.2017658881426115e9,1.2831958357227501e8,3.380593013897143e9,1.7282894469199362e9,3.745649222234522e9,5.471272640451403e9,4.815699305481836e9,9.582771450473505e9,3.7376712479444385e9,4.535123181676295e9,6.989781883572155e8,5.002873276969566e9,1.14985838204391e9,3.612315609102812e9,5.427709473153522e9,2.6949857457012873e9,1.7693464982526762e9,6.397771766713834e8,2.2537364945348783e9,2.224106380248436e9,1.1020901505385761e9,8.401434623923307e9,9.53402141172713e9,2.7783767144037295e7,3.9909902706001177e9,1.0956835359359286e9,3.915206444156719e9,6.528894123138183e9,9.69837819488322e9,2.532250903725065e9,3.118620227159573e9,2.3588789646185093e9,4.1129723968219466e9,7.533421227980076e9,8.477571030444369e9,9.510341117123173e9,1.996298531426235e9,3.038465049200918e9,8.126039929381643e9,6.261040185391634e9,6.076944393302437e9,9.8059386055296e9,3.0889905723832e9,3.212140388558138e9,9.6031505463268e9,5.977618758973509e9,2.221068066855346e9,1.1729336872045248e9,6.042920991751903e9,2.190508851481223e9,6.216149591233833e8,6.990486583896716e8,9.216716060696133e9,6.956175463273062e9,3.926901223106465e9,1.9695840634988348e9,4.366091075706111e9,1.4722868876097362e9,7.604354735512831e9,6.664743156557715e9,6.419900134936501e9,7.668707104958379e9,1.8455831886690633e9,3.6676838629606633e9,7.446580521865342e9,4.647263247093517e9,9.775538084775347e9,6.922483374666883e9,9.568967359393423e9,7.461726758078347e9,5.948400117013855e9,3.671283628895583e9,1.3082845239469643e9,3.0869196678886323e9,6.413117996979177e9,7.817885005180268e9,8.136202631152287e9,9.792322266685999e9,8.112414496153416e9,9.65493016281363e9,9.977085760236721e9,3.7232039857158937e9,4.50040017534831e9,9.013194987431728e8,4.338497248684897e9,6.002837817314884e9,9.106104666359444e9,9.173516798587982e9,8.393444649904174e9,2.9906311292941947e9,1.2127634411324196e9,3.7524372865711255e9,5.577284684172909e9,2.2415640628422084e9,3.446360232730432e9,8.638992874607014e9,5.554596966397335e9,4.852463308194285e9,3.487552353024351e9,1.1342731535200968e9,6.483586676322088e9,5.218643580034074e9,4.971266011761146e9,8.787238267061628e9,4.712655860464861e9,8.235468921516597e9,8.408890021647058e9,1.8663083211265674e9,2.3971384835119123e9,2.2585695890492642e8,1.3756960514357862e9,3.5781214817874184e9,3.8028028890442986e9,9.159793450035713e9,2.351560740051024e9,5.734686247334622e9,9.3359860615768e9,5.584329543759936e8,1.7256189314691372e9,6.020161161783307e9,4.2900811704911447e9,2.2462277713546807e8,8.248629387140425e9,7.876138728613375e9,6.533335742915739e9,1.93896890716721e9,5.161331931514844e9,8.240839930528374e9,4.915481221336789e9,8.601368003883896e9,9.403232598636642e9,3.7863781286728106e9,3.999931624669171e9,6.205978761007374e9,6.174425687326966e9,4.0877322734336796e9,8.041962726146723e8,5.128445371369709e9,3.7370403394865746e9,4.861965096506371e8,4.2797606160703015e9,9.500333396655392e9,3.2924997844806027e9,2.9169430866822953e9,7.043494658859902e9,8.658800817767387e9,1.5155966808045485e9,1.9857833331262043e9,3.909273497500809e9,5.594238459990379e9,5.932601301446785e9,7.403539002496044e9,1.6251161554571614e9,1.6040221949451373e9,5.208165315482004e9,8.85781778650953e9,7.832728231466926e9,8.236127713276064e8,3.1534631242480183e9,3.855737884424523e9,9.567903742038471e9,3.9600172044144897e9,2.635973818708153e9,5.723496340370748e8,2.4122385850961537e9,3.454381354545867e9,9.79409784797193e9,6.221357392276856e9,3.7321152378055134e9,2.751894135699884e9,3.85581771950988e8,9.59381970696741e9,4.305668404603743e9,4.9164966336788684e8,7.06512127468644e9,4.296564818762874e9,4.950546641300987e9,5.912727617608538e8,3.9881044455539503e9,2.6915905035238485e9,3.732472022795845e9,9.41031012959778e9,3.363161950398834e9,7.425807280081888e9,7.805792357475916e7,5.908649124129533e9,3.310009233149502e8,5.939939506894959e9,9.448462289043062e9,1.6590492483427577e9,9.76234877954777e9,8.730944782795924e8,1.6948674740924985e9,7.749800106181131e9,3.8185113077155366e9,3.7466784410392175e9,8.00134297102762e9,3.9899412483959074e9,7.861071463000941e9,9.101524819392514e8,8.804150222151909e9,3.279483674564897e9,8.279554510017384e9,7.81356877321905e9,8.105753929811439e9,8.390974392480243e9,3.2555378589005923e9,9.274140937566229e9,2.73446992274185e9,5.237111392245114e9,5.168819679184714e9,4.5020258066048765e9,9.985032732406038e9,4.338623484134782e9,2.1061946574258218e9,5.442614810430668e9,3.6460097369334364e9,3.5378195081252704e9,3.8203806367667346e9,8.378051175070689e8,7.407202288598182e9,5.967095894267573e9,2.775435986961172e7,5.00552784030252e9,4.88342260151129e9,3.602724909427879e9,8.219619253639144e9,2.004736055518257e9,7.4391307351576605e9,6.23766715019443e9,8.438626372257199e9,8.492843911178478e9,7.277135882136254e9,2.377072235872721e9,2.082422245006933e9,6.919277789334877e8,6.812124165070524e9,8.391278876126295e8,5.398441021094179e9,3.3401635662561746e9,6.270647892712555e9,7.165441210630128e9,8.563797675031155e9,2.9512416999051137e9,1.9459019380884567e8,9.125023461997384e8,8.665866233014128e9,3.433783497457965e8,9.863998957554643e8,7.369053404299351e9,8.721817882995651e9,5.965236796515292e9,3.4839346791353874e9,8.804992799473862e9,7.644646735827628e9,7.043928863236609e9,6.788866859003471e9,2.5016404986751637e9,4.537058214870413e9,3.6466390298481765e9,4.413847940933342e9,4.552280971784772e9,4.0150557662280684e9,7.578087276005494e9,5.682809034044759e9,2.9996197549830194e9,9.220487763396362e9,7.851540255317722e9,7.601705115418514e9,5.609688502974091e9,1.0231254064922568e9,3.6272293223499575e9,3.717132562244805e9,2.0369396296153507e9,4.116705334671451e9,8.974704663503553e9,7.336435009005508e9,6.915524736021161e8,6.076958285001072e9,2.0705090213107257e9,1.7318021768479908e9,3.5269661667802687e9,8.729461013632147e9,5.638152593026825e9,9.332824916429623e9,4.742461888082561e9,9.975991519630089e9,2.43681524799877e9,4.277187117294334e8,5.454877477825151e9,2.3419608181964535e8,9.03233180454723e9,7.292922588601686e9,5.480374495346274e9,5.812711030658873e9,7.737184758436928e9,5.970000131483818e9,1.4621447818149335e9,7.42978147094949e9,7.480571902169214e9,3.1718085175083345e8,8.739073561033947e9,7.502284470177267e9,4.029246572338874e8,1.7225010058297052e9,7.180699955855293e9,8.301637102195752e9,8.457814733936908e8,7.337789265461639e9,7.073145308257921e9,5.562623859486109e9,4.630636530676496e9,5.012363792903043e9,4.685286920515064e8,2.8505056592588506e9,1.6889444283660204e9,1.3882311856525598e9,9.930127711146315e9,2.5075970841133466e9,2.380592683154866e9,6.6252204394619665e9,1.4469922192362538e8,3.283235392285494e9,6.921748360671671e9,1.6048734577014189e9,8.355540192572428e9,4.088851134652738e9,3.7852266263842115e9,7.729110731223394e9,8.326679092108395e9,7.271168370035915e9,7.625377442047051e9,6.147148237313569e9,4.42790048483887e9,5.053153599415759e9,8.227922412683144e9,7.97944875345285e9,2.1857941247377243e9,5.453490753012971e9,2.6089875315345123e8,2.572647229801721e9,1.7510196284451919e9,2.590772597291345e9,1.6071521615212903e9,5.909186622174985e9,1.8119337174424722e9,1.1774221977107768e9,8.745592908594637e9,3.4184577391230917e9,7.423892512303619e9,3.4661752213032813e9,2.81401010660598e9,8.673362420539444e9,1.1748144218767874e9,2.5929064187127137e9,4.528337503710673e9,7.038506589742882e9,9.642853186290228e9,5.079787176801466e9,7.508361559798885e9,8.69040308620792e9,6.162312688177151e9,1.162529744864391e9,1.7143442417489886e7,8.976025698852062e9,8.32767416313309e9,6.273490631239554e9,6.567960266982542e9,6.280987734712203e9,9.425386687252438e9,2.6562079273969884e9,1.1768535833053405e9,1.4746274005643933e9,8.673760320038372e9,8.954726166943849e8,9.102324749164236e9,9.596376534390108e9,1.6690733334077222e9,8.987414754929438e9,9.068114927930038e9,3.351871107019091e9,1.8229910658901415e9,9.050371606108931e8,1.8914230385273988e9,9.586034183229826e9,2.7974329794132466e9,7.391508550976293e9,1.869938262278792e8,9.930628227926281e9,1.769117339127516e9,8.663331558871572e9,4.384572843872381e8,3.812022508022639e9,9.272906750305822e9,3.610777521913573e9,6.822049448282211e9,8.723612837732801e9,5.051920541591175e9,6.589651505776695e8,7.646436565955309e9,5.977186729859551e8,9.921148828818874e9,7.398108825376315e9,4.487413817412622e8,2.914585437953708e9,6.828130547438475e9,5.144451171897863e9,4.2175952999754305e9,5.573946976596342e9,6.211435562544759e9,8.011098468212284e9,8.984861587620895e9,1.8560366522987404e9,6.065601892935873e9,9.120879259891119e9,3.8332239654050937e9,2.9652487734592967e9,7.826346932238029e9,2.34227473071961e9,5.914773785173336e9,3.220517354444464e9,3.671233204463311e9,4.854658834013378e9,1.1021047888518565e9,4.2099003381379795e9,3.34810829369547e9,1.2192454856162772e9,1.0002768159595643e9,4.662689098689264e9,3.0512810556331215e9,5.296352501448537e9,3.7614930569986525e9,4.2619860057552395e9,6.617744372629518e9,7.400564506139008e9,4.401987618943987e9,8.394685082170582e9,7.646961896631652e9,8.667470574039106e9,1.4683249902714934e9,1.0271413782250283e9,1.8162503836001854e9,7.599028331006442e9,6.877070527748221e9,6.445629650527284e9,6.067982782283874e9,9.042643497203012e9,9.236971810215677e8,1.0496448891782583e8,8.171870162774665e9,5.332724046795189e9,5.658535376039864e8,2.0696786173354719e9,9.264394374843975e9,3.5224310409562078e9,7.13345176909581e9,5.563724454040904e9,7.659757201121367e9,5.461294186511891e9,4.219404403707857e9,4.261792583156685e9,8.312905459881706e9,8.90448008321034e9,4.924355724121285e9,8.446685640689057e9,8.73462873555846e9,9.91919565598561e9,5.121187311109009e9,8.525912801223989e9,6.561640678149826e9,2.3695805277905436e9,6.367034337887563e9,2.7778231446804924e9,7.453425145343501e9,1.2024180025040033e9,9.236546197994143e9,6.374630617737371e9,4.547597576123313e9,2.329036398793294e9,6.464847984583428e9,9.385555102546814e9,1.1824460887187138e9,8.696604404774174e9,9.088070366220013e9,3.9846403100172777e9,2.734288005399793e9,9.51715897746416e9,2.0646573295164173e9,2.1956040073889847e9,2.7430914978596964e9,9.840589272442995e9,3.3188386619153485e9,4.675286382483927e9,4.458338643486424e9,1.8770825619854715e9,4.650107772801434e9,8.261166166192819e9,7.4442481368685875e9,2.410937798117394e9,3.7588693270390973e9,4.634983195397969e9,8.773376841546864e9,9.17356285388903e9,5.663717576175095e9,7.916493576577588e8,3.96277640372647e9,8.613404268675522e9,5.013861035063164e9,4.0702980222996845e9,8.673393048054333e9,1.495725975767893e9,7.043306333591906e9,7.236031756794452e9,7.813714516836353e9,8.498345172153155e8,8.192830752571117e9,3.4834797949026265e9,8.255916312797159e9,9.203083664049807e9,3.003444454158486e9,4.868273309206487e9,2.913616490486695e9,6.277254939199501e9,3.933232031415228e9,7.859130759471511e9,2.1493702429727945e9,7.225149045636728e9,8.296599459530407e8,1.5789315396593206e9,5.170449382781141e9,4.121905469871368e8,7.039771301428703e9,1.303378254510248e9,9.731403407987949e7,1.2115106069021263e9,2.4831682851687255e9,8.87915170441605e9,5.570518571339511e8,2.7996462427179213e9,9.844309281187635e9,3.181849328350075e9,9.344777742330694e9,4.2459967860324864e9,7.035472230778745e9,2.4381253059490514e9,1.970844314818062e9,2.721942164793053e9,1.15128145592447e9,5.638999421276526e9,5.341073134722859e9,8.381096027530987e9,6.82132318651569e9,5.306647134055511e9,6.84350650553847e9,5.56048199548534e9,1.1575537325081232e9,1.5640741702563465e9,1.4139043932639673e9,5.74816751730594e9,3.0365153312586837e9,6.095657846066726e8,7.484274095178165e9,2.8827886333025365e9,4.8624497406006775e9,9.012234662677904e9,6.94912097784991e8,7.209299458210611e9,8.709636607504332e9,5.391854302682889e9,7.487330402175702e9,6.873745668201536e8,4.535349031393248e9,5.776044666722796e9,4.481933252910821e9,7.304955505292963e9,7.411356232789063e9,3.5242476625371957e9,3.07230802971989e9,3.9921530918029714e9,3.5979737309916615e9,5.449333448343788e9,9.128795496386913e9,6.069485189176914e9,3.487156100140549e9,1.618682204940771e9,5.325465146385657e9,3.322461087872216e9,5.298436143638556e9,7.684492474539306e8,3.373719007555679e9,7.457481550835987e8,2.1953752716758857e9,5.229470804519676e8,9.935392137044619e9,4.147811035631401e9,2.2712767381736298e9,9.89784732511063e9,5.838186476989545e9,9.360908341412127e9,2.5107962808436656e9,7.2447672582431555e9,1.177692407499209e8,9.925170891890656e9,5.278691803110358e8,5.762606121903351e9,9.58564357301806e9,4.2236818412339582e9,5.517918431884624e9,2.9423285153034086e9,1.2642329423661125e9,2.2688867040371e9,7.604450619954343e9,2.2559203635471106e9,8.324801938503111e9,3.1692318731379175e9,5.419075238832122e9,5.511795268778889e9,6.783675340248363e8,4.3267770616182165e9,9.855341045755236e9,3.4741751561084423e9,3.16634050350564e9,9.918970517704506e9,9.811522851946886e9,8.222247061902968e9,1.7244588358941405e9,8.042266276183651e9,6.948995327051367e8,7.633288554184911e9,3.6940409101739225e9,7.883847901862452e9,4.925701535864481e9,6.922145820437107e9,7.880355601626693e9,6.336137200802675e9,9.05665838687677e9,9.344642790937155e9,8.57061356844445e9,9.76779710967097e9,3.9494962580747395e9,2.4057201504564953e9,9.649412582454824e9,4.363572213577447e9,9.007489853530645e9,9.225200856163313e9,6.517099539609894e9,4.392002082930603e9,3.7636435969597383e9,5.962542092676447e9,3.820674392826072e9,2.092761422426266e9,9.477752519944424e9,5.561627386950276e9,2.0121934391232998e9,2.6792278322210217e9,7.5591192102549095e9,1.1762879061677022e9,3.509639414950253e9,3.5645002037134566e9,9.226055141973555e9,9.808822802158484e9,9.692517329971212e9,2.7408271555434384e9,9.651334037203373e9,6.757655290287876e9,2.4424278772960505e9,3.51448129319199e9,8.8105794205997e9,9.142499453855156e9,6.27049565112954e9,9.474429332459461e9,3.7797506974914565e9,1.3238602292276292e9,4.5878726869051285e9,3.1149717288187585e9,1.6995612154175587e9,2.6681701244835186e9,8.706756721640772e9,3.8392474476075153e9,6.270572730432697e9,3.002598269258697e9,1.3650433344050171e9,2.7881594024621534e9,5.550778521283899e9,7.784009863910692e9,1.0224283369439402e9,6.830748501084889e9,8.344228143686799e9,4.0639569217879233e9,2.921047655680322e9,4.394043144818264e9,8.409868065719572e9,4.29500079183632e9,8.964734988647299e9,6.020508688526771e7,6.96481354282091e9,8.283634580718516e9,9.600558337927359e9,4.796796577620993e9,8.92397478973842e8,5.892331398576215e9,7.427341216644018e9,6.588478740603143e8,3.8363145060312696e9,7.442362911120746e9,4.376632807767767e9,9.18288273243996e9,9.486260347738363e7,5.892412901362851e9,8.816201180398792e9,6.5375230891107025e9,7.987928869225586e9,8.012862996129759e9,7.913932566698224e9,9.48328759721299e9,6.364030293357513e9,8.883613277965397e9,6.441349214322143e9,2.1143627629330852e9,1.2241630473874165e8,2.091951822270155e9,3.5456175845910497e9,3.8569227707176967e9,6.299542384475307e9,7.734322275197239e9,7.141547403192816e8,7.110928923345611e9,6.919885537648644e9,4.623894995640535e9,1.8524995165670054e9,9.809888054915089e9,7.079364766171098e9,1.5918437026991417e9,8.002384760258153e9,1.1393870777660408e9,2.843512200641117e9,8.311898669022883e9,6.869637179103738e8,7.438848954410521e9,3.147070490768692e9,4.391111599199003e9,2.885867291944222e8,5.987531365275633e7,4.74615890839892e9,7.855260848582013e8,8.875398568993792e9,9.90948514317793e9,5.112965336981865e9,2.2529234087748795e9,3.3405034269194913e9,8.078273493480772e9,7.7930117009555e8,8.776145286532204e9,1.6903698431615977e9,3.710968013989463e9,1.8682695432133255e9,4.247821451261341e9,9.868770790774216e9,6.622913804135089e9,7.615895659269842e9,3.263372082669087e9,7.019749898879861e9,3.514635121655384e9,1.4809843004526212e9,5.560982902576998e9,9.653224563499956e9,3.9667513724237866e9,3.7139430027772534e8,5.673296798524887e9,6.402923487911463e9,6.453064390747635e9,8.308249598064613e9,2.0340820536587834e9,4.990648190561925e9,6.276425418744824e8,6.433524242676933e9,3.1428801471070633e9,8.499796013148756e9,8.841880169503368e9,7.3406030711957445e9,7.495812562394694e9,7.902709369578235e9,4.277235071182386e9,8.288536879754018e9,7.5611386339008255e9,1.9212649144459248e9,5.372037905004271e9,9.875308316182707e9,4.616242840856539e9,6.11684950333257e9,8.381596835210664e9,3.6383138433018413e9,4.776657038432692e9,5.520401887415697e9,4.663831068221975e9,8.845259646542768e9,9.86858805136873e9,4.093111005095341e9,8.571475750888779e9,7.842115342044798e8,566830.3661243712,1.2342807812064427e8,2.5383791927276134e9,6.696328747893883e9,3.317436901323505e9,4.862709155171069e9,9.87941001640752e8,6.948199542282763e8,8.304429262696849e9,9.900757420945036e9,7.273359339216458e9,5.562394749323655e9,8.453468378470333e9,3.61680638178411e8,8.503275606188944e9,5.044630693388328e9,8.209635853861985e9,5.3026756613281975e9,1.6881190136044078e9,1.3694698692971308e9,5.2074401072791487e8,5.150725890672404e9,9.232549893036268e8,6.46030186644755e9,8.445058916955496e9,8.264255462785131e9,1.9580392877900188e9,3.4029701926860824e9,8.509396608477963e9,5.40070859245757e9,5.351519671977052e9,9.572422791203596e9,3.674222741299268e9,3.464067256620699e9,3.7060502351088567e9,5.688574093458035e9,1.6434990649941838e9,7.261892306830344e9,9.522666187326344e9,6.234329319188701e9,1.5018974093175087e9,9.36306932370235e9,2.3788390631876464e9,2.9951722881629295e9,6.881942212567986e9,3.610641232317018e9,3.4397356123442903e9,1.4329241283854034e9,1.94013275493643e8,5.99874384359278e8,9.864093021191107e9,7.333324333728914e9,4.78312281460973e8,1.1077744950192893e9,3.3931223115044584e9,4.76261505663415e9,8.370208378154741e9,5.665712468239026e9,3.5858005667368765e9,5.347265212653644e9,4.2670910517642956e9,2.2385942523785915e9,5.98433110202129e8,2.7512598497923837e9,8.341034071187027e9,6.634965736577977e9,6.103424684323391e9,1.0517214102403227e9,6.885042328660296e9,8.563469164366727e9,2.9132020678613944e9,7.587023907041172e9,9.026405648010273e9,3.341167410744029e9,8.412512552391916e9,2.3446806871000137e9,6.929718983875176e9,3.950509582605786e9,5.4111419881874485e9,1.8592402743248436e9,5.124834686529939e9,2.8515139332929983e9,5.073882206789726e8,8.904229629327469e9,5.961162196933159e9,7.877823132706918e9,5.597151281401558e9,4.8418730646940243e8,6.168006711943387e9,8.829634151002884e9,6.40380240572254e9,7.490502313564157e9,2.9749866433733587e9,4.918162815695596e9,8.708820069576988e9,8.284527920506548e9,1.2515353184880328e9,9.78511127048944e9,8.258655847844311e9,6.354698009274007e9,6.512905447689947e9,4.29480157600345e9,2.6905735697479463e9,5.748239663261403e9,4.8416663734138334e8,2.258749407070363e9,9.265019081469397e9,2.252285296187049e9,1.1648997005495198e9,2.529787131498595e9,3.434146369935084e9,1.082242617653252e9,9.170073035340816e9,3.3013788847847337e8,4.8436969377633295e9,5.908316518758732e9,3.795896767370893e9,7.369868246044015e9,6.49038967842185e9,7.511492996818022e9,2.550121881956241e9,4.1660198683010387e9,3.6845250771453977e9,5.845902369013861e9,5.0661028855127945e9,3.308118270517634e9,6.811711707426924e9,3.232007397694703e8,4.446447471737816e9,7.945509702209694e9,6.177837082452911e9,3.6385196475440586e8,8.161467704831174e9,1.823338924908281e9,6.994627191999322e9,6.263963550207497e9,3.618214762549731e9,9.453803966682533e9,7.406800095598174e9,4.809360887934187e9,9.358728027617397e9,7.293597807703865e9,5.348457196921642e9,2.3160484204812627e9,4.3261115239780445e9,9.363825381120416e8,2.603581493827767e9,2.3637870854533305e9,6.649753674688722e9,8.951618489576033e9,9.970868617625046e9,3.2485992682795095e9,8.466391760814923e9,1.2395514796120844e9,8.395769143539243e9,6.643201848150338e8,7.064090977423743e9,3.426339740374329e9,7.239936896955618e9,5.299591065157524e9,9.717520460098787e9,7.778253868427444e9,8.385069940331701e9,4.0781519875111127e9,3.6178694010239387e9,4.095622983909778e9,6.241540200420368e9,3.7819977915216994e9,5.75044441619359e9,2.6058569357525983e9,9.788093091170055e9,3.328445271826508e9,3.7835172377286487e9,3.3004840667959666e9,5.981051706267922e9,2.446713488918639e9,1.842444633916216e9,2.3944611178837647e9,3.5517314612173e9,7.316698927022336e9,6.754407220971528e9,3.1128197586888185e9,3.0918180222588234e9,4.301011414175832e9,2.596138381643253e9,5.245716894108621e9,8.867124462683056e9,2.1224811565206347e9,1.0788241701527023e9,7.959155278430281e9,1.5135262282579365e9,9.30941451144213e9,5.505236081384817e9,8.258967324383913e9,1.546042086531153e9,8.319761423867894e9,8.27113391174102e9,1.7788127641875196e9,6.824600027366994e9,4.745461777421021e9,6.603148435342162e9,4.770318612531422e9,8.50313152604814e9,1.6961276585043883e9,8.3186751907986965e9,9.377980535486488e9,8.15182868971107e9,1.2499313944480793e9,6.41861737325465e9,3.859128358252213e9,7.776183894034782e7,8.441874583774856e9,4.163559692874305e9,5.850384183960884e9,1.1851931957410388e9,2.7873890103148246e9,2.9323090015809526e9,2.5805308130805383e9,7.6315287971693325e9,8.557942538271917e9,1.515385269557087e9,2.985039267200811e9,9.995360742814837e9,5.3661003442016e9,9.689033681253244e9,2.865339562189094e9,2.772166483903038e9,1.05176899549154e9,9.787073997967367e9,2.7775239317732215e9,9.809322690462053e9,6.305777535809325e9,1.0464815095957924e9,2.1485623474694214e9,1.8484464275531354e9,5.981669631712947e9,2.0295783384369116e9,6.244709070417081e9,8.229301550803646e9,6.432397857229678e9,4.461464495007487e9,9.339575116656395e8,8.94669072490154e9,5.274075686509878e9,8.744607297834175e9,5.421195698679581e9,2.3601999151065245e9,5.063476078669642e9,1.2619615941639261e9,3.510067567111894e9,1.755986784792679e9,3.5065924077646694e9,4.1183129112548966e9,3.497761014563554e9,3.2313642164049417e8,3.818033591140758e9,3.1934764471004386e9,3.2527981658730245e9,4.898590883791201e9,3.3984086366343412e9,5.545668749626736e9,5.931109186676467e9,8.381772482910488e9,3.5007544340099516e9,9.95971303555839e9,3.355254693667905e9,3.389901453990667e9,8.849702995020613e9,7.452318355815519e9,2.628728522094949e9,4.2601831692576065e9,1.6851271134048285e9,3.506881076214663e9,8.905242015025475e9,7.927349090185199e9,7.049950485175194e9,8.92196526945833e9,8.245571153899483e9,3.6720529407071867e9,3.841052357562591e9,9.436737749064714e9,9.071914966636078e9,7.851963104463655e9,1.8045908614486806e9,7.613321582645378e9,9.240350408225073e9,6.118931936842926e9,7.781731271833229e9,8.393741469134281e9,3.4267668366330204e9,8.310652252912629e9,1.940149875238717e8,5.955484843447667e8,6.906964238569997e9,8.562267558847808e9,2.3674439601739593e9,4.489514637593231e9,6.714952570227596e9,6.461180696995646e9,3.0307931791189966e9,9.36908646958654e8,7.221558275299558e9,2.9344251196007333e9,6.069657256021086e9,3.395763959378145e9,6.795022749020051e9,3.321505436677055e9,5.852026158519935e9,8.675596081681322e9,7.361127021010189e9,5.757797829816282e9,5.819320523875682e7,1.1328268374658735e9,3.11054944434071e9,5.048150850542816e9,1.1851720316152447e8,7.111501407564104e9,4.2623481143404517e9,7.255969351333232e9,6.225105930482503e9,3.688096495027291e9,3.8712007499550185e9,4.713625169776291e9,3.712849326626189e8,8.09665897913483e9,3.1226607235886173e9,8.775706588183294e9,6.776985586789186e8,4.0262851255604405e9,9.052011748974125e9,4.5302499924735155e9,8.96791611855969e9,9.569163912091858e9,4.789197984926434e9,2.0587497430152512e9,4.546941729257872e9,7.963357001660353e9,2.5732902740393414e9,7.775318751749102e9,2.324685432661777e9,5.210666334056254e9,3.8474691060668244e9,8.59771894277638e9,8.212947298991069e9,7.918694755192832e9,6.43374440446523e9,4.0526451718106484e9,9.19633425110891e9,1.391157994290454e9,8.156778011025229e9,2.8654691195027747e9,8.4503914251017475e9,6.498412984634082e9,7.681417279914327e8,4.35273412540959e9,5.069477477866147e9,1.2691379684887981e9,6.701227152641575e8,6.940770969186327e8,7.373712245211251e8,1.3860226121718445e9,9.955569324534994e9,5.878996590785232e9,6.640640376306939e9,8.977966725045283e8,2.2773876796347513e9,5.323707563332777e9,8.374888026668153e9,9.731933088310658e9,2.8876407965838637e9,5.543552987598943e8,8.853067806782122e9,6.474621349560596e9,1.800632292421015e9,2.6376624887793865e9,5.661863599452715e9,1.4698108823755918e9,7.378698800143646e8,5.181835109585994e9,8.59701151825874e9,3.9942050151101103e9,9.829320750399527e9,4.250906764512565e9,7.485568042924559e9,3.8928406048384867e9,7.237150652095068e9,5.90812020950978e9,4.418322483710853e9,5.309650270428673e9,8.818641129820034e9,2.404786619561767e9,3.341175290426224e8,8.122997597024169e9,8.324057439498349e9,7.443383373490198e8,5.190112919484698e9,5.7989369579191675e9,5.584513304200015e9,3.007115491043232e9,7.640474327395047e9,9.931274400568598e9,7.065844430903668e9,1.9997283832513013e9,9.90122531491504e9,8.560450497668289e9,5.284469378067425e9,4.209738557881031e9,7.840014161014086e9,7.284696310288252e9,1.7046958962449455e8,2.779188379610291e9,3.839833879520471e9,1.4889687013842866e9,9.797505873858654e9,9.056947365732249e8,4.907318896396958e9,2.470906655451173e9,6.027785918320451e9,9.878516302322529e9,4.915481877931037e9,9.736877027285975e9,6.111164770858421e9,4.2865967530908875e9,6.22794640481664e9,3.9410929457592936e9,3.939482289824756e9,4.870343692176996e9,2.3377881704755297e9,6.010907229064785e9,2.81306575008162e9,8.102506391539344e9,1.0139057400092111e9,5.169995924670134e8,5.778422506227098e9,6.925692773858021e9,7.303613461989916e9,2.912574873521793e9,6.407445373287619e9,5.053071656013282e9,6.780861915059764e9,2.8778565758434725e9,3.6212451083364596e9,1.9388089461221247e9,6.32812079111309e9,2.478977039586916e8,2.6001170414681916e9,3.058699762427083e9,4.262045537314725e9,6.239332866535298e9,7.453971666658001e9,2.533242472066799e9,9.92930087137691e9,7.370726709760815e9,8.086925131588915e9,8.93974322760601e9,2.8581743034662523e9,7.830664564398897e9,5.742563651851963e9,4.80359519746274e9,9.30512604542083e9,4.418945914829822e9,9.431414228319717e9,2.4426601630283394e9,9.937987041666183e9,2.1116730917441251e9,6.322877488395758e9,1.4744021266222672e9,7.597087945077085e8,8.962881352912622e9,5.956821864362092e9,6.850681636542955e9,3.129531060941173e9,7.748167311115456e9,7.032029833187205e9,9.30030953232969e9,3.4513538420144906e9,8.934506230889908e9,9.09900805323254e9,5.69748168670612e9,4.865637899848486e9,7.282001542428807e9,8.14348761329866e8,9.769691130069153e9,7.454501937220869e9,9.498939253687471e9,5.434232252256188e8,7.628020367675444e9,1.8420528203102314e9,2.1144539011697905e9,1.2234633137783492e9,3.569157558093228e9,6.712157053704532e9,9.65202000302911e9,3.1823312467761846e9,3.5462601517081447e9,6.547936495969186e9,6.786331078806573e9,1.8085400337144563e8,2.000224689698844e9,5.621245655650938e9,9.097926762258099e9,5.470856700820367e9,3.408569199968233e9,6.965990490644407e9,7.885706366358053e9,6.478708279500301e8,5.077915085621365e9,2.626547665271826e9,3.898498181527885e9,7.808836160420569e9,1.9121791639620044e9,5.092974483905212e9,6.146642216825147e9,8.078786086090983e9,5.5110347405736685e9,2.8355541482189984e9,2.3020792562008386e9,6.826837458024615e9,3.396947975156328e9,3.041446977452504e9,5.121537172968628e9,4.390283332970844e9,9.657759934581429e9,5.404799163136584e9,7.090151644900878e9,1.2475967973998282e9,2.334486788541221e9,2.96764227216076e9,1.4400094790556471e9,2.297631864570399e9,4.36380272135205e9,7.135750866574657e9,6.165075169787964e9,2.632928405897449e9,3.745915219803102e9,4.678049667081735e9,3.937444312541427e9,4.1177289031171904e9,4.427859587037922e9,1.6408772304160047e8,7.226278253486018e8,8.346723952418784e9,2.8940732040368323e9,3.068638591568867e9,5.07763017206313e9,8.706954790939878e9,1.1167234757487488e9,9.555263393349154e9,5.503120408760474e9,1.122098871348014e9,7.896968653247812e9,4.452367843961781e9,9.25996414672189e9,4.529904941129893e9,2.8886640800409737e9,6.562016374807112e9,9.15340711681584e9,6.498385124031268e9,7.328026437710689e7,1.323474916789491e9,5.100978464208875e9,8.98493772205077e9,4.357507693544381e9,5.683256956071409e9,8.909353948005121e9,9.556098142654736e9,4.986528173431414e9,6.210225255633815e9,6.878238532081966e9,9.314027100199337e9,7.896881660157396e9,9.691996801079894e8,6.995219577628026e9,7.0302453604971895e9,6.598012894576287e9,9.234640864704432e9,2.0423778247292345e9,8.74733389026767e9,2.0106148711137283e9,9.70657638470099e9,3.155297573062317e9,1.5959867582115183e9,3.7646005906044545e9,1.895990548331964e9,5.257348779960663e9,5.966683529417513e9,8.382885947548934e9,4.129042782303971e8,3.902796242458151e8,4.962524629355599e9,3.500210042796522e9,7.265438347337911e9,7.625985366518195e9,2.0398153785876594e9,3.6486153719666038e9,7.368165403496673e9,5.591394667119729e9,9.866196618740103e9,8.623504785229252e9,4.2498327020637784e9,9.743047870767332e9,5.143060966991915e9,7.052376645142905e9,2.0074496258195128e9,5.953888482266418e9,5.316150461034275e9,7.950556514892207e9,5.602195615663219e7,6.203815759783358e9,9.975726465325663e8,2.1499455414556046e9,7.038025475729455e9,6.692411517768307e9,5.327494347261882e9,2.60722786657969e9,3.790505067461407e9,9.591510537104345e9,7.066446716601329e9,6.549019121952956e9,5.44270613699066e8,8.480623645152138e9,2.6842090654473805e9,4.2673728689353676e9,4.980614325616079e9,2.4152213828966694e9,5.409101261202927e9,1.3369780273252885e9,4.179292521713244e9,3.781906538978803e9,1.6605311522349432e9,9.461490729728805e8,2.03114159898378e9,6.279077907258534e9,4.314230864766745e9,8.215406072638252e9,1.336718772651826e9,8.050406357524397e8,9.698576986705935e9,5.473780162825659e9,6.166181237934114e9,6.231629242797139e9,2.809047976796334e9,9.051115590055061e9,7.150409791626332e9,8.843978595702549e9,1.263227887955256e9,2.278386405933165e9,8.195644282210644e9,1.7829703527635143e9,8.958125146166521e9,5.200355571328087e9,3.1536810090726185e9,2.2260344492130156e9,5.053262403108123e9,1.8574821048390923e9,2.2695195899441557e9,1.0672567409090772e9,6.145007231972816e9,5.005122304230196e9,8.216876181581177e9,4.982887450456912e9,9.994164286897972e9,5.908802779517792e9,2.578752205878534e9,3.5145680559196224e9,3.7401752179830503e9,6.8875444352055855e9,8.826415473626554e9,7.380781912178032e9,2.371884523627904e9,5.443394371367548e9,2.630064980562429e9,7.573280700893403e8,2.961118390321159e9,6.377508846099361e9,1.0318442946798167e9,1.6597019504755085e9,5.28531755671342e9,8.08609670769766e9,2.29053014405753e9,3.801089461123731e9,7.740497053253351e9,5.612278340027126e9,9.383013832408582e8,1.370279604352831e8,5.835039875296926e9,6.93710715659094e9,2.4785534989980617e9,3.675793683908297e9,6.770687062885561e9,1.8772709823045442e9,6.525820968313897e9,5.192778528353061e9,6.564782357737836e9,5.716816266767086e9,3.847096026037776e9,7.861527405153347e9,9.117562858562931e9,5.267185994887537e9,7.515391874376108e9,5.285590739880196e9,8.373942884887934e9,7.974509205558755e9,5.454776826459084e9,1.172263361369178e9,3.515078910202404e9,6.660888837498313e8,6.6843151233734045e9,8.648162679091722e9,1.4680497445323758e9,2.680411211349636e9,5.840825156315511e9,3.7022069348079834e9,2.8985748223806996e9,5.229726147726601e9,4.0488758199969277e9,8.616311382103088e9,1.8284214615976634e9,9.273233528841648e9,1.5510241397992098e9,4.81217652283693e9,8.560742113519038e8,5.282002576817153e9,1.6693590271831827e9,6.620274440059206e9,6.98062193304216e9,8.948769774641056e9,5.851215888760919e7,5.082198190333324e9,1.6483173979496646e9,3.720429151836457e7,1.8936514295862296e9,2.941891699209839e9,5.727524726549719e9,2.4505418833952684e9,5.454059196787845e9,3.9353921863771e9,2.1495915792319465e8,7.184866723958612e9,1.0614471666016911e9,7.773082878989152e9,7.823817137022804e8,8.62457984186293e9,6.3817360553193035e9,6.155695386422566e8,5.263573139606721e9,2.6059094017621775e9,2.263953806609801e9,6.42768092661497e9,1.6220110711382363e9,1.4764061856951783e9,2.2235618910081367e9,9.916029337941879e8,1.5654935145197856e9,3.0772400943468204e9,5.471874893150136e9,2.8566429631177835e9,3.3389682034608793e9,2.8335040970225244e9,8.302173908217567e9,3.108266167842e9,4.9217329391423315e7,1.219669777179424e9,4.789190467857262e9,6.429915796072344e9,4.85266389364433e9,4.678045322654973e9,9.64537576648652e8,4.507031866163872e9,9.227101413822916e9,1.2212176318231349e8,8.178040997306015e9,7.079011031557074e9,1.368641647995823e9,5.961559160981228e9,1.4520814947921245e9,8.540077788620338e9,5.67739638325381e9,1.0666434515950407e9,1.6913936887725534e9,9.46730860854934e9,2.8046857634974277e8,6.748716417102818e9,8.67240290896661e9,4.9354908163415366e8,8.259637087699706e9,4.350452831384774e9,2.3840140157429078e8,8.050379778162627e9,2.690405584269495e8,7.383597158344702e9,2.5145727403814764e9,9.638071985783073e9,5.86746960944167e9,5.267499400717768e9,8.26661335984373e9,9.521045900672235e9,9.583427032076181e9,8.68143144816487e9,1.623600151626181e8,1.2166025596145914e9,8.41189309624134e9,5.904779959607879e9,7.207786707250911e9,1.1633171382921082e8,6.558751896101876e9,8.841596792507504e9,4.685735904712584e9,2.2242037136456485e9,6.538882528261569e9,1.161842537750556e9,4.317953304441894e9,1.0191129060077364e9,9.94900601651388e9,7.454512611530615e9,2.707372958997233e9,7.071704577274284e8,6.492647257977246e9,6.978159595152709e9,1.8522189119670863e9,4.319608089085647e8,8.756354503840752e9,5.514915233574796e9,8.65832682505209e9,7.301450934121299e9,6.53679787806265e9,5.561683423968851e9,9.585776434081701e9,7.725433126301205e9,8.987628182795118e9,1.508763013178872e9,1.995400256480696e9,7.173948122030366e9,9.193221528927e9,1.8364616060510154e9,1.2043523612224584e9,8.480337074912378e9,7.913122961814171e9,8.004060291764375e9,2.9300601461821876e9,5.902133845092288e9,1.4594330769943764e9,4.0855839580485497e9,9.445248300776472e9,4.478870048395777e9,3.7974813558612e9,5.003132650531566e9,6.19815303273226e9,2.0020474756713645e9,9.839805334321388e9,7.333539818888645e9,7.0614878137337675e9,5.234824771616753e8,6.822077702601937e9,8.881896156466677e9,8.92013832486097e9,3.677136834200476e9,2.0988675648804455e9,5.651246562918188e9,3.3843772909370837e9,3.6296147361023126e9,4.08433071339111e9,8.13079998481681e9,1.9060160813000715e9,6.582961954805322e8,9.603406283425512e9,2.602429584673541e9,3.3584227670746293e9,5.73838186379531e9,9.0291475269213e9,5.800198067591244e8,3.4045026341160035e9,8.76331863847266e9,6.542091243769573e9,1.4906981595317914e9,9.978335860967158e8,3.958657987498965e9,2.5378656395667486e9,8.506619844943153e8,8.320995292464451e8,5.739963132818722e9,4.308567451136166e9,2.2625793075195656e9,5.224665416697607e9,7.442872873453548e9,2.8876035546483426e9,5.156207929343288e9,2.6474912296214824e9,2.207342671176491e9,7.504111571054318e9,5.679493322176772e9,5.081792184007871e9,9.298924885552948e9,8.461761120502875e8,5.611635749245724e9,7.962252710512926e9,9.371911026530449e9,6.730059974588519e9,9.556258324608103e9,7.526115852438951e9,2.499724849903059e9,2.276528772052686e9,5.638276885593857e9,4.462040833776569e9,5.436808276079905e9,1.242666185123641e9,6.253777936953775e8,3.939125582880755e9,8.97766096564642e9,2.19825670569606e9,7.736311213042095e9,4.737277867490463e9,8.333574345449992e9,8.267955813652736e9,4.678765934859164e8,5.610319219287065e9,9.627074093509264e9,3.4395670666580005e9,1.0960177811147354e9,4.0970361818008137e9,9.501810221989126e8,1.75354616240353e8,7.045656889383214e9,1.7676709934919465e9,4.711500314336018e9,1.5521028347642107e9,4.678440491452734e9,4.691571592932267e9,5.312015596323966e9,4.980748035005263e9,5.613376139701188e9,8.302808597461231e9,8.537925794061771e9,4.773357318628417e9,5.593874282673435e9,7.507499010375507e7,7.740667429820081e8,1.7761716882726574e9,9.500024173465193e9,6.435402292516949e9,6.262523341575598e9,1.8779019824813414e9,8.444094728063823e9,2.206719507506978e9,3.447977751366316e9,4.9294994439007536e7,9.724499283764923e9,8.695961719699162e9,6.094039583815934e9,7.470108160727551e9,8.083234302340582e9,7.885143128265828e9,8.717078888214031e9,7.735897190803332e9,2.2088737912270675e9,7.35071262424385e8,8.267380723848786e9,5.55416807080078e8,5.419399809071146e9,5.45693347532054e9,3.6465659899355297e9,3.4379800199217825e9,1.2066302164614162e9,8.274483608526517e8,2.617866446847862e9,1.70643437521109e9,5.56386654743749e9,2.9030279774946723e9,5.223322499749415e9,7.3218233596490555e9,6.437928820971974e9,4.865799965153455e9,1.3436488444738703e9,5.251255132557226e9,8.258417143093441e9,7.447618519615606e9,3.844716925672509e8,5.854139950290314e9,4.891911696327945e9,6.321178709676805e9,1.8625169058763623e9,5.829816000781495e9,5.41164479874001e9,2.059452392991533e9,6.829097280854548e9,9.508229745211512e9,7.498882837552067e9,7.047912750263396e7,7.603709635680708e9,7.478276984483744e9,9.918537746428913e9,8.512415122486949e8,6.233640375108828e9,1.2541913355362988e9,6.647222671528885e8,4.900533856860125e9,6.150733559114863e9,3.791090664755903e8,9.15593278211684e9,5.89994008490694e9,4.102287335628234e9,1.544821808238498e9,4.553079809888494e8,8.858237708174932e9,8.737905530545009e8,1.7110348921338925e9,1.1743261084561741e9,8.825775236403034e9,6.631393640008761e9,6.322542524169504e9,6.746423209799769e9,4.49755248275004e9,9.433703644967728e9,5.377525642491238e9,2.882356657015317e8,5.718000685997947e9,9.005649314075838e9,7.887495460986913e9,3.894508872086766e8,9.21220274565966e9,8.707576611817942e9,5.181685958352501e9,6.800994559020431e9,2.624067841111374e9,4.8668929987315536e7,3.4285286564698215e9,5.118341081833916e9,8.821462677828024e9,7.556284607516265e9,7.166719406022854e9,5.4355004027559185e9,3.226612406628395e9,2.463907061720051e9,3.631717042281247e9,5.052763619626925e9,3.9995096695147414e9,7.513341183481723e9,5.057214724539711e9,6.9698145290438595e9,7.801668242504969e9,9.584000177115517e9,7.935781790830224e9,9.77146906647171e9,4.910051075272331e9,5.538811410337896e9,2.398200466110796e9,9.96268308739655e9,7.151854496433337e9,2.8614426514317447e8,2.883104601180798e9,2.186878831681238e9,4.385215290795803e9,6.967086202594441e9,2.1071862414994757e9,2.205123665499356e9,8.054172352646941e9,9.901574964890116e9,4.561450256513151e9,1.9325790616676152e9,6.2205078134844885e9,6.882329668468456e8,4.561130582632804e9,8.220701283013109e9,7.931090404337055e9,6.611999338697587e9,1.860615822231957e9,2.944335094122541e8,7.932653887929076e7,6.91113282299165e8,3.601557771455708e9,4.8406244187577095e9,2.4534524306886163e9,9.399720240174622e9,8.884886806260475e9,8.887767278372238e9,5.133927773342306e8,7.694361153703549e9,4.95638517219325e9,6.942963359059824e9,8.4097068505027075e9,6.502075735670489e9,8.22530513175196e9,8.954230662148518e9,2.784068286547463e9,7.387835074370431e9,5.755346185091168e9,9.269766724856005e9,7.057445655534884e9,1.4532025935557923e9,3.305644943594979e9,1.1869807780946896e9,2.455575730716296e9,6.236125409039779e9,3.9556754699548793e9,5.67519963119168e9,8.443332191909925e8,8.591837082578007e9,5.274637835068102e9,1.6867100944867585e9,1.444609479603609e8,8.730269300980232e8,7.1969130996739235e9,3.993303004565429e9,4.723605892435957e9,3.4356763421070757e9,7.174845854071048e9,3.502504725920389e9,1.7153664357555132e9,4.351092356128029e9,9.507395327334879e9,4.706917943956374e9,9.810233688945986e9,2.756079279712179e9,6.861992095650403e9,5.026978350232462e9,9.920998553615837e9,5.133255480784987e9,5.2035129283996e9,6.080754004872283e9,2.104538464721778e9,5.790813727391877e9,6.905775553926718e8,4.2183364803936872e9,4.621673277180072e9,8.821041769126581e8,5.713717335231577e9,7.366543750025225e9,3.2952704619145412e9,3.751597122797803e9,5.318450645307772e9,6.70783334934486e9,6.98758588259738e8,9.741697937103868e9,5.223346650351941e9,5.764569064059457e9,3.2459406561483307e9,9.059693972855976e9,4.852810489505659e9,2.7493632284203963e9,9.169427767049365e8,8.275444344588765e9,1.4033383759979057e9,2.792705678396541e9,1.6354719033683805e9,3.727669976233955e9,6.010761305966117e8,2.9201123579709044e9,9.369469084932835e9,9.825345637784313e9,2.4305929613390155e9,8.827672234161322e9,7.85527714641574e9,1.6361763753554282e9,2.9991088144098697e9,2.361749163260367e9,3.615185225871546e9,8.74808901271831e9,3.9787912948355e9,6.229405902988572e8,3.814086258918841e9,6.801051657891788e8,1.0559345251747499e9,8.0763150308135e9,3.418779009400452e9,8.56666575465297e9,2.2013493177918286e9,8.786841129997585e9,4.4459202525439415e9,8.164829115658995e9,7.989284522282283e9,4.2011245024776177e9,6.939961663509624e9,9.935619515133904e9,3.108040360408002e9,5.25122815653307e9,3.272559049697577e8,1.3853063108813968e9,7.445249208491156e9,3.9678129460426745e9,1.4237831589464133e9,7.0642649248493185e9,1.231286317053729e9,9.373221904792063e9,2.0128431920269184e9,6.953447661899621e9,5.148110653575666e8,1.0801549311486723e9,7.583565204331911e8,8.304134251546953e9,3.5154937959975142e9,3.6447905521202207e9,1.6333249668626459e9,4.408903814896548e8,7.83513997578735e9,1.8347428170871549e9,8.051205466747314e7,8.847149097072526e8,8.050979637967192e9,2.829591946348575e7,4.830086313757389e9,8.754265869799019e9,1.088753921475978e9,3.559935320613655e9,8.942142097123283e9,9.198525539514545e9,1.4058123320902615e9,1.0446670382994516e8,7.908222858467122e9,8.115412919616902e9,9.188555289857669e8,1.0000364109998705e9,1.5264103245646844e9,7.183658800818726e8,4.0329893878932056e9,1.5447372972184327e9,4.004498731213157e8,4.819022502874372e9,9.658834343466715e9,9.775957945749752e9,1.393257878994507e9,4.0743140984477487e9,3.405309832672142e9,9.50961625219795e8,8.336584330455862e9,6.00725069397047e9,2.057283947565438e9,7.307729387670884e9,4.1397348765050325e9,1.1601832046518369e9,9.917965694283781e9,8.916462587110115e9,7.510245202419857e9,6.624288959318864e9,4.260459720290396e9,3.675732642292151e8,7.513569432235615e9,5.77151717350311e9,1.2295632109657152e9,1.542953810463682e9,2.292790388071759e9,3.5582206394373484e9,2.239161163561025e9,4.557969626327954e9,4.260961659251685e9,6.134022901649638e8,1.383494711451171e9,8.769155025590078e9,9.55323094268357e9,4.0314282052928853e9,6.231528521904444e9,5.069669454764763e9,7.249749760537977e9,2.1427481171241846e9,8.555850396914967e9,6.486798270756587e9,6.868341904734497e9,4.508558739014391e9,9.589869972005713e9,3.401875869598483e9,9.428046088183683e9,8.259719150492291e9,1.233952238865772e9,1.3001322833842223e9,8.412897151122033e9,4.412292994248787e9,7.398779992746009e9,8.718501488015417e9,7.08194784544616e9,7.979157744760116e9,3.9550536628006063e9,8.192621122034399e9,3.972896639241551e9,9.972057771250566e9,9.175702885226028e9,9.804874936308699e9,7.788911298172641e8,7.910180277878846e9,4.0371957030400143e9,2.1112490806666462e9,7.577039354466645e9,8.47064650491775e9,8.362323906319243e9,8.501005055850094e9,9.986783258077974e9,6.378838984750037e9,7.081710038930925e9,2.01492672964789e9,3.582784021546884e9,2.116349551502843e9,9.31795952136256e9,8.232740460713531e9,5.780352110322165e9,1.4595881671247802e9,6.553558336918044e9,3.078986597287373e9,9.65278045604005e9,2.388137976088819e9,8.358898824885737e9,5.471712855008364e9,7.600661039785381e9,9.323567019080125e8,7.410794490201e9,2.552147395304454e9,8.69379826084714e9,5.956344427440397e9,4.95476950831703e9,4.415348719282712e9,3.410119499826595e9,1.0157942211331006e9,9.453985224661282e9,6.120238016846984e9,9.149533942041287e8,2.2730023431052494e9,2.5664413359002037e9,4.549377744603803e9,3.6295612364607143e9,2.6290877308423324e9,6.74284740810105e9,2.8425329484945292e9,3.365415623005946e9,4.077509572404945e9,7.283617544870378e9,3.9072136395537195e9,7.884492800019131e9,9.442874854686771e9,1.6421109361452367e9,2.714328486948849e9,7.5132151690136e9,1.2964485553175488e9,9.59122875916678e9,2.490476945813224e9,2.500020955603136e9,1.925844609616445e9,3.1338985999357605e9,7.80849004342129e8,5.694712803875779e9,6.052235544010578e9,9.501903139510926e8,5.771143861432436e9,5.087383954478736e9,2.7175053211584e9,9.74765420345308e9,9.673841175738699e9,4.2552270487547374e9,8.108487642015552e9,3.176329367308355e9,9.641364494555475e9,7.898390557902432e9,2.328276404326779e9,6.116227635021347e9,4.478670547917758e9,6.827462048493185e9,4.79922360545737e9,3.1629486619537215e9,6.433919539339789e9,8.344894636475608e8,8.348576583867186e9,8.253331268295528e7,9.476789894847095e9,8.515475562668131e9,7.311227261347197e8,9.633074995419573e9,4.677337674624334e9,3.1665580455168805e9,2.8210622297791255e8,6.76056539328786e9,2.4794452148947854e9,5.675994369064467e9,9.082996895450327e9,6.852587616238113e9,1.208399286212497e9,5.913509407734489e9,1.9816993138020334e9,8.887838358632586e9,5.274250359978967e9,9.885688074889315e9,9.136844463164629e8,7.159955432581511e9,9.990189161996437e9,8.713555616288074e9,7.777359088538837e9,8.394630275896525e9,9.794820093758976e9,1.3922018463980668e9,6.306554133198672e9,5.982403832839207e9,3.4254525347213674e9,5.215423570827475e9,2.679458488348372e9,2.604550050460562e9,7.08525656580967e9,5.764698472451423e8,1.8915006071339092e9,7.315462148585132e9,6.473826813142884e9,4.873484896582438e9,6.798553283196529e8,2.1239253549444902e9,8.429224147643532e9,3.4459358563925624e9,3.18669092522771e9,9.124165411236762e8,3.001883692528583e9,9.962970037088022e9,2.405999636997731e9,3.7447307678786545e9,5.575080082970015e9,2.8602468451997995e9,1.5703768642384918e9,9.322503488180843e9,3.8317048367379203e9,4.661646268419594e9,4.26743672070701e9,6.4323800880488825e9,8.331317513495923e9,4.047828820039623e9,4.1582304924394064e9,9.930619822399977e9,4.872045145614366e9,1.3135618186708043e9,3.850859785731453e9,4.6816389048343e9,6.216332855172326e9,5.784104190842043e8,5.223234281381591e9,5.345061224329743e9,3.285756821173209e9,2.3054960701188564e9,7.964682711056222e9,2.518562745623477e9,6.275106078311892e9,9.173301790903236e9,3.3678586403888545e9,4.7931529781331005e9,2.572137657101691e9,3.756036810343638e9,3.1079045459180365e9,9.391969781389376e9,9.6467428622313e9,6.71289271993145e9,6.210165719457302e9,2.1716081363254304e9,1.1437011502064953e9,3.6799764075790195e9,3.1208521296756363e9,7.047731523089924e9,7.0766457977800045e9,6.424537731405822e8,8.769312769470911e9,1.7316625000475528e9,3.2510730618744e9,8.056810468045013e9,8.702786828291641e9,4.195734696464737e9,8.792598194261726e9,6.388904013424639e9,1.45525625771061e9,9.96914346655517e9,4.337443945253588e9,9.573847033540705e9,7.952326917217067e8,2.580352884448872e9,6.00393182439831e9,2.4454729251472774e9,2.7023729648608106e8,9.957060607030342e9,8.38970608675671e8,3.889320087963188e9,5.065352776049215e9,5.363648253319284e9,4.048452495792766e9,4.2181420444340744e9,7.955050816169206e9,2.1872645934858246e9,1.2836253042625668e9,8.903724374366253e9,6.456698148290143e9,5.0334608358389986e8,1.4455083264272506e9,2.743694220646553e9,7.995810745625076e9,8.732230472046259e9,1.4717525421573362e9,8.813671245470028e9,8.307620984942593e9,5.804559340509227e9,8.494713379982626e9,7.224567919634618e9,4.273656782794959e9,4.326130118190448e9,5.704410707651734e9,2.1674608231109858e9,6.752379914715481e9,1.3580115221806243e7,9.355074049687445e9,6.900541877241908e9,4.974831095951883e9,7.553090475422781e9,9.534442965146166e9,7.879234032515205e9,2.260440070936447e9,6.319993335349837e9,7.822772017419452e9,4.435418991562709e9,3.8185357658526955e9,8.912488020082722e9,2.2739665162879663e9,4.779942834259332e8,1.4076255590243936e9,9.931203074006523e9,7.752708230101082e9,5.777335130686252e9,3.373607692708448e9,5.10471046045384e9,6.570245380647146e9,3.7987246980007563e9,7.903761338042483e9,5.368222177292259e8,7.369494724107198e9,5.880221146644025e9,1.1454565215544698e9,8.832808454502554e9,3.7158160147773924e9,5.907348682735664e9,6.360930795041342e8,9.154900264408983e9,9.605874235302162e9,9.740936707650204e9,1.628512792947815e9,5.949546507954118e9,9.593886442928783e9,8.734057779494586e8,6.356823267095767e9,2.89947576287235e8,3.400563336368776e9,8.869159424670855e9,9.706106198473932e9,9.393231529057905e9,3.317389008587627e9,3.0138097293945374e9,5.529874353265787e9,1.5845494431183193e9,6.753337070783568e9,1.5922571553840902e9,2.942562909176567e9,2.6794103883713794e9,8.540656943779811e7,5.987280710849587e9,1.2236834747032943e9,3.785302342470177e9,3.749466668204543e9,8.107898341371467e9,9.235977795188496e9,3.845536208808553e8,1.4646003202155323e9,2.5158252106313173e7,4.693892014255448e9,7.326302466745107e9,5.10209277183933e9,8.840484503175135e9,2.700409766803635e9,2.421876045963505e9,7.081665188007369e8,6.824207005134281e9,2.5390225207829876e9,9.537357142621433e9,7.448298150523551e9,4.878913558744861e9,1.5448543374828205e9,8.354792271208323e9,1.654161265554035e9,7.5157594759217825e9,7.453614114630881e9,6.75371350114524e9,9.74767194868635e9,7.004375920121514e9,4.931282859136946e9,9.159938747900173e9,2.3519486093193877e8,2.917801194335323e8,7.020150137977187e9,1.500088038990499e8,8.370468961392636e9,5.262728722037134e9,6.305677041624523e9,3.7091052448094087e9,4.784031939411848e9,7.324192154568714e9,9.574589670525536e9,8.71969743437082e9,1.0587811005905045e9,6.143391124757702e8,7.913522914666066e9,6.781200497244546e9,2.189853173186281e9,1.0664964065172955e9,7.616246744804842e9,8.916930865864843e9,8.76281784760425e9,4.606823938101639e9,9.81336189086889e9,5.946150807894868e9,1.5675639951617682e9,6.987659633193368e9,7.067308223831329e9,9.250597902854359e9,9.020662966506299e8,1.8092051775732975e9,5.141731048383089e9,2.3432022243640385e9,9.328585000377378e9,8.86609563344865e9,7.495972503999604e8,8.691713324800743e9,3.0878122949469266e9,6.244651453319123e9,4.576645782019765e9,6.243073082840659e9,7.228760231211899e9,8.22978519328508e9,4.730704548332831e9,1.3697272650839431e9,2.2662154479578056e9,3.9096228360537224e9,7.770425022977459e9,8.257957403667005e9,7.101219087537857e8,8.880199095619848e9,6.819531832808503e9,7.994587460449156e9,3.887711412158207e9,5.439340332439971e9,1.0662339480810034e9,8.245090129589363e9,3.9974843552088146e9,5.601597985019302e9,5.736457694644051e9,8.859182933455982e9,5.306932808708971e9,3.413764648879649e9,5.295355143543341e9,7.3781709813152485e9,4.332750018498999e8,9.767227634517548e9,6.247143928844161e9,6.207627010304681e9,1.4474552347454517e9,5.8357735554812355e9,6.061778282000378e9,5.1117845428871765e9,1.699048474452074e9,4.19439574605921e8,6.993682422145282e9,9.281130645974699e9,1.6205746368754315e9,5.1527795747015494e8,1.0583782929442754e9,9.463746395487165e9,5.800545923503326e9,9.307723933628794e9,5.971302368363171e9,3.5522756183589e9,5.945665453917527e9,2.2007464350363283e9,3.6826206272021513e9,4.141189815217997e9,5.26267441479427e9,6.972186380315373e9,2.1400462347763638e9,2.2117865240498405e9,5.003447710914577e8,8.50226381365197e9,9.580814074990797e9,3.0573935723789124e9,1.5442415718442926e9,7.4493110120127735e9,7.712613635463413e9,1.1953287291131942e9,4.2141620484110684e9,5.353120768619581e9,2.1793346368867316e9,8.778241878480373e9,2.92528635817364e9,4.926861793320054e9,8.94692042679508e9,5.586041686695582e9,7.824118348716003e8,8.447557248497108e9,7.587644377792879e9,5.655886241556614e9,4.203285807129469e9,5.541036757409177e9,7.502417252067636e9,3.1506794144113812e9,5.454156580138796e9,4.1781872969130383e9,2.784139069318251e9,2.1601594230677202e8,3.3728154179185586e9,4.884429146070296e9,8.75471249951628e9,8.22365749946935e8,2.462094197699387e9,3.3827104915077934e9,8.600675154758419e9,6.683658977464586e9,2.594004669549057e9,1.4801870202605627e9,2.353819163104033e9,7.989345555019732e9,8.698110168443874e9,6.072331997156539e9,6.26873774697592e9,1.369081679109796e8,8.203499159600768e9,9.492976535785948e9,1.226409802291365e9,4.092637590688486e9,5.897283488408331e9,7.299195770975728e9,8.264451032676788e9,3.7125036979963565e9,9.178897946872328e9,7.941911894523933e9,4.951514795516632e9,8.45922139448408e9,6.132729911152586e9,4.126887675462836e9,1.6984416006700788e9,5.262249575678889e9,8.731571965612576e9,7.125910089068846e9,6.0170590970455885e9,1.1814237573875685e9,9.699282570144928e9,8.126839116546194e9,8.600786154732086e9,2.8413713428699217e9,8.65977825654309e9,5.299934071807056e9,7.969378658479952e9,4.610128915675313e9,4.961297396493666e9,3.2529221934667087e9,2.3702293107048187e9,9.429452466998487e9,2.5584681926792054e9,2.0566039153964565e9,9.621411579058317e9,5.509298497693035e9,8.210340432689419e9,6.073034388278984e9,9.408061201718851e9,9.134073415846311e8,9.278573936440464e9,7.386674687270819e9,1.956877773722242e9,7.589308379465955e9,9.563289233375742e9,4.872597270860892e9,5.328204469268793e9,9.679092889525254e8,2.3889241104171343e9,2.397913437616462e9,9.747406462718035e9,5.134200691860104e9,3.333038128092064e9,9.193659508057148e9,3.675082518401013e9,1.1606064916303728e9,3.8822886427902293e9,3.0750597705711856e9,3.254097424776634e9,2.219505927025942e9,1.5330987007622764e9,7.010593033293707e9,3.2275562867835407e9,8.859066722701141e9,6.723589620358901e9,5.053714032385588e9,5.383293294730657e9,3.7769524711698756e9,1.8737487199229198e9,6.894137777038345e9,5.323167106557302e9,6.574707741985561e9,1.748031427389446e9,9.144381702918089e9,1.6668634350849388e9,9.672089312947329e9,2.1123815746310303e9,7.178036175157051e9,2.199545476264956e9,3.307423899052131e9,2.894692513024798e9,7.758530193230409e9,7.173050382585511e8,1.923456353941232e9,5.821780771597546e9,8.134114866098756e9,5.946756957035019e9,3.9757965242256165e8,5.767944978802199e9,5.540132197960084e9,8.348485234442136e9,4.579283523759988e9,4.919785733678282e9,2.233313837901215e9,9.422168125971142e9,5.800095860050137e9,4.808335443374017e9,1.4714657542464492e9,5.701974854826114e9,6.162962057730026e8,6.379383121593032e9,8.450104098129014e9,5.457245508959571e9,9.509400512949211e9,5.534714226430815e9,1.2588911578039951e9,6.461235988048275e9,9.7291672454181e9,2.6050607911054225e9,8.743617996042515e9,6.190408472440822e9,2.45965123420373e9,1.6530103670227003e8,1.6354759437364807e9,1.9239842462754562e8,2.112192100190169e8,3.3245367326299524e9,5.023933811007695e9,4.474042006423739e9,4.452330998608671e9,7.345990723501258e9,5.572485519474769e9,4.2798523774912376e9,3.7166307842283463e9,2.0844877519424322e8,5.745113350967274e9,5.139609390425004e9,3.652727948561687e9,6.945229192221961e9,2.1323139674878645e9,3.856259644454083e9,8.017726675863989e9,4.894915002998737e9,1.9190446653901694e9,4.780042986701833e9,5.176893213847392e9,9.305757468449928e9,1.6044138041881874e9,2.9119114289801474e9]} +{"expected":[44.276737,67.56398,3.2525399,25.14278,6.862071,37.46706,32.346424,92.311485,58.570183,29.016815,2.779866,6.5844064,93.60288,87.49275,36.970463,95.71062,33.790424,89.09245,94.07676,20.161446,61.589077,8.655141,58.765312,3.8802063,82.26614,14.491516,90.00281,11.248247,54.202568,54.95068,23.927446,43.46082,28.224285,41.549965,79.11455,61.045486,76.57602,19.535765,25.411537,41.52713,36.404842,81.38263,56.41487,8.05937,83.34827,84.87513,56.89939,16.643147,4.189401,31.831326,17.775599,1.9748958,17.41356,75.6615,48.752544,45.940735,52.718555,57.196907,17.6504,83.35807,60.243565,99.579506,40.234623,9.37081,62.874664,0.42661414,14.143676,93.39959,47.982872,38.88414,58.98761,43.12967,25.055119,90.49247,8.994247,14.973242,76.51122,79.492935,99.46666,2.176069,86.474236,43.55314,91.33382,39.713646,79.21366,95.29335,55.053783,24.468939,93.050255,6.897149,37.979965,36.5825,29.322582,9.110997,82.42605,80.78275,50.305767,35.213646,71.95297,77.03446,76.08498,33.011974,87.641884,34.95945,94.692444,21.50646,62.89997,12.514711,88.51543,90.4363,1.6859735,3.724214,45.664185,4.689515,51.36983,37.541985,56.753548,35.12246,4.1990128,35.7532,80.28299,98.51502,49.031487,33.64325,89.73405,67.27886,75.60889,27.251083,32.54926,81.45311,88.888855,84.82296,76.27084,76.98881,45.560814,56.00804,54.788918,75.37168,64.065025,65.06766,90.103294,43.053406,42.582348,60.39453,67.63473,8.645707,3.84736,49.697487,47.259148,99.22787,20.16602,37.262817,26.826057,10.866227,75.71542,95.82233,34.82193,10.618237,46.868744,42.208096,23.86929,8.867371,28.772713,82.67502,9.432752,56.158997,6.9678445,85.94087,22.364328,40.733784,67.281845,46.407394,70.44372,98.42211,59.217903,65.98514,89.90465,85.201225,75.09786,45.64419,80.05519,42.60641,90.73533,62.75486,4.649667,3.7252023,62.95839,1.6916531,65.702835,10.372956,9.548642,9.995124,91.67781,12.983264,33.411007,84.48803,94.845314,86.670044,2.1075706,6.4241447,47.50878,56.460392,12.17428,53.863857,44.82994,95.8722,80.719246,25.795195,10.9681835,38.992207,87.75533,78.383736,12.211863,5.154901,20.919315,31.94602,32.868057,74.17664,53.638256,78.130325,67.08858,10.320255,14.725768,57.65008,97.31136,60.85354,8.238563,12.914448,73.710815,92.38927,58.494057,96.185104,33.228916,48.396355,20.284176,55.063873,97.075645,64.1978,66.93563,57.93994,90.19781,15.825842,33.702965,1.5409633,48.977825,14.708751,0.884599,31.452187,9.818201,78.30074,19.434593,71.73794,79.31706,33.090374,77.68635,52.26576,28.96337,67.85812,11.506549,78.20202,36.973495,24.370825,15.22378,87.10145,35.55379,78.7735,99.81857,19.401426,72.54598,47.964207,97.27489,78.37119,86.67197,93.40078,16.560448,90.67161,8.877577,75.34886,36.048805,46.96209,12.282021,36.39669,11.513869,48.309406,59.440132,95.99818,85.416,76.9911,25.223845,99.9286,97.60291,7.645342,9.597568,61.879993,18.0255,92.05437,88.61933,36.043915,34.99216,55.567295,70.638855,25.680786,95.17652,86.15515,26.662811,39.045868,41.36234,57.47009,14.376722,80.49158,94.298615,18.199259,65.91459,31.219753,64.71212,28.645973,82.46655,34.270126,80.00457,83.34889,77.46411,49.898964,20.421774,76.4827,7.9631724,59.871815,17.749384,16.89979,20.432116,68.67833,34.986843,30.89097,15.2389965,37.269207,20.32696,17.668896,13.710565,55.81549,90.02526,41.762825,1.6791643,29.386541,90.687775,35.441113,68.82846,74.63567,58.132137,22.815666,97.1359,43.446598,77.59354,41.44883,86.2784,28.660715,22.001276,71.39086,86.76542,32.139996,34.032204,59.48576,79.60209,66.79904,63.660553,52.284443,89.15375,57.569088,30.21874,80.75477,95.49597,21.506197,91.81919,32.850285,45.74532,78.64978,62.750004,63.47019,29.198284,2.2596831,33.814083,22.360115,42.77141,53.03443,44.548332,31.197353,40.41882,55.063656,1.4451491,53.690186,2.5046844,96.9049,80.10989,68.51802,74.12402,18.47428,0.26829657,63.711956,43.9489,81.61922,45.991577,73.81268,42.25496,97.241646,37.99059,31.029512,8.752437,27.848204,32.415413,19.540028,57.474533,95.98734,6.125707,85.79587,59.95301,71.3112,8.022589,11.5638075,9.516637,64.10449,5.2582784,78.02679,99.07745,46.695286,27.988342,83.97325,6.414106,79.53485,67.66664,81.43062,49.375446,76.9131,41.66459,88.666245,51.386402,68.529816,81.69265,46.482063,84.33806,48.974674,33.559444,86.67924,38.09419,9.02513,35.902203,13.505265,3.5314195,11.380202,33.545383,13.3035345,61.20377,56.668,24.268839,39.505802,1.449728,19.472473,22.313776,87.453255,31.42772,16.02623,73.9555,12.304868,56.810993,93.8329,61.90723,77.539246,39.568157,81.51875,41.899113,1.6946507,87.531586,47.459255,21.995157,33.90744,73.24741,95.887474,22.313107,47.48264,47.772198,22.556845,9.934673,83.52901,69.001656,66.26957,75.90339,37.154816,54.42432,49.74651,49.84084,56.826435,19.885963,22.368713,5.164199,2.4285824,19.64566,59.942314,83.36693,33.810875,30.34215,53.469692,89.54273,12.314467,87.011444,72.82366,33.958492,22.615532,70.767006,38.625168,0.85732555,64.30455,19.017752,27.774105,93.94193,48.686954,40.290485,31.33449,3.5450034,77.073395,80.890366,89.68907,36.161476,96.90653,74.54045,65.420235,16.579315,89.56088,28.605827,29.57399,84.03306,96.683304,79.04002,46.794067,91.80275,15.225992,25.13013,24.130863,45.114143,62.73593,1.0784357,57.36111,19.551634,88.1287,35.31844,42.375103,98.396484,11.890357,23.056473,80.762054,65.28703,69.773224,80.1755,40.734756,3.4281864,74.16855,74.18466,84.47172,29.479849,16.199608,28.117512,84.53616,18.097712,87.62113,72.20085,50.551804,87.15788,3.7451472,45.050343,66.54899,91.424034,42.956745,39.3495,70.00434,68.50632,0.044756677,59.03738,6.3486814,86.894844,69.991455,58.102707,98.1712,20.305853,37.48038,72.43501,30.97731,85.3492,32.93662,15.028403,97.30284,69.934326,71.35608,41.605736,66.01853,87.33976,73.132324,59.47531,43.357506,58.4338,31.904398,53.475014,21.449505,67.310524,8.4335,69.743,76.86698,17.09633,71.53148,81.31155,55.14866,60.216736,24.758162,47.997757,40.18041,77.65387,7.683686,61.83667,16.822653,54.712994,47.918957,34.79542,35.20008,87.71388,87.394554,27.229048,33.879177,9.145499,45.400894,4.2042923,51.14053,1.9316964,99.93643,45.12329,6.6356616,73.19653,29.708002,43.207016,48.2162,69.30207,34.924145,4.894063,98.03466,83.85198,30.008793,29.198498,96.27237,94.31917,59.145363,81.27782,56.720627,48.308167,8.697046,65.692085,7.994204,82.835266,63.070103,62.439255,50.02402,75.42674,31.193615,83.79802,8.661295,68.56829,96.870476,62.102676,63.209835,63.022522,29.502361,89.01996,48.454002,46.669235,70.69727,69.84377,31.026064,23.831274,74.98492,80.67217,35.80422,23.754324,77.10516,64.445404,1.127524,31.030792,60.60905,70.33769,52.92851,66.315475,62.540447,61.4518,81.23725,85.97152,78.22601,97.33831,42.69693,82.8128,64.51934,95.86624,24.779646,49.49621,76.88407,65.63567,33.341473,60.552067,6.7961016,43.164536,4.8692393,47.315025,56.385773,12.1597395,92.28905,31.67798,82.0324,81.28827,12.894459,42.531845,56.438766,78.72991,4.3755493,8.585638,49.35456,79.04892,61.941334,43.513348,74.77491,76.89098,97.95264,23.31863,84.69771,50.984013,44.372555,13.230181,55.723423,58.86345,34.769867,4.385775,93.89795,26.79839,65.58035,23.67035,95.64856,73.18711,27.370632,27.995047,1.5952505,74.6335,86.3306,50.253654,27.305172,56.238255,52.64472,89.786446,71.25263,84.98942,45.652115,75.61772,8.311091,28.949669,51.008953,1.0844151,99.46612,40.623234,33.474106,77.52375,32.50526,54.99733,87.02588,87.13848,65.13022,71.57056,68.0921,55.483273,52.59618,95.337975,70.99142,73.625206,80.35011,27.093601,83.95856,93.46015,68.803055,67.51844,43.749557,70.638725,71.61429,60.25396,2.6773343,83.1343,25.929672,78.77764,18.524988,90.04978,0.30563152,41.259705,76.14975,68.3724,0.3617942,18.523804,6.9673886,56.09657,52.52885,40.266136,73.48986,39.534546,66.026535,9.23534,13.694704,40.857544,48.21602,98.42126,5.0372787,96.78196,27.62831,64.201,67.499825,88.55748,96.16279,74.34906,24.321861,67.28291,89.84526,56.34934,44.305325,74.33344,73.629814,92.62207,1.6514298,81.4285,96.22539,66.159454,67.92261,69.66708,92.834145,18.133852,96.45899,89.66846,52.01828,98.405075,7.1313505,21.561739,77.97289,5.2952633,67.63745,7.6573243,21.281929,26.107489,70.24136,78.50351,11.313393,48.56305,4.522914,80.509834,83.84648,61.821926,71.66958,87.104965,68.2012,15.878747,68.08688,7.3460207,40.637974,76.2127,21.924322,57.318592,64.09108,36.616497,26.310236,65.082954,25.910143,26.553274,58.951927,0.37499914,20.40343,41.271305,95.448074,31.766794,75.68576,79.00571,86.18878,75.44047,94.3198,88.292984,53.848724,20.456968,2.5490017,8.964847,19.158068,20.74774,73.81082,78.832085,86.545876,80.28389,33.080856,37.07327,49.73254,28.435719,52.44496,93.71771,89.77228,7.984021,78.26369,57.981995,80.446976,40.262615,72.48148,63.375874,99.5234,64.11943,61.946194,17.108278,5.124106,78.25633,31.739592,51.92571,24.756117,62.211147,41.24254,71.64305,87.71404,8.745275,9.6942215,13.982521,69.54044,86.78494,55.799583,74.64237,51.405113,23.94752,73.400505,48.468185,38.72652,72.366135,30.750921,39.77956,10.170562,55.292084,46.413643,39.83579,29.76486,63.68478,32.676476,15.704699,98.035324,86.89403,34.79779,57.131035,65.02657,6.47551,50.72197,73.87626,35.0994,54.25795,47.520885,74.15526,1.3307897,45.225147,0.17238796,26.437136,60.16275,84.93062,9.051497,45.89196,57.03562,7.228503,34.35602,61.010674,60.51153,3.8869538,48.657566,97.06095,20.796736,84.299225,80.20937,52.25731,32.571354,92.14357,7.807888,47.975693,74.0402,82.24909,99.20052,66.71944,35.82693,45.40973,67.54111,65.96144,66.37458,46.8173,3.106367,73.04965,94.82072,12.613176,79.141594,51.908257,48.119846,54.65251,6.9916143,27.106695,98.80943,29.217964,43.71313,31.265259,88.539856,12.609993,66.754005,33.20623,42.951427,89.07426,77.52201,56.440292,83.46839,94.12009,68.2694,6.44443,25.43127,19.573063,81.35057,54.02568,8.925935,46.95386,70.12166,23.163445,17.886065,30.986095,20.33606,69.9708,47.806767,38.5208,80.852745,87.91161,72.86608,19.571186,94.426765,63.88228,10.814923,60.616817,38.577244,17.350388,27.70954,11.380142,89.76118,39.285534,82.552345,57.619453,62.23568,78.37761,70.032425,2.0727262,80.50131,13.737061,53.553635,19.794115,13.348352,38.846687,17.119068,61.310158,84.4288,14.752411,84.29159,87.078705,13.607244,89.36834,51.625793,69.597145,6.0848217,24.588354,76.00488,12.614338,60.544624,89.44926,17.161436,21.468084,3.563951,48.105804,47.13794,87.38527,50.88513,38.45981,73.12781,9.666238,0.9196594,5.7444816,90.47519,54.366955,79.174934,13.428231,9.073971,18.452002,67.96205,21.481838,97.963326,75.984146,86.98034,30.383585,89.87116,56.293747,37.522995,35.29441,36.03502,83.86972,83.15658,56.90597,81.45881,25.155725,42.626213,16.379158,63.728992,20.859741,38.40319,15.301596,36.10308,41.05573,55.232758,29.734385,46.582626,43.957005,50.66625,17.352552,49.880577,60.63714,74.2003,88.03912,8.996548,7.458032,91.503815,50.81927,62.010628,30.686127,55.86598,28.556652,69.40858,62.49981,43.13482,94.449036,55.88565,48.411728,80.93672,16.755896,59.49667,20.202356,58.546898,27.643543,55.544567,29.895287,68.375,97.05333,77.98257,57.884724,50.1398,98.680504,33.473595,42.586765,26.96246,28.669975,81.00615,37.020332,40.234764,15.204878,92.90286,62.466305,88.95322,2.6663013,23.975107,82.963524,70.8824,95.08143,43.58679,34.317844,68.578896,73.783516,69.071,43.73183,40.797497,49.281628,74.48076,31.668024,58.405457,25.977255,91.30165,55.90345,47.145332,97.965096,59.533466,94.66191,29.501997,88.90755,46.35724,76.794,43.89822,6.7313757,60.157677,35.08054,24.394518,78.391106,16.898535,60.8422,72.749214,74.59208,59.54703,75.317116,34.908302,86.89818,7.890677,10.548138,2.7003582,91.37125,36.353024,22.983868,11.478111,91.06855,17.281643,65.393135,88.255264,70.095825,95.00823,39.323395,0.97747815,12.755234,88.41196,47.337334,51.116154,35.426453,99.70408,46.89017,18.927233,72.0481,90.57301,87.253746,4.450871,89.07371,44.265533,41.475952,85.571785,1.3826762,47.637074,51.16099,93.23707,91.96294,42.00069,13.865225,44.447334,56.82652,72.84974,50.831856,93.35313,61.802612,26.267448,40.782066,27.845537,39.894566,11.20557,73.06457,2.261179,63.915306,75.23684,90.58514,84.18619,36.193844,81.0274,83.21925,23.352493,81.30122,3.5855138,87.046906,90.610634,7.9030957,19.894165,77.224,20.365679,66.45994,47.510857,97.04625,64.36075,68.117256,92.02385,18.14079,51.631447,39.145756,19.796778,76.162346,99.03625,55.161934,91.302536,14.63874,64.689476,98.83002,12.648879,26.411062,74.904305,13.197877,97.43393,95.1878,77.70397,77.32195,86.97303,88.472946,55.35885,90.00307,64.25413,4.32415,86.69591,47.44021,47.893665,77.324036,85.26105,67.65748,10.599483,5.4821744,11.25939,50.029446,72.32207,38.205097,27.217655,11.011643,7.328019,10.870088,65.85876,27.878605,45.946106,58.555912,40.86555,88.476685,73.13934,56.91735,76.25429,11.71859,10.93894,69.56723,80.753685,63.220074,84.70721,38.822178,78.2702,47.27111,32.039845,92.403015,92.24213,77.30224,51.9131,69.4332,89.70874,73.05625,96.27192,61.83893,9.5508585,90.49455,27.538565,39.65632,18.856936,68.31331,26.232098,13.305779,57.280052,88.03247,37.360443,35.34422,1.9507194,30.509146,68.38723,55.16626,88.87519,84.29463,20.318804,39.414577,15.186289,46.417946,94.09427,19.944017,37.128098,39.476612,1.300572,40.443096,54.73122,36.002346,62.296795,64.5865,93.496155,1.0075486,52.624256,46.16709,47.415104,31.147427,6.0804734,13.3523245,86.43632,98.9257,33.905025,68.10728,34.350803,22.466505,92.660904,66.09454,35.184216,48.877235,98.93217,47.270805,80.02289,96.24927,38.548183,8.96101,0.116811305,16.185972,99.09793,37.393127,82.45071,25.603592,69.50073,89.80383,12.170604,94.73332,96.86734,59.51035,12.064499,14.367033,67.987076,10.983103,80.88964,77.184784,13.284766,82.11296,50.017162,0.82193947,71.27581,59.351017,10.311064,24.364937,24.297615,40.10547,81.64918,4.05834,70.6142,60.8616,18.14878,24.119448,75.286835,56.487225,55.294006,40.57524,94.28186,0.88566613,75.94567,12.0296135,69.90384,4.6877146,16.491928,52.397446,98.38614,33.27103,19.247158,91.14679,41.141743,32.57601,90.917206,56.834435,52.17411,9.269073,48.23241,67.10912,33.31121,45.081753,95.71589,19.161476,48.938118,37.715904,86.48712,20.196823,34.7088,76.813126,15.108419,12.714116,27.387041,7.9971013,48.96722,25.537384,27.803133,15.390436,53.417522,29.023193,81.99125,78.19454,76.146095,31.02403,15.603806,10.276256,53.258858,5.8442497,35.11404,50.47769,52.21397,64.04496,68.37572,73.332565,97.406296,28.62284,86.917244,9.459436,3.85679,73.65338,7.091697,4.903573,48.41592,32.00701,72.75668,59.073082,38.195568,98.45633,88.26156,58.027996,33.89272,64.88965,35.54444,62.981983,13.828941,2.8707016,69.42179,91.05342,96.04918,37.02466,88.97137,45.62173,8.612357,52.78043,85.555786,54.16813,82.14856,90.29891,0.22118951,95.05432,58.177265,95.65326,14.504537,60.060036,41.46175,91.88993,48.384834,53.445145,44.00235,83.2254,97.94067,38.701096,35.735497,44.934185,33.650566,11.405299,30.356369,64.49202,54.13047,60.16016,86.7402,40.938473,39.916183,23.115465,41.57364,3.8072863,32.00152,50.66247,52.03559,31.19622,18.205902,74.00397,97.00868,62.48366,63.772377,86.70633,79.769875,82.12842,99.876015,3.675452,45.759415,9.997256,35.73053,81.41996,71.469,94.30216,23.969664,81.90713,33.43271,4.6556745,32.404503,80.59065,42.186497,64.2939,28.113554,49.12096,43.31335,28.231997,98.84117,51.88849,47.74698,70.154366,48.332603,47.868046,16.496607,96.002,42.551395,72.938545,33.61403,60.93903,60.50604,71.094536,86.90145,68.4957,26.281883,58.15449,62.942257,3.8139403,91.089745,98.61822,23.62992,91.145294,18.17152,72.81909,36.894814,95.21552,37.735527,92.10771,74.02269,13.095555,82.012474,79.8612,74.48038,52.73758,63.113525,15.422097,25.266226,44.168,74.96656,28.47387,76.83396,78.76753,8.931035,76.279686,79.17037,35.445984,99.296196,35.0922,77.53572,80.7513,49.45003,42.749485,95.45909,14.57669,3.2652738,81.9379,5.074968,49.80705,42.871655,84.37905,6.3857017,5.6077056,53.162838,51.427364,14.558,97.13474,18.333101,48.55132,39.717766,43.22185,35.295208,28.603117,84.2552,86.98877,48.035183,24.819965,47.678593,59.86853,57.958126,62.343853,46.283707,13.012393,65.6087,21.263975,55.8097,95.233925,79.09495,54.54887,60.277782,31.850822,66.93958,71.09402,9.313734,35.444553,6.2538166,46.49772,28.597706,16.709543,19.094118,48.811005,87.637985,73.73106,93.911385,96.52007,7.069029,66.24602,14.848403,91.57282,58.49976,64.6193,92.69383,11.410994,6.3146625,60.579006,43.238037,77.97037,97.71157,94.09036,43.643864,50.43427,57.969963,1.1178265,30.905962,78.51328,42.96909,24.182549,57.5007,96.99107,59.987988,12.305232,36.76286,89.10851,41.214626,68.856964,95.98001,22.242609,18.017517,45.10574,3.0083284,33.308105,81.602684,79.050064,85.854385,16.94872,9.322044,93.63152,81.18313,3.8223903,65.19122,14.646667,4.8713126,90.87334,1.5455649,87.37803,33.978302,26.346272,3.0150328,86.57726,3.129375,36.15753,78.42053,36.583763,66.66671,0.058791485,54.863728,7.62106,49.180347,90.37074,55.30565,93.21052,29.185587,32.804394,39.946793,39.70706,24.225163,24.740543,54.934372,74.05147,37.565998,56.846355,35.41761,4.993024,66.821526,48.512726,7.2355824,0.94602364,45.63436,67.106476,68.486,22.248213,65.87558,19.682304,98.35318,91.32243,14.066854,82.01616,0.43571568,60.450775,36.756443,59.99417,45.38971,68.93182,29.533312,6.280451,38.398468,98.714516,67.24674,89.17162,9.630344,6.7566166,57.665024,90.746925,2.2735474,32.164116,71.55528,2.1703968,54.957344,72.82656,1.3300035,25.098312,18.825731,41.403217,93.01445,66.04133,78.81992,25.169024,96.424484,19.450745,33.605667,7.2560525,42.44555,30.259903,83.77565,12.789813,74.571686,82.22515,0.30637792,65.37363,19.547964,84.000595,37.741695,37.050533,46.162815,31.372253,5.1294003,68.84633,84.847015,27.48575,87.77652,59.390934,10.982595,29.057821,38.523533,37.19107,37.422142,27.660065,53.68415,98.1448,37.13579,96.225494,20.087034,94.88759,35.887077,24.571423,55.93164,67.13873,53.594944,75.08137,48.464252,40.79607,94.49423,23.959309,48.16212,48.310307,26.896019,58.821434,48.26316,58.123714,26.031809,96.35066,92.48596,42.37197,91.79825,18.307104,67.48689,66.813545,16.2857,78.0046,24.216703,78.02329,33.087727,74.244736,12.533388,88.33176,56.279213,71.484436,83.63428,43.217163,87.17025,11.310649,69.11344,83.61379,81.03057,21.742285,62.871178,9.143379,90.01041,11.628003,65.95149,37.983097,4.016424,3.5681038,11.0084095,90.83118,75.451256,52.881824,93.13663,78.551994,88.454865,92.96852,16.518564,84.55518,28.064333,26.732313,5.457883,35.983757,79.26572,14.238836,61.574688,30.319613,84.957405,8.024209,38.15063,13.773575,95.11253,57.33597,59.989006,15.499862,38.326736,22.919037,43.88775,21.861048,81.2449,23.952421,46.206974,24.418018,9.7564945,20.414837,54.921474,69.90884,58.169724,80.33461,16.64057,17.208973,83.89396,92.2283,40.83712,33.594475,81.77678,7.985418,90.10245,86.929596,36.834064,57.812874,53.433895,81.96519,39.079075,40.792526,48.790157,0.7659362,32.736626,3.767783,39.65098,70.37529,24.634872,54.655468,71.13723,47.015213,39.574764,50.050663,91.79181,58.74038,51.194164,57.170086,73.17162,32.311363,72.26878,65.7802,93.3136,87.720055,49.17743,46.36448,82.61532,59.43195,27.47755,84.93773,70.59813,46.044598,45.86097,83.38357,60.357895,33.106113,39.103954,84.75733,12.237475,6.71733,49.23269,65.95601,38.886784,18.343082,22.244469,3.1408985,90.11734,51.87516,59.036488,54.957577,16.850363,25.97665,36.76357,91.59436,87.69835,43.358536,92.66421,75.993004,42.706203,26.971018,65.94846,28.869673,69.890366,87.14722,33.298004,54.619694,1.3633562,67.800995,7.2543945,34.10949,15.418262,36.991222,73.964,52.24352,78.17282,30.467558,28.572876,93.30752,80.9255,33.93511,36.826614,5.6199737,4.4173374,72.29041,21.538338,54.46026,75.44117,72.81492,75.20733,54.478386,62.437744,19.015419,79.383644,65.766136,66.755516,31.013731,90.46655,86.9136,21.137558,62.36725,1.839542,90.94027,97.90733,50.104023,47.692905,11.457251,85.30578,3.5061805,42.165337,0.77985203,40.947514,43.512253,33.76579,14.889288,27.683624,96.98856,7.500609,91.57624,36.702763,87.16184,70.950035,68.27719,11.613908,91.96841,78.00777,8.706016,6.5265455,70.00201,67.92735,72.249,2.247906,39.932972,9.30105,14.347132,12.85435,21.668661,20.842815,99.88958,49.104424,30.637032,34.080963,42.95358,70.32316,28.837128,95.0808,65.23148,75.804886,33.153675,37.79105,40.704693,73.33989,65.5945,25.205254,29.346886,24.833181,78.69866,47.59371,91.42002,3.9659662,35.39697,52.40529,40.655144,31.354254,44.421413,83.61874,75.32199,4.0874176,10.627025,14.427878,24.735035,55.328568,35.186256,69.79524,98.94919,1.666258,6.1628113,33.390175,41.643284,63.591656,95.847786,62.193275,29.757915,79.26365,21.28996,51.887833,97.50338,63.14517,95.65995,37.32271,66.85301,40.55594,85.87236,5.240371,0.44371784,36.412632,64.46324,58.238358,22.874945,12.409255,66.31974,51.361614,84.73405,90.461945,76.28782,85.681885,94.90706,2.190257,20.400957,88.03911,36.800766,22.383152,19.560596,52.701313,41.862247,43.982998,96.98472,77.73408,4.9127445,71.733955,55.77453,37.021854,52.381912,85.6096,29.179083,24.19448,52.958794,67.66829,20.062113,34.71898,72.5079,49.517746,63.51931,19.147366,41.037437,11.917844,79.52667,28.310844,58.27988,38.606926,31.06068,65.5803,45.186054,34.657738,2.0728078,77.69584,58.06661,43.874214,7.9391403,91.49018,67.398865,85.631355,68.10535,81.51895,93.94764,99.004135,4.3932414,75.20434,21.486212,69.97323,5.465372,83.10225,58.89986,75.43737,99.00959,40.2037,28.281893,34.55273,66.92657,73.509964,41.51463,48.537632,94.83777,63.430687,34.960278,46.582035,79.95668,14.467026,83.8093,67.85617,59.564262,62.011444,12.2445345,59.96766,56.196278,99.27822,23.024025,2.715227,2.043385,45.046623,85.44821,11.418342,21.74537,66.24094,71.94709,58.311142,73.44638,57.068523,11.792631,54.478428,25.05471,31.258034,95.44507,44.485836,46.4211,75.700905,77.97408,54.757988,2.816821,58.01934,30.072525,52.292046,76.90492,54.938183,0.41564497,35.327778,9.018487,66.952774,29.786642,85.423584,95.02255,90.45895,35.009056,93.49017,32.89334,49.79845,87.68664,1.4587986,48.738903,52.449078,7.102422,17.665174,17.034422,20.004461,54.08555,60.19878,90.71125,72.90153,4.597664,70.186844,74.14936,55.258728,84.50959,25.342691,2.8604655,83.513214,30.151155,50.282654,19.543373,41.397243,43.05387,10.355366,2.9521444,78.39381,25.915314,27.843737,46.608475,7.6966267,12.13192,29.289581,77.82931,78.99354,43.68959,76.64385,27.801432,83.739456,18.646032,33.913845,73.37397,27.290367,89.69394,45.66858,7.9018164,34.281525,77.456154,53.411114,68.01637,11.318332,21.39395,86.47172,26.040995,54.32276,36.76222,76.639404,73.63095,71.13826,67.85139,94.77556,43.636173,3.118314,7.7541585,2.623656,93.65382,36.953064,31.976503,53.054466,56.534058,6.3012342,8.661434,86.68652,89.76901,77.43898,99.7923,28.196243,46.553833,74.043564,87.22164,24.937218,71.42577,80.3077,12.100017,21.866974,58.12478,8.011029,80.11801,58.798195,24.353363,94.31949,57.797752,7.9173217,52.458378,18.23997,99.09432,81.84572,70.48132,69.068214,93.56698,27.438757,90.0085,4.2063107,46.93882,58.710346,73.38541,86.620636,68.34954,84.41643,45.615803,75.69382,20.304644,70.531364,53.370758,65.75262,39.062603,63.73737,61.91713,21.965229,99.28403,57.44752,28.262936,71.20929,62.05088,86.44868,50.63261,6.6605034,95.290596,34.36555,35.94664,18.288595,57.021545,18.638325,97.4842,0.75412565,71.62953,58.125305,74.26435,29.052605,80.60985,3.3059719,91.41812,98.84269,84.7503,5.4621243,66.801285,59.60663,22.834988,70.05676,3.398397,6.9839277,49.872063,7.8868923,13.436136,29.316847,33.672577,17.380655,90.21393,81.42749,99.76092,96.285736,87.51505,84.11872,30.85099,16.1687,97.9901,9.283306,42.524208,3.530194,68.0129,43.07237,49.316113,81.788826,38.1317,35.66388,4.871072,17.186646,40.188328,92.69124,4.5409575,70.74544,26.695032,1.2926525,68.98869,50.034725,63.921055,55.575497,60.885662,34.34112,22.641497,55.07987,51.396645,39.384167,98.53637,72.41675,9.234999,92.14296,4.7512593,87.0494,81.5901,95.691345,43.54596,18.933853,5.6115785,10.059208,50.20284,70.16973,84.06229,48.404278,40.880566,57.262775,58.637577,47.237316,67.72803,63.582447,55.15008,11.398124,54.4454,79.07913,46.402206,89.77714,81.45726,60.55191,90.22433,65.84909,29.527916,41.081394,54.62622,33.080246,85.24358,75.25665,39.67107,81.936615,70.442505,8.372743,88.115524,24.189074,2.8721597,87.772675,79.81616,77.468895,85.385475,40.909546,30.200397,17.095085,6.199137,92.46907,69.83357,2.7351499,49.461918,30.20634,91.2769,12.395572,30.270746,42.429245,8.885597,21.835186,62.22383,24.975775,53.734116,94.75926,70.778885,45.03901,89.4616,1.9600966,55.84637,48.067398,27.149998,24.304228,46.33936,79.48563,89.81007,91.01654,42.046024,81.844635,89.07106,26.11354,86.2051,39.381714,18.943033,99.29386,98.47027,11.291875,14.4751835,90.35146,38.16475,34.655743,29.861454,92.340836,63.029587,41.677174,78.04391,74.77482,74.35981,83.30621,88.145645,56.120304,48.29588,40.4702,94.96512,59.3984,64.18077,90.644485,33.92648,20.96043,54.86751,21.602636,46.981945,52.586475,27.928598,70.74975,0.19107132,64.631516,69.31386,37.30076,86.05508,13.304809,19.367825,69.40097,69.99475,51.360374,96.76453,32.632748,34.20835,93.815865,95.158005,17.632364,36.69338,59.71997,90.52476,93.143654,5.8730044,46.97468,85.2808,87.51995,36.63749,36.5523,48.46837,51.30769,16.751255,91.50554,51.161926,61.123207,0.9753504,77.92129,69.18305,83.788475,53.591133,4.017769,53.110435,94.54062,73.335075,28.613506,9.52292,13.882003,74.77214,89.78766,60.506466,16.170097,62.287197,9.367658,22.47139,9.526155,3.5737355,16.084068,31.07085,9.7185545,80.54994,63.466026,19.61523,13.320238,7.0901756,54.54684,7.919584,6.6031895,32.68441,56.34669,36.15754,52.266586,50.06971,1.8057241,97.095695,46.91344,24.695787,33.622337,69.98322,32.72398,64.25478,93.37212,72.56095,4.8901663,25.62826,92.74615,31.02871,40.323067,48.566658,27.18207,39.90066,13.98784,21.909897,0.89096934,66.6751,88.914696,79.34384,86.86469,6.796167,12.896822,28.938427,6.8864284,32.12441,55.164764,80.18557,1.5168668,36.000298,80.54412,77.765656,67.81945,85.48951,70.076706,83.78242,71.317665,31.670845,93.9227,1.4514024,41.140404,74.4454,91.43601,6.035937,87.76806,56.596596,76.61227,51.44874,78.82393,50.97219,48.3022,59.305283,26.887648,95.09062,62.61295,62.52641,32.870686,48.011875,9.310781,61.641285,24.220318,35.44055,71.83569,77.960304,93.44035,98.72191,67.27023,83.84265,27.39023,96.12622,2.5399292,23.55888,29.268702,96.72427,33.52655,99.58256,61.391415,73.3675,90.28745,83.00635,47.26753,58.54323,79.39279,92.45372,45.725075,46.60779,39.594345,49.07847,52.474014,54.37807,42.054047,62.32402,71.12291,89.51445,63.78075,77.912766,54.930115,36.394337,46.671204,65.49529,67.27242,74.49471,81.83282,59.56463,29.633429,7.0204673,10.750194,84.2956,92.408936,38.335533,67.50445,63.126526,17.604261,71.75566,33.219482,78.34734,78.64106,5.5582056,29.750614,36.15441,97.93208,31.03395,81.66774,60.097294,37.899384,70.416405,65.30371,47.08611,93.94893,62.611393,36.58877,67.877525,42.47124,80.15151,87.129395,25.51439,59.15222,72.12228,18.056198,5.923352,84.76225,43.730465,92.6783,80.469574,40.413113,87.143845,88.54743,86.9296,63.034756,64.761635,73.50022,38.110775,10.084395,87.54948,98.21652,55.67107,38.17613,82.54823,88.43329,55.348694,85.08844,17.212418,37.224598,41.29947,23.662487,63.089108,44.653072,68.24844,5.5302434,42.470055,17.804697,37.395218,81.45307,40.290257,25.085236,62.099785,22.019775,6.404019,48.508293,39.821564,55.017845,55.9851,89.14628,48.796646,21.588884,74.08058,74.06594,52.70091,45.224842,39.31149,10.273637,63.523506,8.4356165,61.819992,16.352007,42.258896,9.522208,97.6483,19.859488,9.054378,53.272247,5.1396503,14.422002,61.58109,23.343517,73.056274,15.06165,70.306946,75.330055,68.47866,66.05089,22.92808,66.608444,22.760681,25.387901,28.545305,34.100483,95.055504,69.00862,79.07084,38.194016,13.817191,62.8983,5.1600404,87.243355,43.68602,10.7470875,48.221,23.680637,74.03839,3.2903233,41.198357,29.450014,94.847694,12.067159,39.5358,20.419214,30.206741,95.69576,97.44203,34.002365,34.372677,55.369514,70.714645,11.165073,44.89433,56.630016,7.630404,27.544403,0.8300999,65.611404,92.43922,96.05487,17.288065,4.4820204,98.83127,32.97508,31.869978,61.291428,50.625057,40.096943,44.318977,80.1802,48.12823,28.526815,31.757483,96.39137,52.57431,81.40887,42.959225,28.062399,14.479124,25.318827,74.83037,79.05159,29.47748,75.79216,45.6444,72.218346,28.3761,35.219666,23.10375,43.756424,87.03528,8.3946905,68.904564,47.746807,9.237201,44.211212,33.20218,33.732075,96.963615,93.503525,55.68387,16.869242,10.026012,20.673508,93.27022,23.708971,10.354926,94.26959,64.642715,4.360195,1.4704442,35.53397,19.527254,44.770798,36.882027,57.65193,42.851925,59.797134,0.8414851,86.059326,15.087166,96.76649,5.8039093,97.524605,62.13291,22.941116,71.3128,47.371666,43.89091,85.38477,24.592737,79.876045,98.54858,80.53294,66.71231,76.308266,99.23352,78.456314,67.45524,11.132559,58.112568,71.81973,23.19656,86.37552,96.04992,26.382008,79.023766,88.66196,15.204635,84.60386,44.20276,84.823166,98.34513,64.59979,42.36608,36.31697,18.491364,50.465973,56.542267,61.240185,54.33156,25.345755,69.274315,1.1994414,81.77287,68.04565,45.76526,46.85967,74.73585,46.455173,34.969387,7.2159824,91.96939,97.6567,62.810886,38.120415,97.38209,16.637964,59.90702,23.788279,97.54451,65.729675,79.23148,72.08319,22.345398,78.01365,84.80438,5.751784,22.990929,60.085903,45.602962,47.843784,21.2669,76.81998,46.749287,7.317466,71.42888,86.40896,75.77019,53.334362,5.588688,58.024284,79.1331,54.1176,51.530556,79.57883,11.683965,18.120615,88.95384,71.04547,41.93318,17.993103,83.86489,69.288055,37.119774,32.48317,58.784252,83.84588,97.764,72.146385,17.36963,66.26143,36.56881,53.680042,70.5124,63.796173,22.346533,33.35919,31.822626,76.697426,25.896494,90.510956,33.615093,59.226204,29.761932,52.179985,73.20554,47.592495,0.76665306,44.309124,22.55038,92.08667,78.85845,1.7814355,3.6829386,19.849243,72.348434,77.83087,30.86292,64.41909,52.028717,28.278828,18.724197,56.892376,91.33602,79.020935,23.761005,50.250465,22.619617,81.301445,22.19055,43.152775,91.61897,81.22264,71.52952,73.740265,91.96475,44.59838,90.461975,33.215626,7.979256,45.094513,19.96854,81.31249,48.14051,69.69155,52.222675,86.989456,83.14493,81.316,81.68362,82.33054,77.9513,52.236397,96.61254,61.911484,98.81277,98.659805,45.648937,70.16478,37.674915,28.26407,17.727753,45.502262,6.2827682,9.834374,46.091072,15.431422,72.7706,45.54666,83.33547,10.006686,70.65659,18.690676,16.119745,44.29009,73.517845,98.63043,90.31425,99.92186,97.26588,82.48329,80.98191,31.084549,55.23532,95.52676,79.92894,54.64926,71.319855,66.65927,3.5770419,18.296192,52.852398,48.040108,7.386517,36.485714,22.868149,46.30055,41.933117,91.71908,8.412465,78.740364,62.611122,87.16173,50.31125,6.7171035,73.48478,29.68947,59.974014,58.047905,73.4021,94.544525,55.566357,68.14796,77.28351,82.08306,92.77764,27.763165,72.109856,71.454475,53.5689,12.753679,80.19828,11.964538,24.587532,15.7991905,49.74734,57.998783,28.747856,65.45907,55.507294,68.42,86.101776,36.986053,38.331047,1.0873473,22.161793,98.78542,22.157316,83.5389,60.964977,69.755844,34.196476,44.51575,97.63727,21.23833,44.901127,26.689089,33.31343,66.245514,31.317698,54.03627,18.718855,98.54022,80.97866,69.37659,90.89829,15.561809,63.140995,4.2258115,29.43555,25.1378,54.033527,85.90896,82.786964,25.220324,54.006744,33.41732,66.189705,6.484789,30.990177,47.647823,3.4263756,38.221825,11.674372,35.014812,68.646774,27.530682,13.21411,88.468925,51.904037,25.914331,8.231299,48.588394,65.16701,84.063705,36.48031,22.480402,42.37486,62.917957,77.41691,46.371727,24.993454,72.34458,71.391556,77.41536,69.50386,75.20871,66.92949,78.43721,68.661064,11.793521,75.72868,4.5097637,45.72348,10.365903,17.978323,27.149595,93.83408,11.8651,50.773323,14.387688,8.593973,62.33941,24.20634,34.400684,60.301334,34.391777,96.194374,68.77312,13.331426,8.535536,88.38654,90.237595,14.621456,99.148445,58.86875,26.95619,4.1274242,56.934326,72.41607,81.1453,19.116013,59.66542,85.76991,94.56716,3.0444584,54.11754,8.234788,4.737854,5.063569,51.31796,25.337496,64.36688,90.24677,72.89022,28.06183,1.042576,12.985256,25.250763,42.865765,77.18791,9.987577,49.8349,49.530884,85.59059,36.552006,39.602516,53.97534,75.65713,26.129875,67.345764,74.67334,78.2115,46.32466,96.2603,2.6795092,82.2495,99.540794,25.532104,30.578753,42.926006,4.948912,74.13523,27.424608,3.153797,52.71341,22.796762,81.916466,78.30538,50.373566,85.02184,62.611744,48.9064,32.228676,15.145837,17.539267,81.98691,72.62578,96.29122,20.037554,70.85596,16.824284,3.3104575,7.304399,9.014712,91.29675,39.913063,48.08596,41.360493,2.2333202,7.2320886,18.759256,93.994705,45.3707,16.701977,42.622913,56.156403,53.65737,95.963776,75.976326,20.693583,19.944815,66.39161,18.13378,27.159204,51.506588,9.194693,69.91982,45.254913,5.3397017,50.22563,43.588543,5.705417,50.404495,88.6626,55.39445,20.574692,86.46602,55.067863,31.728899,29.791006,36.804237,26.841944,86.82718,1.0138752,52.218998,58.20233,72.88576,98.30097,85.03473,10.933432,85.219925,96.75415,23.473284,0.019491421,62.301014,18.224424,63.61482,76.78274,66.51821,51.11,52.589733,84.59319,4.3790097,92.739044,61.424213,18.33365,57.006973,55.767117,94.72574,28.080408,16.395563,85.72841,47.661087,6.4747643,34.88266,38.575752,12.163155,17.374653,69.304276,32.764038,84.19875,72.37907,44.380844,2.1037438,61.378,46.065186,72.74626,34.264435,54.109924,95.63311,64.856544,43.035835,78.53599,27.645346,43.982643,39.387653,58.00838,0.65503496,87.21956,42.1573,12.320076,92.684525,85.69846,99.69271,88.216,80.87824,7.9414835,86.76912,80.69362,82.4648,28.594557,76.10497,38.73828,81.450516,53.259636,50.603874,15.798532,96.64181,61.0641,41.793644,43.687748,57.041744,37.40449,4.0003314,40.063972,88.592964,50.348396,88.97139,72.64548,37.042957,49.59153,86.872154,93.89976,42.848484,77.71881,30.392332,38.302444,91.121025,88.09107,42.10896,22.677877,0.46728066,11.378374,71.10546,98.579636,14.3287735,38.96295,71.77525,47.449085,90.90437,6.823648,88.21808,99.362915,9.545639,89.14844,39.07002,49.23939,11.296724,74.41242,91.081436,9.6443615,87.922104,4.758623,94.34084,53.695023,86.3968,4.657942,7.31814,71.59462,38.54364,2.357948,64.03474,35.14144,30.303661,89.695,71.9209,13.761137,33.238667,84.76313,42.53933,29.038424,94.87448,28.172169,85.79498,33.09537,84.197464,86.458466,92.92227,2.1506336,46.23679,28.542665,6.057751,10.723949,2.4814758,61.859562,84.05136,42.50751,11.228632,25.284824,3.4758406,0.7025987,53.133198,65.50625,6.3212514,42.290604,80.43525,22.95474,9.102134,64.59132,78.35013,11.856973,62.04999,98.25609,43.013767,10.667853,84.49052,80.09425,91.81008,1.269663,34.822044,45.950695,29.776562,10.340162,5.363928,81.41651,2.0542529,1.2992527,83.12443,35.163254,50.19588,14.979778,71.21195,15.892624,2.7174466,7.0120993,20.961597,33.572247,24.756092,45.079754,42.770313,26.907764,35.9534,58.587902,19.622282,65.31344,84.87261,36.468052,36.578323,42.763622,25.821472,98.9533,7.0286555,14.942557,50.66005,87.585365,90.75777,34.57459,47.406906,55.595993,64.989655,43.766403,66.26644,29.337559,78.83718,82.49445,24.774353,9.54439,16.464113,13.378796,0.6566281,75.21447,19.559877,55.666622,93.60645,15.152048,34.121483,19.94906,42.786007,37.505787,29.714323,35.569477,90.60544,29.178808,79.57162,32.14062,21.335686,83.95843,18.677933,47.334755,32.14403,93.44145,88.00051,53.905437,31.63956,75.6352,23.42615,7.666383,70.84399,13.256891,8.881554,82.1445,50.934612,53.49189,99.92975,36.830296,41.155544,13.550403,21.274134,97.91578,14.102513,96.00407,57.067722,8.49526,41.223305,84.446625,12.038716,51.544888,88.95978,15.726897,74.25246,13.675182,55.097233,32.49493,59.65929,93.44768,82.225426,46.24871,12.632404,33.333824,72.77329,29.655252,87.428024,19.159056,29.623857,26.487938,21.558304,40.448395,13.969681,92.2951,81.95164,25.845972,71.120056,82.55043,63.931725,58.250645,72.53796,17.142416,81.3529,47.194294,44.875423,28.594362,68.130325,38.91221,6.0644755,24.68502,87.50915,6.153234,89.09622,49.784054,23.40242,69.429,51.122116,33.718605,30.41805,77.26847,65.37595,77.091484,24.755281,82.155,47.244186,35.643085,42.074913,95.011375,62.571297,41.706905,24.15805,75.01692,99.43424,99.64374,43.455246,20.467758,98.81937,20.171215,8.042713,1.3011465,90.057556,2.3971467,49.737232,28.115112,93.58778,77.636055,0.5009788,43.80543,64.999,11.537181,46.14126,51.541454,84.6688,12.784309,52.6698,13.9749,89.13623,43.844265,50.727898,99.759605,4.2659693,13.260582,83.57606,15.723768,38.701553,57.162853,62.548397,96.76915,43.841045,58.393417,82.04959,78.56085,4.825107,63.06231,81.687256,87.49797,3.4794946,58.77812,89.17949,92.058044,5.6656837,68.5971,81.12163,64.70367,81.99196,51.44572,44.067448,40.954853,36.82533,30.165583,86.67136,21.356438,20.603197,56.304752,35.460922,54.603855,28.294455,86.9288,46.13551,9.337644,6.320934,82.363464,33.581287,19.116953,63.726254,49.43402,25.138222,64.463295,86.19592,95.0953,9.9763565,86.80368,96.27131,3.8443818,74.34645,83.58123,22.935629,81.06956,30.149998,34.847702,28.400513,52.332436,67.09642,4.0396757,65.66109,7.404802,63.572388,59.335598,55.72349,18.72292,26.032974,34.63008,74.496025,67.68779,37.369003,22.483992,90.00311,49.540115,13.41033,21.18181,43.45914,5.9092736,29.564825,6.764988,88.01197,43.18482,19.375875,90.418594,86.50989,32.493073,46.36221,22.70981,61.69609,13.563161,83.84221,79.49066,60.787014,99.884384,80.109024,6.8875637,73.50537,29.27471,5.47893,58.9546,2.39981,99.63359,32.599754,96.88847,14.635555,58.254826,34.250835,97.22009,17.728848,54.314728,14.725096,22.020443,51.78334,15.566745,34.77564,26.76673,95.27564,3.9734924,84.75433,13.926531,38.121796,61.93484,70.588165,91.2315,71.05017,32.49716,91.482574,19.234924,43.621906,58.752773,17.466223,10.343612,95.22039,55.110558,90.79621,70.175354,3.9980469,73.472336,7.8470516,30.787102,46.57577,35.114216,58.364594,96.56309,99.50712,13.987561,48.526875,24.909973,87.45813,49.062687,28.81676,60.797302,94.671,33.100113,64.15052,91.34997,33.39405,16.793737,36.18708,46.919895,6.3117495,77.85413,56.49398,2.5129502,42.015976,99.58464,47.406605,72.58133,72.19048,79.625916,57.461033,42.5878,67.66204,74.97341,22.672915,62.017048,62.85194,37.729656,55.3382,28.53918,25.141855,37.678032,89.066895,79.63537,6.1261,17.047567,64.62006,37.262203,26.40687,69.56637,99.12768,63.724136,4.2668815,75.4746,47.1278,72.32136,76.43317,19.676153,84.288445,19.638945,12.729547,30.342566,92.65304,83.99493,56.63302,47.75792,10.512264,5.6036377,78.39481,69.63714,52.095306,33.994392,29.647188,95.51419,63.319637,63.234043,54.571243,42.96442,29.254934,82.81662,36.33733,7.5660725,68.74479,60.401806,23.064209,64.055305,25.724821,36.459606,79.95741,97.007935,46.629177,37.32613,51.520668,68.467125,92.07613,59.254692,14.677219,11.266394,30.567877,93.53421,35.298206,61.80753,74.182686,5.530318,25.550716,52.442665,59.45623,98.48032,91.67382,72.355835,81.09893,37.3627,55.28298,43.829735,55.110287,58.68996,14.390258,62.964756,71.3557,30.782015,81.320465,16.53942,94.810104,70.06154,38.947674,41.880238,26.249763,41.695713,27.521996,71.9862,71.01466,47.424496,24.333353,71.1431,30.002182,4.846351,3.5844724,34.20688,62.645435,47.543114,85.14994,80.79301,97.91925,11.334889,59.960472,33.239914,83.70416,71.54084,38.038513,64.841995,73.1943,40.817253,35.28221,31.554707,72.02031,76.39859,59.79598,68.7619,49.439877,21.239086,90.679565,17.428478,34.79357,42.47666,65.0727,46.91183,82.70182,44.086514,34.618294,52.05903,98.54081,80.9977,3.9888983,37.852894,59.47691,17.480246,18.106897,17.384188,14.480607,47.04331,79.87777,7.09967,32.319927,53.784023,74.390945,27.6184,75.087006,2.4251595,20.560917,38.386597,75.95579,27.108706,33.918232,95.72723,9.257775,89.312386,95.84025,2.9820342,17.400452,18.546736,51.01357,15.50979,40.371986,91.835815,43.721066,43.190285,32.122444,56.711308,19.571573,1.5156837,44.721306,9.629304,97.650406,42.41953,3.7833033,66.136086,61.073307,85.39821,29.64131,21.701004,53.255013,19.684044,90.584564,27.736784,82.162285,37.435966,13.9959955,5.148463,49.69636,38.19367,90.99024,36.508884,35.510574,75.179214,10.767288,76.21694,15.022036,54.77564,64.30485,46.069073,14.401882,68.405174,51.599815,22.7015,51.422775,41.222683,42.501907,57.52187,2.0902472,98.19607,44.397785,43.519485,2.0980585,2.2949626,65.59472,12.05827,59.3811,20.955755,94.753365,81.130356,46.950806,83.8687,19.708933,31.972929,46.76113,91.55892,58.1525,6.784399,96.50492,12.419225,79.04131,52.42992,33.404297,98.72535,74.03801,97.404274,63.709576,22.955769,37.59318,97.81899,84.47786,33.517387,53.229137,51.972214,28.01024,47.835724,20.883827,26.47351,0.6443361,84.31628,32.539284,7.352431,16.8067,8.632096,79.52602,8.079652,18.586164,4.4232783,49.61037,85.95097,83.751465,45.49466,55.49807,97.21977,2.1927104,57.53564,2.997935,77.490685,23.341766,1.4170853,82.09863,34.042976,48.603737,71.99693,62.56916,38.78762,35.255825,21.155369,64.68496,18.752836,9.526413,14.415346,1.5138074,11.0347595,60.12029,71.779366,31.431768,64.91749,30.951843,45.285057,10.459712,4.519249,90.52266,6.127584,66.60126,75.87262,31.91385,3.1379545,85.81162,81.83891,2.6966043,33.11408,14.76512,3.2715771,74.73517,82.447266,93.99182,28.000343,11.179894,35.9889,49.49899,13.018011,37.412846,31.555933,28.84424,85.498764,79.94877,46.726517,59.464375,76.139656,8.741895,57.23409,89.25131,99.36583,69.00224,7.3471684,77.37385,36.147717,90.617,41.836975,47.01965,80.41741,33.890583,79.00699,41.64653,31.959198,74.57281,62.358734,94.98228,3.4915714,11.909356,20.13505,77.18426,31.985306,89.000374,72.77035,76.34728,62.46153,48.277775,51.011787,20.893673,90.22255,61.512596,44.51261,81.30619,49.874447,61.95437,43.9887,3.406321,81.07205,70.948845,28.445627,93.772675,89.55818,78.36844,92.24991,14.2264805,65.43959,59.920185,94.844,21.897799,25.263506,1.4050486,86.525246,12.057784,71.30213,63.107693,73.22573,43.512897,31.472824,25.539478,36.992638,82.352974,26.659,30.119673,53.782593,11.022797,4.133621,57.330322,32.521484,55.278008,7.9217653,26.35578,74.772156,41.170795,5.960553,38.13989,64.34187,37.378555,64.71249,76.5917,42.237408,97.869225,73.01256,48.34053,94.329475,4.92671,61.157593,65.13407,60.213535,59.52579,62.203693,6.5095625,49.386646,24.443512,43.109085,26.719233,62.50703,60.836285,26.984644,14.772096,50.045998,25.140717,53.601738,86.57051,76.435455,94.75509,51.50094,25.550432,72.965004,13.126741,51.38976,35.70607,69.74133,96.62012,49.528786,0.023762036,85.423874,5.2745695,84.04122,45.80242,90.08535,60.062077,68.253044,51.923695,3.7816348,75.82071,48.793034,78.305214,79.45686,85.75206,90.67805,77.030205,65.073814,32.55326,96.4544,42.0253,60.8562,65.840935,67.84367,22.488892,52.103214,34.632187,70.298676,52.00662,63.35638,4.4048715,7.792878,20.09134,11.429312,57.601765,47.634163,36.84419,45.701923,50.45585,73.809006,27.656977,26.51579,50.780697,45.940983,61.314606,44.49957,77.01191,60.765945,43.783592,89.81895,16.330555,78.46537,86.3344,71.52431,92.05705,25.867525,56.11516,17.879995,51.27418,78.07117,69.75376,39.18122,86.08808,73.538414,19.157125,85.025185,64.81759,61.988922,44.994133,24.615448,52.519146,52.89878,21.198542,86.99727,37.341595,50.570652,9.996009,0.047284305,71.07458,10.09222,73.88903,4.316726,13.348658,94.745674,76.706345,1.3079925,61.229298,92.62672,80.16994,86.81488,65.40524,84.732376,37.297653,79.329765,87.075676,26.985132,44.819733,58.857006,95.03673,46.5232,3.1276343,74.69233,16.228424,94.21538,10.008434,26.731174,76.6932,82.77588,38.208252,21.323471,69.846115,12.680754,10.43501,79.894684,43.593967,7.0037236,2.961175,77.306656,47.142857,99.39156,66.02419,85.39168,21.093622,52.59311,48.468163,67.68132,82.18711,56.809025,17.74891,2.5023499,78.18589,17.331076,61.064167,22.67303,69.29379,31.964447,76.96068,5.1441274,95.11237,8.312273,93.662155,3.6015975,8.1151085,68.09868,83.93369,23.97642,93.08177,36.297096,38.5634,60.55142,40.209778,78.05504,55.31482,13.005552,43.323357,81.386986,84.59647,4.0884476,64.5765,63.182774,35.90438,65.328156,57.799603,82.89084,85.0671,23.898964,46.686974,5.4241347,95.84761,48.50301,84.63615,33.904102,31.780128,17.147697,44.913483,54.922085,20.877352,89.50188,22.784197,99.14596,77.09036,53.019135,43.542088,38.391594,92.39005,4.0610957,91.60979,46.864273,76.45985,23.669918,96.13034,1.330597,21.42108,12.518923,28.103003,25.583239,92.83845,3.3912163,94.74133,47.32253,13.963161,88.64063,92.24941,71.47437,85.52413,92.16921,29.948833,43.11061,7.8626676,92.76334,4.434194,76.33746,79.31001,33.35147,52.582832,67.12445,34.52339,2.3097494,25.225788,12.87161,43.13551,52.727936,90.500755,24.373001,28.294172,4.138618,83.76405,68.52524,5.2836394,94.471565,2.4894617,37.52865,5.169131,5.9004946,58.96126,73.40004,68.53413,75.56461,17.922281,6.959555,26.677286,0.32627246,52.94549,88.48965,13.048209,79.42931,35.96989,86.56792,37.0767,7.4987946,64.017494,26.925228,9.902541,27.948967,42.687225,53.62334,31.424997,63.036854,7.7027526,28.604904,98.13582,78.13287,8.849562,54.286186,43.20479,19.138227,92.87876,91.65666,15.7474985,67.5036,92.948074,39.07356,38.769238,24.499235,44.910336,16.735945,37.154743,81.59833,65.45305,37.772404,94.70044,91.25778,13.896462,52.561386,36.97368,77.25323,47.367844,66.77853,99.606186,55.467922,83.491615,5.6882114,57.051254,10.922707,90.67614,37.195217,45.950527,38.675728,41.53649,86.485306,62.913452,71.991196,34.93591,54.709217,63.51058,75.3044,44.210392,86.40669,12.097403,80.3457,52.23589,11.114704,15.891892,95.35818,81.135155,80.23268,25.200935,91.5682,11.880388,98.597946,94.76075,18.333225,20.228775,58.092377,11.564926,20.128252,40.322872,92.38209,29.392702,21.11158,25.051645,27.619041,48.266335,86.15842,90.18804,62.309353,10.180951,34.501183,65.93309,88.51407,68.55613,4.6596675,79.1204,67.41286,35.102158,61.33527,66.62777,16.087973,60.946026,87.74346,92.186646,84.11402,99.018326,22.12651,78.041855,97.29399,39.4972,38.141254,37.402416,50.541924,95.331,33.34107,32.429256,81.0121,60.646454,68.021996,92.46944,31.898966,6.535431,7.300966,18.34961,45.4293,62.557144,69.527275,5.840452,99.01485,28.538353,85.29252,41.81824,50.979534,95.425705,94.45583,13.633141,19.56439,34.735897,97.602806,53.08944,81.59975,54.988422,3.820089,30.79467,21.26659,20.061699,72.194176,3.1926885,17.896479,13.387825,59.49798,84.87943,92.08196,33.353104,6.5298376,93.307495,57.79008,19.253258,24.056057,71.77685,4.7251897,39.497505,47.390663,83.180176,26.351059,99.07605,60.29616,27.062273,93.19984,94.50673,76.065704,77.287575,6.4889474,80.25746,92.269485,33.100475,1.4273518,59.270977,0.8625549,14.729599,91.49442,42.32794,80.59115,60.85843,18.750322,65.30645,35.7892,81.5782,63.9728,94.066986,86.57057,96.483116,61.469334,84.323135,74.95379,76.4852,33.730854,1.276186,64.99689,84.15828,27.194603,89.34583,9.838817,34.029083,49.207176,53.61582,61.46016,62.379227,81.55282,75.667175,26.08095,72.20782,54.022144,67.60007,80.33908,58.331165,23.043442,54.775646,15.673673,43.4579,85.548035,66.48702,22.089617,15.848193,12.20223,90.60225,90.93975,3.5938053,40.726162,99.681564,49.796795,77.01877,35.341194,29.217295,72.515915,74.52674,78.2686,32.14022,62.104877,93.597435,49.36648,86.9543,35.72537,68.628204,53.042454,2.9690752,90.33456,30.530186,72.876076,72.98231,1.0251237,16.61527,4.591761,15.816723,67.35449,57.611282,39.068703,76.8806,40.979935,12.910178,26.918995,40.24381,81.91478,61.064148,68.28302,47.89717,95.75818,88.73931,99.46919,8.16634,71.76128,30.629244,51.127937,34.564266,77.30302,19.136087,47.13569,16.429731,41.44302,13.916775,38.210243,11.463494,72.60209,70.798874,20.654945,0.49493623,47.69104,1.1968952,9.199756,99.65289,23.260092,28.199436,71.18061,46.73283,0.4905849,9.227902,79.96852,97.78827,97.01125,67.57024,55.293606,35.165768,21.57935,12.417739,62.0253,13.939586,42.26557,81.23759,72.61897,54.440548,49.71953,38.431,47.40788,48.19677,1.9958841,84.7284,15.748672,94.162315,41.514683,49.71362,47.784966,68.18886,23.98829,17.432375,11.235117,41.98103,98.40695,56.445618,5.987811,23.994015,23.674175,39.96572,55.202232,80.86606,90.32369,12.570521,0.31227586,60.214504,1.423194,17.082506,76.46945,53.058918,72.02035,81.01799,67.47082,76.99779,92.54615,79.28398,50.670162,15.431446,99.16542,27.234259,78.1398,69.22182,17.32956],"x":[44.276737233357856,67.56398300952029,3.252539760474671,25.14278022539077,6.8620708897896066,37.46706124513987,32.34642559763312,92.31148727289944,58.570181212031414,29.016814269460312,2.7798660493013494,6.584406442550684,93.60288497335564,87.49274916803635,36.97046262494982,95.71061933951229,33.79042416175015,89.09245360880678,94.07676032804622,20.161444864084764,61.58907735109508,8.65514071222302,58.76531340720982,3.8802064470238595,82.26614118759636,14.491516184949871,90.00280512587011,11.248247092411267,54.202568843380426,54.95068139858187,23.927447008265545,43.4608178324026,28.22428595026424,41.54996620057857,79.1145468157752,61.04548481616816,76.57602041903544,19.535765170715546,25.41153708479058,41.52713064062642,36.40484379498744,81.38263189030714,56.41487043639057,8.059369882450685,83.34826630910214,84.87512861977349,56.89939074214316,16.64314716295464,4.1894011379502105,31.83132530504238,17.775597610259098,1.974895884280048,17.413561275932942,75.66150088915235,48.752546223544854,45.94073552590552,52.71855734700963,57.196908694577594,17.65040023195512,83.35807411577798,60.24356616549992,99.57950686742106,40.23462374781618,9.370809104865707,62.874665650818464,0.4266141340805607,14.143676185451415,93.39958881788837,47.982870987042716,38.884140817972956,58.987611152899625,43.12966778603678,25.05511868733382,90.49247321111376,8.994247156669644,14.973241493878442,76.51122391125654,79.49293824954098,99.46665765110092,2.1760689919064435,86.47423657152312,43.55313821349747,91.33381403255623,39.7136471299748,79.21366187770425,95.2933474816411,55.05378376759522,24.468938879322234,93.0502559215284,6.897149323632634,37.97996594068464,36.58250047460846,29.322582475636416,9.110997464965632,82.42604935492277,80.78275591086539,50.30576654949852,35.21364634745212,71.95297210199217,77.03445929293504,76.08497315875158,33.01197491624156,87.6418873097024,34.95944990756139,94.69244425656042,21.506460446072495,62.899970337242316,12.514711798873101,88.51542554712229,90.43630303921525,1.6859735117490837,3.724214092317346,45.66418352873185,4.689514914779025,51.3698303963443,37.541984304199005,56.7535473535596,35.122457721099835,4.199012939191049,35.753199542006776,80.28298954775646,98.51502587884795,49.03148793371296,33.64324876031519,89.73404885083428,67.27886336662414,75.60888310644253,27.251082770353985,32.54925829342463,81.4531075636564,88.88885355213564,84.82296258783451,76.27084638701986,76.98880428085236,45.56081321396226,56.00804230737706,54.788917843913275,75.37168405447711,64.06502885691592,65.06765930257409,90.10329279033715,43.053406324225385,42.5823472127616,60.39453217095455,67.63472801514109,8.645706836820377,3.847359812080642,49.69748780119774,47.25914644795882,99.22787089120115,20.166019597814167,37.26281671594608,26.826057905184687,10.866227419046592,75.71542211795924,95.82232371651946,34.821928665516324,10.618236326923302,46.868743665728886,42.20809390262542,23.869289708215323,8.867371071186515,28.772713611611834,82.67501942872624,9.43275207062203,56.158994780950486,6.9678444452455635,85.9408699848216,22.364327618878598,40.733783507034204,67.2818455844377,46.40739497489227,70.44371985381346,98.4221125511319,59.21790219041634,65.98513464449077,89.90465023119346,85.20122683721318,75.09786289005818,45.64419359894655,80.05518967396003,42.606410863832046,90.73532737299999,62.75485915484118,4.649666750541015,3.725202215526646,62.95839074949886,1.69165318191824,65.702832248884,10.37295614934417,9.54864189938769,9.99512414317869,91.67780777976307,12.983264055819532,33.41100836447082,84.48802716829512,94.84531420834008,86.6700443460894,2.107570656479929,6.424144877416749,47.50878277216718,56.46039343788038,12.17428047054917,53.86385807371394,44.829942686832446,95.8722008163253,80.71924398784475,25.795195561314987,10.968183542516396,38.992205260605786,87.75532951823264,78.38373528265069,12.211862183808508,5.1549011219690355,20.91931471302413,31.946019223607625,32.86805560294046,74.17664200332446,53.63825450763975,78.13032551574223,67.08858074403646,10.320254975730847,14.725768099941916,57.65008000394871,97.31136113197446,60.85353971242798,8.238562514704695,12.91444784416209,73.7108171618788,92.3892651281282,58.494055105950416,96.18510738056489,33.22891454266179,48.39635298332521,20.284175671875605,55.063873059532334,97.07564241122107,64.19780163071559,66.9356276873911,57.939942062747996,90.1978070467297,15.82584230947106,33.702966291109085,1.5409632698818676,48.977824931005465,14.70875077719156,0.8845989542093147,31.45218740132476,9.818201535135051,78.3007457290401,19.43459380734309,71.73793872257284,79.3170647328566,33.09037351776443,77.68634816631278,52.26576008994116,28.963368835166204,67.85812625630095,11.506549057639004,78.20202088191868,36.973493870713355,24.370823951814025,15.223779473560505,87.10144753879987,35.553791657873,78.77349524935178,99.81857361513259,19.401426787012067,72.5459821323665,47.96420503867699,97.27488537732916,78.37119354331804,86.67196691100575,93.40077987994053,16.560446826439488,90.6716078066609,8.877576533734743,75.3488637771283,36.04880643650007,46.96208877525626,12.282020729207622,36.39669052617457,11.513869076537775,48.3094061991093,59.44013119354841,95.99817695253495,85.41600092746737,76.99110030951917,25.223844361561852,99.92859783030437,97.6029128153461,7.645341783668003,9.597567949900753,61.87999501568249,18.02549945784555,92.0543656621549,88.61933276253049,36.04391542473239,34.99216080995245,55.56729538695845,70.63885168666165,25.680786126747932,95.17652324218056,86.15515029246245,26.662811495674678,39.045869036976285,41.362340719699375,57.47008931902412,14.376722205722391,80.49158011617554,94.29861354917053,18.1992595493485,65.91458961515883,31.219753653812198,64.71212372446642,28.645973009761693,82.46655266152193,34.270125782355485,80.00456843108798,83.34889045838563,77.46411198736958,49.89896473266997,20.421774673494642,76.48269472306005,7.9631724435845985,59.87181493723025,17.74938300840263,16.89979064268816,20.43211625222411,68.67832711492262,34.986844636837475,30.890969586487284,15.238996189725896,37.26920673066656,20.326958856654908,17.668896275600932,13.71056433749076,55.8154901855859,90.0252614650907,41.76282343292043,1.6791642472383073,29.386541737039707,90.6877718046399,35.441113188032624,68.82845714769435,74.63567244528524,58.13213552022708,22.81566544580993,97.13590179536794,43.446598791264556,77.59353852160235,41.44883080731193,86.27839484309791,28.66071474085673,22.001276262583957,71.39085894974218,86.76541591465144,32.13999525427648,34.03220414251836,59.485758523225904,79.60208604588523,66.79903843686144,63.66055406841766,52.28444227948865,89.15374483100351,57.56908794576334,30.21874053998478,80.75476886187913,95.49597345457211,21.506196828518252,91.81918739047148,32.8502830542975,45.74532072959696,78.64977759761375,62.75000555167076,63.47018822054793,29.198284772685344,2.259683157716219,33.814083871047316,22.360115605222653,42.77141238766428,53.03443107645328,44.548332669445266,31.197352964427218,40.41881781684449,55.06365708980256,1.445149057652284,53.69018689370333,2.504684365135146,96.90489628393789,80.1098974909288,68.51801805714642,74.12402086993836,18.474279837688144,0.26829656587527007,63.711957916313935,43.948898719358596,81.61921679050108,45.99157527729599,73.81268602773291,42.25495927938704,97.24164247631994,37.99058979715139,31.029512984528395,8.752436170291789,27.848203088259915,32.41541260962262,19.54002856671956,57.4745321945896,95.98734217173939,6.125706956416743,85.79586673980282,59.95301096062108,71.3112049846481,8.022589053130869,11.563807877239107,9.516636549943325,64.10449079795464,5.258278547815721,78.02678938435524,99.07745245967789,46.6952857986917,27.988343071498978,83.97325335507979,6.414106044428303,79.53485476112019,67.66664300845441,81.43061827222469,49.37544626030152,76.91310197906623,41.66459043890596,88.66624378236371,51.38640140133235,68.5298155612724,81.69265109849513,46.48206261931575,84.33806177194185,48.9746728688365,33.5594457170769,86.67924044613984,38.09418862856554,9.025130166447582,35.90220370151299,13.505265710147029,3.531419531424307,11.380202676178698,33.54538262866622,13.303534301403609,61.20377128069914,56.667999897923394,24.268839786706266,39.50580076133817,1.4497279600611424,19.47247228855682,22.31377590877779,87.45325686021621,31.42771992674437,16.026229732683074,73.955495230917,12.304867891778592,56.810993604518565,93.83290367431488,61.90723224493668,77.53924938623436,39.56815607952458,81.51875172824944,41.899111547350884,1.694650695885247,87.53158882440283,47.45925410990503,21.99515664145011,33.90743933787007,73.24741396503349,95.88747200914543,22.31310711824713,47.482637696783804,47.77219959620079,22.55684487960714,9.93467363159386,83.5290104972382,69.00165743253706,66.26956682649576,75.90338707149417,37.154814229337305,54.4243220075496,49.74650980116695,49.840840232456365,56.82643497242857,19.885964392181933,22.36871428386442,5.164198681319587,2.4285824164380854,19.645660968339563,59.942315232066775,83.36692786779749,33.810873338349914,30.34215043143471,53.46969279874237,89.54272940127865,12.314467097699211,87.01144328175931,72.82365929776697,33.958491122679256,22.61553105657668,70.76700693577891,38.625169433356824,0.8573255241086097,64.30454789060659,19.0177524165422,27.774105638232484,93.941931733387,48.68695377930502,40.290486478122624,31.334489712061043,3.5450035261532675,77.07339155572174,80.89036393793046,89.68907096277967,36.161476482313674,96.90653429926424,74.54045219168962,65.42023767508302,16.579315115636607,89.56088444100307,28.605827349515533,29.57399021240835,84.03305656401133,96.68330180014236,79.04002471288342,46.79406710596176,91.80275151833527,15.225992261061371,25.13013004917275,24.13086333810931,45.114142327966036,62.73593160596387,1.0784356441824183,57.36111158085778,19.551633703656755,88.1286978592103,35.31843855804332,42.375102259834364,98.39648327646114,11.890357006630358,23.056472132838778,80.76205080164831,65.2870356161971,69.7732201548002,80.17549541998459,40.73475618362724,3.4281864959609387,74.16854680944867,74.18465962588674,84.47171722785862,29.479849783268776,16.19960850480068,28.11751234922053,84.53616036892313,18.097711261616432,87.62113185070866,72.20085460816223,50.551802688267436,87.15788380612508,3.7451471226320865,45.05034247631746,66.54898558028235,91.42403420012737,42.95674582886754,39.34950023138245,70.00434458032971,68.50631897589435,0.04475667632700686,59.037381178922644,6.348681524666255,86.89484168734455,69.99145391433584,58.10270564364418,98.17120624922275,20.30585328137996,37.4803817696738,72.43501134225735,30.977310973220007,85.34920011929145,32.93661836178094,15.028403753962671,97.3028388761817,69.93432680863825,71.35607691820543,41.605737515691665,66.01853242481214,87.33975644652932,73.13232445236196,59.475310974624364,43.35750559804148,58.433799664881,31.904398612330642,53.47501331530171,21.449504931484007,67.31052524509862,8.433500088841562,69.74299752223908,76.86698453874182,17.09633128090392,71.53147923789997,81.31154318810253,55.148660118468975,60.21673593936519,24.758161052779748,47.997757972656544,40.1804087581219,77.65386594095453,7.6836858574233835,61.83666989313797,16.822652165760456,54.71299425702198,47.91895604000713,34.795421112634195,35.200079003322195,87.713880463498,87.39455086811834,27.2290473769336,33.879176559716996,9.145498813035013,45.40089427617057,4.204292462960679,51.14052779135666,1.9316964244903478,99.93643045944034,45.123289172695856,6.635661415037863,73.19653087164467,29.708001645426773,43.20701531752819,48.21620292993164,69.30206861133216,34.92414455829926,4.894063185538489,98.03466370595004,83.85197859259162,30.008793681571177,29.198498105872694,96.27236847977578,94.31916433549256,59.145362657624304,81.27781615645925,56.72062515397718,48.30816505397959,8.697046002938125,65.69208264124966,7.994203851652648,82.83526909189649,63.070102580156664,62.43925353327906,50.024021006342004,75.42674619242942,31.193614619696476,83.79801833244122,8.661294965490008,68.56828833928239,96.87047293835062,62.10267761413382,63.209836731841065,63.02252078724167,29.50236155019916,89.01995887900883,48.45400120039053,46.66923545301859,70.69727006092431,69.84377141201573,31.026063217755905,23.831274602263587,74.98491931253159,80.67217116732905,35.80422015393414,23.754323730360593,77.10516482909657,64.44540541842814,1.1275239662199232,31.030793128492505,60.609050486106,70.33769569206189,52.92850772439465,66.31547438894593,62.540446061288876,61.451799825020295,81.23724846140995,85.97151580534319,78.22601294031824,97.33831295194773,42.6969298065375,82.81279551837456,64.51933761388511,95.86624240402683,24.779646573331316,49.49620917372777,76.88407018825477,65.63566996086517,33.3414707904887,60.552066786622895,6.7961013921265305,43.16453569564479,4.869239199038766,47.3150266865614,56.38577220680611,12.159739100696033,92.28904431528827,31.677980367077886,82.03240415880077,81.2882704749937,12.894459082135723,42.531845624067586,56.43876592282003,78.72991414900387,4.3755495043232955,8.585637825622427,49.354562290249206,79.04891609046481,61.94133301666279,43.51334884766428,74.77491048493012,76.89098339977627,97.95263640472956,23.318630636293257,84.69771158801616,50.98401340191104,44.37255325206363,13.23018050446061,55.72342183583484,58.86344927564291,34.769866493851495,4.3857751625353885,93.89794975614811,26.798388788335224,65.58035525493464,23.670349154065086,95.64855631728362,73.18710782972629,27.370632714439402,27.995046339783002,1.5952505346045864,74.63350248327542,86.3305958094978,50.25365316480539,27.305172632941645,56.238254080743744,52.64471980460842,89.7864463477377,71.25263594416053,84.98941506926896,45.65211603710876,75.6177245900764,8.311091250587276,28.949668594034307,51.00895218494337,1.0844150685398568,99.46611892331718,40.6232330674414,33.474105108017646,77.52375336808794,32.50526083542946,54.997328770048014,87.02587740584168,87.13848094615432,65.13021726276054,71.57055545721394,68.09210572843733,55.483271252256635,52.596179473387515,95.33797106199452,70.99141473255543,73.62520357113283,80.35011490269466,27.093601139228785,83.95855463046398,93.46015377419106,68.80305138775114,67.51843808310623,43.749558446107095,70.63872166134466,71.61428777559308,60.25395973498993,2.6773344262748022,83.13430333552952,25.929672735843646,78.77764140413788,18.524987352656197,90.04978290840758,0.30563152670349814,41.25970400902988,76.14975154149067,68.37240100101374,0.3617942142220776,18.523804013977006,6.96738856633673,56.09656842251444,52.52884980558781,40.26613573299739,73.48986131588045,39.534544368441885,66.02653386081468,9.23534019503256,13.694704519235968,40.85754391308577,48.21601895776342,98.42125880508387,5.03727857504016,96.78196084073828,27.628309931131046,64.20099792117901,67.49982395900525,88.55747976351432,96.16278864239595,74.34906349083636,24.321861597203352,67.28291261611902,89.84525924970328,56.349337760747744,44.30532482932551,74.33343894749783,73.6298109125738,92.62206806165524,1.6514298169336028,81.42849711373485,96.22538564824244,66.15945438297148,67.92260637380247,69.66708391016127,92.8341424209026,18.133852327534328,96.45899112741309,89.66845404479272,52.01828127633,98.40507677874528,7.131350346723908,21.561738212492877,77.9728938212762,5.295263396036209,67.63745329983392,7.6573241010554405,21.281929700132054,26.107489177003274,70.24136385184465,78.50351200436646,11.313392787816534,48.563047755977315,4.52291371402681,80.50983302915853,83.84648383367835,61.82192772784618,71.66958056254487,87.10496186654917,68.20120242330792,15.878747459434395,68.08688031730011,7.346020654587426,40.63797192590568,76.2126979596591,21.924322818309005,57.31859342306876,64.09108251447657,36.6164974156861,26.310236714005843,65.08295715279151,25.91014380776244,26.5532734268894,58.951927337475226,0.37499914306090565,20.403431672008278,41.27130332859931,95.4480745537123,31.766793609247344,75.6857642641035,79.00570323946674,86.18878000545372,75.44047103918302,94.31980300657047,88.29298455725358,53.848723781060926,20.456967525443893,2.5490017233780526,8.9648462578374,19.158068353419377,20.747740515723134,73.81082428108772,78.83208139545353,86.54587737730326,80.28389000205377,33.08085518173321,37.0732674371573,49.73253904581494,28.4357177389562,52.44496128622179,93.71770988425043,89.77227927545789,7.984021300326994,78.26368392447411,57.98199356857487,80.44697809096334,40.26261412056796,72.48148315902432,63.37587410015546,99.52340062664052,64.1194331434462,61.94619276122676,17.108278380724563,5.124105729706418,78.25633548610502,31.739592208207323,51.925710164355465,24.75611672664644,62.21114828254524,41.24253782760034,71.64304896370732,87.71404273079382,8.745274241153556,9.694221251744949,13.982520816972887,69.54044380389381,86.784940108278,55.7995826049824,74.64237314005914,51.40511305128366,23.94751858138624,73.40050261580276,48.468186176100225,38.72651867321903,72.36613175334719,30.750920594977813,39.779560283601775,10.170561404569723,55.29208328510051,46.41364207767097,39.83578994574586,29.76485980972756,63.684781292526125,32.67647474856567,15.704698130572758,98.03532139422721,86.89403119613262,34.79778941882976,57.131033259177485,65.02657456872205,6.475510013213737,50.721968790943265,73.87625758929845,35.09939999793734,54.25795143272569,47.520884796170435,74.15525706297018,1.3307896297118371,45.22514657223526,0.1723879631372771,26.437135675112334,60.162751621017755,84.9306186982675,9.051497849216883,45.8919618717889,57.03562060438239,7.228503009497789,34.356022585620074,61.01067407574894,60.51153068020065,3.8869538346838484,48.65756664524914,97.06095331335645,20.79673620942637,84.29922307880972,80.20937623226419,52.25730757421464,32.571353090757746,92.14357222794335,7.807888190738765,47.975693207716496,74.04020127626481,82.24908960843945,99.20052618689324,66.71943683693917,35.82693048421211,45.409727963203515,67.54110929871221,65.96143816761088,66.37458308470838,46.81729871933299,3.1063672207504722,73.04965220444042,94.82071440409415,12.613176170957253,79.14159454153994,51.90825605606627,48.11984817438094,54.65250991789804,6.991614428002146,27.10669554732511,98.8094321697536,29.217964326059565,43.713130158124635,31.26525900750785,88.53985680794925,12.609992899206235,66.7540028036434,33.20622984782311,42.95142887946856,89.07425751791962,77.52200826911853,56.44029278063834,83.46839011332237,94.12008870979388,68.26939840092851,6.444430055111483,25.431269874631223,19.57306257060385,81.35057240673649,54.02568024739895,8.925934636322431,46.9538614619106,70.12166131859948,23.163443875998546,17.88606448061756,30.986095989136874,20.336058977061732,69.97080529648971,47.80676479990446,38.52080028536928,80.85274598142834,87.9116145685005,72.86607825490307,19.571185757717878,94.4267646784929,63.882279474668294,10.814923588102399,60.6168187839479,38.57724290978399,17.350387998846905,27.709539472398237,11.380142664961191,89.76117724131456,39.28553430308291,82.55234314723734,57.619453248013166,62.23567795328088,78.37760928480718,70.03242446274402,2.072726366518085,80.50131157408752,13.737060991770178,53.553634186675545,19.79411429783424,13.348352342435133,38.84668862268291,17.119068649397697,61.31015879150902,84.4287990969731,14.752411281489064,84.29159011346418,87.07870236249813,13.60724340499745,89.36833731846492,51.625791768919235,69.59714581152728,6.084821624204717,24.588353258841302,76.00488560263379,12.614337992095592,60.54462474905114,89.44925818121095,17.161436940039188,21.468085082939538,3.5639509341273468,48.105805838869976,47.1379385654873,87.38526885339874,50.88513355272081,38.4598089861364,73.12780805191478,9.666237757031615,0.9196593544721798,5.7444815776096725,90.47518730860838,54.366955795803285,79.17493363876171,13.428230896990234,9.073970446828694,18.452002034613535,67.96205322597872,21.48183765227383,97.96332254724935,75.9841474934207,86.98033543811283,30.38358474551587,89.87116397039225,56.29374669755902,37.52299556653489,35.294411544702584,36.03502071828043,83.86972046838441,83.15657861928715,56.90597072868725,81.45880621800788,25.155725761745686,42.62621409329529,16.379158868159614,63.72899081632727,20.859740333209544,38.40319216859475,15.301595469871787,36.10307894890936,41.05573051050428,55.23275669213936,29.7343852392446,46.58262591374921,43.95700574401271,50.66625006508555,17.352552230821917,49.88057832539178,60.63713976042126,74.20029864661973,88.03912171999511,8.996548046510899,7.458031980416879,91.50381799429745,50.81927100673496,62.01062891910075,30.68612728100062,55.86597979277844,28.55665257554231,69.40857593748397,62.499809932654635,43.13481868375937,94.44903821075762,55.8856518828178,48.4117272842023,80.93672401616749,16.755894725204314,59.49666900081193,20.20235592344649,58.54689838218997,27.6435429580987,55.544567110166824,29.89528658822057,68.37499810558585,97.05332696042056,77.98256808011169,57.88472241725036,50.13979957532392,98.68050652946162,33.47359515351154,42.5867656850918,26.96246031715901,28.669974909657103,81.0061486566213,37.02033168664383,40.23476455318015,15.204877945764617,92.90286581330834,62.46630425927878,88.95321910936407,2.6663013535416114,23.975107086938074,82.96352686381981,70.88240071050717,95.08142650903856,43.586789124118454,34.31784383717239,68.57889783472746,73.78351352485568,69.07099937369624,43.73183100979961,40.797496465020146,49.281627671623774,74.48075686204449,31.66802342092998,58.405454742310646,25.97725534156052,91.30164787831424,55.90345160682683,47.14533157850458,97.96509796678194,59.533467895837354,94.66190937372271,29.501997138413007,88.90754685765175,46.357238752461605,76.79400000064638,43.898220350696235,6.731375507605842,60.157675197981206,35.080541084537096,24.39451727669548,78.39110518631477,16.898535454018415,60.84220282475775,72.74921076661354,74.59207791035028,59.54702961390386,75.31711824830579,34.908301113737004,86.89817763546708,7.89067706963208,10.548138077561664,2.7003581487616057,91.37124638270623,36.353021731362524,22.98386775211889,11.478111508131406,91.0685463954164,17.281642523774245,65.393132616028,88.25526384426834,70.09582362385554,95.00822860954449,39.32339463331209,0.9774781251350229,12.755234167659768,88.41195941519508,47.33733513640968,51.1161551630518,35.42645313245211,99.70407735342356,46.89017064189179,18.92723306073041,72.0480995252709,90.57301213449296,87.25374815749673,4.450870861559741,89.07371033733142,44.26553520259988,41.47595324445452,85.57178805872965,1.3826762810578486,47.63707331247592,51.16099115732147,93.23707061122933,91.96293564899729,42.000690734405474,13.865224981776647,44.447332426288064,56.82651844743995,72.84973549665642,50.8318545883335,93.35312975008439,61.80261085876013,26.267449361604623,40.78206663209024,27.845537649227246,39.89456740370454,11.205570384691466,73.06456659930525,2.2611790001966336,63.91530527041985,75.23683762523167,90.58513287947694,84.18618948256568,36.19384385671087,81.02739822479802,83.21925355560276,23.352492890622067,81.3012222660022,3.585513723095912,87.04690700311247,90.61063760837388,7.90309595927784,19.8941646506849,77.22399736975291,20.365678623001536,66.45993766092607,47.51085832421098,97.0462471674857,64.36075007257611,68.11725261171301,92.02385319093568,18.140790338748946,51.6314449858718,39.14575602554883,19.796777263230116,76.16234556892742,99.03624709357234,55.16193569498022,91.30253497632931,14.638739802457312,64.68947596647456,98.83001949933544,12.64887889111257,26.411062162058442,74.90430657339542,13.197877079916854,97.43393173296492,95.18779974206238,77.70397520305845,77.32195391212866,86.97303261682532,88.47294804014308,55.35884861640049,90.00306475169157,64.25413000697148,4.32415012166163,86.69590835962697,47.440208282903754,47.89366532924794,77.3240341335774,85.26104937409944,67.65747996475982,10.59948269210369,5.482174375721627,11.259389640306106,50.029445071598644,72.32206670622293,38.20509825315328,27.21765543796584,11.011642986314607,7.328018967835181,10.870087280849017,65.85875530291997,27.878605721523886,45.946106977772025,58.55591202631941,40.86554911289725,88.47668817289312,73.13934406538174,56.91734902423855,76.25428945694492,11.718589710605121,10.93894040268334,69.56722668909528,80.75368831727543,63.220074417865305,84.70720792873698,38.82217933990661,78.27019967819176,47.27111231343749,32.03984483179846,92.4030154113955,92.24212635671542,77.30224167488898,51.91310198651533,69.43319866029809,89.70873941965512,73.05625330757928,96.27192035510465,61.838929294257284,9.55085845430993,90.49455323375797,27.53856375703868,39.65631842747539,18.85693608106894,68.31331118437215,26.23209805358624,13.30577951554095,57.28005107143701,88.03247135445312,37.3604414870812,35.34421858171005,1.9507193955679458,30.509145689601326,68.3872279681913,55.16625828006191,88.87519256201941,84.29463555848837,20.318803051146993,39.41457756166385,15.186288395576074,46.4179476431566,94.09427069580858,19.94401708506356,37.12809661158665,39.47661213593274,1.300571988390553,40.4430958920617,54.7312214698496,36.00234586001127,62.29679627035163,64.58650245339132,93.4961568615046,1.0075485907384718,52.62425660843719,46.167091803366944,47.41510475277876,31.147427293746908,6.080473517380691,13.352324708417452,86.43631484876087,98.92569653752128,33.905024658424246,68.10727476893686,34.350803253117725,22.466505445456985,92.66090401849775,66.09454525460981,35.18421725298643,48.877235296870815,98.93217043660376,47.27080474463761,80.0228865559975,96.2492642377923,38.54818219468369,8.961009788888774,0.11681130507943394,16.185971355478202,99.09793426874435,37.39312871787839,82.45070878071185,25.60359148387532,69.5007306619082,89.8038293489873,12.170603356998576,94.73331920239133,96.86734315737723,59.51035032684216,12.064499136721519,14.367032665201428,67.98707585499119,10.983102913518161,80.88963843289794,77.18478141879928,13.284765772655582,82.11295836646453,50.01716373817157,0.8219394542912317,71.27580749981684,59.35101755258234,10.311063741656568,24.364936876829233,24.29761599989202,40.10546691154616,81.64917420940178,4.0583400786787465,70.6141965952262,60.86159783195283,18.148781215629572,24.119446957085046,75.28683761537982,56.48722342438125,55.29400819344037,40.575240171726165,94.28186320051582,0.8856661069818195,75.94567236756825,12.029613583751143,69.90384242391015,4.687714501085982,16.49192843028172,52.39744543149022,98.38613676452313,33.27103190134035,19.247158366620486,91.14679307121457,41.14174269631129,32.57601250395301,90.917207096203,56.83443392457308,52.17411076758582,9.269072723952497,48.23241148993165,67.10912703454082,33.311210961820784,45.08175230084448,95.7158875638697,19.16147635061852,48.938118942767474,37.71590353076808,86.48712265408169,20.196823792806363,34.70880167383109,76.8131262795683,15.108419162063559,12.714116524190722,27.387040503245096,7.997101241699456,48.967221507613544,25.537384487372318,27.803133276990167,15.390436464900336,53.417523323676534,29.023192485125627,81.99124715948088,78.19454207029773,76.14609783716844,31.02403094217805,15.603805618026644,10.276255155071611,53.25885833004915,5.844249912327204,35.11404028567795,50.47769228490163,52.21397156451763,64.04496268931241,68.37571746669148,73.33256371717006,97.40629700961912,28.62284147477935,86.91724430412917,9.459435951782213,3.856790002109456,73.6533842596669,7.09169703608834,4.903573058532995,48.4159205224879,32.007010176793585,72.7566803153262,59.07308157542808,38.195568529722934,98.45632779421335,88.26155476081304,58.02799582472831,33.89272104870342,64.88965134501747,35.54444064171779,62.98198440852817,13.828941261561212,2.8707014965421385,69.42178763346496,91.05341745854756,96.0491825592196,37.02465942394425,88.97136727095362,45.621728914028225,8.612357112884894,52.78042861616954,85.55578737978307,54.16812912625127,82.14856279458864,90.29891347554269,0.22118950685545702,95.05432450511904,58.17726530720534,95.65325722602208,14.504536886002661,60.06003401934035,41.461751570287305,91.88993123274975,48.3848325564397,53.44514311989502,44.00235154819343,83.22539902007043,97.94066559307534,38.70109616692615,35.73549733636293,44.93418623218582,33.65056458572886,11.40529879873502,30.35636910371714,64.49202321082028,54.13046884582495,60.16015894686693,86.74019625878312,40.93847098252523,39.91618200116116,23.11546608504107,41.57363794840781,3.8072863385870015,32.00151863368183,50.66247235925934,52.035591927649484,31.196219830847916,18.20590129412323,74.00396889529743,97.00868023370937,62.48366348872803,63.77237647948297,86.70632643462169,79.76987224991016,82.12841776032924,99.87601245644937,3.6754520501998122,45.759416482021166,9.997256561723056,35.730528299950016,81.41995637938756,71.46900050907574,94.30216476946802,23.969663325649414,81.90712482127715,33.43270862552775,4.655674349861904,32.404502095143805,80.5906536344012,42.18649523698444,64.29389896886265,28.113554462137824,49.120959626678705,43.31335201753106,28.231997391422848,98.84117127638059,51.88848696773613,47.74697736996216,70.15436568840518,48.33260289002801,47.86804668976028,16.496606892680354,96.00199698789416,42.551395708586085,72.93854154456702,33.6140299424676,60.93903142549841,60.506040246358026,71.09453938294857,86.90145018382124,68.49569919893534,26.28188320163677,58.15449304842256,62.942257259275834,3.8139402499826613,91.08974237019768,98.61821695677963,23.629919135473987,91.14529484328106,18.171520580821888,72.81909335435736,36.89481306710446,95.21552327124557,37.73552869359098,92.10771066272329,74.02268807124555,13.09555551699777,82.0124737800172,79.86119746350894,74.48038089553467,52.737579612389126,63.113524145251844,15.422097551615765,25.266226002121417,44.167998422586486,74.96655779785439,28.47387010296245,76.83396516180558,78.76753539499214,8.931034923970206,76.27968764727173,79.17037455310759,35.44598565714232,99.29619392114469,35.09220071607885,77.53571755484151,80.75129785643543,49.45002962313411,42.74948669310926,95.45909076439168,14.57668965140625,3.2652737574969226,81.93789859318301,5.074967668116681,49.80704778645665,42.87165405055716,84.37904807268743,6.385701659656928,5.607705577340183,53.16283978679668,51.42736482688601,14.557999817646882,97.13474239642149,18.333101520110418,48.55131908727029,39.71776505499357,43.22185138406191,35.29520801240782,28.60311615320437,84.25520335423687,86.98877161592587,48.03518404670298,24.819964979557884,47.67859367337803,59.86852988303741,57.95812574527367,62.34385344551361,46.28370731439782,13.012392980080033,65.60870492325391,21.263975236871822,55.80970162090101,95.2339224892042,79.09494450099993,54.54887099580338,60.277783855189135,31.850822932896005,66.93958539123655,71.09401973226433,9.31373440835548,35.44455265236201,6.253816622049147,46.49771756078871,28.597705007393614,16.709543050593044,19.094118573162632,48.811004195621855,87.63798270720984,73.73105369546828,93.91138664774185,96.52006953889295,7.0690290478281685,66.24601812721829,14.848402789085924,91.57282431523286,58.49975823915094,64.61929741043214,92.69382888531258,11.410993843186123,6.3146624424527005,60.57900795188657,43.23803639368489,77.97037038004756,97.71156979375347,94.09036000026737,43.64386314672457,50.434270355880514,57.96996450843156,1.117826443944514,30.905962037157376,78.51328208012184,42.96908931239341,24.182547888168628,57.50070318088197,96.99107171183356,59.9879869421123,12.305231733846577,36.76286093906438,89.10851648435892,41.21462710623538,68.85696282090646,95.98001337789094,22.24260874894537,18.017516327305337,45.105738791735725,3.008328535678917,33.30810508171809,81.60268165296851,79.05006284239529,85.85438571231737,16.94872062717114,9.322044209867498,93.63152563107546,81.18313153911181,3.8223902971003088,65.19122587559119,14.646666476882043,4.871312545093065,90.87333358274437,1.5455649136545957,87.37802772934171,33.97830283595532,26.34627151651312,3.0150327017849587,86.57725918454976,3.1293749105669844,36.1575332048284,78.42053207605382,36.58376240709721,66.66670692900493,0.05879148579375215,54.86372681114646,7.621059776971184,49.18034722377732,90.3707413265576,55.305649196770105,93.2105188882055,29.185587026294414,32.804393197323435,39.946792244032515,39.707062538912766,24.225163201100976,24.740542789324305,54.93437112925781,74.0514663530283,37.56599927810973,56.846356905266504,35.4176112043527,4.993023979950273,66.8215263380886,48.512727568152414,7.2355825592247065,0.9460236398294075,45.63436199217941,67.10647508276433,68.4859994210328,22.24821276348684,65.87557943258685,19.682303717331393,98.3531783180776,91.3224300649383,14.066853310745442,82.0161596043994,0.43571568680708106,60.45077429860372,36.75644419343386,59.994171647521114,45.38970847113119,68.93182572944689,29.533312220243403,6.280450965041295,38.398466304151746,98.71451505506342,67.24674500855573,89.17162154208323,9.630344066021745,6.756616644538815,57.66502397149842,90.74692762365227,2.2735474459974814,32.16411552780969,71.55528402544189,2.1703968510647376,54.9573437831848,72.82656421084845,1.3300035221440076,25.09831319565521,18.82573123850554,41.403215519983846,93.01444722150977,66.0413257817048,78.81992129077501,25.169023663397372,96.42448739329343,19.450744629895468,33.60566670702414,7.25605257261922,42.44555040735769,30.259903108905227,83.77564683166703,12.789813124604677,74.57168637081179,82.22514904081395,0.3063779275136236,65.3736305220035,19.547965046710548,84.0005922217844,37.7416936508545,37.05053181482136,46.162814559723955,31.372253043950217,5.129400055683309,68.84632806872261,84.84701848701937,27.48575102627795,87.77652211972782,59.39093305540199,10.982595673247964,29.057821640394575,38.523533077825874,37.191069038266136,37.422140515610415,27.66006383548586,53.68415099761481,98.14480109369039,37.13579261015709,96.2254934009295,20.08703460279935,94.8875894579512,35.88707851781534,24.571423023879213,55.93163881139904,67.13872990442401,53.594945728693446,75.08136496129279,48.46425165591582,40.796072001911746,94.49423062911154,23.959307893647896,48.16212220177266,48.31030718961088,26.89601905656559,58.821433694035505,48.263161037131084,58.12371516526984,26.031809744939792,96.35066145175679,92.48595947108875,42.37197132787291,91.79824913946038,18.30710363243132,67.48689288320186,66.8135447963058,16.285700058109033,78.0046007596242,24.216704158861656,78.02329034518594,33.087726640146364,74.24473618622748,12.533387995641387,88.33175585214173,56.27921417717284,71.48443808033218,83.63427569612944,43.2171639938317,87.1702475391495,11.310649024635344,69.11344410513412,83.61379137845645,81.0305714611277,21.74228483190076,62.871176636355706,9.143378799936919,90.01040813431175,11.62800322555504,65.95148948421811,37.983097431711485,4.0164239926609895,3.568103719278981,11.008409809043862,90.83117670279336,75.45125838164881,52.88182487861731,93.1366253651525,78.55199650850444,88.45486072374375,92.96852304791486,16.518564663833768,84.55518653804262,28.064332834809,26.732313150952226,5.457882919205281,35.98375596159785,79.26571622659951,14.238836201832484,61.57468606797494,30.31961330427585,84.95740851396654,8.024209074694433,38.15063031269679,13.773574393176357,95.11253145363754,57.33596994767831,59.98900702944559,15.499861437692985,38.32673524938522,22.91903616367398,43.88774752135638,21.861047467386797,81.2448999547287,23.952421571677228,46.20697471338523,24.418018947727372,9.756494136913263,20.414837666159368,54.92147413763321,69.90883362966561,58.1697229853585,80.33461303356864,16.640569524317595,17.208973562105967,83.89395921931427,92.22830059624629,40.83712095488151,33.59447596660209,81.7767776698454,7.985417701406227,90.10244646756045,86.92959961038468,36.834065828764714,57.812873397145395,53.433893434522275,81.96518449566203,39.079076763943974,40.79252765171341,48.790156564412726,0.7659362253144231,32.73662659067792,3.7677830310633986,39.65098076657756,70.37529264338625,24.634872640709716,54.65546642040204,71.137227624459,47.01521168326885,39.574762390686104,50.05066316735828,91.79181045154272,58.74038106156232,51.19416265095035,57.170084795101936,73.17162541382878,32.31136167278178,72.26878477672302,65.78019887095458,93.31359932853412,87.72005373411996,49.17742814496313,46.36447848735933,82.61531874482895,59.43194979148058,27.477549897076813,84.93773004872183,70.5981295231649,46.044596367532584,45.860971371768855,83.3835677003799,60.357895872269864,33.10611364578395,39.10395289194749,84.75732945069556,12.237475783400864,6.71732997582295,49.23269017355024,65.95600560506567,38.88678434996857,18.343082684807253,22.244468790125694,3.140898385274493,90.11733805743593,51.87516124781738,59.03648941651794,54.95757587771129,16.850363146463366,25.97665021430379,36.763568037045694,91.59436099833536,87.69835178044643,43.35853530095813,92.6642088464858,75.99300058903007,42.70620460969759,26.97101702166176,65.9484637466883,28.869672352281928,69.89036326276398,87.14721529558506,33.29800322309867,54.61969200165066,1.363356186635356,67.80099630899498,7.254394301682954,34.10949046111019,15.418261741347594,36.99122054937952,73.96399832902094,52.243519512605275,78.17282400022441,30.467557738994756,28.572875734665747,93.3075162506799,80.92549775756993,33.93510733466509,36.826615361920766,5.61997360530484,4.417337537829669,72.29041597874856,21.538338456430573,54.460260147113914,75.44117323270054,72.81491957299954,75.20733018706119,54.47838679578594,62.43774363370368,19.01541920665524,79.38364204182804,65.76613411082347,66.75551548116768,31.01373021494136,90.46655162217218,86.91359790869588,21.137558543618027,62.367248031838294,1.8395420574226273,90.94026921325806,97.90733017693198,50.10402170103371,47.69290444955894,11.45725025808455,85.3057798633585,3.5061804945772157,42.16533474988692,0.7798520458112579,40.947514678826415,43.51225200126022,33.76578938187992,14.889287745591929,27.683623705270744,96.98856521922936,7.500608904486072,91.5762439828375,36.702764017001144,87.1618456440209,70.95003214061559,68.27718783923538,11.61390779805368,91.96840784825687,78.00776560422017,8.706015339936734,6.526545660395322,70.00200661911504,67.92735450758444,72.24900084397238,2.2479059187215378,39.932971589783875,9.3010501565314,14.347131760659448,12.854349656070596,21.668661630056384,20.842814742535275,99.88957863190899,49.10442465596409,30.637032043314218,34.080963134170496,42.95357797031978,70.32315682267344,28.837127078668424,95.08080530700663,65.23148053626261,75.80488341140115,33.15367553010259,37.79105164270571,40.70469212418918,73.33989094749248,65.59449847259135,25.20525361128093,29.3468853527187,24.833181575059527,78.6986605129398,47.59371344397949,91.42001748714446,3.96596614852911,35.39696931037586,52.40528866680996,40.655145119114245,31.354254245142876,44.421411639271845,83.61873469893959,75.32199387321464,4.0874177532444484,10.627024308430332,14.427878581982723,24.735034149555744,55.328567659301385,35.18625759198548,69.79524400951321,98.94918494607506,1.6662579721497872,6.162811099136123,33.39017444493207,41.6432843901839,63.59165644229995,95.84778484135265,62.1932766452723,29.757915684531678,79.26365171285774,21.28996147399104,51.88783308163607,97.50338207887711,63.14516822567443,95.65995362618767,37.32270947733905,66.8530118767964,40.55594047021304,85.87236246512072,5.240371423360102,0.44371782607061094,36.41263330723075,64.46324417152722,58.238357902346436,22.874944702643674,12.409255175275401,66.31973710063129,51.36161367953298,84.73404595725128,90.46194433194263,76.28781658724711,85.6818814386783,94.90705538523548,2.190257062732548,20.400957948559828,88.03910897847605,36.80076475865087,22.38315285422432,19.56059686357903,52.70131281645211,41.86224692455086,43.982997183884564,96.98471750032644,77.73408061333899,4.912744500713895,71.73395589697866,55.77452942458812,37.021855286112846,52.381911078226786,85.60959692503883,29.179083712250144,24.19448165301944,52.95879384306852,67.6682873791893,20.062112459442226,34.71897936319461,72.50790008397806,49.51774416807493,63.51930886678837,19.147366212323814,41.0374363708023,11.917843545652518,79.52667032614724,28.310844901703668,58.27987880207165,38.60692478994664,31.06068051779274,65.5803012962676,45.18605612842277,34.65773649736049,2.072807717850156,77.69584229779412,58.06660974423913,43.87421440891496,7.939140114370325,91.49018018992466,67.39886448938881,85.63135316971312,68.10534342884819,81.51895226222761,93.94763883857804,99.00413562101103,4.393241615167021,75.20433581087792,21.48621211913655,69.97322592098264,5.465372278397373,83.10225021830242,58.899861010942004,75.4373732674339,99.00959056068608,40.20370121297881,28.28189206621413,34.55273179411961,66.92656989504948,73.50996141902903,41.51463087007016,48.537633776383956,94.83777143225012,63.43068866352113,34.960275892184846,46.58203691185246,79.95667974280192,14.467025731302662,83.80930223418315,67.8561709681112,59.564263885841754,62.01144378729602,12.244534377565719,59.96765951189494,56.19627780750489,99.27821855281357,23.02402435985349,2.7152269878431667,2.0433851048778484,45.0466237238626,85.44821400325266,11.418342091945444,21.745370898540195,66.24093961375748,71.94708735468633,58.31114037716917,73.4463772416339,57.06852436085143,11.79263118413596,54.4784260720332,25.05470963823865,31.25803286897796,95.44506743242647,44.48583595579163,46.4211000615222,75.70090627291437,77.97408656880896,54.757987429880686,2.8168212038930385,58.01934151342286,30.072525391906236,52.292046495670405,76.90491986221043,54.938181849167854,0.4156449743824897,35.327777275684234,9.018487434155587,66.95277185003027,29.786642077507153,85.42358380260313,95.02255292903182,90.45894290794337,35.00905584813,93.49016982960536,32.8933411007066,49.79845137460111,87.68663805971327,1.4587985924605529,48.73890252808839,52.449078654655445,7.102422402878716,17.665175389532873,17.034421843413185,20.004460631911293,54.08554745050237,60.19877869068168,90.71125131181283,72.90152631072957,4.597664087986586,70.18684494657424,74.14936061148452,55.2587284965975,84.5095891796222,25.34269143019482,2.8604656264296646,83.51321588037253,30.151155670443565,50.282654679980354,19.543373228566296,41.3972421664983,43.053871570820576,10.355366137801935,2.952144344478058,78.39380526200743,25.9153131968595,27.84373746522375,46.6084740294849,7.69662648738575,12.131919451877504,29.28958077576118,77.82930533198483,78.99353811317941,43.68959145994046,76.64385488443267,27.80143175236882,83.7394528766817,18.646031779133732,33.91384448196052,73.37396633173157,27.29036764926356,89.69393660612836,45.66858089626847,7.901816478485701,34.28152629859117,77.45615623989937,53.41111497248428,68.01637130486596,11.318331385760427,21.39394890529296,86.47171677792107,26.040994687302533,54.322762061066335,36.762220361991716,76.63940736527948,73.63094763577138,71.13825634260131,67.851389540083,94.77556150633663,43.63617217456516,3.118314081104312,7.75415826145367,2.6236560246337692,93.65381825820972,36.953064325040906,31.976503234367936,53.05446476199859,56.534057856755226,6.301234050730908,8.661434541810365,86.68652162463728,89.76900966038771,77.43897847180195,99.79229617830244,28.196243241538,46.55383294186267,74.04356025621739,87.22164196948816,24.93721732655797,71.42577697911,80.30769994004424,12.100016739890595,21.866973391097478,58.12477997345482,8.011028970167523,80.11800907173078,58.79819551356083,24.353362866472562,94.31949011091018,57.79775311368903,7.917321567933955,52.45837963301676,18.239969791818964,99.09432285345531,81.8457194325982,70.48132115533703,69.0682117431827,93.56697976266588,27.438756743793334,90.00849969950254,4.206310780277212,46.938818984378,58.71034433493466,73.38540662073537,86.62063813999674,68.34953701988157,84.41642770110492,45.61580345262216,75.69381573749428,20.304644403604044,70.53136653282233,53.3707595852172,65.75261444636372,39.062604386219746,63.737370536679194,61.917129081702384,21.96522942789263,99.28403070350352,57.447521824801264,28.262936075361388,71.20928785990908,62.050881531070154,86.44867810116627,50.6326086482604,6.660503193438528,95.29059905658637,34.365550672348256,35.94664090075753,18.28859455206454,57.02154498871901,18.638325245751165,97.48420089105582,0.754125654825677,71.62953298382764,58.12530462231978,74.26434932574513,29.052604286409466,80.60984998543293,3.30597195312613,91.41812343880218,98.8426910741006,84.75029663705152,5.462124425446257,66.80128816265982,59.606628006099385,22.834986908181733,70.05676528477338,3.3983970055534884,6.983927717526872,49.872062535908555,7.886892422094338,13.43613637205654,29.316846537205077,33.672577569138205,17.38065575145733,90.21392651532373,81.4274904265907,99.7609179167873,96.28573385925509,87.51505384825364,84.11872382043774,30.850990058337334,16.168698670400317,97.99009335467184,9.283305900203487,42.524207700035866,3.530194036336576,68.01290322422861,43.07236827042663,49.31611146205911,81.78882685330163,38.13169692609124,35.663877823616254,4.871071939607019,17.186645827432155,40.1883288318866,92.69123880004655,4.5409575448211665,70.7454370045827,26.695031569260752,1.29265244876271,68.98869375112535,50.03472651183316,63.92105655020552,55.57549694705286,60.88566244905865,34.341121602429695,22.64149694983102,55.0798692315493,51.39664466565736,39.38416504169857,98.5363685854252,72.41674635957351,9.23499886734569,92.14295682085124,4.751259429362453,87.04940307831791,81.59010350438997,95.69134528114084,43.54595849256045,18.933853810533442,5.611578493464497,10.059208056624547,50.20283862704799,70.16973015959546,84.06228551253811,48.40427770688369,40.88056607322452,57.262774603973845,58.63757813339004,47.237316511456264,67.72802654140645,63.58244722455982,55.150081841786225,11.398123646722858,54.44540154156249,79.07913301069289,46.40220653968529,89.77713744388087,81.45725903647822,60.55191054166852,90.22432662702386,65.84909296907477,29.527916311482947,41.08139354530063,54.62622108821046,33.08024617909271,85.24358570696427,75.25665510512076,39.6710706944979,81.93661164602484,70.44250396505821,8.372742475295125,88.11552687800194,24.18907348391417,2.872159773844085,87.77267563584866,79.81616275913152,77.4688980251332,85.38547415165844,40.90954492362108,30.200397268332978,17.095084292747632,6.199137370974384,92.46907193970236,69.83357120789537,2.735149748535204,49.46191634682964,30.20634117991762,91.2769021533779,12.395571983671228,30.270746907671175,42.42924650334685,8.885597363355268,21.835186496758507,62.22383025740841,24.97577424116756,53.73411736078722,94.75926233671929,70.77888450622271,45.03901080930714,89.46160067103955,1.9600965969959416,55.846371316603424,48.06739735904287,27.149997194347574,24.304227805932545,46.33936048705459,79.48562763478826,89.81006493764343,91.01654217169002,42.04602587114966,81.8446330843754,89.07106061610124,26.113540011209537,86.20510445368656,39.38171561501432,18.94303334616455,99.2938587280371,98.4702681284132,11.291874841264182,14.47518364834216,90.35146456043408,38.164750085269084,34.65574327672301,29.861454267514485,92.34083264079108,63.02958620529673,41.67717529326993,78.04390951885145,74.7748167417303,74.3598130956046,83.30621570471766,88.1456430935191,56.12030423295501,48.29587934950066,40.47019916055169,94.96511491704902,59.398398188250944,64.18077228372135,90.64448866680628,33.92648090294933,20.96043070213107,54.86751240630198,21.602635395282732,46.98194673270601,52.58647569146806,27.928599322402903,70.74974507463487,0.19107132327033094,64.63151510784361,69.31385422864406,37.30075942915519,86.05507354662191,13.304808460425422,19.367824258121903,69.4009674725796,69.99475302202634,51.36037301448124,96.76452786061422,32.63274827020975,34.20835126498735,93.8158614517795,95.15800114534638,17.632364293104764,36.6933779661339,59.71997249921799,90.52475908420075,93.1436523629044,5.873004540752547,46.974680782162125,85.28080300647355,87.51995452348744,36.637490628575456,36.552299754042416,48.46837036121098,51.30768811610922,16.751255329448757,91.5055387038704,51.161925934275786,61.12320549376021,0.9753504067919194,77.92129047423016,69.18305285134942,83.78847584863064,53.59113456739547,4.0177688125654925,53.110435741131326,94.54061613805213,73.33507304706906,28.613505800951334,9.522919529498331,13.882003146733613,74.77213834963426,89.78766073095811,60.50646759259005,16.17009758191742,62.28719803547733,9.367657603619794,22.47139031048848,9.526155375946066,3.5737354933000676,16.084068380818294,31.070850907425683,9.718554426626746,80.5499427474564,63.46602483486045,19.615230399677962,13.32023848491014,7.090175805188858,54.54684067087425,7.9195839379746396,6.603189548622012,32.68440887449328,56.34669240570279,36.15754080322774,52.26658727455887,50.06970816522646,1.805724094473271,97.09569411348696,46.91344123940028,24.695787310158746,33.6223362620925,69.98322138310571,32.72397982308932,64.25477984317757,93.37212546567383,72.56094829768622,4.8901661510011625,25.628259283134135,92.74614463408966,31.028709968837386,40.323067028614105,48.56665762402168,27.182070160808603,39.90066210590696,13.987839909335264,21.909897238052235,0.8909693555164022,66.67510016075848,88.91469896170271,79.34383987691133,86.86469641415204,6.796166740168353,12.89682194679459,28.938426063442467,6.886428317944526,32.124409014040545,55.16476553366532,80.185568574672,1.5168668050543843,36.00029766080226,80.54411989851769,77.76565616999471,67.81945310400282,85.48951108359752,70.07670301155623,83.78241753317798,71.31766780054544,31.670844114908082,93.92269737465975,1.4514024210744658,41.14040287589395,74.44539717319134,91.43601431023313,6.035937045903816,87.76805631298272,56.59659493689945,76.61226390339525,51.44873816950033,78.82393158421404,50.972192119067486,48.30220075412672,59.30528279556475,26.88764798681229,95.09061945970103,62.612948549624235,62.52640810421719,32.870684640577906,48.01187643763548,9.310780738954483,61.64128622244645,24.220317359702648,35.44055143947929,71.83569264872463,77.96030699667651,93.44035467814938,98.72190663789914,67.27023559466181,83.84264757840309,27.390229594949833,96.12622041584244,2.539929212751213,23.55887981962711,29.26870131065884,96.72427235819377,33.52654858404929,99.58255817353505,61.3914151610542,73.36749934934063,90.28745088697383,83.0063504389098,47.267529647032006,58.543229469434756,79.39279124057774,92.45372195584615,45.72507420928788,46.60779211214514,39.5943466661231,49.07846776617845,52.474016125535464,54.37806934033767,42.054045292598595,62.324019302407606,71.12290697851148,89.5144514641884,63.78074891538083,77.91276445695847,54.930114181027356,36.394335609418086,46.67120196543861,65.495291084372,67.27242639199137,74.4947117678744,81.83281754980064,59.56462832352134,29.633428084507308,7.020467292415045,10.750193347715342,84.29560027711884,92.40893386303239,38.335531666970546,67.50445006435616,63.12652645295641,17.604260636598912,71.75565780612546,33.2194816730856,78.34734340939355,78.64106118270989,5.558205457468135,29.75061369054123,36.15441313586268,97.93208626328793,31.033950557550593,81.66774345311863,60.097293879712055,37.89938539700384,70.41640641846182,65.30371043029507,47.086107495065,93.94892570905375,62.61139143543011,36.58877073249648,67.87752378532936,42.471241465081874,80.15151498248825,87.12939244263008,25.514390144286516,59.15222174919549,72.12227393734914,18.05619794864466,5.923351826020095,84.76224995602243,43.73046614547162,92.6782978773508,80.46957074384893,40.4131117855137,87.14384088420381,88.54743041488727,86.9296016320223,63.03475483895555,64.76163607911329,73.50022285489794,38.110775665271305,10.084395308491434,87.54947698497857,98.2165216376086,55.67107063136502,38.1761301249091,82.54823388850944,88.43328620282661,55.34869280671275,85.08843912752214,17.212418556046583,37.224598865686865,41.29946736326979,23.662486464490197,63.089107874529894,44.65307418077094,68.2484420525371,5.530243491284592,42.470055560466655,17.80469728709033,37.39521813706386,81.45306933359433,40.29025717812409,25.085236160149048,62.09978662248449,22.01977626157603,6.40401876656248,48.50829238577663,39.8215622677078,55.01784658431429,55.9850984384481,89.14627614200226,48.796647328337386,21.588884748874847,74.08058103515648,74.06593815851647,52.70090779571907,45.22484366162814,39.311490577125774,10.27363645792393,63.523507418792704,8.435616268139501,61.819993751980476,16.352006390083694,42.25889771526994,9.522208632005091,97.64829732158898,19.859486778079606,9.054377734950847,53.27224797909904,5.13965032665743,14.422001442828359,61.58108960690534,23.343517138525094,73.05627773722391,15.061650477710531,70.30694241553265,75.33005789568298,68.47865880692665,66.05088811210372,22.928079654849544,66.60844605363421,22.760681631474288,25.387901583967654,28.545304501931447,34.10048428843964,95.05550073398852,69.00861955439355,79.07083523603947,38.19401655779211,13.817190792961176,62.8983019431648,5.160040277510669,87.2433582825001,43.68602076325839,10.747087139250288,48.22100036155697,23.680638146044785,74.03838801544485,3.290323352927871,41.19835672955933,29.450013467530045,94.84769514534969,12.067158750051322,39.53580168741351,20.41921334616249,30.206742149333444,95.695761130997,97.44203198724219,34.002364489780255,34.37267506782343,55.36951339898704,70.71464406645795,11.1650733804328,44.894328591436405,56.63001712443574,7.63040404741453,27.544402877791086,0.830099877829471,65.61140265537894,92.4392156564217,96.05486832528234,17.28806504626953,4.482020592700364,98.83126678931806,32.97507931137592,31.86997700516305,61.291426620041776,50.62505712596139,40.0969440260849,44.31897862829891,80.18019826268606,48.12823237134136,28.52681561625262,31.757482248582402,96.39137569610682,52.57430917301507,81.40886525766778,42.95922355250029,28.062398073709726,14.47912408046933,25.318825891295106,74.83037001499204,79.0515927854386,29.4774791662635,75.79216034600476,45.644401686982114,72.21834265373937,28.37610131333317,35.2196649840991,23.1037508308643,43.75642582254569,87.0352784517028,8.394690334242473,68.90456703572634,47.7468057349145,9.23720083536802,44.21121245983627,33.2021789279087,33.73207440946332,96.96361743515693,93.50352178612268,55.683868026098615,16.86924139234479,10.026012039563327,20.67350773418043,93.2702150114815,23.70897168629299,10.354925789704838,94.26958918734015,64.64271716605137,4.360195011806855,1.470444190612752,35.533970391941224,19.527254765158265,44.770796759232155,36.88202628912713,57.65193040356307,42.85192551007187,59.797133515177336,0.8414850965785425,86.05932983702725,15.08716555949976,96.76648749334805,5.8039092655083335,97.52460447600001,62.132913245471634,22.941116039223918,71.31279640887195,47.371664831852314,43.89091256804567,85.38477044424283,24.592736992036446,79.8760464727785,98.54857439234065,80.53294480866903,66.71230774840373,76.30826804654309,99.23352313009674,78.45631145867242,67.45523642765208,11.132558525514725,58.11256863071953,71.81973599397689,23.196559730671375,86.37551867607257,96.04992210004596,26.38200690263267,79.02376293697657,88.6619557180472,15.204634597810907,84.60385610296183,44.202759591967265,84.82316721690285,98.3451289294113,64.59978988550645,42.36608144884839,36.31697044491587,18.491363875996246,50.465971397242,56.54226736978405,61.24018649814873,54.331557959515976,25.345754488654393,69.27431585131994,1.1994413781616697,81.77287291868075,68.04564647861619,45.76525889030992,46.859670094830406,74.73584939131439,46.455175290919435,34.9693872002413,7.215982355778571,91.96939013269036,97.65670378967808,62.810887920685275,38.12041612391048,97.38208469348793,16.637963693830848,59.90702083629995,23.788279317262294,97.54450946804724,65.72967330516768,79.23148462014461,72.08319168745977,22.345398413996286,78.01364857500792,84.80438237165004,5.7517839062679705,22.990928971708126,60.08590241999018,45.602961625593075,47.84378368266267,21.266900044033022,76.81997622723686,46.74928642959624,7.317465684612845,71.42888055753411,86.40895472127337,75.77018650471472,53.33436172167109,5.58868807237014,58.02428458234773,79.13310103425569,54.11759901121187,51.53055622671639,79.57882355072626,11.683964593415519,18.120614093778574,88.95383871719206,71.04547309098372,41.93317994288045,17.9931023479436,83.86489424206744,69.28805292181232,37.119775224405686,32.48316850140747,58.78425311898901,83.84588035585726,97.76400015073907,72.14638138940303,17.369630293429804,66.26142941845238,36.5688101544297,53.680042219728264,70.51239465980412,63.79617499412949,22.346533311826967,33.35919265234198,31.82262541952734,76.69742387531805,25.89649392399914,90.51095261012777,33.61509307543238,59.22620336140748,29.761932938472636,52.179984066261575,73.20554254076946,47.592496799855766,0.7666530753879797,44.30912471087433,22.550380021848405,92.08666901951446,78.85845137162354,1.7814354797216492,3.6829384749378913,19.849243826259332,72.3484378079623,77.83087303224204,30.86292013655042,64.41909158976983,52.02871813985587,28.278827284121544,18.724197337136772,56.89237602811894,91.33602466003666,79.0209348524977,23.761005108139464,50.25046443815504,22.619617491695177,81.30144703729756,22.19055015986835,43.15277666637585,91.61897475091078,81.22264122569214,71.52951780199818,73.740262855501,91.96475386150145,44.59838281368693,90.46197188720319,33.2156256738225,7.979256302724547,45.09451190155143,19.96853946300361,81.31249550813472,48.140509090747294,69.69154818778193,52.22267425393574,86.9894588981697,83.14492788177836,81.31600562140332,81.68361398613085,82.33054018183896,77.95129961358244,52.236398604881465,96.61254226738217,61.911484325240586,98.8127645097917,98.65980445245992,45.64893708668093,70.16478162653202,37.67491720879934,28.26407071696667,17.727752694943998,45.50226213889316,6.282768327280608,9.834374732025019,46.091071325504466,15.431422235071324,72.77059989326288,45.54666245951962,83.3354729285337,10.006685827292339,70.65659196439911,18.69067588834873,16.119744583834184,44.29009018590324,73.51784417508203,98.63043558445484,90.31424628881821,99.92186019200835,97.26587779714704,82.48329411402042,80.98190981466861,31.084548063314234,55.235321059296396,95.52675879681158,79.92893876101654,54.64926213913025,71.31985335035323,66.65926879563531,3.577041811327364,18.29619259620442,52.85239781981996,48.04010773124975,7.386517203340571,36.48571517988329,22.86814814214343,46.300548701438835,41.93311505826457,91.7190745520299,8.412465362607414,78.74036717869198,62.611123178789065,87.1617245626589,50.311248694804966,6.717103644820954,73.48478195700662,29.68947114365943,59.97401409413005,58.047905691954206,73.40210006766647,94.5445278476588,55.56635540058236,68.14795859560707,77.28350633332714,82.08306276960043,92.77764211452245,27.763165079133234,72.10985659260044,71.45447487986377,53.568899400912564,12.75367910373497,80.19827932116596,11.964537248810714,24.587531996185795,15.799190746193458,49.74733937105287,57.99878221713368,28.747855373354238,65.45906582859213,55.50729547749443,68.41999667026468,86.10177982084653,36.98605272657354,38.33104648294478,1.0873472151261443,22.161793082280024,98.78542123620417,22.157316450051123,83.53889919104198,60.964978571407116,69.75584197573107,34.19647617334696,44.51574952858239,97.63726575485441,21.23833144893975,44.90112668982867,26.68908975002212,33.313430760440674,66.24551564274532,31.31769782745575,54.03626967347491,18.718854115210025,98.54022013320505,80.97865896358816,69.3765845514521,90.89829130321172,15.561808317046955,63.1409931200235,4.225811709837335,29.435550225387107,25.137800094742747,54.03352646689227,85.90895967206964,82.78696395558808,25.220323139986455,54.00674441260318,33.41732195717469,66.18970481861595,6.484788957547305,30.990177701140087,47.64782211135009,3.426375686671812,38.22182453016181,11.674371949114947,35.01481372619401,68.64677567002676,27.530681969320835,13.214110383826839,88.46892491246054,51.90403752613369,25.914330967885636,8.231299864126962,48.588393295323804,65.16700601479745,84.06370225066875,36.48030885753708,22.48040256377921,42.374860129065496,62.917955902216214,77.41691165215117,46.3717273966764,24.993454403152292,72.34458079331917,71.39155765021349,77.41535576761788,69.50385766154317,75.20870772595191,66.92948942744846,78.43721350545744,68.66106692780943,11.793520551272207,75.72868674747373,4.509763831830204,45.72348143486277,10.365902604363308,17.97832344707252,27.149595334082022,93.83408452334858,11.865100346417169,50.77332459357587,14.387687416703498,8.593973525751187,62.339407083060905,24.206341269325204,34.40068577488991,60.30133472068944,34.391777869037064,96.1943747112011,68.77311605670204,13.331425411425924,8.535535935512096,88.38654416425436,90.23759697826166,14.621456129631449,99.1484442492113,58.868751826423846,26.95619056802443,4.127424116286638,56.93432615134773,72.41607033275518,81.14530083829048,19.116011894402195,59.66541975293998,85.76991248700536,94.56716526357592,3.044458321812038,54.11753748171836,8.234787949163202,4.737854048578072,5.063569052249606,51.317957021682325,25.33749652119157,64.36687930886694,90.24677303839822,72.89021962740199,28.061830045053526,1.0425759910441812,12.98525595285004,25.250762634197656,42.8657643313936,77.18791030835007,9.987577026466587,49.83490052851596,49.53088234482431,85.59058934456158,36.5520074388479,39.60251427995395,53.97534036060105,75.65712833623289,26.129875414400495,67.34576329661878,74.67334168272471,78.21150095898341,46.324661410858894,96.26029811835744,2.6795092631693773,82.2494944835783,99.54079766412285,25.532104377671626,30.57875331036669,42.92600613699682,4.9489122931708485,74.13523095749727,27.424608634962066,3.153797005047765,52.71340785169162,22.79676292176869,81.91646601245279,78.30538487126489,50.373564814957085,85.02183928669008,62.611744248107485,48.90639805561783,32.22867466633959,15.145836632539355,17.539267334001153,81.9869109494275,72.62577793104803,96.29122061144861,20.037553572578403,70.85595603168281,16.82428297805638,3.3104574339104964,7.304398792335864,9.014711918289587,91.29675338108878,39.91306407100633,48.085961943064234,41.36049417062282,2.2333201655298174,7.232088675188231,18.75925692514838,93.99470786554517,45.37070266030431,16.701976807943986,42.62291375442767,56.15640428309794,53.65737040670457,95.96377902060986,75.97632932244676,20.693581982751475,19.944813832741126,66.3916108966347,18.133779382615334,27.159204453083387,51.50658798197474,9.194692254986524,69.91982570405175,45.25491512422873,5.339701674921482,50.225632714597346,43.58854454091684,5.705417353703767,50.40449696476781,88.66260103862446,55.394451606362914,20.574692462963295,86.46601991604443,55.06786335878843,31.728898822295516,29.791006708693224,36.80423735691183,26.841942918572336,86.82717918100874,1.0138752384979188,52.21899795647589,58.20233190975809,72.88575974973232,98.30097355023099,85.03472834284601,10.933431299988605,85.21992852295251,96.75414976975607,23.473283442462044,0.019491421103901008,62.301013755854186,18.224424700924992,63.61481884362491,76.78273493869855,66.5182143474594,51.11000174831685,52.58973143904046,84.59319282317502,4.379009661657129,92.7390434909148,61.42421190516286,18.333651183822575,57.00697502977389,55.76711809007703,94.72574065246744,28.08040883726689,16.395563334573637,85.72840735329376,47.66108865053694,6.474764338935401,34.88265947994521,38.575753050366124,12.16315454474307,17.374652391796953,69.30427700672578,32.76403627229095,84.19875534853959,72.37906629147747,44.380845491546395,2.1037437292578454,61.377999224295934,46.06518571838751,72.74626498916487,34.26443452831614,54.10992428431815,95.63311310531957,64.85654317377684,43.035833694726456,78.5359910033609,27.645346253730818,43.98264231895328,39.38765467550772,58.00838119485524,0.6550349309194181,87.21956000216538,42.157298704075465,12.320075727092473,92.68452638038634,85.69846423501833,99.6927139901096,88.21600008200782,80.87824238207735,7.941483440687735,86.76911841628367,80.69361496330141,82.46479852443514,28.594557427093537,76.10497481533844,38.73827943560716,81.45051245923077,53.25963636574611,50.6038729031972,15.79853115653762,96.64180897566294,61.0640967360556,41.79364350402174,43.687748705988916,57.04174455107257,37.40449137663517,4.000331328017692,40.06397398044348,88.59296796086134,50.34839618257803,88.97138832831253,72.6454772686231,37.04295910465838,49.59152976699159,86.87215770785453,93.89975429730521,42.848482938968004,77.7188133904564,30.392331871788127,38.30244302057937,91.12102660090932,88.09107385993651,42.108961052892916,22.677878023025155,0.4672806693095999,11.378374522960167,71.1054608760463,98.57963899910837,14.328773269441509,38.962951415416505,71.77525295346292,47.44908365136219,90.90437639956035,6.82364804477531,88.21808100785545,99.36291576652934,9.54563883253331,89.14843710802015,39.070018869278414,49.23938946854859,11.296724441110905,74.4124237473198,91.08143667870822,9.644361055126605,87.9221071441682,4.758623353118319,94.34084309895432,53.69502074719,86.39679993146373,4.657941948019017,7.3181398863582885,71.5946207149608,38.54364042872316,2.3579481154869297,64.03473313664102,35.14144272438521,30.303662153867172,89.69499951738057,71.92090155008744,13.761136897689841,33.2386682127141,84.76313296199511,42.5393309124525,29.038423036670345,94.87448457013804,28.172169263766634,85.79498194093236,33.09537224806035,84.19746567587941,86.45846437609951,92.92227180823733,2.1506336484672595,46.23678900759588,28.542665900257134,6.05775123085559,10.723949300340507,2.4814758290156336,61.859561983996734,84.05136043471119,42.507509907975404,11.228631742941808,25.28482522736889,3.4758404563704715,0.7025986669127238,53.13319828557279,65.5062489760989,6.3212514332241625,42.29060543248816,80.43524791755587,22.954739697976322,9.102133827821257,64.59131576794896,78.35012776013288,11.85697313498222,62.04998979041715,98.25608751532167,43.01376654940607,10.66785321751601,84.49051752385401,80.0942515601768,91.81008186608096,1.2696629459539532,34.82204282966561,45.950694916836476,29.776561048795703,10.340162570915012,5.36392799381481,81.41651262606334,2.0542528389339565,1.299252713391963,83.12443069870116,35.16325439457858,50.195880256970106,14.979778256524135,71.21194967873569,15.89262381391835,2.7174465023588668,7.0120994223234145,20.96159815356995,33.57224637616169,24.756091307873064,45.07975508101016,42.77031296432282,26.9077652953453,35.953401559883645,58.587900713898044,19.622282751152664,65.31343659812262,84.87261069589842,36.46805242090924,36.578322036210785,42.76362370346283,25.821472152386693,98.95330351395218,7.028655350619295,14.942557522866606,50.66005105034228,87.58536604480166,90.75776383948217,34.57458750947878,47.40690457893532,55.595992876109776,64.98965670275571,43.76640247583369,66.26643914225991,29.33755794718127,78.83717826879104,82.49445550453409,24.7743528323356,9.54438978572818,16.46411309543282,13.378795885304251,0.65662809425725,75.21446896901467,19.559876749843486,55.666620368276064,93.60645505239323,15.15204774679878,34.12148183681499,19.949060422070495,42.78600737618722,37.50578839991644,29.714322853000397,35.569478003710906,90.60543612049774,29.178807351961044,79.57161406005268,32.140623011811066,21.33568618533428,83.9584283862979,18.677933619316434,47.334756521051425,32.144031646424374,93.441453290886,88.00051049804595,53.90543708429977,31.63956118522574,75.63520024174262,23.426150074447282,7.666382795560978,70.84398310762306,13.256890982949642,8.881553467539337,82.14450379270225,50.93461325597654,53.4918892948404,99.92974762819371,36.83029706470853,41.15554533732059,13.550402539673644,21.274133554230033,97.91578146726975,14.102513152798524,96.0040682502433,57.067721926114615,8.495260144446416,41.2233036195781,84.44662373906446,12.038716060157128,51.544886914421205,88.95977729641328,15.726897201669576,74.25245739851782,13.675181897961775,55.09723344146005,32.49492918983113,59.65929153793367,93.44768108008033,82.22542592095193,46.248712511063914,12.632404323566393,33.333824034050174,72.7732923792304,29.65525223012502,87.42802697283756,19.159056469455273,29.623856951816485,26.487937461258827,21.558303027032288,40.44839438950949,13.969680434438326,92.29509807739483,81.9516403902597,25.845972794456095,71.12005601427434,82.55043097913753,63.93172339986618,58.25064585963751,72.53795736340113,17.142415847795757,81.3528997815041,47.194294539842616,44.87542229379724,28.594361520444433,68.13032762878429,38.91220801239991,6.064475429891047,24.68502042963131,87.50915127041638,6.1532342059544725,89.0962229314791,49.784053631777134,23.4024201687005,69.42900438568458,51.122114324510825,33.71860360641883,30.418051668711954,77.26846912514573,65.37595174108729,77.09148592527953,24.755282231610042,82.15499797028933,47.24418501302302,35.64308665424106,42.07491315866297,95.01137802694035,62.5712960730923,41.70690396744515,24.158050068219715,75.01692069183535,99.4342422964486,99.64374139110616,43.45524584867211,20.467757950850395,98.81937006688972,20.171214968241934,8.042713329571693,1.3011464587791122,90.05755249861306,2.39714678635895,49.73723071656363,28.11511140661044,93.5877819481238,77.63605533149581,0.5009788152681494,43.80543105068936,64.99900404851692,11.537180987168227,46.14125922658901,51.54145534545786,84.66880324783097,12.784308923373777,52.669801104830526,13.974900229269572,89.13622858999841,43.844263087966176,50.72789589743958,99.75960197238743,4.265969443764139,13.260582428887746,83.57605786769582,15.723768315189446,38.70155444363109,57.16285335275535,62.54839526083964,96.76914874487095,43.841046979414855,58.39341632752346,82.04958992789072,78.56085338581089,4.825107103357828,63.06230737542121,81.68725894477676,87.4979710385514,3.4794945073729933,58.77811782343625,89.17948543430494,92.05804222814501,5.665683833597567,68.59710103838296,81.12162547597292,64.70366787196876,81.99195970435439,51.44572176300745,44.06744701244448,40.954851871933016,36.82532766193047,30.165582018248628,86.67135377168228,21.3564368380018,20.603197708659692,56.30475052697368,35.46092127122723,54.60385618290563,28.294454107151722,86.92880254751529,46.135509947355004,9.337643373721082,6.320933777608618,82.3634644801951,33.58128788824164,19.116953066108056,63.726252657584425,49.43402073088382,25.138221211472324,64.46329152534824,86.19592483750371,95.09529870309589,9.976356830075051,86.80367956641891,96.27131163331359,3.84438185413597,74.34645258501715,83.58122879074052,22.935628401110208,81.06955593585486,30.149998015505965,34.847702107852655,28.40051221446722,52.332434819908634,67.0964217296857,4.039675744398807,65.661084370483,7.404801975422847,63.57238615313556,59.33559620421165,55.72349343540664,18.72291909256163,26.032974475594006,34.63008051289217,74.49602426828046,67.68778743816128,37.36900500969029,22.483991314313233,90.00311334290716,49.54011503919899,13.410329849673719,21.181809815449192,43.459140858981385,5.909273501859646,29.56482494281939,6.764987818892321,88.01196988199041,43.18481996291831,19.37587513933129,90.41859545001263,86.50988856729815,32.49307092107979,46.36220819373308,22.70980997527291,61.69609086119657,13.563160670582752,83.84220617595304,79.49066191980359,60.78701269764052,99.88438793743279,80.10902077326088,6.887563845339406,73.50537036367673,29.27471049637972,5.478930146640614,58.95460037497785,2.3998100849948134,99.63358724449405,32.59975419564163,96.88847199214706,14.63555572214268,58.254827275103224,34.25083617700978,97.22009450927904,17.728847675032146,54.314727700922646,14.725095984099056,22.020442972046062,51.78333940072365,15.566744729629889,34.77563778915497,26.766728609545332,95.27564494226861,3.9734922913532755,84.75432991115024,13.926531023206312,38.12179505420733,61.93484004191283,70.5881658498913,91.23149561726696,71.05016869380037,32.49716227924105,91.48257296249257,19.234924599101998,43.62190810474268,58.75277400451985,17.466222590294212,10.34361137640637,95.22039179771383,55.11055817162623,90.79620767638093,70.17535642516329,3.9980468625795074,73.47233365559016,7.847051464676847,30.787101698331675,46.57577224973911,35.11421724115692,58.364594543887684,96.56308963520968,99.50711549671449,13.987561168331164,48.526872817723834,24.909973096444215,87.4581304134813,49.06268817582308,28.816759910003498,60.7973009460394,94.6710006186325,33.100112264955975,64.1505172234128,91.34996538043903,33.3940514620399,16.793737023217837,36.18708225422297,46.919896678651455,6.31174968877406,77.85413543074262,56.49398107680326,2.5129502464072084,42.01597610773577,99.58464248856785,47.406604864595494,72.5813270339327,72.19048127348027,79.62591439725236,57.46103134364383,42.587797607505884,67.66204361351737,74.9734153568075,22.672915336204767,62.01704706635428,62.851941437046634,37.72965625788605,55.33820014933492,28.53918144255375,25.141855083824094,37.67803007448391,89.06689782314714,79.63536668198081,6.126100233364151,17.047568301039327,64.62006158132185,37.26220498079196,26.40686984225239,69.56636802219533,99.12767884856405,63.724134749359365,4.266881332726403,75.47460161320481,47.12780063685307,72.32136084023533,76.43316394438396,19.676153763762894,84.2884469192275,19.638945377158258,12.72954695717653,30.342565495550332,92.65303927870225,83.99492993939683,56.63301860685377,47.75791807432579,10.512263776193842,5.603637711283261,78.39481378027699,69.63713810765618,52.095308117069784,33.99439354033002,29.647188002496485,95.51418972658207,63.319638524270786,63.234042419920165,54.57124474406172,42.96442200049096,29.25493512244821,82.81661702239435,36.337329025408934,7.566072228842002,68.74478842780098,60.40180672029081,23.064209778586097,64.05530202314266,25.724820333902798,36.45960492262418,79.95741129574448,97.00793348496728,46.62917883734061,37.326129364078355,51.52066669168509,68.46712192838882,92.0761305321786,59.2546917108771,14.67721930379673,11.26639396582696,30.567876289550057,93.53420904182164,35.298207722752075,61.80752908364807,74.18268877164525,5.530317889766778,25.550716676249884,52.44266453776895,59.456231328458685,98.48032451049662,91.67382014204189,72.35583357953266,81.09893069511621,37.3627005795228,55.28298216929821,43.82973608070655,55.1102872850608,58.689961568933604,14.390258082565733,62.96475685725331,71.35569818510326,30.78201443057572,81.32046615482949,16.53941833060729,94.81010726786724,70.06153786174028,38.94767268458548,41.8802394673312,26.249763876973596,41.6957141271041,27.521995434001767,71.98619637275344,71.01466163520563,47.42449716598731,24.3333536740174,71.14309541726496,30.002181276267294,4.8463510503426015,3.5844724489044744,34.20687988504781,62.64543572426716,47.54311455346812,85.14994233627895,80.79300632668978,97.91925095052908,11.334889639604029,59.96047031426054,33.23991296147578,83.70415894768416,71.54084229317435,38.03851180874561,64.84199714406344,73.19429700956857,40.817254882969635,35.2822130525944,31.55470594606732,72.02031171549763,76.39859200009653,59.7959791927474,68.7619049583908,49.43987825374886,21.239086941853557,90.67956733946669,17.42847798073075,34.793570725769754,42.47666044615958,65.07270283858935,46.911830733529584,82.70182253215248,44.086511957629384,34.61829400152809,52.05902738375695,98.54081065874767,80.99770482848167,3.9888983261502364,37.85289267989241,59.47691025227137,17.48024506959329,18.1068980386059,17.38418683327877,14.480607353081677,47.04330840533119,79.87777022413668,7.099669747783555,32.31992839245098,53.78402480754445,74.39094632313036,27.618401403559155,75.0870085102197,2.4251593666641535,20.560916735272816,38.38659855595283,75.95578548986028,27.10870535295141,33.91823386757737,95.72722563334078,9.257775008805902,89.3123820998885,95.84024430727666,2.9820341890757995,17.40045235814931,18.546735919492484,51.01356888706346,15.509790211964603,40.371985200415594,91.83581675434556,43.72106507944372,43.19028357421101,32.12244334827156,56.711306185373644,19.571573792382978,1.5156836225252657,44.721307512533706,9.62930430499853,97.65040635951159,42.41953070277603,3.7833031849718646,66.13608878130121,61.07330680270717,85.39820616991463,29.641310578600855,21.70100491376067,53.25501366525525,19.684044452345862,90.58456261527415,27.736783399535938,82.16228336007889,37.43596667700233,13.995995713980813,5.148462711104207,49.69636017221355,38.19366950066819,90.99023976460478,36.50888603692742,35.51057321899559,75.17921708280413,10.767288281195208,76.21694554443104,15.022035380156407,54.77563704973789,64.3048456548818,46.06907147587965,14.401881889381551,68.40517089173905,51.599815099073645,22.701499417842474,51.42277703467304,41.22268184922413,42.50190605865234,57.52187047795688,2.0902470663995754,98.1960686780761,44.397786131394376,43.5194868308801,2.098058470354902,2.2949627326265265,65.59471864813752,12.05827038993521,59.38110082631061,20.955756019449034,94.75336150985054,81.1303540012144,46.95080467384861,83.86869601691596,19.70893315223038,31.972928856868567,46.761129836116766,91.55892360711375,58.152501509559215,6.78439889989908,96.50492046479863,12.419224862660982,79.04131217340715,52.42992115739575,33.40429736593315,98.72534735917836,74.0380102435211,97.40427749503658,63.70957720872427,22.955768180474635,37.59318022292864,97.81898937740151,84.47785928629501,33.51738662755027,53.229136480867425,51.972214919285996,28.010239761088307,47.83572375162946,20.883828060300758,26.473511315620346,0.6443360986553293,84.31627867549973,32.539282635054725,7.352430844988634,16.806699801696013,8.632096250018185,79.52601308790416,8.079651928600684,18.58616527034378,4.423278119649909,49.610371026877445,85.95097378461577,83.7514678414908,45.494660582386224,55.49806797264634,97.21977194045478,2.1927104940499986,57.535639317979395,2.9979351515096564,77.49068474356439,23.341765781785394,1.4170852725052363,82.09862975607138,34.04297594799372,48.603735686024955,71.99693660936482,62.56915872741163,38.78762083862733,35.2558240168718,21.155369756961118,64.68495684551158,18.752835920914677,9.526413180422677,14.415346228573334,1.5138073738310664,11.034759964635432,60.12028835629817,71.7793645150964,31.431769254962216,64.91748665880466,30.951842327061485,45.285057969899455,10.459712367599217,4.519248923909958,90.52266075819313,6.127583977843242,66.60125355767399,75.87262016950626,31.91385019275107,3.1379545661741504,85.8116205638679,81.8389156065322,2.6966043081145363,33.11407725063571,14.765119287551776,3.2715770537501188,74.73516937528005,82.44726851610402,93.99182215542751,28.000344101442177,11.17989415873426,35.98889787592965,49.49898935408934,13.018011174707711,37.41284574811014,31.555932272557875,28.844240495172592,85.49876205887414,79.94876942848698,46.72651688092547,59.464374291105756,76.13965617918807,8.741894602067301,57.234087612500964,89.2513138118685,99.36583091804032,69.00224445734895,7.34716830328469,77.37384653005685,36.147717633376274,90.61699755549468,41.83697598056436,47.01965119314229,80.41741148015427,33.89058153644482,79.00698818775825,41.64653127143597,31.959197590190946,74.57280621256103,62.3587345396506,94.98227862712025,3.4915714800096365,11.909355742750993,20.13505000973709,77.18425711642173,31.985306009107283,89.00037314268278,72.77034738957894,76.34728249302809,62.46152715584572,48.27777660042487,51.01178774321148,20.89367250683297,90.22254571015574,61.51259653346649,44.51261270255642,81.30618867742012,49.87444857687423,61.95437047354858,43.98870234599783,3.4063210528538557,81.07205342397977,70.94884691598907,28.44562773025561,93.77267429085207,89.5581811385439,78.36843631776131,92.24990540499027,14.22648088919839,65.43959205984244,59.920183709188365,94.84400239019259,21.897798490198316,25.26350510658788,1.4050486231803938,86.52524236992846,12.057784189678532,71.3021278515262,63.10769242500093,73.22572811584625,43.51289908735545,31.472825039307793,25.539479134414634,36.99263882956858,82.35297499476569,26.65900051584529,30.119672803940546,53.78259447010788,11.022796565375392,4.1336209984078165,57.33032062722796,32.52148370729881,55.27800872933896,7.921765318368534,26.3557794324911,74.77215772294923,41.17079509602032,5.9605531201143975,38.13988933537531,64.34187122600301,37.378554664823305,64.71248443826741,76.59169668926596,42.23740627453928,97.86922335996822,73.01255699868533,48.34053080681067,94.3294766735665,4.926710290708058,61.15759224849826,65.13407001235035,60.21353379135582,59.525789318672985,62.20369449577278,6.509562649274359,49.38664710540852,24.443512357165208,43.10908586651916,26.719232174234307,62.50703125149555,60.83628500079692,26.984644052462926,14.772095553207754,50.04599778501297,25.14071715708277,53.601739016049656,86.57050840837766,76.43545574764403,94.75509091046665,51.50093916227144,25.55043206763996,72.96500427879829,13.12674132701559,51.38975811638565,35.706070661459385,69.74133194883464,96.62012080013052,49.52878527061301,0.02376203594010029,85.42387376192575,5.274569297523524,84.04121781364627,45.80242059661329,90.08535288134716,60.06207641807878,68.25304772152877,51.92369442856002,3.781634787249244,75.82070613773993,48.79303548625654,78.30521348356253,79.45686516070171,85.75206192436508,90.67804704509705,77.03020252065339,65.07381729672066,32.553261799077916,96.45439817473762,42.02530079544714,60.85620247799527,65.84093828849619,67.84367293524063,22.488892446978127,52.103214967954145,34.63218743393517,70.29867348335583,52.00661789590444,63.35638005884755,4.404871664062171,7.792878320518604,20.091339017577003,11.429311288506561,57.60176368177275,47.63416439699329,36.84418686303545,45.70192382270749,50.45584755524247,73.80900760845222,27.656975771513004,26.51579142951799,50.780697642935976,45.940984051336564,61.3146042109541,44.499570568313786,77.0119114833607,60.76594540995135,43.78359132272786,89.81894900242665,16.330554429468393,78.4653706775638,86.33439548852155,71.52430662996451,92.05704998900832,25.8675255482254,56.11516065847497,17.879996067168747,51.27417953298554,78.0711666138696,69.75376380939142,39.18121942747682,86.08807804824849,73.53841191714857,19.157124956642146,85.02518737864922,64.81759044683433,61.98892231526035,44.99413445920217,24.615448680843578,52.51914441775286,52.89877975164333,21.19854248057149,86.99726981306866,37.34159602643538,50.57065105207449,9.996009057544942,0.04728430524676419,71.07457921084192,10.092220453830937,73.88903068167501,4.316726066816711,13.348657364570805,94.74567086895712,76.70634541962353,1.3079924355363537,61.22929715391899,92.62671475845424,80.16994047205624,86.81488044557044,65.40524252924433,84.73237849647451,37.297654981790195,79.32976854326056,87.07567689562724,26.985132958063808,44.819731829545105,58.85700564800208,95.03672775746085,46.523199827941475,3.1276343908189452,74.69233174031044,16.228424473459956,94.21537589175689,10.008434263438703,26.73117354305773,76.6932012968177,82.7758751877041,38.20825346829773,21.3234702890006,69.84611517752255,12.680753798535715,10.435009664776695,79.89468591510924,43.59396607303759,7.003723560134234,2.96117487099935,77.30665799849355,47.142857481903555,99.39156108878345,66.02419505786541,85.39168120318364,21.093621437006217,52.5931097614268,48.468160775555965,67.6813170397776,82.18710927253171,56.809023351537704,17.74891042757627,2.5023498219326923,78.18588922863879,17.33107577069758,61.06416592035173,22.67303009589967,69.29379387236423,31.964446591634665,76.96068049041111,5.14412725743102,95.11237453421626,8.312272662262842,93.6621577739415,3.6015974373969084,8.115108852114329,68.09867922566573,83.93369571078891,23.976420219710704,93.08176892474943,36.29709752617747,38.563398401416535,60.551419237454894,40.20977703164511,78.05504072565957,55.31481910052892,13.005552393353536,43.32335542510924,81.38698248235195,84.59647702030351,4.088447409299533,64.57650032031073,63.182774272790844,35.90438147880353,65.32815795602352,57.79960307967842,82.89083521572728,85.06709879694685,23.898964660930865,46.686973459004065,5.424134851812045,95.84760698080595,48.50300917096081,84.63614795351273,33.904101047682204,31.78012893850708,17.14769804607046,44.91348131313584,54.92208465463172,20.87735086547321,89.50187548864494,22.78419673044205,99.1459560135338,77.09036537972462,53.01913548178921,43.54208610454613,38.391593036407954,92.39005123362341,4.061095734633846,91.60978969562034,46.86427389595994,76.45984486998985,23.66991750416504,96.13033684529776,1.3305970037958414,21.421079869415006,12.518923113230107,28.1030018100455,25.583238737515977,92.83844454465388,3.3912162615573838,94.7413357375412,47.32252887072832,13.963161731591256,88.64063522369288,92.24941278177887,71.47437229498014,85.52413115816327,92.16921398883083,29.948833165182453,43.110612481221885,7.862667788890565,92.76334381125926,4.434194028327076,76.3374621772386,79.31000911684582,33.35147181406525,52.58283374205024,67.12445046319075,34.52339169833879,2.309749477086942,25.225788682933313,12.871609413806295,43.13551022324182,52.727935578098375,90.50075750231878,24.373000917162134,28.294172864434707,4.138618047133747,83.7640551181816,68.5252373335675,5.2836393490790385,94.4715631031028,2.489461696296047,37.5286485983375,5.1691308969046945,5.900494483191599,58.9612626181963,73.40004278892513,68.53412844586104,75.56461653937858,17.922280820543214,6.959555301650589,26.67728667287197,0.32627246802389154,52.945490463596244,88.48964921629644,13.04820881014843,79.42931174332057,35.96989103300747,86.56791677775338,37.07669897204029,7.498794768918982,64.01749800424469,26.92522827868099,9.90254128112591,27.948967648869015,42.687225833945874,53.62334214902504,31.424997812786557,63.03685354812457,7.70275271892773,28.604903715560027,98.1358219211573,78.13287513022307,8.849561435619446,54.2861845248406,43.204786423535225,19.13822779589822,92.8787613159055,91.65666332110447,15.747498103883284,67.50359815236013,92.94807680013129,39.07356047496516,38.76923678420836,24.499235824722366,44.910336476771775,16.735944727878937,37.15474174382799,81.59832799217727,65.45304604064111,37.77240560954598,94.70044314638623,91.25777917757624,13.896462752368045,52.56138737484195,36.97368022183386,77.25322460205871,47.36784376029971,66.77852385950357,99.60618363375325,55.467920926372095,83.49161211233827,5.688211667054254,57.05125610851424,10.922706418919702,90.67614189796723,37.19521893443597,45.950525974541826,38.675729572979854,41.53649105579144,86.48530291021692,62.91345112198455,71.9911923309457,34.935908521403626,54.709215789573086,63.51057832939059,75.30440016966116,44.210392539305346,86.40668975745899,12.0974030002985,80.34570212834166,52.235890307109,11.11470444067123,15.89189277340025,95.35818076031154,81.13515420929197,80.23267911041988,25.2009349544553,91.56820155208302,11.880388623711703,98.59794864070712,94.76074821038883,18.33322606169885,20.228774868290657,58.0923766345603,11.564925797770286,20.12825201488614,40.322871882613065,92.38208538473617,29.392701538130982,21.111579499743605,25.05164558374774,27.61904175605786,48.2663346198553,86.15841843703083,90.18804180214435,62.30935336550001,10.180951177655261,34.50118125329388,65.93309179112342,88.51406493251078,68.5561296461654,4.659667567981596,79.12039768553981,67.4128598681138,35.10215945252322,61.33526935729656,66.62777143280749,16.087971771142573,60.94602572382335,87.74346542128715,92.18664388841744,84.11401795428193,99.01832505719356,22.126510440819157,78.0418570147553,97.2939887741606,39.49719999913604,38.14125252469417,37.40241666815235,50.54192459043211,95.33100435271211,33.341068452931744,32.42925792648246,81.01209842422159,60.646452375915146,68.02199879591959,92.46943346643296,31.898965370466335,6.535431021342697,7.300965681135352,18.349609904790263,45.42929870898828,62.55714340408336,69.52727643044999,5.840452375438632,99.0148439543083,28.538352093943665,85.29251624820122,41.81824178571302,50.9795349329086,95.42570564129082,94.45583638728722,13.633140346209982,19.564391022610273,34.73589554733382,97.60280336052593,53.0894411401306,81.59974483984352,54.9884209835348,3.8200891439310602,30.794670182643124,21.266590175224632,20.061698141857065,72.19417628757401,3.1926885188847676,17.896479018170076,13.387824924116066,59.49797746767154,84.87943465667286,92.08196532245402,33.353103944216045,6.5298376642757505,93.30749411373176,57.790082074291206,19.253258456742948,24.05605692333628,71.77684740207636,4.7251896795560295,39.49750341647986,47.390663529217115,83.180174134481,26.35105814939076,99.07605298961701,60.29615994061043,27.062272233855424,93.19983659996606,94.50672830668387,76.06570174380836,77.28757479551905,6.488947447418392,80.25746220792456,92.26948264695493,33.10047381583934,1.4273518508919114,59.27097806311341,0.8625548988893672,14.72959916227472,91.4944252579025,42.327942635717896,80.59114661604468,60.858427071949336,18.75032257629573,65.30644863477396,35.78919870319333,81.57819910578337,63.972801365842166,94.06698951816786,86.57057420071833,96.48311754950598,61.46933274029826,84.32313160936377,74.95379100504452,76.48520091898033,33.730853420155086,1.2761859797778774,64.9968854925829,84.15828131911715,27.194603112467885,89.34583242224609,9.838816506264447,34.029084013901404,49.20717451086322,53.61582310722035,61.460159763747235,62.37922592467873,81.55281701784037,75.6671778468978,26.08095041612404,72.2078162853773,54.02214560457852,67.60006930181463,80.33908137259911,58.33116493564695,23.04344262599749,54.775645848932044,15.673672424935104,43.45789909526283,85.54803143889599,66.48702245068195,22.089617267052798,15.848193092167795,12.202230842550643,90.60225251627796,90.93975373145398,3.5938052880718607,40.72616314454973,99.68156609799857,49.796796278373,77.01876802328391,35.341194989230615,29.217294468493684,72.51591741699693,74.52674121956832,78.26859695861286,32.14022189451813,62.10487707742214,93.59743477023812,49.36648213589502,86.95429774991467,35.725370080138475,68.62820308884994,53.04245483535439,2.9690751521262326,90.33455484683073,30.53018605937122,72.87607949475989,72.98230568959198,1.0251236895571947,16.61527065758487,4.591761172231412,15.816722629236303,67.35449465780282,57.611282080403626,39.06870079725313,76.8806009172338,40.97993409903423,12.910178178538978,26.918995077614817,40.24380818304789,81.91477785994154,61.0641491228333,68.2830225960377,47.89717212896315,95.7581777529774,88.73931484813421,99.46919552078126,8.166340148222329,71.76127613219063,30.62924297325067,51.12793590458706,34.564265315869115,77.30301858204368,19.136088290996835,47.13568765909862,16.429730457578994,41.44302094313057,13.91677516222829,38.2102424738584,11.463494327435475,72.60208792654173,70.79887498678322,20.65494478305878,0.4949362315545769,47.691038514980455,1.1968952126365395,9.1997556050325,99.65288970091272,23.260091135403293,28.19943570654949,71.18061273689568,46.7328288859445,0.490584904552005,9.227902164678603,79.96852448796221,97.78827268314244,97.01125192499406,67.5702336638363,55.29360569312557,35.16576744966825,21.579349036014428,12.417739211392254,62.02529869127195,13.939585828921064,42.26557223767732,81.23758864896358,72.61897427985657,54.44054722333917,49.719526466279085,38.43099885876742,47.40788074672289,48.196767914126816,1.9958840832276836,84.72840401463885,15.748671719285667,94.16231374000283,41.51468199106607,49.71361756924277,47.78496724044432,68.18885896551534,23.988291719600554,17.43237448476631,11.2351174296778,41.98102832469761,98.40694813076999,56.445618813060726,5.987811145418598,23.99401445029863,23.67417603605726,39.96572242896407,55.20223305432943,80.86606102476458,90.32369292937807,12.570521500791788,0.31227584946300624,60.21450454131213,1.4231940875364835,17.082506708473645,76.46945485215285,53.05891945504464,72.02034489029553,81.01799366406199,67.4708174764864,76.99778924401504,92.54615144079004,79.28398126645224,50.67016154582854,15.431445850812075,99.16542036977731,27.234258310289338,78.13980071303256,69.22181878857876,17.329559051279773],"y":[2.9962154061517256e8,1.9137116650786788e9,7.751233508521355e9,1.2119408194955704e9,7.255471259110841e9,2.7871621759522724e9,3.0275229851398544e9,1.8566302588980277e9,1.199826092816184e9,7.3751971405475855e9,5.765477553195412e9,9.398340494548716e9,6.71873461025876e9,1.8195499604937449e9,9.794917725592045e9,3.9915031226471076e9,3.9044242882802725e8,8.803442632160376e9,3.5572474753714247e9,6.192611889967079e9,2.355204510864728e9,2.9941939842077193e9,9.624533180581852e9,3.689965256862537e8,9.667245265212349e9,9.28426741424024e9,2.0176866917571056e9,3.771518146704521e9,9.746339062945747e9,2.0743228534706104e9,3.0922559961896725e9,2.2710181590951595e9,5.846354787130554e9,9.320406393337044e9,2.897648883622265e9,4.180379224659019e9,8.921382363110542e9,7.568210173499927e9,3.2429144656388674e9,4.368149339134408e9,4.1146679929957743e9,1.9910396001706986e9,7.990794500533037e9,1.2054058499694731e9,3.431447513071684e9,5.473821710271486e9,6.528842325370902e9,9.109642329012026e9,9.032669788665384e9,8.349209810982251e9,6.999816326770665e9,5.152568512086253e9,9.423005933461348e9,4.473783124353824e9,9.32213656397236e9,2.855293249213834e9,4.509343115059361e9,2.661061560238598e9,1.4492382376178482e9,3.5302269446609945e9,9.35887983730436e9,9.732877137477705e9,8.031862347924939e9,1.8928454300967035e9,7.081072704220532e9,5.55787063159761e9,1.4616712571451273e9,6.935291245042562e8,4.980563714509434e8,1.142336901192722e9,9.378693394396873e9,7.084857284889352e9,4.896027119726088e9,8.698614623763088e9,6.96274177776908e9,2.6296757442701325e8,9.573954135794256e9,4.745767725542866e9,5.556596649948931e8,7.628214770859486e9,2.8123649531887097e9,6.033132907582069e9,3.859807362568656e9,7.858238385559449e9,3.302266884895313e9,7.440899997168612e9,5.5260260761199465e9,9.80746233962308e9,4.615915677940999e9,1.3117175578868866e9,4.767520243562637e9,9.212270728318317e8,2.7694568839199495e9,4.238032441784706e9,6.781111337343004e8,1.7059320786581888e9,6.459059506250231e9,6.906906175477128e9,4.663971130393378e9,1.7962755329203794e9,2.5947567891687574e9,1.3698694069681084e9,3.2345826263824706e9,4.544749059468189e9,8.479120643748033e9,2.755181305545681e9,3.664871174761242e9,1.9839515559806066e9,9.323003467131857e9,8.466381041523524e9,9.751640258488142e9,2.949622068806901e9,4.689667408092185e9,9.579068335571798e9,9.698272235349474e9,9.064334766361347e9,5.220775835837377e9,9.965228435791525e9,2.895882600961074e9,4.1821050182843924e9,1.6266303604108012e9,9.15955178216539e9,6.282629243653922e9,7.17626418157336e9,6.1588053051858425e9,5.589699636545875e7,3.2066728178293557e9,3.489603325469992e9,7.033844271997658e8,9.994849926295904e9,2.4995945011818056e9,6.478993254617934e9,4.115168258216228e7,4.269912724656618e9,9.244220864917948e9,2.0561956228420086e9,1.3763491658899395e9,8.595762209384703e9,7.184459852185746e9,2.175267563366607e9,8.384552588837757e9,9.24206072280014e9,1.3838291660817802e9,6.911265723050973e9,2.588766355297246e9,3.7741408673591647e9,8.451510101545239e9,3.9262563154888077e9,5.153616178462306e9,4.2080199842199097e9,4.195249783429933e8,5.106798967422678e9,3.0241812791679835e9,3.753951476137799e9,7.450918189855602e9,9.377987345744513e9,8.009370215031767e9,9.851069382222492e9,4.104410635122323e9,3.2766769027357864e8,2.2762591239449925e9,6.408923689087981e9,9.906129724053026e9,4.614291815407348e9,5.294345208458109e9,6.392685780642069e9,5.450839287008841e9,7.559104898209772e9,4.597333897059224e9,4.648739623294719e9,3.386981507756324e9,7.26664341195024e9,1.4625073209093597e9,7.81934706086717e9,3.038299735207952e9,6.232471410055569e9,6.879506601040908e8,6.366473811322712e9,6.790213477439917e9,2.4125798380061603e9,3.6965523130742526e8,2.4976054191521235e9,7.736076767673683e9,7.80006899566196e9,6.562612751893966e9,1.8581869119354887e9,4.0756627281164536e9,8.65843439412798e9,2.1778452785200553e9,5.9349807440992775e9,6.045937446421075e9,2.1498449882145877e9,4.636506193888519e9,8.5858811873384695e9,7.157361528575349e9,9.942316125996797e8,2.848083279064373e8,7.683447569336992e9,7.440160012545255e9,5.647008733981695e9,4.994947710083357e9,5.876653569418562e9,9.96626996675732e9,4.932976402019704e9,5.169766203311234e9,4.911246132431533e9,4.75855443887264e9,9.66856908864853e9,4.52593557236661e9,4.680893835101352e9,4.827754445795543e9,5.382251856859721e9,7.5994479374166565e9,4.281396535720121e9,9.428193028346127e9,8.313443643255073e9,9.755068847136534e9,7.522035300839607e9,1.3729265684387348e9,5.692051764858401e9,7.973116987093852e9,6.910667191848462e9,4.964808302823167e9,7.449067083779681e9,5.771082585869595e9,1.0162013282074434e9,1.4633119174820576e9,3.2140643644756227e9,7.601558667482991e9,8.97414146971387e7,1.8006973733514974e9,9.699782776934195e9,2.91660743673942e9,6.485768901463919e9,4.630861059582296e9,3.8237854006021733e9,5.442186307164784e9,4.125468467616291e9,4.95172761615536e9,3.9333086554724317e9,9.691038997445784e9,2.393007541057046e8,6.226494382105214e9,6.312855556767612e9,6.529901852720437e9,5.304614356877566e9,6.552979257923106e9,7.29212564720391e9,9.896206857312885e9,3.8863444997214704e9,6.205813041717131e9,3.5108219550279264e9,7.081447713610486e9,7.278614516618699e9,3.7626720278820624e9,1.0370965581896253e9,1.8579204173568819e9,7.973676262900633e9,5.839402270155962e9,5.77166301042332e9,2.982746089071974e9,5.174960187641971e9,9.060735753304035e9,9.536868717496698e9,7.155344511989142e9,4.311964886101257e9,9.535424740404934e9,2.260779769206632e9,2.687029250933939e9,6.002265552185454e9,9.359707811815517e9,4.277252478058048e9,7.026080598649686e9,6.372984319242986e9,9.365611894320189e9,1.895332293885217e9,8.934020983251858e9,7.014466950185992e9,3.043349221607944e9,9.619969910295715e9,6.868694135523124e8,3.667946718733356e9,6.504795594849266e8,3.294922034175788e9,3.509862063927246e9,7.788302829161564e8,9.940778669691803e9,5.730473405695479e9,7.190132454292834e9,5.731146305866852e8,7.713578696410434e9,4.542594802492596e9,2.2643166321130404e9,3.158756018531772e9,2.4493483725579247e9,3.228829565859709e9,4.544444952994131e9,3.5901700819084415e9,5.867951131599458e8,8.306941517192127e9,6.431789915145292e8,6.809374447805936e9,9.125731164349112e9,5.299130853088028e9,2.225068216284074e9,2.626658991235925e9,1.5098666391179538e9,1.810574090946452e9,6.034431032191969e9,3.220326263877731e9,3.6935859293747764e9,8.944502322861517e9,6.861115793101409e9,7.901391929519615e9,1.298752968658068e9,5.070769088848555e9,7.201330766156651e9,8.951787664626307e9,7.56738824983091e9,5.794772853393202e9,5.489079112109612e9,8.713633410411106e9,3.7570070124810386e9,6.615813475191054e9,1.674915897088295e9,3.8664600403993697e9,7.8665382768341e9,8.977510164575022e9,9.920409818609795e9,9.562396812837492e8,9.432858755067654e9,9.732082585371597e9,9.783156890545685e8,8.886521178697754e9,1.281513328260847e9,1.5444586636122248e9,1.5908690374127743e9,3.277277749893793e9,9.212607542167595e9,5.24537976029614e9,3.5530833381906166e9,2.400852937390796e9,3.901285390387045e9,1.8093018694817686e9,2.4508722073839784e9,4.32880639500853e9,9.65884822672632e9,2.1021299838860252e8,1.5339632140554438e9,3.6583381367635803e9,9.226540999930044e8,9.98378174557473e9,4.898124552001893e6,2.173552425036409e9,9.129095462926395e8,6.720180609058329e9,3.820557013812449e9,7.304334713092039e9,9.866371297973803e9,6.152490638608962e9,3.047030744156172e9,8.247009853814681e9,2.4825398165238786e9,8.040211573867416e9,1.37974839742099e9,3.330579192040573e8,3.232354988544198e9,6.055735902209907e9,5.949480907914731e9,5.045291179427894e9,7.788087135615005e9,9.963754607814163e9,9.974566271591812e9,8.595342916066935e9,2.398030190614433e9,8.78547763954274e9,2.111945182133742e9,3.4220617839898624e9,5.739339479959549e9,8.4485235619108715e9,6.542074156705724e9,6.9256949056638155e9,4.1555819388099923e9,7.209245497807776e9,4.569968173933481e8,6.754670207623678e9,1.1289715777181075e9,5.37550341812666e9,5.079315385770227e9,4.2167733545964947e9,9.606597397103542e9,6.518627685349543e9,6.948254478619303e9,5.790247552541188e9,5.454212976011484e9,7.861210242170491e8,8.54855537255603e9,1.237694990830419e9,8.659557880034412e9,4.466479760912584e9,2.8606290226818156e8,2.578358351917388e9,7.637180422818888e9,7.583824134270811e8,3.4686128257682915e9,8.74660691478959e9,9.420163818715643e9,4.254237806263482e9,6.590393959819812e9,4.547033317067919e9,3.648360252401731e9,6.227760447382598e9,3.8426359672090783e9,4.353254164215965e9,3.894724207962094e9,8.948204434936417e9,8.080645951538674e9,7.514289300510258e9,9.965410746725856e7,5.784629925405297e9,5.828848511489996e9,6.8535320018262825e9,7.336497568606101e9,8.137520440295298e8,2.7320809604179597e8,8.905621540153692e9,7.930370642709116e9,2.6561143180099e9,4.736605639431881e9,6.65026259147781e9,5.356124441336565e9,9.671438188258436e9,3.212274290218252e9,2.4290922052973452e8,8.371876712000114e9,5.979701108223157e9,3.212064948423694e9,4.434938615330414e9,9.637560061574705e9,6.61244848676927e9,8.897600836756409e9,1.3120343010811143e9,6.350015085061655e9,3.796636220736853e9,1.180803392766916e9,6.44400934128127e9,3.959312508590127e9,1.1128151681519415e9,6.229833036224262e9,9.346219365522434e9,6.894041882844815e8,7.589229781306642e9,3.708939862800621e9,4.712735448550144e9,2.1390158064721675e9,2.1399898502587166e8,5.752325234198089e9,1.2351304306292531e9,1.075537582559294e9,2.98034152287436e9,5.634142069327734e9,6.660632217709408e9,3.7162795339113107e9,9.721695762145954e9,9.45581224564161e9,8.321477436856416e8,8.104556793821076e9,6.545600716947013e9,3.5497420215892663e9,3.587640892320487e9,6.313161564667914e9,6.496832324771482e9,8.082374392007751e9,5.275027363253652e9,6.197913163027889e9,8.61235531533099e9,7.747580241245704e9,4.0772778914748764e9,2.6099612616574607e9,5.353574981738063e8,8.126125640853984e9,9.356456674260489e9,9.179832285004269e9,9.850422835655281e9,9.481994730677639e9,9.244471021396843e9,8.119198512742537e9,9.595016345092861e9,5.970605344541982e9,2.7556541748041353e9,1.1671208951152413e9,1.7753956236961498e9,6.499179709946721e9,5.635986971637143e9,5.888470498023117e9,4.433534002801455e9,4.372770123311931e9,8.074004766245068e8,8.66564655370445e9,2.1673083680375514e9,3.6251456356219945e9,7.634154400528112e9,1.1891594643039793e8,5.218430903863225e8,6.326918532330458e9,8.435318916363549e9,2.882350538197471e9,6.519588920223352e9,3.4490105564091234e9,2.5213849726471047e9,3.688928956174171e9,5.906481198672633e9,5.920552056196685e9,5.721517260854419e9,6.602137021116323e9,4.329352893481478e9,4.025369706813302e9,4.31324131258019e9,2.0771376322476608e8,4.733126250244589e9,7.350447117558025e9,5.023372199580592e9,2.7069544480799522e9,4.0238875969048815e9,1.4334193692870102e9,3.4209350321164746e9,6.308619728686666e9,1.370995867843292e9,9.395790238067248e8,9.889205712590466e9,6.975888037417279e9,5.529536299241244e9,8.283557211268483e9,1.9936152863844059e9,4.772727716350394e9,8.66207630737373e9,4.412672463684632e9,5.538798081375694e9,7.431331997788784e9,9.915097934741068e8,5.771639762629098e9,7.781726850409154e8,5.716313475291099e9,1.219263604739107e8,8.854443716067078e9,7.513308775955211e9,9.45773714971728e9,9.189434203278467e9,9.745951431890257e9,5.413344909990337e8,6.8271213628544235e9,9.405322245275707e9,6.423618164785748e9,4.334734809119656e8,1.3512812698602428e9,1.22877135295708e9,6.838271601222338e9,4.847051734484358e9,2.1181471165021636e9,2.313384971477721e9,7.633429936515601e9,7.999747604301621e9,9.031025259624594e9,5.66700946738058e9,1.6345123092438874e9,2.826153350928754e9,1.3107353854713988e9,8.499115991535937e9,1.7789746959269059e9,8.312587780138875e9,9.363981208206802e9,4.443007063984482e9,2.2572618301404777e9,9.733966857435352e9,3.5057867346156335e9,3.456208975658931e9,6.881748809769488e9,8.647705561370253e9,1.4064895970711367e9,1.9712711584491982e9,2.009487028152235e8,2.0752398581381714e9,8.373572756336677e9,2.0394972613327134e9,9.142538816106804e9,7.364817532340735e9,8.312825905836219e8,5.294216204137913e9,8.223178754942674e9,6.717526856048907e9,2.0767399020101907e9,7.297981221001376e9,4.548975314275504e9,4.277212510646681e9,1.1854789750900896e9,7.32754129928419e9,5.416968073250026e9,5.5992126378878e9,2.982118344669524e9,1.5203889335371678e9,2.5219983717673798e9,2.476659795780676e9,5.998718140975078e8,3.835433539041211e8,8.169060788854079e9,6.14463154228314e9,8.142527172897708e9,2.9385072599174333e9,8.407306043066994e9,7.154563973904122e9,3.3511285721308503e9,3.259862747939207e9,3.392378067945883e9,8.452058488661976e9,7.321788857144671e9,2.324928656790425e9,8.775819123424582e9,1.4249099035499758e8,2.368104518891998e9,7.529254109526451e9,3.324869757654696e9,1.0906814905253215e9,8.212066176710712e9,7.559885167912514e9,1.4873914767924967e9,7.663806654620628e9,8.931888639669558e9,1.702934615521635e9,8.96226358480978e9,6.073708757286345e9,8.339846410923768e9,9.290803200568293e9,2.440335159195537e9,3.12792144842474e9,4.0868336864250455e9,2.5902436824950905e9,7.79309382347388e9,4.2740156887949567e9,7.912874181029926e9,3.6055289703078275e9,8.537116309342285e8,3.395764520742104e9,1.4951127247989604e9,2.0592778480679786e9,2.8243705485401683e9,1.1312322333327508e9,3.675412265934909e9,1.2635003596363316e9,7.100862393870262e9,2.5131650082912393e9,4.574255016345618e9,3.7932706556587615e9,3.4500409491382065e9,5.825176430641832e9,4.7240516062536e9,2.0935464880653553e9,3.759999785988006e9,8.256036212331996e9,6.5390294563715105e9,9.752009234932018e9,5.062370948837221e9,9.513953741985159e9,9.487789876099676e9,4.632047467044935e9,9.309539696127115e9,8.78381149435909e9,9.312089470378155e9,7.66112178120447e9,3.5063826149833164e9,7.377698378385099e9,3.282367383381547e9,5.958216864093513e8,7.717645064660782e9,9.598266279243406e9,8.735230727679142e9,1.7621220393050308e9,6.029945431435094e9,8.276566545820135e9,1.3278453007043855e9,1.0026738087149988e9,3.752644430080818e9,4.0728989450625286e9,6.875520366243583e9,8.8302098417763e9,1.0860964060920353e9,2.9656163957787786e9,2.305895039505437e9,4.980115797867134e9,5.621447890581136e9,1.774735627898405e8,9.30590031965855e9,4.417619443370637e9,6.59079711951349e9,2.7741294964466457e9,9.08549145546157e9,3.039973971121419e9,5.797642655935549e9,7.2597652178003435e9,2.979062096520516e9,5.662500473024079e7,2.9492827832310066e9,8.102247480180872e9,3.966023454197432e8,8.1972705544908495e9,4.2250141415951757e9,5.56288528156552e9,1.923495407252469e9,2.9235452857972775e9,6.736834244698762e9,5.817623733548976e9,4.358754638001287e9,4.292004443824432e9,4.88954674682061e9,9.159444303380188e9,9.610924844605661e9,6.461273606195941e9,4.896251011869947e9,9.72126767801581e8,8.616603691970474e9,2.373720354539156e9,2.6710839373084826e9,3.2668813222095428e9,7.010320422565677e9,8.333870216803009e9,4.3146572338507605e8,7.677481695176189e9,5.927930221218094e9,5.886781847626861e9,5.0214166757607037e8,1.997127669240505e9,7.879175239843386e9,2.2650075748398366e9,7.703534228699343e9,9.508782050102589e9,5.196009309827365e8,2.1126181735716798e9,9.507537112837975e9,8.75392605626531e9,8.849481915458096e9,7.497697008742918e9,9.720934241903278e9,5.729247516656397e9,9.001832429249223e8,3.8075363529296446e9,2.8070216001530433e9,6.842270974586036e9,9.143339319062052e9,3.8666326257245245e9,3.7323581643864536e9,9.653487352707165e9,3.938223810982241e9,8.172796195366513e9,9.77831087711815e9,2.3702219787132416e9,7.386412698279775e9,3.4656279552310877e9,4.987873404704264e9,1.8461275375081098e9,7.288244016236442e9,8.724711237979244e8,8.257714409023489e9,6.355602485531692e9,6.605102108053655e9,1.2226000413785887e9,3.2772955678195457e9,2.7139231642755556e9,2.722342393997541e9,5.683460037944797e9,8.030481250684982e9,3.6363969915426574e9,4.272579319774339e8,8.0291136449764e9,9.833888877159702e8,6.498816068871832e9,8.138501327299328e9,9.830815696886038e9,1.1883113070087826e9,2.11920591822643e9,3.98770066895244e9,5.177950661276887e9,2.8828749108503127e9,5.34426402263927e9,4.895962234050348e9,2.496691020898234e8,9.970006695565026e8,6.391390751185694e9,4.766763946216374e9,5.320320977375923e9,8.544397304582512e9,2.5469794585068207e9,4.812357053412469e9,2.785834118957221e9,8.142383533774602e9,4.79221737378893e9,3.1634544949888043e9,6.6485743510163355e9,7.770741549785975e9,7.736550205280713e9,2.035285838913191e9,1.7572844991611636e9,8.531585204917158e8,1.6982218976694942e8,8.239378018332873e9,1.5125077299209344e9,3.2292407769055643e9,6.936284430679062e9,9.5536379355664e9,5.506167456667673e9,7.726210320843301e9,9.216001712283602e9,4.892449810253141e8,3.3850173532782345e9,3.8608241578985405e9,8.771980108023232e9,6.42980958136874e8,1.0927144546445721e8,6.038283560251153e9,2.0291899694641845e9,9.081438522808062e9,8.909285498377985e9,2.4174200300510993e9,4.38279093878762e9,4.44823458438821e9,7.7286755239246855e9,2.408568812825047e9,2.384809624716735e9,6.666726684243352e9,1.5577034046402738e9,3.291572533229982e9,5.1660906514525175e9,4.0789273629915514e9,7.945325528046076e8,9.748575270539494e9,9.120194811448734e8,8.527479103962984e9,5.08762388849423e9,7.521247912328224e9,1.7472857426861444e9,3.876201379698796e9,8.053622256850702e8,5.19670886856125e9,6.810530346402797e9,4.65097835244679e9,3.166898906110355e9,6.352937121331502e9,3.048986570317067e9,1.1578765940846925e9,8.961429022437244e9,5.691409916809378e9,1.2947608646426013e9,3.960521098224895e9,8.195764107524483e8,8.704147423749393e9,1.0408267797598559e9,9.238338490527988e9,8.38746053441679e9,6.225346925540106e9,8.084044509970952e9,3.408735354183362e9,7.05485456705426e9,4.83959258823439e9,6.938816985962105e9,1.323040976281662e9,7.178562982432107e9,2.5742154903299785e8,7.223586974703218e9,4.625852167100524e9,6.128478815229722e9,1.4133599782718265e9,3.5395961249501586e9,1.627431803264192e9,6.807328322852611e9,7.873547691802602e9,3.8242198991315856e9,2.985027814204285e9,4.71971341698579e9,7.280368411370104e9,1.3098750063215914e9,2.625266232438278e9,2.9242534917443075e9,5.37579478475231e9,6.605374129123458e9,1.4715192058551962e9,8.795432943116371e9,2.6508218522966886e9,1.9677733091730177e9,8.428156753958709e9,8.11092919239364e9,8.975660482964396e9,8.893784102369267e9,1.09576332093832e9,5.822693846619409e8,9.926311914053774e9,3.0747909823645234e9,7.1454213400884905e9,1.5074065519058987e8,3.258985949985452e9,5.202200830432091e8,5.6758279606359415e9,3.8202425229363456e9,7.298830815201586e9,3.2593874027292304e9,6.225436269990677e9,3.035286819611721e9,9.428112114617134e9,5.368901234898027e9,7.455632258073897e9,6.728354100624579e9,9.681505298676147e9,1.7126793182241817e9,4.701269652724336e9,1.28113736050941e8,4.248564061257988e9,4.72018701232287e9,5.089994279992984e9,9.465306968343923e8,2.5430774693024015e9,4.2828370783030124e9,6.217286821249493e9,6.114288827775994e9,7.608143570669466e9,7.043546651338038e9,6.875653296878381e9,1.2898417288313613e9,7.9634404162563925e9,7.926242729296484e8,5.447395260170436e9,8.229977335375306e9,6.669214907209508e9,8.753623159036787e9,9.08165174955159e8,8.05870215229107e9,4.820212047757657e9,5.675762102791935e9,9.874828112336248e9,5.11198246615446e9,8.782428911032555e9,8.033876709993713e9,2.2106864442433605e9,6.92139418878467e9,7.018536326363207e9,4.7354984332430685e8,7.878677512143263e9,2.635222911592866e9,1.191469084195308e9,1.9225241942669725e8,7.177610706216381e9,6.055278723359953e9,3.953614214032345e9,9.321777218120253e8,5.161676754580491e8,1.715496398168348e9,5.343560342322369e9,8.00265199403894e9,4.429386105721455e9,5.65034475087407e9,1.5529237069042745e8,4.0833665343992043e9,6.942923755556367e9,6.9612250206000805e9,4.0711696488373785e9,4.237689072718226e9,1.2720926010168765e9,8.585153673111062e9,5.995238414166308e9,9.898431872192427e9,8.374951274268377e9,4.237311455224952e9,7.196383187443501e8,9.22820862365847e9,4.0478642894207106e9,1.504758067900993e9,3.6388139654530115e9,6.057769461143804e9,8.649642187327425e9,5.740828588067542e9,4.547635066393903e9,1.9965978778402892e8,9.33537159904879e9,6.302135039945993e9,3.152525475714142e9,7.508865219016461e9,4.560752818743267e9,7.008370387678614e9,6.196790076021211e9,3.246534868584047e9,6.070613978391416e9,6.2073151256687565e9,2.607385716843216e9,6.697939614427919e9,3.0963192716964307e9,5.695348278071836e9,2.5695839092666173e9,7.685123345717213e9,9.133005569465443e9,7.426580238121441e9,1.2498164617138674e9,1.4138683609181092e9,6.217234826004935e9,5.712897654438685e9,3.068607845740073e9,7.178706898693701e9,5.253427055149129e8,1.0426373458052241e9,8.647033660185083e9,8.220620032930189e9,2.0334201900673144e9,7.620755521449974e8,3.9486530003650975e9,9.566978124444166e9,3.9654102671376734e9,1.5255887591624672e9,7.255487819533341e9,3.0573675448415947e9,3.2910452794889746e9,3.8154480781521726e8,6.641170626629079e9,7.235073919648037e9,3.712822636817308e9,3.8977696112382e8,3.773645851850241e9,7.698029075592356e9,1.239798620531618e9,5.26118828582075e9,2.5679181400126004e9,3.2588972465826817e9,4.40628324776482e7,9.48035426433918e9,5.320213289339031e9,1.27968220742961e9,8.214866339637087e9,8.174757366045178e9,1.296263418851653e9,4.0869920859050603e9,9.411796420462748e8,8.127835948114121e9,7.86653642408646e9,7.551617906411464e9,2.9565240238370264e8,4.405368188814371e9,2.8407136110060425e9,5.508623677973289e9,1.9030985267762656e9,6.10375359265734e9,2.812043549942466e9,6.118575563526681e9,9.070711483509565e9,4.703136668843133e9,6.318649332749731e9,7.049590859864137e9,3.065015362792947e9,7.701894321222258e7,5.72617886526312e9,5.097916562082001e9,8.36701078784412e9,3.0733812240979443e9,8.92862401708714e9,7.726728167892214e9,6.411923875987772e9,5.758347476388287e9,7.456953324098369e9,8.323934653430776e9,6.135741871456232e9,3.955123527227229e9,7.261316156900237e9,1.9945146026679482e9,1.805710847302705e9,3.1709351983440113e9,4.537789574334198e9,8.187615914299872e9,8.179174354759181e9,1.9670069237427068e9,9.402624564507874e9,4.409343062551583e9,6.713515342930388e9,5.247899692304845e9,3.1387541196516623e9,8.74789804872127e9,8.884792778516548e9,1.9724905984680252e9,5.720557573727774e9,1.9252140547953777e9,8.542610582592733e9,3.016738225825544e8,8.580638965878401e9,8.916198031813627e9,5.495822051082763e9,5.512777321889074e9,5.654288195853351e9,1.4663496409658928e9,1.8722275132204947e9,6.863721319953277e9,4.374385082131893e9,1.8112869254484866e9,3.965000082987712e9,3.5601561421153007e9,8.284847236977982e9,3.648754501704683e9,7.538043163233031e9,1.7115331073376205e9,5.358883365179655e9,7.787299518867246e9,4.899983055058295e9,9.99786179325857e9,9.49172698783255e9,3.8976631255673656e9,4.9987240369345255e9,6.68471432896273e9,7.752972364959868e9,5.729486532153685e9,3.059617760021104e9,9.351568190038857e9,6.089279531798742e9,4.735344172690498e9,3.2022751737102027e9,1.5768708474694505e9,2.330851546289383e9,7.148682718238605e9,2.5329292532752233e9,5.771299917123059e9,5.499750467260398e9,6.694373172087077e9,9.827552527760204e9,8.105574666913433e9,8.734201725190193e9,7.731720791046292e9,5.481097323701267e9,6.266434140748842e9,3.0537708827735443e9,2.940111151909364e8,5.133717340963924e9,3.177000246419911e9,2.2025759863927207e9,3.216702598438903e9,8.803236298375294e9,5.903866356952606e9,1.0055015126595789e8,2.6918217927471743e9,6.330598977486371e9,6.673216488734477e9,4.9666916114617195e9,4.1136961399118633e9,9.103705287590496e9,2.6501691727564125e9,3.841780952786311e8,2.2353941200727735e9,5.072889397044888e9,1.474780941302659e9,7.70890097247987e8,5.464634447475072e9,7.666758209890301e9,4.88829132059021e9,7.148932299786649e9,4.1466650432835226e9,5.53960866921602e9,2.3202447804495873e9,6.300603901579931e9,6.54879817736345e9,5.669258693314024e9,1.2083779281130035e9,5.691730126878199e9,1.1318592303749986e9,6.351822437667288e8,7.924516044307874e9,8.587128464783514e9,4.199733618326937e9,3.212520816602973e9,3.7912545625389204e9,6.664859886809999e9,4.12592258273179e9,7.766407957927848e9,1.8194472412043805e9,7.720411812279101e9,4.1589848198782053e9,4.2630263414093695e9,3.407220308607437e9,1.0766130672118435e9,1.208586413169559e9,7.506295252730856e9,9.05802041176653e9,6.893081501242606e9,1.0045268431440758e9,8.319096185430096e9,5.588602697025667e9,4.371768776302502e9,3.933998236515389e9,6.470614203330981e9,8.64611799979875e9,8.246176484822264e9,7.356549210547391e9,5.998377945570951e9,1.3937063289100404e9,7.687411962385646e9,5.739363716277234e9,3.8106208628494387e9,3.3437871160657973e9,5.798857371365494e9,2.094412855077359e9,3.729557248472506e9,5.145091765852797e9,1.1051770237477021e9,7.539971248207156e6,6.842549257613691e9,8.786246813417797e9,6.664855023829541e8,5.657220929855597e9,9.58517740827315e9,2.930317209602771e9,8.150748206788446e9,4.690629884452733e9,4.647708792188581e9,2.3713198052078056e8,3.5638379703251634e9,9.303706396720583e9,7.834371291049084e9,9.497215504066687e9,5.297089666395953e9,5.834904390294036e9,2.8403902291632843e9,8.966431724159662e9,4.219092800540052e9,5.396467347989548e9,2.1221739439815013e9,2.6225975004840927e9,9.644461440703333e9,1.6273656581744933e9,4.2146397022805915e9,5.705242324107995e8,4.3288683204396105e9,3.209943949225619e9,3.675439968965686e9,6.640415733406717e9,3.4541915353095555e9,4.1095060601408453e9,3.7894082352605085e9,2.698865175182279e9,6.257491090209046e9,7.97956623842282e9,9.215011438495148e9,2.8703170194303493e9,6.918823120486461e9,9.012905740237339e9,4.4530931423024845e9,2.0331201703382862e9,2.0659860055573142e9,5.3500505280032425e9,2.5320736713062987e9,3.5867463872873974e9,3.151653955765953e9,2.5197045212958946e9,1.382644728782375e9,3.602119614610917e9,9.732724374930791e8,1.7940601493566678e9,2.373841509560144e9,2.4215965783338547e9,7.535775913084431e9,9.280342540667408e9,3.318982288197907e9,5.649828761342476e9,7.757280345786281e9,3.4612324071607523e9,2.8173756054563603e9,4.543071552478847e9,8.046394209334242e9,8.919639446395258e9,5.88843668182669e9,1.688745016924289e9,1.907379303524941e9,8.585003307706396e9,5.388811070447093e9,8.531834554154204e9,5.684831510407007e8,5.963788440416996e9,6.325555986804562e9,1.6176571554151008e9,6.993141251701839e9,7.061546892243307e9,5.732336920865447e9,2.7985775704834547e9,3.8630076201837506e9,8.683001550497997e9,7.154548663746752e9,9.500841956466084e9,8.129919501175299e9,4.374057774543929e9,4.168229243680732e8,3.1362900718643126e9,2.3192224570292854e9,9.637746828029068e9,2.7493826355633335e9,6.691503656067108e9,5.499984293946486e9,2.3124484900699515e9,6.966881303318854e9,2.6416590480306544e9,1.0470385809906213e9,2.9407114292329707e9,9.170154089650822e9,3.5347202657571363e9,1.7899822906409879e9,7.799431132266402e9,3.2426477047554183e9,6.658352181860405e9,9.457523830403072e9,4.717219559097953e9,3.3210609820391e9,5.974876989420828e9,1.0480064939819856e9,9.26897607381675e9,7.348349735733341e9,7.71499247070059e9,1.067697878896745e8,3.8854500076250973e9,6.401257101519153e8,9.771488170518871e9,1.4050361687281508e9,5.045583073496454e9,2.0311361065075672e9,8.619700820060905e9,3.7659436644419875e9,6.534405071348263e9,5.482897825598099e9,6.995736573251786e9,2.682319892213275e9,6.850642970053372e9,3.5437846148743904e8,7.381511273032259e9,8.845865832542673e9,6.133786924084877e9,5.944981015135187e7,2.0735260942202516e9,8.271427990592024e9,7.943712197629644e9,2.9099555533091745e9,7.64216306496999e9,3.3124228257928843e9,2.3101905657232156e9,4.33197151603382e9,5.521507204595506e9,9.216648869671772e7,9.80817179336375e9,3.4581782221917167e9,8.453532330748312e9,7.392922603672057e9,3.9516341007034063e9,6.64955881889057e9,6.026112885544173e9,1.911389531409091e8,5.702880260484502e9,8.489861662028363e9,2.239771708908582e9,5.828782694045611e9,8.217615628482065e9,4.964593270952946e9,1.1467166983168676e9,5.2374034078693905e9,7.505552495336708e9,7.49460517531819e9,8.818136779049839e9,7.145911890099049e9,6.224809682882477e9,3.133283173678657e9,8.124812924261249e9,4.1609687885262303e9,7.91265915429484e9,8.158843447694244e9,9.970383921917969e9,8.163414259770153e8,3.3514986900019693e9,8.274120473615085e9,3.701742270931385e9,8.180497822119681e9,8.687307752151773e9,7.188364460961769e9,6.0004954636861315e9,9.178093642554647e9,7.196073403400377e9,5.862999321436546e8,6.866884092391674e9,8.857902615238889e7,5.03302470090224e9,1.3544001330764866e9,5.799367653023189e9,6.48205752425661e9,5.621258437817678e9,2.6476346730110025e9,4.634952920422193e9,4.1585512817610335e9,6.003623327050774e9,1.6974151282005923e9,7.376704413455286e9,6.404065964338785e9,9.251543050651745e9,6.962988025619631e9,9.12018984951794e9,8.74598330884962e9,6.169381630660517e9,6.586356253504289e9,1.6278662031328595e9,9.45620980524324e9,6.927986520447371e9,8.126157243322158e9,6.99082874913763e9,1.3689790117403932e9,5.475453036277699e9,5.959428469512344e9,2.973852659859567e9,6.526337455831014e9,5.486541499708095e9,1.016962188405175e9,3.263704866440006e9,3.644465754537718e9,3.1451033316115174e9,9.30277820819576e9,6.781981262257551e9,3.5733288352337623e9,7.206363385153129e9,6.367790782559597e9,3.9432567364817286e9,6.6747630995980625e9,9.522829341844467e9,4.1931401611705165e9,2.6756106113440514e9,6.195490117398823e9,5.738665409609426e9,2.6177128252917905e9,1.5145842489484906e9,8.923509109499233e9,6.198017721113298e9,6.824080121774741e9,2.8388929012105215e8,9.433018529208903e8,3.0451464295950813e9,1.3591175019354475e9,8.194150231689313e9,3.1759889273601303e9,7.220408351403814e9,2.7322497165617776e9,1.2497446380215216e8,8.260208590778083e9,5.326446853660139e9,5.999209987793289e9,8.526553766485141e9,4.2645083841972466e9,8.615685118088526e9,1.4585442985702667e9,4.607614232183989e9,9.377817366834003e9,7.515828382916823e9,6.94114278200621e9,6.379051880066222e9,9.936121678243431e9,2.825094582827509e9,4.5489587790113586e8,5.230370261218279e9,5.161580291509776e9,2.4793113851421857e9,1.4256793687269387e9,7.936332479226912e9,8.369435483697788e9,1.0128550416221749e9,8.13578110060142e9,9.392739378412231e9,3.2860608406814694e9,7.385911313588789e9,1.2213437746046174e9,4.811376063864203e8,7.864118029486186e9,7.819128303663604e9,2.4752943777653036e9,4.162049260084733e8,8.625590445591074e9,3.6067537302591558e9,5.271540340935365e9,1.272092534300937e9,6.715539125073196e9,3.94780034116324e9,2.2612049714476767e9,6.129570585790938e9,6.867607901517524e9,9.294328174215717e9,9.482927351369421e9,5.216923363217293e9,1.747094620378964e9,6.3709047359996e9,5.734092427211599e9,9.159347051067009e9,7.47132909611026e9,4.805252458822294e9,6.673331481239656e9,1.9478176149930336e9,9.357538946193937e9,7.98042679055011e7,1.8495809909705362e9,8.671617120531361e8,3.8615529897633505e9,5.071379956463746e9,8.998305471564747e9,7.050324555418538e9,9.09481155348969e9,4.922780029470965e9,6.957547145950368e9,4.933070478282211e9,9.243064687019922e9,7.062951921909145e9,3.207568374456936e9,2.215611568969048e9,5.982773247719913e9,6.819213986918185e9,1.9270216094903169e9,4.430929146901963e9,6.116038579169468e9,5.843455771293362e9,9.240812177838896e9,9.631533432192793e9,3.7818014638225904e9,4.639826476303792e9,2.8199483140392556e9,5.44768033148395e9,4.65878607535618e9,3.4292026859224734e9,1.4504726415894454e9,8.830372261815464e9,6.0505950046877575e9,6.200197055254568e9,8.31697189466202e9,4.833264081325638e9,2.879112717686769e9,5.827284815018436e9,7.572354913438378e9,1.4758234369774191e9,3.209615755775782e9,5.006902710290438e9,1.9429583447430198e9,8.309307141723514e9,3.539831671088067e8,7.884904198887823e9,1.3281362818890085e9,3.418837726219851e9,5.704994301149384e9,3.313985540398515e9,9.225054314923948e9,9.059828407256727e9,2.002342323409504e9,3.3519963131265798e9,7.842670386522014e9,2.631610782196162e9,9.275715158760844e8,8.745598148466578e9,3.8837422584952865e9,6.735288329144895e8,4.816979725023021e9,4.443952057222024e9,8.668938674140162e9,7.767258084348045e9,9.91431969878856e9,5.9878808826860695e9,8.483844941406967e9,1.9597846086787019e9,3.2141173143273993e9,8.435420465398028e9,1.0311399581228564e9,6.530196892669838e9,1.3842939825501122e9,3.432954631953089e9,3.6755750419652224e9,8.875162642494917e9,6.744892406951958e9,1.8287197940770884e9,6.809510700468107e9,5.929794151570067e9,4.81466362741314e9,7.973138119233506e9,5.324784447734788e9,3.065435933004189e9,1.0150487648786865e9,1.3657114486943934e9,9.172682660037525e9,8.283922017475866e9,5.75383324277114e9,6.659868026988914e9,8.06377695737447e9,4.744571435283942e9,8.921345336213581e6,1.6995717195282679e9,9.533168312238787e9,5.177624490628764e9,8.738353433800003e9,2.50644791024755e9,9.099461658828196e9,9.423773090005692e9,7.808552288730998e9,3.5093133013228197e9,9.738102277188475e9,6.53242814619855e9,5.958615419015916e9,7.769098767137282e9,2.6325583784255514e9,4.618046170809056e9,6.837780593323281e9,9.458270724361135e9,5.948876243308536e9,9.520918827835922e8,4.375467276493572e8,5.321517847965089e9,2.923270292078517e8,8.515513306547143e9,5.252341947986835e9,9.995246296660992e9,5.915309202816636e9,4.5403012912382555e9,4.6595375525360084e8,8.738066487231308e9,7.48298235403102e9,4.185639409349886e9,1.8130339048484101e9,3.5248772806102834e9,7.25564408959054e8,1.1894195558542597e9,9.202658582450903e9,8.622496755597054e9,1.7949339372987206e9,7.210267048167495e9,1.2222287337456439e9,1.1290284103190296e9,1.085973030514583e9,7.931839961242589e9,3.826320540478789e8,2.094574204821168e9,4.1937929645014515e9,8.238185834369481e9,2.6950523257192516e9,3.1810738068670154e9,2.8469427737872977e9,8.110950397149416e9,7.231670130535802e9,5.589269638770628e9,4.041383079471611e9,2.274418629994164e9,3.244890763493692e9,2.589480731579253e9,2.206702992026931e9,8.86456594006815e9,7.096956476076985e9,5.501999648681122e9,1.474035926913251e9,5.891940666812909e9,9.255277791085787e9,5.573710882108939e9,5.098643921451229e9,8.126383929328372e9,6.690943864619692e9,4.3842910661352485e7,8.210887289927648e9,9.464531254888538e9,9.870724958491922e9,1.5622781354797966e9,4.2876671208759933e9,5.754325124623324e9,1.8178778753109038e9,6.867550194484593e9,2.0985179816347544e9,6.119639446397804e9,2.9186826574598002e9,5.315118369872773e9,2.424394572167766e9,1.323286730834693e9,7.193104731878128e9,8.901000636675669e9,1.0241815990382652e8,9.09265558290984e9,3.1547948286071258e9,7.494341049970201e9,4.3247902018770275e9,6.791665070671707e9,1.7801000267670152e9,3.3473025622632325e7,2.314787241746943e9,3.1502413757306304e9,5.870671009487647e9,4.530957284147563e8,5.059162450498378e9,3.503535098648147e8,9.095565118465782e9,6.134292084015025e9,5.212190346960037e9,9.729660663311423e8,5.201809202722385e9,1.5055179755562875e9,8.044507585931139e9,5.712513444576827e9,7.701079584869042e9,2.0887972471787019e9,4.587336832282044e9,4.159509741824394e9,1.7888456703531375e9,7.659604956459697e8,9.693559645253864e9,2.777196681327617e9,3.3481495607099442e9,6.42871180928114e9,9.800448509956057e9,3.527746949349474e9,9.279648716104805e9,4.095539792182459e9,8.081137109314407e8,9.808479491707531e9,6.132297066828032e9,9.272087398883005e9,1.4631698993273823e9,3.9382295535697775e9,6.044122396142637e9,3.537382640087796e9,6.053779149331582e9,3.097408200931444e9,3.773240029082298e9,3.9435120436932313e8,4.528752474151521e8,8.000760208932131e9,8.428232137372649e9,1.805292244808472e9,5.0280086255510025e9,6.414420339032537e9,4.7574396065385383e8,7.033663243910195e9,6.449719279601527e9,9.851885775991398e9,4.3976448089813046e7,5.530294709403526e9,7.180349396568845e9,5.364700212873351e9,4.219604146557775e9,4.842760699729573e9,1.1406280750573795e9,4.36752752193636e9,3.6455412402493625e9,8.679208106687475e9,7.648154251421745e9,1.4937544237092426e9,5.533182877969574e9,8.888131475339656e8,9.325084469001076e9,4.618818765734477e9,7.669338150634425e9,8.637246401199368e9,4.0767466783948126e9,9.449879334468338e9,3.4121428850826864e9,2.9289718895891805e9,6.603364485025677e9,5.72221164972173e9,7.940075187911556e9,6.824788997882935e9,6.533780327124036e9,8.101697305323387e9,1.4415261149047165e9,5.066074447312813e9,1.0621998208073102e9,5.974119871015526e8,6.677224222598244e8,6.850099995438078e9,5.560409993485726e9,2.6951800991055765e9,8.684806817777727e9,8.952297796523531e9,9.316230671306413e8,1.4932210073414142e9,2.967218313341612e9,3.326956898662725e9,1.615904371456457e9,2.823116901066022e9,9.432508537147224e9,5.513743672585987e9,9.93460617295478e9,8.93561560350467e9,2.2189270449186516e9,7.77691753251063e9,6.754762663488356e8,7.774221605268651e9,9.26905668771691e9,8.0309718337934675e9,7.342900792378531e9,2.4677810306688806e8,1.1172917089595802e9,7.025231738676279e9,3.1065665657730947e9,8.748451106683517e9,4.613879029556933e8,2.1196577679925122e9,2.9524721187254143e9,9.528275840734655e9,3.9630781562201157e9,7.36333390620966e9,7.617082238941115e9,8.713427728072178e9,1.1607470256845055e9,9.934123799068747e9,6.419891369176952e9,4.2252377118489137e9,4.486149479388459e9,4.817985111144266e9,4.638192652065714e9,6.447406347202175e9,8.060576161258418e9,4.413648362896131e9,5.384079373650396e9,3.012434475576541e9,4.864944389879945e9,9.088233173894999e8,2.319485403372511e9,1.7888579511838465e9,9.94572623471143e9,2.0806955913914137e9,9.665540494517569e9,4.33287107419456e9,6.298646942529303e9,7.157752593089877e9,6.199991881341354e9,2.554462678490277e8,6.055356232062634e9,8.611297364319292e8,7.699060495851957e9,7.661497147969898e9,1.5924792166316915e9,5.816608125906711e9,1.7489640054144518e9,6.160422231799782e9,2.673418795556616e9,3.770356881403559e9,9.427912120234882e9,1.581668955583787e9,9.4994850163437e9,9.332773121047924e9,9.192540719368814e9,2.0553695052455456e9,2.2835387182398615e9,3.7501859788551207e9,5.287682781260776e9,8.616195072372091e9,6.690881292295857e9,8.953024754952932e9,3.47668215819827e9,4.5810543255978334e8,6.595261095394771e9,8.047874483222913e9,3.9082771568569975e9,1.7824005088607585e9,9.495128791109087e9,2.699307100291448e8,1.6053490957348392e9,1.753803075651854e9,6.964059142007386e9,1.083626283300524e9,2.616578470662506e9,9.563442365303358e9,2.0122575635989904e9,4.984159962887638e9,2.1614187144806595e9,3.248547424581606e9,2.0432687596605613e9,4.664690236816279e9,9.415927884607515e9,2.6959123954369755e9,6.355691006766927e9,8.38709232877219e9,4.526634066072629e9,6.940885699442647e9,7.310553255372362e9,1.8328380866629002e9,4.220818119219718e9,3.493474101172261e9,9.072544909812136e9,9.350679059495132e9,4.796198879302126e9,7.12199040961943e9,3.193924780997763e9,9.478335272384565e9,4.811532564307568e9,5.70167297534282e9,5.86891178417265e9,2.1081849954767685e9,1.5250558189987206e9,7.922945799807655e9,9.693929011702957e9,4.706458181376417e9,1.1514721477504308e9,4.299095144877207e8,5.12922882510677e9,3.055936521820298e9,8.05952162614734e9,2.6421728758061714e9,8.458796788436526e9,5.96177020796063e9,5.9124402140692425e9,6.381233307037276e9,1.878170918330503e9,3.835712664561988e9,9.871004551390318e9,9.573280866709656e9,6.369630831030987e9,8.69705691882289e9,7.373873413697228e9,3.313014132550208e9,2.929214809811258e9,1.5235950358939432e7,2.0869980653710163e9,4.559016053634024e9,3.939731909714236e9,9.540812729471998e9,2.717104837618729e9,4.1120268505690327e9,7.4367314652328e9,9.35995941254408e9,9.862364529435455e9,6.272479398573556e9,9.518124033761894e9,7.050925749879532e9,5.032397297968478e9,1.6479187011325102e9,6.956287775114023e9,3.4378673083180265e9,2.286430521980578e9,3.2548478912890587e9,8.439451628113695e9,2.0848981379255471e9,7.534808784242316e9,5.759154873129382e9,1.98230897485133e9,3.259913775215705e9,6.084922142963186e9,3.7414555462337375e9,1.8807256445153387e9,7.168218536808345e9,5.374692640206766e9,4.350059742792946e9,5.477081809519054e9,6.39328123741093e9,9.346311630613258e9,6.108924608120825e8,2.7074515043323164e9,8.595285753103388e9,5.855019424390875e9,1.9568975724489157e9,7.867039424022848e9,6.8230275172820835e9,8.737758394312222e9,4.887994419577673e9,6.145361581312348e9,5.493345224665137e9,5.671434745102727e9,5.889639822422316e9,6.3841467655992565e9,9.277892146629065e9,6.790603242350446e8,6.957756618686997e9,8.318840255379635e9,7.533633969540385e9,4.449251403464599e9,9.034004504281456e9,3.7317181138568335e9,5.081847269802331e9,2.29913852538189e9,1.24193807067277e9,6.639022144276296e9,8.398200085299093e9,6.200816474569939e9,7.573165193039895e9,8.011326919205619e9,2.6366042407391996e9,2.385004731158015e9,8.31247386189605e9,5.788605467932827e8,4.368349595106025e8,5.021199721382981e9,2.3123522032260036e9,6.540959190401083e9,6.991706910325427e9,7.859463241839021e9,3.1917982410055103e9,6.472589454910611e9,8.034401308916948e9,4.488099459814522e9,5.721812796424754e9,2.1176008006240532e8,6.379128725580925e9,4.956803630673938e9,5.799816462347241e9,2.927835232200462e9,1.4218466593545654e9,9.010142374890911e9,1.9049066802053982e8,8.864728052968342e9,7.429497209996701e9,9.896991604635738e9,2.683557550232991e9,3.554182757734042e9,6.59947075159394e9,4.509269281947202e9,5.436354895847751e9,9.966276098345051e8,7.90667317282407e9,9.583501608907885e9,1.9568567976252172e9,7.089402829481808e9,8.346283823468043e9,8.535388087920017e9,1.3474172005734098e9,1.8052853525879664e9,2.0781850718740823e9,7.715416416533234e9,8.66769658855937e8,7.47812645237251e9,9.775535888916063e9,9.692013065341259e9,7.930844745244029e9,2.8479197259690857e9,2.2418302636804457e9,3.4606569914346943e9,3.817675864512091e9,5.649513115746644e9,3.1393003539879403e9,6.868531705764781e9,7.244197829369447e9,7.241116930267064e9,8.597168913809117e8,4.851165611423971e9,2.1897792235863357e9,8.897206374074095e7,3.7664100322261553e9,4.2545467875912557e9,6.9370802374306555e9,7.741989116005885e9,6.396952295261989e9,4.1207311318287764e9,5.753326340423856e9,1.2332870606707535e9,2.5685962538607755e9,4.71090713956168e9,9.826415347184395e9,1.932251282727595e9,2.3006766844978043e8,7.256203620054732e9,9.916648085100255e8,7.030075078929931e9,1.3731299913241036e9,9.422652204677433e9,8.670438515587614e9,8.81745267804853e9,3.35476218373992e9,9.66482580512359e9,3.342185892148534e9,8.373659522584368e9,8.589730004934433e9,6.899397660217809e9,2.073735771765255e9,4.398065371149445e9,9.913171946173116e8,7.307575379242617e9,2.001605342043844e8,6.294806806340531e9,7.580834780960945e9,1.2572389583760958e9,6.224363254899218e9,5.497592422076369e9,8.78457403778946e8,9.765766946687939e9,2.489681730684604e9,2.1247554764626586e8,1.7449681278341866e9,6.123020438004406e9,6.071196676761057e9,5.195778859709346e9,3.23355807516269e8,3.3340875147768803e9,2.551070974334271e9,1.7319984216487172e9,7.080696129770233e9,5.649993400787862e9,7.547288058285408e9,5.737026251152195e9,2.8888041072639503e9,6.503276911631096e9,8.77942348040396e9,2.042301618002852e9,7.735161019531947e9,1.9224537423197362e9,5.688964036141703e9,8.612582764138933e9,9.116826665596485e9,2.800092196179136e9,4.624393980467087e9,8.18722839527578e9,1.542234113841594e9,5.924666623019391e9,1.0172494277566391e9,4.9639146774649423e8,4.895925012992163e9,8.929355571142475e9,8.942570562923914e9,4.2105374512917846e8,5.092447631656867e9,5.707984237385096e9,1.7968147988698168e9,4.4187616460503735e7,4.414360497714574e9,7.693002453966326e9,5.796971987739339e9,9.409777437121965e9,5.823614777542744e9,4.1027510841575665e9,7.070002137698869e9,1.5386013233690243e9,6.370843056645247e9,9.017734793683141e8,8.65817725248014e9,8.69833236731401e9,7.755734075635478e9,4.416883399478533e9,4.1347915858923454e9,7.143554018085819e9,4.0794302211883273e9,6.690776119231681e9,1.1851019698860111e9,9.135211215673456e9,9.855093113893904e9,9.43339399737162e9,7.567718816558531e9,3.91652442358868e9,5.978243035630016e9,5.143628190846923e9,9.655216689253641e9,4.604686967108015e9,9.696283507088652e9,6.447684624993351e9,7.696433250643787e9,7.028064359206754e9,2.1596907693942766e9,2.791260359871103e9,3.707411568580096e9,4.705411804641339e9,7.335489958866699e9,7.389863974151103e9,1.3629782063219066e9,4.8384200646481854e8,4.485784404774519e9,9.603096200742695e9,1.0672700283787884e9,4.724884099672257e9,6.766636649354971e9,1.396804175491011e9,1.2391300999174404e9,8.056115633580618e8,7.144339384564599e9,8.037987067530441e9,9.481346393977203e9,9.228044495786057e9,5.991809936297326e9,6.940010281490713e9,5.532366042729591e9,9.048998647816505e9,1.785566014799359e9,5.546241591250601e8,9.050682339087236e9,3.991814078768191e9,8.62867060421946e9,1.4756579271368742e9,4.46299740081603e9,8.954848569325785e9,7.913554514519749e9,5.393367575090224e9,1.2506297362471142e9,4.515915925163561e9,9.299516125215065e9,8.141892114099137e8,3.0352774687428994e9,1.536281362360108e9,9.041219537073e9,1.3381311420694642e9,5.664504727013745e9,6.607951587152938e8,7.945139773574056e9,9.066705270669683e9,9.184776504039429e9,4.78915513533635e9,3.34225410518192e9,9.731231124981304e9,7.830141415573022e8,5.208087017510934e9,6.793049933958309e9,7.66219966889683e9,3.0344169095081387e9,1.9478691483365783e8,6.083821405810939e9,3.08591634997335e7,6.67037798427863e9,1.6933812276441839e9,3.3763466768765473e9,7.9313426657144375e9,4.170407418063026e9,8.064679194090113e9,7.946363992987407e9,6.241993713994419e9,2.904963946849204e9,2.1402366154871566e9,7.228418994660987e9,8.94474583494527e9,9.144273559334446e9,6.285721623826163e9,7.820667467641075e9,7.171221627268494e9,4.189673172166866e9,5.344401418998856e9,5.816116680222263e9,7.156580641895008e9,8.350323429374616e9,5.293665172823415e9,1.5850279643384435e9,8.938379161306473e9,9.533239925834599e9,6.348722719306057e9,5.990694799174563e9,8.470586012366055e8,3.0503445255628858e9,6.034291880430276e9,1.0673001228117307e9,8.307187235581284e9,8.880621313365528e9,1.8690895252115047e9,2.6656926097688127e9,6.166493814830756e9,1.9098434789593976e9,2.10987443993923e9,1.5704561888053381e9,9.10948740474097e9,4.293489861762617e9,2.6132010259323535e9,5.131274713811842e9,6.965810686055254e9,2.009299582567523e9,7.833203597900542e9,4.1119091086935587e9,9.13303143883675e9,7.558039461416357e9,1.5757294865963523e9,9.11864610759243e9,1.6638898946614933e9,8.887469392385548e9,5.16497789611268e9,8.65565976146035e9,6.439607015387681e9,6.255597364668297e7,5.8221281305592785e9,8.795035590183655e9,5.83793182971053e8,7.112755198617898e9,7.264583092155354e9,1.3307692583110187e9,4.629351552900216e9,2.677836999966111e9,9.42686714785728e9,1.548317331925908e8,9.299616353402328e9,2.1685283866663352e8,7.099937422728164e8,3.0150421005532203e9,8.305073320635341e9,8.283577374429358e9,5.5128052627843275e9,8.691868883816244e9,2.487839041979981e9,6.10295722971915e9,1.8522715631823282e9,4.831445081560751e9,8.296125125164485e9,4.412503295386045e9,3.963887905343375e9,7.748032989458472e9,2.1699070430699897e9,1.6276306955680075e9,7.689308431388416e9,8.159938005644084e9,4.557184200358513e9,3.455320844575617e9,2.446810764959133e9,1.7622093946139584e9,4.095448763663283e9,5.857315123585428e9,9.143145299621931e9,1.1304343909217918e9,2.356126616435792e9,5.540808362473278e9,3.6659793121175876e9,4.362893244209575e9,5.6590649316157255e9,3.1671177573046703e9,3.2831477072226434e9,3.393725403668175e9,6.715645080455568e9,4.969427869951502e9,2.0881224207618554e9,6.033138453859863e9,9.110453331129e9,6.114193851975311e9,2.7223831360673213e9,6.505432866350558e8,7.605573071266659e9,5.9539486913351424e7,4.883943285370581e9,6.394468469187102e9,2.319022535456353e9,7.140268304477983e9,8.542219718276048e9,1.0266075737106606e9,4.5533312029744425e9,1.8487873148604872e9,2.211844333818749e9,1.7512051523449578e9,9.237000070805091e8,5.240622465143163e8,2.4720473231692953e9,2.42071311076824e9,5.046701033514849e9,5.570204864789816e9,9.16562855176975e9,5.27654506750575e9,1.043687512438568e9,1.6242146658778777e9,6.3890529659492035e9,8.150065714651914e9,7.907584467923101e9,9.782982607472271e9,6.348249848777675e9,2.66666970585308e9,9.813276789424381e9,4.089089734238404e9,8.038898020622706e9,4.569490267285154e9,4.994092549576277e9,5.2603779540000305e9,7.875665581117576e9,6.566600087853134e9,3.842583742374811e9,4.7977731045845574e8,6.988186246058984e9,7.958076028244343e9,6.706737817973207e8,8.338842431141093e9,1.6323941105654883e9,8.631028775123158e9,5.427905737488615e9,6.315036787804417e9,4.164091387760266e9,6.378741217337206e9,6.1147231320393095e9,5.330673415631054e9,3.611587724682338e9,3.7626811212373657e9,7.996175213862106e9,4.6582317886329603e8,4.46251664476812e9,2.5494221934275374e9,9.150340370521816e9,8.086890558556012e9,5.267278386565209e9,1.6761658836947923e9,5.929268064656775e9,3.2966145187343907e9,6.7274431760749e9,6.978890162420293e9,6.794723868778593e9,8.142467989248698e9,1.2962034875183182e9,6.7860108875528145e9,6.809586398719772e9,1.4312908059427242e9,5.766436534770192e8,9.532264435216532e9,2.910358269877966e8,1.0967828428128312e9,6.521636674509722e9,9.20801477621267e9,3.224543366087288e9,6.928300654793027e9,9.566758529937134e9,4.961047056316186e9,3.736214432267454e9,2.0301900882202196e9,4.1656038155255604e9,6.813123464677776e9,2.5981995672510996e9,1.3242008992410736e9,1.0352320156073492e9,7.326123372211681e9,1.7242249692191048e9,4.465079717031267e9,3.519610808751394e8,1.8829025749837701e9,9.543934255308004e9,5.998117564886621e9,1.516625084691825e9,2.9046623789178414e9,2.639633203272379e9,1.9084113800060987e9,3.0263790990922947e9,2.184515011192747e9,9.670786958861269e9,6.229125864124815e9,7.092209222819491e9,2.9733178572817206e8,2.6146275175114965e9,2.6054285635204535e9,9.00830234685589e8,6.50663226674269e9,6.170236134103087e9,3.949188710024365e9,8.916692874079815e9,3.782045699360997e9,1.2704825230388516e8,6.866712460683758e9,8.428543063371263e9,2.489712011737647e9,3.176020229492138e8,4.365906239411515e9,3.5192123246440845e9,8.151062914935848e9,4.598688796654635e9,6.793339573334779e9,4.291607666151557e9,1.3435031259968832e9,1.0319333644761885e9,5.759537720668583e9,2.985425402483035e9,2.990545691331159e8,4.603804632283393e9,6.977205455877741e9,1.513217339774049e9,3.6880048230986094e9,5.787918257783209e9,2.9167812554140606e9,5.8571073381101675e9,4.444350553936176e9,1.1074494888370824e9,6.955636073049304e9,9.021757326545984e9,5.491157898382411e9,6.015338931488451e9,4.700352842058372e9,8.644567808881437e9,8.641557456243328e9,3.9360062962801824e9,6.1053337284726715e9,3.933885061073232e9,5.933165590472363e9,1.2801354293637924e9,7.734131423229562e9,4.1102659546787415e9,5.381665978681653e9,1.4603497024351375e9,1.2880884618846123e9,9.003406200992191e9,8.500179912112382e9,5.043313574056886e9,5.119676130954653e9,5.8629507146715355e9,8.380481052137247e9,8.259999446867019e9,8.4944148644688225e9,4.033436767125045e9,6.537528189949983e9,9.636283328610647e9,1.3889731110958147e8,6.568391437072812e9,9.273634251821183e8,3.5625692799628606e9,5.490971717746648e9,8.005019677107952e9,1.000356987580927e9,5.709500328692932e9,7.95589834169789e9,4.715651912758583e9,1.58247416569554e9,2.9320169512660055e9,5.376741171520614e9,5.453836147011208e9,5.646684983599647e9,5.751494544344082e8,8.442973901251679e9,8.80505092473696e9,5.06162482090074e9,6.64689664143302e9,9.465910318474007e9,9.569315927141733e9,1.6697260238131285e9,5.915412542863685e8,6.991456759801041e9,5.0213048878154474e8,9.973135910017694e9,2.3025047732028327e9,1.9894340583215086e9,2.22889193621539e9,3.193222023204945e8,2.9031492401362604e8,6.702268150123048e9,2.594839310893975e9,9.290148933465836e8,4.375274001012168e9,6.420307740063921e9,4.731233537419299e9,9.584914323471685e9,1.0482962813894148e9,1.3005334979155781e9,4.362643538329101e9,8.551137366101269e9,8.691434463549297e9,1.8080921043029785e9,3.070410615608488e8,5.22057485163205e9,3.306058780068495e9,8.651661174327063e9,2.336168241872364e9,1.58871670783597e9,2.8112977896864443e9,5.075214939878105e9,8.466301152970891e9,3.8254279004059787e9,8.48719720763748e9,9.754634692856802e9,9.787222882492363e9,8.051522334503802e9,8.371926170228756e9,5.991995184504871e9,9.858673993553438e9,3.099010240185871e9,5.214153507545809e9,5.812867088224977e9,8.620841500520988e9,2.70991678832921e9,3.869373477493875e9,7.320338267063186e9,5.736207789091084e9,5.758182688328055e9,5.731322978952753e9,3.593799436172993e9,1.6364434677077932e9,8.252945277123578e9,3.2343603469203672e9,4.809351886214927e9,9.027613968435286e9,8.000724805463742e9,9.23552328355273e9,9.074634367010912e9,7.071749890279607e9,6.98255379583471e9,2.3449312946222887e9,8.06784121761757e9,8.929160828610849e8,5.206976138952183e9,9.008936385319824e9,5.738646508225797e8,9.984623847798433e9,2.833137341330779e9,3.5014353896230245e9,9.957090964971329e9,3.7806866220567236e9,9.434783044902086e9,6.1856714755922785e9,4.134999110057075e9,6.147441476266003e8,2.688715208501904e9,8.867806800866945e9,9.47825989464687e9,7.249124738997722e9,7.992666626926145e9,7.403047684122709e9,9.22087470796117e9,9.718072533482151e9,6.172854743169098e9,3.191865142551565e9,9.072950116700975e9,8.106633115367198e9,6.956819595223745e9,9.603556264726126e9,7.291042607782895e9,4.532238182645736e9,9.953405133938532e9,8.2076235422591305e9,6.014611970922039e9,1.7938850841410002e8,3.6709387794548054e9,2.5681741506852994e9,4.381475654536001e9,4.460695032942195e9,8.62766044305303e9,2.3913277996492734e9,9.131281037375153e9,4.1124609788651032e9,3.792591922797415e9,1.7558311788194091e9,9.356281038956102e9,4.466057900117199e9,7.734572836970048e9,2.6914247623880973e9,1.7487618150716765e9,1.5290548505967138e9,8.59849791442224e9,5.490811281766866e9,4.468267793602042e9,3.2661055192739606e9,4.99071543925997e9,4.0503406749576454e9,8.802013064853542e9,8.870374721078976e9,8.913714367561815e9,1.6235579502810616e9,5.737953417485826e9,1.1864844095073156e9,3.8730055575610523e9,5.496084752593327e9,4.930047489849056e9,5.574274301829863e9,7.70116680151024e9,5.732069269948558e9,9.883830656540593e8,7.062992799971744e9,3.7345287719709463e9,7.578196648515666e9,5.7041011114350605e9,4.946030924889472e9,9.348908933823833e9,4.855605217790642e9,9.558994557337318e9,3.2673184000188284e9,5.738438616568054e8,8.655485430635002e9,2.337513601179886e9,3.6284825448446155e9,3.219799009104747e9,9.809034843328068e7,9.919382221432697e9,1.1051314490820162e9,9.035347179100052e9,7.486784518458568e9,2.725173098687744e9,5.460331503854574e9,9.877201377635391e9,3.7015276866839995e9,7.616867828941457e9,1.2843654495248024e9,4.653153864452371e9,5.823513987517026e9,6.019962524126351e9,4.544154053737841e9,7.5689674521352e8,2.095462632639289e9,6.61101955776891e9,3.744610612718644e9,5.923839866005951e9,7.512213440270677e9,4.948102087728209e9,7.41037477130542e9,8.541343250984e9,5.528152641711238e9,8.837811891175697e9,7.952682767182967e9,8.692454608633795e9,7.161288619943214e9,3.1437077512510234e8,8.176962533071129e9,2.167936167147773e9,7.234336412499655e9,4.793241190187446e9,7.867631242500495e8,3.7378838576922126e9,8.317425061464641e9,6.67262834824238e9,8.832112535254538e9,9.156401459216541e9,7.655613917149398e9,4.705027225652181e9,8.841183176895958e9,3.5792988069165077e9,9.56009231794101e9,7.096116443014173e9,9.90638507439061e9,2.3417482731800887e8,7.419587675699444e9,4.876093771835877e8,9.296068099381802e9,4.878680299112834e9,1.7959314273410354e9,9.518120572023684e9,8.185368370837568e9,4.487438665701238e9,9.26768216859408e9,1.741047244231303e9,9.253005005043852e9,1.3132764369933302e9,5.015620285715223e9,8.130381687321251e9,3.20920057489542e9,6.151916969329881e9,6.952416947946529e9,5.304544344893604e9,5.656566292145265e9,5.021690202902758e9,8.376703676734732e9,6.680292468902187e9,8.166142064898075e9,9.498392488546795e9,9.29005925725659e9,6.831652773195585e9,3.119933105002749e9,8.185064934209665e9,6.642489743989883e9,2.9969152281972976e9,1.1473083011908557e9,4.535881892646702e9,5.99060053953796e8,8.040171945845314e9,1.0916021728216596e8,4.798058556083907e9,3.4537410322442775e9,9.110838796108011e9,2.4832175693876767e9,1.7608828019114497e9,5.945523203719191e9,8.716548647843802e8,1.178716008297439e9,2.936931815806926e9,4.0456501094919395e9,2.099024419827359e9,3.918645319912626e9,6.99185604561294e9,9.097654198196232e9,8.08643350597012e9,8.237322165367999e9,9.367689381186365e9,8.548297719727539e9,7.876789921220748e9,7.11769251537161e8,7.929028921094964e9,7.6913218836504545e9,3.232894820743154e9,7.937333582144832e9,8.0702335043206215e9,4.131832024722135e9,4.539314840766591e9,2.6164370365013633e9,3.771118450477271e9,4.551663882410494e9,4.641982825271493e9,3.0175676627860613e9,6.055837710600873e9,5.832382589263098e9,9.54641450361428e9,2.4488705594528337e9,1.583980307197609e9,1.634036511590775e9,6.284195877739962e9,3.4785241057676096e9,3.5065499657060094e9,4.651256461868274e9,1.1079427562978528e9,1.2903348172088358e9,6.137832298673886e9,8.749148540710295e9,6.787228219185302e9,7.106067972476396e9,6.556492433122952e9,4.792881740467163e9,7.872348685367426e8,8.642010413919153e9,8.516974054387761e9,9.778734007690866e9,4.647511528047015e9,3.1752768826517344e9,4.781154425891083e9,1.0896666967581048e9,9.436910724448063e9,5.296732118687141e9,7.811533595851047e9,8.775877714434975e9,8.91652107604427e9,1.9033947780669525e9,5.785997903355863e9,9.534562299532124e9,8.909905758366451e9,9.03051297456865e9,1.1749532759732974e9,4.717325936328482e9,3.8508631918208556e9,8.357395739562269e9,8.67919608507916e9,9.43622600129429e8,3.1246203693397613e9,2.690253965697181e9,1.0212579718626269e9,6.459035562912952e8,6.52391554891276e9,9.54466004397604e9,2.0031721594625263e9,4.849430774587201e9,9.930051726479221e9,6.167322315984012e9,2.9097595551484946e7,7.124001374230341e9,8.753373376870396e9,8.94719167972304e9,5.469095911554322e8,8.180983191303248e8,6.027435108431275e9,1.522443216607602e9,8.888281431738234e9,6.815519032733711e9,4.356195334184697e9,9.534713850163614e9,2.526324891252365e9,1.1864882254242892e9,4.477630282165897e9,3.496846310715795e8,2.4732300992606525e9,8.16387727988431e9,7.42839450526698e9,4.1703234973840575e9,1.1998836425201764e9,3.1608309191775417e9,8.669279457755632e9,9.268176837822004e9,1.5103440564426095e9,5.744602987953255e9,4.739201121461125e9,4.666829859908551e9,3.93917824578259e9,2.6141953149763474e9,6.402691125461724e9,4.035707452318532e9,2.7080170944066007e7,4.442923067225682e9,6.344169038281529e9,6.0886807904593935e9,9.921936852507162e9,9.907481730809217e9,4.875121147340298e9,9.227684913153696e9,1.2462452708768413e9,2.1605574058521414e9,4.418659505408693e9,3.3502320464099913e9,8.07301216801392e9,2.7206913598486036e8,5.967305512935801e9,1.8593251772403207e9,6.29033877062801e9,3.348620258756644e9,2.3862734687736154e9,3.9485735993347015e9,7.382973688031104e9,2.8106242721767073e9,2.4179408879096107e9,7.698863777607746e9,1.458668636357515e9,4.133549410851208e9,4.785842319538234e9,7.9908770129132185e9,7.221562688414401e9,5.906289173068324e8,4.563563995010493e9,5.527836846664949e9,9.480682433361664e9,1.0377998651629428e9,6.436909110870286e9,2.4170430679358202e8,6.272577660420936e9,7.722501562395899e9,4.19330558469333e7,4.7746605799184675e9,6.480616975590441e9,3.901660860675464e9,7.339771341356678e9,2.21504932676139e9,3.494663040884416e7,2.968183645137815e9,6.693441200956385e9,2.5676161644928875e9,3.30538601490763e9,2.2247559593170705e9,4.720670665405687e9,4.909640104720931e9,9.7293728948785e9,1.1085770766235492e9,1.353210364657127e9,8.064959295172431e9,3.883559011749503e9,2.9563054755141115e9,1.2406407200927482e9,4.642735302768554e9,6.285513833187104e9,7.795074447534759e9,4.1952029559659886e9,9.354359952603464e9,1.5785878856867242e9,6.19416029221497e9,4.148424956472575e9,1.656998458135226e9,8.997528989033419e9,4.951252624157039e9,5.367325768181246e9,1.391118877682218e8,8.515744636861088e9,5.6270343343298435e9,9.817279778313626e8,3.950392666343111e9,9.400205927261782e9,3.0426248708974614e9,1.6243402699764388e9,1.5024841061369166e9,1.2384560562638104e9,4.543633188696793e9,5.473267161474834e9,8.219047843877237e9,4.509081999089794e9,7.1967699749633e9,5.538825185456634e9,9.103625193011751e9,8.157921462216914e9,1.1515333629171143e9,7.474165938121415e9,6.947725272775313e9,6.422444163317868e9,5.028153691435841e9,2.0327171807548962e9,6.812611387568558e9,9.757823921609385e9,7.417696992861656e9,4.1734924698188825e9,7.555734028342258e9,2.1143848705856106e9,2.7756242742675896e9,6.368583235327915e9,6.318170978879116e9,6.716305095903121e9,9.928305104204549e8,2.65262912848647e9,2.4952163516194725e9,6.209599349253072e9,5.911262045770958e9,4.914637176114538e9,4.754120448559384e9,3.7400903383811445e9,4.138377686085648e8,3.8376453651077538e9,3.6896112915652523e9,5.03894735893646e9,2.407585248052031e9,4.91828201070388e9,6.811270559731071e9,3.214813798466143e8,1.6486082523374379e9,1.436604804261996e9,5.532197431024273e9,2.610052719058309e8,2.5860168321086583e9,1.8053535916665752e9,6.427012927110554e8,5.463937893367763e9,2.306628908331675e9,1.3875012650905561e9,3.132694033946125e9,5.44594796894311e8,4.5606741959885645e9,3.8361020760107865e9,1.0665226597255572e9,9.53513740370891e9,6.8275095877111435e9,5.142238948066466e9,5.597271364610128e9,8.224935276643561e9,6.472331768651653e9,4.1328212716144166e9,3.994233952343279e9,8.106452174878452e9,1.6449583246762223e9,7.937123705509626e9,6.007695347690764e9,4.581347506416279e9,6.777439321447765e9,3.270322579348435e9,5.343776292929274e9,4.585138772841119e9,6.790318474680724e9,7.221677744355615e9,5.21610353207853e9,3.011029431492468e9,4.576885472691016e9,6.923972905955222e9,1.0372347918327584e9,6.141477185903731e9,8.273995946362351e9,8.144591254586991e9,8.530718694028698e9,4.861746503478179e9,4.2768540735995097e9,3.2810998129067335e9,5.613944851762832e9,9.551622679451794e9,8.266060956550921e9,9.842560135819424e9,3.862153697651053e9,5.333571480637253e9,8.734141649931643e9,8.588823464634674e9,4.599909491537546e9,8.97890193745836e9,8.396698888576066e9,9.098117708218481e9,8.74006410564473e9,8.010142362183545e9,9.204859451577232e9,1.6869016659571478e9,7.324933804609602e9,6.942695685908081e9,8.110795896466413e9,6.997622716622892e9,6.25016119092487e9,3.059176253267628e9,5.073330923994584e9,2.3855667855379457e9,5.385749558964951e9,1.577585476491028e8,7.413438575551546e7,5.251839385289998e9,1.8286044221953402e9,5.395274062966304e9,1.7726359963000903e9,4.071117451770566e9,2.832147600591817e8,7.963837641472224e9,9.736923589260199e9,3.792951973032691e9,4.0848065574669566e9,5.658561803759267e9,4.370683429513556e8,9.750729224421862e9,8.511313610238139e9,8.09932272446842e9,4.419479667849034e9,3.9722324056745095e9,5.927435380376277e9,5.607493487240815e9,9.850250956444395e9,9.21779798425479e9,7.967901645431761e9,8.843272620048767e9,4.159016887383579e9,2.73817476490168e8,6.220402889782174e9,2.427610532641945e9,5.978812374440232e9,8.748002152974962e9,6.602023519994176e9,7.182210761145331e9,1.933243371353236e9,4.428224777383219e9,9.148188626687077e9,7.396714654370757e9,3.9984561615626903e9,4.206448662010528e9,2.1461568102231786e9,4.531081293581423e9,7.4484383631566305e9,8.991062388148235e9,6.79336756996689e9,4.615625432489157e9,3.517127500731795e9,9.199958699591063e9,3.0549767837224517e9,8.065617766818612e8,2.388313254516543e9,9.691439755321823e9,5.3351577988884535e9,2.535497004114863e9,6.101011501505065e9,6.445906400088254e9,3.195782462669351e9,5.740207775897617e9,4.541641698730495e9,1.0665468062837125e9,3.985694361053125e9,3.520824048061921e8,1.2377271364254482e9,1.7397528832672193e9,8.154234534909722e9,5.073729149879748e9,8.171805862413477e9,8.685435716150658e7,7.601015757848016e9,5.506047845943366e9,8.133264104304484e9,3.327979237254329e9,6.027385473910024e9,6.485117563293859e9,1.3978890633068964e9,2.4388793239120164e9,6.891391512502386e9,5.694385166881249e9,2.2624961786076035e9,5.455722118893148e9,1.5111538560240366e9,9.3220611759938e9,5.774397802212378e9,4.65794955870221e9,8.1203606740627e9,7.594504116692714e9,2.794859178262524e9,4.890719607499078e9,4.513895374382608e9,3.7888547389148355e9,6.224494931538036e9,4.656295051429439e9,5.197200876930291e9,2.3909889327189405e6,7.006423252794018e9,9.15657138245454e9,7.959959347412946e9,6.224705073950383e9,6.368083294399115e9,9.603237911742207e9,3.7282190448553944e9,8.108965152814074e8,8.096217505628952e9,5.808427595431615e9,5.155186434309234e7,7.98292573425744e8,3.9280949815760956e9,2.561059442800134e9,6.1032205346995735e9,6.993965355979166e9,2.1408638223552456e9,6.492725206671284e9,3.744073303937914e9,5.39404413763781e9,9.944492987927876e9,1.850043970061177e9,1.0641135070427543e9,5.725200085035998e9,9.071379246871954e9,6.946301629675809e9,8.747116376530045e9,7.646030364588608e9,6.128834630571e8,5.681147687614445e9,6.091747649164169e9,9.447297004093855e9,1.500248430411899e8,1.7282926665910625e9,2.717567972510828e9,6.633958256120211e9,6.402385571390774e9,9.248668333489534e9,8.121660576777927e9,2.691036121655469e9,9.98974778373074e6,9.851101236866392e9,1.872679124579778e9,8.740324776046693e8,9.86511252071791e9,2.6665251058101745e9,2.0789508420845258e8,4.886595536984619e9,6.463532109139878e9,7.581787495700743e9,4.018863377354609e9,2.8516676296157017e9,8.876888393303404e9,6.648564233261393e9,4.000792613669591e7,4.910599566081905e9,7.911230149282941e9,6.772879830306423e9,7.387354265250427e9,9.031165947439644e9,8.478174378253336e9,3.179189025344795e9,6.418285109639453e9,4.449101141210005e9,3.8255577373505955e9,3.767589162247743e9,1.6053836529706967e9,6.23268904263853e9,9.323623746222103e9,9.327780233888275e9,6.2163830035955e9,4.311240674398542e9,8.587962711824573e9,7.343930353648464e9,7.67019677102055e9,9.096043211287317e9,5.6436723471350765e9,2.764836612887789e9,5.1929410809451885e9,1.9602177134389186e9,8.797119955230541e9,1.4934133411154737e9,2.0937187346872256e9,2.6986725308254333e9,4.7362049267118e9,1.1419061036608846e9,4.1200610534172134e9,9.427572703340136e9,7.689184993778265e8,7.5023081599880905e9,3.912548491059059e9,7.035412715843326e8,4.740927444569117e9,1.646085947733248e9,8.738632988986107e9,9.754773457637468e9,7.4480985281960535e9,1.224849674494184e9,6.713937462582753e8,3.9271014256870794e9,9.471631872722544e9,1.280467973301246e9,4.697774119826385e9,9.585908971208511e9,2.5287123479120064e9,3.259161269738302e9,4.303486900695101e9,6.1286559801690445e9,7.478020235806484e9,4.844204275977887e9,7.838895071732229e9,2.5261183791152587e9,3.6533020584949927e9,6.592059376658736e9,2.496926495373103e9,1.1307617694154503e9,5.404812778845276e9,5.768332943161625e8,3.0291147504411755e9,1.3029562006282048e9,7.282329411410208e9,6.710727893386199e9,3.329014281346154e9,5.375889351949708e9,3.0376933876999736e9,3.100321690946345e9,8.748942875353148e9,6.067516205001979e9,1.2841308189517632e9,8.802389025425947e9,7.631597652718292e9,6.22802294937384e9,7.736961198135154e9,1.540543722377824e9,6.842620875968594e9,7.198064322896414e8,5.264937805686963e9,9.439463467778362e9,3.8993000546521306e9,3.8626996524847913e9,3.8434162468175726e9,9.077793579372232e9,4.759221801927764e9,6.139305966303591e9,8.729951140948326e9,6.182151350876564e8,3.0995647068943386e9,3.409375550297794e9,2.1321503107893624e9,2.485468344462158e9,9.315681836188284e9,7.44459010567802e9,7.137767235327929e8,2.197915478159378e9,3.369926121358976e9,5.12971785258601e9,5.373810237318977e9,5.218336450328853e8,2.5319128632816525e9,6.831213678017512e9,4.061482517123338e9,2.361650758938949e9,9.430766117010214e8,8.116976141335376e9,3.916757842845409e8,4.767374369688361e9,5.183070450422334e9,9.077073298366665e9,3.2170965395776772e9,5.372317956748486e9,7.869544290471931e9,9.649714267585566e9,4.637938448594507e9,3.5531613334366007e9,2.712532835341429e9,6.56498735610601e9,6.549721062879558e9,8.399519990235114e9,3.547513756113696e8,4.556563080009511e9,1.6355957168114367e9,1.930940246963051e9,3.2037489823050127e9,8.037465808126758e9,9.306748859605738e9,2.244688202183236e9,7.937045703193679e8,2.8260310253803535e9,4.851319559385339e9,3.979941557265274e9,6.700339536928575e9,3.8798013899379215e9,1.3036134619197204e9,3.587681731102954e9,7.817026037484405e9,1.7772040099014785e9,7.958376715070865e9,8.893851856805904e9,7.842517200422727e8,1.0718539071953747e9,1.229940338711757e9,3.7619276988664184e9,4.361964363727432e9,5.884404959490047e9,1.6265648632016739e7,2.1105531206094174e9,7.483648884090445e9,3.8096435316156664e9,1.079629318245655e9,3.082596676645011e8,1.8784277066389078e8,1.077223197037519e9,2.4018584925241437e9,3.3558707491405326e8,7.738281756732281e9,3.0663503885250745e9,3.2559093389287086e9,9.762277940559683e8,5.197954142132608e9,3.0207432158146152e9,7.644047066347612e9,8.452170530571246e8,5.503749331943366e9,2.66395164263191e9,3.6888421868673015e9,1.4948200445173366e9,5.479987320911098e9,5.217895118597883e9,5.399064518148142e9,2.6183451607306507e8,8.885618255938566e9,5.764889997339796e9,3.801573561274838e9,6.227097826364715e9,8.782059836253775e9,2.811433043603139e9,2.009683083846715e9,9.970781608929012e9,8.623338623010359e9,7.230219576013668e9,8.008909090410043e8,9.111546074675798e9,2.5762295191224384e9,7.867181671895373e9,1.8574574434137902e8,4.310553296873596e9,2.3815194139852004e9,4.6051252318060064e8,1.761705274670884e9,4.95000424599303e9,7.043710294548183e9,5.005311321847337e9,2.577312566675284e9,3.349791420607208e9,4.541128287016587e9,4.742614139131386e9,2.0582855621282703e8,7.040941168237808e9,3.670952626669216e9,9.11177822285431e9,7.863385177916379e9,1.7774460532854886e9,3.505131055402875e9,7.981783585609776e9,1.7794583696125388e9,5.627139221964848e9,3.4197140836158466e9,9.212186437480246e9,9.042847387808344e9,4.266094918684552e9,8.825957462489471e9,9.234698247467432e8,3.1388816622192893e9,1.2426128896003797e9,4.456166292334753e9,6.629270487538819e9,8.263274421561789e9,7.360350805463789e8,5.724957962402577e9,4.9161761284619055e9,5.960645692015483e9,8.33261886083462e9,7.560564652171978e9,7.897860460786058e9,4.07191740987903e9,1.0504187210995553e9,8.72703785051558e9,2.0731131367480128e9,6.055235632652363e9,6.390770080417276e9,5.730383631585124e8,1.6979608271641166e9,5.216700237604884e9,9.196315850104637e9,6.812269900705024e9,2.6488314390095224e9,7.747540184518659e9,1.8793038196823254e9,8.637270685677025e9,2.9315150233445387e9,9.204362242500997e8,6.239340957187005e9,5.626635474998425e9,7.618309103258904e9,1.4340069390233269e9,1.2491997738801985e9,5.246551483619953e9,7.259801095415652e9,7.894405302312611e9,7.469201691952754e8,9.155801657523687e9,8.173476287926557e9,4.370407934561149e9,6.130712952297181e9,7.928098972082701e9,9.820417970130318e9,7.236822424415466e9,5.525054764886826e9,7.088581365386559e8,2.322920401263835e9,5.637543451090455e9,9.06027771695281e9,5.623492061326909e9,6.174241905982087e9,9.916078754397772e9,6.346698993350717e9,2.8128454429231086e9,6.795209057622106e9,2.8813671941572647e9,6.665013188041722e9,2.9416143696319e9,2.803585390637886e9,2.9761735385625134e9,8.977670345586918e9,9.414880878098915e9,9.24084499437262e9,7.926760928351485e9,5.524835815579192e9,4.545466607527942e9,6.662704343478509e8,5.353135271799181e8,6.462017908240695e9,5.734403482910626e9,3.240789572533955e9,6.681648160469721e9,1.3074741433312342e9,5.05146304131832e9,8.270411304939821e9,5.617948678422147e8,8.792871783848051e9,7.816557714909839e9,8.423316854339863e9,7.020381499654135e9,7.592984176449132e9,5.674011341400143e8,8.342693103540573e9,2.2774319359815855e9,6.588140466452476e9,9.719871943170305e9,3.392922076032635e9,6.175599656007236e9,4.655354950510401e9,3.573646650781649e9,5.015642838668344e9,2.174784192185919e9,8.279256054020079e9,8.95030845324945e9,7.513639022220662e9,6.090810724634152e9,1.7522682279138734e9,8.28082881802082e9,2.7546679320482483e9,8.872343620560295e9,9.001116689897778e9,8.472519074619412e9,7.5694878866632185e9,5.900435334426323e9,4.12983034637463e9,2.982520863084107e9,6.8504264481041765e9,8.590937633201067e7,6.9778677594768715e9,9.61277997649739e9,8.061590258856969e9,8.469143168345076e9,6.128832854361561e9,9.125448312782413e9,7.322654885756414e9,8.097609446305832e9,6.27718746891246e8,7.166998052709203e9,8.480653168468679e9,6.055088113010377e9,9.249946517525574e9,6.074830468648623e9,7.75739967347501e9,9.441992472259914e9,1.9355865600229304e9,3.103155146548364e8,2.9485877716886945e9,1.760136870148933e9,1.4998324812005525e9,8.248851640499244e9,7.104767516610459e9,9.21285499257956e9,3.872675713004082e9,4.745216983288876e9,9.123977686106579e9,7.010947054906849e9,1.6073050757834861e9,1.2394190783191662e9,6.389131380569661e9,1.0254778503072959e9,7.864115077218379e9,6.352414161610643e9,7.404346415829579e9,5.676860259303898e9,5.158890191008894e9,4.199364405930016e9,7.065204264079924e9,6.01725312121293e9,5.876353418546176e8,8.641839265406635e9,5.803485613067823e9,1.335707891250204e9,9.73889756691499e9,9.33335433346018e9,7.003881347101185e9,3.443142252381286e9,5.003115185550801e9,4.508142559483138e9,4.879708205776385e9,3.035497946881367e9,7.10297230220899e9,4.648185254641618e9,2.2993332903571906e9,3.362234142470024e9,7.610531105009181e9,6.108711161499059e9,7.484208851491009e9,5.300892616715022e9,4.579107829234419e8,4.2030478481521406e9,9.744353068696274e9,2.0991586903659086e9,3.0936223890348577e9,8.285746706210917e8,4.355860429416145e9,2.2591748456344495e9,6.243524201504558e8,9.72313712191279e9,4.730204532525793e9,5.551696858078268e9,2.215742066358648e9,1.9771988506915972e9,1.185226428274555e8,8.424594533033525e9,1.2953622680985322e9,6.1280692217796335e9,9.543757785441662e9,1.9064821201736338e9,1.5131837523722303e9,4.195244517390213e9,7.355396953769246e9,8.033524089475982e9,2.917011696568481e9,6.684607489440572e9,3.0764758040049577e9,1.3154612050726432e7,2.120788407287313e9,3.520152973201046e9,5.054526036277434e9,7.321427015892329e9,4.310661200310693e9,8.049265572909272e9,6.16879772567197e9,8.858621723156712e9,6.098011515191483e9,8.478102649521432e9,5.60934774137945e9,6.109578285911032e9,4.880231356657106e9,3.504620622069221e8,2.1101594075954133e8,7.531753383130408e9,3.984458751439238e9,1.739093332089966e9,5.200191972704665e9,9.96058393085748e9,1.2031678073486817e9,7.655577204288738e9,8.178119991769926e9,2.1219945659834483e9,3.7634178286885476e9,8.328561951964623e9,4.268402494147284e9,8.134839312845155e8,7.561188414305444e9,7.877428218003937e9,1.9238696505929987e9,4.297977582873429e9,4.182509992372526e9,4.53736872407461e9,8.690847712976696e9,9.958298053925388e9,2.567267804322643e9,1.4448964634398165e9,3.8939792943153305e9,7.985956093832815e9,2.475369696638183e9,9.47208270454838e9,6.179409657785739e9,4.18289426911348e8,2.9757904800257196e9,1.7957684092613547e9,4.070315971222976e9,4.785023456920552e9,7.3508251711585045e9,5.764294699897893e9,5.010549056630405e9,5.2262089418654e9,9.154755986817348e9,2.0489793610126083e9,2.593464284113006e9,4.0025421598278266e8,4.224337882372898e9,9.571439433240482e9,9.896576371937502e9,8.798324963361155e9,6.086394388077444e9,1.5603296747741945e9,9.833618321737648e9,5.364153353222934e9,8.062028096497426e9,5.239404226103178e9,2.2327871395705647e9,8.872615656378132e9,2.7569354521152e9,9.494906691153206e9,4.935884727035066e9,7.596638848639699e9,8.67213141730181e9,8.713143449487644e9,4.554560995861649e9,1.3112466829665003e9,2.5393572477220583e9,1.6268841498611186e7,5.965068939957133e9,5.739715513395001e9,8.455207040979743e9,1.6585869105101147e9,9.27558371081114e9,1.2008968033043022e9,7.536991785054829e9,1.8539496069393036e9,3.2811894505698304e9,3.089621404108278e8,7.798835495474421e8,7.660652261993369e9,1.3271711608194802e9,6.054785790536582e9,3.8625239584676784e8,9.693644650523336e8,3.14336973194166e9,6.139003578790517e9,3.7257122372235775e8,7.105587029978288e9,9.781457055657885e9,3.9428718157712317e9,9.600764395580332e9,4.88530621876839e9,1.8259957289180384e9,3.1097483705899277e9,9.550585556618876e9,3.1094799565578747e9,7.92438777734826e9,9.611312226783567e9,8.352247981542035e9,2.3115016062337046e9,1.8573103191855123e9,9.266054428963959e9,2.6311824728143497e9,7.224671953245682e9,4.24065820230903e9,4.412890642539829e9,2.819435235213725e9,8.576195270575066e9,2.050553258736154e7,9.278555270281395e9,3.0642885889751883e9,2.9054496907982306e9,8.235822218327515e9,8.445836907526104e9,3.556057046642004e9,1.0607339106519253e9,1.29421768594013e9,1.941241414315681e9,1.9263281746182258e9,5.017550915308104e9,2.65270502727569e9,5.6819357019533e6,8.174181328581682e9,2.8206836626084332e9,3.8718563113877316e9,9.68857239604183e9,3.4137068049443073e9,6.371701660643958e8,9.302481322219172e9,7.413172331223353e9,8.164166548601304e8,8.552428125091667e9,5.269787053398522e9,1.7170476867451446e9,6.988736215623018e9,1.7575681791699216e9,3.978792240825578e9,8.060188853193817e9,5.499460582228872e9,1.4243800178833766e9,7.275529455308618e9,4.720615199435092e9,7.277967355824428e9,4.1614192222438006e9,3.380768259877006e9,8.496378532537429e9,4.478148340188311e9,7.711891705950409e9,5.170841747154159e9,8.556278701942003e9,1.5304119193302534e9,5.892235382501742e9,8.482798289449707e9,4.768306421128106e9,2.6116457344446664e9,7.399484057429518e8,8.365248157358835e9,3.2730600802750964e9,1.9365130337194214e9,3.58141930099512e9,2.381797856465664e9,4.829919673725969e9,4.378503747062864e9,9.994619064077986e9,7.737592751625117e9,9.847806383112238e9,9.56823308506381e9,1.4138466112372627e9,6.704429836359249e9,1.114221878659184e9,6.357968635156696e7,4.0192720204041944e9,4.745660062536684e9,5.4098986993450575e9,6.274607902003815e9,5.25996771255024e9,5.57272247908e9,4.356109607455043e9,1.5481175543940418e9,2.3827588556274858e9,9.717697361024706e9,2.0761202944074287e9,8.178928343793024e8,7.505819524132365e9,1.7627116203471637e9,3.8113618334004216e9,6.331150982980568e9,9.38115152421109e9,4.24067719451634e8,4.6841085885717945e9,2.0208007048604026e9,7.622481802378824e9,6.26459619626236e9,5.692822665117786e9,6.872643803670801e9,7.922145813959981e9,6.414483911700747e9,8.39620117974853e8,6.113202196229929e9,7.960056762232808e9,3.8723480682340837e9,9.615143725679373e9,6.98377052515565e9,9.12638948594616e9,2.8726448814001417e9,2.2343728614674773e9,4.0404548845525103e9,4.372543989729911e9,1.7096918188860798e9,6.551990118738316e9,1.2783513185941374e9,1.1227352621410258e9,5.404924425161872e9,1.4714291638997378e9,1.6903667248673648e8,9.995141211333393e9,4.630253404562904e9,6.7604313014414e9,2.0550853460592157e8,5.181160931122858e9,7.946776153415191e8,5.078096776638649e9,4.1091180796845293e9,2.1855356098215194e9,7.380045392524889e9,4.194556760676449e8,7.956299286308278e9,3.0051223157085304e9,3.99229759392158e9,5.163257529000035e9,5.698449121906489e9,9.382554134360011e8,7.723372954391405e9,4.555648341910566e9,9.371284008184725e9,5.545661474439328e9,6.00965327966093e9,3.146271229011636e9,3.9505647600425396e9,8.507831630518842e9,6.98612877926916e9,7.760723312563869e9,1.576007287880985e9,6.459935850848501e9,3.480918873460972e9,3.908343308214901e8,1.7858633591082628e9,4.5856756731051826e8,8.882022378172295e9,2.690047323020354e9,4.483544570763922e9,1.0571340060925694e9,3.509735420925629e9,3.110276412724076e9,6.7537276054710045e9,5.884356218043423e9,1.5094345067387605e9,8.499667088970685e9,4.590007723222553e9,9.382643477363686e9,1.8001594651349783e9,5.023650589123814e9,9.968450686476059e9,7.5416159666856165e9,2.691271643721227e9,6.436953705345908e9,5.486316862583954e9,4.2215102167845774e9,1.4986053941625144e9,4.601903742161752e9,7.266857344916522e9,8.573381609980507e9,6.11558802687557e9,7.124393539179935e9,8.851076309005104e9,3.246324632900991e9,9.62552587720259e9,5.254700969441091e9,5.518812718660892e8,7.641829804398681e8,3.0802947531479287e9,3.3666664393710456e9,4.1400326792342777e9,1.8706521144288101e9,5.513032265302272e9,2.8815254367017263e8,2.662243498245632e9,3.234924155147647e9,3.609333688026397e9,2.816203434968334e8,7.958483964064653e9,3.884292021259934e9,3.4204974429538527e9,1.812133462080191e9,1.3135179459907398e9,3.942008975482717e9,7.307500839233149e8,5.836207431580036e9,4.1782913048010383e9,5.3090258497840395e9,8.885391224314932e9,1.7728082403989353e9,7.221371229054576e9,5.387027947059666e9,7.068338323841482e9,4.356962389617773e9,5.904694668005805e8,9.259526628094084e9,7.7842522796648035e9,4.828022425026161e9,6.046764009754017e9,5.358453050761785e9,1.6217892161826952e9,8.024594247978737e9,9.6003263544409e9,8.940544657375244e9,6.906647862691461e9,7.608639050676758e9,7.929715423460819e9,5.363934865494606e9,9.850198444995132e9,3.974437684177784e9,5.675342399356835e9,6.7502654746830015e9,7.77019577632887e9,5.934825642399839e9,2.300291908814993e9,3.6789338354886436e9,9.885741462164167e9,8.96747157326414e9,1.469391161114195e9,6.658421541078025e9,6.101900998835295e9,7.661246274318896e9,8.121493403002827e9,8.395918884107567e8,3.18839294129204e8,3.276789424949791e9,5.064572230155722e9,1.126329690560356e9,2.1713895595998254e9,9.530565372284433e9,5.0061349678003435e9,6.586560035738054e9,1.84487807627295e9,9.479140423404833e9,2.381023021467263e9,7.27045571317683e9,2.0498572449978735e9,2.154593725554248e9,6.963212115146668e9,5.283100543465681e9,9.501056217080576e9,8.84732220628301e9,9.300088243086924e9,1.4878319437033505e9,8.562870353872099e8,3.3353885364222746e9,8.695104003472849e9,4.574930233970901e9,4.758429071840564e8,8.792888521889193e9,8.853144514613754e8,1.204192322824107e9,4.832690377016014e9,7.068078456440768e9,3.100332021258927e9,1.265015373127071e9,1.7737089434878328e9,7.758634456934423e9,1.94848741279667e9,3.8752251956586313e9,3.8031365595016074e9,7.154490520340013e9,5.818281426884521e9,8.766443468059263e9,6.818974741110226e9,1.1691705161734567e9,5.175993462478133e9,7.710229251377818e9,6.683456073190821e9,1.873043570118894e9,8.457193078472523e9,1.9461963837929764e9,5.463079029748623e9,8.140611500475366e9,2.8423593989987307e9,8.328889262664464e9,4.1804595962704915e8,6.110581846883121e9,3.380995005512143e9,9.190445320881987e9,7.172760650254528e9,3.2254355326186144e8,2.162292820915146e9,4.880315377102103e9,6.35457480509486e9,8.471908603343767e9,4.0171965986233325e9,1.2991061635600066e9,6.622066142316715e9,1.405344240639238e9,4.372797033652073e9,7.699390737740126e9,5.659005599583269e9,2.7382933047695436e9,6.262606660764821e9,4.795729564538309e9,4.326345998458007e9,8.154246346896428e9,1.1889562187173197e9,5.306820294942923e9,9.221148053654882e9,4.195151811642639e8,3.2646886053446136e9,4.04457991081983e9,5.974998645401353e8,7.540276956592237e9,7.693323488372556e9,4.339297303265284e9,6.015496991488902e9,1.9207397397002413e9,5.394112789779137e8,9.463518232078e9,1.4693125605678136e9,7.478799916643283e9,5.628542336844598e9,9.034332187020807e9,8.982082373516834e9,9.16089565606431e9,7.317870172440562e9,1.7374926509923816e9,1.4636474494497364e9,2.0293458686814215e9,1.4855898284114645e9,2.0201294737272656e9,8.985125271229336e9,5.228562987343925e9,5.192088996989429e9,4.247167573001973e9,5.145733663573251e9,8.772733411220129e9,5.376086051565947e9,1.4705379823074126e9,3.568457324928055e9,7.131978292118283e9,3.439205699435618e9,4.285822801500504e9,5.438992113364329e9,5.455024052774096e9,1.9700205874219577e9,5.489776779761285e9,1.2928929135654287e9,7.360454090175603e9,7.750117180603183e9,4.598967898354795e9,8.341005234440619e9,7.628519836281337e9,4.148041990056657e9,1.933190757156119e9,6.755094230336944e9,7.083643393482276e9,4.152906606673934e8,2.8832478745065017e9,2.195082168620799e9,6.049499743366425e9,8.836897354984087e9,6.13084951193486e9,6.366570691751282e9,4.0235594498430605e9,6.358305106876912e9,1.008374401523262e9,9.46201622592558e9,9.171960385084165e8,8.001834512310243e9,4.681359742731998e9,4.099024332339579e9,3.8683510020549936e9,9.370738507256715e8,4.742607278361744e9,3.844220690276632e9,2.1640899472306685e9,8.558480943871292e9,5.0783237557577856e7,2.3662827829671264e9,4.029962985559873e9,5.882461681709913e9,8.681472831174918e8,3.846003187322089e7,1.0183618147129703e9,5.041125686532549e9,7.206430846171243e9,8.653844164025055e9,6.952182582863551e9,7.391466573296113e9,4.902898903337719e9,4.555283612892066e9,6.362852050274843e9,8.450282985360414e9,3.3062732764951253e9,4.73988627570485e9,3.194287837854589e9,6.254201213673638e9,2.480074992838185e9,3.007390264784208e9,8.2382252702689085e9,3.8745566709084034e9,1.3796558702742878e8,3.080308000084119e9,6.555588381939722e9,9.455513046029018e9,2.1698845644215946e9,8.511705352687016e8,8.2412283286604e8,5.7307854694271755e9,3.776709725384253e8,5.118943505449287e9,5.15861142868783e9,2.444459348693192e9,5.603338505430338e9,9.65971528907773e9,4.908476599066327e9,6.365515890201223e9,9.982336796214333e9,1.6935817327983227e9,2.406525713599981e9,5.580843097437961e9,4.133599335826641e9,9.971442080603638e9,1.5491057478313007e9,9.308449527490015e8,9.438401684016443e9,8.0078945409431715e9,5.689634114952137e9,3.868245626147686e9,5.35298821358924e9,8.780777944203755e8,5.377339959495308e8,5.951304383989592e9,8.479567908662272e9,2.806393710195904e9,3.587308161940028e8,8.172884773653392e9,2.338959547522572e9,4.058556358930248e9,8.263531301285976e8,9.784025000937077e9,1.47836541352542e9,8.740746292363289e9,7.186894795555112e9,2.1119855324608371e9,8.0470677646571665e9,5.094235481566702e9,6.887713864780805e9,3.670640770221345e8,1.4407963540819502e9,2.2970842154110605e8,2.751899680044099e9,5.859112674619185e9,2.889278638172048e9,6.806582037295408e9,6.694397826321796e8,3.3805002009507036e9,6.141265699491937e9,6.021209263176263e9,3.404472888236436e9,5.182198584406994e9,7.456440157794278e9,2.264361318824907e9,3.4828269921903996e9,5.557953666820923e9,4.521650133113912e9,4.450304646671183e9,2.532324283442311e8,9.514136922751392e9,3.0299537055763803e9,1.8460985293559606e9,4.583560631663235e9,2.343432469015366e9,8.801146939769524e9,2.400931564794062e9,6.117536632520093e9,7.028103666469825e9,2.9697465368644905e9,5.354357544925709e9,5.182206541683032e8,8.875116715690222e9,5.614191617481954e9,3.9492959675708737e9,7.130817989864013e8,4.2525974624362516e9,4.2665614430496225e9,1.7123751688757427e9,2.1068926378804786e9,3.7639518134670715e9,7.502094231399992e8,8.2948600501677885e9,2.92970173165672e8,7.177966583106829e9,9.35155009579996e9,6.602197433000412e9,9.716200076879637e9,4.634874626158298e9,4.502046913421598e7,3.8595221802001047e9,1.971962445119333e9,1.282091879160041e9,5.361372341496758e9,8.6725968232147e9,3.4922581029594135e9,3.0545948056824245e9,2.2959763739338045e9,6.107558591010594e9,8.62788481515481e9,6.54510935163009e9,1.833920161829401e9,4.3971653097271913e8,6.432000963765109e9,2.0077919900259688e9,3.2373003822982426e9,7.198110190867553e9,2.6123144862038007e9,8.472054869517509e8,2.6981019242303615e9,9.308113236903687e9,7.300436016652496e9,2.4070549108789897e9,3.6525085175133853e9,3.471983102642092e9,6.103354965279143e9,1.1630267060306332e9,1.9546099008358853e9,3.108881157305847e9,2.3825578437271476e9,1.481902502960466e9,1.8859642630024886e9,2.8513335337327704e9,9.397737401920263e9,4.2520784584542203e9,9.373123596533169e9,9.131059271620363e9,8.909388915823282e9,8.170109546430971e9,6.97846533519978e9,7.0176120629860115e9,2.392726826496455e9,7.113054266588057e9,1.260778091177347e9,8.427166677691208e9,2.097525223634661e9,5.380552479041234e7,6.778458979351414e9,8.189853692826025e9,3.6877366190491943e9,6.538031392259264e9,8.224499089837265e9,8.984799567417866e9,7.151959366791111e9,3.5268797965686016e9,6.254683090194024e9,3.3581404939816117e9,4.828188508797374e9,1.7135722574428303e9,6.737984534710708e9,9.0706516224463e9,1.7527000389329693e9,2.2850987443590374e9,9.947141966938358e9,6.7741959472222805e9,4.506812532882509e8,2.17733587347254e9,3.131614469265379e9,4.617992286966771e9,5.579062085092869e9,9.470327979100954e9,8.707385808828909e9,8.660347963268305e9,2.2207647207195935e9,9.084233990509428e9,6.546787105165625e9,4.954576061779111e9,3.2122754605299244e9,9.056221752339603e9,9.823580010534595e9,6.928798291611073e9,7.855400000102979e9,6.061323761963738e9,5.889123303009029e9,7.067538547865346e9,4.235460064232587e9,9.32682147326533e9,4.681444479072763e9,8.40636317234715e9,6.58421872727679e9,8.804318045053114e9,4.986792835031733e9,2.6409491313660407e9,8.057965809575521e9,7.361344626656942e9,7.255924000945461e9,7.645312100037141e9,3.720939519053246e8,5.39223439395613e8,8.482150641041225e9,1.2656035461212556e9,2.6479873371424356e9,3.623558659866657e9,2.4237252163476763e9,6.235286323134123e9,1.2664243183249578e9,2.910158128036785e9,1.3574633907970402e9,2.2746232335057893e9,5.2430769831517845e8,8.204027984289034e9,3.0088012333789306e9,1.9069483197468529e9,4.6508077173710375e9,8.216427176574115e7,5.888818373210725e9,3.69620949402919e9,1.8795890240276859e9,6.33683731829632e9,7.054308771634199e9,8.501151460128693e9,3.263468206906126e9,8.273006744398694e9,7.959958282642979e9,7.441066726489302e9,6.551342648096695e9,5.5619440942486e9,1.8805614727646313e9,6.492461902806146e8,4.807800604594246e9,3.663668716223234e9,8.309422843629539e9,3.0893273633650975e9,4.020176099887577e9,9.721027680674685e9,2.745066421759683e9,3.988705979169396e9,5.671924511736249e8,4.868603025009851e9,5.210877986601863e9,3.1893784373183906e8,3.872584155763893e9,6.763833691307788e9,5.758691598028292e9,9.229844037688198e9,1.7939146115432546e9,4.466586535375701e9,5.630537474171437e9,4.628409044836716e9,7.18089671346811e7,2.209774210846671e7,6.896708006133911e9,8.954587621707178e9,8.783668479409122e9,7.399558347615331e8,5.432774693196022e9,8.3723027230706e9,2.426682875463707e9,7.515908005398339e9,9.71636386514155e9,9.663465188218094e9,9.973967863881735e9,6.771977517459842e9,1.6279734869864383e9,3.597885844786819e8,3.7143999445536766e9,7.034317412707894e9,8.767893703822178e9,5.026346427673818e9,4.1382943042533174e9,2.391431229978892e9,1.7434610231499104e9,1.421586527600961e9,9.133948902079145e9,1.3665610852007027e9,8.073529562299059e9,4.695638156705341e9,6.585380435536814e8,3.014164723826194e9,2.7409149448004932e9,2.8286401808354845e9,5.300902063244718e9,5.164195537560002e9,6.480699936237402e9,1.1343387947735083e9,8.112297240723256e9,2.1319347730438754e8,1.3948710765405526e9,3.105861216572391e9,9.195196798966743e8,9.265898699235628e9,1.186944708718497e9,6.835042643341848e9,3.0394349163548107e9,4.335774825605829e9,5.036544271490018e9,6.298152599631847e9,9.918221214914669e9,9.441540310943783e9,2.267932322047497e9,9.20560227901793e9,7.079602399607149e9,7.933411445790308e9,7.274472204314888e9,6.191510328164995e9,3.3512315303556795e9,9.785114989656797e9,5.986735159880308e8,4.8602203174771154e8,4.424970631055925e9,5.337238635378984e9,9.224701812443858e8,6.893248648499794e8,9.210882158832098e9,2.1946629091767187e9,3.5828451089092193e9,8.708720008286179e9,2.4802744585190053e9,3.3829880736275685e8,7.388549768918959e9,4.298027547566099e9,8.34698754128296e9,9.241276679537561e9,5.91917047753624e8,9.03315122135355e9,5.005393598563628e9,4.231298993965793e7,5.055517282231828e9,4.2120232813746386e9,7.9534656610115e9,1.1677588529232829e9,3.326802894599482e9,4.2670194766677773e8,5.62620317902186e8,6.041434785196484e9,8.147336407553491e9,4.803092977402146e8,4.0804106193479295e9,5.361085018872939e9,4.602113058504226e9,3.7972316345627823e9,4.942305178859869e9,4.484650737535735e9,4.874595841980378e8,5.941294487601319e9,7.301224006991889e9,6.506852305139624e9,6.873921280886953e9,2.5347712621162934e9,4.0665198692320824e9,8.464111725173923e9,4.376514924807666e9,8.312412235812827e9,2.972755532730025e9,4.9557599678875965e8,2.0007376064334903e9,8.2349362429911585e9,3.2897225638887806e9,2.795475013393023e8,8.631835727466204e9,3.0230580184069633e9,9.039352963291426e9,3.7574243197138124e9,3.8641113312753906e9,1.7120156057555124e7,4.45739632675057e9,1.1047392436508741e9,1.862438280004882e9,5.084601101803559e9,7.661434820077168e9,2.865730777365172e9,4.1312480064521885e9,4.657371908438373e9,3.566352211169166e8,6.338892408585682e9,2.0400324806594038e9,1.2305258955351129e9,7.347514863488281e7,7.930218888730365e9,5.199341466263729e9,3.0077027080956087e9,3.7222903743095827e9,5.392290896317983e9,7.231069518060851e8,7.435997132733897e9,1.3394862497782888e9,1.7038471207940242e9,6.6022722317099495e9,9.499042784259174e9,6.629863170777256e9,9.623242093375658e9,8.89699548238576e8,1.4623153756217544e9,7.916826577269342e8,9.421953630029419e9,5.482435970768754e9,3.736147505744135e9,4.0671651686373367e9,5.493156647010333e9,2.2342852669068346e9,6.809968184145048e9,5.350275716353449e9,2.8395788665460653e9,3.5749494154668036e9,7.071093635582927e9,3.4463622270848193e9,4.630904148169134e9,8.555945166519628e9,3.842819813305699e9,3.899019301208706e9,4.596584842759033e9,3.5292631558827105e9,3.9430322375594063e9,3.7451187630763373e9,6.458906862733071e9,8.93605196627344e9,4.747938525333738e9,6.67168077033707e9,6.120314945049892e9,3.3164258812362037e9,9.331726730791578e9,9.960094670194818e9,2.541244958749227e9,5.528816573738637e8,4.207307319496978e8,9.159213075368036e9,4.0154289214352713e9,3.191562971135836e9,6.565070338225499e9,5.579692590969395e9,5.499976423294913e9,7.466814051142379e8,3.854269081715678e8,9.503818405294453e9,4.880461436233956e9,8.525545436173429e9,8.250943779326367e9,1.1277006651772358e9,2.629688816490063e9,1.2673744886066463e9,4.581291130151308e9,3.8855361773673115e9,5.10199651594092e9,5.245897352722422e9,2.603296769847979e9,6.4876596574014225e9,5.673948756649927e9,6.716925398163957e9,4.079239529600277e9,7.604095828848378e9,4.498065424980489e9,4.3244115945368475e8,3.2115975610112166e9,4.885738167122089e9,5.986387831188931e9,7.8152962548633585e9,3.7663928541800327e9,8.992902129816415e8,4.940640336255966e9,2.8638703133699126e9,8.025393470513805e9,6.870677920154472e9,1.7679777337036128e9,7.605021611131361e9,1.8117993339947236e9,3.819753884523154e9,1.7881551944554942e9,9.399964734939373e9,6.158527161905843e9,1.3659724783606086e9,3.5754804207805333e9,4.640103935041247e9,8.889879321360613e9,1.3883437819927857e9,5.433501263173487e9,2.612596800846013e9,3.791002988262483e9,1.928641399444716e9,6.141693826941464e8,7.545814174826029e9,5.188747545036187e9,3.1806148399387556e8,4.361138468229116e9,3.8564701362538524e9,6.544466755663255e9,4.058126298632001e9,5.679801400110818e9,1.7913628390926983e9,4.004358682471518e9,6.597550972727564e9,2.1183106131256902e9,1.743995951072067e9,4.1064132089332104e9,5.629954060630254e9,4.0412677174969926e9,7.136522034071209e9,2.243405962927434e9,9.280231015220392e9,2.203587809972235e9,5.896527689697352e9,7.295983392993821e9,4.663615743041961e9,7.234231410409107e9,9.524297617302055e9,8.833014442816866e9,1.7081915972850826e9,4.518349707112812e9,9.718119032316763e8,5.518640093922124e9,3.1690542431902413e9,9.869479401061373e9,6.834637821348954e9,5.875188249414985e9,5.80449522086621e9,6.638879671088942e9,2.9558271994675965e9,8.743005630352053e9,8.837332095158804e9,9.58288816981418e9,6.76977934900894e9,2.440085100633299e9,9.582955597257059e8,9.731189671213867e9,6.2292172275139e9,3.600109876289752e9,9.44527179811993e9,2.262386915450223e9,1.645644860747264e8,8.184024914353004e9,4.87616229598739e9,4.639370398802767e9,3.5661557375806284e9,9.211118183689999e9,8.890798491547396e9,8.129565827140609e9,1.9096368644051175e9,1.3456913039521945e9,2.9650358676339674e9,3.845592065795753e9,2.226015458537717e9,2.832789580088344e9,1.497267514153159e9,7.779555363839685e9,9.306084083630886e9,7.674462540508875e9,7.809171516387333e9,3.086867066975065e9,6.60665721020996e9,4.515100762067115e9,9.013535442320038e9,9.54389936245669e9,6.262033968210503e9,1.265841754992697e9,9.54127274546992e8,4.861498770513811e9,4.296178410124635e9,9.659756782670904e9,9.688724717022635e9,3.3898482359268003e9,2.2633035570286064e9,6.715083329248761e9,5.724841261914573e9,1.143250551710263e9,7.3276721002987795e9,7.353948799643281e9,8.421144705975036e9,6.866324770891158e9,7.024524585230465e9,5.029771545973946e9,4.1157508756679974e9,4.708683292091555e9,5.766969806054587e9,1.0376519056928102e9,4.424600039882956e9,7.073155758447747e8,7.195524010884807e9,2.386747522731193e9,9.508538676043081e9,5.446932767126892e9,7.625929116227475e9,4.642481268443916e9,1.5859779684306185e9,5.564263942339915e9,9.261198238966825e9,9.049615237758932e9,6.074733487662574e9,4.6871173877648735e9,3.09662956204614e9,3.1008132276342225e9,4.66619468311053e9,6.123805475512805e9,4.026850219979664e9,8.411441743842356e9,5.286489960330048e9,9.471086055740442e9,4.569091789500772e9,8.100420041803996e9,6.284433173773008e9,8.976087102817053e9,2.5691516396076074e9,3.6943505481888995e9,1.3401118958246815e9,2.991673145568394e9,1.3427444072188077e9,6.362714676471571e9,3.835163749771231e8,9.97436584990665e9,7.431613411463226e9,4.287023468231622e9,8.460583189483174e9,9.279762897218568e8,915608.3448158547,4.712478944266569e9,9.224556721325632e9,4.115279811240766e9,1.3680174462422779e9,7.006220599320946e9,5.0665019751773065e8,1.94437343919871e9,2.160480305103074e8,6.773139008538217e9,9.481032911966858e9,2.839841797739987e9,6.903118449315471e9,7.654364330493401e8,6.366971652444962e9,7.214237655405261e9,4.540680792720959e9,5.225557626824519e9,4.199015195323844e9,4.169170050385651e8,2.5057808114680168e8,1.991502023668481e9,7.758200158398901e9,9.380389766665367e9,9.744940569640808e9,8.874102347630129e9,3.8379338368174486e9,4.585925262262912e9,9.55473250275934e9,5.594474502466971e9,1.385829543382321e9,1.6076947376398842e9,1.8376366428129888e9,5.448963282110392e9,2.5042384872075662e8,6.165068142181908e9,5.942147051176838e8,3.073159464716184e9,6.731483378741295e9,3.3154696308832496e8,4.341983466722464e9,5.062296572402016e9,6.772493377643528e9,9.280088776488293e8,7.049100969823716e9,8.615598530814457e9,3.1009303180330663e9,7.772899181330342e9,5.43889033517834e9,7.146060192443845e9,5.259221741923777e9,3.459563842468932e9,9.613932059015802e9,3.260037929831263e9,9.669192468803213e9,6.805598301978954e9,4.65851700544408e9,9.313194656245705e8,2.799906326856238e8,8.329174755154796e9,2.9859995187018604e9,4.734016483955791e9,1.9670145024940245e9,3.9131662034331427e9,9.963268534955254e9,5.210359441049128e9,8.267967981606208e9,7.036557846486555e9,5.481190753885555e9,3.4477262722621427e9,2.3765549009123187e9,6.2982140526997385e9,3.1741200668207393e9,8.523151292217655e9,3.82219089460395e8,3.4885788208584623e9,3.6956089785694666e9,6.0900914976200695e9,2.1015328597680206e9,3.927837112600141e7,2.676130547256448e9,7.104395413195658e9,3.33129903926869e9,7.270723685736158e8,6.199051328536793e9,2.617785775044029e9,7.872652238166342e9,3.177572618131539e9,6.014672379734236e9,5.696505662980046e9,5.086392353770917e9,3.298733281324735e9,2.993996000890822e9,4.490052869272059e9,7.017956852003478e9,8.581173468915398e9,2.324331163389667e9,5.199184547982333e9,8.157611727799973e8,9.840547001001167e9,4.1085161947314177e9,6.442408691123636e8,1.5290949190256565e9,8.028306365626902e9,4.881306637293681e9,7.646092875751452e9,6.331004617780806e9,6.688872844128691e9,7.327717030975423e9,6.58138967079107e9,6.434033314424932e9,5.430179631953491e9,5.402482558964377e9,1.7444878132218666e9,7.210720469899712e9,8.719756707208487e9,3.1051830880426936e9,6.025599232695671e9,1.372266938318256e8,4.421408377630234e9,1.9398156160736125e9,2.9663741550309973e9,4.5778466787203665e9,4.437793257958884e9,8.932867558790821e9,3.8727393730249314e9,2.855346527837115e9,6.233021356392085e9,4.0822089723979383e9,6.068350171925693e9,7.997001563659713e9,2.0054337107942245e9,7.785202021762805e6,3.498099309907474e9,6.701127856165443e9,9.539466574043375e9,8.531978795611206e8,5.06364218520665e9,9.097965008651009e9,2.565891066427882e9,2.395907292752988e9,5.886534700525089e9,3.4512287106536875e9,3.3364837046152964e9,4.891589852719929e9,5.78806852780826e9,8.447580230905469e9,8.029549536876141e9,2.860060918376627e9,6.737998598687919e9,7.687383898501365e9,4.691279580317188e9,7.803598321559123e9,4.400682155975783e9,9.688081555537992e9,7.257375981483011e9,2.7249375366018324e9,4.739503994920136e8,6.440464887518056e9,4.594211741717713e9,3.778370656527219e9,4.256031545609163e7,3.1727689651583114e9,7.72701335051128e8,8.63320860274474e9,5.099567918917811e9,5.188274711870393e9,3.18776302596718e9,2.5410436593892226e9,2.5116320817557135e9,2.404975533094669e9,8.708242779757273e9,9.737075754815979e9,9.54518824644283e9,5.575020208411324e9,6.945014872135418e9,4.2657499714994717e9,6.456415401330422e9,5.577846510409826e9,9.861157395640028e9,7.708583432717675e9,3.6825492503314605e9,1.7590106698762364e9,7.98084471714271e8,1.107955112833663e9,2.1236903460386937e9,2.568252592630097e9,8.792081702325546e9,6.365229357546836e9,2.139768164125817e9,4.3098204860170765e9,3.409063307121548e9,6.598359899081009e9,2.001918296918086e9,1.39592302434554e9,5.433390325644444e9,2.377623665107369e9,2.0003701631890392e9,2.7009187615356965e9,6.034547047710867e9,9.026207398353085e9,7.996878615796046e9,6.625993290943855e8,1.5288617875849931e9,1.1313505042665117e9,7.101269923292498e9,9.592875535547617e9,7.901934977814704e9,9.177373962786726e9,7.073583879484352e9,9.203146855690887e9,7.237467904482904e9,8.81066330649791e9,5.631551848572775e9,8.643352646312624e9,6.461096796902845e9,9.844450821086542e9,2.9456547334670024e9,1.0223734361409365e9,1.4124404173480654e9,5.375842991745595e9,7.575705674170304e9,4.1307801547809644e9,6.923743160912084e9,2.662374613061489e9,1.8781157004323757e9,2.648305651469638e9,8.93198559873455e9,8.698504763800577e9,4.347726242007444e9,3.529782643759061e9,7.156426813656136e8,7.45940751545055e9,8.300693249332159e8,2.101857316226593e9,4.082817656116756e9,9.387147011230103e9,7.784820973904481e9,4.028028060666977e9,3.108143219511844e9,4.417762548247391e9,1.218325889342241e9,3.301403530590862e9,4.920592251095516e9,8.855660613605728e9,6.409229621447265e9,8.471231557160416e9,9.371869675279394e9,6.260585446331676e9,1.2988546025644698e9,2.61956263273321e9,6.484181571503507e9,8.559679358519865e9,3.9690562226562343e9,7.954744384702494e8,3.5715414663689814e9,4.2262694860471516e9,3.7397951902435225e8,1.4046845796627805e9,8.198436650757368e8,7.460822231705755e9,4.1474982800134454e9,2.7411169139012303e9,5.336616246351392e9,2.646585922979101e9,1.278941881165645e9,5.730578404105648e9,2.619209234497196e9,1.5002041363619423e9,7.963032986629538e9,7.284596635875607e9,3.4475944994164143e9,4.452382822061274e9,3.6798539908206596e9,1.7611593547895942e9,2.855115090346446e9,1.4057380499394834e9,1.3885305518991876e9,8.810439572350924e9,2.4829439496099815e9,6.592035679902392e9,8.11914434211673e9,6.099584722910453e9,7.577302972060962e8,3.0566678216300626e9]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json index b0b10aba0bb8..66b7f71710c1 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/fixtures/julia/small_small.json @@ -1 +1 @@ -{"expected":[72.68778,6.0213923,11.310747,12.221246,15.94728,11.382545,8.114725,50.699036,44.973854,0.29624382,6.1469646,2.8754923,9.105686,1.4466339,60.93522,39.239647,11.194659,14.730007,38.006516,69.639626,39.990234,18.22172,6.8072643,0.49828413,27.492344,9.075046,51.82701,13.141868,7.010968,13.555677,6.937394,19.880022,62.896614,82.286766,7.6044497,9.686739,25.718699,1.4166762,1.2013394,48.751842,1.8226761,19.477633,6.193088,10.7552185,61.05197,0.28290308,37.710037,27.005955,49.096992,7.840165,0.4777463,19.33751,1.7439269,19.060806,78.85758,3.6230729,25.236696,47.071663,56.96259,13.217617,1.3856536,9.610565,1.8778379,78.3874,16.876238,31.953463,21.190975,16.235027,31.052261,30.590305,26.634438,2.519017,22.235472,1.0143294,43.63498,85.430405,83.18226,73.98486,4.3933463,8.402491,0.47447821,39.344036,26.49929,16.913359,18.223131,46.372604,0.6686645,22.330906,61.281483,18.520943,1.8296484,9.509194,7.7542415,4.397039,5.9662313,41.487526,34.699795,74.78875,33.893745,26.57663,3.760698,15.933077,8.118452,7.5369363,24.239832,15.728108,12.92438,13.2465725,25.958782,10.128187,0.2744117,45.152733,6.6060996,8.098477,0.658506,16.12571,3.5632324,2.6061912,12.413401,2.1728823,20.49827,32.15569,21.155851,12.797127,2.3764966,24.094452,23.878698,4.1297398,8.370208,10.2546835,67.22067,45.194168,9.408435,54.356586,54.93819,45.913395,21.445765,54.639904,25.059872,9.230584,0.69056934,0.9058525,72.003456,18.729017,68.4939,4.008755,22.272203,47.610897,11.852208,18.132753,8.7318735,0.22906019,2.330171,9.431829,27.993158,26.661472,5.0892167,40.46835,75.37054,5.552912,4.883199,67.614555,41.261005,3.7926333,52.83577,1.342317,11.232102,51.13552,18.63506,40.388836,22.120588,12.0293865,51.476543,4.531625,10.353871,1.4041262,12.517494,0.9306352,13.242295,27.838976,7.540571,39.836697,31.172588,16.554749,27.722702,7.7701817,0.09277986,19.888163,48.529495,0.36916816,7.4971266,2.8596294,2.2770426,7.320561,42.182907,4.4504185,4.4661384,50.192265,10.077581,33.626335,38.77899,1.9526683,24.781515,1.5331204,50.448124,0.68847704,12.579326,0.27418122,5.793277,57.298687,5.8747754,13.870455,8.349897,22.111542,2.0781887,4.1554875,19.99851,21.645693,4.5451255,4.49685,39.64117,4.141388,60.344063,12.680754,33.50707,37.762012,17.075653,0.43679172,3.0804389,1.0794694,21.332787,13.663187,23.55444,22.045368,8.684362,81.414116,9.682628,2.5587118,23.707684,30.46073,7.3256445,2.078385,33.274166,3.037628,27.189589,44.475197,40.380833,19.588333,37.05012,2.8007653,28.208233,11.002189,7.9833746,53.733036,35.626873,3.2190955,33.14689,10.360887,2.8075526,14.2898035,32.385574,84.626785,4.4193645,16.705961,4.9190755,58.580143,5.2441883,13.035769,54.296993,59.553616,17.785776,12.291958,9.504682,16.035177,15.734342,60.8714,54.74824,17.20361,15.098623,2.7633522,2.434681,60.099636,11.378503,32.22258,9.34945,14.149974,12.549336,15.840406,7.050099,26.92402,37.987804,35.54381,30.28217,1.5758253,18.879974,3.2752426,21.489027,0.17117377,20.079113,0.4326288,61.3745,26.746151,11.804189,0.54932475,66.316315,5.9991136,8.910665,0.6796084,3.488379,30.857883,71.031166,0.95901024,19.986126,58.070087,15.016421,54.96818,0.14544953,1.3412687,25.792412,29.14227,21.184362,2.746139,38.713287,50.30837,22.600077,2.896189,39.708065,62.403572,11.129932,24.464731,3.2622976,26.885654,0.5495603,36.562138,28.867243,3.1587238,16.38619,26.146954,8.804531,9.797582,16.634241,22.587158,26.046028,31.880505,50.69084,3.0448961,7.8699894,3.713531,32.69221,6.6646748,36.42861,49.62432,25.74578,9.465058,68.59263,32.25238,5.532015,27.38358,57.404053,1.253054,9.673823,3.1152382,33.98671,15.669621,27.614384,37.241,10.609317,16.520344,3.671596,13.073414,36.426167,71.090645,3.3611746,0.60125756,63.50618,21.89918,71.363785,11.853663,34.151257,65.59222,21.306524,36.136948,11.075473,1.3758222,5.537026,28.651346,18.924547,36.857475,10.798963,3.1551497,0.5147048,35.603516,7.461037,6.2062817,0.94740397,19.734478,57.679382,19.704144,35.457157,5.0809593,31.498894,3.5054011,6.4270306,17.923832,5.106913,3.9410436,5.8388944,64.740715,3.2872744,33.006607,10.3885975,16.224325,11.95242,6.885801,17.043156,32.44531,82.02055,3.3630478,54.27561,24.171122,22.539091,0.75368935,29.017433,22.445307,13.29102,28.616667,11.125053,10.783571,9.822482,39.8478,0.7886517,8.767171,1.0572668,2.1899045,7.8446875,8.898038,32.875454,39.031902,5.5279307,22.702991,21.502525,6.7036576,3.0608308,18.389713,23.958834,0.75403214,6.554221,48.469486,14.248811,8.043126,10.871326,12.592334,14.348321,1.1460853,23.0259,2.4262917,23.786001,12.723538,1.4745144,2.5233157,21.991709,2.502397,10.011991,96.92932,0.9775136,8.016561,15.802377,3.458264,1.3207235,2.8865652,14.513496,4.8590074,1.3783987,6.805021,39.718056,48.011086,62.345943,36.28551,21.149967,78.89238,27.433128,33.725933,33.062584,63.748978,5.8219023,24.448343,9.751553,8.083873,81.514,25.563824,40.53324,7.3917537,1.4748454,11.655338,1.7092658,71.03721,29.071123,7.3627157,46.549206,20.438042,11.280953,7.370283,41.648266,4.8849454,44.394608,7.4694676,2.9565816,37.278446,7.625929,1.8401828,6.935213,25.349337,18.946028,28.627478,24.392115,1.162586,31.86368,12.49951,4.525434,2.000517,19.620562,20.091093,9.183097,16.364431,66.43775,43.180542,42.605564,27.806526,65.870415,31.804901,30.018843,1.335034,33.10877,0.52421474,3.8995633,2.0282936,24.130398,3.8130817,5.431226,9.142418,55.66865,7.9245033,21.174799,5.7522573,28.542124,0.6914756,4.1965446,11.786652,37.458366,5.934644,23.511255,26.29248,5.6131096,6.890693,9.024654,7.2683854,23.924381,12.801787,31.742622,3.1064749,15.697372,0.44842032,50.287376,44.859528,19.020258,6.689258,9.546948,14.252086,11.497729,9.016248,49.78347,26.967365,50.654655,11.745242,27.648201,53.91775,52.36022,21.397654,15.975642,11.059555,6.54431,44.77896,23.347849,20.132473,9.99987,10.343275,16.107605,25.56638,48.03612,6.375466,55.022633,13.975393,24.865894,83.02258,2.8463163,0.21877673,4.153118,17.742292,0.19226766,9.020792,6.757314,67.51126,21.614996,3.6972752,10.28605,52.78291,2.8904638,25.639126,69.69128,33.04306,14.6230135,13.252369,5.851551,6.650605,72.26678,1.2249646,33.03808,65.92771,83.86853,62.29653,33.133213,64.580315,6.3795857,51.566418,90.96817,30.194256,18.584358,26.02706,10.867355,3.6633124,8.713648,25.396969,53.279366,24.811773,7.4566965,52.786022,0.5737123,19.7792,5.064587,9.332242,48.858234,29.00487,0.9726884,52.28976,0.8194454,7.469047,25.483728,2.1507106,18.579775,8.134618,44.137886,7.73704,84.55605,14.969074,20.073143,22.064386,20.285486,2.4809618,27.915615,80.51059,90.24934,3.378662,18.007399,51.945934,39.303143,41.173412,7.1111755,3.6804738,2.1328053,27.369333,16.18473,0.1415016,35.646885,27.089132,4.3782516,72.99904,16.599766,21.803596,19.51473,10.331273,12.737585,6.968222,29.867151,4.0539474,72.35417,0.83528686,2.4399786,8.322116,12.516371,40.641052,12.927339,15.125946,17.119888,50.904583,31.633741,8.213982,19.519768,16.29113,56.26962,20.374395,6.228451,24.630991,1.710576,17.291645,4.4574227,7.4872084,58.478485,27.146288,1.5111057,67.87577,12.102067,58.30829,7.7085195,1.2122453,3.5410647,22.90501,11.069921,31.757957,74.86001,18.551067,52.992805,21.062395,17.846333,58.051167,6.5002227,31.718914,65.71804,2.8695288,6.8869424,44.24456,7.879247,16.021471,15.715868,39.33248,21.82853,6.065632,18.283195,9.0366955,77.80467,33.305225,13.327011,61.660736,10.846198,8.7664,49.025246,27.57183,11.985977,35.658398,15.110091,15.798516,16.47644,36.73005,9.635371,6.239686,12.684741,63.940693,40.7341,16.152126,92.69956,18.508173,43.87794,1.1090024,0.028245484,20.474571,12.099199,7.1276956,27.8714,7.1111803,28.062717,17.232513,3.8723376,3.3353748,35.701084,27.926283,48.840916,19.55441,37.49683,21.391209,30.344137,3.7847195,20.491322,10.3533945,19.495863,11.216684,16.304459,62.04605,10.705346,22.132198,18.465403,2.2803965,74.45813,13.109676,3.2858255,20.20462,6.0666046,9.243972,8.229908,0.0642474,23.878622,33.71944,2.6123722,44.503876,26.18194,1.9111105,14.216847,61.701557,4.4229927,43.763515,43.095203,17.190584,0.83787477,47.639732,23.47128,34.419983,14.225941,14.164466,21.546215,5.500821,75.95331,10.903915,13.537901,13.976766,1.474039,19.65769,39.024487,37.15434,6.584622,3.667969,18.21839,39.417316,1.3821008,21.090704,20.300407,1.7846378,1.5023518,71.23044,24.243834,6.4594936,7.6726513,0.13509688,1.0504804,38.76103,6.7219715,53.374477,14.325802,40.339798,24.503696,32.64977,3.6691544,6.76535,3.1660223,1.9274522,15.75322,62.291183,5.8814764,11.13183,9.285312,7.796026,40.91935,8.035978,7.649112,80.54935,21.704498,86.09454,54.943428,19.846228,18.449244,14.616247,7.9209995,22.801352,20.734447,4.4790936,67.10713,6.928997,45.093838,0.67986,0.78470695,5.8958626,13.97487,34.417637,28.49628,10.791212,1.4797748,12.780403,7.1966934,76.971306,2.446957,26.502348,24.97647,1.7285347,8.299263,32.891155,6.128187,5.686695,75.306625,7.9423094,85.881165,7.9590316,2.7942066,3.952208,43.423603,15.623009,0.5719799,25.185093,67.45354,42.38464,8.120574,33.005398,0.010059888,1.1463569,2.6509845,3.0132408,17.791193,24.80289,11.767591,59.671173,28.665201,62.97093,2.3843014,1.3420329,6.488109,0.17279261,51.262325,8.009537,4.9474835,73.77593,8.084542,0.3362614,23.764101,19.178326,2.3183057,23.48735,20.369274,5.573083,28.615446,8.441082,3.4732778,33.33978,0.41628242,4.802251,4.198816,33.81428,5.8326783,6.920162,10.064893,68.53478,56.141502,54.523632,2.4410253,13.377466,1.5285035,34.21277,2.1222713,10.202658,30.292944,22.873333,31.358727,20.379778,72.55197,3.5608683,44.54294,3.4329584,3.2541206,4.8059483,44.272602,14.093252,11.948986,22.345148,7.2932434,1.9894692,29.742361,21.432514,38.412025,9.809534,22.796207,36.69903,2.2103798,9.827799,10.902899,15.88833,8.811832,16.213696,40.087933,63.893276,5.1865697,39.787777,4.616746,1.4969205,0.21931495,3.524077,17.222317,9.603441,56.702072,5.4852867,2.9624925,4.6540246,0.9685667,19.002745,18.020636,22.818052,6.118333,15.8006735,1.1405556,3.4529157,6.1789327,28.517675,5.5568256,32.822243,1.9017581,74.90819,75.84793,1.4586918,58.679657,3.0832887,19.37756,10.6638155,0.4868642,17.178549,29.198435,15.329221,4.1966014,2.997511,3.439796,1.414512,2.3876562,3.5467772,21.171316,45.83755,4.320817,3.096931,17.090197,14.682451,27.475946,13.340232,8.588188,43.92026,56.07227,16.443438,7.976094,31.46522,2.6867876,30.040504,17.83252,0.08589421,1.42235,5.7859435,0.27349624,23.665344,1.8645185,1.9178425,12.203244,19.635815,16.106457,0.20647672,38.143845,32.101315,12.8805895,12.3027725,1.397529,14.57701,17.422318,48.865685,77.05797,33.589542,53.677605,31.42803,15.411545,27.003536,2.420778,42.52632,11.053514,2.1966043,14.620899,7.738748,5.3448315,8.686174,29.108097,19.554062,22.320562,21.433357,12.640218,11.724365,8.449866,2.0793827,6.371271,34.731552,1.9544394,43.421154,37.0753,82.461464,20.945415,40.083748,49.75228,95.6202,3.5030024,0.15803352,8.935199,18.875574,4.411263,48.92186,0.14969926,0.09675293,2.0776465,1.2635045,77.16724,1.0447831,2.689633,4.581911,3.6144485,2.2535136,26.762918,18.827425,24.017487,7.265799,6.1219444,19.453808,0.06959648,41.562275,43.89215,9.024291,12.201615,6.4700985,16.036518,76.44876,19.916477,27.280863,0.29424813,43.660667,20.38774,2.1134953,11.04277,7.4454894,3.5615628,16.021097,13.99697,10.871151,24.158876,16.903387,11.195632,36.246933,8.8681755,4.2029567,25.090208,61.570126,0.03308739,7.276497,17.1367,12.672935,73.44799,21.440664,50.144627,27.70209,77.08487,2.5570233,2.3972766,1.0635605,71.50483,17.25073,25.342592,1.6215531,29.425238,70.86735,33.06347,6.2554364,36.901917,62.999447,26.549992,10.054082,62.329945,16.843357,5.457793,5.165272,2.8201046,8.220725,6.990512,5.3182683,3.7116382,18.96155,42.13176,95.60812,9.938056,13.335998,17.474142,10.293729,8.595132,7.603661,0.015762229,51.84426,0.008076318,14.329557,42.222725,30.517817,41.018513,40.733913,21.031216,14.845684,9.667206,36.331196,20.735823,34.58488,28.88415,33.163826,59.07482,1.1094604,21.285717,1.567987,50.482395,0.5992343,12.456035,65.08512,13.609236,1.604877,17.096724,1.0694333,26.31074,60.016296,3.5945628,20.74059,46.664806,17.599253,18.41676,9.7376175,28.078743,14.510161,2.2074492,17.624893,33.684093,6.008277,59.792797,3.7091792,8.220021,26.960978,14.745094,4.5669427,54.6542,10.508445,35.847828,72.95317,0.4548571,1.4960258,3.412419,5.301407,48.60372,21.531586,7.6490755,20.71605,3.0849564,32.85968,0.12794647,45.320816,11.869674,4.464158,0.7305914,42.963783,11.545901,56.024117,10.0936165,66.81421,27.670095,41.273136,0.46945274,63.322002,0.3808956,18.332136,17.967112,4.1181192,10.533597,22.823116,13.672868,19.723402,17.150652,27.17005,41.59966,15.288833,1.1829021,54.432793,79.78585,41.259415,1.3263131,3.5477931,20.726025,31.26486,5.6764903,41.268505,22.978607,7.4434505,21.29673,24.377026,15.759971,81.53899,0.19717261,15.275151,19.518906,10.886251,2.8331308,13.174801,3.6008718,83.08432,23.376768,17.860815,20.456692,3.0325768,11.2999115,37.303547,22.625818,35.45527,20.258268,35.0728,15.584396,26.700672,55.92563,9.053781,21.486147,28.493462,12.038095,22.063667,16.139431,0.6964744,0.5994793,27.073393,1.6144823,8.267723,61.64991,1.316972,19.709183,13.400082,13.827332,9.41269,19.80472,3.7080538,1.4921837,27.48488,0.5743871,0.56189525,59.197067,21.244165,9.212138,46.889267,1.8745111,11.479528,21.306717,3.4771626,81.33081,31.096167,26.317265,42.248127,16.374075,10.584682,15.309246,21.52342,26.454996,0.08763113,1.023138,25.94164,15.2917185,25.018362,59.507004,9.26686,11.328953,15.728944,10.21851,68.17012,6.7793894,31.150143,16.909151,55.513363,5.6062737,17.662266,5.6050663,27.399485,13.357257,15.737797,16.261892,19.749704,18.797857,6.270441,7.1716847,13.5435295,19.573116,9.842637,26.284763,13.924778,3.2019954,12.235767,3.740312,2.4748335,68.90768,20.558453,11.17388,53.297474,13.24041,6.8152595,51.17269,16.355978,16.932753,5.8649054,58.002106,26.423615,34.08177,9.001899,51.7131,0.44429758,5.4339643,7.275867,11.621516,84.93235,23.2049,21.969496,13.744496,67.598854,36.308464,17.625364,75.267365,23.030052,35.95812,41.58683,22.573393,76.19048,71.203995,24.469534,1.3966615,23.799952,11.146352,14.244796,4.369444,14.637047,62.168915,17.228783,63.70071,43.54228,16.88663,3.6907372,12.565181,18.359789,0.7607697,29.792175,49.39029,0.6751086,18.257444,1.872811,69.694374,37.744926,5.026854,45.860725,3.614612,7.336552,44.957474,5.25704,25.567766,14.815642,23.312271,67.54485,28.594353,10.6515045,10.365773,1.1802025,22.373371,2.8145096,41.661274,11.660268,44.26826,24.305014,16.497126,15.296098,0.9017293,1.2594538,0.114352025,7.0828967,19.904226,10.222128,6.389226,35.242435,7.5709915,16.595922,53.885803,39.57048,33.731255,10.067906,2.8900547,1.6380241,10.166487,5.1518216,4.628581,12.86552,42.016056,35.548813,12.460914,3.5646064,5.011732,14.055458,12.020843,8.541762,64.528915,12.172592,29.474745,16.032106,41.484158,0.7722692,16.279861,84.29822,3.1267197,1.2369816,14.608276,31.314997,43.90509,3.7114265,1.2186351,18.845982,8.67334,35.820568,31.786974,42.725075,38.677517,11.846833,2.1415913,4.252083,21.384901,50.875843,49.820263,0.48224974,47.37428,2.8819091,17.63471,68.24598,10.663084,0.95784795,53.40386,13.683602,23.249657,91.29983,24.798016,0.073196605,6.4357867,64.45383,47.631256,8.725766,73.13242,32.05137,11.272158,25.58521,27.292608,34.226753,22.463005,19.650274,15.712567,52.834732,26.235434,35.39127,56.480736,7.278796,77.9107,0.7612872,76.459755,22.752012,8.123708,20.806389,5.0145993,4.2743382,1.4360592,3.9649432,38.05953,1.8274496,31.913216,11.429415,2.408817,7.8516145,13.30206,67.27405,44.20942,0.27843785,37.6529,23.13244,2.6955998,13.732995,4.7713823,3.0646186,23.377613,41.448208,6.874306,14.347787,5.290511,1.2946967,33.111816,6.8450785,41.932625,33.942417,2.0696404,62.748993,7.621735,34.875587,6.648994,4.8479705,70.112465,46.091675,0.53925794,20.75427,64.00375,41.53942,0.32461295,9.146732,87.861725,77.1007,82.83189,19.430143,53.83777,4.7907686,4.4764805,14.702295,62.85139,2.6013207,14.644802,5.7430215,38.62363,35.267197,35.675945,46.459343,35.748894,28.866682,0.6652047,62.6492,8.518178,7.2971673,28.432177,18.015598,35.034164,44.964054,29.57987,1.715107,24.136885,18.905329,0.09326542,13.186419,5.372136,29.157001,46.01925,26.233908,24.06422,15.674005,18.224777,2.7917266,48.688667,14.272833,21.605911,52.118496,1.0718768,35.28024,57.942257,5.4583917,1.9120473,66.38129,50.32614,17.343124,50.162373,57.854946,22.499962,31.00276,27.131926,2.9715748,15.410154,24.977873,39.14725,69.97429,25.438105,2.4000428,5.682057,6.1375456,22.417875,3.284752,2.9690077,51.964607,1.3045036,5.1219263,17.998856,78.17164,51.717087,5.0469346,35.612198,6.0437303,14.644125,5.8349004,47.545998,82.25498,30.07597,84.204796,4.264832,4.678131,21.86909,55.71312,8.111762,1.5561429,1.4877051,0.41373178,3.6094701,13.60196,7.8154373,43.479385,38.468174,4.14973,98.982864,39.124786,34.704,25.421272,9.615792,76.37914,2.4708927,79.36556,1.9798974,17.098831,17.392511,62.222652,8.532603,2.4262633,2.1173463,9.526304,11.967558,65.99709,3.6217723,39.577477,0.9195239,22.808685,29.177746,8.775112,1.9235557,13.262939,4.159717,21.973022,5.5680656,10.821438,8.996244,27.935686,37.47384,58.78153,17.82244,17.014156,20.235567,13.074177,76.03671,13.048337,2.7602782,5.8928566,8.888323,2.421556,6.229336,29.0614,33.86012,25.372227,28.611177,6.849396,0.4719003,28.486,40.303337,57.758804,23.574202,28.563837,1.6428316,7.6204767,37.17126,37.783325,33.989357,17.535769,3.3725083,4.5421276,21.087759,43.728607,14.413493,45.52921,4.3360114,2.0092983,7.809626,4.0796366,5.870281,12.991687,5.024654,7.7979217,57.267605,4.5423384,44.950264,12.348844,62.22083,0.40479004,18.526564,13.731752,12.077968,4.225684,0.7987713,2.8627524,18.836037,25.509348,27.996788,30.048388,16.321615,23.498806,25.911568,14.735339,63.94339,0.30177447,16.967724,50.446697,22.824036,86.13999,10.841919,3.8297844,17.203909,37.446323,6.051451,28.001448,40.57344,5.032666,15.890647,39.488884,9.913953,67.02949,3.7942326,16.35585,2.2151055,24.576536,51.615044,0.043649174,33.328644,15.644105,20.132223,7.138138,15.569475,34.186317,11.499903,12.072124,12.283866,74.400246,3.9524486,81.79366,1.314089,44.2837,12.218647,17.286406,9.011694,22.685026,36.08661,15.465169,49.656364,6.7735744,34.16967,43.83975,25.179691,3.6796446,69.06823,29.2754,23.891169,30.697155,2.9309251,1.6962923,9.724777,32.338146,16.138515,20.207006,10.009908,35.762383,10.761835,0.27995875,19.332226,22.206894,4.920717,0.1374659,1.5901554,35.680824,10.804829,75.234634,7.7316995,10.207164,15.033831,6.0272527,54.3736,75.63415,28.92821,1.3354956,31.43006,40.67112,15.591849,4.733397,65.98442,8.133549,12.2523985,3.7151585,13.28313,1.4410789,39.818813,6.5145907,1.2763594,3.3695152,12.966895,5.0823264,34.06073,15.908436,78.43407,27.682579,1.6066432,5.211321,37.19157,4.2265005,6.8331947,11.055311,80.90836,36.243057,56.203297,21.683424,1.8097541,22.12083,10.979886,24.027882,71.432884,87.362526,1.1433148,42.31426,26.101843,40.365997,54.11561,6.7478056,23.018671,31.751923,11.460157,38.933693,1.7071023,6.721011,17.213638,1.8339083,2.8289146,24.734877,8.062686,8.810192,8.96251,7.6533484,53.56297,75.48582,0.85340005,3.0721257,6.5997953,13.286359,1.4923569,36.436024,1.6132543,2.42596,77.17475,7.098083,7.3458867,14.281548,29.485006,2.2336705,39.231724,10.75542,28.033974,17.051615,1.781829,49.948635,5.1660504,9.770935,19.06143,2.9493594,30.13599,1.1327877,1.529069,16.655638,10.6476145,79.56759,36.328842,5.4610596,20.08554,24.70998,41.55493,6.105483,2.121514,7.8420467,17.320604,47.59644,7.252078,45.81483,15.482288,8.39663,14.400991,15.54683,40.64982,37.712936,37.77911,25.781479,0.04294669,11.905623,9.079032,0.67971814,58.096294,15.574734,43.24271,3.4770684,15.442053,23.304733,64.98522,28.589663,17.11305,0.33111292,21.195793,15.89552,16.316292,50.719334,41.34035,2.7508042,4.6432877,0.1892511,37.13702,0.07847732,5.8551335,68.65108,45.34487,18.189297,0.33073747,22.569939,55.494434,15.985446,14.449889,3.2095509,12.663659,11.838845,3.5719016,19.435007,60.19214,67.82024,1.6478785,39.86131,1.8506165,53.38531,58.026432,1.2326021,27.903954,4.904716,32.28097,38.427273,37.919815,15.901162,28.743437,19.367163,43.09869,0.06330652,4.6034455,0.69166416,14.797475,13.92425,22.745674,0.69464546,33.75377,16.864197,6.4595413,5.842037,22.432194,41.271812,27.11146,5.2351193,34.184776,3.153093,14.019959,45.640945,1.4930079,35.731266,25.902748,19.24805,78.65507,1.6728666,29.472477,1.4761205,2.5136938,40.444065,18.687225,17.791288,23.964191,29.122417,31.34126,47.818398,0.5936535,58.657978,22.512953,3.4759216,18.125738,25.113699,11.114551,9.249105,11.512213,17.22775,12.394492,2.8768656,5.634828,46.85121,37.32383,31.771416,18.241207,23.872967,58.87492,9.680196,47.32107,23.884872,20.096539,50.57389,40.58427,3.4497175,4.61142,3.0268838,58.5356,22.68914,36.62909,61.834007,10.527358,53.240578,16.666517,58.659912,72.93981,20.379581,10.460119,49.357655,8.685224,19.22928,0.6559574,29.067272,11.102364,34.86939,56.806885,88.52608,18.386114,20.171991,8.711594,26.035069,9.576792,15.052455,0.54980236,11.105655,4.1609087,52.125313,40.318108,1.2770865,23.906796,45.330257,25.064405,18.638193,12.80586,2.4959614,4.9878054,1.4476994,3.3204954,24.210007,20.017881,13.666369,66.344,70.09533,84.97101,32.070595,2.5128193,45.35223,10.04276,29.651272,2.2938676,19.322895,24.865564,23.997814,75.95316,5.011318,16.830908,0.5043916,19.33155,77.87465,1.537886,3.8319497,13.745563,79.38832,13.975273,21.130808,36.158295,0.24667293,2.920501,5.106779,6.1534,1.2277017,50.10888,35.58231,8.940502,55.797817,4.888614,5.5960226,54.780872,3.7355645,5.164799,13.020407,6.9064436,9.165907,6.963079,59.132957,69.12322,0.34579676,10.247242,11.380332,25.03796,8.437176,48.268276,29.026926,4.267816,1.8105366,6.5900865,58.379284,10.754645,47.951946,67.61212,9.270535,40.041904,9.762332,12.117679,5.6149945,19.512474,47.94096,14.245649,7.2232447,78.1373,59.78127,30.158554,3.8476286,7.922763,85.32676,18.829163,25.863956,33.855698,18.532856,1.9804363,46.24105,7.7676034,28.335876,4.6285224,11.060126,35.19347,27.774694,11.501863,7.055968,9.18793,16.288155,60.098904,53.70901,0.362341,22.533428,1.95671,5.812832,48.806522,29.210014,39.679607,79.18485,39.857174,12.210786,8.014939,0.063330896,46.725773,5.587113,60.99569,19.32383,3.5124907,7.3058753,7.5748835,62.898792,8.726499,16.252722,54.01201,10.835541,11.305142,10.920053,50.22483,62.478405,0.7546416,6.5620384,25.371115,6.222362,5.674209,5.767692,41.84427,5.198026,4.3491836,4.804331,62.0375,90.67653,30.514233,38.70887,10.154562,2.7820508,35.76295,9.01476,8.591835,37.078213,40.001102,3.9105067,6.167513,82.91478,23.402903,10.087065,23.876926,10.856845,32.81327,34.719852,23.114555,8.940853,4.6678324,24.93982,26.774387,42.8442,3.4295244,18.777416,45.251762,4.06741,19.344442,22.349974,7.137727,2.9429526,57.67666,12.169033,77.61375,43.07595,7.5053916,30.299742,11.156638,15.357777,6.6777577,9.0933895,1.1050661,38.322517,2.0841389,81.76929,0.9827429,3.865733,4.3053446,24.642344,2.228833,13.629828,13.976067,12.223029,57.455315,16.139122,39.822964,12.415981,28.395475,30.334578,27.145304,37.040577,14.775223,80.215294,6.01263,6.3157043,0.3737834,16.144478,1.7095455,35.939617,0.67331624,25.873798,35.078373,70.33565,48.92923,37.950607,0.4396651,50.14152,0.77907777,6.6186733,13.95205,1.3531557,28.036266,10.118137,23.008848,31.535347,8.311191,2.1120372,32.964504,31.678137,5.299964,23.789537,31.04538,26.154224,4.2114744,1.857687,28.490536,8.14638,14.625687,3.3731477,17.574577,50.535107,19.482649,15.570518,7.758187,26.128178,60.94065,10.8724985,9.0423565,19.589516,89.94923,85.970924,8.581428,38.482845,21.630682,57.77171,3.3319178,15.940494,7.217037,18.243032,4.3475056,11.701659,86.93317,0.048535723,58.153923,24.566504,6.7349167,31.025888,3.2859304,4.285562,0.15437295,1.3954768,27.30899,0.01616993,17.827457,18.779129,11.188826,42.745155,50.731136,56.87729,6.678229,9.196608,22.083277,37.310253,0.7377571,56.453415,9.485135,18.278963,43.102947,80.67544,7.1744995,4.08353,5.9295797,79.06941,24.05786,15.596361,1.140608,1.5558273,49.123714,62.470516,21.003994,9.21081,34.783764,29.22861,54.730446,45.86669,36.145954,36.03351,12.949532,17.182768,33.444176,54.985752,0.95132107,5.9628725,14.938866,4.5698767,15.527074,20.471972,47.87939,2.8836052,39.978367,27.603619,59.139656,59.340458,13.357794,53.042793,20.078678,8.505032,3.4100811,85.65313,13.64914,91.703094,0.095478274,88.1617,47.115498,16.671923,44.521732,35.36422,36.078808,12.854436,3.139189,65.60572,18.740185,59.625526,44.272717,7.374259,31.923676,19.01863,6.889174,12.351927,55.541653,5.810398,65.802475,16.871382,28.188118,18.904549,4.130362,2.3452551,40.359463,50.99902,9.663185,33.364807,53.18086,43.064804,17.933876,46.307056,14.046019,45.61242,16.767857,32.564163,22.974003,20.733776,4.1893573,0.13741058,0.84351087,35.39346,0.41301566,0.5919395,31.499447,19.166384,41.05494,10.439137,39.813313,3.510782,5.8104343,3.329369,29.035017,24.73343,1.7093434,14.807903,1.0250816,3.9318688,9.778391,3.177731,30.268002,17.952839,24.420122,70.23893,7.376182,59.56991,28.03078,12.165448,27.113932,31.778288,10.907416,20.8547,20.615467,1.0015284,68.45015,77.717415,1.4336294,69.21123,11.809481,39.520603,30.986095,53.817745,10.606119,46.187435,15.725028,28.197493,0.21297753,1.7838529,20.466953,10.191525,26.426607,38.105595,11.36622,47.630505,2.9018025,53.67319,4.2680893,22.964773,0.6727603,0.46235213,43.946667,1.0754846,1.0367453,3.3889012,9.66523,0.26257473,34.627964,0.29694495,11.767442,16.147346,29.010307,11.788033,16.622398,1.2419724,19.393776,4.65501,2.3674634,0.94928503,12.408134,79.895744,52.61882,18.970835,0.9004092,12.207376,6.892089,44.739384,4.599868,4.347923,35.946632,80.95444,18.822506,15.512967,7.984665,3.9686987,14.777091,29.944372,7.245838,10.463372,2.5611026,31.568562,16.297123,26.370161,64.24476,67.45193,0.021459611,23.285622,49.083683,14.845746,17.04789,8.504411,1.0848114,19.42399,0.56284815,10.588487,3.895948,20.372149,47.374607,36.03474,63.991158,1.8980832,24.277517,24.13812,7.882324,6.703364,46.0153,13.46251,21.778399,6.9439125,28.80654,27.391945,15.632144,13.742779,27.524654,0.08265111,13.576488,4.414956,0.37843075,11.626327,35.57871,2.8761168,3.6226964,64.271835,4.559779,54.5471,3.3415997,8.214591,7.029284,34.967224,41.38975,18.59578,53.75163,1.0744468,3.4574037,2.8390458,17.116144,2.2967896,36.208538,5.5075355,31.90075,15.457318,6.4933143,2.2495246,62.00917,40.12332,27.764431,18.17727,28.91847,0.9411973,35.619415,13.715264,27.0106,0.10246978,1.9389627,8.344949,1.7487029,28.897942,23.095566,22.38398,58.304756,6.275816,21.762577,42.496098,0.20788075,51.22475,0.13589771,18.359945,3.495808,2.1812036,23.886276,0.7215035,0.8654806,9.673862,8.346346,39.78465,49.708237,34.67134,30.559486,56.206142,73.84527,48.604298,0.53319263,53.249027,6.454444,4.3107567,36.59921,3.7342658,7.7885427,13.785758,0.40891454,2.163882,17.077707,45.17461,35.70132,55.30805,6.8748116,3.0810585,15.035579,5.259253,17.5893,35.850975,80.49929,18.388666,6.4364877,12.93464,17.111492,19.772314,11.869438,63.932877,82.18847,25.523548,66.289894,5.121931,20.12268,26.734903,4.536581,2.1835048,13.999722,44.456387,28.842598,18.89347,5.1065984,30.768955,0.8215787,28.505573,23.122103,23.724356,5.740639,61.94464,3.8520048,0.45115262,9.782922,25.027372,14.643743,23.667288,4.8623533,30.95578,53.632244,0.07814491,54.86329,2.2654068,20.71423,11.803727,85.45354,17.56583,33.791317,42.285908,9.719922,12.785861,1.6720502,28.422531,59.823807,19.208044,77.75385,26.395538,32.57453,26.696356,21.681751,11.294576,28.754686,7.4944954,32.218105,2.2836654,7.364808,7.2594066,0.6546457,13.255464,41.535587,20.052275,9.457576,42.029697,58.840446,59.913292,9.417858,23.306005,42.072617,29.14011,40.15158,26.19007,6.0416846,23.957737,4.882705,7.84031,37.055813,59.521095,81.6374,52.60578,5.6027994,8.626774,3.975749,8.821608,30.836962,9.371433,49.02529,0.32447475,0.769366,2.0705733,59.067966,11.74396,41.371597,36.354095,37.879444,93.55362,37.641495,12.585189,9.306456,7.8772745,10.810207,3.0360699,59.075012,16.241821,6.1639786,6.8352404,22.819855,8.36178,5.0722523,54.312916,93.71823,12.115956,0.74064285,34.406975,9.903898,9.730407,50.747124,70.60267,35.375687,7.846291,35.12606,24.020739,14.810178,34.334034,18.532671,14.274928,8.974505,39.229145,4.2961917,23.235683,52.083168,10.710115,0.3241056,69.78883,15.059114,23.12947,33.044395,13.7125,16.33488,1.3156784,43.647488,48.474915,1.6556416,1.5077258,6.4346495,22.670616,64.484535,8.461306,11.747598,17.520851,55.961975,76.093765,20.991726,25.576105,49.40924,13.149738,50.576508,23.052383,7.751495,14.710826,14.499058,16.13978,17.01866,8.835309,78.530136,19.868088,49.1345,0.38204136,13.945015,84.287224,3.7456384,31.500778,74.04166,2.2962549,1.1160084,3.96215,14.497464,6.892588,6.6600294,3.1897764,5.376119,1.6058663,16.605568,7.804011,44.16504,6.2355533,8.915735,31.808136,97.17367,46.303207,27.20502,37.322777,23.077358,2.3899415,2.3944957,19.95071,19.921701,16.234755,67.68882,19.575397,25.926231,20.214901,30.514648,93.04971,0.53109604,48.35096,35.731052,13.065225,3.0473554,13.145247,14.436983,1.0073797,32.57155,6.818411,20.319965,31.868967,4.3708134,2.3905952,1.7008548,1.0925653,17.510824,24.527477,13.105676,8.748125,19.0362,22.98634,2.0789006,43.690304,26.055853,3.1643422,16.798975,6.474596,9.993371,3.1361585,7.171862,1.6275966,25.872534,18.18494,16.957874,0.6741758,59.26517,3.5437152,0.4845257,0.3908942,62.61001,7.125393,41.777523,30.714046,14.283376,4.435661,2.4584527,59.93545,25.768469,8.286028,0.3240888,4.613428,2.7404234,7.7626944,21.863087,44.988018,12.191815,6.73477,11.690528,21.435072,0.84429723,9.78978,66.25082,6.7263927,18.89007,26.91234,39.43495,51.641514,43.439957,46.393864,28.629547,48.671955,70.28164,33.24388,5.9519806,4.8392,26.806957,57.373543,33.82381,16.331787,40.64585,8.737821,17.238472,22.36789,6.933472,16.527264,34.53906,7.0224257,2.687228,3.2139063,18.129442,18.09582,1.2371267,55.14659,14.072134,41.74472,29.189465,29.80091,4.0197945,30.132755,89.65495,2.9678147,11.505045,9.740788,8.348447,13.706097,48.85049,8.022265,11.589174,77.428696,7.2711544,91.40902,13.993168,63.901527,31.332245,8.848443,9.00155,8.781486,3.1446419,6.5922804,6.045754,64.23631,13.743864,77.29043,2.416014,12.6448,0.18690763,27.284924,37.657406,49.09962,19.173496,8.309929,27.182493,4.423868,3.3656635,34.160713,45.11662,16.990494,21.111607,29.661272,17.81228,18.892292,65.44053,3.1893768,36.762417,41.81885,34.585087,11.010002,12.738682,3.6677113,18.638527,33.97947,73.43549,13.584878,1.983582,9.39782,28.65721,10.099228,20.452314,5.989265,22.250557,10.78598,6.9649115,0.07740583,68.41345,46.08264,3.2216678,7.031504,21.139818,54.870564,8.83416,5.678724,2.3997357,16.067322,9.357373,29.147491,15.579264,12.709132,1.7269639,9.743075,26.817942,30.435741,10.556995,2.2214699,43.0185,2.5866058,4.609124,78.77025,22.093927,9.376545,1.7143153,1.0028207,27.41206,2.1038263,81.1771,69.23986,50.389225,2.892095,13.917627,2.145363,6.80142,53.16382,87.48988,3.1230414,24.684902,16.466866,17.524899,22.962212,56.9586,31.821272,37.467297,9.308413,35.131847,4.751718,7.7966423,6.4941506,2.427169,17.375036,9.008905,40.39985,5.5575323,85.33435,23.986324,11.248714,70.706154,21.187729,17.320965,2.6641474,13.06989,31.152372,39.85625,25.959408,17.723915,72.313156,53.134285,72.93817,3.7887235,0.57719797,29.027807,30.267885,0.19174017,33.44005,14.761849,29.145462,27.09407,2.02932,8.21957,7.083823,22.324688,50.31316,19.624811,69.359116,12.521375,34.358482,15.358927,19.068075,3.5781546,3.4221342,8.981688,4.291046,18.799316,7.867292,22.515408,53.96801,5.8414197,5.5511866,11.799588,16.507769,17.858177,22.161213,21.571503,61.036045,36.650463,20.286531,2.8347206,8.909204,25.175423,34.738075,23.068546,18.045523,29.813585,3.6028297,10.015356,47.668465,5.363997,1.8240122,1.3411946,3.3055773,18.714436,77.34049,3.1759746,65.18092,2.435883,6.660022,84.122986,16.904352,2.1097317,3.827367,11.518824,24.923994,14.954346,40.10786,4.402546,68.27434,69.87782,18.438604,19.254087,34.335648,45.11544,20.04774,24.253956,24.453531,22.365639,36.36971,3.225731,32.727047,11.603372,5.08618,4.7072177,19.435741,10.93465,1.4393042,5.0643644,4.0688415,31.928535,7.859545,18.632498,68.698875,1.5622764,28.944023,33.53473,18.067474,60.78108,46.299866,23.012983,7.3243856,30.282492,67.84467,40.864876,38.18099,50.898544,13.609899,22.767527,3.7066948,25.648256,15.866629,21.177092,29.16114,62.49977,9.656426,65.69551,28.57568,54.837345,22.299515,1.0588866,1.718822,37.450615,18.949541,22.337921,7.0263762,11.69512,27.638443,7.6793942,2.387121,9.545199,15.232545,33.44713,41.225304,50.32754,2.0448356,63.011692,15.423124,54.665764,2.1152349,73.994705,1.1280476,65.44617,1.7772795,42.22346,36.891376,24.99074,0.2853594,57.83195,23.910198,82.62832,33.460606,3.1761973,5.9381685,56.05318,29.802492,5.3467426,3.7178345,41.836273,18.193207,14.039989,11.248594,14.94577,3.0628626,5.719972,1.6845335,30.456612,10.719931,35.21116,88.27968,6.9611993,82.64083,22.291279,14.065027,56.627823,23.408873,42.50237,6.5016065,55.26792,5.999674,1.4987485,6.9960766,9.658002,32.84418,12.815972,0.29336718,31.751863,15.770239,70.972694,12.554574,19.931707,31.84247,28.992136,10.969022,15.879748,16.989853,56.459152,0.5792438,31.010866,0.0013834998,11.520537,30.806396,1.7369574,28.127073,41.64003,2.0011373,38.381214,12.252524,65.692154,19.75925,9.269306,84.41271,24.296175,6.4272304,18.328098,19.142496,7.009494,0.8358405,5.773713,8.5489855,26.547644,4.047361,52.100216,33.488514,16.984612,11.270428,12.2669,31.144337,18.33192,29.80911,17.869926,12.721744,10.162154,0.6909093,14.171047,8.6524,18.714045,29.151922,82.270355,43.521793,13.508182,7.857018,20.14548,51.413242,30.323133,18.252304,3.6373005,7.6828527,16.692198,26.871634,31.20906,16.693085,10.273596,60.888126,59.441933,22.38371,34.354458,32.51055,49.85461,13.757852,15.763308,14.364453,18.70859,0.816328,12.187959,31.582388,26.548359,77.8799,67.68205,34.78239,4.6710806,0.7255602,6.7245865,1.8618143,45.822224,22.611605,78.561165,49.570942,14.225287,9.363069,0.2797821,24.199198,26.191772,16.982916,5.7808533,32.11262,82.196686,0.55709475,17.598843,5.5422153,8.362556,0.15805902,15.008236,10.793122,8.63064,0.07166212,24.120897,0.021165546,3.0058005,7.1170845,9.089542,15.654899,61.83715,7.1998353,23.826115,62.584972,31.149637,45.745655,8.47066,2.442121,9.53461,34.08683,15.187629,16.209442,19.05257,44.00582,26.873795,3.7559767,9.745242,35.910755,25.263515,26.699202,13.945759,13.234012,27.826756,60.292053,42.64606,17.017572,37.373123,17.66754,38.97313,36.350315,58.955414,15.978724,9.740757,2.8153052,20.72599,36.757427,41.774776,31.492216,39.615814,8.03775,4.0127063,26.585537,2.7216966,46.813217,13.3242655,22.16948,42.278522,1.0525899,1.9783237,1.3447069,21.805286,8.895932,25.663937,15.801239,14.8396,24.148767,4.920571,20.521091,9.810283,3.2312663,43.25357,31.868069,34.192898,2.4663227,62.001255,11.854477,17.632177,12.935233,5.8174033,24.132837,18.927994,2.0121467,37.141285,25.948605,5.35763,4.095124,3.800051,23.176012,2.4326048,4.0022616,13.240778,21.153046,1.8981278,1.0164492,8.107952,14.042641,11.924618,2.037721,38.62562,9.032241,12.4855385,25.07705,76.920135,15.928295,28.713829,18.96116,5.9444356,43.701805,0.7144874,34.33539,20.682655,33.00485,19.24205,31.015076,26.188719,20.35274,24.307888,39.60917,39.59259,24.853752,42.758514,15.697478,59.174763,4.0792613,36.70236,22.93817,51.431034,18.101156,0.46874326,19.728106,1.9509861,46.6567,18.26116,23.875332,0.011374599,18.507238,0.4159043,0.016509164,82.434235,19.960413,13.155443,5.371099,11.790581,1.5136032,39.999634,1.7601578,23.574621,10.4479065,14.711832,33.27352,23.895432,38.252144,3.4564269,24.054722,12.822577,21.448341,19.027357,17.871773,24.829062,11.841321,16.31603,9.154554,14.788466,23.592304,4.869995,8.916784,35.819218,16.466705,29.481031,3.3712335,4.2480593,3.1069434,37.911724,44.09501,5.668186,7.6300187,30.10726,35.915478,15.373166,26.42819,6.3610206,14.784231,63.39419,73.6517,25.114832,80.35834,8.158248,26.342014,50.320305,50.65297,63.30845,3.1148448,39.003464,1.6025386,36.87372,13.532033,30.68866,0.82834834,1.8882629,40.514725,8.95934,17.574144,20.47115,65.282425,16.188429,20.250551,18.60964,72.491425,7.251678,28.65343,1.6151575,63.41768,6.038461,32.042843,3.2132785,56.52356,38.698776,21.945559,21.84023,10.391037,4.3889456,75.010445,12.555623,48.64144,34.63852,0.23971969,61.334988,14.720192,23.365458,7.645481,19.93946,8.962188,21.475431,3.5960732,0.37004972,18.63881,0.107140444,6.749511,7.0290885,49.410088,26.184092,14.135451,29.03539,4.633148,6.3029,34.975628,2.2161624,32.078735,8.407826,16.091904,55.136875,30.781296,2.169158,23.48421,1.108645,11.00325,7.3968062,3.5246558,59.12676,0.29166895,11.984027,15.3284855,5.027963,72.65838,62.892975,56.087692,41.621605,31.702639,68.45997,84.53047,5.74266,25.09556,1.6601855,65.442406,32.043777,47.308712,2.1297219,1.969931,16.504515,54.12002,1.814094,9.388988,29.244751,20.789948,20.72489,0.12438411,41.97679,28.32902,49.492897,16.221226,21.137022,2.0017524,5.3518405,9.4579525,7.6257915,0.7370334,52.575214,9.341748,4.27687,2.5077546,48.36166,11.360105,10.485492,37.902607,14.318269,25.80904,0.461472,1.2975509,16.235592,2.7592175,16.259651,27.283339,21.686676,1.5667912,25.953308,4.20525,36.326843,11.0659895,14.564849,56.794617,4.553971,0.96558017,35.482277,15.724327,57.239773,65.60287,35.314648,0.6973206,37.083427,9.059848,65.807205,7.9029512,30.584728,5.236828,4.7974463,12.426711,47.118595,4.3043756,14.109377,18.397207,38.23517,38.590393,61.15386,28.244331,60.610302,16.185843,4.123731,42.245018,69.124954,1.0148457,1.769141,68.23876,82.80646,64.71983,5.4851584,1.5387094,42.100212,0.32472718,5.8255205,26.868696,16.952208,2.486171,3.302717,11.849456,25.207071,20.195396,51.36981,33.273537,6.760335,1.3017827,62.13375,4.911666,40.48749,23.30664,29.543594,73.63661,77.163925,20.369402,22.951912,57.220657,39.632595,52.947636,12.048779,34.072598,40.53414,15.736272,80.75861,35.29998,18.141449,30.229374,38.243305,10.33855,41.324276,10.781465,16.175402,27.17109,6.7496257,32.15172,60.472046,80.782776,50.700996,36.02145,8.494803,46.85842,8.993739,24.46901,0.061929103,8.082822,48.61056,24.358582,21.317505,0.73771733,19.10259,10.3095,8.851215,6.2168913,28.601368,14.450207,13.575051,25.846785,96.37734,92.3676,3.9689283,31.22208,87.870224,19.51353,37.327465,77.33953,2.4102788,5.0492754,6.355986,48.674877,13.064946,3.44507,17.102419,80.14199,17.588629,0.6734012,52.339676,0.92462116,7.9333324,68.01396,27.255022,15.887697,7.045191,33.399567,4.29756,5.327215,0.06786388,5.680242,21.973684,14.012249,27.916363,35.70987,43.195663,82.70354,40.208084,37.41676,2.994694,3.0916216,11.73559,36.4901,1.2087762,4.086451,2.2503452,28.58576,4.9809604,5.8000727,0.2187066,5.4716783,71.08977,43.241314,23.648418,62.332726,38.103363,64.426315,8.453931,4.6979156,44.060818,36.153435,4.4829087,15.262246,0.57149243,52.277412,0.1723548,2.1516266,16.775808,17.826645,13.312909,20.47944,48.955685,9.849214,10.491692,58.98914,4.068761,54.956875,39.507275,39.639908,26.413078,41.807,40.96955,14.963601,21.361458,48.24748,18.823528,4.9910436,5.6361136,3.3750722,2.2788115,56.834244,5.7420096,15.527019,0.45435846,83.06408,2.5560744,2.0467238,0.33220088,29.292236,30.365896,0.21772417,23.995646,38.179,17.875149,17.078104,6.513781,26.157696,12.266781,31.819767,4.7394967,34.881237,69.271416,1.7860291,32.544594,7.4928274,69.62866,36.33735,4.2583985,39.55996,27.830734,37.871426,11.453867,5.3710666,44.151855,28.177095,83.26736,3.1552923,16.082472,1.8933152,1.1011679,0.22319439,92.113556,10.740197,23.99516,12.454386,27.76842,66.75297,47.139046,6.939908,23.520912,4.81293,18.108845,3.9457471,5.3415914,37.73425,0.5849656,11.805464,7.8730116,28.791773,75.39051,14.138514,12.559048,11.239993,4.679928,20.67584,4.082059,16.035894,10.741771,11.754513,18.636683,9.508746,73.78614,11.278071,3.3775234,12.098536,21.980469,9.899903,8.900011,10.151707,3.8437743,56.15473,8.177411,10.679639,28.6901,77.05169,4.2727466,9.506466,3.344555,0.99188524,56.923515,4.355022,20.96015,7.1733537,9.297097,0.23246619,52.067245,46.288433,13.474119,19.097895,1.299947,3.808366,24.026335,43.623875,8.553802,41.015266,68.64737,0.18135211,37.86814,12.224354,47.979473,49.248734,0.8884446,26.741331,86.69523,7.893169,56.401886,1.3809851,17.636148,0.9640692,9.875655,8.615979,14.346498,2.4614525,5.578299,28.31073,0.4284137,29.591412,15.399386,39.574852,2.8876045,64.887245,21.244827,50.65492,24.446388,10.171603,13.024044,41.19824,47.6094,10.758603,36.28855,11.972044,2.6312156,9.071763,1.3307846,68.367355,20.5699,28.677269,15.348194,71.25219,21.219788,42.71701,28.147976,11.827807,11.200283,3.837643,0.27341732,0.2669258,34.844677,3.1736615,10.202391,29.035475,33.547768,49.527233,6.301415,53.171654,3.6703365,51.389072,40.839783,51.14845,12.051588,13.559078,31.726963,38.833443,5.1326013,51.81072,22.691214,49.253292,10.387634,14.415059,75.33908,5.582131,0.34003302,29.785208,0.16058108,49.801132,3.4276195,44.118538,6.9962025,6.0113964,6.245375,5.180876,7.000001,24.250559,2.497349,4.9603295,0.8647298,15.158486,10.000314,7.8036504,5.819476,78.72481,18.955252,5.8068743,16.166271,25.878765,6.658185,67.52517,14.252258,14.302185,9.343462,7.0826283,2.1734009,13.717412,0.19561027,13.5287285,6.9664135,8.641098,0.28809083,4.449474,11.193989,7.3077197,5.540984,25.611252,87.48395,3.347211,46.29381,0.9506276,63.51609,0.638144,12.464468,33.260223,0.116530485,42.045296,1.5317419,91.62486,61.408455,69.22829,5.3029037,1.2388417,32.227505,56.378357,7.883784,8.166261,70.07958,17.026983,4.0043955,46.64676,45.785156,9.336475,5.0142736,0.7633254,20.76954,1.4421082,16.804443,61.80464,31.992254,5.397683,18.410389,4.4983883,5.143574,29.591873,66.10329,57.910263,16.549587,7.0359583,30.679594,0.77488995,4.7069516,72.11077,14.333111,11.636044,22.567825,62.40672,7.100912,7.843344,1.655827,4.423281,2.5059054,0.13199715,0.4860963,3.4914203,4.962905,30.179253,8.148608,9.705706,65.46298,11.161413,6.680438,1.4481087,31.263758,22.28373,38.299057,74.5125,60.60552,12.778093,9.01853,20.732002,8.266143,42.017014,24.641869,55.70273,11.211691,17.13646,1.164146,35.840954,2.3134665,53.416687,28.128822,1.8677502,18.645023,20.964006,25.91343,1.0660421,8.752163,0.74537283,44.760952,15.359548,28.400244,67.67862,1.3270098,69.774216,2.6548147,2.2523868,28.727213,10.795131,34.886982,8.361197,11.734246,8.66257,8.667037,4.6186366,26.96046,79.63617,9.95749,2.2569284,58.048763,13.402694,22.399506,19.664103,40.260548,25.734228,79.904785,4.428529,41.501358,0.41722444,22.209991,29.82699,1.4852976,18.326954,0.4660584,7.1712375,15.790056,19.428442,1.7196753,0.18854551,18.852688,11.22349,63.490623,4.766802,18.23604,21.480007,30.778273,13.614327,22.102804,2.6327817,63.395046,23.022135,3.5467546,42.36299,5.5820866,2.7238894,0.20957087,24.807238,42.94428,75.080956,3.448495,26.459173,31.846062,2.8148334,97.34089,3.747735,12.083991,13.473928,31.15217,1.8258425,5.1020365,0.16516413,4.0691867,26.660429,9.067392,17.884232,4.832531,2.2532468,13.111578,38.605057,28.825916,3.6443036,25.068346,25.791504,1.7185613,31.800978,7.021142,9.029356,4.2448716,43.13462,4.1931005,0.116619654,3.281517,57.663975,27.712149,88.298904,19.494083,43.62951,26.707806,28.249836,4.9621973,2.7291944,14.335348,86.229454,10.009347,12.570706,10.568415,27.412003,2.190098,1.6410655,2.533563,17.836323,8.210718,6.887707,13.003548,3.2622182,1.3153483,8.335379,55.304058,7.563513,8.401572,30.238573,13.736497,1.2148844,21.23691,1.4237803,18.450829,16.088266,11.440127,37.41871,49.410732,61.727665,9.668099,8.2057,40.67026,14.478631,0.016738625,87.75814,2.4100237,10.073887,32.18295,16.453455,27.015049,28.258085,70.43699,3.5598419,20.502367,3.4247024,19.361288,64.332726,30.560307,0.7744889,4.2659273,0.8184058,6.852295,71.75433,70.97334,0.29595336,27.17706,29.11086,16.537424,4.599816,29.357214,1.3318846,38.227676,11.172308,19.339573,6.2272663,16.152927,70.210396,29.77049,28.559048,5.969326,42.383057,13.654523,76.76802,1.2546337,3.0253491,8.569722,5.0493536,8.871092,16.467297,64.27428,35.902798,34.33433,19.70562,0.5501765,11.609784,0.9967566,37.500202,3.1258998,4.8540993,0.6528588,9.384083,19.177229,5.4048023,32.881687,23.893196,52.498837,7.0292506,40.249,12.3146305,0.19948,5.026023,8.601637,27.54329,16.084026,16.76122,14.392198,42.626728,21.572857,13.126146,1.1456369,4.1143255,15.828591,27.48525,30.945536,13.898448,14.959494,16.797033,3.9746678,19.937243,40.049435,21.778736,56.724796,4.3623614,11.528934,20.62079,10.782828,9.040923,43.308735,25.29234,0.102813154,17.664982,0.65262055,47.947014,60.71758,10.348357,1.9378239,32.477745,41.460785,54.872482,8.030096,4.836082,19.05034,10.579763,22.789724,11.539772,8.73787,38.747627,38.576523,5.0547485,1.5437112,38.974285,21.283295,66.63481,15.35281,5.891691,30.101542,66.78943,36.989044,35.17589,21.527119,0.3245112,14.045294,5.381219,21.464678,33.541725,50.31194,38.06801,7.069815,15.137235,36.376602,28.309675,28.932762,50.505096,7.8991027,74.283295,11.794513,6.07037,15.815261,95.55742,8.944911,49.943436,64.62571,12.837429,15.4872055,29.283665,43.048676,1.5681926,27.531185,87.15912,7.0437593,59.95961,17.86196,67.50425,7.2361555,35.54926,44.212605,63.216915,17.131468,63.48857,66.05417,6.0958962,5.808352,29.877825,12.623808,43.675556,67.88767,10.747087,34.089157,42.079586,64.63196,41.807514,71.55369,8.973418,3.9594123,11.842854,4.308216,58.641182,3.8392994,3.3817365,13.166597,2.3075542,3.251252,12.600626,28.37141,23.3079,18.755274,16.652882,58.422157,45.111816,8.475009,29.494993,50.63231,30.84262,43.61654,43.32321,9.207075,2.652246,73.42313,41.542053,76.6403,7.8554645,1.9221115,14.959753,10.420114,12.638444,17.682695,0.50393265,15.779812,22.200268,16.618437,35.353447,36.301094,6.0686,24.371689,25.638939,14.501965,1.6872257,37.67723,5.8614526,3.5782351,0.948283,17.438463,55.444366,2.7362902,5.9814906,5.227933,0.56265604,4.658259,58.347904,21.187613,3.4638224,18.385807,0.79508257,42.347694,86.11628,77.06706,1.781285,0.14854974,9.553765,0.5295815,69.65676,57.364555,5.0325875,39.64731,25.07408,5.607163,20.748363,11.8288,28.760033,2.9819953,15.78988,7.743943,14.861033,59.30681,13.47857,6.999072,16.638538,62.087563,58.683395,4.9983444,70.30877,13.797268,0.23285764,2.9951456,35.190334,27.154934,18.615826,3.1212423,16.90066,3.3258193,61.24581,2.6063197,1.8142531,1.064389,57.498215,61.444256,5.323335,23.415804,8.438969,33.83782,7.018134,28.367636,14.85265,26.868435,28.004856,9.201057,20.784704,23.254192,4.375083,6.240282,11.093504,47.65958,7.737157,7.161839,2.7116954,38.535397,4.618453,49.627342,50.84689,84.51801,6.863441,6.401591,9.928918,5.255395,46.52089,40.03925,2.3676307,11.784151,19.288565,0.14240284,18.631662,5.4442997,19.915808,22.601189,0.13632305,2.3024993,13.210869,2.7794151,20.486624,39.019028,7.8048005,8.576124,55.066082,4.4591355,89.22186,23.663963,49.600388,37.497505,3.8915002,1.3980305,6.1226726,68.9171,63.219166,67.342064,26.902393,0.7111599,53.52261,27.018602,61.547848,26.83494,18.070446,3.7258816,1.2644767,24.539642,41.66671,16.441484,17.914478,80.19415,29.334614,42.017338,21.374332,12.028426,8.594279,17.37133,48.689896,6.092466,70.82668,26.577908,8.780792,15.005612,59.934597,20.312515,4.355107,3.4888937,62.199795,7.7593827,62.63024,15.600585,27.735544,21.51671,13.602359,60.30312,20.563084,28.017548,7.330707,45.844673,1.3772382,2.7639236,9.320155,1.7928878,16.608816,60.73611,4.8616753,0.3562803,2.3694704,3.9548047,9.291068,16.978529,17.992758,33.947098,12.530255,0.20077053,13.214131,2.227096,5.552056,86.32238,3.7818878,11.679663,11.794471,1.9519726,20.689745,15.166603,22.132757,4.0246873,21.292728,6.1281247,77.96482,1.3367687,2.7611609,48.18907,66.10603,10.102387,14.317112,3.5063338,7.7663674,0.11992385,26.97568,44.207397,8.774541,0.8141669,13.228033,18.606392,9.334055,18.638344,26.010548,32.354713,18.857698,28.343151,62.734787,9.007691,12.917043,61.592495,23.206083,5.1750274,73.22663,48.79727,21.385923,19.791864,27.707102,2.4618895,48.75311,17.443605,35.067486,5.4536433,65.6203,9.157952,55.686188,27.656488,3.9813263,1.7827697,78.68487,23.5612,86.08593,5.1146126,69.39316,35.091057,62.065765,70.22431,2.6589017,23.578697,3.8156264,4.6141906,21.66173,7.5497804,38.651707,3.542354,59.222805,0.38988742,4.4822526,7.6768713,80.649155,8.21841,23.379648,0.12660035,6.074939,18.205967,6.2577734,18.150488,0.9909963,10.531363,7.45921,7.2641807,39.82111,6.2152505,62.69215,2.95212,21.136358,7.5251102,79.45438,10.692248,3.4076054,6.222114,21.294428,67.78173,2.3367462,11.445419,0.48891646,8.568404,36.807137,38.30374,14.682347,30.082333,40.08484,50.15561,8.823618,6.4530234,77.72415,6.162428,5.3638372,32.93498,1.747776,20.141447,97.84966,61.35991,25.382431,44.21241,4.1709857,29.202791,26.108076,36.950397,29.73043,81.49109,33.00584,22.078367,4.84595,25.820543,12.461024,4.2066765,40.590523,0.39528573,38.12049,2.6625285,8.436553,2.4769669,34.50129,24.351116,37.21883,2.0389102,12.242467,30.531685,0.53498083,10.33093,31.273188,2.0024025,6.5238175,33.3675,67.379944,3.318009,0.0047814837,1.0246143,3.3816636,18.92433,11.403859,23.534433,2.6790965,39.956703,0.07205914,0.54234713,71.95712,88.86247,0.36579362,5.708853,33.640022,2.6133723,2.6195853,18.532166,36.42509,6.5187426],"x":[72.6877798334347,6.02139225599595,49.75798856061105,12.221245333372298,15.947280388833606,32.38612821770269,84.46753178387469,50.699037387464365,95.77593888551455,53.77561693809725,6.146964631911489,2.8754923696475365,81.3446340797745,74.42972922113297,60.935218322859455,39.239645233921614,11.194658984516826,52.68693231565802,38.00651513452892,69.6396275619118,39.99023463713475,18.221719179469385,59.044216536331774,70.71938492877278,27.49234454489564,9.075045355121825,51.82700964172419,13.141867403738672,97.0287881089463,96.7946604006347,88.90126950723366,19.880022415686394,62.89661446226089,82.28676868343625,70.52514922709379,78.48958058850894,25.718698689371188,12.242119444713895,29.952633960685493,48.75184079871347,80.24889485283666,19.477632436690527,6.193087906886674,10.75521862723714,61.0519712707104,12.546884823260896,92.45867972123168,66.23878088588032,49.09699062151076,91.51686896370622,69.53235326873772,19.337509030137777,43.618552944309776,19.060805829753214,78.85758067883981,71.57813458669442,25.23669534642027,47.071663218532336,56.962587967464316,13.217616779218144,26.088209900702765,9.610565088621925,16.64308365299666,78.38739399163985,76.39814677393554,31.953463441115147,21.19097538803346,95.81559232689214,88.49427569936962,30.59030548862387,26.63443711014771,2.519016870133217,22.235471044655032,88.50167096286039,87.3508356128972,85.43040648838564,83.18226035796977,73.98486333101503,87.48755688605007,33.085041885081665,0.474478217884422,39.344036856314915,61.14724129371291,73.46529154923081,54.49705127761706,46.372604821650874,16.736323711032853,22.330905316072748,61.281480833511495,87.33189293058633,1.8296484072353736,79.72676459503768,7.754241489079572,40.18448831312923,5.966231176288583,94.95374389318236,34.69979383364723,74.7887495959844,33.893744731933296,64.26932644291202,41.33394866310779,64.72671481773556,97.97740037877732,7.536936498948532,24.239832810133954,72.09409528507325,75.8717586481137,75.19848396499769,25.95878290634055,10.128186941181095,41.74599416787059,45.152732727957314,53.88846231487744,8.098477322114771,35.1026312526711,98.23317237407694,73.68163613301381,76.85950858477204,12.413400302803613,49.39449937190445,53.73491457841701,84.5052047530421,21.155851081409992,99.92014248540721,2.376496596741151,24.094451114122496,23.878698945263878,42.31662316120883,32.72632414464341,10.254683591445113,67.22066975882686,45.19416973480552,46.38674943299532,54.356585950489425,54.938191349573884,45.91339605662069,57.410277299018084,54.639902649957115,25.059871086758356,9.230583717947027,0.6905693458926443,78.43040389661238,72.00345572263986,84.93559475507746,68.49389476087224,68.71510565908625,88.78185425546742,47.61089820812935,11.85220816731264,78.82237380803606,8.731873688257297,0.22906018770265657,93.67643375647648,9.43182903074452,91.50732307244198,84.80427164724827,5.089216632381821,40.468348660844846,75.37053328287048,36.879459226923615,80.59042608787944,67.61455354775772,96.08272987566193,49.92311903724126,52.83576865944549,1.342316975735025,11.232102715051118,51.135522682021296,61.22840956411846,40.38883603821062,72.82308117555691,76.35774338923225,51.47654347317003,43.884905999063136,65.59602284087138,95.31449143360632,12.517494216688052,28.683282359644878,84.6283321315541,72.13254313355891,7.540571046467425,39.83669692394146,71.87995990497488,70.58572689542625,27.722702108114138,7.770181891892758,74.75305883934519,59.493332881172414,48.529494752531676,1.441326073876159,95.43496173268018,93.81656400066859,55.330504240823764,88.43007985625114,42.18290869393195,81.64777484224854,94.25777216745922,50.192264963211585,10.0775810549513,33.6263366007194,82.84583434532642,72.38586730475062,91.19863368059107,83.28003497943828,50.44812526824553,29.11652855032797,81.53808427883935,63.61306905049066,5.793276739658082,57.2986884205394,92.53729736230916,13.87045523414403,8.349896922692002,47.661407700818856,2.078188654865376,71.54118489806135,19.998510603228425,96.56447446712907,4.545125668501127,83.44669778050304,39.64117206592742,37.304045932854976,60.344061867734176,12.680754024129936,33.50706900745688,37.762011743872414,40.168977155820585,94.2209278287735,62.182750366921724,97.34471312214626,21.33278613887708,57.11690816645151,75.70393224286143,22.04536855805187,97.96054471904112,81.41411971199925,50.53273872686751,88.8968690212096,23.707683152310942,30.460729001887444,7.3256444885719585,60.80319403313042,33.274167157256706,54.004533631287565,27.18958885643157,44.47519505145514,40.38083398379021,87.7522515967339,37.050121382802416,2.800765370203906,59.617837661047865,11.002188398915747,7.983374642993823,53.73303773890497,35.626872479625106,96.64131156340541,33.14688693002672,10.36088641091647,2.8075526851548904,45.4973868807029,32.385573603822806,84.62678628091585,16.380085511352817,16.705960725458667,66.81069475759203,58.58014266249998,76.26235115251939,29.85358365909111,54.29699162416479,59.55361729617512,17.785776358049578,67.27807277993719,34.54564256044156,16.035177249031673,15.7343411530249,60.871400543481066,54.748241864049554,17.203608541310842,15.098623043211123,55.81051051913051,33.91858220905035,60.09963770201712,81.94452294919432,71.48444726612408,9.349450247252344,97.56001243115499,38.52255987747413,80.21668627674356,7.050098984730724,64.87341838472305,98.8492408610543,35.54381147709522,69.7244481294506,73.10588273312682,41.199576977533816,88.17637649633025,21.489026913465725,59.288817884628465,49.41411048057456,21.488527978460315,61.37450183296006,86.30675762138719,99.84035468687318,0.5493247332226336,66.31631705687501,31.549938255769305,65.84980912662331,74.54963345574835,68.92468255349621,30.857883053938163,71.03116921695157,54.19831992029914,68.6937069288753,58.070089209132384,33.22605326898043,54.968179858160745,65.43897405919614,1.3412686795837847,96.88989563720084,29.14226889582505,21.184363037201727,2.7461390596395296,38.71328819514284,50.30836822181711,22.600075830519362,77.27730987469748,39.70806446823827,62.40357307261102,11.129932672346431,95.25017806056191,93.53186966412872,26.885653621523854,92.47263728607084,36.562139115325955,28.867243386748687,47.92229954043849,72.73769328483294,26.14695349006162,80.07779292498708,65.23842817032495,16.634241719195597,22.587157575881257,89.96155323595022,31.880504833497525,50.69084131481544,88.91898310444545,7.869989537546007,15.364192260406039,99.66208991858814,62.61830211663143,36.42861049352557,49.624321110669534,25.74578067397637,57.272529723891275,68.59262600136186,32.25237885921635,5.532015018310965,91.95836105614053,57.40405183293637,79.33532903073962,9.673823771077583,3.1152381894618886,33.98670856406745,63.74814661971463,27.614382849290276,37.241001756697734,10.609316871479091,53.50399855519664,3.6715959838024337,77.45014196034884,36.42616822841324,71.09064640357317,56.24738941865822,24.088626209347364,63.506178360705476,21.899178535791265,71.36378488386467,81.78077116025358,34.15125496883734,65.59221743968156,21.30652374757028,36.1369477447788,11.075473034987226,91.76762500038403,95.41130447380613,28.651346316461378,90.93719754307274,96.91182262354621,10.798962362862008,81.526394089209,55.58016628572141,35.60351714248002,91.2223860326123,6.206281782057365,75.07594330399301,19.734478420812827,57.67938054165151,19.704143793875794,35.45715769902012,71.1852732122849,31.49889436072574,76.06431123679546,6.427030636369668,17.923831823144088,5.106912972939048,16.707922960140355,12.928817559587436,64.74071505240978,51.24763373268543,33.006605499321395,90.41924212803234,16.22432552340275,11.952420082396731,82.20430085928967,17.04315472077351,32.445309617163154,82.02055441065338,41.76655531972436,54.275610112194364,24.17112239591677,91.82813267034443,88.89995241557818,29.017433544704485,22.44530586386765,97.06917758803138,28.616666224972718,11.125053757366965,10.783571105832056,30.472645491738437,39.847800817661785,31.336122922408883,41.82695662309596,26.554780439394953,77.1508699938333,52.294400956584056,43.50936777649379,89.37188027531646,39.03190337716948,17.435353035779954,71.60825259215915,77.81958893187455,6.703657812216823,86.76964609281677,18.38971234581147,92.00189580275882,52.575244798760615,6.554221070628053,48.46948559410599,14.248810766256792,8.043126050892745,10.871326416833437,12.592333819661562,95.77933435373863,92.80942879978181,78.57475472190025,87.57398257086408,23.786002149951948,46.48693700356576,31.081177950765525,42.26925686484623,99.77667605361327,37.18651683987208,10.01199021354504,96.92932348006417,76.12900522711632,8.016560554495078,93.50244811697085,78.91082344654143,71.88578373378854,99.21506093663812,14.513496871322983,70.1901154840361,76.50195454111014,79.10928316251817,39.71805706389488,48.01108517955102,62.34594358502202,36.28551254217724,97.05234250435758,78.89237666017358,27.43312897875373,33.7259336877649,71.7960006819682,63.748977698683774,5.821902255073253,24.44834300638292,86.38086734026001,58.36529139977622,81.51399806152774,25.563824320595153,40.53324262889154,39.0594476219972,94.5396833288678,11.655337866825278,77.23150374151533,71.03721167113466,29.071122681641537,95.12918331802526,46.549205639103455,20.43804263875193,75.5583924959673,58.43148632543246,41.64826393819215,60.48805276283154,44.39460673126949,66.90171333866203,43.74286974251586,37.278445846367056,7.625928819649963,1.8401827299228124,6.935213266524132,25.349336426359592,18.946028567536132,59.94016706121531,76.18023022360785,1.162585976609487,31.86367893284654,56.52463517846004,76.71165766856953,46.55847607973761,93.00052168129676,20.091092582413005,83.42939542099164,16.364431642732335,66.43774805266605,43.180541507970204,42.605563812897394,27.80652588379715,65.8704112386779,95.487459267371,30.018842100191456,32.12829163786422,33.10876871652154,17.30652203120937,78.08503791479566,42.49612928336245,24.13039772462845,72.54883926297228,93.82371623201449,77.36867360576191,55.66865098446024,26.72670263671738,21.174798100501548,5.752257542579631,79.10694257799896,0.691475575661904,73.27758414840501,11.78665133968405,37.458368165922536,95.45880681105866,23.511254876518706,26.29248091358415,74.4081303076322,6.890693301798601,48.885507156633366,79.02762791757264,23.924380382608625,64.47663749222784,31.74262203586902,53.290987102148115,37.86833109705652,78.77570831480784,50.28737571425591,44.85952601829955,19.020257345044676,46.67831966413887,86.22926404223593,35.626137160413194,99.30014775192049,83.74669825170865,49.78346933084972,26.967364563600793,50.65465627087852,78.21707580020544,56.129061184949656,53.91775047518445,52.36022032969656,21.39765266007747,15.975642249973054,11.059554951060768,6.54431022859896,44.77896003388796,53.81650775868337,20.13247205587646,97.4118563071757,69.89746157841314,16.10760416945225,60.60809211917434,97.6972690213889,6.375466036202393,55.02263314374959,13.97539293846325,70.96459792669818,83.02258083603185,13.115393034016165,38.502574359511165,36.882302261222996,17.742292255663273,54.98532548738076,9.020791720242293,86.05014547143674,67.51126152901247,65.01393548891201,3.6972750476289784,25.71950404368777,52.78290801640041,29.840614149004953,25.63912542082656,69.6912779417564,33.04306092601892,64.16782528780224,13.25236857682891,58.520813780642946,65.37905557615453,72.26677865388537,11.20205142283125,33.03807918411261,65.92771312902141,83.868529869661,62.296532205527114,81.00810910796537,64.5803119594458,88.96670204083289,51.5664170737968,90.96816964533527,30.19425650026998,85.05252128015141,26.027059991929,10.867355364543652,3.6633123792011,73.36252304121831,63.02463584476258,53.2793640947755,24.81177293809208,53.716485153977835,52.78602365702518,84.36958488410666,96.58669266135402,99.28870218785805,94.84922218240456,48.85823439913517,66.76115608127846,0.9726883513379803,52.28975995247333,84.53196142796335,85.40911752404713,25.483727818816305,83.72297852578536,18.57977512311175,73.90783501088657,96.26435740938575,7.7370402617008,84.55605686008924,14.969074250460102,20.07314383482608,76.58193535540508,20.28548527470231,50.97889901605661,66.36850436126915,80.51058891485916,90.24933490355707,3.3786620856416483,66.04105589998785,51.94593269481116,93.13245672424101,41.173414024604284,7.111175577238537,50.12181729659944,2.13280536353454,91.68021548532701,16.184729923992723,55.62720455038139,83.33147314969509,93.45432156464057,79.77650538480671,72.99903704565985,16.59976551542597,21.80359564708656,49.758072662324984,69.54162247835598,62.43011321013866,44.00355931069755,29.867152064426584,97.40959654176008,72.35417281299394,67.64051688014318,2.439978536233489,98.68265667911487,88.72422435335137,40.64105224519766,79.94952604598939,82.12616928440887,96.91839766108974,50.90458446856353,31.6337404299848,71.44359345658106,19.51976726399913,49.495026373697804,56.26961862943737,20.37439491414417,6.228450632577831,81.47757460751092,87.98473351621902,17.2916455588064,83.86647174815069,23.5341850147304,58.47848437640146,89.28915339677123,54.42881402323301,67.87576793453273,12.102067282710161,58.30828668251562,7.70851929324432,39.030373208572186,63.979296431773314,81.37679934312379,28.31110647760471,31.757957803617785,74.8600051620956,74.88052880200732,52.99280542186735,21.062395694022484,94.97921204281076,58.05116622858071,6.500222597093641,99.29482453155318,65.71804231976019,2.8695287573104022,25.252496939556945,44.244558922615504,7.879247062323625,83.97805935947954,83.24785117670575,39.332482952756045,64.81887709341805,54.23541720727568,18.283194896096376,84.96933308838526,77.80466950145092,33.30522721628785,89.08087916979946,61.660736807445325,10.846198037206223,45.809550674897494,49.02524407538403,27.571829821267325,98.45327871457485,35.658397288729084,15.110091016300075,15.798516102779347,16.476439996894644,36.73004813460561,40.95134089808281,6.239686200576888,50.48553889858426,63.94069406076598,94.47068306509614,16.15212659335892,92.69956414386026,93.95763252308178,43.87794233152685,55.42491874742311,73.29064685674776,20.474571326114543,29.87830966249856,7.127695622405472,27.87140056443921,70.38099536350065,64.50723519294009,73.10796899653995,75.38019744805023,62.50908784745188,35.70108322326462,27.92628282820162,48.84091734771534,63.26360234022408,92.23069770505705,85.85730375484141,30.344137032823305,25.309411786564308,64.65398567743458,52.04558825179634,19.49586278713046,11.216684795452759,87.50431808273225,62.04605284371758,10.705346042785058,97.61322091036524,18.465402202790237,2.280396462455514,74.45812751514983,67.00304571487024,81.38399828703375,51.72541826699237,57.606635020976384,68.58827566160706,36.037461228042865,78.16795812646704,48.3425126535718,72.14711975445934,51.85479107912649,89.9195378240276,26.18194054516716,22.022575286626722,36.7668974297759,61.701557292353094,98.3406815189927,43.763516535110135,43.09520336129913,17.190583702836783,89.20548828228459,47.63973266982323,23.47127992542497,72.64414748027941,14.225940487508382,14.164465758408785,68.42768917044518,49.5390766160997,75.95330689363134,57.69684457488832,13.537900542145941,51.13590496903081,93.96412526167907,46.978807492215694,39.024487830717625,84.10834680281518,71.7661105181497,49.83572825086588,18.218389970941963,39.41731502943424,47.15657105520744,21.090704847158793,77.08972555683168,57.30112757129814,89.57636251169929,71.2304360681151,98.11004298649955,59.601280631540895,71.92978134224144,52.10287895216471,88.33509712255014,38.761029584572285,6.721971509650326,53.374478337462136,79.57980340255601,40.33979905743587,24.503695568023897,32.64976807669805,75.00979124501293,64.21169278516207,74.20524446874025,1.9274522173184039,15.753219510002914,62.29118157225145,76.65069610936901,42.902085840487416,53.99240398738058,63.70190656810417,40.919349925430794,58.91331572714639,65.27685372118813,80.54934488682377,21.704498417497764,86.09453989787302,54.94342896424983,43.490615806180344,18.449243543368045,14.616247576000108,81.81194309945735,70.52997180226816,20.734446884432934,51.24596220829656,67.10713188126152,77.5367335107837,45.09383909301079,59.41494182722343,56.232495441224565,46.1060787521408,13.974869416170332,34.41763780332422,93.17971580206039,10.791212248197112,4.708718277404078,78.36760863556846,7.196693560879863,76.97130429821428,15.802666659864695,81.86722966018559,58.786449617805125,41.79376230993172,8.299263069459029,32.891156195194014,72.14151673440777,85.31285192053242,75.30662555336161,58.80106865679219,85.88116598059146,7.9590316374443475,55.24676325169092,66.92903859067155,97.86336947481593,15.623008297267537,0.5719798852600433,54.66739070129067,67.45353352193372,42.38464080064149,99.57268209829677,33.00539672853006,2.785323527842909,83.17242187528502,61.35472147258297,3.0132407699793085,17.791193530294358,24.802891179688647,11.767591921768528,59.6711723257514,58.9322923056669,62.970928789558776,63.436362713148576,72.08905262379938,6.48810909732509,42.889691322328225,51.262327138734896,34.72994522681494,4.947483680840836,73.77593316497585,8.08454193240089,53.358963678477366,59.297116544389816,19.178325762036586,63.02747816889518,65.16460521054086,72.38138239079301,5.573082760383141,28.6154468919113,17.43671338888587,33.88391936167484,85.14438528498509,43.15831449720322,57.56253194411218,4.198815673566225,83.22193190357304,30.682879449667766,71.38770037801517,95.65205756100052,68.53478589871732,56.14150218584362,54.52363022709083,50.94301243447277,53.18747765884842,45.52145479972717,34.2127701970842,87.73675697381832,10.202657472931431,63.864633811731096,77.87419375093266,31.35872697586314,55.83627964623196,72.55197228583926,3.5608681659397567,91.7968726868872,45.30127315731788,52.77380367371206,78.66621550797183,44.272602219360756,14.093251810517305,11.948985731809037,83.07187241280248,42.9192249573838,54.396035632972506,29.742361447238174,21.432513467374616,88.16204944191186,9.809533778578395,22.796208352231517,36.699031469075486,2.210379915255578,9.827799029847206,10.902898330157463,15.888330819997288,8.81183221859282,93.74786160841678,40.08793400064212,63.89327656732551,59.11025068021974,97.5447096665145,53.422837890170605,16.05289177229401,23.219164385609748,85.53433907070475,17.22231638883255,65.07041430902633,56.70207093502281,83.519909467308,95.54701247990025,4.654024542311519,21.00868541258325,98.75926608550157,18.02063579668659,22.81805293372765,6.118332808947679,15.800673519273667,44.03615957210349,68.57982469225841,18.893703217968227,63.60332275785352,13.199458865993707,32.822242643238816,98.2621500614907,74.9081912945074,75.84793215522386,96.43444149484284,58.67965676958574,38.27816403637216,39.19018648004364,75.44817009486718,84.8615765979825,68.8868020090493,29.198435346760775,15.329221217945555,91.52880548495624,90.88764196945903,82.12394460843244,1.414512040817062,76.56075747921395,16.80957827260037,82.85915577659573,45.837550819793336,73.62401081656546,71.6689750195079,50.228043186611856,47.27632649375938,68.71404536182382,59.173461581872836,68.68740347600996,98.18353924493917,56.07227004962392,53.351669349459506,85.62635828004457,81.05596922916627,52.53955847919967,97.46755708693742,65.43425151044563,51.78425082390904,1.422350037128628,12.49034694971396,40.082406493103164,75.21526501395012,89.53122161946008,1.9178424484770251,12.203244187206808,19.635814198000656,62.11084391827979,85.11183605130168,96.7588683273359,32.10131479753059,12.880589063491854,64.5029220188759,82.1890743608491,85.50975570031596,96.87796010724277,48.86568264962666,77.05796861244974,33.58954142328089,53.677605617043376,64.69395937566847,15.411545130680482,27.003535782847354,80.94783815257505,42.52632026014611,11.053513861203601,17.214916849821083,53.03456791889486,92.51287942568041,80.54544354101853,73.81343615138397,29.1080963187595,19.554062457115716,22.320563260802473,21.43335707738042,12.640217744803051,11.724365039778995,83.36817739273748,2.079382575746247,25.883339382024605,34.7315528619125,22.098192208780265,43.42115260255216,37.075297797246044,82.46146361388051,20.94541487773788,40.08374641914455,49.75228045801347,95.62020338870082,3.5030023979077063,77.65909451676296,22.363202142944914,38.33761842027648,37.754767138117806,48.921860411545204,42.69333110108088,0.09675292432430593,39.249861152948725,51.956533628679416,77.16723876098027,28.784982823395588,2.6896329896996196,48.09752094675844,67.95178763419618,99.44381870358121,84.33169069848675,59.179519318252424,83.18161433924155,7.265798813773605,36.50497733946983,93.97828758646419,69.5467482382851,41.56227363928118,43.892149596770636,9.024291322766665,82.28038614571933,6.470098656963508,84.08461775400151,76.44876195120695,75.4665593195428,27.280862846591237,61.88573983053852,99.70276207533362,70.70489453512998,77.59507291116887,11.042770300868487,76.4735526697278,17.942420069845312,16.021097311980114,31.573052974260474,88.23063277398285,51.696644602684174,44.59611823308225,30.720750824352006,36.246932886222936,26.918312356883256,4.2029569056136085,76.52663034660578,61.57012748671165,84.55008015640838,88.33230886412011,17.13669892974806,85.12174587050596,73.44799114087715,21.440664434717462,50.14462850950549,27.702090252624203,77.08486863166675,17.921260964150864,91.4316535645565,74.68565526806273,71.50482562858053,48.873246184999495,59.6738436754817,1.6215530878540774,29.425237886194576,70.86734535472002,95.51205147445543,91.5573290261374,84.98181957555356,62.99944499697475,26.549990724965923,88.56198673374772,62.32994417771963,16.843357046345687,28.555571320039896,5.165272355255324,2.820104533479695,73.71652177049768,6.990511828265089,95.90593596131147,3.711638163561959,96.25854679970487,42.1317586390439,95.60812554829768,32.2975868034177,72.85054131265164,79.22949180236972,81.6167357264,33.19659636344645,57.29674303147737,27.532065224129198,51.844260485848636,5.201068087364902,14.329556977638468,42.22272622207094,99.24850972762634,41.01851122188363,40.73391481363351,21.031215721749675,59.93641337955001,61.84192518743914,36.33119430878467,20.73582192143688,34.58488060085099,65.02061983396035,33.16382594779282,59.0748210410752,1.1094603590448782,21.28571662396802,81.02760181166751,50.482396074644655,93.78489105117612,40.179990782070455,65.08511977024531,50.59563775539322,70.1982924744897,17.09672410424371,98.95356539642812,26.310740167684465,60.016296733023076,79.53585411143314,53.41790434210968,46.664808201627174,86.27922436703162,18.41675909587728,9.737617441078939,28.078742684030665,44.15507950697483,71.64720611304189,62.02906558965589,33.68409404181314,6.008276787662603,59.79279826475859,39.04507559497583,8.220021253697086,26.960978447411744,14.745094510658364,33.52516455036497,54.65420115542447,68.7854525852298,35.84782828822025,72.95317004942324,20.6931614480361,58.43238921225146,3.4124191870478215,5.301407000394464,48.60371980284486,75.03809397882485,48.931340387273295,63.620323147637116,84.90475840008936,97.45925045628758,21.655121887046402,96.82514395302731,11.869674132168562,4.464158114698435,0.7305914065365071,42.96378147823589,11.545901329131025,56.0241176900813,51.430784437286306,66.81420798259629,72.165627546742,41.273136546885524,44.97021099625405,63.32200260854817,23.243826033968073,84.26374512060173,62.311358970435315,71.21817328678914,10.533596686584945,71.65042101167919,13.672867867877624,19.72340169330944,63.482456278905076,27.170049923203198,41.599659639195586,94.95560580466375,69.47750673474047,54.43279453849772,79.78584838946313,41.25941393554109,22.95819929748094,90.1531340138672,69.78942324941454,31.26486082725648,93.62409739819583,41.26850592166854,95.62383238084051,46.31593062478334,21.29673097927932,93.03591191620694,15.759970545011548,81.5389869921679,7.215002567852091,76.30955288099747,19.518905131939746,91.57445201662796,94.38532036124903,40.691764689409574,43.95023495189987,83.08431816478475,23.37676860167528,72.81788463012411,20.456690932577114,70.44057207457243,85.51043917221787,80.57125267299584,77.69060343593833,35.45526879563686,91.30616191683463,86.98805132561371,15.584396491081954,76.23302421445939,55.92562696824791,69.07480771031072,66.6206923708056,28.4934621733008,87.43185528186045,22.063666976980546,16.139430507043105,0.6964743969212539,32.16021851695391,27.073393393712188,1.6144823337876368,50.58699275593913,61.6499110909704,24.330130251162487,19.709182241524015,13.400081376303852,13.827331741816874,56.24464260471855,62.514775697089384,26.086098788045142,34.49396137086893,27.48488116393859,66.34319387277216,0.561895222591946,59.19706609334414,21.244165632879874,80.35042129517572,46.88926730825577,92.9957401919814,89.1007281017737,21.306717429143475,80.15332364280712,81.33081045989101,70.76937873060669,80.37024613015048,42.248125463647554,36.46783622618164,55.44973804401897,69.08733726338238,76.91017982800138,94.56515800153042,83.67678267860234,81.80126874631016,81.38153008525332,15.291718247930497,25.018362158074325,59.507005513524625,9.266859899937641,66.16657423644385,15.72894415728131,36.989556052220486,68.17011720261864,93.28512493137985,31.150142690794922,69.01728322834998,55.513364323972525,5.606273525905525,76.0225753640259,97.7492723971681,27.3994845229249,75.95362332489961,15.737797082284033,16.26189315265224,19.749705303467312,18.797857468880697,97.77771328567542,7.171684533475641,86.61767936051665,19.57311633779669,9.842637457740489,26.284763099524543,75.47370763098506,34.29673643105622,71.26534860351244,41.270208288436386,30.98210040770991,68.90767391010941,20.558452426700434,78.10446251405104,53.297473054162644,86.37092902110744,70.0410218978645,51.172690658107356,53.94642343053302,91.4554992792714,5.864905178324486,58.00210401329954,69.499850231886,68.19807495051313,63.1391626138003,51.71309988709499,66.47185712518113,94.34829819499139,93.04989193062674,11.621516445989421,84.93234683447062,64.07157890130915,96.78000464811045,13.744496141329698,67.5988544917838,36.30846376050138,87.17304337804443,75.26736208249605,85.50923740442286,35.958119750227446,41.586829088397735,78.24288549883133,76.19048392425319,71.2039952353237,88.99579558573495,51.1284003326935,23.799951171100453,73.56101099551134,14.244795511347597,46.844664534776925,58.72732591979754,62.168916174876976,17.228783369556368,63.70071152459958,91.12024078674918,62.40960161228063,46.22879598963324,84.95299143697852,18.359788246195386,0.7607697066831731,29.792174490329003,49.39029048971799,0.6751086266914563,18.25744443102071,25.67920625390756,69.69437428603689,37.74492643560997,5.026854186099006,45.86072687270687,98.7741729281448,92.80443832934026,44.95747433601951,42.594171527232206,25.56776536225214,36.60562714199986,49.64695965749078,67.54485266412811,63.359548466087915,10.651504170885296,94.89783587476602,1.1802024605257477,22.373371800036466,52.487797414338964,41.66127276227092,77.81275502926417,97.766120493104,24.30501451170478,65.02807552512292,87.28024727027443,93.29157249483269,62.214028639642514,9.013125119774312,50.574529330408616,70.39332356071247,49.73671418598112,6.389225976697044,82.15560717507033,88.84383031825197,16.595921729976936,53.88580348178107,39.57047915056885,33.73125538386545,44.7215253683577,87.29601689992246,96.11900166095288,10.166486859996404,59.76621377943183,87.77690396315239,39.300142186473295,91.97000018575491,97.35025484486417,37.44103874098553,75.76558253072886,5.0117319265134626,76.59921018202337,12.02084298743885,46.024044125847574,64.52891623953116,97.19803919501187,29.474744265872665,62.172203407994054,41.48415583549271,8.89439665341344,42.4301784960242,84.29821811090689,66.62529894747921,83.78981292133605,14.608275892032907,31.314997234192266,43.90509080721004,3.7114266053794642,1.2186350825468928,98.52925700888542,85.12454765277421,93.2490807948236,31.786974752150797,42.72507433385358,38.677515475726324,11.846832773507455,34.849663067986526,62.534385362184,21.38490070547212,50.87584306791696,49.82026205574696,18.551636880434785,47.374280213155814,30.3910735837848,77.09279746434513,68.2459757400983,85.07649683555341,7.779663546721438,53.403857805134244,13.683602472566292,82.24780572332739,91.29983058237784,24.79801488893739,51.793581192326585,6.435786491156259,64.45382998769945,47.63125706294954,70.81630127908583,73.13242255836224,32.051369805924615,49.74873707190047,54.846750075558106,82.14310653633666,97.62997301846765,22.463005803292745,50.47811124158964,55.32788358792714,52.83473045204477,26.235433064567147,35.391270349927716,56.48073569789054,70.7549796031394,77.9106956086983,10.28026336263882,76.45975234536702,67.10666359270158,64.12929870382135,52.380759437325686,23.75983390376737,4.274338102288866,62.548471825068056,3.964943094997442,84.27980797719711,1.8274495662849666,31.913215526876858,11.429414754331379,58.23457090797864,7.851614379408344,13.302060065142019,67.27404859115643,91.02535011957201,0.27843784847110253,37.65290187804775,23.132440919212073,2.69559979169951,81.55198552944434,33.016051855217476,3.064618480000858,23.377613716588375,41.44820643426526,94.71926151181519,14.347786938840457,49.034422060424376,38.01998120769036,33.111815586019,30.580646339542206,41.93262375271301,68.8830439128095,73.10025339543182,62.74899317591371,48.681631188750885,82.14774449524468,6.648994097858862,41.30465910140434,70.11246548208486,46.09167337329342,0.5392579160281907,91.36567988195034,64.00375341287564,89.5743778592032,24.852693850158968,9.146732316842998,87.86172828875665,77.1007039002755,82.83188933365672,72.18550024150716,53.83776868183517,4.790768816962254,45.077541379857585,14.702295000724197,62.851391828018656,78.94085290846607,73.27683024614939,62.09415163538768,38.62363116050803,35.267195837251975,35.6759438282965,46.459342114686905,35.74889240995019,28.866681673098437,87.74728073905976,62.64919954133211,66.34293983077909,87.76116877972542,98.59557867391223,53.4174560455065,35.03416528330978,44.964054435964506,29.579869827146766,31.85846698513415,24.136883876189717,96.05172479135817,64.84290941789301,32.0933411933306,5.372136227790747,29.157002096051333,46.01924851581748,26.233908364113624,24.06422060905904,15.67400437078118,58.887025195963346,75.81414053056123,48.688665545535734,14.2728326327741,76.23669737275613,52.11849711141843,65.37053027555424,35.280238263181765,57.942258367584586,88.57288724627402,45.32920789810066,66.38128435699313,50.32614258355801,80.53793470119115,50.16237094827755,57.85494773612769,22.499962741207913,31.002760538256712,27.13192510223392,83.51606320399794,35.136995916699455,24.977871967826815,39.14725095930366,69.97428706004496,25.438105333591533,88.01752819733838,5.682057122404105,6.137545651711617,22.417874404338345,82.79187534359255,79.08776801023191,51.964608388936895,50.77791846237434,28.757045526192783,72.87067672649606,78.17163992834053,51.71708751157106,51.06057909448539,35.61219887325701,27.662334407822065,91.27665838653876,81.74500227523708,47.545996952031174,82.25498255789317,94.9412330574955,84.20479776601971,77.02567984864201,56.08819546570389,98.4460016502803,55.7131188863497,8.111761665318806,24.823114465807038,51.35215796882451,47.01762405684428,3.6094700507524724,84.31954243843991,7.815437526614666,43.47938537486764,38.468172352690644,64.53093458233154,98.98286314746169,92.25697285102196,95.41849856315778,25.421272459872345,85.93076985220787,76.37913955793367,2.4708927154932447,79.36556036103035,20.784542193503817,72.015556066215,68.41578856214177,62.22265328146729,99.79447403520028,39.17409426248557,65.22633351715064,9.526304042007927,59.31144702681818,65.99709074251928,3.621772321342742,39.57747818751418,60.4985975752791,22.808685383829154,97.84377743832884,8.775111732483577,50.09737583033067,42.525556419829634,29.493517925735148,21.973022024432677,5.568065641605868,70.81636669271036,8.996244564518419,27.935686888487943,92.59879320603609,58.7815298592435,79.2764887829742,17.014155515642372,20.235568042310092,50.167467269826375,76.03670991795677,62.30784948295898,2.760278211518219,91.36775983520667,8.888322779683289,87.1323125550473,66.12275076584572,29.06139982667586,33.86011897772039,82.98056075392877,28.611176996638555,78.35408794967412,13.462122499913464,28.485999222468905,40.30333741621887,57.75880339050799,72.84576017413731,28.56383618744095,83.84674498881118,7.620476487192085,96.10478619879389,76.95082347026664,78.4178386202198,91.75570850685862,3.3725081967183934,56.24516409462721,21.087758425211987,43.72860869058637,14.413492821493312,45.529207238195646,4.336011535098083,2.0092984408711656,27.41626262717779,98.92158081931738,63.59798514461657,12.991687098684334,69.45496095456802,7.79792184032071,57.267604671056894,33.483639880060814,44.950264804875495,74.01097537890854,62.22083070709827,62.633484284970976,18.52656415406195,13.731752829306087,12.077967652112209,4.225684305473331,68.5508902172241,17.839104120558513,81.43236461113858,64.00366226783457,73.67390148375324,30.04838836118957,85.16410086402064,58.05126464923374,52.38802800062695,76.18165570364248,63.943391102132516,98.68114431957852,35.29682406013421,50.44669772660752,63.493059140231765,86.139994711832,73.00100252807741,60.33273254648934,17.203908896034314,37.44632287495598,68.16871436501053,88.03957151355884,93.82895929520045,32.19847847169643,15.89064694333777,39.488882800311984,9.913952659595559,67.02948680134415,56.301153522311466,78.06977224076384,2.2151055494839533,24.576535715643022,51.61504293060316,0.043649173720294865,33.32864295643761,53.69644933699944,67.58190062495946,49.772985689793295,15.569475356646766,73.18057128806653,11.499902354291258,12.072123417972215,12.283865724994737,74.40024189252594,3.952448523208707,81.7936618644907,79.48589750227356,44.283700701932794,12.218646726135363,17.286404771480647,79.43891175472278,98.43734968688516,36.08660741967199,15.465169153461888,49.65636554644163,23.484842762720515,34.16966988567927,99.73647527049958,90.07930209956932,68.15886544817114,69.06822642852295,29.275400911945237,23.89116823674633,30.69715485061204,2.93092502099761,1.6962922220315257,9.724776929276292,32.3381468140445,71.27392453778124,77.38382375638525,10.009907785779093,35.76238117799622,97.89310742108891,10.27582988821748,19.332226653979344,59.758312953650886,25.12032396322802,85.73484604628844,29.236073338009405,75.61240050726478,69.26572749624826,75.23463564630737,48.67051908830958,10.207163630827132,15.033830201357102,6.027252807834859,54.37360125900589,75.63414405564612,75.66548827880935,1.3354955772477917,31.430058738217724,83.02533310538313,15.591849532636658,36.95720826009605,65.98442221930463,42.59802755492991,12.252398888853744,92.3142207175084,62.862269605620014,1.4410789049677741,39.81881174655122,93.9373533428998,1.2763593973398435,26.77950441125724,12.966894632450298,74.86718735394219,34.060731760570384,75.2048566517006,78.43406610167258,27.68257896140147,13.54709999204845,5.211320652414586,37.19156904906996,4.226500371075637,62.70058122239324,77.55051395749952,80.90836316523111,36.24305795724314,56.203297540907,21.6834244544164,24.460604406638087,22.12083034963861,28.249201098650467,24.027881945864838,71.43288079938769,87.36252721125716,82.26059206932615,86.9521540292477,26.101843354310528,40.365997782252414,54.115607132977786,6.747805405088814,93.83006929051379,31.751923007555938,45.86991624200881,38.933692633099646,85.06537284087194,41.82876027619703,46.84162250838075,1.8339083390229272,2.828914729839116,24.734876234964453,8.062686272586127,8.81019173575216,62.9900229264151,55.672562061915784,53.562969104472394,75.4858152422334,33.721863965524044,70.98680865020019,6.599795186777547,13.286359176333807,33.13621840667273,36.43602434507913,60.97299193540942,62.26388576100492,77.17474813318248,7.098082964861829,18.245243126539723,14.281547916771242,29.485006578730644,32.235164224092536,81.60330889552215,77.80684148314421,28.033974551994866,17.051615396413457,64.00152954903893,49.948634431668935,98.5778688091234,9.770935454242192,67.88019823850996,9.779594853162877,30.13599060256866,49.39001465072672,32.466932912815174,70.71270260745676,97.48779991868481,79.56758962497152,78.52336123045846,5.46105971273777,64.57886632527756,24.709979489226086,41.554932642394235,28.63407006201857,2.1215139726108334,94.93550000409076,83.9568522938485,47.59643855947385,41.25761399415855,97.0831657189901,66.23421299840601,62.35186812637829,32.010738461149714,15.546830577948679,40.64981944988681,37.7129379131388,91.50661517271433,99.3192017243712,0.04294668915697519,41.84946569440153,9.079032380877406,0.6797181338576541,58.096295465098734,90.80528314433944,43.24271036344523,30.28664567734809,33.0146567863423,80.31165025700442,64.9852234599906,28.589662469294417,91.47573157803103,40.26993761791464,68.7947812769929,35.3006630406191,16.316290883537942,50.71933271725707,41.34034959647216,94.73247181277594,36.490852314294045,52.39749097838835,37.13701990929882,4.8897305279312135,64.77390823954057,68.65107996926832,45.34487138172545,41.03071186805701,0.33073747708980417,22.56993955376081,55.49443591437663,75.98749650903092,14.449889369253398,73.07312323270526,40.32668281683859,11.838845415821131,11.58798334025024,19.43500786095863,60.19213798496095,67.82023377524885,75.4330545170735,81.74188306634359,1.8506164307742212,53.38530966945155,58.02643329971555,1.2326021753031102,27.90395350841772,98.92100127462608,32.28097272164071,38.42727161311009,37.919816963845854,15.901162206601317,28.743437084671765,19.36716224526992,43.09868996322482,0.06330651929252751,86.2220427498825,93.26321279525249,80.717255031618,13.924249974469404,60.22133676028005,17.611696767249498,33.75376757066931,16.86419718095742,6.459541396476043,5.842037123582278,56.68981246847472,92.77525212476509,27.111460023883016,95.8843767749897,34.184777040438405,97.09734662182626,14.0199592752553,45.64094646974147,36.23994690587431,90.68391132365531,95.48717079307463,19.24805143093896,78.65507026189069,87.27824547355203,92.22747716345235,32.23425351706154,2.5136938671101783,40.44406531594613,63.08238459910028,40.03772456425479,23.96419190756842,29.122417667611543,31.341261418913213,47.8183961850691,96.23960402441311,58.65797639930979,78.47439998238922,92.90608400955065,69.74410204856844,87.1045232616483,11.114550138557021,73.50427126346462,11.512212460664273,83.12916514801695,12.39449190251639,48.04463035685501,93.59298012589718,46.851211083343216,84.5209392353844,92.94387225632033,96.88586873585031,23.87296734544818,58.874921327669895,90.3700369725765,47.32107271813112,23.884872635169398,76.16121663247719,50.57389154382924,40.5842713784994,90.16919059707838,33.859197863178025,30.588779567829405,58.53559759784686,89.72355496138891,36.62909011405942,61.83400544094364,32.901755178681846,53.2405781866809,96.0005375643756,58.65991059273665,72.93981312722543,20.379581033476246,10.460119518724431,49.35765272057113,8.68522338137957,19.229281277733044,0.6559573728010637,29.067272232104035,11.102363812876948,83.51826288215588,56.8068835027698,88.52607919997335,96.61448891930083,20.171991531007873,35.71292994311652,26.035067902535303,58.85643960818182,15.052455144380627,0.5498023469336033,11.105654703401758,13.972522777048324,52.12531399835956,83.35864992464957,55.775982943945394,71.21760396819103,45.33025764895554,25.064405306536962,85.90058517915774,12.805859924081474,76.8302478642122,4.987805526412048,59.01928955957077,56.731557096226084,24.21000643644069,20.01788151846149,84.92764211654705,66.34400523994864,70.09532878444479,84.97100791730053,68.82045180620217,31.47533261073885,99.36365023339438,10.04275984779448,29.651270904125347,2.2938676593071805,96.14780569433363,24.86556344982973,23.99781347583263,75.95316126873901,33.50852915562184,87.91888335468913,25.985577765496448,85.06277308772869,77.87464563857928,59.62645856414637,92.84721034425704,13.745563028149189,79.3883205949241,85.80613363386016,21.13080766517085,36.158295916013785,55.31930757473972,2.9205011079587173,94.12109532832574,50.182081871876996,1.2277017099473264,50.1088788951075,97.9072618462853,91.04324235247067,55.79781840570616,4.8886142917843545,38.842429303626034,54.780873739522384,62.10636707815029,83.24075272221314,56.09603194923935,6.906443755343428,94.76589267338211,77.37437308715897,59.132957083328364,69.1232218700014,5.481870269592893,10.247242101977461,89.72959910076138,25.037960552080474,95.36890447829546,48.26827448145829,29.026925178842067,4.267816033160143,52.646234205127506,6.590086677823703,58.37928251883305,10.754644996550367,47.95194598174489,67.61212529325691,68.31917703316387,40.04190545454725,9.762332399606466,36.83798491584995,5.614994290056819,63.84916117220182,47.94095925655739,98.18368181747445,94.19240008936812,78.13729896572062,59.78126718315999,30.1585540652221,3.8476286001119298,53.60166648775066,85.32676016484291,18.829163530507053,95.29649877948626,33.85569810225479,18.532856719827695,81.86170316857296,95.0382899972915,87.0321456436138,28.33587713398512,4.6285224751808745,44.5181877236646,75.24930696195645,87.08400550178769,11.501862104713013,30.524822185207377,9.187930024053259,16.288153672083084,60.09890409461386,53.709012823958425,35.75996340660902,22.533427909579196,60.835251977088845,57.78543641968271,48.806522743648706,29.210013461608362,39.67960604097107,79.18485515047496,39.857173607815646,12.210786312415767,94.91797376508076,56.773769656358176,46.72577129285166,5.587112711792752,60.99568821164173,76.80556082637061,3.5124908301344515,7.3058751404043605,7.574883435058865,62.89879111258529,43.41327026532309,16.252721736148533,54.01200921504289,10.835540826723221,90.36897893443837,77.75341245770596,50.22483129375461,62.47840688586721,80.58642064302533,6.5620382294531705,90.99221639554236,6.222362226873546,34.57991845120502,5.767692157651916,41.844267672445554,55.06077596188037,34.71541686132411,14.797718202180254,62.03749735266262,90.67652586423584,30.51423292754517,38.70886943784644,95.42697998225181,34.350694974530924,35.76295089008528,9.014760164012392,83.0992927604281,37.07821176797378,40.00110145101189,48.738162845998545,17.786464637319412,82.91477875483942,87.6705012102262,10.087064904441734,48.496805327386674,77.75910439739548,32.81327163076926,34.719851873455035,23.114556139171004,80.66119848946451,4.66783234834457,24.939818469654472,97.3300944115459,42.84420126546499,13.786895042639513,61.96429539692437,45.25176048287665,40.948180941316316,62.81888121370063,22.34997379702922,7.137726641827291,2.942952670510579,57.67665813282802,53.23461291562431,77.61374373266324,43.07595055068298,74.26458123848421,30.299740943507693,49.09380204579416,15.357776391944178,80.82984542918481,19.96263587775353,25.39633704502147,38.322517582895664,77.44812589570843,81.76928903596013,98.65125155853711,68.5748434110024,57.582344088864645,24.642343599543416,2.228832954315263,28.97982008209431,13.976067021436034,12.223029266087115,57.45531475694223,16.139121525067836,97.1926642583956,62.18097412703,28.395474591012082,99.63866198152866,81.81440609383645,37.04057846038465,54.68324578650597,80.21529174907278,6.0126300022897645,6.3157045240983205,42.19931520931347,16.14447690906663,60.433878485688375,35.93961643795174,0.6733162284392247,25.873797600722792,35.07837111663778,70.33565012041893,48.9292296781956,92.72459653758276,16.103512022183697,50.14152151929512,0.7790777925840597,6.618673126417551,13.952049847825199,1.353155765138192,28.03626566224091,10.118137808609784,23.008849008377,90.12251531702874,20.291497995369866,2.112037248070342,32.96450540258875,31.67813598366862,59.11042128772688,23.789537325187005,31.045379932708173,26.154223454119307,96.05879947836242,28.582836711450042,28.490535442806785,8.146380357530559,14.625686753025047,98.24695374766938,85.32169237900676,50.535107539463084,94.27786376206771,15.570517784895642,51.311973665613074,82.30124460000867,60.94064971832118,92.93796700705147,51.31075259721193,96.84987285065137,89.94922994877926,85.97092683170608,63.483204629940225,93.49955458940643,59.17759641479478,57.77170878992148,23.553229954946396,15.940493662746357,45.74172602249256,18.243032155572404,29.51316017587787,78.8215034972998,86.93317016235096,19.4829494897526,58.153921744016024,82.77324636868856,6.734916523037926,79.19860472968558,97.1612774496165,4.285562082695071,63.85039844353623,1.3954768730839784,83.13424120579418,12.514411706486484,60.31369718423255,18.779129067586954,90.8943970558496,42.745156125238815,50.73113512891787,56.87729067832188,46.19454213004972,73.00109328548801,22.083277648088362,37.31025416893294,51.209043892560935,56.453416054411065,9.485134720793953,42.08090515287757,43.102946430424716,80.675440648691,72.51008155608196,46.74524862091912,5.929579585666356,79.06941157038338,73.75496686423442,88.80129446267183,69.19195809957688,29.518009115051523,49.12371448599221,62.47051792074678,95.41605300022998,18.51120993177986,34.78376253537927,72.34692133259631,54.73044512286731,45.866692384981114,99.09065452969504,36.033508732681675,12.949531381394774,71.54700696934339,33.44417439874405,54.985752648966965,73.71736562973673,52.93727995545247,93.42971885928249,84.56110750772521,15.527074199850388,83.64841808892673,47.87939250265513,58.779416970470585,39.97836569020903,27.603618269446596,59.139655207036256,59.340459368303954,79.17780111943556,53.04279306123596,64.67143381410992,99.09024299341407,45.15857359482438,85.6531266362151,96.27540130053661,91.70309287198263,99.51927026817215,88.16170021081476,47.11549939174855,84.91332268161871,44.52173219194167,35.364218345672235,36.07880653908927,81.77539037155145,89.10291437022333,65.60571878608881,18.740185224361305,59.62552778797373,44.272716293014035,7.374258977510973,31.92367630556687,97.24947062695135,87.92598735824006,44.57310711591832,55.54165302905349,56.72890997036486,65.80247322139644,16.8713812677339,28.188117150863444,83.55027977718855,91.1974845986706,12.255741897782645,95.79426663036773,50.9990211430415,9.663184948202087,33.36480743942206,53.180858698874204,89.11069536191013,80.94883909184892,46.30705715312035,14.046018530396864,45.61242059575243,16.767856102745206,32.56416316298768,61.413288170422064,20.733776381951273,34.49873261717602,29.573729385113268,0.8435108508755618,35.39345928420525,75.85206429427639,0.5919395067547462,31.499446035656664,83.54016776855174,41.05494016348038,85.09960918153087,39.813310851199105,79.23501795124133,5.810434466770776,78.86895909044036,29.035016069087703,24.73343039243475,43.613085484947476,14.807903020164536,9.86439286112878,71.35655047340144,94.19148385590313,3.177731063460476,30.268001500011334,17.952838399657555,58.17789518296619,70.2389324046536,7.376182163699374,59.56990839026104,28.03078024448412,91.04535406338789,78.73576381519817,31.77828860081454,10.907415978642588,98.52678210954733,68.19832375876416,18.232016099634652,68.45014617480774,77.71741565130567,13.5659680909212,69.21122872660416,11.80948097606398,86.15905397788359,30.986095639307752,53.81774554450709,69.50778932613937,46.18743471664799,98.36530321495741,28.197492758277175,0.21297753574487377,89.7275646453675,20.466952583759745,10.191525632378106,26.42660640915564,81.89243253972481,11.366220436916507,47.63050621494999,2.901802545845533,53.67318922939267,17.162317948673376,84.11545906434267,0.672760299298214,62.64871472716921,43.94666806532164,31.92307808331335,21.91112045707956,45.84942722556972,9.665229904591833,91.95278559468447,34.62796471467694,68.73981036069858,11.767442162795271,97.46944899599093,29.010308228466496,81.19494718801332,83.69490079904713,94.58675986632376,19.393775147154813,53.89952143143749,2.367463410824977,69.81896057958956,12.408134924136338,79.89574261768963,52.618820120499684,89.19353439567708,68.12774520840173,12.207375739229121,6.8920888176273625,44.73938270123241,43.05871426320679,61.107309313681235,35.946631253400405,80.95443871316287,18.82250673325474,68.91688062570796,38.50667913368522,94.16926834857432,14.777090922260939,29.944372714961574,90.56482077673093,38.03641352921455,70.20330816118344,31.568561936909532,16.29712356423443,26.370161083842714,64.24476072521242,67.45192682617214,77.65811913150665,49.38983503848711,49.08368135389257,88.93231419536642,52.13909017555088,8.504410990451372,1.084811478888148,62.627943333864835,37.310576469930325,91.5273973455586,97.58901870734289,20.372149356319124,47.374607524400936,36.034741610688656,63.991157614799995,36.1903733628641,49.97908566119014,24.138121081041707,95.14206980343725,73.05366735923349,46.01530079222744,66.1952272091067,21.778398869124914,6.943912634059668,67.88023258144491,73.96730485934651,15.632143876583038,13.742778606688999,27.524655328678026,76.08144577614596,76.17920628952824,4.414955923796581,0.3784307654557395,11.626326692233357,35.57870895539116,2.8761167759227213,67.79102451324043,64.27183462674995,41.0818112285802,54.547099127083484,40.53938303765368,8.214591111940594,73.59509373330218,85.54989841118282,82.79843208447072,74.22636049749653,53.75162910845825,61.78791865255996,61.062995977802316,2.8390457594463236,17.116144879985818,2.2967896614030425,36.20853932132986,5.507535611686931,31.90074947177164,92.02435251689847,86.41306443113265,62.62640619997655,62.00916920734103,40.12332302244819,74.75824526872799,68.3491773948868,28.918470221782954,72.96537985860489,35.619417167209235,13.71526474907203,27.010600047439194,20.835709155642736,24.771525409615336,49.50315460606799,29.16660956685133,63.79811126638841,80.19953066284643,85.98249316585131,58.30475536959747,25.9903980042414,21.762577045846566,42.49609872782567,99.01297808830253,51.22474978918894,0.13589770805796375,18.35994595859073,3.495807823579733,63.575001011771214,23.886276146286576,12.465480833120225,65.71161669038074,46.05834725758058,58.09189709848501,80.20621407135789,49.70823783079149,34.671342495194835,91.82664152788601,56.20614414852694,73.84527039500793,48.6042992010681,68.45220669563781,53.24902638528691,28.268779648758667,4.310756856534825,36.59921052043861,3.734265800141645,62.39649355681849,82.39727750945977,99.19238437394111,2.1638821141923725,75.6986759897602,45.1746086481008,35.701320375752445,55.30804729828886,79.4577900934444,22.577588463934262,15.035578697763818,5.259253199701719,64.9435304070891,35.85097331708731,80.49929192205114,76.31393906813788,30.51253410977014,74.43439889038021,17.111492623579494,19.772313608903723,71.71930283658801,63.93287605385439,82.18846542246861,65.33774032952405,66.28989601500817,61.29541857630693,20.12268116588052,85.1333240239857,4.536581069731871,32.767626921913894,13.999721839566547,44.4563872470735,28.84259879240877,81.6687183345931,5.10659823455989,30.768954810416826,37.90003202608803,89.6825703222425,91.16492312691078,51.19668253763648,44.58105041036301,61.9446403526112,63.37307511938837,0.45115262975810033,9.782921437204894,25.027372900175926,14.643742695252659,23.66728846422783,10.358521794171205,82.79252709444418,53.63224405812682,0.07814490737023672,54.86329006935485,43.422528937193064,20.714230487688933,11.803727126377073,85.4535351240542,56.84885343112601,33.79131660359314,42.28590601299721,54.789209727453056,90.5313448819567,56.25869565938479,28.422531354419867,59.82380661173842,60.13991171948611,77.75385467944743,26.395537482048802,83.63633070170711,26.696356505064422,21.681750652375996,24.588490683261632,28.754685442240014,7.4944955674369655,87.77240370200886,20.36583047480468,82.58029716376772,7.2594063622447464,85.1416874962652,13.255463166888449,41.53558830846013,20.052275287980837,9.457576150499868,42.02969928105244,58.8404459866068,59.913293375624065,87.03564679579542,73.51598867526711,42.07261477835812,89.98039441042339,40.15158135528621,26.1900692621006,87.68561961689385,23.95773711884287,64.06169858097822,67.79384560894613,37.055812243119405,59.521096657743996,81.63740068609783,52.60578340955272,59.151802676445406,8.626773404010867,86.9018934365829,42.61460047100084,96.09275065560664,84.43164109505393,49.02529064815154,11.188076657367086,46.36940211945719,60.50100422017447,59.06796475028365,38.28324135241626,41.3715979386111,36.3540964874303,80.25172815692233,93.55361881004231,37.6414965831846,80.7001256997892,70.17642354566,22.494899618985244,10.81020775413657,81.36705244718554,59.075011504533805,16.24182036000531,67.17765137039643,57.68898159879382,22.819854320550693,8.361780618657367,5.072252389499987,54.312915683317954,93.71822858352317,55.251811031973155,0.740642869889252,34.40697375284364,49.36003832443882,42.934539605109556,50.74712284616799,70.60266824871199,35.37568765796849,66.66442121987313,35.126061769904894,24.020739236010925,94.75192480562245,75.78883725933478,56.802482489812476,14.274927723299157,8.974505873615701,39.2291452706142,65.81769881699479,93.79451428741287,52.0831690652633,10.710115259924146,86.87684944830556,69.78883700272627,46.17860951079423,72.73956229888773,91.21606310064473,13.712499671850898,16.334881085093123,1.3156784028528823,43.64748612936295,48.47491388798046,98.57379045821672,78.62134359097253,39.39606685385534,22.67061688417448,64.48453229630714,19.546797446916976,99.75298423676094,17.52085073816707,55.96197350405888,76.09376333540851,55.379496449850684,55.43398175686568,49.40923977523215,98.27882453828516,50.57650938168018,23.05238370401349,43.34593471199836,14.710826001686428,14.499057420824467,16.139779499320973,72.31747365310626,33.27225231808658,78.53013252420463,19.868088223562108,49.13449669499982,0.38204136471990946,42.04935623837891,84.2872244637435,3.745638399431206,31.50077831266216,74.04165658670799,2.296254773465267,52.565565282107315,55.70163877838229,14.497464592703047,6.892588077594897,13.682506398719807,71.60916738438111,73.11626037878742,90.61656085139145,76.12130012170785,61.13921073934071,44.16503913651758,50.39825917009594,53.03393870458115,31.808136489774373,97.17367126423552,46.30320711135748,27.205021221040372,86.0889142705455,23.077358304839812,75.31061027283614,59.65121929523324,75.0300352469283,19.92170060424835,45.32331252382645,67.688823548735,19.575396991936245,25.92623171695736,95.38933588339104,99.05420581114798,93.0497168403565,97.6072267961839,48.35095939310039,35.73105382251451,13.065225100624689,3.047355388581219,73.50510863597705,14.436982900886242,94.10891720320956,91.53224605360046,39.54765510909808,99.73220794392883,31.8689675615368,74.6801303086307,2.39059520579894,93.84429440698926,41.19647259254145,17.510824212246433,50.94928834835867,13.105676018853785,8.74812515123271,40.903853415519265,22.986339315217975,2.078900686051155,43.690304404670556,92.14095491181659,70.55202921433586,16.79897445850811,30.259498800948936,67.7144384141985,3.1361583717517516,7.171862351929359,60.83101287654949,25.87253376165225,18.184940245019277,55.26130521226003,0.6741758279743104,59.26517206893701,3.5437152739204225,0.4845257021156568,58.627247988731156,62.61000855338804,64.17694311550353,87.56899055524218,30.714047162395474,14.283375377326168,83.04483777577177,79.45288521921587,59.935450633035444,99.90202133304085,33.38349704846365,39.98347506897743,54.93020910600082,2.740423450266738,7.762694538232784,21.863087164408324,44.9880197068296,12.191815557465603,29.618560041161167,97.4673043578071,21.435072330510774,58.386909361359685,33.49008376077157,66.2508153022791,30.608717849192345,66.57664749716626,26.912340464859795,39.43495086887114,51.64151562713628,43.43995667214998,46.39386324704593,58.50454897561178,48.67195425081986,70.28163976430137,33.243882600899155,44.48166174153088,54.736357884403084,26.806956708484687,57.37354382134197,33.823809856648424,16.331786502473488,40.64585097104052,8.737820261893269,64.58304634033823,22.367889561780217,64.56722677987845,71.94695290273314,34.53905790890143,97.24935245842717,97.36298565408939,46.85643282146169,82.30336605831937,18.09581896780783,55.943997231761585,55.14659199675349,87.24703998419116,84.81490595514167,29.18946383709693,61.62434160724823,13.657119599705315,79.549185692836,89.65495631317802,79.84480473597915,35.67081597744336,9.740788853388317,8.348447014601245,97.59037841077152,48.85048918699573,8.02226586182978,11.589174153837723,77.42869203578434,7.271154367527544,91.4090162047811,13.993167810611396,63.901526979331614,31.33224468587923,75.12231644475204,76.20376915144304,8.781485369552788,64.5051472961897,33.639869687766854,94.59816921821803,64.23631372328674,13.743864129253636,77.29042772850717,85.18269378720564,12.644800462636741,76.72798762810493,27.28492438193656,37.6574042865191,49.099622438807586,19.173496741309272,87.16686871860314,27.182492467591047,4.423868114720076,3.365663474131475,34.160714974221804,98.53313183023789,16.990493780739733,64.02480400601644,87.09120445816956,45.55372291183257,65.72081934225159,65.44053098631699,59.81709977893392,85.13159454992596,41.8188529724165,34.585088011941934,84.64994606216216,74.47875619667207,3.6677112968121706,59.688792013977796,33.97946930958925,73.4354959420273,46.00231739729116,58.27730207589573,9.397820750651341,85.03661767642483,10.099228290550599,20.45231436037711,16.62825869401069,92.39354109433974,92.27273925540158,92.97766234364916,34.59318170457243,68.41345519096976,93.36809818052794,94.44597094635023,41.16928154213535,74.75613193732394,54.8705647860644,8.83415971050584,80.53174323244485,97.36085588308767,16.067321090115637,9.357373702962091,29.14749108138469,15.57926341237832,44.64539485367002,60.17983043155465,9.743075281818136,26.81794217934762,30.43574233817846,10.556995772057565,19.321903648973503,96.50461013616562,73.31511604376807,4.609124254732522,78.770247891122,22.093928027260645,72.10259437918519,27.639936598173932,1.0028207584074522,96.40333814080284,20.449555781390274,81.17710014352251,69.23986373677307,50.38922351847268,32.07940497692009,79.01838777697864,64.118115614612,90.04997069126513,53.163816578058686,87.48988477055727,93.51332351546772,24.684901859607177,16.46686565925982,17.524897924478566,82.94641053692747,56.958597893017526,31.821271957143793,37.467298407303126,9.308412962528667,35.131845641297545,28.811825984383077,67.16122361757402,58.35079877502205,67.44497878552946,17.375036149091304,19.99912687064529,40.39984712924063,5.557532249056107,85.33435085119157,23.98632391295389,11.248714008419903,70.70615181836612,71.91079072196047,17.320964719561626,74.5244205512432,13.069889706570969,65.93537769351407,39.85625255314886,67.91137812647689,97.36240734246134,72.31315300414249,53.1342847028212,72.93816910995969,3.788723494188939,0.5771979950303097,99.19003445050781,96.23566840111188,5.291157831245519,69.70796432528542,91.27378285639965,29.145461647853953,27.09406964045773,62.59497951994156,8.219570055411118,72.86161725874013,80.32336159517833,50.31316155234201,19.62481155814968,69.35911696116965,42.79901101694272,70.38516357904368,15.35892634895345,19.06807563016183,18.41189575569545,3.422134278331046,8.981687806795103,4.291046248098951,18.79931603367805,91.78581407427603,89.03972390146684,53.96801005619047,85.19799085920481,62.19627906593745,11.799588013017615,85.13630202454218,90.41855038997407,22.16121275643612,21.571501938589755,61.03604658134566,36.65046216390786,20.286531972965726,48.67362399026888,60.94031540579245,25.175422633987143,88.52988396047935,23.068546763111343,18.045522142701753,70.93512821967495,73.06846563419427,36.534640694049735,47.66846351417742,95.47661552155716,1.8240121403992893,17.363580556284784,89.88595341723213,18.71443632047801,77.34049093484174,61.25386339871666,65.18092597611725,65.33935053325033,48.14709400614869,84.12298223956998,69.12521356836135,11.063625759149165,54.834005391808546,11.51882317315237,24.923993327608475,14.954345691898652,93.06015231801132,46.454207072460285,68.2743415725329,69.8778238976923,68.55448645272955,97.78283520494708,79.25294048722888,45.11544082800791,42.726613010341964,24.25395659874665,54.1705367234283,88.6568967977069,36.369709015037955,3.2257308291258835,32.72704810147536,89.94278560025283,33.226066704111076,61.72788369267359,19.435740823511892,10.93465039532755,50.25393973346682,26.505849337579136,73.85459245800085,72.43573346378362,97.69667745800122,40.177456663966396,68.69887428410524,56.715384438245984,28.944024049779536,33.534729428808916,75.79692083248948,60.7810794399411,46.29986720150811,23.012983858450742,93.24071184527702,61.53575965942938,67.84467454257933,40.864876590974376,38.180986736597966,50.89854404646693,13.609898228980398,22.76752650470667,42.121093087278496,68.65849769070857,70.16063544341387,21.177091353898682,29.16113968801728,62.499770154410974,9.656426654290106,65.69550762131084,28.5756788657622,54.83734669371011,22.299515626278733,1.0588865937751324,1.7188219686916861,85.02351539327748,18.949541944106652,79.13725815000603,14.656319878572589,11.69511995688508,27.638442816358342,34.40303803337732,58.01736947446018,9.545199645388836,83.58532918213203,33.44712965537076,41.22530463238704,50.32754187746084,62.477901347972974,63.01169042887138,89.85546897475987,54.66576374580566,94.43170404533137,73.9947024044609,8.666901292188722,65.4461647684109,52.1433705968075,42.223462878974736,83.07481541118523,52.381021695074296,0.28535941083285277,57.83195105653054,23.910198921365712,82.62832178850115,33.46060544506892,81.2964533942932,5.938168438348734,56.0531789781476,29.802491366246052,33.445081465234026,46.5154390572884,41.83627358483051,94.82950997802783,14.039989204287739,41.115664065884076,14.945770004916426,63.58945616818254,48.72404068188055,1.6845334717742966,79.03407325958433,10.71993074387766,35.21115797709039,88.27967478931957,86.56606029449155,82.64083318995311,96.44172305623344,92.09129967097007,56.62782209192885,23.408872648581923,42.50236863236224,33.504505914012206,55.26791972288125,94.51463043557033,86.75394538734918,34.84874183102151,9.658001683829632,32.844180224711614,12.815972024549271,94.44085806228826,31.751863829214045,98.06576145256126,70.97269394831409,77.97767936424982,65.58935556590984,84.40591766962928,28.99213692092877,10.969022006113672,63.6972311617447,16.989852481499813,56.45915304959501,0.5792437504534065,79.20428786361961,92.06835275008304,11.520537045995738,30.80639686141623,5.299231974284435,28.127073073073273,94.84033892504968,79.33735884999116,38.381215886453724,71.28784433388144,65.69215484850442,19.759250563162034,9.269306036208047,84.41271386778125,24.29617498653711,80.10553053163142,95.07989870509662,95.60899620148,7.009493772738629,34.53545461229398,5.773713071199705,79.54897096481142,57.96014063502931,4.04736099441132,52.10021715162534,33.48851491604157,50.86254580063164,97.50867634480946,46.96825178597893,94.91241245126206,42.15133019097562,95.93780697539228,17.869925706651113,12.721744059912488,10.162153838225251,18.84829941698454,32.84089473074059,96.19847690431513,18.71404407165931,29.151921596013096,82.2703535081632,43.5217925658917,35.06678991879624,44.69175479605355,20.145478268058227,51.41324207767107,95.23620162690925,73.89941901896314,3.637300405846011,56.30005497265829,16.69219768906324,26.871633081165967,31.209060163351953,41.699504331176726,80.9698465943326,60.88812697400658,59.44193235393532,22.383711558130138,81.1841021436586,32.51055007305529,49.85461160229865,13.757851783953967,15.763308015284794,14.364453035720748,96.77840144781136,0.816328013630363,12.187958379946828,31.582387382132147,26.548358481663925,77.87989566163354,67.68205029225149,34.78239126906932,83.05962192844206,0.7255601695208891,94.38486827534118,91.8392227572936,45.8222218557009,22.611605244879595,78.56116618039604,49.57094331284275,14.225287163266653,42.616053734893214,0.2797820747158397,24.199197828942577,74.81860346791544,16.982915566721346,5.780853322619361,32.11262096484357,82.19668586386135,0.5570947708458895,17.59884197160129,5.542215152228536,45.47198732488764,40.894743540123315,15.0082363271957,25.890695056441572,8.630639724909306,0.07166211737549277,92.11554698362788,89.13001565499992,85.07214395936109,41.27423582454883,9.089542822803566,15.654898320512366,61.83715247578514,23.428680445186423,23.826115479417474,62.584973849917866,31.149636552257576,45.7456568047675,8.470660606978653,88.40884475272823,9.534610216346739,34.08682985114149,15.187628964885736,58.71655078883985,19.05256976914188,44.0058207216239,26.87379468069522,3.755976794394089,98.51889798453783,35.91075673544477,25.263514747970195,26.699201961687535,78.81870915882543,31.70668101256605,27.82675554018207,60.29205500466033,42.646062456935304,17.017572030889905,37.37312199131394,17.667540065785804,83.6887880832667,36.35031606062038,58.95541214950455,15.978723392832384,66.72460025449453,2.8153051941453233,52.180056602940674,78.86864961324646,90.5556058411344,31.49221606156667,39.615813807028864,8.037749987363373,4.012706455561432,26.58553790759918,34.6022117859536,46.81321905964522,83.49682452706689,22.169478741955295,97.13288006177858,78.0268696826375,72.26256556566425,96.99894544417978,21.805285758464866,96.5633490161544,93.04673504196408,15.801238587825539,66.55060516643488,24.148766536851596,51.48285161169473,83.56905826363092,9.810282678329408,99.49349483383996,43.25356994066042,82.34837986058601,95.71262575467489,2.4663225428650404,62.00125321344867,60.52368009157087,73.64300240984313,78.4852245336992,23.290452040978504,82.67583819584314,18.927993997983183,50.006996018789096,37.14128551162611,68.21642435613816,25.944611335917887,63.11137990504615,54.29606194522444,66.2829750612333,2.4326048233000552,77.04018229221185,13.240778181595314,21.153045441479858,46.44908983845011,50.926517723773124,55.252805742629775,14.042640809221819,81.92547767889849,2.0377208906058764,38.62562184878108,96.12861339287288,87.46414154424488,25.077049257444738,76.92013493727391,96.87373676753974,89.92301710735813,18.96116085665446,5.944435398036497,43.701805001616776,70.52961121117825,92.47397441083358,93.67851647110292,33.0048469629482,19.242050163659073,63.119041745484274,86.87967789239278,20.352739722912983,24.30788768983011,39.609169998524344,39.59259079340599,24.85375248481767,42.75851552553572,53.791112938767704,59.17476221084787,78.47643831345324,36.702359414550344,22.93816858512505,51.431035229985,98.97932517081956,22.39345029245805,75.16456004076144,78.80418425754505,46.65670028704662,84.82445335635876,23.87533159311024,91.29985154024375,64.86159824325392,12.2664602074543,0.016509163989963938,82.434234766994,19.960413057716064,50.46586451106839,63.1086971999262,61.08332747632117,76.45567427479185,39.99963511210567,20.703971494354324,74.78380137022224,41.323949554649694,84.47585499028602,33.27351992697787,23.895431575570893,38.252145460321266,23.297139198530314,76.32748197338441,12.822577082494513,21.448342039814207,19.027356366528004,76.0780775847984,24.829061709561262,11.841321105014813,16.316030540708827,37.04964122808205,54.235377188097175,23.592304240173924,4.869995285339579,8.916784519671694,77.00936053897918,79.64359718501971,85.72452278646534,85.96637930672004,85.73129401636763,36.57582009769512,95.97076363074596,94.78031702517879,5.668186115490991,53.57980236675203,30.107258922286462,35.91547719238945,72.67043026594655,98.75488273426856,69.98923327410854,14.78423105153217,63.3941901565097,73.65170475837222,25.114831238291213,80.3583375145236,37.52794403571914,26.342015189974653,50.32030460964314,50.65296840352577,63.30844856606619,94.54240283811316,39.003462565958266,75.28780582530027,36.87371953737825,36.28935100544572,30.688659783369644,63.12536019265016,82.47512468858916,40.51472489444124,8.959339987000458,92.58870706515387,20.471149521144184,65.28242806899432,89.43297921521048,91.42253486713105,18.60964084797675,72.49142549051437,7.25167790804544,28.653430646789445,97.13604404063821,63.41767866582349,6.038461056377676,66.68123224255059,44.58235761864703,56.523560438028674,38.6987765709278,63.372994058894236,59.26007735467434,80.28316598287556,83.86584984401995,75.01044441356906,82.62110119048138,48.64144050699488,77.29264594523427,4.506226876724484,61.33498828140228,14.720192132757692,23.36545831184852,65.55854499994699,19.9394606080863,85.88467938500457,87.535738931477,84.71244090522198,84.30275137943919,18.638808502235737,0.10714044326545213,53.859597917104374,36.77283962067168,49.410086196056234,26.184090935736492,14.135451173116742,86.73087012160356,94.9892738570725,84.45626622344736,34.975629113052484,8.086784695654202,85.03535846641405,76.98601326985928,16.091903873880074,55.136876441636254,70.93261790811465,2.1691581008152383,83.58507877242968,46.99841449302446,93.28200711084249,81.34491647162628,72.0485952675595,59.12675891999189,91.93292996689075,11.984027198947578,94.36025730105135,62.03214338876164,72.65837964493626,62.89297574046836,56.08769411789649,41.621606784849895,31.70263828345249,68.45997032191524,84.53047326614175,93.17207554505414,25.095560175141685,91.34614837409079,65.44240721883774,32.04377757584809,47.308711289897396,54.94899381485857,93.70275120721226,16.50451382692858,54.120020084087194,82.43103525688097,82.84641578251998,29.24475186525547,20.78994825182894,20.724890300592435,12.84532792524169,41.97679137013135,28.329020099094805,49.49289597767286,95.04292602537116,21.137022340452095,82.17780345862471,87.62180965229734,77.78836652351167,7.6257914689079165,0.7370334383135502,52.57521381728716,75.57366004624494,51.84375631235234,2.507754618293201,48.361661039103396,51.368626538554075,10.48549137061171,37.90260568817006,14.318269193853784,25.80903923747686,86.2726106415669,1.2975509355753867,41.64009475315073,62.98057830324267,40.210768885314565,27.283339472723046,21.686676722176056,61.93371747969957,70.05248216352705,81.45157142659244,90.88531856353701,61.32233328716038,61.54026328688003,56.79461722990854,91.27673084962589,54.972428370166746,35.482277464675235,48.92743071790591,57.239774147980214,65.60286901188302,89.87152531620667,49.2184704036441,75.20498569511551,9.059848091402323,65.80720402626015,55.47665754356028,30.584728892204215,65.07650883538712,4.797446355803259,26.826883521516287,47.118593498873196,40.846006107824984,14.109376931943984,18.397206493562802,38.235166657244434,38.5903938506764,61.15385788894944,28.244330781935112,60.610301735721485,72.4259498023867,4.123730932369529,42.245019366294024,69.12495471762344,42.817506127929136,1.7691410144913156,68.23876349913598,82.80645644092832,64.71983326557456,43.720879774065715,72.74605546494728,42.10021231471931,4.562204317907703,19.90364324465358,59.821044454412885,83.00143499747537,2.486171013014127,67.45735374968223,11.8494554893796,70.47650805481683,20.195396488292317,51.369809920096074,33.27353658419069,6.760334751031916,51.40312558114882,62.133750695619675,90.61442666810646,97.0722289788482,23.306641390357154,78.16486682768486,73.63661537840922,77.16392602192266,20.36940149572205,22.95191130120713,57.220657715297726,39.632595280656105,52.94763466177621,94.75806799863847,34.072598402026536,40.534139707737516,46.47190804043161,80.7586133245511,35.299980486002134,18.141449636228746,30.229373967629712,98.41145168160364,88.92179068871415,41.32427541334225,78.22476101557756,16.175401211641283,90.04123818049453,70.3743711487758,32.151718128975936,60.47204728109513,80.78277617784244,50.70099546834776,36.02144857834059,21.29380040304858,46.85842196542078,8.99373919044738,84.71455357403228,99.9700076635645,91.21622265371019,48.61056250049409,81.80236073609962,72.35661407859524,5.690939801687389,85.03039596581505,10.309499706478508,8.851215625017428,77.38330424830352,91.27990385560003,57.04889699059419,13.575051772404844,25.846785139244567,96.37734402043954,92.36759737587633,11.148240487134531,31.22208021374554,87.87022451832216,19.51353032298677,37.32746484475218,77.3395301056448,52.80921590493962,34.420890064015516,95.60086840877607,48.67487596284346,88.29255845116026,53.78047158602306,17.10241982469174,80.14199018686962,17.588628673137453,59.63231980729964,52.33967453702266,94.07999278630442,7.9333325381965025,68.01395939998207,27.25502111695829,67.68665775456094,7.045190704604454,75.70007109289293,88.72396885785628,23.854160566796136,90.55990827450255,5.680242284904891,21.973683554463996,14.012249144540846,90.54816710223083,35.70986961543281,43.19566296205536,82.70353571211082,40.20808570957303,37.41676001547771,78.38962061214862,17.800853793287708,72.51981131135084,36.49009896253846,38.88453712933968,4.086451094532051,2.250345121738939,28.585760936479875,62.746036517664415,86.2063514837187,56.083886928099794,80.9152455751943,71.08977006710126,43.24131580074489,23.64841920586761,62.33272633867229,38.10336284805731,64.426313242858,50.16059832348696,55.55509724715603,99.76370727618952,36.15343607663731,69.95226916175228,97.92409373010264,22.752923559174356,52.27741377393139,4.685414357055917,72.39556501177033,16.77580925480956,61.30790777562775,97.34324454411059,20.47944132316931,48.955683964750726,9.849213447070804,66.30811807660993,58.98913976138604,4.068760869529919,54.95687407552593,93.18657968324389,83.32624465178134,72.63561143912824,41.80699994122967,83.25689856125216,14.963601034528939,21.36145776064431,48.2474785727972,18.82352902360106,41.33349764159273,45.93958617437295,53.94810527701457,53.13559753221746,56.83424198207238,91.36235549609384,63.89072811016202,41.875252140710806,83.0640824137099,2.556074290054111,33.25575573393398,67.03660711190906,29.292236642545088,78.92248332448689,43.912207792922665,86.7337826225566,38.17899917522626,81.65336823050694,99.6509240146424,47.903971698070066,26.157696077277205,78.83381694481801,85.7594258820069,80.4587685578596,34.88123516610756,69.27141458190977,33.83107003960949,32.54459486950119,7.492827230763366,69.62866126231904,36.33735030135067,92.06976030386016,39.559959916047184,27.830734083213017,86.12994267726845,50.98655143286922,84.62507400305579,44.15185419097296,28.17709468955847,83.26735344694848,65.6172124079384,76.35643564848293,86.11000424346385,50.230586548342494,4.934166237082516,92.11355470595876,65.39423269951325,95.41083072520603,12.454385819135272,84.4982777627977,66.75296643700945,47.13904736465522,48.948900598833674,72.17474355082777,79.1422362339699,18.10884552009082,60.574758552827944,5.341591349205865,37.73424947405818,75.81353557384874,84.19095435274254,85.91766963450657,28.79177250453472,75.39051227148927,14.138513696061283,12.559047323916307,11.239992695942968,4.679928039424642,20.675839428017373,4.082058707889358,16.03589473468392,53.19590910077198,11.754513198894434,40.95891485017863,9.508746424707681,73.7861442473079,33.89518080001723,68.65542666387535,12.098535498911867,88.62523914394362,21.704226781530465,32.83289630371712,10.151707141517296,51.322920442622646,56.15473047325189,75.4022810244113,10.679638764919087,83.81924333203573,77.05168695715666,34.95887742651257,85.60184509613545,23.5862793409252,0.9918852476243245,56.92351622941979,75.57916089947115,93.19304931874271,57.813634474437514,59.01892771483841,50.8388563758705,52.06724577692437,46.288432206000905,92.54734820342419,40.817659773863056,92.63472657179177,52.99572067010413,56.05476821983191,43.62387355706041,8.553801489099644,88.37065726785688,68.64737034733452,87.49200854598624,37.86814143922397,37.864333728518716,47.979473470771296,49.24873354799146,34.45937949083717,93.36815608955563,86.69523089909572,32.48742914306011,56.4018873150814,1.380985137100721,96.42702187844503,87.4681433825862,94.34149317484042,67.113952013041,53.238990155515864,31.187616022348752,89.25432048159324,28.310729784758358,89.42305490074486,72.18485083694254,15.399386852810604,89.48436737377946,38.577210046339246,64.88724455679206,21.244827834350023,50.65492016185394,24.446388374944274,10.171603502694381,13.024044420193782,41.19823748595167,47.609402051100034,45.75650679249318,36.28855303026215,67.76685135159592,67.7409555411563,46.304136107918204,88.38654562217573,68.36735374298625,20.569899746317176,28.677269475611734,96.16759951286213,71.25219224744495,21.21978709647766,42.71701093976246,28.14797663678582,92.82625572319303,52.474698628822004,31.690116347988727,0.27341733489613107,52.64935202228093,34.84467536946805,30.456256567448225,10.202391076912376,29.035473980776782,33.54776777076266,49.52723314377457,76.73294748162355,53.17165481423921,67.33568106495578,51.38907307345561,40.83978449179636,51.1484497817904,27.48226758994704,13.55907809486806,80.32050982669526,87.0863263379328,16.420464630567512,51.81071995534494,22.691212836141816,49.253292591910046,39.04254829505716,59.543440879476606,75.33907726725405,89.65128074108624,71.1643540250751,29.78520859338095,69.54632870027599,49.80113302114254,30.07216562493066,96.26384008700298,81.7794996597554,48.21691380075177,39.85851932182914,43.40982870912057,42.42322721251085,24.250557978736676,2.4973490558644285,26.264355104388237,91.38977471698972,58.81668026435622,89.48869460012158,7.803650494454695,5.819476284999259,78.72481032069155,70.68425075081046,63.284446125910286,16.16627051202674,87.55021477151269,39.13580033575664,67.52517303849382,14.252258331696254,14.302185311165537,86.54565960939962,7.082628302738181,43.613428654818996,67.44884782382319,63.00789549860073,95.0499760164547,6.966413517271953,28.380062689274077,93.2124071509319,59.16667048311495,11.193988568879764,7.307719721717532,53.085027373959306,62.35596765189122,87.48395098680349,38.468693668581096,46.293812245779264,34.275279983614304,63.51608984283078,10.095991185797216,80.54664920483286,88.89676323683439,38.80640108279584,42.04529553222649,5.127301414393781,91.62486378476413,61.408454292524524,69.22828522484487,5.302903585512187,16.020465019755402,67.57005882104231,56.37835635850846,40.783916849996594,8.166261025918464,70.07957991016534,17.02698288550497,68.29107017135043,46.646759583768805,45.78515597721658,49.45131603117686,88.07568678002623,31.148028260571927,47.95074508629712,5.636688554897374,16.804442687675202,61.80464331842763,64.25842571832028,5.397683158237077,18.410388772941822,69.63813338935276,97.39021610263809,29.59187222904891,66.1032903443419,57.91026217806466,63.650727964151066,20.850370805849426,61.86632411830206,90.12204020113901,45.821700073387674,72.11077325245037,85.48850444549231,45.93640400310295,93.68000361610252,62.40671890619039,99.67765428615414,7.8433441595374465,9.156167633769485,75.14756691941434,29.144386940197876,56.346363953742575,14.087336823976937,3.4914202828211227,4.9629049566155885,30.1792532576034,8.148607747748237,88.0325376534222,65.46298443751927,93.89508086300904,6.680438098103547,97.73685125437427,89.24093194630012,60.20122130481005,93.06844608874222,74.51249333613832,60.60551848037598,12.778093585041495,75.64175429755782,95.5121202097313,8.266142646080976,42.017014031293854,85.61824881343763,55.702729015765854,11.211690892013982,74.42009129117261,1.1641459751535965,35.84095545712823,2.313466663733854,53.416688497117484,28.128821653999836,28.50955821800467,59.33785940148025,20.96400636324415,82.7576475668408,71.58232857808817,45.62268530219583,39.76182199181161,44.7609504452236,47.121150044352454,79.18735579422311,67.67862205554778,87.70404647766138,69.77421306737864,2.6548147929515764,16.411835295666755,28.727213265814534,10.795130716700296,94.1675217312583,69.09821906500248,11.734246041371144,8.662569904164263,46.817265115503126,96.69654849514424,81.43662373346721,79.6361656588999,50.09896010364812,45.63135318410059,58.04876493895668,13.402693510049913,91.65110989844689,19.66410169945498,40.26054648479148,92.30660983159241,79.90478387234305,4.42852880001724,41.50135857376078,49.012912137727525,22.209990714778407,95.00810366072558,7.122674779623406,39.06467629935905,0.46605839191338205,60.48255285767961,74.98832407479286,43.583827691679176,13.899310235159756,10.08538906574904,18.85268804436575,95.21214994006871,63.49062351411789,58.74285702063463,18.23604069186342,80.62621613201723,30.77827260377709,71.07183391506446,69.80626328624115,24.624187011558885,63.39504588076651,23.022135238083365,26.816470517253133,42.36299012673895,79.48489312583847,37.34444183155705,65.49009396382472,78.82945550426315,42.94427723640706,75.08095578443012,42.33721929417587,64.91144565675935,31.8460619396538,41.11596914517026,97.34089084550868,76.33613612013505,47.32414405613869,96.93689664092032,88.12140747657267,76.78416945806639,37.63574262182917,56.373989217243306,93.9739389016122,26.660428753183897,9.067392018304076,63.281840885829375,4.832530816656256,73.37484810476589,87.5098241347198,38.605057483968174,28.82591707648806,55.60381661115442,54.15845144267196,25.791504000032706,98.90308407605222,83.48563001182927,83.69824506440999,86.59318868801972,53.17854032213245,96.71851989205338,4.193100547959128,44.72945573891698,13.323739671068413,57.66397387192993,27.712148987413578,88.29890461308064,19.49408304247491,43.62950894514084,26.707805361277682,79.71777271125796,52.45376984882656,97.86927606908009,79.63201311472966,86.22945083524915,90.80465373533858,48.64819457610743,26.983409358535905,69.76596705370429,80.02008970204605,43.95001437881321,64.44279385996451,96.44155505873215,83.2645550734456,92.90704234700804,13.003547304946384,3.262218166439046,57.324440818627785,76.16376177251205,55.30405940749069,65.53470239372888,81.13406842597128,30.238572483695116,13.736496501612727,30.847491398151316,94.73879454284153,70.54650236828836,18.450828411598973,78.68796299971885,46.0320265963195,37.418706919160684,49.41073399265661,61.7276651841712,9.668099505364225,41.92571863630504,40.670259562446354,14.478630973006123,0.016738625658019313,87.75814000988875,63.64865748028521,45.1263456417817,67.63746312325972,64.47407886909173,27.015048646198814,69.48281370496728,70.43698689445948,61.941011849643935,20.502367636766717,49.06469470911608,91.54232693052674,64.3327229621446,30.560306721685404,63.046805688557065,80.81117103312802,99.29093917247978,82.67318597546662,71.754329762043,70.9733437010453,17.94458945512626,27.177059221044363,90.41309872554012,16.53742331689585,99.39157332624032,64.97666220487413,89.21365575520444,78.09344297339497,52.2195923752459,62.35816999629564,35.86273974160372,93.99514786919343,70.21039697464737,29.77049057636634,28.55904848100583,5.969326207467763,42.38305669172829,55.380821214275855,76.76802441205905,62.99188090251081,55.27544841499409,90.88911679136228,5.049353406549639,8.871091701186018,68.58632830996159,64.27427783911381,35.902798422996376,81.51032306133492,92.31730984007712,67.62324305476977,59.994267476652894,49.25975996337526,37.50020338908928,24.45801867013412,37.78850710227728,20.26299417656382,78.84439923992508,57.00294765975289,18.51690699359341,32.881685529500025,23.89319620588507,52.49883642819658,7.0292505405033845,89.94133510934006,12.31463052463756,97.32394434963982,5.026023098507015,8.601636774341937,27.54328922336695,93.69631697972733,68.49001158671163,14.39219748196956,85.39359911674399,21.5728574920401,13.126146187110555,1.1456369623635498,85.08297499701304,15.82859158682296,27.485250840096132,77.11217572572599,13.898447605868236,70.09783476406993,16.797033270276962,62.50079836226461,19.937241571507023,40.04943297220846,79.16506045433997,56.72479522526173,4.362361405327542,70.08882822325234,71.4114233195171,10.782828160345371,70.36970624044653,43.30873395631455,63.439716771856546,59.775729928295554,84.5554198257062,72.77847378913268,47.94701460251935,60.71758068529951,10.34835705738779,1.9378238997404207,32.477745424291236,41.46078528505376,54.872481162543274,8.030096487597294,4.836081775635293,56.431971356677494,10.579763769809691,22.789724641037324,11.539772269861636,8.73787005195834,78.2132535354288,38.576523497597556,5.05474838893557,88.93241096345353,38.9742866594264,77.11013286641673,66.63481254875417,15.352810083069556,5.8916914273764,30.101542291065808,66.78942945165541,94.19957187596862,35.17589227834503,21.527118081493857,0.3245112092535196,14.04529399328437,5.381218840546098,21.46467700304643,33.541723775101175,50.31193741157013,38.06800747970258,7.0698153301002815,53.723978317816176,36.37660191428117,92.47110119411855,28.932761246143457,50.50509604599574,31.013843173258426,74.28329576766068,32.84805666189223,6.070370247126434,65.87411435267715,95.55742134897103,8.944911379479281,49.94343624275708,64.62570577305642,56.28360834745477,67.30457423302197,29.28366469096353,98.29159235135153,65.54960985287553,62.683530791951235,87.15911865033308,7.043759427136054,59.959608860792024,72.55933652984095,67.50425328806845,80.31658397499362,76.60063617798724,44.21260577267171,63.21691578010032,17.13146854101876,63.48857288868318,66.05416726615783,6.095896135633405,33.6231121152226,29.877825143592286,12.623808100427624,43.67555682042246,67.88767063823842,84.00561507382356,34.08915848088475,42.07958694156648,64.6319561246967,41.807513267345996,71.5536872842878,8.97341862663642,3.9594123110290536,61.45046251742829,4.308215886030808,58.6411827111237,83.65115776103086,63.95883945954864,13.166597504165622,25.738513574938217,3.251251949806744,12.600625795433585,28.371410120733877,23.30789875226913,89.90747641362846,16.652881985068923,58.42215787250629,45.111816673125496,53.29930448594538,60.83258708694118,50.632308617732804,80.17098332717055,43.61653789205484,43.32321189076937,44.29398058855041,36.947657077684326,73.42312686702213,87.9693550146964,76.64029544022921,7.855464396428413,1.9221114851400878,60.62741836870619,51.513661750474895,63.95815019273658,17.682695945042624,0.5039326773795594,15.779811758948348,22.200268631975128,16.618436467278887,35.35344826052991,91.76152670947084,6.0686003285833845,24.37168837181638,95.31578387697273,14.501964655868328,71.77658976348589,95.07773007071575,84.82095253358479,75.66735170155187,38.024609023677606,98.40143579809234,55.444366246910846,2.7362902904596087,62.40874671013963,5.227933114151062,6.936448012531571,62.783343046208074,58.347903366243216,88.75959763272357,56.54447168820913,18.385806092094104,67.93418281384004,42.3476942920748,86.11628248761659,77.0670654395592,90.47607825627365,47.94215793305353,78.55296390504324,56.68144355433233,69.65676168433126,57.364555939987184,95.3823914174134,39.647309549449474,25.07408027282796,5.607163182038444,20.74836300541767,11.828800450642374,96.51462098169355,80.29576347171182,91.20748975062544,45.129686435417895,89.82861219767507,59.30680908614051,13.478569621919567,6.999072271067974,48.24748292319144,62.08756291384887,58.683394886514286,26.87730175642924,70.30876649820999,71.18258202729568,83.20050760922135,99.32843264217298,35.190334343211624,27.15493382666625,18.61582516635485,72.98516036524829,16.900660253818188,47.5538646485805,61.24580988707372,64.95901040823433,46.55709796841191,21.714102941258783,57.49821539855322,61.4442553789425,88.57526626841803,23.41580441327841,76.51029557936624,97.3096463452945,98.41747277962554,92.95878649835325,45.11156922954404,26.86843480247213,77.20630319372144,56.603687495197505,20.784704757538176,23.25419150212652,4.37508277963855,29.790781001039758,81.14457006148092,47.65958196368837,33.408670762492534,22.729100613708987,91.34154070196726,38.535396813017606,4.6184529092647475,49.627343035966774,50.846891158658245,84.51801427423146,24.228880631537542,96.85428252931364,25.46076030368214,89.6159795540689,46.520887445771166,96.58976901538911,80.86204387222047,11.784151453232338,95.86666800536698,5.62267840102415,79.33665442063898,5.44429980829576,19.91580747453576,22.601188064985767,75.61525915357078,40.11831070554518,13.210868771008544,63.03483353075321,70.21228382416079,39.01902589983727,78.84345618669244,30.1975822085498,55.066081932134544,63.33406574249647,89.22185967122137,23.663962621358504,49.60038614130319,37.49750440395405,3.891500190859698,23.55016930528465,74.60263066610581,68.91709695891794,63.21916554564777,67.34206086705109,78.79618845969311,0.7111599145422365,53.52260913869659,67.55864080494074,61.547846022140064,26.8349398236303,98.62808570066154,58.074483182946956,1.2644766139868202,24.539642687035656,41.666710232931884,34.61587793748622,83.90330310337416,80.19415557690292,64.01553181028737,42.01733638195071,84.05066785124001,71.66401705512399,8.594278845964043,72.81826161694036,48.6898960966067,6.092465902865996,70.8266796622053,54.389449968716555,76.74588529386023,33.13842317862321,59.93459624456264,20.31251592345281,4.355107013225224,61.49335464775682,62.19979567470515,47.793479933714465,62.63024190367121,99.74774798117717,91.10532828281708,52.02328411435454,13.602358992107987,60.30312107319592,67.07135913673334,28.017547174933632,7.330706836597855,45.84467193729679,1.3772382003297556,2.7639235899181824,63.31036719454781,79.16762297069532,16.60881543781192,60.73610982896962,44.3212904166206,40.60756984377195,2.3694702463308515,85.99116769795553,91.68711399074105,16.978528445905894,79.6526410211347,33.947097838410286,12.530255125821377,55.3328273382108,13.214131241706696,57.32137436324667,5.552056049168974,86.3223830844219,96.12452619951195,36.46578334164698,78.00446910713057,24.657575868578686,87.63354633947998,94.65447466111013,87.50981075404847,93.4306355328165,21.292727492014617,73.11333255947878,77.96482010824529,37.543861520515854,63.312696065807806,48.18907261737112,66.10603624396151,10.10238720223986,75.7547492984105,96.61640059443484,46.19269973077182,54.766105458659794,92.2190847061901,88.48507653426523,8.774541305457328,65.03860556274891,90.49345506582699,18.60639158885923,32.92388779266332,95.61462793114043,26.01054836234039,98.88363060879962,18.857698957297565,28.343150999298583,62.734786808147106,9.007691132207828,12.917042541954327,61.592494297230125,86.45807624094736,31.737961123276303,73.22663468093963,48.79727266065741,86.34885330419574,19.791863457328763,27.70710255411063,23.955473770989457,48.753108980706806,17.443605770203476,35.0674842762492,70.49318855166563,65.6202988336492,27.735723361971555,55.68618619001773,27.656488069264906,26.90970615830619,1.7827697033369283,78.68487061496387,62.758281359687004,86.08593015379127,56.30195663984645,69.393154273316,35.091057454611764,62.06576457997295,70.22431180606019,2.658901762940058,48.254671784524405,28.07449481465756,63.139076787268166,21.661730357973553,57.03433073420956,38.65170519863149,9.682204284753638,59.22280472845105,34.346892117248515,4.482252652153584,7.67687116380854,80.64915575094199,8.218409398606308,69.6279920917314,87.8189652990972,30.541135094583495,62.185871519786126,51.16518450013076,18.150488650960384,0.990996327996041,70.58053834929122,58.32408764391024,7.264180616505778,39.82110907201596,6.215250372448966,62.69215065747201,86.91830552329655,53.84695006110308,89.19781795044649,79.4543767411052,33.95953740636107,91.00188519649532,51.00058617718537,50.196094339625134,67.78172723935072,2.3367463064267846,75.5650369646064,0.4889164521707734,40.1000094785845,36.80713625191937,38.303740734930855,14.682347457074663,68.71833190231158,40.08484002573124,50.15560781020546,94.5999135542066,44.71958891841783,77.72415184253309,63.25074018641894,91.83007409008894,32.93497892252753,1.7477760041162638,20.14144680731058,97.84965923487714,61.3599081835268,74.02852468533749,44.212408321559295,75.27161315321287,29.202790510568256,74.81854494719572,81.11693439444487,72.43632101152585,81.49109117471059,94.21491881161947,89.91982755592801,98.18759971814163,58.462042491830665,41.239775792686274,91.7274204883167,99.31071998499326,64.28663577489361,99.23454017010667,79.61291798936962,28.3067088689555,80.49728825786423,34.50128932880312,24.351116137233497,37.218831982923106,2.038910185770182,12.242467257368872,30.53168397473165,18.888667170509656,40.31548186656438,95.71343469285807,95.96307640644682,13.225798563316115,33.36750175161952,67.37994588485083,3.318008931590377,31.259640344282367,37.35180948762261,3.3816635899296066,18.92432885689752,49.11427520227741,64.34474227877335,68.58171550068248,39.956704700848476,68.36649891963766,15.609030256058364,71.95712246282652,88.86247007992115,81.88545525671036,25.363452053924217,33.64002089482771,75.84134257693883,54.24680212342482,18.532164958215525,36.42508894658597,89.208379318799],"y":[97.38089926980595,44.73120609322696,19.223620525103524,85.48775954939326,57.719715276408856,21.003582705272407,76.3528062970723,84.76028192916124,50.802083595875246,1.2437063519606384,46.90424540200474,53.51787136328683,24.079649169686945,72.98309527853597,95.51542436105709,41.99418300228528,52.2321617571581,37.95692480747815,61.84739049358884,90.51021632430624,48.550849758240844,22.93160182247528,52.236952114664035,35.11055039467986,73.94424333486768,78.61452656303862,83.10912473466956,20.241917585640167,90.01781975145869,83.23898330943281,81.96387538079262,29.826969738877462,68.70545077093107,89.17114003266545,12.584139854535714,68.8028415328034,41.256735968022426,5.412721635453554,2.0536639027263215,91.93162926921002,11.203745544355293,80.4595857850864,31.4152694094197,22.54290694213089,66.01164565660149,3.065995439687086,54.74864225619307,39.23282689118317,94.68529913365327,9.297411551597534,0.8421293532223428,46.6054827028027,8.374925210608207,58.341592543102564,79.2559313491872,67.95506168521956,68.29152119858817,48.72252356288532,81.282900839971,44.12989476378186,12.351278155142587,63.71997261473569,7.382622860573907,83.75620731145835,59.52190864643943,60.45522716190821,23.089360291693893,39.790282090245995,57.44201515387671,32.28160262105907,60.68184094372635,6.1113011164703135,63.30630931145848,87.48734154450385,43.71585689522172,94.55029424635947,83.51375520583805,97.19047994938643,5.193388155953837,24.682550890110157,44.62028622488307,53.106234338255966,34.647950618557545,56.55193265284475,36.273919703990096,75.94008284867645,16.067659176723424,42.52800970461915,96.80735271781766,68.81094963923825,94.46437690989887,35.10878511855784,88.16346564368973,35.78744929678261,90.76879864661058,53.466218602775726,57.08626707500586,83.05600915981414,51.28136887610123,37.69269595987692,9.393312655844522,48.793638122917535,89.85894811864691,64.99969353442218,52.12324635153735,56.36598691208226,62.94737788953394,30.97595561366847,28.840929118926017,78.25108519316541,6.911930410644418,56.798198292462,15.760787494818251,29.10781994535676,4.305515657781855,82.10746361560399,70.11840360065776,74.25331747727427,95.64032452465412,47.22161709269939,33.23664455773415,52.349515359617904,98.09039057785391,21.780754015518312,74.82422316074948,28.849048857502734,57.702874365487865,38.18688342763521,24.356115895674602,17.871901429673397,93.67643410757422,85.838699223581,18.48915732816694,81.56381995473235,57.37223000196209,62.27834732541713,35.964512070111965,58.84988342256436,34.835147967718584,90.48661036765587,69.62319746230686,2.214987183226691,86.6942776927855,66.2065775650929,89.82712690797638,4.621882189542903,66.50965157017112,73.00653811997712,34.53854759156286,20.229873323481684,43.95514056286085,30.038403859990524,91.34626256612465,96.24276361834187,63.5141655686016,58.14279875062668,7.651507259730739,75.8098103924022,83.62956570196177,15.663273443648084,25.235742298699492,80.78991427099541,54.821726217876744,23.065242843631584,70.51800487677951,97.76481508682274,68.23246964669653,87.38816052627809,42.593349955252,54.09832705125548,50.702492186601454,32.16417826558122,73.25981870454365,19.676640684584555,55.24215138252695,31.30345507661829,27.688456970464504,5.550529428061068,71.38603722803673,44.29356777217141,28.981235293113627,98.32262457624677,40.707371124920314,54.03097923203849,28.815551178223497,92.64889850330668,18.665069744171724,39.605169554869335,86.78546693484076,1.0721579069956855,9.770870583740676,90.95693460416754,26.526730828883505,27.03650636628382,90.4233203525304,11.02819377998644,22.447908415808026,87.49261888349962,50.57534839308943,52.34780422941242,44.066841404909695,4.6955466024863,66.41711807167516,40.87345731086865,52.24591856737669,3.553506437394427,68.95875817359831,63.33888784078976,23.71603809876199,59.645940318848076,86.66252186214409,17.641663288723887,37.585899496064044,25.549865058402975,46.9663200001291,67.38569726795001,98.75595219373432,74.91878089398537,87.2431021562178,6.073065229665664,56.83107567573891,8.29066453313666,80.26651601869092,31.466238315666896,83.82638820208474,52.344196183135296,23.093324475892395,9.378413611705117,14.77557786962943,9.626524370332557,31.34453143282182,21.7268603651521,52.149492339015424,32.41216530378678,89.27618252010141,81.42876566977881,40.8501109084874,21.584539310791406,35.01586567029575,89.29849950610033,28.575227351945422,4.893734082878987,35.36768107448766,3.1854316003997574,80.23038970763103,93.25479354144802,82.04087330161963,68.16391875311797,41.613259051713946,41.65557095558228,31.409604781708246,15.822117141754344,65.9967098414471,99.671259568422,42.059010969368806,4.91695874217214,94.91898471196818,67.81606708756375,49.000972393309205,31.20758311586822,76.82621470835971,96.67483743817587,11.960721211358305,57.60219975436244,61.891619060100886,59.133245771548616,8.877270330953957,16.817814511895435,59.62146234314423,73.99319584029465,46.31684851405119,54.986114722766864,12.520480443035531,48.17007134994141,84.19909042880278,94.70790470965284,61.7880744339184,34.15346508878253,96.81932352556994,53.047158269751314,2.623658437919274,78.19990782912505,70.56602056825945,39.26186780575288,51.312964681395975,83.41003843936595,25.973223779230615,32.188139909593986,45.024741104051245,37.949397990026604,60.86143738599977,84.8916866434513,39.442279432972796,7.153005738785733,22.31960314673578,9.433459314625258,23.25933004772971,59.117644120619254,29.334997927565944,21.05589916658326,72.7727284758838,29.780303160855905,44.01808310800559,16.31870402562543,87.11051850904735,8.516941513153087,56.939144785991246,4.616876566013883,16.359075898870657,96.70857119458944,71.6209750027495,4.095331513300648,24.353790139327337,97.61821046313759,18.20963193716414,83.12623318931013,0.633917713893184,51.57296853317913,71.09748430595589,39.241042173973625,52.84236020395948,29.8562920734738,45.810407802041965,53.42023085720502,94.0526128012026,74.38112083587595,69.29099241157893,94.27594493792512,38.16507274147788,70.78544710200778,30.08985730643702,62.015126939315365,45.961538492934984,85.28655074057274,37.351847138813824,22.381787878418834,28.175751189174747,97.11799575491337,14.254652390813638,55.440846555910596,52.159076405567276,78.69497325602833,31.957762262029497,88.11680732657327,81.33753022235109,4.519688784882037,67.54106662544199,11.650661313065669,33.484940230439996,13.988406892477778,84.34927827987357,80.54234776149212,38.060416233458426,47.80747137051392,88.9016537343359,67.39127973419879,16.490068163690342,64.57478148082659,72.41721206210292,78.08227501394974,49.60000338967176,54.15349634660716,91.07318949669488,48.078525602859536,79.60696310167855,89.48102673776333,90.24529817816989,18.4918273304973,65.93650205368182,32.18836407160841,54.775713838406524,71.33679308834013,6.610776866522472,1.0211899398847923,98.94495669877395,66.01486391882494,80.29204736851739,69.92710776719953,41.5849638358797,66.12743100528014,41.69641215488847,97.95379116253818,79.27549288766274,90.39180287179077,29.958092865087814,32.06633960116969,36.006325142635475,60.05434875196701,75.7230559491108,39.18562221561424,0.9660607275025712,78.2152278845124,27.920449616853215,80.98272046232779,37.06426966265097,78.27318738643942,62.580501015434656,20.8027245938874,85.77492799920475,66.1043138858525,79.1998601838664,72.55891002029874,36.47856320008409,67.33207257200904,72.22007501464155,6.383439667258328,7.089922971704876,80.93080793184825,15.986786426721434,69.71029017290223,16.006128863317105,36.712814053184076,66.19885565087138,9.414812499655733,40.4555842088828,53.86598787236905,87.27614983357019,3.4912279515304845,96.36361645977163,83.08650818584698,69.28904144512686,88.14626308697437,65.01029390513904,93.68532130621489,16.755631374639258,55.42300071886207,58.2042274164002,71.43310864324114,10.325081628923138,60.36683966735465,7.636867798739944,33.05978607870043,25.497513665416662,37.480482744712276,44.449713315091266,34.61132963228237,56.496425506617975,55.2845814331062,11.907422186428928,48.90526087869508,56.31706356407962,31.08909716975775,27.90293838522763,24.336449020230933,34.02153137757021,2.8789562584223605,89.49325176824557,68.38671450442108,45.95444158154696,81.83858586837027,14.177443375038646,40.13886137394034,81.43101354053982,18.332668702643453,27.774427052020066,85.14769093959073,60.32546876093847,33.763398855724134,1.741568449617037,3.3121617735988096,25.928322407475434,11.561373253072759,55.634052547611766,97.28039767237398,15.030298324793169,61.874274873489114,38.85003578514651,4.715784956320823,10.080722884442883,3.0102654911081217,46.296475063443424,7.259011997225107,4.6952222414813445,10.329180307534713,63.54560086662738,77.10218902957537,88.7320873236783,37.398348454693796,75.90237446868969,87.10988225672894,33.20708314278852,57.708212064654965,38.733418388389076,93.77035782061127,47.50709435769781,78.9049939556304,76.6293144468699,12.570354552880803,88.46650815456606,49.915061577964195,84.90880780597251,31.667694010809633,93.06483786544125,70.50573216226563,75.5222378970235,86.75573558408509,34.282215590103824,7.978769798359664,54.03824358973582,35.66432844195311,16.069359690953732,12.765300768715292,90.09376707480833,55.603107317150446,92.79027550017305,19.810748566436676,3.1374067757016455,78.5806133545725,60.793866253495764,52.24441002993664,38.47134093536615,81.03683866727023,39.07026060361215,31.31268870140137,51.78811647461045,91.84342602913063,33.6420782554813,22.012562599630503,72.18622346168185,2.970530616925615,36.68998002005486,80.60178602567228,74.24629896915953,93.81755844095919,68.57259381818248,96.28336666079693,77.21268721777787,53.827547240342696,95.67341093970148,31.841278627355496,68.24403764948947,7.698314400783146,50.154621330709546,3.3564614602988208,37.09273728742617,4.496426198314063,67.01007199517515,22.91191917816603,88.39249051624056,34.11312766713487,70.50566720504659,18.802199147575905,81.46623793377294,93.93686905143294,50.56481799075332,34.607659872266915,6.908103931023135,47.28140924548472,68.91762337289073,6.394583026471523,65.0480726310102,78.93260912833617,68.79502085461307,40.3748847956612,39.86085299781339,14.35184845451637,77.86542018451217,17.224950137669214,61.98625437085944,16.728170726496295,22.170959037876337,78.32728800133513,98.6338039630195,81.2275730837879,61.70546146379201,39.989061556603374,19.170578786685567,21.374051342107524,43.9012092835115,37.3652251455652,64.59833374693628,88.08624896638759,78.98632398114349,66.47183402395652,28.48086107421517,93.05103529856432,80.7374438553435,67.0246700134919,86.23101598962482,50.96522006336009,45.64449929259127,97.06359419069724,30.468659746877236,77.06946841882886,29.137328797565807,59.5541864419704,59.82021929964186,35.04171193003176,49.66114587807435,32.069480947848724,75.5078446956514,94.19542655020595,46.09870402977684,84.46058179020943,5.134538373122743,0.30144722542012614,32.72918434791466,36.28372485400645,0.39994932725768706,42.0358816573024,7.929283137136711,68.88868057489893,43.3989397707343,66.1423933911052,15.433453855597667,98.83936221692136,13.475075167973404,43.58069839386399,87.90958237270509,98.23266826143258,49.544812094732585,72.20119843108907,26.334631409278696,58.72845031231403,77.47177383571298,4.988543406040735,50.18690090081937,94.00644562844248,92.49051745915894,96.79960523360128,47.87489613632216,66.17743392832054,20.64677901824331,94.12208955837687,95.69400395683009,36.92552745710276,33.23408182267457,56.331287702617736,31.267425627137925,26.248348217123883,10.774812471063445,37.62766747938057,55.915013825746264,44.84251174660863,7.709964753050436,62.3989863215762,83.79587261525302,76.8074922434835,11.778014396452274,85.51697978681041,62.71975407440004,37.75628637340541,14.362250324706894,81.54561259006236,2.4621328247272256,77.94007036416271,85.77167044436086,81.57226794840776,37.7251130736702,32.88660846119669,52.12647026010472,33.77460714132338,98.90629584607605,83.78277350992086,36.369138808339606,54.51754855065113,85.57361431537066,48.49793712024576,38.45288989724498,91.92947327949102,96.49155589174082,99.13747037691152,48.03365696514881,75.08912316980077,53.82931545194738,83.85085799256518,27.285021263110597,46.44134348062442,69.90005001122539,32.155440879468,84.6997766884574,3.467856434497496,47.68458798747904,33.18259479014105,75.39825403053672,86.8308042223677,99.35139097701611,80.15603478839176,30.243342921793616,29.605174600106622,49.69252829579097,7.4070674348287735,85.12053563055836,93.35564904043315,74.48525110181149,13.361046009421795,46.969862844713695,30.120180271896736,76.20785387475505,42.32705541158324,13.404437546211756,67.00022359368279,79.79850976790799,92.39154284611377,53.767885538144434,12.645922362899986,31.332202886041326,33.20389571584628,94.21703748257768,67.58940676545664,64.70129871392221,56.846583861884746,3.9215526097863607,67.99552017191112,19.85226227633342,16.046976868346885,62.208944092410434,31.071432654179432,2.645885419533245,88.92551059296548,53.113698037527335,72.05563244955539,59.86927470658732,6.303021301276535,15.109557924540395,58.47178876559187,17.241186116706608,77.27416525695912,83.37229134474924,56.32946106699207,79.78171567426814,60.20373732323798,25.710960032689513,83.29813222254148,82.75002892631979,33.78795485664659,68.27590694742224,16.569563628716587,18.365554469793878,94.18112608238368,83.05976343730069,16.989146910154172,67.5319827243609,88.80466342229994,42.990347550201214,16.05659511052422,62.52326026730015,75.9326380524028,97.58525556467548,91.33473522958407,75.75386762858423,70.2215214695989,25.793539680949173,12.347716667648012,89.61989376707058,70.60899291135921,21.616825267249283,71.33602996212475,91.13321425769685,99.00412123363989,32.35456086209896,96.13091014254039,10.438656576305505,35.35120498309039,37.80079783490991,87.27912335039309,53.736583731892374,50.920319633367384,96.1697981948307,75.44945979579617,60.050326022827335,54.315916357737436,0.7475755242012494,46.09197546109179,17.779110440030642,42.23974141956721,72.51861823879406,63.26981500712044,36.44451848999412,27.93772811904641,35.75392991322624,59.17371297204773,74.72873243588784,88.42788663978514,96.95351117791596,43.709191825108576,54.733865950017325,32.23304713707912,52.44067137086432,10.76234621266675,22.08133188903174,41.69219406403758,36.92078888780065,97.29373988570381,71.19985922054956,78.29802974222156,89.34199962546965,75.48102304602914,41.97941371694246,87.48661030488684,76.67140992111887,26.946684519888954,8.677574759699757,31.520797419529256,8.590005085929652,59.344303951167845,9.269184324516022,0.7810371072383249,24.463890656827637,38.4276785969389,49.24241890642569,45.41566169404852,74.10226536966258,6.703821574658598,22.550049748552148,88.28405000557773,13.416812698953883,59.010919149217735,86.03339735093711,74.81473065691408,8.033419409980558,64.43224678224055,60.233234200024356,38.22416405038509,37.561805316127476,17.280820014959463,46.88147408353394,6.291179326268271,97.92046844531089,23.39646470158033,91.9646271314793,18.57956971150354,92.49008626623375,27.32111712840809,57.25358668003453,46.954008415674686,21.727162930365118,46.167759338059724,85.68342294614506,75.20996402755013,1.6348025103865127,81.43913566481322,28.394658854492416,13.879122450382864,2.2018502690299924,79.79936386808035,36.93310512100858,13.285446765782927,12.851426001312971,51.96778207944474,1.4308953557450987,77.48567790779119,79.47750546156996,86.58708154960581,32.62700073599045,90.54633887928205,72.40502323654403,75.67997731650753,35.67031837901546,28.723171448181017,35.51961102853332,98.71388932533849,83.32417895122454,64.52343374151233,70.76921969303037,15.885127683350442,44.70709215776873,55.90588044722888,90.64007182977242,50.87733738167276,9.604623543773094,92.263697391208,40.513993282427364,93.36758593246498,82.95610715091999,23.644388348730917,77.92327232566846,71.58173534636143,73.89094333522772,23.864310273560285,39.81018317704148,5.845858564255058,67.73829027683216,70.60773650718832,60.70526514561586,9.789180305879464,2.9183046567477278,10.052554062816432,68.55574226178686,88.90113159604353,32.3417178831254,73.67700432750719,3.228943411443319,32.79360251963836,16.127324524420118,98.85666644585923,13.355709496472167,55.364881628018225,33.80997807953361,40.06522759170051,79.53596389660711,91.05471275707238,66.01332961217673,15.925231336334056,89.36134792021026,12.714689823807268,89.54936824063992,84.46734827754538,52.45255652859247,4.844371583529039,54.4397655421159,66.36134919361108,57.645985067474555,29.48229840614215,98.27913739349874,94.76798291228683,15.242018057384254,35.04665373217468,2.775263639990222,1.708876352068922,29.35186848699334,27.866515746099285,77.47726888108363,48.72817793742161,14.478524041323737,73.76543109021767,30.267090752098692,93.79164256425338,30.52603060753598,70.74701966318845,37.64546449256735,42.71689871616823,58.4452711992562,26.720408755861925,70.1287923957727,88.93323928338314,56.368917322413935,0.465111423569875,35.5330150104911,26.47249770578202,7.588646551864564,41.67725543566851,52.012107630076635,31.840645055136463,99.40686424848366,8.995631461513486,7.602660389133709,51.804607519998434,0.7006890504709928,13.19007026356429,52.34019263977828,49.407650657002556,24.8502011001822,21.48917936404763,85.58716508953387,84.0227130641091,93.20468503615773,79.15830159263868,48.50198719304258,39.81001161765912,4.399295123913216,62.704972481941134,85.61448568031209,76.43670676236073,33.5716899635593,55.00086028284702,45.606531641578044,35.4565021077103,94.43392148458994,68.18255887423402,47.25393457288703,41.86831468313494,7.074240424535239,36.93013361335935,91.67455636125983,55.955067856920074,94.59296439013643,60.72672461284295,17.812990757651615,4.367213867308561,71.984591188415,79.45717101006025,49.75002360878741,22.39027128803823,78.91703590862971,86.7699938928777,28.410111297494932,15.323869340466556,51.33709830102803,70.00942654447006,30.245296814062872,19.38354128402654,93.94243898904081,98.0668215682626,53.923681183803616,57.75693415715809,6.972298868255821,14.555971359061337,1.3529323200545451,27.336754009010058,44.340460162223394,55.4669731827955,89.92255583817884,13.005770460939626,46.29226002748767,50.23390195501756,2.8628740973524303,39.87826051352522,42.95692826756906,32.66570388959109,56.49458527747437,92.43134109438391,1.949800179361294,65.12690906790857,6.357385235175139,35.08564752354012,7.642633417929645,71.70461736167904,96.36039204028434,87.6135709429152,91.61558563172818,3.2750258523601583,85.84556583046759,35.19487526333508,19.81262679886604,32.3921772460545,84.37471237663227,51.70825267655581,45.202709331508274,79.80727107764793,10.916525520240484,87.89013101776038,78.68414858191036,35.231738013026195,2.5576931442605866,13.262801008231207,61.6878397234747,57.262244942628726,69.30319369968862,9.796006293911397,33.13784642548849,32.59387560203826,41.23809956764807,45.833229299231824,60.09921530013097,54.26327936237379,65.74924362642848,36.90823264020202,77.65026465990393,49.590749811598535,24.926385404042627,67.42705181314795,47.60173196421831,17.232785537215545,51.831995628357916,6.704403453224317,1.1373974356184147,25.774960401134383,2.087302453684803,18.01752859222421,74.14726489043952,82.39452220664242,46.00438651339479,2.4972164508672123,58.615024554324194,47.380785614645845,63.00523103275179,52.20014912365072,3.107367127161176,70.93274594948433,39.72782090769874,74.62410485558443,96.85881211833566,78.2258492868208,65.61014078984896,33.26592924637184,40.30940596697192,49.84289882243782,5.609075717859935,91.28002265069922,65.23930167859024,5.006104224802044,38.41366912079334,84.77413113859889,37.60030610463737,65.12726191899354,74.78273541364024,62.75063074142447,87.75215998778341,98.91814213426392,22.30340235077226,76.79360145886092,74.91831142509743,56.31875096289568,9.756034126549762,99.13005369850158,20.14375283965053,83.61477667665946,99.38079555607689,96.85978831314172,31.582277682588376,79.94728500278903,69.47810953303716,98.100420800347,15.33732233526387,77.50106099370369,13.428003775339725,19.46204483261116,33.34350402183387,84.33559339969132,8.508726367966801,34.839659381505136,3.09768455868471,50.69302906485167,77.46809416599635,3.962885672790417,88.67777825615167,7.252601642567402,64.33733912164618,2.69973069489694,57.56877154320358,40.35209386626348,59.16412793664715,56.20014570402974,10.127677675548618,74.52447969604398,4.631810117434043,92.0179100670646,67.8027812226606,80.77414027351571,70.07877107407839,40.14156887522561,68.04809900474605,78.22216244248699,27.775041454417547,64.08694617744779,0.9934111562321934,56.042095141439376,50.31715573408625,5.80627519275978,56.44599578431284,17.257015766995742,3.59521434276453,77.14298703500398,17.576082765014135,77.35948187880896,27.53776775660588,27.692730502749274,19.525118982782953,99.95004417745064,9.025068315199203,14.92967995290716,25.718211412772764,97.32253913823237,84.51699276461203,7.368710191683803,73.53576901021881,72.44881167373293,74.182636008979,71.94927587569927,85.34222848265411,92.75519215947755,98.39579694784602,15.36423758012332,14.839062821645044,4.601380926386578,76.67612859184395,31.62251550722768,34.33125077543514,77.14132686084754,99.3786156019069,84.13553876427878,62.44858195575102,85.30189249272038,48.07990302842694,68.30783417232621,95.773632304702,19.626976290844244,91.55243567293722,65.02809087045529,7.699259295622085,61.92257685429112,57.01947748652538,10.915966155615342,31.607850813771922,22.64691692193712,29.535726696448872,19.3242494051037,51.386550950131536,99.51973212406884,22.359530455341105,14.878635960319498,61.75534901166701,71.32300735423439,24.60146479559241,49.69308202285253,0.02773820866510679,83.8800558658344,0.009441803218246392,70.90993117131438,94.04532246912284,68.73069224994757,96.37166959070622,48.41475712024388,42.414394813717074,45.090729464530185,17.39157300984481,44.78937005858975,47.47249165167051,83.97705211560319,36.13646941998601,75.2322681349568,69.30116192410867,43.20768377654755,51.46507379605848,7.223601353138209,90.76500328357722,3.1061885582583826,13.861978286510812,77.34327550990776,18.493200837743395,22.86447183625241,48.15665542334491,12.235516506357168,73.838117033809,76.88724446414479,37.9706457043969,32.67731611767126,95.18053750184112,68.6799724883742,39.08491889117971,47.01594967171078,32.17282755618259,29.644917913501356,23.146585608293037,22.20208649959495,69.2049240479583,33.37619653553767,80.2806442077723,5.889316057084038,34.96738160151065,56.67897847198417,55.13454193140374,5.791644412385044,94.33136734585659,29.138503672060423,99.25883690508847,84.62066853306118,1.5567926416991562,28.46818168395664,34.68893300840088,58.27690134115684,95.37518053906628,53.5065092185632,13.76075491663251,42.90427483264763,8.18198020928007,64.59956994865107,21.527175414480602,51.50432776872312,40.192330931472455,57.92729852125832,9.821043453953882,95.77516919775042,26.713086277269895,68.11343806484639,10.334291977666565,80.41521048380955,44.495531282531665,56.27248809338958,44.500758244244146,70.93766102461008,3.2661329181485343,21.977203261771947,22.172123558031487,16.7750135077925,38.03987236299102,48.827305005367236,61.77533477433549,25.381280563488616,23.16590218870733,88.74408036842755,66.44580660669517,79.66677299395208,3.104300208234123,62.22141208459513,92.01268722793473,99.77060553769047,10.81594306272745,6.6619492998743475,49.063397693346424,89.6677160170934,87.94760690760197,77.77867579831683,36.32261218193188,19.43624016234412,83.59215100780459,34.32944296889795,88.22127333505252,92.98011850818084,0.7797588846418013,20.344800529722228,52.40918007776841,26.8960669412861,2.86100592010049,27.516963518428838,13.449787699562709,83.28697840588418,50.97644509412424,54.957069002033776,65.71607667604488,33.70399761935291,24.736842488774958,43.26770436450214,55.06478531254223,77.96154009084846,71.04789433465058,51.91525031777172,31.93528356656683,49.53235200498284,73.44375679362173,12.00420547208606,45.13454536559986,65.22439266496437,25.131253323687865,97.92929011985397,88.87981631925102,72.78334104924899,0.8305457691147766,58.93119425266017,84.28145828640795,42.319269658974854,62.30582050981742,23.01315827342544,53.83540892841311,36.706061554902526,33.258529764960876,46.831952324117324,21.355027907320355,22.378044861938196,33.001777636436834,34.184246862411804,1.0607872063059354,30.265006195995536,63.93246716534872,57.18022637758645,71.13828351673736,96.65274573692876,3.3748603354310958,19.40529980997393,82.00101116134697,3.4852800444055143,92.22559695659753,39.67321165230998,54.052981241640076,71.97632423935487,20.093761467141004,44.865055825821685,53.77809115605054,27.693380063427163,68.11016228648081,0.32652012325044,4.7516547459396925,55.439888795769434,68.44185346930057,66.76322095333407,87.52938794244844,80.05576343730807,54.83762142327143,69.20916678368899,13.385523384883214,92.6000672792061,43.252867805699445,83.1045843361692,52.108131206220364,72.47612311927497,74.97445229435142,58.360308715805665,92.14420598583227,90.73171147256431,62.596365992163804,31.100484539021977,36.30396212738669,34.99724637028346,38.22026766861229,30.502424129700678,27.135932081670756,14.614830011117053,33.947123118801414,92.61629863464866,45.77122831247774,15.387232526455929,31.09474106668859,29.514790723124428,9.38247405156667,28.507266889984027,91.46490085392495,58.22816196301665,66.93058265011128,66.40467074763107,73.13051964046046,31.612881144530746,83.49975858459612,37.590445569348105,24.84091566638765,20.41546278634656,58.229101780223736,43.07623642570321,34.11630346222486,27.068632107009794,81.20440455352339,1.2458030101688777,17.782866778743035,42.88701256552236,62.16890832894508,87.84003740843059,40.86667861872392,74.8105093688203,53.86086770938825,88.05268549959581,78.36034766499925,23.18255977050616,89.77974410284592,31.23959254279295,39.53486645430955,71.36460886637393,55.66949168198219,84.36885824040881,81.59686840196545,64.52626131912851,12.432934710221133,34.334228294611236,62.414659634405886,89.4138930609271,42.47522053191709,44.09027926164403,84.23691048585368,37.872446091960136,85.5219106439997,47.577961823937066,45.52297241862813,4.726450972945728,72.38781106987832,77.80023817525688,78.47759686361285,91.20929628499044,77.89725565804505,90.36935462655957,66.01369655093016,5.951598827024817,90.44038637860157,73.79247304997516,93.85063019463273,97.86358578969345,15.859926802386825,85.46788641037196,45.172157424843675,18.668565803878,73.18831556343926,21.789984863104817,26.334689295921276,81.09581119802122,34.76519610757198,43.074416135620616,84.532063005662,10.312077221575777,82.09729328871803,8.278881305669062,67.00725742617098,66.15248746643803,53.49786078210994,93.07379281849138,24.265474793254217,71.984149982852,1.7109230219272242,5.079547910353799,0.3068542447366318,43.49163275368985,50.4890965303321,19.75729313269099,32.30311462467503,46.913172395465175,81.27283878400495,86.74042994858898,64.48054288648379,43.70241990281593,92.50289783969976,34.65361922069583,28.135320709120638,23.620244378396237,52.21632537366212,54.61439203484454,27.71610761496841,13.21731152537281,49.95394583801892,61.80144298643974,12.490062402743963,6.016748002956874,48.094535637778655,15.635937947032819,78.41972987419281,12.49409400855913,84.4353624896652,42.51272372553508,85.7909989425866,46.14009656778685,48.42937504423565,0.8122127471041352,26.150317773119024,86.93384364550842,10.583096535693548,20.638207827703514,86.40407736319938,69.45097855606619,63.34710477915467,43.774141863648495,43.408914274905754,39.84163744684154,76.45120754808555,57.428513055829434,80.98753392560174,46.13274902789328,61.832974821867026,46.71558924748393,32.708071869115244,4.483254052924224,28.543287411496433,98.2149037411615,87.14632124097994,6.023129045104458,85.91065595354954,3.4386455625862955,29.72904379356496,74.43680050403295,18.60335324145317,6.8218155661858955,76.97119530400826,68.67296875688854,58.998148538609975,91.64917952538703,48.37145738451708,12.930096146020908,42.16438327361982,71.85710920166954,88.53836587999182,62.090534639326236,81.99533141989194,48.69123096244585,38.476579799500264,29.26154018812722,54.85049864389263,63.403220774046545,58.48498704892972,30.827836769732308,39.615315922861974,71.08597841984412,45.48879145601901,71.70714018252173,90.42584585212383,10.579363938995245,99.28912872734634,9.518976169916971,77.32979517575444,44.354651450821805,14.001397704639484,31.574370347823542,9.372617323498433,42.66599363941145,61.11241261499794,26.7451340868601,46.22028026719111,52.30389352355866,47.83562854529782,49.96687513298232,55.8257538271352,67.41448230325986,48.78121191834121,85.94850259008369,46.81593259351695,55.40671030330304,41.076395541975266,32.939103034169314,9.872069557530361,16.95474760814507,28.24466929918481,41.441721982779434,88.93005747610697,50.36887117706552,29.281651764629114,77.45408176948409,43.743911009535154,5.246469208583959,94.88283210447707,23.735567789727863,94.25661205752958,34.940628596155875,6.457328456064926,70.32455170004307,41.059896285261345,47.2721562524785,80.1773921191541,12.152229490648514,70.6468399499991,60.06999792397115,17.54291312644478,35.305704872224474,77.58955637062702,48.03495642743769,2.2298255375943987,13.568944741342538,92.47884342438503,78.53587038544528,98.72379877957754,52.755357029027415,83.29742748161023,81.37785565257079,40.601061025578446,87.10411024501646,76.40312882276285,9.542441506680532,58.63202793315849,18.783710054136282,60.78253216044469,45.28216925774311,59.99255427044,93.0132887903055,37.63731395113735,94.5083917059216,3.6284198338306095,75.06217816549162,57.82476155827748,40.23200081664447,70.16340234534691,35.4018576395718,55.0417430341202,60.4821656917199,75.6672635673004,15.071680004656319,45.15010819538669,38.573198026497614,32.37482199708657,18.90692313015847,52.89389256064661,64.31900146083876,68.09324530233243,30.23255762683058,87.38829817307867,31.43669492923721,40.66224767513474,3.6511206983112054,61.56780660477658,52.68462662110608,27.31539304834828,87.10630092674043,5.358221124682794,63.120685639734376,58.156915924482234,6.926207947452568,43.41716063096155,78.48849691028039,53.97309295562444,21.064936737284167,56.47313093704639,93.8502178501761,33.38255184489376,98.33504399147553,29.57544525601854,80.54448834398215,19.726841849054765,56.05860118427316,47.34893031318387,98.70408471152578,46.82560298567725,28.53916183587677,62.39296491659414,31.40868819278233,34.3634610413639,79.50712350696404,15.223752068042973,73.46391331343806,9.894682982036528,23.635119190082467,27.435910415188925,94.9193687597196,83.57726850157027,23.006822153628082,91.0892797201347,21.618604006316854,76.63253300936628,75.91010184813067,94.51955074817782,95.16351130414597,64.86526429933043,94.97838930622291,18.190211993947656,6.426258049894907,76.57691323795406,82.30783604992935,79.79154829016124,7.755657161003149,12.466113200160267,23.30194613038039,81.46991329132034,70.71758248196767,85.5031507518617,80.77449201638913,77.71140742155144,60.38120445078624,99.08949003433143,53.13218482562838,60.71450034542249,77.31344385537004,38.157488960436424,85.06459962597806,30.688975200877156,87.11176984444386,4.701161192402803,54.91672412003017,25.511638644396438,74.89302951604685,91.2618710990813,6.1246384821829984,10.518164518697626,79.13168002107992,23.671944394681887,87.41247626893117,48.08678843502157,50.71628690538337,1.567870359941348,31.39324396874016,34.33301551854271,94.94079330594472,4.014485009794222,29.262616760614925,25.333800620081494,39.91616600415775,24.704782678132663,59.994929098679606,94.18032124267648,35.57609646234204,55.124954299423976,89.06715994818185,20.484682933022125,48.89429706046887,37.46263261892109,18.546645472439682,76.24697771755132,49.25951268125147,38.76345172448459,85.47490332186317,17.584619775660215,84.71075665532771,19.96447161825705,89.63966185597222,50.72428936028479,57.608333116453004,69.65445027208304,35.752345863629365,0.8660148118039279,84.17660492323539,43.81757108523501,72.17895039860437,24.63577950983581,92.72243000672047,16.440782685405797,75.98571980477858,58.93352457942718,39.16749770257627,44.42848169498521,74.2199395138231,31.49660148248493,51.70303668823074,51.89743737472035,98.97395075762554,65.82782760833213,63.658122916152,61.33283046964695,58.86242970865384,19.606636650928266,7.295534156042938,57.72770399310583,65.35182375398968,10.738384489728547,64.42225252593141,91.88077265551438,28.941301433173916,47.53963739815769,15.41553287560118,72.50536045809876,1.003688616837084,92.99488510085821,36.450419845080496,33.0694012492036,81.85980408954238,0.9678874131531789,7.488175849709111,62.596328798684894,38.494313828664176,45.677114305523915,97.78897476569765,68.84248541420327,34.55245904014343,26.47645941622262,61.4463162653263,70.98941201434532,4.277363906187515,18.329099531233005,74.97405251954847,40.66902402316146,92.30485727865704,62.15908351776864,14.125737022687568,83.64449869262592,54.50725095979466,31.058631578537764,60.03812361543481,53.25552023770499,5.433162441105588,34.62409916974964,70.39244308094584,63.32814676546905,71.59388153021168,26.253460480166744,61.71392112438263,29.065876798017865,84.40135434123312,92.13873470442421,7.269769456043107,47.423442490666986,38.05234433181168,47.44967712605537,42.63484799888067,21.400211785412537,38.99425258069894,99.87257879618265,55.3664269272207,16.372950224972314,99.1633991984834,35.47769790654287,84.54448371933358,78.17180862107436,97.53203325798773,92.97928037237493,95.51772493267372,23.475739320660928,75.75232392867399,47.37151650947863,22.65332115009404,87.23462799056158,16.711268264544856,45.465546817874305,55.896727927738546,32.449805392328265,64.47922092302626,97.19271331456068,89.12861201794388,58.746583625644355,88.35021632653837,51.88946200535075,75.56483254125507,57.84913453781944,91.03379694892243,55.135409378326216,57.17681772376431,48.7436873056453,98.40548039432424,12.447324557902672,9.995871138136225,79.00510802276251,37.551419345030745,20.199607425424183,1.5563160028496115,27.645917998532177,39.93157639706649,58.46089844828961,92.69101429693698,40.93881970476902,93.3505783527853,74.65271819730826,19.227337973160008,81.39981507669147,95.65839267048692,46.73727879550527,45.7937648432433,84.85253961931886,42.35421492244925,41.19592348187891,5.370635201904783,90.48181830655084,17.23223937099343,99.09675614982866,4.219002960697837,16.526380127841843,24.16604347948016,75.68136350298767,43.7113812931934,27.546396747613,3.901664868108623,60.030469022723054,69.78486084930634,92.22791435816491,59.29642095663954,87.17815016969072,86.10266837583576,11.940456750109718,26.36481584660745,95.07765228262586,91.5315582224762,18.622462097747672,66.49520318604395,86.84847419044685,40.93819922962536,83.77929085857681,92.18117301908099,22.650850287254343,86.97827500116158,17.269314919732604,99.64494423144437,95.78006021553811,96.93122999684128,3.6871489635663224,44.637895024758976,39.795218040622515,47.273201195246784,66.82324463062848,64.24603041857586,70.81139780389559,56.92266059116158,11.469919479229794,48.63656675301807,27.786090199798984,17.55387452373106,29.627983912356004,50.03808445204378,89.9631857539888,48.4830604826255,92.53886040632464,44.13389819984642,10.805502489088203,48.019213844486664,63.812479503727396,98.13904817570861,32.86846391376687,67.91468304997301,71.60451821895697,98.11928839869829,1.977741342861128,57.23654555408887,1.6959925034477297,2.6016489410352284,80.23174328733226,68.9731787080814,10.89935655052069,74.93096534767662,99.21374884813137,10.000497879619385,42.371585911007436,22.350474053094484,70.54061282551358,84.81530191411969,6.221970055561155,53.404942020820926,13.344545484648151,15.57308967310773,24.409383879613465,6.830235495086489,38.010495800220326,48.257226888767235,6.187572791569485,18.01902189376021,86.84018556783042,90.5433691010676,42.194517440672605,23.319510142540267,44.49332492333414,50.19087077248267,48.26077660015601,11.264293440683804,89.0554627176368,87.09345329579399,66.63624850081314,54.6812494816054,8.50138401235161,51.26833594208012,50.75192476485003,8.992539690350299,17.609747048293244,72.89818178731929,42.826316346893925,54.98065431637248,53.7275034035083,73.53772232562315,9.426219568428273,29.943841909063785,45.02866870510195,67.15159892134977,94.58215175992083,75.23054943477105,93.81468301788868,13.40478866046142,17.572603689470846,57.00691760706575,77.26145574109165,58.1473446124721,24.78756067561013,13.312941569921543,23.799494245253562,19.405143252803292,27.917717687567965,69.17215373283906,98.62916137403509,2.967150566354504,31.847564435489282,4.746203625802781,92.00288878746754,1.2028133014537201,11.783754961702464,69.64744463805494,66.15712612239606,22.84141483457802,15.43583539593275,57.37318908568009,76.6101427788479,60.00205057028961,73.90182383212183,34.931786243588505,13.831511893965532,70.71154538785834,8.016081873553071,33.42881918836375,93.41405535479251,67.86050201962068,24.5950586768775,41.88057314328872,91.19320975002101,65.5538984301149,88.85879191058338,94.76569454607238,46.719544668805376,18.80325702892466,84.01963869539907,54.52166035925274,84.65207574414075,58.84506988289259,45.682771629987016,90.626222586006,95.01916333382705,50.71071892704477,5.829899790908232,1.0062124854891885,32.95989020310321,59.23495037819001,37.47566335240635,1.8796723664049941,77.58282487745048,87.72907940135157,57.39817297457102,62.01472762500898,34.25761777588702,51.50344101498406,78.15224780930033,6.9730198193334925,78.99993625789728,31.314751173615097,14.237541784512153,99.8129755420198,1.5107364777937726,54.95264632341864,34.792211519627884,64.76866717755775,83.37624725387954,21.40134471598172,62.7550003750904,7.689533274059757,10.09819111805551,54.64661691116066,44.395158662431136,22.246436655961055,69.38727298069068,96.20733834748751,57.73220536391522,86.35581057670989,31.881983514837586,81.89096639835422,55.96144673419254,89.43016236184243,51.61836313316848,61.990824606710746,37.73570257693496,21.418388604724292,86.33986134887137,65.90141479241575,25.50407808140587,3.4744434486920106,5.863876798772639,68.83640052073225,47.1971096709964,61.17245572938464,39.3223310952778,75.2971796372246,96.46693640720424,40.34492064102554,98.53141197014499,26.872907507773313,28.032339170392785,83.7989050229109,49.75662581041108,12.388496158064067,14.623888890043146,9.187298556811674,62.55371437052006,33.51720762469612,42.48131066166487,85.41191954530079,22.374397047911998,69.88049005752156,79.33402038411704,90.63703725659009,80.19963369407738,27.4502032879562,29.436943533830263,68.1107053467592,64.84840145837836,34.090660692272714,1.8010749005753945,58.96861060550842,61.70918330016476,48.64887498018297,82.95764986529443,98.77423879681919,39.11418779565431,68.48683861074876,27.00133647126912,93.8750687955656,16.42654912824805,29.792324061301912,50.610698553748854,78.49789964035313,4.905807024977493,78.00031345853081,43.04054350090154,27.249448243184414,47.310808714348454,78.06319504001033,31.595255838582737,67.26239265179683,64.82537329189336,37.1671431989684,33.408308811850574,4.428583852306267,53.411061806400404,54.86543209957146,58.395836750680395,17.81531807841764,76.45566478547649,98.08522153899104,94.75898451936357,36.74985651763363,14.481256605016856,54.01141917295119,31.72271520925638,40.08046488776982,53.7672449159901,76.82491131751374,72.51912532248069,45.683867055004754,85.81419580116096,28.497210833178144,35.54398760327274,3.640169454430675,32.865611115893344,84.65154509996633,14.522143126530251,17.803052142825535,21.114235574527072,88.59215058140127,71.8308608900532,26.52764319203168,99.12967272528304,55.07263464886013,19.016127224952672,5.236136250071133,11.007170425717305,89.68899472951684,90.28961831972751,62.32495280719152,16.42054805196761,79.37267535675677,40.64822425152842,11.08213560429434,94.92505415042547,19.456934194246024,39.03797664589222,43.07562497461627,74.20347958390957,14.266664306223953,70.41129406452026,81.53098236999755,90.62724564245552,1.0272147039345314,57.00043587464418,78.34926756370557,81.06994699526265,10.866466129416263,81.12887654415515,41.263454802950314,11.32161741998452,50.83569763310282,53.16962336456964,99.38673507503572,94.78665135242186,98.8561833583625,98.20750629241817,9.841440247128874,52.19075763559079,85.34026545331248,24.720306742012056,73.60696329345856,44.33668781785125,75.28541389446508,20.984508026558768,10.871144431977553,84.0199534016677,80.63265007123044,32.22251908878213,33.207358915360096,45.67890385308597,95.17727423225753,21.233720746733596,69.43254268571316,97.96366247688802,73.18310862253409,4.437848155919399,48.797240689820754,15.85290845115469,99.81004610442352,7.77097229781063,16.729030530231814,40.05583686066162,59.30931069295228,74.642923341854,11.734427223080813,26.612630390207737,24.64926712154405,90.42070320156567,62.96391409282855,0.8232005211858184,52.063808275510404,3.679908871787385,7.424657758969577,81.61950583792613,57.608287315693765,80.91387104252547,92.6422165845189,60.906582389957364,93.50069804282583,86.90303440912284,1.9555323711220818,59.688375047066465,88.42735371098631,64.9954954333922,57.48173115205192,92.03442076331577,44.92214257006245,98.09197000531888,75.87717482237935,34.68677160907464,77.68708516813116,97.8421803208358,44.10110403425646,26.354612198105563,33.41667977969991,55.67984679944177,64.34393203883172,79.83177906091399,85.26050373479731,65.6211007498442,57.909067993241635,14.452854600400356,81.11888201769901,86.11430583663575,24.931374926948536,30.36623333067968,9.993387372961472,76.29442431418796,90.69265217098535,47.484939473951094,88.50753441400306,14.212069599192878,31.56864416526599,57.82316257575969,97.79236978695907,74.50745820013579,53.48172558122566,58.57398584947623,44.82765602205569,11.618951970310754,83.34497426718936,64.26759920052308,65.38699284663608,24.619878201402067,33.45112964766983,77.00700079926222,69.65023318271868,26.224154512871667,14.344069113893864,51.319592382728786,34.73100061478791,70.55570752107184,94.32841325957793,10.35737072775278,21.593439615766297,77.16549953812964,12.293590382580344,43.474438047926476,45.44933380208134,85.32576782524198,45.27560348861359,77.01453630886543,41.06557975542026,94.67565357018422,73.82218824453311,66.75918987189338,73.45254085128467,37.93716389444546,70.86818849792223,24.717362633516604,10.86924643038596,1.1567271923851985,39.26130699735788,6.280332245422182,93.56405756786681,6.10428178974175,9.244158649436617,26.63849967988725,44.29407205386213,15.6905546237477,15.349991560736365,54.4434546348956,37.95991059064996,58.294140876507704,61.7964626147475,57.36970216050867,24.882496238808884,66.04089338097472,34.652041875584025,54.66910209824888,94.02250359641108,39.9080231736875,92.31465631586144,55.760668393521684,75.08737095109436,20.91276590643558,50.69869040542626,3.0907543690578465,59.746530801041374,85.27698522251363,62.751050798641195,44.630129519585815,95.85631665513205,67.00147690117193,54.77398946470571,2.2376924165791734,50.74397918820729,96.78255480094326,48.182663536592905,83.54186804817927,58.42175908601994,91.24508939311868,83.10119152507778,39.87954281694659,58.587168791130026,11.980307794698152,76.68381055241282,36.681707767195526,86.30704371199805,8.968409584691294,69.9210952849423,64.66386305421652,57.42968631512814,22.961831302387104,4.454191612561242,33.994536244973915,27.72214742640863,24.78831119580055,94.87380611788868,67.74711524926592,56.16620856903661,74.79521451462828,97.84346053691296,21.77689352047174,56.17306770920438,76.16741099925137,41.03273406181533,42.268396022272746,38.630178613258224,92.23793301787138,87.78900645690109,18.30059246990482,55.01671083683476,37.54691376249028,94.67628229953841,5.055328069223608,67.39693351569862,38.524688686564765,25.60625675419531,25.165654671046266,67.11984434004502,97.72165590604405,9.717206883965657,68.29385479196672,29.103371085178832,29.782294763856775,48.172716281617255,7.822945596271191,62.100360284489334,0.2793685328633777,78.55233571531134,27.912625523803158,0.035206314863045485,42.48624058746488,50.92947862749708,15.941114280587376,98.78765912042523,59.995129220713864,70.93831623497469,7.903262618111295,21.26816182338741,26.20733126473358,99.90331808246971,25.235643405084605,65.98913048503172,15.615709613947237,23.801941555014505,53.29483989481274,88.26487834297254,9.333654587058426,42.661718552596724,43.90197444911757,99.71387169454913,49.69710838187606,36.60246656791983,13.610270027648264,27.962181895266824,64.84146374303467,69.65445371499527,74.41205827142761,9.300400231897555,84.05050987391745,43.118312337583674,86.60546744694145,67.98165873152278,62.94469915265481,92.47062143723387,32.78603515484389,54.364239538592905,49.865575086758106,74.6541845629074,1.7747815749009521,15.658135852127586,19.62271336117314,19.997807697796468,89.95944056201225,63.17644609335756,66.49451602969101,13.97395294011835,68.82503991268901,41.207410054002246,95.23558917019767,66.82752529342247,32.910003531312306,66.36251765637621,44.592755346523774,10.065023475456547,20.874246202471923,88.66336493112978,27.54208706267802,93.43981924083931,99.42379199293366,92.60263535795234,82.53759341938832,68.24140067099138,88.23069418886914,64.7908872085733,98.20228405132838,22.973651637708702,3.907442062865074,94.13120374147539,63.6427159711616,99.82604526522091,80.5702621441229,82.066326968153,64.23082958258546,39.11542070514419,81.03681315551309,32.221180227931434,99.35957091156324,6.3648139893861195,87.6932789382955,50.6274397557881,78.5079203285795,64.6457314992823,14.511187054887753,9.910486852570044,55.434805052265254,79.31299092014808,31.582174208197287,81.65457677715291,80.83314424215456,46.045890184538884,63.01496271915742,58.699806824017365,79.56798405582116,47.449841971080964,79.39983641060687,65.38128840255264,38.43928529049296,58.56990628593379,10.10312506375185,1.4017294666786695,67.10269847283658,44.06375943170644,3.5923356490064173,37.41964521165596,37.95826586558086,21.457927796557165,57.74176978768721,14.932094272166497,89.92272653520243,75.7242359566398,83.57399518277575,25.179863355498767,55.758489021223134,77.02433270672444,41.90374199458279,21.046093680167065,8.839311240915503,6.742468161813275,16.882618585418918,21.714650722624075,35.074028687249914,63.70794500788386,33.75777275078126,87.65731458564416,63.71522271877437,78.4666773378028,47.645696802162384,19.71997642911687,51.62183177282543,54.56370039928407,73.03423878025711,77.67208251809511,23.791428646743228,17.230487720981024,90.33599648008955,96.90983631819651,1.5165423341019446,84.93623192301882,25.09917037682021,46.63845049947229,68.84365322447965,56.297276439628575,29.450834893063828,93.32699073636938,27.546758479622635,73.33669719397642,29.062880317521433,10.992963964189851,85.48488165146131,53.528410605821556,43.346865906881945,43.78683874715615,39.33911540595948,88.11151070818823,98.56783892686828,82.27934523116488,6.4471142120671505,30.575342893531143,23.827155889148134,5.182196883369583,63.12183595831806,30.84759347126802,10.437187544369342,21.230262957546152,62.007068269071674,15.281701812037307,40.724461759611295,2.5349209410764018,84.95574908219187,27.1073675337946,73.8863699454336,34.703457517983324,67.07250198557881,93.34478741361342,86.74663575782186,9.848902277041416,88.69644557420156,68.86967556766736,92.66168020070904,86.10566171175893,60.01795563907343,70.22269911426866,67.22733596432626,91.52531831483822,36.05900888079648,50.40977242465704,7.691769263124892,56.75938665846949,87.72916329883344,97.45017217841723,76.30804488582834,53.40391396157851,10.174004818113925,90.20056956635361,77.1096048044659,69.87668678794601,20.829745601837235,27.573041261827246,33.82110277778922,35.036239033788775,44.34487588448395,96.76366316847455,70.00497477352916,87.43146489503381,0.11043621553519234,26.104214147595385,49.93721753034096,24.695522754401523,17.545600232424786,38.32174928061366,89.27056124976968,21.60197696207904,1.9340909631162417,80.93891020047272,93.69307075044408,90.55156633563229,99.45878482448597,54.4911400945815,84.95095587445815,17.146145077670283,25.70156871397956,81.67740248614838,7.932704125115797,33.17515173883086,61.72032199064999,52.73271746552698,29.241873956785135,57.287470662021356,39.073693858368166,46.575360025077636,32.59751811311783,76.13309892445996,75.18613075170856,0.24203437792638116,31.301359576780598,17.79788011150427,18.003306659556806,43.13875442578097,58.89410317034148,13.02250542217851,32.08416405097895,71.40057687995915,18.261016115696872,63.359177886013484,37.197783278143085,58.28224170235011,33.282904864750506,50.58267486416671,41.40868176381268,55.63058039600454,53.866217873243805,6.745941314942905,28.802796187596957,83.48024157939999,73.03370236351628,39.117991165548695,61.325805906269515,72.6018804322898,59.77068921556248,76.56703385985064,19.979937509185287,60.3768815317961,81.2606386892496,57.41917438418952,46.993813506005644,25.085952866271988,57.63728278420588,2.250755705940022,42.48989103039732,16.192498026295898,87.97514356249022,5.183309843834094,11.416281331975942,41.15820591325775,6.854476676604071,34.90016940947667,28.551982595585244,63.59851296010023,60.85953379826976,19.714581953725517,80.4893736475105,49.13299380926514,4.295873797436467,95.58985067980036,46.47661269412475,72.49080173447673,49.123512947773705,8.770542473846898,48.99803140778381,1.304886368309155,4.323075739518655,12.128161452499587,49.745550904275696,40.42156453352958,77.55535502130701,44.16824856339338,61.267154339311446,97.5673226851333,77.32619449202116,76.77800431452086,67.91901408871341,98.76415655709523,21.81433570092729,44.55316376528587,73.26589929417581,28.969737792918405,10.92159015995733,34.30575967956906,49.39173491194282,47.90988310058609,58.62096935762977,92.83585524163941,92.85981633669364,64.09669509054211,14.516595700560142,19.49653003622084,68.95550041808856,93.85321749214391,47.354230640782276,99.80263604260251,93.84909200097556,57.92527205479827,24.076046457113076,61.4997594273108,47.95482023583276,88.86185844709101,11.969973026664537,83.05600266371422,84.19024749956611,39.81419168449175,67.20316388235894,56.17348751128824,32.41403316790701,58.39841990469156,22.084382991931573,15.292061064131579,14.181812701441244,61.39314520991259,35.58920245953326,62.77524730831667,77.85760547484215,77.65545195048033,1.4260943595361453,61.17699681449691,68.04282005791009,27.47232776540367,19.420205483024745,77.52262856642432,14.880267561977467,29.31566187478255,39.77529654325179,45.42290158583449,91.59454921608068,36.62676118413914,5.496168705769755,51.836746647281515,69.95052557360874,92.18511360695261,63.37978713186651,2.9397944433903644,33.68250626902255,99.36442190542938,99.05579707689641,39.28302398004194,52.074049935125046,85.30515361687104,11.267321929215758,15.549096799382689,9.097774236314947,46.26186296905668,90.3350156761377,20.465933613169273,89.31866150845421,84.16471881985288,51.0618008888416,68.93194022537024,47.39904864864491,13.293915171071236,98.95309482247745,52.252338209983364,55.554296636430756,18.08216495279161,75.21548890074084,54.95133919490315,1.4081173634386213,80.68666823252767,42.2957270936274,82.21842623311566,37.42965546030873,77.00445821126831,91.91655936155583,79.5526603319255,77.6177890142966,50.20998380527022,82.67143670965149,60.84028478494482,85.5836298617441,48.27638884091573,40.82196744925442,63.89805218553387,19.72633113457565,59.95353560275899,53.48545214344149,89.85006489703274,91.31368253607161,54.99746488189198,10.709800642579115,17.14095458883732,82.9261443148119,33.792992453867285,32.62789471392033,75.06020798679118,73.72292108732829,0.3394875598804914,11.400009021626722,3.0752858343041645,93.23623298073227,26.539281242445178,47.39082577558572,41.33453956434433,42.37228491287619,96.01810143508855,44.1631711099599,13.622987318434276,12.17399363823224,14.617624999789857,60.347715585754734,39.165491262262265,97.1662812038845,79.72186426947025,30.506836425925865,25.426870500168263,60.866050360062495,22.28909854062564,45.02713766699783,62.84436069749867,97.75963123949158,21.56792714849236,44.94637420070598,96.33220232169406,39.4561397321041,16.60206627949097,88.60387064094228,92.07268607599211,37.59301872180693,58.818129948232425,52.08022168343807,39.48802311920745,39.97087344836291,41.45480411710181,19.13490619554127,73.79093018087369,64.1328609678827,65.80672105463744,5.592864290842003,35.27941583568176,66.27022326378989,92.38910989741028,86.55274386009569,70.26716249347554,31.11949531935011,49.610091328977134,58.171668129463015,79.58134465433379,36.566187071233514,43.67903796908854,89.22946958020336,51.16094597317766,24.22953721367668,2.4098005552457336,10.987139190002637,43.04588194783165,67.83397787892355,11.085491542104043,29.33512899292039,31.202131036096326,60.56358049238489,98.50845502566766,34.38777065181874,29.857877118759802,58.38826838825295,85.12908600826778,86.32000101441328,94.77737811534757,17.797219987443015,23.56083215581979,60.21387149329076,96.78874041594267,55.29881349098679,24.43694348198021,97.13847316216719,54.866541448470564,62.436489502134684,89.4744373685256,14.052170822190902,86.27884755034673,55.24274396044267,48.51392964632345,79.55018853975943,67.72858281843314,10.289911385401574,17.24649620927603,45.94021084972425,77.54442151344347,7.022477135731187,22.80646363954978,6.7740141141115595,2.1193022511068804,59.51573191969327,13.333799955550596,60.60552207658697,22.081353005121287,22.05910173179101,39.102929023158154,97.33286048718784,62.765180690249025,57.60154239368237,48.76613579244285,89.76363486105993,24.306889572584534,7.157090431474778,55.079325416296385,36.250770360768314,29.088557374082736,67.69933948080313,87.44575321561435,51.77456485081214,37.587217682036275,68.53955642795607,97.86660153262429,13.868018675475968,74.18710730970747,48.032264824945194,24.984231470713414,41.8343166914387,15.089965305446707,97.05858282875508,2.5861538199065226,58.960697066435145,32.729244463551446,79.41224170551227,74.54289858765073,10.044188163171707,95.33352131679176,30.714479887382794,1.145825922468846,41.54482950661234,26.42181105302688,19.445941755068187,70.62256355564188,21.86765291632462,26.359212767293773,24.713143073488418,78.87603683065166,66.08510129794483,67.38768695705969,35.79173984011761,7.928300998908955,57.72106737906489,79.19358224269027,28.21291081916908,19.734472096894017,47.095746741628396,19.96557596318873,38.303430690587234,26.408767321735084,91.41769021818492,25.821242318454928,53.93304397712618,5.8236353789011375,76.86348731720109,57.0515502403328,45.79146660011602,58.26849242106344,70.13251834273852,78.60917676951415,76.99443241831997,82.9477556870481,37.06677628799261,25.097469052816358,39.65938624576668,50.31678082775274,83.96021535212166,69.98040080746031,40.628877035794275,96.67313864244342,82.49989973888349,11.441895069550267,85.77677631437251,36.728985245169014,1.2243108969838268,23.700304163789387,93.97557760622777,7.96077500723853,47.686578380092,91.18778682834814,66.95522404706686,58.06810225560607,65.28420313409006,87.8784843117855,29.875001482510566,73.93723813002282,89.08410608857461,81.71017412261915,38.529681223731714,49.897157737885244,77.87166354197295,60.87835692060808,92.94371461435989,71.52986309662104,64.96348583850477,45.46344189950856,23.672287565693306,42.487278384253976,57.63375458609216,55.41968996431097,92.13317311304026,12.88956095027942,23.66893942139785,21.82126328996349,21.39130776600451,52.29580125966693,27.35343525113376,74.21710700474567,24.39163538051181,43.070186701987055,84.21431224953673,31.823431453873607,4.818662598658808,49.416431253527705,99.92196933614764,4.270943889920764,24.165770587806335,57.41105496230412,51.35345598573854,41.942140797238594,52.058852267884326,13.773106629582665,41.183876308636236,89.2106118591263,17.527594075221188,97.53382837411894,53.38765891601791,79.17480257421617,95.6646996721425,22.091291037860515,67.20221946311642,89.59208988931245,12.272101064547659,13.523794570772896,29.5174717098842,89.44640365053455,66.616242710987,80.3601394882201,82.76667993232614,46.82613469376179,0.2657676388630681,91.83479930187882,85.24030650587295,87.36935917074108,58.93644620179579,15.77138800464729,45.24118074145209,29.64842753474074,9.006437016532798,47.09373101379266,53.41651453772668,75.95877658472384,42.91319777220873,57.42993255282376,27.741441462924975,46.828528162028945,68.34754233759337,28.313861492292812,48.36917750968953,70.58499496986278,69.69477317755688,24.54664803726202,61.74007406094629,93.07932574671966,41.05026474501653,71.42981094500985,92.60970555349635,16.208719706475193,7.036715006781469,78.89293493821395,56.37940896410998,65.08469686964172,58.82265097188141,10.638993559017962,70.14298412588701,81.48675934745894,86.01275080032697,34.515775868320766,78.65683385276884,47.285457227794105,3.3786778981392596,17.06888880064109,53.616313538043514,94.4776698701728,27.927179708483852,8.317002179775024,94.96112024601659,71.34090322552899,66.56858377809878,55.417049103726434,31.99852538557796,31.93626224483761,11.690573302765761,79.42256806807484,50.3427979770917,43.87563719368357,36.85334401035503,4.275108449557019,53.48610837728744,6.429864577881029,32.981526213754655,95.45668915787286,65.8220844512068,15.681512333902026,4.320936877320358,62.70353628223124,68.9912789467881,18.345729420369683,98.61982301269768,77.51321569457915,83.36125629755404,14.593654977901293,65.10076054432598,61.97275255509225,83.24855041134403,72.42055464601866,98.17354035966417,90.39028215515003,67.43975460660803,45.09358244303049,34.68905677417481,29.992099130242543,76.02125171110654,63.809576583731875,66.9915904487555,33.73577134869837,52.40957184806325,24.060107897287452,14.841145337763384,12.964161980783818,65.01780977991069,90.08163183830037,10.990221591622252,90.43399713025296,85.61792937125034,90.23801703213717,97.46016534111828,21.177193036353724,80.75362322369683,25.36153073694136,47.47378347856915,3.2663760584963564,81.02214021941549,34.78300482680451,90.94900541844629,41.95197018567558,79.63849253663243,90.9227938484259,65.97010566396263,91.45380036008771,46.531099269600254,23.05572695873671,70.16222750886558,65.96778403158221,0.8499029438865824,36.2679159683127,25.50397785377382,79.05501574974107,84.63973985305722,2.1630592659856562,65.84116376554483,65.77779415551768,57.99867323674752,63.25465590958609,34.85463783876545,94.60153829613829,30.27763612038994,36.02668068647539,76.9191647496277,54.17532856861192,14.833741209054496,77.70723826362257,62.03484550788909,89.7718677473193,71.65091021126086,83.91852204213721,66.52431621111947,72.45629065946342,79.35657110592742,18.881697491543314,84.422444952389,22.876178078517917,36.28018627724676,72.42956362828451,63.10292608507013,64.56912932567161,70.17985317281592,29.433557775582784,11.459725854826065,17.34370408061118,44.42309574948584,53.79180858548249,41.06269399595679,99.37424452498811,41.121543213371446,9.923662292679259,26.519284523102826,74.92853948295594,22.528154616952257,82.4437064031042,16.022385887827173,28.860125417037462,52.53476359867396,82.22382147492203,58.077888791383536,73.36253383041559,10.483911255039102,41.487072213045316,92.59719952240442,52.22086147778124,2.2384735503662045,12.751659598672738,48.14515922434298,33.78287111747509,75.24179692313382,52.95229302080574,42.05166137355215,77.48643364399344,96.29178562305567,50.11588146694059,26.176249004708197,44.91729131606728,75.87539228895939,22.67887172362326,30.561622940874187,29.71700546102595,66.29125799553766,90.91725700703788,57.56865771295372,74.15740376606384,19.584853429918457,5.627977332500455,57.020666123174024,73.24264899521195,44.01298716598308,3.754971964418119,5.36037127176977,23.261916962083586,40.507198858248486,14.972855392891194,21.5449582504742,83.61095410077256,2.6263384804088186,37.532164613053766,50.528327709410235,57.729446033986285,84.55359778399813,87.27660289073518,76.25346731365438,85.91632635433328,31.25326860733231,87.8356866242347,74.92411289577483,45.95935855754046,81.25942012633563,22.77774146124575,85.98005826243487,38.414398205520094,43.010241546671836,54.29400680889918,95.68104898789811,44.13175684002225,94.47758088079652,53.40444307277209,95.25522872012876,87.8192840123304,56.09955210067494,78.82623859168037,64.74700063673596,79.57140100298402,47.57289915268292,49.83250574297487,28.399668660571287,7.629943560265406,28.996171435275976,77.05623210683108,26.723643794349783,55.63024849474451,89.81139086130094,34.17639235096511,40.101333181057505,42.36576264363736,55.495413479985466,12.086613146284886,94.46190641251536,18.60808616435853,88.54857930766369,46.15823459697449,77.04555523460367,1.8847134344972538,80.46346409986475,25.183045559273843,92.63635494689296,46.18343997326255,27.39028113218631,31.710297368424843,84.94874653230809,61.85750345138471,96.00180640905691,53.2989493693837,39.06012806298775,31.19576906029137,90.99604370320688,46.7900709686633,9.36611288596586,42.79760469830569,84.8310322588452,38.31815190447231,23.64773256718652,29.86707014429124,71.77338265220622,10.087765592404384,8.60081369089677,62.003524528510056,48.57746216580304,57.10210324677012,39.06813410009959,91.76823590435446,7.9604860848070835,91.90318164690403,37.0752217583175,78.0262719687921,74.06832147345246,38.116932220114485,93.59745338382523,13.501449730325044,69.94040947376243,17.702991365202713,9.472799643885022,13.926332545151077,42.81747207575882,74.53421590805183,51.35408656756554,0.5847670240964886,44.30195091317971,82.29552290739747,90.56005333086624,65.42310549963571,45.65764861355063,52.563447341298996,30.234509632336458,87.26803761887054,47.81748285324442,88.8978712171794,86.36491741622478,21.0219143921753,48.193421887720454,92.06696925030538,81.3696946494261,44.244681597808345,3.562274509094132,61.76501715719746,53.20031046130791,7.030565589758464,38.87893527145998,59.035319779599185,75.68836053058683,57.849360877816395,29.327799591370496,96.96610991938392,44.6580974085602,36.83915008239934,76.75180004963732,25.48883306753371,75.2122520739568,1.3479845629142284,41.655267314077406,70.99998568993512,31.412496556448367,4.470200980275829,93.57571256216595,63.50406108380591,33.877934411395906,43.11912450225073,17.350675723900167,63.76807587552717,23.819409531729463,33.06434831060313,27.07323186222723,52.363461992579005,63.22519502315237,3.631478012326006,18.669847979583288,43.773038639331176,68.16402571602794,35.26862335305147,86.30236648829901,69.55125562923324,21.558608281140103,18.41736848901735,47.09739292503469,97.79241331738545,64.91306793573256,27.82355704870414,48.19036735090412,48.61720219563569,79.09183174127953,33.92783458739315,40.179771851403125,25.00641963337118,70.69625076942346,72.44066318548693,89.82390005414732,53.652165303449586,46.82964297616435,36.50184804559843,93.69879885651655,54.938736478751146,58.408773138322225,53.62239167729135,78.06981102505655,7.5822824088137235,84.86118927558304,35.064880105389165,60.54786390151653,93.74299565264884,77.76546408397226,86.67353763225468,78.38854138892395,76.02239946886333,29.220093994815045,6.426957751603791,64.7337198440603,68.10032813149806,90.80297495725253,85.36732991983767,18.129883863130168,11.084328542790056,1.5278026390432409,87.8570024119376,48.62683148781084,64.37691842670145,56.89874941850989,47.90846220721965,83.569142089303,53.54535250575879,21.880203570585465,14.718778657928343,18.5547152525911,1.0184171130167452,72.44431234006635,15.09757256594424,8.703388476529872,14.126077953387794,67.99464989792764,1.073600603719238,6.838861952556985,8.539287865025557,73.92764487782175,77.01591484983777,96.21592131159895,16.22884499345406,61.02459669041696,78.88604629609353,58.37649143974568,59.10863817955716,38.1322682193284,9.551858200422148,65.68047373021835,53.459982022671205,83.29089075370324,42.507109114111216,86.44355414516258,69.63488390376718,64.83480194739208,42.416072967747944,9.863739520812487,92.40090562948076,52.21728925914477,75.66338062058549,64.87295067999302,18.472669356550686,53.330810194797266,96.31104401888089,49.60712878431078,77.50101474402659,57.3822643925495,36.96079733227715,44.715658904368226,94.02551999396815,93.43969453505512,96.06445805453696,11.396768722333517,20.779779995769754,31.454065600886782,42.11122130712081,48.780827550430814,39.307874152988695,97.73727954584015,92.28408861678722,70.76847023517247,35.484525886234394,15.940257602751872,72.1092195353402,35.0862795637247,43.89762155915938,54.8543568349662,15.394855965937426,14.056848375125863,95.65423851408138,58.03858442827578,9.740824086504151,33.69139901499205,27.78631900836579,17.237001926896646,81.27404359749127,46.56228066546569,63.047967473016584,10.162076213319871,6.875873462518189,62.66208627258243,50.48031093236003,61.51972645883801,35.91785676097011,64.70491748274999,16.223067667736256,28.00541296274418,21.849997088472673,17.473048752408936,29.271500324248102,42.267367383619536,47.99484924868064,46.023487378182196,42.26781983270285,20.586981777313117,5.901625635014196,12.624002713258164,43.10696358308259,48.06444584692977,24.345973567688816,40.456810914343,53.121854544490596,22.2754810462815,6.238758566496106,47.1448535158665,92.26107840761199,23.333619830590635,86.66900274550325,92.62161197939466,14.516062159010634,74.97860285568586,81.59365136902925,81.38694447637603,40.47272059201106,30.604594089130554,39.8680057619888,51.21617260283059,61.44953922690303,13.96302477067276,58.13858694489683,36.49793040901269,47.77434513490717,34.17785666967972,32.10396553025714,60.690958778701855,76.43145253256287,53.14120409855021,92.47165448123143,47.51370501066036,27.80962364708869,94.8068206908749,38.09363427226561,73.79789868423092,74.39717696816331,61.086217103620456,31.628924261384395,91.66327126758273,80.87816987604285,4.384941403858589,55.43645406032841,10.979028303224936,49.292343139716834,22.187764232027295,23.89799105425745,0.015915006440114787,46.35435917479972,0.9875463243702698,81.00650849643407,90.97070405251068,44.822236644264514,37.31042172780177,8.248228308189343,49.29274646780043,4.683879444305106,44.83776191998774,2.104868192138487,25.604590066273936,30.87604323188442,34.88201169205571,37.841288854400254,99.12569310975155,39.49427003110026,3.968142456559476,52.27275951286068,54.21228063698293,85.24760052185647,38.705692378598485,58.2063048490205,71.67592259563604,47.44411091968288,71.06691200745792,27.89508700171237,19.72345528720959,84.6676473563966,36.96101247555963,17.128937991047323,41.19014276613432,21.05896368102682,56.24349165531953,82.59514577441963,81.48323469922325,33.46887676532215,58.059040965295026,50.685306452790044,69.20195898026493,7.658297298027062,44.18738282129225,54.97979745887459,19.099088111806807,72.32669203615359,31.814106301613766,74.69329845193037,77.5504626565874,85.43209864734386,69.60865117732101,94.40004854406723,14.684848087864943,78.37706330300205,90.07475549556196,81.70466487406401,93.95739739438194,30.4758526735727,77.22004282851564,73.68526721941974,56.839035952987295,22.75731806540291,82.10012484738364,6.229701183250813,80.58686179101913,41.24084434370491,30.483863860673253,37.50728087515775,40.67695440254201,80.98127835224984,36.62227508801939,71.17198309703272,51.80377291797809,94.70026864375082,75.15800095563114,61.468232857060244,95.52088651275587,90.11359529176646,82.05315846756966,34.63838755742037,10.342269791122838,94.59473194050084,88.61291423288095,41.427435532025655,37.41984666100887,17.473032202272776,79.47690448782315,92.70503649481178,70.06547857623782,94.61988654721199,42.654125235940896,0.8533014379925818,97.93331063957535,51.29800708734621,78.84092636460714,57.91306400442661,42.370482531331454,76.92249204155,66.06030723375143,40.558183933359935,20.983175416047427,94.53574626507039,69.31941945099246,23.555043640222138,14.871875578172322,99.44932744649483,84.21081918946007,70.64766529655381,57.695479157024685,90.35612556515615,78.15336618516316,84.14080007352332,2.935311105298266,52.956622740275414,17.144546743609734,30.03519787434875,58.16699982419726,40.151321540771114,92.69763043488226,60.10086911695396,9.177953898835067,16.45575140966049,36.97405519765583,34.26196970131264,75.30710176289129,7.636771751014004,36.03384494388165,15.80635437407535,11.400836084972621,83.86416090839202,72.58786360277337,98.10778412761765,53.75739388086096,86.71634106580332,80.91705045441483,99.36047630134497,87.42941570679841,94.45969876542868,5.979064197425243,97.14876428394673,74.53914644976183,84.62097418164376,26.40963598912014,45.866410092756674,89.63080891032084,56.791601581109596,5.374462756696563,24.485809319770745,35.62269268051761,88.83722346786264,21.35123044823256,3.1802359524319312,80.32048421726431,45.342474242186896,61.70560743180532,39.41084977245269,30.47178681657241,20.044012798447653,10.283746169462106,68.33041385609431,74.98272668772685,45.436596137351636,86.20117311073041,9.461701700030856,15.855628865683268,15.99229646957352,94.73241433343473,40.008522105623044,60.3729279014042,85.3724950465954,37.03774162366593,36.385181076234765,85.81113863432515,49.800536144507376,25.404502855758448,8.603051556456364,23.95111852722436,67.87912370610273,45.152980360082815,6.036692627942841,44.09917409140761,38.623160705342784,54.5584737251272,12.564085968294258,46.97541406349727,68.2271517290172,86.72275994705436,3.1768734252460185,36.37219438644544,33.203104061141495,64.8161477767918,80.89436622921883,54.55687769261813,48.521149796670514,38.121559556568954,34.84844979951514,66.51342572044884,9.514741257280468,83.50844545634047,6.648853444129732,62.98863379068765,14.400172037094672,78.25433732208612,36.541630513923415,76.49381532945813,97.08038535769941,66.43388594303546,72.03551752280036,99.6800320686415,51.54425540390909,65.46441869121104,28.120053362105157,94.25344141856051,58.37370609262413,69.47503934315779,41.80266038897291,60.92890282483063,76.5392903741806,89.30179127575617,66.60904035217318,38.235721487633676,71.20734600906896,84.5576260990966,1.4124923788107369,14.07812283523624,32.95234743046229,22.016409347006515,63.13136152109008,32.07731840448136,52.55216811432153,45.26943600844165,49.59950318663938,65.32992480408608,95.91417658861495,86.90493076971708,16.700447635373706,83.15525373244917,85.70276052426294,56.58473609311741,46.4662853728686,48.62127312184816,74.59908783610504,84.43898763171302,58.45968183030465,51.85971156919159,87.90422923888678,69.24647266327915,53.50479512236587,20.677322350942784,62.81827950644264,76.22351872293144,30.73563623349663,90.15028224223913,89.48185986192318,24.390609171105215,33.89702031172155,60.16814513577764,39.29162043102694,93.86235866949386,67.44329659811629,50.523391029427344,62.870149345995245,10.60412424398407,40.82173896198235,87.3982539009135,86.6859828602058,55.6755331823698,72.3867517678228,12.7989971856319,74.48484659469491,66.18308148482124,30.12277240853727,3.4451061573178787,83.13340069724514,91.11166329399225,28.721889993137808,51.039108860950755,1.2383056111439528,65.9278051898082,84.99485630080828,77.35979458338026,71.16641309353122,31.339267772222378,42.598690064480714,15.386925026813836,30.283211703674308,99.41979495925696,92.51386787502128,7.179312061762189,52.099766153177484,95.09235840343172,42.61891264142159,42.011155069688336,95.10436794158585,50.39893713405106,9.790538270386161,89.24488251353154,66.44412267290734,15.045522437500214,16.77846715043495,49.03254346774565,87.50267725621342,70.31664778263827,2.563431244070846,97.36823181082835,93.1553716311954,90.67630510097285,71.01309829132863,58.73861341505984,51.798960538577234,32.91538952864342,42.300503946179525,28.142136151491247,18.52694531839143,0.08528939150963533,7.649750766352614,92.28488023113115,74.51836345092305,62.63180463918322,71.81280078966911,73.42056809758488,89.23079533463229,56.623597351874864,89.63570296070678,75.39492672564532,14.709232133652439,15.196055315113643,72.68306984401252,2.5117173942933224,86.21637048489035,2.935647210812309,79.8104905060831,28.88253796417285,40.203139441330315,27.93259016873796,75.44356746546062,85.01140222783111,53.06757768272776,58.01926154019205,77.76713653689367,83.98173947331577,66.14182580409386,13.902222364421235,50.8571818157619,55.7028883501146,96.16811784982102,65.46936021751304,82.66184745146606,1.7062639347081743,80.53471364208528,0.75217659312381,70.24393840992091,59.618528030183036,43.481262625044906,84.03033549848531,93.41618224255922,81.10533114517598,31.181378149689255,13.95410672169678,94.98442876307783,34.008903402299126,74.78828774746783,53.67930343430092,43.68633569603839,46.2225338131775,61.824967350489466,42.2873488687521,83.44524803923174,95.73862938255134,91.87273396384586,71.22925928167939,12.114151409153095,8.060694472622709,16.857677650908432,50.85678617548003,93.920564989533,85.62034588585625,16.121236416073646,0.5177611711865593,95.41017303016297,79.07017222121829,2.2292165687076593,33.352203109508494,45.79402649210495,48.55658763269833,0.3866768461926129,62.738138009755275,51.12846146897893,63.778218901174476,27.524273386645394,41.39019048408754,29.834783827400912,66.56703601337267,53.93965879805801,12.619878658489558,46.77228174871135,82.08302755533879,32.04504092308651,82.28056771874832,9.888642069158804,82.39008817625214,45.775632862477714,29.27045392753309,46.467701258412305,65.96105325526207,48.258518866031594,39.5326848947072,19.81350182099122,90.03740825775193,76.33974280602843,92.87500572020058,31.23096010194314,60.27396435019527,84.21668905398126,4.912941857723585,2.3554859261486705,95.54156452126017,13.663508964511895,71.41567243219426,88.17150741989096,56.72985878511717,70.86078197026698,97.89679915292825,42.00899260672283,48.653832031201446,74.3293061220007,28.47649509729726,56.62901133939755,35.49456587961606,48.89834051523279,1.1941042853042094,72.3854901767466,78.04465789718857,64.33348167050326,98.58389148349069,54.34754543178926,25.780164658334904,13.326447225780536,47.60465791706153,23.38891320854275,24.751971256672366,38.06024009040251,14.15137940602137,15.489008577332243,22.32223321038409,34.63147223539054,91.43980811784598,22.617109241037035,5.021377168470509,90.58411233633325,66.64477069029941,11.804323076629942,11.966442828849456,57.82427337943925,15.826382011484563,56.74228360018048,33.612434873374255,40.108038186564734,55.12914433563946,94.46717796814335,30.68613087182246,76.09537958405738,5.060431114617147,28.20835241061086,90.61685828593089,71.22413872179719,72.23289940405215,50.6402807065653,16.573943564253067,50.60639017926104,76.39169732593187,77.45222853201963,39.536614455437814,21.719764696076304,91.33477950060605,24.593677289463443,32.028434386296524,56.787392559202,29.146636569564222,47.35539066078377,92.73604178773022,3.1182377300918995,88.09223279945559,25.63997975524116,79.44847308553555,98.29533572904397,1.4596058642967646,33.3134125689989,99.05890410294289,24.594260111528655,83.49472306282031,95.79417780422425,39.39543662076459,43.25203709445303,84.46583782991543,11.69959457767481,38.89249305563677,14.363081802922828,5.976858685705566,94.86481448875197,44.49732061261826,42.59343999551584,98.49341567822488,49.909516477330186,11.896535162575805,97.94547119332519,97.09374517458959,52.13197155062779,78.38959644404973,18.736073052693325,42.45481847747893,50.93770800852165,53.822232871349286,34.99790405149008,54.08402446298246,27.89740368320972,32.55486999675449,37.232373536495125,29.018587020845064,98.07859285166171,34.23267395655645,36.918701673745446,26.939801916961592,77.02568194151395,63.969777589218694,73.55345358816234,43.43406896807965,40.49922398621505,41.274415814768936,4.642078902274383,89.3336523248741,0.7275336972189961,83.90431901024735,13.641297597327352,16.74020532030417,85.3445927942399,44.98935572071654,90.3752024762823,7.825725844925191,66.51888593661641,63.665344635746926,92.52560796980379,76.1424227944095,87.05827812550974,15.430679286531468,98.97454847244028,48.59354727954942,48.25288246549002,5.64393168696683,61.78786920022573,84.83553476065411,74.42125195790284,28.65491422542511,45.128381373943796,83.54253847102059,21.017287476254364,0.6212659737677151,51.66756988232719,23.12858253816332,57.53707498605897,3.8063637548143903,52.145303167840204,18.695824243201475,21.102758624646633,33.61314414728038,19.11447638093563,35.42322629786915,85.1234933008324,64.78854980535505,10.652012759864283,30.175014962715675,21.829096937808846,79.48838131032888,85.87829700561544,40.09183323925607,95.02461163153538,51.72899834792285,28.738785939762412,53.57030542988414,61.67144888282575,32.47761537047506,93.03716309350463,26.86202054777945,89.81003402716998,19.300549484420447,20.412437886511515,41.44002770313172,26.865718113724213,15.703071307988225,16.30424946405088,59.6950465875485,19.738964313758856,92.92431632050119,54.71719686323204,22.927660285786178,48.07095358321318,15.848014445874714,36.744714944130365,94.2378746385722,35.1214828957978,92.81894809382858,4.16558154653811,69.82907041402126,9.457847146965292,13.616436333922355,55.63653959904911,38.68987060042494,85.0300886973402,3.595559577329266,96.95230109146713,85.78098922935229,69.35548986481531,22.243276000133992,2.956324671688526,35.342554898000245,70.82464843393385,32.90013290912708,63.15851026584911,73.52176452507912,59.74858407382821,4.285778308768984,81.68965837942406,68.10935001625965,40.11484075241554,16.61228261197698,10.128234291156357,27.181205106743445,4.194580383624302,22.60778344892297,78.66448056651791,32.26617143649928,14.15454728254405,64.42444771147808,65.13974499325545,46.123320889445466,89.79107581618038,99.83810301476011,86.02857235526967,47.10113990528577,13.814412474482939,31.186730757242064,17.86943005025772,8.22294966405217,97.60351438100788,71.15539349204418,17.150180199457466,35.55608901184453,77.19373734291726,46.28837112200185,10.132896857149287,7.500340553460417,70.72428596409284,13.319240823923305,0.32682771395660115,0.8000729732501433,58.440605550660486,15.831809150628152,30.95659780853789,43.8744394415408,13.054472034952392,89.14149299591524,82.73366795314696,7.3854332341216296,16.04812377287398,57.97717487785668,37.917491674090954,54.769388004372274,90.24031125845487,75.77738634611212,14.286739936917636,16.655806169078357,74.78011744337506,8.799043979811271,88.86255354372109,30.488189917633957,60.28236364803718,68.93381642123101,19.094543763088858,15.204043822643953,41.684542817084036,28.989069481861527,77.57264870160097,70.28152382323482,26.641808028518042,40.69283639735439,86.80002145075042,28.422108742753636,3.917571470928538,18.43526096595539,39.016449143538246,45.145242883267855,31.761602186046744,50.78711130237436,92.43776304533723,1.8777616666911134,78.52919786619374,15.444766236708729,7.079724243088503,59.70611399925768,51.756541364642636,59.280540679629766,30.368510593351772,23.203220234619394,10.453157932051448,12.71674254750722,11.509738987754004,54.476163748655345,88.98303963760404,20.070734985978955,2.2828644604219073,72.73777361606084,25.987728538084166,69.25160342237582,82.29034600156255,79.84148098153176,66.5723810189679,83.43506241282287,7.22411396962136,90.99803273283375,8.099281281791859,63.971198743776604,65.18111337294167,5.637377272472932,20.737723043641033,55.511093034328226,26.655657651772447,59.198267871821486,24.155384796898062,3.044908723183437,1.4138347935732765,97.41090687810507,11.998380074054115,95.88292016818367,53.9760553664271,18.576930996945894,59.14620802631902,46.78564505013655,57.45750637836004,47.703458919432826,7.330468393367273,84.25627155879073,47.70288128544917,3.8782859735057795,42.81540916835688,18.475701583521086,3.147322960709431,65.28052309414171,27.011108605667488,70.97742035627628,89.18109514788853,19.444362214648503,38.4522721150555,50.50526321592198,38.30113567031924,99.76851212082548,36.294200501805044,17.62007669453404,83.46296800149263,56.96923725897567,74.95832701609405,8.133426528929643,28.1044125457126,29.968250769146508,54.57534735649823,85.1452112545923,45.397608457162995,53.98889909467771,14.224320286174885,74.39824567536127,76.50117626793306,42.3069506929004,17.319837688716966,29.09010513367435,30.17370728744597,32.39484091923681,51.684651572297035,25.55903434578465,77.56383261609815,4.448515354905258,53.5838999158273,98.45133545704641,0.6560711189093182,10.042222668283497,84.02782039308514,98.57027520766366,99.99728121351879,54.15917096820838,76.78833093883635,65.69754097933269,51.46793696355114,6.7845103329990835,8.649098343127514,65.29666455570204,88.71391224444851,80.79530718735538,36.077487975233524,16.414995070163563,42.35396516721691,38.91499583798387,6.0441355580221785,12.381846178370271,39.30261640637889,75.05383728166737,43.009667453785006,20.287368953285924,98.31269584395586,28.004546259915543,33.91419139357059,83.64887605309544,57.9711893576178,10.390356607953944,80.47268444316991,96.11226256043479,29.63260697341824,36.75094194782913,7.680302448248499,22.908313290744676,31.299847869478338,11.53063319161457,57.93615573725046,59.26080097136812,91.91015333286461,68.6897496736894,8.430004650154576,60.77199049650454,94.10409617873388,4.938438135664203,92.87640534230282,61.238633763935205,35.05245858820921,35.454514791863566,24.010311967795683,87.73595437226552,41.22472801218966,91.71863826491324,58.38117008873854,32.42042066885188,45.63999219887766,72.18103850253108,80.60703625379301,57.145167650718335,31.136158368760412,10.935034783212494,5.470696297836564,75.82089082349377,90.77585696999377,77.86466448050247,0.4525291302879708,45.60134448397842,61.30223812437489,28.626412790733045,9.479175752094138,35.61944736503174,87.88177109488015,39.86576474955401,20.523642319628188,43.01859638031762,29.635473434123448,77.84222121711237,89.50079482389849,94.891921766997,86.74161246433988,9.174110130824575,98.74981950107721,41.72629863466132,99.95520451731085,2.2865647131083966,10.450019871276695,9.146599404979938,90.1197814277624,71.93602691557818,52.11903092308976,70.33190042960969,66.37137819942926,47.17599199149593,72.61168964456218,1.0995584676560588,16.12816115657263,48.26300332866842,39.93287817215051,10.66605942601766,32.93440801373224,1.7827395826854109,23.15343873853921,37.82571793414916,6.556052319108319,93.25696663762966,70.56685414633189,78.9623131000369,73.72742813575981,49.69233411759689,31.068056685711433,48.56223217724003,78.19420327208647,74.89937251912222,67.64920539057425,38.806145205450626,51.728791079256844,22.875469769929623,42.76686996953568,52.72514334570866,64.2848693431033,81.9619277036795,13.494774944808452,34.12840117564272,38.53785273970496,46.16664038208301,60.99184325318616,18.379446914126206,77.03521514656822,29.263065231993323,43.164674137946335,91.04876517011235,57.386325234882754,93.76405279247793,59.52455163400816,14.639973711702526,25.395316119221167,52.10445595003378,61.32878310832643,87.9309648103502,38.14737794407175,9.945486128604452,33.44521872895423,24.041951080970968,70.68292981835862,70.51164832148135,21.328380213476684,71.09240395637569,68.97276298339483,84.44207182250365,97.1506916514954,35.851476276306705,31.81394152907745,37.38162990107199,97.66500722439237,64.04632474172017,13.557927411173342,29.086967732626224,39.46562790202349,78.84872986996612,26.449071624656696,2.1314317007680605,80.59088095497063,55.82683879346797,68.12643662493434,42.963843908421815,84.9357735343689,42.98781087172756,85.37008577016437,57.21052745787335,60.01361070724499,48.24932442728264,80.31157279414788,97.40902515421965,99.04863867441489,43.741589615245246,72.0261908211405,83.05340913372174,84.12904102677082,34.92432509862346,19.293371778300372,89.40031100130787,32.080713006223746,75.94881981821139,73.26632130604098,23.11474054477669,81.34081156058424,21.053543582394617,41.611511019720595,25.02942673302534,99.02575210398683,59.0764433248205,92.16144316493606,85.44175847304153,43.44617891766943,51.81736885850006,32.79470657604884,55.24291617566804,63.98141725687736,35.152345757264555,95.22522666654993,17.940106841665838,79.51777056022298,27.34868834289611,95.2837424541599,73.08042867626395,41.05137727349434,62.20685896346425,78.02013767195747,97.87552511539413,70.89301832215133,71.7748151132161,33.848268937581125,27.814760225269318,33.37201752729753,61.021215195751,89.83179443837454,76.71429540486751,73.25852859883858,60.75103585515483,96.40416419178781,70.51891575617915,58.741769363207,84.88819992820093,42.35979321735688,55.46920369895035,49.60760928007962,87.04564412523379,77.972609002969,19.952964593860745,60.57710303622574,27.222939965967285,3.347279890732835,43.62307933155225,81.35433582765363,49.70361248228473,38.35844755116716,71.15220220033164,83.25091379312612,68.96849825786462,99.43268975683092,44.8242956754872,31.337593945196218,75.21288458209608,49.3283618099019,66.59877231639398,87.11939102692908,35.086905223709365,34.29541119410919,90.44670813887143,46.42729995209077,92.7907086199942,16.53900473863743,19.933863617123016,45.66766489070938,13.697849469973168,51.31970588324778,58.3678881184062,78.61502403053944,58.3764649687116,43.30383824804912,81.05164604676858,92.35568866028913,55.46043352165578,56.04691102419325,53.561086877346554,34.83842234029338,24.632737719100906,35.04468201360154,57.40050028907029,78.95950000187946,72.08911644517406,6.179387663954616,80.96297318944413,95.73637718377664,86.27446155008904,18.809085413963633,92.98568417507549,6.373791959238728,29.062542006881177,72.52093284342679,67.57198468264033,3.538709962238118,81.71601377323955,67.13910024029147,70.49480598102865,86.52276765555543,82.32940960155628,2.274225468037727,0.1999732560730938,13.799839708201622,5.615186209301792,97.3520573665862,87.70833578845215,45.174901955169965,89.81354438733379,83.77102129875803,72.58514177642368,20.913350536163488,44.781375668703426,67.75458910974223,15.462753613147374,75.41760989381824,37.385743210534386,74.96757906978034,91.88590377579975,98.77739070784179,13.379349949847995,31.60894413972897,81.71697252127773,63.84248977678747,21.878957118690167,83.84521135883195,14.346328419961306,7.542513633419523,48.166643493801786,49.29690791171216,50.18105147766997,76.41439553940941,23.287972713616366,56.185934200702256,4.422804531599855,65.51808767271324,62.352690831674686,14.914281623490655,20.649713894397735,58.503063605518534,67.24036457445243,11.893132995030975,63.21919105215261,68.07132716572065,63.47182930219778,22.849834648351308,64.59115141104151,30.258919394367478,92.30598442084565,49.20144639339728,47.402629589133085,91.83383454927493,25.77301178164124,40.526704406886715,7.850166271650927,14.010213215341638,76.44980586586514,25.67151399202725,15.567261575614388,22.157461346983087,49.33157472859704,55.91117751863304,91.94932646172717,72.84083075442591,85.82272213591615,8.682719723787692,45.226345953005286,15.531842201232271,16.872116897460653,59.05943856057555,56.550519400642344,39.247206595936426,19.28749890770225,38.289051704019805,0.7828965082685935,30.352496103048164,98.81625511613544,89.21364685325197,42.385933430655584,8.386548456782828,37.81581148182682,70.63999863132,4.635032188224231,24.862829846920718,82.60838762208941,35.51932783375482,21.62145834684861,79.59127107018908,11.774986017739298,91.12814474514693,85.19375631538834,86.83908403014867,80.13762744191133,76.57730057126204,11.076069389962074,68.47995794513278,83.95593474865287,67.68362944204308,92.2745648006567,51.89379442859734,98.84929652255585,93.26056938993769,40.54003915909146,90.59520415125931,77.82921864434107,80.55764013160719,27.174300827887098,40.72563044873069,74.67937189693511,61.80116054331326,18.17439297468323,65.98882511038681,82.23090243371777,34.680917809502276,75.99973202041286,62.67633484921477,19.878530340990118,83.1346538145467,27.72346534339024,51.13442250687344,64.08254349038164,84.59992794294422,27.81154237654051,9.709299070186317,18.13281102438047,87.82934942802768,97.29814581909444,16.253120028697275,11.60089215928004,85.86470916337316,40.03409710890995,81.98522817446374,28.04905432770547,63.36978429272584,30.506573256601087,91.38736027735331,86.14373045265326,46.50827533154458,60.946309847081224,76.72500158482346,78.7726698564517,68.96806430189886,62.078041892473365,26.995106035440784,38.687367588971874,39.79575433142164,72.53408881947723,5.6370878732994285,0.43280956485940436,72.189864124886,82.03636306309157,41.1980229855648,34.031436367457346,61.65988315838188,57.884500924287316,59.93742298724678,55.13205681338442,55.9164021400023,27.547139182568348,94.35792932303272,90.03301227077839,92.34263850944853,24.786120786061506,66.20999831057911,22.705603309482225,66.94380229183096,15.89757425690016,65.3770530547159,9.933994235955979,66.40311893400973,8.373150994153832,86.71007029275027,36.20709272314105,12.110307058589886,71.15711743335692,92.4321502807597,67.16350501218967,15.359409429297743,9.31100668540159,38.426332080894696,0.13263636312276228,65.24340579059343,44.27768065707169,37.35359499547217,64.22443865386012,38.63271084278509,89.60250253998733,11.794916594900684,38.48814248010866,69.44057432383468,33.26445926735164,68.73178440434472,62.07711473368464,95.11976287015034,88.34910757834734,48.5124464349268,64.89799327040832,31.625996656695378,13.281466917789352,79.56483001660123,90.11114715754259,32.48146524048536,93.07685174617203,32.173441463073594,3.582264041694616,57.86542634090372,78.42904351884839,89.23325774289287,65.03954532399248,83.68777650553812,18.57777152371417,72.79442763058657,62.10285061300532,4.585675982205972,86.855014258421,94.28791715083219,39.19708212191433,92.30438493330743,5.687482685575906,90.33461182732741,86.76131741255533,77.92582535889944,88.90494180477062,92.02193451889447,24.67597386898547,24.258868452091875,8.360698014301493,82.37276912549298,12.371137543142819,92.95227899207609,6.139850118351586,83.00652388846058,0.522415456632308,57.83469038900703,42.16215648073588,89.27171212648742,67.87990407868004,46.248344728594084,0.7015389195337285,8.15539870392098,43.97990415384152,22.45370553752577,30.614870757199885,86.46913050390464,60.049176017229186,25.432438748379138,64.30253268591805,81.86307762881057,9.650204085400327,64.93427021321334,9.329576150652741,32.710592602415545,27.22423584742376,97.62977394859888,23.267288631219763,12.513468541448358,44.778471934482255,28.90166667411841,91.81745329081026,27.821347113239348,64.11961730195162,8.80112832047426,15.765802799193217,90.17535969984135,91.03958396689683,38.54682230488914,38.635999002814515,47.465340904854294,62.1974966640196,17.15525912093856,9.566641387284157,97.49265102730406,14.272078127908639,7.205519736181499,48.719535346716945,79.24043367933113,36.76849495804257,99.69555056029014,78.25654088943678,48.646093836006685,79.85339056744357,23.70020922505731,42.78676346787802,48.710468452916835,44.16653530048759,42.70588971169577,94.53114400265187,61.209077180628256,67.84145963665465,31.113883216386608,32.64149906849104,14.38937571675326,29.17358133206195,58.72019813453526,1.8791573539961193,61.11405018511651,76.95038956589826,9.935077736822562,7.802032139741444,95.44311402979606,26.497556447957837,69.6636483951012,20.304532775434915,47.4787511667123,72.21294399562223,0.6797661613668127,29.984552571289925,64.44024676005954,46.98033693411945,6.701981070052653,90.09265398457877,87.82053872519258,12.686711776584037,15.627429430230254,5.189599313827909,35.98002253927072,35.54861451273496,12.570138617714733,40.81030884966273,21.96753964370136,86.86298130033387,0.3347766655853901,2.511113853658964,97.37773884640876,89.98681943024131,0.38452670583016824,9.827299749847418,71.75025845352295,14.645594071704116,5.736357415787108,21.140482549057925,36.48559766737095,27.563212236572877]} +{"expected":[66.52987,19.41676,18.12726,3.678641,40.778538,9.070709,23.07471,6.34795,7.4228554,20.540548,7.218834,17.511496,26.118122,56.53931,6.2918034,9.135925,2.0140781,11.910855,88.58302,6.888402,24.649963,26.974815,61.361164,10.506815,5.385833,14.767126,23.46949,0.61616516,1.387722,4.8697224,76.340965,7.1422424,26.340157,14.532398,5.97665,10.640459,0.6066438,82.874886,1.9575224,2.8965034,48.339397,29.512384,64.91462,23.01027,0.69700813,39.9752,0.3379836,2.0521603,17.440823,51.52062,69.82671,5.118561,10.829826,19.888489,15.967991,30.365831,3.507904,67.554085,33.697006,13.766281,9.927558,36.055984,15.82758,37.63664,59.56888,11.913754,1.5339127,5.5161896,6.4825544,0.09002602,2.2998962,41.201687,1.6099434,20.453289,25.315838,57.81708,34.16303,3.9086018,5.8623314,3.2905884,1.0306606,76.26076,16.823118,5.404619,5.035469,0.8262863,3.5608711,29.663597,7.3283787,30.276867,48.121128,17.917393,11.708458,1.3353043,16.373308,12.608903,44.203804,68.987495,64.35918,25.835049,56.945545,2.909195,6.351411,2.1232624,2.164321,6.5169845,6.2811584,4.334156,38.301094,13.601303,17.357311,21.638218,9.705238,3.449901,3.5246334,4.2522507,32.685818,75.39241,2.388422,28.205496,32.32269,17.866152,3.305723,20.594614,0.739954,13.853291,29.9708,0.3660333,10.8353195,62.82954,10.465027,22.302834,1.014102,13.78936,17.298515,20.73599,49.110344,53.815636,6.0161743,10.257294,2.2234135,10.659363,1.9849719,37.595036,18.467876,28.227463,49.784313,5.38258,4.4102883,15.131554,16.6358,19.646166,18.047894,61.307343,20.78998,30.794031,4.925541,72.41206,32.58955,57.557713,11.894417,2.0924454,2.1180744,15.172066,14.944085,16.998922,4.7964954,17.603886,0.9028816,41.12246,58.078537,13.879768,29.140835,21.237,0.08041072,16.25745,0.76039886,1.9709187,13.588598,32.856503,38.349823,2.4373825,64.4063,29.550163,16.020987,12.595467,4.298794,1.8190833,12.860045,11.264372,1.4458618,14.011784,33.181526,35.023846,0.42315647,39.2668,10.896641,5.6620407,31.031387,22.827599,13.554565,36.14557,14.165654,3.7177076,37.708363,40.398262,64.050064,5.4263687,43.588055,28.057629,58.499012,62.679924,4.717704,11.740124,4.5350847,14.041649,12.731181,1.1128845,1.0519276,70.065834,26.753963,51.408566,14.838814,1.5725822,21.698643,24.91154,16.90184,25.695219,14.071783,77.80604,15.87048,0.39547634,0.51719666,9.9939575,7.572754,36.974068,8.191906,15.575943,11.510273,58.125267,27.469305,4.466446,18.357533,8.185275,61.553333,38.07684,10.205509,2.8730924,1.8871078,44.76006,0.8224845,11.2961235,14.623909,42.008156,11.528781,30.08666,6.787571,4.7130203,3.1636276,15.78331,74.17689,26.407898,35.933125,14.432377,19.416185,16.257885,29.848452,3.413795,5.65271,1.1917343,14.539146,0.15967101,55.328632,41.12805,4.9464035,17.123947,26.01398,0.20215988,3.1538467,2.1141663,26.419338,12.159019,57.01711,18.184404,12.602751,19.321182,1.1889709,60.03309,0.9663024,41.574493,13.8228,5.4067016,18.07502,9.759782,6.076275,12.817413,93.255264,8.538025,36.567673,12.707302,22.315357,25.86854,64.1841,33.604576,73.86537,12.26156,0.040754795,24.88544,2.313778,47.240314,28.907509,38.317337,12.565051,18.063185,21.091234,1.3306332,1.0095482,34.897522,8.374435,15.336723,1.2472637,26.570507,18.217443,28.379745,0.592151,44.207092,7.4183154,21.044884,81.28613,12.15848,5.6843643,25.120232,11.093372,0.42400676,52.017155,7.806366,21.34228,9.863205,5.3199654,0.4521408,18.075352,0.1264801,35.757828,3.8672838,1.4123688,4.516308,6.857658,17.974617,20.448189,41.87444,10.090813,2.5262213,15.094702,8.055084,7.7771673,75.29081,39.372753,0.53235626,88.28333,81.68734,31.073416,7.6135883,64.557014,22.977486,13.771281,18.847527,88.706764,62.93273,0.1801219,6.5053787,11.564595,4.332653,0.17454922,4.288086,27.008268,3.0373173,67.92736,28.15506,4.8105774,12.623659,5.719841,60.627377,2.9484568,29.458555,21.978394,23.16526,44.3087,22.039238,50.850903,3.5208,14.502775,4.0432076,28.101082,12.790688,68.94051,6.5555344,3.8481674,2.470231,26.358315,5.175438,52.12071,44.89518,32.260006,7.7925477,70.43559,26.84298,4.4700356,21.80258,13.330684,8.2137985,37.298862,22.979809,1.4555798,26.294281,9.8673935,7.775261,18.213087,5.119943,0.69138515,1.5161572,24.340038,3.539664,43.545624,8.00938,2.5278358,0.4679141,0.012242101,4.6816754,28.665892,6.409142,33.60718,2.442253,13.052064,4.2694435,8.194733,3.8766556,8.647385,18.477386,2.0479612,6.1534805,60.607018,8.009751,17.906574,33.810562,3.6845126,29.842758,15.512335,1.0628433,45.953938,36.18563,51.265053,33.261486,17.64399,19.530704,6.2250366,9.911491,16.553822,11.629114,17.6651,8.42126,31.982107,1.1683412,6.9380765,3.4598846,64.122475,23.346502,15.63763,1.7527261,20.047247,32.90246,1.2366333,6.6031013,24.573502,44.462833,18.686201,0.5865429,8.490772,19.228743,27.740562,19.524515,69.22965,9.410858,50.73088,69.86133,39.637005,14.762016,4.0283165,76.63196,38.519077,11.543167,22.728321,12.759087,38.08529,9.504963,20.28836,5.8790054,0.5486777,43.097897,0.42189646,14.022392,61.475677,16.184906,2.5170157,1.053875,14.917812,20.591282,30.677841,14.763698,17.611588,9.50021,50.296894,7.276742,10.386593,84.333916,37.64299,7.138302,21.269234,41.396873,37.09705,59.09679,24.018274,4.500057,17.595642,11.744255,25.027786,8.06891,6.3941364,0.10887081,29.954077,22.88646,10.048874,3.2664642,30.15966,31.945192,14.024307,16.720942,41.19401,22.36424,19.545572,0.8145342,2.7583416,27.21105,1.8172808,31.46438,28.610935,34.678307,19.852814,27.455193,3.5411186,11.628485,12.528885,29.562475,11.4119215,19.865105,19.006115,29.713205,3.2111645,25.944748,0.047903895,10.524704,24.77275,3.8995962,20.383911,23.014555,17.676563,14.15432,12.879667,40.06338,1.0618286,27.31632,23.536015,50.568443,28.246338,11.535179,5.7359085,4.3860397,0.9168663,10.615468,27.959694,17.855925,44.810715,22.644634,7.4776077,6.2597275,53.277424,22.53299,33.423645,6.4877644,0.07521057,0.9211879,11.388683,36.7452,37.72988,31.887094,31.265408,6.9347,16.926308,5.029089,84.54738,0.45423222,38.759705,12.533855,0.026915431,1.8027363,0.28375244,10.388763,15.705933,20.586895,35.96114,5.444206,9.957123,36.318176,43.293983,12.022926,22.598436,16.05852,2.996933,2.4141436,2.4209747,7.949999,13.230949,3.9467292,24.22796,4.7344093,17.054832,3.4946573,1.0817846,26.485516,6.3321,25.556952,36.3522,89.73882,2.368482,11.7519245,8.669441,1.8449244,65.65825,4.5008316,12.641203,19.5699,6.1515565,26.842432,3.1077857,31.405832,1.2869806,27.704056,6.1403084,65.6172,3.3294258,15.810812,75.74806,4.123946,20.693924,13.77198,56.503452,23.775389,3.1615524,1.1490154,38.187836,24.422417,7.3097506,0.92310333,65.01222,26.737183,63.476173,25.359444,14.390168,18.63094,0.15567017,74.50586,16.815935,6.7993393,53.61989,19.636946,33.01697,25.107553,3.5181274,12.87297,24.167135,28.280907,32.852314,40.64561,11.948841,9.399284,9.064812,24.897127,35.93444,19.665054,3.7991924,40.902645,20.58641,4.1752396,9.732598,67.09538,4.417243,16.60696,22.81814,27.877083,9.878427,30.34629,8.3459835,22.242262,0.37530613,22.35902,52.604877,14.513992,0.9040686,15.968018,2.6225863,0.17718163,8.262556,0.305233,5.8884134,28.294426,21.537033,70.063,18.72476,49.87138,61.189117,20.19297,4.4484406,29.2459,69.23424,9.742287,13.024067,17.143244,3.445448,43.101913,1.3181896,0.23569489,11.551706,23.294634,4.508499,76.702866,4.3158917,75.82071,14.198128,32.804504,50.620834,2.7363596,46.953274,54.724392,40.53938,26.367418,43.850506,8.322805,5.93528,1.7634811,29.789322,3.464849,4.1571617,41.567764,35.651688,30.809322,25.4012,24.190788,1.7846823,2.409859,12.769119,13.992947,5.107603,16.191795,8.398777,6.703575,3.7467346,0.12544441,19.810493,56.629623,22.752104,1.555534,34.86911,27.31605,2.614497,33.799694,3.3316908,32.740326,31.654425,4.6919127,13.468277,70.12754,29.453457,27.41766,7.00613,9.550568,8.797974,62.34881,24.173088,69.82715,14.899774,5.267128,7.9372797,8.707647,67.31946,31.58492,28.017563,12.389612,38.672318,15.892781,83.43885,18.486565,22.081717,1.0467911,1.3752422,24.77046,43.40455,40.432552,7.3178263,7.93211,5.2422657,0.10485077,29.327023,2.4690363,3.9213257,7.307329,18.047134,62.119343,10.342245,1.6794128,2.360355,3.8916912,57.80408,18.574512,31.89346,86.18098,55.711605,37.638374,15.96997,35.83897,24.761948,2.5206652,2.7500305,24.004894,12.917016,8.264529,38.138218,11.998562,31.975906,25.787369,4.050192,2.3612816,30.609911,3.225358,5.2348213,24.863195,46.844368,71.035164,42.75691,2.4144745,15.564682,0.07630332,31.15538,3.9374466,30.629341,27.194067,3.7761037,20.046204,4.7286654,11.854799,34.493095,0.5877609,29.805363,31.314056,4.7635393,51.658318,50.0275,29.746761,0.42765427,4.7195225,26.06112,25.985653,5.005624,2.5115929,84.56646,7.455307,22.572044,16.988777,3.0468636,18.637833,4.0402527,4.775094,4.043437,7.6718025,10.429242,20.0542,32.14036,78.88116,0.0953598,2.6085691,7.055233,9.755061,3.7860374,21.9247,3.077064,13.243935,40.75771,0.14879608,22.93478,0.20737812,54.00552,56.466156,0.5778465,5.0589943,10.365898,13.340931,12.441838,16.939346,13.702473,2.5769348,53.359444,2.5741558,84.904625,2.626462,1.834319,8.0446415,1.540802,27.546425,62.106133,3.5268326,84.45902,59.66171,15.873761,16.578804,11.317722,34.624226,1.8176498,3.8726196,15.871784,0.65073586,1.338438,2.2463949,5.5349846,18.039398,17.50927,11.851555,5.5320396,3.0893557,7.2946205,25.684246,2.3975983,27.488747,0.228796,9.776238,40.454258,1.5865936,3.157148,12.1077385,2.0895863,17.918226,47.56394,22.940742,12.330386,13.396844,11.786007,6.5343056,1.9857901,24.289139,8.226143,12.84307,14.2540455,53.003777,30.99564,38.12807,55.11637,7.743458,49.471363,5.2185764,8.435276,53.70069,77.92926,32.91632,40.839996,69.02879,40.680138,39.84538,73.17513,1.0779729,15.626278,40.789047,13.648933,18.160116,1.6896908,1.5363121,5.0230255,25.464342,1.8317871,7.8387833,0.8331375,0.5252228,20.997261,2.0663567,75.81203,29.57636,29.923985,43.75215,7.4875636,66.18195,2.379095,12.838312,20.053778,26.296783,19.771095,1.1690469,0.9044838,24.472134,10.627422,77.482346,6.4134674,54.2756,43.156387,15.672325,14.040756,30.175873,4.715046,14.514584,41.663273,12.740839,20.238781,0.29684448,21.694767,21.53629,3.787241,5.05392,2.8770962,4.4691906,31.777187,23.381184,0.27808774,39.51701,23.37739,26.847145,35.36371,6.4205933,17.878769,47.447956,4.7448883,27.867786,18.565836,3.564289,4.1272535,7.2275963,0.09000158,25.946495,0.30622002,1.526349,7.7906113,40.66886,59.847046,4.2751064,2.6742668,45.632072,33.325325,11.063587,10.508648,35.559544,10.946432,5.8085175,4.110011,69.852974,7.24807,17.69677,4.422844,12.670242,86.66004,2.9207687,14.885969,11.077545,3.6618176,31.04517,21.23608,16.552792,58.417988,37.332706,35.609596,44.299515,3.8722076,49.908104,22.406101,53.026196,54.403545,2.1347315,6.4240065,25.63313,31.630016,9.126495,23.78672,38.462334,10.271261,1.2724097,20.366537,6.235737,9.696828,63.18074,77.36626,1.385788,52.396095,11.271141,80.58958,0.2525783,1.0896717,55.7318,15.015015,48.917477,18.645142,8.488846,35.24078,1.9412823,20.84251,12.505521,16.711403,29.888702,5.8334956,3.352315,40.322758,1.9170685,23.019989,6.6441154,13.802904,33.872643,1.1291381,7.0706406,15.257782,6.7744155,4.3917847,1.9716091,3.4998474,22.21423,8.07312,19.708725,2.4187012,0.23618317,35.577496,79.99928,18.48662,39.6911,7.87671,40.654396,33.0175,0.9561844,45.862453,10.400585,93.58918,18.059814,30.55046,42.054195,0.0950675,10.653633,4.4775257,65.868034,3.520563,26.25607,4.617304,6.4065742,5.935934,8.301792,22.463577,3.424409,25.884365,14.99402,56.66596,10.177918,16.00888,7.6480484,33.042416,0.20923615,61.75126,72.96567,24.222244,28.367489,6.515068,26.084978,1.6200966,15.514038,4.8728905,46.51097,30.7403,3.2014236,28.704782,21.295195,16.93578,11.660811,5.647028,12.53784,27.282047,14.616346,29.476803,35.008717,9.135513,44.659317,1.238251,7.4957504,17.090618,72.87715,23.050104,40.255207,58.5411,2.783465,50.128716,20.3799,26.621834,19.88227,0.49838567,31.541418,7.2567234,21.535694,22.0709,14.91603,44.404976,34.492405,41.825047,5.490013,94.970955,28.594826,47.83269,65.08758,36.16502,22.18175,47.04834,1.5117311,3.2754097,56.020733,36.273464,34.870285,0.1674509,14.102842,14.897263,10.239632,53.11909,56.755383,8.880215,1.739418,40.06494,47.530483,11.706881,8.955599,80.750404,26.339933,5.043213,1.3808941,7.381256,2.625145,3.5101376,27.190393,19.993393,35.0107,7.1383286,16.349817,18.108765,15.361992,31.919067,1.2012119,12.363289,20.323643,50.992676,22.101583,55.572422,47.792248,17.58334,9.042399,6.6754074,1.2528114,31.112162,18.754173,19.447367,27.793468,23.16571,14.931509,1.8570557,42.93436,50.79481,9.803684,16.04706,66.243706,35.228657,14.611122,3.207077,10.058778,20.255054,26.939661,57.686047,34.710773,4.709034,40.439373,2.6400127,8.4682455,4.5095367,73.667656,2.615613,5.1472015,24.669682,5.31427,2.1157513,0.08602142,10.835362,4.5194745,24.74841,16.618824,89.935135,45.83207,13.48002,26.932686,24.53822,44.142014,66.32582,10.404655,12.901657,39.678696,11.530518,18.544044,16.385757,56.350685,2.4537792,8.849955,96.06093,6.2150497,13.933672,13.348915,24.810287,24.37208,52.552883,6.8535767,12.794644,15.388344,27.984291,19.953255,1.4077199,7.5308533,27.912373,20.183105,5.363353,2.0512266,6.505665,0.9808626,42.9055,23.38671,11.735181,19.37063,0.52970123,1.7672043,3.347146,4.0439377,6.1965637,10.804459,7.435774,27.19643,48.242542,5.74691,38.113926,83.08624,44.592056,6.56707,76.0182,4.5798836,19.100529,9.72019,25.38913,20.906685,24.990562,7.4939923,3.8957558,18.740177,98.521904,6.0252085,1.8914723,1.5012245,31.159908,7.724491,19.890232,17.21576,31.672737,21.536217,9.829407,14.415592,38.083996,11.403672,28.409784,18.120623,43.520546,12.819422,63.509586,12.103203,40.746956,43.01536,30.472694,5.350198,61.79567,53.6875,23.19395,3.0778656,0.3111825,8.597618,24.500584,3.8792877,8.602849,0.81811583,25.020844,73.11674,55.5701,0.7380624,79.37218,5.297327,7.754898,33.661568,20.511604,4.016706,5.0794067,36.216385,10.070264,35.197823,0.24685848,3.0513465,5.373337,63.544792,0.6099987,19.059868,6.3300476,30.36797,2.180275,13.566602,10.9375925,41.139263,27.430592,1.6641235,11.579873,0.26124477,1.4847708,21.279081,13.703949,9.763443,0.3155732,26.26011,30.296381,13.264745,22.528856,1.0770094,7.770012,17.622656,1.8486404,79.47349,0.0097203255,18.729946,22.747799,16.603004,0.9133301,34.376057,29.855999,38.24321,0.8345957,54.2083,24.334845,51.22108,34.213142,40.37433,3.7225418,62.989597,7.583973,17.875786,9.078089,33.171787,16.003353,4.6753516,0.20574951,26.039646,24.362846,3.425273,16.671001,46.978657,12.708338,1.1295118,0.08025932,2.529488,1.4746399,36.642002,51.184223,7.329178,4.8294373,56.187073,3.0534515,0.19162369,2.673874,57.108242,35.549953,17.696432,23.029173,46.18496,18.832714,1.4858832,43.47452,29.277039,6.5120726,46.23595,34.230335,76.9062,62.172184,13.564321,1.856014,4.1489897,0.67305183,18.589298,53.766106,2.33997,3.605564,0.6749456,18.14215,57.66747,1.5720825,56.699818,55.005737,19.335693,5.811693,24.964165,8.677406,24.208544,26.814049,33.662807,0.78871113,11.476433,26.070156,16.287586,7.641109,35.434654,5.365142,57.120796,37.136124,32.16161,2.2974625,2.9117336,14.7267,22.064388,2.8302155,13.471954,19.87431,45.761017,8.0543165,34.577126,37.49414,23.343908,8.977505,1.6627727,44.418285,0.24671936,1.4457732,0.46307373,44.156982,3.301052,9.01754,22.295938,22.912792,23.592775,7.9448714,0.9064102,2.601012,25.722956,6.08436,8.160477,19.587463,15.2738495,10.004814,4.2242026,1.5948944,46.22484,36.431965,10.173273,19.78347,2.7175827,39.058044,12.549638,59.54295,7.741768,37.889095,8.612324,19.152544,9.360672,63.70391,29.247276,6.2080193,39.445972,15.121666,4.0160933,8.496651,90.27533,32.159035,6.046926,8.412674,7.22554,12.378686,8.015764,45.28254,8.111909,4.4019794,26.688091,17.751137,67.97768,17.292778,43.712894,42.663425,3.2559204,6.708576,16.579956,33.350895,3.2964382,0.99956226,1.9151869,22.944647,18.57214,45.494225,38.049732,29.559671,68.79842,1.5521469,2.004139,14.069893,0.04944992,1.1673813,0.47839355,49.203712,45.006157,17.338184,2.737442,10.732811,11.649626,31.051086,40.645374,5.8653984,12.535492,24.878843,11.142433,40.030693,5.126711,3.6251106,10.346314,0.12484819,13.617266,16.209385,12.73785,42.613213,0.12953377,41.830177,16.3592,8.392338,3.5306015,19.602623,16.411774,11.342978,7.3786125,0.6956386,22.4248,27.469433,5.1223717,3.2070773,27.176447,21.852407,5.275173,22.664093,39.336346,8.688007,0.3434472,27.068895,4.987324,65.83038,5.762566,0.37048626,0.66553116,43.567444,4.74016,28.280172,7.9416275,43.980236,83.21405,8.076698,0.5049606,46.759712,21.420914,11.636302,20.368042,6.3220367,2.2050781,69.08076,6.935602,13.725273,0.47175574,8.468021,30.095314,78.91789,2.0651197,67.96346,1.7250214,31.644642,12.114429,0.046165265,25.990309,13.938656,7.1161194,39.37047,32.485416,10.329937,5.4091835,6.5499115,63.834034,13.096474,11.259795,15.200104,12.853321,13.237404,0.46245575,79.634865,42.448055,13.172453,5.1497383,24.728615,15.849367,78.757706,49.736115,5.424797,6.0223465,7.2018356,6.2832923,8.186772,5.436617,19.898968,0.022575378,24.129423,15.002824,8.745654,4.393091,12.240547,34.35549,5.7889786,12.201279,37.097927,13.815817,25.011932,44.733597,0.76419544,3.0655916,7.7928705,9.68407,14.048393,9.84256,36.224724,1.849678,15.720802,0.44903946,19.184975,15.88672,52.628674,16.553808,9.83647,26.831808,33.145466,2.7195435,0.01604414,79.25777,0.63380134,6.4879327,32.54745,70.760025,22.212776,25.658003,65.182335,7.6983013,33.954666,34.427124,14.717728,69.30659,37.144722,4.8886085,32.491932,14.678907,6.53141,84.90808,4.4585977,72.43789,22.018242,6.8011093,29.190737,46.519627,1.7555633,32.22745,42.847843,7.394314,32.261642,15.3832855,37.661633,57.180714,23.313936,27.462774,64.561775,1.2323022,2.1930785,55.603237,1.8651023,11.565602,59.68181,4.937317,29.095911,19.917953,15.494149,5.8346176,0.08837509,13.259704,11.552078,7.833421,1.5533309,26.02701,13.730853,20.821934,11.898878,24.878658,27.904154,26.308867,24.408468,0.61975026,49.193245,84.79518,0.9590988,9.361972,49.992233,65.178406,2.081726,9.347568,24.276112,18.87399,4.0977163,48.109356,0.3518981,4.11891,20.269388,13.973472,17.703903,65.32575,64.27909,2.400896,3.2737103,0.6383993,37.745743,35.935333,0.044731975,47.254734,26.181883,33.795944,8.649307,5.071051,5.2972436,7.333017,12.06871,79.179344,16.656168,0.022327423,36.02938,25.726349,0.07721767,10.280554,66.865295,51.707172,10.393719,1.3912239,0.7418741,15.106085,2.8733454,43.28234,32.520123,6.65679,35.516766,3.0304074,1.469429,9.930859,8.378681,18.293861,3.546894,5.57308,24.784971,19.10376,15.7143955,57.630627,44.828766,39.853584,2.2949562,70.54423,21.586067,13.365236,66.32532,19.398739,31.394651,30.40578,18.733063,5.0308776,33.202305,2.6400032,1.6714149,15.515213,10.425875,15.128944,12.876192,58.59992,39.567703,11.546719,1.864685,8.468565,18.51988,34.22794,49.655346,22.426298,35.93356,27.64614,12.709763,11.0825205,0.9722519,25.662428,6.760624,27.30615,11.068832,45.19164,4.470207,2.6158905,20.627132,10.823617,3.712653,6.839493,30.767052,3.274622,51.034447,0.024900436,36.174152,4.589917,25.501366,38.871178,0.0980112,32.7658,34.808216,13.9720125,72.55077,3.2939644,7.53911,6.6036606,4.750717,23.021935,40.79856,25.851383,55.923492,51.475697,38.08338,43.650166,1.7101858,27.927658,14.025696,19.31681,2.1223984,7.904003,0.73938036,12.165355,13.134026,3.5040188,15.93623,8.299156,7.379093,43.118248,45.773464,12.401283,32.918663,33.449635,79.1405,76.59903,7.712966,13.376116,31.033762,3.396305,16.785645,11.905224,12.225416,65.982895,6.2817535,9.632941,1.2875214,60.55819,41.211388,49.88607,40.765816,29.683302,2.3858376,82.31707,11.82642,23.501507,1.4578109,3.7435894,22.70822,0.8269286,8.565176,65.86444,75.53056,5.0389385,3.545395,9.957991,35.768673,49.58492,73.56028,2.0994892,59.514977,1.5708141,2.1339612,1.607538,7.233732,12.889138,0.32084084,31.095491,9.3699045,22.00551,69.35916,6.9181957,71.17881,0.60420513,25.999542,5.8131714,2.945949,19.140703,25.224228,17.041824,1.59928,6.726494,58.18752,0.13649589,12.621409,3.1276054,21.683197,10.416973,86.99724,85.22752,49.306732,11.199922,20.08308,16.898117,25.36126,28.904795,14.202473,29.798439,0.95676637,35.15952,17.728573,23.453243,31.11872,3.1808255,15.0826435,0.9767091,3.4273458,50.787197,9.9949,19.023426,49.99236,3.0249481,15.004726,14.444542,24.392353,37.873516,17.000565,0.1527617,38.03518,2.875595,4.7899575,30.782427,2.07548,4.16066,5.8409,14.183483,21.23872,17.510632,71.16383,43.062202,10.602718,29.036324,9.659058,10.270102,41.59062,10.301376,17.891376,16.34956,3.898076,17.053276,1.120018,1.6644156,7.2883835,5.567279,37.16466,46.291874,36.886353,0.2721672,12.728043,25.412071,38.491726,38.15518,10.535309,4.8572464,0.13441692,4.265703,45.634476,9.779311,67.14882,12.843082,56.529163,15.425961,89.31721,21.877542,40.216496,36.503845,31.712402,32.35478,37.348454,36.68155,40.06171,27.604916,0.6097305,36.8237,7.1806316,16.625484,44.364704,35.179996,45.705173,0.23612976,37.529858,49.526424,71.6609,2.1383038,4.0985546,28.928013,42.887474,17.678045,34.16182,52.55698,3.043419,11.544682,16.406414,1.6637287,1.3568039,2.3134956,25.273527,3.1256065,22.675514,34.320667,18.222885,1.5633783,5.2987137,5.444183,11.355768,0.27380943,7.3842316,28.362106,27.504456,4.6111298,36.159702,32.259068,10.747832,4.1042557,34.854565,6.610237,29.867605,9.997868,1.9043511,48.424797,47.778584,46.05262,36.54232,75.467285,22.648903,9.117826,2.8146615,48.157364,12.210166,30.257217,41.60344,9.032747,39.845753,19.377533,27.666342,6.289708,0.5744985,2.5354958,5.089699,87.58888,16.71981,1.6823063,0.6554166,0.47331405,14.833553,40.840683,0.83586675,8.985776,8.325127,3.6553116,1.0798607,31.233269,13.091763,6.220085,11.116832,3.7974148,51.390938,7.3476934,32.486427,18.528107,4.439502,28.826893,41.019653,8.1859,3.6283913,10.035892,18.153435,30.306492,5.0830765,14.986159,60.619576,18.868612,41.80112,15.130295,8.410694,8.340469,3.1124344,18.260193,0.6512737,12.626316,27.282475,21.243454,3.1043968,0.9584837,37.935944,18.486164,12.911011,11.613087,5.7084084,17.027084,1.4506588,94.58558,5.705907,17.002958,57.83157,2.6501331,30.322264,16.509764,6.3868937,36.052795,17.052177,76.10828,10.0310135,2.05188,14.554415,10.231052,22.888035,15.022349,11.352665,2.7927952,21.504745,40.5973,60.677696,21.882812,4.0730915,0.31374365,12.089413,3.9465866,21.691452,21.323761,39.9144,24.91027,36.680645,5.003689,0.7788125,11.384522,0.026695251,51.70214,25.86199,27.095417,4.89909,2.2272415,6.526661,7.8251953,40.654476,6.4679437,1.6468887,84.941315,14.805607,59.298954,4.392922,9.616539,2.2089624,48.809376,24.70249,0.88583946,14.353409,1.1424537,32.328217,0.4075935,35.005337,2.6593018,5.446793,32.999058,0.90649605,18.801918,4.5050497,3.609785,20.616545,29.141642,0.15728426,19.884186,51.315163,57.58818,18.464489,13.536199,11.551895,9.587898,1.8655815,12.265223,41.928356,42.5162,2.055704,55.224205,2.3297806,6.545677,27.980005,1.5033302,58.47776,79.29689,20.074547,6.094803,90.63277,3.4382591,6.005129,14.618427,32.445168,62.122677,1.207489,80.656166,16.906319,1.7441006,18.214071,8.240627,24.349195,61.57604,45.958633,3.8584406,11.015194,9.12847,9.186062,17.987526,20.166946,56.075565,9.806307,1.8310184,0.6024758,21.106916,9.73083,6.7134323,8.863289,4.824949,44.146843,0.45001698,46.68182,36.804123,13.834284,34.4384,11.438101,12.86132,10.919406,17.270271,30.947788,1.853363,17.915089,8.47768,29.991028,62.196762,25.678062,1.9610815,15.566228,2.1912003,49.402393,4.0035815,43.43612,11.306129,1.2898235,70.311775,23.410881,13.664365,16.665405,4.3368177,66.62506,22.60177,1.3615971,28.866844,34.78115,26.805763,28.052448,83.53282,20.882103,16.75692,22.20671,0.07396889,45.585056,51.278603,24.537567,2.8939323,37.14083,37.979935,6.0126457,48.689922,14.617705,14.553349,10.455899,3.4947891,3.7067375,10.418887,9.5852165,19.52985,6.4463663,45.059998,25.381083,12.098705,46.286175,0.36338997,3.06903,7.8381405,14.916536,98.54975,99.08183,22.750366,0.5145912,29.302303,6.554016,77.626305,39.273434,55.869537,25.226313,22.728348,50.270943,66.92471,9.966155,78.73913,1.9657726,10.829631,0.5130429,1.6413804,80.77294,39.185787,16.855354,16.056496,47.25886,69.67286,18.176464,53.65739,25.658758,30.916069,1.4944578,3.1854248,9.699722,17.646778,50.12793,65.113396,7.166795,54.888218,5.0981293,19.845577,28.05115,0.20645905,17.076202,18.023155,12.849719,5.928978,18.801796,2.5290523,35.569183,12.075075,3.6280594,1.1684647,67.58051,38.735783,44.952316,10.53793,14.51976,23.5682,62.88701,15.718269,34.403324,25.097794,6.144371,50.69228,32.894497,18.80273,8.974937,1.4302216,28.582163,23.557106,26.256868,31.047497,20.795288,0.0048348308,14.333899,8.541504,51.974564,1.1921177,31.945047,10.782342,11.6465225,43.30471,12.407875,8.823089,1.5455399,9.469966,18.422615,20.322718,34.698574,94.22938,35.72141,1.3897552,5.163082,17.676456,11.083771,19.574032,5.3746457,0.31824493,86.78004,0.19981483,67.67726,26.416233,0.8578741,30.631266,2.8916938,21.003098,15.0174885,2.942089,24.821566,13.773625,34.57698,43.30251,12.218367,31.923317,1.4437332,9.321264,7.7894287,6.6219864,14.397545,0.3506317,69.45968,13.897584,17.67308,14.417444,0.8422327,37.02081,3.770647,7.1657352,37.899235,19.500645,0.077168465,54.945114,69.41325,8.246376,30.451145,0.6233356,0.31991577,0.13948059,60.99948,24.148485,75.40379,5.8528094,42.824417,72.13451,6.1569576,14.324303,5.217975,20.543324,14.181377,5.3583307,2.4897118,53.426594,11.730529,44.753742,18.920341,7.2444496,11.658254,1.4701536,13.498322,50.013786,29.307884,15.913532,19.293694,8.224197,59.850986,7.239708,45.679924,63.726868,23.593725,7.784369,28.615284,9.799502,60.800106,46.35511,17.896736,31.404915,47.01446,16.647144,9.514063,44.035168,9.216995,4.727,45.969906,28.699318,7.655528,6.1999397,0.8988724,0.021935433,42.03621,51.38831,5.7096233,25.763266,28.887474,43.853317,20.025658,13.967091,14.038265,54.918667,21.121895,15.877258,0.5682373,8.252819,0.40131092,0.26460838,17.302649,26.633278,41.905853,13.112061,12.227337,24.75801,4.768936,6.208436,1.0744858,8.742414,46.624485,58.6953,2.2574441,18.015274,7.117074,81.62091,23.30876,59.524906,13.67247,1.6412506,52.980865,1.5840157,46.35653,17.050514,13.937564,0.58716667,16.454372,72.221275,40.582207,5.183818,18.944214,10.545151,77.19524,21.946594,74.132,3.3562775,26.458458,24.109072,19.045952,44.428375,1.4967899,23.60408,7.289879,41.481186,1.54636,0.3426367,4.2894287,79.46869,2.5072327,8.309677,60.578754,38.969463,39.90771,18.963463,28.761967,21.15196,1.0936737,13.284004,14.144584,1.745326,36.776863,26.944283,13.726517,0.8963947,21.318384,11.242104,22.449993,16.12265,3.3269012,10.439354,42.023388,24.392162,3.9336195,10.153038,53.412468,44.96086,24.897682,2.2102509,82.663216,13.66109,2.4656906,68.84985,4.032897,2.7613373,3.982936,0.0756197,9.633202,30.978958,18.09866,10.510438,16.61602,35.165375,11.762154,11.11987,5.4383698,4.6405067,27.234497,6.581198,52.02347,1.6033325,2.8801994,36.613163,27.590052,11.054794,12.042351,35.328552,5.2601776,4.9231358,5.4069614,6.635113,1.1206479,1.8941159,34.914474,66.318855,0.69955635,54.874035,0.0766983,1.0114075,4.380039,53.31708,1.599762,74.85296,0.66581726,16.718418,64.652115,17.635544,16.276691,16.444862,91.55783,0.4855094,16.243248,11.502823,23.12363,18.57197,26.418564,36.701298,6.686388,6.5345306,26.0474,4.119297,2.2290802,7.555159,48.61436,4.6718407,68.59926,18.597054,14.079021,0.83585507,3.6137238,48.192448,57.278595,33.81946,74.47731,14.855156,53.078907,1.6513748,7.739975,11.252369,4.7223015,1.3686028,5.6338263,57.01673,55.01393,29.827991,1.0681353,25.17311,1.3849106,11.728367,26.734724,7.581423,11.840626,6.244,0.693928,2.0768707,1.3164294,2.7111635,8.127995,6.0128098,36.618958,39.671627,55.626312,33.52063,23.249617,10.370441,1.2204523,55.96203,75.48078,94.51571,33.701668,25.116652,2.8610573,16.835495,8.621586,39.993027,15.905038,17.804932,1.2281094,4.804123,46.940006,8.888329,15.253676,21.725525,4.1718435,8.032654,39.338974,12.432049,11.031872,33.86849,11.115986,81.73874,19.821285,16.482267,43.62352,1.5786057,53.29562,1.9346619,20.886967,46.90144,54.77932,54.7895,20.698181,20.555412,5.050762,7.045799,17.207409,4.574423,15.452242,4.0745544,59.494057,43.904125,35.114895,13.128983,9.331752,22.516113,26.042253,44.27643,31.065378,4.2120085,2.9087048,71.29866,7.1146703,22.643326,6.757243,2.255437,24.559662,1.2885437,77.05608,23.7931,12.3178215,29.554102,51.803204,13.078762,18.799135,3.8441772,42.050777,33.798832,39.000114,50.879704,20.915453,0.798103,0.5508151,40.533253,53.829365,11.560416,8.595498,29.005522,7.1193123,0.5028801,20.042763,0.022147749,10.912376,65.79406,77.16842,81.048996,6.155124,60.407074,10.421064,13.774079,67.38811,14.207073,11.827629,52.916183,53.567608,9.344724,31.318363,12.905592,1.9633894,2.8591354,61.135235,1.7379131,15.295395,0.14678541,98.03869,52.78532,43.062023,15.301829,3.2587008,49.080105,0.91263294,21.874771,9.352493,9.69128,15.940475,11.395587,1.9165459,45.748383,9.411644,7.593376,5.71476,18.08725,46.764046,7.975418,1.8195343,69.53403,12.024879,24.579695,3.8157008,2.6744642,35.15022,25.163961,49.399704,6.0181785,13.496719,34.12967,25.675892,0.30828762,2.7812958,10.749971,69.011795,27.540382,32.50743,33.75396,15.5811615,0.71102643,3.0172281,0.6844615,16.660069,16.740952,7.5723267,28.083206,4.4071193,8.809687,10.814697,3.4368048,0.066015065,7.430317,6.1625443,66.33526,14.1759405,19.07717,93.61802,4.7698593,15.53152,13.027542,58.984814,4.891048,31.346306,39.069904,0.27817297,79.58706,36.992958,3.9864235,18.345047,25.8572,1.9785271,57.823353,17.45351,35.871193,13.512405,2.1424112,24.337332,1.495224,0.78302765,9.222635,58.637905,23.483301,2.4829617,5.213501,3.1803796,1.9283562,0.9979162,1.1419668,21.649727,7.512039,7.725357,3.356639,22.04607,0.16728926,4.4210587,5.773033,0.6697145,43.03002,1.1085064,5.0362244,38.041187,27.9692,15.205513,14.628789,11.820196,11.714333,14.456179,23.908903,6.0183454,5.6780486,3.9399312,1.2982635,23.374027,12.198542,5.679779,54.369816,0.99681854,0.21118641,40.548656,36.991455,14.724968,0.70917237,9.499201,1.9513397,28.216362,23.010525,70.9933,13.60235,4.0563197,45.8805,43.16925,5.8398304,10.571318,61.344193,3.3331757,0.8636875,17.739208,7.2277603,28.463509,9.9388275,1.5159626,1.1193161,12.710924,16.361206,12.34886,2.0127645,68.27377,29.334644,3.9524665,5.406025,42.777725,12.848221,5.839142,34.073215,19.553627,10.465248,55.851124,53.169067,14.237607,37.933952,9.854462,13.1348,27.949257,28.13673,38.92097,4.84956,7.4707103,5.1938477,75.68731,24.64395,5.4212446,9.939224,0.6166821,10.036224,93.0386,9.057533,12.80558,1.9497257,81.810135,33.436203,2.3833466,16.723526,13.187508,5.6652145,10.991848,0.91641235,6.5664864,10.734696,21.28823,6.1960125,46.63148,10.180382,8.990477,3.1597214,64.52944,26.194092,1.5985489,19.786285,27.872244,0.3119526,11.521988,3.9168322,34.532715,6.5650024,73.57843,24.5429,0.63455963,77.715034,0.17650461,2.49726,31.129341,13.926701,2.5951433,15.476532,25.473734,10.88591,11.010772,1.2414274,2.9336853,6.0445023,5.3734665,82.65565,1.455368,0.4086151,13.305067,39.46445,84.634674,42.966087,6.227194,1.4509053,22.124765,20.92945,83.84082,7.527347,43.576073,11.216627,29.732773,48.42222,12.130196,25.216572,34.120453,24.16599,8.573717,1.7725282,44.844944,7.902505,61.46185,16.63297,11.988564,2.218204,3.6155186,84.30443,60.057724,38.301247,6.2617893,57.048668,19.333138,35.794205,2.9482193,73.16197,26.330507,2.4252443,18.828766,20.405678,30.759487,1.2046814,30.678207,27.658043,21.448223,10.677166,24.495419,15.343712,15.770695,31.820415,64.15269,15.681635,1.5483975,49.51421,33.08929,18.64444,25.242672,37.808487,22.453678,0.4145813,6.703619,77.44539,18.213654,0.0535388,0.9724245,10.765242,52.381954,83.27069,9.28602,71.703445,52.622288,73.95912,39.52953,30.082087,19.546791,12.592072,7.0740724,0.05505511,6.4514475,2.2408295,6.080686,53.663784,50.152813,7.6583405,4.756752,67.37668,1.9416618,70.25401,0.1982956,0.33824158,2.228897,31.969387,2.3502655,16.573011,4.703682,13.13741,4.172241,35.463367,58.257973,12.964499,28.079906,9.9023285,17.41568,40.020233,16.189735,8.466366,38.752502,19.689156,36.291756,13.003478,0.90346193,7.4770107,18.905136,14.044449,1.2052231,51.211674,43.77133,19.672108,24.50096,40.952213,6.2774696,1.3951492,1.9763632,17.728863,35.498486,7.9017944,89.7504,6.3063774,8.195305,5.0915833,0.033613086,1.0805111,27.140242,13.667175,31.922955,1.588417,30.863567,11.759014,1.014637,37.404785,7.732816,2.07267,11.265575,23.07085,62.281963,18.593655,33.012398,6.6400757,27.16725,5.6982574,5.085388,48.273396,8.681997,4.4445114,25.10881,2.8683434,14.121901,9.221701,59.576374,26.051682,0.46175385,13.699043,8.240321,41.42775,3.5792274,44.77983,55.460274,51.414837,28.504313,66.4456,6.05513,1.3446045,39.70605,27.913902,8.315136,42.381306,30.903313,77.14525,24.467226,1.9641838,20.75452,44.46311,44.34267,6.157318,65.079384,7.0609283,37.296707,11.957174,19.1829,80.67776,14.247991,7.976162,16.844109,68.760345,21.021088,8.516419,12.331512,29.618273,1.0713997,9.533028,43.06664,53.162144,0.56624657,28.753443,1.9941082,13.881534,38.724895,0.36264348,1.3750792,1.9336718,0.7762222,66.2124,6.231983,16.65963,10.933376,39.153343,3.1102219,94.650536,7.3884926,46.568424,42.05771,6.192198,0.12016535,30.671028,6.160637,1.5570915,2.4727118,29.542912,8.733597,31.737062,8.332123,3.15493,34.802418,3.1565194,10.847145,10.1738205,15.466537,38.445335,4.488495,25.70734,15.049206,68.74265,9.258686,26.946817,39.759583,19.445686,28.329807,19.139957,52.22987,30.656334,3.8233643,23.475681,0.8017864,6.0167255,27.811249,27.117905,24.635124,36.562702,64.8256,53.862843,2.9230118,10.115082,51.98416,0.38204956,13.3074,34.778046,3.051965,38.51325,15.540445,1.7772808,25.929443,7.2230415,1.1255574,2.127822,5.6155777,3.0105038,26.482658,61.800396,5.186556,44.4728,78.43748,1.0889664,8.238167,13.417975,48.164085,9.22575,9.919258,14.428356,53.599594,0.32424164,4.166271,6.0835857,32.589905,3.5383954,38.98017,30.904503,26.045685,0.87560654,4.9441223,10.385212,73.65064,14.023825,1.7766685,20.422009,26.851753,56.40339,5.6490874,13.593498,2.0324097,11.564619,25.329865,7.894558,54.926014,4.860997,37.530956,34.36084,3.449953,1.9087467,54.69465,6.578248,19.966362,0.8399658,58.158398,48.257713,37.263306,6.239355,7.9121695,29.712898,20.043058,1.4834452,84.23,0.87005997,38.592556,6.7896385,67.36418,32.24314,3.2462769,24.86691,15.141876,40.937756,5.471545,16.509657,14.676186,21.71627,44.50166,78.495476,46.914566,49.178032,54.093407,33.667957,46.69643,37.926186,4.26202,0.028954506,27.68957,31.670662,43.202477,0.61348724,0.62912756,56.2325,67.4204,9.933781,1.0599346,84.0018,8.782528,45.336388,1.3223263,0.3323555,63.321804,9.8927965,8.82588,28.848293,22.160109,1.1712852,34.03645,11.850614,61.49472,19.7531,27.851404,17.912289,16.664856,3.6582701,33.075363,17.017208,12.593353,20.1599,0.7569661,14.541292,29.588306,8.768369,23.322498,35.923958,7.0798407,11.401099,1.7171078,25.287432,11.420822,28.005352,13.543983,0.72753954,68.64444,13.421357,15.658005,89.58123,3.924331,0.9510536,77.77415,45.94693,50.520557,60.016388,17.00277,9.961784,9.839479,15.3704605,28.872568,31.164305,7.9920588,11.090052,22.73912,22.76832,2.1964078,26.428024,28.246227,17.203575,21.770395,1.2100067,11.789433,82.17564,71.47704,40.80851,1.9220047,23.469643,8.84182,23.933027,2.4157562,5.194374,18.611805,2.2464838,9.634102,54.60907,19.534538,6.6627083,65.3389,37.342503,4.457652,42.915283,34.188583,3.036354,1.5735167,2.7927933,0.81694263,8.042053,13.15406,0.21557808,58.657448,22.613739,18.350302,71.55985,13.401535,0.28259134,6.109621,1.3922684,8.123589,34.96438,9.133087,49.980007,15.702042,4.245002,8.268744,28.343498,4.8443146,4.4866223,6.18935,8.609254,20.64512,7.7597775,14.232933,23.483215,10.32449,1.1074696,14.524886,68.09921,79.84896,28.783762,0.96723276,1.3915749,0.073898315,60.9681,4.848007,39.875385,2.965954,77.70498,0.08193377,2.687704,34.02864,41.77226,20.740372,85.70137,22.692438,47.516747,14.190907,1.8315125,55.878456,12.322704,33.052532,2.147716,44.96964,7.2747245,24.478703,38.694916,36.29262,43.245663,27.72456,20.98475,13.262112,26.030191,51.52542,9.721733,1.8702679,15.89064,16.994461,45.133995,2.4217796,40.638695,16.909184,10.074379,21.962378,1.3223114,10.703011,8.991608,31.52623,58.678394,3.6108112,25.052523,31.059631,65.83867,69.29417,1.7848368,20.17884,2.1302614,11.245981,41.572445,5.982978,15.107381,3.302865,5.4788265,5.768052,2.2757301,35.512566,17.468966,1.5449675,12.658241,38.9019,18.841368,8.117203,6.8158607,13.808416,14.435716,12.46151,12.201105,63.912636,3.154036,10.580162,64.05761,18.392725,1.7210798,12.697334,8.218475,2.0971856,12.8867855,23.157541,3.5843582,20.683287,49.283516,0.52376175,60.42962,16.917793,27.799026,2.074492,64.55435,2.8655062,15.566456,36.3643,64.31487,35.58193,10.049372,15.964374,9.645803,24.704197,2.9765673,9.059898,5.360153,8.548206,17.60682,36.423477,0.30845082,21.028036,0.29238605,6.9362526,5.7217407,61.109753,33.791553,5.517806,14.4065895,0.8363956,36.658237,20.968645,47.515366,3.390026,38.817406,0.9694176,9.087154,40.8571,6.4611745,35.08161,21.645416,7.0635757,4.091301,15.163123,71.525826,6.77095,18.748577,25.38845,12.263493,54.35454,79.63298,34.50285,84.08581,5.5881023,64.44018,18.549902,26.29055,14.974487,4.529831,93.05377,42.97661,47.52485,17.306183,12.495707,8.097603,16.655182,5.8240776,9.310745,28.51467,13.201435,10.638624,6.462036,11.257654,85.39563,94.027794,7.922332,4.6931534,30.083086,1.042099,23.746807,0.6758933,8.284504,10.989564,1.7919884,73.81037,30.996326,0.19018626,22.099901,52.935833,13.292244,7.3449783,17.569553,6.190319,13.479803,17.482979,1.2018051,27.241222,4.295315,50.752464,48.539646,16.98874,46.22722,2.544858,10.952677,19.956676,0.015842438,33.496098,25.564575,20.098717,22.18134,16.450645,21.38414,20.681604,80.1711,79.534996,23.465069,97.479195,94.55959,0.48556042,86.23438,7.5241394,36.436764,1.7956246,47.558727,45.620693,66.377365,33.352135,50.94905,14.308228,9.909042,8.125173,48.59917,33.36736,45.86855,34.34897,64.69547,17.265297,49.73678,14.255769,25.415325,73.6499,16.305626,21.432484,13.647121,5.044245,26.784126,51.036114,52.087902,36.577335,91.57296,89.652374,2.9795308,33.76039,9.288414,14.1477585,29.404762,6.0933685,46.002728,39.882236,46.0822,3.6532702,6.1289864,22.42828,45.494507,32.342003,2.7261105,3.1751535,24.819128,24.1481,12.085602,5.4055786,0.15725732,65.19058,0.3534956,31.60162,18.269524,41.27267,5.754366,10.53236,7.2003307,18.291779,8.687893,4.7835937,2.1107368,1.5622578,0.08285064,50.728905,39.33173,60.809746,35.40719,5.119208,1.4780344,14.592964,13.441551,14.887115,17.563095,40.24374,24.01873,9.137009,43.626926,0.66549873,32.004185,61.144436,13.184143,23.163692,1.9911222,2.7324562,46.648693,28.065048,5.636371,18.944878,26.567955,0.4772339,27.51557,4.5333424,16.319674,49.90759,13.413521,2.483843,40.18015,1.5925713,42.538876,0.09862709,18.184235,13.841278,8.43251,1.7937012,16.59789,15.894014,22.74503,7.2292786,35.466583,38.8249,2.0603154,62.56176,34.733017,71.36527,27.014355,9.905691,30.55165,3.3921318,3.163926,58.85786,0.7609577,7.9506226,0.34508514,23.27094,33.686344,2.117052,3.21947,15.968658,3.9477081,19.255302,18.634628,8.511195,8.749908,28.870817,1.5221367,0.10780993,11.837936,15.94767,6.136398,36.463104,12.69713,5.2843103,0.70606995,12.333134,34.158634,31.722656,39.25301,78.03151,44.757347,12.1791,12.520042,27.077766,58.288857,72.47704,17.512337,5.2477884,4.976902,79.94878,4.9211917,27.27835,2.4948645,0.28377914,78.11509,75.04675,20.439873,0.6835747,23.34325,19.005825,73.25281,6.44207,6.7956276,29.07838,7.2280045,63.78712,33.2517,5.212227,66.548065,26.748203,84.2534,11.12714,10.221136,4.6418896,24.273327,54.183178,75.470314,0.6086898,10.248043,21.828693,16.648054,12.040723,66.43466,17.521717,39.291626,8.233379,9.513193,1.0937386,10.060575,24.336464,50.17319,0.18634832,82.68454,34.874325,8.98687,30.770813,51.32663,79.7117,62.539528,31.629868,0.15327272,15.328621,4.6116257,15.55743,8.039815,4.034472,80.46305,12.830196,57.935936,13.243496,0.5181484,81.08895,0.4001407,40.362022,31.257683,45.37158,12.912827,41.689556,7.9338226,0.2409668,3.1534514,17.81106,19.937439,91.89457,20.452427,1.3456717,38.07075,5.0296707,0.7683251,69.921974,15.118942,42.0452,53.384624,64.92089,11.326719,5.3575535,39.52568,59.13209,47.074787,16.153679,0.37298584,2.5221767,69.92244,7.301595,9.836906,18.824633,4.3976803,6.1977005,17.269669,38.615242,0.8294921,6.766283,3.8804111,6.0987663,2.7144856,38.885258,29.08966,40.028667,8.768132,18.49121,24.71642,41.949024,5.7515717,4.49258,43.431824,3.1216602,10.004524,37.7917,12.233326,23.920586,44.109795,15.597128,16.980904,0.278656,34.756645,24.87588,9.03344,7.986969,0.8676872,5.4111347,22.624977,12.947136,8.298973,10.645603,8.333316,10.842975,11.293003,1.7227097,15.698428,29.54106,8.310904,17.087671,18.561049,30.90393,14.232075,83.09051,7.552292,11.442001,39.551884,79.90728,26.42284,23.650246,2.855692,24.459818,7.1907425,30.64883,17.009525,9.756233,22.41227,62.916096,8.026756,6.874799,18.849571,54.605984,33.86759,3.814992,0.5814984,31.319069,5.8217087,41.10418,0.03884682,3.7013435,7.5275803,25.84529,29.410889,29.07517,19.225725,22.741543,25.215137,31.18685,9.706666,18.502106,71.16042,7.973381,12.022239,20.721169,50.66509,3.4682503,17.610687,83.88923,0.6963005,5.620838,15.5260515,87.40231,68.033875,59.325542,25.302649,5.8943386,1.5380907,48.278717,44.136707,16.246902,14.093372,16.574018,61.56533,4.4506173,26.558609,1.5028343,25.111845,13.807186,40.86743,11.721594,3.5387945,3.7817154,15.830021,60.6321,5.5144577,84.546135,21.352499,1.6888261,66.974495,23.077015,4.7634583,48.62497,59.3009,27.759865,4.3668823,10.513108,25.441307,9.392304,5.176672,77.57146,17.896,23.695305,8.276211,22.015545,13.15876,24.545954,8.699202,35.43838,4.685173,7.280468,4.9798584,41.50313,13.337692,5.052765,30.524464,21.1555,51.02407,6.702738,6.1900125,10.866848,8.920334,11.215633,29.723341,2.011528,36.48345,43.25052,2.7750216,16.860903,13.19836,8.311256,33.60883,3.485054,17.405056,67.29895,13.005497,5.3594494,13.842453,10.621555,1.60782,3.6723237,83.804955,84.30353,2.737976,16.413311,2.677864,50.05764,53.095192,29.21487,10.190269,19.109207,55.084045,9.838173,83.1293,20.257524,6.1093073,8.5114975,17.282738,48.688843,10.110754,17.292025,26.756237,7.694725,10.702568,48.864964,31.52484,7.427387,24.326687,8.981579,19.980558,4.007183,3.93956,61.346855,36.37254,26.893946,3.4063416,0.20345974,16.833275,53.890137,5.599869,0.69910187,0.1324215,32.850018,11.411637,16.944962,24.899261,18.913692,40.99114,13.850619,6.685715,42.896965,19.085632,1.4932361,4.338558,42.407333,51.17569,72.16392,12.901476,1.2210312,74.44766,1.5161972,46.132847,35.68552,46.41408,69.943,21.780397,4.9959993,10.341057,14.828051,1.2550888,1.7001238,3.7628174,18.596691,77.98767,1.532814,0.0070906347,18.794113,17.866943,6.0443726,3.058838,4.2493515,19.12751,22.478992,39.800453,2.7754574,11.524567,9.562658,61.404003,53.33301,1.4528255,4.486946,0.9345279,37.64684,53.48956,19.449291,6.498575,0.37585068,4.3503876,0.20690304,15.409077,14.353186,54.950245,5.239708,12.333981,46.854595,3.9198265,20.931694,3.3806353,49.7724,7.5683136,1.5126209,4.733545,8.528736,17.656757,27.346098,38.999905,53.533943,13.94652,17.234932,8.646568,26.637646,5.8741713,53.484753,11.506078,9.084057,47.022976,38.570374,54.668175,8.307869,14.677304,13.598113,61.48694,7.6050453,9.231322,31.951982,7.5940666,0.020196587,2.338026,17.900846,58.744667,5.1969066,1.7407905,11.712154,11.093143,2.5535839,67.61038,14.76284,11.280331,2.849226,0.03876877,0.24664201,26.909525,23.240417,14.605847,13.897943,28.316662,21.039764,10.986534,0.6323395,0.40312195,1.6775894,51.23986,9.523331,68.17669,38.52067,0.8220525,32.066715,12.532799,17.537601,5.4194794,47.599888,12.628782,22.753445,7.9508986,0.13593423,62.219193,24.488068,92.170876,1.946686,19.306534,3.0067625,1.8401594,26.846626,4.091733,9.14053,2.0844455,34.046795,16.229607,71.95925,39.73612,20.67145,0.86006165,0.0761897,9.6684265,4.7693863,33.437515,22.450508,12.368485,21.737495,15.931241,38.432148,57.783134,23.169521,6.105087,4.559597,1.4347134,10.828729,20.671385,10.60023,6.008586,20.633842,5.6457233,34.27541,75.24781,46.7109,47.818577,0.06194378,4.059784,0.5214181,17.315308,1.7898026,80.47666,13.963261,0.11655253,24.228912,2.4800186,39.695103,2.043801,2.3004332,3.014557,1.9167862,54.1898,5.3418846,24.083586,19.71858,0.07698965,7.8629336,0.8294286,5.709076,5.7914176,7.1330624,10.787834,19.452412,0.36995697,63.200153,11.396915,59.075912,16.06636,2.7601204,18.875969,40.681572,2.3040946,29.518005,37.320263,3.4223366,29.078789,0.9472294,25.310589,4.5678697,1.2834285,4.500289,4.189768,7.2325277,3.7901535,18.217888,12.079574,11.09161,2.7907438,4.1273804,25.048708,24.380049,21.156597,1.8695488,0.48330846,69.781685,34.816,1.5658493,34.735767,11.835373,25.40818,39.625397,33.351013,4.41679,46.98603,3.576809,3.7067947,58.967163,91.43933,38.927204,2.0927427,10.234255,55.411213,3.907364,19.129944,55.383266,49.75043,8.832642,3.488076,13.0768795,41.305187,18.07,16.13504,9.604553,54.673687,2.4169552,19.98359,3.0955048,5.69541,2.597237,11.863533,0.7917274,61.16976,12.010407,1.3942947,17.148632,6.7532654,28.304142,16.31602,1.321722,24.991096,7.314066,2.3011932,23.373844,37.03763,85.95644,1.8594999,5.8326178,36.18584,3.700018,1.8520842,2.757472,12.8085575,8.409892,10.814152,29.587412,40.383087,43.067886,9.775185,10.204598,1.5729979,6.5186863,23.976007,40.083214,35.938007,23.016174,21.709908,54.18252,4.3944054,38.53574,26.24297,15.773353,3.0636787,22.314285,0.52000344,14.424229,61.368584,3.928894,19.486649,3.419979,15.5844555,3.74432,12.991386,2.5583787,53.968723,63.971004,20.86242,39.66922,59.57229,67.627945,2.333294,96.50345,2.9625473,18.87048,0.98585224,35.794006,10.376308,14.308319,17.898762,26.082314,20.125042,15.573087,3.5878792,25.061642,20.079027,44.857063,79.76234,12.526714,5.619543,12.531252,22.936525,3.0351753,73.965355,2.6231308,55.381012,59.06776,32.49636,1.0565872,0.81026655,53.32698,7.3269806,4.871401,5.4248734,8.169918,28.966953,56.4863,9.818655,27.519743,39.081635,82.325005,29.308313,3.6799393,5.93487,16.068829,17.128876,1.0798929,12.911568,15.81086,29.608398,6.3543243,83.8193,12.839441,3.4570827,4.3690815,10.677258,2.556557,23.35833,5.003952,1.3575706,30.64627,34.1455,33.1738,6.787262,2.3347528,66.088295,4.003479,43.742004,34.87129,14.031443,49.194176,4.662222,12.878529,14.475234,1.8905563,18.47997,17.936848,11.948055,10.689949,7.7391815,3.2992706,5.1144285,37.306206,0.44918442,55.791637,28.895224,14.292205,21.478296,82.885704,0.7233183,6.651558,56.31048,10.88266,5.2430243,42.943573,19.494118,26.600746,33.38946,33.048813,17.015905,0.16641521,9.597704,7.192032,1.8491344,1.6297805,14.477238,79.22423,57.26371,35.394115,5.441513,97.07029,80.83263,70.22474,80.82953,18.079372,33.017574,11.643826,25.470276,7.6148944,3.56431,35.19737,81.39535,19.193176,4.3738823,1.2837079,1.400464,2.0610228,14.452774,6.3221703,2.8985476,19.080318,18.324821,4.5316215,8.500084,40.58854,3.0984817,13.529423,3.7100458,23.31028,10.512078,70.232315,29.741056,66.14452,6.1568403,28.332256,0.66728973,6.459633,21.16182,49.184467,6.0143867,12.364646,18.203354,6.044181,38.303917,31.474607,27.752928,0.24428558,39.92523,15.221693,22.5872,6.6338587,1.6497011,60.78215,0.30741262,6.3063583,6.292328,6.48812,21.054173,30.617352,13.753968,19.399786,36.52145,28.820421,32.25863,18.52436,1.0922345,5.777727,52.07929,44.45322,2.283722,34.435368,4.50029,31.993307,1.2247391,25.34434,78.80918,3.932891,18.20234,56.5122,5.0845356,2.8099213,24.391502,3.488892,0.114121154,0.5946927,3.0938873,14.001396,15.051441,42.721153,0.17136383,11.092026,16.485466,7.725891,16.813387,24.521042,17.005169,31.24412,3.7593384,12.338133,51.50285,13.505806,15.018425,23.133776,33.94368,38.469547,2.7991714,40.4605,4.770172,15.904195,18.171782,12.5589905,8.119228,52.463894,31.501331,11.830408,0.15960062,1.4371971,38.925232,0.8558197,53.8325,0.9603796,23.710567,33.989613,21.671417,50.079906,25.776894,3.8172836,15.152504,3.7978325,81.223366,20.965668,13.87689,0.09886265,47.82703,7.8561306,14.476814,36.336723,23.744078,8.151925,2.2531738,32.7502,11.328785,31.572992,2.1572113,2.5035138,0.9835119,12.27776,31.2412,10.03714,67.44615,3.7867987,3.1379166,1.3363266,9.861971,34.88626,21.284382,50.8287,6.194893,16.404713,28.539549,34.57035,7.132416,3.0794392,1.9840746,9.272161,11.019718,11.600386,0.80139357,53.205147,29.339611,3.8823185,0.7702931,0.60401344,40.219448,24.504484,18.604954,6.933098,23.35874,66.85328,20.792507,74.03222,36.579964,7.067458,57.223095,7.5427647,26.748148,6.527584,66.649124,0.35807514,9.155581,33.738197,76.38884,9.918515,1.2067416,7.8098235,15.812546,86.56523,35.633144,2.085022,34.778168,5.7799683,1.7807722,3.4398851,10.811681,11.293306,4.2730865,20.228226,42.79322,40.370422,16.534279,47.809097,0.59532976,15.72921,48.809048,30.19469,43.710922,34.533726,13.167636,73.918045,25.152884,14.045197,0.26519775,42.392147,32.43246,0.26798967,93.41147,12.170944,10.237255,30.085396,8.3181,8.037689,0.7421518,8.275047,0.5677395,20.476608,23.338017,50.57572,1.8250389,4.149481,11.053824,7.02454,17.147991,11.041649,13.832381,18.608097,43.910748,45.24117,11.670531,16.154734,28.05782,1.5867995,13.910871,60.003357,32.946682,11.263298,3.8647728,6.891489,23.261446,11.122734,17.724028],"x":[66.529870304514,47.13991088695929,18.127260972582494,3.6786410704411465,40.778536182935255,60.38519230336657,23.074711774918345,40.611351783849216,33.608476573236736,20.540549058795854,42.78052913662348,17.511495406918353,75.72343325324135,56.53930931036128,22.961075681342948,55.35009889835683,43.75501216346343,11.910855390187248,88.58302660748001,95.38808246315098,90.92798522607235,69.67122044458053,61.36116400195202,10.506815013889492,53.08493099870173,92.44272294675439,89.4056248325766,88.72910273542307,1.3877220701677961,25.85796228162235,76.34096630309843,91.37741723047279,93.35691830643714,49.69022008765573,36.58586445755542,10.640459334719743,0.6066437671551239,82.87488519974949,1.957522337996298,40.12186601437908,48.339399140898884,29.51238391394535,64.91462300175247,23.01026823507659,40.79164225249983,39.97520184702961,64.46369284339372,60.94915043601195,44.81212001935029,51.52061740980302,69.82670980887214,57.25625236668475,31.59176935368556,66.41176582370971,77.93784950284211,30.365830631814262,74.45674929079226,67.55408500176307,77.46896910640871,94.31181074624776,9.927557521048335,36.055984528990734,15.82758022855545,79.91374113147855,59.56887649126954,11.913754740301052,75.83035118485347,75.37405313333298,47.26112109379543,74.06760666036001,75.04671383143156,41.20168664796563,1.6099434047383676,72.37141997867425,25.315837202452318,57.817081945525686,34.16302704564623,22.849057972543008,68.88754511269546,36.73660628603164,35.80440206431966,76.26076115696274,16.82311882356243,5.404619064339911,73.72869642228919,66.36978911220673,37.28088016326888,83.72997833622186,24.53981405704787,30.276866058529784,48.12112896570198,68.05009301926593,96.7117896569295,90.4927386629569,16.373307761547107,12.608903094659052,44.20380427142761,68.9874925189338,64.35917454910903,25.83504917667505,56.94554601109731,20.709047405352877,41.85383518723729,62.841716285735586,2.1643210593753626,6.516984420744887,77.06130996003624,53.320931640597934,38.30109526481037,50.926062379638424,17.357311346964423,79.02160270550081,73.19331456390432,3.4499009999351515,71.35472397001735,77.75371063905759,32.68581595940544,75.39241061357701,59.4087256488003,28.205495418752403,32.322689993674146,17.866152339725584,3.3057229112625763,20.5946147076835,86.05080554254265,13.853290658728778,29.97079979653271,0.36603328851316785,99.48066653314199,62.82954141040699,91.9447414844983,72.72182371190105,33.598473014632226,57.08118400325856,17.29851515593004,20.73599074203296,49.1103439418943,53.81563600175072,74.92641351771483,74.62423484879314,72.73159044644305,47.08509274518,1.984971932611801,37.59503513342244,18.467876876120894,90.97836710725431,49.78431484040402,43.21135075242979,4.410288508071803,85.78272436182655,67.17287171704062,79.58171679696241,18.0478936968971,61.30734376529213,20.789979078722464,61.69711943657974,55.33329550765006,72.41206017662715,84.11737491158394,57.557712582126626,80.45869241166838,82.25717344937702,95.53519756936882,83.25109946520136,14.944085458240242,16.998923239652065,31.171790369366526,52.0126514300056,51.22425809090305,41.12245938078276,58.07853674536704,51.70358616906218,29.140835406745204,85.74512519413274,49.5101416850288,16.25745077495413,65.52466669595134,41.301852054332514,13.588598316007284,32.856503171233456,38.34982239817797,2.4373824761333096,64.40630271994947,97.52938333130258,16.02098732312831,74.87994845341683,61.86601443824924,1.8190833128203687,12.860045759649118,11.264372005274147,48.43861855701475,52.698729718243555,84.25627466979412,35.02384528365787,0.42315648066323375,39.266799979885505,10.896640307282013,54.501064134130296,31.03138673118965,22.82759941475081,70.55165077165142,36.145568585222286,14.16565386107026,27.447132708387368,84.81070536527086,40.398260762845105,64.05006564241876,98.45611780236885,43.58805579602396,60.8184445806458,58.49901245211778,62.67992474885056,4.717704020915492,70.59333462106316,68.82077626190531,96.24191731074788,12.731181407520676,41.202290373126296,47.024293782391545,70.06583130429873,26.753964377646177,51.40856527530448,93.4764325920807,61.42640612344612,21.698642063489228,24.911539085033862,77.95987841836877,25.695219360446085,37.04432406540866,77.80603817244479,15.87047992633498,12.331730707277956,76.38957032353794,93.68334292017609,84.50300587536444,97.1758124980427,66.7698254781509,99.07681182546968,25.499116340674334,58.12526868772003,27.469304657871497,69.45939828113958,82.15308325237032,76.41907682253432,61.5533315361104,38.07683829469855,30.662722028824206,2.873092404305211,78.15018696631273,93.47926756086878,73.09308786943267,76.50399957031459,83.57001571005371,84.6291650836062,11.528781170979563,30.086661149070714,77.11953777622912,22.61906870505562,24.433988375356066,43.980559793759944,74.17688868196682,95.8835603600106,35.93312307921135,67.15565127464764,96.83762080099805,16.257884971371762,29.848451696937683,64.91605355124757,98.20972530837652,77.80444945481541,14.539146531996415,0.15967101603081568,55.3286312496814,86.71353637676089,41.844082875549915,17.123947774117354,26.013980901526345,41.20349447800804,41.08025118614843,71.75574210202537,26.419338795125736,93.39296468165091,57.01710899838347,18.184404893121254,26.251028567026314,94.48977040236782,1.1889709372794321,60.033087099527904,91.35455005410206,41.574493389429044,79.01435671172162,5.406701743354403,87.70396660380267,9.759782261373594,39.688361411871355,86.6682217716791,93.25526399195239,75.66799042548269,88.75201305728086,64.99387605299172,22.315356925796237,53.96599758607681,64.18409399777563,33.6045755901613,73.86537147880877,36.79216004577898,32.64434862298218,61.986669652021156,25.669252734222425,47.240315270343224,97.678171739971,38.3173379520464,12.565051517393467,18.063184278113688,98.59424665896974,71.85104101269147,43.91631340022067,34.89752062247049,65.61292999370032,36.005377163093286,68.7258207429067,26.57050703683812,18.217443198458096,92.93247350053096,0.5921509568905803,92.4162573577114,7.418315616459148,21.044883563154592,81.28613025062333,12.158479527304477,71.16738374023998,78.9081951181808,45.18380763491553,21.016492882503723,52.01715588841682,86.96047716238326,21.342279988011615,93.68349537883066,14.711839616718159,81.68748413403804,73.43260643027385,91.7571498708028,35.75782846648175,3.867283815640854,23.7394445160206,68.3924136068085,6.857657937606798,99.69971494481327,64.99317100262884,96.03693946074604,92.00323404233554,2.5262212540049678,65.11979353711772,39.7428575935698,7.777167089976899,75.29081220432349,39.37275444603028,91.58661023906906,88.28333160452266,81.68734143410154,31.073414889004557,7.613588220810286,64.5570177055737,22.977484813746617,13.771281426938542,67.126810913684,88.7067637104943,62.93273291508854,0.18012189813003676,94.86821939303724,11.564595153915548,42.382952631252735,82.54502277089986,80.22312624559837,27.008267494606308,73.00038657112887,67.92735805780976,85.48386067692817,67.27314036224548,12.623659072305971,67.31821693982492,60.62737662949086,17.158119765329406,29.458555383619277,21.978392725645946,84.38944424355908,44.30870075259088,98.64720358122383,50.85090329301305,10.1993647797039,94.64295039546431,4.043207574943142,85.4025092109003,84.01322244811392,68.94051297643958,49.606162490348474,70.28214063748449,2.470231097912068,26.358313705294233,81.59463011109986,52.120707546534575,44.89518077599257,32.260007287120295,7.7925476202845845,70.43559223825,26.842979851948257,37.033997823582745,21.802580673544792,13.330683555295842,82.67218961404096,37.298860739426196,22.979809130432606,96.24579734038232,26.294281810876196,81.27967369494512,34.29767676481133,18.213087818105787,5.119943365418633,69.99272908484072,83.72838403636725,67.14923086267379,3.539663915341318,43.545623748338905,8.00938058226004,54.44775515550639,16.87636367665155,80.27740855419646,4.6816755430590495,28.665891901340434,6.409142207474772,33.60718153725575,99.60041771825277,13.052063886689591,38.186904168940075,75.85072065169878,86.35728948307045,89.77460694044117,83.14115035453169,27.808831843750824,41.37886840076291,60.607018384382464,75.53455867833901,17.906574633636563,33.810560921053835,3.684512569829712,74.15446987231562,31.809985847624446,76.62690178320034,45.953936068761905,36.18562990197047,51.26505144630008,33.261485226269684,99.36233266910673,69.72129671788461,84.49475230223882,89.88143150255323,16.553822449185486,42.52084827116924,99.42943951707348,8.421259718831598,31.982107808897798,89.40917526256914,6.938076651183033,99.59477866219886,64.12247311574163,23.34650241308208,55.49524491606845,13.246586651966275,81.38420779910011,76.69039966722121,68.41085820659043,6.603101398201739,87.58483106908247,44.462835114916345,86.50285072790098,0.5865428908109926,8.490772456029594,19.228742200850302,99.9564708005376,48.6684927867332,69.22965202176196,84.71848453375983,50.730882297515,69.86132829608039,39.63700445305619,81.56564325578644,51.714272379624184,76.63195899467418,86.78685395074744,61.10120630996191,57.62893346728971,49.96334042605217,38.085287529114176,9.504963081156237,20.288360687326147,78.3097051341146,33.80113165596394,98.06661153133619,48.60073670820493,48.72344875226505,61.4756770829347,93.14847834700191,2.517015799504374,86.50968858489388,72.65202496520031,74.45507418548647,84.58689557323929,14.763698002712344,48.4902008079105,63.75393079015994,50.29689327631903,59.85936218679326,47.53445388339305,84.3339161895326,37.642991627500955,83.3875168665356,21.26923439687821,41.39687299729844,37.097047907215895,59.0967920276004,53.38182835468699,61.448240171871795,95.57196342320844,67.68758103540006,92.42195170871175,8.068909685261039,33.03174989145572,0.10887080980065411,29.95407589842842,98.4595601565417,10.04887428073139,83.54741415965117,85.01720063510462,31.945192700593317,89.6841426567615,16.720941569812243,41.19401290045953,22.36423976192109,45.49324613215994,83.67692905516874,2.758341477163806,27.21105024328342,42.85013342442664,31.464380748792607,90.3621429818681,69.62417634160059,19.852814278048093,27.455191948222392,67.01735628100188,11.62848444238833,12.528885303334503,29.562475594854565,11.411921932446067,79.28890223307849,63.182969363625716,29.713205817575393,59.22638192691706,97.36152657269376,9.173971795848868,10.524704298354326,24.772750109170726,69.24325133961291,54.453001366967044,50.489612249300166,56.583826475497766,93.56457698468003,12.879667521810823,40.06338191166211,65.65360428878652,27.31632052977058,23.536014949051175,50.56844238364587,92.66323030884138,75.76021589873027,5.735908394984612,54.43578599797476,34.92908986120984,10.615468245851556,60.225767071198064,39.047832455793795,44.81071617975416,82.95124792882592,47.46770847671329,83.38209306544756,53.27742419286636,89.15699684890765,33.42364540897192,28.458221858857925,80.903959349211,90.24021898338279,64.65563384793563,36.7452027896372,37.72988078712227,31.88709467252845,77.64472758048204,71.75572909499147,84.12877147350298,75.50852825676006,84.54737956522257,71.20143493103053,38.75970525504175,49.61860114929385,1.294989141259717,78.83502873641663,94.0869005124118,74.38242663572323,56.54406593972961,53.50351749848114,35.9611379997328,83.34522563988597,70.28594427139471,36.318175528350515,93.22556903239467,75.12158236443692,22.59843727526882,68.7801050183459,70.33788374223724,60.404119311359125,74.42875496735758,7.949999013112441,82.14360068140266,76.64733095386751,24.22796076453685,80.4510987205473,92.6118251673942,46.08452101015641,1.0817845802748582,90.11556491804366,83.2363443447303,25.55695195290888,36.352200246326525,89.7388229854842,80.73699685605672,31.42943149031212,78.61700857289506,41.46943508165801,65.6582522303423,57.78355981063218,32.68571827704025,87.33396611875855,6.151556456729312,26.842432667253448,3.107785688689624,31.405832937635125,18.036728419110716,27.704055484150793,54.766623871609625,65.61720126795831,56.89373684137481,15.81081169596612,75.74806516659257,4.123946043423221,20.693924047391498,86.00341504829737,56.50345314569509,23.77538914499556,96.24779721731208,28.806537862899884,38.187834252102604,74.89622125684015,7.309750758583378,78.65845774867488,65.01221847840108,26.737182721173227,63.47617266863057,25.359442931827168,14.390168048570573,18.63093950500617,89.151831856235,74.505856033549,16.815934594245263,78.13895756068096,53.61988808390564,19.63694600440995,33.016970597152614,25.107552721582827,29.851904396402183,12.872970006298113,24.16713457001871,28.280906239844473,32.85231252728424,40.64561023422628,84.60312477216644,92.27527915428887,62.3727906353002,24.897127357513092,35.93444015913445,85.25716168359712,54.32511400205639,98.1173006502967,69.8569030464363,75.35546352334856,9.73259804569645,67.0953837189025,39.69423593295692,53.08475651221906,22.818140614618553,27.87708248330115,21.82364898971445,66.41434467072621,30.05436197031417,44.53397768786774,82.72068751288236,22.35901975382868,52.60487880738173,14.513991925635983,37.77703541109537,82.17117525612375,2.622586315624953,0.17718163241928764,71.0871041367696,33.04160001175943,5.888413319998875,28.294426496311832,85.28760542437568,70.06300354964688,18.72475937081386,49.871378108685036,61.18911672529879,65.67578204321968,67.29946453983138,29.245899965005762,69.23424031851563,93.37965592519312,73.35666749130067,39.812851094175,14.368874285813627,43.101911908157355,28.374259784313693,69.70800555100844,42.02834001894733,23.294634544551705,93.02781477545842,76.70286511082485,4.315891651257553,75.82070843948729,60.62105928895901,32.80450433735565,50.62083537512705,15.071709012280476,46.953274914682176,54.72439201673023,40.53937900741587,26.36741786076945,43.850505031604655,8.322805544040246,55.79840322111549,72.14100422919351,89.05690257545503,3.464849048167584,37.87922277057173,88.30630136337525,35.651686442054306,30.80932312738899,79.57144196353539,95.34271807393623,17.218056850459384,2.4098589052624853,82.54073652321519,56.92627014060937,23.662330709114343,78.37499063881963,8.398777396738733,81.20427169742173,33.74573292069834,24.571663236113615,41.33916270579703,56.62962305808966,22.752103787393494,1.5555340243484594,94.06014732285512,27.31604901437885,2.614497049926423,70.53153089776806,60.88314921734239,32.740327624460065,31.654425196408877,16.65214952721866,81.51957741202213,70.12753988435881,62.42182856081099,56.49876593243973,33.74090971016647,90.12488187199081,75.38738225905239,62.3488085390741,24.17308738149162,69.82715204097266,14.899773520763727,89.19346674427479,47.37457327415492,74.96978044590655,67.31945548377274,31.584920907952874,89.0526564062782,36.12784758277891,38.67231566262197,15.892781036251902,83.43884887801262,61.968165672812745,22.08171609464481,99.2823751217529,75.42329216824135,24.770460684739138,92.59163009753829,40.43255100257949,7.317826210503997,48.55403696129127,30.4567139859955,58.01079369900144,29.32702226557953,2.469036315643125,87.21995319560071,69.79986182918397,18.04713446710534,62.11934347102781,85.37087052129824,80.78308351248904,33.019802374268394,89.36457169936364,57.80408091480575,57.68907631209992,85.90374666722728,86.18097639344744,55.71160642381089,37.63837300359183,15.969970044260595,35.83896837147642,75.82575645297283,20.58844033039743,70.48702451545994,76.37119028523304,12.917015939428167,21.095237540139134,79.26231757713856,11.998562189939587,31.97590607721602,86.42222066267608,81.53247925350276,2.3612816722036856,30.609910735030677,18.85501734339442,52.449173209770436,24.863195228291136,46.84436908333035,71.03516533650705,88.51482722470875,66.6209003313154,15.564681756816201,0.07630331511102595,31.155379540725225,66.10778045098402,98.96085434823999,27.194066808353746,3.77610363352171,53.005860560750115,4.728665345583671,11.854799024163732,34.493094098568186,81.68255627794524,64.66250404684844,85.25482185207393,68.80223344812585,51.658316891658714,50.0274987674189,29.746762237989323,53.51846683348428,24.259599610714577,69.59956209811234,85.06399915633295,5.005623965599759,59.98539602430403,84.5664631729062,76.32991525801664,81.99730402484239,75.65034026735468,59.96973598184883,84.70677132916171,53.3086038284036,77.51638604210088,51.815811308301384,49.44614441813684,10.429241793385646,66.484251557443,32.14036171731651,78.88115362755632,96.63842816844614,6.531386485443336,43.454130827536176,9.7550615610007,3.7860375221308806,21.924700276329045,3.0770640488875123,79.1832433595738,40.75770873551519,97.18841016844391,81.19066600561308,0.20737811587043797,54.00551990645357,56.46615463923182,55.46060801907888,40.352313867516735,70.58920549614714,13.34093095969594,12.44183844030874,16.93934598306751,13.702472613487748,97.03329759720006,53.3594440062372,20.0684445058527,84.90462440950277,87.67433144368151,1.834318952259495,48.0398584997104,96.82207792387878,27.546424354036535,62.106133030162894,94.810132098479,84.4590251778086,59.66170985159201,15.87376071984059,16.578804863179798,11.31772263786689,34.62422669027716,80.05831309694224,99.98752124490584,47.28524725379549,85.81417012984292,10.362436182097257,4.531505741932095,47.62065118133096,18.03939797095091,63.8244477660551,62.821001927184504,48.704703854422036,3.089355784520964,60.24856980700286,81.99372471059334,85.6464467208297,27.488745778977673,8.657793912463685,9.77623837231274,40.45425654661933,52.57947867351268,59.66346167706864,74.79510845968905,68.10613635778013,17.918225628665528,47.56393803912166,22.94074276596011,12.330386150073359,13.396844173906853,72.36085163972444,32.52937666329713,1.985790173359503,24.28913827715381,98.70882300661944,12.843070055723881,14.254045817130912,53.003774903070365,30.995639226721128,38.12806975837246,55.1163698981722,40.086511427568595,49.47136433859628,27.950519638767513,67.57324395805504,53.700692591848224,77.92926040012583,32.91632143940978,40.83999717148513,69.02878962715275,40.68013909062987,39.845377435828574,73.17513046497346,30.191443642463756,59.918056528441376,40.789047049041194,77.889856085318,18.160116417371842,1.689690824997947,39.84028352108437,27.864926661315902,25.464341819113034,89.13162569174287,98.27294352521824,28.045833957559772,54.05511544377531,94.39186684404591,34.74149307228372,75.81202697827743,60.594734454091224,74.54772569743493,43.7521522139482,7.487563579158552,66.1819540500014,13.543054409745414,12.838312229477989,20.053777145933427,91.41192515599565,19.77109545204169,54.99499388905063,95.25473697603964,85.94717401423105,85.36433600778324,77.48234300294729,78.44619230707993,54.2756007068869,97.41103187151853,15.672324782526626,52.86513966657168,30.17587258468224,47.959426930492036,72.36342297466342,41.66327163587555,89.6568154616677,20.23878093271163,80.212084411308,73.33132779560535,49.97577410513785,81.99676201053609,5.0539199885569435,2.877096232952525,4.469190465550399,31.777187553572904,62.51872165954839,9.209226214847,39.51700944439784,23.377389046741015,94.6679748492716,35.36370989462313,57.25608187015611,97.62092284921172,47.44795550200052,82.80762068509048,89.00690283537858,18.565835390633147,3.5642890759904455,4.127253588863688,7.22759614512375,60.91775730210651,66.36229529540883,0.30622002091459377,1.5263489819915876,64.15369323308751,40.66886140178314,59.84704764089578,41.082733277768234,64.0342486525668,45.63207319246286,33.325326745522865,11.0635869399761,94.5127550458489,35.55954472520809,34.40553365132454,91.29467396730789,18.76433873384289,69.85297759992834,91.71593350359434,73.57891528069443,39.459095651194176,12.670242471344073,86.66004115147392,38.057077414765125,14.885969341681715,92.00394273884692,70.79676603232103,31.04516902806129,21.236080109236966,16.552791875105665,58.41798801492428,97.83625443923614,89.37306862170324,44.29951480651827,88.72370305700434,49.90810403075905,22.406101114490763,53.02619512814366,54.40354540901174,2.1347314246904614,6.42400654846006,63.81681386713195,31.63001591636595,45.693985872148616,23.78672072690623,38.46233206497382,10.27126078726931,70.88759602064845,20.366536588537354,54.49946931857404,54.20860195074803,63.18073928536545,77.36625479007252,69.03297313809463,52.396097110498765,80.86204198571184,80.58957796957972,0.2525782931391052,46.5523445452563,55.73180139176215,99.36972920149364,48.917475252572885,18.645140983499164,54.57591561583099,35.240781707889056,11.652781099335973,83.27740556262974,12.505520818451432,78.61711521509392,92.29809072947035,5.83349539472654,3.3523148567783934,40.322756025657704,59.957822633570416,23.01998809720176,6.644115672984141,13.802903832186363,33.87264169314701,1.129138168250976,89.3268100932638,65.44182348874958,6.774415728150407,89.37651236770176,48.86831834201485,20.583087550759295,70.14192145449202,62.70230064991604,96.74642678169543,55.07029070558812,94.30370526961713,35.57749580315982,79.99928271694145,18.486620324898617,39.69109988968397,7.876709715081276,95.02543155672991,88.954073589524,98.70328147326575,45.86245177067736,95.22104959483305,93.589182184114,18.059813777006596,30.5504603020322,42.05419418066003,59.27935352508871,73.74980680841655,81.3051795730339,65.86803076314936,60.156595796780834,26.256068306848988,40.85426996206253,63.81056300345447,73.54697721912117,52.10719928588421,86.27578427458073,47.39557939745185,87.86732344697555,34.27812637773637,56.66595971124764,10.177918835418808,57.293570384499304,69.17625639615402,33.04241615399209,82.27528501668884,61.751257031866004,72.96567146516225,24.222243395638987,90.74666786925437,55.384815675815624,26.08497900885257,1.620096517511438,79.66420069230065,95.1121976731052,46.51097091023442,76.3992030918054,44.27075990268382,28.70478194198497,21.295194939718943,89.52216115182651,11.660811779944446,5.64702816524667,12.537839467617918,27.28204656188179,80.15527786223726,29.476802275882275,35.008717311806805,72.85765715500449,44.65931548545624,19.314140020475644,88.8191476190163,17.090618964349602,72.8771504400675,23.050104072797794,40.255207456945065,58.541101000972795,41.72337769329532,50.12871550323016,20.379900670729235,96.76756231162442,95.873716434719,0.4983856619752536,31.54141850444292,29.84561656893122,21.53569427299351,22.070900158876462,14.916029742567027,44.404975751658014,34.49240554009047,41.82504827252254,34.40846984720811,94.97095608205365,28.59482654465867,47.832689419355226,65.08757546738299,36.16502161332629,22.18174939433216,47.04834120430459,11.621065524251417,46.016031331790366,56.0207340190075,36.27346458254661,80.72258585565014,56.707402881232596,33.252399634470834,51.17613581657938,93.88592305433401,53.119090244245534,56.75538396616565,8.880215100481948,77.42004815790415,85.36014783336357,47.530483388193886,11.706880445894264,8.955598765114924,80.75040060513692,26.339933981595564,67.66951186624904,1.380894091030882,60.922331696886246,2.6251449478468025,27.594378381161512,27.190392912624894,19.99339244359938,35.0106991355492,73.63684252545505,16.349817803088197,99.5089626373037,67.25397155367958,31.919067232636433,25.127523764626424,98.35789865667118,20.323642146707154,50.99267421970617,22.10158283546686,55.572420549122995,47.792247087607635,74.22374178071219,9.04239928799181,99.10836147355143,23.374219998622358,31.1121624014028,63.66469179152799,19.447366973155454,27.79346839032708,23.165710641371827,14.93150908758587,38.24335591614052,86.62908896839905,50.79481207337015,84.36980008761167,16.04706042285755,66.24370738240704,83.38688977585981,96.85600123870044,62.49189458161128,10.058777376346463,20.255055216695826,26.939661196186005,57.686046281511,34.710773881561884,24.870802551884463,40.43937402134805,12.165119523272628,8.468245736690738,82.42057270344655,73.66765693802819,58.71255108255601,58.338949500062206,63.65724158606937,93.6034297831562,95.80930782088805,35.69362623173598,10.835362804684278,4.519474374447096,24.748408357138917,65.89107774525364,89.93513201768397,45.83207085404523,13.480019110024,79.32820107643262,74.5993152048219,96.98850421836417,66.3258246421802,10.404655496287951,58.12742579365493,39.67869518614684,66.88110744384184,18.544043971301615,81.35931859246936,56.350686282923576,74.04718368988748,8.849954908636004,96.06092927905868,83.16436565057721,13.933671986781759,92.74513036477369,90.17775093197419,24.372080631223557,52.55288245961618,95.14659552967643,12.794644129717359,15.38834364782632,93.06343601085935,48.721758711716255,1.4077198311589711,89.90342694113743,81.72007303840232,87.85515922839345,68.42018183658202,2.051226522770988,21.477028863919422,0.9808626087660866,42.90550031366085,23.386708475008945,11.735180964092585,19.37062942025832,81.24510081064888,97.4978253489858,48.65042890567221,9.307090598290346,58.742150190530914,62.310427176506586,92.44920920328529,27.196431116410615,48.2425421062056,81.38961415245888,38.11392709601284,83.08624083790849,44.59205652014428,68.97963229692466,76.01820264005032,79.47089993359482,62.44039204999389,9.720190401774875,59.52343853945725,89.83117504573761,93.56484229774742,7.493992209704081,61.821965316113456,80.27406635240061,98.52190680550673,6.02520835430167,65.76660713633541,40.98212649079157,31.159907981596437,94.09650006846744,61.62805416866628,96.69903155564907,31.6727364025306,87.50362482234164,87.2917249946744,62.0156599518617,38.083994828253054,11.40367211432406,28.409783913352925,18.12062349830169,43.52054535619263,85.69325607382972,63.509585151131255,71.69597054892883,40.74695745794834,43.01536216596767,95.27929019305313,80.38680798682658,61.79566882233686,53.68750141076071,23.19395128933487,93.31663004435043,66.03138388855504,27.710371982094205,68.54380434136907,57.05119236857147,8.602849267250113,69.6448763307541,81.62443889457258,73.1167345514952,55.57010011679983,15.327139825444402,79.37217655328809,93.92468555106186,58.441682660330706,33.66156731941688,96.63804670850114,21.602938329201173,97.33785752366043,87.98477653891585,10.070263897307052,35.19782183347006,77.78755338568864,3.0513464334638196,85.93833288626772,63.54479167558693,9.403077111859215,98.22039754616011,93.14386179133743,30.367968593749417,96.98100541595451,13.566601288399038,10.937592316096467,91.39221429432034,68.68835341387953,68.11802885948825,11.579872631328946,52.110195568070736,45.40681129852081,91.06430051620114,98.57765909505336,49.923509702677805,0.31557317547564745,26.26011176758708,30.29638038608531,13.264744823809693,22.528856619253567,72.46151545769686,86.9781901952512,39.0557831561835,94.70629914238451,79.47348887096629,50.27102702640115,61.392173700931686,22.747798009260688,98.64592188842855,49.80578341574694,34.376056234421014,72.7814693301485,38.24321118584988,5.071155539856509,54.208303118748546,52.967614415575746,51.221079261556255,70.93135512805424,40.37432770449608,84.44523822421743,62.98959772087349,59.88412151437726,61.166109637780266,94.7815275220975,33.17178770617603,50.01818317956953,4.6753514597759445,94.63301438073027,26.03964572158133,24.36284673290503,80.4205555170289,61.03652412408627,46.9786567839105,12.708337369855983,73.38363530099923,91.06533979721254,21.557177144510597,75.0684156552874,36.64200281909721,51.18422405893482,76.65410955876952,66.71540225820624,56.18707420819692,92.35911483497556,73.26387534080193,62.47076739077281,57.10824117540662,72.92321031154135,17.696431939037204,23.029172807029752,46.184959670187155,18.832713918286714,68.52292187618978,89.38089696166698,29.277037792871987,20.859060691732722,46.2359513620523,34.23033399527993,76.9061963792691,62.172184225242624,13.564320759397209,21.52816540119803,4.148989819080073,29.185527824551283,18.58929767905807,53.76610515315059,79.21491888828565,25.796267648773252,53.66790959601163,95.06576864785208,57.6674692130269,31.028665990128314,56.69981773806536,55.00573712111068,19.335692702017226,88.85204197069845,72.30206863722341,82.55167423164043,24.208544350725823,75.5168258344462,33.66280618203243,0.7887111568515959,61.79131466428207,69.89849441049363,74.10471712485173,7.641109102047771,77.98285969817931,5.365141780230587,57.12079742497407,37.13612412338746,32.16161055454197,28.34791443510869,94.34706972817254,86.0103326274781,82.40123971922128,55.75399306091102,65.98611866588908,59.24949977363383,45.76101565348151,8.054316687730589,34.5771240051217,37.4941395950992,23.343907511703488,66.39468414801605,61.751487391228935,44.418285872214035,79.57288137287013,1.4457732651752875,46.01159196912066,92.44892032817279,24.81049938152503,79.78422873805451,52.88743739043832,22.912792388789892,23.59277598241636,7.944871484287042,51.110589369069025,77.47656352048828,25.722955929264344,95.38238171131623,96.48147100008319,77.34959227805747,80.74524730370771,90.52918429684831,4.224202861535032,93.78158814948263,46.22483833206294,36.4319641881221,34.06048781983249,19.783469257653863,99.74315815448122,39.058044653704705,26.288746884001668,59.54294951786453,86.33936546354593,93.15279203734765,70.47582733040979,19.152544413229954,76.90212055315764,63.703911515369626,29.24727571106429,57.34843448026336,39.44597135771416,65.36527899805068,15.736824427205665,98.12593700487847,90.27532671135948,32.159034757909566,6.046926190859403,40.41193467494909,64.56747940824728,12.378686349417267,94.3161431989396,91.82675252304881,8.111908588930172,20.968228706155724,63.51012927313213,85.96480135439766,67.97767985980181,85.75953512796413,43.71289481988806,42.663423594910654,23.83203989803967,40.429412987671434,70.32013087694656,33.35089446290833,34.89808115739681,44.886902580245156,12.902350539607,22.944645930040785,18.572140605514964,45.49422373704902,89.13473606674401,29.55967093440728,68.79842389784874,93.55348908593473,59.46331259269717,73.20501421804781,70.87195357251986,87.82814838418092,63.355078265869246,49.20371382968105,98.75598599305438,17.33818495544106,40.015405497265476,70.56435376316101,11.649625976229638,31.051086782847072,96.3222417544926,44.87013451619792,60.55393402157046,24.87884245747961,32.63664067297795,40.03069423441307,5.126710711592153,87.46368804551,10.346314846566118,7.70173099402659,33.70615991383732,78.5451052146993,71.9851488361737,42.61321079245606,11.459908333134173,41.83017746424742,46.61412783967032,57.776670384627074,53.033058166337874,19.60262368997403,87.61106023940964,11.342977225281803,67.52420928774312,0.6956386108458945,83.50935286576244,27.469432311369758,52.129244728924526,3.2070773023399,27.1764464491439,21.852407327725043,40.40721720749186,22.664092496915124,94.8636362483489,45.81610637417673,89.52550850324597,27.06889469999708,4.987324028794449,65.83038226175796,5.7625659003550105,52.88974198459434,37.19414207850997,43.567443683270334,4.7401600107065285,28.280172697483174,72.9259419471886,93.0577354806961,83.21405178416524,42.391290516523306,0.5049605675265467,46.759711367254795,57.56797053196417,11.636302222291695,20.36804174408786,99.72033589263309,45.803805996143495,69.080760921897,76.55574003877793,79.04143996939666,57.142968936158,53.46504440820937,30.09531366008622,78.91789263380366,49.80873318497798,67.96346041375313,78.65467380766665,71.65560643282801,39.83787296360206,0.04616526526576292,25.990308995367073,93.67146305701345,44.132081220681854,39.370466866227574,32.48541473999119,66.56811464309041,5.409183502987258,49.14928885433216,63.83403284344741,73.41284070690054,11.259795097000847,81.11131112674919,42.69877050808727,99.24853204684175,76.30213921120891,79.63486379987107,42.448054647899866,26.514537559366293,67.13681194988995,55.07651829298788,15.849366838285873,78.75770847627052,49.73611497862067,47.19231614650698,67.48921985235175,18.615243764264356,6.283292308881682,8.186771920792335,68.65808590041239,19.898967436554326,93.4045533088905,24.129422952150904,15.002823897964923,8.745654535707548,42.861929489466235,94.88708246150433,75.37973605400715,94.9007876866928,12.201278780391645,37.09792856369294,86.15050714665074,78.4592924205085,44.733595901762534,12.34703492797462,3.06559148412775,73.52847251108875,9.68406945732615,51.94244168285061,77.4774566297622,76.45373854585445,20.320174481130305,96.44914317976554,38.49671599530555,86.89990410816134,15.88671979952706,52.628673906233615,16.553808357561884,45.16260197206233,26.83180742885406,33.14546708696698,85.7180060522529,93.45715884722084,79.25776884003162,96.18653812567878,6.487932722894829,32.54745169018363,70.76002266806583,92.38323333929024,25.658002903539202,65.1823344578251,41.71196561789966,92.02879992098703,34.42712400763837,69.08324970476156,69.30658881887422,81.88966164891326,4.888608519128801,87.4918058508879,14.678907280507614,81.55570079095818,84.9080844777518,25.714431560960517,72.43789083173017,22.018241421384044,68.55023932127375,29.190736021385668,96.03834884680494,15.449847860912014,92.5496421590164,98.74135390976845,62.05953570633762,32.2616430732764,85.92752152317823,37.66163360626174,57.18071509244672,23.313935822749364,27.462774550229973,64.5617788055382,54.161662241317686,84.52560607768646,55.60323576756727,1.8651022884032642,11.565602439603573,59.68180817244454,35.35240658829416,29.095910101542678,19.917953899010378,15.494149650462251,55.537743371084794,35.58339294147126,13.259703304001302,56.360857160074474,7.833421215774205,71.64761635193969,26.027010598552845,13.730853508835283,75.36202761049198,11.89887804485792,71.3615649158811,56.96671806855582,26.30886607728915,24.408468535790952,62.56395528301477,49.19324645583001,84.79517979311404,59.06815502064388,9.361971956696957,49.99223282483904,65.178406556621,56.16128257483165,45.19627332369664,84.73506694216269,18.873988408108023,39.44193169069396,48.1093551603918,0.3518981000545818,96.35334162220244,20.26938783664113,13.973472114494722,17.703903033872603,65.32574912977125,64.27908735970898,22.068735113348183,80.05314838377006,18.489548281213388,37.74574155177789,35.93533385888673,0.04473197372236726,47.25473587110919,26.1818832279322,33.795943268624974,8.649307373109572,39.15964198764305,5.297243696533737,7.333016844060336,44.81075890928455,79.17934288354725,38.865020113565826,52.20925820926793,36.02938263998383,25.7263482292049,39.0132198772412,95.19499869734086,66.86529498113588,51.70717413883001,51.700766816152964,24.665620619001803,46.851156713556755,45.43587405710944,85.04521714499631,43.28234153447893,32.52012199464078,36.84610759546535,35.51676370283376,3.03040740964462,86.19639404345875,97.64180072960828,61.488999102731114,70.57035202539376,45.0476931247042,5.573080226761162,24.784970369182858,88.85235181422809,15.714395285302118,57.6306281478807,44.82876777459801,39.85358433644011,31.365043021952665,70.54422552395005,21.586066452077134,13.365236298374816,66.32531834363863,19.39873968354523,31.394650750056663,87.11826405263923,95.1647418994777,5.030877681551438,81.67728172533589,28.908108496322004,93.66021893619506,94.82156826135004,10.425874756440335,85.74353021314177,82.40109615536511,58.59992021752032,39.56770186722937,90.72020598604901,27.908538319328503,8.46856529893648,18.519880369857034,34.22793918174746,49.655344701237055,22.4262977330574,35.93355893645251,27.646139267757363,64.34523274080115,11.082520858640288,66.99126481457023,25.66242792788532,26.669892608754598,27.306150210190914,46.60165021646141,45.191638700793035,44.655720551761604,2.6158905486631023,20.627132566306827,10.823617230360016,3.7126530068769092,39.6021438557599,30.76705242665245,3.2746219743185923,51.03444583245529,80.06171374700621,36.17415092648796,94.17717161010611,98.27538945017706,92.37282821346002,0.09801120049055534,32.76579901278419,34.80821592052834,13.972012452440119,72.55077641634476,32.20819446975813,39.51669069696172,62.49389667262136,70.24139995929681,79.89029284421287,40.79856260172564,25.851383072749034,55.92349259386336,51.47569581319457,38.083381876181164,43.65016528076675,1.7101857353770122,90.66309168853616,88.03776046839886,42.383790401017684,89.94713347434626,21.657890619254726,72.68927706729505,12.165355198912774,72.68796649857782,84.44396863215943,62.5323121153091,97.56923146210747,41.36357929951904,43.11824619543776,45.77346443845842,12.401283386037276,32.918664140464585,33.449635422387026,79.1405043183316,76.59903238284195,7.712965822278828,13.376115606146332,31.033761742780065,37.398811168870594,96.02218763909616,69.68947686289039,93.74536029097801,65.98289606889237,35.00589947690421,9.632940931153112,61.571359250955815,60.55819069227678,41.21138612716467,49.886070514367184,40.765816030906635,29.683302228954723,44.47526881122039,82.31706682632701,74.02581303687317,23.50150594258874,1.4578108813313562,28.73931481780915,22.708219495233994,93.79108097534,51.02111300148214,65.86444132434714,75.53056264773275,5.03893865315338,76.34051385142516,9.957990608956123,90.60935394210559,49.58491738220939,73.56027896076591,71.9752344726282,59.51497677327324,4.366374606575995,81.88196495212327,1.607537956038918,35.12496778474174,12.889138056229099,90.63473486055014,31.095491542510768,9.369904444991528,22.005509945476476,69.3591610513029,86.79053240753622,71.1788135270707,10.28400312584502,68.69884685637211,33.62034621284467,2.945949145414728,19.140703127278023,99.45178335189664,17.041823782661204,25.797969474339045,72.08588669812784,58.18751960856968,37.55792243492391,12.621409335210387,49.567072393387704,87.44454351641157,93.9827802618219,86.99723714529509,85.22752197473349,49.306731268146834,50.352338389878994,20.083080479436198,53.87065703429976,82.74554218945204,28.904794819723577,50.698448190120146,29.798438266653747,92.86394503397501,35.159519415270914,70.63311389420707,58.88339769370623,31.118718227673035,3.1808254103041667,15.082643357101722,0.9767091480183177,3.4273457863856827,50.78719576281271,58.97950242559947,19.02342563086725,49.99236037302733,91.51811718151411,99.80538807022961,59.37661663777868,73.44851105415572,37.87351705003636,17.000564396704643,76.0071243364156,38.03518089983077,97.75296890100397,4.789957570532588,30.782425963115976,2.075479915827183,46.076398281371226,5.840900033040164,63.36584197592533,77.61871961751088,60.43941013332014,71.16383414705419,43.062200860484076,43.80924170141822,29.036322669705484,66.22077937835715,10.270101180531388,41.59061714496575,53.58254546658097,77.14231667865714,70.37333535801066,3.8980759533070564,95.55764826783782,83.38070705687687,88.04571270290764,26.90955405925085,99.22759671709844,37.16466252173998,46.29187560607866,36.88635188706506,98.14290067356251,71.71700588337016,51.3964737705751,38.49172604055519,38.15518326970743,99.40419224573365,27.78182562143876,0.1344169248841509,82.43338996684162,98.94615757975647,9.77931156309253,67.14882123631911,12.84308215318174,56.52916219814259,66.23233933593207,89.31720364128594,21.877541558323543,40.2164971585902,36.50384703440428,72.5799259605289,32.35477906046218,78.3473627322314,91.97589772772916,40.061708546109884,27.604915982254894,87.86258934936943,36.823700141721574,23.486077020491024,16.625484815444658,44.36470224882352,90.06096851360704,45.70517357672217,47.79856575090707,37.529858982355854,49.52642521285227,71.66089401268755,69.05050305631923,73.93426870769714,28.92801200140054,42.88747473300268,17.678045310099368,69.52667802581952,52.55697925933931,90.38671167710194,11.544681173647787,78.63162470806826,51.16835784389949,68.32092970430341,62.104342712865225,25.273526907754697,91.92983558333209,22.675513855660423,34.32066862167786,18.222885276111544,10.368505021725971,92.64292537764169,5.444182751225702,11.355768286695733,31.203756351840795,73.43107039467344,92.0777729527783,99.95977547045516,29.261393799707523,36.15970400473909,68.40336095194937,10.747832747741914,69.6403087797103,34.854563200723,70.9223059173647,29.867605832519416,71.0591761279176,1.9043511461003915,48.424796853781814,47.77858414966779,98.42131200842971,88.68973743285042,75.46728749337275,87.39802838966843,9.117826346239266,2.8146615169864164,48.157363461304335,12.210165587288147,92.24589814990783,92.97787461579013,9.032747151469456,39.84575249754021,19.377533878371345,27.666342534559764,6.2897080969465,0.5744984565733913,37.178645699400235,53.7368247427523,87.58887904881357,92.06145686737696,44.155605969274305,84.45644754534541,68.60875118348788,50.495812511766744,40.84068448477572,0.835866747201286,8.985775718297639,52.381625011345925,14.182971643087072,44.76990775611234,70.46345400911194,70.71509806981545,80.27298325015025,11.116831791381998,29.363929770636197,51.39093837859724,57.5206564453764,68.81247958897241,64.62924970960087,42.00960395040214,89.44733909377372,91.56895073111369,30.91777566312075,64.10956121638952,64.61547583092691,68.8464475786023,30.306492517607854,61.88281940971051,14.986159602596539,60.61957589251893,18.86861198362405,41.801121482341586,87.21406353866075,43.43505258946956,75.14171973067045,32.34659091260684,88.25541908961618,27.22230232487577,33.63230285504002,64.85961176405549,97.38643583510832,65.24370332247499,75.95493035362253,37.93594430646827,54.21813388817655,77.82059875342519,54.5443412425786,96.28279163557268,17.027083715477975,24.978325060132633,94.58557938707696,5.705906899757052,17.0029576956386,57.83156876030371,33.52294397396606,30.322263360151037,16.509763031869795,6.386893881463285,36.0527966919325,93.1838567662231,76.1082784069643,81.06250589056255,90.07563493882563,14.554414917796887,71.66437332141481,22.88803459005495,15.022349095003174,11.352665159804843,26.960822889369528,63.82419451109461,40.59730030540152,60.67769454523012,89.79222697821344,33.45218697453396,16.300604825742738,73.75122797626899,79.35258874410837,21.69145215030487,65.50559337215141,39.91439776256844,24.910271378219782,36.6806464501379,48.389808042317014,0.7788125326494533,11.384522552373754,84.13162342714652,51.70214265434181,25.861989256648698,87.70948175098314,30.231543916390734,86.27637326350897,62.69075477050592,75.57878765060761,82.69444728493414,6.467943478778726,76.48565694119813,84.94131196739183,60.41341877822103,59.29895427873959,10.606814511448881,80.89007116708356,85.35934078925305,48.80937752213615,24.70249032691777,88.63902995319377,14.353408453528226,1.1424537142978974,32.32821647615851,27.489994858204835,35.00533697230915,97.6670033295207,5.4467928825914775,88.08982617650464,75.11097267479357,96.97041130022043,68.99107933200091,23.713363628661412,20.61654488092519,29.14164179076514,2.759706973023801,88.35948309958633,51.3151619217201,57.588179934852654,18.464489321895773,61.2677913663133,11.551895056498562,74.69048949134589,36.21207994250082,42.971326079038164,41.928357050027685,42.51620201867532,55.45636060046799,55.224203439140304,75.67960054076562,76.74211460063046,27.980005551028377,1.503330263231062,58.477762040803505,79.296892012107,98.52266064553775,52.000030114565675,90.63277038696806,82.16009854595082,90.90524082059245,76.09401489020547,32.445166737594555,62.122677088885304,76.16784338951548,80.65616955840443,96.43905317597809,83.98790794435679,43.13876234015853,8.24062683339709,24.34919587793357,61.57603731228352,45.95863279361004,3.858440686829312,50.418773651137336,9.128470734491167,98.08743684160078,41.97566642309399,20.16694715989339,56.07556367462732,9.806307283502191,35.406248286593566,51.18752431122567,21.106916176539304,9.730829969779952,87.09178962606006,85.77963764666988,4.8249485737206665,44.146843919528386,56.04286268329764,46.68181821497339,95.81182927525381,13.834283780519897,34.43840093983847,11.438100424622489,12.861319634977608,10.91940550820154,92.37442053557466,30.947787552416916,80.28636692808954,17.91508937909182,8.477680378899933,83.03844018794096,62.196760332573774,72.02934910527132,25.14225695982393,15.566228033459172,69.40738883665715,49.40239166871314,53.86354400759614,43.43611854447435,93.06830576807111,1.2898234879678672,70.31177649070919,85.32483311000578,13.664364505287486,43.19449808797733,4.3368176510175545,66.62506041970944,99.58609202880396,80.86581393193967,28.866844483538678,34.781149789553254,26.80576411082951,80.2741116459314,83.53282393428752,20.882103818441323,84.24266354439966,90.44749360946433,28.92769024583246,98.24842585626182,51.27860298729915,97.8305075721709,53.49484393966982,81.6303289305809,37.97993418233106,47.68683868127458,48.689920578667454,14.617705304435269,64.86364683466884,10.45589912884064,72.72826791339526,74.54492090319559,10.418887147394763,9.585216277113895,61.976354315561636,54.02096855139128,45.05999800260558,25.381083161693986,12.098705380123842,97.99485805641662,85.60013956362988,46.12632038009639,97.94341979096576,14.916536792528202,98.54974810969351,99.0818298212919,92.41156627596757,36.84851506716477,29.302303921256968,81.61864294247164,77.62630788262082,89.45990812214745,55.869537877019916,25.22631219300171,68.79195607825673,50.27094420073834,66.92471476045354,9.96615529717605,78.73912744792732,81.76457143479522,10.829630626072772,23.789263660977987,1.6413804694851764,80.77294020869951,96.29347250724791,16.855355037594034,88.81411782633131,47.25886132878732,69.67286284841332,82.03606027954824,53.657391106893016,25.65875790985549,69.07536961387684,1.4944578522607332,78.84036983128472,9.699722632592255,66.56838982444597,50.12792798241538,65.11339605505282,43.97403038304489,54.88821676968808,75.32810337694362,19.84557795443571,28.051149092153405,94.30478841501183,97.88521366121402,82.40425382885734,12.849718992277525,87.76071565847491,47.00297392472802,81.26263171212831,35.56918435088466,38.18985510795972,97.96093536177501,95.97792192326085,67.58051642054897,98.6270987031491,90.36576948783957,52.35894422860441,46.8312674090225,96.73988148704595,62.88700723929127,50.85096302831415,34.40332380406213,81.17662897795228,52.29184911650782,50.692281229010625,32.89449552101552,18.8027312893131,61.18791512908014,67.4356329094107,28.582163047650845,91.06805633407598,26.25686832679569,31.047497727468798,20.795288239192967,24.000492419183452,30.130328484644387,21.381383378796116,51.97456288343493,37.0971498199525,31.94504764573125,10.782342040842096,55.79741279815183,43.304712043563086,39.622528802478286,68.16179434582223,51.308770906841325,9.469965989606743,18.422614961314633,20.322718269040998,34.69857503085988,94.22937499042258,35.72140823477301,50.07449496491625,63.90001763254739,38.417013775408925,83.8208604533091,80.85417176393942,5.374645781753895,48.403421531267796,86.78003600152124,0.19981482658786298,67.67726407755089,63.716122264340115,0.8578741009211743,30.631264875293418,2.891693816945329,60.61676358063639,15.017488075584929,2.942088993430636,24.821566492295023,13.773625689503744,34.576979990130575,43.30250744921038,12.21836656908517,72.6805040014545,42.852206545064256,30.619767521344844,70.83455313423082,85.08987487746624,14.397544541103136,62.97896019909527,69.45968155989095,13.897583920715729,93.86003900188659,37.385026613190576,43.90065321709383,37.02080762493133,91.99131635683776,92.98741018853775,37.899236403521726,57.37887547971173,10.471326044487572,54.94511505621635,69.41325408334403,8.2463757212626,74.79789830593825,3.48702264863866,98.66539274670151,55.712526800492554,60.99948279732305,24.14848482162406,75.40379318760199,5.852809556320871,42.82441680152176,72.13450853914732,76.38394501950205,93.91000069043335,5.217974937696479,54.896340472456195,52.50774581739394,5.35833057504107,67.9791932551879,53.42659307584696,11.730528653617645,44.75374353496802,52.824858745543565,41.36862139149652,11.658253373916526,1.4701535276681943,96.33661015546768,50.01378759349284,93.9730353021037,69.44994720944993,93.038961023375,67.70555894127756,59.850988131636804,72.60968988304325,94.7628902510602,63.72686812653359,23.593724370580247,7.7843687847003356,77.38127872560253,9.799501994171322,60.80010447993739,46.35511009496162,17.896735728994052,87.8372845245829,47.01446015124958,68.42895352045647,37.74495168011256,44.03516948691524,59.542570657665095,18.22629858846696,45.969904988804714,96.63829905662455,7.6555281479400605,74.60520494963464,84.26584204966375,37.75695057921963,42.03620898405514,51.38831108588396,82.52048493176972,25.76326612235299,28.88747405893124,43.85331788200099,88.507741926124,76.44509352997822,14.038265099376368,54.91866600494565,21.121895722093043,15.87725797255496,73.45281685184042,65.33287288640166,13.682614378880064,64.94372911409158,17.302647753760205,71.82821346674663,97.3631340331576,38.66298299131018,53.49721549628305,24.758010134246554,79.90731726256494,6.208436082628643,66.16028244227158,99.36460419382638,46.624483945676054,58.695300572065754,96.18560640900812,52.51811408647675,7.117074072343521,81.62090902034875,23.308758739777613,59.52490562509034,78.32582779511523,71.34852508450447,52.9808647269232,1.5840157214006556,46.35652997607558,97.35242989375786,93.63857072619213,76.85763279583861,16.45437208084465,72.22127775847146,40.58220526934711,5.1838176748628335,88.11258922632997,99.45548092953275,77.19523496903494,21.94659394652828,74.13200267731568,98.86927905435392,93.59039483154795,24.109072597521852,19.045951734190382,44.42837535885145,26.574767304980217,23.604079581930325,90.3938049520023,41.48118720336132,62.19202445159714,58.59462431106084,38.32332302305409,79.46869109408611,53.11037222413051,67.96192181613667,60.578753136368356,38.96946368261932,39.907709828275316,80.81211936681287,89.20883655115536,21.151960751120935,88.05050308534305,65.57710970609669,14.144583375995968,34.197862244114866,36.77686300965176,98.2941173682521,91.64549409097033,68.99328206282101,21.31838406759343,60.16083702305668,22.449993243092237,85.45387263093538,3.3269012119625296,10.43935386269318,42.02338710761049,66.20790605814193,66.19112155212837,77.13922732700102,53.41246625790177,98.89329779991265,24.897682401844833,67.49754004836348,82.6632130581279,13.661089912270974,42.75324243876181,68.84985694016436,4.0328969257171,76.9392376214303,84.7664822904447,26.796309376730466,92.26780412355359,63.110002006634005,55.93434895726084,76.14086935141839,87.91305268808978,35.16537548254011,85.1919676880742,11.119870411264277,82.8000209582069,22.54786548746003,27.23449762625778,6.581198062438953,52.0234731263019,67.86478153472768,88.42935031111867,36.613162255228715,27.59005107368101,71.00872286899687,88.47781850729311,74.60331814766991,96.7878601484193,4.923135977729043,86.86065996312819,71.27280014036975,36.78125277469718,54.311838558137694,34.91447294597779,66.31885761709496,85.45426357148862,54.874036240145244,20.29462323074457,4.250903846791509,65.27939106214929,53.317081522304846,33.79477327681266,74.85295828890767,67.6585033292755,16.71841753158425,64.65211333760132,92.36545137038324,16.2766922872876,96.89600260199937,91.55782810428958,20.078636548085893,73.64653861399073,56.11555403926535,77.9294833598082,18.571969793198527,97.61230050366574,36.70129851491277,24.400263560441083,83.84463309657069,26.047398771812304,65.74741184218588,89.57025747118739,7.555159095469288,48.614358917681166,51.63502920732997,68.59926156107701,18.597052960478923,77.5943486573744,0.8358550943548759,49.11514218013243,48.19244828756541,57.27859575367001,68.0004911608641,74.47730814649823,58.46656495720532,53.07890739110312,52.890832542728994,86.41355167968618,65.45630620891474,95.36995438236094,44.74573643493096,29.38111414596859,57.01672974829839,55.01393175870456,29.827991596179615,37.46457802950268,25.173109001204676,74.52494442994393,49.733909899314945,26.734723696600927,75.53719811960289,58.87665192641192,6.243999981366155,7.890926532650655,2.0768706444664775,44.677306862129264,64.62409503181055,31.98670586242264,78.3440349427966,36.61895831891498,39.671626072435295,55.62631361061897,33.52063034372832,23.249617142201927,59.250505494076776,62.72549791345099,55.96202776639528,75.48077932768027,94.5157061222538,33.70166757057091,25.116652418121056,57.35524243676614,80.89984848139001,60.54439850903105,83.66407465821166,15.905037631049968,94.5378469751628,74.4287741663845,4.804122729916149,46.94000506900656,8.888328102712107,15.253676667559457,21.72552570367172,11.59222917792746,35.32515329633584,39.33897329646242,56.165916840580465,41.788945641630534,33.86848680338795,11.115985931352935,81.73873566123375,19.82128543638688,75.4432085137659,43.623518017536846,90.69034699695099,53.29562043271648,51.1704597984447,20.88696648667301,46.90144035568199,54.77932014371449,54.78950095453835,20.698181773691715,98.14146686720775,27.175921954565084,7.045798837537765,45.28388658444751,4.574422896605002,15.452242270938388,90.1214242283258,59.49405643125474,43.90412525824091,88.21312536810653,78.46316716664072,9.331751574851843,94.52676499495001,26.04225357620932,44.27643005660787,31.065378748176197,62.94024910467414,25.562844279460318,71.29866311733103,7.114670116104637,22.643325139449967,22.642793981465093,93.76148800178031,62.02537237533274,61.21830778220837,77.0560860962093,23.793100464242777,12.317821736917278,29.55410269285502,51.80320408721115,60.149422304380465,18.799134704157417,75.49178383102037,42.05077598154671,33.79883091070391,39.0001162797607,50.87970461578748,20.915452249760623,74.10108573111354,30.43347655705443,40.53325359473586,53.82936310729342,11.560416663511585,8.595497721987822,29.00552167322912,53.2776269545867,30.555673280222106,70.70386151993651,62.30122464358882,79.24509956547352,65.79405804084448,77.16841852170764,81.04899577909205,6.1551241168234405,60.407072607357904,92.11443110403302,13.774079079785173,67.3881068234368,56.311682127765515,11.827628758780328,52.91618337381361,53.56760760612874,9.344724032219432,84.21731777823726,43.10064551307682,19.989507367780924,28.42033992914731,61.13523528642543,52.74285229839359,87.29038799940524,20.75068893450539,98.03868610890535,52.78532049698674,43.06202348258403,15.301829746386419,3.2587009186529015,49.08010444203165,0.9126329508728714,21.874771182157115,91.49646459176122,31.220066334698217,94.86527991713946,11.395586633110744,51.111659564127066,45.748380984939075,88.69464293820123,35.9751019524922,5.71475974739143,18.087249651821125,46.76404433191836,47.113060372512805,57.774046084058504,69.53403001538389,79.36850086926933,24.57969562571559,3.8157006798286375,60.61007104551069,96.28948682582973,25.163961127162928,49.399703413399685,6.0181785882104215,78.97449153131714,34.129668740348905,83.50093836583207,56.04551945528136,38.959029944595535,10.749971318918227,69.01179146193599,85.59976267786837,98.06393013512718,92.34842063022995,92.68019744461917,28.514535717931665,53.403328081659076,24.61874862907353,16.660067702827607,16.74095166278181,99.86669172021672,28.08320646396234,4.40711944776444,33.68822790347396,81.94462183633335,39.78963536048043,0.4315877051982997,24.637609507803248,40.675329824636705,66.33525484435555,14.175940328497038,19.077169520746484,93.6180189810282,73.21305468960018,15.531520203760474,91.41751444307205,58.98481251605192,12.203193180585458,99.81867130637848,39.069902484896936,44.64437976147006,79.58706053556405,36.99295989096346,39.732350968973776,88.51306555819444,25.85720046867056,52.42542221246354,57.82335382950494,17.453510683530858,35.87119329568779,82.31966287373135,2.1424113308186055,24.3373325816004,65.24125706642629,78.81596279071016,36.34396317249639,58.63790368524996,23.48330100973103,27.134266799009076,94.71346266539973,3.1803795978874283,86.54263006157986,62.693151487296284,73.42421232997555,88.89321405906003,98.81735764698102,36.2614552284126,48.64907862736726,74.95622929140346,5.745685819673763,66.1087976434987,92.724037372258,0.6697145394920501,96.9742138675174,27.350781094375055,95.51909862819242,38.04118791130343,27.969199367539645,86.96968456109603,14.628789199711733,79.01813139407349,61.936934231558006,14.456178324675474,23.908902415932776,6.0183453056062985,5.678048599480901,3.939931155519727,52.74243087598873,53.19209377742566,26.747867150644133,29.831375602615385,54.36981603927572,79.38150764207936,98.12541901905625,40.548658120505074,36.991453527838004,73.87943323143995,0.7091723647622561,25.399314408890938,85.62161592447384,28.216362846596876,69.82927975692269,70.99329789240821,13.602350179528411,4.056319917973217,45.88049918456266,93.44451198713053,25.492273495078198,94.2136764015443,61.344192087987416,46.27127523965214,22.80242653757999,17.739207451716176,38.10508006706104,58.30588661115988,63.827257947537106,62.50620372767699,97.9543755644061,12.710924359154763,89.81263411681591,80.37294628490808,2.012764494854591,68.27377542478719,29.3346451996909,3.952466606181848,32.04636206352697,42.777725503341614,91.07571665601513,48.959526285628385,84.68829612244342,19.553626236963584,27.422198375364193,55.851124344181926,53.16906649467429,14.23760721959052,37.93395078958578,94.60171651759084,49.207010222437866,59.87960768776042,57.256319367616484,38.92096917760905,35.220499848531375,7.470710084172428,76.63720018121066,75.68731081467138,24.643950400369064,45.796763252805505,81.95483030928932,0.6166820833636733,64.14157515691316,93.03859886719094,60.403750664161905,38.92566401471791,1.949725747723119,81.81013328553797,99.57602220926475,73.57954232379849,90.49687283301623,29.848433089364445,5.6652143254944605,44.88031987015374,9.821707121303069,60.502878945069995,10.734696735410198,99.68625998441401,6.19601251053089,46.63147926415282,96.89259636990968,40.015830867594595,64.60924316141109,64.52944415462528,84.31027293699235,97.9386636915357,98.06874080707766,27.87224366378911,36.533736870400524,78.56061963610864,3.916832321123298,34.53271296938563,84.05674165441836,73.57842850704681,98.24846949566205,80.15674086687876,77.71503796447521,31.387535360205664,2.4972600932259614,31.129341731516558,93.81917662134117,2.5951432638830596,49.18615656718356,25.47373460417012,95.89672677473227,11.01077188123245,41.17597380257146,63.11976648920776,81.98884407885578,91.11503599877113,82.65564810041238,36.584638730594406,33.96954713772964,40.16804017823438,39.46445268425296,84.63467723913169,42.96608661266833,76.36054414804447,93.6556428147456,22.12476535221747,20.92944925988125,83.84081768907268,7.527347018056019,43.576072972120805,88.06653893735164,29.73277367136934,48.422216567428364,78.10929579531732,63.47629696886582,85.80878760153358,24.165991012057077,26.245677234055233,44.31809231676754,44.84494346621219,50.347134505232674,61.46185016042588,42.729628761089145,96.02680513611791,50.27127616005033,78.95152097364641,84.30442736764672,60.057722604779414,38.30124704893676,64.82949661882061,57.04866747262914,50.47010470014002,35.794204124834984,51.97948087440548,73.16196937788678,26.330506917520445,11.370708984778222,93.9875868336582,65.88837305787722,30.759486833538286,43.922566214192,30.678207480831453,84.99729560186161,21.448222589570754,24.93399653140803,87.62836433792283,53.78641167624338,57.57254273436661,31.82041591856002,64.15269054723089,15.681635170054363,44.290074872977556,49.51420821437177,87.10041280104477,18.64443907478125,25.242671246357716,37.80848619288807,22.453678896563424,53.19257005165253,34.38183735446682,77.44539214934318,95.59287093594965,44.45235961175631,43.432841401917635,10.765241852213492,52.38195551830922,83.27069049377329,9.286019820508407,71.70344734169821,52.622288805386056,73.95912377981244,39.5295278979687,30.0820866291846,19.54679148113533,88.53204150052764,45.30136248999198,0.05505511130305951,6.4514475200839865,75.2617377766559,6.080685924650031,53.663782968850946,50.152811905001684,41.35974489478008,23.784331015298456,67.3766795051215,19.797765462370055,70.25401491370324,80.53639623358494,68.43562692215612,66.7663582506055,31.96938710249386,71.67101727995676,16.573011532049765,88.16139280131584,13.137410507540913,20.59774964605291,35.46336738611314,58.2579726282428,12.964499426311937,28.079906785431273,73.18910945052373,88.70046945162215,84.19924720357072,16.189735895359814,79.53519781632096,38.75250228921043,92.0788906993806,36.291754269453314,13.00347808318605,37.23918652772855,7.477010709248855,18.905136583457114,85.53613658073141,98.7582609045433,51.211674309141145,90.94400976032718,52.036282450545954,24.500958736402733,40.95221211855231,55.78980984973085,82.05527630618647,96.8339352819707,41.25482989601187,35.49848393956445,62.430223820370315,89.75040011098609,6.306377201872215,57.069167107862384,62.69866447296397,76.69320130505754,1.0805111187621175,27.14024230024943,97.42412803202919,31.922953674040897,76.14982639798495,30.863568215241255,94.09946794680954,74.69663725150836,37.40478639760683,7.73281635770341,76.92873411026297,39.80365628096493,23.070850428201272,62.281962920414124,61.17981611733118,98.9833570549917,63.590706426621765,27.167248791481402,91.45728965789992,90.59964394352042,48.273395735255484,19.379252866432438,76.29357127174477,54.350567231901124,51.18439118716446,36.88100204807171,24.103864028143107,59.57637409742617,95.80237957592472,82.14371010563309,97.47632209967134,8.240321442743781,91.33018450341154,36.04259860980956,44.77983019862928,55.46027344797964,51.414838040155296,28.50431324379894,66.44560349472351,90.91345969916046,72.8594904710712,39.706050887858446,98.7008168439009,8.315136211461006,42.38130505607033,30.90331285817649,77.1452452442295,24.467225592183695,54.5064283390594,71.95972927508217,44.46311261691038,44.34267172700286,24.711059904233867,65.07938616849549,81.77065818623446,37.29670569477344,11.957174114149938,94.46901160024012,80.67775672521485,14.247991017534133,91.17438037765922,68.64206443238328,68.76034828755053,71.9065838613604,8.516419605832493,75.219199671152,29.618272583394667,45.108188958569706,58.85542299500821,43.0666407912909,53.16214385671345,30.139095829513696,28.75344202298953,64.63947531014304,13.88153323097242,86.33820904438028,16.523679961775773,40.807535632333455,1.9336718689368149,71.62155536428848,66.21240365964822,44.04799825056989,62.423814782851835,58.64229991581341,39.153343365882954,71.38959092549145,94.6505340150687,66.13819408957352,46.56842399281409,42.05770832939603,64.46575906851744,69.75502697016275,71.09000331770345,87.99134059841242,1.5570914738454178,2.4727119153905797,29.542910781096808,27.57375740890472,31.737062650533964,58.630601202583655,31.72828682896259,34.80241810580943,17.616021488341104,95.95566109814355,72.57584305177649,97.17211574707456,38.445333564587095,90.45757855789904,25.70734069979299,61.22465125202756,68.74265610329688,9.25868580665904,26.94681667372947,88.86985822493544,99.21404407579472,28.329807168019784,19.139957682916965,52.22986810832131,83.05264680619821,46.063290709497394,23.47568202572804,28.958921933782367,94.28207916362544,92.89784889293557,27.117905419500055,67.0514657640528,93.41657476593862,64.82559673454071,53.86284129514376,45.89779148497372,56.48731092697826,51.98416096613487,56.17767199910859,46.903953223128156,34.778045643760144,3.051965068592921,38.513246845894436,15.540445276733683,50.1501925674449,25.929442917784982,27.235702092404402,59.35935099089276,2.127821893965509,84.04616019645638,85.21461532660118,92.7933409182494,61.800397136222976,65.72647951408773,44.47280285162346,78.43747445074182,66.10142669958513,77.99283263381815,13.417975564411222,48.16408693081004,68.06535573886944,9.919258025671551,70.62393924786969,53.59959545965456,89.09607631337383,45.35882374920266,93.97383653335255,32.58990619263673,87.72921035498473,38.980172632026125,78.28754295130659,57.206195423584724,55.55538337480985,79.89915739355561,67.17584883302035,73.65064119312038,35.70138729602663,21.20229535097835,57.78428582970467,26.85175299291851,56.40338922898389,5.649087591857816,85.5252486905488,91.76420800380627,51.21725743824817,25.329864060240592,61.66599568104868,54.9260125581034,4.860997074575613,80.64846705677303,34.36083915842708,75.36884997924437,90.26453505554184,54.69464778493267,99.05977519444734,94.74779987709157,77.61718513057832,58.158396562151346,48.257712774566045,37.2633059947684,40.02920766432994,16.368187740825,68.09928418469367,20.04305915023633,92.59244072932145,84.23000352081284,59.142786019724205,38.59255750363298,53.51527759120188,67.36418099792174,32.243139290327115,81.1127477976527,24.866911669654044,50.39970710352113,40.93775634469027,29.66642361552978,16.509657441093996,98.10136483318718,99.13376773482959,91.1159311810189,78.49547697140468,46.91456593140182,49.178031899805866,54.093405878538384,33.6679581659591,46.69643072174263,37.92618610799976,48.50299299747828,34.050138930302744,27.689570070014323,31.670661304637694,43.20247593356926,82.88430841690231,0.6291275721923673,56.23249676636139,67.42040236211683,73.65819976880701,26.32058593156632,84.00180309380046,68.50683063425488,45.336386667079296,1.3223263597212154,39.8505601832153,63.3218051054961,9.89279694755334,26.822110314130676,28.84829348633533,22.16010866318624,85.8632745519129,34.03644827320386,11.850613812158883,61.49472195012058,19.753098882998298,27.851404716304074,41.72137169205888,50.746946326070166,3.6582700128552803,95.14575245465444,52.472336871484906,44.77827728633267,20.15990049092291,19.302318574668654,14.541292280263463,29.588307149599313,8.768368463625597,83.35754413586429,93.48790524432026,7.079840568833595,11.401099480512332,95.80384410716447,25.28743257392705,80.16723105161327,28.0053520103858,73.30194968417094,0.7275395453242961,68.64444285820987,13.421357618088125,88.26860978789797,89.58122924040637,3.9243309338366172,43.71110376001071,77.77414435976284,45.94692837306372,50.52055601701424,60.01638762122702,17.002769923059912,72.27994142730515,93.93664906885823,97.71059773322102,28.872568269359412,31.164305336693065,7.992058764085963,51.243380254894944,22.739121279158937,22.768320413867503,2.1964079060206476,85.92458094334806,66.9184705176948,17.203574663540344,21.770395116829356,72.50475234349406,11.78943258073607,82.17563564963066,71.47704080637041,40.808508628606454,26.656766931822297,23.46964344808422,80.14317863267732,23.933027597727385,42.956804648464875,45.56661526819896,74.34153141281017,91.75730528286525,88.43609527704275,54.609069291671275,95.09491856441146,43.65045406560534,65.33889852320318,37.342504429922876,45.72583443671496,42.91528262634768,81.91947070966161,97.85963634304979,1.573516705615985,85.00723965902411,29.54445543446832,8.042052833498037,51.035002555440435,16.452470705166956,58.65744688018901,22.61373844905197,94.92365537972843,71.5598496445008,76.89430017115964,87.30858132212312,66.02408679630123,1.392268453452128,84.85117683508984,34.96437694402951,84.6145299696571,49.980005706124686,62.958315830085844,64.49384483069828,8.268744848641841,90.27072980756364,17.315307489778263,4.4866225660044385,38.72119002924704,8.60925373759006,20.645120082513923,7.759777562725734,90.76413989804377,80.9696355443446,10.324489602428265,62.329360306759455,14.524885827542821,68.09921330372728,79.84895733234347,28.783761564339382,0.9672327780222645,43.25003349860124,83.80201483250478,60.96810111756453,48.22484382515728,39.87538476135296,2.9659540072728308,77.70497632225756,85.98449628197754,23.922261033272395,34.02864191142392,89.41156400599759,20.740371707613605,85.70136662078761,22.692438716315344,47.51674701582408,14.190906501295641,39.82265140807711,55.87845618245779,62.811881410153184,33.052533327453226,2.147716060603977,44.969638010855526,7.2747245682016075,55.55152927461818,38.69491645141,36.29262169880876,43.245661966245244,74.177764571485,20.98474981292241,49.86951177442276,26.030191815100146,51.5254198471924,87.94811383180559,31.645202604973043,95.1958640247636,16.99446100112282,45.13399629422249,88.38571171785385,40.638695281605195,70.6901896466668,82.12623551834773,21.96237785563493,51.627254453179596,10.703010848040806,96.21801998427047,83.4208185912104,58.678394124857,12.92674859784425,25.05252289366191,77.69059836627763,65.83866832345475,69.29416465707513,40.294518963756495,94.78990264810744,32.14181572362372,11.245981464791289,83.87911738815842,5.982978034220244,15.107381264471375,86.22829268534929,5.478826717848484,5.768051963160858,60.10427084248357,35.512565614061465,80.02511989142673,1.5449675556215015,12.658241464569075,38.90189957021539,18.841368479947597,99.7393097339581,83.90568697336721,13.808416828095993,14.43571530734774,12.461509564023821,26.275650631369917,63.912637361731065,3.1540360321349548,50.42307560356741,64.05761211370132,18.392725933514498,57.48034376601272,80.71401210265002,91.46304202820865,86.68027550656497,98.6020240379123,23.157541265864,50.353659029081776,42.626488239714874,49.283514395549446,32.61567985731881,60.42961806246652,42.81397623337983,27.79902690273792,15.574121446241696,64.55434868776916,15.21862818471732,72.34485245328334,36.36429955630126,64.31487100204329,35.58192959722432,10.049371643601656,15.964373742906746,9.64580367894401,65.22274624007132,82.42765912622087,86.24043710102127,87.74769988767241,49.49632696883626,54.34747948215005,91.07191817491842,0.30845080547883263,21.028036029724174,68.25332888507985,69.86387813699743,93.1218713272547,61.109751274339274,85.33989842447389,5.517806092859001,95.63215393627155,0.8363956436378772,36.65823890028091,48.37751756303206,47.515365922784035,3.390025989954615,38.817405560769025,0.9694175478610179,66.62329784395172,96.3018102735044,6.461174283076321,73.19463201362706,89.10445281561145,80.62168100774907,68.83443021533104,15.163123186200966,71.52582639994992,6.770949783848412,18.74857796358572,68.49603860354168,69.20351934574917,54.35454270140115,79.63298348212446,79.73299275696469,84.08580505426802,19.00907834430545,64.44017499464614,18.549902490687607,85.29231676598904,58.40252662880264,22.75310996329125,93.0537718555488,89.29317927381739,47.52484850817835,91.98354839840468,71.30946714595198,76.33650339995084,16.65518158477758,79.98157905270519,77.34562179923601,28.514669982961937,29.993039743008566,10.638624355576265,58.560371829655885,11.25765448731485,85.39563185983874,94.02779104540221,88.6355779739266,73.63750242541828,30.083085542297304,9.501136429963509,23.74680690285157,57.66476398946343,45.11995995718907,10.989563929852297,60.66703688074746,73.81036828225298,30.996326452629074,5.251059072390563,22.099900629738144,52.935834030879505,87.2099107146408,85.14668062894702,47.89428327982721,48.57867257522069,13.479803238037825,39.307434769582585,61.44135141876267,77.1464649700414,51.13559137138031,50.75246600802485,48.539647201175285,16.988741534449503,46.227217670149834,97.6452763954956,10.952676577434373,19.95667706016174,83.65282952086902,89.67831807115628,82.25493606715791,87.08227514401263,69.32896515130008,76.67082862369132,84.90862475312413,20.681603774332935,80.17110020354127,79.53499300459994,60.222298326259995,97.47919503613298,94.5595943893557,11.871716784356446,86.23438147331774,71.16288512713953,36.43676211491121,1.7956245968620332,47.55872592563162,45.62069316395846,66.3773670022172,73.02558501308863,50.94905249915597,98.34201868231418,85.71045438589293,8.125172295506388,48.59917161019628,33.36735971649254,45.86855034035418,92.5610352117455,64.69547517503179,17.2652967092512,49.736777939764835,14.255768915197454,25.41532604334349,73.64990006472274,86.84155569472392,21.432483319772867,28.5526174031681,56.40649170505908,26.784127146523883,51.03611468318924,52.08790336884246,36.5773341795803,91.57295997934618,89.65237215965617,57.46035336282107,85.07067469261459,88.33016435030616,85.49310947597009,76.09766551852536,81.09059394939942,46.002727062497975,39.8822354248415,46.082200923859695,3.6532702004001827,50.99386120343158,22.42828037995985,45.494506345812866,32.34200415490853,24.265751246110955,3.1751534086531863,50.41867360522081,24.148099787598987,75.9873772326428,61.74234137774567,26.771806726542135,65.19058220418377,54.57839287350564,31.601619028539307,88.66871254598603,41.2726696099323,94.5641625898683,54.202348250661295,7.200330568804636,98.45512575869496,36.94028255191037,85.1718356646159,37.16197366185017,73.42912541064115,0.08285064422653976,50.72890397837849,39.33172801992417,60.809744134561164,35.40718913240223,5.119207735962306,1.4780344358056974,78.73698413589752,94.80452820282133,14.887114243154876,17.563095219476242,40.2437416774727,76.475378978522,59.35329186136317,43.62692634228157,27.195324613031644,32.004183384117034,61.144436540835635,84.24621625829928,70.64253546123084,88.56428739523732,47.92892872244121,97.70042398322647,82.03661411202407,5.636371187827505,57.02979393841523,88.94052642369425,60.050249372844945,57.9571924703422,77.50096548219449,81.03551821293678,49.907588838030684,72.64295277614157,2.483843029779609,40.180148350462886,59.28393467651709,42.53887634956318,12.150903957675752,89.73154464821673,90.50441054786258,84.5456852263057,84.17321405023638,16.59789102992153,15.894014663278334,76.07981831345731,92.31238207414543,78.72663190746803,38.8249031326503,2.060315320021411,62.56176049685449,34.7330177551717,71.36527570917302,27.014354283770203,9.90569081946131,30.5516495211149,39.13473042130023,20.290505496510647,58.85785872304052,72.29095156666212,93.77766699861762,80.21732762475831,23.27094043369151,33.68634236120721,57.38909081389144,33.3076199907678,80.27448563967083,23.361607498364044,96.88539643406679,18.634628959862663,8.511194808451483,75.72372813943278,28.87081696629361,63.68980176600727,40.838395441864314,64.59753968659332,84.72743584343586,6.136397814724937,36.463103913174166,12.697130311626337,5.284310319372832,27.55543532599647,28.71998006242158,88.06314712873514,31.72265669833876,39.25301144595588,78.03150705498399,44.75734866383018,82.352499835523,91.74343307957423,64.2470149489754,58.28885792377074,72.47704434295672,17.512336928775795,20.15136331196382,28.10814661137754,79.94877391413137,4.9211915292088015,69.08037476204744,72.33882089028798,39.9549918880418,78.11508991752054,75.0467542322288,58.2119734573994,36.28070782459161,23.343249383408626,19.005825557502288,73.2528113001613,54.50219944483216,20.485375797653337,73.78125150085042,83.1397528873481,63.7871192937573,33.251701962832,47.1779787951948,66.54806379052516,26.74820249079901,84.2534010882256,11.127140445091577,10.221135982355856,46.6269618129637,24.273327352951014,54.18317939260548,75.47031474192498,71.3935312931097,56.967187050444124,47.99351117917885,16.648055032721143,12.040722653399472,66.43466130480006,17.521717786777778,84.46936108663282,70.56379367955287,9.513193205064429,31.041719482101303,10.060574991489347,58.746271425298566,50.17318929411792,0.18634832511627009,82.68453633069849,34.87432510021938,82.11000383884755,30.770812989454445,51.32662988266987,79.71170358996955,62.539526328665396,31.6298680139637,28.51954836278219,15.328620746776433,4.611625449243295,71.86586683612735,77.33924034095868,4.034472016361956,80.4630482978733,41.26870658449787,57.93593736329349,68.30337954187729,22.6055225883419,81.08894954707819,0.400140698237772,40.36202263359874,91.73624079263651,45.37157820718376,60.16947335765188,41.68955479549696,40.963867037451884,72.80779821015538,3.153451490145698,17.811059471454925,90.61985450888534,91.89456707140452,20.45242651726956,72.54115533596665,38.07075087648312,86.62632225213457,32.549404121516865,69.92197248807553,58.849445906387984,42.04520000998999,53.384623176201586,64.92089013512404,93.25844616685752,30.641233561322878,39.525681951911515,59.132090585774534,47.074787044860344,96.18710969260508,14.821470275415605,76.05005265482872,69.92243947574813,7.301595211795952,96.0162432049841,18.82463272696333,95.00495388929177,98.87473216619588,90.71544018254191,89.64405986863443,0.8294921169098801,28.640618745292823,63.379055659977034,40.735122921805456,35.43217720025642,38.885257497086734,93.90280414428338,40.02866563295269,8.768132439424347,18.491210778446575,49.71961749014644,41.949024176037284,82.23671506438053,4.492579991409573,43.43182495179422,23.55519107867512,71.38935189738727,37.79169958127143,91.10503747771823,81.02730275421173,44.10979352978028,40.66213191533132,93.12303960334833,78.6430679775877,34.756643701642844,24.87587865081644,42.6689507865802,42.28910082586441,54.923501736645896,5.411134745204271,89.4768534323066,94.11773023313309,92.44489070286456,60.440210876835906,8.333315740670134,10.84297432713468,61.43900247170425,88.13342356526823,15.698428399159148,29.54105871658923,8.310903343079602,17.087671187581144,18.561049230540117,89.71435008920629,14.23207507425145,83.09050387442034,86.77081351355093,94.9113768177954,79.17835417417962,79.90727792537719,26.42284010724747,71.08361936557269,2.855691901832935,24.459817347001046,64.3826098853285,30.648829900553707,58.561447868533676,30.229289555560545,22.412270172343696,62.91609740424359,78.91792182843966,81.91000598102511,18.849571984690705,54.60598255660448,33.86759024068955,66.24423290110781,12.376456961125637,96.74537352250265,71.0687177650118,41.10417942464688,44.09159259131962,98.95183830356625,72.57511717444116,25.84528911989674,91.20948386568189,29.075170231565128,19.225724747323458,22.741542720751973,25.215137463929338,31.18684918319564,9.706666085290038,75.10147995427938,71.1604256577243,7.973380998498647,12.022238762276128,97.95060058002322,50.665087694884015,22.182554666645938,90.09539737285458,83.88923234427536,85.27562087279448,68.42424047427026,15.526051208196112,87.40231375925586,68.03387077577014,59.32554250537898,25.302647863880935,48.79353746693328,1.5380907019256096,48.27871624935695,44.136707792772135,52.74994705573813,45.369714442569695,16.57401897188159,61.565330738648264,93.39346580601493,92.05449905946531,51.236086409702665,25.111845343492647,13.807185692882262,93.76526778571883,11.721593606064273,64.86598924723071,99.69313956161905,56.86835760210512,60.63209767357408,87.53979165905957,84.54613693319959,21.352499867937535,1.6888260417589174,66.97449570347523,23.077014843674213,93.88897009157034,48.624968307079484,59.300897624863104,99.59175380090106,4.366882519394033,10.51310788871589,25.441306165634035,9.39230431693112,5.176671990318238,77.57145765280534,17.895999899704883,87.99777408757745,72.20404341324394,22.015544363319105,57.203495646703864,24.5459539209544,19.995757255136592,78.80761012821492,97.43884657416527,46.94187079825419,63.39911860947262,41.503132622772384,65.99177457273672,90.55239081394029,84.26029531694061,21.155501018908694,51.024071122150694,6.702737679068916,45.04241664516575,10.866847933275892,93.50042164412396,98.96353865381103,29.723340323239857,2.0115279188776536,87.63941785714341,43.250520141235135,80.67098843381034,88.32902947344697,13.198360427406575,67.34866182522485,33.60882977141082,3.4850539283854287,17.40505625777159,67.29895286155025,13.00549690541124,94.45268121360569,90.0803350118061,46.1163476906026,22.573732700357674,3.672323709479397,83.80495411105483,84.30352822842165,71.48558332954764,16.41331064406589,95.86726688621488,50.05764172071439,53.09519379576414,88.96819592615773,69.13928096414348,94.42604346057622,55.08404451357104,78.09670374102512,83.12930525632699,40.56479037821933,6.109307481536441,80.54667231263895,64.74013707572762,48.6888423962197,52.14074468817477,17.29202534452532,79.88166808793218,95.07956768111892,68.48378585575998,48.864962427338085,31.52483856323254,22.357218190608798,62.2838774978059,71.58546508708741,19.98055871848147,35.94298966678714,3.939560047639301,61.34685391431387,36.37253834106827,53.86435996745556,74.5296227829329,13.197683740032994,78.7303167078433,53.890134902893315,54.66664002461842,0.6991018726235976,94.3075909742493,83.85303058647156,11.411637198381985,89.04355907293677,89.56196738783821,77.9868660010992,40.99113957052186,13.850619617206005,6.685715294746708,42.8969665625092,66.67596603932145,20.27114752419528,85.0688313334961,42.40733302387183,51.175688788381336,72.1639195115038,44.731003957229454,83.63853605102172,74.44766224046431,74.06283156822963,46.13284660998984,76.17879328884808,46.414083309641505,69.94300147887279,21.780398275931788,48.69537992018017,93.12287209764163,84.65207607698798,49.9376615276784,29.142508536392096,65.71683587818558,73.92969136009538,77.98767225665895,72.38377552052363,0.007090634881168345,89.94428311262355,17.86694341201127,42.312447712098376,86.18358796583512,70.78157064085595,46.998982740034755,22.478991704229536,97.45096991494538,92.2545334522394,93.50035360227947,20.343879360249595,61.40400407634885,53.333011947699426,46.888703237549464,39.477062650838604,9.600033022983034,93.76862662092418,53.48956036546032,76.08306597507035,46.3424241958896,56.83550137755362,97.02812211808428,26.394205124948165,75.5882767956819,14.353185379757017,54.950245054872795,72.23000894969779,69.64027040158194,46.85459643749845,51.84507754152994,20.93169439125334,63.2000832612593,49.772399039898964,95.46499071079585,31.05895951086046,4.733544935140232,8.528736196864717,59.79711003472151,27.346098169398857,38.99990279830134,53.53394504389011,44.60647731533092,50.662758211559655,71.98110381129223,26.6376466151914,43.80117246843802,53.48475133561076,11.506077856695585,35.520675442749194,47.02297725490898,38.57037359900385,54.66817501794065,85.25641987934104,14.677304109015953,13.59811315533177,61.48693729784197,70.9991095219566,9.231322404950848,31.95198231361066,48.781921047610844,55.59024334853624,24.017306237871693,17.90084714342618,58.74466639182473,5.196906661107715,1.7407904697860466,11.712154194742464,44.68974904429934,2.5535838348185735,67.61038213291747,90.47430433331797,11.280330268630356,90.56336299158177,45.284027222285786,0.24664200250124058,26.909524693381513,88.82458337295309,14.605847750452028,13.897942451361956,91.70209310364596,90.19918595701641,81.00418079310535,30.072362042148516,98.24133851810187,27.084222333130736,51.239860495652835,60.25366760017351,68.17668646105854,38.52067333969815,85.38857331807527,32.066713501885324,93.23355739129595,17.5376021512779,70.285867654895,47.59988623762472,12.628781814487356,22.753444667974996,7.950898697347986,0.13593423557972661,62.21919343956054,99.69516574474754,92.1708781031589,1.946686062345937,19.30653328275661,82.40405922430199,41.02620127584354,26.846625703865268,63.48561080441157,61.66307763058637,2.084445398685064,34.04679393593813,16.229606331303216,71.95925042240272,39.73611929365304,20.671449108300056,66.99684861485467,50.39956922271672,59.231964238379064,32.6145728805874,33.437516771887985,82.23647741523469,12.368485430752651,96.32797782266154,15.931241249974903,38.43214651687873,57.783135009751796,23.169520875963045,6.105086923944558,42.27734474905226,9.39742614290684,10.828729147865989,20.67138455822156,10.600230591549787,32.01248948580899,95.4771775606503,66.76480262466747,34.27541148301167,75.24781305565183,46.7109010116496,99.77119119184327,0.06194378105711662,29.242297446466537,8.877019998624247,73.26491652079272,98.45435222092712,80.4766634533113,13.963260470230887,74.24573689154644,94.62186948296667,43.5246759051193,80.66566751328509,85.89626942724541,6.214158382936463,69.67356136941737,36.23897617905442,54.189799272729154,67.562932291867,24.083585919329977,19.71858115492331,68.42593008814563,7.862933646634085,0.8294286160655862,96.61595412832612,5.791417501816398,7.133062361237819,70.36835911220474,48.67766787795453,90.17187678098941,63.20015399766028,32.45942623810235,59.075910677737966,16.066360005664503,43.32497475145305,98.25636840770338,40.681571885416226,2.3040946616420865,74.29659582173296,37.320262116252835,40.65128711108419,29.078789691346675,21.70736477637729,25.310588812810575,4.567869689527981,1.2834285021076086,4.500288882896508,14.949087835703123,21.785216756402313,93.85290486315111,54.0386490197749,12.07957358276417,61.65777805052555,89.24693931601409,41.06705644587221,25.048707294088523,24.38004924752648,80.64507738883223,38.76969382012669,0.48330847055039206,69.78168807495253,34.81600242212094,44.65216664889776,77.76580816107352,55.88781687721569,90.69765383048394,39.62539575465431,33.351012406111415,32.83472646717222,46.98602918759652,47.422516416937064,77.52514534046692,58.967161696117806,91.4393275987885,38.92720446868325,2.0927427683660516,98.02519058081361,55.41121366011355,60.297512977894804,95.67310199185768,55.383265215234154,49.750432759063926,37.88251050330963,7.400215203378324,37.34138295750861,92.5750596211409,64.36876295380927,62.72123343653343,9.604553086301904,54.673688525561225,2.4169553180739323,19.983589015117055,32.92616294218236,5.695409684976315,2.597237136481878,76.12603015681437,0.7917274036851718,61.16976011136151,97.1152218461192,51.81304757625791,52.39626382261804,79.26775988457534,28.30414113256947,16.316019324042575,1.3217220360400739,93.2649887502175,68.54275348942842,54.72394205835184,75.06405850402547,94.56201494193944,85.95644149184636,48.015200064425464,5.83261780280705,36.18584157093295,35.66485694278179,31.680929471314133,46.49399363589711,12.808557147537547,8.409892273435627,59.053679519221035,29.58741207125115,40.383085410870976,43.06788677512857,83.05167929470024,10.204598003337795,1.5729978888832208,32.009100740700546,23.976007616705196,40.08321261932301,35.93800721295081,99.4793072140188,71.53396528121083,54.18252081212833,27.960888718576072,38.53573838865202,26.242969543519056,15.773352174084998,62.51326204339733,96.57851859125047,17.073469363842886,54.76121486891279,61.36858389529027,80.0242170852532,85.72707942840543,34.86638952868408,15.58445538206784,58.04378241274546,56.377901277117594,2.558378762902469,53.96872328082908,63.97100407491387,90.06225756602643,39.669220370237376,59.572289021941984,67.62794152994786,23.396948890363422,96.5034516942574,78.40042604441922,18.870479540137065,66.64041832495957,35.79400585703163,42.38692791979625,32.33397636839885,17.898761611961078,81.2967722078007,20.12504106263463,63.56994230295261,49.96060595023184,84.9529166374337,85.21296774229118,44.85706344855487,79.76233544455297,51.24368356213383,26.764884109528275,84.99874912021316,22.936525802515785,3.0351752790555575,73.96535762252188,72.94553873177937,55.381010778575124,59.06776068814765,32.496360451665865,19.559524191844535,0.8102665744817661,53.32698088295067,55.434147098989264,4.871400787973279,28.686061921221683,70.83607943727046,28.966952732661955,56.48630234662768,9.818655371173456,27.51974331157023,39.08163529265144,82.32500086905455,29.308312951308977,70.75330181101268,17.012598168033378,57.405997254615194,91.94608777316623,18.07026392928064,12.911567791914802,70.18679355143614,88.79115032702988,78.9945187047562,83.81930042360933,12.839440975096073,84.58946024683489,4.369081553234522,56.0710783060448,2.5565569269616506,23.358329979560988,62.80073812908598,64.49266803723464,99.72820298243033,34.14550156175436,33.17380144502613,95.35639526570002,2.334752848338939,66.08829170410942,97.72636388665356,90.19780269719597,34.87128808481378,14.031442723984133,49.194174807506364,91.13228278110267,64.67949489212342,14.47523436884942,19.25593664424032,18.47997101499138,73.49185856487776,67.20150705384805,75.84283653572483,83.72266164218746,86.89815633434107,42.4727724142303,37.306206492626146,42.57789995301016,55.79163667486132,28.89522303639672,14.2922045704157,21.478296023043065,82.88570024049844,0.723318275670104,66.72914591189524,56.310477476950346,41.951069468391566,5.243024476903091,42.9435741720897,72.9923831688104,26.60074554666413,33.389461521390594,33.04881418675231,17.015905893732132,14.158754159631115,91.06773785406779,75.70913203707673,24.287316144535776,37.144812927411444,69.78065465289409,79.22422421944373,57.26371138417551,35.3941153047545,60.786483337007866,97.07029127120262,80.83262975996209,70.2247388729463,80.82952929368929,18.079372086190936,33.01757615528745,61.385561158870274,86.70006319103508,7.61489424149735,58.804837100800356,75.06742845678693,81.39534840829445,65.42500824008921,67.02269573466413,1.2837078236812571,9.688968890022377,84.5948950789391,14.4527743994313,33.39116541015776,25.46314288667666,19.080319299903202,95.69647306610399,4.531621245565887,45.715482739221926,90.95167111143076,9.412010502716505,71.26635041297213,45.85426576306645,23.310279206665175,10.512078649039436,70.23231233322772,29.741055898572267,66.14452366265863,47.30020574294179,28.33225655576086,23.87219638979019,84.99832868914501,21.16181925239995,49.184466466993904,6.014386800774407,12.364646080972342,54.62200522321684,49.569996852546424,91.05742463984605,31.47460735752009,27.752927357699463,60.59005629959449,39.92522838980322,15.221693466265995,85.57421268952082,78.22318931239438,56.54947728793619,60.78215127994465,6.912692260384512,46.690380585938925,49.93792005716519,69.20511791916441,83.72177413557752,30.61735060934686,13.753968015644402,19.39978555781543,36.52145016378198,28.820420435168337,32.25862892293896,70.67492938521039,93.13728497554376,20.403568441788323,52.079287366157764,99.13937177593881,94.29053505550331,34.43536849940697,91.50584250122861,31.99330621726758,62.14020602870107,25.344339643416458,78.80917957517111,44.49051016761704,63.9387404093848,56.512199042434595,5.084535635203569,48.34719708257802,92.91695893814088,41.00366159062588,8.418158324027193,61.59577238077304,74.1186905591095,85.98488858795186,15.05144092181865,89.58668539328278,74.53602495355216,84.76165067375699,58.30102478378368,77.62912633230886,16.81338689679408,95.1904581921736,17.005169358209248,31.244120474298608,3.7593384842014466,80.64743375948956,51.502849103908375,90.03136103068658,86.3982488305683,23.133776625201243,33.943681638172976,80.63848386744829,88.76945051962228,97.45988494475728,85.0298973425144,15.904194418139106,46.42394742231728,55.240768669160325,47.962213828878205,52.46389201906781,86.46749591046398,11.83040852874171,20.195940889934793,1.4371970300805614,38.92523195954364,79.45563114018937,53.832499888213746,14.699512004945625,23.71056745965763,33.989610871398426,90.29009883749164,50.07990792128982,52.38396884831948,86.95229745314982,97.41970762784874,60.76876556600159,81.2233623705453,20.96566702205206,66.65208951479443,24.89680429804444,47.827030848536445,7.856130803580308,79.01863671417188,36.33672438980293,23.744078512773203,8.151924878621875,92.84071373868579,97.6264790426618,58.755762748086084,31.57299301375379,59.953365252426195,2.503513759987852,31.340124031672232,12.277759987489844,72.73254489908263,10.037139747584812,67.44615313641776,3.786798821608328,46.67012118872109,95.45362969634319,28.063784023692374,34.88625981787911,50.73488198463137,50.82870248092571,83.07885618289622,53.988717127804755,28.539549402350218,34.570350888896364,7.132415601262743,91.48152626157511,1.9840746156071676,9.272160939704655,58.30564845129452,11.600385764230502,0.8013935653230053,53.20514707950694,29.339611387336305,73.83104251524476,38.752723480672124,85.04432258877819,40.21944653863305,24.5044839001864,60.27145480377287,35.709813198441644,23.358739971714794,66.8532826238424,65.55178593181455,74.03221635430037,76.81982904771031,56.12998033725718,57.22309565703926,34.90136172368342,26.748147239156992,41.81737603482737,66.64912147692121,22.259784934513128,9.155581816106405,33.7381972311836,76.38883854025752,9.918515156053232,1.206741596151617,7.809823514349567,92.32932395695632,86.56523218550075,82.8285432076485,40.721150836495546,84.61866455581746,97.25332937507028,7.2196428479960435,3.4398851728339452,10.81168097949492,11.293306221632305,53.1532277991172,64.23353997556872,42.79321945461723,40.37042367942434,94.8795446740339,47.8090986158871,74.06814454228217,15.72920958635915,48.80904652658269,81.31244354616337,43.71092345840584,34.533726985770365,13.167636167036544,73.9180484289686,25.15288328939468,81.46828447347222,99.91597712018128,42.39214628965537,74.85449398773538,33.72326671117219,93.41147163486107,12.170944524707306,10.237255401447865,30.085396644770192,87.93211509790912,74.20676317626554,80.00875338997973,68.06665060476736,88.23424469051618,78.99465204115201,23.338016808839257,50.575721594468234,91.18002780283925,92.31328711056533,11.053824490653385,42.316550663442854,60.45422996584923,98.49282109565789,13.83238126392633,55.67954875565494,43.91074704133828,45.24116919069289,76.01290195331636,16.15473373661257,28.057819351468606,1.5867995099131171,13.910870702826916,60.003355487440025,32.94668045172534,84.75466142264499,95.60741876192303,33.07682601931854,23.261446011879528,52.07003548201501,17.72402810738033],"y":[73.21588293557558,27.72315168573696,59.34550961411155,63.98174956027588,43.74584621218649,51.31448349464279,89.24869146835655,34.263399832507666,26.18561923550865,51.721605923231316,35.56169502573402,67.62040825547916,49.605314214562746,66.83248563253301,8.334635305157933,23.10708624651926,6.956822575162224,47.81294260105654,95.41498006718022,12.642812014171357,33.139010452953556,42.69640164932802,85.31009719238129,86.57424351195637,7.949849388446173,15.535120260149348,65.93613456246321,44.056467690798186,27.71808091020771,10.494119844472072,86.17549688609161,84.23517693109017,33.50838007374137,35.15781988187202,30.609214378325444,91.18484192502953,35.78395352934537,91.62242177261375,63.674597120854,9.306340581522843,95.05601943504449,33.85633537518442,76.56490202052778,33.18120587886001,8.018926821408535,90.34481030717618,7.125078786777184,11.779397669993251,27.37129683932067,97.46001487039167,78.74005085967445,6.517211329700223,20.761944429781032,23.2616378553406,30.98492985458864,70.34725228604603,70.9488414248941,99.40604808152136,43.77196622713162,20.13638260697813,48.434834577727884,97.47793096611788,45.92294228578789,42.27710303895835,92.94312353054846,46.55444592523177,74.29643668993596,13.971572647382157,8.155713467790338,1.2538572153470984,72.74682160460192,64.12124436749967,91.91103709102894,51.9181329272988,97.87521794921726,88.79535795653986,47.56937154901907,18.940455521197443,10.504201425561288,33.44601820428217,3.1612491988810443,89.30703031523322,65.39947966821231,57.16562680255303,68.69323093985822,32.77174952683741,33.72000946477516,54.06638493919378,17.211435574869082,76.30622649643634,60.82658989436411,50.132700783438025,85.00333094688372,44.57871610942264,80.59382150720131,69.84447254245364,44.29382863293916,94.44899675232679,99.60074161382319,98.32507220008402,62.68245267704023,17.79985302753966,11.834142026077654,10.119742027392242,94.22301893138673,81.50912712741254,35.39007463471404,6.123346783302419,65.32900536569778,37.32475984590822,47.29562370067046,57.383386940677184,63.4880733809112,14.499114783671763,22.610028707590658,4.59384098873662,87.60651973939464,81.46817306763432,8.1457580718158,44.1433674532208,85.0491140903658,78.08643863848552,79.05998912807772,44.683292755895756,8.531085067101928,55.82157047807358,44.050453288252065,14.728792126828816,88.64534967094066,76.99365680561652,20.369927611303098,50.41899059216475,10.861457139642539,43.29182364929509,57.738439315141,43.44932274952824,75.43504367147271,65.52477283037759,34.45511819732437,64.36694691296903,23.502725933122402,36.425730069328,32.20383990557152,47.488328876930986,25.95930560332259,62.75090827272557,61.726397483836536,37.82877006431278,16.987605272648743,35.32558252579246,25.268537593435227,19.978518253743104,94.55305225527299,99.05708801417632,37.51495041262449,30.90308979195123,25.203876219625943,91.45271390221662,51.527828546274826,74.01763818581625,68.56427643418564,80.16472867633126,31.13904068147768,68.07903626480571,30.551503095376574,22.32685697805191,8.791765482066715,34.40876504353263,50.32137614083773,50.27246064206636,86.46319675666356,18.91190970974945,45.9696738143765,21.50270857794194,0.8238288488176537,82.58474408073204,21.588088814678784,3.277577799993747,98.41564074466756,34.864796323897096,57.398554820771565,60.907350879360344,70.97471821547224,33.989607662327195,49.20427317946825,31.142242182487113,28.7836096520658,47.95840822453046,69.64079006120406,71.53486672303907,46.99275719473833,19.34347268747181,51.07474651457633,87.80757080589564,79.95918474842944,55.68133507854167,56.66609399798042,8.139836909365794,48.04154269427507,34.43338107093733,56.99708534235176,78.71218406756296,73.68139624086712,7.909808066311996,47.102344854308676,65.9318651190134,73.29253500555396,46.51487429459905,91.82961521310648,32.76081511322994,66.14663965588244,93.42966734394155,97.00548672944879,58.85321276311998,6.428569153937003,41.100136900798944,86.8854660373446,40.08940364857321,7.662060500353329,71.88553742592131,75.24983594569915,85.39723116334788,78.63762097575778,59.85382407506188,74.81408744983334,89.35475516034573,30.52901782011508,28.898943581330215,22.972540397504215,91.5919579893554,48.73960907660574,2.387250853401768,37.93618660311914,20.922345888349202,8.547805814151598,60.20174347785415,9.762987344223795,20.875217342616594,13.988844034322456,96.73243767999912,73.18448611613152,16.248237867970015,31.897775675611584,13.646760444381666,65.80304933409603,75.8593033554847,20.457211694516285,73.4916369810703,19.065769848591763,48.71920970273561,5.559277133696017,21.73595823863651,68.94610560493503,42.621008636148794,76.82483979931867,64.18421108291616,11.72199395107556,17.906047471976706,21.27036176378738,28.197251044899808,74.52008858714917,34.73783159746512,76.51854943769654,26.361639299147022,25.80714660853195,31.25113506603171,91.33670935531006,3.4167920916171934,92.55701194178158,76.6127148869438,77.49771802473717,95.76660626042246,77.69665428807754,45.58548694439516,18.448840044459036,57.28665284492182,53.940134466148315,41.00133647794021,37.92640223025662,69.64157933970183,72.67373546638657,81.23394595044046,99.99634999050868,58.01224233585428,13.648277700129396,37.58429413329279,35.7760354633125,80.20981837123179,1.1588236796203688,98.47680380260076,65.1915587007449,14.832057259476915,34.81447077097408,19.838345973991313,33.61208582404439,73.85080828792266,96.31472750062312,67.12996732556805,52.18434233400643,52.28657009520553,35.60751563337132,28.097456423898226,75.30149050697565,73.42942893272463,82.19577169903852,12.265299461483693,0.7409907314804953,37.10122908492103,5.838868484672821,61.069061374390245,68.77066356570164,40.73785570589996,50.47048797815751,64.43139543362474,25.834337697026054,23.50680310459864,5.363345747786474,77.30095179942218,14.309623833579288,20.66865539279359,2.0448047683039428,77.45511251823956,88.23293096863655,64.55272875823167,55.70093782723021,48.20916690201662,54.63111760797723,22.245143820866907,90.6261060386669,27.620715018560492,16.370753716844632,26.893982435752882,34.090435045536495,0.44766275328694816,95.45822074476762,39.577058229332806,77.92914162428255,20.955071780939427,9.391874155207692,81.23534630768353,55.35725961958035,4.363365273870567,59.79779402741694,80.69563502838854,22.327075839126397,31.93805107885548,35.78080762729818,20.431273546568928,44.544982274171375,54.162500815620774,40.95621184588518,90.98418688551759,16.675031987517485,15.843887058339067,55.13006306776313,81.79528473175324,40.435178125970126,0.8926887279343654,90.4773087976168,89.54255769726598,90.5162590574702,56.97083535290493,84.78932219183262,42.21803513502189,23.778982359655586,48.279281416611965,95.50256716277633,92.70643893641326,15.777024028069642,44.18141841213634,29.290101343968043,19.0251510002848,0.32429318676323593,37.96752216136067,97.24875176363366,11.660511515824712,89.3324220877235,57.32880444088113,62.462561990693175,92.17050014329398,61.59837179332451,97.7989007210505,14.209662516205057,43.85332559402356,71.18216461496772,61.22418208440216,72.14966758897394,76.60796480026299,98.8309346073411,6.678564501616647,26.7133931663072,5.500436297726008,57.30142913749119,35.6112684841833,95.91798566916442,21.525314219818505,66.43397566414558,54.41034158798512,99.87188016987348,38.209594898017315,74.22432450759034,87.08326591716407,96.7462354488033,52.18185459273551,78.15133085283131,96.11482270618714,16.28198027584561,75.49747821928608,84.44578803246074,74.45838934913115,54.1981568369879,46.07823591962775,7.899184684369198,34.14124643428506,35.706137585022226,13.26120781672737,41.125845037144146,22.86924458551962,1.3588498756650247,11.74460448839757,42.809192962818955,79.06943810858803,80.47435380674625,72.77337982490738,25.95995855083678,0.6310942064343905,0.09236497657281184,86.37268965948647,72.76916798614832,65.58261179487154,72.3146249455241,32.38605447023395,58.40503371943362,33.91745974611542,33.827994161412775,82.48063339910374,81.1272186894225,64.66376862352938,2.146739293740929,8.806346738999348,66.19047439547239,13.504962423587108,28.63950430155692,60.29666243966161,14.778070463893723,44.31171235048698,16.297650425260557,37.782027795852535,78.08483812359624,73.77842266116315,68.09086964509659,85.69599472385889,40.859173000017265,50.19059302243334,13.044952089768259,39.98496870858204,56.91363182487873,15.445866968661859,40.8821661917378,32.07092088514191,85.15400445666117,5.190637181152291,43.20623503902088,96.1348922486215,78.34517722086979,40.75261440132943,39.857611198223,3.831286813868029,20.44565452117163,43.78793950863865,33.58711073305528,81.68735238081022,63.01133073685784,70.67427086920331,22.60555031237981,75.1241008790902,48.4343879059124,84.66338780899592,72.21591112321374,29.14397674946535,92.89639963160825,75.30762469232198,95.97661959316031,94.66656767233708,89.82745713458748,22.267875218869936,47.68595427897662,90.69399627860902,48.26778044350404,24.779020393951367,34.900612219596916,37.204255518068486,76.80473299355141,66.44887303992087,35.08819113559455,72.43069858145243,3.694717096302824,54.96871522231933,1.0949737342088706,17.3505286862039,62.9968152452939,38.4817835095299,22.408118394609378,12.2079733291803,57.73421084287953,53.8637889258118,53.909057049014805,34.14333927301788,30.878612192562073,54.25371966351721,62.22410197858261,10.516523880458639,37.147860668791196,84.49797595671944,50.37804055199967,15.249843232006787,79.801953529905,76.32024358219023,75.2824220855326,72.27769615962075,29.36355392703107,14.237045678623517,77.9763190535273,55.94332900242141,33.69708397811063,75.9081857931053,26.63761270581062,11.092444190883299,68.48362838581318,75.5730990840357,43.46364103684143,20.070237462812802,54.85754418918328,50.75265707847453,75.6598385690081,60.88446485514072,61.1490203830636,27.29656393257496,25.94767534311675,3.187015130435422,84.25736058333774,88.68927066366591,3.4194042272388536,37.02405022717837,61.75121103133912,34.945869699782264,77.98541833650549,53.847387552606776,63.476239362830746,43.02128595944323,99.243411896743,58.62288532839334,77.3656650952022,59.423798092472566,44.17685353988612,47.13679571549862,18.67174014631371,71.41677521752052,0.480319373693483,17.143853062484084,85.3515053903179,13.068730575391129,34.06909224704088,27.475057745812492,38.90726650395584,79.41025260915819,32.26928851352062,98.4284485915602,64.59177266583175,48.278119333227664,66.68811514942956,89.34078882198247,64.41689442884557,64.22503306471154,51.179127538063064,50.049747237557995,2.125763918456347,74.70752364909087,32.26607021668673,21.19190773661177,76.42504543918585,60.30661228401139,39.9900993125066,38.561182331700174,56.50499403731493,66.62401058770284,41.84599104693017,21.97045799939388,80.82874823918534,2.3505008921060333,53.2669502106808,71.81801663940925,39.46921967035399,83.29397605059722,46.37932056888662,32.41051346030065,33.601229939747924,5.421495489972283,99.20234508777817,14.1494396123936,95.0882282314097,37.08474702542874,1.268073701337158,6.419357586409213,31.26771504701191,31.99683041006558,20.419066954909894,32.91662089632857,80.8603459957795,9.737627354698397,60.32881942821122,64.19933536143895,49.9315854361842,31.549327967113495,83.31824236184657,17.573863028845636,67.34095131976774,11.597994682528201,12.001296953493124,98.7174212544001,34.45632632056693,6.609145757387069,35.45608898497415,25.238895232170954,75.55699246444568,3.8718059372986113,16.346969357815734,63.630045474045225,19.226060628329765,62.193891535658274,74.56009404972694,92.99921752034646,6.028347568234227,19.677507655032578,8.743446652608721,7.924902653334643,65.98803721063723,53.282729136556114,20.04451554428227,33.88203590257689,91.54451892200427,81.53145838798747,10.084079213761498,93.46465770946246,5.583249215164432,74.75275291460764,48.62631579538598,93.66468719017908,17.85477147440312,46.27962186087164,95.67200887985938,12.699688393119967,22.492298092471785,72.23144064011345,80.5329328846374,48.22222602893619,93.08624453122492,27.65752182537148,92.40157546837533,50.473807175864025,77.42571284620693,77.7353530340283,93.10099234321237,87.77855744130149,85.1412381879201,63.52587071108417,42.61815454692718,78.76925510296807,88.99615977815539,92.13587464970556,42.77674190435802,71.33961643354337,53.8506759485188,25.442584790607636,93.06842861568335,73.30402742526826,8.777925548394894,99.7195276733699,45.71055374324764,84.72114616878085,45.95965111506936,89.6289370654027,14.530856898195177,41.43799558686698,53.307978491214236,26.12439638141657,80.23037324779843,65.59210932639967,4.210493333288734,57.2146577084369,49.27049331012539,35.590111852103014,33.73229715946275,84.84256860838858,11.758998309775892,36.47779580068238,35.911720009197644,74.0621359575939,11.94522148211794,36.06805261603392,10.854188565303923,22.291716154426933,1.871485914365545,83.53140861864735,62.09338978779676,21.37981228399639,0.9965666567941511,33.1015762170247,81.8031970446179,33.225145578232286,8.974935633105396,16.368182301970503,25.131750374662843,51.363741012018416,31.875286505227717,97.67648596200513,93.73214391838907,91.00287213154635,78.40394490400625,45.48281233433216,31.425509710664556,81.74700383997303,73.34244247009129,41.81868233927012,60.33260047494866,22.669606459122882,10.923426957821514,65.6540268312397,27.056069969722596,6.947231179320834,30.47663277937763,55.21995893233015,44.25965832378959,87.78458029230208,80.12944515033657,93.80709945117431,23.211465752748296,57.08090846836408,55.445699023651905,12.335348610975515,88.14653385847143,96.05904258820269,74.44765704612618,90.91073516854459,84.98749730342524,89.06830954868907,49.86312333199924,5.8647938643752395,59.267579242234426,25.000720666213805,33.72206047734143,46.738542479350876,98.43530861566235,44.07887571613597,27.085120488987325,71.15192848767073,15.433375594346433,96.12388735772286,34.885808191794574,42.93332182578069,9.277364109543685,31.091598748654626,56.556839401023126,9.31258707471464,29.99899578510363,24.446219187304187,21.528668015042427,85.35209726601398,60.814699566490596,47.43567302397621,59.19104008614332,42.378903151972324,50.192887677757156,36.7318376191467,4.110818579734743,59.21074478075996,40.09934398144052,11.960237004547391,34.02564825874773,97.91138340753609,32.96837313579872,29.081104396796164,26.73477947110987,80.57431435626833,66.58940577329098,65.11220676583093,27.931230074089274,93.47009593846937,84.06380264319456,83.92633682513208,13.145764328406006,22.0873782913392,85.21156061760635,39.1451248258983,30.51754700294773,23.738233118053277,51.727172282948494,85.59284805877263,87.03205312502467,21.740801034496748,53.29321553392745,98.2355819214431,12.341341901251202,68.94987721704288,49.187079911406926,40.74852281310294,15.893755580025559,13.540641686439237,12.607224078140744,3.6191216451860186,77.15160587243572,93.87699138185849,83.29863284812605,20.830842306671126,71.91668362884295,71.56289596831043,12.504770839974565,2.471989695664878,3.4066052603960895,4.273643962226803,76.09571315725489,19.557281769421174,54.010287912356134,86.84822362972136,88.69010544006831,95.02265977518388,87.65424260617552,96.02319462252179,25.53190646647796,3.6135549328812244,33.868494576650775,52.36629913690176,62.86247475364721,12.830708237248245,41.1240969093139,71.14982581244668,44.496361839101354,30.317424364223434,25.827428481146285,71.15333557835616,56.26997003523395,7.814829567141112,47.214351314570266,82.65565798887276,91.68191713469265,93.72423105221488,45.757914136488644,64.20642547309188,66.92973369961702,27.023967170505582,36.68009183079061,62.170335149900914,34.16575704390938,63.690855250970266,25.58834594627347,32.95965548030385,22.341521595907565,87.52530986452422,60.454917419169895,10.136849223135647,34.857144263935865,53.94076724188973,12.80773846043628,54.616065439458275,53.2339689161306,42.112058597798395,53.09081453877346,19.54007764535788,43.53844439827823,29.5391717045674,89.579027864459,57.473805301490664,92.51973442337193,68.87461292776597,29.712632122483583,58.66155916383286,3.5576793647623006,33.034468780130155,12.317088381370967,4.8494196615598835,15.924125019006253,10.443585090317741,74.15951335188787,46.4300545843788,79.54075296367424,84.51477038296082,32.18102212204251,3.922817301869419,9.099725129304371,88.13226454251144,60.745840353404276,98.81430562873406,17.556941927580905,16.484826605763903,59.05268972165468,97.03961551801792,58.25588581661264,5.292714336398374,92.64371727999612,64.98003257148716,27.441381943536737,17.646659747209302,30.11165169199289,22.07188919448254,45.1745798940189,73.83518364678717,56.716916665964966,2.9517613211660687,99.9285032487552,4.37357251427799,86.14863475242957,4.724881564329808,35.983490060611246,13.331739528110031,95.2812700727341,92.63450489422334,70.48720226569637,18.25666111173736,96.43502420831771,81.5225723581846,96.11693714534297,65.5779930868832,25.19454191116871,35.876442622643225,39.12033042863941,6.007181086902735,31.413463207715864,14.193905834723674,2.255999526021668,2.28511066662187,42.08566719400621,73.00567924912127,46.31517853345063,50.96944777422491,8.634532671123996,40.66272107935616,26.476973707914976,28.154738203124484,11.892692401974758,33.71015583566813,1.6857995493063105,57.32460239095103,77.10316044677285,6.374110503068387,3.7670875447445074,31.343683674688062,11.002758728969486,75.6552056101927,78.75067170732942,64.35549560847191,86.22046982645251,68.52083334818877,60.574848267141356,12.997535542027471,7.453927603147825,28.632557868539887,45.24134099498451,88.50688266326125,57.45928087534501,74.51052790126137,69.99113787309874,98.08390233577782,68.9842847304225,32.34305264723698,71.83497973691256,22.731943642995887,59.13796695923411,75.2044609846071,81.46216124916778,40.60799212177749,61.10922861817081,78.37016073177548,65.58795045669686,70.46764983770886,82.25864212035205,5.8226941741003735,44.291779630116444,56.94372078515807,16.060229305215834,18.686311167165847,41.082548378676506,38.303969111684054,5.710475247298874,42.03671241602815,87.2998360072769,90.43415482816376,1.7007935000574625,26.764945733045842,73.39461102319801,32.67513520810205,80.32058392069288,31.018373244206433,44.623744670850016,57.361331249257844,18.88554566715932,83.38539958418417,5.581979579693619,15.229752197049706,94.44875194733527,65.11514540908115,73.29812708260712,5.980660753021061,31.450084147837288,61.47503931680773,12.456151979112528,95.45985130537525,36.01635984446586,95.75374280947568,54.254647937819826,18.130427136779815,38.824384468187056,97.87752879690636,21.622189998152088,57.84884149481655,74.07605974033015,12.819329296128867,30.43379963636873,1.109933838850996,51.636563868044625,28.439482909219237,5.21396833901785,26.614143303672734,87.91007700160252,56.501152167217896,36.853107140039,39.13753950825078,0.4059608686599714,51.79824917451368,59.330790343113236,33.91041671272907,68.63894185582373,25.417743356768607,79.74215711160852,99.67713701726666,39.03136622333842,61.13911840895938,61.264754713362535,14.922880731780142,5.540410025834596,8.164007015773434,5.529795969506701,40.41580090086849,69.03961802123209,19.320203469587092,28.18154217290074,84.48885743119455,86.91354302985627,12.269208562676948,61.35998203678143,51.39569630899401,53.56423819183757,38.04534157930938,14.000684724816137,77.0050678923408,23.459100193935257,85.4861637351889,14.654328530589,93.27566785228095,42.23393400086744,27.941075295603145,35.036249758226646,30.599014593742258,87.33015691590236,35.13631036221816,84.85732284620389,80.92639574596,22.378316470624693,94.68911251294614,38.013056730015485,17.95166039863947,74.46169983158194,60.50355101392384,53.76347170002938,73.76230221962838,10.606437122445179,80.4275844010643,39.920032372668366,93.64049202791693,56.28040964109721,78.79478821642186,41.35194562120586,38.183683642485164,79.8683168786685,36.56749027389851,67.13198972268431,62.86721558800128,13.069849263078604,1.6575044591194077,23.6266374484269,48.263732031780926,14.837258619555039,86.4718470142734,86.02993471272258,67.64718856657667,71.8857549229057,11.598483910996748,96.88174619668555,73.45753310113521,1.6838027269783784,69.36293331844769,42.17735844309078,85.03950194069535,93.50057045872168,11.521767810513662,41.88888888325026,9.71149924469521,62.43489394751697,80.05770861137214,61.90571463944631,62.409384582405906,73.76102541551396,73.65534163571891,62.894540224677876,29.02037652640921,63.98211774683343,28.284660548548956,46.14254250227765,37.38284467363998,1.5167332164136238,20.56404381859762,50.18404268201243,95.73050312103679,21.246181316965885,6.699529639744151,8.541619916577325,47.92769367860876,27.314589940995894,77.03770775190239,8.775264999365518,23.516880394139093,70.88685221666954,82.93343958903434,85.18193245868486,74.54718463104524,37.82858826378073,54.37103216735992,55.93657066722946,16.29118356422109,72.96207210932977,16.964092803087738,99.67840405528375,68.38305007848983,39.781616915442505,83.52284528338862,1.7934632370673387,63.09617586848263,6.402304319244145,71.00549533283832,3.7757356604267045,53.94802382749272,12.078988873170605,19.134663050637325,9.658720069308025,21.90270464542593,63.81221056969032,8.794234316627058,61.98295814283852,19.284104361035848,80.01812940369302,99.94676734580464,20.642345123174888,61.52820507398133,48.95064947068077,82.06604677916009,74.40140592415115,97.00962495603953,51.58916593059229,62.379175263982404,48.869747760308954,70.02338350422117,49.23089308479803,64.15015881591938,30.07976877978712,74.95586767803638,45.65890019595115,41.069336022415484,42.87235726538864,51.95169843375589,24.19546090072484,28.75199414818095,5.665892488526946,30.780359782015832,53.55078358642841,21.84631218173524,41.923359405308325,85.62111393550144,21.240714200449208,99.21169585411381,2.582269885361632,81.32339729725669,67.34969813535659,76.47576325098885,76.56055467754761,43.92113825439053,95.63049076405586,7.787982389127867,76.24832309042695,54.62277680718357,70.1457304702801,25.330483247147562,35.47784649024205,42.122390783219444,22.58889429214378,47.682088115065255,95.9416378825644,58.81791360077015,89.91073539443178,39.387973296702114,47.44107683455285,28.918457179693757,96.59212238423368,98.3140982156025,89.80470493981008,71.24626249391555,98.5137506283219,92.65337511683217,49.86844790884487,10.109334327545172,42.740622743498726,81.6237695454124,49.4924437862252,45.85230243508717,2.8269975557099314,19.14955797937168,18.13943737876651,83.64629407093764,77.8571147952041,94.25500880706788,46.58814780571983,37.840317129450916,45.29520507939142,52.81037857043954,53.80997205796524,99.55035931213196,86.3265299077501,76.28451315391541,7.82828701682996,11.064110896454116,13.38526948674562,49.224458059049006,8.028080387253222,93.6486386665454,76.14349969238825,48.634118974277776,16.624628177720023,35.90319096771209,20.35005076385542,51.891982992853954,42.726442191281734,7.97543728511757,42.997304067214884,60.10956279674318,81.85220864083682,47.638260866267046,88.06112921564136,85.31724923216166,28.320200316161348,62.49219187152306,92.43295337107438,11.06070407712324,31.610680642756105,44.910518260748525,53.54782412822948,98.99611307466924,48.399542348599155,20.690598911374448,18.193148703818494,43.6947273946644,54.2969372841622,10.652301663021547,38.69255013772668,74.15950564884189,48.15823132554314,82.2448806266932,59.284816870846754,22.299231380851193,29.41327910729451,65.87987653999816,58.37499661996096,96.47019375091735,10.080884435652404,98.38081722922644,4.762553101582922,99.96154314727823,25.97034548796119,94.45577390283658,8.013848156466052,8.865291178063462,38.9875591787752,11.036145285836408,3.3461986614422012,35.60760511904918,16.607185412357783,84.65386600793666,66.25716893887534,24.636126121493483,90.4783054927911,61.27557780306133,17.323423367347303,52.39551555556925,25.03054698428997,52.8464881954784,69.6851149210593,52.90490500788374,45.22577078793943,40.07841695463705,27.675296486774627,91.96990925307512,32.486783374096184,68.47098359802096,10.227628364057463,86.71074519869293,98.78056860933742,76.94932127351755,57.91544976929528,79.3962211123859,65.36746514203742,58.172609418896094,71.0550671646328,88.29301989199465,79.44735378922309,82.27648202224022,65.0791459112181,28.76850521447274,74.33807152497636,82.37257093935241,53.80769725650711,33.836026844398305,7.006314239542322,7.228701430712214,14.971364757901174,32.88055891628668,56.32282285978898,52.917675214347696,84.77275698635992,91.13585629042747,80.71539927367142,11.966327955040745,4.530328361390246,5.2631528920425,52.545584027343985,51.50596979483949,17.002687889406953,50.14866998719256,74.92089845782644,18.910677374530227,55.19528387455273,94.46486109719801,68.5663127446702,62.412558206352855,80.34714354235132,24.963673203390734,43.33986248423605,87.92609746408627,34.134308718978914,34.46224516988815,68.57428173319083,54.2347337199361,57.92620835800108,20.511295125220197,99.3013618220805,85.3658219520842,3.0416732530360036,13.160301071828428,59.557297217139016,28.790668501997207,20.868911094088062,79.4832704109935,60.33450556936112,32.983703628219374,38.73116021009512,47.60006754930451,78.3136338220552,62.31706467817024,34.73783791893168,21.648626476565024,66.54735729164004,14.574765890724418,64.2584740132568,59.59276615766801,88.42912427674086,94.79539107294018,64.80659546010553,8.337401459150485,82.1550649925567,57.56393582735626,69.38439525187081,90.2387637532528,5.974563902485286,19.112755579996577,44.04322294119868,53.171904921929055,21.37452367463073,1.6006222937450354,56.603590830375275,94.54896658206671,75.7193288977205,1.122236680669364,85.7313104112598,29.542451918880698,12.671695314152077,34.72036764123515,76.12644193200798,5.862077389221721,92.25845186995606,51.76839378920688,89.2019321221588,81.32610359027947,1.8912364698239537,19.59321776153726,80.56499390200746,80.82044797812503,8.7930780857571,39.58026386974274,86.81381143556743,30.941748115179013,47.40036341307319,94.0234437079242,98.98604489633179,50.25294771094458,41.257762020342916,33.226949964592,39.544566292626484,7.406992792122724,1.5686442430701053,23.26173935903093,42.43685399389147,40.16006927257841,98.8624457537487,27.91439184665102,73.88527076382597,79.72619643020292,41.415492818842225,3.7570793138745895,79.20817324982556,21.433125553314913,92.85765869626069,83.78739439078294,3.8662543903702606,42.662228901882635,77.33993634446873,41.02145766652298,48.892451134687256,38.07970924482418,42.92547067311456,75.96603173051746,4.236559861339906,95.1411208675384,28.632769502082468,52.61954675472105,36.718214218261046,53.418102507872554,5.045168374442255,93.53634006081212,52.30014748972557,43.29032440986504,14.28390625716941,69.20078608339236,34.01483302218119,90.91622404384115,47.213631042024296,46.85026239868528,52.938531110504506,7.69952836017922,44.365523307506805,75.57888866898666,37.52360174107885,1.762295709542594,9.098508309287045,2.7182412789391486,4.599610710066093,91.6922094874558,68.60380847974535,69.32492733342286,61.88596202817968,96.29727860347577,22.326415443240254,6.089354612599973,7.474611834784028,77.41789078226807,37.373256146172054,78.63018254782543,44.95113545467484,63.11155244090377,29.819039240055,3.04713805520882,45.90637519602593,34.66418377196513,14.346987568828917,71.30536781920257,43.92877324864726,79.12673481987858,99.98339140089064,86.93551539776256,3.934430401528688,81.01158306976703,28.512476843793145,48.38245234203844,76.40567347918031,5.124996854015452,22.19070346953864,1.127509822505579,19.23090439278998,59.12234363724041,4.909430535407278,62.89105482599792,74.97073529054978,37.456125854150294,9.226705633013799,47.33790634170554,12.312377590605095,42.09611904681676,48.70277458309739,48.48906088528199,73.87413494578394,12.578720069594972,43.82833402352927,28.908563101493336,92.20395470646261,42.54820078901591,69.74656561341392,92.7724770722703,38.85959264754415,86.59923415304831,26.050450432035966,7.619611095100165,71.28362925061012,30.16842466733901,52.92377900071884,26.257083419992266,39.375190472184244,52.897397958991895,39.71402826284805,65.8355653603974,76.79253644378072,98.91769771781463,57.41717851200053,3.5346303167650195,79.67369859122422,13.221027449133416,64.15440540067523,11.387129795182904,48.291937553989726,21.50944682969986,17.69167099794291,30.591498053345923,33.8003134751061,25.74465660676456,28.336776581944655,50.204179078362564,3.565502343286131,91.94460661175623,29.766007899015733,14.720165464223589,57.76213164060885,32.73570050569643,80.52436834352447,11.384604202395943,15.364448236186046,62.59283308209185,57.961085605699466,11.943608040759523,22.452530148775352,97.02557145773594,58.46031180792599,13.739109656651681,83.01749940388858,39.298799277354135,55.26369761341675,30.93175304537673,94.69380337984195,67.54144999240197,69.10265269188702,50.030448947511644,25.57020837089521,87.46077251182986,50.24361529804866,5.860365512455157,44.81464431925167,97.09436234658646,49.045491506409455,23.94341508393436,31.999260218901103,28.670971428459357,45.59700831029721,14.38339663198751,46.54421110402094,29.74809889299993,5.5220831085556865,36.822035641332896,68.21366103444491,85.43649236097296,68.46675624372384,84.41278429791757,54.41837308722355,20.57612127445966,16.860417986063236,26.87008658498805,85.80014548354754,15.800822069597043,3.65727841258201,10.987163301367431,89.41307930931478,47.94627352224916,51.063377720780004,51.08500192404224,78.48151669120452,83.55048272703746,15.333557467096304,57.459176671697534,14.783781450474542,11.803751423151109,86.66076744318816,62.876685092009176,77.07180948294035,53.74983131654631,35.415615114781026,12.425986866234718,59.8315430326825,68.12615399256973,98.23332688733943,55.67686796157755,19.50236877502338,48.01844101708347,60.24362283519954,21.49420892134104,59.19556886038322,69.62940217037682,6.986548243380353,17.159890031296122,0.6888075693010309,20.08889584301071,62.33571937974561,59.24729452168085,53.92701060260481,11.330374816221179,51.050426021106624,30.25492812030649,49.384330840778055,24.75122809586455,68.1342568234061,71.1992893837664,83.6752798574687,8.592228022498528,90.36450059519422,61.08455292322764,31.51760433246974,23.503437433754037,90.61652742473538,46.94793194778975,91.58870991431557,35.13204429826732,68.7437788370049,55.527292930902775,18.564049401418604,4.246764863542618,92.01054549711175,35.833355972853845,86.39920462341702,37.39217417704555,0.5304975611641338,36.52860860453833,55.536745784828966,16.776331643543806,93.94219405146738,21.661437948936303,49.0775030507445,98.08760749341342,34.31458980450408,62.06250013461608,70.22196831599662,36.14705834228044,99.96481151605707,60.205447426419134,93.39829652810256,43.59872931072197,87.44937427764971,11.603356521510666,21.772056687052842,2.9826952968742826,14.999008520086289,55.864285561971315,79.5573035602555,15.914537956416307,78.39275811695943,2.4040514795342416,40.01096573190013,27.723442260894803,20.973154235058157,54.898750188611736,26.577601916037242,9.253989738021072,83.59575996521188,75.29236695521824,28.119089003016406,44.92442838562892,42.59937487913214,91.12930136441837,30.158183371794312,15.146704282994182,65.91120544195161,14.922723380500646,21.502782780145036,75.8396799773799,87.43114140876635,61.78477862908493,13.342085071926846,30.99353617350281,30.347904052501452,89.99282657722037,93.74829132378555,63.664455660782416,41.76751971472893,61.46687316174935,11.413407908993278,90.4444937621046,50.36053045433584,10.536912418909827,82.66564844512368,46.690989012533535,68.43983055544638,50.892900145492845,76.00915821068604,6.411473232659725,82.64653947608824,41.02424704226888,89.11181120501575,91.02851189013991,42.11389363989239,24.11156189468886,53.44735614621135,64.1179147402467,11.582838743619439,98.21667470118734,13.147120848952055,13.818987847259944,18.94702414144165,33.81744676466847,40.22901272415197,18.47049794430028,80.72834085214316,1.18898993110772,67.71492700440162,66.05464833523595,80.11895685229196,49.18253333151884,11.775377004265797,68.95105168532504,61.5092455722403,82.99845904483979,6.22940793533483,82.28303352744032,1.566438259518299,61.08418061301184,93.96340125231856,99.99620789538781,23.3901523636998,41.224458643740505,92.30519690113788,11.33788880190295,58.07413467086029,59.698405088200225,18.121840695571812,79.90285363362014,44.74494081454038,34.01061999092807,54.999875599111334,74.84583163166238,75.02429119372088,86.33472947848695,7.085278102504189,81.6910371743283,36.94494942386276,7.718641108472369,67.29561242435125,49.518719047422834,2.28238079882096,60.322193956104684,55.89351383795743,54.665221211449655,56.384220454738845,70.54423897641175,49.89680698565374,92.76180451426391,39.88289203169465,96.13270369207937,73.21058420036405,5.881040182242126,7.484775047315018,60.10354746937475,73.43620898720343,15.676138031426278,90.78015562107944,5.069181349087238,45.21082554412503,41.62556006764719,23.434011726272498,49.70312464654854,35.495019465147884,64.99593138372532,14.936260298183035,69.17625633711457,4.672951996549235,37.00348990867849,95.41479472652676,27.270047707652147,48.41904782836086,46.48290739254838,29.062562137223004,77.81571308476765,35.08701711465088,2.9497239584362567,52.59004010606214,84.98127156012684,29.05452736549724,72.48130420238094,91.20359747268863,76.57587344906675,7.725651002197975,11.949569094275281,30.229478055855775,93.5781418276299,11.781405738740636,94.49671630055786,56.99933796535732,9.223442993046959,75.18321404330992,39.99162229283235,81.29771197347169,81.02916068388522,70.5503618166987,9.83391958211557,6.398286526398699,0.9395341480872399,58.23225586992955,64.68276154078197,12.743187724280403,96.38840555070479,34.16672541184399,50.75594170207685,19.584296987390193,6.817717828152681,58.01943401739151,47.85075326479884,16.371025326627343,94.13940526704691,22.2088530125665,4.744266691292531,50.29654162046941,33.89564296153831,0.38550498096382446,14.15240756388354,73.87262469549036,83.43835402194478,41.30705049933561,2.9092995191289495,1.2461968756571795,15.164894637717307,2.934709782223266,77.41696470916585,83.96794096259798,30.189318259405027,57.89125167678453,33.27807593320089,84.72696829274989,29.236980811410294,26.555159484952817,52.276487373991266,8.300159337465363,53.530983399172406,56.84707908012416,34.87429510486373,68.49048823866359,68.8627127477371,54.1364740337893,60.48794696943304,4.845014493654398,92.53804370509727,42.33734875052334,91.58505225382208,70.38632558306584,76.32651071888436,38.05418267281182,56.7124816671294,25.477226543679464,17.883868911483415,48.474980732644944,6.56702633149675,3.5380309656143694,39.65317810066783,99.45724846227996,17.6536463215779,23.1749672286336,64.74838433493706,83.6332122301953,26.391163649920134,13.021926441249509,66.13259299460697,64.99715145638095,63.55789904210884,56.91885555955327,45.44046827666662,42.064499254356924,59.662431265311035,51.63546846639554,22.995428181283394,66.01901351979,83.36795430828904,19.909268425676263,40.07120674720232,11.844272359936813,81.69294791793378,40.1855107104505,64.54532971877265,99.64775136052722,98.30300709915805,50.70877679122822,16.381325480472853,53.16997253448089,3.3132480579163293,85.51318761252719,4.708047686343653,40.7880937883056,8.144296126665063,36.38701411020069,53.50164814834937,17.126176233753977,70.11776595544225,48.31150374120472,26.321131624563897,91.33302310457448,9.63807708723513,31.97757955836672,55.89023760600187,32.745343191890306,28.434177841888364,52.372731389774394,61.963680488933,59.92754791466477,87.16672775178188,87.95140846024154,70.72930696028877,15.386783304601693,62.735435289952676,37.00603051454586,23.066977757705274,87.82474029552225,13.753887014159538,1.2405154857095702,85.50554560418841,14.888485277471675,16.187989621454456,46.59608170056501,89.27007579158072,33.984486509854605,96.69169799587888,88.40282888848076,85.76932046939157,86.46560469043278,59.893048935834784,87.52132801571479,94.7452907916082,23.05475287036327,69.7184594228913,36.518112580736016,4.250313518590277,79.23654127182208,57.784252318375465,27.17331416316776,75.39290091918414,28.72414719637564,99.67250314219022,30.141918336852992,82.62705640120572,49.20427640903349,52.5340121258984,98.10254320280315,58.18303659922856,42.08943290738125,96.01573951284142,31.099694884626526,61.14833691119917,18.37910022179292,12.497863246530905,97.72803559969326,6.197610377090479,14.151979544043092,72.69686800178496,94.88319889749513,78.14537884963866,36.39756044327152,81.21427719537544,54.840680670944344,98.94277380438773,98.96973813439644,13.975149294665046,93.35036280819963,2.7955603228822623,6.134461717571204,36.48859160268167,27.891236518993935,59.40184934602456,0.49083638910982774,98.86979117862033,57.19001674188999,89.22902443905775,85.45949721641283,26.624112940004572,97.0203472946132,2.4199494730915982,42.699303257494236,9.269058628998284,46.76061457824557,67.78437103187224,74.22755082186204,81.15197548477012,1.8614376579089709,65.35938976277907,86.35731885557105,0.8315872673288371,63.15597200399756,46.43946999367164,32.880670959414196,16.713160659246917,88.93395928198842,95.57248176316115,84.04522067580376,13.050805058436065,35.02462347012053,18.486270616369005,57.384285090395004,49.81206072948067,36.495974347013934,72.18071452168088,1.178297116323701,51.84738027043545,52.90454597727551,35.43015247030862,45.27990082438777,50.23575670228577,62.46163294030952,9.515928736361868,28.855739265187374,88.82378835664127,12.246151340610357,97.40789503116282,65.2714617896346,88.49317061283661,28.26688705023769,22.466037182323774,24.528077319945684,78.2908260680998,53.08115065325244,1.6490079380506728,89.91035371054636,23.719342963501354,89.10188946009336,60.04841438573696,95.8804683492036,41.915736663354764,17.508849462468323,16.394119089254367,56.3800011967162,21.46439014778705,95.78337539032668,68.68742442218935,33.206524925846196,76.68914893497153,28.280861058482376,52.37790122872865,95.62170882950966,21.64058425552968,59.25094306707332,54.0237778855815,4.032652861823349,39.25218406781935,82.26068736687645,2.7864935158915083,19.621170151722577,6.690023100515807,86.595566024103,52.004407626878034,71.3901128916675,32.623576438240356,19.66298705821341,25.98440081287865,91.76318742813035,78.41311478008114,11.108610326908186,11.462289808067428,19.742698765618194,13.027947398085804,53.311682425299054,14.684808056128384,97.25391780537103,63.06394111335026,63.527404998361526,25.403189210106337,89.73107297827626,34.474358099611116,81.52132542445028,99.55762461127922,40.8675236944465,55.38391590031261,40.99891301444675,55.29435004223166,55.80280230060212,44.66448819786917,1.2464693654061332,57.09495525009884,8.15272251583864,93.7962364268411,83.45910304875989,54.880968904720575,64.12772297305813,2.9726523059764087,78.27655066951816,89.1758108247036,80.25380434980013,22.304068400124567,7.759523330503826,61.83057368739413,48.86992248736577,76.74716765668241,35.36485908512429,58.914536385101826,10.91791169185271,50.55983341920269,62.22520886924134,16.501542868671226,33.48206179568578,59.79084717014385,76.1333856803617,17.760844495655114,23.486006219772026,68.67725643878305,44.96603313546781,2.201281783655906,87.34421522076082,36.583370931804836,15.520099860113001,4.418563745556914,33.023418746352085,63.71566800528519,72.455324132012,12.325132525814041,93.19329621076629,36.144291670016294,36.533181537560026,65.53605628355076,67.64781124287022,64.31206250514818,66.599142309199,30.530652708426388,40.46725810954693,60.651869386011604,60.77661381615413,52.36869057418505,52.14741435881051,93.3144629027476,64.74912443322197,64.17952641215784,22.86135427474967,79.06171828881361,44.96274379477453,30.994338806771093,51.374436369724506,66.20632871582754,92.86068348201184,55.22047361680688,60.20243067252966,44.993730582110125,66.85572280955186,17.32157428623715,24.32356330746113,95.98612617734567,37.6708227462385,7.0788832799251855,1.420356385426036,0.8965189107435156,17.831128653161,46.773569453298855,2.0434710288984803,51.88957163099636,22.02824986013917,5.263830000327385,21.84502356714628,39.23018749044102,57.62333284800777,74.05289283352997,49.78847501076945,25.566515765933072,56.14037597335583,10.034593084898823,36.326048406831156,46.101143991766634,12.523368268121239,60.62044939860475,50.54930023068277,11.365937961766438,15.120291439209698,10.915917349956416,25.346507108206882,68.12989484351151,56.799742644221354,15.704135316527633,88.02240579814266,78.78538482410072,54.64161253568774,72.0837707370931,17.512178087235796,8.350156207497417,14.617079210208905,23.331740560752113,13.285514183069147,21.005984554786462,37.57713619468209,38.07148973223505,62.13930965642799,3.571259609808708,44.49704927726682,35.73196971147996,64.90959548947224,42.931254518471754,12.9391975054037,39.43220977222065,23.527666565459516,99.59896805869087,59.55313354105183,80.40373094888055,73.16057303717348,10.290937532140077,31.141514012241966,64.33794674484234,7.787121137040498,58.06202089190408,76.13167575137318,78.90717092833789,35.51574565807114,17.604751081312507,18.56339807356572,30.7166616314024,91.76933589531005,99.21988576268879,38.39679360136022,24.16802719285841,42.3194485322828,60.77492285761012,95.02921557845205,67.90941892723745,9.793031224411575,0.8414137783168019,30.83090797282484,37.7030037757809,35.9704072300837,44.18182970972774,69.08797541762014,33.113452251297495,46.4023002164821,43.38611889440933,93.25172511699586,62.37145366114769,2.628278855016819,55.01558370608164,69.58957249470873,30.3070320294593,12.666227516159534,84.0491302523486,14.041022921615276,33.876795835444774,42.039973823733526,17.767569906339954,74.8387643535159,91.7987181560202,45.607811753188884,82.3709789348695,6.213892495554796,71.27352639682606,5.543358616574723,68.95577255797026,85.52759451991449,17.55063793864814,51.633096335748306,74.06363347398481,42.833536620340155,3.8689143228795797,61.412686448674805,95.00769695707363,87.51908502845806,55.09077013313664,14.840895172910074,39.08424867224321,12.897206689244767,20.103579038549434,35.260562350126314,75.63022148740416,2.602422792042347,34.2376467347439,64.17245221709683,85.17326570018776,35.8197706608795,15.910531458739552,13.664787651864096,32.551296273882045,34.346495811840406,15.353051045259047,92.1929221471488,86.30003485048306,8.900109105173426,78.27004358329452,73.34982079874189,23.39881173719499,50.70266264402286,19.428515020417613,97.99718836586838,90.4667069932276,78.44811176570475,45.905226399078636,99.72053206072927,26.240611695432737,12.128587938253165,61.47558787984517,71.81544245757807,85.98418903759699,37.48017925747279,88.77765210352808,79.53273995428185,27.41460309659892,24.924691334955273,98.54466234161511,52.29174808746373,80.33511976404198,63.43191566750173,3.9741269808694413,39.403581297006454,77.0838144323788,14.816896838936522,23.988139389191865,75.24497544793543,76.69386289193982,42.55273958778317,3.052293844975862,0.9918636534277936,63.00460209126929,55.62074198970733,26.79278598034709,76.91635452863446,70.17132392242895,86.00194581831366,5.05389481888292,85.27532274081369,59.00770554271997,65.3848976249782,78.2452138539089,43.56917097502099,74.8229218486742,19.413915208783237,18.776036906667283,74.35451558361882,39.21650267279237,50.1056490009525,36.890313411535644,53.047410556660225,65.22708678031736,46.351286199517396,4.636235345593109,61.07217813196728,16.804047072312056,93.44448998953004,7.122852013558356,47.16303810564052,27.25405884428924,40.65778974108342,75.55128683344682,30.95697858120401,36.114825306910916,26.52909518486708,52.677807180815606,92.0336423979905,25.6614399533983,3.4567051322400566,96.21524037548065,40.47240814358103,55.810607254374446,52.2216598838303,92.72899102873265,64.66274442629035,33.74286860225154,68.2407871321624,0.36067151480705384,52.66337324719049,72.18551249953529,73.29294023570436,50.60091029215247,44.48949620065819,66.99573703627357,8.334839169475394,67.50672747828636,88.16299665628048,50.31029845980923,25.406150479063992,34.61674256554509,23.612728263585158,69.94521497012597,66.20114575584589,42.44650122613321,15.858200861790273,48.51026181810215,71.77101893331384,34.1048717643787,51.70868187544271,28.41224867368437,3.312099140975988,8.191388756146022,30.553897774227934,99.62105381610851,99.8026611719332,69.66120354373346,2.2708701000384024,70.15808690056569,75.06463173257141,79.44736632271349,50.18647256188582,81.5301893269259,48.05764964510859,46.06360740209152,90.44075510387218,98.48991736666804,56.82904946337295,87.68502144784142,3.3249499908532654,18.76236391340942,7.7587400129302875,70.66885075154954,96.26982796082619,57.10768389225016,34.22899538939207,24.252540602646366,87.71784714555923,70.75947406305872,31.92979593057348,76.44548316129533,33.39707659483594,38.15930193700851,41.09440100278984,7.565494359168645,11.529067687607364,48.92161198219619,58.203608421958855,89.05966575802167,12.269078114541143,77.19890375771433,70.22997297242483,38.25144592182572,77.79232337566995,47.04916508153942,80.80901579781712,32.19054941406603,43.28228802959081,40.91586999599648,28.201179071397796,4.143872749802757,43.65838395241926,26.11477777849306,94.33287544469067,94.809459057041,70.07003775139505,59.89131390294745,45.4134537551998,41.821012534996584,32.311509636262834,73.1716839485307,85.60681040468245,35.13269446396868,40.060554001208374,56.07883531258489,7.691246192482126,96.95641362357044,86.08410007113912,30.599292957223987,26.106489491315,66.0054115069891,61.74150037720252,67.51095011524535,97.5481708790818,76.86569864248985,74.06313657306194,0.95982626689749,15.796430940907491,12.839880333761855,89.08902385440878,11.96834343358203,97.01139487279777,82.60862416655723,22.075444242823195,59.957555192729586,13.607326056023917,11.867741493950346,49.763227718659856,65.08988020678092,32.29503717204311,79.49554018464013,77.01773202875894,97.43319566745107,63.164676021410195,1.5213980696110907,58.73693548908333,20.7405583411608,24.245697889826623,61.280140270032234,37.91286384134812,24.042588983100842,94.20778138646632,8.417200617827348,71.21284853983319,37.299887039093235,81.28347363363464,82.78563210929256,89.86526006532758,39.613666898618845,91.97433200962098,91.65280085720678,68.63546020019207,92.87321695646122,70.80219234394013,95.80311075488154,33.534712840427005,40.757187023021245,10.352118662422372,21.29850346888564,31.52256462836479,78.46788579440529,59.8909730411017,31.31416604261934,71.66204188292899,73.95576221764527,76.18695692544163,22.96758025764588,14.352807492824326,93.40628481784454,12.60295258825579,28.60722618154633,87.81022017451886,37.87823036067858,10.394157506926604,89.10843730709622,93.69712454353227,59.26369476641031,44.34675117922331,2.863687140431115,98.34547745392031,6.946631166187755,64.97843095231008,55.31415482235512,94.14093504101264,97.82591154028934,87.13980574495078,82.72041943051775,11.704497807347902,39.79284988587315,20.434665789593296,34.353015605337575,19.163184679382837,54.06010249524593,9.355640877125326,55.42446120211596,52.41531851039116,62.40432264692573,33.90451701082987,8.531043001424388,90.14738696613284,13.509120548519949,27.612762191095307,63.445762327849174,32.3325767283283,53.53640976168689,73.74527256001487,14.870340525304137,71.60477456169504,65.36998183663539,49.0829715242785,70.13213934214257,52.611937521448205,72.10721995579047,48.765995315258316,19.479103722194857,82.39291324393776,72.7286827747305,64.01882249686489,56.43237493485619,86.7114964318519,51.781809447095405,28.230890764251683,62.39108364205643,16.77519211820545,13.49929870069161,64.97556293776502,67.93897832536825,35.69132635765655,22.801753973306525,83.36696623233237,0.27147491871850615,73.03937991750362,82.79474492713759,8.534539986101331,54.83244757700496,93.46731687475689,85.57710596457653,68.48208536646668,31.23899970330498,32.55544099903817,65.7499320653977,39.65642049645511,63.69852953205077,72.88458235043953,28.540026007193042,6.640651579201506,10.77985328433554,41.066044916041776,45.19493976708433,55.45728273038334,25.55092254676614,20.634939114463556,35.44322695486424,25.046126511690524,23.200148091856033,21.695267149114507,30.207395566494533,73.0227064776413,61.949641743136766,2.84630808503904,34.50283976465896,45.12219404038413,89.13816081258565,38.78535058082802,71.85174056445294,32.32667907705892,8.71340964798395,81.10217659099625,82.42762719034646,68.57455754921148,80.30191624378298,15.94020184939524,0.6933679280759164,94.34933603927279,82.73004320612837,73.02514518506283,43.7380841946643,69.16837518934365,88.91033418266258,98.5107053666953,62.94946914275216,96.17316130864786,47.75649974644398,67.13193451550617,29.959350638034,24.699095556794546,58.94846831302334,6.269494329900738,27.331400884904443,41.55196327287138,59.34118089763211,60.64566596265709,0.5710979344452194,11.344630821634272,81.01550565888402,50.60313879489993,29.82612142303134,63.37216241023582,67.27998102040922,96.2956923888883,61.848656487346666,30.223435755736983,44.833212066365846,86.95683199240348,26.14655266570105,71.34552309172483,5.4087559315454055,63.96385534434991,35.67491751857771,77.91897952643889,22.698961778934457,79.44657978431556,48.91873181154558,49.664061798512904,34.66561201160423,30.06512197832586,28.365578756818778,47.922311239611446,41.8157481439123,12.451501061160153,16.746548011618955,86.41141853759952,53.93243458651402,50.9582834585089,32.64364703795371,97.31204772606628,44.627215202458835,4.476394798425742,89.1050080073359,92.66895379978884,37.08895126248136,8.975949584638677,1.406352055388116,27.544868165148827,32.131041750900636,37.83568791422795,13.126086117962343,71.29703178592273,72.43336174638621,36.71490693754056,83.71952292655872,38.68082546524292,17.90735867157618,35.51884778221568,20.670016675543003,69.45085668959007,66.26145545225457,28.51638479440308,49.78986614177363,85.1547549266666,59.953927568106515,76.43547094454168,39.27476516092207,91.5276771670069,73.12663952387177,16.29073948664137,10.772947352195194,5.094372067067043,3.4945150030557315,48.6107494162434,87.958240524086,16.9509402446105,86.93304758638082,0.31590507679419844,1.079832252664903,60.89935018110927,70.27773924414377,16.097505089536202,77.12635148485622,66.9926831578962,86.15639114971265,84.52426106454752,74.72990261064508,56.67039864894245,20.112785043276038,99.25877751117717,1.1525368479830989,57.40329055721753,44.612733346815624,54.8058518459635,77.72811866855083,71.19372999549299,45.01348239848563,17.713874404800478,15.462020424700873,85.7322327695612,61.628117419777304,87.34117691404306,67.71839906324352,77.72334297843598,23.48159481706501,97.98577543202953,51.162300743219056,63.51532197634627,27.922436171878285,45.50141958362666,70.62662850411331,91.06560444409185,34.18102721405489,77.13832955438907,43.61140912507941,57.40883219411368,3.2024659991937376,78.67357300835218,54.20393711677879,8.240696382493462,8.675426872338798,7.915762785235536,92.83920965978847,90.23733681108656,79.39189158416679,7.279288391201522,62.66398280631839,24.380011571462223,38.00554338451815,71.08500776001007,22.651926920490308,47.03602498208308,42.43918714114546,2.398999553998249,15.72684728364292,2.5506398573956868,6.8792144888699,23.858711966105627,36.16561154468187,76.39906152773455,74.89115314097224,55.68234372891351,40.76468893094778,98.64884036245668,48.880064302023854,8.786434787217868,61.76717428935731,79.2725515432414,96.4500056758114,89.19916912931491,49.715778052645774,54.49418455013837,64.06435572592561,25.961407637357958,43.67105159943544,40.77402388478667,76.73292017109608,12.200110405830378,75.10134218810708,69.66218263031865,34.30164850851526,62.19701787797434,62.2660386840437,7.4203853686633074,13.64624966919692,43.3659783677612,43.73386876488734,15.378535964083017,45.223412420204376,50.237447629395106,92.76824141082594,61.48455215496846,19.653646810341808,69.8558943793453,89.1117364997052,65.31984973590593,24.61789869243335,56.885593556973944,63.13461852762351,55.31614679910663,62.93525362089573,27.10514452559919,77.58605308691983,11.062580016487722,42.744329972528796,28.076477253680732,43.29169601160009,46.79309461824601,21.511717338198277,78.08737879534209,82.78604814959114,53.09823231650977,21.778060300022737,52.2804024720104,36.005326125115154,41.03239291124224,75.19593903554428,71.51614853252433,5.338930943438225,22.654141343280454,72.00258763785223,94.50674229855389,67.8097232038892,15.885550872738285,13.072293740227693,37.465709708564354,14.982440497001948,80.3919552483354,83.8414619250624,79.42084942625488,89.02534107388118,94.48085764105123,23.535330728154968,35.16514048261704,71.64760842667461,89.35485737598474,89.25770610480971,91.6933695929546,67.13898581992346,40.64828120713945,0.8523603220021325,5.976532568144577,97.6030659233001,68.48847944815701,80.70993165618845,66.80271102377485,37.03150711360372,23.079156286194845,15.026397087695498,50.6611028759056,0.05615786767561026,34.16636403519474,96.91562375410166,85.56861389721581,95.61421055440152,7.712474177082473,76.28035689823558,13.615561585016811,14.790346535536303,97.29268746114344,42.10460962822995,94.45714748748644,85.02830044111043,68.01672112951026,45.05396052654932,52.89895369724316,15.097527303178248,3.6052236281089667,3.6516004836500193,90.7867343929113,17.00164519475418,35.99749568857851,0.2315045222824219,99.60430318834635,86.85720455933507,89.83305274448638,33.86612359069665,52.0364545911217,76.36476010127636,35.806041647786444,45.182544990305075,41.0719875993505,21.528786446790516,78.92480697935366,29.75732274245312,6.149389411054806,65.81040492842777,79.28299999913891,28.381725322806318,21.03258883810617,96.32516026614915,51.11216684474189,39.13764346708033,18.651503671019643,75.00670628216498,33.67181010934532,37.18140455074818,59.48199954895398,2.896780178627145,61.139269042353526,39.42804982072382,53.23626275976331,55.789869254004934,65.4777735944397,72.81692317697562,57.82504550121049,11.147447064553118,36.17773502941759,90.46738614220345,87.84716282842075,58.059380056582455,65.55649542582128,58.594459168939416,77.09903786880052,1.2088482075478857,10.077220383540098,1.5956190757298816,34.49394776211251,23.327113333697792,92.29436717141046,53.481635238668716,21.638144360241263,12.439271305043953,35.56496082445442,7.270565979552668,0.18278631396626555,17.207293127988642,8.628196559098878,84.64637769853351,63.56538796095106,69.61539845478488,94.59599553279081,68.44320248902143,33.01184999668166,78.38997072591006,64.08804276481679,7.312144914739793,34.23618160495722,61.84235445579005,1.5845072981840236,99.26855143978366,83.76065106607817,7.149185042277972,70.16802488056375,79.66922665217854,12.611723884161208,59.26022051282994,39.91509894879426,67.31626237808345,34.403629045316706,80.40202002517822,48.127312506354,63.74603432538714,78.03293443403383,13.5606644005682,78.24819694939073,55.517629585701286,24.65130330658506,44.749980538988964,98.80765741585661,16.922854773736006,3.0847618648794706,1.2047040514271634,67.24348096478771,8.300483660885682,28.53609887157035,15.097479552286842,26.455079256779555,5.578396811267461,61.68773700292019,86.95100081126064,57.06557245652618,53.94418956161591,2.018636456057721,30.160957659870512,53.90035640042845,89.77343792550505,71.76416713956499,58.875736444476644,22.399312823486362,50.2226042810047,28.215746879133373,86.22979417261068,74.35384559281611,32.61367710475211,70.70430707246868,7.349166658858897,29.8180665647792,14.549326227404169,24.151595639647727,57.71968518608406,78.38469189954347,2.719839748019881,83.35645252462395,59.1552750984515,29.577231816295303,89.81772992806381,15.900114026671453,41.83513663494423,88.62454039547555,46.81875239232872,94.4982394720306,37.65140795899313,47.273158014171315,57.22279903040831,50.27526041865335,19.652443353380523,16.72847150757234,80.82695831814873,42.93809989563051,21.93873948851348,38.7780532853072,30.87731941636762,29.842377037940004,17.96280971079749,20.330079616227703,12.104382871955055,49.96729785649398,73.45142793977183,22.674696772892545,32.87505917607451,93.78426818476329,71.85393225897708,13.055476509418273,26.6403391935238,84.28756841929706,78.22748951070525,43.12038612354085,50.615078074545416,59.98198463116721,16.956951760036766,66.43667124038389,70.5351704232401,72.7087642355589,40.12417297880878,42.373626856931565,18.03610329645973,31.930350433555553,29.119590576636377,68.9114381849235,30.37094045805042,18.28376196050917,71.4433483563461,93.12209824193121,31.719997743881436,6.729253352613451,18.003902027339546,74.2189420634617,27.052676568043065,95.49476553499883,51.34621847132611,26.120082662552914,63.26409488516075,89.20468813045494,66.13981995443775,71.19619598683919,36.886671127795104,16.660925790512337,98.6106244364192,16.9442371874988,8.905294437579414,17.978797260042036,54.612194447684445,39.199012753623975,93.87961785915154,51.92220416505266,43.356107368200504,31.025355133283007,61.44952548626718,97.7598161937335,29.058089743828653,6.0212575194705575,39.14122950252472,58.86441983390232,2.786291047988887,67.03863536272186,72.06281515389422,50.94807103807153,19.37293395940881,91.29411111358631,73.70556323913486,79.52217506746521,89.42783824440734,6.242206048284382,72.06827752666996,62.41000392063049,26.630825209861875,34.406466957461525,16.85481193932562,34.36711253360672,85.01081732752667,95.11760714519818,6.655757639825033,30.09303999362498,75.94434524888526,85.74156700510761,95.01716124434031,4.391159253934173,33.560930682131996,26.862974817417495,70.03927242802267,87.5934066219967,76.88862003037164,11.688891398189838,7.092671708034648,28.835323805334447,47.3702644139716,89.02324264846345,68.16774501296808,44.69229495878282,25.61663621497,45.054308590879955,58.01816302398471,16.494775652173377,38.259724044419144,51.68833137666313,49.430592504298275,17.671960263505415,2.836371026171103,91.1174422903085,14.148209412371116,62.941107521477434,26.096659394154862,84.03824084221492,5.339230144074891,25.112001970087494,86.30502116394966,67.1269115533971,65.11998741309894,8.366815318146347,65.07874217881167,31.1369669969938,98.27645024459234,49.03126123207411,79.10150957253134,35.593817969589736,4.472732403778624,25.052940409107894,45.482695450919365,31.76399568587612,42.71788215934597,43.2004889761601,57.33925551980814,94.83641287896658,14.25682995664025,63.13294592859864,38.44270083979973,20.90092445877316,80.79858548793254,99.84711523810735,33.43602352916509,6.105953800197305,96.75843561879753,54.01111948830011,22.99088576414956,34.849261113128804,52.86660171921576,51.79343998352023,13.194497436020225,13.839108050848026,83.48960249752699,77.37921619744948,2.0181281252774297,4.246041600606077,56.20350572877899,92.1063471638037,83.8651248825699,19.03210726723804,93.086769081778,86.4822628607273,95.44250687611284,91.18779717948001,72.17745339259719,74.0856975233262,25.31332425735976,7.6454575255196495,75.39892767894537,25.444616870924552,6.085075208882495,65.00803698609276,57.384169926680705,71.19414086141013,33.70140341938367,19.02757750483316,69.61579978312187,4.464025748930367,98.09924837072984,80.33810340991727,1.13495639627188,32.26873008869142,55.067624406746994,34.6603763626913,54.258157959065215,41.72885377563262,67.44919114455135,16.425507594462474,93.94862228388902,90.69591354579167,94.29407629434097,61.07621377905483,63.286780053753525,35.642396709793246,44.179017647462935,54.08426168816165,23.689609732909787,57.43038858459275,72.38973073431944,93.68682247117098,84.58864359161929,7.267144870956099,17.45689901902433,69.27655297872393,71.49168380130178,48.77651808969152,56.96023592470452,47.172674347054866,32.36417514978549,66.87518911101319,50.290401409699946,24.756170364889908,80.66012848605804,4.3117080923279705,23.525967080457633,74.63522703604733,9.088072280392156,93.66559568264964,46.382514873719074,24.436930665518087,57.60708318321309,0.11207541644641106,6.416338579654424,51.42217281255444,83.75694797345099,92.86984993409811,4.66008814621296,94.68280404661365,16.46808948701436,14.736400658630522,79.9250748159264,91.0274202375982,74.85606718097577,28.53808151829008,59.00693598771646,93.25299818441542,21.293081189902573,65.97096579430571,18.98354287989613,52.018202552982274,21.43975762743019,85.51426249476329,73.013904835242,10.6972558185489,71.8490619254645,29.241756518035665,24.158024289140723,22.75910049355131,14.882163738151988,96.2003854680787,69.75069722344264,0.8508536775823972,83.77727155510422,27.846273355160434,49.90243449575613,8.115843014198775,98.89866202231494,57.85272558800418,73.89796258648687,49.42215848882721,91.22864332306354,10.60729118022955,7.946098308816252,99.17900853632887,35.393454747429686,56.183004953870274,88.05710399498061,36.53575113045704,80.32702709288438,51.32374597390342,26.27112265614856,51.205212637698416,53.70432902127088,85.94468552817382,9.276870353382504,98.4242600857215,18.677433700519053,60.31432035576041,21.510598448489414,75.28610775865235,84.25217210161907,45.81120019980731,27.73273773088266,25.898978265268035,70.77351502291832,50.88549960872608,8.72274462669842,12.577537842985564,41.33714584883727,44.036790196722606,24.661197686829304,92.74455493250849,59.725536786465646,0.9539628430774605,32.13416521894946,5.220446839603166,47.59460602285481,47.61331469506603,1.4691851198719186,6.572076471916888,62.68920013829261,35.422668648058405,91.85254389811264,18.908007377121294,22.8820938103626,47.708924649902805,52.24583895095486,8.534921003246776,99.0537712001198,19.583233268445365,64.87514109852056,84.41011757415939,19.424520941808932,7.737207168211757,40.41897439621411,13.638450870460828,70.4194847771423,35.42107001356324,87.89061087396843,18.84016092855647,74.2413795307115,16.766158267931118,28.573356101002567,61.36329398248564,4.819834128769484,85.10851027661329,20.80067488490235,20.42639606897929,52.549716182938624,85.96908635002448,40.95951207097498,15.39181515107435,99.36669903890616,97.7860621350523,72.89565698534655,49.11027598687955,39.88417675796114,52.91860972243938,53.07704563961201,81.64575644039851,52.39631718771784,5.279990442232652,35.44475722962089,14.078567422962774,29.421784739503053,65.08660319780583,71.03893712421899,42.41634520582679,56.853871597185815,70.98422896627127,79.20412381550217,5.371847609014246,46.372230436672936,61.99717701745199,13.948905892304653,33.59655563505822,68.02161823179345,66.69804206606337,92.4454067186551,16.930094841754283,8.062151948785912,86.49930178984971,20.012660942233097,2.008061928556082,70.11382573520658,78.43058076823485,5.871722283766411,66.31068264580652,70.1921933507828,6.053992239698047,70.45134779772833,81.04443279155585,32.50623106081725,69.7546679497481,31.538013322832292,50.961981962005154,58.839601650192854,98.19163187635345,56.195583780931514,97.25136094716953,11.096479843985518,41.19254997643553,8.789024939606794,92.11508087485521,5.6127208708534155,64.6067156321338,47.38304165060829,31.1605116548647,54.67977405511812,18.738758283201307,11.358127361453596,79.99811582630537,21.677561214733487,19.425626725929355,37.36227718642099,62.30789448720705,61.40719964140033,45.7923643545077,35.965873073348874,9.970199277760694,13.217546132831703,75.46788962176849,53.77144028746831,58.72612626061433,82.843495769568,43.11751182790405,46.532595677589484,14.383779839621635,7.362982175197774,95.35620499918791,10.275725662507973,74.78144193194012,25.59240814239351,92.38075023066966,72.28818391123933,83.0997054029003,11.263284346817404,8.456017073309507,38.38638165607211,48.63086137764788,4.14131797310342,98.97363938590956,2.241258721973949,42.27304747670316,23.36282035789199,74.99659089228831,71.30454178946512,77.86646836620218,55.67174700071966,35.25783330784591,67.63384747986649,8.06495968287846,32.152283972395544,83.42517482053225,38.70874964307587,46.614269183751425,80.63822988059101,88.99826435735537,79.26203832882001,71.56920329506629,96.03583060958408,94.49057348573704,77.42083565827676,44.24097288945046,1.1731443136963393,41.403515388786914,36.399590026314186,76.07168145848071,41.1354107192288,42.934554819663454,95.00786799461255,71.3903172530057,21.241474860800558,25.260651369215058,94.46556517668967,19.908100852147513,99.77893946736717,80.46254874160003,19.759102041189124,74.52228725852747,31.148101652875514,17.996231198653277,61.240468556350166,64.09276908866008,7.699271495312809,82.55870253535954,95.5902550950486,76.70056993697881,45.82425182216454,63.94553051336522,23.809081866385952,17.041043315514436,26.197877017668304,62.07038981680716,35.45512666398374,32.1849238748558,42.35311542786353,1.5454459936028342,47.16524704244236,82.96211979098246,41.232761572397635,60.03504426866244,57.56395025979108,34.308489408040785,24.341836789203796,18.817346537922642,97.27992727020734,34.37320227270916,46.02554492070256,14.939490815528533,16.01231427375659,73.03182421857963,71.16402312458273,36.30530165912459,99.72911878387318,19.96108455335548,10.69001272614809,85.08353371899713,69.78395754313512,92.92254444812498,84.82336111672308,72.3070097071489,15.579538480857213,16.819432999811678,82.34013529925448,45.48646681122618,73.87952292225687,28.07389854060537,13.384443260914692,59.75786368606636,45.95944228486385,79.73714295807349,59.49655961032415,38.67224504819839,89.27658448776701,47.166801973858455,71.2947456821514,42.59530180780801,85.23625764773539,84.88966312089356,54.5124514821866,24.734761539258688,90.18124107287024,71.30136010763218,81.68488433332966,6.756841662866808,20.186120379570248,55.72972674663107,2.486411812256073,78.80199746905494,86.81567162777336,75.56037776220278,36.98774717498734,90.70635075417732,57.761974164966745,13.756061050603519,68.2831028010719,47.730887408761056,94.82327988965203,81.7269168441201,82.21445024298383,0.8705306781419342,99.27411107913609,18.940472193068402,8.118446672502644,70.11560072975568,82.4262116267457,25.52445079629716,99.01827620621823,63.49276823238345,4.580314892660519,11.982892825967218,75.11474519853837,38.36379382846099,96.42157568018474,75.4814472520931,84.01943114311788,47.25627618693661,4.634526464175403,14.230795409708307,61.92723154806805,12.470992997129626,89.79812805807819,8.132960447944626,53.9613815885954,78.9096003290735,52.217609838497644,76.53120304941106,57.486420242582824,12.425949568504135,20.40729677223482,18.98300247768073,74.5941277059171,80.9665102551712,92.2691602327937,37.65729836522771,20.929229738412968,83.72811859844549,69.47512067067395,43.37683477831597,64.9020926065368,90.7558015903129,98.5040944397182,0.21583559291722398,21.23455605570993,59.3499391984341,47.63930986722379,64.06880069871089,87.91786584932947,31.18381406278846,78.31938029072624,37.74427394228952,37.991139768980254,65.2394804054795,25.244588485810894,53.882618229777734,10.308093413380382,79.70154162435321,24.448658136186364,31.072825440804365,69.75788534292849,56.814912206492274,68.869468824062,46.45320400027072,78.58125082786599,36.607397132583465,97.04423544124164,83.46665635164433,78.2263821009392,29.774934529404618,79.30522473918404,57.436053693490976,53.67799791830624,9.551548469009663,59.457145902788774,53.78100871636203,72.05186003093286,36.959841890100485,8.384157157429017,44.285850776134,17.44528218185949,51.894592141344454,89.74949463954788,9.315937340599767,85.36591028540184,46.63096516051832,74.13360959963389,85.7576334777574,2.962283115139064,24.870354102551918,3.0011554257883044,38.29708803608194,42.306673690936634,30.967173845003483,59.81254985122975,5.92324499775706,11.416980271320899,86.00284210706239,9.638090438953773,47.16574465881459,20.852052028056868,64.23386781053995,94.63680221468132,73.79938855759977,56.56965017930692,45.811052874651324,15.417964554852725,40.124545461408346,53.27922732771084,32.26034728263115,14.074545185146025,71.0409059620155,59.66415176558451,39.842913416981986,86.69481038363219,20.965573262650693,11.151852553576514,17.004169056847985,41.62228437364729,5.638872660718553,14.285872923536026,95.89296478904244,23.3846507160835,21.943200999938473,60.872090285525424,16.045959182193936,90.3135676444157,25.89618244391869,66.19520244931941,2.249938164538412,77.34326250010984,12.35312183980255,56.77839860912304,42.492934280966075,70.84673772227144,84.86635224499527,85.7284009959222,50.522921337021344,87.89049913118568,40.518550155721634,8.827899223725854,38.59027163120376,13.731258301925763,40.948118823317316,36.74066015445513,54.648437590598476,36.702325220737464,24.257989026636007,2.1922883150543804,15.731905581946314,87.40013177641244,87.1594290677734,51.548344328026566,37.43516082369646,16.24511408232706,72.23524184961036,68.11323645326532,27.40887303023074,64.75648719177535,46.97129702326609,98.09466698364196,54.53122338807368,57.53614319695784,55.44471141997877,27.90042642849623,38.11302220421009,33.72951853361976,10.508300887448097,64.74312395023072,54.073210005195115,93.05826465711067,63.266520464068286,59.970246172694395,43.10758917763747,56.94002764115319,87.60738600179934,99.39603570481876,45.23014381070578,92.19415810476633,13.42097678551134,71.99188973379258,68.77257099913707,59.0017697697447,43.428041434644996,18.223279139096217,98.47355552596395,46.31657404197084,65.79161536322492,74.67736603912921,19.604586188640194,17.05972392951953,77.28544574910529,10.593928962054179,68.0348736118361,55.028679435181886,16.79160473886112,15.251199626697154,13.024583776318632,24.68406728589736,90.74372608236747,95.97646230859621,11.530463577417816,17.236088386375435,49.061109884688356,8.459037712081363,44.66401987923467,2.4777769591188936,9.208863936701961,24.326430242758846,58.87504782479252,85.39439932162,43.18933830059917,1.6869576091611105,60.89528671328986,76.68530611536228,73.91766259770293,38.90085121629359,30.324729153208686,42.38835424138255,95.09051002705715,21.824455788513685,2.231094304574144,49.905237522079496,11.710069047969196,77.66073302552107,64.20348196466841,50.19075199386888,68.00067066776954,6.792887418234206,55.91859479827947,82.35567439168672,16.727398412905327,56.18222329949615,56.69036200350749,66.9835603032415,23.573812586726472,60.22018328182149,63.524484535157534,28.771684368780516,96.96879274567105,95.75823278608148,36.75722935671429,98.86800349622862,99.25596410873658,11.38615605096941,94.99911361643458,31.819374741913343,66.9314645853919,17.988491539055275,82.60638926867009,94.97518327849652,87.75279473455491,39.67344717175803,78.22424710866667,84.03378712885909,37.90070864136435,15.689816051614546,65.38576994137686,83.00641987789452,66.4514595975496,58.2120666604963,95.30086391634795,78.59183380926507,59.436354032959926,76.56675070871405,62.05923331694103,89.73634936055963,70.53592512651335,40.887429985425804,14.905496823528864,8.560373784730313,99.23437276706643,67.94745264730938,73.98367753445415,97.27658280372358,93.39368814136986,95.00980165921747,7.782974503055673,51.31027810385973,79.04175078538617,35.672675219407694,46.69290349782494,9.374652447019571,96.03896928934294,77.07393365484167,50.34720327759344,70.47772103925301,44.864876237431716,31.001921749659033,55.85336479580032,93.37522628583889,21.539639958713387,22.292581819921875,25.59954586109057,88.25393143445935,63.90177975974731,14.084190474618419,0.9505196194816157,67.5365400201467,5.422489593374847,40.5907261803516,70.3991814846593,44.01679422351018,29.603265462423067,43.66998807880683,78.80052149077609,20.040836853244983,28.252387829343327,5.359216392485033,8.762808438177249,1.7111157869636906,43.45529760447069,63.14073455868247,61.691736095663074,80.06721830705659,52.00168445106086,46.15507822213461,94.56889033485807,32.07200975060061,81.36297284658876,67.43762398124045,87.16195620914982,67.93061180612298,26.2283241271298,50.21628126045252,78.39510235271635,8.843274937965539,59.523276646068076,81.37943484782474,35.53103705140839,23.739419156337014,12.367594951667115,45.19647331318626,51.051730340581514,53.97156472020003,81.78787643463657,38.0849152643726,31.186287710544704,29.78650941429303,30.441622429677917,24.32254278914262,21.57194634243996,54.65252449375194,59.22943000053659,46.51720178140988,70.86536175114017,7.211420530876255,78.53815186023786,4.017425569994504,71.54730731235264,76.66312804998323,19.028293164186305,10.29743959540107,54.77588744940305,17.688844831643237,53.33478839005971,21.270777420490138,43.260048823604336,51.41807573488515,92.86914518037683,84.0838897730331,66.68565083089962,82.27766407323817,41.36944465795225,78.83904498528302,47.799919935746345,35.74259764481397,3.4253161323605563,62.863442083918706,2.9804164415411227,85.8270450612966,79.87224345329649,84.91097861801235,97.00296622363787,18.42401360529562,5.014691700271601,32.15291400665089,4.8534747905449755,77.6300962560467,55.11122074223671,25.530842622847626,33.48690898515895,76.34533609159429,6.216766193854539,0.18598440932159344,52.75960523381655,68.77976265125079,46.95254677684638,94.59395583948388,43.18308676077106,77.0206374635653,26.8493646031154,16.386846586529067,53.90451411529714,51.38295490266174,86.06668178668393,81.04310567372931,45.829505682004125,17.543350328018057,79.22338667519274,37.16924895316791,87.49243285982583,98.76913102243,26.38818968036315,14.903574710806778,7.710414712672731,91.05232001358395,31.461108005277826,41.80202300266901,4.108467981226783,39.671211532656656,84.89087085610028,91.8049032384858,37.77210094504401,3.5597133525419378,70.55852927322937,56.86783077627881,73.59511955249165,48.06013084787817,13.68974876317366,44.70286797232217,37.955874989669326,71.46181397599625,45.59418877179123,41.96574979377433,81.18685438980172,46.17779512264999,89.15723108679093,15.430967923848849,92.1554546591385,13.995023266658823,92.97413497115473,85.26460378412592,90.87810995011513,6.434985719760866,46.719142862641526,26.164818099060085,53.04334859775612,79.39293221052183,98.62584468401738,89.79247588881167,45.17773551043051,12.46608345281638,12.745810802988355,9.982660082204319,21.937582500118246,34.40980728690724,71.30103462791534,48.69345544388507,92.59563021382007,59.63443656419454,73.12312847540073,97.40408785274549,94.45803271438596,92.55963490798848,76.7156007145458,75.71140930165609,0.2251291677645706,83.91220957462177,85.27771595046387,56.30843698044771,13.8598851107284,59.262940837385216,94.53321824210926,28.438510155771567,93.25855836210594,55.05988632570777,1.299257295475309,97.64899962491153,42.93514028867872,68.66035629822974,60.47856061673061,58.86782980506452,47.256646520516995,44.43434638268037,16.515021614119075,36.283417630221194,19.86689485867178,64.53162345327324,70.68242067747586,94.16069373537096,97.9028665506684,5.085391669476291,44.26925846175765,40.79832350216043,1.4445944912349185,78.36359046212576,21.865251295598064,93.46906428966328,59.337093683902886,94.74845722598073,13.65528759111182,12.641839930769583,50.9612189463586,61.41213712429639,87.9434698255425,80.03343011560645,0.4515151247567295,7.352788145779742,76.42402248967183,43.036463475733285,86.17933894865634,64.80623905027082,18.1214547168937,92.67703304555334,73.44576823942663,51.02881608155969,23.861812337483947,21.87433690047054,11.899728337528447,34.6363569647316,6.543538795082638,54.79178631949573,64.8131371384505,59.766965875009234,81.82140134639337,87.30076280980632,25.00319700475826,57.22280885165577,76.4851477282841,96.13961039971335,73.02444605968157,10.216765742604494,30.692413562629383,59.08961763231611,15.774341658048574,57.10671973061281,57.797481024003275,25.06500369769068,76.14213660890158,78.36441005028875,97.6917792645425,85.2498217898784,33.63550993010953,34.30213129984748,54.05581295048947,92.55382104983842,66.85187654413225,81.17059530907191,84.14591841036723,49.794608878505706,54.62917848659683,29.30243499304266,25.072999492476043,17.28214191847598,51.59537216093082,78.7314125952452,51.898099930234885,69.41497896619153,45.23557530880436,58.81041730266395,56.63925431173854,85.38300586210067,26.40617361274815,83.46937571442375,39.626467044709855,89.26801823369627,68.47774470363991,47.43337089048559,45.20887132770955,67.00961402808379,57.19186537420686,83.28251163742823,41.5519216515246,20.47305605314379,72.74002174320712,71.99582327817636,70.8911632051808,8.33724512062668,28.632712532682593,66.93862766327707,85.0744525901898,5.675385381552445,0.9073045288455206,32.71315395346643,65.2470073395823,75.1443681252119,0.40415360623156094,9.525048757425548,65.04754186272032,95.81939230332861,61.798592659201624,60.64945178839297,70.09487205962898,83.68573822939834,87.12398549732168,85.07889791380056,82.59646037955831,56.59937324468203,77.80734193389836,15.033549396949475,52.78944305791926,77.22943277271098,70.77835873118758,3.742860714695606,72.48471439212473,84.9174464909515,4.975254094193781,62.80340292760482,62.54657145775333,87.76629687706667,98.13134096207627,69.3052147958557,91.57804278538069,8.579840129341044,61.39441174932222,80.60140114863563,62.51847485778151,18.251522759162075,15.638170572763476,90.1262084310663,84.63708406405759,4.681202184866883,65.49589005420677,16.577750967258133,95.8469423549893,52.72063117235535,52.89783596621621,35.90398285397309,6.132719655815544,95.91142392177706,41.038336092658476,91.00309649400579,82.02533541446516,93.11348255637219,95.64920918903522,3.0056334604305235,77.57183739822229,81.90365440643895,44.562755027152924,95.57870710498997,67.55701148333124,71.83188461759512,49.033019086679865,29.387313166104935,94.17131395273636,24.889773581230724,42.796664987640696,96.99488111327177,72.29056579939255,32.15123497337131,63.9278298346771,77.96357822776413,44.04473331777689,40.7574778588584,11.29655654462619,43.36922988565696,92.7536715594536,19.830701534564255,58.41926300865287,98.27605502986509,26.327042278370694,42.74981272720403,53.73582805542072,98.2726471904195,92.89550794996937,62.48289673030425,7.770480512922506,88.89337900112353,84.58008933006718,29.249302148128752,61.41453741787208,59.885630962737004,51.15596860623997,70.6793266374489,2.7819989404575085,23.822709993276227,36.15858553787072,59.03740632678796,67.7639518419986,65.00181305119274,19.455477236618012,95.43911008100307,25.3456581953742,29.697743650634102,76.23788720123589,35.49479145036495,4.193182474097212,33.09075159969027,86.94774199436587,86.1294918062972,68.74760711076333,17.527930608107745,23.297350512638825,77.28902881940176,94.54860341082448,59.75332185675488,58.94901155037972,37.65841631529283,80.42117660415103,34.12926415962111,93.18734662835499,20.307264181763607,65.5741204540623,36.01758538471568,23.72869789252423,52.07862804719174,14.009996588905437,84.88418606488868,53.12542998322435,87.38483996012366,19.260406168028943,71.94687681353872,80.84280773807664,14.929830308311354,37.95719119673344,62.60388736243141,28.776066202353313,6.387161489809912,52.78907898695925,96.82981070839308,80.53471934454521,26.970414679686748,71.12328514867909,12.99422325855848,61.89704056312285,87.70026741315704,12.266692737464968,64.42107225359443,1.6816994980922928,51.003009690863834,67.71145295546388,72.09859339854322,64.66270565470012,29.53658879125428,82.7721568761639,25.068990229029676,68.69508828818802,99.81067243600621,47.590332734161265,6.259303618660949,26.910090491458682,80.1809107890824,73.9863759412688,86.51828301300341,15.914763862018667,82.4175014334463,95.25378185305848,36.273314705596995,79.79764791165323,40.49327535061952,86.8943607934608,82.44156889132613,83.85400549792053,14.566460252193192,41.390906504295025,23.274674683788334,24.341286217209003,9.147461593161276,15.488504025974258,27.666502552417814,99.29132334754567,70.85096291209344,24.86393836663632,71.15017058039811,29.928362906847617,18.13403713549988,83.12475126909776,33.26610885818967,27.871472015059375,33.43577354991718,57.65051932405865,4.7094251126174935,16.395157270805903,10.78122096308941,65.78989787064857,59.80508241219567,1.5145291933644334,5.831685835876421,2.8885017293798776,56.12178315411319,70.00157717888285,56.633776359721026,13.281282026354091,56.45965204736443,46.33886900056805,0.2672173648444409,60.17920478655775,19.84814183085952,88.95459101495294,22.330100565575794,57.30629487360333,65.45493094786502,5.990656375839398,94.6252962233359,6.646605405136086,76.21526302242114,87.89667546456981,29.546339336499138,23.726982812410856,77.1349291310098,21.0701778259769,91.822541850685,78.44593811183668,64.97273274131281,30.659955906002743,33.42782620437087,63.334532630676335,32.44819529731543,7.585400759403815,84.70177731132574,71.86456676611095,13.21830972838608,88.38425810955907,79.12657655248702,89.2223810920581,9.61856867294716,42.772784259807906,54.35559655753453,98.36869392680994,31.697030794225967,61.00266775439952,33.758058656820126,41.18785622081346,0.052723004079091584,21.679279384546536,81.89672541258473,96.90334205846504,39.75434482511713,92.53717311122962,52.35291100468109,33.596608797834485,76.4575626009537,72.10072598937289,75.71146611457978,57.60463951368732,7.974012419039345,45.24525766265279,97.08410109264649,56.12093683079864,32.792083097681626,83.187469892551,67.35384070904102,63.3854333361746,69.15942504271008,17.50441082208741,1.840001465437835,48.91910875882011,4.23443871332585,70.7370467738197,50.73033428126605,90.0958797180759,45.49356067767933,3.252558351227286,94.3394163322085,80.70075632225002,83.56239045125902,16.21659609938805,76.00501644479121,55.68454818176134,26.085402391892575,49.78282694739868,58.63027689117127,96.1865603882729,75.2071033662055,99.55637569283876,37.63796809049502,34.39885182083023,11.342471072050186,13.062014845552461,30.71262256712608,11.878775332220004,52.5225487894989,21.44175997432476,68.12998917991037,91.23211277267336,72.0182853405581,58.37135704260854,52.50037553343716,33.068393724081105,0.37554762031136724,12.390884096648113,13.922593880161138,82.87219304186848,59.78597203191405,34.900310321570075,24.8634939910234,25.582497801796567,49.60224032000063,94.6436066969256,39.073354343690085,65.92199337734029,4.714718519578042,1.9906783346253842,22.169118860602644,48.64294769210733,61.605766006784854,8.667967723564907,37.42166898118236,20.373026107285163,58.956378184052305,77.93294831975767,64.27491743350477,51.952617935201495,88.06385155249849,12.59125731659838,0.6963001701011384,27.974803307516005,3.0207671886096077,99.20785588866735,46.67652401212485,0.11804010265451526,70.3929616454555,41.04465842102199,40.97056162321532,2.891464371210617,3.9137254222424533,33.32950307949514,4.290273844604798,81.89842502853058,62.22104845056894,65.38180351183965,94.23594123620931,0.9113192458502506,53.232921606982565,50.874082039854095,90.90687773559402,67.02638219186271,85.35813546580675,29.790264180061055,29.22525863157579,8.16381119920302,75.51457643971509,21.062511393715745,83.7233827666703,87.79640925976028,5.070606586246884,79.3803982778498,82.68954601518995,17.862984352996115,44.778585770086764,71.35456773370913,18.6144744012527,61.971712597296744,2.076013470149096,67.34944161989432,17.868526052234877,67.25364856573354,28.238004523051842,5.379660167583067,14.552689660379903,45.03137590088427,35.82076212392236,76.19250473328361,12.641542053754474,4.803122189262455,36.93967539446834,25.297122153063412,40.18561238153955,29.744241177058694,12.300048731870927,6.8135863237938405,85.54131929698082,73.89098683421102,43.086318371474995,43.03003979061665,44.05244458208395,32.64473800895149,98.81556365586985,58.52930201081591,14.208969005501315,84.96093898400898,43.84570566544852,24.606117290333206,83.80186639605085,96.4473579080314,83.51649742901816,32.62647174779963,17.558188184197597,70.80768063331377,28.195073844421824,76.54315740266517,97.92794991556458,50.27709678314128,14.524934785737253,3.912139094930034,24.26450222350511,51.26986993409085,46.29876058763984,46.58619221317309,39.73327530907965,92.13679870783102,26.415516535211324,70.55686967960656,14.915328860111,16.319616027159732,25.939510137065746,64.26249822092825,69.87932722642428,62.656811990992104,12.157830196137652,1.626411412515516,35.24763042035861,18.128624165536955,30.413345732797094,77.63579562052799,25.77530089648964,34.136946953843285,20.409563521089822,26.211374503794595,25.84510537814112,57.524381826221735,98.91428032075599,7.692616948920006,8.44331243643831,41.010566706950925,31.96483836554095,9.942948139740304,8.747304369603171,32.24623697723479,30.00179249039212,48.23952686516733,57.89316557176626,97.42212310477133,88.87104962441906,73.27649783449478,28.638783148836666,37.25512136239308,8.496804755186648,78.47609409880889,63.44492781623195,56.17438320335694,76.46313743726864,49.82405685653938,82.06533470695186,23.566483442727947,68.81665379870712,49.37697860770792,47.884762930495825,29.724792411113565,37.13211825869857,0.7524302588619802,20.16849288602446,98.15347955940591,76.09531801756539,66.24042906975453,3.9308013835690603,19.256156783256074,54.299459617104205,43.386514845228554,71.48674549075882,60.17773606765101,66.84883825871783,34.59991996170486,45.90572590723786,83.57472908104732,74.49578176017164,21.063656441413812,97.2749208678986,75.43788504009183,60.91469625188498,2.344806022488899,59.93056780745981,32.010618675283666,18.02565788724475,52.71846511397252,55.2144610594513,47.96920679254547,15.998951493143165,23.186363022626153,59.8912791875719,21.711314091550328,48.57144321384625,81.7096944314128,38.71696672988848,10.572670542486517,24.155833114127766,99.46867373004005,71.35494971856482,83.05849444392793,70.32240895332042,77.4276877691683,66.22664367541984,50.51805886918708,18.502936542567095,78.89692448518885,91.8326941201371,12.026791634821244,22.78201893484203,23.261189366271218,62.66616470184149,65.8816692993878,61.12680460991894,90.91654683382086,40.400516402062145,47.79530748210685,92.87391920657667,96.7166803484672,22.357788610816044,11.077727971028562,20.66858483964894,74.81721824365239,1.6990371647681024,54.220240236036865,54.37592938329212,59.182755275935165,72.64019852258632,95.68970521303741,62.13575681762878,27.04412626187779,17.26529870947123,11.34845551564877,23.791340937074324,68.45878153296209,7.224598588711495,10.522516067980925,69.08193454405802,37.89845765161779,93.62251434469032,44.28456443267099,37.81846806225909,78.33392310996351,93.72288673634222,46.455795492500876,68.5095754894566,92.27205585501315,84.64606479764453,28.823354838940173,51.80096792701799,69.7442960947514,17.36538113447209,45.53119132518852,55.55501320780731,55.25345275120436,32.5764438704338,25.327826831617607,41.79944182800973,12.45278098848257,84.31783812011655,42.12871461080903,61.9440307341746,60.26550516954614,58.809403113946686,46.74152052334296,89.68229489544277,84.69239576924595,10.012932039334387,68.26373118071118,15.53420474214493,96.22968101604725,58.69420550647676,26.749134636574468,46.78178433158858,35.6766555560359,64.18576634637219,75.13661612996661,0.21863030196140887,13.578339724863774,68.51709650298564,11.21909042018987,1.9730573321130596,55.303417749328055,88.90981303375662,75.1062918590262,80.61892076954383,55.34497223014137,99.65523577553758,97.96316383634235,83.95217043599649,87.35087048839488,55.935430175746525,56.38495234457398,49.74173873320776,30.614894663107684,36.49212632558807,11.04810483594042,39.870058734783655,86.06376041770989,23.115917334033586,20.882938989603684,44.06849635679052,8.288505040739992,5.895276766750179,63.27497569859128,9.02299923206341,4.512918869901528,32.78780739418787,38.68582708155985,29.197754820232035,37.215402482664,50.36312946953758,6.313528387382094,28.86846344427375,14.04807383651585,26.551888356944264,51.28582109308527,85.13301109859067,65.88153567429683,99.83639947815097,8.228672534047465,28.573178142327183,5.8012266109778166,78.53869665816387,29.316388974687968,69.67764242339118,52.61567802866276,99.18452091510026,36.418653250752875,8.705163113580506,52.75350993465197,64.33268129660104,82.21919620841356,60.345771328875166,67.46628997707268,23.621730619593084,31.493506367419766,14.317866297518577,4.223059703385912,78.61419734082749,1.100879961772827,20.192011451416615,43.64559028916285,8.959570442305898,31.333799682017695,61.373117843521094,22.11175590598654,57.15402503431132,98.73590503955653,94.83397430801017,70.5555986378128,52.150564413844826,1.2608910600141021,14.62584070262073,72.05916103801326,54.68615218854129,46.003406047537375,41.24657131104853,43.502775848175915,84.53235642318211,60.91546530108716,47.296195637861075,82.08616205818751,13.519206432088925,45.73640249530306,74.4303675421129,35.218271640341484,11.38431971414089,34.26273121108705,4.168307676947192,0.2372582160711012,2.9048132197007526,17.75620046407814,71.98349248247666,73.94196776338855,46.86553351838818,74.36465962628846,24.556540764125977,20.907780321169234,23.301078040503008,25.22166159621152,70.66941932697522,98.03848354970441,41.76063285615375,72.21598447967614,13.661859255303078,89.75374388793168,76.5255613865592,71.37981796424486,32.63071021249541,38.7226264457224,42.1689341987708,85.97027562077078,56.99938522233883,10.032466126581241,78.31664023352826,28.25216400643634,21.3408891367023,39.84298586496309,82.02394205749405,54.96616585357601,74.49494735963985,0.9107426796934992,17.76491413827076,80.91114006621683,78.59980464626315,74.80588772665368,4.579710793543845,98.97268529677646,37.14963540456432,22.872894350903795,81.13816128787978,26.607073858246423,83.13501936458925,82.2672056274509,28.485466079366294,85.47912539084751,95.42118246619115,17.591733704766256,4.132990363993905,54.08811126048856,96.84619712563607,16.13545671804637,85.4848112839552,28.338681967988975,44.96904408469611,22.646884879838304,64.87627883713316,23.713490280057915,73.40980489008243,3.6122595835643034,16.021509365081986,6.071322433107507,93.52115683206227,41.49134515465644,25.269252589852155,78.73219415169687,5.1620947115052935,43.53220428661238,23.529325451863137,18.20181358495814,84.32578435778389,29.45049979518497,63.95084646746035,15.376792676919615,37.58400337167652,45.070929704646844,49.2656701534126,91.3865351699292,4.420104310103923,13.229678067546836,37.12042758506877,47.28592957487844,89.3420466509055,85.54230214046046,68.8691489753779,80.64836029015768,11.658120558161588,1.999075250674065,28.14676881460706,79.5694325192213,41.63029251380886,41.666498404541755,7.194178778705417,37.553277465167035,96.90484355656162,44.75928040543569,94.13560332918969,40.239869700111285,9.812504609505224,78.25432870014963,13.67929909746769,56.4176304075756,11.763263663148148,83.55580664432122,3.128815575624533,97.55308905491852,74.67945463033648,91.04815966499238,53.726021817633686,81.3055449933113,14.100988990371999,76.5167786855937,97.17899082570412,47.195401847155715,38.63612700644013,49.84050080131477,91.47335923338713,5.438870659887507,36.084822714030466,27.637350862899712,61.316745192047186,24.4400712108081,44.00531745626294,91.66357372785825,84.19505820933779,39.172633165847,89.38310182981454,1.7086701849608588,58.73632235833038,49.76914116517993,51.11775437705401,51.06592031746236,55.089780515343335,88.74806404653175,98.78008207149757,64.06179718870129,33.71154527158564,99.65077874573836,57.29204587715283,42.422032606517824,0.2811367857267433,98.54605821569234,65.60626481355294,32.112777396229305,65.20737869720095,39.807007470311376,8.271134192579577,0.93254823418224,59.79160351991881,12.52378636061392,58.518042999732835,81.35137648926829,65.09659767331875,5.256175926556683,4.40819006799773,70.23811042178234,8.823002712453597,43.306238587368014,87.45116956663414,36.457386494610176,37.071452885626485,83.0802067422156,49.07085730444163,12.868474392539975,22.145199246515258,30.56931246553275,90.13418795392695,79.23191550018616,74.71741320151375,77.57093254432743,14.698272883851004,4.5871322855477015,13.092667378421552,84.57540610831565,20.473650892134277,79.46081655917297]} diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js index e73235d475d2..f4a6f3fd27f3 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.js @@ -65,7 +65,7 @@ tape( 'the function evaluates the modulus function (subnormal results)', functio v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -88,7 +88,7 @@ tape( 'the function evaluates the modulus function (small `x`, large `y`)', func v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -111,7 +111,7 @@ tape( 'the function evaluates the modulus function (large `x`, small `y`)', func v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -134,7 +134,7 @@ tape( 'the function evaluates the modulus function (small `x`, small `y`)', func v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -157,7 +157,7 @@ tape( 'the function evaluates the modulus function (positive `x`, negative `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -180,7 +180,7 @@ tape( 'the function evaluates the modulus function (negative `x`, positive `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -203,7 +203,7 @@ tape( 'the function evaluates the modulus function (negative `x`, negative `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js index c726c9ba7b93..4e352a6b1bbd 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/test/test.native.js @@ -74,7 +74,7 @@ tape( 'the function evaluates the modulus function (subnormal results)', opts, f v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -97,7 +97,7 @@ tape( 'the function evaluates the modulus function (small `x`, large `y`)', opts v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -120,7 +120,7 @@ tape( 'the function evaluates the modulus function (large `x`, small `y`)', opts v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -143,7 +143,7 @@ tape( 'the function evaluates the modulus function (small `x`, small `y`)', opts v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -166,7 +166,7 @@ tape( 'the function evaluates the modulus function (positive `x`, negative `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -189,7 +189,7 @@ tape( 'the function evaluates the modulus function (negative `x`, positive `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); @@ -212,7 +212,7 @@ tape( 'the function evaluates the modulus function (negative `x`, negative `y`)' v = fmodf( float64ToFloat32( x[ i ] ), float64ToFloat32( y[ i ] ) ); delta = absf( v - e ); tol = EPS * absf( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y[i]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y[ i ]+'. v: '+v+'. E: '+e+'. Δ: '+delta+'. tol: '+tol ); } t.end(); }); From aaa1f0c5cf266aeba160263f244d6583070e7fc2 Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:03:33 +0530 Subject: [PATCH 3/9] Update main.js Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js index 3a5c842d32cf..88da4ee86eef 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js @@ -57,7 +57,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); * // returns NaN */ function fmodf( x, y ) { - return float64ToFloat32( x ) % float64ToFloat32( y ); + return float64ToFloat32( float64ToFloat32( x ) % float64ToFloat32( y ) ); } From 4b60416f3f2810f197b701670572de97fa72b398 Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:09:38 +0530 Subject: [PATCH 4/9] Delete checkers_report.txt Signed-off-by: Gunj Joshi --- checkers_report.txt | 226 -------------------------------------------- 1 file changed, 226 deletions(-) delete mode 100644 checkers_report.txt diff --git a/checkers_report.txt b/checkers_report.txt deleted file mode 100644 index 770b427a3990..000000000000 --- a/checkers_report.txt +++ /dev/null @@ -1,226 +0,0 @@ -Critical errors ---------------- -No critical errors encountered. -Note: There might still have been non-critical bailouts which might lead to false negatives. - - -Open source checkers --------------------- -No Check64BitPortability::pointerassignment require:portability -No CheckAssert::assertWithSideEffects require:warning -No CheckAutoVariables::assignFunctionArg require:style,warning -Yes CheckAutoVariables::autoVariables -Yes CheckAutoVariables::checkVarLifetime -No CheckBool::checkAssignBoolToFloat require:style,c++ -Yes CheckBool::checkAssignBoolToPointer -No CheckBool::checkBitwiseOnBoolean require:style,inconclusive -No CheckBool::checkComparisonOfBoolExpressionWithInt require:warning -No CheckBool::checkComparisonOfBoolWithBool require:style,c++ -No CheckBool::checkComparisonOfBoolWithInt require:warning,c++ -No CheckBool::checkComparisonOfFuncReturningBool require:style,c++ -No CheckBool::checkIncrementBoolean require:style -Yes CheckBool::pointerArithBool -No CheckBool::returnValueOfFunctionReturningBool require:style -No CheckBoost::checkBoostForeachModification -Yes CheckBufferOverrun::analyseWholeProgram -No CheckBufferOverrun::argumentSize require:warning -Yes CheckBufferOverrun::arrayIndex -No CheckBufferOverrun::arrayIndexThenCheck -Yes CheckBufferOverrun::bufferOverflow -Yes CheckBufferOverrun::negativeArraySize -Yes CheckBufferOverrun::objectIndex -No CheckBufferOverrun::pointerArithmetic require:portability -No CheckBufferOverrun::stringNotZeroTerminated require:warning,inconclusive -Yes CheckClass::analyseWholeProgram -No CheckClass::checkConst require:style,inconclusive -No CheckClass::checkConstructors require:style,warning -No CheckClass::checkCopyConstructors require:warning -No CheckClass::checkDuplInheritedMembers require:warning -No CheckClass::checkExplicitConstructors require:style -No CheckClass::checkMemset -No CheckClass::checkMissingOverride require:style,c++03 -No CheckClass::checkReturnByReference require:performance -No CheckClass::checkSelfInitialization -No CheckClass::checkThisUseAfterFree require:warning -No CheckClass::checkUnsafeClassRefMember require:warning,safeChecks -No CheckClass::checkUselessOverride require:style -No CheckClass::checkVirtualFunctionCallInConstructor require:warning -No CheckClass::initializationListUsage require:performance -No CheckClass::initializerListOrder require:style,inconclusive -No CheckClass::operatorEqRetRefThis require:style -No CheckClass::operatorEqToSelf require:warning -No CheckClass::privateFunctions require:style -No CheckClass::thisSubtraction require:warning -No CheckClass::virtualDestructor -No CheckCondition::alwaysTrueFalse require:style -No CheckCondition::assignIf require:style -No CheckCondition::checkAssignmentInCondition require:style -No CheckCondition::checkBadBitmaskCheck require:style -No CheckCondition::checkCompareValueOutOfTypeRange require:style,platform -No CheckCondition::checkDuplicateConditionalAssign require:style -No CheckCondition::checkIncorrectLogicOperator require:style,warning -No CheckCondition::checkInvalidTestForOverflow require:warning -No CheckCondition::checkModuloAlwaysTrueFalse require:warning -No CheckCondition::checkPointerAdditionResultNotNull require:warning -No CheckCondition::clarifyCondition require:style -No CheckCondition::comparison require:style -No CheckCondition::duplicateCondition require:style -No CheckCondition::multiCondition require:style -No CheckCondition::multiCondition2 require:warning -No CheckExceptionSafety::checkCatchExceptionByValue require:style -No CheckExceptionSafety::checkRethrowCopy require:style -No CheckExceptionSafety::deallocThrow require:warning -No CheckExceptionSafety::destructors require:warning -No CheckExceptionSafety::nothrowThrows -No CheckExceptionSafety::rethrowNoCurrentException -No CheckExceptionSafety::unhandledExceptionSpecification require:style,inconclusive -No CheckFunctions::checkIgnoredReturnValue require:style,warning -No CheckFunctions::checkMathFunctions require:style,warning,c99,c++11 -Yes CheckFunctions::checkMissingReturn -Yes CheckFunctions::checkProhibitedFunctions -Yes CheckFunctions::invalidFunctionUsage -No CheckFunctions::memsetInvalid2ndParam require:warning,portability -No CheckFunctions::memsetZeroBytes require:warning -No CheckFunctions::returnLocalStdMove require:performance,c++11 -No CheckFunctions::useStandardLibrary require:style -No CheckIO::checkCoutCerrMisusage require:c -Yes CheckIO::checkFileUsage -Yes CheckIO::checkWrongPrintfScanfArguments -No CheckIO::invalidScanf -Yes CheckLeakAutoVar::check -No CheckMemoryLeakInClass::check -Yes CheckMemoryLeakInFunction::checkReallocUsage -Yes CheckMemoryLeakNoVar::check -No CheckMemoryLeakNoVar::checkForUnsafeArgAlloc -Yes CheckMemoryLeakStructMember::check -Yes CheckNullPointer::analyseWholeProgram -Yes CheckNullPointer::arithmetic -Yes CheckNullPointer::nullConstantDereference -Yes CheckNullPointer::nullPointer -No CheckOther::checkAccessOfMovedVariable require:c++11,warning -No CheckOther::checkCastIntToCharAndBack require:warning -No CheckOther::checkCharVariable require:warning,portability -Yes CheckOther::checkComparePointers -No CheckOther::checkComparisonFunctionIsAlwaysTrueOrFalse require:warning -No CheckOther::checkConstPointer require:style -No CheckOther::checkConstVariable require:style,c++ -No CheckOther::checkDuplicateBranch require:style,inconclusive -No CheckOther::checkDuplicateExpression require:style,warning -Yes CheckOther::checkEvaluationOrder -No CheckOther::checkFuncArgNamesDifferent require:style,warning,inconclusive -No CheckOther::checkIncompleteArrayFill require:warning,portability,inconclusive -No CheckOther::checkIncompleteStatement require:warning -No CheckOther::checkInterlockedDecrement require:windows-platform -Yes CheckOther::checkInvalidFree -No CheckOther::checkKnownArgument require:style -No CheckOther::checkKnownPointerToBool require:style -No CheckOther::checkMisusedScopedObject require:style,c++ -No CheckOther::checkModuloOfOne require:style -No CheckOther::checkNanInArithmeticExpression require:style -Yes CheckOther::checkNegativeBitwiseShift -Yes CheckOther::checkOverlappingWrite -No CheckOther::checkPassByReference require:performance,c++ -No CheckOther::checkRedundantAssignment require:style -No CheckOther::checkRedundantCopy require:c++,performance,inconclusive -No CheckOther::checkRedundantPointerOp require:style -No CheckOther::checkShadowVariables require:style -No CheckOther::checkSignOfUnsignedVariable require:style -No CheckOther::checkSuspiciousCaseInSwitch require:warning,inconclusive -No CheckOther::checkSuspiciousSemicolon require:warning,inconclusive -No CheckOther::checkUnreachableCode require:style -No CheckOther::checkUnusedLabel require:style,warning -No CheckOther::checkVarFuncNullUB require:portability -No CheckOther::checkVariableScope require:style,notclang -Yes CheckOther::checkZeroDivision -No CheckOther::clarifyCalculation require:style -No CheckOther::clarifyStatement require:warning -No CheckOther::invalidPointerCast require:portability -No CheckOther::redundantBitwiseOperationInSwitch require:warning -No CheckOther::suspiciousFloatingPointCast require:style -No CheckOther::warningOldStylePointerCast require:style,c++ -No CheckPostfixOperator::postfixOperator require:performance -No CheckSizeof::checkSizeofForArrayParameter require:warning -No CheckSizeof::checkSizeofForNumericParameter require:warning -No CheckSizeof::checkSizeofForPointerSize require:warning -No CheckSizeof::sizeofCalculation require:warning -No CheckSizeof::sizeofFunction require:warning -No CheckSizeof::sizeofVoid require:portability -No CheckSizeof::sizeofsizeof require:warning -No CheckSizeof::suspiciousSizeofCalculation require:warning,inconclusive -No CheckStl::checkDereferenceInvalidIterator require:warning -No CheckStl::checkDereferenceInvalidIterator2 -No CheckStl::checkFindInsert require:performance -No CheckStl::checkMutexes require:warning -No CheckStl::erase -No CheckStl::eraseIteratorOutOfBounds -No CheckStl::if_find require:warning,performance -No CheckStl::invalidContainer -No CheckStl::iterators -No CheckStl::knownEmptyContainer require:style -No CheckStl::misMatchingContainerIterator -No CheckStl::misMatchingContainers -No CheckStl::missingComparison require:warning -No CheckStl::negativeIndex -No CheckStl::outOfBounds -No CheckStl::outOfBoundsIndexExpression -No CheckStl::redundantCondition require:style -No CheckStl::size require:performance,c++03 -No CheckStl::stlBoundaries -No CheckStl::stlOutOfBounds -No CheckStl::string_c_str -No CheckStl::useStlAlgorithm require:style -No CheckStl::uselessCalls require:performance,warning -No CheckString::checkAlwaysTrueOrFalseStringCompare require:warning -No CheckString::checkIncorrectStringCompare require:warning -No CheckString::checkSuspiciousStringCompare require:warning -No CheckString::overlappingStrcmp require:warning -Yes CheckString::sprintfOverlappingData -Yes CheckString::strPlusChar -Yes CheckString::stringLiteralWrite -Yes CheckType::checkFloatToIntegerOverflow -Yes CheckType::checkIntegerOverflow -No CheckType::checkLongCast require:style -No CheckType::checkSignConversion require:warning -Yes CheckType::checkTooBigBitwiseShift -Yes CheckUninitVar::check -Yes CheckUninitVar::valueFlowUninit -No CheckUnusedFunctions::check require:unusedFunction -No CheckUnusedVar::checkFunctionVariableUsage require:style -No CheckUnusedVar::checkStructMemberUsage require:style -Yes CheckVaarg::va_list_usage -Yes CheckVaarg::va_start_argument - - -Premium checkers ----------------- -Not available, Cppcheck Premium is not used - - -Autosar -------- -Not available, Cppcheck Premium is not used - - -Cert C ------- -Not available, Cppcheck Premium is not used - - -Cert C++ --------- -Not available, Cppcheck Premium is not used - - -Misra C -------- -Misra is not enabled - - -Misra C++ 2008 --------------- -Not available, Cppcheck Premium is not used - - -Misra C++ 2023 --------------- -Not available, Cppcheck Premium is not used From ceca8744562afacfab55570fc87130b264c285fa Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:10:21 +0530 Subject: [PATCH 5/9] Update Makefile Signed-off-by: Gunj Joshi --- .../@stdlib/math/base/special/fmodf/src/Makefile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile index 6afff427d4aa..bcf18aa46655 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/Makefile @@ -48,17 +48,6 @@ endif # RULES # -#/ -# Lints the specified file with exhaustive branch analysis and generates a checkers report. -# -# @example -# make lint -#/ -lint: - $(QUIET) cppcheck --check-level=exhaustive --checkers-report=checkers_report.txt lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c - -.PHONY: lint - #/ # Removes generated files for building an add-on. # From d06c3e1b7350c9d568c9b0c28bf1bc0ddc0f0f9e Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:16:45 +0530 Subject: [PATCH 6/9] Update repl.txt Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt index acaf52903876..53a5f3b4b426 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/docs/repl.txt @@ -22,7 +22,7 @@ > y = {{alias}}( 9.0, 3.0 ) 0.0 > y = {{alias}}( 8.9, 3.0 ) - 2.9 + ~2.9 > y = {{alias}}( NaN, 3.0 ) NaN > y = {{alias}}( 5.0, NaN ) From 79a694c507450c92467357bc7257aef0aa33fe48 Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:17:04 +0530 Subject: [PATCH 7/9] Update main.js Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js index 88da4ee86eef..4c466fc5341f 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/main.js @@ -42,7 +42,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); * * @example * var v = fmodf( 8.9, 3.0 ); -* // returns 2.9 +* // returns ~2.9 * * @example * var v = fmodf( NaN, 3.0 ); From 8a843ad818a5bad5bfc209adfcc3736258578bdd Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 3 Nov 2024 23:36:03 +0530 Subject: [PATCH 8/9] Update native.js Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js index 7165ee9ccc90..2df280fe1d7b 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/lib/native.js @@ -43,7 +43,7 @@ var addon = require( './../src/addon.node' ); * * @example * var v = fmodf( 8.9, 3.0 ); -* // returns 2.9 +* // returns ~2.9 * * @example * var v = fmodf( NaN, 3.0 ); From 42d51ebd04fc5f618b9f18e04ca181afcd009436 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Sun, 10 Nov 2024 16:57:15 -0500 Subject: [PATCH 9/9] style: change spaces to tab Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c index b7947d52a5ef..7980cd99e599 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c @@ -108,7 +108,7 @@ float stdlib_base_fmodf( const float x, const float y ) { if ( hy < 0x00800000 ) { // subnormal y iy = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT; - for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) { + for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) { iy -= 1; } } else iy = ( hy >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS;