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, 0x0
|
|
2
|
+
0, 0xd97e4a147f788a70
|
|
3
|
+
1, 0x8dfa7bce56e3a253
|
|
4
|
+
2, 0x13556ed9f53d3c10
|
|
5
|
+
3, 0x55dbf1c241341e98
|
|
6
|
+
4, 0xa2cd98f722eb0e0a
|
|
7
|
+
5, 0x83dfc407203ade8
|
|
8
|
+
6, 0xeaa083df518f030d
|
|
9
|
+
7, 0x44968c87e432852b
|
|
10
|
+
8, 0x573107b9cb8d9ecc
|
|
11
|
+
9, 0x9eedd1da50b9daca
|
|
12
|
+
10, 0xb33a6735ca451e3c
|
|
13
|
+
11, 0x72830d2b39677262
|
|
14
|
+
12, 0x9da8c512fd0207e8
|
|
15
|
+
13, 0x1fc5c91954a2672b
|
|
16
|
+
14, 0xd33479437116e08
|
|
17
|
+
15, 0x9ccdd9390cee46f3
|
|
18
|
+
16, 0x1fd39bb01acd9e76
|
|
19
|
+
17, 0xedc1869a42ff7fe5
|
|
20
|
+
18, 0xbd68ca0b42a6e7e9
|
|
21
|
+
19, 0x620b67df09621b1f
|
|
22
|
+
20, 0xfa11d51bd6950221
|
|
23
|
+
21, 0xc8c45b36e7d28d08
|
|
24
|
+
22, 0xe9c91272fbaad777
|
|
25
|
+
23, 0x2dc87a143f220e90
|
|
26
|
+
24, 0x6376a7c82361f49d
|
|
27
|
+
25, 0x552c5e434232fe75
|
|
28
|
+
26, 0x468f7f872ac195bc
|
|
29
|
+
27, 0x32bed6858125cf89
|
|
30
|
+
28, 0xe4f06111494d09d3
|
|
31
|
+
29, 0xa5c166ffea248b80
|
|
32
|
+
30, 0x4e26605b97064a3f
|
|
33
|
+
31, 0xceafd9f6fc5569d
|
|
34
|
+
32, 0xb772f2f9eed9e106
|
|
35
|
+
33, 0x672c65e6a93534e2
|
|
36
|
+
34, 0xcdc5e1a28d1bd6a0
|
|
37
|
+
35, 0x1ed9c96daeebd3e3
|
|
38
|
+
36, 0x4d189dcfc0c93c3f
|
|
39
|
+
37, 0x50df5a95c62f4b43
|
|
40
|
+
38, 0xcccf4949fa65bbb8
|
|
41
|
+
39, 0x19b8073d53cdc984
|
|
42
|
+
40, 0x6fb40bba35483703
|
|
43
|
+
41, 0xb02de4aef86b515a
|
|
44
|
+
42, 0x4d90c63655350310
|
|
45
|
+
43, 0xea44e4089825b16c
|
|
46
|
+
44, 0x8d676958b1f9da2b
|
|
47
|
+
45, 0x6d313940917ae195
|
|
48
|
+
46, 0x1b1d35a4c1dd19f4
|
|
49
|
+
47, 0x117720f8397337ef
|
|
50
|
+
48, 0xcc073cf3ac11eeaa
|
|
51
|
+
49, 0x8331ec58a9ff8acb
|
|
52
|
+
50, 0xf3dc2a308b6b866f
|
|
53
|
+
51, 0x7eba1202663382b6
|
|
54
|
+
52, 0x8269839debeb4e5a
|
|
55
|
+
53, 0x87fd3dc0f9181a8e
|
|
56
|
+
54, 0xabe62ddd3c925f03
|
|
57
|
+
55, 0x7f56f146944fe8d4
|
|
58
|
+
56, 0xc535972150852068
|
|
59
|
+
57, 0x60b252d453bd3a68
|
|
60
|
+
58, 0x4251f0134634490a
|
|
61
|
+
59, 0x338950da210dfeb2
|
|
62
|
+
60, 0xcadfe932971c9471
|
|
63
|
+
61, 0xfb7049457fab470e
|
|
64
|
+
62, 0x9bfb8145a4459dff
|
|
65
|
+
63, 0x4a89dda3898f9d8a
|
|
66
|
+
64, 0x88cc560151483929
|
|
67
|
+
65, 0x277dc820f4b6796e
|
|
68
|
+
66, 0x3524bd07ea0afb88
|
|
69
|
+
67, 0x92eb6ffb2bf14311
|
|
70
|
+
68, 0xf6559be0783f3fe9
|
|
71
|
+
69, 0xf0844f9af54af00d
|
|
72
|
+
70, 0xdd5e0b59adcef8a
|
|
73
|
+
71, 0x4ff7e4f2ab18554c
|
|
74
|
+
72, 0x3fa22c8a02634587
|
|
75
|
+
73, 0x1db8e1a9442fe300
|
|
76
|
+
74, 0x40cf15953ad3d3e7
|
|
77
|
+
75, 0x92af15fe1a9f6f0a
|
|
78
|
+
76, 0xab4a0e466fb0cfd
|
|
79
|
+
77, 0x944f1555a06cca82
|
|
80
|
+
78, 0x10cf48412f1f6066
|
|
81
|
+
79, 0x7f51f9a455f9e8e1
|
|
82
|
+
80, 0x47ee93530f024c7e
|
|
83
|
+
81, 0x36cf2f0413e0f6f2
|
|
84
|
+
82, 0xa315e23731969407
|
|
85
|
+
83, 0xd8e2796327cf5f87
|
|
86
|
+
84, 0xa86072696a555c34
|
|
87
|
+
85, 0xee3f0b8804feaab7
|
|
88
|
+
86, 0x41e80dc858f8360b
|
|
89
|
+
87, 0x31ec2e9b78f5b29
|
|
90
|
+
88, 0xd397fb9b8561344c
|
|
91
|
+
89, 0x28081e724e649b74
|
|
92
|
+
90, 0x5c135fc3fc672348
|
|
93
|
+
91, 0x9a276ca70ce9caa0
|
|
94
|
+
92, 0x9216da059229050a
|
|
95
|
+
93, 0xcf7d375ed68007b0
|
|
96
|
+
94, 0xa68ad1963724a770
|
|
97
|
+
95, 0xd4350de8d3b6787c
|
|
98
|
+
96, 0xee7d2c2cc275b6d2
|
|
99
|
+
97, 0x71645ec738749735
|
|
100
|
+
98, 0x45abdf8c68d33dbb
|
|
101
|
+
99, 0xe71cadb692c705ea
|
|
102
|
+
100, 0x60af6f061fd90622
|
|
103
|
+
101, 0x1eabe2072632c99d
|
|
104
|
+
102, 0x947dda995a402cb6
|
|
105
|
+
103, 0xbb19f49a3454f3b
|
|
106
|
+
104, 0xe6e43e907407758c
|
|
107
|
+
105, 0xfe2b67016bd6873a
|
|
108
|
+
106, 0x7fdb4dd8ab30a722
|
|
109
|
+
107, 0x39d3265b0ff1a45b
|
|
110
|
+
108, 0xed24c0e4fce8d0c2
|
|
111
|
+
109, 0xf6e074f86faf669d
|
|
112
|
+
110, 0x9142040df8dc2a79
|
|
113
|
+
111, 0x9682ab16bc939a9c
|
|
114
|
+
112, 0x6a4e80c378d971c8
|
|
115
|
+
113, 0x31309c2c7fc2d3d6
|
|
116
|
+
114, 0xb7237ec682993339
|
|
117
|
+
115, 0x6a30c06bb83dccd9
|
|
118
|
+
116, 0x21c8e9b6d8e7c382
|
|
119
|
+
117, 0x258a24ae6f086a19
|
|
120
|
+
118, 0xb76edb5be7df5c35
|
|
121
|
+
119, 0x3c11d7d5c16e7175
|
|
122
|
+
120, 0xbdfc34c31eff66e1
|
|
123
|
+
121, 0x8af66e44be8bf3a2
|
|
124
|
+
122, 0x3053292e193dec28
|
|
125
|
+
123, 0xd0cc44545b454995
|
|
126
|
+
124, 0x408ac01a9289d56
|
|
127
|
+
125, 0x4e02d34318ec2e85
|
|
128
|
+
126, 0x9413ff3777c6eb6b
|
|
129
|
+
127, 0xa3a301f8e37eb3df
|
|
130
|
+
128, 0x14e6306bd8d8f9f9
|
|
131
|
+
129, 0xd3ea06ce16c4a653
|
|
132
|
+
130, 0x170abe5429122982
|
|
133
|
+
131, 0x7f9e6fddc6cacb85
|
|
134
|
+
132, 0xa41b93e10a10a4c8
|
|
135
|
+
133, 0x239216f9d5b6d0b5
|
|
136
|
+
134, 0x985fcb6cb4190d98
|
|
137
|
+
135, 0xb45e3e7c68f480c6
|
|
138
|
+
136, 0xc1b2fc2e0446211c
|
|
139
|
+
137, 0x4596adb28858c498
|
|
140
|
+
138, 0x2dd706f3458ddc75
|
|
141
|
+
139, 0x29c988c86f75464
|
|
142
|
+
140, 0xac33a65aa679a60
|
|
143
|
+
141, 0xa28fef762d39d938
|
|
144
|
+
142, 0x541e6fa48647f53
|
|
145
|
+
143, 0x27838d56b2649735
|
|
146
|
+
144, 0x8e143d318a796212
|
|
147
|
+
145, 0xaea6097745f586b8
|
|
148
|
+
146, 0x636143330f8ee2e6
|
|
149
|
+
147, 0xc2d05fd8b945b172
|
|
150
|
+
148, 0x6e355f9eb4353055
|
|
151
|
+
149, 0xeb64ca42e8bf282e
|
|
152
|
+
150, 0xe8202dfd9da0fe5
|
|
153
|
+
151, 0x7305689c9d790cba
|
|
154
|
+
152, 0xf122f8b1bef32970
|
|
155
|
+
153, 0x9562887e38c32ba5
|
|
156
|
+
154, 0xf9cd9be121b738d
|
|
157
|
+
155, 0x6238e0c398307913
|
|
158
|
+
156, 0x5f2e79bb07c30f47
|
|
159
|
+
157, 0x8ce8e45c465006e
|
|
160
|
+
158, 0x39281fe1e99e2441
|
|
161
|
+
159, 0xafb10c2ca2874fea
|
|
162
|
+
160, 0x6e52f91633f83cf
|
|
163
|
+
161, 0x8ff12c1ac73c4494
|
|
164
|
+
162, 0xe48608a09365af59
|
|
165
|
+
163, 0xefd9bbc7e76e6a33
|
|
166
|
+
164, 0xbe16a39d5c38ec92
|
|
167
|
+
165, 0x6a6ffbcaf5a2330f
|
|
168
|
+
166, 0xdd5d6ac7d998d43d
|
|
169
|
+
167, 0x207bf978226d4f11
|
|
170
|
+
168, 0xf8eec56bd2a0f62e
|
|
171
|
+
169, 0xa5bccf05dce0d975
|
|
172
|
+
170, 0x93cf3ec1afe457a6
|
|
173
|
+
171, 0x38651466d201f736
|
|
174
|
+
172, 0x3ad21473985c9184
|
|
175
|
+
173, 0xc6407a3bd38c92a6
|
|
176
|
+
174, 0xb1ec42c7afa90a25
|
|
177
|
+
175, 0xbdeca984df8b7dd3
|
|
178
|
+
176, 0xb6926b1d00aa6c55
|
|
179
|
+
177, 0x86141d0022352d49
|
|
180
|
+
178, 0x169316256135ee09
|
|
181
|
+
179, 0xffb1c7767af02a5c
|
|
182
|
+
180, 0x502af38ad19f5c91
|
|
183
|
+
181, 0xfbf6cbc080086658
|
|
184
|
+
182, 0x33cf9b219edae501
|
|
185
|
+
183, 0x46e69bebd77b8862
|
|
186
|
+
184, 0xf11e0cc91125d041
|
|
187
|
+
185, 0xb4cd1649f85e078f
|
|
188
|
+
186, 0xb49be408db4e952
|
|
189
|
+
187, 0xb0b8db46140cce3c
|
|
190
|
+
188, 0xba647f2174012be7
|
|
191
|
+
189, 0x4f0a09e406970ac9
|
|
192
|
+
190, 0xf868c7aec9890a5c
|
|
193
|
+
191, 0xde4c8fa7498ea090
|
|
194
|
+
192, 0x872ceb197978c1d4
|
|
195
|
+
193, 0x1eb5cd9c3269b258
|
|
196
|
+
194, 0x3ea189f91724f014
|
|
197
|
+
195, 0x41379656f7746f2c
|
|
198
|
+
196, 0x7bd18493aca60e51
|
|
199
|
+
197, 0x5380c23b0cbbf15e
|
|
200
|
+
198, 0x920b72835f88246b
|
|
201
|
+
199, 0x24d7f734a4548b8e
|
|
202
|
+
200, 0x9944edb57e5aa145
|
|
203
|
+
201, 0x4628e136ebb8afe1
|
|
204
|
+
202, 0xb4ee6a776356e2a7
|
|
205
|
+
203, 0x481cbe9744ccf7d7
|
|
206
|
+
204, 0x7e8d67e8b0b995d9
|
|
207
|
+
205, 0xeeacde100af7b47e
|
|
208
|
+
206, 0x103da08f2487dab7
|
|
209
|
+
207, 0x6b9890a91d831459
|
|
210
|
+
208, 0xd0c5beae37b572c7
|
|
211
|
+
209, 0xfdccc371ee73fcc
|
|
212
|
+
210, 0x65438f0a367a2003
|
|
213
|
+
211, 0x5d23b2c818a7e943
|
|
214
|
+
212, 0x9a8ed45ac04b58b3
|
|
215
|
+
213, 0xdaf3c3f1695dce10
|
|
216
|
+
214, 0x5960eec706fa2bc0
|
|
217
|
+
215, 0x98ca652facb80d40
|
|
218
|
+
216, 0x72970ae5e2194143
|
|
219
|
+
217, 0x18c6374d878c5c94
|
|
220
|
+
218, 0x20fa51f997381900
|
|
221
|
+
219, 0x3af253dba26d6e1d
|
|
222
|
+
220, 0x1b23d65db15c7f78
|
|
223
|
+
221, 0x9f53ae976259b0e3
|
|
224
|
+
222, 0x9a6addb28dc92d49
|
|
225
|
+
223, 0x1e085c4accd0a7d7
|
|
226
|
+
224, 0xe9d3f4cc9bad6ce5
|
|
227
|
+
225, 0xe018fad78b5b1059
|
|
228
|
+
226, 0x5ef7682232b4b95
|
|
229
|
+
227, 0xb2242aa649f5de80
|
|
230
|
+
228, 0x8f3e6d8dd99b9e4e
|
|
231
|
+
229, 0xb9be6cc22949d62a
|
|
232
|
+
230, 0xecbdc7beaa5ff1fe
|
|
233
|
+
231, 0xd388db43a855bdf0
|
|
234
|
+
232, 0xd71ee3238852568d
|
|
235
|
+
233, 0x85ab3056304c04b5
|
|
236
|
+
234, 0x2ed7ae7ad3cfc3cb
|
|
237
|
+
235, 0x781d1b03d40b6c48
|
|
238
|
+
236, 0x7d3c740886657e6d
|
|
239
|
+
237, 0x982cfa6828daa6b0
|
|
240
|
+
238, 0x278579599c529464
|
|
241
|
+
239, 0x773adecfae9f0e08
|
|
242
|
+
240, 0x63a243ea4b85c5d7
|
|
243
|
+
241, 0x59940074fc3709e1
|
|
244
|
+
242, 0xc914a2eed58a6363
|
|
245
|
+
243, 0x2602b04274dd724c
|
|
246
|
+
244, 0xdf636eb7636c2c42
|
|
247
|
+
245, 0x891a334d0d26c547
|
|
248
|
+
246, 0xde8cd586d499e22d
|
|
249
|
+
247, 0x3ea1aa4d9b7035b6
|
|
250
|
+
248, 0xd085cff6f9501523
|
|
251
|
+
249, 0xe82a872f374959e
|
|
252
|
+
250, 0x55cb495bbd42cc53
|
|
253
|
+
251, 0x5f42b3226e56ca97
|
|
254
|
+
252, 0xea463f6f203493a3
|
|
255
|
+
253, 0xeef3718e57731737
|
|
256
|
+
254, 0x1bd4f9d62b7f9f3c
|
|
257
|
+
255, 0x19284f5e74817511
|
|
258
|
+
256, 0xaf6e842c7450ca87
|
|
259
|
+
257, 0x1d27d2b08a6b3600
|
|
260
|
+
258, 0xfb4b912b396a52e3
|
|
261
|
+
259, 0x30804d4c5c710121
|
|
262
|
+
260, 0x4907e82564e36338
|
|
263
|
+
261, 0x6441cf3b2900ddb7
|
|
264
|
+
262, 0xd76de6f51988dc66
|
|
265
|
+
263, 0x4f298ef96fd5e6d2
|
|
266
|
+
264, 0x65432960c009f83d
|
|
267
|
+
265, 0x65ebed07e1d2e3df
|
|
268
|
+
266, 0xf83ee8078febca20
|
|
269
|
+
267, 0x7bb18e9d74fc5b29
|
|
270
|
+
268, 0x597b5fbc2261d91
|
|
271
|
+
269, 0xea4f8ed0732b15b2
|
|
272
|
+
270, 0xba2267f74f458268
|
|
273
|
+
271, 0x3f304acabd746bbb
|
|
274
|
+
272, 0x7bd187af85659a82
|
|
275
|
+
273, 0x88e20dbdb7a08ea3
|
|
276
|
+
274, 0x2a2dc948c772fcb4
|
|
277
|
+
275, 0x87784fec2993c867
|
|
278
|
+
276, 0x89163933cd362d4e
|
|
279
|
+
277, 0xfd7b24f04302f957
|
|
280
|
+
278, 0x9bdd544405dfb153
|
|
281
|
+
279, 0xddee0fac58ffc611
|
|
282
|
+
280, 0xa8e8993417e71ec1
|
|
283
|
+
281, 0x55e0ab46ff7757af
|
|
284
|
+
282, 0x53e7645f08d3d7df
|
|
285
|
+
283, 0xbf78e563bc656ba2
|
|
286
|
+
284, 0x1d162253b45ee2de
|
|
287
|
+
285, 0x15e2bfefedf29eb4
|
|
288
|
+
286, 0x4e2a4584aa394702
|
|
289
|
+
287, 0xa89fb12b01525897
|
|
290
|
+
288, 0x825bd98f0544e4df
|
|
291
|
+
289, 0xfc6c50da6750700
|
|
292
|
+
290, 0xc24aaabde7d28423
|
|
293
|
+
291, 0x79d6f4660fcb19e5
|
|
294
|
+
292, 0xee7d4fb40c8d659f
|
|
295
|
+
293, 0x70bc281b462e811d
|
|
296
|
+
294, 0x23ed4dc9636519a7
|
|
297
|
+
295, 0xcb7c3f5a5711b935
|
|
298
|
+
296, 0xe73090e0508c5d9d
|
|
299
|
+
297, 0xb25a331f375952a6
|
|
300
|
+
298, 0xa64c86e0c04740f6
|
|
301
|
+
299, 0xb8f3ffc8d56ac124
|
|
302
|
+
300, 0x2479266fc5ee6b15
|
|
303
|
+
301, 0x8d5792d27f5ffbcb
|
|
304
|
+
302, 0xb064298be946cd52
|
|
305
|
+
303, 0xf0934a98912ffe26
|
|
306
|
+
304, 0xbe805682c6634d98
|
|
307
|
+
305, 0xe0e6e2c010012b4f
|
|
308
|
+
306, 0x58c47d475f75976
|
|
309
|
+
307, 0x358c9a6e646b2b4a
|
|
310
|
+
308, 0x7e7c4ffca5b17ba7
|
|
311
|
+
309, 0x43585c8c9a24a04c
|
|
312
|
+
310, 0x5154ddbcd68d5c2c
|
|
313
|
+
311, 0x4a2b062d3742a5e
|
|
314
|
+
312, 0xca5691191da2b946
|
|
315
|
+
313, 0x696a542109457466
|
|
316
|
+
314, 0x9eb5d658a5022ba5
|
|
317
|
+
315, 0x8158cf6b599ab8dc
|
|
318
|
+
316, 0x1b95391eaa4af4a6
|
|
319
|
+
317, 0x9953e79bd0fc3107
|
|
320
|
+
318, 0x8639690086748123
|
|
321
|
+
319, 0x2d35781c287c6842
|
|
322
|
+
320, 0x393ef0001cd7bc8f
|
|
323
|
+
321, 0xe3a61be8c5f2c22a
|
|
324
|
+
322, 0x5e4ff21b847cc29b
|
|
325
|
+
323, 0x4c9c9389a370eb84
|
|
326
|
+
324, 0xd43a25a8fc3635fa
|
|
327
|
+
325, 0xf6790e4a85385508
|
|
328
|
+
326, 0x37edf0c81cb95e1d
|
|
329
|
+
327, 0x52db00d6e6e79af8
|
|
330
|
+
328, 0x3b202bceeb7f096
|
|
331
|
+
329, 0x2a164a1c776136bb
|
|
332
|
+
330, 0x73e03ee3fd80fd1b
|
|
333
|
+
331, 0xd2c58c0746b8d858
|
|
334
|
+
332, 0x2ed2cb0038153d22
|
|
335
|
+
333, 0x98996d0fc8ceeacc
|
|
336
|
+
334, 0xa4ed0589936b37f
|
|
337
|
+
335, 0x5f61cf41a6d2c172
|
|
338
|
+
336, 0xa6d4afb538c110d7
|
|
339
|
+
337, 0xe85834541baadf1a
|
|
340
|
+
338, 0x4c8967107fd49212
|
|
341
|
+
339, 0x49bafb762ab1a8c1
|
|
342
|
+
340, 0x45d540e2a834bf17
|
|
343
|
+
341, 0x1c0ec8b4ed671dac
|
|
344
|
+
342, 0x3d503ce2c83fe883
|
|
345
|
+
343, 0x437bfffd95f42022
|
|
346
|
+
344, 0xc82d1e3d5c2bc8d2
|
|
347
|
+
345, 0x7a0a9cbfcb0d3f24
|
|
348
|
+
346, 0xc0a4f00251b7a3be
|
|
349
|
+
347, 0xb5be24e74bb6a1c6
|
|
350
|
+
348, 0xa3104b94b57545b1
|
|
351
|
+
349, 0x86de7d0c4b97b361
|
|
352
|
+
350, 0x879c1483f26538a6
|
|
353
|
+
351, 0xd74c87557f6accfb
|
|
354
|
+
352, 0x2f9be40dbf0fe8a1
|
|
355
|
+
353, 0x445a93398f608d89
|
|
356
|
+
354, 0x7b3cb8a7211d7fdc
|
|
357
|
+
355, 0xe86cc51290d031e7
|
|
358
|
+
356, 0x33ef3594052ad79f
|
|
359
|
+
357, 0xc61911d241dbb590
|
|
360
|
+
358, 0x37cccb0c0e3de461
|
|
361
|
+
359, 0xb75259124080b48b
|
|
362
|
+
360, 0xd81e8961beb4abe5
|
|
363
|
+
361, 0xf4542deb84a754e
|
|
364
|
+
362, 0x6ea036d00385f02e
|
|
365
|
+
363, 0xa7b60b0ac3b88681
|
|
366
|
+
364, 0x108a6c36ca30baf5
|
|
367
|
+
365, 0x4a2adc5bbfe2bf07
|
|
368
|
+
366, 0x4079501f892a5342
|
|
369
|
+
367, 0x55e113963c5448f0
|
|
370
|
+
368, 0x8019ff4903b37242
|
|
371
|
+
369, 0x109c6dcdb7ec6618
|
|
372
|
+
370, 0x1239ac50944da450
|
|
373
|
+
371, 0xe1399c7f94c651c1
|
|
374
|
+
372, 0x5a6bbbae388d365a
|
|
375
|
+
373, 0x4d72be57b8810929
|
|
376
|
+
374, 0x3f067df24384e1fb
|
|
377
|
+
375, 0x4f8b9e0f7f6c7be
|
|
378
|
+
376, 0x202492c342a3b08
|
|
379
|
+
377, 0x250753192af93a3
|
|
380
|
+
378, 0xfba1159d9de2cb8e
|
|
381
|
+
379, 0xba964497ab05505c
|
|
382
|
+
380, 0x1329ec5d8a709dca
|
|
383
|
+
381, 0x32927cacb6cd22bb
|
|
384
|
+
382, 0x6b4d7db904187d56
|
|
385
|
+
383, 0xe76adccf8e841e02
|
|
386
|
+
384, 0x8c4bf4b6a788202
|
|
387
|
+
385, 0x3013a3b409831651
|
|
388
|
+
386, 0x7427d125c475412f
|
|
389
|
+
387, 0x84dcc4bb2bf43202
|
|
390
|
+
388, 0x117526f1101372a5
|
|
391
|
+
389, 0xfe95d64b8984bd72
|
|
392
|
+
390, 0x524e129934cc55c1
|
|
393
|
+
391, 0xc3db4b0418c36d30
|
|
394
|
+
392, 0xe1cb2047e9c19f7a
|
|
395
|
+
393, 0xea43d6c8d8982795
|
|
396
|
+
394, 0xe80ac8a37df89ed
|
|
397
|
+
395, 0xfecc2104329ed306
|
|
398
|
+
396, 0xa5c38aac9c1d51ea
|
|
399
|
+
397, 0x3abe5d1c01e4fe17
|
|
400
|
+
398, 0x717a805d97fcc7ac
|
|
401
|
+
399, 0x94441f8207a1fb78
|
|
402
|
+
400, 0x22d7869c5f002607
|
|
403
|
+
401, 0x349e899f28c3a1b9
|
|
404
|
+
402, 0x5639950cdea92b75
|
|
405
|
+
403, 0x7e08450497c375b
|
|
406
|
+
404, 0x94bf898b475d211d
|
|
407
|
+
405, 0x75c761a402375104
|
|
408
|
+
406, 0x1930920ec9d2a1e7
|
|
409
|
+
407, 0xb774ba1bc6f6e4e2
|
|
410
|
+
408, 0xf715602412e5d900
|
|
411
|
+
409, 0x87bb995f4a13f0ba
|
|
412
|
+
410, 0xa3c787868dfa9c8d
|
|
413
|
+
411, 0xa17fd42a5a4f0987
|
|
414
|
+
412, 0x4a9f7d435242b86
|
|
415
|
+
413, 0x240364aff88f8aef
|
|
416
|
+
414, 0xe7cd4cf4bf39f144
|
|
417
|
+
415, 0xd030f313ca4c2692
|
|
418
|
+
416, 0xc46696f4e03ec1e9
|
|
419
|
+
417, 0x22c60f1ec21060b3
|
|
420
|
+
418, 0x16c88058fd68986f
|
|
421
|
+
419, 0x69ca448e8e6bde3f
|
|
422
|
+
420, 0x3466c2cdec218abd
|
|
423
|
+
421, 0x837ac4d05e6b117d
|
|
424
|
+
422, 0x911210e154690191
|
|
425
|
+
423, 0x9ece851d6fa358b7
|
|
426
|
+
424, 0x42f79cb0c45e7897
|
|
427
|
+
425, 0xbf7583babd7c499b
|
|
428
|
+
426, 0x2059fe8031c6e0b9
|
|
429
|
+
427, 0xabbec8fc00f7e51d
|
|
430
|
+
428, 0x88809d86a3a256e1
|
|
431
|
+
429, 0xd36056df829fdcb5
|
|
432
|
+
430, 0x515632b6cb914c64
|
|
433
|
+
431, 0xba76d06c2558874
|
|
434
|
+
432, 0x632c54ca4214d253
|
|
435
|
+
433, 0xadec487adf2cb215
|
|
436
|
+
434, 0x521e663e1940513d
|
|
437
|
+
435, 0xb1b638b548806694
|
|
438
|
+
436, 0xbe2d5bfbe57d2c72
|
|
439
|
+
437, 0x8b89e7719db02f7
|
|
440
|
+
438, 0x90ba5281c1d56e63
|
|
441
|
+
439, 0x899e1b92fceea102
|
|
442
|
+
440, 0xf90d918e15182fa6
|
|
443
|
+
441, 0x94a489ce96c948c4
|
|
444
|
+
442, 0xad34db453517fcd4
|
|
445
|
+
443, 0xc5264eb2de15930f
|
|
446
|
+
444, 0x101b4e6603a21cee
|
|
447
|
+
445, 0xef9b6258d6e85fff
|
|
448
|
+
446, 0x6075c7d6c048bd7a
|
|
449
|
+
447, 0x6f03232c64e438aa
|
|
450
|
+
448, 0x18c983d7105ee469
|
|
451
|
+
449, 0x3ffc23f5c1375879
|
|
452
|
+
450, 0xbc1b4a00afb1f9f
|
|
453
|
+
451, 0x5afa6b2bb8c6b46e
|
|
454
|
+
452, 0xe7fce4af2f2c152a
|
|
455
|
+
453, 0x5b00ab5c4b3982c7
|
|
456
|
+
454, 0x2d4b0c9c0eb4bd0c
|
|
457
|
+
455, 0x61d926270642f1f2
|
|
458
|
+
456, 0x7219c485c23a2377
|
|
459
|
+
457, 0x7e471c752fecd895
|
|
460
|
+
458, 0x23c4d30a4d17ba1f
|
|
461
|
+
459, 0x65cb277fe565ca22
|
|
462
|
+
460, 0xcbb56ed9c701363b
|
|
463
|
+
461, 0xfd04ab3a6eba8282
|
|
464
|
+
462, 0x19c9e5c8bab38500
|
|
465
|
+
463, 0xea4c15227676b65b
|
|
466
|
+
464, 0x20f3412606c8da6f
|
|
467
|
+
465, 0xb06782d3bf61a239
|
|
468
|
+
466, 0xf96e02d5276a9a31
|
|
469
|
+
467, 0x835d256b42aa52a6
|
|
470
|
+
468, 0x25b09151747f39c1
|
|
471
|
+
469, 0x64507386e1103eda
|
|
472
|
+
470, 0x51cbc05716ef88e4
|
|
473
|
+
471, 0x998cd9b7989e81cc
|
|
474
|
+
472, 0x9d7115416bec28d1
|
|
475
|
+
473, 0xc992ca39de97906b
|
|
476
|
+
474, 0xd571e6f7ca598214
|
|
477
|
+
475, 0xafc7fb6ccd9abbf8
|
|
478
|
+
476, 0x88ef456febff7bf4
|
|
479
|
+
477, 0xdbe87ccc55b157d2
|
|
480
|
+
478, 0xaab95e405f8a4f6d
|
|
481
|
+
479, 0xad586a385e74af4f
|
|
482
|
+
480, 0x23cd15225c8485aa
|
|
483
|
+
481, 0x370940bf47900ac7
|
|
484
|
+
482, 0xefd6afda1a4b0ead
|
|
485
|
+
483, 0x9cb1a4c90993dd7a
|
|
486
|
+
484, 0xff7893e8b2f70b11
|
|
487
|
+
485, 0xb09e1807c0638e8e
|
|
488
|
+
486, 0xb10915dcb4978f74
|
|
489
|
+
487, 0x88212ab0051a85eb
|
|
490
|
+
488, 0x7af41b76e1ec793f
|
|
491
|
+
489, 0x2e5c486406d3fefd
|
|
492
|
+
490, 0xebe54eff67f513cc
|
|
493
|
+
491, 0xab6c90d0876a79b8
|
|
494
|
+
492, 0x224df82f93fe9089
|
|
495
|
+
493, 0xc51c1ce053dc9cd2
|
|
496
|
+
494, 0x5ef35a4d8a633ee7
|
|
497
|
+
495, 0x4aca033459c2585f
|
|
498
|
+
496, 0xd066932c6eefb23d
|
|
499
|
+
497, 0x5309768aab9a7591
|
|
500
|
+
498, 0xa2a3e33823df37f9
|
|
501
|
+
499, 0xcec77ff6a359ee9
|
|
502
|
+
500, 0x784dc62d999d3483
|
|
503
|
+
501, 0x84e789fb8acc985d
|
|
504
|
+
502, 0xd590237e86aa60f
|
|
505
|
+
503, 0x737e2ffe1c8ad600
|
|
506
|
+
504, 0xc019c3a39a99eab8
|
|
507
|
+
505, 0x6a39e9836964c516
|
|
508
|
+
506, 0xe0fe43129535d9da
|
|
509
|
+
507, 0xdfc5f603d639d4de
|
|
510
|
+
508, 0x7b9a7d048a9c03b6
|
|
511
|
+
509, 0xbb5aa520faa27fdd
|
|
512
|
+
510, 0x2a09b4200f398fa2
|
|
513
|
+
511, 0x38cc88107904064e
|
|
514
|
+
512, 0xa9a90d0b2d92bb25
|
|
515
|
+
513, 0x9419762f87e987e3
|
|
516
|
+
514, 0x1a52c525153dedcd
|
|
517
|
+
515, 0xc26d9973dd65ae99
|
|
518
|
+
516, 0x8e89bd9d0dc6e6a1
|
|
519
|
+
517, 0x2f30868dc01bfb53
|
|
520
|
+
518, 0x20f09d99b46501c4
|
|
521
|
+
519, 0x78b468a563b8f1e9
|
|
522
|
+
520, 0xcccf34b0b6c380c7
|
|
523
|
+
521, 0xf554e7dc815297e6
|
|
524
|
+
522, 0x332a585cfb4a50ef
|
|
525
|
+
523, 0xa9fb64a2b6da41d7
|
|
526
|
+
524, 0xdcd2a5a337391ce0
|
|
527
|
+
525, 0x8a9bd3e324c6463d
|
|
528
|
+
526, 0x9f4487d725503bdd
|
|
529
|
+
527, 0xf72282d82f1d0ff
|
|
530
|
+
528, 0x308f4160abb72d42
|
|
531
|
+
529, 0x648de1db3a601b08
|
|
532
|
+
530, 0x36cab5192e7ebd39
|
|
533
|
+
531, 0x7975fbe4ab6a1c66
|
|
534
|
+
532, 0xd515b4d72243864e
|
|
535
|
+
533, 0x43a568f8b915e895
|
|
536
|
+
534, 0x15fa9f2057bdb91d
|
|
537
|
+
535, 0x7a43858ef7a222dc
|
|
538
|
+
536, 0x17b4a9175ac074fe
|
|
539
|
+
537, 0xa932c833b8d0f8f8
|
|
540
|
+
538, 0x1d2db93a9a587678
|
|
541
|
+
539, 0x98abd1d146124d27
|
|
542
|
+
540, 0xf0ab0431671740aa
|
|
543
|
+
541, 0xa9d182467540ad33
|
|
544
|
+
542, 0x41c8a6cfc331b7fc
|
|
545
|
+
543, 0xa52c6bd0fcd1d228
|
|
546
|
+
544, 0x2773c29a34dc6fa3
|
|
547
|
+
545, 0x3098230746fc1f37
|
|
548
|
+
546, 0xd63311bb4f23fabe
|
|
549
|
+
547, 0x6712bf530cd2faec
|
|
550
|
+
548, 0x342e8f342e42c4dd
|
|
551
|
+
549, 0xfbd83331851cdcad
|
|
552
|
+
550, 0xe903be1361bbc34d
|
|
553
|
+
551, 0xd94372e5077e3ef9
|
|
554
|
+
552, 0x95aaa234f194bd8
|
|
555
|
+
553, 0x20c0c8fb11e27538
|
|
556
|
+
554, 0xfaf47dc90462b30b
|
|
557
|
+
555, 0x8ddc6d144147682a
|
|
558
|
+
556, 0xf626833fd926af55
|
|
559
|
+
557, 0x5df93c34290d1793
|
|
560
|
+
558, 0xb06a903e6e9fca5e
|
|
561
|
+
559, 0x10c792dc851d77ca
|
|
562
|
+
560, 0xd9b1b817b18e56cb
|
|
563
|
+
561, 0x3a81730c408eb408
|
|
564
|
+
562, 0x65052c04a8d4b63c
|
|
565
|
+
563, 0x3328546598e33742
|
|
566
|
+
564, 0xeca44a13f62d156d
|
|
567
|
+
565, 0x69f83d1d86b20170
|
|
568
|
+
566, 0x937764200412027d
|
|
569
|
+
567, 0xc57eb1b58df0f191
|
|
570
|
+
568, 0xa1c7d67dce81bc41
|
|
571
|
+
569, 0x8e709c59a6a579ce
|
|
572
|
+
570, 0x776a2f5155d46c70
|
|
573
|
+
571, 0xd92906fbbc373aa5
|
|
574
|
+
572, 0xe97ad478a2a98bf6
|
|
575
|
+
573, 0xc296c8819ac815f
|
|
576
|
+
574, 0x613ede67ba70e93e
|
|
577
|
+
575, 0xe145222498f99cde
|
|
578
|
+
576, 0xafcdfa7a3c1cf9bf
|
|
579
|
+
577, 0x1c89252176db670d
|
|
580
|
+
578, 0xad245eda5c0865ff
|
|
581
|
+
579, 0x249463d3053eb917
|
|
582
|
+
580, 0xc9be16d337517c0b
|
|
583
|
+
581, 0xefcc82bf67b8f731
|
|
584
|
+
582, 0x1e01577d029e0d00
|
|
585
|
+
583, 0xad9c24b2a4f3d418
|
|
586
|
+
584, 0xed2cceb510db4d0f
|
|
587
|
+
585, 0xbddadcdb92400c70
|
|
588
|
+
586, 0x67d6b0476ef82186
|
|
589
|
+
587, 0xbc7662ff7bf19f73
|
|
590
|
+
588, 0x9d94452a729e6e92
|
|
591
|
+
589, 0x6b278d8594f55428
|
|
592
|
+
590, 0x6c4b31cceb1b2109
|
|
593
|
+
591, 0xccc6c3a726701e9
|
|
594
|
+
592, 0x6bc28ece07df8925
|
|
595
|
+
593, 0xc0422b7bf150ccc4
|
|
596
|
+
594, 0xab7158f044e73479
|
|
597
|
+
595, 0xdf3347546d9ed83f
|
|
598
|
+
596, 0x3b3235a02c70dff4
|
|
599
|
+
597, 0x2551c49c14ea8d77
|
|
600
|
+
598, 0xee2f7f5bb3cc228e
|
|
601
|
+
599, 0x39b87bfe8c882d39
|
|
602
|
+
600, 0x7dd420fad380b51c
|
|
603
|
+
601, 0xffe64976af093f96
|
|
604
|
+
602, 0x4a4f48dc6e7eaa5f
|
|
605
|
+
603, 0x85f2514d32fdc8cc
|
|
606
|
+
604, 0x1ab1215fd7f94801
|
|
607
|
+
605, 0x4cd1200fc795b774
|
|
608
|
+
606, 0xcf8af463a38942ee
|
|
609
|
+
607, 0x319caa7ce3022721
|
|
610
|
+
608, 0x8cd9798a76d1aea4
|
|
611
|
+
609, 0x2bd3933ac7afd34e
|
|
612
|
+
610, 0x85d4c323403cf811
|
|
613
|
+
611, 0xd7b956d3064efa30
|
|
614
|
+
612, 0x67a078dbf1f13068
|
|
615
|
+
613, 0x665fa6c83e87c290
|
|
616
|
+
614, 0x9333ac2416d2469b
|
|
617
|
+
615, 0xdfb1fd21a0094977
|
|
618
|
+
616, 0xa1962a6e2c25f8ff
|
|
619
|
+
617, 0x1f3b10a7ed5287cf
|
|
620
|
+
618, 0x70641efb3d362713
|
|
621
|
+
619, 0xe527a2cf85d00918
|
|
622
|
+
620, 0x9741e45d3f9890a3
|
|
623
|
+
621, 0x6cb74b5d4d36db4b
|
|
624
|
+
622, 0xf24734d622bd2209
|
|
625
|
+
623, 0xadd6d94f78e9d378
|
|
626
|
+
624, 0xc3bbdb59225cca7f
|
|
627
|
+
625, 0x5ad36614275b30cd
|
|
628
|
+
626, 0x495568dd74eea434
|
|
629
|
+
627, 0xf35de47e0ffe1f2d
|
|
630
|
+
628, 0xefa209dca719ab18
|
|
631
|
+
629, 0x844ddcaeb5b99ae8
|
|
632
|
+
630, 0x37449670a1dc7b19
|
|
633
|
+
631, 0x5a4612c166f845c1
|
|
634
|
+
632, 0xe70f7782f2087947
|
|
635
|
+
633, 0x98d484deac365721
|
|
636
|
+
634, 0x705302198cf52457
|
|
637
|
+
635, 0x7135ae0f5b77df41
|
|
638
|
+
636, 0x342ac6e44a9b6fc3
|
|
639
|
+
637, 0x2713fd2a59af5826
|
|
640
|
+
638, 0x6e1a3f90f84efa75
|
|
641
|
+
639, 0x9fb3b4dd446ca040
|
|
642
|
+
640, 0x530044ae91e6bd49
|
|
643
|
+
641, 0xe984c4183974dc3e
|
|
644
|
+
642, 0x40c1fa961997d066
|
|
645
|
+
643, 0xb7868250d8c21559
|
|
646
|
+
644, 0x8bc929fa085fd1de
|
|
647
|
+
645, 0x7bdb63288dc8733e
|
|
648
|
+
646, 0xac4faad24326a468
|
|
649
|
+
647, 0x1c6e799833aea0b1
|
|
650
|
+
648, 0xcc8a749e94f20f36
|
|
651
|
+
649, 0x4e7abfd0443547c5
|
|
652
|
+
650, 0xb661c73bb8caa358
|
|
653
|
+
651, 0x4a800f5728ff2351
|
|
654
|
+
652, 0x8c15e15189b9f7ed
|
|
655
|
+
653, 0xab367846b811362c
|
|
656
|
+
654, 0x4ba7508f0851ca2a
|
|
657
|
+
655, 0xe9af891acbafc356
|
|
658
|
+
656, 0xbdebe183989601f8
|
|
659
|
+
657, 0x4c665ea496afc061
|
|
660
|
+
658, 0x3ca1d14a5f2ed7c
|
|
661
|
+
659, 0xfbdff10a1027dd21
|
|
662
|
+
660, 0xdfd28f77c8cff968
|
|
663
|
+
661, 0xc4fbaadf8a3e9c77
|
|
664
|
+
662, 0xdac7e448b218c589
|
|
665
|
+
663, 0xb26390b5befd19e2
|
|
666
|
+
664, 0xd2ef14916c66dba9
|
|
667
|
+
665, 0xfab600284b0ff86b
|
|
668
|
+
666, 0xf04a1c229b58dabb
|
|
669
|
+
667, 0xc21c45637e452476
|
|
670
|
+
668, 0xd1435966f75e0791
|
|
671
|
+
669, 0xc1f28522eda4a2d0
|
|
672
|
+
670, 0x52332ae8f1222185
|
|
673
|
+
671, 0x81c6c0790c0bf47e
|
|
674
|
+
672, 0xfebd215e7d8ffb86
|
|
675
|
+
673, 0x68c5dce55dbe962b
|
|
676
|
+
674, 0x231d09cb0d2531d1
|
|
677
|
+
675, 0x3218fba199dbbc6b
|
|
678
|
+
676, 0x8f23c535f8ea0bf6
|
|
679
|
+
677, 0x6c228963e1df8bd9
|
|
680
|
+
678, 0x9843c7722ed153e3
|
|
681
|
+
679, 0xd032d99e419bddec
|
|
682
|
+
680, 0xe2dca88aa7814cab
|
|
683
|
+
681, 0x4d53fb8c6a59cdc2
|
|
684
|
+
682, 0x8fb3abc46157b68b
|
|
685
|
+
683, 0xa3e733087e09b8e
|
|
686
|
+
684, 0x6bdc1aee029d6b96
|
|
687
|
+
685, 0x4089667a8906d65b
|
|
688
|
+
686, 0x8f3026a52d39dd03
|
|
689
|
+
687, 0x6d2e0ccb567bae84
|
|
690
|
+
688, 0x74bad450199e464
|
|
691
|
+
689, 0xf114fb68a8f300d5
|
|
692
|
+
690, 0xc7a5cc7b374c7d10
|
|
693
|
+
691, 0xf0e93da639b279d1
|
|
694
|
+
692, 0xb9943841ad493166
|
|
695
|
+
693, 0x77a69290455a3664
|
|
696
|
+
694, 0x41530da2ebea054b
|
|
697
|
+
695, 0xe8f9fab03ea24abf
|
|
698
|
+
696, 0xaa931f0c9f55a57a
|
|
699
|
+
697, 0xb4d68a75d56f97ae
|
|
700
|
+
698, 0x3d58ff898b6ba297
|
|
701
|
+
699, 0x49d81e08faf5a3f5
|
|
702
|
+
700, 0xfc5207b9f3697f3b
|
|
703
|
+
701, 0xa25911abb3cf19b7
|
|
704
|
+
702, 0x6b8908eb67c3a41
|
|
705
|
+
703, 0xd63ef402e2e3fa33
|
|
706
|
+
704, 0x728e75d3f33b14c5
|
|
707
|
+
705, 0x248cb1b8bc6f379a
|
|
708
|
+
706, 0x3aa3d6d2b8c72996
|
|
709
|
+
707, 0x49cc50bd2d3d2860
|
|
710
|
+
708, 0xb4e1387647c72075
|
|
711
|
+
709, 0x435a1630a4a81ed3
|
|
712
|
+
710, 0xa5ea13005d2460cf
|
|
713
|
+
711, 0xc7a613df37d159ec
|
|
714
|
+
712, 0x95721ccc218b857e
|
|
715
|
+
713, 0xd4b70d8c86b124d3
|
|
716
|
+
714, 0x2b82bcc4b612d494
|
|
717
|
+
715, 0xaf13062885276050
|
|
718
|
+
716, 0xcbd8fcf571a33d9c
|
|
719
|
+
717, 0x3f7f67ca1125fc15
|
|
720
|
+
718, 0xddf4bb45aac81b4c
|
|
721
|
+
719, 0x23606da62de9c040
|
|
722
|
+
720, 0xa3a172375666b636
|
|
723
|
+
721, 0x292f87387a6c6c3c
|
|
724
|
+
722, 0xd1d10d00c5496fe1
|
|
725
|
+
723, 0x86b0411ce8a25550
|
|
726
|
+
724, 0x38e0487872e33976
|
|
727
|
+
725, 0x363e49f88ddfd42c
|
|
728
|
+
726, 0x45bdf1e9f6b66b0a
|
|
729
|
+
727, 0x8a6fff3de394f9b5
|
|
730
|
+
728, 0x8502158bb03f6209
|
|
731
|
+
729, 0x22e24d16dba42907
|
|
732
|
+
730, 0x3fe3ba427cc2b779
|
|
733
|
+
731, 0x77144793f66b3d7e
|
|
734
|
+
732, 0xcf8912ccb29b8af9
|
|
735
|
+
733, 0xdc856caff2abd670
|
|
736
|
+
734, 0xe6d3ae0b0d9d4c8b
|
|
737
|
+
735, 0xb8f5d40e454c539f
|
|
738
|
+
736, 0x79ca953114fbc6b7
|
|
739
|
+
737, 0x478d6f4bbfa38837
|
|
740
|
+
738, 0x9babae1a3ffdc340
|
|
741
|
+
739, 0x40edd56802bae613
|
|
742
|
+
740, 0x97a56c2dcccf0641
|
|
743
|
+
741, 0xafc250257f027f8e
|
|
744
|
+
742, 0x8da41ef1edf69125
|
|
745
|
+
743, 0x6574b0280ff9d309
|
|
746
|
+
744, 0x197c776151b8f820
|
|
747
|
+
745, 0x6b03e077c9dac3b6
|
|
748
|
+
746, 0x24a40ebbc5c341c5
|
|
749
|
+
747, 0x50e585169a6a1c4b
|
|
750
|
+
748, 0x37783a5a6a3e4e02
|
|
751
|
+
749, 0xb3de81ee6fbad647
|
|
752
|
+
750, 0xf4f292f57ca4591e
|
|
753
|
+
751, 0x6214e9e7d44d30a
|
|
754
|
+
752, 0x5920190c56d21c12
|
|
755
|
+
753, 0x9ac163419b5e0c9b
|
|
756
|
+
754, 0xfc2328761ae8ed93
|
|
757
|
+
755, 0xc68f945b545508c6
|
|
758
|
+
756, 0x687c49a17ce0a5e2
|
|
759
|
+
757, 0x276d8f53d30d4ab4
|
|
760
|
+
758, 0x8201804970343ce1
|
|
761
|
+
759, 0x1b5d323cc2e7fb7e
|
|
762
|
+
760, 0x6f351ef04fd904b
|
|
763
|
+
761, 0x6c793a7d455d5198
|
|
764
|
+
762, 0x46f5d108430ae91f
|
|
765
|
+
763, 0xac16a15b2a0cf77f
|
|
766
|
+
764, 0xa0d479d9e4122b9d
|
|
767
|
+
765, 0x3afd94604307f19
|
|
768
|
+
766, 0x2573ed6d39d38dbf
|
|
769
|
+
767, 0xa58e14ba60b4294b
|
|
770
|
+
768, 0xe69c1aed5840d156
|
|
771
|
+
769, 0x4cf6fda7f04855c2
|
|
772
|
+
770, 0x2fb65a56ef5f22da
|
|
773
|
+
771, 0xf95819434d5dc220
|
|
774
|
+
772, 0x29c65133623dafba
|
|
775
|
+
773, 0x8e997bd018467523
|
|
776
|
+
774, 0xfd08ba9d498461a7
|
|
777
|
+
775, 0xdd52243bc78a5592
|
|
778
|
+
776, 0x39c30108f6db88b3
|
|
779
|
+
777, 0x38af8e1894f259b9
|
|
780
|
+
778, 0x97eedf3b4ae5f6de
|
|
781
|
+
779, 0x757825add80c5ece
|
|
782
|
+
780, 0xf0fdd90ac14edb14
|
|
783
|
+
781, 0xbbb19d4cc8cac6d4
|
|
784
|
+
782, 0x9a82234edfae05e3
|
|
785
|
+
783, 0x704401c61d1edf1c
|
|
786
|
+
784, 0x8b0eb481fb3a1fb2
|
|
787
|
+
785, 0xef6f36e7cc06c002
|
|
788
|
+
786, 0x7a208b17e04b8cd7
|
|
789
|
+
787, 0xf20e33d498838fe9
|
|
790
|
+
788, 0xc2bdb22117058326
|
|
791
|
+
789, 0x6ec31939eb4ca543
|
|
792
|
+
790, 0x6f1654838f507a21
|
|
793
|
+
791, 0xc65ab81a955d2b93
|
|
794
|
+
792, 0x40b1420fdd9531b8
|
|
795
|
+
793, 0xe31f221cab9f4f40
|
|
796
|
+
794, 0x798cdd414c1deb7a
|
|
797
|
+
795, 0x9c84e9c7d41cd983
|
|
798
|
+
796, 0x63d6b1ae3b60b7fa
|
|
799
|
+
797, 0xb42bfdd1a2f78ffa
|
|
800
|
+
798, 0x37e431eaccaaa8e9
|
|
801
|
+
799, 0x7508142a0f73eac9
|
|
802
|
+
800, 0x91662a023df5893a
|
|
803
|
+
801, 0x59782070e2fe3031
|
|
804
|
+
802, 0xb2acd589a8ce7961
|
|
805
|
+
803, 0xa224743fa877b292
|
|
806
|
+
804, 0xaa5362aa27e6ed9e
|
|
807
|
+
805, 0xa394a4e520c0c1c7
|
|
808
|
+
806, 0xe49b16d2018ffb6f
|
|
809
|
+
807, 0xb8074b9f2f1e762b
|
|
810
|
+
808, 0xcf5f86143d5c23a7
|
|
811
|
+
809, 0xfd838785db987087
|
|
812
|
+
810, 0x31b1889df389aff8
|
|
813
|
+
811, 0x30aaca876a4383b
|
|
814
|
+
812, 0x1731bb71c4c38d4f
|
|
815
|
+
813, 0x9a83a65395e05458
|
|
816
|
+
814, 0x99cd0c8d67c8f4fc
|
|
817
|
+
815, 0xfbd9fdc849b761a5
|
|
818
|
+
816, 0x82c04834fc466889
|
|
819
|
+
817, 0xdeef9d6e715e8c97
|
|
820
|
+
818, 0x549c281c16da6078
|
|
821
|
+
819, 0x2d70661254ad599d
|
|
822
|
+
820, 0x57995793a72acac
|
|
823
|
+
821, 0xf1727005116183ba
|
|
824
|
+
822, 0xa22bb38945285de3
|
|
825
|
+
823, 0x4f2d687fe45131ff
|
|
826
|
+
824, 0x5666c87ddbbc981f
|
|
827
|
+
825, 0xbcb4b2d4e7a517d0
|
|
828
|
+
826, 0x5e794dd2e20b785d
|
|
829
|
+
827, 0x449ad020149e093c
|
|
830
|
+
828, 0x7704ee0412d106f5
|
|
831
|
+
829, 0x83cbdf257b072ac1
|
|
832
|
+
830, 0xae5c4fc9f638b0da
|
|
833
|
+
831, 0x7b9e5a64e372ed47
|
|
834
|
+
832, 0x7eddbbb22c2cdf57
|
|
835
|
+
833, 0x3f19ebfa155b08e
|
|
836
|
+
834, 0x91d991154dfd7177
|
|
837
|
+
835, 0x611ae74b952d387f
|
|
838
|
+
836, 0x3fdf7a335bda36ee
|
|
839
|
+
837, 0xdf182433fc7a7c05
|
|
840
|
+
838, 0x62c78598d1f8db0a
|
|
841
|
+
839, 0xc3750c69d2c5c1f0
|
|
842
|
+
840, 0xf1318024709efdee
|
|
843
|
+
841, 0xaa3fd360d224dc29
|
|
844
|
+
842, 0x62af53b2f307c19
|
|
845
|
+
843, 0xdf527683c58120c2
|
|
846
|
+
844, 0x3281deecc496f93d
|
|
847
|
+
845, 0x4f704ad31527ef08
|
|
848
|
+
846, 0x127a14a5e07cfdfc
|
|
849
|
+
847, 0x90d0b1f549255c92
|
|
850
|
+
848, 0xbc3406b212c5e1fc
|
|
851
|
+
849, 0x4e89f39379dba91d
|
|
852
|
+
850, 0x1290ef43c4998e6e
|
|
853
|
+
851, 0xecfeb1a1cb1c6e1b
|
|
854
|
+
852, 0x2067e90403003bf1
|
|
855
|
+
853, 0x38ae04be30bdbeba
|
|
856
|
+
854, 0x8a3537f298baedda
|
|
857
|
+
855, 0xd07f3b825cdb2936
|
|
858
|
+
856, 0xea020b5aebae8b45
|
|
859
|
+
857, 0xfcd614ab031132b0
|
|
860
|
+
858, 0x5fb682a4ff2268f5
|
|
861
|
+
859, 0xd1c4662ce65596f4
|
|
862
|
+
860, 0x7026b8270dd0b8dc
|
|
863
|
+
861, 0x8101ec4b4beae45a
|
|
864
|
+
862, 0xa0e9dc87940610a6
|
|
865
|
+
863, 0x83ec33679d83165b
|
|
866
|
+
864, 0x981847ca82e86d41
|
|
867
|
+
865, 0xda84c188a304a0b7
|
|
868
|
+
866, 0x3c37529c5a5bbbb8
|
|
869
|
+
867, 0x34a8491ce3e19a5a
|
|
870
|
+
868, 0xd36ad716a2fa6cb8
|
|
871
|
+
869, 0xfd1d1d6a5189a15c
|
|
872
|
+
870, 0x9716eb47851e8d8d
|
|
873
|
+
871, 0x7dfb13ea3b15c5aa
|
|
874
|
+
872, 0xbdf6e707f45113a5
|
|
875
|
+
873, 0xb8118261b04bd097
|
|
876
|
+
874, 0x6191f9895881bec6
|
|
877
|
+
875, 0x7aac257ae11acf9b
|
|
878
|
+
876, 0x35a491e1537ff120
|
|
879
|
+
877, 0xe078943432efa71c
|
|
880
|
+
878, 0xb3338485dd3dc2b9
|
|
881
|
+
879, 0x456060975d2bb3b5
|
|
882
|
+
880, 0xaddc4c451bdfc44c
|
|
883
|
+
881, 0x18bfa7beacf96430
|
|
884
|
+
882, 0x8802ebcaf0f67498
|
|
885
|
+
883, 0xad922a5a825bd780
|
|
886
|
+
884, 0x9fb4587d748f4efa
|
|
887
|
+
885, 0xdb2a445136cd5e7
|
|
888
|
+
886, 0xb98b3676ea8e96ac
|
|
889
|
+
887, 0xb02d8d244d784878
|
|
890
|
+
888, 0xa1a8442b18860abb
|
|
891
|
+
889, 0x6a3029ba1361e5d1
|
|
892
|
+
890, 0xf426d5fac161eb1
|
|
893
|
+
891, 0xfa5ac2b87acecb23
|
|
894
|
+
892, 0xaa659896e50535df
|
|
895
|
+
893, 0xf40dd7a3d3c5c8ed
|
|
896
|
+
894, 0x3f8367abecb705bc
|
|
897
|
+
895, 0x2d60e7525873358f
|
|
898
|
+
896, 0xc4a9d3948a0c3937
|
|
899
|
+
897, 0x5ecc04fef6003909
|
|
900
|
+
898, 0x7a865004918cba2
|
|
901
|
+
899, 0x47ae110a678ec10b
|
|
902
|
+
900, 0xa0f02f629d91aa67
|
|
903
|
+
901, 0x4848b99e7fac9347
|
|
904
|
+
902, 0xaa858346d63b80ac
|
|
905
|
+
903, 0xeb5bf42ee161eeef
|
|
906
|
+
904, 0x4d35d723d3c6ba37
|
|
907
|
+
905, 0xdf22ca6ca93b64a7
|
|
908
|
+
906, 0x9d198520f97b25b1
|
|
909
|
+
907, 0x3068415350778efe
|
|
910
|
+
908, 0xf3709f2e8793c2fe
|
|
911
|
+
909, 0xd1517bac8dd9f16f
|
|
912
|
+
910, 0xfb99bccaa15861dc
|
|
913
|
+
911, 0xa9ad607d796a2521
|
|
914
|
+
912, 0x55d3793d36bd22e4
|
|
915
|
+
913, 0xf99270d891ff7401
|
|
916
|
+
914, 0x401750a5c4aa8238
|
|
917
|
+
915, 0xd84b3003e6f28309
|
|
918
|
+
916, 0x8a23798b5fa7c98b
|
|
919
|
+
917, 0xadd58bbc8f43e399
|
|
920
|
+
918, 0xbd8c741ada62c6a8
|
|
921
|
+
919, 0xbdc6937bc55b49fa
|
|
922
|
+
920, 0x4aefa82201b8502
|
|
923
|
+
921, 0x17adf29a717b303
|
|
924
|
+
922, 0xa6ed2197be168f6c
|
|
925
|
+
923, 0x1ba47543f4359a95
|
|
926
|
+
924, 0xe34299949ac01ae9
|
|
927
|
+
925, 0x711c76cffc9b62f3
|
|
928
|
+
926, 0xbac259895508a4b7
|
|
929
|
+
927, 0x3c8b3b3626b0d900
|
|
930
|
+
928, 0x1a8d23fbe2ae71bf
|
|
931
|
+
929, 0xca984fa3b5a5c3a1
|
|
932
|
+
930, 0xb1986ab7521a9c93
|
|
933
|
+
931, 0xd6b5b2c8d47a75b5
|
|
934
|
+
932, 0xc7f1c4a88afb4957
|
|
935
|
+
933, 0xdeb58033a3acd6cc
|
|
936
|
+
934, 0xabe49ddfe1167e67
|
|
937
|
+
935, 0x8d559c10205c06e3
|
|
938
|
+
936, 0xea07a1a7de67a651
|
|
939
|
+
937, 0xcbef60db15b6fef8
|
|
940
|
+
938, 0xbfca142cff280e7
|
|
941
|
+
939, 0x362693eba0732221
|
|
942
|
+
940, 0x7463237e134db103
|
|
943
|
+
941, 0x45574ddb5035e17a
|
|
944
|
+
942, 0xfc65e0cb9b94a1aa
|
|
945
|
+
943, 0x3154c55f1d86b36d
|
|
946
|
+
944, 0x2d93a96dd6ab2d8b
|
|
947
|
+
945, 0xbe3bc1d1f2542a25
|
|
948
|
+
946, 0xdd4b541f7385bdaa
|
|
949
|
+
947, 0x3b56b919d914e3f8
|
|
950
|
+
948, 0x82fd51468a21895f
|
|
951
|
+
949, 0x8988cf120731b916
|
|
952
|
+
950, 0xa06a61db5fb93e32
|
|
953
|
+
951, 0x6ed66c1b36f68623
|
|
954
|
+
952, 0x875ae844d2f01c59
|
|
955
|
+
953, 0x17ccd7ac912e5925
|
|
956
|
+
954, 0x12fe2a66b8e40cb1
|
|
957
|
+
955, 0xf843e5e3923ad791
|
|
958
|
+
956, 0xa17560f2fd4ef48
|
|
959
|
+
957, 0x27a2968191a8ee07
|
|
960
|
+
958, 0xa9aab4d22ff44a3c
|
|
961
|
+
959, 0x63cd0dcc3bb083ae
|
|
962
|
+
960, 0x7a30b48c6160bf85
|
|
963
|
+
961, 0x956160fb572503b3
|
|
964
|
+
962, 0xc47f6b7546640257
|
|
965
|
+
963, 0xaf4b625f7f49153
|
|
966
|
+
964, 0x2f5c86a790e0c7e8
|
|
967
|
+
965, 0xb52e0610ae07f0b8
|
|
968
|
+
966, 0x38a589292c3d849e
|
|
969
|
+
967, 0xc3e9ef655d30b4ef
|
|
970
|
+
968, 0xb5695f765cda998a
|
|
971
|
+
969, 0xde5d5e692a028e91
|
|
972
|
+
970, 0x839476721555f72e
|
|
973
|
+
971, 0x48b20679b17d9ebf
|
|
974
|
+
972, 0xe3d4c6b2c26fb0df
|
|
975
|
+
973, 0xce5a9834f0b4e71f
|
|
976
|
+
974, 0x533abb253d5d420e
|
|
977
|
+
975, 0x9eac5ad9aed34627
|
|
978
|
+
976, 0xc0f2a01ab3c90dbb
|
|
979
|
+
977, 0x6528eda93f6a066c
|
|
980
|
+
978, 0xc16a1b625e467ade
|
|
981
|
+
979, 0x1a4a320fb5e8b098
|
|
982
|
+
980, 0x8819cccd8b4ab32f
|
|
983
|
+
981, 0x42daa88531fd0bfd
|
|
984
|
+
982, 0xcf732226409be17c
|
|
985
|
+
983, 0xfddcdb25ccbf378c
|
|
986
|
+
984, 0x9b15b603bf589fc1
|
|
987
|
+
985, 0x2436066b95d366fe
|
|
988
|
+
986, 0x8d42eff2e9cbda90
|
|
989
|
+
987, 0x694b2fc8a4e8303c
|
|
990
|
+
988, 0x8e207f98aaea3ccd
|
|
991
|
+
989, 0x4730d7a620f822d9
|
|
992
|
+
990, 0x468dc9ca30fe2fd4
|
|
993
|
+
991, 0x74b36d8a1c0f031b
|
|
994
|
+
992, 0x3c1aac1c488c1a94
|
|
995
|
+
993, 0x19d0101042444585
|
|
996
|
+
994, 0x8ec50c56d0c8adf4
|
|
997
|
+
995, 0x721ec629e4d66394
|
|
998
|
+
996, 0x3ca5ad93abeac4a4
|
|
999
|
+
997, 0xaaebc76e71592623
|
|
1000
|
+
998, 0x969cc319e3ed6058
|
|
1001
|
+
999, 0xc0a277e3b2bfc3de
|