numpy 2.4.1__pp311-pypy311_pp73-macosx_14_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_multiarray_umath.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_rational_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_simd.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/_umath_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +377 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1523 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/distutils/__init__.py +64 -0
- numpy/distutils/__init__.pyi +4 -0
- numpy/distutils/__pycache__/conv_template.pypy311.pyc +0 -0
- numpy/distutils/_shell_utils.py +87 -0
- numpy/distutils/armccompiler.py +26 -0
- numpy/distutils/ccompiler.py +826 -0
- numpy/distutils/ccompiler_opt.py +2668 -0
- numpy/distutils/checks/cpu_asimd.c +27 -0
- numpy/distutils/checks/cpu_asimddp.c +16 -0
- numpy/distutils/checks/cpu_asimdfhm.c +19 -0
- numpy/distutils/checks/cpu_asimdhp.c +15 -0
- numpy/distutils/checks/cpu_avx.c +20 -0
- numpy/distutils/checks/cpu_avx2.c +20 -0
- numpy/distutils/checks/cpu_avx512_clx.c +22 -0
- numpy/distutils/checks/cpu_avx512_cnl.c +24 -0
- numpy/distutils/checks/cpu_avx512_icl.c +26 -0
- numpy/distutils/checks/cpu_avx512_knl.c +25 -0
- numpy/distutils/checks/cpu_avx512_knm.c +30 -0
- numpy/distutils/checks/cpu_avx512_skx.c +26 -0
- numpy/distutils/checks/cpu_avx512_spr.c +26 -0
- numpy/distutils/checks/cpu_avx512cd.c +20 -0
- numpy/distutils/checks/cpu_avx512f.c +20 -0
- numpy/distutils/checks/cpu_f16c.c +22 -0
- numpy/distutils/checks/cpu_fma3.c +22 -0
- numpy/distutils/checks/cpu_fma4.c +13 -0
- numpy/distutils/checks/cpu_lsx.c +11 -0
- numpy/distutils/checks/cpu_neon.c +19 -0
- numpy/distutils/checks/cpu_neon_fp16.c +11 -0
- numpy/distutils/checks/cpu_neon_vfpv4.c +21 -0
- numpy/distutils/checks/cpu_popcnt.c +32 -0
- numpy/distutils/checks/cpu_rvv.c +13 -0
- numpy/distutils/checks/cpu_sse.c +20 -0
- numpy/distutils/checks/cpu_sse2.c +20 -0
- numpy/distutils/checks/cpu_sse3.c +20 -0
- numpy/distutils/checks/cpu_sse41.c +20 -0
- numpy/distutils/checks/cpu_sse42.c +20 -0
- numpy/distutils/checks/cpu_ssse3.c +20 -0
- numpy/distutils/checks/cpu_sve.c +14 -0
- numpy/distutils/checks/cpu_vsx.c +21 -0
- numpy/distutils/checks/cpu_vsx2.c +13 -0
- numpy/distutils/checks/cpu_vsx3.c +13 -0
- numpy/distutils/checks/cpu_vsx4.c +14 -0
- numpy/distutils/checks/cpu_vx.c +16 -0
- numpy/distutils/checks/cpu_vxe.c +25 -0
- numpy/distutils/checks/cpu_vxe2.c +21 -0
- numpy/distutils/checks/cpu_xop.c +12 -0
- numpy/distutils/checks/extra_avx512bw_mask.c +18 -0
- numpy/distutils/checks/extra_avx512dq_mask.c +16 -0
- numpy/distutils/checks/extra_avx512f_reduce.c +41 -0
- numpy/distutils/checks/extra_vsx3_half_double.c +12 -0
- numpy/distutils/checks/extra_vsx4_mma.c +21 -0
- numpy/distutils/checks/extra_vsx_asm.c +36 -0
- numpy/distutils/checks/test_flags.c +1 -0
- numpy/distutils/command/__init__.py +41 -0
- numpy/distutils/command/autodist.py +148 -0
- numpy/distutils/command/bdist_rpm.py +22 -0
- numpy/distutils/command/build.py +62 -0
- numpy/distutils/command/build_clib.py +469 -0
- numpy/distutils/command/build_ext.py +752 -0
- numpy/distutils/command/build_py.py +31 -0
- numpy/distutils/command/build_scripts.py +49 -0
- numpy/distutils/command/build_src.py +773 -0
- numpy/distutils/command/config.py +516 -0
- numpy/distutils/command/config_compiler.py +126 -0
- numpy/distutils/command/develop.py +15 -0
- numpy/distutils/command/egg_info.py +25 -0
- numpy/distutils/command/install.py +79 -0
- numpy/distutils/command/install_clib.py +40 -0
- numpy/distutils/command/install_data.py +24 -0
- numpy/distutils/command/install_headers.py +25 -0
- numpy/distutils/command/sdist.py +27 -0
- numpy/distutils/conv_template.py +329 -0
- numpy/distutils/core.py +215 -0
- numpy/distutils/cpuinfo.py +683 -0
- numpy/distutils/exec_command.py +315 -0
- numpy/distutils/extension.py +101 -0
- numpy/distutils/fcompiler/__init__.py +1035 -0
- numpy/distutils/fcompiler/absoft.py +158 -0
- numpy/distutils/fcompiler/arm.py +71 -0
- numpy/distutils/fcompiler/compaq.py +120 -0
- numpy/distutils/fcompiler/environment.py +88 -0
- numpy/distutils/fcompiler/fujitsu.py +46 -0
- numpy/distutils/fcompiler/g95.py +42 -0
- numpy/distutils/fcompiler/gnu.py +555 -0
- numpy/distutils/fcompiler/hpux.py +41 -0
- numpy/distutils/fcompiler/ibm.py +97 -0
- numpy/distutils/fcompiler/intel.py +211 -0
- numpy/distutils/fcompiler/lahey.py +45 -0
- numpy/distutils/fcompiler/mips.py +54 -0
- numpy/distutils/fcompiler/nag.py +87 -0
- numpy/distutils/fcompiler/none.py +28 -0
- numpy/distutils/fcompiler/nv.py +53 -0
- numpy/distutils/fcompiler/pathf95.py +33 -0
- numpy/distutils/fcompiler/pg.py +128 -0
- numpy/distutils/fcompiler/sun.py +51 -0
- numpy/distutils/fcompiler/vast.py +52 -0
- numpy/distutils/from_template.py +261 -0
- numpy/distutils/fujitsuccompiler.py +28 -0
- numpy/distutils/intelccompiler.py +106 -0
- numpy/distutils/lib2def.py +116 -0
- numpy/distutils/line_endings.py +77 -0
- numpy/distutils/log.py +111 -0
- numpy/distutils/mingw/gfortran_vs2003_hack.c +6 -0
- numpy/distutils/mingw32ccompiler.py +620 -0
- numpy/distutils/misc_util.py +2484 -0
- numpy/distutils/msvc9compiler.py +63 -0
- numpy/distutils/msvccompiler.py +76 -0
- numpy/distutils/npy_pkg_config.py +441 -0
- numpy/distutils/numpy_distribution.py +17 -0
- numpy/distutils/pathccompiler.py +21 -0
- numpy/distutils/system_info.py +3267 -0
- numpy/distutils/tests/__init__.py +0 -0
- numpy/distutils/tests/test_build_ext.py +74 -0
- numpy/distutils/tests/test_ccompiler_opt.py +808 -0
- numpy/distutils/tests/test_ccompiler_opt_conf.py +176 -0
- numpy/distutils/tests/test_exec_command.py +217 -0
- numpy/distutils/tests/test_fcompiler.py +43 -0
- numpy/distutils/tests/test_fcompiler_gnu.py +55 -0
- numpy/distutils/tests/test_fcompiler_intel.py +30 -0
- numpy/distutils/tests/test_fcompiler_nagfor.py +22 -0
- numpy/distutils/tests/test_from_template.py +44 -0
- numpy/distutils/tests/test_log.py +34 -0
- numpy/distutils/tests/test_mingw32ccompiler.py +47 -0
- numpy/distutils/tests/test_misc_util.py +88 -0
- numpy/distutils/tests/test_npy_pkg_config.py +84 -0
- numpy/distutils/tests/test_shell_utils.py +79 -0
- numpy/distutils/tests/test_system_info.py +334 -0
- numpy/distutils/tests/utilities.py +90 -0
- numpy/distutils/unixccompiler.py +141 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.pypy311-pp73-darwin.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5760 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2006 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4750 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/_umath_linalg.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/lapack_lite.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_bounded_integers.pypy311-pp73-darwin.so +0 -0
- numpy/random/_common.pxd +110 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_common.pypy311-pp73-darwin.so +0 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_mt19937.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_pcg64.pypy311-pp73-darwin.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_philox.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/_sfc64.pypy311-pp73-darwin.so +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/bit_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/mtrand.pypy311-pp73-darwin.so +0 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +807 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +1039 -0
- numpy-2.4.1.dist-info/WHEEL +6 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0xdeadbeaf
|
|
2
|
+
0, 0xa475f55fbb6bc638
|
|
3
|
+
1, 0xb2d594b6c29d971c
|
|
4
|
+
2, 0x275bc4ece4484fb1
|
|
5
|
+
3, 0x569be72d9b3492fb
|
|
6
|
+
4, 0x89a5bb9b206a670c
|
|
7
|
+
5, 0xd951bfa06afdc3f9
|
|
8
|
+
6, 0x7ee2e1029d52a265
|
|
9
|
+
7, 0x12ef1d4de0cb4d4c
|
|
10
|
+
8, 0x41658ba8f0ef0280
|
|
11
|
+
9, 0x5b650c82e4fe09c5
|
|
12
|
+
10, 0x638a9f3e30ec4e94
|
|
13
|
+
11, 0x147487fb2ba9233e
|
|
14
|
+
12, 0x89ef035603d2d1fb
|
|
15
|
+
13, 0xe66ca57a190e6cbe
|
|
16
|
+
14, 0x330f673740dd61fc
|
|
17
|
+
15, 0xc71d3dce2f8bb34e
|
|
18
|
+
16, 0x3c07c39ff150b185
|
|
19
|
+
17, 0x5df952b6cae8f099
|
|
20
|
+
18, 0x9f09f2b1f0ceac80
|
|
21
|
+
19, 0x19598eee2d0c4c67
|
|
22
|
+
20, 0x64e06483702e0ebd
|
|
23
|
+
21, 0xda04d1fdb545f7fa
|
|
24
|
+
22, 0xf2cf53b61a0c4f9b
|
|
25
|
+
23, 0xf0bb724ce196f66e
|
|
26
|
+
24, 0x71cefde55d9cf0f
|
|
27
|
+
25, 0x6323f62824a20048
|
|
28
|
+
26, 0x1e93604680f14b4e
|
|
29
|
+
27, 0xd9d8fad1d4654025
|
|
30
|
+
28, 0xf4ee25af2e76ca08
|
|
31
|
+
29, 0x6af3325896befa98
|
|
32
|
+
30, 0xad9e43abf5e04053
|
|
33
|
+
31, 0xbf930e318ce09de3
|
|
34
|
+
32, 0x61f9583b4f9ffe76
|
|
35
|
+
33, 0x9b69d0b3d5ec8958
|
|
36
|
+
34, 0xa608f250f9b2ca41
|
|
37
|
+
35, 0x6fdba7073dc2bb5d
|
|
38
|
+
36, 0xa9d57601efea6d26
|
|
39
|
+
37, 0xc24a88a994954105
|
|
40
|
+
38, 0xc728b1f78d88fe5b
|
|
41
|
+
39, 0x88da88c2b083b3b2
|
|
42
|
+
40, 0xa9e27f7303c76cfd
|
|
43
|
+
41, 0xc4c24608c29176eb
|
|
44
|
+
42, 0x5420b58466b972fd
|
|
45
|
+
43, 0xd2018a661b6756c8
|
|
46
|
+
44, 0x7caed83d9573fc7
|
|
47
|
+
45, 0x562a3d81b849a06a
|
|
48
|
+
46, 0x16588af120c21f2c
|
|
49
|
+
47, 0x658109a7e0eb4837
|
|
50
|
+
48, 0x877aabb14d3822e1
|
|
51
|
+
49, 0x95704c342c3745fe
|
|
52
|
+
50, 0xeeb8a0dc81603616
|
|
53
|
+
51, 0x431bf94889290419
|
|
54
|
+
52, 0xe4a9410ab92a5863
|
|
55
|
+
53, 0xbc6be64ea60f12ba
|
|
56
|
+
54, 0x328a2da920015063
|
|
57
|
+
55, 0x40f6b3bf8271ae07
|
|
58
|
+
56, 0x4068ff00a0e854f8
|
|
59
|
+
57, 0x1b287572ca13fa78
|
|
60
|
+
58, 0xa11624a600490b99
|
|
61
|
+
59, 0x4a04ef29eb7150fa
|
|
62
|
+
60, 0xcc9469ab5ffb739
|
|
63
|
+
61, 0x99a6a9f8d95e782
|
|
64
|
+
62, 0x8e90356573e7a070
|
|
65
|
+
63, 0xa740b8fb415c81c4
|
|
66
|
+
64, 0x47eccef67447f3da
|
|
67
|
+
65, 0x2c720afe3a62a49b
|
|
68
|
+
66, 0xe2a747f0a43eacf4
|
|
69
|
+
67, 0xba063a87ab165576
|
|
70
|
+
68, 0xbc1c78ed27feb5a3
|
|
71
|
+
69, 0x285a19fa3974f9d
|
|
72
|
+
70, 0x489c61e704f5f0e3
|
|
73
|
+
71, 0xf5ab04f6b03f238b
|
|
74
|
+
72, 0x7e25f88138a110dd
|
|
75
|
+
73, 0xc3d1cef3d7c1f1d1
|
|
76
|
+
74, 0xc3de6ec64d0d8e00
|
|
77
|
+
75, 0x73682a15b6cc5088
|
|
78
|
+
76, 0x6fecbeb319163dc5
|
|
79
|
+
77, 0x7e100d5defe570a1
|
|
80
|
+
78, 0xad2af9af076dce57
|
|
81
|
+
79, 0x3c65100e23cd3a9a
|
|
82
|
+
80, 0x4b442cc6cfe521bb
|
|
83
|
+
81, 0xe89dc50f8ab1ef75
|
|
84
|
+
82, 0x8b3c6fdc2496566
|
|
85
|
+
83, 0xdfc50042bc2c308c
|
|
86
|
+
84, 0xe39c5f158b33d2b2
|
|
87
|
+
85, 0x92f6adefdfeb0ac
|
|
88
|
+
86, 0xdf5808a949c85b3e
|
|
89
|
+
87, 0x437384021c9dace9
|
|
90
|
+
88, 0xa7b5ed0d3d67d8f
|
|
91
|
+
89, 0xe1408f8b21da3c34
|
|
92
|
+
90, 0xa1bba125c1e80522
|
|
93
|
+
91, 0x7611dc4710385264
|
|
94
|
+
92, 0xb00a46ea84082917
|
|
95
|
+
93, 0x51bf8002ffa87cef
|
|
96
|
+
94, 0x9bb81013e9810adc
|
|
97
|
+
95, 0xd28f6600013541cd
|
|
98
|
+
96, 0xc2ca3b1fa7791c1f
|
|
99
|
+
97, 0x47f9ad58f099c82c
|
|
100
|
+
98, 0x4d1bb9458469caf9
|
|
101
|
+
99, 0xca0b165b2844257
|
|
102
|
+
100, 0xc3b2e667d075dc66
|
|
103
|
+
101, 0xde22f71136a3dbb1
|
|
104
|
+
102, 0x23b4e3b6f219e4c3
|
|
105
|
+
103, 0x327e0db4c9782f66
|
|
106
|
+
104, 0x9365506a6c7a1807
|
|
107
|
+
105, 0x3e868382dedd3be7
|
|
108
|
+
106, 0xff04fa6534bcaa99
|
|
109
|
+
107, 0x96621a8862995305
|
|
110
|
+
108, 0x81bf39cb5f8e1df7
|
|
111
|
+
109, 0x79b684bb8c37af7a
|
|
112
|
+
110, 0xae3bc073c3cde33c
|
|
113
|
+
111, 0x7805674112c899ac
|
|
114
|
+
112, 0xd95a27995abb20f2
|
|
115
|
+
113, 0x71a503c57b105c40
|
|
116
|
+
114, 0x5ff00d6a73ec8acc
|
|
117
|
+
115, 0x12f96391d91e47c2
|
|
118
|
+
116, 0xd55ca097b3bd4947
|
|
119
|
+
117, 0x794d79d20468b04
|
|
120
|
+
118, 0x35d814efb0d7a07d
|
|
121
|
+
119, 0xfa9ac9bd0aae76d3
|
|
122
|
+
120, 0xa77b8a3711e175cd
|
|
123
|
+
121, 0xe6694fbf421f9489
|
|
124
|
+
122, 0xd8f1756525a1a0aa
|
|
125
|
+
123, 0xe38dfa8426277433
|
|
126
|
+
124, 0x16b640c269bbcd44
|
|
127
|
+
125, 0x2a7a5a67ca24cfeb
|
|
128
|
+
126, 0x669039c28d5344b4
|
|
129
|
+
127, 0x2a445ee81fd596bb
|
|
130
|
+
128, 0x600df94cf25607e0
|
|
131
|
+
129, 0x9358561a7579abff
|
|
132
|
+
130, 0xee1d52ea179fc274
|
|
133
|
+
131, 0x21a8b325e89d31be
|
|
134
|
+
132, 0x36fc0917486eec0a
|
|
135
|
+
133, 0x3d99f40717a6be9f
|
|
136
|
+
134, 0x39ac140051ca55ff
|
|
137
|
+
135, 0xcef7447c26711575
|
|
138
|
+
136, 0xf22666870eff441d
|
|
139
|
+
137, 0x4a53c6134e1c7268
|
|
140
|
+
138, 0xd26de518ad6bdb1b
|
|
141
|
+
139, 0x1a736bf75b8b0e55
|
|
142
|
+
140, 0xef1523f4e6bd0219
|
|
143
|
+
141, 0xb287b32fd615ad92
|
|
144
|
+
142, 0x2583d6af5e841dd5
|
|
145
|
+
143, 0x4b9294aae7ca670c
|
|
146
|
+
144, 0xf5aa4a84174f3ca9
|
|
147
|
+
145, 0x886300f9e0dc6376
|
|
148
|
+
146, 0x3611401e475ef130
|
|
149
|
+
147, 0x69b56432b367e1ac
|
|
150
|
+
148, 0x30c330e9ab36b7c4
|
|
151
|
+
149, 0x1e0e73079a85b8d5
|
|
152
|
+
150, 0x40fdfc7a5bfaecf
|
|
153
|
+
151, 0xd7760f3e8e75a085
|
|
154
|
+
152, 0x1cc1891f7f625313
|
|
155
|
+
153, 0xeece1fe6165b4272
|
|
156
|
+
154, 0xe61111b0c166a3c1
|
|
157
|
+
155, 0x2f1201563312f185
|
|
158
|
+
156, 0xfd10e8ecdd2a57cb
|
|
159
|
+
157, 0x51cdc8c9dd3a89bf
|
|
160
|
+
158, 0xed13cc93938b5496
|
|
161
|
+
159, 0x843816129750526b
|
|
162
|
+
160, 0xd09995cd6819ada
|
|
163
|
+
161, 0x4601e778d40607df
|
|
164
|
+
162, 0xef9df06bd66c2ea0
|
|
165
|
+
163, 0xae0bdecd3db65d69
|
|
166
|
+
164, 0xbb921a3c65a4ae9a
|
|
167
|
+
165, 0xd66698ce8e9361be
|
|
168
|
+
166, 0xacdc91647b6068f4
|
|
169
|
+
167, 0xe505ef68f2a5c1c0
|
|
170
|
+
168, 0xd6e62fd27c6ab137
|
|
171
|
+
169, 0x6a2ba2c6a4641d86
|
|
172
|
+
170, 0x9c89143715c3b81
|
|
173
|
+
171, 0xe408c4e00362601a
|
|
174
|
+
172, 0x986155cbf5d4bd9d
|
|
175
|
+
173, 0xb9e6831728c893a7
|
|
176
|
+
174, 0xb985497c3bf88d8c
|
|
177
|
+
175, 0xd0d729214b727bec
|
|
178
|
+
176, 0x4e557f75fece38a
|
|
179
|
+
177, 0x6572067fdfd623ca
|
|
180
|
+
178, 0x178d49bb4d5cd794
|
|
181
|
+
179, 0xe6baf59f60445d82
|
|
182
|
+
180, 0x5607d53518e3a8d2
|
|
183
|
+
181, 0xba7931adb6ebbd61
|
|
184
|
+
182, 0xe853576172611329
|
|
185
|
+
183, 0xe945daff96000c44
|
|
186
|
+
184, 0x565b9ba3d952a176
|
|
187
|
+
185, 0xcdb54d4f88c584c8
|
|
188
|
+
186, 0x482a7499bee9b5e5
|
|
189
|
+
187, 0x76560dd0affe825b
|
|
190
|
+
188, 0x2a56221faa5ca22c
|
|
191
|
+
189, 0x7729be5b361f5a25
|
|
192
|
+
190, 0xd6f2195795764876
|
|
193
|
+
191, 0x59ef7f8f423f18c5
|
|
194
|
+
192, 0x7ebefed6d02adde1
|
|
195
|
+
193, 0xcfec7265329c73e5
|
|
196
|
+
194, 0x4fd8606a5e59881c
|
|
197
|
+
195, 0x95860982ae370b73
|
|
198
|
+
196, 0xdecfa33b1f902acc
|
|
199
|
+
197, 0xf9b8a57400b7c0a6
|
|
200
|
+
198, 0xd20b822672ec857b
|
|
201
|
+
199, 0x4eb81084096c7364
|
|
202
|
+
200, 0xe535c29a44d9b6ad
|
|
203
|
+
201, 0xdef8b48ebacb2e29
|
|
204
|
+
202, 0x1063bc2b8ba0e915
|
|
205
|
+
203, 0xe4e837fb53d76d02
|
|
206
|
+
204, 0x4df935db53579fb8
|
|
207
|
+
205, 0xa30a0c8053869a89
|
|
208
|
+
206, 0xe891ee58a388a7b5
|
|
209
|
+
207, 0x17931a0c64b8a985
|
|
210
|
+
208, 0xaf2d350b494ce1b3
|
|
211
|
+
209, 0x2ab9345ffbcfed82
|
|
212
|
+
210, 0x7de3fe628a2592f0
|
|
213
|
+
211, 0x85cf54fab8b7e79d
|
|
214
|
+
212, 0x42d221520edab71b
|
|
215
|
+
213, 0x17b695b3af36c233
|
|
216
|
+
214, 0xa4ffe50fe53eb485
|
|
217
|
+
215, 0x1102d242db800e4d
|
|
218
|
+
216, 0xc8dc01f0233b3b6
|
|
219
|
+
217, 0x984a030321053d36
|
|
220
|
+
218, 0x27fa8dc7b7112c0e
|
|
221
|
+
219, 0xba634dd8294e177f
|
|
222
|
+
220, 0xe67ce34b36332eb
|
|
223
|
+
221, 0x8f1351e1894fb41a
|
|
224
|
+
222, 0xb522a3048761fd30
|
|
225
|
+
223, 0xc350ad9bc6729edc
|
|
226
|
+
224, 0xe0ed105bd3c805e1
|
|
227
|
+
225, 0xa14043d2b0825aa7
|
|
228
|
+
226, 0xee7779ce7fc11fdf
|
|
229
|
+
227, 0xc0fa8ba23a60ab25
|
|
230
|
+
228, 0xb596d1ce259afbad
|
|
231
|
+
229, 0xaa9b8445537fdf62
|
|
232
|
+
230, 0x770ab2c700762e13
|
|
233
|
+
231, 0xe812f1183e40cc1
|
|
234
|
+
232, 0x44bc898e57aefbbd
|
|
235
|
+
233, 0xdd8a871df785c996
|
|
236
|
+
234, 0x88836a5e371eb36b
|
|
237
|
+
235, 0xb6081c9152623f27
|
|
238
|
+
236, 0x895acbcd6528ca96
|
|
239
|
+
237, 0xfb67e33ddfbed435
|
|
240
|
+
238, 0xaf7af47d323ce26
|
|
241
|
+
239, 0xe354a510c3c39b2d
|
|
242
|
+
240, 0x5cacdedda0672ba3
|
|
243
|
+
241, 0xa440d9a2c6c22b09
|
|
244
|
+
242, 0x6395099f48d64304
|
|
245
|
+
243, 0xc11cf04c75f655b5
|
|
246
|
+
244, 0x1c4e054d144ddb30
|
|
247
|
+
245, 0x3e0c2db89d336636
|
|
248
|
+
246, 0x127ecf18a5b0b9a7
|
|
249
|
+
247, 0x3b50551a88ea7a73
|
|
250
|
+
248, 0xbd27003e47f1f684
|
|
251
|
+
249, 0xf32d657782baac9b
|
|
252
|
+
250, 0x727f5cabf020bc9
|
|
253
|
+
251, 0x39c1c1c226197dc7
|
|
254
|
+
252, 0x5552c87b35deeb69
|
|
255
|
+
253, 0x64d54067b5ce493f
|
|
256
|
+
254, 0x3494b091fe28dda0
|
|
257
|
+
255, 0xdf0278bc85ee2965
|
|
258
|
+
256, 0xdef16fec25efbd66
|
|
259
|
+
257, 0xe2be09f578c4ce28
|
|
260
|
+
258, 0xd27a9271979d3019
|
|
261
|
+
259, 0x427f6fcd71845e3
|
|
262
|
+
260, 0x26b52c5f81ec142b
|
|
263
|
+
261, 0x98267efc3986ad46
|
|
264
|
+
262, 0x7bf4165ddb7e4374
|
|
265
|
+
263, 0xd05f7996d7941010
|
|
266
|
+
264, 0x3b3991de97b45f14
|
|
267
|
+
265, 0x9068217fb4f27a30
|
|
268
|
+
266, 0xd8fe295160afc7f3
|
|
269
|
+
267, 0x8a159fab4c3bc06f
|
|
270
|
+
268, 0x57855506d19080b6
|
|
271
|
+
269, 0x7636df6b3f2367a4
|
|
272
|
+
270, 0x2844ee3abd1d5ec9
|
|
273
|
+
271, 0xe5788de061f51c16
|
|
274
|
+
272, 0x69e78cc9132a164
|
|
275
|
+
273, 0xacd53cde6d8cd421
|
|
276
|
+
274, 0xb23f3100068e91da
|
|
277
|
+
275, 0x4140070a47f53891
|
|
278
|
+
276, 0xe4a422225a96e53a
|
|
279
|
+
277, 0xb82a8925a272a2ac
|
|
280
|
+
278, 0x7c2f9573590fe3b7
|
|
281
|
+
279, 0xbaf80764db170575
|
|
282
|
+
280, 0x955abffa54358368
|
|
283
|
+
281, 0x355ce7460614a869
|
|
284
|
+
282, 0x3700ede779a4afbf
|
|
285
|
+
283, 0x10a6ec01d92d68cd
|
|
286
|
+
284, 0x3308f5a0a4c0afef
|
|
287
|
+
285, 0x97b892d7601136c9
|
|
288
|
+
286, 0x4955c3b941b8552e
|
|
289
|
+
287, 0xca85aa67e941961d
|
|
290
|
+
288, 0xb1859ae5db28e9d2
|
|
291
|
+
289, 0x305d072ac1521fbd
|
|
292
|
+
290, 0xed52a868996085bb
|
|
293
|
+
291, 0x723bfa6a76358852
|
|
294
|
+
292, 0x78d946ecd97c5fb3
|
|
295
|
+
293, 0x39205b30a8e23e79
|
|
296
|
+
294, 0xb927e3d086baadbe
|
|
297
|
+
295, 0xa18d6946136e1ff5
|
|
298
|
+
296, 0xdab6f0b51c1eb5ff
|
|
299
|
+
297, 0xf0a640bf7a1af60c
|
|
300
|
+
298, 0xf0e81db09004d0d4
|
|
301
|
+
299, 0xfe76cebdbe5a4dde
|
|
302
|
+
300, 0x2dafe9cc3decc376
|
|
303
|
+
301, 0x4c871fdf1af34205
|
|
304
|
+
302, 0xe79617d0c8fa893b
|
|
305
|
+
303, 0xee658aaad3a141f7
|
|
306
|
+
304, 0xfd91aa74863e19f1
|
|
307
|
+
305, 0x841b8f55c103cc22
|
|
308
|
+
306, 0x22766ed65444ad5d
|
|
309
|
+
307, 0x56d03d1beca6c17a
|
|
310
|
+
308, 0x5fd4c112c92036ae
|
|
311
|
+
309, 0x75466ae58a5616dc
|
|
312
|
+
310, 0xfbf98b1081e802a9
|
|
313
|
+
311, 0xdc325e957bf6d8f5
|
|
314
|
+
312, 0xb08da7015ebd19b7
|
|
315
|
+
313, 0xf25a9c0944f0c073
|
|
316
|
+
314, 0xf4625bafa0ced718
|
|
317
|
+
315, 0x4349c9e093a9e692
|
|
318
|
+
316, 0x75a9ccd4dd8935cb
|
|
319
|
+
317, 0x7e6cf9e539361e91
|
|
320
|
+
318, 0x20fdd22fb6edd475
|
|
321
|
+
319, 0x5973021b57c2311f
|
|
322
|
+
320, 0x75392403667edc15
|
|
323
|
+
321, 0xed9b2156ea70d9f1
|
|
324
|
+
322, 0xf40c114db50b64a0
|
|
325
|
+
323, 0xe26bb2c9eef20c62
|
|
326
|
+
324, 0x409c1e3037869f03
|
|
327
|
+
325, 0xcdfd71fdda3b7f91
|
|
328
|
+
326, 0xa0dfae46816777d6
|
|
329
|
+
327, 0xde060a8f61a8deb8
|
|
330
|
+
328, 0x890e082a8b0ca4fc
|
|
331
|
+
329, 0xb9f2958eddf2d0db
|
|
332
|
+
330, 0xd17c148020d20e30
|
|
333
|
+
331, 0xffdc9cc176fe7201
|
|
334
|
+
332, 0xffb83d925b764c1
|
|
335
|
+
333, 0x817ea639e313da8d
|
|
336
|
+
334, 0xa4dd335dd891ca91
|
|
337
|
+
335, 0x1342d25a5e81f488
|
|
338
|
+
336, 0xfa7eb9c3cf466b03
|
|
339
|
+
337, 0xfe0a423d44b185d0
|
|
340
|
+
338, 0x101cfd430ab96049
|
|
341
|
+
339, 0x7b5d3eda9c4504b
|
|
342
|
+
340, 0xe20ccc006e0193f1
|
|
343
|
+
341, 0xf54ccddedebc5df0
|
|
344
|
+
342, 0xc0edd142bd58f1db
|
|
345
|
+
343, 0x3831f40d378d2430
|
|
346
|
+
344, 0x80132353f0a88289
|
|
347
|
+
345, 0x688f23c419d03ef8
|
|
348
|
+
346, 0x4c6837e697884066
|
|
349
|
+
347, 0x699387bb2e9a3a8f
|
|
350
|
+
348, 0x8996f860342448d8
|
|
351
|
+
349, 0xb0f80dff99bfa5cc
|
|
352
|
+
350, 0x3e927a7f9ea12c8e
|
|
353
|
+
351, 0xd7e498d1e5f9dff3
|
|
354
|
+
352, 0x78ecb97bb3f864cc
|
|
355
|
+
353, 0x3c4ffd069a014d38
|
|
356
|
+
354, 0xf8d5073a1e09b4d4
|
|
357
|
+
355, 0x8717e854f9faef23
|
|
358
|
+
356, 0xfbcc5478d8d0ad7
|
|
359
|
+
357, 0xd3cd8b233ca274ff
|
|
360
|
+
358, 0x8bd8f11f79beb265
|
|
361
|
+
359, 0xf64498a832d8fd0e
|
|
362
|
+
360, 0xb01bba75112131ec
|
|
363
|
+
361, 0x55572445a7869781
|
|
364
|
+
362, 0x7b56622f18cb3d7a
|
|
365
|
+
363, 0x7f192c9e075bdb83
|
|
366
|
+
364, 0xd9a112f836b83ff3
|
|
367
|
+
365, 0x68673b37269653dc
|
|
368
|
+
366, 0xe46a9433fb6a0879
|
|
369
|
+
367, 0x127d756ca4779001
|
|
370
|
+
368, 0xc1378e8b1e8eab94
|
|
371
|
+
369, 0x1006edb0f51d078c
|
|
372
|
+
370, 0xc6dd53961232d926
|
|
373
|
+
371, 0x9a4aeef44038256d
|
|
374
|
+
372, 0xd357f4fa652d4f5f
|
|
375
|
+
373, 0x59f3d2cc3378598
|
|
376
|
+
374, 0xe76e6207a824a7fc
|
|
377
|
+
375, 0x5fc5e33712ceffef
|
|
378
|
+
376, 0x77d24aeb0ccb1adc
|
|
379
|
+
377, 0x5be4b2826805659e
|
|
380
|
+
378, 0x257c69d787e64634
|
|
381
|
+
379, 0x58dd52ca6bc727b1
|
|
382
|
+
380, 0x3ab997767235ea33
|
|
383
|
+
381, 0x986a2a7a966fad14
|
|
384
|
+
382, 0xc900f8b27761dcc4
|
|
385
|
+
383, 0x44991bdb13795700
|
|
386
|
+
384, 0xe5c145a4fe733b2
|
|
387
|
+
385, 0x56f041b56bffe0d3
|
|
388
|
+
386, 0x5779c4fef8067996
|
|
389
|
+
387, 0xa0fe8748e829532d
|
|
390
|
+
388, 0x840c1277d78d9dd4
|
|
391
|
+
389, 0x37ebcb315432acbc
|
|
392
|
+
390, 0xf4bc8738433ba3be
|
|
393
|
+
391, 0x8b122993f2e10062
|
|
394
|
+
392, 0xe1fe8481f2681ed5
|
|
395
|
+
393, 0x8e23f1630d9f494a
|
|
396
|
+
394, 0xda24661a01b7d0b3
|
|
397
|
+
395, 0x7a02942a179cee36
|
|
398
|
+
396, 0xf1e08a3c09b71ac
|
|
399
|
+
397, 0x3dec2cc7ee0bd8fd
|
|
400
|
+
398, 0x1f3e480113d805d4
|
|
401
|
+
399, 0xc061b973ad4e3f2c
|
|
402
|
+
400, 0x6bea750f17a66836
|
|
403
|
+
401, 0xbc2add72eac84c25
|
|
404
|
+
402, 0xcff058d3f97934ca
|
|
405
|
+
403, 0x54ccc30987778ec2
|
|
406
|
+
404, 0x93449ec1e1469558
|
|
407
|
+
405, 0xe2ff369eb0c6836
|
|
408
|
+
406, 0x41c2df2d63bf8e55
|
|
409
|
+
407, 0xf9302629b6c71be2
|
|
410
|
+
408, 0xdd30376b8e5ab29a
|
|
411
|
+
409, 0x12db9e04f911d754
|
|
412
|
+
410, 0x8d03d6cd359f1b97
|
|
413
|
+
411, 0xe15956511abf1cee
|
|
414
|
+
412, 0x9b68e10e2c2fd940
|
|
415
|
+
413, 0x2e28de6491c1ce53
|
|
416
|
+
414, 0x52b329b72d0c109d
|
|
417
|
+
415, 0xc2c0b115f9da2a60
|
|
418
|
+
416, 0x6ca084105271bbff
|
|
419
|
+
417, 0x49b92b8676058c1e
|
|
420
|
+
418, 0x767fc92a70f7e5a3
|
|
421
|
+
419, 0x87ba4ed4b65a6aa0
|
|
422
|
+
420, 0xf70b052e0a3975e9
|
|
423
|
+
421, 0x3e925c3306db9eec
|
|
424
|
+
422, 0x43253f1d96ac9513
|
|
425
|
+
423, 0xe3e04f1a1ea454c4
|
|
426
|
+
424, 0x763e3f4cc81ba0c8
|
|
427
|
+
425, 0x2a2721ac69265705
|
|
428
|
+
426, 0xdf3b0ac6416ea214
|
|
429
|
+
427, 0xa6a6b57450f3e000
|
|
430
|
+
428, 0xc3d3b1ac7dbfe6ac
|
|
431
|
+
429, 0xb66e5e6f7d2e4ec0
|
|
432
|
+
430, 0x43c65296f98f0f04
|
|
433
|
+
431, 0xdb0f6e3ff974d842
|
|
434
|
+
432, 0x3d6b48e02ebb203b
|
|
435
|
+
433, 0xd74674ebf09d8f27
|
|
436
|
+
434, 0xbe65243c58fc1200
|
|
437
|
+
435, 0x55eb210a68d42625
|
|
438
|
+
436, 0x87badab097dbe883
|
|
439
|
+
437, 0xada3fda85a53824f
|
|
440
|
+
438, 0xef2791e8f48cd37a
|
|
441
|
+
439, 0x3fe7fceb927a641a
|
|
442
|
+
440, 0xd3bffd3ff031ac78
|
|
443
|
+
441, 0xb94efe03da4d18fb
|
|
444
|
+
442, 0x162a0ad8da65ea68
|
|
445
|
+
443, 0x300f234ef5b7e4a6
|
|
446
|
+
444, 0xa2a8b4c77024e4fb
|
|
447
|
+
445, 0x5950f095ddd7b109
|
|
448
|
+
446, 0xded66dd2b1bb02ba
|
|
449
|
+
447, 0x8ec24b7fa509bcb6
|
|
450
|
+
448, 0x9bede53d924bdad6
|
|
451
|
+
449, 0xa9c3f46423be1930
|
|
452
|
+
450, 0x6dfc90597f8de8b4
|
|
453
|
+
451, 0xb7419ebc65b434f0
|
|
454
|
+
452, 0xa6596949238f58b9
|
|
455
|
+
453, 0x966cbade640829b8
|
|
456
|
+
454, 0x58c74877bdcbf65e
|
|
457
|
+
455, 0xaa103b8f89b0c453
|
|
458
|
+
456, 0x219f0a86e41179a4
|
|
459
|
+
457, 0x90f534fc06ddc57f
|
|
460
|
+
458, 0x8db7cdd644f1affa
|
|
461
|
+
459, 0x38f91de0167127ac
|
|
462
|
+
460, 0xdcd2a65e4df43daa
|
|
463
|
+
461, 0x3e04f34a7e01f834
|
|
464
|
+
462, 0x5b237eea68007768
|
|
465
|
+
463, 0x7ff4d2b015921768
|
|
466
|
+
464, 0xf786b286549d3d51
|
|
467
|
+
465, 0xaefa053fc2c3884c
|
|
468
|
+
466, 0x8e6a8ff381515d36
|
|
469
|
+
467, 0x35b94f3d0a1fce3c
|
|
470
|
+
468, 0x165266d19e9abb64
|
|
471
|
+
469, 0x1deb5caa5f9d8076
|
|
472
|
+
470, 0x13ab91290c7cfe9d
|
|
473
|
+
471, 0x3651ca9856be3e05
|
|
474
|
+
472, 0xe7b705f6e9cccc19
|
|
475
|
+
473, 0xd6e7f79668c127ed
|
|
476
|
+
474, 0xa9faf37154896f92
|
|
477
|
+
475, 0x89fbf190603e0ab1
|
|
478
|
+
476, 0xb34d155a86f942d0
|
|
479
|
+
477, 0xb2d4400a78bfdd76
|
|
480
|
+
478, 0x7c0946aca8cfb3f0
|
|
481
|
+
479, 0x7492771591c9d0e8
|
|
482
|
+
480, 0xd084d95c5ca2eb28
|
|
483
|
+
481, 0xb18d12bd3a6023e
|
|
484
|
+
482, 0xea217ed7b864d80b
|
|
485
|
+
483, 0xe52f69a755dd5c6f
|
|
486
|
+
484, 0x127133993d81c4aa
|
|
487
|
+
485, 0xe07188fcf1670bfb
|
|
488
|
+
486, 0x178fbfe668e4661d
|
|
489
|
+
487, 0x1c9ee14bb0cda154
|
|
490
|
+
488, 0x8d043b96b6668f98
|
|
491
|
+
489, 0xbc858986ec96ca2b
|
|
492
|
+
490, 0x7660f779d528b6b7
|
|
493
|
+
491, 0xd448c6a1f74ae1d3
|
|
494
|
+
492, 0x178e122cfc2a6862
|
|
495
|
+
493, 0x236f000abaf2d23b
|
|
496
|
+
494, 0x171b27f3f0921915
|
|
497
|
+
495, 0x4c3ff07652f50a70
|
|
498
|
+
496, 0x18663e5e7d3a66ca
|
|
499
|
+
497, 0xb38c97946c750cc9
|
|
500
|
+
498, 0xc5031aae6f78f909
|
|
501
|
+
499, 0x4d1514e2925e95c1
|
|
502
|
+
500, 0x4c2184a741dabfbb
|
|
503
|
+
501, 0xfd410364edf77182
|
|
504
|
+
502, 0xc228157f863ee873
|
|
505
|
+
503, 0x9856fdc735cc09fc
|
|
506
|
+
504, 0x660496cd1e41d60e
|
|
507
|
+
505, 0x2edf1d7e01954c32
|
|
508
|
+
506, 0xd32e94639bdd98cf
|
|
509
|
+
507, 0x8e153f48709a77d
|
|
510
|
+
508, 0x89357f332d2d6561
|
|
511
|
+
509, 0x1840d512c97085e6
|
|
512
|
+
510, 0x2f18d035c9e26a85
|
|
513
|
+
511, 0x77b88b1448b26d5b
|
|
514
|
+
512, 0xc1ca6ef4cdae0799
|
|
515
|
+
513, 0xcc203f9e4508165f
|
|
516
|
+
514, 0xeaf762fbc9e0cbbe
|
|
517
|
+
515, 0xc070c687f3c4a290
|
|
518
|
+
516, 0xd49ed321068d5c15
|
|
519
|
+
517, 0x84a55eec17ee64ee
|
|
520
|
+
518, 0x4d8ee685298a8871
|
|
521
|
+
519, 0x9ff5f17d7e029793
|
|
522
|
+
520, 0x791d7d0d62e46302
|
|
523
|
+
521, 0xab218b9114e22bc6
|
|
524
|
+
522, 0x4902b7ab3f7119a7
|
|
525
|
+
523, 0x694930f2e29b049e
|
|
526
|
+
524, 0x1a3c90650848999f
|
|
527
|
+
525, 0x79f1b9d8499c932b
|
|
528
|
+
526, 0xfacb6d3d55e3c92f
|
|
529
|
+
527, 0x8fd8b4f25a5da9f5
|
|
530
|
+
528, 0xd037dcc3a7e62ae7
|
|
531
|
+
529, 0xfecf57300d8f84f4
|
|
532
|
+
530, 0x32079b1e1dc12d48
|
|
533
|
+
531, 0xe5f8f1e62b288f54
|
|
534
|
+
532, 0x97feba3a9c108894
|
|
535
|
+
533, 0xd279a51e1899a9a0
|
|
536
|
+
534, 0xd68eea8e8e363fa8
|
|
537
|
+
535, 0x7394cf2deeca9386
|
|
538
|
+
536, 0x5f70b0c80f1dbf10
|
|
539
|
+
537, 0x8d646916ed40462
|
|
540
|
+
538, 0xd253bb1c8a12bbb6
|
|
541
|
+
539, 0x38f399a821fbd73e
|
|
542
|
+
540, 0x947523a26333ac90
|
|
543
|
+
541, 0xb52e90affbc52a37
|
|
544
|
+
542, 0xcf899cd964654da4
|
|
545
|
+
543, 0xdf66ae9cca8d99e7
|
|
546
|
+
544, 0x6051478e57c21b6a
|
|
547
|
+
545, 0xffa7dc975af3c1da
|
|
548
|
+
546, 0x195c7bff2d1a8f5
|
|
549
|
+
547, 0x64f12b6575cf984d
|
|
550
|
+
548, 0x536034cb842cf9e1
|
|
551
|
+
549, 0x180f247ce5bbfad
|
|
552
|
+
550, 0x8ced45081b134867
|
|
553
|
+
551, 0x532bbfdf426710f3
|
|
554
|
+
552, 0x4747933e74c4f54d
|
|
555
|
+
553, 0x197a890dc4793401
|
|
556
|
+
554, 0x76c7cc2bd42fae2
|
|
557
|
+
555, 0xdabfd67f69675dd0
|
|
558
|
+
556, 0x85c690a68cdb3197
|
|
559
|
+
557, 0xe482cec89ce8f92
|
|
560
|
+
558, 0x20bc9fb7797011b1
|
|
561
|
+
559, 0x76dc85a2185782ad
|
|
562
|
+
560, 0x3df37c164422117a
|
|
563
|
+
561, 0x99211f5d231e0ab0
|
|
564
|
+
562, 0xef7fd794a0a91f4
|
|
565
|
+
563, 0x419577151915f5fe
|
|
566
|
+
564, 0x3ce14a0a7135dae3
|
|
567
|
+
565, 0x389b57598a075d6a
|
|
568
|
+
566, 0x8cc2a9d51b5af9aa
|
|
569
|
+
567, 0xe80a9beffbd13f13
|
|
570
|
+
568, 0x65e96b22ea8a54d8
|
|
571
|
+
569, 0x79f38c4164138ede
|
|
572
|
+
570, 0xd1955846cba03d81
|
|
573
|
+
571, 0x60359fe58e4f26d6
|
|
574
|
+
572, 0x4ea724f585f8d13e
|
|
575
|
+
573, 0x316dfdbadc801a3c
|
|
576
|
+
574, 0x20aa29b7c6dd66fe
|
|
577
|
+
575, 0x65eaf83a6a008caa
|
|
578
|
+
576, 0x407000aff1b9e8cb
|
|
579
|
+
577, 0xb4d49bfb2b268c40
|
|
580
|
+
578, 0xd4e6fe8a7a0f14a9
|
|
581
|
+
579, 0xe34afef924e8f58e
|
|
582
|
+
580, 0xe377b0c891844824
|
|
583
|
+
581, 0x29c2e20c112d30c8
|
|
584
|
+
582, 0x906aad1fe0c18a95
|
|
585
|
+
583, 0x308385f0efbb6474
|
|
586
|
+
584, 0xf23900481bf70445
|
|
587
|
+
585, 0xfdfe3ade7f937a55
|
|
588
|
+
586, 0xf37aae71c33c4f97
|
|
589
|
+
587, 0x1c81e3775a8bed85
|
|
590
|
+
588, 0x7eb5013882ce35ea
|
|
591
|
+
589, 0x37a1c1692495818d
|
|
592
|
+
590, 0x3f90ae118622a0ba
|
|
593
|
+
591, 0x58e4fe6fea29b037
|
|
594
|
+
592, 0xd10ff1d269808825
|
|
595
|
+
593, 0xbce30edb60c21bba
|
|
596
|
+
594, 0x123732329afd6fee
|
|
597
|
+
595, 0x429b4059f797d840
|
|
598
|
+
596, 0x421166568a8c4be1
|
|
599
|
+
597, 0x88f895c424c1bd7f
|
|
600
|
+
598, 0x2adaf7a7b9f781cb
|
|
601
|
+
599, 0xa425644b26cb698
|
|
602
|
+
600, 0x8cc44d2486cc5743
|
|
603
|
+
601, 0xdb9f357a33abf6ba
|
|
604
|
+
602, 0x1a57c4ea77a4d70c
|
|
605
|
+
603, 0x1dea29be75239e44
|
|
606
|
+
604, 0x463141a137121a06
|
|
607
|
+
605, 0x8fecfbbe0b8a9517
|
|
608
|
+
606, 0x92c83984b3566123
|
|
609
|
+
607, 0x3b1c69180ed28665
|
|
610
|
+
608, 0x14a6073425ea8717
|
|
611
|
+
609, 0x71f4c2b3283238d7
|
|
612
|
+
610, 0xb3d491e3152f19f
|
|
613
|
+
611, 0x3a0ba3a11ebac5d2
|
|
614
|
+
612, 0xddb4d1dd4c0f54ac
|
|
615
|
+
613, 0xdb8f36fe02414035
|
|
616
|
+
614, 0x1cf5df5031b1902c
|
|
617
|
+
615, 0x23a20ed12ef95870
|
|
618
|
+
616, 0xf113e573b2dedcbb
|
|
619
|
+
617, 0x308e2395cde0a9fa
|
|
620
|
+
618, 0xd377a22581c3a7da
|
|
621
|
+
619, 0xe0ced97a947a66fb
|
|
622
|
+
620, 0xe44f4de9cd754b00
|
|
623
|
+
621, 0x2344943337d9d1bf
|
|
624
|
+
622, 0x4b5ae5e2ea6e749c
|
|
625
|
+
623, 0x9b8d2e3ef41d1c01
|
|
626
|
+
624, 0x59a5a53ebbd24c6b
|
|
627
|
+
625, 0x4f7611bf9e8a06fb
|
|
628
|
+
626, 0xea38c7b61361cd06
|
|
629
|
+
627, 0xf125a2bfdd2c0c7
|
|
630
|
+
628, 0x2df8dcb5926b9ebb
|
|
631
|
+
629, 0x233e18720cc56988
|
|
632
|
+
630, 0x974c61379b4aa95e
|
|
633
|
+
631, 0xc7fe24c1c868910b
|
|
634
|
+
632, 0x818fd1affc82a842
|
|
635
|
+
633, 0xcee92a952a26d38e
|
|
636
|
+
634, 0x8962f575ebcbf43
|
|
637
|
+
635, 0x7770687e3678c460
|
|
638
|
+
636, 0xdfb1db4ed1298117
|
|
639
|
+
637, 0xb9db54cb03d434d3
|
|
640
|
+
638, 0x34aebbf2244257ad
|
|
641
|
+
639, 0xd836db0cb210c490
|
|
642
|
+
640, 0x935daed7138957cd
|
|
643
|
+
641, 0x3cd914b14e7948fd
|
|
644
|
+
642, 0xd0472e9ed0a0f7f0
|
|
645
|
+
643, 0xa9df33dca697f75e
|
|
646
|
+
644, 0x15e9ea259398721a
|
|
647
|
+
645, 0x23eeba0f970abd60
|
|
648
|
+
646, 0x2217fdf8bbe99a12
|
|
649
|
+
647, 0x5ea490a95717b198
|
|
650
|
+
648, 0xf4e2bfc28280b639
|
|
651
|
+
649, 0x9d19916072d6f05c
|
|
652
|
+
650, 0x5e0387cab1734c6a
|
|
653
|
+
651, 0x93c2c8ac26e5f01e
|
|
654
|
+
652, 0xb0d934354d957eb1
|
|
655
|
+
653, 0xee5099a1eef3188c
|
|
656
|
+
654, 0x8be0abca8edc1115
|
|
657
|
+
655, 0x989a60845dbf5aa3
|
|
658
|
+
656, 0x181c7ed964eee892
|
|
659
|
+
657, 0x49838ea07481288d
|
|
660
|
+
658, 0x17dbc75d66116b2e
|
|
661
|
+
659, 0xa4cafb7a87c0117e
|
|
662
|
+
660, 0xab2d0ae44cdc2e6e
|
|
663
|
+
661, 0xdf802f2457e7da6
|
|
664
|
+
662, 0x4b966c4b9187e124
|
|
665
|
+
663, 0x62de9db6f4811e1a
|
|
666
|
+
664, 0x1e20485968bc62
|
|
667
|
+
665, 0xe9ac288265caca94
|
|
668
|
+
666, 0xc5c694d349aa8c1a
|
|
669
|
+
667, 0x3d67f2083d9bdf10
|
|
670
|
+
668, 0x9a2468e503085486
|
|
671
|
+
669, 0x9d6acd3dc152d1a3
|
|
672
|
+
670, 0xca951e2aeee8df77
|
|
673
|
+
671, 0x2707371af9cdd7b0
|
|
674
|
+
672, 0x2347ae6a4eb5ecbd
|
|
675
|
+
673, 0x16abe5582cb426f
|
|
676
|
+
674, 0x523af4ff980bbccb
|
|
677
|
+
675, 0xb07a0f043e3694aa
|
|
678
|
+
676, 0x14d7c3da81b2de7
|
|
679
|
+
677, 0xf471f1b8ac22305b
|
|
680
|
+
678, 0xdb087ffff9e18520
|
|
681
|
+
679, 0x1a352db3574359e8
|
|
682
|
+
680, 0x48d5431502cc7476
|
|
683
|
+
681, 0x7c9b7e7003dfd1bf
|
|
684
|
+
682, 0x4f43a48aae987169
|
|
685
|
+
683, 0x9a5d3eb66dedb3e9
|
|
686
|
+
684, 0xa7b331af76a9f817
|
|
687
|
+
685, 0xba440154b118ab2d
|
|
688
|
+
686, 0x64d22344ce24c9c6
|
|
689
|
+
687, 0xa22377bd52bd043
|
|
690
|
+
688, 0x9dfa1bb18ca6c5f7
|
|
691
|
+
689, 0xdccf44a92f644c8b
|
|
692
|
+
690, 0xf623d0a49fd18145
|
|
693
|
+
691, 0x556d5c37978e28b3
|
|
694
|
+
692, 0xad96e32ce9d2bb8b
|
|
695
|
+
693, 0x2e479c120be52798
|
|
696
|
+
694, 0x7501cf871af7b2f7
|
|
697
|
+
695, 0xd02536a5d026a5b8
|
|
698
|
+
696, 0x4b37ff53e76ab5a4
|
|
699
|
+
697, 0xdb3a4039caaeab13
|
|
700
|
+
698, 0x6cbd65e3b700c7be
|
|
701
|
+
699, 0x7367abd98761a147
|
|
702
|
+
700, 0xf4f9ba216a35aa77
|
|
703
|
+
701, 0xf88ca25ce921eb86
|
|
704
|
+
702, 0xb211de082ec2cbf2
|
|
705
|
+
703, 0xdd94aa46ec57e12e
|
|
706
|
+
704, 0xa967d74ad8210240
|
|
707
|
+
705, 0xdaa1fada8cfa887
|
|
708
|
+
706, 0x85901d081c4488ee
|
|
709
|
+
707, 0xcf67f79a699ef06
|
|
710
|
+
708, 0x7f2f1f0de921ee14
|
|
711
|
+
709, 0x28bc61e9d3f2328b
|
|
712
|
+
710, 0x3332f2963faf18e5
|
|
713
|
+
711, 0x4167ac71fcf43a6
|
|
714
|
+
712, 0x843c1746b0160b74
|
|
715
|
+
713, 0xd9be80070c578a5e
|
|
716
|
+
714, 0xbd7250c9af1473e7
|
|
717
|
+
715, 0x43f78afaa3647899
|
|
718
|
+
716, 0x91c6b5dd715a75a5
|
|
719
|
+
717, 0x29cc66c8a07bfef3
|
|
720
|
+
718, 0x3f5c667311dc22be
|
|
721
|
+
719, 0x4f49cd47958260cd
|
|
722
|
+
720, 0xbef8be43d920b64e
|
|
723
|
+
721, 0x7a892a5f13061d8b
|
|
724
|
+
722, 0x9532f40125c819b1
|
|
725
|
+
723, 0x924fca3045f8a564
|
|
726
|
+
724, 0x9b2c6442453b0c20
|
|
727
|
+
725, 0x7e21009085b8e793
|
|
728
|
+
726, 0x9b98c17e17af59d2
|
|
729
|
+
727, 0xba61acb73e3ae89a
|
|
730
|
+
728, 0xb9d61a710555c138
|
|
731
|
+
729, 0xc2a425d80978974b
|
|
732
|
+
730, 0xa275e13592da7d67
|
|
733
|
+
731, 0xe962103202d9ad0f
|
|
734
|
+
732, 0xbdf8367a4d6f33fd
|
|
735
|
+
733, 0xe59beb2f8648bdc8
|
|
736
|
+
734, 0xb4c387d8fbc4ac1c
|
|
737
|
+
735, 0x5e3f276b63054b75
|
|
738
|
+
736, 0xf27e616aa54d8464
|
|
739
|
+
737, 0x3f271661d1cd7426
|
|
740
|
+
738, 0x43a69dbee7502c78
|
|
741
|
+
739, 0x8066fcea6df059a1
|
|
742
|
+
740, 0x3c10f19409bdc993
|
|
743
|
+
741, 0x6ba6f43fb21f23e0
|
|
744
|
+
742, 0x9e182d70a5bccf09
|
|
745
|
+
743, 0x1520783d2a63a199
|
|
746
|
+
744, 0xba1dcc0c70b9cace
|
|
747
|
+
745, 0x1009e1e9b1032d8
|
|
748
|
+
746, 0xf632f6a95fb0315
|
|
749
|
+
747, 0x48e711c7114cbfff
|
|
750
|
+
748, 0xef281dcec67debf7
|
|
751
|
+
749, 0x33789894d6abf59b
|
|
752
|
+
750, 0x6c8e541fffbe7f9c
|
|
753
|
+
751, 0x85417f13b08e0a88
|
|
754
|
+
752, 0x9a581e36d589608f
|
|
755
|
+
753, 0x461dca50b1befd35
|
|
756
|
+
754, 0x5a3231680dde6462
|
|
757
|
+
755, 0xcc57acf729780b97
|
|
758
|
+
756, 0x50301efef62e1054
|
|
759
|
+
757, 0x675d042cd4f6bbc9
|
|
760
|
+
758, 0x1652fdd3794384c9
|
|
761
|
+
759, 0x1c93bbeeb763cd4d
|
|
762
|
+
760, 0x44b7240c4b105242
|
|
763
|
+
761, 0x4c6af2a1b606ccfb
|
|
764
|
+
762, 0x18fc43ece2ec1a40
|
|
765
|
+
763, 0x859a5511aeae8acb
|
|
766
|
+
764, 0x2f56826f1996ad2f
|
|
767
|
+
765, 0xa8e95ce8bb363bdf
|
|
768
|
+
766, 0xf4da396054e50e4b
|
|
769
|
+
767, 0x5493865e9895883c
|
|
770
|
+
768, 0x768e4c8b332ac0e3
|
|
771
|
+
769, 0x32195d2aa583fca5
|
|
772
|
+
770, 0xf2f353f21266bc15
|
|
773
|
+
771, 0x43cddf1d021307d
|
|
774
|
+
772, 0x6031e3aa30300e4a
|
|
775
|
+
773, 0x4f1298469ac6088f
|
|
776
|
+
774, 0x4b4d450bafac574e
|
|
777
|
+
775, 0x23e1cf9c0582a22b
|
|
778
|
+
776, 0x2e9036980db49cd0
|
|
779
|
+
777, 0xe4e228b113c411b2
|
|
780
|
+
778, 0x8bddcdb82b51706
|
|
781
|
+
779, 0xd2a7ea8288593629
|
|
782
|
+
780, 0x67fe90e98fdda61
|
|
783
|
+
781, 0x7b63494dba95717b
|
|
784
|
+
782, 0x105625904510d782
|
|
785
|
+
783, 0xdf4aa2242454e50a
|
|
786
|
+
784, 0x32541d6cd7d6c7e3
|
|
787
|
+
785, 0x5661fb432591cf3b
|
|
788
|
+
786, 0xce920a5ed047bce7
|
|
789
|
+
787, 0xed4178a3c96eea8f
|
|
790
|
+
788, 0xe378cd996e39863b
|
|
791
|
+
789, 0x169e1fdc8e2b05e1
|
|
792
|
+
790, 0xaee1812ef7149a96
|
|
793
|
+
791, 0x648571c7453d12c5
|
|
794
|
+
792, 0xb7b6bc9328573c43
|
|
795
|
+
793, 0xe7fb969078e270d7
|
|
796
|
+
794, 0xdfc2b1b8985f6e6f
|
|
797
|
+
795, 0x862b6527ee39a1aa
|
|
798
|
+
796, 0x1ee329aea91d7882
|
|
799
|
+
797, 0x20d25324f2fe704
|
|
800
|
+
798, 0xbfcc47401fc3bbfd
|
|
801
|
+
799, 0x1515cdc8d48b2904
|
|
802
|
+
800, 0xbd6eefe86284261c
|
|
803
|
+
801, 0x9b1f28e3b35f22ee
|
|
804
|
+
802, 0x842a29d35e5aecda
|
|
805
|
+
803, 0xf2346109ad370765
|
|
806
|
+
804, 0x24d68add5a71afd9
|
|
807
|
+
805, 0x4a691421613d91e2
|
|
808
|
+
806, 0x60e3058b3c244051
|
|
809
|
+
807, 0x79194905cdaa5de8
|
|
810
|
+
808, 0xe0e2df35c01e8987
|
|
811
|
+
809, 0xe29b78beffbb5e4a
|
|
812
|
+
810, 0xcdcdbc020218c19e
|
|
813
|
+
811, 0x5ae0af8c16feae43
|
|
814
|
+
812, 0x8109292feeaf14fa
|
|
815
|
+
813, 0x34113f7508dfa521
|
|
816
|
+
814, 0xc062ac163f56730a
|
|
817
|
+
815, 0xf1660e66ec6d4c4c
|
|
818
|
+
816, 0x5966c55f60151c80
|
|
819
|
+
817, 0x3865ae8ec934b17
|
|
820
|
+
818, 0x472a7314afb055ec
|
|
821
|
+
819, 0x7a24277309a44a44
|
|
822
|
+
820, 0x556e02dd35d38baa
|
|
823
|
+
821, 0x9849611a1bc96ec1
|
|
824
|
+
822, 0xd176f5d5a8eb0843
|
|
825
|
+
823, 0x44db12ec60510030
|
|
826
|
+
824, 0x272e3a06a0030078
|
|
827
|
+
825, 0x7c4764dbefc075ea
|
|
828
|
+
826, 0x910712f3735c1183
|
|
829
|
+
827, 0xd49a2da74ae7aff6
|
|
830
|
+
828, 0xcf9b3e6e8f776d71
|
|
831
|
+
829, 0x27789fe3ec481a02
|
|
832
|
+
830, 0x86659f82c6b5912b
|
|
833
|
+
831, 0xe044b3dbf339158c
|
|
834
|
+
832, 0x99d81f6bb62a37b0
|
|
835
|
+
833, 0x5f5830c246fada9a
|
|
836
|
+
834, 0xe68abab1eeb432cb
|
|
837
|
+
835, 0x49c5c5ace04e104
|
|
838
|
+
836, 0x1ac3871b3fc6771b
|
|
839
|
+
837, 0x773b39f32d070652
|
|
840
|
+
838, 0x9c4138c2ae58b1f3
|
|
841
|
+
839, 0xac41c63d7452ac60
|
|
842
|
+
840, 0x9248826b245359e1
|
|
843
|
+
841, 0x99bba1c7a64f1670
|
|
844
|
+
842, 0xe0dc99ff4ebb92f2
|
|
845
|
+
843, 0x113638652740f87c
|
|
846
|
+
844, 0xebf51e94da88cfc
|
|
847
|
+
845, 0x5441c344b81b2585
|
|
848
|
+
846, 0xe1e69e0bc2de652a
|
|
849
|
+
847, 0xe9ab6d64ae42ed1e
|
|
850
|
+
848, 0x879af8730e305f31
|
|
851
|
+
849, 0x36b9ad912c7e00d6
|
|
852
|
+
850, 0x83ef5e9fca853886
|
|
853
|
+
851, 0xda54d48bb20ea974
|
|
854
|
+
852, 0x32c6d93aefa92aa2
|
|
855
|
+
853, 0x4e887b2c3391847d
|
|
856
|
+
854, 0x50966e815f42b1b8
|
|
857
|
+
855, 0x53411ac087832837
|
|
858
|
+
856, 0x46f64fef79df4f29
|
|
859
|
+
857, 0xb34aae3924cd272c
|
|
860
|
+
858, 0xf5ad455869a0adbe
|
|
861
|
+
859, 0x8351ded7144edac8
|
|
862
|
+
860, 0xeb558af089677494
|
|
863
|
+
861, 0x36ed71d69293a8d6
|
|
864
|
+
862, 0x659f90bf5431b254
|
|
865
|
+
863, 0x53349102b7519949
|
|
866
|
+
864, 0x3db83e20b1713610
|
|
867
|
+
865, 0x6d63f96090556254
|
|
868
|
+
866, 0x4cc0467e8f45c645
|
|
869
|
+
867, 0xb8840c4bd5cd4091
|
|
870
|
+
868, 0xbd381463cc93d584
|
|
871
|
+
869, 0x203410d878c2066d
|
|
872
|
+
870, 0x2ebea06213cf71c8
|
|
873
|
+
871, 0x598e8fb75e3fceb4
|
|
874
|
+
872, 0xdcca41ceba0fce02
|
|
875
|
+
873, 0x61bf69212b56aae5
|
|
876
|
+
874, 0x97eed7f70c9114fa
|
|
877
|
+
875, 0xf46f37a8b7a063f9
|
|
878
|
+
876, 0x66c8f4ffe5bd6efa
|
|
879
|
+
877, 0xe43fd6efda2d4e32
|
|
880
|
+
878, 0x12d6c799e5ad01de
|
|
881
|
+
879, 0x9ac83e7f8b709360
|
|
882
|
+
880, 0xbbb7bb3c1957513d
|
|
883
|
+
881, 0x7f87c08d4b3796b0
|
|
884
|
+
882, 0x9a7d1d74b6aa4a5c
|
|
885
|
+
883, 0xa4314530ff741b6f
|
|
886
|
+
884, 0x99a80c6b6f15fca8
|
|
887
|
+
885, 0xd2fec81d6d5fc3ce
|
|
888
|
+
886, 0x15a98be1cc40cea
|
|
889
|
+
887, 0x98693eb7719366f3
|
|
890
|
+
888, 0x36ccdc2a9e9d4de8
|
|
891
|
+
889, 0x3c8208f63d77df25
|
|
892
|
+
890, 0xca2e376e2343df6
|
|
893
|
+
891, 0xcc9b17cbb54420c6
|
|
894
|
+
892, 0x8724c44a64d7dcb8
|
|
895
|
+
893, 0x9d00c6949ff33869
|
|
896
|
+
894, 0xf4f8e584d2699372
|
|
897
|
+
895, 0x88f4748cdd5a2d53
|
|
898
|
+
896, 0xe215072a1205bc6d
|
|
899
|
+
897, 0x190934fe6d740442
|
|
900
|
+
898, 0x7fac5c0ab2af106d
|
|
901
|
+
899, 0x1b86633a0bd84fa1
|
|
902
|
+
900, 0x1293e54318492dfb
|
|
903
|
+
901, 0x433324fd390f34b9
|
|
904
|
+
902, 0x4c5eb2c67a44643b
|
|
905
|
+
903, 0x59a6e281c388b0dd
|
|
906
|
+
904, 0xe78e03f9c44623b7
|
|
907
|
+
905, 0x91307a93c768fc3d
|
|
908
|
+
906, 0xde8867b004d8e3ff
|
|
909
|
+
907, 0xdf52c3f57b7c5862
|
|
910
|
+
908, 0x993f3e1d10358a92
|
|
911
|
+
909, 0x9ccb10bc3e18662d
|
|
912
|
+
910, 0x45093ce48a114c73
|
|
913
|
+
911, 0xd59d05979d26330a
|
|
914
|
+
912, 0x417c0e03300119a9
|
|
915
|
+
913, 0x1c336500f90cde81
|
|
916
|
+
914, 0x1c8ccd29ead9b85b
|
|
917
|
+
915, 0xb76baf3e55d4d950
|
|
918
|
+
916, 0x133ad6196c75fd7e
|
|
919
|
+
917, 0x34200b0cde7ed560
|
|
920
|
+
918, 0x9c7c3dacb213c8d9
|
|
921
|
+
919, 0xd97563c4fd9bf1b6
|
|
922
|
+
920, 0x5d910e871835b6cb
|
|
923
|
+
921, 0x7d46c4733a16bdf9
|
|
924
|
+
922, 0xe41d73194ddc87b2
|
|
925
|
+
923, 0x7d3d8a0855a465a9
|
|
926
|
+
924, 0x70c2a8b5d3f90c0f
|
|
927
|
+
925, 0x9e7565ca5dccfe12
|
|
928
|
+
926, 0x2c0acb4577aa51b1
|
|
929
|
+
927, 0x3d2cd211145b79c7
|
|
930
|
+
928, 0x15a7b17aa6da7732
|
|
931
|
+
929, 0xab44a3730c27d780
|
|
932
|
+
930, 0xf008bd6c802bde3a
|
|
933
|
+
931, 0x82ed86ddf3619f77
|
|
934
|
+
932, 0xaabe982ab15c49f9
|
|
935
|
+
933, 0x9bcad8fa6d8e58a4
|
|
936
|
+
934, 0x8f39ed8243718aa1
|
|
937
|
+
935, 0xe9489340e03e3cb6
|
|
938
|
+
936, 0xc722314f5eefb8d0
|
|
939
|
+
937, 0x870e8869a436df59
|
|
940
|
+
938, 0x4dae75b8087a8204
|
|
941
|
+
939, 0xe1d790f6ec6e425b
|
|
942
|
+
940, 0xafd39ea1b1d0ed09
|
|
943
|
+
941, 0xdf2c99e464ddf08f
|
|
944
|
+
942, 0x74936d859ab9644d
|
|
945
|
+
943, 0x3871302164250e73
|
|
946
|
+
944, 0x764b68921e911886
|
|
947
|
+
945, 0x2a1d024b26bb9d66
|
|
948
|
+
946, 0x797fba43918e75b4
|
|
949
|
+
947, 0x62ec6d24ccca335b
|
|
950
|
+
948, 0xf4bd8b951762b520
|
|
951
|
+
949, 0x9d450dede9119397
|
|
952
|
+
950, 0x5393a26d10f8c124
|
|
953
|
+
951, 0x6b74769392896b57
|
|
954
|
+
952, 0x7f61dbcc0e328581
|
|
955
|
+
953, 0x64e1df3884d0d94
|
|
956
|
+
954, 0xba77dcdf23738c37
|
|
957
|
+
955, 0xf8e288bc0a177475
|
|
958
|
+
956, 0x4a8abfd1702ecb7d
|
|
959
|
+
957, 0x53f22886694736a7
|
|
960
|
+
958, 0x8fc982597ced3e3
|
|
961
|
+
959, 0x1bc46090f820fff7
|
|
962
|
+
960, 0x8bd31f965d02229f
|
|
963
|
+
961, 0x65cd0cb29996ee53
|
|
964
|
+
962, 0x702e0f4fcf8c2e9f
|
|
965
|
+
963, 0x293b77bff307a9a0
|
|
966
|
+
964, 0x125a986b8b305788
|
|
967
|
+
965, 0x416b0eea428ebf3c
|
|
968
|
+
966, 0xeac85421ab0e8469
|
|
969
|
+
967, 0x7f5496095019aa68
|
|
970
|
+
968, 0x1a96d7afbc708e0
|
|
971
|
+
969, 0xb91262e6766e01e1
|
|
972
|
+
970, 0xd0a549cc4ccc6954
|
|
973
|
+
971, 0x75a9a073f50c8a0d
|
|
974
|
+
972, 0xae275d2c1c6cd23c
|
|
975
|
+
973, 0xcf159b5ec5d28fd4
|
|
976
|
+
974, 0x75d0838ce9b92b
|
|
977
|
+
975, 0xd4eddcee6dc4677f
|
|
978
|
+
976, 0x6a0a8ad5df6b75b8
|
|
979
|
+
977, 0x6f3fd0ef0f13ecc4
|
|
980
|
+
978, 0xb75a5826c1a8f8a8
|
|
981
|
+
979, 0xd47098bbc7943766
|
|
982
|
+
980, 0x3d4ddd62d5f23dd1
|
|
983
|
+
981, 0x760a904e4583841c
|
|
984
|
+
982, 0x2afeb5022b4cf1f
|
|
985
|
+
983, 0x66d5f653729f0a13
|
|
986
|
+
984, 0x9a6a5ab62980d30f
|
|
987
|
+
985, 0xc332f5643bbf8d5b
|
|
988
|
+
986, 0x848fb702e4056a90
|
|
989
|
+
987, 0xa057beaf3f9e8c5f
|
|
990
|
+
988, 0x6cc603e4560a6c6a
|
|
991
|
+
989, 0xec761811a7b23211
|
|
992
|
+
990, 0xb14aa4090a82aaa5
|
|
993
|
+
991, 0xe29d9d028a5b2dbb
|
|
994
|
+
992, 0x5564e53738d68f97
|
|
995
|
+
993, 0xfabca36542eaaf3b
|
|
996
|
+
994, 0xb9912fcb782020a2
|
|
997
|
+
995, 0xe865e01b349284fd
|
|
998
|
+
996, 0x540b5ff11c5f9274
|
|
999
|
+
997, 0x3463f64e1e7451dc
|
|
1000
|
+
998, 0xe15d3e2f33b735f8
|
|
1001
|
+
999, 0xf5433336eadef6e
|