numpy 2.4.1__cp314-cp314t-win_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 +955 -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.cp314t-win_arm64.lib +0 -0
- numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_multiarray_umath.cp314t-win_arm64.lib +0 -0
- numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_operand_flag_tests.cp314t-win_arm64.lib +0 -0
- numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_rational_tests.cp314t-win_arm64.lib +0 -0
- numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_simd.cp314t-win_arm64.lib +0 -0
- numpy/_core/_simd.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.lib +0 -0
- numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.pyd +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.cp314t-win_arm64.lib +0 -0
- numpy/_core/_umath_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/npymath.lib +0 -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/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.cp314t-win_arm64.lib +0 -0
- numpy/fft/_pocketfft_umath.cp314t-win_arm64.pyd +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.cp314t-win_arm64.lib +0 -0
- numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cp314t-win_arm64.lib +0 -0
- numpy/linalg/lapack_lite.cp314t-win_arm64.pyd +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cp314t-win_arm64.lib +0 -0
- numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
- numpy/random/_bounded_integers.pxd +38 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cp314t-win_arm64.lib +0 -0
- numpy/random/_common.cp314t-win_arm64.pyd +0 -0
- numpy/random/_common.pxd +110 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cp314t-win_arm64.lib +0 -0
- numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cp314t-win_arm64.lib +0 -0
- numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cp314t-win_arm64.lib +0 -0
- numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cp314t-win_arm64.lib +0 -0
- numpy/random/_philox.cp314t-win_arm64.pyd +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cp314t-win_arm64.lib +0 -0
- numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cp314t-win_arm64.lib +0 -0
- numpy/random/bit_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/npyrandom.lib +0 -0
- numpy/random/mtrand.cp314t-win_arm64.lib +0 -0
- numpy/random/mtrand.cp314t-win_arm64.pyd +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +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/DELVEWHEEL +2 -0
- numpy-2.4.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +932 -0
- numpy-2.4.1.dist-info/WHEEL +4 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +914 -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
- numpy.libs/msvcp140-5f1c5dd31916990d94181e07bc3afb32.dll +0 -0
- numpy.libs/scipy_openblas-7b69cbfd2599e6035f1310f2a72d59a6.dll +0 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0xdeadbeaf
|
|
2
|
+
0, 0xc816921f
|
|
3
|
+
1, 0xb3623c6d
|
|
4
|
+
2, 0x5fa391bb
|
|
5
|
+
3, 0x40178d9
|
|
6
|
+
4, 0x7dcc9811
|
|
7
|
+
5, 0x548eb8e6
|
|
8
|
+
6, 0x92ba3125
|
|
9
|
+
7, 0x65fde68d
|
|
10
|
+
8, 0x2f81ec95
|
|
11
|
+
9, 0xbd94f7a2
|
|
12
|
+
10, 0xdc4d9bcc
|
|
13
|
+
11, 0xa672bf13
|
|
14
|
+
12, 0xb41113e
|
|
15
|
+
13, 0xec7e0066
|
|
16
|
+
14, 0x50239372
|
|
17
|
+
15, 0xd9d66b1d
|
|
18
|
+
16, 0xab72a161
|
|
19
|
+
17, 0xddc2e29f
|
|
20
|
+
18, 0x7ea29ab4
|
|
21
|
+
19, 0x80d141ba
|
|
22
|
+
20, 0xb1c7edf1
|
|
23
|
+
21, 0x44d29203
|
|
24
|
+
22, 0xe224d98
|
|
25
|
+
23, 0x5b3e9d26
|
|
26
|
+
24, 0x14fd567c
|
|
27
|
+
25, 0x27d98c96
|
|
28
|
+
26, 0x838779fc
|
|
29
|
+
27, 0x92a138a
|
|
30
|
+
28, 0x5d08965b
|
|
31
|
+
29, 0x531e0ad6
|
|
32
|
+
30, 0x984ee8f4
|
|
33
|
+
31, 0x1ed78539
|
|
34
|
+
32, 0x32bd6d8d
|
|
35
|
+
33, 0xc37c8516
|
|
36
|
+
34, 0x9aef5c6b
|
|
37
|
+
35, 0x3aacd139
|
|
38
|
+
36, 0xd96ed154
|
|
39
|
+
37, 0x489cd1ed
|
|
40
|
+
38, 0x2cba4b3b
|
|
41
|
+
39, 0x76c6ae72
|
|
42
|
+
40, 0x2dae02b9
|
|
43
|
+
41, 0x52ac5fd6
|
|
44
|
+
42, 0xc2b5e265
|
|
45
|
+
43, 0x630e6a28
|
|
46
|
+
44, 0x3f560d5d
|
|
47
|
+
45, 0x9315bdf3
|
|
48
|
+
46, 0xf1055aba
|
|
49
|
+
47, 0x840e42c6
|
|
50
|
+
48, 0xf2099c6b
|
|
51
|
+
49, 0x15ff7696
|
|
52
|
+
50, 0x7948d146
|
|
53
|
+
51, 0x97342961
|
|
54
|
+
52, 0x7a7a21c
|
|
55
|
+
53, 0xc66f4fb1
|
|
56
|
+
54, 0x23c4103e
|
|
57
|
+
55, 0xd7321f98
|
|
58
|
+
56, 0xeb7efb75
|
|
59
|
+
57, 0xe02490b5
|
|
60
|
+
58, 0x2aa02de
|
|
61
|
+
59, 0x8bee0bf7
|
|
62
|
+
60, 0xfc2da059
|
|
63
|
+
61, 0xae835034
|
|
64
|
+
62, 0x678f2075
|
|
65
|
+
63, 0x6d03094b
|
|
66
|
+
64, 0x56455e05
|
|
67
|
+
65, 0x18b32373
|
|
68
|
+
66, 0x8ff0356b
|
|
69
|
+
67, 0x1fe442fb
|
|
70
|
+
68, 0x3f1ab6c3
|
|
71
|
+
69, 0xb6fd21b
|
|
72
|
+
70, 0xfc310eb2
|
|
73
|
+
71, 0xb19e9a4d
|
|
74
|
+
72, 0x17ddee72
|
|
75
|
+
73, 0xfd534251
|
|
76
|
+
74, 0x9e500564
|
|
77
|
+
75, 0x9013a036
|
|
78
|
+
76, 0xcf08f118
|
|
79
|
+
77, 0x6b6d5969
|
|
80
|
+
78, 0x3ccf1977
|
|
81
|
+
79, 0x7cc11497
|
|
82
|
+
80, 0x651c6ac9
|
|
83
|
+
81, 0x4d6b104b
|
|
84
|
+
82, 0x9a28314e
|
|
85
|
+
83, 0x14c237be
|
|
86
|
+
84, 0x9cfc8d52
|
|
87
|
+
85, 0x2947fad5
|
|
88
|
+
86, 0xd71eff49
|
|
89
|
+
87, 0x5188730e
|
|
90
|
+
88, 0x4b894614
|
|
91
|
+
89, 0xf4fa2a34
|
|
92
|
+
90, 0x42f7cc69
|
|
93
|
+
91, 0x4089c9e8
|
|
94
|
+
92, 0xbf0bbfe4
|
|
95
|
+
93, 0x3cea65c
|
|
96
|
+
94, 0xc6221207
|
|
97
|
+
95, 0x1bb71a8f
|
|
98
|
+
96, 0x54843fe7
|
|
99
|
+
97, 0xbc59de4c
|
|
100
|
+
98, 0x79c6ee64
|
|
101
|
+
99, 0x14e57a26
|
|
102
|
+
100, 0x68d88fe
|
|
103
|
+
101, 0x2b86ef64
|
|
104
|
+
102, 0x8ffff3c1
|
|
105
|
+
103, 0x5bdd573f
|
|
106
|
+
104, 0x85671813
|
|
107
|
+
105, 0xefe32ca2
|
|
108
|
+
106, 0x105ded1e
|
|
109
|
+
107, 0x90ca2769
|
|
110
|
+
108, 0xb33963ac
|
|
111
|
+
109, 0x363fbbc3
|
|
112
|
+
110, 0x3b3763ae
|
|
113
|
+
111, 0x1d50ab88
|
|
114
|
+
112, 0xc9ec01eb
|
|
115
|
+
113, 0xc8bbeada
|
|
116
|
+
114, 0x5d704692
|
|
117
|
+
115, 0x5fd9e40
|
|
118
|
+
116, 0xe61c125
|
|
119
|
+
117, 0x2fe05792
|
|
120
|
+
118, 0xda8afb72
|
|
121
|
+
119, 0x4cbaa653
|
|
122
|
+
120, 0xdd2243df
|
|
123
|
+
121, 0x896fd3f5
|
|
124
|
+
122, 0x5bc23db
|
|
125
|
+
123, 0xa1c4e807
|
|
126
|
+
124, 0x57d1a24d
|
|
127
|
+
125, 0x66503ddc
|
|
128
|
+
126, 0xcf7c0838
|
|
129
|
+
127, 0x19e034fc
|
|
130
|
+
128, 0x66807450
|
|
131
|
+
129, 0xfc219b3b
|
|
132
|
+
130, 0xe8a843e7
|
|
133
|
+
131, 0x9ce61f08
|
|
134
|
+
132, 0x92b950d6
|
|
135
|
+
133, 0xce955ec4
|
|
136
|
+
134, 0xda0d1f0d
|
|
137
|
+
135, 0x960c6250
|
|
138
|
+
136, 0x39552432
|
|
139
|
+
137, 0xde845e84
|
|
140
|
+
138, 0xff3b4b11
|
|
141
|
+
139, 0x5d918e6f
|
|
142
|
+
140, 0xbb930df2
|
|
143
|
+
141, 0x7cfb0993
|
|
144
|
+
142, 0x5400e1e9
|
|
145
|
+
143, 0x3bfa0954
|
|
146
|
+
144, 0x7e2605fb
|
|
147
|
+
145, 0x11941591
|
|
148
|
+
146, 0x887e6994
|
|
149
|
+
147, 0xdc8bed45
|
|
150
|
+
148, 0x45b3fb50
|
|
151
|
+
149, 0xfbdf8358
|
|
152
|
+
150, 0x41507468
|
|
153
|
+
151, 0x34c87166
|
|
154
|
+
152, 0x17f64d77
|
|
155
|
+
153, 0x3bbaf4f8
|
|
156
|
+
154, 0x4f26f37e
|
|
157
|
+
155, 0x4a56ebf2
|
|
158
|
+
156, 0x81100f1
|
|
159
|
+
157, 0x96d94eae
|
|
160
|
+
158, 0xca88fda5
|
|
161
|
+
159, 0x2eef3a60
|
|
162
|
+
160, 0x952afbd3
|
|
163
|
+
161, 0x2bec88c7
|
|
164
|
+
162, 0x52335c4b
|
|
165
|
+
163, 0x8296db8e
|
|
166
|
+
164, 0x4da7d00a
|
|
167
|
+
165, 0xc00ac899
|
|
168
|
+
166, 0xadff8c72
|
|
169
|
+
167, 0xbecf26cf
|
|
170
|
+
168, 0x8835c83c
|
|
171
|
+
169, 0x1d13c804
|
|
172
|
+
170, 0xaa940ddc
|
|
173
|
+
171, 0x68222cfe
|
|
174
|
+
172, 0x4569c0e1
|
|
175
|
+
173, 0x29077976
|
|
176
|
+
174, 0x32d4a5af
|
|
177
|
+
175, 0xd31fcdef
|
|
178
|
+
176, 0xdc60682b
|
|
179
|
+
177, 0x7c95c368
|
|
180
|
+
178, 0x75a70213
|
|
181
|
+
179, 0x43021751
|
|
182
|
+
180, 0x5e52e0a6
|
|
183
|
+
181, 0xf7e190b5
|
|
184
|
+
182, 0xee3e4bb
|
|
185
|
+
183, 0x2fe3b150
|
|
186
|
+
184, 0xcf419c07
|
|
187
|
+
185, 0x478a4570
|
|
188
|
+
186, 0xe5c3ea50
|
|
189
|
+
187, 0x417f30a8
|
|
190
|
+
188, 0xf0cfdaa0
|
|
191
|
+
189, 0xd1f7f738
|
|
192
|
+
190, 0x2c70fc23
|
|
193
|
+
191, 0x54fc89f9
|
|
194
|
+
192, 0x444dcf01
|
|
195
|
+
193, 0xec2a002d
|
|
196
|
+
194, 0xef0c3a88
|
|
197
|
+
195, 0xde21be9
|
|
198
|
+
196, 0x88ab3296
|
|
199
|
+
197, 0x3028897c
|
|
200
|
+
198, 0x264b200b
|
|
201
|
+
199, 0xd8ae0706
|
|
202
|
+
200, 0x9eef901a
|
|
203
|
+
201, 0xbd1b96e0
|
|
204
|
+
202, 0xea71366c
|
|
205
|
+
203, 0x1465b694
|
|
206
|
+
204, 0x5a794650
|
|
207
|
+
205, 0x83df52d4
|
|
208
|
+
206, 0x8262413d
|
|
209
|
+
207, 0x5bc148c0
|
|
210
|
+
208, 0xe0ecd80c
|
|
211
|
+
209, 0x40649571
|
|
212
|
+
210, 0xb4d2ee5f
|
|
213
|
+
211, 0xedfd7d09
|
|
214
|
+
212, 0xa082e25f
|
|
215
|
+
213, 0xc62992d1
|
|
216
|
+
214, 0xbc7e65ee
|
|
217
|
+
215, 0x5499cf8a
|
|
218
|
+
216, 0xac28f775
|
|
219
|
+
217, 0x649840fb
|
|
220
|
+
218, 0xd4c54805
|
|
221
|
+
219, 0x1d166ba6
|
|
222
|
+
220, 0xbeb1171f
|
|
223
|
+
221, 0x45b66703
|
|
224
|
+
222, 0x78c03349
|
|
225
|
+
223, 0x38d2a6ff
|
|
226
|
+
224, 0x935cae8b
|
|
227
|
+
225, 0x1d07dc3f
|
|
228
|
+
226, 0x6c1ed365
|
|
229
|
+
227, 0x579fc585
|
|
230
|
+
228, 0x1320c0ec
|
|
231
|
+
229, 0x632757eb
|
|
232
|
+
230, 0xd265a397
|
|
233
|
+
231, 0x70e9b6c2
|
|
234
|
+
232, 0xc81e322c
|
|
235
|
+
233, 0xa27153cf
|
|
236
|
+
234, 0x2118ba19
|
|
237
|
+
235, 0x514ec400
|
|
238
|
+
236, 0x2bd0ecd6
|
|
239
|
+
237, 0xc3e7dae3
|
|
240
|
+
238, 0xfa39355e
|
|
241
|
+
239, 0x48f23cc1
|
|
242
|
+
240, 0xbcf75948
|
|
243
|
+
241, 0x53ccc70c
|
|
244
|
+
242, 0x75346423
|
|
245
|
+
243, 0x951181e0
|
|
246
|
+
244, 0x348e90df
|
|
247
|
+
245, 0x14365d7f
|
|
248
|
+
246, 0xfbc95d7a
|
|
249
|
+
247, 0xdc98a9e6
|
|
250
|
+
248, 0xed202df7
|
|
251
|
+
249, 0xa59ec913
|
|
252
|
+
250, 0x6b6e9ae2
|
|
253
|
+
251, 0x1697f265
|
|
254
|
+
252, 0x15d322d0
|
|
255
|
+
253, 0xa2e7ee0a
|
|
256
|
+
254, 0x88860b7e
|
|
257
|
+
255, 0x455d8b9d
|
|
258
|
+
256, 0x2f5c59cb
|
|
259
|
+
257, 0xac49c9f1
|
|
260
|
+
258, 0xa6a6a039
|
|
261
|
+
259, 0xc057f56b
|
|
262
|
+
260, 0xf1ff1208
|
|
263
|
+
261, 0x5eb8dc9d
|
|
264
|
+
262, 0xe6702509
|
|
265
|
+
263, 0xe238b0ed
|
|
266
|
+
264, 0x5ae32e3d
|
|
267
|
+
265, 0xa88ebbdf
|
|
268
|
+
266, 0xef885ae7
|
|
269
|
+
267, 0xafa6d49b
|
|
270
|
+
268, 0xc94499e0
|
|
271
|
+
269, 0x1a196325
|
|
272
|
+
270, 0x88938da3
|
|
273
|
+
271, 0x14f4345
|
|
274
|
+
272, 0xd8e33637
|
|
275
|
+
273, 0xa3551bd5
|
|
276
|
+
274, 0x73fe35c7
|
|
277
|
+
275, 0x9561e94b
|
|
278
|
+
276, 0xd673bf68
|
|
279
|
+
277, 0x16134872
|
|
280
|
+
278, 0x68c42f9f
|
|
281
|
+
279, 0xdf7574c8
|
|
282
|
+
280, 0x8809bab9
|
|
283
|
+
281, 0x1432cf69
|
|
284
|
+
282, 0xafb66bf1
|
|
285
|
+
283, 0xc184aa7b
|
|
286
|
+
284, 0xedbf2007
|
|
287
|
+
285, 0xbd420ce1
|
|
288
|
+
286, 0x761033a0
|
|
289
|
+
287, 0xff7e351f
|
|
290
|
+
288, 0xd6c3780e
|
|
291
|
+
289, 0x5844416f
|
|
292
|
+
290, 0xc6c0ee1c
|
|
293
|
+
291, 0xd2e147db
|
|
294
|
+
292, 0x92ac601a
|
|
295
|
+
293, 0x393e846b
|
|
296
|
+
294, 0x18196cca
|
|
297
|
+
295, 0x54a22be
|
|
298
|
+
296, 0x32bab1c4
|
|
299
|
+
297, 0x60365183
|
|
300
|
+
298, 0x64fa342
|
|
301
|
+
299, 0xca24a493
|
|
302
|
+
300, 0xd8cc8b83
|
|
303
|
+
301, 0x3faf102b
|
|
304
|
+
302, 0x6e09bb58
|
|
305
|
+
303, 0x812f0ea
|
|
306
|
+
304, 0x592c95d8
|
|
307
|
+
305, 0xe45ea4c5
|
|
308
|
+
306, 0x23aebf83
|
|
309
|
+
307, 0xbd9691d4
|
|
310
|
+
308, 0xf47b4baa
|
|
311
|
+
309, 0x4ac7b487
|
|
312
|
+
310, 0xcce18803
|
|
313
|
+
311, 0x3377556e
|
|
314
|
+
312, 0x3ff8e6b6
|
|
315
|
+
313, 0x99d22063
|
|
316
|
+
314, 0x23250bec
|
|
317
|
+
315, 0x4e1f9861
|
|
318
|
+
316, 0x8554249b
|
|
319
|
+
317, 0x8635c2fc
|
|
320
|
+
318, 0xe8426e8a
|
|
321
|
+
319, 0x966c29d8
|
|
322
|
+
320, 0x270b6082
|
|
323
|
+
321, 0x3180a8a1
|
|
324
|
+
322, 0xe7e1668b
|
|
325
|
+
323, 0x7f868dc
|
|
326
|
+
324, 0xcf4c17cf
|
|
327
|
+
325, 0xe31de4d1
|
|
328
|
+
326, 0xc8c8aff4
|
|
329
|
+
327, 0xae8db704
|
|
330
|
+
328, 0x3c928cc2
|
|
331
|
+
329, 0xe12cd48
|
|
332
|
+
330, 0xb33ecd04
|
|
333
|
+
331, 0xb93d7cbe
|
|
334
|
+
332, 0x49c69d6a
|
|
335
|
+
333, 0x7d3bce64
|
|
336
|
+
334, 0x86bc219
|
|
337
|
+
335, 0x8408233b
|
|
338
|
+
336, 0x44dc7479
|
|
339
|
+
337, 0xdf80d538
|
|
340
|
+
338, 0xf3db02c3
|
|
341
|
+
339, 0xbbbd31d7
|
|
342
|
+
340, 0x121281f
|
|
343
|
+
341, 0x7521e9a3
|
|
344
|
+
342, 0x8859675a
|
|
345
|
+
343, 0x75aa6502
|
|
346
|
+
344, 0x430ed15b
|
|
347
|
+
345, 0xecf0a28d
|
|
348
|
+
346, 0x659774fd
|
|
349
|
+
347, 0xd58a2311
|
|
350
|
+
348, 0x512389a9
|
|
351
|
+
349, 0xff65e1ff
|
|
352
|
+
350, 0xb6ddf222
|
|
353
|
+
351, 0xe3458895
|
|
354
|
+
352, 0x8b13cd6e
|
|
355
|
+
353, 0xd4a22870
|
|
356
|
+
354, 0xe604c50c
|
|
357
|
+
355, 0x27f54f26
|
|
358
|
+
356, 0x8f7f422f
|
|
359
|
+
357, 0x9735b4cf
|
|
360
|
+
358, 0x414072b0
|
|
361
|
+
359, 0x76a1c6d5
|
|
362
|
+
360, 0xa2208c06
|
|
363
|
+
361, 0x83cd0f61
|
|
364
|
+
362, 0x6c4f7ead
|
|
365
|
+
363, 0x6553cf76
|
|
366
|
+
364, 0xeffcf44
|
|
367
|
+
365, 0x7f434a3f
|
|
368
|
+
366, 0x9dc364bd
|
|
369
|
+
367, 0x3cdf52ed
|
|
370
|
+
368, 0xad597594
|
|
371
|
+
369, 0x9c3e211b
|
|
372
|
+
370, 0x6c04a33f
|
|
373
|
+
371, 0x885dafa6
|
|
374
|
+
372, 0xbbdaca71
|
|
375
|
+
373, 0x7ae5dd5c
|
|
376
|
+
374, 0x37675644
|
|
377
|
+
375, 0x251853c6
|
|
378
|
+
376, 0x130b086b
|
|
379
|
+
377, 0x143fa54b
|
|
380
|
+
378, 0x54cdc282
|
|
381
|
+
379, 0x9faff5b3
|
|
382
|
+
380, 0x502a5c8b
|
|
383
|
+
381, 0xd9524550
|
|
384
|
+
382, 0xae221aa6
|
|
385
|
+
383, 0x55cf759b
|
|
386
|
+
384, 0x24782da4
|
|
387
|
+
385, 0xd715d815
|
|
388
|
+
386, 0x250ea09a
|
|
389
|
+
387, 0x4e0744ac
|
|
390
|
+
388, 0x11e15814
|
|
391
|
+
389, 0xabe5f9df
|
|
392
|
+
390, 0xc8146350
|
|
393
|
+
391, 0xfba67d9b
|
|
394
|
+
392, 0x2b82e42f
|
|
395
|
+
393, 0xd4ea96fc
|
|
396
|
+
394, 0x5ffc179e
|
|
397
|
+
395, 0x1598bafe
|
|
398
|
+
396, 0x7fb6d662
|
|
399
|
+
397, 0x1a12a0db
|
|
400
|
+
398, 0x450cee4a
|
|
401
|
+
399, 0x85f8e12
|
|
402
|
+
400, 0xce71b594
|
|
403
|
+
401, 0xd4bb1d19
|
|
404
|
+
402, 0x968f379d
|
|
405
|
+
403, 0x54cc1d52
|
|
406
|
+
404, 0x467e6066
|
|
407
|
+
405, 0x7da5f9a9
|
|
408
|
+
406, 0x70977034
|
|
409
|
+
407, 0x49e65c4b
|
|
410
|
+
408, 0xd08570d1
|
|
411
|
+
409, 0x7acdf60b
|
|
412
|
+
410, 0xdffa038b
|
|
413
|
+
411, 0x9ce14e4c
|
|
414
|
+
412, 0x107cbbf8
|
|
415
|
+
413, 0xdd746ca0
|
|
416
|
+
414, 0xc6370a46
|
|
417
|
+
415, 0xe7f83312
|
|
418
|
+
416, 0x373fa9ce
|
|
419
|
+
417, 0xd822a2c6
|
|
420
|
+
418, 0x1d4efea6
|
|
421
|
+
419, 0xc53dcadb
|
|
422
|
+
420, 0x9b4e898f
|
|
423
|
+
421, 0x71daa6bf
|
|
424
|
+
422, 0x7a0bc78b
|
|
425
|
+
423, 0xd7b86f50
|
|
426
|
+
424, 0x1b8b3286
|
|
427
|
+
425, 0xcf9425dd
|
|
428
|
+
426, 0xd5263220
|
|
429
|
+
427, 0x4ea0b647
|
|
430
|
+
428, 0xc767fe64
|
|
431
|
+
429, 0xcfc5e67
|
|
432
|
+
430, 0xcc6a2942
|
|
433
|
+
431, 0xa51eff00
|
|
434
|
+
432, 0x76092e1b
|
|
435
|
+
433, 0xf606e80f
|
|
436
|
+
434, 0x824b5e20
|
|
437
|
+
435, 0xebb55e14
|
|
438
|
+
436, 0x783d96a6
|
|
439
|
+
437, 0x10696512
|
|
440
|
+
438, 0x17ee510a
|
|
441
|
+
439, 0x3ab70a1f
|
|
442
|
+
440, 0xcce6b210
|
|
443
|
+
441, 0x8f72f0fb
|
|
444
|
+
442, 0xf0610b41
|
|
445
|
+
443, 0x83d01fb5
|
|
446
|
+
444, 0x6b3de36
|
|
447
|
+
445, 0xe4c2e84f
|
|
448
|
+
446, 0x9c43bb15
|
|
449
|
+
447, 0xddf2905
|
|
450
|
+
448, 0x7dd63556
|
|
451
|
+
449, 0x3662ca09
|
|
452
|
+
450, 0xfb81f35b
|
|
453
|
+
451, 0xc2c8a72a
|
|
454
|
+
452, 0x8e93c37
|
|
455
|
+
453, 0xa93da2d4
|
|
456
|
+
454, 0xa03af8f1
|
|
457
|
+
455, 0x8d75159a
|
|
458
|
+
456, 0x15f010b0
|
|
459
|
+
457, 0xa296ab06
|
|
460
|
+
458, 0xe55962ba
|
|
461
|
+
459, 0xeae700a9
|
|
462
|
+
460, 0xe388964a
|
|
463
|
+
461, 0x917f2bec
|
|
464
|
+
462, 0x1c203fea
|
|
465
|
+
463, 0x792a01ba
|
|
466
|
+
464, 0xa93a80ac
|
|
467
|
+
465, 0x9eb8a197
|
|
468
|
+
466, 0x56c0bc73
|
|
469
|
+
467, 0xb8f05799
|
|
470
|
+
468, 0xf429a8c8
|
|
471
|
+
469, 0xb92cee42
|
|
472
|
+
470, 0xf8864ec
|
|
473
|
+
471, 0x62f2518a
|
|
474
|
+
472, 0x3a7bfa3e
|
|
475
|
+
473, 0x12e56e6d
|
|
476
|
+
474, 0xd7a18313
|
|
477
|
+
475, 0x41fa3899
|
|
478
|
+
476, 0xa09c4956
|
|
479
|
+
477, 0xebcfd94a
|
|
480
|
+
478, 0xc485f90b
|
|
481
|
+
479, 0x4391ce40
|
|
482
|
+
480, 0x742a3333
|
|
483
|
+
481, 0xc932f9e5
|
|
484
|
+
482, 0x75c6c263
|
|
485
|
+
483, 0x80937f0
|
|
486
|
+
484, 0xcf21833c
|
|
487
|
+
485, 0x16027520
|
|
488
|
+
486, 0xd42e669f
|
|
489
|
+
487, 0xb0f01fb7
|
|
490
|
+
488, 0xb35896f1
|
|
491
|
+
489, 0x763737a9
|
|
492
|
+
490, 0x1bb20209
|
|
493
|
+
491, 0x3551f189
|
|
494
|
+
492, 0x56bc2602
|
|
495
|
+
493, 0xb6eacf4
|
|
496
|
+
494, 0x42ec4d11
|
|
497
|
+
495, 0x245cc68
|
|
498
|
+
496, 0xc27ac43b
|
|
499
|
+
497, 0x9d903466
|
|
500
|
+
498, 0xce3f0c05
|
|
501
|
+
499, 0xb708c31c
|
|
502
|
+
500, 0xc0fd37eb
|
|
503
|
+
501, 0x95938b2c
|
|
504
|
+
502, 0xf20175a7
|
|
505
|
+
503, 0x4a86ee9b
|
|
506
|
+
504, 0xbe039a58
|
|
507
|
+
505, 0xd41cabe7
|
|
508
|
+
506, 0x83bc99ba
|
|
509
|
+
507, 0x761d60e1
|
|
510
|
+
508, 0x7737cc2e
|
|
511
|
+
509, 0x2b82fc4b
|
|
512
|
+
510, 0x375aa401
|
|
513
|
+
511, 0xfe9597a0
|
|
514
|
+
512, 0x5543806a
|
|
515
|
+
513, 0x44f31238
|
|
516
|
+
514, 0x7df31538
|
|
517
|
+
515, 0x74cfa770
|
|
518
|
+
516, 0x8755d881
|
|
519
|
+
517, 0x1fde665a
|
|
520
|
+
518, 0xda8bf315
|
|
521
|
+
519, 0x973d8e95
|
|
522
|
+
520, 0x72205228
|
|
523
|
+
521, 0x8fe59717
|
|
524
|
+
522, 0x7bb90b34
|
|
525
|
+
523, 0xef6ed945
|
|
526
|
+
524, 0x16fd4a38
|
|
527
|
+
525, 0x5db44de1
|
|
528
|
+
526, 0xf09f93b3
|
|
529
|
+
527, 0xe84824cc
|
|
530
|
+
528, 0x945bb50e
|
|
531
|
+
529, 0xd0be4aa5
|
|
532
|
+
530, 0x47c277c2
|
|
533
|
+
531, 0xd3800c28
|
|
534
|
+
532, 0xac1c33ec
|
|
535
|
+
533, 0xd3dacce
|
|
536
|
+
534, 0x811c8387
|
|
537
|
+
535, 0x6761b36
|
|
538
|
+
536, 0x70d3882f
|
|
539
|
+
537, 0xd6e62e3a
|
|
540
|
+
538, 0xea25daa2
|
|
541
|
+
539, 0xb07f39d1
|
|
542
|
+
540, 0x391d89d7
|
|
543
|
+
541, 0x84b6fb5e
|
|
544
|
+
542, 0x3dda3fca
|
|
545
|
+
543, 0x229e80a4
|
|
546
|
+
544, 0x3d94a4b7
|
|
547
|
+
545, 0x5d3d576a
|
|
548
|
+
546, 0xad7818a0
|
|
549
|
+
547, 0xce23b03a
|
|
550
|
+
548, 0x7aa2079c
|
|
551
|
+
549, 0x9a6be555
|
|
552
|
+
550, 0x83f3b34a
|
|
553
|
+
551, 0x1848f9d9
|
|
554
|
+
552, 0xd8fefc1c
|
|
555
|
+
553, 0x48e6ce48
|
|
556
|
+
554, 0x52e55750
|
|
557
|
+
555, 0xf41a71cf
|
|
558
|
+
556, 0xba08e259
|
|
559
|
+
557, 0xfaf06a15
|
|
560
|
+
558, 0xeaaac0fb
|
|
561
|
+
559, 0x34f90098
|
|
562
|
+
560, 0xb1dfffbb
|
|
563
|
+
561, 0x718daec2
|
|
564
|
+
562, 0xab4dda21
|
|
565
|
+
563, 0xd27cc1ee
|
|
566
|
+
564, 0x4aafbc4c
|
|
567
|
+
565, 0x356dfb4f
|
|
568
|
+
566, 0x83fcdfd6
|
|
569
|
+
567, 0x8f0bcde0
|
|
570
|
+
568, 0x4363f844
|
|
571
|
+
569, 0xadc0f4d5
|
|
572
|
+
570, 0x3bde994e
|
|
573
|
+
571, 0x3884d452
|
|
574
|
+
572, 0x21876b4a
|
|
575
|
+
573, 0x9c985398
|
|
576
|
+
574, 0xca55a226
|
|
577
|
+
575, 0x3a88c583
|
|
578
|
+
576, 0x916dc33c
|
|
579
|
+
577, 0x8f67d1d7
|
|
580
|
+
578, 0x3b26a667
|
|
581
|
+
579, 0xe4ddeb4b
|
|
582
|
+
580, 0x1a9d8c33
|
|
583
|
+
581, 0x81c9b74f
|
|
584
|
+
582, 0x9ed1e9df
|
|
585
|
+
583, 0x6e61aecf
|
|
586
|
+
584, 0x95e95a5d
|
|
587
|
+
585, 0x68864ff5
|
|
588
|
+
586, 0xb8fa5b9
|
|
589
|
+
587, 0x72b1b3de
|
|
590
|
+
588, 0x5e18a86b
|
|
591
|
+
589, 0xd7f2337d
|
|
592
|
+
590, 0xd70e0925
|
|
593
|
+
591, 0xb573a4c1
|
|
594
|
+
592, 0xc77b3f8a
|
|
595
|
+
593, 0x389b20de
|
|
596
|
+
594, 0x16cf6afb
|
|
597
|
+
595, 0xa39bd275
|
|
598
|
+
596, 0xf491cf01
|
|
599
|
+
597, 0x6f88a802
|
|
600
|
+
598, 0x8510af05
|
|
601
|
+
599, 0xe7cd549a
|
|
602
|
+
600, 0x8603179a
|
|
603
|
+
601, 0xef43f191
|
|
604
|
+
602, 0xf9b64c60
|
|
605
|
+
603, 0xb00254a7
|
|
606
|
+
604, 0xd7c06a2d
|
|
607
|
+
605, 0x17e9380b
|
|
608
|
+
606, 0x529e727b
|
|
609
|
+
607, 0xaaa8fe0a
|
|
610
|
+
608, 0xfb64ff4c
|
|
611
|
+
609, 0xcd75af26
|
|
612
|
+
610, 0xfb717c87
|
|
613
|
+
611, 0xa0789899
|
|
614
|
+
612, 0x10391ec9
|
|
615
|
+
613, 0x7e9b40b3
|
|
616
|
+
614, 0x18536554
|
|
617
|
+
615, 0x728c05f7
|
|
618
|
+
616, 0x787dca98
|
|
619
|
+
617, 0xad948d1
|
|
620
|
+
618, 0x44c18def
|
|
621
|
+
619, 0x3303f2ec
|
|
622
|
+
620, 0xa15acb5
|
|
623
|
+
621, 0xb58d38f4
|
|
624
|
+
622, 0xfe041ef8
|
|
625
|
+
623, 0xd151a956
|
|
626
|
+
624, 0x7b9168e8
|
|
627
|
+
625, 0x5ebeca06
|
|
628
|
+
626, 0x90fe95df
|
|
629
|
+
627, 0xf76875aa
|
|
630
|
+
628, 0xb2e0d664
|
|
631
|
+
629, 0x2e3253b7
|
|
632
|
+
630, 0x68e34469
|
|
633
|
+
631, 0x1f0c2d89
|
|
634
|
+
632, 0x13a34ac2
|
|
635
|
+
633, 0x5ffeb841
|
|
636
|
+
634, 0xe381e91c
|
|
637
|
+
635, 0xb8549a92
|
|
638
|
+
636, 0x3f35cf1
|
|
639
|
+
637, 0xda0f9dcb
|
|
640
|
+
638, 0xdd9828a6
|
|
641
|
+
639, 0xe1428f29
|
|
642
|
+
640, 0xf4db80b5
|
|
643
|
+
641, 0xdac30af5
|
|
644
|
+
642, 0x1af1dd17
|
|
645
|
+
643, 0x9a540254
|
|
646
|
+
644, 0xcab68a38
|
|
647
|
+
645, 0x33560361
|
|
648
|
+
646, 0x2fbf3886
|
|
649
|
+
647, 0xbc785923
|
|
650
|
+
648, 0xe081cd10
|
|
651
|
+
649, 0x8e473356
|
|
652
|
+
650, 0xd102c357
|
|
653
|
+
651, 0xeea4fe48
|
|
654
|
+
652, 0x248d3453
|
|
655
|
+
653, 0x1da79ac
|
|
656
|
+
654, 0x815a65ff
|
|
657
|
+
655, 0x27693e76
|
|
658
|
+
656, 0xb7d5af40
|
|
659
|
+
657, 0x6d245d30
|
|
660
|
+
658, 0x9e06fa8f
|
|
661
|
+
659, 0xb0570dcb
|
|
662
|
+
660, 0x469f0005
|
|
663
|
+
661, 0x3e0ca132
|
|
664
|
+
662, 0xd89bbf3
|
|
665
|
+
663, 0xd61ccd47
|
|
666
|
+
664, 0x6383878
|
|
667
|
+
665, 0x62b5956
|
|
668
|
+
666, 0x4dc83675
|
|
669
|
+
667, 0x93fd8492
|
|
670
|
+
668, 0x5a0091f5
|
|
671
|
+
669, 0xc9f9bc3
|
|
672
|
+
670, 0xa26e7778
|
|
673
|
+
671, 0xeabf2d01
|
|
674
|
+
672, 0xe612dc06
|
|
675
|
+
673, 0x85d89ff9
|
|
676
|
+
674, 0xd1763179
|
|
677
|
+
675, 0xcb88947b
|
|
678
|
+
676, 0x9e8757a5
|
|
679
|
+
677, 0xe100e85c
|
|
680
|
+
678, 0x904166eb
|
|
681
|
+
679, 0x4996243d
|
|
682
|
+
680, 0x4038e1cb
|
|
683
|
+
681, 0x2be2c63d
|
|
684
|
+
682, 0x77017e81
|
|
685
|
+
683, 0x3b1f556b
|
|
686
|
+
684, 0x1c785c77
|
|
687
|
+
685, 0x6869b8bd
|
|
688
|
+
686, 0xe1217ed4
|
|
689
|
+
687, 0x4012ab2f
|
|
690
|
+
688, 0xc06c0d8e
|
|
691
|
+
689, 0x2122eb68
|
|
692
|
+
690, 0xad1783fd
|
|
693
|
+
691, 0x5f0c80e3
|
|
694
|
+
692, 0x828f7efa
|
|
695
|
+
693, 0x29328399
|
|
696
|
+
694, 0xeadf1087
|
|
697
|
+
695, 0x85dc0037
|
|
698
|
+
696, 0x9691ef26
|
|
699
|
+
697, 0xc0947a53
|
|
700
|
+
698, 0x2a178d2a
|
|
701
|
+
699, 0x2a2c7e8f
|
|
702
|
+
700, 0x90378380
|
|
703
|
+
701, 0xaad8d326
|
|
704
|
+
702, 0x9cf1c3c8
|
|
705
|
+
703, 0x84eccd44
|
|
706
|
+
704, 0x79e61808
|
|
707
|
+
705, 0x8b3f454e
|
|
708
|
+
706, 0x209e6e1
|
|
709
|
+
707, 0x51f88378
|
|
710
|
+
708, 0xc210226f
|
|
711
|
+
709, 0xd982adb5
|
|
712
|
+
710, 0x55d44a31
|
|
713
|
+
711, 0x9817d443
|
|
714
|
+
712, 0xa328c626
|
|
715
|
+
713, 0x13455966
|
|
716
|
+
714, 0xb8f681d3
|
|
717
|
+
715, 0x2a3c713b
|
|
718
|
+
716, 0xc186959b
|
|
719
|
+
717, 0x814a74b0
|
|
720
|
+
718, 0xed7bc90
|
|
721
|
+
719, 0xa88d3d6d
|
|
722
|
+
720, 0x88a9f561
|
|
723
|
+
721, 0x73aa1c0a
|
|
724
|
+
722, 0xdfeff404
|
|
725
|
+
723, 0xec037e4b
|
|
726
|
+
724, 0xa5c209f0
|
|
727
|
+
725, 0xb3a223b4
|
|
728
|
+
726, 0x24ce3709
|
|
729
|
+
727, 0x3184c790
|
|
730
|
+
728, 0xa1398c62
|
|
731
|
+
729, 0x2f92034e
|
|
732
|
+
730, 0xbb37a79a
|
|
733
|
+
731, 0x605287b4
|
|
734
|
+
732, 0x8faa772c
|
|
735
|
+
733, 0x6ce56c1d
|
|
736
|
+
734, 0xc035fb4c
|
|
737
|
+
735, 0x7cf5b316
|
|
738
|
+
736, 0x6502645
|
|
739
|
+
737, 0xa283d810
|
|
740
|
+
738, 0x778bc2f1
|
|
741
|
+
739, 0xfdf99313
|
|
742
|
+
740, 0x1f513265
|
|
743
|
+
741, 0xbd3837e2
|
|
744
|
+
742, 0x9b84a9a
|
|
745
|
+
743, 0x2139ce91
|
|
746
|
+
744, 0x61a8e890
|
|
747
|
+
745, 0xf9ff12db
|
|
748
|
+
746, 0xb43d2ea7
|
|
749
|
+
747, 0x88532e61
|
|
750
|
+
748, 0x175a6655
|
|
751
|
+
749, 0x7a6c4f72
|
|
752
|
+
750, 0x6dafc1b7
|
|
753
|
+
751, 0x449b1459
|
|
754
|
+
752, 0x514f654f
|
|
755
|
+
753, 0x9a6731e2
|
|
756
|
+
754, 0x8632da43
|
|
757
|
+
755, 0xc81b0422
|
|
758
|
+
756, 0x81fe9005
|
|
759
|
+
757, 0x15b79618
|
|
760
|
+
758, 0xb5fa629f
|
|
761
|
+
759, 0x987a474f
|
|
762
|
+
760, 0x1c74f54e
|
|
763
|
+
761, 0xf9743232
|
|
764
|
+
762, 0xec4b55f
|
|
765
|
+
763, 0x87d761e5
|
|
766
|
+
764, 0xd1ad78b7
|
|
767
|
+
765, 0x453d9350
|
|
768
|
+
766, 0xc7a7d85
|
|
769
|
+
767, 0xb2576ff5
|
|
770
|
+
768, 0xcdde49b7
|
|
771
|
+
769, 0x8e1f763e
|
|
772
|
+
770, 0x1338583e
|
|
773
|
+
771, 0xfd65b9dc
|
|
774
|
+
772, 0x4f19c4f4
|
|
775
|
+
773, 0x3a52d73d
|
|
776
|
+
774, 0xd3509c4c
|
|
777
|
+
775, 0xda24fe31
|
|
778
|
+
776, 0xe2de56ba
|
|
779
|
+
777, 0x2db5e540
|
|
780
|
+
778, 0x23172734
|
|
781
|
+
779, 0x4db572f
|
|
782
|
+
780, 0xeb941718
|
|
783
|
+
781, 0x84c2649a
|
|
784
|
+
782, 0x3b1e5b6a
|
|
785
|
+
783, 0x4c9c61b9
|
|
786
|
+
784, 0x3bccd11
|
|
787
|
+
785, 0xb4d7b78e
|
|
788
|
+
786, 0x48580ae5
|
|
789
|
+
787, 0xd273ab68
|
|
790
|
+
788, 0x25c11615
|
|
791
|
+
789, 0x470b53f6
|
|
792
|
+
790, 0x329c2068
|
|
793
|
+
791, 0x1693721b
|
|
794
|
+
792, 0xf8c9aacf
|
|
795
|
+
793, 0x4c3d5693
|
|
796
|
+
794, 0xd778284e
|
|
797
|
+
795, 0xae1cb24f
|
|
798
|
+
796, 0x3c11d1b3
|
|
799
|
+
797, 0xddd2b0c0
|
|
800
|
+
798, 0x90269fa7
|
|
801
|
+
799, 0x5666e0a2
|
|
802
|
+
800, 0xf9f195a4
|
|
803
|
+
801, 0x61d78eb2
|
|
804
|
+
802, 0xada5a7c0
|
|
805
|
+
803, 0xaa272fbe
|
|
806
|
+
804, 0xba3bae2f
|
|
807
|
+
805, 0xd0b70fc2
|
|
808
|
+
806, 0x529f32b
|
|
809
|
+
807, 0xda7a3e21
|
|
810
|
+
808, 0x9a776a20
|
|
811
|
+
809, 0xb21f9635
|
|
812
|
+
810, 0xb3acc14e
|
|
813
|
+
811, 0xac55f56
|
|
814
|
+
812, 0x29dccf41
|
|
815
|
+
813, 0x32dabdb3
|
|
816
|
+
814, 0xaa032f58
|
|
817
|
+
815, 0xfa406af4
|
|
818
|
+
816, 0xce3c415d
|
|
819
|
+
817, 0xb44fb4d9
|
|
820
|
+
818, 0x32248d1c
|
|
821
|
+
819, 0x680c6440
|
|
822
|
+
820, 0xae2337b
|
|
823
|
+
821, 0x294cb597
|
|
824
|
+
822, 0x5bca48fe
|
|
825
|
+
823, 0xaef19f40
|
|
826
|
+
824, 0xad60406
|
|
827
|
+
825, 0x4781f090
|
|
828
|
+
826, 0xfd691ffc
|
|
829
|
+
827, 0xb6568268
|
|
830
|
+
828, 0xa56c72cb
|
|
831
|
+
829, 0xf8a9e0fc
|
|
832
|
+
830, 0x9af4fd02
|
|
833
|
+
831, 0x2cd30932
|
|
834
|
+
832, 0x776cefd7
|
|
835
|
+
833, 0xe31f476e
|
|
836
|
+
834, 0x6d94a437
|
|
837
|
+
835, 0xb3cab598
|
|
838
|
+
836, 0xf582d13f
|
|
839
|
+
837, 0x3bf8759d
|
|
840
|
+
838, 0xc3777dc
|
|
841
|
+
839, 0x5e425ea8
|
|
842
|
+
840, 0x1c7ff4ed
|
|
843
|
+
841, 0x1c2e97d1
|
|
844
|
+
842, 0xc062d2b4
|
|
845
|
+
843, 0x46dc80e0
|
|
846
|
+
844, 0xbcdb47e6
|
|
847
|
+
845, 0x32282fe0
|
|
848
|
+
846, 0xaba89063
|
|
849
|
+
847, 0x5e94e9bb
|
|
850
|
+
848, 0x3e667f78
|
|
851
|
+
849, 0xea6eb21a
|
|
852
|
+
850, 0xe56e54e8
|
|
853
|
+
851, 0xa0383510
|
|
854
|
+
852, 0x6768fe2b
|
|
855
|
+
853, 0xb53ac3e0
|
|
856
|
+
854, 0x779569a0
|
|
857
|
+
855, 0xeca83c6a
|
|
858
|
+
856, 0x24db4d2d
|
|
859
|
+
857, 0x4585f696
|
|
860
|
+
858, 0xf84748b2
|
|
861
|
+
859, 0xf6a4dd5b
|
|
862
|
+
860, 0x31fb524d
|
|
863
|
+
861, 0x67ab39fe
|
|
864
|
+
862, 0x5882a899
|
|
865
|
+
863, 0x9a05fcf6
|
|
866
|
+
864, 0x712b5674
|
|
867
|
+
865, 0xe8c6958f
|
|
868
|
+
866, 0x4b448bb3
|
|
869
|
+
867, 0x530b9abf
|
|
870
|
+
868, 0xb491f491
|
|
871
|
+
869, 0x98352c62
|
|
872
|
+
870, 0x2d0a50e3
|
|
873
|
+
871, 0xeb4384da
|
|
874
|
+
872, 0x36246f07
|
|
875
|
+
873, 0xcbc5c1a
|
|
876
|
+
874, 0xae24031d
|
|
877
|
+
875, 0x44d11ed6
|
|
878
|
+
876, 0xf07f1608
|
|
879
|
+
877, 0xf296aadd
|
|
880
|
+
878, 0x3bcfe3be
|
|
881
|
+
879, 0x8fa1e7df
|
|
882
|
+
880, 0xfd317a6e
|
|
883
|
+
881, 0xe4975c44
|
|
884
|
+
882, 0x15205892
|
|
885
|
+
883, 0xa762d4df
|
|
886
|
+
884, 0xf1167365
|
|
887
|
+
885, 0x6811cc00
|
|
888
|
+
886, 0x8315f23
|
|
889
|
+
887, 0xe045b4b1
|
|
890
|
+
888, 0xa8496414
|
|
891
|
+
889, 0xbed313ae
|
|
892
|
+
890, 0xcdae3ddb
|
|
893
|
+
891, 0xa9c22c9
|
|
894
|
+
892, 0x275fab1a
|
|
895
|
+
893, 0xedd65fa
|
|
896
|
+
894, 0x4c188229
|
|
897
|
+
895, 0x63a83e58
|
|
898
|
+
896, 0x18aa9207
|
|
899
|
+
897, 0xa41f2e78
|
|
900
|
+
898, 0xd9f63653
|
|
901
|
+
899, 0xbe2be73b
|
|
902
|
+
900, 0xa3364d39
|
|
903
|
+
901, 0x896d5428
|
|
904
|
+
902, 0xc737539e
|
|
905
|
+
903, 0x745a78c6
|
|
906
|
+
904, 0xf0b2b042
|
|
907
|
+
905, 0x510773b4
|
|
908
|
+
906, 0x92ad8e37
|
|
909
|
+
907, 0x27f2f8c4
|
|
910
|
+
908, 0x23704cc8
|
|
911
|
+
909, 0x3d95a77f
|
|
912
|
+
910, 0xf08587a4
|
|
913
|
+
911, 0xbd696a25
|
|
914
|
+
912, 0x948924f3
|
|
915
|
+
913, 0x8cddb634
|
|
916
|
+
914, 0xcd2a4910
|
|
917
|
+
915, 0x8e0e300e
|
|
918
|
+
916, 0x83815a9b
|
|
919
|
+
917, 0x67383510
|
|
920
|
+
918, 0x3c18f0d0
|
|
921
|
+
919, 0xc7a7bccc
|
|
922
|
+
920, 0x7cc2d3a2
|
|
923
|
+
921, 0x52eb2eeb
|
|
924
|
+
922, 0xe4a257e5
|
|
925
|
+
923, 0xec76160e
|
|
926
|
+
924, 0x63f9ad68
|
|
927
|
+
925, 0x36d0bbbf
|
|
928
|
+
926, 0x957bc4e4
|
|
929
|
+
927, 0xc9ed90ff
|
|
930
|
+
928, 0x4cb6059d
|
|
931
|
+
929, 0x2f86eca1
|
|
932
|
+
930, 0x3e3665a3
|
|
933
|
+
931, 0x9b7eb6f4
|
|
934
|
+
932, 0x492e7e18
|
|
935
|
+
933, 0xa098aa51
|
|
936
|
+
934, 0x7eb568b2
|
|
937
|
+
935, 0x3fd639ba
|
|
938
|
+
936, 0x7bebcf1
|
|
939
|
+
937, 0x99c844ad
|
|
940
|
+
938, 0x43cb5ec7
|
|
941
|
+
939, 0x8dfbbef5
|
|
942
|
+
940, 0x5be413ff
|
|
943
|
+
941, 0xd93b976d
|
|
944
|
+
942, 0xc1c7a86d
|
|
945
|
+
943, 0x1f0e93d0
|
|
946
|
+
944, 0x498204a2
|
|
947
|
+
945, 0xe8fe832a
|
|
948
|
+
946, 0x2236bd7
|
|
949
|
+
947, 0x89953769
|
|
950
|
+
948, 0x2acc3491
|
|
951
|
+
949, 0x2c4f22c6
|
|
952
|
+
950, 0xd7996277
|
|
953
|
+
951, 0x3bcdc349
|
|
954
|
+
952, 0xfc286630
|
|
955
|
+
953, 0x5f8909fd
|
|
956
|
+
954, 0x242677c0
|
|
957
|
+
955, 0x4cb34104
|
|
958
|
+
956, 0xa6ff8100
|
|
959
|
+
957, 0x39ea47ec
|
|
960
|
+
958, 0x9bd54140
|
|
961
|
+
959, 0x7502ffe8
|
|
962
|
+
960, 0x7ebef8ae
|
|
963
|
+
961, 0x1ed8abe4
|
|
964
|
+
962, 0xfaba8450
|
|
965
|
+
963, 0xc197b65f
|
|
966
|
+
964, 0x19431455
|
|
967
|
+
965, 0xe229c176
|
|
968
|
+
966, 0xeb2967da
|
|
969
|
+
967, 0xe0c5dc05
|
|
970
|
+
968, 0xa84e3227
|
|
971
|
+
969, 0x10dd9e0f
|
|
972
|
+
970, 0xbdb70b02
|
|
973
|
+
971, 0xce24808a
|
|
974
|
+
972, 0x423edab8
|
|
975
|
+
973, 0x194caf71
|
|
976
|
+
974, 0x144f150d
|
|
977
|
+
975, 0xf811c2d2
|
|
978
|
+
976, 0xc224ee85
|
|
979
|
+
977, 0x2b217a5b
|
|
980
|
+
978, 0xf78a5a79
|
|
981
|
+
979, 0x6554a4b1
|
|
982
|
+
980, 0x769582df
|
|
983
|
+
981, 0xf4b2cf93
|
|
984
|
+
982, 0x89648483
|
|
985
|
+
983, 0xb3283a3e
|
|
986
|
+
984, 0x82b895db
|
|
987
|
+
985, 0x79388ef0
|
|
988
|
+
986, 0x54bc42a6
|
|
989
|
+
987, 0xc4dd39d9
|
|
990
|
+
988, 0x45b33b7d
|
|
991
|
+
989, 0x8703b2c1
|
|
992
|
+
990, 0x1cc94806
|
|
993
|
+
991, 0xe0f43e49
|
|
994
|
+
992, 0xcaa7b6bc
|
|
995
|
+
993, 0x4f88e9af
|
|
996
|
+
994, 0x1477cce5
|
|
997
|
+
995, 0x347dd115
|
|
998
|
+
996, 0x36e335fa
|
|
999
|
+
997, 0xb93c9a31
|
|
1000
|
+
998, 0xaac3a175
|
|
1001
|
+
999, 0x68a19647
|