numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +353 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1515 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5758 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2001 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4705 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_common.pxd +107 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +804 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.0.dist-info/METADATA +139 -0
- numpy-2.4.0.dist-info/RECORD +915 -0
- numpy-2.4.0.dist-info/WHEEL +5 -0
- numpy-2.4.0.dist-info/entry_points.txt +13 -0
- numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
- numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
- numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
- numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
- numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0x3ee7054c,0x3f4459ea,2
|
|
3
|
+
np.float32,0x7d1e2489,0x54095925,2
|
|
4
|
+
np.float32,0x7ee5edf5,0x549b992b,2
|
|
5
|
+
np.float32,0x380607,0x2a425e72,2
|
|
6
|
+
np.float32,0x34a8f3,0x2a3e6603,2
|
|
7
|
+
np.float32,0x3eee2844,0x3f465a45,2
|
|
8
|
+
np.float32,0x59e49c,0x2a638d0a,2
|
|
9
|
+
np.float32,0xbf72c77a,0xbf7b83d4,2
|
|
10
|
+
np.float32,0x7f2517b4,0x54af8bf0,2
|
|
11
|
+
np.float32,0x80068a69,0xa9bdfe8b,2
|
|
12
|
+
np.float32,0xbe8e3578,0xbf270775,2
|
|
13
|
+
np.float32,0xbe4224dc,0xbf131119,2
|
|
14
|
+
np.float32,0xbe0053b8,0xbf001be2,2
|
|
15
|
+
np.float32,0x70e8d,0x29c2ddc5,2
|
|
16
|
+
np.float32,0xff63f7b5,0xd4c37b7f,2
|
|
17
|
+
np.float32,0x3f00bbed,0x3f4b9335,2
|
|
18
|
+
np.float32,0x3f135f4e,0x3f54f5d4,2
|
|
19
|
+
np.float32,0xbe13a488,0xbf063d13,2
|
|
20
|
+
np.float32,0x3f14ec78,0x3f55b478,2
|
|
21
|
+
np.float32,0x7ec35cfb,0x54935fbf,2
|
|
22
|
+
np.float32,0x7d41c589,0x5412f904,2
|
|
23
|
+
np.float32,0x3ef8a16e,0x3f4937f7,2
|
|
24
|
+
np.float32,0x3f5d8464,0x3f73f279,2
|
|
25
|
+
np.float32,0xbeec85ac,0xbf45e5cb,2
|
|
26
|
+
np.float32,0x7f11f722,0x54a87cb1,2
|
|
27
|
+
np.float32,0x8032c085,0xaa3c1219,2
|
|
28
|
+
np.float32,0x80544bac,0xaa5eb9f2,2
|
|
29
|
+
np.float32,0x3e944a10,0x3f296065,2
|
|
30
|
+
np.float32,0xbf29fe50,0xbf5f5796,2
|
|
31
|
+
np.float32,0x7e204d8d,0x545b03d5,2
|
|
32
|
+
np.float32,0xfe1d0254,0xd4598127,2
|
|
33
|
+
np.float32,0x80523129,0xaa5cdba9,2
|
|
34
|
+
np.float32,0x806315fa,0xaa6b0eaf,2
|
|
35
|
+
np.float32,0x3ed3d2a4,0x3f3ec117,2
|
|
36
|
+
np.float32,0x7ee15007,0x549a8cc0,2
|
|
37
|
+
np.float32,0x801ffb5e,0xaa213d4f,2
|
|
38
|
+
np.float32,0x807f9f4a,0xaa7fbf76,2
|
|
39
|
+
np.float32,0xbe45e854,0xbf1402d3,2
|
|
40
|
+
np.float32,0x3d9e2e70,0x3eda0b64,2
|
|
41
|
+
np.float32,0x51f404,0x2a5ca4d7,2
|
|
42
|
+
np.float32,0xbe26a8b0,0xbf0bc54d,2
|
|
43
|
+
np.float32,0x22c99a,0x2a25d2a7,2
|
|
44
|
+
np.float32,0xbf71248b,0xbf7af2d5,2
|
|
45
|
+
np.float32,0x7219fe,0x2a76608e,2
|
|
46
|
+
np.float32,0x7f16fd7d,0x54aa6610,2
|
|
47
|
+
np.float32,0x80716faa,0xaa75e5b9,2
|
|
48
|
+
np.float32,0xbe24f9a4,0xbf0b4c65,2
|
|
49
|
+
np.float32,0x800000,0x2a800000,2
|
|
50
|
+
np.float32,0x80747456,0xaa780f27,2
|
|
51
|
+
np.float32,0x68f9e8,0x2a6fa035,2
|
|
52
|
+
np.float32,0x3f6a297e,0x3f7880d8,2
|
|
53
|
+
np.float32,0x3f28b973,0x3f5ec8f6,2
|
|
54
|
+
np.float32,0x7f58c577,0x54c03a70,2
|
|
55
|
+
np.float32,0x804befcc,0xaa571b4f,2
|
|
56
|
+
np.float32,0x3e2be027,0x3f0d36cf,2
|
|
57
|
+
np.float32,0xfe7e80a4,0xd47f7ff7,2
|
|
58
|
+
np.float32,0xfe9d444a,0xd489181b,2
|
|
59
|
+
np.float32,0x3db3e790,0x3ee399d6,2
|
|
60
|
+
np.float32,0xbf154c3e,0xbf55e23e,2
|
|
61
|
+
np.float32,0x3d1096b7,0x3ea7f4aa,2
|
|
62
|
+
np.float32,0x7fc00000,0x7fc00000,2
|
|
63
|
+
np.float32,0x804e2521,0xaa592c06,2
|
|
64
|
+
np.float32,0xbeda2f00,0xbf40a513,2
|
|
65
|
+
np.float32,0x3f191788,0x3f57ae30,2
|
|
66
|
+
np.float32,0x3ed24ade,0x3f3e4b34,2
|
|
67
|
+
np.float32,0x807fadb4,0xaa7fc917,2
|
|
68
|
+
np.float32,0xbe0a06dc,0xbf034234,2
|
|
69
|
+
np.float32,0x3f250bba,0x3f5d276d,2
|
|
70
|
+
np.float32,0x7e948b00,0x548682c8,2
|
|
71
|
+
np.float32,0xfe65ecdc,0xd476fed2,2
|
|
72
|
+
np.float32,0x6fdbdd,0x2a74c095,2
|
|
73
|
+
np.float32,0x800112de,0xa9500fa6,2
|
|
74
|
+
np.float32,0xfe63225c,0xd475fdee,2
|
|
75
|
+
np.float32,0x7f3d9acd,0x54b7d648,2
|
|
76
|
+
np.float32,0xfc46f480,0xd3bacf87,2
|
|
77
|
+
np.float32,0xfe5deaac,0xd47417ff,2
|
|
78
|
+
np.float32,0x60ce53,0x2a693d93,2
|
|
79
|
+
np.float32,0x6a6e2f,0x2a70ba2c,2
|
|
80
|
+
np.float32,0x7f43f0f1,0x54b9dcd0,2
|
|
81
|
+
np.float32,0xbf6170c9,0xbf756104,2
|
|
82
|
+
np.float32,0xbe5c9f74,0xbf197852,2
|
|
83
|
+
np.float32,0xff1502b0,0xd4a9a693,2
|
|
84
|
+
np.float32,0x8064f6af,0xaa6c886e,2
|
|
85
|
+
np.float32,0xbf380564,0xbf6552e5,2
|
|
86
|
+
np.float32,0xfeb9b7dc,0xd490e85f,2
|
|
87
|
+
np.float32,0x7f34f941,0x54b5010d,2
|
|
88
|
+
np.float32,0xbe9d4ca0,0xbf2cbd5f,2
|
|
89
|
+
np.float32,0x3f6e43d2,0x3f79f240,2
|
|
90
|
+
np.float32,0xbdad0530,0xbee0a8f2,2
|
|
91
|
+
np.float32,0x3da18459,0x3edb9105,2
|
|
92
|
+
np.float32,0xfd968340,0xd42a3808,2
|
|
93
|
+
np.float32,0x3ea03e64,0x3f2dcf96,2
|
|
94
|
+
np.float32,0x801d2f5b,0xaa1c6525,2
|
|
95
|
+
np.float32,0xbf47d92d,0xbf6bb7e9,2
|
|
96
|
+
np.float32,0x55a6b9,0x2a5fe9fb,2
|
|
97
|
+
np.float32,0x77a7c2,0x2a7a4fb8,2
|
|
98
|
+
np.float32,0xfebbc16e,0xd4916f88,2
|
|
99
|
+
np.float32,0x3f5d3d6e,0x3f73d86a,2
|
|
100
|
+
np.float32,0xfccd2b60,0xd3edcacb,2
|
|
101
|
+
np.float32,0xbd026460,0xbea244b0,2
|
|
102
|
+
np.float32,0x3e55bd,0x2a4968e4,2
|
|
103
|
+
np.float32,0xbe7b5708,0xbf20490d,2
|
|
104
|
+
np.float32,0xfe413cf4,0xd469171f,2
|
|
105
|
+
np.float32,0x7710e3,0x2a79e657,2
|
|
106
|
+
np.float32,0xfc932520,0xd3d4d9ca,2
|
|
107
|
+
np.float32,0xbf764a1b,0xbf7cb8aa,2
|
|
108
|
+
np.float32,0x6b1923,0x2a713aca,2
|
|
109
|
+
np.float32,0xfe4dcd04,0xd46e092d,2
|
|
110
|
+
np.float32,0xff3085ac,0xd4b381f8,2
|
|
111
|
+
np.float32,0x3f72c438,0x3f7b82b4,2
|
|
112
|
+
np.float32,0xbf6f0c6e,0xbf7a3852,2
|
|
113
|
+
np.float32,0x801d2b1b,0xaa1c5d8d,2
|
|
114
|
+
np.float32,0x3e9db91e,0x3f2ce50d,2
|
|
115
|
+
np.float32,0x3f684f9d,0x3f77d8c5,2
|
|
116
|
+
np.float32,0x7dc784,0x2a7e82cc,2
|
|
117
|
+
np.float32,0x7d2c88e9,0x540d64f8,2
|
|
118
|
+
np.float32,0x807fb708,0xaa7fcf51,2
|
|
119
|
+
np.float32,0x8003c49a,0xa99e16e0,2
|
|
120
|
+
np.float32,0x3ee4f5b8,0x3f43c3ff,2
|
|
121
|
+
np.float32,0xfe992c5e,0xd487e4ec,2
|
|
122
|
+
np.float32,0x4b4dfa,0x2a568216,2
|
|
123
|
+
np.float32,0x3d374c80,0x3eb5c6a8,2
|
|
124
|
+
np.float32,0xbd3a4700,0xbeb6c15c,2
|
|
125
|
+
np.float32,0xbf13cb80,0xbf5529e5,2
|
|
126
|
+
np.float32,0xbe7306d4,0xbf1e7f91,2
|
|
127
|
+
np.float32,0xbf800000,0xbf800000,2
|
|
128
|
+
np.float32,0xbea42efe,0xbf2f394e,2
|
|
129
|
+
np.float32,0x3e1981d0,0x3f07fe2c,2
|
|
130
|
+
np.float32,0x3f17ea1d,0x3f572047,2
|
|
131
|
+
np.float32,0x7dc1e0,0x2a7e7efe,2
|
|
132
|
+
np.float32,0x80169c08,0xaa0fa320,2
|
|
133
|
+
np.float32,0x3f3e1972,0x3f67d248,2
|
|
134
|
+
np.float32,0xfe5d3c88,0xd473d815,2
|
|
135
|
+
np.float32,0xbf677448,0xbf778aac,2
|
|
136
|
+
np.float32,0x7e799b7d,0x547dd9e4,2
|
|
137
|
+
np.float32,0x3f00bb2c,0x3f4b92cf,2
|
|
138
|
+
np.float32,0xbeb29f9c,0xbf343798,2
|
|
139
|
+
np.float32,0xbd6b7830,0xbec59a86,2
|
|
140
|
+
np.float32,0x807a524a,0xaa7c282a,2
|
|
141
|
+
np.float32,0xbe0a7a04,0xbf0366ab,2
|
|
142
|
+
np.float32,0x80237470,0xaa26e061,2
|
|
143
|
+
np.float32,0x3ccbc0f6,0x3e95744f,2
|
|
144
|
+
np.float32,0x3edec6bc,0x3f41fcb6,2
|
|
145
|
+
np.float32,0x3f635198,0x3f760efa,2
|
|
146
|
+
np.float32,0x800eca4f,0xa9f960d8,2
|
|
147
|
+
np.float32,0x3f800000,0x3f800000,2
|
|
148
|
+
np.float32,0xff4eeb9e,0xd4bd456a,2
|
|
149
|
+
np.float32,0x56f4e,0x29b29e70,2
|
|
150
|
+
np.float32,0xff5383a0,0xd4bea95c,2
|
|
151
|
+
np.float32,0x3f4c3a77,0x3f6d6d94,2
|
|
152
|
+
np.float32,0x3f6c324a,0x3f79388c,2
|
|
153
|
+
np.float32,0xbebdc092,0xbf37e27c,2
|
|
154
|
+
np.float32,0xff258956,0xd4afb42e,2
|
|
155
|
+
np.float32,0xdc78c,0x29f39012,2
|
|
156
|
+
np.float32,0xbf2db06a,0xbf60f2f5,2
|
|
157
|
+
np.float32,0xbe3c5808,0xbf119660,2
|
|
158
|
+
np.float32,0xbf1ba866,0xbf58e0f4,2
|
|
159
|
+
np.float32,0x80377640,0xaa41b79d,2
|
|
160
|
+
np.float32,0x4fdc4d,0x2a5abfea,2
|
|
161
|
+
np.float32,0x7f5e7560,0x54c1e516,2
|
|
162
|
+
np.float32,0xfeb4d3f2,0xd48f9fde,2
|
|
163
|
+
np.float32,0x3f12a622,0x3f549c7d,2
|
|
164
|
+
np.float32,0x7f737ed7,0x54c7d2dc,2
|
|
165
|
+
np.float32,0xa0ddc,0x29db456d,2
|
|
166
|
+
np.float32,0xfe006740,0xd44b6689,2
|
|
167
|
+
np.float32,0x3f17dfd4,0x3f571b6c,2
|
|
168
|
+
np.float32,0x67546e,0x2a6e5dd1,2
|
|
169
|
+
np.float32,0xff0d0f11,0xd4a693e2,2
|
|
170
|
+
np.float32,0xbd170090,0xbeaa6738,2
|
|
171
|
+
np.float32,0x5274a0,0x2a5d1806,2
|
|
172
|
+
np.float32,0x3e154fe0,0x3f06be1a,2
|
|
173
|
+
np.float32,0x7ddb302e,0x5440f0a7,2
|
|
174
|
+
np.float32,0x3f579d10,0x3f71c2af,2
|
|
175
|
+
np.float32,0xff2bc5bb,0xd4b1e20c,2
|
|
176
|
+
np.float32,0xfee8fa6a,0xd49c4872,2
|
|
177
|
+
np.float32,0xbea551b0,0xbf2fa07b,2
|
|
178
|
+
np.float32,0xfeabc75c,0xd48d3004,2
|
|
179
|
+
np.float32,0x7f50a5a8,0x54bdcbd1,2
|
|
180
|
+
np.float32,0x50354b,0x2a5b110d,2
|
|
181
|
+
np.float32,0x7d139f13,0x54063b6b,2
|
|
182
|
+
np.float32,0xbeee1b08,0xbf465699,2
|
|
183
|
+
np.float32,0xfe5e1650,0xd47427fe,2
|
|
184
|
+
np.float32,0x7f7fffff,0x54cb2ff5,2
|
|
185
|
+
np.float32,0xbf52ede8,0xbf6fff35,2
|
|
186
|
+
np.float32,0x804bba81,0xaa56e8f1,2
|
|
187
|
+
np.float32,0x6609e2,0x2a6d5e94,2
|
|
188
|
+
np.float32,0x692621,0x2a6fc1d6,2
|
|
189
|
+
np.float32,0xbf288bb6,0xbf5eb4d3,2
|
|
190
|
+
np.float32,0x804f28c4,0xaa5a1b82,2
|
|
191
|
+
np.float32,0xbdaad2a8,0xbedfb46e,2
|
|
192
|
+
np.float32,0x5e04f8,0x2a66fb13,2
|
|
193
|
+
np.float32,0x804c10da,0xaa573a81,2
|
|
194
|
+
np.float32,0xbe412764,0xbf12d0fd,2
|
|
195
|
+
np.float32,0x801c35cc,0xaa1aa250,2
|
|
196
|
+
np.float32,0x6364d4,0x2a6b4cf9,2
|
|
197
|
+
np.float32,0xbf6d3cea,0xbf79962f,2
|
|
198
|
+
np.float32,0x7e5a9935,0x5472defb,2
|
|
199
|
+
np.float32,0xbe73a38c,0xbf1ea19c,2
|
|
200
|
+
np.float32,0xbd35e950,0xbeb550f2,2
|
|
201
|
+
np.float32,0x46cc16,0x2a5223d6,2
|
|
202
|
+
np.float32,0x3f005288,0x3f4b5b97,2
|
|
203
|
+
np.float32,0x8034e8b7,0xaa3eb2be,2
|
|
204
|
+
np.float32,0xbea775fc,0xbf3061cf,2
|
|
205
|
+
np.float32,0xea0e9,0x29f87751,2
|
|
206
|
+
np.float32,0xbf38faaf,0xbf65b89d,2
|
|
207
|
+
np.float32,0xbedf3184,0xbf421bb0,2
|
|
208
|
+
np.float32,0xbe04250c,0xbf015def,2
|
|
209
|
+
np.float32,0x7f56dae8,0x54bfa901,2
|
|
210
|
+
np.float32,0xfebe3e04,0xd492132e,2
|
|
211
|
+
np.float32,0x3e4dc326,0x3f15f19e,2
|
|
212
|
+
np.float32,0x803da197,0xaa48a621,2
|
|
213
|
+
np.float32,0x7eeb35aa,0x549cc7c6,2
|
|
214
|
+
np.float32,0xfebb3eb6,0xd4914dc0,2
|
|
215
|
+
np.float32,0xfed17478,0xd496d5e2,2
|
|
216
|
+
np.float32,0x80243694,0xaa280ed2,2
|
|
217
|
+
np.float32,0x8017e666,0xaa1251d3,2
|
|
218
|
+
np.float32,0xbf07e942,0xbf4f4a3e,2
|
|
219
|
+
np.float32,0xbf578fa6,0xbf71bdab,2
|
|
220
|
+
np.float32,0x7ed8d80f,0x549896b6,2
|
|
221
|
+
np.float32,0x3f2277ae,0x3f5bff11,2
|
|
222
|
+
np.float32,0x7e6f195b,0x547a3cd4,2
|
|
223
|
+
np.float32,0xbf441559,0xbf6a3a91,2
|
|
224
|
+
np.float32,0x7f1fb427,0x54ad9d8d,2
|
|
225
|
+
np.float32,0x71695f,0x2a75e12d,2
|
|
226
|
+
np.float32,0xbd859588,0xbece19a1,2
|
|
227
|
+
np.float32,0x7f5702fc,0x54bfb4eb,2
|
|
228
|
+
np.float32,0x3f040008,0x3f4d4842,2
|
|
229
|
+
np.float32,0x3de00ca5,0x3ef4df89,2
|
|
230
|
+
np.float32,0x3eeabb03,0x3f45658c,2
|
|
231
|
+
np.float32,0x3dfe5e65,0x3eff7480,2
|
|
232
|
+
np.float32,0x1,0x26a14518,2
|
|
233
|
+
np.float32,0x8065e400,0xaa6d4130,2
|
|
234
|
+
np.float32,0xff50e1bb,0xd4bdde07,2
|
|
235
|
+
np.float32,0xbe88635a,0xbf24b7e9,2
|
|
236
|
+
np.float32,0x3f46bfab,0x3f6b4908,2
|
|
237
|
+
np.float32,0xbd85c3c8,0xbece3168,2
|
|
238
|
+
np.float32,0xbe633f64,0xbf1afdb1,2
|
|
239
|
+
np.float32,0xff2c7706,0xd4b21f2a,2
|
|
240
|
+
np.float32,0xbf02816c,0xbf4c812a,2
|
|
241
|
+
np.float32,0x80653aeb,0xaa6cbdab,2
|
|
242
|
+
np.float32,0x3eef1d10,0x3f469e24,2
|
|
243
|
+
np.float32,0x3d9944bf,0x3ed7c36a,2
|
|
244
|
+
np.float32,0x1b03d4,0x2a186b2b,2
|
|
245
|
+
np.float32,0x3f251b7c,0x3f5d2e76,2
|
|
246
|
+
np.float32,0x3edebab0,0x3f41f937,2
|
|
247
|
+
np.float32,0xfefc2148,0xd4a073ff,2
|
|
248
|
+
np.float32,0x7448ee,0x2a77f051,2
|
|
249
|
+
np.float32,0x3bb8a400,0x3e3637ee,2
|
|
250
|
+
np.float32,0x57df36,0x2a61d527,2
|
|
251
|
+
np.float32,0xfd8b9098,0xd425fccb,2
|
|
252
|
+
np.float32,0x7f67627e,0x54c4744d,2
|
|
253
|
+
np.float32,0x801165d7,0xaa039fba,2
|
|
254
|
+
np.float32,0x53aae5,0x2a5e2bfd,2
|
|
255
|
+
np.float32,0x8014012b,0xaa09e4f1,2
|
|
256
|
+
np.float32,0x3f7a2d53,0x3f7e0b4b,2
|
|
257
|
+
np.float32,0x3f5fb700,0x3f74c052,2
|
|
258
|
+
np.float32,0x7f192a06,0x54ab366c,2
|
|
259
|
+
np.float32,0x3f569611,0x3f71603b,2
|
|
260
|
+
np.float32,0x25e2dc,0x2a2a9b65,2
|
|
261
|
+
np.float32,0x8036465e,0xaa405342,2
|
|
262
|
+
np.float32,0x804118e1,0xaa4c5785,2
|
|
263
|
+
np.float32,0xbef08d3e,0xbf4703e1,2
|
|
264
|
+
np.float32,0x3447e2,0x2a3df0be,2
|
|
265
|
+
np.float32,0xbf2a350b,0xbf5f6f8c,2
|
|
266
|
+
np.float32,0xbec87e3e,0xbf3b4a73,2
|
|
267
|
+
np.float32,0xbe99a4a8,0xbf2b6412,2
|
|
268
|
+
np.float32,0x2ea2ae,0x2a36d77e,2
|
|
269
|
+
np.float32,0xfcb69600,0xd3e4b9e3,2
|
|
270
|
+
np.float32,0x717700,0x2a75eb06,2
|
|
271
|
+
np.float32,0xbf4e81ce,0xbf6e4ecc,2
|
|
272
|
+
np.float32,0xbe2021ac,0xbf09ebee,2
|
|
273
|
+
np.float32,0xfef94eee,0xd49fda31,2
|
|
274
|
+
np.float32,0x8563e,0x29ce0015,2
|
|
275
|
+
np.float32,0x7f5d0ca5,0x54c17c0f,2
|
|
276
|
+
np.float32,0x3f16459a,0x3f56590f,2
|
|
277
|
+
np.float32,0xbe12f7bc,0xbf0608a0,2
|
|
278
|
+
np.float32,0x3f10fd3d,0x3f53ce5f,2
|
|
279
|
+
np.float32,0x3ca5e1b0,0x3e8b8d96,2
|
|
280
|
+
np.float32,0xbe5288e0,0xbf17181f,2
|
|
281
|
+
np.float32,0xbf7360f6,0xbf7bb8c9,2
|
|
282
|
+
np.float32,0x7e989d33,0x5487ba88,2
|
|
283
|
+
np.float32,0x3ea7b5dc,0x3f307839,2
|
|
284
|
+
np.float32,0x7e8da0c9,0x548463f0,2
|
|
285
|
+
np.float32,0xfeaf7888,0xd48e3122,2
|
|
286
|
+
np.float32,0x7d90402d,0x5427d321,2
|
|
287
|
+
np.float32,0x72e309,0x2a76f0ee,2
|
|
288
|
+
np.float32,0xbe1faa34,0xbf09c998,2
|
|
289
|
+
np.float32,0xbf2b1652,0xbf5fd1f4,2
|
|
290
|
+
np.float32,0x8051eb0c,0xaa5c9cca,2
|
|
291
|
+
np.float32,0x7edf02bf,0x549a058e,2
|
|
292
|
+
np.float32,0x7fa00000,0x7fe00000,2
|
|
293
|
+
np.float32,0x3f67f873,0x3f77b9c1,2
|
|
294
|
+
np.float32,0x3f276b63,0x3f5e358c,2
|
|
295
|
+
np.float32,0x7eeb4bf2,0x549cccb9,2
|
|
296
|
+
np.float32,0x3bfa2c,0x2a46d675,2
|
|
297
|
+
np.float32,0x3e133c50,0x3f061d75,2
|
|
298
|
+
np.float32,0x3ca302c0,0x3e8abe4a,2
|
|
299
|
+
np.float32,0x802e152e,0xaa361dd5,2
|
|
300
|
+
np.float32,0x3f504810,0x3f6efd0a,2
|
|
301
|
+
np.float32,0xbf43e0b5,0xbf6a2599,2
|
|
302
|
+
np.float32,0x80800000,0xaa800000,2
|
|
303
|
+
np.float32,0x3f1c0980,0x3f590e03,2
|
|
304
|
+
np.float32,0xbf0084f6,0xbf4b7638,2
|
|
305
|
+
np.float32,0xfee72d32,0xd49be10d,2
|
|
306
|
+
np.float32,0x3f3c00ed,0x3f66f763,2
|
|
307
|
+
np.float32,0x80511e81,0xaa5be492,2
|
|
308
|
+
np.float32,0xfdd1b8a0,0xd43e1f0d,2
|
|
309
|
+
np.float32,0x7d877474,0x54245785,2
|
|
310
|
+
np.float32,0x7f110bfe,0x54a82207,2
|
|
311
|
+
np.float32,0xff800000,0xff800000,2
|
|
312
|
+
np.float32,0x6b6a2,0x29bfa706,2
|
|
313
|
+
np.float32,0xbf5bdfd9,0xbf7357b7,2
|
|
314
|
+
np.float32,0x8025bfa3,0xaa2a6676,2
|
|
315
|
+
np.float32,0x3a3581,0x2a44dd3a,2
|
|
316
|
+
np.float32,0x542c2a,0x2a5e9e2f,2
|
|
317
|
+
np.float32,0xbe1d5650,0xbf091d57,2
|
|
318
|
+
np.float32,0x3e97760d,0x3f2a935e,2
|
|
319
|
+
np.float32,0x7f5dcde2,0x54c1b460,2
|
|
320
|
+
np.float32,0x800bde1e,0xa9e7bbaf,2
|
|
321
|
+
np.float32,0x3e6b9e61,0x3f1cdf07,2
|
|
322
|
+
np.float32,0x7d46c003,0x54143884,2
|
|
323
|
+
np.float32,0x80073fbb,0xa9c49e67,2
|
|
324
|
+
np.float32,0x503c23,0x2a5b1748,2
|
|
325
|
+
np.float32,0x7eb7b070,0x549060c8,2
|
|
326
|
+
np.float32,0xe9d8f,0x29f86456,2
|
|
327
|
+
np.float32,0xbeedd4f0,0xbf464320,2
|
|
328
|
+
np.float32,0x3f40d5d6,0x3f68eda1,2
|
|
329
|
+
np.float32,0xff201f28,0xd4adc44b,2
|
|
330
|
+
np.float32,0xbdf61e98,0xbefca9c7,2
|
|
331
|
+
np.float32,0x3e8a0dc9,0x3f2562e3,2
|
|
332
|
+
np.float32,0xbc0c0c80,0xbe515f61,2
|
|
333
|
+
np.float32,0x2b3c15,0x2a3248e3,2
|
|
334
|
+
np.float32,0x42a7bb,0x2a4df592,2
|
|
335
|
+
np.float32,0x7f337947,0x54b480af,2
|
|
336
|
+
np.float32,0xfec21db4,0xd4930f4b,2
|
|
337
|
+
np.float32,0x7f4fdbf3,0x54bd8e94,2
|
|
338
|
+
np.float32,0x1e2253,0x2a1e1286,2
|
|
339
|
+
np.float32,0x800c4c80,0xa9ea819e,2
|
|
340
|
+
np.float32,0x7e96f5b7,0x54873c88,2
|
|
341
|
+
np.float32,0x7ce4e131,0x53f69ed4,2
|
|
342
|
+
np.float32,0xbead8372,0xbf327b63,2
|
|
343
|
+
np.float32,0x3e15ca7e,0x3f06e2f3,2
|
|
344
|
+
np.float32,0xbf63e17b,0xbf7642da,2
|
|
345
|
+
np.float32,0xff5bdbdb,0xd4c122f9,2
|
|
346
|
+
np.float32,0x3f44411e,0x3f6a4bfd,2
|
|
347
|
+
np.float32,0xfd007da0,0xd40029d2,2
|
|
348
|
+
np.float32,0xbe940168,0xbf2944b7,2
|
|
349
|
+
np.float32,0x80000000,0x80000000,2
|
|
350
|
+
np.float32,0x3d28e356,0x3eb0e1b8,2
|
|
351
|
+
np.float32,0x3eb9fcd8,0x3f36a918,2
|
|
352
|
+
np.float32,0x4f6410,0x2a5a51eb,2
|
|
353
|
+
np.float32,0xbdf18e30,0xbefb1775,2
|
|
354
|
+
np.float32,0x32edbd,0x2a3c49e3,2
|
|
355
|
+
np.float32,0x801f70a5,0xaa2052da,2
|
|
356
|
+
np.float32,0x8045a045,0xaa50f98c,2
|
|
357
|
+
np.float32,0xbdd6cb00,0xbef17412,2
|
|
358
|
+
np.float32,0x3f118f2c,0x3f541557,2
|
|
359
|
+
np.float32,0xbe65c378,0xbf1b8f95,2
|
|
360
|
+
np.float32,0xfd9a9060,0xd42bbb8b,2
|
|
361
|
+
np.float32,0x3f04244f,0x3f4d5b0f,2
|
|
362
|
+
np.float32,0xff05214b,0xd4a3656f,2
|
|
363
|
+
np.float32,0xfe342cd0,0xd463b706,2
|
|
364
|
+
np.float32,0x3f3409a8,0x3f63a836,2
|
|
365
|
+
np.float32,0x80205db2,0xaa21e1e5,2
|
|
366
|
+
np.float32,0xbf37c982,0xbf653a03,2
|
|
367
|
+
np.float32,0x3f36ce8f,0x3f64d17e,2
|
|
368
|
+
np.float32,0x36ffda,0x2a412d61,2
|
|
369
|
+
np.float32,0xff569752,0xd4bf94e6,2
|
|
370
|
+
np.float32,0x802fdb0f,0xaa386c3a,2
|
|
371
|
+
np.float32,0x7ec55a87,0x5493df71,2
|
|
372
|
+
np.float32,0x7f2234c7,0x54ae847e,2
|
|
373
|
+
np.float32,0xbf02df76,0xbf4cb23d,2
|
|
374
|
+
np.float32,0x3d68731a,0x3ec4c156,2
|
|
375
|
+
np.float32,0x8146,0x2921cd8e,2
|
|
376
|
+
np.float32,0x80119364,0xaa041235,2
|
|
377
|
+
np.float32,0xfe6c1c00,0xd47930b5,2
|
|
378
|
+
np.float32,0x8070da44,0xaa757996,2
|
|
379
|
+
np.float32,0xfefbf50c,0xd4a06a9d,2
|
|
380
|
+
np.float32,0xbf01b6a8,0xbf4c170a,2
|
|
381
|
+
np.float32,0x110702,0x2a02aedb,2
|
|
382
|
+
np.float32,0xbf063cd4,0xbf4e6f87,2
|
|
383
|
+
np.float32,0x3f1ff178,0x3f5ad9dd,2
|
|
384
|
+
np.float32,0xbf76dcd4,0xbf7cead0,2
|
|
385
|
+
np.float32,0x80527281,0xaa5d1620,2
|
|
386
|
+
np.float32,0xfea96df8,0xd48c8a7f,2
|
|
387
|
+
np.float32,0x68db02,0x2a6f88b0,2
|
|
388
|
+
np.float32,0x62d971,0x2a6adec7,2
|
|
389
|
+
np.float32,0x3e816fe0,0x3f21df04,2
|
|
390
|
+
np.float32,0x3f586379,0x3f720cc0,2
|
|
391
|
+
np.float32,0x804a3718,0xaa5577ff,2
|
|
392
|
+
np.float32,0x2e2506,0x2a3632b2,2
|
|
393
|
+
np.float32,0x3f297d,0x2a4a4bf3,2
|
|
394
|
+
np.float32,0xbe37aba8,0xbf105f88,2
|
|
395
|
+
np.float32,0xbf18b264,0xbf577ea7,2
|
|
396
|
+
np.float32,0x7f50d02d,0x54bdd8b5,2
|
|
397
|
+
np.float32,0xfee296dc,0xd49ad757,2
|
|
398
|
+
np.float32,0x7ec5137e,0x5493cdb1,2
|
|
399
|
+
np.float32,0x3f4811f4,0x3f6bce3a,2
|
|
400
|
+
np.float32,0xfdff32a0,0xd44af991,2
|
|
401
|
+
np.float32,0x3f6ef140,0x3f7a2ed6,2
|
|
402
|
+
np.float32,0x250838,0x2a2950b5,2
|
|
403
|
+
np.float32,0x25c28e,0x2a2a6ada,2
|
|
404
|
+
np.float32,0xbe875e50,0xbf244e90,2
|
|
405
|
+
np.float32,0x3e3bdff8,0x3f11776a,2
|
|
406
|
+
np.float32,0x3e9fe493,0x3f2daf17,2
|
|
407
|
+
np.float32,0x804d8599,0xaa5897d9,2
|
|
408
|
+
np.float32,0x3f0533da,0x3f4de759,2
|
|
409
|
+
np.float32,0xbe63023c,0xbf1aefc8,2
|
|
410
|
+
np.float32,0x80636e5e,0xaa6b547f,2
|
|
411
|
+
np.float32,0xff112958,0xd4a82d5d,2
|
|
412
|
+
np.float32,0x3e924112,0x3f28991f,2
|
|
413
|
+
np.float32,0xbe996ffc,0xbf2b507a,2
|
|
414
|
+
np.float32,0x802a7cda,0xaa314081,2
|
|
415
|
+
np.float32,0x8022b524,0xaa25b21e,2
|
|
416
|
+
np.float32,0x3f0808c8,0x3f4f5a43,2
|
|
417
|
+
np.float32,0xbef0ec2a,0xbf471e0b,2
|
|
418
|
+
np.float32,0xff4c2345,0xd4bc6b3c,2
|
|
419
|
+
np.float32,0x25ccc8,0x2a2a7a3b,2
|
|
420
|
+
np.float32,0x7f4467d6,0x54ba0260,2
|
|
421
|
+
np.float32,0x7f506539,0x54bdb846,2
|
|
422
|
+
np.float32,0x412ab4,0x2a4c6a2a,2
|
|
423
|
+
np.float32,0x80672c4a,0xaa6e3ef0,2
|
|
424
|
+
np.float32,0xbddfb7f8,0xbef4c0ac,2
|
|
425
|
+
np.float32,0xbf250bb9,0xbf5d276c,2
|
|
426
|
+
np.float32,0x807dca65,0xaa7e84bd,2
|
|
427
|
+
np.float32,0xbf63b8e0,0xbf763438,2
|
|
428
|
+
np.float32,0xbeed1b0c,0xbf460f6b,2
|
|
429
|
+
np.float32,0x8021594f,0xaa238136,2
|
|
430
|
+
np.float32,0xbebc74c8,0xbf377710,2
|
|
431
|
+
np.float32,0x3e9f8e3b,0x3f2d8fce,2
|
|
432
|
+
np.float32,0x7f50ca09,0x54bdd6d8,2
|
|
433
|
+
np.float32,0x805797c1,0xaa6197df,2
|
|
434
|
+
np.float32,0x3de198f9,0x3ef56f98,2
|
|
435
|
+
np.float32,0xf154d,0x29fb0392,2
|
|
436
|
+
np.float32,0xff7fffff,0xd4cb2ff5,2
|
|
437
|
+
np.float32,0xfed22fa8,0xd49702c4,2
|
|
438
|
+
np.float32,0xbf733736,0xbf7baa64,2
|
|
439
|
+
np.float32,0xbf206a8a,0xbf5b1108,2
|
|
440
|
+
np.float32,0xbca49680,0xbe8b3078,2
|
|
441
|
+
np.float32,0xfecba794,0xd4956e1a,2
|
|
442
|
+
np.float32,0x80126582,0xaa061886,2
|
|
443
|
+
np.float32,0xfee5cc82,0xd49b919f,2
|
|
444
|
+
np.float32,0xbf7ad6ae,0xbf7e4491,2
|
|
445
|
+
np.float32,0x7ea88c81,0x548c4c0c,2
|
|
446
|
+
np.float32,0xbf493a0d,0xbf6c4255,2
|
|
447
|
+
np.float32,0xbf06dda0,0xbf4ec1d4,2
|
|
448
|
+
np.float32,0xff3f6e84,0xd4b86cf6,2
|
|
449
|
+
np.float32,0x3e4fe093,0x3f1674b0,2
|
|
450
|
+
np.float32,0x8048ad60,0xaa53fbde,2
|
|
451
|
+
np.float32,0x7ebb7112,0x54915ac5,2
|
|
452
|
+
np.float32,0x5bd191,0x2a652a0d,2
|
|
453
|
+
np.float32,0xfe3121d0,0xd4626cfb,2
|
|
454
|
+
np.float32,0x7e4421c6,0x546a3f83,2
|
|
455
|
+
np.float32,0x19975b,0x2a15b14f,2
|
|
456
|
+
np.float32,0x801c8087,0xaa1b2a64,2
|
|
457
|
+
np.float32,0xfdf6e950,0xd448c0f6,2
|
|
458
|
+
np.float32,0x74e711,0x2a786083,2
|
|
459
|
+
np.float32,0xbf2b2f2e,0xbf5fdccb,2
|
|
460
|
+
np.float32,0x7ed19ece,0x5496e00b,2
|
|
461
|
+
np.float32,0x7f6f8322,0x54c6ba63,2
|
|
462
|
+
np.float32,0x3e90316d,0x3f27cd69,2
|
|
463
|
+
np.float32,0x7ecb42ce,0x54955571,2
|
|
464
|
+
np.float32,0x3f6d49be,0x3f799aaf,2
|
|
465
|
+
np.float32,0x8053d327,0xaa5e4f9a,2
|
|
466
|
+
np.float32,0x7ebd7361,0x5491df3e,2
|
|
467
|
+
np.float32,0xfdb6eed0,0xd435a7aa,2
|
|
468
|
+
np.float32,0x7f3e79f4,0x54b81e4b,2
|
|
469
|
+
np.float32,0xfe83afa6,0xd4813794,2
|
|
470
|
+
np.float32,0x37c443,0x2a421246,2
|
|
471
|
+
np.float32,0xff075a10,0xd4a44cd8,2
|
|
472
|
+
np.float32,0x3ebc5fe0,0x3f377047,2
|
|
473
|
+
np.float32,0x739694,0x2a77714e,2
|
|
474
|
+
np.float32,0xfe832946,0xd4810b91,2
|
|
475
|
+
np.float32,0x7f2638e6,0x54aff235,2
|
|
476
|
+
np.float32,0xfe87f7a6,0xd4829a3f,2
|
|
477
|
+
np.float32,0x3f50f3f8,0x3f6f3eb8,2
|
|
478
|
+
np.float32,0x3eafa3d0,0x3f333548,2
|
|
479
|
+
np.float32,0xbec26ee6,0xbf39626f,2
|
|
480
|
+
np.float32,0x7e6f924f,0x547a66ff,2
|
|
481
|
+
np.float32,0x7f0baa46,0x54a606f8,2
|
|
482
|
+
np.float32,0xbf6dfc49,0xbf79d939,2
|
|
483
|
+
np.float32,0x7f005709,0x54a1699d,2
|
|
484
|
+
np.float32,0x7ee3d7ef,0x549b2057,2
|
|
485
|
+
np.float32,0x803709a4,0xaa4138d7,2
|
|
486
|
+
np.float32,0x3f7bf49a,0x3f7ea509,2
|
|
487
|
+
np.float32,0x509db7,0x2a5b6ff5,2
|
|
488
|
+
np.float32,0x7eb1b0d4,0x548ec9ff,2
|
|
489
|
+
np.float32,0x7eb996ec,0x5490dfce,2
|
|
490
|
+
np.float32,0xbf1fcbaa,0xbf5ac89e,2
|
|
491
|
+
np.float32,0x3e2c9a98,0x3f0d69cc,2
|
|
492
|
+
np.float32,0x3ea77994,0x3f306312,2
|
|
493
|
+
np.float32,0x3f3cbfe4,0x3f67457c,2
|
|
494
|
+
np.float32,0x8422a,0x29cd5a30,2
|
|
495
|
+
np.float32,0xbd974558,0xbed6d264,2
|
|
496
|
+
np.float32,0xfecee77a,0xd496387f,2
|
|
497
|
+
np.float32,0x3f51876b,0x3f6f76f1,2
|
|
498
|
+
np.float32,0x3b1a25,0x2a45ddad,2
|
|
499
|
+
np.float32,0xfe9912f0,0xd487dd67,2
|
|
500
|
+
np.float32,0x3f3ab13d,0x3f666d99,2
|
|
501
|
+
np.float32,0xbf35565a,0xbf64341b,2
|
|
502
|
+
np.float32,0x7d4e84aa,0x54162091,2
|
|
503
|
+
np.float32,0x4c2570,0x2a574dea,2
|
|
504
|
+
np.float32,0x7e82dca6,0x5480f26b,2
|
|
505
|
+
np.float32,0x7f5503e7,0x54bf1c8d,2
|
|
506
|
+
np.float32,0xbeb85034,0xbf361c59,2
|
|
507
|
+
np.float32,0x80460a69,0xaa516387,2
|
|
508
|
+
np.float32,0x805fbbab,0xaa68602c,2
|
|
509
|
+
np.float32,0x7d4b4c1b,0x541557b8,2
|
|
510
|
+
np.float32,0xbefa9a0a,0xbf49bfbc,2
|
|
511
|
+
np.float32,0x3dbd233f,0x3ee76e09,2
|
|
512
|
+
np.float32,0x58b6df,0x2a628d50,2
|
|
513
|
+
np.float32,0xfcdcc180,0xd3f3aad9,2
|
|
514
|
+
np.float32,0x423a37,0x2a4d8487,2
|
|
515
|
+
np.float32,0xbed8b32a,0xbf403507,2
|
|
516
|
+
np.float32,0x3f68e85d,0x3f780f0b,2
|
|
517
|
+
np.float32,0x7ee13c4b,0x549a883d,2
|
|
518
|
+
np.float32,0xff2ed4c5,0xd4b2eec1,2
|
|
519
|
+
np.float32,0xbf54dadc,0xbf70b99a,2
|
|
520
|
+
np.float32,0x3f78b0af,0x3f7d8a32,2
|
|
521
|
+
np.float32,0x3f377372,0x3f651635,2
|
|
522
|
+
np.float32,0xfdaa6178,0xd43166bc,2
|
|
523
|
+
np.float32,0x8060c337,0xaa6934a6,2
|
|
524
|
+
np.float32,0x7ec752c2,0x54945cf6,2
|
|
525
|
+
np.float32,0xbd01a760,0xbea1f624,2
|
|
526
|
+
np.float32,0x6f6599,0x2a746a35,2
|
|
527
|
+
np.float32,0x3f6315b0,0x3f75f95b,2
|
|
528
|
+
np.float32,0x7f2baf32,0x54b1da44,2
|
|
529
|
+
np.float32,0x3e400353,0x3f1286d8,2
|
|
530
|
+
np.float32,0x40d3bf,0x2a4c0f15,2
|
|
531
|
+
np.float32,0x7f733aca,0x54c7c03d,2
|
|
532
|
+
np.float32,0x7e5c5407,0x5473828b,2
|
|
533
|
+
np.float32,0x80191703,0xaa14b56a,2
|
|
534
|
+
np.float32,0xbf4fc144,0xbf6ec970,2
|
|
535
|
+
np.float32,0xbf1137a7,0xbf53eacd,2
|
|
536
|
+
np.float32,0x80575410,0xaa615db3,2
|
|
537
|
+
np.float32,0xbd0911d0,0xbea4fe07,2
|
|
538
|
+
np.float32,0x3e98534a,0x3f2ae643,2
|
|
539
|
+
np.float32,0x3f3b089a,0x3f669185,2
|
|
540
|
+
np.float32,0x4fc752,0x2a5aacc1,2
|
|
541
|
+
np.float32,0xbef44ddc,0xbf480b6e,2
|
|
542
|
+
np.float32,0x80464217,0xaa519af4,2
|
|
543
|
+
np.float32,0x80445fae,0xaa4fb6de,2
|
|
544
|
+
np.float32,0x80771cf4,0xaa79eec8,2
|
|
545
|
+
np.float32,0xfd9182e8,0xd4284fed,2
|
|
546
|
+
np.float32,0xff0a5d16,0xd4a58288,2
|
|
547
|
+
np.float32,0x3f33e169,0x3f63973e,2
|
|
548
|
+
np.float32,0x8021a247,0xaa23f820,2
|
|
549
|
+
np.float32,0xbf362522,0xbf648ab8,2
|
|
550
|
+
np.float32,0x3f457cd7,0x3f6ac95e,2
|
|
551
|
+
np.float32,0xbcadf400,0xbe8dc7e2,2
|
|
552
|
+
np.float32,0x80237210,0xaa26dca7,2
|
|
553
|
+
np.float32,0xbf1293c9,0xbf54939f,2
|
|
554
|
+
np.float32,0xbc5e73c0,0xbe744a37,2
|
|
555
|
+
np.float32,0x3c03f980,0x3e4d44df,2
|
|
556
|
+
np.float32,0x7da46f,0x2a7e6b20,2
|
|
557
|
+
np.float32,0x5d4570,0x2a665dd0,2
|
|
558
|
+
np.float32,0x3e93fbac,0x3f294287,2
|
|
559
|
+
np.float32,0x7e6808fd,0x5477bfa4,2
|
|
560
|
+
np.float32,0xff5aa9a6,0xd4c0c925,2
|
|
561
|
+
np.float32,0xbf5206ba,0xbf6fa767,2
|
|
562
|
+
np.float32,0xbf6e513e,0xbf79f6f1,2
|
|
563
|
+
np.float32,0x3ed01c0f,0x3f3da20f,2
|
|
564
|
+
np.float32,0xff47d93d,0xd4bb1704,2
|
|
565
|
+
np.float32,0x7f466cfd,0x54baa514,2
|
|
566
|
+
np.float32,0x665e10,0x2a6d9fc8,2
|
|
567
|
+
np.float32,0x804d0629,0xaa5820e8,2
|
|
568
|
+
np.float32,0x7e0beaa0,0x54514e7e,2
|
|
569
|
+
np.float32,0xbf7fcb6c,0xbf7fee78,2
|
|
570
|
+
np.float32,0x3f6c5b03,0x3f7946dd,2
|
|
571
|
+
np.float32,0x3e941504,0x3f294c30,2
|
|
572
|
+
np.float32,0xbf2749ad,0xbf5e26a1,2
|
|
573
|
+
np.float32,0xfec2a00a,0xd493302d,2
|
|
574
|
+
np.float32,0x3f15a358,0x3f560bce,2
|
|
575
|
+
np.float32,0x3f15c4e7,0x3f561bcd,2
|
|
576
|
+
np.float32,0xfedc8692,0xd499728c,2
|
|
577
|
+
np.float32,0x7e8f6902,0x5484f180,2
|
|
578
|
+
np.float32,0x7f663d62,0x54c42136,2
|
|
579
|
+
np.float32,0x8027ea62,0xaa2d99b4,2
|
|
580
|
+
np.float32,0x3f3d093d,0x3f67636d,2
|
|
581
|
+
np.float32,0x7f118c33,0x54a85382,2
|
|
582
|
+
np.float32,0x803e866a,0xaa499d43,2
|
|
583
|
+
np.float32,0x80053632,0xa9b02407,2
|
|
584
|
+
np.float32,0xbf36dd66,0xbf64d7af,2
|
|
585
|
+
np.float32,0xbf560358,0xbf71292b,2
|
|
586
|
+
np.float32,0x139a8,0x29596bc0,2
|
|
587
|
+
np.float32,0xbe04f75c,0xbf01a26c,2
|
|
588
|
+
np.float32,0xfe1c3268,0xd45920fa,2
|
|
589
|
+
np.float32,0x7ec77f72,0x5494680c,2
|
|
590
|
+
np.float32,0xbedde724,0xbf41bbba,2
|
|
591
|
+
np.float32,0x3e81dbe0,0x3f220bfd,2
|
|
592
|
+
np.float32,0x800373ac,0xa99989d4,2
|
|
593
|
+
np.float32,0x3f7f859a,0x3f7fd72d,2
|
|
594
|
+
np.float32,0x3eb9dc7e,0x3f369e80,2
|
|
595
|
+
np.float32,0xff5f8eb7,0xd4c236b1,2
|
|
596
|
+
np.float32,0xff1c03cb,0xd4ac44ac,2
|
|
597
|
+
np.float32,0x18cfe1,0x2a14285b,2
|
|
598
|
+
np.float32,0x7f21b075,0x54ae54fd,2
|
|
599
|
+
np.float32,0xff490bd8,0xd4bb7680,2
|
|
600
|
+
np.float32,0xbf15dc22,0xbf5626de,2
|
|
601
|
+
np.float32,0xfe1d5a10,0xd459a9a3,2
|
|
602
|
+
np.float32,0x750544,0x2a7875e4,2
|
|
603
|
+
np.float32,0x8023d5df,0xaa2778b3,2
|
|
604
|
+
np.float32,0x3e42aa08,0x3f1332b2,2
|
|
605
|
+
np.float32,0x3ecaa751,0x3f3bf60d,2
|
|
606
|
+
np.float32,0x0,0x0,2
|
|
607
|
+
np.float32,0x80416da6,0xaa4cb011,2
|
|
608
|
+
np.float32,0x3f4ea9ae,0x3f6e5e22,2
|
|
609
|
+
np.float32,0x2113f4,0x2a230f8e,2
|
|
610
|
+
np.float32,0x3f35c2e6,0x3f64619a,2
|
|
611
|
+
np.float32,0xbf50db8a,0xbf6f3564,2
|
|
612
|
+
np.float32,0xff4d5cea,0xd4bccb8a,2
|
|
613
|
+
np.float32,0x7ee54420,0x549b72d2,2
|
|
614
|
+
np.float32,0x64ee68,0x2a6c81f7,2
|
|
615
|
+
np.float32,0x5330da,0x2a5dbfc2,2
|
|
616
|
+
np.float32,0x80047f88,0xa9a7b467,2
|
|
617
|
+
np.float32,0xbda01078,0xbedae800,2
|
|
618
|
+
np.float32,0xfe96d05a,0xd487315f,2
|
|
619
|
+
np.float32,0x8003cc10,0xa99e7ef4,2
|
|
620
|
+
np.float32,0x8007b4ac,0xa9c8aa3d,2
|
|
621
|
+
np.float32,0x5d4bcf,0x2a66630e,2
|
|
622
|
+
np.float32,0xfdd0c0b0,0xd43dd403,2
|
|
623
|
+
np.float32,0xbf7a1d82,0xbf7e05f0,2
|
|
624
|
+
np.float32,0x74ca33,0x2a784c0f,2
|
|
625
|
+
np.float32,0x804f45e5,0xaa5a3640,2
|
|
626
|
+
np.float32,0x7e6d16aa,0x547988c4,2
|
|
627
|
+
np.float32,0x807d5762,0xaa7e3714,2
|
|
628
|
+
np.float32,0xfecf93d0,0xd4966229,2
|
|
629
|
+
np.float32,0xfecbd25c,0xd4957890,2
|
|
630
|
+
np.float32,0xff7db31c,0xd4ca93b0,2
|
|
631
|
+
np.float32,0x3dac9e18,0x3ee07c4a,2
|
|
632
|
+
np.float32,0xbf4b2d28,0xbf6d0509,2
|
|
633
|
+
np.float32,0xbd4f4c50,0xbebd62e0,2
|
|
634
|
+
np.float32,0xbd2eac40,0xbeb2e0ee,2
|
|
635
|
+
np.float32,0x3d01b69b,0x3ea1fc7b,2
|
|
636
|
+
np.float32,0x7ec63902,0x549416ed,2
|
|
637
|
+
np.float32,0xfcc47700,0xd3ea616d,2
|
|
638
|
+
np.float32,0xbf5ddec2,0xbf7413a1,2
|
|
639
|
+
np.float32,0xff6a6110,0xd4c54c52,2
|
|
640
|
+
np.float32,0xfdfae2a0,0xd449d335,2
|
|
641
|
+
np.float32,0x7e54868c,0x547099cd,2
|
|
642
|
+
np.float32,0x802b5b88,0xaa327413,2
|
|
643
|
+
np.float32,0x80440e72,0xaa4f647a,2
|
|
644
|
+
np.float32,0x3e313c94,0x3f0eaad5,2
|
|
645
|
+
np.float32,0x3ebb492a,0x3f3715a2,2
|
|
646
|
+
np.float32,0xbef56286,0xbf4856d5,2
|
|
647
|
+
np.float32,0x3f0154ba,0x3f4be3a0,2
|
|
648
|
+
np.float32,0xff2df86c,0xd4b2a376,2
|
|
649
|
+
np.float32,0x3ef6a850,0x3f48af57,2
|
|
650
|
+
np.float32,0x3d8d33e1,0x3ed1f22d,2
|
|
651
|
+
np.float32,0x4dd9b9,0x2a58e615,2
|
|
652
|
+
np.float32,0x7f1caf83,0x54ac83c9,2
|
|
653
|
+
np.float32,0xbf7286b3,0xbf7b6d73,2
|
|
654
|
+
np.float32,0x80064f88,0xa9bbbd9f,2
|
|
655
|
+
np.float32,0xbf1f55fa,0xbf5a92db,2
|
|
656
|
+
np.float32,0x546a81,0x2a5ed516,2
|
|
657
|
+
np.float32,0xbe912880,0xbf282d0a,2
|
|
658
|
+
np.float32,0x5df587,0x2a66ee6e,2
|
|
659
|
+
np.float32,0x801f706c,0xaa205279,2
|
|
660
|
+
np.float32,0x58cb6d,0x2a629ece,2
|
|
661
|
+
np.float32,0xfe754f8c,0xd47c62da,2
|
|
662
|
+
np.float32,0xbefb6f4c,0xbf49f8e7,2
|
|
663
|
+
np.float32,0x80000001,0xa6a14518,2
|
|
664
|
+
np.float32,0xbf067837,0xbf4e8df4,2
|
|
665
|
+
np.float32,0x3e8e715c,0x3f271ee4,2
|
|
666
|
+
np.float32,0x8009de9b,0xa9d9ebc8,2
|
|
667
|
+
np.float32,0xbf371ff1,0xbf64f36e,2
|
|
668
|
+
np.float32,0x7f5ce661,0x54c170e4,2
|
|
669
|
+
np.float32,0x3f3c47d1,0x3f671467,2
|
|
670
|
+
np.float32,0xfea5e5a6,0xd48b8eb2,2
|
|
671
|
+
np.float32,0xff62b17f,0xd4c31e15,2
|
|
672
|
+
np.float32,0xff315932,0xd4b3c98f,2
|
|
673
|
+
np.float32,0xbf1c3ca8,0xbf5925b9,2
|
|
674
|
+
np.float32,0x7f800000,0x7f800000,2
|
|
675
|
+
np.float32,0xfdf20868,0xd4476c3b,2
|
|
676
|
+
np.float32,0x5b790e,0x2a64e052,2
|
|
677
|
+
np.float32,0x3f5ddf4e,0x3f7413d4,2
|
|
678
|
+
np.float32,0x7f1a3182,0x54ab9861,2
|
|
679
|
+
np.float32,0x3f4b906e,0x3f6d2b9d,2
|
|
680
|
+
np.float32,0x7ebac760,0x54912edb,2
|
|
681
|
+
np.float32,0x7f626d3f,0x54c30a7e,2
|
|
682
|
+
np.float32,0x3e27b058,0x3f0c0edc,2
|
|
683
|
+
np.float32,0x8041e69c,0xaa4d2de8,2
|
|
684
|
+
np.float32,0x3f42cee0,0x3f69b84a,2
|
|
685
|
+
np.float32,0x7ec5fe83,0x5494085b,2
|
|
686
|
+
np.float32,0x9d3e6,0x29d99cde,2
|
|
687
|
+
np.float32,0x3edc50c0,0x3f41452d,2
|
|
688
|
+
np.float32,0xbf2c463a,0xbf60562c,2
|
|
689
|
+
np.float32,0x800bfa33,0xa9e871e8,2
|
|
690
|
+
np.float32,0x7c9f2c,0x2a7dba4d,2
|
|
691
|
+
np.float32,0x7f2ef9fd,0x54b2fb73,2
|
|
692
|
+
np.float32,0x80741847,0xaa77cdb9,2
|
|
693
|
+
np.float32,0x7e9c462a,0x5488ce1b,2
|
|
694
|
+
np.float32,0x3ea47ec1,0x3f2f55a9,2
|
|
695
|
+
np.float32,0x7f311c43,0x54b3b4f5,2
|
|
696
|
+
np.float32,0x3d8f4c73,0x3ed2facd,2
|
|
697
|
+
np.float32,0x806d7bd2,0xaa7301ef,2
|
|
698
|
+
np.float32,0xbf633d24,0xbf760799,2
|
|
699
|
+
np.float32,0xff4f9a3f,0xd4bd7a99,2
|
|
700
|
+
np.float32,0x3f6021ca,0x3f74e73d,2
|
|
701
|
+
np.float32,0x7e447015,0x546a5eac,2
|
|
702
|
+
np.float32,0x6bff3c,0x2a71e711,2
|
|
703
|
+
np.float32,0xe9c9f,0x29f85f06,2
|
|
704
|
+
np.float32,0x8009fe14,0xa9dad277,2
|
|
705
|
+
np.float32,0x807cf79c,0xaa7df644,2
|
|
706
|
+
np.float32,0xff440e1b,0xd4b9e608,2
|
|
707
|
+
np.float32,0xbddf9a50,0xbef4b5db,2
|
|
708
|
+
np.float32,0x7f3b1c39,0x54b706fc,2
|
|
709
|
+
np.float32,0x3c7471a0,0x3e7c16a7,2
|
|
710
|
+
np.float32,0x8065b02b,0xaa6d18ee,2
|
|
711
|
+
np.float32,0x7f63a3b2,0x54c36379,2
|
|
712
|
+
np.float32,0xbe9c9d92,0xbf2c7d33,2
|
|
713
|
+
np.float32,0x3d93aad3,0x3ed51a2e,2
|
|
714
|
+
np.float32,0xbf41b040,0xbf694571,2
|
|
715
|
+
np.float32,0x80396b9e,0xaa43f899,2
|
|
716
|
+
np.float64,0x800fa025695f404b,0xaaa4000ff64bb00c,2
|
|
717
|
+
np.float64,0xbfecc00198f98003,0xbfeee0b623fbd94b,2
|
|
718
|
+
np.float64,0x7f9eeb60b03dd6c0,0x55291bf8554bb303,2
|
|
719
|
+
np.float64,0x3fba74485634e890,0x3fde08710bdb148d,2
|
|
720
|
+
np.float64,0xbfdd9a75193b34ea,0xbfe8bf711660a2f5,2
|
|
721
|
+
np.float64,0xbfcf92e17a3f25c4,0xbfe4119eda6f3773,2
|
|
722
|
+
np.float64,0xbfe359e2ba66b3c6,0xbfeb0f7ae97ea142,2
|
|
723
|
+
np.float64,0x20791a5640f24,0x2a9441f13d262bed,2
|
|
724
|
+
np.float64,0x3fe455fbfae8abf8,0x3feb830d63e1022c,2
|
|
725
|
+
np.float64,0xbd112b7b7a226,0x2aa238c097ec269a,2
|
|
726
|
+
np.float64,0x93349ba126694,0x2aa0c363cd74465a,2
|
|
727
|
+
np.float64,0x20300cd440602,0x2a9432b4f4081209,2
|
|
728
|
+
np.float64,0x3fdcfae677b9f5cc,0x3fe892a9ee56fe8d,2
|
|
729
|
+
np.float64,0xbfefaae3f7bf55c8,0xbfefe388066132c4,2
|
|
730
|
+
np.float64,0x1a7d6eb634faf,0x2a92ed9851d29ab5,2
|
|
731
|
+
np.float64,0x7fd5308d39aa6119,0x553be444e30326c6,2
|
|
732
|
+
np.float64,0xff811c7390223900,0xd5205cb404952fa7,2
|
|
733
|
+
np.float64,0x80083d24aff07a4a,0xaaa0285cf764d898,2
|
|
734
|
+
np.float64,0x800633810ccc6703,0xaa9d65341419586b,2
|
|
735
|
+
np.float64,0x800ff456223fe8ac,0xaaa423bbcc24dff1,2
|
|
736
|
+
np.float64,0x7fde5c99aebcb932,0x553f71be7d6d9daa,2
|
|
737
|
+
np.float64,0x3fed961c4b3b2c39,0x3fef2ca146270cac,2
|
|
738
|
+
np.float64,0x7fe744d30c6e89a5,0x554220a4cdc78e62,2
|
|
739
|
+
np.float64,0x3fd8f527c7b1ea50,0x3fe76101085be1cb,2
|
|
740
|
+
np.float64,0xbfc96a14b232d428,0xbfe2ab1a8962606c,2
|
|
741
|
+
np.float64,0xffe85f540cf0bea7,0xd54268dff964519a,2
|
|
742
|
+
np.float64,0x800e3be0fe7c77c2,0xaaa3634efd7f020b,2
|
|
743
|
+
np.float64,0x3feb90d032f721a0,0x3fee72a4579e8b12,2
|
|
744
|
+
np.float64,0xffe05674aaa0ace9,0xd5401c9e3fb4abcf,2
|
|
745
|
+
np.float64,0x3fefc2e32c3f85c6,0x3fefeb940924bf42,2
|
|
746
|
+
np.float64,0xbfecfd89e9f9fb14,0xbfeef6addf73ee49,2
|
|
747
|
+
np.float64,0xf5862717eb0c5,0x2aa3e1428780382d,2
|
|
748
|
+
np.float64,0xffc3003b32260078,0xd53558f92202dcdb,2
|
|
749
|
+
np.float64,0x3feb4c152c36982a,0x3fee5940f7da0825,2
|
|
750
|
+
np.float64,0x3fe7147b002e28f6,0x3fecb2948f46d1e3,2
|
|
751
|
+
np.float64,0x7fe00ad9b4a015b2,0x5540039d15e1da54,2
|
|
752
|
+
np.float64,0x8010000000000000,0xaaa428a2f98d728b,2
|
|
753
|
+
np.float64,0xbfd3a41bfea74838,0xbfe595ab45b1be91,2
|
|
754
|
+
np.float64,0x7fdbfd6e5537fadc,0x553e9a6e1107b8d0,2
|
|
755
|
+
np.float64,0x800151d9d9a2a3b4,0xaa918cd8fb63f40f,2
|
|
756
|
+
np.float64,0x7fe6828401ad0507,0x5541eda05dcd1fcf,2
|
|
757
|
+
np.float64,0x3fdae1e7a1b5c3d0,0x3fe7f711e72ecc35,2
|
|
758
|
+
np.float64,0x7fdf4936133e926b,0x553fc29c8d5edea3,2
|
|
759
|
+
np.float64,0x80079de12d4f3bc3,0xaa9f7b06a9286da4,2
|
|
760
|
+
np.float64,0x3fe1261cade24c39,0x3fe9fe09488e417a,2
|
|
761
|
+
np.float64,0xbfc20dce21241b9c,0xbfe0a842fb207a28,2
|
|
762
|
+
np.float64,0x3fe3285dfa2650bc,0x3feaf85215f59ef9,2
|
|
763
|
+
np.float64,0x7fe42b93aea85726,0x554148c3c3bb35e3,2
|
|
764
|
+
np.float64,0xffe6c74e7f6d8e9c,0xd541ffd13fa36dbd,2
|
|
765
|
+
np.float64,0x3fe73ea139ee7d42,0x3fecc402242ab7d3,2
|
|
766
|
+
np.float64,0xffbd4b46be3a9690,0xd53392de917c72e4,2
|
|
767
|
+
np.float64,0x800caed8df395db2,0xaaa2a811a02e6be4,2
|
|
768
|
+
np.float64,0x800aacdb6c9559b7,0xaaa19d6fbc8feebf,2
|
|
769
|
+
np.float64,0x839fb4eb073f7,0x2aa0264b98327c12,2
|
|
770
|
+
np.float64,0xffd0157ba9a02af8,0xd5397157a11c0d05,2
|
|
771
|
+
np.float64,0x7fddc8ff173b91fd,0x553f3e7663fb2ac7,2
|
|
772
|
+
np.float64,0x67b365facf66d,0x2a9dd4d838b0d853,2
|
|
773
|
+
np.float64,0xffe12e7fc7225cff,0xd5406272a83a8e1b,2
|
|
774
|
+
np.float64,0x7fea5b19a034b632,0x5542e567658b3e36,2
|
|
775
|
+
np.float64,0x124989d824932,0x2a90ba8dc7a39532,2
|
|
776
|
+
np.float64,0xffe12ef098225de0,0xd54062968450a078,2
|
|
777
|
+
np.float64,0x3fea2f44a3f45e8a,0x3fedee3c461f4716,2
|
|
778
|
+
np.float64,0x3fe6b033e66d6068,0x3fec88c8035e06b1,2
|
|
779
|
+
np.float64,0x3fe928a2ccf25146,0x3fed88d4cde7a700,2
|
|
780
|
+
np.float64,0x3feead27e97d5a50,0x3fef8d7537d82e60,2
|
|
781
|
+
np.float64,0x8003ab80b6875702,0xaa98adfedd7715a9,2
|
|
782
|
+
np.float64,0x45a405828b481,0x2a9a1fa99a4eff1e,2
|
|
783
|
+
np.float64,0x8002ddebad85bbd8,0xaa96babfda4e0031,2
|
|
784
|
+
np.float64,0x3fc278c32824f186,0x3fe0c8e7c979fbd5,2
|
|
785
|
+
np.float64,0x2e10fffc5c221,0x2a96c30a766d06fa,2
|
|
786
|
+
np.float64,0xffd6ba8c2ead7518,0xd53c8d1d92bc2788,2
|
|
787
|
+
np.float64,0xbfeb5ec3a036bd87,0xbfee602bbf0a0d01,2
|
|
788
|
+
np.float64,0x3fed5bd58f7ab7ab,0x3fef181bf591a4a7,2
|
|
789
|
+
np.float64,0x7feb5274a5b6a4e8,0x55431fcf81876218,2
|
|
790
|
+
np.float64,0xaf8fd6cf5f1fb,0x2aa1c6edbb1e2aaf,2
|
|
791
|
+
np.float64,0x7fece718f179ce31,0x55437c74efb90933,2
|
|
792
|
+
np.float64,0xbfa3c42d0c278860,0xbfd5a16407c77e73,2
|
|
793
|
+
np.float64,0x800b5cff0576b9fe,0xaaa1fc4ecb0dec4f,2
|
|
794
|
+
np.float64,0x800be89ae557d136,0xaaa244d115fc0963,2
|
|
795
|
+
np.float64,0x800d2578f5ba4af2,0xaaa2e18a3a3fc134,2
|
|
796
|
+
np.float64,0x80090ff93e321ff3,0xaaa0add578e3cc3c,2
|
|
797
|
+
np.float64,0x28c5a240518c,0x2a81587cccd7e202,2
|
|
798
|
+
np.float64,0x7fec066929780cd1,0x55434971435d1069,2
|
|
799
|
+
np.float64,0x7fc84d4d15309a99,0x55372c204515694f,2
|
|
800
|
+
np.float64,0xffe070a75de0e14e,0xd54025365046dad2,2
|
|
801
|
+
np.float64,0x7fe5b27cc36b64f9,0x5541b5b822f0b6ca,2
|
|
802
|
+
np.float64,0x3fdea35ac8bd46b6,0x3fe9086a0fb792c2,2
|
|
803
|
+
np.float64,0xbfe79996f7af332e,0xbfece9571d37a5b3,2
|
|
804
|
+
np.float64,0xffdfb47f943f6900,0xd53fe6c14c3366db,2
|
|
805
|
+
np.float64,0xc015cf63802ba,0x2aa2517164d075f4,2
|
|
806
|
+
np.float64,0x7feba98948375312,0x5543340b5b1f1181,2
|
|
807
|
+
np.float64,0x8008678e6550cf1d,0xaaa043e7cea90da5,2
|
|
808
|
+
np.float64,0x3fb11b92fa223726,0x3fd9f8b53be4d90b,2
|
|
809
|
+
np.float64,0x7fc9b18cf0336319,0x55379b42da882047,2
|
|
810
|
+
np.float64,0xbfe5043e736a087d,0xbfebd0c67db7a8e3,2
|
|
811
|
+
np.float64,0x7fde88546a3d10a8,0x553f80cfe5bcf5fe,2
|
|
812
|
+
np.float64,0x8006a6c82dcd4d91,0xaa9e171d182ba049,2
|
|
813
|
+
np.float64,0xbfa0f707ac21ee10,0xbfd48e5d3faa1699,2
|
|
814
|
+
np.float64,0xbfe7716bffaee2d8,0xbfecd8e6abfb8964,2
|
|
815
|
+
np.float64,0x9511ccab2a23a,0x2aa0d56d748f0313,2
|
|
816
|
+
np.float64,0x8003ddb9b847bb74,0xaa991ca06fd9d308,2
|
|
817
|
+
np.float64,0x80030710fac60e23,0xaa9725845ac95fe8,2
|
|
818
|
+
np.float64,0xffece5bbaeb9cb76,0xd5437c2670f894f4,2
|
|
819
|
+
np.float64,0x3fd9be5c72b37cb9,0x3fe79f2e932a5708,2
|
|
820
|
+
np.float64,0x1f050cca3e0a3,0x2a93f36499fe5228,2
|
|
821
|
+
np.float64,0x3fd5422becaa8458,0x3fe6295d6150df58,2
|
|
822
|
+
np.float64,0xffd72c050e2e580a,0xd53cbc52d73b495f,2
|
|
823
|
+
np.float64,0xbfe66d5235ecdaa4,0xbfec6ca27e60bf23,2
|
|
824
|
+
np.float64,0x17ac49a42f58a,0x2a923b5b757087a0,2
|
|
825
|
+
np.float64,0xffd39edc40273db8,0xd53b2f7bb99b96bf,2
|
|
826
|
+
np.float64,0x7fde6cf009bcd9df,0x553f77614eb30d75,2
|
|
827
|
+
np.float64,0x80042b4c3fa85699,0xaa99c05fbdd057db,2
|
|
828
|
+
np.float64,0xbfde5547f8bcaa90,0xbfe8f3147d67a940,2
|
|
829
|
+
np.float64,0xbfdd02f9bf3a05f4,0xbfe894f2048aa3fe,2
|
|
830
|
+
np.float64,0xbfa20ec82c241d90,0xbfd4fd02ee55aac7,2
|
|
831
|
+
np.float64,0x8002f670f8c5ece3,0xaa96fad7e53dd479,2
|
|
832
|
+
np.float64,0x80059f24d7eb3e4a,0xaa9c7312dae0d7bc,2
|
|
833
|
+
np.float64,0x7fe6ae7423ad5ce7,0x5541f9430be53062,2
|
|
834
|
+
np.float64,0xe135ea79c26be,0x2aa350d8f8c526e1,2
|
|
835
|
+
np.float64,0x3fec188ce4f8311a,0x3feea44d21c23f68,2
|
|
836
|
+
np.float64,0x800355688286aad2,0xaa97e6ca51eb8357,2
|
|
837
|
+
np.float64,0xa2d6530b45acb,0x2aa15635bbd366e8,2
|
|
838
|
+
np.float64,0x600e0150c01c1,0x2a9d1456ea6c239c,2
|
|
839
|
+
np.float64,0x8009c30863338611,0xaaa118f94b188bcf,2
|
|
840
|
+
np.float64,0x3fe7e4c0dfefc982,0x3fed07e8480b8c07,2
|
|
841
|
+
np.float64,0xbfddac6407bb58c8,0xbfe8c46f63a50225,2
|
|
842
|
+
np.float64,0xbc85e977790bd,0x2aa2344636ed713d,2
|
|
843
|
+
np.float64,0xfff0000000000000,0xfff0000000000000,2
|
|
844
|
+
np.float64,0xffcd1570303a2ae0,0xd5389a27d5148701,2
|
|
845
|
+
np.float64,0xbf937334d026e660,0xbfd113762e4e29a7,2
|
|
846
|
+
np.float64,0x3fdbfdaa9b37fb55,0x3fe84a425fdff7df,2
|
|
847
|
+
np.float64,0xffc10800f5221000,0xd5349535ffe12030,2
|
|
848
|
+
np.float64,0xaf40f3755e81f,0x2aa1c443af16cd27,2
|
|
849
|
+
np.float64,0x800f7da34f7efb47,0xaaa3f14bf25fc89f,2
|
|
850
|
+
np.float64,0xffe4a60125a94c02,0xd5416b764a294128,2
|
|
851
|
+
np.float64,0xbf8e25aa903c4b40,0xbfcf5ebc275b4789,2
|
|
852
|
+
np.float64,0x3fca681bbb34d038,0x3fe2e882bcaee320,2
|
|
853
|
+
np.float64,0xbfd0f3c9c1a1e794,0xbfe48d0df7b47572,2
|
|
854
|
+
np.float64,0xffeb99b49d373368,0xd5433060dc641910,2
|
|
855
|
+
np.float64,0x3fe554fb916aa9f8,0x3febf437cf30bd67,2
|
|
856
|
+
np.float64,0x80079518d0af2a32,0xaa9f6ee87044745a,2
|
|
857
|
+
np.float64,0x5e01a8a0bc036,0x2a9cdf0badf222c3,2
|
|
858
|
+
np.float64,0xbfea9831b3f53064,0xbfee1601ee953ab3,2
|
|
859
|
+
np.float64,0xbfc369d1a826d3a4,0xbfe110b675c311e0,2
|
|
860
|
+
np.float64,0xa82e640d505cd,0x2aa1863d4e523b9c,2
|
|
861
|
+
np.float64,0x3fe506d70a2a0dae,0x3febd1eba3aa83fa,2
|
|
862
|
+
np.float64,0xcbacba7197598,0x2aa2adeb9927f1f2,2
|
|
863
|
+
np.float64,0xc112d6038225b,0x2aa25978f12038b0,2
|
|
864
|
+
np.float64,0xffa7f5f44c2febf0,0xd52d0ede02d4e18b,2
|
|
865
|
+
np.float64,0x8006f218e34de433,0xaa9e870cf373b4eb,2
|
|
866
|
+
np.float64,0xffe6d9a5d06db34b,0xd54204a4adc608c7,2
|
|
867
|
+
np.float64,0x7fe717210eae2e41,0x554214bf3e2b5228,2
|
|
868
|
+
np.float64,0xbfdd4b45cdba968c,0xbfe8a94c7f225f8e,2
|
|
869
|
+
np.float64,0x883356571066b,0x2aa055ab0b2a8833,2
|
|
870
|
+
np.float64,0x3fe307fc02a60ff8,0x3feae9175053288f,2
|
|
871
|
+
np.float64,0x3fefa985f77f530c,0x3fefe31289446615,2
|
|
872
|
+
np.float64,0x8005698a98aad316,0xaa9c17814ff7d630,2
|
|
873
|
+
np.float64,0x3fea77333c74ee66,0x3fee098ba70e10fd,2
|
|
874
|
+
np.float64,0xbfd1d00b0023a016,0xbfe4e497fd1cbea1,2
|
|
875
|
+
np.float64,0x80009b0c39813619,0xaa8b130a6909cc3f,2
|
|
876
|
+
np.float64,0x3fdbeb896fb7d714,0x3fe84502ba5437f8,2
|
|
877
|
+
np.float64,0x3fb6e7e3562dcfc7,0x3fdca00d35c389ad,2
|
|
878
|
+
np.float64,0xb2d46ebf65a8e,0x2aa1e2fe158d0838,2
|
|
879
|
+
np.float64,0xbfd5453266aa8a64,0xbfe62a6a74c8ef6e,2
|
|
880
|
+
np.float64,0x7fe993aa07732753,0x5542b5438bf31cb7,2
|
|
881
|
+
np.float64,0xbfda5a098cb4b414,0xbfe7ce6d4d606203,2
|
|
882
|
+
np.float64,0xbfe40c3ce068187a,0xbfeb61a32c57a6d0,2
|
|
883
|
+
np.float64,0x3fcf17671d3e2ed0,0x3fe3f753170ab686,2
|
|
884
|
+
np.float64,0xbfe4f814b6e9f02a,0xbfebcb67c60b7b08,2
|
|
885
|
+
np.float64,0x800efedf59fdfdbf,0xaaa3ba4ed44ad45a,2
|
|
886
|
+
np.float64,0x800420b556e8416b,0xaa99aa7fb14edeab,2
|
|
887
|
+
np.float64,0xbf6e4ae6403c9600,0xbfc3cb2b29923989,2
|
|
888
|
+
np.float64,0x3fda5c760a34b8ec,0x3fe7cf2821c52391,2
|
|
889
|
+
np.float64,0x7f898faac0331f55,0x5522b44a01408188,2
|
|
890
|
+
np.float64,0x3fd55af4b7aab5e9,0x3fe631f6d19503b3,2
|
|
891
|
+
np.float64,0xbfa30a255c261450,0xbfd55caf0826361d,2
|
|
892
|
+
np.float64,0x7fdfb801343f7001,0x553fe7ee50b9199a,2
|
|
893
|
+
np.float64,0x7fa89ee91c313dd1,0x552d528ca2a4d659,2
|
|
894
|
+
np.float64,0xffea72921d34e524,0xd542eb01af2e470d,2
|
|
895
|
+
np.float64,0x3feddf0f33fbbe1e,0x3fef462b67fc0a91,2
|
|
896
|
+
np.float64,0x3fe36700b566ce01,0x3feb1596caa8eff7,2
|
|
897
|
+
np.float64,0x7fe6284a25ac5093,0x5541d58be3956601,2
|
|
898
|
+
np.float64,0xffda16f7c8b42df0,0xd53de4f722485205,2
|
|
899
|
+
np.float64,0x7f9355b94026ab72,0x552578cdeb41d2ca,2
|
|
900
|
+
np.float64,0xffd3a9b022275360,0xd53b347b02dcea21,2
|
|
901
|
+
np.float64,0x3fcb7f4f4a36fe9f,0x3fe32a40e9f6c1aa,2
|
|
902
|
+
np.float64,0x7fdb958836372b0f,0x553e746103f92111,2
|
|
903
|
+
np.float64,0x3fd37761c0a6eec4,0x3fe5853c5654027e,2
|
|
904
|
+
np.float64,0x3fe449f1a2e893e4,0x3feb7d9e4eacc356,2
|
|
905
|
+
np.float64,0x80077dfbef0efbf9,0xaa9f4ed788d2fadd,2
|
|
906
|
+
np.float64,0x4823aa7890476,0x2a9a6eb4b653bad5,2
|
|
907
|
+
np.float64,0xbfede01a373bc034,0xbfef468895fbcd29,2
|
|
908
|
+
np.float64,0xbfe2bac5f125758c,0xbfeac4811c4dd66f,2
|
|
909
|
+
np.float64,0x3fec10373af8206e,0x3feea14529e0f178,2
|
|
910
|
+
np.float64,0x3fe305e30ca60bc6,0x3feae81a2f9d0302,2
|
|
911
|
+
np.float64,0xa9668c5f52cd2,0x2aa1910e3a8f2113,2
|
|
912
|
+
np.float64,0xbfd98b1717b3162e,0xbfe78f75995335d2,2
|
|
913
|
+
np.float64,0x800fa649c35f4c94,0xaaa402ae79026a8f,2
|
|
914
|
+
np.float64,0xbfb07dacf620fb58,0xbfd9a7d33d93a30f,2
|
|
915
|
+
np.float64,0x80015812f382b027,0xaa91a843e9c85c0e,2
|
|
916
|
+
np.float64,0x3fc687d96c2d0fb3,0x3fe1ef0ac16319c5,2
|
|
917
|
+
np.float64,0xbfecad2ecd795a5e,0xbfeed9f786697af0,2
|
|
918
|
+
np.float64,0x1608c1242c119,0x2a91cd11e9b4ccd2,2
|
|
919
|
+
np.float64,0x6df775e8dbeef,0x2a9e6ba8c71130eb,2
|
|
920
|
+
np.float64,0xffe96e9332b2dd26,0xd542ac342d06299b,2
|
|
921
|
+
np.float64,0x7fecb6a3b8396d46,0x5543718af8162472,2
|
|
922
|
+
np.float64,0x800d379f893a6f3f,0xaaa2ea36bbcb9308,2
|
|
923
|
+
np.float64,0x3f924cdb202499b6,0x3fd0bb90af8d1f79,2
|
|
924
|
+
np.float64,0x0,0x0,2
|
|
925
|
+
np.float64,0x7feaf3b365f5e766,0x5543099a160e2427,2
|
|
926
|
+
np.float64,0x3fea169ed0742d3e,0x3fede4d526e404f8,2
|
|
927
|
+
np.float64,0x7feaf5f2f775ebe5,0x55430a2196c5f35a,2
|
|
928
|
+
np.float64,0xbfc80d4429301a88,0xbfe2541f2ddd3334,2
|
|
929
|
+
np.float64,0xffc75203b32ea408,0xd536db2837068689,2
|
|
930
|
+
np.float64,0xffed2850e63a50a1,0xd5438b1217b72b8a,2
|
|
931
|
+
np.float64,0x7fc16b0e7f22d61c,0x5534bcd0bfddb6f0,2
|
|
932
|
+
np.float64,0x7feee8ed09fdd1d9,0x5543ed5b3ca483ab,2
|
|
933
|
+
np.float64,0x7fb6c7ee662d8fdc,0x5531fffb5d46dafb,2
|
|
934
|
+
np.float64,0x3fd77cebf8aef9d8,0x3fe6e9242e2bd29d,2
|
|
935
|
+
np.float64,0x3f81c33f70238680,0x3fca4c7f3c9848f7,2
|
|
936
|
+
np.float64,0x3fd59fea92ab3fd5,0x3fe649c1558cadd5,2
|
|
937
|
+
np.float64,0xffeba82d4bf7505a,0xd54333bad387f7bd,2
|
|
938
|
+
np.float64,0xffd37630e1a6ec62,0xd53b1ca62818c670,2
|
|
939
|
+
np.float64,0xffec2c1e70b8583c,0xd5435213dcd27c22,2
|
|
940
|
+
np.float64,0x7fec206971f840d2,0x55434f6660a8ae41,2
|
|
941
|
+
np.float64,0x3fed2964adba52c9,0x3fef0642fe72e894,2
|
|
942
|
+
np.float64,0xffd08e30d6211c62,0xd539b060e0ae02da,2
|
|
943
|
+
np.float64,0x3e5f976c7cbf4,0x2a992e6ff991a122,2
|
|
944
|
+
np.float64,0xffe6eee761adddce,0xd5420a393c67182f,2
|
|
945
|
+
np.float64,0xbfe8ec9a31f1d934,0xbfed714426f58147,2
|
|
946
|
+
np.float64,0x7fefffffffffffff,0x554428a2f98d728b,2
|
|
947
|
+
np.float64,0x3fb3ae8b2c275d16,0x3fdb36b81b18a546,2
|
|
948
|
+
np.float64,0x800f73df4dfee7bf,0xaaa3ed1a3e2cf49c,2
|
|
949
|
+
np.float64,0xffd0c8873b21910e,0xd539ce6a3eab5dfd,2
|
|
950
|
+
np.float64,0x3facd6c49439ad80,0x3fd8886f46335df1,2
|
|
951
|
+
np.float64,0x3935859c726b2,0x2a98775f6438dbb1,2
|
|
952
|
+
np.float64,0x7feed879fbfdb0f3,0x5543e9d1ac239469,2
|
|
953
|
+
np.float64,0xbfe84dd990f09bb3,0xbfed323af09543b1,2
|
|
954
|
+
np.float64,0xbfe767cc5a6ecf98,0xbfecd4f39aedbacb,2
|
|
955
|
+
np.float64,0xffd8bd91d5b17b24,0xd53d5eb3734a2609,2
|
|
956
|
+
np.float64,0xbfe13edeb2a27dbe,0xbfea0a856f0b9656,2
|
|
957
|
+
np.float64,0xd933dd53b267c,0x2aa3158784e428c9,2
|
|
958
|
+
np.float64,0xbfef6fef987edfdf,0xbfefcfb1c160462b,2
|
|
959
|
+
np.float64,0x8009eeda4893ddb5,0xaaa13268a41045b1,2
|
|
960
|
+
np.float64,0xab48c7a156919,0x2aa1a1a9c124c87d,2
|
|
961
|
+
np.float64,0xa997931d532f3,0x2aa192bfe5b7bbb4,2
|
|
962
|
+
np.float64,0xffe39ce8b1e739d1,0xd5411fa1c5c2cbd8,2
|
|
963
|
+
np.float64,0x7e7ac2f6fcf59,0x2a9fdf6f263a9e9f,2
|
|
964
|
+
np.float64,0xbfee1e35a6fc3c6b,0xbfef5c25d32b4047,2
|
|
965
|
+
np.float64,0xffe5589c626ab138,0xd5419d220cc9a6da,2
|
|
966
|
+
np.float64,0x7fe12509bf224a12,0x55405f7036dc5932,2
|
|
967
|
+
np.float64,0xa6f15ba94de2c,0x2aa17b3367b1fc1b,2
|
|
968
|
+
np.float64,0x3fca8adbfa3515b8,0x3fe2f0ca775749e5,2
|
|
969
|
+
np.float64,0xbfcb03aa21360754,0xbfe30d5b90ca41f7,2
|
|
970
|
+
np.float64,0x3fefafb2da7f5f66,0x3fefe5251aead4e7,2
|
|
971
|
+
np.float64,0xffd90a59d23214b4,0xd53d7cf63a644f0e,2
|
|
972
|
+
np.float64,0x3fba499988349333,0x3fddf84154fab7e5,2
|
|
973
|
+
np.float64,0x800a76a0bc54ed42,0xaaa17f68cf67f2fa,2
|
|
974
|
+
np.float64,0x3fea33d15bb467a3,0x3fedeff7f445b2ff,2
|
|
975
|
+
np.float64,0x8005d9b0726bb362,0xaa9cd48624afeca9,2
|
|
976
|
+
np.float64,0x7febf42e9a77e85c,0x55434541d8073376,2
|
|
977
|
+
np.float64,0xbfedfc4469bbf889,0xbfef505989f7ee7d,2
|
|
978
|
+
np.float64,0x8001211f1422423f,0xaa90a9889d865349,2
|
|
979
|
+
np.float64,0x800e852f7fdd0a5f,0xaaa3845f11917f8e,2
|
|
980
|
+
np.float64,0xffefd613c87fac27,0xd5441fd17ec669b4,2
|
|
981
|
+
np.float64,0x7fed2a74543a54e8,0x55438b8c637da8b8,2
|
|
982
|
+
np.float64,0xb83d50ff707aa,0x2aa210b4fc11e4b2,2
|
|
983
|
+
np.float64,0x10000000000000,0x2aa428a2f98d728b,2
|
|
984
|
+
np.float64,0x474ad9208e97,0x2a84e5a31530368a,2
|
|
985
|
+
np.float64,0xffd0c5498ea18a94,0xd539ccc0e5cb425e,2
|
|
986
|
+
np.float64,0x8001a8e9c82351d4,0xaa92f1aee6ca5b7c,2
|
|
987
|
+
np.float64,0xd28db1e5a51b6,0x2aa2e328c0788f4a,2
|
|
988
|
+
np.float64,0x3bf734ac77ee7,0x2a98da65c014b761,2
|
|
989
|
+
np.float64,0x3fe56e17c96adc30,0x3febff2b6b829b7a,2
|
|
990
|
+
np.float64,0x7783113eef063,0x2a9f46c3f09eb42c,2
|
|
991
|
+
np.float64,0x3fd69d4e42ad3a9d,0x3fe69f83a21679f4,2
|
|
992
|
+
np.float64,0x3fd34f4841a69e90,0x3fe5766b3c771616,2
|
|
993
|
+
np.float64,0x3febb49895b76931,0x3fee7fcb603416c9,2
|
|
994
|
+
np.float64,0x7fe8d6cb55f1ad96,0x554286c3b3bf4313,2
|
|
995
|
+
np.float64,0xbfe67c6ba36cf8d8,0xbfec730218f2e284,2
|
|
996
|
+
np.float64,0xffef9d97723f3b2e,0xd54413e38b6c29be,2
|
|
997
|
+
np.float64,0x12d8cd2a25b1b,0x2a90e5ccd37b8563,2
|
|
998
|
+
np.float64,0x81fe019103fc0,0x2aa01524155e73c5,2
|
|
999
|
+
np.float64,0x7fe95d546f72baa8,0x5542a7fabfd425ff,2
|
|
1000
|
+
np.float64,0x800e742f1f9ce85e,0xaaa37cbe09e1f874,2
|
|
1001
|
+
np.float64,0xffd96bd3a732d7a8,0xd53da3086071264a,2
|
|
1002
|
+
np.float64,0x4ef2691e9de4e,0x2a9b3d316047fd6d,2
|
|
1003
|
+
np.float64,0x1a91684c3522e,0x2a92f25913c213de,2
|
|
1004
|
+
np.float64,0x3d5151b87aa2b,0x2a9909dbd9a44a84,2
|
|
1005
|
+
np.float64,0x800d9049435b2093,0xaaa31424e32d94a2,2
|
|
1006
|
+
np.float64,0xffe5b25fcc2b64bf,0xd541b5b0416b40b5,2
|
|
1007
|
+
np.float64,0xffe0eb784c21d6f0,0xd5404d083c3d6bc6,2
|
|
1008
|
+
np.float64,0x8007ceefbf0f9de0,0xaa9fbe0d739368b4,2
|
|
1009
|
+
np.float64,0xb78529416f0b,0x2a8ca3b29b5b3f18,2
|
|
1010
|
+
np.float64,0x7fba61130034c225,0x5532e6d4ca0f2918,2
|
|
1011
|
+
np.float64,0x3fba8d67ae351acf,0x3fde11efd6239b09,2
|
|
1012
|
+
np.float64,0x3fe7f24c576fe498,0x3fed0d63947a854d,2
|
|
1013
|
+
np.float64,0x2bb58dec576b3,0x2a965de7fca12aff,2
|
|
1014
|
+
np.float64,0xbfe86ceec4f0d9de,0xbfed3ea7f1d084e2,2
|
|
1015
|
+
np.float64,0x7fd1a7f7bca34fee,0x553a3f01b67fad2a,2
|
|
1016
|
+
np.float64,0x3fd9a43acfb34874,0x3fe7972dc5d8dfd6,2
|
|
1017
|
+
np.float64,0x7fd9861acdb30c35,0x553dad3b1bbb3b4d,2
|
|
1018
|
+
np.float64,0xffecc0c388398186,0xd54373d3b903deec,2
|
|
1019
|
+
np.float64,0x3fa6f86e9c2df0e0,0x3fd6bdbe40fcf710,2
|
|
1020
|
+
np.float64,0x800ddd99815bbb33,0xaaa33820d2f889bb,2
|
|
1021
|
+
np.float64,0x7fe087089b610e10,0x55402c868348a6d3,2
|
|
1022
|
+
np.float64,0x3fdf43d249be87a5,0x3fe933d29fbf7c23,2
|
|
1023
|
+
np.float64,0x7fe4f734c7a9ee69,0x5541822e56c40725,2
|
|
1024
|
+
np.float64,0x3feb39a9d3b67354,0x3fee526bf1f69f0e,2
|
|
1025
|
+
np.float64,0x3fe61454a0ec28a9,0x3fec46d7c36f7566,2
|
|
1026
|
+
np.float64,0xbfeafaa0a375f541,0xbfee3af2e49d457a,2
|
|
1027
|
+
np.float64,0x3fda7378e1b4e6f0,0x3fe7d613a3f92c40,2
|
|
1028
|
+
np.float64,0xe3e31c5fc7c64,0x2aa3645c12e26171,2
|
|
1029
|
+
np.float64,0xbfe97a556df2f4ab,0xbfeda8aa84cf3544,2
|
|
1030
|
+
np.float64,0xff612f9c80225f00,0xd514a51e5a2a8a97,2
|
|
1031
|
+
np.float64,0x800c51c8a0f8a391,0xaaa279fe7d40b50b,2
|
|
1032
|
+
np.float64,0xffd6f9d2312df3a4,0xd53ca783a5f8d110,2
|
|
1033
|
+
np.float64,0xbfead48bd7f5a918,0xbfee2cb2f89c5e57,2
|
|
1034
|
+
np.float64,0x800f5949e89eb294,0xaaa3e1a67a10cfef,2
|
|
1035
|
+
np.float64,0x800faf292b7f5e52,0xaaa40675e0c96cfd,2
|
|
1036
|
+
np.float64,0xbfedc238453b8470,0xbfef3c179d2d0209,2
|
|
1037
|
+
np.float64,0x3feb0443c5760888,0x3fee3e8bf29089c2,2
|
|
1038
|
+
np.float64,0xb26f69e164ded,0x2aa1df9f3dd7d765,2
|
|
1039
|
+
np.float64,0x3fcacdc053359b80,0x3fe300a67765b667,2
|
|
1040
|
+
np.float64,0x3fe8b274647164e8,0x3fed5a4cd4da8155,2
|
|
1041
|
+
np.float64,0x291e6782523ce,0x2a95ea7ac1b13a68,2
|
|
1042
|
+
np.float64,0xbfc4fc094e29f814,0xbfe1838671fc8513,2
|
|
1043
|
+
np.float64,0x3fbf1301f23e2600,0x3fdfb03a6f13e597,2
|
|
1044
|
+
np.float64,0xffeb36554ab66caa,0xd543193d8181e4f9,2
|
|
1045
|
+
np.float64,0xbfd969a52db2d34a,0xbfe78528ae61f16d,2
|
|
1046
|
+
np.float64,0x800cccd04d3999a1,0xaaa2b6b7a2d2d2d6,2
|
|
1047
|
+
np.float64,0x808eb4cb011d7,0x2aa005effecb2b4a,2
|
|
1048
|
+
np.float64,0x7fe839b3f9b07367,0x55425f61e344cd6d,2
|
|
1049
|
+
np.float64,0xbfeb25b6ed764b6e,0xbfee4b0234fee365,2
|
|
1050
|
+
np.float64,0xffefffffffffffff,0xd54428a2f98d728b,2
|
|
1051
|
+
np.float64,0xbfe01305da60260c,0xbfe9700b784af7e9,2
|
|
1052
|
+
np.float64,0xffcbf36b0a37e6d8,0xd538474b1d74ffe1,2
|
|
1053
|
+
np.float64,0xffaeebe3e83dd7c0,0xd52fa2e8dabf7209,2
|
|
1054
|
+
np.float64,0xbfd9913bf0b32278,0xbfe7915907aab13c,2
|
|
1055
|
+
np.float64,0xbfe7d125d9efa24c,0xbfecfff563177706,2
|
|
1056
|
+
np.float64,0xbfee98d23cbd31a4,0xbfef867ae393e446,2
|
|
1057
|
+
np.float64,0x3fe30efb67e61df6,0x3feaec6344633d11,2
|
|
1058
|
+
np.float64,0x1,0x2990000000000000,2
|
|
1059
|
+
np.float64,0x7fd5524fd3aaa49f,0x553bf30d18ab877e,2
|
|
1060
|
+
np.float64,0xc98b403f93168,0x2aa29d2fadb13c07,2
|
|
1061
|
+
np.float64,0xffe57080046ae100,0xd541a3b1b687360e,2
|
|
1062
|
+
np.float64,0x7fe20bade5e4175b,0x5540a79b94294f40,2
|
|
1063
|
+
np.float64,0x3fe155400a22aa80,0x3fea15c45f5b5837,2
|
|
1064
|
+
np.float64,0x7fe428dc8f6851b8,0x554147fd2ce93cc1,2
|
|
1065
|
+
np.float64,0xffefb77eb67f6efc,0xd544195dcaff4980,2
|
|
1066
|
+
np.float64,0x3fe49e733b293ce6,0x3feba394b833452a,2
|
|
1067
|
+
np.float64,0x38e01e3e71c05,0x2a986b2c955bad21,2
|
|
1068
|
+
np.float64,0x7fe735eb376e6bd5,0x55421cc51290d92d,2
|
|
1069
|
+
np.float64,0xbfd81d8644b03b0c,0xbfe71ce6d6fbd51a,2
|
|
1070
|
+
np.float64,0x8009a32325134647,0xaaa10645d0e6b0d7,2
|
|
1071
|
+
np.float64,0x56031ab8ac064,0x2a9c074be40b1f80,2
|
|
1072
|
+
np.float64,0xff8989aa30331340,0xd522b2d319a0ac6e,2
|
|
1073
|
+
np.float64,0xbfd6c183082d8306,0xbfe6ab8ffb3a8293,2
|
|
1074
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,2
|
|
1075
|
+
np.float64,0xbfe17b68b1e2f6d2,0xbfea28dac8e0c457,2
|
|
1076
|
+
np.float64,0x3fbb50e42236a1c8,0x3fde5b090d51e3bd,2
|
|
1077
|
+
np.float64,0xffc2bb7cbf2576f8,0xd5353f1b3571c17f,2
|
|
1078
|
+
np.float64,0xbfe7576bca6eaed8,0xbfecce388241f47c,2
|
|
1079
|
+
np.float64,0x3fe7b52b04ef6a56,0x3fecf495bef99e7e,2
|
|
1080
|
+
np.float64,0xffe5511af82aa236,0xd5419b11524e8350,2
|
|
1081
|
+
np.float64,0xbfe66d5edf2cdabe,0xbfec6ca7d7b5be8c,2
|
|
1082
|
+
np.float64,0xc84a0ba790942,0x2aa29346f16a2cb4,2
|
|
1083
|
+
np.float64,0x6db5e7a0db6be,0x2a9e659c0e8244a0,2
|
|
1084
|
+
np.float64,0x7fef8f7b647f1ef6,0x554410e67af75d27,2
|
|
1085
|
+
np.float64,0xbfe2b4ada7e5695c,0xbfeac1997ec5a064,2
|
|
1086
|
+
np.float64,0xbfe99372e03326e6,0xbfedb2662b287543,2
|
|
1087
|
+
np.float64,0x3fa45d352428ba6a,0x3fd5d8a895423abb,2
|
|
1088
|
+
np.float64,0x3fa029695c2052d3,0x3fd439f858998886,2
|
|
1089
|
+
np.float64,0xffe0a9bd3261537a,0xd54037d0cd8bfcda,2
|
|
1090
|
+
np.float64,0xbfef83e09a7f07c1,0xbfefd66a4070ce73,2
|
|
1091
|
+
np.float64,0x7fee3dcc31fc7b97,0x5543c8503869407e,2
|
|
1092
|
+
np.float64,0xffbd16f1603a2de0,0xd533872fa5be978b,2
|
|
1093
|
+
np.float64,0xbfe8173141b02e62,0xbfed1c478614c6f4,2
|
|
1094
|
+
np.float64,0xbfef57aa277eaf54,0xbfefc77fdab27771,2
|
|
1095
|
+
np.float64,0x7fe883a02f31073f,0x554271ff0e3208da,2
|
|
1096
|
+
np.float64,0xe3adb63bc75b7,0x2aa362d833d0e41c,2
|
|
1097
|
+
np.float64,0x8001c430bac38862,0xaa93575026d26510,2
|
|
1098
|
+
np.float64,0x12fb347225f67,0x2a90f00eb9edb3fe,2
|
|
1099
|
+
np.float64,0x3fe53f83cbaa7f08,0x3febead40de452c2,2
|
|
1100
|
+
np.float64,0xbfe7f67227efece4,0xbfed0f10e32ad220,2
|
|
1101
|
+
np.float64,0xb8c5b45d718b7,0x2aa2152912cda86d,2
|
|
1102
|
+
np.float64,0x3fd23bb734a4776e,0x3fe50e5d3008c095,2
|
|
1103
|
+
np.float64,0x8001fd558ee3faac,0xaa941faa1f7ed450,2
|
|
1104
|
+
np.float64,0xffe6bbeda9ed77db,0xd541fcd185a63afa,2
|
|
1105
|
+
np.float64,0x4361d79086c3c,0x2a99d692237c30b7,2
|
|
1106
|
+
np.float64,0xbfd012f004a025e0,0xbfe43093e290fd0d,2
|
|
1107
|
+
np.float64,0xffe1d8850423b10a,0xd54097cf79d8d01e,2
|
|
1108
|
+
np.float64,0x3fccf4df7939e9bf,0x3fe37f8cf8be6436,2
|
|
1109
|
+
np.float64,0x8000546bc6c0a8d8,0xaa861bb3588556f2,2
|
|
1110
|
+
np.float64,0xbfecb4d6ba7969ae,0xbfeedcb6239135fe,2
|
|
1111
|
+
np.float64,0xbfaeb425cc3d6850,0xbfd90cfc103bb896,2
|
|
1112
|
+
np.float64,0x800ec037ec7d8070,0xaaa39eae8bde9774,2
|
|
1113
|
+
np.float64,0xbfeeaf863dfd5f0c,0xbfef8e4514772a8a,2
|
|
1114
|
+
np.float64,0xffec67c6c4b8cf8d,0xd5435fad89f900cf,2
|
|
1115
|
+
np.float64,0x3fda4498da348932,0x3fe7c7f6b3f84048,2
|
|
1116
|
+
np.float64,0xbfd05fd3dea0bfa8,0xbfe4509265a9b65f,2
|
|
1117
|
+
np.float64,0x3fe42cc713a8598e,0x3feb706ba9cd533c,2
|
|
1118
|
+
np.float64,0xec22d4d7d845b,0x2aa39f8cccb9711c,2
|
|
1119
|
+
np.float64,0x7fda30606c3460c0,0x553deea865065196,2
|
|
1120
|
+
np.float64,0xbfd58cba8bab1976,0xbfe64327ce32d611,2
|
|
1121
|
+
np.float64,0xadd521c75baa4,0x2aa1b7efce201a98,2
|
|
1122
|
+
np.float64,0x7fed43c1027a8781,0x55439131832b6429,2
|
|
1123
|
+
np.float64,0x800bee278fb7dc4f,0xaaa247a71e776db4,2
|
|
1124
|
+
np.float64,0xbfe9be5dd2737cbc,0xbfedc2f9501755b0,2
|
|
1125
|
+
np.float64,0x8003f4854447e90b,0xaa994d9b5372b13b,2
|
|
1126
|
+
np.float64,0xbfe5d0f867eba1f1,0xbfec29f8dd8b33a4,2
|
|
1127
|
+
np.float64,0x3fd79102d5af2206,0x3fe6efaa7a1efddb,2
|
|
1128
|
+
np.float64,0xbfeae783c835cf08,0xbfee33cdb4a44e81,2
|
|
1129
|
+
np.float64,0x3fcf1713e83e2e28,0x3fe3f7414753ddfb,2
|
|
1130
|
+
np.float64,0xffe5ab3cff2b567a,0xd541b3bf0213274a,2
|
|
1131
|
+
np.float64,0x7fe0fc65d8a1f8cb,0x554052761ac96386,2
|
|
1132
|
+
np.float64,0x7e81292efd026,0x2a9fdff8c01ae86f,2
|
|
1133
|
+
np.float64,0x80091176039222ec,0xaaa0aebf0565dfa6,2
|
|
1134
|
+
np.float64,0x800d2bf5ab5a57ec,0xaaa2e4a4c31e7e29,2
|
|
1135
|
+
np.float64,0xffd1912ea923225e,0xd53a33b2856726ab,2
|
|
1136
|
+
np.float64,0x800869918ed0d323,0xaaa0453408e1295d,2
|
|
1137
|
+
np.float64,0xffba0898fa341130,0xd532d19b202a9646,2
|
|
1138
|
+
np.float64,0xbfe09fac29613f58,0xbfe9b9687b5811a1,2
|
|
1139
|
+
np.float64,0xbfbd4ae82e3a95d0,0xbfdf1220f6f0fdfa,2
|
|
1140
|
+
np.float64,0xffea11d27bb423a4,0xd542d3d3e1522474,2
|
|
1141
|
+
np.float64,0xbfe6b05705ad60ae,0xbfec88d6bcab2683,2
|
|
1142
|
+
np.float64,0x3fe624a3f2ec4948,0x3fec4dcc78ddf871,2
|
|
1143
|
+
np.float64,0x53483018a6907,0x2a9bba8f92006b69,2
|
|
1144
|
+
np.float64,0xbfec0a6eeb7814de,0xbfee9f2a741248d7,2
|
|
1145
|
+
np.float64,0x3fe8c8ce6371919d,0x3fed63250c643482,2
|
|
1146
|
+
np.float64,0xbfe26b0ef964d61e,0xbfea9e511db83437,2
|
|
1147
|
+
np.float64,0xffa0408784208110,0xd52987f62c369ae9,2
|
|
1148
|
+
np.float64,0xffc153abc322a758,0xd534b384b5c5fe63,2
|
|
1149
|
+
np.float64,0xbfbdce88a63b9d10,0xbfdf4065ef0b01d4,2
|
|
1150
|
+
np.float64,0xffed4a4136fa9482,0xd54392a450f8b0af,2
|
|
1151
|
+
np.float64,0x8007aa18748f5432,0xaa9f8bd2226d4299,2
|
|
1152
|
+
np.float64,0xbfdab4d3e8b569a8,0xbfe7e9a5402540e5,2
|
|
1153
|
+
np.float64,0x7fe68914f92d1229,0x5541ef5e78fa35de,2
|
|
1154
|
+
np.float64,0x800a538bb1b4a718,0xaaa16bc487711295,2
|
|
1155
|
+
np.float64,0xffe02edbc8605db7,0xd5400f8f713df890,2
|
|
1156
|
+
np.float64,0xffe8968053712d00,0xd54276b9cc7f460a,2
|
|
1157
|
+
np.float64,0x800a4ce211d499c5,0xaaa1680491deb40c,2
|
|
1158
|
+
np.float64,0x3f988080f8310102,0x3fd2713691e99329,2
|
|
1159
|
+
np.float64,0xf64e42a7ec9c9,0x2aa3e6a7af780878,2
|
|
1160
|
+
np.float64,0xff73cc7100279900,0xd51b4478c3409618,2
|
|
1161
|
+
np.float64,0x71e6722ce3ccf,0x2a9ec76ddf296ce0,2
|
|
1162
|
+
np.float64,0x8006ca16ab0d942e,0xaa9e4bfd862af570,2
|
|
1163
|
+
np.float64,0x8000000000000000,0x8000000000000000,2
|
|
1164
|
+
np.float64,0xbfed373e02ba6e7c,0xbfef0b2b7bb767b3,2
|
|
1165
|
+
np.float64,0xa6cb0f694d962,0x2aa179dd16b0242b,2
|
|
1166
|
+
np.float64,0x7fec14626cf828c4,0x55434ca55b7c85d5,2
|
|
1167
|
+
np.float64,0x3fcda404513b4808,0x3fe3a68e8d977752,2
|
|
1168
|
+
np.float64,0xbfeb94995f772933,0xbfee74091d288b81,2
|
|
1169
|
+
np.float64,0x3fce2299a13c4530,0x3fe3c2603f28d23b,2
|
|
1170
|
+
np.float64,0xffd07f4534a0fe8a,0xd539a8a6ebc5a603,2
|
|
1171
|
+
np.float64,0x7fdb1c651e3638c9,0x553e478a6385c86b,2
|
|
1172
|
+
np.float64,0x3fec758336f8eb06,0x3feec5f3b92c8b28,2
|
|
1173
|
+
np.float64,0x796fc87cf2dfa,0x2a9f7184a4ad8c49,2
|
|
1174
|
+
np.float64,0x3fef9ba866ff3750,0x3fefde6a446fc2cd,2
|
|
1175
|
+
np.float64,0x964d26c72c9a5,0x2aa0e143f1820179,2
|
|
1176
|
+
np.float64,0xbfef6af750bed5ef,0xbfefce04870a97bd,2
|
|
1177
|
+
np.float64,0x3fe2f3961aa5e72c,0x3feadf769321a3ff,2
|
|
1178
|
+
np.float64,0xbfd6b706e9ad6e0e,0xbfe6a8141c5c3b5d,2
|
|
1179
|
+
np.float64,0x7fe0ecc40a21d987,0x55404d72c2b46a82,2
|
|
1180
|
+
np.float64,0xbfe560d19deac1a3,0xbfebf962681a42a4,2
|
|
1181
|
+
np.float64,0xbfea37170ab46e2e,0xbfedf136ee9df02b,2
|
|
1182
|
+
np.float64,0xbfebf78947b7ef12,0xbfee9847ef160257,2
|
|
1183
|
+
np.float64,0x800551f8312aa3f1,0xaa9bee7d3aa5491b,2
|
|
1184
|
+
np.float64,0xffed2513897a4a26,0xd5438a58c4ae28ec,2
|
|
1185
|
+
np.float64,0x7fd962d75cb2c5ae,0x553d9f8a0c2016f3,2
|
|
1186
|
+
np.float64,0x3fefdd8512bfbb0a,0x3feff47d8da7424d,2
|
|
1187
|
+
np.float64,0xbfefa5b43bff4b68,0xbfefe1ca42867af0,2
|
|
1188
|
+
np.float64,0xbfc8a2853531450c,0xbfe279bb7b965729,2
|
|
1189
|
+
np.float64,0x800c8843bc391088,0xaaa2951344e7b29b,2
|
|
1190
|
+
np.float64,0x7fe22587bae44b0e,0x5540af8bb58cfe86,2
|
|
1191
|
+
np.float64,0xbfe159fae822b3f6,0xbfea182394eafd8d,2
|
|
1192
|
+
np.float64,0xbfe6fdfd50edfbfa,0xbfeca93f2a3597d0,2
|
|
1193
|
+
np.float64,0xbfe5cd5afaeb9ab6,0xbfec286a8ce0470f,2
|
|
1194
|
+
np.float64,0xbfc84bb97f309774,0xbfe263ef0f8f1f6e,2
|
|
1195
|
+
np.float64,0x7fd9c1e548b383ca,0x553dc4556874ecb9,2
|
|
1196
|
+
np.float64,0x7fda43d33bb487a5,0x553df60f61532fc0,2
|
|
1197
|
+
np.float64,0xbfe774bd25eee97a,0xbfecda42e8578c1f,2
|
|
1198
|
+
np.float64,0x800df1f5ab9be3ec,0xaaa34184712e69db,2
|
|
1199
|
+
np.float64,0xbff0000000000000,0xbff0000000000000,2
|
|
1200
|
+
np.float64,0x3fe14ec21b629d84,0x3fea128244215713,2
|
|
1201
|
+
np.float64,0x7fc1ce7843239cf0,0x5534e3fa8285b7b8,2
|
|
1202
|
+
np.float64,0xbfe922b204724564,0xbfed86818687d649,2
|
|
1203
|
+
np.float64,0x3fc58924fb2b1248,0x3fe1aa715ff6ebbf,2
|
|
1204
|
+
np.float64,0x8008b637e4d16c70,0xaaa0760b53abcf46,2
|
|
1205
|
+
np.float64,0xffbf55bd4c3eab78,0xd53404a23091a842,2
|
|
1206
|
+
np.float64,0x9f6b4a753ed6a,0x2aa136ef9fef9596,2
|
|
1207
|
+
np.float64,0xbfd11da7f8a23b50,0xbfe49deb493710d8,2
|
|
1208
|
+
np.float64,0x800a2f07fcd45e10,0xaaa157237c98b4f6,2
|
|
1209
|
+
np.float64,0x3fdd4defa4ba9bdf,0x3fe8aa0bcf895f4f,2
|
|
1210
|
+
np.float64,0x7fe9b0ab05f36155,0x5542bc5335414473,2
|
|
1211
|
+
np.float64,0x3fe89c97de313930,0x3fed51a1189b8982,2
|
|
1212
|
+
np.float64,0x3fdd45c8773a8b91,0x3fe8a7c2096fbf5a,2
|
|
1213
|
+
np.float64,0xbfeb6f64daf6deca,0xbfee665167ef43ad,2
|
|
1214
|
+
np.float64,0xffdf9da1c4bf3b44,0xd53fdf141944a983,2
|
|
1215
|
+
np.float64,0x3fde092ed0bc125c,0x3fe8de25bfbfc2db,2
|
|
1216
|
+
np.float64,0xbfcb21f96b3643f4,0xbfe3147904c258cf,2
|
|
1217
|
+
np.float64,0x800c9c934f993927,0xaaa29f17c43f021b,2
|
|
1218
|
+
np.float64,0x9b91814d37230,0x2aa11329e59bf6b0,2
|
|
1219
|
+
np.float64,0x3fe28a7e0b6514fc,0x3feaad6d23e2eadd,2
|
|
1220
|
+
np.float64,0xffecf38395f9e706,0xd5437f3ee1cd61e4,2
|
|
1221
|
+
np.float64,0x3fcade92a935bd25,0x3fe3049f4c1da1d0,2
|
|
1222
|
+
np.float64,0x800ab25d95d564bc,0xaaa1a076d7c66e04,2
|
|
1223
|
+
np.float64,0xffc0989e1e21313c,0xd53467f3b8158298,2
|
|
1224
|
+
np.float64,0x3fd81523eeb02a48,0x3fe71a38d2da8a82,2
|
|
1225
|
+
np.float64,0x7fe5b9dd402b73ba,0x5541b7b9b8631010,2
|
|
1226
|
+
np.float64,0x2c160d94582c3,0x2a966e51b503a3d1,2
|
|
1227
|
+
np.float64,0x2c416ffa5882f,0x2a9675aaef8b29c4,2
|
|
1228
|
+
np.float64,0x7fefe2ff01bfc5fd,0x55442289faf22b86,2
|
|
1229
|
+
np.float64,0xbfd469bf5d28d37e,0xbfe5dd239ffdc7eb,2
|
|
1230
|
+
np.float64,0xbfdd56f3eabaade8,0xbfe8ac93244ca17b,2
|
|
1231
|
+
np.float64,0xbfe057b89160af71,0xbfe9941557340bb3,2
|
|
1232
|
+
np.float64,0x800c50e140b8a1c3,0xaaa2798ace9097ee,2
|
|
1233
|
+
np.float64,0xbfda5a8984b4b514,0xbfe7ce93d65a56b0,2
|
|
1234
|
+
np.float64,0xbfcd6458323ac8b0,0xbfe39872514127bf,2
|
|
1235
|
+
np.float64,0x3fefb1f5ebff63ec,0x3fefe5e761b49b89,2
|
|
1236
|
+
np.float64,0x3fea3abc1df47578,0x3fedf29a1c997863,2
|
|
1237
|
+
np.float64,0x7fcb4a528e3694a4,0x553815f169667213,2
|
|
1238
|
+
np.float64,0x8c77da7b18efc,0x2aa080e52bdedb54,2
|
|
1239
|
+
np.float64,0x800e5dde4c5cbbbd,0xaaa372b16fd8b1ad,2
|
|
1240
|
+
np.float64,0x3fd2976038a52ec0,0x3fe5316b4f79fdbc,2
|
|
1241
|
+
np.float64,0x69413a0ed2828,0x2a9dfacd9cb44286,2
|
|
1242
|
+
np.float64,0xbfebbac0bdb77582,0xbfee820d9288b631,2
|
|
1243
|
+
np.float64,0x1a12aa7c34256,0x2a92d407e073bbfe,2
|
|
1244
|
+
np.float64,0xbfc41a27c3283450,0xbfe143c8665b0d3c,2
|
|
1245
|
+
np.float64,0xffe4faa41369f548,0xd54183230e0ce613,2
|
|
1246
|
+
np.float64,0xbfdeae81f23d5d04,0xbfe90b734bf35b68,2
|
|
1247
|
+
np.float64,0x3fc984ba58330975,0x3fe2b19e9052008e,2
|
|
1248
|
+
np.float64,0x7fe6e51b8d2dca36,0x554207a74ae2bb39,2
|
|
1249
|
+
np.float64,0x80081a58a81034b2,0xaaa0117d4aff11c8,2
|
|
1250
|
+
np.float64,0x7fde3fddfe3c7fbb,0x553f67d0082acc67,2
|
|
1251
|
+
np.float64,0x3fac7c999038f933,0x3fd86ec2f5dc3aa4,2
|
|
1252
|
+
np.float64,0x7fa26b4c4c24d698,0x552a9e6ea8545c18,2
|
|
1253
|
+
np.float64,0x3fdacd06e6b59a0e,0x3fe7f0dc0e8f9c6d,2
|
|
1254
|
+
np.float64,0x80064b62cbec96c6,0xaa9d8ac0506fdd05,2
|
|
1255
|
+
np.float64,0xb858116170b1,0x2a8caea703d9ccc8,2
|
|
1256
|
+
np.float64,0xbfe8d94ccef1b29a,0xbfed69a8782cbf3d,2
|
|
1257
|
+
np.float64,0x8005607d6a6ac0fc,0xaa9c07cf8620b037,2
|
|
1258
|
+
np.float64,0xbfe66a52daacd4a6,0xbfec6b5e403e6864,2
|
|
1259
|
+
np.float64,0x7fc398c2e0273185,0x5535918245894606,2
|
|
1260
|
+
np.float64,0x74b2d7dce965c,0x2a9f077020defdbc,2
|
|
1261
|
+
np.float64,0x7fe8f7a4d9b1ef49,0x55428eeae210e8eb,2
|
|
1262
|
+
np.float64,0x80027deddc84fbdc,0xaa95b11ff9089745,2
|
|
1263
|
+
np.float64,0xffeba2a94e774552,0xd5433273f6568902,2
|
|
1264
|
+
np.float64,0x80002f8259405f05,0xaa8240b68d7b9dc4,2
|
|
1265
|
+
np.float64,0xbfdf0d84883e1b0a,0xbfe92532c69c5802,2
|
|
1266
|
+
np.float64,0xbfcdfa7b6b3bf4f8,0xbfe3b997a84d0914,2
|
|
1267
|
+
np.float64,0x800c18b04e183161,0xaaa25d46d60b15c6,2
|
|
1268
|
+
np.float64,0xffeaf1e37c35e3c6,0xd543092cd929ac19,2
|
|
1269
|
+
np.float64,0xbfc5aa07752b5410,0xbfe1b36ab5ec741f,2
|
|
1270
|
+
np.float64,0x3fe5c491d1eb8924,0x3fec24a1c3f6a178,2
|
|
1271
|
+
np.float64,0xbfeb736937f6e6d2,0xbfee67cd296e6fa9,2
|
|
1272
|
+
np.float64,0xffec3d5718787aad,0xd5435602e1a2cc43,2
|
|
1273
|
+
np.float64,0x7fe71e1da86e3c3a,0x55421691ead882cb,2
|
|
1274
|
+
np.float64,0x3fdd6ed0c93adda2,0x3fe8b341d066c43c,2
|
|
1275
|
+
np.float64,0x7fbe3d7a203c7af3,0x5533c83e53283430,2
|
|
1276
|
+
np.float64,0x3fdc20cb56384197,0x3fe854676360aba9,2
|
|
1277
|
+
np.float64,0xb7a1ac636f436,0x2aa20b9d40d66e78,2
|
|
1278
|
+
np.float64,0x3fb1491bb8229237,0x3fda0fabad1738ee,2
|
|
1279
|
+
np.float64,0xbfdf9c0ce73f381a,0xbfe94b716dbe35ee,2
|
|
1280
|
+
np.float64,0xbfbd4f0ad23a9e18,0xbfdf1397329a2dce,2
|
|
1281
|
+
np.float64,0xbfe4e0caac69c196,0xbfebc119b8a181cd,2
|
|
1282
|
+
np.float64,0x5753641aaea6d,0x2a9c2ba3e92b0cd2,2
|
|
1283
|
+
np.float64,0x72bb814ae5771,0x2a9eda92fada66de,2
|
|
1284
|
+
np.float64,0x57ed8f5aafdb3,0x2a9c3c2e1d42e609,2
|
|
1285
|
+
np.float64,0xffec33359c38666a,0xd54353b2acd0daf1,2
|
|
1286
|
+
np.float64,0x3fa5fe6e8c2bfce0,0x3fd66a0b3bf2720a,2
|
|
1287
|
+
np.float64,0xffe2dc8d7ca5b91a,0xd540e6ebc097d601,2
|
|
1288
|
+
np.float64,0x7fd99d260eb33a4b,0x553db626c9c75f78,2
|
|
1289
|
+
np.float64,0xbfe2dd73e425bae8,0xbfead4fc4b93a727,2
|
|
1290
|
+
np.float64,0xdcd4a583b9a95,0x2aa33094c9a17ad7,2
|
|
1291
|
+
np.float64,0x7fb0af6422215ec7,0x553039a606e8e64f,2
|
|
1292
|
+
np.float64,0x7fdfab6227bf56c3,0x553fe3b26164aeda,2
|
|
1293
|
+
np.float64,0x1e4d265e3c9a6,0x2a93cba8a1a8ae6d,2
|
|
1294
|
+
np.float64,0xbfdc7d097238fa12,0xbfe86ee2f24fd473,2
|
|
1295
|
+
np.float64,0x7fe5d35d29eba6b9,0x5541bea5878bce2b,2
|
|
1296
|
+
np.float64,0xffcb886a903710d4,0xd53828281710aab5,2
|
|
1297
|
+
np.float64,0xffe058c7ffe0b190,0xd5401d61e9a7cbcf,2
|
|
1298
|
+
np.float64,0x3ff0000000000000,0x3ff0000000000000,2
|
|
1299
|
+
np.float64,0xffd5b1c1132b6382,0xd53c1c839c098340,2
|
|
1300
|
+
np.float64,0x3fe2e7956725cf2b,0x3fead9c907b9d041,2
|
|
1301
|
+
np.float64,0x800a8ee293951dc6,0xaaa18ce3f079f118,2
|
|
1302
|
+
np.float64,0x7febcd3085b79a60,0x55433c47e1f822ad,2
|
|
1303
|
+
np.float64,0x3feb0e14cd761c2a,0x3fee423542102546,2
|
|
1304
|
+
np.float64,0x3fb45e6d0628bcda,0x3fdb86db67d0c992,2
|
|
1305
|
+
np.float64,0x7fa836e740306dce,0x552d2907cb8118b2,2
|
|
1306
|
+
np.float64,0x3fd15ba25b22b745,0x3fe4b6b018409d78,2
|
|
1307
|
+
np.float64,0xbfb59980ce2b3300,0xbfdc1206274cb51d,2
|
|
1308
|
+
np.float64,0x3fdef1b87fbde371,0x3fe91dafc62124a1,2
|
|
1309
|
+
np.float64,0x7fed37a4337a6f47,0x55438e7e0b50ae37,2
|
|
1310
|
+
np.float64,0xffe6c87633ad90ec,0xd542001f216ab448,2
|
|
1311
|
+
np.float64,0x8008d2548ab1a4a9,0xaaa087ad272d8e17,2
|
|
1312
|
+
np.float64,0xbfd1d6744da3ace8,0xbfe4e71965adda74,2
|
|
1313
|
+
np.float64,0xbfb27f751224fee8,0xbfdaa82132775406,2
|
|
1314
|
+
np.float64,0x3fe2b336ae65666d,0x3feac0e6b13ec2d2,2
|
|
1315
|
+
np.float64,0xffc6bac2262d7584,0xd536a951a2eecb49,2
|
|
1316
|
+
np.float64,0x7fdb661321b6cc25,0x553e62dfd7fcd3f3,2
|
|
1317
|
+
np.float64,0xffe83567d5706acf,0xd5425e4bb5027568,2
|
|
1318
|
+
np.float64,0xbf7f0693e03e0d00,0xbfc9235314d53f82,2
|
|
1319
|
+
np.float64,0x3feb32b218766564,0x3fee4fd5847f3722,2
|
|
1320
|
+
np.float64,0x3fec25d33df84ba6,0x3feea91fcd4aebab,2
|
|
1321
|
+
np.float64,0x7fe17abecb22f57d,0x55407a8ba661207c,2
|
|
1322
|
+
np.float64,0xbfe5674b1eeace96,0xbfebfc351708dc70,2
|
|
1323
|
+
np.float64,0xbfe51a2d2f6a345a,0xbfebda702c9d302a,2
|
|
1324
|
+
np.float64,0x3fec05584af80ab0,0x3fee9d502a7bf54d,2
|
|
1325
|
+
np.float64,0xffda8871dcb510e4,0xd53e10105f0365b5,2
|
|
1326
|
+
np.float64,0xbfc279c31824f388,0xbfe0c9354d871484,2
|
|
1327
|
+
np.float64,0x1cbed61e397dc,0x2a937364712cd518,2
|
|
1328
|
+
np.float64,0x800787d198af0fa4,0xaa9f5c847affa1d2,2
|
|
1329
|
+
np.float64,0x80079f6d65af3edc,0xaa9f7d2863368bbd,2
|
|
1330
|
+
np.float64,0xb942f1e97285e,0x2aa2193e0c513b7f,2
|
|
1331
|
+
np.float64,0x7fe9078263320f04,0x554292d85dee2c18,2
|
|
1332
|
+
np.float64,0xbfe4de0761a9bc0f,0xbfebbfe04116b829,2
|
|
1333
|
+
np.float64,0xbfdbe6f3fc37cde8,0xbfe843aea59a0749,2
|
|
1334
|
+
np.float64,0xffcb6c0de136d81c,0xd5381fd9c525b813,2
|
|
1335
|
+
np.float64,0x9b6bda9336d7c,0x2aa111c924c35386,2
|
|
1336
|
+
np.float64,0x3fe17eece422fdda,0x3fea2a9bacd78607,2
|
|
1337
|
+
np.float64,0xd8011c49b0024,0x2aa30c87574fc0c6,2
|
|
1338
|
+
np.float64,0xbfc0a08b3f214118,0xbfe034d48f0d8dc0,2
|
|
1339
|
+
np.float64,0x3fd60adb1eac15b8,0x3fe66e42e4e7e6b5,2
|
|
1340
|
+
np.float64,0x80011d68ea023ad3,0xaa909733befbb962,2
|
|
1341
|
+
np.float64,0xffb35ac32426b588,0xd5310c4be1c37270,2
|
|
1342
|
+
np.float64,0x3fee8b56c9bd16ae,0x3fef81d8d15f6939,2
|
|
1343
|
+
np.float64,0x3fdc10a45e382149,0x3fe84fbe4cf11e68,2
|
|
1344
|
+
np.float64,0xbfc85dc45e30bb88,0xbfe2687b5518abde,2
|
|
1345
|
+
np.float64,0x3fd53b85212a770a,0x3fe6270d6d920d0f,2
|
|
1346
|
+
np.float64,0x800fc158927f82b1,0xaaa40e303239586f,2
|
|
1347
|
+
np.float64,0x11af5e98235ed,0x2a908b04a790083f,2
|
|
1348
|
+
np.float64,0xbfe2a097afe54130,0xbfeab80269eece99,2
|
|
1349
|
+
np.float64,0xbfd74ac588ae958c,0xbfe6d8ca3828d0b8,2
|
|
1350
|
+
np.float64,0xffea18ab2ef43156,0xd542d579ab31df1e,2
|
|
1351
|
+
np.float64,0xbfecda7058f9b4e1,0xbfeeea29c33b7913,2
|
|
1352
|
+
np.float64,0x3fc4ac56ed2958b0,0x3fe16d3e2bd7806d,2
|
|
1353
|
+
np.float64,0x3feccc898cb99913,0x3feee531f217dcfa,2
|
|
1354
|
+
np.float64,0xffeb3a64c5b674c9,0xd5431a30a41f0905,2
|
|
1355
|
+
np.float64,0x3fe5a7ee212b4fdc,0x3fec1844af9076fc,2
|
|
1356
|
+
np.float64,0x80080fdb52301fb7,0xaaa00a8b4274db67,2
|
|
1357
|
+
np.float64,0x800b3e7e47d67cfd,0xaaa1ec2876959852,2
|
|
1358
|
+
np.float64,0x80063fb8ee2c7f73,0xaa9d7875c9f20d6f,2
|
|
1359
|
+
np.float64,0x7fdacf80d0b59f01,0x553e2acede4c62a8,2
|
|
1360
|
+
np.float64,0x401e9b24803d4,0x2a996a0a75d0e093,2
|
|
1361
|
+
np.float64,0x3fe6c29505ed852a,0x3fec907a6d8c10af,2
|
|
1362
|
+
np.float64,0x8005c04ee2cb809f,0xaa9caa9813faef46,2
|
|
1363
|
+
np.float64,0xbfe1360f21e26c1e,0xbfea06155d6985b6,2
|
|
1364
|
+
np.float64,0xffc70606682e0c0c,0xd536c239b9d4be0a,2
|
|
1365
|
+
np.float64,0x800e639afefcc736,0xaaa37547d0229a26,2
|
|
1366
|
+
np.float64,0x3fe5589290aab125,0x3febf5c925c4e6db,2
|
|
1367
|
+
np.float64,0x8003b59330276b27,0xaa98c47e44524335,2
|
|
1368
|
+
np.float64,0x800d67ec22dacfd8,0xaaa301251b6a730a,2
|
|
1369
|
+
np.float64,0x7fdaeb5025b5d69f,0x553e35397dfe87eb,2
|
|
1370
|
+
np.float64,0x3fdae32a24b5c654,0x3fe7f771bc108f6c,2
|
|
1371
|
+
np.float64,0xffe6c1fc93ad83f8,0xd541fe6a6a716756,2
|
|
1372
|
+
np.float64,0xbfd7b9c1d32f7384,0xbfe6fcdae563d638,2
|
|
1373
|
+
np.float64,0x800e1bea06fc37d4,0xaaa354c0bf61449c,2
|
|
1374
|
+
np.float64,0xbfd78f097aaf1e12,0xbfe6ef068329bdf4,2
|
|
1375
|
+
np.float64,0x7fea6a400874d47f,0x5542e905978ad722,2
|
|
1376
|
+
np.float64,0x8008b4377cb1686f,0xaaa074c87eee29f9,2
|
|
1377
|
+
np.float64,0x8002f3fb8d45e7f8,0xaa96f47ac539b614,2
|
|
1378
|
+
np.float64,0xbfcf2b3fd13e5680,0xbfe3fb91c0cc66ad,2
|
|
1379
|
+
np.float64,0xffecca2f5279945e,0xd54375f361075927,2
|
|
1380
|
+
np.float64,0x7ff0000000000000,0x7ff0000000000000,2
|
|
1381
|
+
np.float64,0x7f84d5a5a029ab4a,0x552178d1d4e8640e,2
|
|
1382
|
+
np.float64,0x3fea8a4b64351497,0x3fee10c332440eb2,2
|
|
1383
|
+
np.float64,0x800fe01ac1dfc036,0xaaa41b34d91a4bee,2
|
|
1384
|
+
np.float64,0x3fc0b3d8872167b1,0x3fe03b178d354f8d,2
|
|
1385
|
+
np.float64,0x5ee8b0acbdd17,0x2a9cf69f2e317729,2
|
|
1386
|
+
np.float64,0x8006ef0407adde09,0xaa9e82888f3dd83e,2
|
|
1387
|
+
np.float64,0x7fdbb08a07b76113,0x553e7e4e35b938b9,2
|
|
1388
|
+
np.float64,0x49663f9c92cc9,0x2a9a95e0affe5108,2
|
|
1389
|
+
np.float64,0x7fd9b87e79b370fc,0x553dc0b5cff3dc7d,2
|
|
1390
|
+
np.float64,0xbfd86ae657b0d5cc,0xbfe73584d02bdd2b,2
|
|
1391
|
+
np.float64,0x3fd4d4a13729a942,0x3fe6030a962aaaf8,2
|
|
1392
|
+
np.float64,0x7fcc246bcb3848d7,0x5538557309449bba,2
|
|
1393
|
+
np.float64,0xbfdc86a7d5b90d50,0xbfe871a2983c2a29,2
|
|
1394
|
+
np.float64,0xd2a6e995a54dd,0x2aa2e3e9c0fdd6c0,2
|
|
1395
|
+
np.float64,0x3f92eb447825d680,0x3fd0eb4fd2ba16d2,2
|
|
1396
|
+
np.float64,0x800d4001697a8003,0xaaa2ee358661b75c,2
|
|
1397
|
+
np.float64,0x3fd3705fd1a6e0c0,0x3fe582a6f321d7d6,2
|
|
1398
|
+
np.float64,0xbfcfdf51533fbea4,0xbfe421c3bdd9f2a3,2
|
|
1399
|
+
np.float64,0x3fe268e87964d1d1,0x3fea9d47e08aad8a,2
|
|
1400
|
+
np.float64,0x24b8901e49713,0x2a951adeefe7b31b,2
|
|
1401
|
+
np.float64,0x3fedb35d687b66bb,0x3fef36e440850bf8,2
|
|
1402
|
+
np.float64,0x3fb7ab5cbe2f56c0,0x3fdcf097380721c6,2
|
|
1403
|
+
np.float64,0x3f8c4eaa10389d54,0x3fceb7ecb605b73b,2
|
|
1404
|
+
np.float64,0xbfed831ed6fb063e,0xbfef25f462a336f1,2
|
|
1405
|
+
np.float64,0x7fd8c52112318a41,0x553d61b0ee609f58,2
|
|
1406
|
+
np.float64,0xbfe71c4ff76e38a0,0xbfecb5d32e789771,2
|
|
1407
|
+
np.float64,0xbfe35fb7b166bf70,0xbfeb12328e75ee6b,2
|
|
1408
|
+
np.float64,0x458e1a3a8b1c4,0x2a9a1cebadc81342,2
|
|
1409
|
+
np.float64,0x8003c1b3ad478368,0xaa98df5ed060b28c,2
|
|
1410
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,2
|
|
1411
|
+
np.float64,0x7fe17098c162e131,0x5540775a9a3a104f,2
|
|
1412
|
+
np.float64,0xbfd95cb71732b96e,0xbfe7812acf7ea511,2
|
|
1413
|
+
np.float64,0x8000000000000001,0xa990000000000000,2
|
|
1414
|
+
np.float64,0xbfde0e7d9ebc1cfc,0xbfe8df9ca9e49a5b,2
|
|
1415
|
+
np.float64,0xffef4f67143e9ecd,0xd5440348a6a2f231,2
|
|
1416
|
+
np.float64,0x7fe37d23c826fa47,0x5541165de17caa03,2
|
|
1417
|
+
np.float64,0xbfcc0e5f85381cc0,0xbfe34b44b0deefe9,2
|
|
1418
|
+
np.float64,0x3fe858f1c470b1e4,0x3fed36ab90557d89,2
|
|
1419
|
+
np.float64,0x800e857278fd0ae5,0xaaa3847d13220545,2
|
|
1420
|
+
np.float64,0x3febd31a66f7a635,0x3fee8af90e66b043,2
|
|
1421
|
+
np.float64,0x7fd3fde1b127fbc2,0x553b5b186a49b968,2
|
|
1422
|
+
np.float64,0x3fd3dabb8b27b577,0x3fe5a99b446bed26,2
|
|
1423
|
+
np.float64,0xffeb4500f1768a01,0xd5431cab828e254a,2
|
|
1424
|
+
np.float64,0xffccca8fc6399520,0xd53884f8b505e79e,2
|
|
1425
|
+
np.float64,0xffeee9406b7dd280,0xd543ed6d27a1a899,2
|
|
1426
|
+
np.float64,0xffecdde0f0f9bbc1,0xd5437a6258b14092,2
|
|
1427
|
+
np.float64,0xe6b54005cd6a8,0x2aa378c25938dfda,2
|
|
1428
|
+
np.float64,0x7fe610f1022c21e1,0x5541cf460b972925,2
|
|
1429
|
+
np.float64,0xbfe5a170ec6b42e2,0xbfec1576081e3232,2
|