numpy 2.4.1__pp311-pypy311_pp73-macosx_14_0_arm64.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.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_multiarray_umath.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_rational_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_simd.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.pypy311-pp73-darwin.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.pyi +47 -0
- numpy/_core/_umath_tests.pypy311-pp73-darwin.so +0 -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 +377 -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 +1523 -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/distutils/__init__.py +64 -0
- numpy/distutils/__init__.pyi +4 -0
- numpy/distutils/__pycache__/conv_template.pypy311.pyc +0 -0
- numpy/distutils/_shell_utils.py +87 -0
- numpy/distutils/armccompiler.py +26 -0
- numpy/distutils/ccompiler.py +826 -0
- numpy/distutils/ccompiler_opt.py +2668 -0
- numpy/distutils/checks/cpu_asimd.c +27 -0
- numpy/distutils/checks/cpu_asimddp.c +16 -0
- numpy/distutils/checks/cpu_asimdfhm.c +19 -0
- numpy/distutils/checks/cpu_asimdhp.c +15 -0
- numpy/distutils/checks/cpu_avx.c +20 -0
- numpy/distutils/checks/cpu_avx2.c +20 -0
- numpy/distutils/checks/cpu_avx512_clx.c +22 -0
- numpy/distutils/checks/cpu_avx512_cnl.c +24 -0
- numpy/distutils/checks/cpu_avx512_icl.c +26 -0
- numpy/distutils/checks/cpu_avx512_knl.c +25 -0
- numpy/distutils/checks/cpu_avx512_knm.c +30 -0
- numpy/distutils/checks/cpu_avx512_skx.c +26 -0
- numpy/distutils/checks/cpu_avx512_spr.c +26 -0
- numpy/distutils/checks/cpu_avx512cd.c +20 -0
- numpy/distutils/checks/cpu_avx512f.c +20 -0
- numpy/distutils/checks/cpu_f16c.c +22 -0
- numpy/distutils/checks/cpu_fma3.c +22 -0
- numpy/distutils/checks/cpu_fma4.c +13 -0
- numpy/distutils/checks/cpu_lsx.c +11 -0
- numpy/distutils/checks/cpu_neon.c +19 -0
- numpy/distutils/checks/cpu_neon_fp16.c +11 -0
- numpy/distutils/checks/cpu_neon_vfpv4.c +21 -0
- numpy/distutils/checks/cpu_popcnt.c +32 -0
- numpy/distutils/checks/cpu_rvv.c +13 -0
- numpy/distutils/checks/cpu_sse.c +20 -0
- numpy/distutils/checks/cpu_sse2.c +20 -0
- numpy/distutils/checks/cpu_sse3.c +20 -0
- numpy/distutils/checks/cpu_sse41.c +20 -0
- numpy/distutils/checks/cpu_sse42.c +20 -0
- numpy/distutils/checks/cpu_ssse3.c +20 -0
- numpy/distutils/checks/cpu_sve.c +14 -0
- numpy/distutils/checks/cpu_vsx.c +21 -0
- numpy/distutils/checks/cpu_vsx2.c +13 -0
- numpy/distutils/checks/cpu_vsx3.c +13 -0
- numpy/distutils/checks/cpu_vsx4.c +14 -0
- numpy/distutils/checks/cpu_vx.c +16 -0
- numpy/distutils/checks/cpu_vxe.c +25 -0
- numpy/distutils/checks/cpu_vxe2.c +21 -0
- numpy/distutils/checks/cpu_xop.c +12 -0
- numpy/distutils/checks/extra_avx512bw_mask.c +18 -0
- numpy/distutils/checks/extra_avx512dq_mask.c +16 -0
- numpy/distutils/checks/extra_avx512f_reduce.c +41 -0
- numpy/distutils/checks/extra_vsx3_half_double.c +12 -0
- numpy/distutils/checks/extra_vsx4_mma.c +21 -0
- numpy/distutils/checks/extra_vsx_asm.c +36 -0
- numpy/distutils/checks/test_flags.c +1 -0
- numpy/distutils/command/__init__.py +41 -0
- numpy/distutils/command/autodist.py +148 -0
- numpy/distutils/command/bdist_rpm.py +22 -0
- numpy/distutils/command/build.py +62 -0
- numpy/distutils/command/build_clib.py +469 -0
- numpy/distutils/command/build_ext.py +752 -0
- numpy/distutils/command/build_py.py +31 -0
- numpy/distutils/command/build_scripts.py +49 -0
- numpy/distutils/command/build_src.py +773 -0
- numpy/distutils/command/config.py +516 -0
- numpy/distutils/command/config_compiler.py +126 -0
- numpy/distutils/command/develop.py +15 -0
- numpy/distutils/command/egg_info.py +25 -0
- numpy/distutils/command/install.py +79 -0
- numpy/distutils/command/install_clib.py +40 -0
- numpy/distutils/command/install_data.py +24 -0
- numpy/distutils/command/install_headers.py +25 -0
- numpy/distutils/command/sdist.py +27 -0
- numpy/distutils/conv_template.py +329 -0
- numpy/distutils/core.py +215 -0
- numpy/distutils/cpuinfo.py +683 -0
- numpy/distutils/exec_command.py +315 -0
- numpy/distutils/extension.py +101 -0
- numpy/distutils/fcompiler/__init__.py +1035 -0
- numpy/distutils/fcompiler/absoft.py +158 -0
- numpy/distutils/fcompiler/arm.py +71 -0
- numpy/distutils/fcompiler/compaq.py +120 -0
- numpy/distutils/fcompiler/environment.py +88 -0
- numpy/distutils/fcompiler/fujitsu.py +46 -0
- numpy/distutils/fcompiler/g95.py +42 -0
- numpy/distutils/fcompiler/gnu.py +555 -0
- numpy/distutils/fcompiler/hpux.py +41 -0
- numpy/distutils/fcompiler/ibm.py +97 -0
- numpy/distutils/fcompiler/intel.py +211 -0
- numpy/distutils/fcompiler/lahey.py +45 -0
- numpy/distutils/fcompiler/mips.py +54 -0
- numpy/distutils/fcompiler/nag.py +87 -0
- numpy/distutils/fcompiler/none.py +28 -0
- numpy/distutils/fcompiler/nv.py +53 -0
- numpy/distutils/fcompiler/pathf95.py +33 -0
- numpy/distutils/fcompiler/pg.py +128 -0
- numpy/distutils/fcompiler/sun.py +51 -0
- numpy/distutils/fcompiler/vast.py +52 -0
- numpy/distutils/from_template.py +261 -0
- numpy/distutils/fujitsuccompiler.py +28 -0
- numpy/distutils/intelccompiler.py +106 -0
- numpy/distutils/lib2def.py +116 -0
- numpy/distutils/line_endings.py +77 -0
- numpy/distutils/log.py +111 -0
- numpy/distutils/mingw/gfortran_vs2003_hack.c +6 -0
- numpy/distutils/mingw32ccompiler.py +620 -0
- numpy/distutils/misc_util.py +2484 -0
- numpy/distutils/msvc9compiler.py +63 -0
- numpy/distutils/msvccompiler.py +76 -0
- numpy/distutils/npy_pkg_config.py +441 -0
- numpy/distutils/numpy_distribution.py +17 -0
- numpy/distutils/pathccompiler.py +21 -0
- numpy/distutils/system_info.py +3267 -0
- numpy/distutils/tests/__init__.py +0 -0
- numpy/distutils/tests/test_build_ext.py +74 -0
- numpy/distutils/tests/test_ccompiler_opt.py +808 -0
- numpy/distutils/tests/test_ccompiler_opt_conf.py +176 -0
- numpy/distutils/tests/test_exec_command.py +217 -0
- numpy/distutils/tests/test_fcompiler.py +43 -0
- numpy/distutils/tests/test_fcompiler_gnu.py +55 -0
- numpy/distutils/tests/test_fcompiler_intel.py +30 -0
- numpy/distutils/tests/test_fcompiler_nagfor.py +22 -0
- numpy/distutils/tests/test_from_template.py +44 -0
- numpy/distutils/tests/test_log.py +34 -0
- numpy/distutils/tests/test_mingw32ccompiler.py +47 -0
- numpy/distutils/tests/test_misc_util.py +88 -0
- numpy/distutils/tests/test_npy_pkg_config.py +84 -0
- numpy/distutils/tests/test_shell_utils.py +79 -0
- numpy/distutils/tests/test_system_info.py +334 -0
- numpy/distutils/tests/utilities.py +90 -0
- numpy/distutils/unixccompiler.py +141 -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.pypy311-pp73-darwin.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 +5760 -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 +2006 -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 +4750 -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.pyi +60 -0
- numpy/linalg/_umath_linalg.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/lapack_lite.pypy311-pp73-darwin.so +0 -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.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_bounded_integers.pypy311-pp73-darwin.so +0 -0
- numpy/random/_common.pxd +110 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_common.pypy311-pp73-darwin.so +0 -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.pyi +862 -0
- numpy/random/_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_mt19937.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_pcg64.pypy311-pp73-darwin.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_philox.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/_sfc64.pypy311-pp73-darwin.so +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/bit_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/mtrand.pypy311-pp73-darwin.so +0 -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 +807 -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.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +1039 -0
- numpy-2.4.1.dist-info/WHEEL +6 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
|
@@ -0,0 +1,1629 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0x3f6fd5c8,0xbce80e8e,4
|
|
3
|
+
np.float32,0x3ea4ab17,0xbefc3deb,4
|
|
4
|
+
np.float32,0x3e87a133,0xbf13b0b7,4
|
|
5
|
+
np.float32,0x3f0d9069,0xbe83bb19,4
|
|
6
|
+
np.float32,0x3f7b9269,0xbbf84f47,4
|
|
7
|
+
np.float32,0x3f7a9ffa,0xbc16fd97,4
|
|
8
|
+
np.float32,0x7f535d34,0x4219cb66,4
|
|
9
|
+
np.float32,0x3e79ad7c,0xbf1ce857,4
|
|
10
|
+
np.float32,0x7e8bfd3b,0x4217dfe9,4
|
|
11
|
+
np.float32,0x3f2d2ee9,0xbe2dcec6,4
|
|
12
|
+
np.float32,0x572e04,0xc21862e4,4
|
|
13
|
+
np.float32,0x7f36f8,0xc217bad5,4
|
|
14
|
+
np.float32,0x3f7982fb,0xbc36aaed,4
|
|
15
|
+
np.float32,0x45b019,0xc218c67c,4
|
|
16
|
+
np.float32,0x3f521c46,0xbdafb3e3,4
|
|
17
|
+
np.float32,0x80000001,0x7fc00000,4
|
|
18
|
+
np.float32,0x3f336c81,0xbe1e107f,4
|
|
19
|
+
np.float32,0x3eac92d7,0xbef1d0bb,4
|
|
20
|
+
np.float32,0x47bdfc,0xc218b990,4
|
|
21
|
+
np.float32,0x7f2d94c8,0x421973d1,4
|
|
22
|
+
np.float32,0x7d53ff8d,0x4214fbb6,4
|
|
23
|
+
np.float32,0x3f581e4e,0xbd96a079,4
|
|
24
|
+
np.float32,0x7ddaf20d,0x42163e4e,4
|
|
25
|
+
np.float32,0x3f341d3c,0xbe1c5b4c,4
|
|
26
|
+
np.float32,0x7ef04ba9,0x4218d032,4
|
|
27
|
+
np.float32,0x620ed2,0xc2182e99,4
|
|
28
|
+
np.float32,0x507850,0xc2188682,4
|
|
29
|
+
np.float32,0x7d08f9,0xc217c284,4
|
|
30
|
+
np.float32,0x7f0cf2aa,0x42191734,4
|
|
31
|
+
np.float32,0x3f109a17,0xbe7e04fe,4
|
|
32
|
+
np.float32,0x7f426152,0x4219a625,4
|
|
33
|
+
np.float32,0x7f32d5a3,0x42198113,4
|
|
34
|
+
np.float32,0x2e14b2,0xc2197e6f,4
|
|
35
|
+
np.float32,0x3a5acd,0xc219156a,4
|
|
36
|
+
np.float32,0x50a565,0xc2188589,4
|
|
37
|
+
np.float32,0x5b751c,0xc2184d97,4
|
|
38
|
+
np.float32,0x7e4149f6,0x42173b22,4
|
|
39
|
+
np.float32,0x3dc34bf9,0xbf82a42a,4
|
|
40
|
+
np.float32,0x3d12bc28,0xbfb910d6,4
|
|
41
|
+
np.float32,0x7ebd2584,0x421865c1,4
|
|
42
|
+
np.float32,0x7f6b3375,0x4219faeb,4
|
|
43
|
+
np.float32,0x7fa00000,0x7fe00000,4
|
|
44
|
+
np.float32,0x3f35fe7d,0xbe17bd33,4
|
|
45
|
+
np.float32,0x7db45c87,0x4215e818,4
|
|
46
|
+
np.float32,0x3efff366,0xbe9a2b8d,4
|
|
47
|
+
np.float32,0x3eb331d0,0xbee971a3,4
|
|
48
|
+
np.float32,0x3f259d5f,0xbe41ae2e,4
|
|
49
|
+
np.float32,0x3eab85ec,0xbef32c4a,4
|
|
50
|
+
np.float32,0x7f194b8a,0x42193c8c,4
|
|
51
|
+
np.float32,0x3f11a614,0xbe7acfc7,4
|
|
52
|
+
np.float32,0x5b17,0xc221f16b,4
|
|
53
|
+
np.float32,0x3f33dadc,0xbe1cff4d,4
|
|
54
|
+
np.float32,0x3cda1506,0xbfc9920f,4
|
|
55
|
+
np.float32,0x3f6856f1,0xbd2c8290,4
|
|
56
|
+
np.float32,0x7f3357fb,0x42198257,4
|
|
57
|
+
np.float32,0x7f56f329,0x4219d2e1,4
|
|
58
|
+
np.float32,0x3ef84108,0xbea0f595,4
|
|
59
|
+
np.float32,0x3f72340f,0xbcc51916,4
|
|
60
|
+
np.float32,0x3daf28,0xc218fcbd,4
|
|
61
|
+
np.float32,0x131035,0xc21b06f4,4
|
|
62
|
+
np.float32,0x3f275c3b,0xbe3d0487,4
|
|
63
|
+
np.float32,0x3ef06130,0xbea82069,4
|
|
64
|
+
np.float32,0x3f57f3b0,0xbd974fef,4
|
|
65
|
+
np.float32,0x7f6c4a78,0x4219fcfa,4
|
|
66
|
+
np.float32,0x7e8421d0,0x4217c639,4
|
|
67
|
+
np.float32,0x3f17a479,0xbe68e08e,4
|
|
68
|
+
np.float32,0x7f03774e,0x4218f83b,4
|
|
69
|
+
np.float32,0x441a33,0xc218d0b8,4
|
|
70
|
+
np.float32,0x539158,0xc21875b6,4
|
|
71
|
+
np.float32,0x3e8fcc75,0xbf0d3018,4
|
|
72
|
+
np.float32,0x7ef74130,0x4218dce4,4
|
|
73
|
+
np.float32,0x3ea6f4fa,0xbef92c38,4
|
|
74
|
+
np.float32,0x7f3948ab,0x421990d5,4
|
|
75
|
+
np.float32,0x7db6f8f5,0x4215ee7c,4
|
|
76
|
+
np.float32,0x3ee44a2f,0xbeb399e5,4
|
|
77
|
+
np.float32,0x156c59,0xc21ad30d,4
|
|
78
|
+
np.float32,0x3f21ee53,0xbe4baf16,4
|
|
79
|
+
np.float32,0x3f2c08f4,0xbe30c424,4
|
|
80
|
+
np.float32,0x3f49885c,0xbdd4c6a9,4
|
|
81
|
+
np.float32,0x3eae0b9c,0xbeefed54,4
|
|
82
|
+
np.float32,0x1b5c1f,0xc21a6646,4
|
|
83
|
+
np.float32,0x3e7330e2,0xbf1fd592,4
|
|
84
|
+
np.float32,0x3ebbeb4c,0xbededf82,4
|
|
85
|
+
np.float32,0x427154,0xc218dbb1,4
|
|
86
|
+
np.float32,0x3f6b8b4b,0xbd142498,4
|
|
87
|
+
np.float32,0x8e769,0xc21c5981,4
|
|
88
|
+
np.float32,0x3e9db557,0xbf02ec1c,4
|
|
89
|
+
np.float32,0x3f001bef,0xbe99f019,4
|
|
90
|
+
np.float32,0x3e58b48c,0xbf2ca77a,4
|
|
91
|
+
np.float32,0x3d46c16b,0xbfa8327c,4
|
|
92
|
+
np.float32,0x7eeeb305,0x4218cd3b,4
|
|
93
|
+
np.float32,0x3e3f163d,0xbf3aa446,4
|
|
94
|
+
np.float32,0x3f66c872,0xbd3877d9,4
|
|
95
|
+
np.float32,0x7f7162f8,0x421a0677,4
|
|
96
|
+
np.float32,0x3edca3bc,0xbebb2e28,4
|
|
97
|
+
np.float32,0x3dc1055b,0xbf834afa,4
|
|
98
|
+
np.float32,0x12b16f,0xc21b0fad,4
|
|
99
|
+
np.float32,0x3f733898,0xbcb62e16,4
|
|
100
|
+
np.float32,0x3e617af8,0xbf283db0,4
|
|
101
|
+
np.float32,0x7e86577a,0x4217cd99,4
|
|
102
|
+
np.float32,0x3f0ba3c7,0xbe86c633,4
|
|
103
|
+
np.float32,0x3f4cad25,0xbdc70247,4
|
|
104
|
+
np.float32,0xb6cdf,0xc21bea9f,4
|
|
105
|
+
np.float32,0x3f42971a,0xbdf3f49e,4
|
|
106
|
+
np.float32,0x3e6ccad2,0xbf22cc78,4
|
|
107
|
+
np.float32,0x7f2121b2,0x421952b8,4
|
|
108
|
+
np.float32,0x3f6d3f55,0xbd075366,4
|
|
109
|
+
np.float32,0x3f524f,0xc218f117,4
|
|
110
|
+
np.float32,0x3e95b5d9,0xbf08b56a,4
|
|
111
|
+
np.float32,0x7f6ae47d,0x4219fa56,4
|
|
112
|
+
np.float32,0x267539,0xc219ceda,4
|
|
113
|
+
np.float32,0x3ef72f6d,0xbea1eb2e,4
|
|
114
|
+
np.float32,0x2100b2,0xc21a12e2,4
|
|
115
|
+
np.float32,0x3d9777d1,0xbf90c4e7,4
|
|
116
|
+
np.float32,0x44c6f5,0xc218cc56,4
|
|
117
|
+
np.float32,0x7f2a613d,0x42196b8a,4
|
|
118
|
+
np.float32,0x390a25,0xc2191f8d,4
|
|
119
|
+
np.float32,0x3f1de5ad,0xbe56e703,4
|
|
120
|
+
np.float32,0x2f59ce,0xc2197258,4
|
|
121
|
+
np.float32,0x7f3b12a1,0x4219951b,4
|
|
122
|
+
np.float32,0x3ecb66d4,0xbecd44ca,4
|
|
123
|
+
np.float32,0x7e74ff,0xc217bd7d,4
|
|
124
|
+
np.float32,0x7ed83f78,0x4218a14d,4
|
|
125
|
+
np.float32,0x685994,0xc21812f1,4
|
|
126
|
+
np.float32,0xbf800000,0x7fc00000,4
|
|
127
|
+
np.float32,0x736f47,0xc217e60b,4
|
|
128
|
+
np.float32,0x7f09c371,0x42190d0a,4
|
|
129
|
+
np.float32,0x3f7ca51d,0xbbbbbce0,4
|
|
130
|
+
np.float32,0x7f4b4d3b,0x4219ba1a,4
|
|
131
|
+
np.float32,0x3f6c4471,0xbd0eb076,4
|
|
132
|
+
np.float32,0xd944e,0xc21b9dcf,4
|
|
133
|
+
np.float32,0x7cb06ffc,0x421375cd,4
|
|
134
|
+
np.float32,0x586187,0xc2185cce,4
|
|
135
|
+
np.float32,0x3f3cbf5b,0xbe078911,4
|
|
136
|
+
np.float32,0x3f30b504,0xbe24d983,4
|
|
137
|
+
np.float32,0x3f0a16ba,0xbe8941fd,4
|
|
138
|
+
np.float32,0x5c43b0,0xc21849af,4
|
|
139
|
+
np.float32,0x3dad74f6,0xbf893bd5,4
|
|
140
|
+
np.float32,0x3c586958,0xbff087a6,4
|
|
141
|
+
np.float32,0x3e8307a8,0xbf1786ba,4
|
|
142
|
+
np.float32,0x7dcd1776,0x4216213d,4
|
|
143
|
+
np.float32,0x3f44d107,0xbde9d662,4
|
|
144
|
+
np.float32,0x3e2e6823,0xbf44cbec,4
|
|
145
|
+
np.float32,0x3d87ea27,0xbf96caca,4
|
|
146
|
+
np.float32,0x3e0c715b,0xbf5ce07e,4
|
|
147
|
+
np.float32,0x7ec9cd5a,0x4218828e,4
|
|
148
|
+
np.float32,0x3e26c0b4,0xbf49c93e,4
|
|
149
|
+
np.float32,0x75b94e,0xc217dd50,4
|
|
150
|
+
np.float32,0x3df7b9f5,0xbf6ad7f4,4
|
|
151
|
+
np.float32,0x0,0xff800000,4
|
|
152
|
+
np.float32,0x3f284795,0xbe3a94da,4
|
|
153
|
+
np.float32,0x7ee49092,0x4218b9f0,4
|
|
154
|
+
np.float32,0x7f4c20e0,0x4219bbe8,4
|
|
155
|
+
np.float32,0x3efbbce8,0xbe9ddc4b,4
|
|
156
|
+
np.float32,0x12274a,0xc21b1cb4,4
|
|
157
|
+
np.float32,0x5fa1b1,0xc21839be,4
|
|
158
|
+
np.float32,0x7f0b210e,0x4219116d,4
|
|
159
|
+
np.float32,0x3f67092a,0xbd368545,4
|
|
160
|
+
np.float32,0x3d572721,0xbfa3ca5b,4
|
|
161
|
+
np.float32,0x3f7913ce,0xbc431028,4
|
|
162
|
+
np.float32,0x3b0613,0xc2191059,4
|
|
163
|
+
np.float32,0x3e1d16c0,0xbf506c6f,4
|
|
164
|
+
np.float32,0xab130,0xc21c081d,4
|
|
165
|
+
np.float32,0x3e23ac97,0xbf4bdb9d,4
|
|
166
|
+
np.float32,0x7ef52368,0x4218d911,4
|
|
167
|
+
np.float32,0x7f38e686,0x42198fe9,4
|
|
168
|
+
np.float32,0x3f106a21,0xbe7e9897,4
|
|
169
|
+
np.float32,0x3ecef8d5,0xbec96644,4
|
|
170
|
+
np.float32,0x3ec37e02,0xbed61683,4
|
|
171
|
+
np.float32,0x3efbd063,0xbe9dcb17,4
|
|
172
|
+
np.float32,0x3f318fe3,0xbe22b402,4
|
|
173
|
+
np.float32,0x7e5e5228,0x4217795d,4
|
|
174
|
+
np.float32,0x72a046,0xc217e92c,4
|
|
175
|
+
np.float32,0x7f6f970b,0x421a0324,4
|
|
176
|
+
np.float32,0x3ed871b4,0xbebf72fb,4
|
|
177
|
+
np.float32,0x7a2eaa,0xc217ccc8,4
|
|
178
|
+
np.float32,0x3e819655,0xbf18c1d7,4
|
|
179
|
+
np.float32,0x80800000,0x7fc00000,4
|
|
180
|
+
np.float32,0x7eab0719,0x421838f9,4
|
|
181
|
+
np.float32,0x7f0763cb,0x4219054f,4
|
|
182
|
+
np.float32,0x3f191672,0xbe64a8af,4
|
|
183
|
+
np.float32,0x7d4327,0xc217c1b6,4
|
|
184
|
+
np.float32,0x3f724ba6,0xbcc3bea3,4
|
|
185
|
+
np.float32,0x60fe06,0xc2183375,4
|
|
186
|
+
np.float32,0x48cd59,0xc218b30b,4
|
|
187
|
+
np.float32,0x3f7fec2b,0xb909d3f3,4
|
|
188
|
+
np.float32,0x1c7bb9,0xc21a5460,4
|
|
189
|
+
np.float32,0x24d8a8,0xc219e1e4,4
|
|
190
|
+
np.float32,0x3e727c52,0xbf20283c,4
|
|
191
|
+
np.float32,0x4bc460,0xc218a14a,4
|
|
192
|
+
np.float32,0x63e313,0xc2182661,4
|
|
193
|
+
np.float32,0x7f625581,0x4219e9d4,4
|
|
194
|
+
np.float32,0x3eeb3e77,0xbeacedc0,4
|
|
195
|
+
np.float32,0x7ef27a47,0x4218d437,4
|
|
196
|
+
np.float32,0x27105a,0xc219c7e6,4
|
|
197
|
+
np.float32,0x22a10b,0xc219fd7d,4
|
|
198
|
+
np.float32,0x3f41e907,0xbdf711ab,4
|
|
199
|
+
np.float32,0x7c1fbf95,0x4212155b,4
|
|
200
|
+
np.float32,0x7e5acceb,0x42177244,4
|
|
201
|
+
np.float32,0x3e0892fa,0xbf5ffb83,4
|
|
202
|
+
np.float32,0x3ea0e51d,0xbf00b2c0,4
|
|
203
|
+
np.float32,0x3e56fc29,0xbf2d8a51,4
|
|
204
|
+
np.float32,0x7ee724ed,0x4218beed,4
|
|
205
|
+
np.float32,0x7ebf142b,0x42186a46,4
|
|
206
|
+
np.float32,0x7f6cf35c,0x4219fe37,4
|
|
207
|
+
np.float32,0x3f11abf7,0xbe7abdcd,4
|
|
208
|
+
np.float32,0x588d7a,0xc2185bf1,4
|
|
209
|
+
np.float32,0x3f6e81d2,0xbcfbcf97,4
|
|
210
|
+
np.float32,0x3f1b6be8,0xbe5dee2b,4
|
|
211
|
+
np.float32,0x7f3815e0,0x42198df2,4
|
|
212
|
+
np.float32,0x3f5bfc88,0xbd86d93d,4
|
|
213
|
+
np.float32,0x3f3775d0,0xbe142bbc,4
|
|
214
|
+
np.float32,0x78a958,0xc217d25a,4
|
|
215
|
+
np.float32,0x2ff7c3,0xc2196c96,4
|
|
216
|
+
np.float32,0x4b9c0,0xc21d733c,4
|
|
217
|
+
np.float32,0x3ec025af,0xbed9ecf3,4
|
|
218
|
+
np.float32,0x6443f0,0xc21824b3,4
|
|
219
|
+
np.float32,0x3f754e28,0xbc97d299,4
|
|
220
|
+
np.float32,0x3eaa91d3,0xbef4699d,4
|
|
221
|
+
np.float32,0x3e5f2837,0xbf296478,4
|
|
222
|
+
np.float32,0xe5676,0xc21b85a4,4
|
|
223
|
+
np.float32,0x3f6859f2,0xbd2c6b90,4
|
|
224
|
+
np.float32,0x3f68686b,0xbd2bfcc6,4
|
|
225
|
+
np.float32,0x4b39b8,0xc218a47b,4
|
|
226
|
+
np.float32,0x630ac4,0xc2182a28,4
|
|
227
|
+
np.float32,0x160980,0xc21ac67d,4
|
|
228
|
+
np.float32,0x3ed91c4d,0xbebec3fd,4
|
|
229
|
+
np.float32,0x7ec27b0d,0x4218721f,4
|
|
230
|
+
np.float32,0x3f3c0a5f,0xbe09344b,4
|
|
231
|
+
np.float32,0x3dbff9c1,0xbf839841,4
|
|
232
|
+
np.float32,0x7f0e8ea7,0x42191c40,4
|
|
233
|
+
np.float32,0x3f36b162,0xbe1608e4,4
|
|
234
|
+
np.float32,0x228bb3,0xc219fe90,4
|
|
235
|
+
np.float32,0x2fdd30,0xc2196d8c,4
|
|
236
|
+
np.float32,0x3e8fce8e,0xbf0d2e79,4
|
|
237
|
+
np.float32,0x3f36acc7,0xbe16141a,4
|
|
238
|
+
np.float32,0x7f44b51c,0x4219ab70,4
|
|
239
|
+
np.float32,0x3ec3371c,0xbed66736,4
|
|
240
|
+
np.float32,0x4388a2,0xc218d473,4
|
|
241
|
+
np.float32,0x3f5aa6c3,0xbd8c4344,4
|
|
242
|
+
np.float32,0x7f09fce4,0x42190dc3,4
|
|
243
|
+
np.float32,0x7ed7854a,0x42189fce,4
|
|
244
|
+
np.float32,0x7f4da83a,0x4219bf3a,4
|
|
245
|
+
np.float32,0x3db8da28,0xbf85b25a,4
|
|
246
|
+
np.float32,0x7f449686,0x4219ab2b,4
|
|
247
|
+
np.float32,0x2eb25,0xc21e498c,4
|
|
248
|
+
np.float32,0x3f2bcc08,0xbe3161bd,4
|
|
249
|
+
np.float32,0x36c923,0xc219317b,4
|
|
250
|
+
np.float32,0x3d52a866,0xbfa4f6d2,4
|
|
251
|
+
np.float32,0x3f7d6688,0xbb913e4e,4
|
|
252
|
+
np.float32,0x3f5a6ba4,0xbd8d33e3,4
|
|
253
|
+
np.float32,0x719740,0xc217ed35,4
|
|
254
|
+
np.float32,0x78a472,0xc217d26c,4
|
|
255
|
+
np.float32,0x7ee33d0c,0x4218b759,4
|
|
256
|
+
np.float32,0x7f668c1d,0x4219f208,4
|
|
257
|
+
np.float32,0x3e29c600,0xbf47ca46,4
|
|
258
|
+
np.float32,0x3f3cefc3,0xbe071712,4
|
|
259
|
+
np.float32,0x3e224ebd,0xbf4cca41,4
|
|
260
|
+
np.float32,0x7f1417be,0x42192d31,4
|
|
261
|
+
np.float32,0x7f29d7d5,0x42196a23,4
|
|
262
|
+
np.float32,0x3338ce,0xc2194f65,4
|
|
263
|
+
np.float32,0x2a7897,0xc219a2b6,4
|
|
264
|
+
np.float32,0x3d6bc3d8,0xbf9eb468,4
|
|
265
|
+
np.float32,0x3f6bd7bf,0xbd11e392,4
|
|
266
|
+
np.float32,0x7f6d26bf,0x4219fe98,4
|
|
267
|
+
np.float32,0x3f52d378,0xbdacadb5,4
|
|
268
|
+
np.float32,0x3efac453,0xbe9eb84a,4
|
|
269
|
+
np.float32,0x3f692eb7,0xbd261184,4
|
|
270
|
+
np.float32,0x3f6a0bb5,0xbd1f7ec1,4
|
|
271
|
+
np.float32,0x3f037a49,0xbe942aa8,4
|
|
272
|
+
np.float32,0x3f465bd4,0xbde2e530,4
|
|
273
|
+
np.float32,0x7ef0f47b,0x4218d16a,4
|
|
274
|
+
np.float32,0x637127,0xc218285e,4
|
|
275
|
+
np.float32,0x3f41e511,0xbdf723d7,4
|
|
276
|
+
np.float32,0x7f800000,0x7f800000,4
|
|
277
|
+
np.float32,0x3f3342d5,0xbe1e77d5,4
|
|
278
|
+
np.float32,0x7f57cfe6,0x4219d4a9,4
|
|
279
|
+
np.float32,0x3e4358ed,0xbf3830a7,4
|
|
280
|
+
np.float32,0x3ce25f15,0xbfc77f2b,4
|
|
281
|
+
np.float32,0x7ed057e7,0x421890be,4
|
|
282
|
+
np.float32,0x7ce154d9,0x4213e295,4
|
|
283
|
+
np.float32,0x3ee91984,0xbeaef703,4
|
|
284
|
+
np.float32,0x7e4e919c,0x421758af,4
|
|
285
|
+
np.float32,0x6830e7,0xc218139e,4
|
|
286
|
+
np.float32,0x3f12f08e,0xbe76e328,4
|
|
287
|
+
np.float32,0x7f0a7a32,0x42190f56,4
|
|
288
|
+
np.float32,0x7f38e,0xc21c8bd3,4
|
|
289
|
+
np.float32,0x3e01def9,0xbf6593e3,4
|
|
290
|
+
np.float32,0x3f5c8c6d,0xbd849432,4
|
|
291
|
+
np.float32,0x3eed8747,0xbeaac7a3,4
|
|
292
|
+
np.float32,0x3cadaa0e,0xbfd63b21,4
|
|
293
|
+
np.float32,0x3f7532a9,0xbc996178,4
|
|
294
|
+
np.float32,0x31f3ac,0xc2195a8f,4
|
|
295
|
+
np.float32,0x3f0e0f97,0xbe82f3af,4
|
|
296
|
+
np.float32,0x3f2a1f35,0xbe35bd3f,4
|
|
297
|
+
np.float32,0x3f4547b2,0xbde7bebd,4
|
|
298
|
+
np.float32,0x3f7988a6,0xbc36094c,4
|
|
299
|
+
np.float32,0x74464c,0xc217e2d2,4
|
|
300
|
+
np.float32,0x7f7518be,0x421a0d3f,4
|
|
301
|
+
np.float32,0x7e97fa0a,0x42180473,4
|
|
302
|
+
np.float32,0x584e3a,0xc2185d2f,4
|
|
303
|
+
np.float32,0x3e7291f3,0xbf201e52,4
|
|
304
|
+
np.float32,0xc0a05,0xc21bd359,4
|
|
305
|
+
np.float32,0x3a3177,0xc21916a6,4
|
|
306
|
+
np.float32,0x4f417f,0xc2188d45,4
|
|
307
|
+
np.float32,0x263fce,0xc219d145,4
|
|
308
|
+
np.float32,0x7e1d58,0xc217beb1,4
|
|
309
|
+
np.float32,0x7f056af3,0x4218fec9,4
|
|
310
|
+
np.float32,0x3f21c181,0xbe4c2a3f,4
|
|
311
|
+
np.float32,0x7eca4956,0x4218839f,4
|
|
312
|
+
np.float32,0x3e58afa8,0xbf2ca9fd,4
|
|
313
|
+
np.float32,0x3f40d583,0xbdfc04ef,4
|
|
314
|
+
np.float32,0x7f432fbb,0x4219a7fc,4
|
|
315
|
+
np.float32,0x43aaa4,0xc218d393,4
|
|
316
|
+
np.float32,0x7f2c9b62,0x42197150,4
|
|
317
|
+
np.float32,0x5c3876,0xc21849e5,4
|
|
318
|
+
np.float32,0x7f2034e8,0x42195029,4
|
|
319
|
+
np.float32,0x7e5be772,0x42177481,4
|
|
320
|
+
np.float32,0x80000000,0xff800000,4
|
|
321
|
+
np.float32,0x3f5be03b,0xbd874bb0,4
|
|
322
|
+
np.float32,0x3e32494f,0xbf4259be,4
|
|
323
|
+
np.float32,0x3e1f4671,0xbf4ee30b,4
|
|
324
|
+
np.float32,0x4606cc,0xc218c454,4
|
|
325
|
+
np.float32,0x425cbc,0xc218dc3b,4
|
|
326
|
+
np.float32,0x7dd9b8bf,0x42163bd0,4
|
|
327
|
+
np.float32,0x3f0465d0,0xbe929db7,4
|
|
328
|
+
np.float32,0x3f735077,0xbcb4d0fa,4
|
|
329
|
+
np.float32,0x4d6a43,0xc21897b8,4
|
|
330
|
+
np.float32,0x3e27d600,0xbf4910f5,4
|
|
331
|
+
np.float32,0x3f06e0cc,0xbe8e7d24,4
|
|
332
|
+
np.float32,0x3f3fd064,0xbe005e45,4
|
|
333
|
+
np.float32,0x176f1,0xc21f7c2d,4
|
|
334
|
+
np.float32,0x3eb64e6f,0xbee59d9c,4
|
|
335
|
+
np.float32,0x7f0f075d,0x42191db8,4
|
|
336
|
+
np.float32,0x3f718cbe,0xbcceb621,4
|
|
337
|
+
np.float32,0x3ead7bda,0xbef0a54a,4
|
|
338
|
+
np.float32,0x7f77c1a8,0x421a120c,4
|
|
339
|
+
np.float32,0x3f6a79c5,0xbd1c3afd,4
|
|
340
|
+
np.float32,0x3e992d1f,0xbf062a02,4
|
|
341
|
+
np.float32,0x3e6f6335,0xbf219639,4
|
|
342
|
+
np.float32,0x7f6d9a3e,0x4219ff70,4
|
|
343
|
+
np.float32,0x557ed1,0xc2186b91,4
|
|
344
|
+
np.float32,0x3f13a456,0xbe74c457,4
|
|
345
|
+
np.float32,0x15c2dc,0xc21acc17,4
|
|
346
|
+
np.float32,0x71f36f,0xc217ebcc,4
|
|
347
|
+
np.float32,0x748dea,0xc217e1c1,4
|
|
348
|
+
np.float32,0x7f0f32e0,0x42191e3f,4
|
|
349
|
+
np.float32,0x5b1da8,0xc2184f41,4
|
|
350
|
+
np.float32,0x3d865d3a,0xbf976e11,4
|
|
351
|
+
np.float32,0x3f800000,0x0,4
|
|
352
|
+
np.float32,0x7f67b56d,0x4219f444,4
|
|
353
|
+
np.float32,0x6266a1,0xc2182d0c,4
|
|
354
|
+
np.float32,0x3ec9c5e4,0xbecf0e6b,4
|
|
355
|
+
np.float32,0x6a6a0e,0xc2180a3b,4
|
|
356
|
+
np.float32,0x7e9db6fd,0x421814ef,4
|
|
357
|
+
np.float32,0x3e7458f7,0xbf1f4e88,4
|
|
358
|
+
np.float32,0x3ead8016,0xbef09fdc,4
|
|
359
|
+
np.float32,0x3e263d1c,0xbf4a211e,4
|
|
360
|
+
np.float32,0x7f6b3329,0x4219faeb,4
|
|
361
|
+
np.float32,0x800000,0xc217b818,4
|
|
362
|
+
np.float32,0x3f0654c7,0xbe8f6471,4
|
|
363
|
+
np.float32,0x3f281b71,0xbe3b0990,4
|
|
364
|
+
np.float32,0x7c4c8e,0xc217c524,4
|
|
365
|
+
np.float32,0x7d113a87,0x4214537d,4
|
|
366
|
+
np.float32,0x734b5f,0xc217e696,4
|
|
367
|
+
np.float32,0x7f079d05,0x4219060b,4
|
|
368
|
+
np.float32,0x3ee830b1,0xbeafd58b,4
|
|
369
|
+
np.float32,0x3f1c3b8b,0xbe5b9d96,4
|
|
370
|
+
np.float32,0x3f2bf0c6,0xbe3102aa,4
|
|
371
|
+
np.float32,0x7ddffe22,0x42164871,4
|
|
372
|
+
np.float32,0x3f1e58b4,0xbe55a37f,4
|
|
373
|
+
np.float32,0x5f3edf,0xc2183b8a,4
|
|
374
|
+
np.float32,0x7f1fb6ec,0x42194eca,4
|
|
375
|
+
np.float32,0x3f78718e,0xbc55311e,4
|
|
376
|
+
np.float32,0x3e574b7d,0xbf2d6152,4
|
|
377
|
+
np.float32,0x7eab27c6,0x4218394e,4
|
|
378
|
+
np.float32,0x7f34603c,0x421984e5,4
|
|
379
|
+
np.float32,0x3f3a8b57,0xbe0cc1ca,4
|
|
380
|
+
np.float32,0x3f744181,0xbca7134e,4
|
|
381
|
+
np.float32,0x3f7e3bc4,0xbb45156b,4
|
|
382
|
+
np.float32,0x93ab4,0xc21c498b,4
|
|
383
|
+
np.float32,0x7ed5541e,0x42189b42,4
|
|
384
|
+
np.float32,0x6bf8ec,0xc21803c4,4
|
|
385
|
+
np.float32,0x757395,0xc217de58,4
|
|
386
|
+
np.float32,0x7f177214,0x42193726,4
|
|
387
|
+
np.float32,0x59935f,0xc21856d6,4
|
|
388
|
+
np.float32,0x2cd9ba,0xc2198a78,4
|
|
389
|
+
np.float32,0x3ef6fd5c,0xbea2183c,4
|
|
390
|
+
np.float32,0x3ebb6c63,0xbedf75e0,4
|
|
391
|
+
np.float32,0x7f43272c,0x4219a7e9,4
|
|
392
|
+
np.float32,0x7f42e67d,0x4219a755,4
|
|
393
|
+
np.float32,0x3f3f744f,0xbe0133f6,4
|
|
394
|
+
np.float32,0x7f5fddaa,0x4219e4f4,4
|
|
395
|
+
np.float32,0x3dc9874f,0xbf80e529,4
|
|
396
|
+
np.float32,0x3f2efe64,0xbe292ec8,4
|
|
397
|
+
np.float32,0x3e0406a6,0xbf63bf7c,4
|
|
398
|
+
np.float32,0x3cdbb0aa,0xbfc92984,4
|
|
399
|
+
np.float32,0x3e6597e7,0xbf263b30,4
|
|
400
|
+
np.float32,0x3f0c1153,0xbe861807,4
|
|
401
|
+
np.float32,0x7fce16,0xc217b8c6,4
|
|
402
|
+
np.float32,0x3f5f4e5f,0xbd730dc6,4
|
|
403
|
+
np.float32,0x3ed41ffa,0xbec3ee69,4
|
|
404
|
+
np.float32,0x3f216c78,0xbe4d1446,4
|
|
405
|
+
np.float32,0x3f123ed7,0xbe78fe4b,4
|
|
406
|
+
np.float32,0x7f7e0ca9,0x421a1d34,4
|
|
407
|
+
np.float32,0x7e318af4,0x42171558,4
|
|
408
|
+
np.float32,0x7f1e1659,0x42194a3d,4
|
|
409
|
+
np.float32,0x34d12a,0xc21941c2,4
|
|
410
|
+
np.float32,0x3d9566ad,0xbf918870,4
|
|
411
|
+
np.float32,0x3e799a47,0xbf1cf0e5,4
|
|
412
|
+
np.float32,0x3e89dd6f,0xbf11df76,4
|
|
413
|
+
np.float32,0x32f0d3,0xc21951d8,4
|
|
414
|
+
np.float32,0x7e89d17e,0x4217d8f6,4
|
|
415
|
+
np.float32,0x1f3b38,0xc21a2b6b,4
|
|
416
|
+
np.float32,0x7ee9e060,0x4218c427,4
|
|
417
|
+
np.float32,0x31a673,0xc2195d41,4
|
|
418
|
+
np.float32,0x5180f1,0xc21880d5,4
|
|
419
|
+
np.float32,0x3cd36f,0xc21902f8,4
|
|
420
|
+
np.float32,0x3bb63004,0xc01050cb,4
|
|
421
|
+
np.float32,0x3e8ee9d1,0xbf0ddfde,4
|
|
422
|
+
np.float32,0x3d2a7da3,0xbfb0b970,4
|
|
423
|
+
np.float32,0x3ea58107,0xbefb1dc3,4
|
|
424
|
+
np.float32,0x7f6760b0,0x4219f3a2,4
|
|
425
|
+
np.float32,0x7f7f9e08,0x421a1ff0,4
|
|
426
|
+
np.float32,0x37e7f1,0xc219287b,4
|
|
427
|
+
np.float32,0x3ef7eb53,0xbea14267,4
|
|
428
|
+
np.float32,0x3e2eb581,0xbf449aa5,4
|
|
429
|
+
np.float32,0x3da7671c,0xbf8b3568,4
|
|
430
|
+
np.float32,0x7af36f7b,0x420f33ee,4
|
|
431
|
+
np.float32,0x3eb3602c,0xbee93823,4
|
|
432
|
+
np.float32,0x3f68bcff,0xbd2975de,4
|
|
433
|
+
np.float32,0x3ea7cefb,0xbef80a9d,4
|
|
434
|
+
np.float32,0x3f329689,0xbe202414,4
|
|
435
|
+
np.float32,0x7f0c7c80,0x421915be,4
|
|
436
|
+
np.float32,0x7f4739b8,0x4219b118,4
|
|
437
|
+
np.float32,0x73af58,0xc217e515,4
|
|
438
|
+
np.float32,0x7f13eb2a,0x42192cab,4
|
|
439
|
+
np.float32,0x30f2d9,0xc2196395,4
|
|
440
|
+
np.float32,0x7ea7066c,0x42182e71,4
|
|
441
|
+
np.float32,0x669fec,0xc2181a5b,4
|
|
442
|
+
np.float32,0x3f7d6876,0xbb90d1ef,4
|
|
443
|
+
np.float32,0x3f08a4ef,0xbe8b9897,4
|
|
444
|
+
np.float32,0x7f2a906c,0x42196c05,4
|
|
445
|
+
np.float32,0x3ed3ca42,0xbec44856,4
|
|
446
|
+
np.float32,0x9d27,0xc220fee2,4
|
|
447
|
+
np.float32,0x3e4508a1,0xbf373c03,4
|
|
448
|
+
np.float32,0x3e41f8de,0xbf38f9bb,4
|
|
449
|
+
np.float32,0x3e912714,0xbf0c255b,4
|
|
450
|
+
np.float32,0xff800000,0x7fc00000,4
|
|
451
|
+
np.float32,0x7eefd13d,0x4218cf4f,4
|
|
452
|
+
np.float32,0x3f491674,0xbdd6bded,4
|
|
453
|
+
np.float32,0x3ef49512,0xbea445c9,4
|
|
454
|
+
np.float32,0x3f045b79,0xbe92af15,4
|
|
455
|
+
np.float32,0x3ef6c412,0xbea24bd5,4
|
|
456
|
+
np.float32,0x3e6f3c28,0xbf21a85d,4
|
|
457
|
+
np.float32,0x3ef71839,0xbea2000e,4
|
|
458
|
+
np.float32,0x1,0xc23369f4,4
|
|
459
|
+
np.float32,0x3e3fcfe4,0xbf3a3876,4
|
|
460
|
+
np.float32,0x3e9d7a65,0xbf0315b2,4
|
|
461
|
+
np.float32,0x20b7c4,0xc21a16bd,4
|
|
462
|
+
np.float32,0x7f707b10,0x421a04cb,4
|
|
463
|
+
np.float32,0x7fc00000,0x7fc00000,4
|
|
464
|
+
np.float32,0x3f285ebd,0xbe3a57ac,4
|
|
465
|
+
np.float32,0x74c9ea,0xc217e0dc,4
|
|
466
|
+
np.float32,0x3f6501f2,0xbd4634ab,4
|
|
467
|
+
np.float32,0x3f248959,0xbe4495cc,4
|
|
468
|
+
np.float32,0x7e915ff0,0x4217f0b3,4
|
|
469
|
+
np.float32,0x7edbb910,0x4218a864,4
|
|
470
|
+
np.float32,0x3f7042dd,0xbce1bddb,4
|
|
471
|
+
np.float32,0x6f08c9,0xc217f754,4
|
|
472
|
+
np.float32,0x7f423993,0x4219a5ca,4
|
|
473
|
+
np.float32,0x3f125704,0xbe78b4cd,4
|
|
474
|
+
np.float32,0x7ef7f5ae,0x4218de28,4
|
|
475
|
+
np.float32,0x3f2dd940,0xbe2c1a33,4
|
|
476
|
+
np.float32,0x3f1ca78e,0xbe5a6a8b,4
|
|
477
|
+
np.float32,0x244863,0xc219e8be,4
|
|
478
|
+
np.float32,0x3f2614fe,0xbe406d6b,4
|
|
479
|
+
np.float32,0x3e75e7a3,0xbf1e99b5,4
|
|
480
|
+
np.float32,0x2bdd6e,0xc2199459,4
|
|
481
|
+
np.float32,0x7e49e279,0x42174e7b,4
|
|
482
|
+
np.float32,0x3e3bb09a,0xbf3ca2cd,4
|
|
483
|
+
np.float32,0x649f06,0xc2182320,4
|
|
484
|
+
np.float32,0x7f4a44e1,0x4219b7d6,4
|
|
485
|
+
np.float32,0x400473,0xc218ec3a,4
|
|
486
|
+
np.float32,0x3edb19ad,0xbebcbcad,4
|
|
487
|
+
np.float32,0x3d8ee956,0xbf94006c,4
|
|
488
|
+
np.float32,0x7e91c603,0x4217f1eb,4
|
|
489
|
+
np.float32,0x221384,0xc21a04a6,4
|
|
490
|
+
np.float32,0x7f7dd660,0x421a1cd5,4
|
|
491
|
+
np.float32,0x7ef34609,0x4218d5ac,4
|
|
492
|
+
np.float32,0x7f5ed529,0x4219e2e5,4
|
|
493
|
+
np.float32,0x7f1bf685,0x42194438,4
|
|
494
|
+
np.float32,0x3cdd094a,0xbfc8d294,4
|
|
495
|
+
np.float32,0x7e87fc8e,0x4217d303,4
|
|
496
|
+
np.float32,0x7f53d971,0x4219cc6b,4
|
|
497
|
+
np.float32,0xabc8b,0xc21c0646,4
|
|
498
|
+
np.float32,0x7f5011e6,0x4219c46a,4
|
|
499
|
+
np.float32,0x7e460638,0x421745e5,4
|
|
500
|
+
np.float32,0xa8126,0xc21c0ffd,4
|
|
501
|
+
np.float32,0x3eec2a66,0xbeac0f2d,4
|
|
502
|
+
np.float32,0x3f3a1213,0xbe0de340,4
|
|
503
|
+
np.float32,0x7f5908db,0x4219d72c,4
|
|
504
|
+
np.float32,0x7e0ad3c5,0x4216a7f3,4
|
|
505
|
+
np.float32,0x3f2de40e,0xbe2bfe90,4
|
|
506
|
+
np.float32,0x3d0463c5,0xbfbec8e4,4
|
|
507
|
+
np.float32,0x7c7cde0b,0x4212e19a,4
|
|
508
|
+
np.float32,0x74c24f,0xc217e0f9,4
|
|
509
|
+
np.float32,0x3f14b4cb,0xbe71929b,4
|
|
510
|
+
np.float32,0x3e94e192,0xbf09537f,4
|
|
511
|
+
np.float32,0x3eebde71,0xbeac56bd,4
|
|
512
|
+
np.float32,0x3f65e413,0xbd3f5b8a,4
|
|
513
|
+
np.float32,0x7e109199,0x4216b9f9,4
|
|
514
|
+
np.float32,0x3f22f5d0,0xbe48ddc0,4
|
|
515
|
+
np.float32,0x3e22d3bc,0xbf4c6f4d,4
|
|
516
|
+
np.float32,0x3f7a812f,0xbc1a680b,4
|
|
517
|
+
np.float32,0x3f67f361,0xbd2f7d7c,4
|
|
518
|
+
np.float32,0x3f1caa63,0xbe5a6281,4
|
|
519
|
+
np.float32,0x3f306fde,0xbe2587ab,4
|
|
520
|
+
np.float32,0x3e8df9d3,0xbf0e9b2f,4
|
|
521
|
+
np.float32,0x3eaaccc4,0xbef41cd4,4
|
|
522
|
+
np.float32,0x7f3f65ec,0x42199f45,4
|
|
523
|
+
np.float32,0x3dc706e0,0xbf8196ec,4
|
|
524
|
+
np.float32,0x3e14eaba,0xbf565cf6,4
|
|
525
|
+
np.float32,0xcc60,0xc2208a09,4
|
|
526
|
+
np.float32,0x358447,0xc2193be7,4
|
|
527
|
+
np.float32,0x3dcecade,0xbf7eec70,4
|
|
528
|
+
np.float32,0x3f20b4f8,0xbe4f0ef0,4
|
|
529
|
+
np.float32,0x7e7c979f,0x4217b222,4
|
|
530
|
+
np.float32,0x7f2387b9,0x4219594a,4
|
|
531
|
+
np.float32,0x3f6f6e5c,0xbcee0e05,4
|
|
532
|
+
np.float32,0x7f19ad81,0x42193da8,4
|
|
533
|
+
np.float32,0x5635e1,0xc21867dd,4
|
|
534
|
+
np.float32,0x4c5e97,0xc2189dc4,4
|
|
535
|
+
np.float32,0x7f35f97f,0x421988d1,4
|
|
536
|
+
np.float32,0x7f685224,0x4219f571,4
|
|
537
|
+
np.float32,0x3eca0616,0xbecec7b8,4
|
|
538
|
+
np.float32,0x3f436d0d,0xbdf024ca,4
|
|
539
|
+
np.float32,0x12a97d,0xc21b106a,4
|
|
540
|
+
np.float32,0x7f0fdc93,0x4219204d,4
|
|
541
|
+
np.float32,0x3debfb42,0xbf703e65,4
|
|
542
|
+
np.float32,0x3c6c54d2,0xbfeba291,4
|
|
543
|
+
np.float32,0x7e5d7491,0x421777a1,4
|
|
544
|
+
np.float32,0x3f4bd2f0,0xbdcab87d,4
|
|
545
|
+
np.float32,0x3f7517f4,0xbc9ae510,4
|
|
546
|
+
np.float32,0x3f71a59a,0xbccd480d,4
|
|
547
|
+
np.float32,0x3f514653,0xbdb33f61,4
|
|
548
|
+
np.float32,0x3f4e6ea4,0xbdbf694b,4
|
|
549
|
+
np.float32,0x3eadadec,0xbef06526,4
|
|
550
|
+
np.float32,0x3f3b41c1,0xbe0b0fbf,4
|
|
551
|
+
np.float32,0xc35a,0xc2209e1e,4
|
|
552
|
+
np.float32,0x384982,0xc2192575,4
|
|
553
|
+
np.float32,0x3464c3,0xc2194556,4
|
|
554
|
+
np.float32,0x7f5e20d9,0x4219e17d,4
|
|
555
|
+
np.float32,0x3ea18b62,0xbf004016,4
|
|
556
|
+
np.float32,0x63a02b,0xc218278c,4
|
|
557
|
+
np.float32,0x7ef547ba,0x4218d953,4
|
|
558
|
+
np.float32,0x3f2496fb,0xbe4470f4,4
|
|
559
|
+
np.float32,0x7ea0c8c6,0x42181d81,4
|
|
560
|
+
np.float32,0x3f42ba60,0xbdf35372,4
|
|
561
|
+
np.float32,0x7e40d9,0xc217be34,4
|
|
562
|
+
np.float32,0x3e95883b,0xbf08d750,4
|
|
563
|
+
np.float32,0x3e0cddf3,0xbf5c8aa8,4
|
|
564
|
+
np.float32,0x3f2305d5,0xbe48b20a,4
|
|
565
|
+
np.float32,0x7f0d0941,0x4219177b,4
|
|
566
|
+
np.float32,0x3f7b98d3,0xbbf6e477,4
|
|
567
|
+
np.float32,0x3f687cdc,0xbd2b6057,4
|
|
568
|
+
np.float32,0x3f42ce91,0xbdf2f73d,4
|
|
569
|
+
np.float32,0x3ee00fc0,0xbeb7c217,4
|
|
570
|
+
np.float32,0x7f3d483a,0x42199a53,4
|
|
571
|
+
np.float32,0x3e1e08eb,0xbf4fc18d,4
|
|
572
|
+
np.float32,0x7e202ff5,0x4216e798,4
|
|
573
|
+
np.float32,0x582898,0xc2185ded,4
|
|
574
|
+
np.float32,0x3e3552b1,0xbf40790c,4
|
|
575
|
+
np.float32,0x3d3f7c87,0xbfaa44b6,4
|
|
576
|
+
np.float32,0x669d8e,0xc2181a65,4
|
|
577
|
+
np.float32,0x3f0e21b4,0xbe82d757,4
|
|
578
|
+
np.float32,0x686f95,0xc2181293,4
|
|
579
|
+
np.float32,0x3f48367f,0xbdda9ead,4
|
|
580
|
+
np.float32,0x3dc27802,0xbf82e0a0,4
|
|
581
|
+
np.float32,0x3f6ac40c,0xbd1a07d4,4
|
|
582
|
+
np.float32,0x3bba6d,0xc2190b12,4
|
|
583
|
+
np.float32,0x3ec7b6b0,0xbed15665,4
|
|
584
|
+
np.float32,0x3f1f9ca4,0xbe521955,4
|
|
585
|
+
np.float32,0x3ef2f147,0xbea5c4b8,4
|
|
586
|
+
np.float32,0x7c65f769,0x4212b762,4
|
|
587
|
+
np.float32,0x7e98e162,0x42180716,4
|
|
588
|
+
np.float32,0x3f0f0c09,0xbe8169ea,4
|
|
589
|
+
np.float32,0x3d67f03b,0xbf9f9d48,4
|
|
590
|
+
np.float32,0x7f3751e4,0x42198c18,4
|
|
591
|
+
np.float32,0x7f1fac61,0x42194ead,4
|
|
592
|
+
np.float32,0x3e9b698b,0xbf048d89,4
|
|
593
|
+
np.float32,0x7e66507b,0x42178913,4
|
|
594
|
+
np.float32,0x7f5cb680,0x4219dea5,4
|
|
595
|
+
np.float32,0x234700,0xc219f53e,4
|
|
596
|
+
np.float32,0x3d9984ad,0xbf900591,4
|
|
597
|
+
np.float32,0x3f33a3f2,0xbe1d872a,4
|
|
598
|
+
np.float32,0x3eaf52b6,0xbeee4cf4,4
|
|
599
|
+
np.float32,0x7f078930,0x421905ca,4
|
|
600
|
+
np.float32,0x3f083b39,0xbe8c44df,4
|
|
601
|
+
np.float32,0x3e3823f8,0xbf3ec231,4
|
|
602
|
+
np.float32,0x3eef6f5d,0xbea9008c,4
|
|
603
|
+
np.float32,0x6145e1,0xc218322c,4
|
|
604
|
+
np.float32,0x16d9ae,0xc21ab65f,4
|
|
605
|
+
np.float32,0x7e543376,0x421764a5,4
|
|
606
|
+
np.float32,0x3ef77ccb,0xbea1a5a0,4
|
|
607
|
+
np.float32,0x3f4a443f,0xbdd18af5,4
|
|
608
|
+
np.float32,0x8f209,0xc21c5770,4
|
|
609
|
+
np.float32,0x3ecac126,0xbecdfa33,4
|
|
610
|
+
np.float32,0x3e8662f9,0xbf14b6c7,4
|
|
611
|
+
np.float32,0x23759a,0xc219f2f4,4
|
|
612
|
+
np.float32,0xf256d,0xc21b6d3f,4
|
|
613
|
+
np.float32,0x3f579f93,0xbd98aaa2,4
|
|
614
|
+
np.float32,0x3ed4cc8e,0xbec339cb,4
|
|
615
|
+
np.float32,0x3ed25400,0xbec5d2a1,4
|
|
616
|
+
np.float32,0x3ed6f8ba,0xbec0f795,4
|
|
617
|
+
np.float32,0x7f36efd9,0x42198b2a,4
|
|
618
|
+
np.float32,0x7f5169dd,0x4219c746,4
|
|
619
|
+
np.float32,0x7de18a20,0x42164b80,4
|
|
620
|
+
np.float32,0x3e8de526,0xbf0eab61,4
|
|
621
|
+
np.float32,0x3de0cbcd,0xbf75a47e,4
|
|
622
|
+
np.float32,0xe265f,0xc21b8b82,4
|
|
623
|
+
np.float32,0x3df3cdbd,0xbf6c9e40,4
|
|
624
|
+
np.float32,0x3f38a25a,0xbe115589,4
|
|
625
|
+
np.float32,0x7f01f2c0,0x4218f311,4
|
|
626
|
+
np.float32,0x3da7d5f4,0xbf8b10a5,4
|
|
627
|
+
np.float32,0x4d4fe8,0xc2189850,4
|
|
628
|
+
np.float32,0x3cc96d9d,0xbfcdfc8d,4
|
|
629
|
+
np.float32,0x259a88,0xc219d8d7,4
|
|
630
|
+
np.float32,0x7f1d5102,0x42194810,4
|
|
631
|
+
np.float32,0x7e17ca91,0x4216cfa7,4
|
|
632
|
+
np.float32,0x3f73d110,0xbcad7a8f,4
|
|
633
|
+
np.float32,0x3f009383,0xbe9920ed,4
|
|
634
|
+
np.float32,0x7e22af,0xc217be9f,4
|
|
635
|
+
np.float32,0x3f7de2ce,0xbb6c0394,4
|
|
636
|
+
np.float32,0x3edd0cd2,0xbebac45a,4
|
|
637
|
+
np.float32,0x3ec9b5c1,0xbecf2035,4
|
|
638
|
+
np.float32,0x3168c5,0xc2195f6b,4
|
|
639
|
+
np.float32,0x3e935522,0xbf0a7d18,4
|
|
640
|
+
np.float32,0x3e494077,0xbf34e120,4
|
|
641
|
+
np.float32,0x3f52ed06,0xbdac41ec,4
|
|
642
|
+
np.float32,0x3f73d51e,0xbcad3f65,4
|
|
643
|
+
np.float32,0x3f03d453,0xbe939295,4
|
|
644
|
+
np.float32,0x7ef4ee68,0x4218d8b1,4
|
|
645
|
+
np.float32,0x3ed0e2,0xc218f4a7,4
|
|
646
|
+
np.float32,0x4efab8,0xc2188ed3,4
|
|
647
|
+
np.float32,0x3dbd5632,0xbf845d3b,4
|
|
648
|
+
np.float32,0x7eecad4f,0x4218c972,4
|
|
649
|
+
np.float32,0x9d636,0xc21c2d32,4
|
|
650
|
+
np.float32,0x3e5f3b6b,0xbf295ae7,4
|
|
651
|
+
np.float32,0x7f4932df,0x4219b57a,4
|
|
652
|
+
np.float32,0x4b59b5,0xc218a3be,4
|
|
653
|
+
np.float32,0x3e5de97f,0xbf2a03b4,4
|
|
654
|
+
np.float32,0x3f1c479d,0xbe5b7b3c,4
|
|
655
|
+
np.float32,0x3f42e7e4,0xbdf283a5,4
|
|
656
|
+
np.float32,0x2445,0xc2238af2,4
|
|
657
|
+
np.float32,0x7aa71b43,0x420e8c9e,4
|
|
658
|
+
np.float32,0x3ede6e4e,0xbeb961e1,4
|
|
659
|
+
np.float32,0x7f05dd3b,0x42190045,4
|
|
660
|
+
np.float32,0x3ef5b55c,0xbea3404b,4
|
|
661
|
+
np.float32,0x7f738624,0x421a0a62,4
|
|
662
|
+
np.float32,0x3e7d50a1,0xbf1b4cb4,4
|
|
663
|
+
np.float32,0x3f44cc4a,0xbde9ebcc,4
|
|
664
|
+
np.float32,0x7e1a7b0b,0x4216d777,4
|
|
665
|
+
np.float32,0x3f1d9868,0xbe57c0da,4
|
|
666
|
+
np.float32,0x1ebee2,0xc21a3263,4
|
|
667
|
+
np.float32,0x31685f,0xc2195f6e,4
|
|
668
|
+
np.float32,0x368a8e,0xc2193379,4
|
|
669
|
+
np.float32,0xa9847,0xc21c0c2e,4
|
|
670
|
+
np.float32,0x3bd3b3,0xc2190a56,4
|
|
671
|
+
np.float32,0x3961e4,0xc2191ce3,4
|
|
672
|
+
np.float32,0x7e13a243,0x4216c34e,4
|
|
673
|
+
np.float32,0x7f7b1790,0x421a17ff,4
|
|
674
|
+
np.float32,0x3e55f020,0xbf2e1545,4
|
|
675
|
+
np.float32,0x3f513861,0xbdb37aa8,4
|
|
676
|
+
np.float32,0x3dd9e754,0xbf791ad2,4
|
|
677
|
+
np.float32,0x5e8d86,0xc2183ec9,4
|
|
678
|
+
np.float32,0x26b796,0xc219cbdd,4
|
|
679
|
+
np.float32,0x429daa,0xc218da89,4
|
|
680
|
+
np.float32,0x3f477caa,0xbdddd9ba,4
|
|
681
|
+
np.float32,0x3f0e5114,0xbe828d45,4
|
|
682
|
+
np.float32,0x3f54f362,0xbda3c286,4
|
|
683
|
+
np.float32,0x6eac1c,0xc217f8c8,4
|
|
684
|
+
np.float32,0x3f04c479,0xbe91fef5,4
|
|
685
|
+
np.float32,0x3e993765,0xbf06228e,4
|
|
686
|
+
np.float32,0x3eafd99f,0xbeeda21b,4
|
|
687
|
+
np.float32,0x3f2a759e,0xbe34db96,4
|
|
688
|
+
np.float32,0x3f05adfb,0xbe907937,4
|
|
689
|
+
np.float32,0x3f6e2dfc,0xbd005980,4
|
|
690
|
+
np.float32,0x3f2f2daa,0xbe28b6b5,4
|
|
691
|
+
np.float32,0x15e746,0xc21ac931,4
|
|
692
|
+
np.float32,0x7d34ca26,0x4214b4e5,4
|
|
693
|
+
np.float32,0x7ebd175c,0x4218659f,4
|
|
694
|
+
np.float32,0x7f1ed26b,0x42194c4c,4
|
|
695
|
+
np.float32,0x2588b,0xc21eaab0,4
|
|
696
|
+
np.float32,0x3f0065e3,0xbe996fe2,4
|
|
697
|
+
np.float32,0x3f610376,0xbd658122,4
|
|
698
|
+
np.float32,0x451995,0xc218ca41,4
|
|
699
|
+
np.float32,0x70e083,0xc217f002,4
|
|
700
|
+
np.float32,0x7e19821a,0x4216d4a8,4
|
|
701
|
+
np.float32,0x3e7cd9a0,0xbf1b80fb,4
|
|
702
|
+
np.float32,0x7f1a8f18,0x42194033,4
|
|
703
|
+
np.float32,0x3f008fee,0xbe99271f,4
|
|
704
|
+
np.float32,0xff7fffff,0x7fc00000,4
|
|
705
|
+
np.float32,0x7f31d826,0x42197e9b,4
|
|
706
|
+
np.float32,0x3f18cf12,0xbe657838,4
|
|
707
|
+
np.float32,0x3e5c1bc7,0xbf2aebf9,4
|
|
708
|
+
np.float32,0x3e3d3993,0xbf3bbaf8,4
|
|
709
|
+
np.float32,0x68457a,0xc2181347,4
|
|
710
|
+
np.float32,0x7ddf7561,0x42164761,4
|
|
711
|
+
np.float32,0x7f47341b,0x4219b10c,4
|
|
712
|
+
np.float32,0x4d3ecd,0xc21898b2,4
|
|
713
|
+
np.float32,0x7f43dee8,0x4219a98b,4
|
|
714
|
+
np.float32,0x3f0def7c,0xbe8325f5,4
|
|
715
|
+
np.float32,0x3d5a551f,0xbfa2f994,4
|
|
716
|
+
np.float32,0x7ed26602,0x4218951b,4
|
|
717
|
+
np.float32,0x3ee7fa5b,0xbeb0099a,4
|
|
718
|
+
np.float32,0x7ef74ea8,0x4218dcfc,4
|
|
719
|
+
np.float32,0x6a3bb2,0xc2180afd,4
|
|
720
|
+
np.float32,0x7f4c1e6e,0x4219bbe3,4
|
|
721
|
+
np.float32,0x3e26f625,0xbf49a5a2,4
|
|
722
|
+
np.float32,0xb8482,0xc21be70b,4
|
|
723
|
+
np.float32,0x3f32f077,0xbe1f445b,4
|
|
724
|
+
np.float32,0x7dd694b6,0x4216355a,4
|
|
725
|
+
np.float32,0x7f3d62fd,0x42199a92,4
|
|
726
|
+
np.float32,0x3f48e41a,0xbdd79cbf,4
|
|
727
|
+
np.float32,0x338fc3,0xc2194c75,4
|
|
728
|
+
np.float32,0x3e8355f0,0xbf174462,4
|
|
729
|
+
np.float32,0x7f487e83,0x4219b3eb,4
|
|
730
|
+
np.float32,0x2227f7,0xc21a039b,4
|
|
731
|
+
np.float32,0x7e4383dd,0x4217403a,4
|
|
732
|
+
np.float32,0x52d28b,0xc21879b2,4
|
|
733
|
+
np.float32,0x12472c,0xc21b19a9,4
|
|
734
|
+
np.float32,0x353530,0xc2193e7b,4
|
|
735
|
+
np.float32,0x3f4e4728,0xbdc0137a,4
|
|
736
|
+
np.float32,0x3bf169,0xc2190979,4
|
|
737
|
+
np.float32,0x3eb3ee2e,0xbee8885f,4
|
|
738
|
+
np.float32,0x3f03e3c0,0xbe937892,4
|
|
739
|
+
np.float32,0x3c9f8408,0xbfdaf47f,4
|
|
740
|
+
np.float32,0x40e792,0xc218e61b,4
|
|
741
|
+
np.float32,0x5a6b29,0xc21852ab,4
|
|
742
|
+
np.float32,0x7f268b83,0x4219616a,4
|
|
743
|
+
np.float32,0x3ee25997,0xbeb57fa7,4
|
|
744
|
+
np.float32,0x3f175324,0xbe69cf53,4
|
|
745
|
+
np.float32,0x3f781d91,0xbc5e9827,4
|
|
746
|
+
np.float32,0x7dba5210,0x4215f68c,4
|
|
747
|
+
np.float32,0x7f1e66,0xc217bb2b,4
|
|
748
|
+
np.float32,0x7f7fffff,0x421a209b,4
|
|
749
|
+
np.float32,0x3f646202,0xbd4b10b8,4
|
|
750
|
+
np.float32,0x575248,0xc218622b,4
|
|
751
|
+
np.float32,0x7c67faa1,0x4212bb42,4
|
|
752
|
+
np.float32,0x7f1683f2,0x42193469,4
|
|
753
|
+
np.float32,0x1a3864,0xc21a7931,4
|
|
754
|
+
np.float32,0x7f30ad75,0x42197bae,4
|
|
755
|
+
np.float32,0x7f1c9d05,0x42194612,4
|
|
756
|
+
np.float32,0x3e791795,0xbf1d2b2c,4
|
|
757
|
+
np.float32,0x7e9ebc19,0x421817cd,4
|
|
758
|
+
np.float32,0x4999b7,0xc218ae31,4
|
|
759
|
+
np.float32,0x3d130e2c,0xbfb8f1cc,4
|
|
760
|
+
np.float32,0x3f7e436f,0xbb41bb07,4
|
|
761
|
+
np.float32,0x3ee00241,0xbeb7cf7d,4
|
|
762
|
+
np.float32,0x7e496181,0x42174d5f,4
|
|
763
|
+
np.float32,0x7efe58be,0x4218e978,4
|
|
764
|
+
np.float32,0x3f5e5b0c,0xbd7aa43f,4
|
|
765
|
+
np.float32,0x7ee4c6ab,0x4218ba59,4
|
|
766
|
+
np.float32,0x3f6da8c6,0xbd043d7e,4
|
|
767
|
+
np.float32,0x3e3e6e0f,0xbf3b064b,4
|
|
768
|
+
np.float32,0x3f0143b3,0xbe97f10a,4
|
|
769
|
+
np.float32,0x79170f,0xc217d0c6,4
|
|
770
|
+
np.float32,0x517645,0xc218810f,4
|
|
771
|
+
np.float32,0x3f1f9960,0xbe52226e,4
|
|
772
|
+
np.float32,0x2a8df9,0xc219a1d6,4
|
|
773
|
+
np.float32,0x2300a6,0xc219f8b8,4
|
|
774
|
+
np.float32,0x3ee31355,0xbeb4c97a,4
|
|
775
|
+
np.float32,0x3f20b05f,0xbe4f1ba9,4
|
|
776
|
+
np.float32,0x3ee64249,0xbeb1b0ff,4
|
|
777
|
+
np.float32,0x3a94b7,0xc21913b2,4
|
|
778
|
+
np.float32,0x7ef7ef43,0x4218de1d,4
|
|
779
|
+
np.float32,0x3f1abb5d,0xbe5fe872,4
|
|
780
|
+
np.float32,0x7f65360b,0x4219ef72,4
|
|
781
|
+
np.float32,0x3d315d,0xc219004c,4
|
|
782
|
+
np.float32,0x3f26bbc4,0xbe3eafb9,4
|
|
783
|
+
np.float32,0x3ee8c6e9,0xbeaf45de,4
|
|
784
|
+
np.float32,0x7e5f1452,0x42177ae1,4
|
|
785
|
+
np.float32,0x3f32e777,0xbe1f5aba,4
|
|
786
|
+
np.float32,0x4d39a1,0xc21898d0,4
|
|
787
|
+
np.float32,0x3e59ad15,0xbf2c2841,4
|
|
788
|
+
np.float32,0x3f4be746,0xbdca5fc4,4
|
|
789
|
+
np.float32,0x72e4fd,0xc217e821,4
|
|
790
|
+
np.float32,0x1af0b8,0xc21a6d25,4
|
|
791
|
+
np.float32,0x3f311147,0xbe23f18d,4
|
|
792
|
+
np.float32,0x3f1ecebb,0xbe545880,4
|
|
793
|
+
np.float32,0x7e90d293,0x4217ef02,4
|
|
794
|
+
np.float32,0x3e3b366a,0xbf3ceb46,4
|
|
795
|
+
np.float32,0x3f133239,0xbe761c96,4
|
|
796
|
+
np.float32,0x7541ab,0xc217df15,4
|
|
797
|
+
np.float32,0x3d8c8275,0xbf94f1a1,4
|
|
798
|
+
np.float32,0x483b92,0xc218b689,4
|
|
799
|
+
np.float32,0x3eb0dbed,0xbeec5c6b,4
|
|
800
|
+
np.float32,0x3f00c676,0xbe98c8e2,4
|
|
801
|
+
np.float32,0x3f445ac2,0xbdebed7c,4
|
|
802
|
+
np.float32,0x3d2af4,0xc219007a,4
|
|
803
|
+
np.float32,0x7f196ee1,0x42193cf2,4
|
|
804
|
+
np.float32,0x290c94,0xc219b1db,4
|
|
805
|
+
np.float32,0x3f5dbdc9,0xbd7f9019,4
|
|
806
|
+
np.float32,0x3e80c62e,0xbf1974fc,4
|
|
807
|
+
np.float32,0x3ec9ed2c,0xbecee326,4
|
|
808
|
+
np.float32,0x7f469d60,0x4219afbb,4
|
|
809
|
+
np.float32,0x3f698413,0xbd2386ce,4
|
|
810
|
+
np.float32,0x42163f,0xc218de14,4
|
|
811
|
+
np.float32,0x67a554,0xc21815f4,4
|
|
812
|
+
np.float32,0x3f4bff74,0xbdc9f651,4
|
|
813
|
+
np.float32,0x16a743,0xc21aba39,4
|
|
814
|
+
np.float32,0x2eb8b0,0xc219784b,4
|
|
815
|
+
np.float32,0x3eed9be1,0xbeaab45b,4
|
|
816
|
+
np.float64,0x7fe0d76873e1aed0,0x40733f9d783bad7a,1
|
|
817
|
+
np.float64,0x3fe22626bb244c4d,0xbfcf86a59864eea2,1
|
|
818
|
+
np.float64,0x7f874113d02e8227,0x407324f54c4015b8,1
|
|
819
|
+
np.float64,0x3fe40a46a9e8148d,0xbfca0411f533fcb9,1
|
|
820
|
+
np.float64,0x3fd03932eea07266,0xbfe312bc9cf5649e,1
|
|
821
|
+
np.float64,0x7fee5d2a1b3cba53,0x407343b5f56367a0,1
|
|
822
|
+
np.float64,0x3feb7bda4a76f7b5,0xbfb0ea2c6edc784a,1
|
|
823
|
+
np.float64,0x3fd6cd831a2d9b06,0xbfdcaf2e1a5faf51,1
|
|
824
|
+
np.float64,0x98324e273064a,0xc0733e0e4c6d11c6,1
|
|
825
|
+
np.float64,0x7fe1dd63b363bac6,0x4073400667c405c3,1
|
|
826
|
+
np.float64,0x3fec5971f178b2e4,0xbfaaef32a7d94563,1
|
|
827
|
+
np.float64,0x17abc07e2f579,0xc0734afca4da721e,1
|
|
828
|
+
np.float64,0x3feec6ab5cfd8d57,0xbf9157f3545a8235,1
|
|
829
|
+
np.float64,0x3fe3ae9622a75d2c,0xbfcb04b5ad254581,1
|
|
830
|
+
np.float64,0x7fea73d854b4e7b0,0x407342c0a548f4c5,1
|
|
831
|
+
np.float64,0x7fe29babf4653757,0x4073404eeb5fe714,1
|
|
832
|
+
np.float64,0x7fd3a55d85a74aba,0x40733bde72e86c27,1
|
|
833
|
+
np.float64,0x3fe83ce305f079c6,0xbfbee3511e85e0f1,1
|
|
834
|
+
np.float64,0x3fd72087ea2e4110,0xbfdc4ab30802d7c2,1
|
|
835
|
+
np.float64,0x7feb54ddab76a9ba,0x407342facb6f3ede,1
|
|
836
|
+
np.float64,0xc57e34a18afd,0xc0734f82ec815baa,1
|
|
837
|
+
np.float64,0x7a8cb97ef5198,0xc0733f8fb3777a67,1
|
|
838
|
+
np.float64,0x7fe801032c300205,0x40734213dbe4eda9,1
|
|
839
|
+
np.float64,0x3aefb1f475df7,0xc07344a5f08a0584,1
|
|
840
|
+
np.float64,0x7fee85f1dd3d0be3,0x407343bf4441c2a7,1
|
|
841
|
+
np.float64,0x3fdc7f1055b8fe21,0xbfd67d300630e893,1
|
|
842
|
+
np.float64,0xe8ecddb3d1d9c,0xc0733b194f18f466,1
|
|
843
|
+
np.float64,0x3fdf2b23c73e5648,0xbfd3ff6872c1f887,1
|
|
844
|
+
np.float64,0x3fdba4aef2b7495e,0xbfd7557205e18b7b,1
|
|
845
|
+
np.float64,0x3fe2ac34c6e5586a,0xbfcdf1dac69bfa08,1
|
|
846
|
+
np.float64,0x3fc9852628330a4c,0xbfe66914f0fb9b0a,1
|
|
847
|
+
np.float64,0x7fda211acf344235,0x40733dd9c2177aeb,1
|
|
848
|
+
np.float64,0x3fe9420eb432841d,0xbfba4dd969a32575,1
|
|
849
|
+
np.float64,0xb2f9d1ed65f3a,0xc0733cedfb6527ff,1
|
|
850
|
+
np.float64,0x3fe9768a68f2ed15,0xbfb967c39c35c435,1
|
|
851
|
+
np.float64,0x7fe8268462b04d08,0x4073421eaed32734,1
|
|
852
|
+
np.float64,0x3fcf331f063e663e,0xbfe39e2f4b427ca9,1
|
|
853
|
+
np.float64,0x7fd4eb9e2b29d73b,0x40733c4e4141418d,1
|
|
854
|
+
np.float64,0x7fd2bba658a5774c,0x40733b89cd53d5b1,1
|
|
855
|
+
np.float64,0x3fdfdf04913fbe09,0xbfd360c7fd9d251b,1
|
|
856
|
+
np.float64,0x3fca5bfd0534b7fa,0xbfe5f5f844b2b20c,1
|
|
857
|
+
np.float64,0x3feacd5032f59aa0,0xbfb3b5234ba8bf7b,1
|
|
858
|
+
np.float64,0x7fe9241cec724839,0x4073426631362cec,1
|
|
859
|
+
np.float64,0x3fe57aca20eaf594,0xbfc628e3ac2c6387,1
|
|
860
|
+
np.float64,0x3fec6553ca38caa8,0xbfaa921368d3b222,1
|
|
861
|
+
np.float64,0x3fe1e9676563d2cf,0xbfd020f866ba9b24,1
|
|
862
|
+
np.float64,0x3fd5590667aab20d,0xbfde8458af5a4fd6,1
|
|
863
|
+
np.float64,0x3fdf7528f43eea52,0xbfd3bdb438d6ba5e,1
|
|
864
|
+
np.float64,0xb8dddc5571bbc,0xc0733cb4601e5bb2,1
|
|
865
|
+
np.float64,0xe6d4e1fbcda9c,0xc0733b295ef4a4ba,1
|
|
866
|
+
np.float64,0x3fe7019d962e033b,0xbfc257c0a6e8de16,1
|
|
867
|
+
np.float64,0x3f94ef585029deb1,0xbffb07e5dfb0e936,1
|
|
868
|
+
np.float64,0x7fc863b08030c760,0x4073388e28d7b354,1
|
|
869
|
+
np.float64,0xf684443bed089,0xc0733ab46cfbff9a,1
|
|
870
|
+
np.float64,0x7fe00e901d201d1f,0x40733f489c05a0f0,1
|
|
871
|
+
np.float64,0x9e5c0a273cb82,0xc0733dc7af797e19,1
|
|
872
|
+
np.float64,0x7fe49734f0692e69,0x4073410303680df0,1
|
|
873
|
+
np.float64,0x7fb7b584442f6b08,0x4073338acff72502,1
|
|
874
|
+
np.float64,0x3f99984c30333098,0xbff9a2642a6ed8cc,1
|
|
875
|
+
np.float64,0x7fea2fcda8745f9a,0x407342aeae7f5e64,1
|
|
876
|
+
np.float64,0xe580caadcb01a,0xc0733b33a3639217,1
|
|
877
|
+
np.float64,0x1899ab3831336,0xc0734ab823729417,1
|
|
878
|
+
np.float64,0x39bd4c76737aa,0xc07344ca6fac6d21,1
|
|
879
|
+
np.float64,0xd755b2dbaeab7,0xc0733ba4fe19f2cc,1
|
|
880
|
+
np.float64,0x3f952bebf82a57d8,0xbffaf3e7749c2512,1
|
|
881
|
+
np.float64,0x3fe62ee5d72c5dcc,0xbfc45e3cb5baad08,1
|
|
882
|
+
np.float64,0xb1264a7d624ca,0xc0733d003a1d0a66,1
|
|
883
|
+
np.float64,0x3fc4bd1bcd297a38,0xbfe94b3058345c46,1
|
|
884
|
+
np.float64,0x7fc5758bb32aeb16,0x407337aa7805497f,1
|
|
885
|
+
np.float64,0x3fb0edcaf421db96,0xbff2dfb09c405294,1
|
|
886
|
+
np.float64,0x3fd240fceaa481fa,0xbfe16f356bb36134,1
|
|
887
|
+
np.float64,0x38c0c62a7181a,0xc07344e916d1e9b7,1
|
|
888
|
+
np.float64,0x3fe98f2b3bf31e56,0xbfb8fc6eb622a820,1
|
|
889
|
+
np.float64,0x3fe2bdf99c257bf3,0xbfcdbd0dbbae4d0b,1
|
|
890
|
+
np.float64,0xce4b390d9c967,0xc0733bf14ada3134,1
|
|
891
|
+
np.float64,0x3fd2ad607ba55ac1,0xbfe11da15167b37b,1
|
|
892
|
+
np.float64,0x3fd8154f11b02a9e,0xbfdb2a6fabb9a026,1
|
|
893
|
+
np.float64,0xf37849fde6f09,0xc0733aca8c64344c,1
|
|
894
|
+
np.float64,0x3fcbae43b2375c87,0xbfe547f267c8e570,1
|
|
895
|
+
np.float64,0x3fcd46fd7d3a8dfb,0xbfe48070f7232929,1
|
|
896
|
+
np.float64,0x7fcdd245273ba489,0x407339f3d907b101,1
|
|
897
|
+
np.float64,0x3fac75cd0838eb9a,0xbff4149d177b057b,1
|
|
898
|
+
np.float64,0x7fe8ff3fd7f1fe7f,0x4073425bf968ba6f,1
|
|
899
|
+
np.float64,0x7febadaa4df75b54,0x407343113a91f0e9,1
|
|
900
|
+
np.float64,0x7fd5e4649c2bc8c8,0x40733c9f0620b065,1
|
|
901
|
+
np.float64,0x903429812069,0xc07351b255e27887,1
|
|
902
|
+
np.float64,0x3fe1d8c51c63b18a,0xbfd03ad448c1f1ee,1
|
|
903
|
+
np.float64,0x3fe573ea646ae7d5,0xbfc63ab0bfd0e601,1
|
|
904
|
+
np.float64,0x3f83b3f3c02767e8,0xc00022677e310649,1
|
|
905
|
+
np.float64,0x7fd15d1582a2ba2a,0x40733b02c469c1d6,1
|
|
906
|
+
np.float64,0x3fe63d3dabec7a7b,0xbfc43a56ee97b27e,1
|
|
907
|
+
np.float64,0x7fe3a452fb2748a5,0x407340af1973c228,1
|
|
908
|
+
np.float64,0x3fafac6b303f58d6,0xbff35651703ae9f2,1
|
|
909
|
+
np.float64,0x513ddd24a27bc,0xc073426af96aaebb,1
|
|
910
|
+
np.float64,0x3fef152246be2a45,0xbf89df79d7719282,1
|
|
911
|
+
np.float64,0x3fe8c923e9f19248,0xbfbc67228e8db5f6,1
|
|
912
|
+
np.float64,0x3fd6e2325fadc465,0xbfdc9602fb0b950f,1
|
|
913
|
+
np.float64,0x3fe9616815f2c2d0,0xbfb9c4311a3b415b,1
|
|
914
|
+
np.float64,0x2fe4e4005fc9d,0xc0734616fe294395,1
|
|
915
|
+
np.float64,0x3fbceb02dc39d606,0xbfee4e68f1c7886f,1
|
|
916
|
+
np.float64,0x7fe35e843d66bd07,0x407340963b066ad6,1
|
|
917
|
+
np.float64,0x7fecd6c648f9ad8c,0x4073435a4c176e94,1
|
|
918
|
+
np.float64,0x7fcbd72bf437ae57,0x4073397994b85665,1
|
|
919
|
+
np.float64,0x3feff6443b3fec88,0xbf40eb380d5318ae,1
|
|
920
|
+
np.float64,0x7fb9373cf6326e79,0x407333f869edef08,1
|
|
921
|
+
np.float64,0x63790d9cc6f22,0xc0734102d4793cda,1
|
|
922
|
+
np.float64,0x3f9de6efe83bcde0,0xbff88db6f0a6b56e,1
|
|
923
|
+
np.float64,0xe00f2dc1c01f,0xc0734ea26ab84ff2,1
|
|
924
|
+
np.float64,0xd7a9aa8baf536,0xc0733ba248fa33ab,1
|
|
925
|
+
np.float64,0x3fee0089ea7c0114,0xbf9cab936ac31c4b,1
|
|
926
|
+
np.float64,0x3fdec0d51cbd81aa,0xbfd45ed8878c5860,1
|
|
927
|
+
np.float64,0x7fe91bf5e9f237eb,0x40734263f005081d,1
|
|
928
|
+
np.float64,0x34ea7d1e69d50,0xc07345659dde7444,1
|
|
929
|
+
np.float64,0x7fe67321a3ace642,0x4073419cc8130d95,1
|
|
930
|
+
np.float64,0x9d1aeb2f3a35e,0xc0733dd5d506425c,1
|
|
931
|
+
np.float64,0x7fbb01df003603bd,0x4073347282f1391d,1
|
|
932
|
+
np.float64,0x42b945b285729,0xc07343c92d1bbef9,1
|
|
933
|
+
np.float64,0x7fc92799b8324f32,0x407338c51e3f0733,1
|
|
934
|
+
np.float64,0x3fe119c19b223383,0xbfd16ab707f65686,1
|
|
935
|
+
np.float64,0x3fc9f9ac5333f359,0xbfe62a2f91ec0dff,1
|
|
936
|
+
np.float64,0x3fd820d5a8b041ab,0xbfdb1d2586fe7b18,1
|
|
937
|
+
np.float64,0x10000000000000,0xc0733a7146f72a42,1
|
|
938
|
+
np.float64,0x3fe7e1543eafc2a8,0xbfc045362889592d,1
|
|
939
|
+
np.float64,0xcbc0e1819783,0xc0734f4b68e05b1c,1
|
|
940
|
+
np.float64,0xeb57e411d6afd,0xc0733b06efec001a,1
|
|
941
|
+
np.float64,0xa9b74b47536ea,0xc0733d4c7bd06ddc,1
|
|
942
|
+
np.float64,0x3fe56d4022eada80,0xbfc64bf8c7e3dd59,1
|
|
943
|
+
np.float64,0x3fd445ca27288b94,0xbfdff40aecd0f882,1
|
|
944
|
+
np.float64,0x3fe5af1cf5ab5e3a,0xbfc5a21d83699a04,1
|
|
945
|
+
np.float64,0x7fed3431eb7a6863,0x40734370aa6131e1,1
|
|
946
|
+
np.float64,0x3fd878dea1b0f1bd,0xbfdab8730dc00517,1
|
|
947
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
948
|
+
np.float64,0x3feba9fcc1f753fa,0xbfb03027dcecbf65,1
|
|
949
|
+
np.float64,0x7fca4feed6349fdd,0x4073391526327eb0,1
|
|
950
|
+
np.float64,0x3fe7748ddbaee91c,0xbfc144b438218065,1
|
|
951
|
+
np.float64,0x3fb5fbd94c2bf7b3,0xbff10ee6342c21a0,1
|
|
952
|
+
np.float64,0x3feb603b97f6c077,0xbfb15a1f99d6d25e,1
|
|
953
|
+
np.float64,0x3fe2e6fc8ce5cdf9,0xbfcd43edd7f3b4e6,1
|
|
954
|
+
np.float64,0x7feb2b31f7765663,0x407342f02b306688,1
|
|
955
|
+
np.float64,0x3fe290e2282521c4,0xbfce436deb8dbcf3,1
|
|
956
|
+
np.float64,0x3fe3d5adf9e7ab5c,0xbfca96b8aa55d942,1
|
|
957
|
+
np.float64,0x691899f2d2314,0xc07340a1026897c8,1
|
|
958
|
+
np.float64,0x7fe468b008e8d15f,0x407340f33eadc628,1
|
|
959
|
+
np.float64,0x3fb3a4c416274988,0xbff1d71da539a56e,1
|
|
960
|
+
np.float64,0x3fe2442b29e48856,0xbfcf2b0037322661,1
|
|
961
|
+
np.float64,0x3f376fbc7e6ef,0xc073442939a84643,1
|
|
962
|
+
np.float64,0x3fe7c78d65ef8f1b,0xbfc08157cff411de,1
|
|
963
|
+
np.float64,0xd4f27acba9e50,0xc0733bb8d38daa50,1
|
|
964
|
+
np.float64,0x5198919ea3313,0xc07342633ba7cbea,1
|
|
965
|
+
np.float64,0x7fd09f66f0a13ecd,0x40733ab5310b4385,1
|
|
966
|
+
np.float64,0x3fdfe5531dbfcaa6,0xbfd35b487c7e739f,1
|
|
967
|
+
np.float64,0x3fc4b0fecc2961fe,0xbfe95350c38c1640,1
|
|
968
|
+
np.float64,0x7fd5ae21962b5c42,0x40733c8db78b7250,1
|
|
969
|
+
np.float64,0x3fa4a8fcd42951fa,0xbff64e62fe602b72,1
|
|
970
|
+
np.float64,0x7fc8e0e25831c1c4,0x407338b179b91223,1
|
|
971
|
+
np.float64,0x7fdde1df6f3bc3be,0x40733ec87f9f027e,1
|
|
972
|
+
np.float64,0x3fd8b9ad86b1735b,0xbfda6f385532c41b,1
|
|
973
|
+
np.float64,0x3fd9f20ee933e41e,0xbfd91872fd858597,1
|
|
974
|
+
np.float64,0x7feb35332df66a65,0x407342f2b9c715f0,1
|
|
975
|
+
np.float64,0x7fe783dc7eaf07b8,0x407341ef41873706,1
|
|
976
|
+
np.float64,0x7fceee929f3ddd24,0x40733a34e3c660fd,1
|
|
977
|
+
np.float64,0x985b58d730b6b,0xc0733e0c6cfbb6f8,1
|
|
978
|
+
np.float64,0x3fef4bb55cfe976b,0xbf83cb246c6f2a78,1
|
|
979
|
+
np.float64,0x3fe218014f243003,0xbfcfb20ac683e1f6,1
|
|
980
|
+
np.float64,0x7fe43b9fbea8773e,0x407340e3d5d5d29e,1
|
|
981
|
+
np.float64,0x7fe148c74c62918e,0x40733fcba4367b8b,1
|
|
982
|
+
np.float64,0x3feea4ad083d495a,0xbf93443917f3c991,1
|
|
983
|
+
np.float64,0x8bcf6311179ed,0xc0733ea54d59dd31,1
|
|
984
|
+
np.float64,0xf4b7a2dbe96f5,0xc0733ac175182401,1
|
|
985
|
+
np.float64,0x543338baa8668,0xc073422b59165fe4,1
|
|
986
|
+
np.float64,0x3fdb467317368ce6,0xbfd7b4d515929635,1
|
|
987
|
+
np.float64,0x7fe3bbbc89e77778,0x407340b75cdf3de7,1
|
|
988
|
+
np.float64,0x7fe693377aad266e,0x407341a6af60a0f1,1
|
|
989
|
+
np.float64,0x3fc66210502cc421,0xbfe83bb940610a24,1
|
|
990
|
+
np.float64,0x7fa75638982eac70,0x40732e9da476b816,1
|
|
991
|
+
np.float64,0x3fe0d72a4761ae55,0xbfd1d7c82c479fab,1
|
|
992
|
+
np.float64,0x97dec0dd2fbd8,0xc0733e121e072804,1
|
|
993
|
+
np.float64,0x3fef33ec8c7e67d9,0xbf86701be6be8df1,1
|
|
994
|
+
np.float64,0x7fcfca9b423f9536,0x40733a65a51efb94,1
|
|
995
|
+
np.float64,0x9f2215633e443,0xc0733dbf043de9ed,1
|
|
996
|
+
np.float64,0x2469373e48d28,0xc07347fe9e904b77,1
|
|
997
|
+
np.float64,0x7fecc2e18cb985c2,0x407343557f58dfa2,1
|
|
998
|
+
np.float64,0x3fde4acbfdbc9598,0xbfd4ca559e575e74,1
|
|
999
|
+
np.float64,0x3fd6b11cf1ad623a,0xbfdcd1e17ef36114,1
|
|
1000
|
+
np.float64,0x3fc19ec494233d89,0xbfeb8ef228e8826a,1
|
|
1001
|
+
np.float64,0x4c89ee389913e,0xc07342d50c904f61,1
|
|
1002
|
+
np.float64,0x88c2046f11841,0xc0733ecc91369431,1
|
|
1003
|
+
np.float64,0x7fc88c13fd311827,0x40733899a125b392,1
|
|
1004
|
+
np.float64,0x3fcebd893a3d7b12,0xbfe3d2f35ab93765,1
|
|
1005
|
+
np.float64,0x3feb582a1476b054,0xbfb17ae8ec6a0465,1
|
|
1006
|
+
np.float64,0x7fd4369e5da86d3c,0x40733c1118b8cd67,1
|
|
1007
|
+
np.float64,0x3fda013fc1340280,0xbfd90831b85e98b2,1
|
|
1008
|
+
np.float64,0x7fed33d73fba67ad,0x4073437094ce1bd9,1
|
|
1009
|
+
np.float64,0x3fed3191053a6322,0xbfa468cc26a8f685,1
|
|
1010
|
+
np.float64,0x3fc04ed51c209daa,0xbfeca24a6f093bca,1
|
|
1011
|
+
np.float64,0x3fee4ac8763c9591,0xbf986458abbb90b5,1
|
|
1012
|
+
np.float64,0xa2d39dd145a74,0xc0733d9633651fbc,1
|
|
1013
|
+
np.float64,0x3fe7d9f86f2fb3f1,0xbfc0565a0b059f1c,1
|
|
1014
|
+
np.float64,0x3fe3250144e64a03,0xbfcc8eb2b9ae494b,1
|
|
1015
|
+
np.float64,0x7fe2b29507a56529,0x4073405774492075,1
|
|
1016
|
+
np.float64,0x7fdcdfcbe2b9bf97,0x40733e8b736b1bd8,1
|
|
1017
|
+
np.float64,0x3fc832730f3064e6,0xbfe7267ac9b2e7c3,1
|
|
1018
|
+
np.float64,0x3fc7e912e52fd226,0xbfe750dfc0aeae57,1
|
|
1019
|
+
np.float64,0x7fc960472f32c08d,0x407338d4b4cb3957,1
|
|
1020
|
+
np.float64,0x3fbdf182ea3be306,0xbfedd27150283ffb,1
|
|
1021
|
+
np.float64,0x3fd1e9359823d26b,0xbfe1b2ac7fd25f8d,1
|
|
1022
|
+
np.float64,0x7fbcf75f6039eebe,0x407334ef13eb16f8,1
|
|
1023
|
+
np.float64,0x3fe5a3c910eb4792,0xbfc5bf2f57c5d643,1
|
|
1024
|
+
np.float64,0x3fcf4f2a6e3e9e55,0xbfe391b6f065c4b8,1
|
|
1025
|
+
np.float64,0x3fee067873fc0cf1,0xbf9c53af0373fc0e,1
|
|
1026
|
+
np.float64,0xd3f08b85a7e12,0xc0733bc14357e686,1
|
|
1027
|
+
np.float64,0x7ff0000000000000,0x7ff0000000000000,1
|
|
1028
|
+
np.float64,0x3fc8635f6430c6bf,0xbfe70a7dc77749a7,1
|
|
1029
|
+
np.float64,0x3fe3ff5c52a7feb9,0xbfca22617c6636d5,1
|
|
1030
|
+
np.float64,0x3fbbae91fa375d24,0xbfeee9d4c300543f,1
|
|
1031
|
+
np.float64,0xe3f71b59c7ee4,0xc0733b3f99187375,1
|
|
1032
|
+
np.float64,0x7fca93d3be3527a6,0x40733926fd48ecd6,1
|
|
1033
|
+
np.float64,0x3fcd29f7223a53ee,0xbfe48e3edf32fe57,1
|
|
1034
|
+
np.float64,0x7fdc4ef6f8389ded,0x40733e68401cf2a6,1
|
|
1035
|
+
np.float64,0xe009bc81c014,0xc0734ea295ee3e5b,1
|
|
1036
|
+
np.float64,0x61f56c78c3eae,0xc073411e1dbd7c54,1
|
|
1037
|
+
np.float64,0x3fde131928bc2632,0xbfd4fda024f6927c,1
|
|
1038
|
+
np.float64,0x3fb21ee530243dca,0xbff266aaf0358129,1
|
|
1039
|
+
np.float64,0x7feaac82a4f55904,0x407342cf7809d9f9,1
|
|
1040
|
+
np.float64,0x3fe66ab177ecd563,0xbfc3c92d4d522819,1
|
|
1041
|
+
np.float64,0xfe9f9c2bfd3f4,0xc0733a7ade3a88a7,1
|
|
1042
|
+
np.float64,0x7fd0c5217c218a42,0x40733ac4e4c6dfa5,1
|
|
1043
|
+
np.float64,0x430f4ae6861ea,0xc07343c03d8a9442,1
|
|
1044
|
+
np.float64,0x494bff2a92981,0xc073432209d2fd16,1
|
|
1045
|
+
np.float64,0x3f8860e9d030c1d4,0xbffeca059ebf5e89,1
|
|
1046
|
+
np.float64,0x3fe43732dc286e66,0xbfc98800388bad2e,1
|
|
1047
|
+
np.float64,0x6443b60ec8877,0xc07340f4bab11827,1
|
|
1048
|
+
np.float64,0x3feda9be6d7b537d,0xbfa0dcb9a6914069,1
|
|
1049
|
+
np.float64,0x3fc5ceb6772b9d6d,0xbfe89868c881db70,1
|
|
1050
|
+
np.float64,0x3fbdf153023be2a6,0xbfedd2878c3b4949,1
|
|
1051
|
+
np.float64,0x7fe8f6b8e8f1ed71,0x407342599a30b273,1
|
|
1052
|
+
np.float64,0x3fea6fbdb8b4df7b,0xbfb53bf66f71ee96,1
|
|
1053
|
+
np.float64,0xc7ac3dbb8f588,0xc0733c2b525b7963,1
|
|
1054
|
+
np.float64,0x3fef3a91f77e7524,0xbf85b2bd3adbbe31,1
|
|
1055
|
+
np.float64,0x3f887cb97030f973,0xbffec21ccbb5d22a,1
|
|
1056
|
+
np.float64,0x8b2f1c9f165e4,0xc0733ead49300951,1
|
|
1057
|
+
np.float64,0x2c1cb32058397,0xc07346a951bd8d2b,1
|
|
1058
|
+
np.float64,0x3fe057edd620afdc,0xbfd2acf1881b7e99,1
|
|
1059
|
+
np.float64,0x7f82e9530025d2a5,0x4073238591dd52ce,1
|
|
1060
|
+
np.float64,0x3fe4e03dff69c07c,0xbfc7be96c5c006fc,1
|
|
1061
|
+
np.float64,0x52727b4aa4e50,0xc0734250c58ebbc1,1
|
|
1062
|
+
np.float64,0x3f99a62160334c43,0xbff99ea3ca09d8f9,1
|
|
1063
|
+
np.float64,0x3fd5314b4faa6297,0xbfdeb843daf01e03,1
|
|
1064
|
+
np.float64,0x3fefde89e13fbd14,0xbf5d1facb7a1e9de,1
|
|
1065
|
+
np.float64,0x7fb460f1a228c1e2,0x4073327d8cbc5f86,1
|
|
1066
|
+
np.float64,0xeb93efb3d727e,0xc0733b052a4990e4,1
|
|
1067
|
+
np.float64,0x3fe884baecf10976,0xbfbd9ba9cfe23713,1
|
|
1068
|
+
np.float64,0x7fefffffffffffff,0x40734413509f79ff,1
|
|
1069
|
+
np.float64,0x149dc7c6293ba,0xc0734bf26b1df025,1
|
|
1070
|
+
np.float64,0x64188f88c8313,0xc07340f7b8e6f4b5,1
|
|
1071
|
+
np.float64,0x3fdfac314abf5863,0xbfd38d3e9dba1b0e,1
|
|
1072
|
+
np.float64,0x3fd72052a42e40a5,0xbfdc4af30ee0b245,1
|
|
1073
|
+
np.float64,0x7fdd951f743b2a3e,0x40733eb68fafa838,1
|
|
1074
|
+
np.float64,0x65a2dd5acb45c,0xc07340dc8ed625e1,1
|
|
1075
|
+
np.float64,0x7fe89a79997134f2,0x4073423fbceb1cbe,1
|
|
1076
|
+
np.float64,0x3fe70a000d6e1400,0xbfc24381e09d02f7,1
|
|
1077
|
+
np.float64,0x3fe2cec160259d83,0xbfcd8b5e92354129,1
|
|
1078
|
+
np.float64,0x3feb9ef77a773def,0xbfb05c7b2ee6f388,1
|
|
1079
|
+
np.float64,0xe0d66689c1acd,0xc0733b582c779620,1
|
|
1080
|
+
np.float64,0x3fee86bd0ffd0d7a,0xbf94f7870502c325,1
|
|
1081
|
+
np.float64,0x186afc6230d60,0xc0734ac55fb66d5d,1
|
|
1082
|
+
np.float64,0xc0631f4b80c64,0xc0733c6d7149d373,1
|
|
1083
|
+
np.float64,0x3fdad1b87735a371,0xbfd82cca73ec663b,1
|
|
1084
|
+
np.float64,0x7fe7f6d313efeda5,0x40734210e84576ab,1
|
|
1085
|
+
np.float64,0x7fd7b7fce6af6ff9,0x40733d2d92ffdaaf,1
|
|
1086
|
+
np.float64,0x3fe6f35a28ade6b4,0xbfc27a4239b540c3,1
|
|
1087
|
+
np.float64,0x7fdb0b834eb61706,0x40733e17073a61f3,1
|
|
1088
|
+
np.float64,0x82f4661105e8d,0xc0733f19b34adeed,1
|
|
1089
|
+
np.float64,0x3fc77230112ee460,0xbfe796a7603c0d16,1
|
|
1090
|
+
np.float64,0x8000000000000000,0xfff0000000000000,1
|
|
1091
|
+
np.float64,0x7fb8317bc63062f7,0x407333aec761a739,1
|
|
1092
|
+
np.float64,0x7fd165609a22cac0,0x40733b061541ff15,1
|
|
1093
|
+
np.float64,0x3fed394768fa728f,0xbfa42e1596e1faf6,1
|
|
1094
|
+
np.float64,0x7febab693d7756d1,0x40734310a9ac828e,1
|
|
1095
|
+
np.float64,0x7fe809a69230134c,0x407342165b9acb69,1
|
|
1096
|
+
np.float64,0x3fc091d38f2123a7,0xbfec69a70fc23548,1
|
|
1097
|
+
np.float64,0x3fb2a8f5dc2551ec,0xbff2327f2641dd0d,1
|
|
1098
|
+
np.float64,0x7fc60b6fe02c16df,0x407337da5adc342c,1
|
|
1099
|
+
np.float64,0x3fefa53c3bbf4a78,0xbf73d1be15b73b00,1
|
|
1100
|
+
np.float64,0x7fee09c1717c1382,0x407343a2c479e1cb,1
|
|
1101
|
+
np.float64,0x8000000000000001,0x7ff8000000000000,1
|
|
1102
|
+
np.float64,0x3fede0b2733bc165,0xbf9e848ac2ecf604,1
|
|
1103
|
+
np.float64,0x3fee2ac331bc5586,0xbf9a3b699b721c9a,1
|
|
1104
|
+
np.float64,0x3fd4db12d829b626,0xbfdf2a413d1e453a,1
|
|
1105
|
+
np.float64,0x7fe605230dec0a45,0x4073417a67db06be,1
|
|
1106
|
+
np.float64,0x3fe378b2bf26f165,0xbfcb9dbb2b6d6832,1
|
|
1107
|
+
np.float64,0xc1d4c1ab83a98,0xc0733c60244cadbf,1
|
|
1108
|
+
np.float64,0x3feb15500e762aa0,0xbfb28c071d5efc22,1
|
|
1109
|
+
np.float64,0x3fe36225a626c44b,0xbfcbde4259e9047e,1
|
|
1110
|
+
np.float64,0x3fe7c586a72f8b0d,0xbfc08614b13ed4b2,1
|
|
1111
|
+
np.float64,0x7fb0f2d8cc21e5b1,0x40733135b2c7dd99,1
|
|
1112
|
+
np.float64,0x5957f3feb2aff,0xc07341c1df75638c,1
|
|
1113
|
+
np.float64,0x3fca4851bd3490a3,0xbfe6005ae5279485,1
|
|
1114
|
+
np.float64,0x824217d904843,0xc0733f232fd58f0f,1
|
|
1115
|
+
np.float64,0x4f9332269f267,0xc073428fd8e9cb32,1
|
|
1116
|
+
np.float64,0x3fea6f087374de11,0xbfb53ef0d03918b2,1
|
|
1117
|
+
np.float64,0x3fd9409ab4328135,0xbfd9d9231381e2b8,1
|
|
1118
|
+
np.float64,0x3fdba03b00374076,0xbfd759ec94a7ab5b,1
|
|
1119
|
+
np.float64,0x3fe0ce3766619c6f,0xbfd1e6912582ccf0,1
|
|
1120
|
+
np.float64,0x3fabd45ddc37a8bc,0xbff43c78d3188423,1
|
|
1121
|
+
np.float64,0x3fc3cadd592795bb,0xbfe9f1576c9b2c79,1
|
|
1122
|
+
np.float64,0x3fe10df049621be1,0xbfd17df2f2c28022,1
|
|
1123
|
+
np.float64,0x945b5d1328b6c,0xc0733e3bc06f1e75,1
|
|
1124
|
+
np.float64,0x7fc1c3742b2386e7,0x4073365a403d1051,1
|
|
1125
|
+
np.float64,0x7fdc957138b92ae1,0x40733e7977717586,1
|
|
1126
|
+
np.float64,0x7f943fa1a0287f42,0x407328d01de143f5,1
|
|
1127
|
+
np.float64,0x3fec9631c4392c64,0xbfa914b176d8f9d2,1
|
|
1128
|
+
np.float64,0x3fd8e7c008b1cf80,0xbfda3b9d9b6da8f4,1
|
|
1129
|
+
np.float64,0x7222f9fee4460,0xc073400e371516cc,1
|
|
1130
|
+
np.float64,0x3fe890e43eb121c8,0xbfbd64921462e823,1
|
|
1131
|
+
np.float64,0x3fcfd7fe2a3faffc,0xbfe3557e2f207800,1
|
|
1132
|
+
np.float64,0x3fed5dd1c1babba4,0xbfa318bb20db64e6,1
|
|
1133
|
+
np.float64,0x3fe6aa34c66d546a,0xbfc32c8a8991c11e,1
|
|
1134
|
+
np.float64,0x8ca79801196,0xc0736522bd5adf6a,1
|
|
1135
|
+
np.float64,0x3feb274079364e81,0xbfb2427b24b0ca20,1
|
|
1136
|
+
np.float64,0x7fe04927e4a0924f,0x40733f61c96f7f89,1
|
|
1137
|
+
np.float64,0x7c05f656f80bf,0xc0733f7a70555b4e,1
|
|
1138
|
+
np.float64,0x7fe97819eff2f033,0x4073427d4169b0f8,1
|
|
1139
|
+
np.float64,0x9def86e33bdf1,0xc0733dcc740b7175,1
|
|
1140
|
+
np.float64,0x7fedd1ef3f3ba3dd,0x40734395ceab8238,1
|
|
1141
|
+
np.float64,0x77bed86cef7dc,0xc0733fb8e0e9bf73,1
|
|
1142
|
+
np.float64,0x9274b41b24e97,0xc0733e52b16dff71,1
|
|
1143
|
+
np.float64,0x8010000000000000,0x7ff8000000000000,1
|
|
1144
|
+
np.float64,0x9c977855392ef,0xc0733ddba7d421d9,1
|
|
1145
|
+
np.float64,0xfb4560a3f68ac,0xc0733a9271e6a118,1
|
|
1146
|
+
np.float64,0xa67d9f394cfb4,0xc0733d6e9d58cc94,1
|
|
1147
|
+
np.float64,0x3fbfa766b03f4ecd,0xbfed0cccfecfc900,1
|
|
1148
|
+
np.float64,0x3fe177417522ee83,0xbfd0d45803bff01a,1
|
|
1149
|
+
np.float64,0x7fe85e077bb0bc0e,0x4073422e957a4aa3,1
|
|
1150
|
+
np.float64,0x7feeb0a6883d614c,0x407343c8f6568f7c,1
|
|
1151
|
+
np.float64,0xbab82edb75706,0xc0733ca2a2b20094,1
|
|
1152
|
+
np.float64,0xfadb44bdf5b69,0xc0733a9561b7ec04,1
|
|
1153
|
+
np.float64,0x3fefb9b82b3f7370,0xbf6ea776b2dcc3a9,1
|
|
1154
|
+
np.float64,0x7fe080ba8a610174,0x40733f795779b220,1
|
|
1155
|
+
np.float64,0x3f87faa1c02ff544,0xbffee76acafc92b7,1
|
|
1156
|
+
np.float64,0x7fed474108fa8e81,0x4073437531d4313e,1
|
|
1157
|
+
np.float64,0x3fdb7b229336f645,0xbfd77f583a4a067f,1
|
|
1158
|
+
np.float64,0x256dbf0c4adb9,0xc07347cd94e6fa81,1
|
|
1159
|
+
np.float64,0x3fd034ae25a0695c,0xbfe3169c15decdac,1
|
|
1160
|
+
np.float64,0x3a72177274e44,0xc07344b4cf7d68cd,1
|
|
1161
|
+
np.float64,0x7fa2522d5c24a45a,0x40732cef2f793470,1
|
|
1162
|
+
np.float64,0x3fb052bdde20a57c,0xbff3207fd413c848,1
|
|
1163
|
+
np.float64,0x3fdccfecbbb99fd9,0xbfd62ec04a1a687a,1
|
|
1164
|
+
np.float64,0x3fd403ac53280759,0xbfe027a31df2c8cc,1
|
|
1165
|
+
np.float64,0x3fab708e4036e11d,0xbff45591df4f2e8b,1
|
|
1166
|
+
np.float64,0x7fcfc001993f8002,0x40733a63539acf9d,1
|
|
1167
|
+
np.float64,0x3fd2b295dfa5652c,0xbfe119c1b476c536,1
|
|
1168
|
+
np.float64,0x7fe8061262b00c24,0x4073421552ae4538,1
|
|
1169
|
+
np.float64,0xffefffffffffffff,0x7ff8000000000000,1
|
|
1170
|
+
np.float64,0x7fed52093ffaa411,0x40734377c072a7e8,1
|
|
1171
|
+
np.float64,0xf3df902fe7bf2,0xc0733ac79a75ff7a,1
|
|
1172
|
+
np.float64,0x7fe13d382e227a6f,0x40733fc6fd0486bd,1
|
|
1173
|
+
np.float64,0x3621d5086c43b,0xc073453d31effbcd,1
|
|
1174
|
+
np.float64,0x3ff0000000000000,0x0,1
|
|
1175
|
+
np.float64,0x3fdaffea27b5ffd4,0xbfd7fd139dc1c2c5,1
|
|
1176
|
+
np.float64,0x7fea6536dc34ca6d,0x407342bccc564fdd,1
|
|
1177
|
+
np.float64,0x7fd478f00c28f1df,0x40733c27c0072fde,1
|
|
1178
|
+
np.float64,0x7fa72ef0502e5de0,0x40732e91e83db75c,1
|
|
1179
|
+
np.float64,0x7fd302970626052d,0x40733ba3ec6775f6,1
|
|
1180
|
+
np.float64,0x7fbb57ab0036af55,0x407334887348e613,1
|
|
1181
|
+
np.float64,0x3fda0ff722b41fee,0xbfd8f87b77930330,1
|
|
1182
|
+
np.float64,0x1e983ce23d309,0xc073493438f57e61,1
|
|
1183
|
+
np.float64,0x7fc90de97c321bd2,0x407338be01ffd4bd,1
|
|
1184
|
+
np.float64,0x7fe074b09c20e960,0x40733f7443f0dbe1,1
|
|
1185
|
+
np.float64,0x3fed5dec9fbabbd9,0xbfa317efb1fe8a95,1
|
|
1186
|
+
np.float64,0x7fdb877632b70eeb,0x40733e3697c88ba8,1
|
|
1187
|
+
np.float64,0x7fe4fb0067e9f600,0x40734124604b99e8,1
|
|
1188
|
+
np.float64,0x7fd447dc96288fb8,0x40733c1703ab2cce,1
|
|
1189
|
+
np.float64,0x3feb2d1e64f65a3d,0xbfb22a781df61c05,1
|
|
1190
|
+
np.float64,0xb6c8e6676d91d,0xc0733cc8859a0b91,1
|
|
1191
|
+
np.float64,0x3fdc3c2418387848,0xbfd6bec3a3c3cdb5,1
|
|
1192
|
+
np.float64,0x3fdecb9ccdbd973a,0xbfd4551c05721a8e,1
|
|
1193
|
+
np.float64,0x3feb1100e7762202,0xbfb29db911fe6768,1
|
|
1194
|
+
np.float64,0x3fe0444bc2a08898,0xbfd2ce69582e78c1,1
|
|
1195
|
+
np.float64,0x7fda403218b48063,0x40733de201d8340c,1
|
|
1196
|
+
np.float64,0x3fdc70421238e084,0xbfd68ba4bd48322b,1
|
|
1197
|
+
np.float64,0x3fe06e747c60dce9,0xbfd286bcac34a981,1
|
|
1198
|
+
np.float64,0x7fc1931d9623263a,0x407336473da54de4,1
|
|
1199
|
+
np.float64,0x229914da45323,0xc073485979ff141c,1
|
|
1200
|
+
np.float64,0x3fe142f92da285f2,0xbfd1280909992cb6,1
|
|
1201
|
+
np.float64,0xf1d02fa9e3a06,0xc0733ad6b19d71a0,1
|
|
1202
|
+
np.float64,0x3fb1fe9b0023fd36,0xbff27317d8252c16,1
|
|
1203
|
+
np.float64,0x3fa544b9242a8972,0xbff61ac38569bcfc,1
|
|
1204
|
+
np.float64,0x3feeb129d4fd6254,0xbf928f23ad20c1ee,1
|
|
1205
|
+
np.float64,0xa2510b7f44a22,0xc0733d9bc81ea0a1,1
|
|
1206
|
+
np.float64,0x3fca75694d34ead3,0xbfe5e8975b3646c2,1
|
|
1207
|
+
np.float64,0x7fece10621b9c20b,0x4073435cc3dd9a1b,1
|
|
1208
|
+
np.float64,0x7fe98a57d3b314af,0x4073428239b6a135,1
|
|
1209
|
+
np.float64,0x3fe259c62a64b38c,0xbfcee96682a0f355,1
|
|
1210
|
+
np.float64,0x3feaaa9b9d755537,0xbfb445779f3359af,1
|
|
1211
|
+
np.float64,0xdaadecfdb55be,0xc0733b899338432a,1
|
|
1212
|
+
np.float64,0x3fed00eae4fa01d6,0xbfa5dc8d77be5991,1
|
|
1213
|
+
np.float64,0x7fcc96c773392d8e,0x407339a8c5cd786e,1
|
|
1214
|
+
np.float64,0x3fef7b8b203ef716,0xbf7cff655ecb6424,1
|
|
1215
|
+
np.float64,0x7fd4008113a80101,0x40733bfe6552acb7,1
|
|
1216
|
+
np.float64,0x7fe99ff035b33fdf,0x407342881753ee2e,1
|
|
1217
|
+
np.float64,0x3ee031e87dc07,0xc0734432d736e492,1
|
|
1218
|
+
np.float64,0x3fddfe390f3bfc72,0xbfd510f1d9ec3e36,1
|
|
1219
|
+
np.float64,0x3fd9ddce74b3bb9d,0xbfd92e2d75a061bb,1
|
|
1220
|
+
np.float64,0x7fe5f742edebee85,0x40734176058e3a77,1
|
|
1221
|
+
np.float64,0x3fdb04185b360831,0xbfd7f8c63aa5e1c4,1
|
|
1222
|
+
np.float64,0xea2b0f43d4562,0xc0733b0fd77c8118,1
|
|
1223
|
+
np.float64,0x7fc3f4973527e92d,0x407337293bbb22c4,1
|
|
1224
|
+
np.float64,0x3fb9adfb38335bf6,0xbfeff4f3ea85821a,1
|
|
1225
|
+
np.float64,0x87fb98750ff73,0xc0733ed6ad83c269,1
|
|
1226
|
+
np.float64,0x3fe005721a200ae4,0xbfd33a9f1ebfb0ac,1
|
|
1227
|
+
np.float64,0xd9e04fe7b3c0a,0xc0733b901ee257f3,1
|
|
1228
|
+
np.float64,0x2c39102658723,0xc07346a4db63bf55,1
|
|
1229
|
+
np.float64,0x3f7dc28e003b851c,0xc0011c1d1233d948,1
|
|
1230
|
+
np.float64,0x3430fd3868620,0xc073457e24e0b70d,1
|
|
1231
|
+
np.float64,0xbff0000000000000,0x7ff8000000000000,1
|
|
1232
|
+
np.float64,0x3fd23e45e0247c8c,0xbfe17146bcf87b57,1
|
|
1233
|
+
np.float64,0x6599df3ecb33d,0xc07340dd2c41644c,1
|
|
1234
|
+
np.float64,0x3fdf074f31be0e9e,0xbfd41f6e9dbb68a5,1
|
|
1235
|
+
np.float64,0x7fdd6233f3bac467,0x40733eaa8f674b72,1
|
|
1236
|
+
np.float64,0x7fe03e8481607d08,0x40733f5d3df3b087,1
|
|
1237
|
+
np.float64,0x3fcc3b79f13876f4,0xbfe501bf3b379b77,1
|
|
1238
|
+
np.float64,0xe5d97ae3cbb30,0xc0733b30f47cbd12,1
|
|
1239
|
+
np.float64,0x8acbc4a115979,0xc0733eb240a4d2c6,1
|
|
1240
|
+
np.float64,0x3fedbdbc48bb7b79,0xbfa0470fd70c4359,1
|
|
1241
|
+
np.float64,0x3fde1611103c2c22,0xbfd4fae1fa8e7e5e,1
|
|
1242
|
+
np.float64,0x3fe09478bd2128f1,0xbfd246b7e85711dc,1
|
|
1243
|
+
np.float64,0x3fd6dfe8f3adbfd2,0xbfdc98ca2f32c1ad,1
|
|
1244
|
+
np.float64,0x72ccf274e599f,0xc0734003e5b0da63,1
|
|
1245
|
+
np.float64,0xe27c7265c4f8f,0xc0733b4b2d808566,1
|
|
1246
|
+
np.float64,0x7fee3161703c62c2,0x407343abe90f5649,1
|
|
1247
|
+
np.float64,0xf54fb5c1eaa0,0xc0734e01384fcf78,1
|
|
1248
|
+
np.float64,0xcde5924d9bcb3,0xc0733bf4b83c66c2,1
|
|
1249
|
+
np.float64,0x3fc46fdbe528dfb8,0xbfe97f55ef5e9683,1
|
|
1250
|
+
np.float64,0x7fe513528a2a26a4,0x4073412c69baceca,1
|
|
1251
|
+
np.float64,0x3fd29eca4aa53d95,0xbfe128801cd33ed0,1
|
|
1252
|
+
np.float64,0x7febb21718b7642d,0x4073431256def857,1
|
|
1253
|
+
np.float64,0x3fcab536c0356a6e,0xbfe5c73c59f41578,1
|
|
1254
|
+
np.float64,0x7fc7e9f0d82fd3e1,0x4073386b213e5dfe,1
|
|
1255
|
+
np.float64,0xb5b121276b624,0xc0733cd33083941c,1
|
|
1256
|
+
np.float64,0x7e0dd9bcfc1bc,0xc0733f5d8bf35050,1
|
|
1257
|
+
np.float64,0x3fd1c75106238ea2,0xbfe1cd11cccda0f4,1
|
|
1258
|
+
np.float64,0x9f060e673e0c2,0xc0733dc03da71909,1
|
|
1259
|
+
np.float64,0x7fd915a2f3322b45,0x40733d912af07189,1
|
|
1260
|
+
np.float64,0x3fd8cbae4431975d,0xbfda5b02ca661139,1
|
|
1261
|
+
np.float64,0x3fde8b411f3d1682,0xbfd48f6f710a53b6,1
|
|
1262
|
+
np.float64,0x3fc17a780622f4f0,0xbfebabb10c55255f,1
|
|
1263
|
+
np.float64,0x3fde5cbe5f3cb97d,0xbfd4b9e2e0101fb1,1
|
|
1264
|
+
np.float64,0x7fd859036530b206,0x40733d5c2252ff81,1
|
|
1265
|
+
np.float64,0xb0f5040f61ea1,0xc0733d02292f527b,1
|
|
1266
|
+
np.float64,0x3fde5c49ae3cb893,0xbfd4ba4db3ce2cf3,1
|
|
1267
|
+
np.float64,0x3fecc4518df988a3,0xbfa7af0bfc98bc65,1
|
|
1268
|
+
np.float64,0x3feffee03cbffdc0,0xbf0f3ede6ca7d695,1
|
|
1269
|
+
np.float64,0xbc5eac9b78bd6,0xc0733c92fb51c8ae,1
|
|
1270
|
+
np.float64,0x3fe2bb4ef765769e,0xbfcdc4f70a65dadc,1
|
|
1271
|
+
np.float64,0x5089443ca1129,0xc073427a7d0cde4a,1
|
|
1272
|
+
np.float64,0x3fd0d6e29121adc5,0xbfe28e28ece1db86,1
|
|
1273
|
+
np.float64,0xbe171e397c2e4,0xc0733c82cede5d02,1
|
|
1274
|
+
np.float64,0x4ede27be9dbc6,0xc073429fba1a4af1,1
|
|
1275
|
+
np.float64,0x3fe2aff3af655fe7,0xbfcde6b52a8ed3c1,1
|
|
1276
|
+
np.float64,0x7fd85ca295b0b944,0x40733d5d2adcccf1,1
|
|
1277
|
+
np.float64,0x24919bba49234,0xc07347f6ed704a6f,1
|
|
1278
|
+
np.float64,0x7fd74bc1eeae9783,0x40733d0d94a89011,1
|
|
1279
|
+
np.float64,0x3fc1cd12cb239a26,0xbfeb6a9c25c2a11d,1
|
|
1280
|
+
np.float64,0x3fdafbc0ac35f781,0xbfd8015ccf1f1b51,1
|
|
1281
|
+
np.float64,0x3fee01327c3c0265,0xbf9ca1d0d762dc18,1
|
|
1282
|
+
np.float64,0x3fe65bd7702cb7af,0xbfc3ee0de5c36b8d,1
|
|
1283
|
+
np.float64,0x7349c82ee693a,0xc0733ffc5b6eccf2,1
|
|
1284
|
+
np.float64,0x3fdc5906f738b20e,0xbfd6a26288eb5933,1
|
|
1285
|
+
np.float64,0x1,0xc07434e6420f4374,1
|
|
1286
|
+
np.float64,0x3fb966128a32cc25,0xbff00e0aa7273838,1
|
|
1287
|
+
np.float64,0x3fd501ff9a2a03ff,0xbfdef69133482121,1
|
|
1288
|
+
np.float64,0x194d4f3c329ab,0xc0734a861b44cfbe,1
|
|
1289
|
+
np.float64,0x3fec5d34f8f8ba6a,0xbfaad1b31510e70b,1
|
|
1290
|
+
np.float64,0x1635e4c22c6be,0xc0734b6dec650943,1
|
|
1291
|
+
np.float64,0x3fead2f8edb5a5f2,0xbfb39dac30a962cf,1
|
|
1292
|
+
np.float64,0x3f7dfa4ce03bf49a,0xc00115a112141aa7,1
|
|
1293
|
+
np.float64,0x3fef6827223ed04e,0xbf80a42c9edebfe9,1
|
|
1294
|
+
np.float64,0xe771f303cee3f,0xc0733b24a6269fe4,1
|
|
1295
|
+
np.float64,0x1160ccc622c1b,0xc0734d22604eacb9,1
|
|
1296
|
+
np.float64,0x3fc485cd08290b9a,0xbfe970723008c8c9,1
|
|
1297
|
+
np.float64,0x7fef99c518bf3389,0x407343fcf9ed202f,1
|
|
1298
|
+
np.float64,0x7fd8c1447a318288,0x40733d79a440b44d,1
|
|
1299
|
+
np.float64,0xaf219f955e434,0xc0733d149c13f440,1
|
|
1300
|
+
np.float64,0xcf45f6239e8bf,0xc0733be8ddda045d,1
|
|
1301
|
+
np.float64,0x7599394aeb328,0xc0733fd90fdbb0ea,1
|
|
1302
|
+
np.float64,0xc7f6390f8fec7,0xc0733c28bfbc66a3,1
|
|
1303
|
+
np.float64,0x3fd39ae96c2735d3,0xbfe0712274a8742b,1
|
|
1304
|
+
np.float64,0xa4d6c18f49ad8,0xc0733d805a0528f7,1
|
|
1305
|
+
np.float64,0x7fd9ea78d7b3d4f1,0x40733dcb2b74802a,1
|
|
1306
|
+
np.float64,0x3fecd251cb39a4a4,0xbfa742ed41d4ae57,1
|
|
1307
|
+
np.float64,0x7fed7a07cd7af40f,0x407343813476027e,1
|
|
1308
|
+
np.float64,0x3fd328ae7f26515d,0xbfe0c30b56a83c64,1
|
|
1309
|
+
np.float64,0x7fc937ff7a326ffe,0x407338c9a45b9140,1
|
|
1310
|
+
np.float64,0x3fcf1d31143e3a62,0xbfe3a7f760fbd6a8,1
|
|
1311
|
+
np.float64,0x7fb911dcbc3223b8,0x407333ee158cccc7,1
|
|
1312
|
+
np.float64,0x3fd352fc83a6a5f9,0xbfe0a47d2f74d283,1
|
|
1313
|
+
np.float64,0x7fd310753fa620e9,0x40733ba8fc4300dd,1
|
|
1314
|
+
np.float64,0x3febd64b4577ac97,0xbfaefd4a79f95c4b,1
|
|
1315
|
+
np.float64,0x6a6961a4d4d2d,0xc073408ae1687943,1
|
|
1316
|
+
np.float64,0x3fe4ba73d16974e8,0xbfc8239341b9e457,1
|
|
1317
|
+
np.float64,0x3fed8e7cac3b1cf9,0xbfa1a96a0cc5fcdc,1
|
|
1318
|
+
np.float64,0x7fd505ec04aa0bd7,0x40733c56f86e3531,1
|
|
1319
|
+
np.float64,0x3fdf166e9abe2cdd,0xbfd411e5f8569d70,1
|
|
1320
|
+
np.float64,0x7fe1bc6434e378c7,0x40733ff9861bdabb,1
|
|
1321
|
+
np.float64,0x3fd3b0b175a76163,0xbfe061ba5703f3c8,1
|
|
1322
|
+
np.float64,0x7fed75d7ffbaebaf,0x4073438037ba6f19,1
|
|
1323
|
+
np.float64,0x5a9e109cb53c3,0xc07341a8b04819c8,1
|
|
1324
|
+
np.float64,0x3fe14786b4e28f0d,0xbfd120b541bb880e,1
|
|
1325
|
+
np.float64,0x3fed4948573a9291,0xbfa3b471ff91614b,1
|
|
1326
|
+
np.float64,0x66aac5d8cd559,0xc07340ca9b18af46,1
|
|
1327
|
+
np.float64,0x3fdb48efd23691e0,0xbfd7b24c5694838b,1
|
|
1328
|
+
np.float64,0x7fe6da7d1eadb4f9,0x407341bc7d1fae43,1
|
|
1329
|
+
np.float64,0x7feb702cf336e059,0x40734301b96cc3c0,1
|
|
1330
|
+
np.float64,0x3fd1e60987a3cc13,0xbfe1b522cfcc3d0e,1
|
|
1331
|
+
np.float64,0x3feca57f50794aff,0xbfa89dc90625d39c,1
|
|
1332
|
+
np.float64,0x7fdc46dc56b88db8,0x40733e664294a0f9,1
|
|
1333
|
+
np.float64,0x8dc8fd811b920,0xc0733e8c5955df06,1
|
|
1334
|
+
np.float64,0xf01634abe02c7,0xc0733ae370a76d0c,1
|
|
1335
|
+
np.float64,0x3fc6f8d8ab2df1b1,0xbfe7df5093829464,1
|
|
1336
|
+
np.float64,0xda3d7597b47af,0xc0733b8d2702727a,1
|
|
1337
|
+
np.float64,0x7feefd53227dfaa5,0x407343da3d04db28,1
|
|
1338
|
+
np.float64,0x3fe2fbca3525f794,0xbfcd06e134417c08,1
|
|
1339
|
+
np.float64,0x7fd36d3ce226da79,0x40733bca7c322df1,1
|
|
1340
|
+
np.float64,0x7fec37e00b786fbf,0x4073433397b48a5b,1
|
|
1341
|
+
np.float64,0x3fbf133f163e267e,0xbfed4e72f1362a77,1
|
|
1342
|
+
np.float64,0x3fc11efbb9223df7,0xbfebf53002a561fe,1
|
|
1343
|
+
np.float64,0x3fc89c0e5431381d,0xbfe6ea562364bf81,1
|
|
1344
|
+
np.float64,0x3f9cd45da839a8bb,0xbff8ceb14669ee4b,1
|
|
1345
|
+
np.float64,0x23dc8fa647b93,0xc0734819aaa9b0ee,1
|
|
1346
|
+
np.float64,0x3fe829110d305222,0xbfbf3e60c45e2399,1
|
|
1347
|
+
np.float64,0x7fed8144e57b0289,0x40734382e917a02a,1
|
|
1348
|
+
np.float64,0x7fe033fbf7a067f7,0x40733f58bb00b20f,1
|
|
1349
|
+
np.float64,0xe3807f45c7010,0xc0733b43379415d1,1
|
|
1350
|
+
np.float64,0x3fd708fb342e11f6,0xbfdc670ef9793782,1
|
|
1351
|
+
np.float64,0x3fe88c924b311925,0xbfbd78210d9e7164,1
|
|
1352
|
+
np.float64,0x3fe0a2a7c7614550,0xbfd22efaf0472c4a,1
|
|
1353
|
+
np.float64,0x7fe3a37501a746e9,0x407340aecaeade41,1
|
|
1354
|
+
np.float64,0x3fd05077ec20a0f0,0xbfe2fedbf07a5302,1
|
|
1355
|
+
np.float64,0x7fd33bf61da677eb,0x40733bb8c58912aa,1
|
|
1356
|
+
np.float64,0x3feb29bdae76537b,0xbfb2384a8f61b5f9,1
|
|
1357
|
+
np.float64,0x3fec0fc14ff81f83,0xbfad3423e7ade174,1
|
|
1358
|
+
np.float64,0x3fd0f8b1a1a1f163,0xbfe2725dd4ccea8b,1
|
|
1359
|
+
np.float64,0x3fe382d26a6705a5,0xbfcb80dba4218bdf,1
|
|
1360
|
+
np.float64,0x3fa873f2cc30e7e6,0xbff522911cb34279,1
|
|
1361
|
+
np.float64,0x7fed7fd7377affad,0x4073438292f6829b,1
|
|
1362
|
+
np.float64,0x3feeacd8067d59b0,0xbf92cdbeda94b35e,1
|
|
1363
|
+
np.float64,0x7fe464d62228c9ab,0x407340f1eee19aa9,1
|
|
1364
|
+
np.float64,0xe997648bd32ed,0xc0733b143aa0fad3,1
|
|
1365
|
+
np.float64,0x7fea4869f13490d3,0x407342b5333b54f7,1
|
|
1366
|
+
np.float64,0x935b871926b71,0xc0733e47c6683319,1
|
|
1367
|
+
np.float64,0x28a9d0c05155,0xc0735a7e3532af83,1
|
|
1368
|
+
np.float64,0x79026548f204d,0xc0733fa6339ffa2f,1
|
|
1369
|
+
np.float64,0x3fdb1daaabb63b55,0xbfd7de839c240ace,1
|
|
1370
|
+
np.float64,0x3fc0db73b421b6e7,0xbfec2c6e36c4f416,1
|
|
1371
|
+
np.float64,0xb8b50ac1716b,0xc0734ff9fc60ebce,1
|
|
1372
|
+
np.float64,0x7fdf13e0c6be27c1,0x40733f0e44f69437,1
|
|
1373
|
+
np.float64,0x3fcd0cb97b3a1973,0xbfe49c34ff531273,1
|
|
1374
|
+
np.float64,0x3fcbac034b375807,0xbfe54913d73f180d,1
|
|
1375
|
+
np.float64,0x3fe091d2a2e123a5,0xbfd24b290a9218de,1
|
|
1376
|
+
np.float64,0xede43627dbc87,0xc0733af3c7c7f716,1
|
|
1377
|
+
np.float64,0x7fc037e7ed206fcf,0x407335b85fb0fedb,1
|
|
1378
|
+
np.float64,0x3fce7ae4c63cf5ca,0xbfe3f1350fe03f28,1
|
|
1379
|
+
np.float64,0x7fcdd862263bb0c3,0x407339f5458bb20e,1
|
|
1380
|
+
np.float64,0x4d7adf709af5d,0xc07342bf4edfadb2,1
|
|
1381
|
+
np.float64,0xdc6c03f3b8d81,0xc0733b7b74d6a635,1
|
|
1382
|
+
np.float64,0x3fe72ae0a4ee55c1,0xbfc1f4665608b21f,1
|
|
1383
|
+
np.float64,0xcd62f19d9ac5e,0xc0733bf92235e4d8,1
|
|
1384
|
+
np.float64,0xe3a7b8fdc74f7,0xc0733b4204f8e166,1
|
|
1385
|
+
np.float64,0x3fdafd35adb5fa6b,0xbfd7ffdca0753b36,1
|
|
1386
|
+
np.float64,0x3fa023e8702047d1,0xbff8059150ea1464,1
|
|
1387
|
+
np.float64,0x99ff336933fe7,0xc0733df961197517,1
|
|
1388
|
+
np.float64,0x7feeb365b9bd66ca,0x407343c995864091,1
|
|
1389
|
+
np.float64,0x7fe449b49f689368,0x407340e8aa3369e3,1
|
|
1390
|
+
np.float64,0x7faf5843043eb085,0x407330aa700136ca,1
|
|
1391
|
+
np.float64,0x3fd47b2922a8f652,0xbfdfab3de86f09ee,1
|
|
1392
|
+
np.float64,0x7fd9fc3248b3f864,0x40733dcfea6f9b3e,1
|
|
1393
|
+
np.float64,0xe20b0d8dc4162,0xc0733b4ea8fe7b3f,1
|
|
1394
|
+
np.float64,0x7feff8e0e23ff1c1,0x40734411c490ed70,1
|
|
1395
|
+
np.float64,0x7fa58382d02b0705,0x40732e0cf28e14fe,1
|
|
1396
|
+
np.float64,0xb8ad9a1b715b4,0xc0733cb630b8f2d4,1
|
|
1397
|
+
np.float64,0xe90abcf1d2158,0xc0733b186b04eeee,1
|
|
1398
|
+
np.float64,0x7fd6aa6f32ad54dd,0x40733cdccc636604,1
|
|
1399
|
+
np.float64,0x3fd8f84eedb1f09e,0xbfda292909a5298a,1
|
|
1400
|
+
np.float64,0x7fecd6b1d9f9ad63,0x4073435a472b05b5,1
|
|
1401
|
+
np.float64,0x3fd9f47604b3e8ec,0xbfd915e028cbf4a6,1
|
|
1402
|
+
np.float64,0x3fd20d9398241b27,0xbfe19691363dd508,1
|
|
1403
|
+
np.float64,0x3fe5ed09bbabda13,0xbfc5043dfc9c8081,1
|
|
1404
|
+
np.float64,0x7fbe5265363ca4c9,0x407335406f8e4fac,1
|
|
1405
|
+
np.float64,0xac2878af5850f,0xc0733d3311be9786,1
|
|
1406
|
+
np.float64,0xac2074555840f,0xc0733d3364970018,1
|
|
1407
|
+
np.float64,0x3fcd49b96b3a9373,0xbfe47f24c8181d9c,1
|
|
1408
|
+
np.float64,0x3fd10caca6a21959,0xbfe2620ae5594f9a,1
|
|
1409
|
+
np.float64,0xec5b87e9d8b71,0xc0733aff499e72ca,1
|
|
1410
|
+
np.float64,0x9d5e9fad3abd4,0xc0733dd2d70eeb4a,1
|
|
1411
|
+
np.float64,0x7fe3d3a24227a744,0x407340bfc2072fdb,1
|
|
1412
|
+
np.float64,0x3fc5f7a77c2bef4f,0xbfe87e69d502d784,1
|
|
1413
|
+
np.float64,0x33161a66662c4,0xc07345a436308244,1
|
|
1414
|
+
np.float64,0xa27acdc744f5a,0xc0733d99feb3d8ea,1
|
|
1415
|
+
np.float64,0x3fe2d9301565b260,0xbfcd6c914e204437,1
|
|
1416
|
+
np.float64,0x7fd5d111e12ba223,0x40733c98e14a6fd0,1
|
|
1417
|
+
np.float64,0x6c3387bed8672,0xc073406d3648171a,1
|
|
1418
|
+
np.float64,0x24d89fe849b15,0xc07347e97bec008c,1
|
|
1419
|
+
np.float64,0x3fefd763677faec7,0xbf61ae69caa9cad9,1
|
|
1420
|
+
np.float64,0x7fe0a4684ba148d0,0x40733f884d32c464,1
|
|
1421
|
+
np.float64,0x3fd5c3c939ab8792,0xbfddfaaefc1c7fca,1
|
|
1422
|
+
np.float64,0x3fec9b87a6b9370f,0xbfa8eb34efcc6b9b,1
|
|
1423
|
+
np.float64,0x3feb062431f60c48,0xbfb2ca6036698877,1
|
|
1424
|
+
np.float64,0x3fef97f6633f2fed,0xbf76bc742860a340,1
|
|
1425
|
+
np.float64,0x74477490e88ef,0xc0733fed220986bc,1
|
|
1426
|
+
np.float64,0x3fe4bea67ce97d4d,0xbfc818525292b0f6,1
|
|
1427
|
+
np.float64,0x3fc6add3a92d5ba7,0xbfe80cfdc9a90bda,1
|
|
1428
|
+
np.float64,0x847c9ce308f94,0xc0733f05026f5965,1
|
|
1429
|
+
np.float64,0x7fea53fd2eb4a7f9,0x407342b841fc4723,1
|
|
1430
|
+
np.float64,0x3fc55a16fc2ab42e,0xbfe8e3849130da34,1
|
|
1431
|
+
np.float64,0x3fbdf7d07c3befa1,0xbfedcf84b9c6c161,1
|
|
1432
|
+
np.float64,0x3fe5fb25aa6bf64b,0xbfc4e083ff96b116,1
|
|
1433
|
+
np.float64,0x61c776a8c38ef,0xc0734121611d84d7,1
|
|
1434
|
+
np.float64,0x3fec413164f88263,0xbfabadbd05131546,1
|
|
1435
|
+
np.float64,0x9bf06fe137e0e,0xc0733de315469ee0,1
|
|
1436
|
+
np.float64,0x2075eefc40ebf,0xc07348cae84de924,1
|
|
1437
|
+
np.float64,0x3fdd42e0143a85c0,0xbfd5c0b6f60b3cea,1
|
|
1438
|
+
np.float64,0xdbb1ab45b7636,0xc0733b8157329daf,1
|
|
1439
|
+
np.float64,0x3feac6d56bf58dab,0xbfb3d00771b28621,1
|
|
1440
|
+
np.float64,0x7fb2dc825025b904,0x407331f3e950751a,1
|
|
1441
|
+
np.float64,0x3fecea6efd79d4de,0xbfa689309cc0e3fe,1
|
|
1442
|
+
np.float64,0x3fd83abec7b0757e,0xbfdaff5c674a9c59,1
|
|
1443
|
+
np.float64,0x3fd396f7c0272df0,0xbfe073ee75c414ba,1
|
|
1444
|
+
np.float64,0x3fe10036c162006e,0xbfd1945a38342ae1,1
|
|
1445
|
+
np.float64,0x3fd5bbded52b77be,0xbfde04cca40d4156,1
|
|
1446
|
+
np.float64,0x3fe870945ab0e129,0xbfbdf72f0e6206fa,1
|
|
1447
|
+
np.float64,0x3fef72fddcbee5fc,0xbf7ee2dba88b1bad,1
|
|
1448
|
+
np.float64,0x4e111aa09c224,0xc07342b1e2b29643,1
|
|
1449
|
+
np.float64,0x3fd926d8b5b24db1,0xbfd9f58b78d6b061,1
|
|
1450
|
+
np.float64,0x3fc55679172aacf2,0xbfe8e5df687842e2,1
|
|
1451
|
+
np.float64,0x7f5f1749803e2e92,0x40731886e16cfc4d,1
|
|
1452
|
+
np.float64,0x7fea082b53b41056,0x407342a42227700e,1
|
|
1453
|
+
np.float64,0x3fece1d1d039c3a4,0xbfa6cb780988a469,1
|
|
1454
|
+
np.float64,0x3b2721d8764e5,0xc073449f6a5a4832,1
|
|
1455
|
+
np.float64,0x365cb7006cba,0xc0735879ba5f0b6e,1
|
|
1456
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
1457
|
+
np.float64,0x7fe606ce92ac0d9c,0x4073417aeebe97e8,1
|
|
1458
|
+
np.float64,0x3fe237b544a46f6b,0xbfcf50f8f76d7df9,1
|
|
1459
|
+
np.float64,0x3fe7265e5eee4cbd,0xbfc1ff39089ec8d0,1
|
|
1460
|
+
np.float64,0x7fe2bb3c5ea57678,0x4073405aaad81cf2,1
|
|
1461
|
+
np.float64,0x3fd811df84b023bf,0xbfdb2e670ea8d8de,1
|
|
1462
|
+
np.float64,0x3f6a0efd00341dfa,0xc003fac1ae831241,1
|
|
1463
|
+
np.float64,0x3fd0d214afa1a429,0xbfe2922080a91c72,1
|
|
1464
|
+
np.float64,0x3feca6a350b94d47,0xbfa894eea3a96809,1
|
|
1465
|
+
np.float64,0x7fe23e5c76247cb8,0x4073402bbaaf71c7,1
|
|
1466
|
+
np.float64,0x3fe739a1fdae7344,0xbfc1d109f66efb5d,1
|
|
1467
|
+
np.float64,0x3fdf4b8e283e971c,0xbfd3e28f46169cc5,1
|
|
1468
|
+
np.float64,0x38f2535271e4b,0xc07344e3085219fa,1
|
|
1469
|
+
np.float64,0x7fd263a0f9a4c741,0x40733b68d945dae0,1
|
|
1470
|
+
np.float64,0x7fdd941863bb2830,0x40733eb651e3dca9,1
|
|
1471
|
+
np.float64,0xace7279159ce5,0xc0733d2b63b5947e,1
|
|
1472
|
+
np.float64,0x7fe34670b2268ce0,0x4073408d92770cb5,1
|
|
1473
|
+
np.float64,0x7fd11fa6dfa23f4d,0x40733aea02e76ea3,1
|
|
1474
|
+
np.float64,0x3fe6d9cbca6db398,0xbfc2b84b5c8c7eab,1
|
|
1475
|
+
np.float64,0x3fd69a0274ad3405,0xbfdcee3c7e52c463,1
|
|
1476
|
+
np.float64,0x3feb5af671f6b5ed,0xbfb16f88d739477f,1
|
|
1477
|
+
np.float64,0x3feea400163d4800,0xbf934e071c64fd0b,1
|
|
1478
|
+
np.float64,0x3fefd6bcf17fad7a,0xbf61f711c392b119,1
|
|
1479
|
+
np.float64,0x3fe148d43da291a8,0xbfd11e9cd3f91cd3,1
|
|
1480
|
+
np.float64,0x7fedf1308b7be260,0x4073439d135656da,1
|
|
1481
|
+
np.float64,0x3fe614c99c6c2993,0xbfc49fd1984dfd6d,1
|
|
1482
|
+
np.float64,0xd6e8d4e5add1b,0xc0733ba88256026e,1
|
|
1483
|
+
np.float64,0xfff0000000000000,0x7ff8000000000000,1
|
|
1484
|
+
np.float64,0x3fb530b5562a616b,0xbff1504bcc5c8f73,1
|
|
1485
|
+
np.float64,0xb7da68396fb4d,0xc0733cbe2790f52e,1
|
|
1486
|
+
np.float64,0x7fad78e26c3af1c4,0x4073303cdbfb0a15,1
|
|
1487
|
+
np.float64,0x7fee5698447cad30,0x407343b474573a8b,1
|
|
1488
|
+
np.float64,0x3fd488325c291065,0xbfdf999296d901e7,1
|
|
1489
|
+
np.float64,0x2669283a4cd26,0xc073479f823109a4,1
|
|
1490
|
+
np.float64,0x7fef3b090afe7611,0x407343e805a3b264,1
|
|
1491
|
+
np.float64,0x7fe8b96ae0f172d5,0x4073424874a342ab,1
|
|
1492
|
+
np.float64,0x7fef409f56fe813e,0x407343e943c3cd44,1
|
|
1493
|
+
np.float64,0x3fed28073dfa500e,0xbfa4b17e4cd31a3a,1
|
|
1494
|
+
np.float64,0x7f87ecc4802fd988,0x40732527e027b24b,1
|
|
1495
|
+
np.float64,0x3fdda24da0bb449b,0xbfd566a43ac035af,1
|
|
1496
|
+
np.float64,0x179fc9e62f3fa,0xc0734b0028c80fc1,1
|
|
1497
|
+
np.float64,0x3fef85b0927f0b61,0xbf7ac27565d5ab4f,1
|
|
1498
|
+
np.float64,0x5631501aac62b,0xc0734201be12c5d4,1
|
|
1499
|
+
np.float64,0x3fd782e424af05c8,0xbfdbd57544f8a7c3,1
|
|
1500
|
+
np.float64,0x3fe603a9a6ac0753,0xbfc4caff04dc3caf,1
|
|
1501
|
+
np.float64,0x7fbd5225163aa449,0x40733504b88f0a56,1
|
|
1502
|
+
np.float64,0x3fecd27506b9a4ea,0xbfa741dd70e6b08c,1
|
|
1503
|
+
np.float64,0x9c99603b3932c,0xc0733ddb922dc5db,1
|
|
1504
|
+
np.float64,0x3fbeb57f1a3d6afe,0xbfed789ff217aa08,1
|
|
1505
|
+
np.float64,0x3fef9c0f85bf381f,0xbf75d5c3d6cb281a,1
|
|
1506
|
+
np.float64,0x3fde4afb613c95f7,0xbfd4ca2a231c9005,1
|
|
1507
|
+
np.float64,0x396233d472c47,0xc07344d56ee70631,1
|
|
1508
|
+
np.float64,0x3fb31ea1c6263d44,0xbff207356152138d,1
|
|
1509
|
+
np.float64,0x3fe50bdf78aa17bf,0xbfc74ae0cbffb735,1
|
|
1510
|
+
np.float64,0xef74c701dee99,0xc0733ae81e4bb443,1
|
|
1511
|
+
np.float64,0x9a3e13a1347c3,0xc0733df68b60afc7,1
|
|
1512
|
+
np.float64,0x33ba4f886774b,0xc073458e03f0c13e,1
|
|
1513
|
+
np.float64,0x3fe8ba0e9931741d,0xbfbcaadf974e8f64,1
|
|
1514
|
+
np.float64,0x3fe090a4cd61214a,0xbfd24d236cf365d6,1
|
|
1515
|
+
np.float64,0x7fd87d992930fb31,0x40733d668b73b820,1
|
|
1516
|
+
np.float64,0x3fe6422b296c8456,0xbfc42e070b695d01,1
|
|
1517
|
+
np.float64,0x3febe9334677d267,0xbfae667864606cfe,1
|
|
1518
|
+
np.float64,0x771a3ce4ee348,0xc0733fc274d12c97,1
|
|
1519
|
+
np.float64,0x3fe0413542e0826b,0xbfd2d3b08fb5b8a6,1
|
|
1520
|
+
np.float64,0x3fd00870ea2010e2,0xbfe33cc04cbd42e0,1
|
|
1521
|
+
np.float64,0x3fe74fb817ae9f70,0xbfc19c45dbf919e1,1
|
|
1522
|
+
np.float64,0x40382fa08071,0xc07357514ced5577,1
|
|
1523
|
+
np.float64,0xa14968474292d,0xc0733da71a990f3a,1
|
|
1524
|
+
np.float64,0x5487c740a90fa,0xc0734224622d5801,1
|
|
1525
|
+
np.float64,0x3fed7d8d14fafb1a,0xbfa228f7ecc2ac03,1
|
|
1526
|
+
np.float64,0x3fe39bb485e73769,0xbfcb3a235a722960,1
|
|
1527
|
+
np.float64,0x3fd01090b2202121,0xbfe335b752589a22,1
|
|
1528
|
+
np.float64,0x3fd21a3e7da4347d,0xbfe18cd435a7c582,1
|
|
1529
|
+
np.float64,0x3fe7fa855a2ff50b,0xbfc00ab0665709fe,1
|
|
1530
|
+
np.float64,0x3fedc0d4577b81a9,0xbfa02fef3ff553fc,1
|
|
1531
|
+
np.float64,0x3fe99d4906333a92,0xbfb8bf18220e5e8e,1
|
|
1532
|
+
np.float64,0x3fd944ee3c3289dc,0xbfd9d46071675e73,1
|
|
1533
|
+
np.float64,0x3fe3ed8d52e7db1b,0xbfca53f8d4aef484,1
|
|
1534
|
+
np.float64,0x7fe748623a6e90c3,0x407341dd97c9dd79,1
|
|
1535
|
+
np.float64,0x3fea1b4b98343697,0xbfb6a1560a56927f,1
|
|
1536
|
+
np.float64,0xe1215715c242b,0xc0733b55dbf1f0a8,1
|
|
1537
|
+
np.float64,0x3fd0d5bccca1ab7a,0xbfe28f1b66d7a470,1
|
|
1538
|
+
np.float64,0x881a962710353,0xc0733ed51848a30d,1
|
|
1539
|
+
np.float64,0x3fcf022afe3e0456,0xbfe3b40eabf24501,1
|
|
1540
|
+
np.float64,0x3fdf1ac6bbbe358d,0xbfd40e03e888288d,1
|
|
1541
|
+
np.float64,0x3fa51a5eac2a34bd,0xbff628a7c34d51b3,1
|
|
1542
|
+
np.float64,0x3fdbaf408d375e81,0xbfd74ad39d97c92a,1
|
|
1543
|
+
np.float64,0x3fcd2418ea3a4832,0xbfe4910b009d8b11,1
|
|
1544
|
+
np.float64,0x3fc7b3062a2f660c,0xbfe7706dc47993e1,1
|
|
1545
|
+
np.float64,0x7fb8232218304643,0x407333aaa7041a9f,1
|
|
1546
|
+
np.float64,0x7fd5f186362be30b,0x40733ca32fdf9cc6,1
|
|
1547
|
+
np.float64,0x3fe57ef1d6aafde4,0xbfc61e23d00210c7,1
|
|
1548
|
+
np.float64,0x7c6830baf8d07,0xc0733f74f19e9dad,1
|
|
1549
|
+
np.float64,0xcacbfd5595980,0xc0733c0fb49edca7,1
|
|
1550
|
+
np.float64,0x3fdfdeac873fbd59,0xbfd36114c56bed03,1
|
|
1551
|
+
np.float64,0x3fd31f0889263e11,0xbfe0ca0cc1250169,1
|
|
1552
|
+
np.float64,0x3fe839fbe47073f8,0xbfbef0a2abc3d63f,1
|
|
1553
|
+
np.float64,0x3fc36af57e26d5eb,0xbfea3553f38770b7,1
|
|
1554
|
+
np.float64,0x3fe73dbc44ee7b79,0xbfc1c738f8fa6b3d,1
|
|
1555
|
+
np.float64,0x3fd3760e4da6ec1d,0xbfe08b5b609d11e5,1
|
|
1556
|
+
np.float64,0x3fee1cfa297c39f4,0xbf9b06d081bc9d5b,1
|
|
1557
|
+
np.float64,0xdfb01561bf61,0xc0734ea55e559888,1
|
|
1558
|
+
np.float64,0x687bd01cd0f7b,0xc07340ab67fe1816,1
|
|
1559
|
+
np.float64,0x3fefc88f4cbf911f,0xbf6828c359cf19dc,1
|
|
1560
|
+
np.float64,0x8ad34adb15a6a,0xc0733eb1e03811e5,1
|
|
1561
|
+
np.float64,0x3fe2b49c12e56938,0xbfcdd8dbdbc0ce59,1
|
|
1562
|
+
np.float64,0x6e05037adc0a1,0xc073404f91261635,1
|
|
1563
|
+
np.float64,0x3fe2fd737fe5fae7,0xbfcd020407ef4d78,1
|
|
1564
|
+
np.float64,0x3fd0f3c0dc21e782,0xbfe2766a1ab02eae,1
|
|
1565
|
+
np.float64,0x28564d9850acb,0xc073474875f87c5e,1
|
|
1566
|
+
np.float64,0x3fe4758015a8eb00,0xbfc8ddb45134a1bd,1
|
|
1567
|
+
np.float64,0x7fe7f19306efe325,0x4073420f626141a7,1
|
|
1568
|
+
np.float64,0x7fd27f34c0a4fe69,0x40733b733d2a5b50,1
|
|
1569
|
+
np.float64,0x92c2366325847,0xc0733e4f04f8195a,1
|
|
1570
|
+
np.float64,0x3fc21f8441243f09,0xbfeb2ad23bc1ab0b,1
|
|
1571
|
+
np.float64,0x3fc721d3e42e43a8,0xbfe7c69bb47b40c2,1
|
|
1572
|
+
np.float64,0x3fe2f11a1625e234,0xbfcd26363b9c36c3,1
|
|
1573
|
+
np.float64,0x3fdcb585acb96b0b,0xbfd648446237cb55,1
|
|
1574
|
+
np.float64,0x3fd4060bf2280c18,0xbfe025fd4c8a658b,1
|
|
1575
|
+
np.float64,0x7fb8ae2750315c4e,0x407333d23b025d08,1
|
|
1576
|
+
np.float64,0x3fe3a03119a74062,0xbfcb2d6c91b38552,1
|
|
1577
|
+
np.float64,0x7fdd2af92bba55f1,0x40733e9d737e16e6,1
|
|
1578
|
+
np.float64,0x3fe50b05862a160b,0xbfc74d20815fe36b,1
|
|
1579
|
+
np.float64,0x164409f82c882,0xc0734b6980e19c03,1
|
|
1580
|
+
np.float64,0x3fe4093712a8126e,0xbfca070367fda5e3,1
|
|
1581
|
+
np.float64,0xae3049935c609,0xc0733d1e3608797b,1
|
|
1582
|
+
np.float64,0x3fd71df4b4ae3be9,0xbfdc4dcb7637600d,1
|
|
1583
|
+
np.float64,0x7fca01e8023403cf,0x407339006c521c49,1
|
|
1584
|
+
np.float64,0x3fb0c5c43e218b88,0xbff2f03211c63f25,1
|
|
1585
|
+
np.float64,0x3fee757af83ceaf6,0xbf95f33a6e56b454,1
|
|
1586
|
+
np.float64,0x3f865f1f402cbe3f,0xbfff62d9c9072bd7,1
|
|
1587
|
+
np.float64,0x89864e95130ca,0xc0733ec29f1e32c6,1
|
|
1588
|
+
np.float64,0x3fe51482bcea2905,0xbfc73414ddc8f1b7,1
|
|
1589
|
+
np.float64,0x7fd802f8fa3005f1,0x40733d43684e460a,1
|
|
1590
|
+
np.float64,0x3fbeb86ca63d70d9,0xbfed774ccca9b8f5,1
|
|
1591
|
+
np.float64,0x3fb355dcc826abba,0xbff1f33f9339e7a3,1
|
|
1592
|
+
np.float64,0x3fe506c61eaa0d8c,0xbfc7585a3f7565a6,1
|
|
1593
|
+
np.float64,0x7fe393f25ba727e4,0x407340a94bcea73b,1
|
|
1594
|
+
np.float64,0xf66f532decdeb,0xc0733ab5041feb0f,1
|
|
1595
|
+
np.float64,0x3fe26e872be4dd0e,0xbfceaaab466f32e0,1
|
|
1596
|
+
np.float64,0x3fefd9e290bfb3c5,0xbf60977d24496295,1
|
|
1597
|
+
np.float64,0x7fe19c5f692338be,0x40733fecef53ad95,1
|
|
1598
|
+
np.float64,0x3fe80365ab3006cb,0xbfbfec4090ef76ec,1
|
|
1599
|
+
np.float64,0x3fe88ab39eb11567,0xbfbd8099388d054d,1
|
|
1600
|
+
np.float64,0x3fe68fb09fad1f61,0xbfc36db9de38c2c0,1
|
|
1601
|
+
np.float64,0x3fe9051883b20a31,0xbfbb5b75b8cb8f24,1
|
|
1602
|
+
np.float64,0x3fd4708683a8e10d,0xbfdfb9b085dd8a83,1
|
|
1603
|
+
np.float64,0x3fe00ac11a601582,0xbfd3316af3e43500,1
|
|
1604
|
+
np.float64,0xd16af30ba2d5f,0xc0733bd68e8252f9,1
|
|
1605
|
+
np.float64,0x3fb97d654632facb,0xbff007ac1257f575,1
|
|
1606
|
+
np.float64,0x7fd637c10fac6f81,0x40733cb949d76546,1
|
|
1607
|
+
np.float64,0x7fed2cab6dba5956,0x4073436edfc3764e,1
|
|
1608
|
+
np.float64,0x3fed04afbbba095f,0xbfa5bfaa5074b7f4,1
|
|
1609
|
+
np.float64,0x0,0xfff0000000000000,1
|
|
1610
|
+
np.float64,0x389a1dc671345,0xc07344edd4206338,1
|
|
1611
|
+
np.float64,0x3fbc9ba25a393745,0xbfee74c34f49b921,1
|
|
1612
|
+
np.float64,0x3feee749947dce93,0xbf8f032d9cf6b5ae,1
|
|
1613
|
+
np.float64,0xedc4cf89db89a,0xc0733af4b2a57920,1
|
|
1614
|
+
np.float64,0x3fe41629eba82c54,0xbfc9e321faf79e1c,1
|
|
1615
|
+
np.float64,0x3feb0bcbf7b61798,0xbfb2b31e5d952869,1
|
|
1616
|
+
np.float64,0xad60654b5ac0d,0xc0733d26860df676,1
|
|
1617
|
+
np.float64,0x3fe154e1ff22a9c4,0xbfd10b416e58c867,1
|
|
1618
|
+
np.float64,0x7fb20e9c8a241d38,0x407331a66453b8bc,1
|
|
1619
|
+
np.float64,0x7fcbbaaf7d37755e,0x4073397274f28008,1
|
|
1620
|
+
np.float64,0x187d0fbc30fa3,0xc0734ac03cc98cc9,1
|
|
1621
|
+
np.float64,0x7fd153afeaa2a75f,0x40733aff00b4311d,1
|
|
1622
|
+
np.float64,0x3fe05310a5e0a621,0xbfd2b5386aeecaac,1
|
|
1623
|
+
np.float64,0x7fea863b2b750c75,0x407342c57807f700,1
|
|
1624
|
+
np.float64,0x3fed5f0c633abe19,0xbfa30f6cfbc4bf94,1
|
|
1625
|
+
np.float64,0xf227c8b3e44f9,0xc0733ad42daaec9f,1
|
|
1626
|
+
np.float64,0x3fe956524772aca5,0xbfb9f4cabed7081d,1
|
|
1627
|
+
np.float64,0xefd11af7dfa24,0xc0733ae570ed2552,1
|
|
1628
|
+
np.float64,0x1690fff02d221,0xc0734b51a56c2980,1
|
|
1629
|
+
np.float64,0x7fd2e547a825ca8e,0x40733b992d6d9635,1
|