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, 0x0
|
|
2
|
+
0, 0xa30febcfd9c2825f
|
|
3
|
+
1, 0x4510bdf882d9d721
|
|
4
|
+
2, 0xa7d3da94ecde8b8
|
|
5
|
+
3, 0x43b27b61342f01d
|
|
6
|
+
4, 0xd0327a782cde513b
|
|
7
|
+
5, 0xe9aa5979a6401c4e
|
|
8
|
+
6, 0x9b4c7b7180edb27f
|
|
9
|
+
7, 0xbac0495ff8829a45
|
|
10
|
+
8, 0x8b2b01e7a1dc7fbf
|
|
11
|
+
9, 0xef60e8078f56bfed
|
|
12
|
+
10, 0xd0dbc74d4700374c
|
|
13
|
+
11, 0xb37868abbe90b0
|
|
14
|
+
12, 0xdb7ed8bf64e6f5f0
|
|
15
|
+
13, 0x89910738de7951f
|
|
16
|
+
14, 0xbacab307c3cfd379
|
|
17
|
+
15, 0x2cf7c449d8b927a6
|
|
18
|
+
16, 0xdcf94b3a16db7f0e
|
|
19
|
+
17, 0x8a9d33d905a8792e
|
|
20
|
+
18, 0x4cb9eb2014951238
|
|
21
|
+
19, 0x6c353acf7b26d6f1
|
|
22
|
+
20, 0x73ff53d673aa30c
|
|
23
|
+
21, 0x1fd10760015eca68
|
|
24
|
+
22, 0xabae0aa9021eeba8
|
|
25
|
+
23, 0xa5ae363a868ee2bb
|
|
26
|
+
24, 0x9d89e0f041de6631
|
|
27
|
+
25, 0x6238b133c3991a65
|
|
28
|
+
26, 0xff49267d75fef51a
|
|
29
|
+
27, 0xfb180656ce13c53f
|
|
30
|
+
28, 0xaf7fadf36128712d
|
|
31
|
+
29, 0xa6847fc6f339c63e
|
|
32
|
+
30, 0xb03e0b80d71ea5bc
|
|
33
|
+
31, 0x63905abcb43969af
|
|
34
|
+
32, 0x2295af3ee00a3bba
|
|
35
|
+
33, 0xb8b375b994330415
|
|
36
|
+
34, 0x867d9ef1d8716a3b
|
|
37
|
+
35, 0x4f6c02f5601b4e18
|
|
38
|
+
36, 0x7c5fb4c16c470d18
|
|
39
|
+
37, 0xe3b57986b804b343
|
|
40
|
+
38, 0xef1d79d212aca692
|
|
41
|
+
39, 0x5b98774c8806209c
|
|
42
|
+
40, 0x924fc76bac38a5d1
|
|
43
|
+
41, 0x5266084c412ddeed
|
|
44
|
+
42, 0x98240bf9b831d6a3
|
|
45
|
+
43, 0x5681599e81219442
|
|
46
|
+
44, 0x6441248fc2ba92bc
|
|
47
|
+
45, 0xe3e9051a540349ea
|
|
48
|
+
46, 0x3a2700034390baa3
|
|
49
|
+
47, 0x9f893155b6d402bc
|
|
50
|
+
48, 0x158207910c6d8aef
|
|
51
|
+
49, 0xd5282ab7608c2cbc
|
|
52
|
+
50, 0xc97f4651669dee4f
|
|
53
|
+
51, 0x3d4750d95103ed60
|
|
54
|
+
52, 0xe0614542caac1f04
|
|
55
|
+
53, 0xefe5092144cfc6c
|
|
56
|
+
54, 0x560bc486abd7e9ae
|
|
57
|
+
55, 0x2678b71392daa4b8
|
|
58
|
+
56, 0x734970d3dc2ba416
|
|
59
|
+
57, 0xcbdbe849e51e4aaf
|
|
60
|
+
58, 0x3b0b5e28b491556c
|
|
61
|
+
59, 0xd51449ac45abd88
|
|
62
|
+
60, 0x6790b59991f1b7ab
|
|
63
|
+
61, 0x32d1c039ff2415bc
|
|
64
|
+
62, 0x173b9772f24f72e0
|
|
65
|
+
63, 0x9490a9ca9f883b1b
|
|
66
|
+
64, 0x4c775989e6214222
|
|
67
|
+
65, 0xac07db37e6ee6114
|
|
68
|
+
66, 0x331371b2e3f10aee
|
|
69
|
+
67, 0xf12e5326c21c28e4
|
|
70
|
+
68, 0x5d77dc280c70d614
|
|
71
|
+
69, 0x1b01bd17a2f281ec
|
|
72
|
+
70, 0xa10d3b5882938487
|
|
73
|
+
71, 0xed5a0033c394ae8f
|
|
74
|
+
72, 0x70bc8ea568ea44b4
|
|
75
|
+
73, 0xf4600ae77965e730
|
|
76
|
+
74, 0x7ff92c0b321ce233
|
|
77
|
+
75, 0x6cdbc87d0cc1d670
|
|
78
|
+
76, 0x9ec64f0cf2000eb1
|
|
79
|
+
77, 0xfebea50259800f68
|
|
80
|
+
78, 0xf2edf9019a8fd343
|
|
81
|
+
79, 0x75c584ac042e5468
|
|
82
|
+
80, 0xc1fa8481d5bf9a1d
|
|
83
|
+
81, 0x7f57180168514ac2
|
|
84
|
+
82, 0x878100716b94f81e
|
|
85
|
+
83, 0xc929406e3af17fd2
|
|
86
|
+
84, 0x6a26e2c013e4bf4d
|
|
87
|
+
85, 0xbc071d8848280955
|
|
88
|
+
86, 0xb60d75abbfd1bdac
|
|
89
|
+
87, 0xee9b76afeca9fa69
|
|
90
|
+
88, 0x1d6c399d2f452810
|
|
91
|
+
89, 0xbaa0bc1621e25c83
|
|
92
|
+
90, 0xed6ba792f8671ba5
|
|
93
|
+
91, 0xf7ca02c2ab11d8d7
|
|
94
|
+
92, 0x3c3cadadf0b21e3
|
|
95
|
+
93, 0xdd1784571e864e9c
|
|
96
|
+
94, 0xfb2f992015157509
|
|
97
|
+
95, 0xf50bb9f0d3ced743
|
|
98
|
+
96, 0x261565f75c3e185f
|
|
99
|
+
97, 0xf8fe33b284513e60
|
|
100
|
+
98, 0xe3d2d10b5e024664
|
|
101
|
+
99, 0xd28717566242cf35
|
|
102
|
+
100, 0x7ae07d133ac5b789
|
|
103
|
+
101, 0x3b7ccaaa53ac338e
|
|
104
|
+
102, 0xcd480bace4871650
|
|
105
|
+
103, 0xec6c78f923c080e9
|
|
106
|
+
104, 0x44211d0ff8919d59
|
|
107
|
+
105, 0x89f79af76d2a45fe
|
|
108
|
+
106, 0x71583fd8a837548b
|
|
109
|
+
107, 0xee57269c261511f5
|
|
110
|
+
108, 0xa5ee8f3b128c5d1
|
|
111
|
+
109, 0xbb64c20ed0765a17
|
|
112
|
+
110, 0x9d4790ab2eeaf7e4
|
|
113
|
+
111, 0x742f3db806d9e98
|
|
114
|
+
112, 0xb81ec97aed6a0d1b
|
|
115
|
+
113, 0x41808b34f6a8a23
|
|
116
|
+
114, 0xc20913af175dfd4d
|
|
117
|
+
115, 0x834427db263b22bb
|
|
118
|
+
116, 0xedd9c632e611828a
|
|
119
|
+
117, 0x10eac8524496f571
|
|
120
|
+
118, 0xd76091b97eb00ab7
|
|
121
|
+
119, 0x111298ae9fe95666
|
|
122
|
+
120, 0x5824b2e2a6719c43
|
|
123
|
+
121, 0x6e280ec539e934ed
|
|
124
|
+
122, 0xf74fd832df90083e
|
|
125
|
+
123, 0x8fee6d0f241c2e97
|
|
126
|
+
124, 0x4244f331c2f19c3c
|
|
127
|
+
125, 0x3dde75a845cce97f
|
|
128
|
+
126, 0xe35bb8e635a9915b
|
|
129
|
+
127, 0x39d2943037f7932e
|
|
130
|
+
128, 0x1fe2d134201d0970
|
|
131
|
+
129, 0x49d00b63c749b804
|
|
132
|
+
130, 0x960c2942cd4e4e04
|
|
133
|
+
131, 0x8dd8e009dbc0435f
|
|
134
|
+
132, 0xcf493495c3a055cd
|
|
135
|
+
133, 0x8f7b5a1c0f9fe9cd
|
|
136
|
+
134, 0x49d5f90374641a25
|
|
137
|
+
135, 0x69b3932073d3524c
|
|
138
|
+
136, 0xd170603e7de84ee2
|
|
139
|
+
137, 0xa062ba3ed3539948
|
|
140
|
+
138, 0xf5861cc5b5d56c82
|
|
141
|
+
139, 0x5e914998a30c7e76
|
|
142
|
+
140, 0x8d77f2ad1503c0f1
|
|
143
|
+
141, 0x980b6a9e3b4181fb
|
|
144
|
+
142, 0xd9299cd50694c084
|
|
145
|
+
143, 0x253dc0f8f1cec4c5
|
|
146
|
+
144, 0x68110fb9d1b3e695
|
|
147
|
+
145, 0xe8f3120d0aabc461
|
|
148
|
+
146, 0xb066e7df0dfb042
|
|
149
|
+
147, 0xd29ce0f797e6b60b
|
|
150
|
+
148, 0x6a569bb7ca33bd42
|
|
151
|
+
149, 0xd46e08b2dc2385f8
|
|
152
|
+
150, 0x28c61d11d055767
|
|
153
|
+
151, 0x5d73aa3d1a2bb725
|
|
154
|
+
152, 0x1421191e1c14829a
|
|
155
|
+
153, 0xa711bfb6423df35e
|
|
156
|
+
154, 0x461af97a86308006
|
|
157
|
+
155, 0xb3e1018ff3519367
|
|
158
|
+
156, 0xf19cf866a268ef2b
|
|
159
|
+
157, 0x207715eac9199d1d
|
|
160
|
+
158, 0xdd621c410975b78c
|
|
161
|
+
159, 0xf390aea68683610
|
|
162
|
+
160, 0x617a2d107a0047d9
|
|
163
|
+
161, 0x6e05ac416e5bebf0
|
|
164
|
+
162, 0x7d253e70506c1bed
|
|
165
|
+
163, 0xf9f96f4a7dd53810
|
|
166
|
+
164, 0xc693b29cb1573f73
|
|
167
|
+
165, 0x4f1146b0020ea544
|
|
168
|
+
166, 0x45140608fbd40579
|
|
169
|
+
167, 0xdcf57219828ce6be
|
|
170
|
+
168, 0xe19d58cca37b5b32
|
|
171
|
+
169, 0x82bda95b2a161235
|
|
172
|
+
170, 0x5823c3d8a2b6c9ba
|
|
173
|
+
171, 0xfeb2e74092fdf89a
|
|
174
|
+
172, 0x50e1ad1abc8f869d
|
|
175
|
+
173, 0x2ec63d0c105eb8da
|
|
176
|
+
174, 0xe14e1c4845a3264a
|
|
177
|
+
175, 0xcff53670455eb6aa
|
|
178
|
+
176, 0xaafaccd24619fa3e
|
|
179
|
+
177, 0xf55a988486e2422a
|
|
180
|
+
178, 0xecfba16a90ff4d04
|
|
181
|
+
179, 0xbf8d36c2f644757a
|
|
182
|
+
180, 0xdc56ed75a0dd6249
|
|
183
|
+
181, 0x3f45023eff17c3bb
|
|
184
|
+
182, 0x2428bbfe90023fab
|
|
185
|
+
183, 0xab892c611adcb70c
|
|
186
|
+
184, 0xb6f13d8c0c2b9d74
|
|
187
|
+
185, 0x2ac3fb11d224f2a8
|
|
188
|
+
186, 0x65433dcfae2d9351
|
|
189
|
+
187, 0xe906859ae4b45f82
|
|
190
|
+
188, 0x8fb7f5f093d76a3b
|
|
191
|
+
189, 0x940dd290b5e88d1a
|
|
192
|
+
190, 0x31b27d21bef116e7
|
|
193
|
+
191, 0x86a964e2c83b5296
|
|
194
|
+
192, 0x85ffd17bc079a9e8
|
|
195
|
+
193, 0x16c47c724e7ab7f1
|
|
196
|
+
194, 0xfb6098a9867e7d7f
|
|
197
|
+
195, 0x9246fb69092c6cb2
|
|
198
|
+
196, 0x1a4033572760f32
|
|
199
|
+
197, 0xc5cc568a8b273b84
|
|
200
|
+
198, 0xfa6f9f2fbdd44abc
|
|
201
|
+
199, 0x9701b8e087718ba3
|
|
202
|
+
200, 0x51d6a7dcf73f8f3a
|
|
203
|
+
201, 0x30008172cc6a972d
|
|
204
|
+
202, 0xac2ab49a5ca6ac81
|
|
205
|
+
203, 0x31f28ef79461e54c
|
|
206
|
+
204, 0x93e35a8da8cc6132
|
|
207
|
+
205, 0x9a2c58beeba3d5b9
|
|
208
|
+
206, 0xf6615c1de266ac39
|
|
209
|
+
207, 0x127ff9f8166b766b
|
|
210
|
+
208, 0x7ffe380e80a69556
|
|
211
|
+
209, 0xbe7d2c228e1542f7
|
|
212
|
+
210, 0x2d5ebb4e50ba1746
|
|
213
|
+
211, 0x63585761ae1bf684
|
|
214
|
+
212, 0x1019eb5cee022fea
|
|
215
|
+
213, 0xb9d3540ab58da30d
|
|
216
|
+
214, 0x1677f4cb45620eb9
|
|
217
|
+
215, 0x6524baee51783822
|
|
218
|
+
216, 0xdf9f2ddcfabb0adc
|
|
219
|
+
217, 0x78e8acc43b287935
|
|
220
|
+
218, 0xe9a1974e999222b5
|
|
221
|
+
219, 0xc41324ec2291e780
|
|
222
|
+
220, 0xea52abc9ecdcbc9f
|
|
223
|
+
221, 0x209d7bcd46ec6b04
|
|
224
|
+
222, 0x12d504c09803db2e
|
|
225
|
+
223, 0x1200e6bf21475d81
|
|
226
|
+
224, 0xde6d3c2b35fd2cfc
|
|
227
|
+
225, 0xa2526900ac33bd3c
|
|
228
|
+
226, 0x7f1f5290fc432bc5
|
|
229
|
+
227, 0x29ddfb380a3d69c8
|
|
230
|
+
228, 0xac79cb6942a2909d
|
|
231
|
+
229, 0x516996685b67a92a
|
|
232
|
+
230, 0xb5fc39041cb828bb
|
|
233
|
+
231, 0x75d9d8ca0644a276
|
|
234
|
+
232, 0x81e98b76be92a3e9
|
|
235
|
+
233, 0xca27888fafe12179
|
|
236
|
+
234, 0x17be2ae039925765
|
|
237
|
+
235, 0x9429846c0e6d0342
|
|
238
|
+
236, 0x327dfd50439815e9
|
|
239
|
+
237, 0xcee20cd7bc254aeb
|
|
240
|
+
238, 0x7d250389f453f29e
|
|
241
|
+
239, 0xfd1b232a85c95569
|
|
242
|
+
240, 0x2ed55fac80f3e9e9
|
|
243
|
+
241, 0xf6886c20417a1be7
|
|
244
|
+
242, 0xcd08e61f0b0fdfde
|
|
245
|
+
243, 0x7b33e34da5c27bff
|
|
246
|
+
244, 0xd043c4b7d5603dd5
|
|
247
|
+
245, 0x9a544e4c70a3b686
|
|
248
|
+
246, 0xa7b60398c381f771
|
|
249
|
+
247, 0xe9e7a3487c4bd4f2
|
|
250
|
+
248, 0x10b58fdfe1ff112c
|
|
251
|
+
249, 0xd5c1c9748c0f4ceb
|
|
252
|
+
250, 0x61be9d09159d54ff
|
|
253
|
+
251, 0x5356f51e8239f510
|
|
254
|
+
252, 0xfe7889d9b202ecef
|
|
255
|
+
253, 0xc7fc19ca5d263d5d
|
|
256
|
+
254, 0x7c4c07e61dfd9f69
|
|
257
|
+
255, 0x6c315fe5015f300a
|
|
258
|
+
256, 0xe0a5bc00039747b4
|
|
259
|
+
257, 0x16397fdcf829ee80
|
|
260
|
+
258, 0xb55aee80d16a5169
|
|
261
|
+
259, 0xca0609944d007eea
|
|
262
|
+
260, 0xcc982249f65a02ce
|
|
263
|
+
261, 0x528161feb149c148
|
|
264
|
+
262, 0xcbf08ba49b41c006
|
|
265
|
+
263, 0x39af1ff0b6f14138
|
|
266
|
+
264, 0x5cc036be69799aec
|
|
267
|
+
265, 0x6adde125b1db21c5
|
|
268
|
+
266, 0x8a99d83d6b613b67
|
|
269
|
+
267, 0x1cd43fca9451f74c
|
|
270
|
+
268, 0x682dbb26ecc96365
|
|
271
|
+
269, 0x13b4be2ceb43e3
|
|
272
|
+
270, 0xbe8fbc3b6f4f581e
|
|
273
|
+
271, 0xda148a2f4bda5719
|
|
274
|
+
272, 0x239106ca3319f393
|
|
275
|
+
273, 0xb42b4dde641f0dd5
|
|
276
|
+
274, 0xd233cfdf4cb0af74
|
|
277
|
+
275, 0xfb5919d905589afc
|
|
278
|
+
276, 0xd802a8860c10b66a
|
|
279
|
+
277, 0x6c923e1d00e7b5bc
|
|
280
|
+
278, 0xfacce1134f383b89
|
|
281
|
+
279, 0xf9570abda7a6d553
|
|
282
|
+
280, 0x80f0f9796a208f18
|
|
283
|
+
281, 0xc0e1df5280951c57
|
|
284
|
+
282, 0xe9f143f08257bbe0
|
|
285
|
+
283, 0x79e4c6463123d588
|
|
286
|
+
284, 0xdd2118583f2b1684
|
|
287
|
+
285, 0xb399ff5f2329fa18
|
|
288
|
+
286, 0x4b3e9ebae96f813c
|
|
289
|
+
287, 0xc484dbf247787384
|
|
290
|
+
288, 0x921865eb97603f2c
|
|
291
|
+
289, 0x18063c68e257d300
|
|
292
|
+
290, 0x643181f345e7fc26
|
|
293
|
+
291, 0x12e0b0e8eadf9fa7
|
|
294
|
+
292, 0x79e613fe73dfa354
|
|
295
|
+
293, 0x6db4c59203b7217a
|
|
296
|
+
294, 0x6c7a0e9ba6139eaf
|
|
297
|
+
295, 0x9617c7ac4e3f6d97
|
|
298
|
+
296, 0x1f68a7b4fb1b4b75
|
|
299
|
+
297, 0xef0b7ab24944f466
|
|
300
|
+
298, 0xaf1dee1f4be1bc89
|
|
301
|
+
299, 0xd2e355c959f5fd8d
|
|
302
|
+
300, 0xe594c3fb95d96efc
|
|
303
|
+
301, 0x9554766ca3342906
|
|
304
|
+
302, 0xa4bbdc77d12842c
|
|
305
|
+
303, 0xb62400211ee489a8
|
|
306
|
+
304, 0x91abadaaa3bbe67c
|
|
307
|
+
305, 0xd371eeb91deb42bb
|
|
308
|
+
306, 0x883bab35cbd2b6e5
|
|
309
|
+
307, 0xd030c3d9411a9041
|
|
310
|
+
308, 0xff3c110a858ff000
|
|
311
|
+
309, 0x59bdf5ca47d0bde7
|
|
312
|
+
310, 0x2bc80fa3cdba1853
|
|
313
|
+
311, 0x6444ccb652662cb8
|
|
314
|
+
312, 0xc0c7e256b9e90339
|
|
315
|
+
313, 0x70714ea9c9d72302
|
|
316
|
+
314, 0x96a0142f9d897d27
|
|
317
|
+
315, 0x209a9097c5a91ef7
|
|
318
|
+
316, 0xb9e33afc5171e009
|
|
319
|
+
317, 0x47b37af433a58d40
|
|
320
|
+
318, 0x30cc4ffbfa831d26
|
|
321
|
+
319, 0xdcea4a85ff815466
|
|
322
|
+
320, 0x907d5bd027f2e5cc
|
|
323
|
+
321, 0x7c081f6852e04a4b
|
|
324
|
+
322, 0xe61950749c1d502b
|
|
325
|
+
323, 0x1604e937ee69834a
|
|
326
|
+
324, 0xb2372d952dd25309
|
|
327
|
+
325, 0x53f6a5b834c72577
|
|
328
|
+
326, 0x2ce7a74395e0b694
|
|
329
|
+
327, 0xacbf9ab4fe91f225
|
|
330
|
+
328, 0x5ce1e63d3a2bb90f
|
|
331
|
+
329, 0x54740da3a5ed139b
|
|
332
|
+
330, 0xf194ddb39f29880b
|
|
333
|
+
331, 0x3305374f5d8ec08b
|
|
334
|
+
332, 0x831dd0164927ff4a
|
|
335
|
+
333, 0x625baa78e4458cf
|
|
336
|
+
334, 0x29d27dc0a4a71152
|
|
337
|
+
335, 0xe227bae9a1401034
|
|
338
|
+
336, 0xca0c209831846b2b
|
|
339
|
+
337, 0x8e8cc54b08b5a411
|
|
340
|
+
338, 0x38f2b4acaac27db6
|
|
341
|
+
339, 0x8ec88baac814e86b
|
|
342
|
+
340, 0x31c08e46b007bde
|
|
343
|
+
341, 0xb686c02722794c09
|
|
344
|
+
342, 0xb77cf8fc682e3907
|
|
345
|
+
343, 0xa56334e7f606f4b2
|
|
346
|
+
344, 0x9c80b127bddd5f4f
|
|
347
|
+
345, 0x12df14834cd858bf
|
|
348
|
+
346, 0x3f14762a9cf5fb9f
|
|
349
|
+
347, 0x930a70941ef5779e
|
|
350
|
+
348, 0x64e96c849c30c080
|
|
351
|
+
349, 0xfdf53bfba1300484
|
|
352
|
+
350, 0xec7a9363c21bc616
|
|
353
|
+
351, 0x26e9fd6a115ecb47
|
|
354
|
+
352, 0x9707a84b5bc77fbb
|
|
355
|
+
353, 0xb23b2737b20d5903
|
|
356
|
+
354, 0x22f4825ae80f6501
|
|
357
|
+
355, 0x500644b12be6a01b
|
|
358
|
+
356, 0xb746645b2af082db
|
|
359
|
+
357, 0xe6af051f697892f8
|
|
360
|
+
358, 0x577c724248a1cfc6
|
|
361
|
+
359, 0x3d2b6a434c84eed3
|
|
362
|
+
360, 0xd260f5efd7328314
|
|
363
|
+
361, 0x95c16cc84bb3f55c
|
|
364
|
+
362, 0x7a01b2e4e0e80ca7
|
|
365
|
+
363, 0x41930c3ce70a0935
|
|
366
|
+
364, 0x1299bccf39d4e110
|
|
367
|
+
365, 0x494883ba1a8a87f
|
|
368
|
+
366, 0x9478ecfe2d918e60
|
|
369
|
+
367, 0x30ec9a5670cda8af
|
|
370
|
+
368, 0xf9bc877e833e2b99
|
|
371
|
+
369, 0x1b83a0acfbb4a8db
|
|
372
|
+
370, 0x73bc1740c0d18880
|
|
373
|
+
371, 0x65086ca9773cb3e1
|
|
374
|
+
372, 0x3b78c3ccd63cff2e
|
|
375
|
+
373, 0xbfae748795acfb31
|
|
376
|
+
374, 0xa4c9d5d56a15ba20
|
|
377
|
+
375, 0xb9cb41721e52b71e
|
|
378
|
+
376, 0x1532f15d4dc47748
|
|
379
|
+
377, 0x5a4d647a4b9ee632
|
|
380
|
+
378, 0x8513c7c5a50898d9
|
|
381
|
+
379, 0x6d3d98ccd5461b2e
|
|
382
|
+
380, 0xa65e99be2fe98d6
|
|
383
|
+
381, 0x31abc8855334a0e5
|
|
384
|
+
382, 0xf1ed22a661dca5b8
|
|
385
|
+
383, 0x299e2b63229e03be
|
|
386
|
+
384, 0xda201a06687bce48
|
|
387
|
+
385, 0xd27794b302142c55
|
|
388
|
+
386, 0x642bd3e1c7898a9d
|
|
389
|
+
387, 0x777f1ff00afa1a87
|
|
390
|
+
388, 0xd2f1c84fb3877baa
|
|
391
|
+
389, 0xae417583289191fd
|
|
392
|
+
390, 0xd641f1d88e0e2d55
|
|
393
|
+
391, 0xc1f1d98fb5d18ebf
|
|
394
|
+
392, 0xb0f72aecdadce97b
|
|
395
|
+
393, 0xe9b8abc764f6018a
|
|
396
|
+
394, 0xd2a37cff8e890594
|
|
397
|
+
395, 0x2dd70d631a528771
|
|
398
|
+
396, 0xbf8ba0478c18e336
|
|
399
|
+
397, 0x1630bf47f372ce0a
|
|
400
|
+
398, 0x6d04ea20dc3f46b8
|
|
401
|
+
399, 0x6591881bf34337f2
|
|
402
|
+
400, 0x33c149c7eb5b4103
|
|
403
|
+
401, 0xf01a8c9857c86748
|
|
404
|
+
402, 0x184348cdfc16d215
|
|
405
|
+
403, 0x141168b253d2ed7
|
|
406
|
+
404, 0x52aaf012ef50a6f1
|
|
407
|
+
405, 0xfda1722387e16f4c
|
|
408
|
+
406, 0x43c30f57d6c038fa
|
|
409
|
+
407, 0xd4a8611f5f96d214
|
|
410
|
+
408, 0x2c512ce17e987f2c
|
|
411
|
+
409, 0x961ce450f0fa2822
|
|
412
|
+
410, 0xf55a506ec6cea9cd
|
|
413
|
+
411, 0xb76d694d9c7f5ef6
|
|
414
|
+
412, 0xfb029216dbd8e988
|
|
415
|
+
413, 0x93162501896a0081
|
|
416
|
+
414, 0xfbbbd2c5ab300f5c
|
|
417
|
+
415, 0xd648b6da7387d491
|
|
418
|
+
416, 0xc73b4697471d9d98
|
|
419
|
+
417, 0xe37412bf1c93ee76
|
|
420
|
+
418, 0xa1a96d96570e6637
|
|
421
|
+
419, 0x5b3ab4f82428f65c
|
|
422
|
+
420, 0x873d849b188aa36f
|
|
423
|
+
421, 0x39fbee0ffc9fa9ff
|
|
424
|
+
422, 0xc70d21b744d677fe
|
|
425
|
+
423, 0x2b8a43c23043d209
|
|
426
|
+
424, 0x93c33eaa37370d16
|
|
427
|
+
425, 0x8930ac1880f2b0ef
|
|
428
|
+
426, 0xac01d27707036af0
|
|
429
|
+
427, 0xc2af3fee504343a0
|
|
430
|
+
428, 0x1c1dae2ad5535d97
|
|
431
|
+
429, 0x9ffc21804b76a480
|
|
432
|
+
430, 0x69f903412cc13563
|
|
433
|
+
431, 0x9d3c4e2759a0c47d
|
|
434
|
+
432, 0xb1a8f894be6302b9
|
|
435
|
+
433, 0x95e1fd7951479506
|
|
436
|
+
434, 0xbb9e6c03cd4ae8e3
|
|
437
|
+
435, 0x85206010c9b737cf
|
|
438
|
+
436, 0x767e813694d6238c
|
|
439
|
+
437, 0x4969af329ccbb30a
|
|
440
|
+
438, 0x3aa9af1075aaea5c
|
|
441
|
+
439, 0xb1ff519e8118a993
|
|
442
|
+
440, 0xb21a23a3c91180fe
|
|
443
|
+
441, 0x320b24582ca3fd88
|
|
444
|
+
442, 0xf8ca56415fb4e453
|
|
445
|
+
443, 0xabd0899c07205e77
|
|
446
|
+
444, 0x87fdc7a44b4ad50f
|
|
447
|
+
445, 0xd75744911641a278
|
|
448
|
+
446, 0x7c8c9a65df6fcb95
|
|
449
|
+
447, 0x79d785e3c7a5b695
|
|
450
|
+
448, 0x421e4565ba1f592f
|
|
451
|
+
449, 0x27f87eb2517835cf
|
|
452
|
+
450, 0xb62cc4297441c83e
|
|
453
|
+
451, 0xd817a80ac815ca6d
|
|
454
|
+
452, 0xad84388130df2aa8
|
|
455
|
+
453, 0x5e6b1640452d6ac8
|
|
456
|
+
454, 0x936285e15edce2a3
|
|
457
|
+
455, 0x903bccc4969768e8
|
|
458
|
+
456, 0xefc2cb7b109d3140
|
|
459
|
+
457, 0x633e9dfdda2d903a
|
|
460
|
+
458, 0x2a2f3225925678a1
|
|
461
|
+
459, 0xe07eac91a27f8547
|
|
462
|
+
460, 0xe50ced40eda78cb3
|
|
463
|
+
461, 0xc5b22500e1c7441
|
|
464
|
+
462, 0x32becf61bca3aa72
|
|
465
|
+
463, 0xa2e37c4b30671344
|
|
466
|
+
464, 0xc9f1c1910f45d544
|
|
467
|
+
465, 0x9b50333b2dcdf730
|
|
468
|
+
466, 0x310bfd53a1684b94
|
|
469
|
+
467, 0x1e1dc21e66ac6455
|
|
470
|
+
468, 0x81876c2bfb1ed5a1
|
|
471
|
+
469, 0xd0c54a3e25eadc7b
|
|
472
|
+
470, 0x3791b6fbbd5c7ba0
|
|
473
|
+
471, 0x133be57356c599fc
|
|
474
|
+
472, 0x8d1148eb8e83fdea
|
|
475
|
+
473, 0x311aedba0d8b42cc
|
|
476
|
+
474, 0x1142ae52745f94bb
|
|
477
|
+
475, 0xc5f4ab2fbde8c4a3
|
|
478
|
+
476, 0xd23be827b5b24f6d
|
|
479
|
+
477, 0x65f95194cd122715
|
|
480
|
+
478, 0x4b48969d73125922
|
|
481
|
+
479, 0x46f165052b8ff988
|
|
482
|
+
480, 0x5c689f94b9275ff4
|
|
483
|
+
481, 0x93b03823ff2d536b
|
|
484
|
+
482, 0x871f3775aa4e3523
|
|
485
|
+
483, 0x5af829f7cc0f66a5
|
|
486
|
+
484, 0xa32e05739cbeac8c
|
|
487
|
+
485, 0xacff1856ddace0fe
|
|
488
|
+
486, 0x8eeb5e7f991a5322
|
|
489
|
+
487, 0x6325c2720e0dbdea
|
|
490
|
+
488, 0x9fb817bc4fdf5200
|
|
491
|
+
489, 0x9786f0d850e43d78
|
|
492
|
+
490, 0x571f76dd7f9fb77a
|
|
493
|
+
491, 0x4d9e94e181cbc63f
|
|
494
|
+
492, 0x8bb632d3376c547a
|
|
495
|
+
493, 0x9cc26d9efd1c88b9
|
|
496
|
+
494, 0x9c5d49579df52b0b
|
|
497
|
+
495, 0x6201abf7e1cda07b
|
|
498
|
+
496, 0x90d68f0c6c884963
|
|
499
|
+
497, 0xfc5b66188ef7f561
|
|
500
|
+
498, 0x6d9303cf2e0e0f95
|
|
501
|
+
499, 0xd7cfcff535f5ed07
|
|
502
|
+
500, 0x14d1a1228daa4ac6
|
|
503
|
+
501, 0xe00ef5762f66ae50
|
|
504
|
+
502, 0xf113a79471582978
|
|
505
|
+
503, 0x430985281785dc7a
|
|
506
|
+
504, 0x31914108c206ed5
|
|
507
|
+
505, 0x7ba6707b6419971c
|
|
508
|
+
506, 0x2ec63b033ce112e5
|
|
509
|
+
507, 0xf8bcd36ced3b41e3
|
|
510
|
+
508, 0xe5cf908c8010414b
|
|
511
|
+
509, 0xf5ee224b7c703e30
|
|
512
|
+
510, 0x9a9733af0b12338b
|
|
513
|
+
511, 0x83e18cc00ace34f8
|
|
514
|
+
512, 0xd52cff39e23008b8
|
|
515
|
+
513, 0xa700578136b9c0c5
|
|
516
|
+
514, 0x3fa179d32ac51f99
|
|
517
|
+
515, 0xef2d5eab6d4ad380
|
|
518
|
+
516, 0x709024a5abd032df
|
|
519
|
+
517, 0xc607c7ee349ede87
|
|
520
|
+
518, 0x803d784e9731eb5f
|
|
521
|
+
519, 0x2ef06f4ba769282d
|
|
522
|
+
520, 0x4bc1dca1e9f07eb9
|
|
523
|
+
521, 0x930c958a7a72f94d
|
|
524
|
+
522, 0x249bc8db2cc7a3bf
|
|
525
|
+
523, 0x3845305798f9a5d
|
|
526
|
+
524, 0x6f137eca9ab6f948
|
|
527
|
+
525, 0xc31f5a963d31bd67
|
|
528
|
+
526, 0x9d39693d5383626f
|
|
529
|
+
527, 0x52fb41c335a8b98e
|
|
530
|
+
528, 0xb79d1a29a06006ec
|
|
531
|
+
529, 0x7c0926a7a3eda2cc
|
|
532
|
+
530, 0xffdf5214406fd53e
|
|
533
|
+
531, 0xc6aa02a7e94282b9
|
|
534
|
+
532, 0xd4a4431b4aa301ee
|
|
535
|
+
533, 0x4271cc0f9420d3ab
|
|
536
|
+
534, 0x26fccd7cc7fc2485
|
|
537
|
+
535, 0x330594bb945b8d5a
|
|
538
|
+
536, 0x6ea8eaad12e5cb8c
|
|
539
|
+
537, 0x831c3467726bede3
|
|
540
|
+
538, 0x31d1eb10017eaa61
|
|
541
|
+
539, 0xc7aa75e41508f5cb
|
|
542
|
+
540, 0xde51810f0cadd0b5
|
|
543
|
+
541, 0x50e5b3e73692f80b
|
|
544
|
+
542, 0x82107ec55636e188
|
|
545
|
+
543, 0x9828ef175d843ab4
|
|
546
|
+
544, 0xb8edc6a860dd421e
|
|
547
|
+
545, 0x25c0c138fd537ac3
|
|
548
|
+
546, 0x47e72a771e8eb563
|
|
549
|
+
547, 0xbb0f8c5333f4a2cc
|
|
550
|
+
548, 0x91750d2fb9b2d479
|
|
551
|
+
549, 0xe662d8f6fe38df36
|
|
552
|
+
550, 0x72a6d879fb5619f0
|
|
553
|
+
551, 0x6817c7878dcbf077
|
|
554
|
+
552, 0x4e7741cb484661e8
|
|
555
|
+
553, 0x3b3b3ba0be5711bf
|
|
556
|
+
554, 0xa6989f5d25868765
|
|
557
|
+
555, 0x43c276398997e4e0
|
|
558
|
+
556, 0xdcbe16a94da28870
|
|
559
|
+
557, 0x454936980a699c99
|
|
560
|
+
558, 0xac614bfa8f0266c6
|
|
561
|
+
559, 0x9174841392e213d5
|
|
562
|
+
560, 0xa0e2acffc5fc9d1f
|
|
563
|
+
561, 0xe53a08a7a0e6521a
|
|
564
|
+
562, 0x2b845cf7c24172e0
|
|
565
|
+
563, 0x265a4fc5f7adec0d
|
|
566
|
+
564, 0x1f34fbe5f1e49420
|
|
567
|
+
565, 0x139181f6fb647f20
|
|
568
|
+
566, 0x88c35d46e2fcd05e
|
|
569
|
+
567, 0x2a6d5b55903c0459
|
|
570
|
+
568, 0xcea28eb621ad7bf1
|
|
571
|
+
569, 0x5c9cdc13e7aaa30
|
|
572
|
+
570, 0x5fe63e14746e7103
|
|
573
|
+
571, 0x7923e53d73835db9
|
|
574
|
+
572, 0x376e661210bf1b06
|
|
575
|
+
573, 0x5b1cab85450efdd5
|
|
576
|
+
574, 0x3908dc096c70b452
|
|
577
|
+
575, 0x4825e303cd1f396f
|
|
578
|
+
576, 0xed476bfd702957c3
|
|
579
|
+
577, 0x6acc013aff5db743
|
|
580
|
+
578, 0x62c80b776343d488
|
|
581
|
+
579, 0x9c75edcd5b012697
|
|
582
|
+
580, 0xaa053362a3b9770a
|
|
583
|
+
581, 0xa907e236c7c07e94
|
|
584
|
+
582, 0x15b2c380451692c0
|
|
585
|
+
583, 0x94f79142697bd61f
|
|
586
|
+
584, 0xbc657d31ea98d44f
|
|
587
|
+
585, 0xcbaa5e52517a1f5e
|
|
588
|
+
586, 0x96aa2e44a7c4a03f
|
|
589
|
+
587, 0x216d3c66db2b515d
|
|
590
|
+
588, 0x157001807e3ca88a
|
|
591
|
+
589, 0x52b3a596bdd3859a
|
|
592
|
+
590, 0xed747e7fc5e3adac
|
|
593
|
+
591, 0x78fd765ddb2c448d
|
|
594
|
+
592, 0xe53dc7299ed8614e
|
|
595
|
+
593, 0x75ad41fb1d7a790a
|
|
596
|
+
594, 0xc14f6b944b0e6cb1
|
|
597
|
+
595, 0x7c314b69fce3df1c
|
|
598
|
+
596, 0xb56d82eb740d7abc
|
|
599
|
+
597, 0x5132a93c41251fdb
|
|
600
|
+
598, 0xe3ce35bd2a82f958
|
|
601
|
+
599, 0x440571a981c722f2
|
|
602
|
+
600, 0x194cdfd9f186bc9
|
|
603
|
+
601, 0xb89e522a5db00939
|
|
604
|
+
602, 0xad35f339f68df3c8
|
|
605
|
+
603, 0xa82ab18420322293
|
|
606
|
+
604, 0xaffa6df9b72b27c4
|
|
607
|
+
605, 0x9615694d23beaa2c
|
|
608
|
+
606, 0x1d82ebe563abad91
|
|
609
|
+
607, 0xab50ef65fbd94385
|
|
610
|
+
608, 0x1b070dbd70a9a14
|
|
611
|
+
609, 0x2ececa796abbadf0
|
|
612
|
+
610, 0x6bbeafe9e81ab2a2
|
|
613
|
+
611, 0x60dcd0d2a9b76914
|
|
614
|
+
612, 0x1e748039ef05c33f
|
|
615
|
+
613, 0x6d4d17f2213ccdff
|
|
616
|
+
614, 0x9fa56132957bc987
|
|
617
|
+
615, 0x60a17185de2428eb
|
|
618
|
+
616, 0xb56038ddf306479c
|
|
619
|
+
617, 0x3b1db5df92d06d8b
|
|
620
|
+
618, 0x24d1bba8bdedf580
|
|
621
|
+
619, 0xbfb7e6740ebaa4d9
|
|
622
|
+
620, 0xab31c4473e46f61d
|
|
623
|
+
621, 0x6deb3cdd8fd5869f
|
|
624
|
+
622, 0x23032e47746d72d6
|
|
625
|
+
623, 0xa9e72d734e10f2e8
|
|
626
|
+
624, 0xbffd199b6157bc23
|
|
627
|
+
625, 0x29f8254df273fb62
|
|
628
|
+
626, 0xb076142130ee55ec
|
|
629
|
+
627, 0x5b0b08374126c309
|
|
630
|
+
628, 0xea4536aae979521f
|
|
631
|
+
629, 0xc064e7abec91a174
|
|
632
|
+
630, 0x46133ef80c59d935
|
|
633
|
+
631, 0xf0227e2da1b14160
|
|
634
|
+
632, 0x675a76641e1af5a
|
|
635
|
+
633, 0x2f50a069b33d198c
|
|
636
|
+
634, 0x3ded5a65e1d657eb
|
|
637
|
+
635, 0xbb6999b020694f6b
|
|
638
|
+
636, 0x86b2f2b33487aed7
|
|
639
|
+
637, 0x76e14e85f8bfb4cf
|
|
640
|
+
638, 0x38f7f1e44bd4e0db
|
|
641
|
+
639, 0xc1a7d41b7e80d4ae
|
|
642
|
+
640, 0x1dfaaf80bbceb42e
|
|
643
|
+
641, 0x3f51c11497720c2b
|
|
644
|
+
642, 0xce6da1415ddb8b80
|
|
645
|
+
643, 0x7377d8bcd359b5f3
|
|
646
|
+
644, 0xe077208f3f810aca
|
|
647
|
+
645, 0x9a06a8a2dacbffce
|
|
648
|
+
646, 0xca1f99156b09b735
|
|
649
|
+
647, 0x2ff9a93064d91451
|
|
650
|
+
648, 0x50f3ea93f351a7ef
|
|
651
|
+
649, 0x606fceccb07054de
|
|
652
|
+
650, 0x7e83d6d2f8f6685d
|
|
653
|
+
651, 0x78f3995291c5d407
|
|
654
|
+
652, 0xd28d2460e22d0228
|
|
655
|
+
653, 0x2c5636f68a0054dd
|
|
656
|
+
654, 0xd9fafb1c56c8f6cb
|
|
657
|
+
655, 0xe39889b5f9d74464
|
|
658
|
+
656, 0x1355372bf5db2cc1
|
|
659
|
+
657, 0x26768426b9ac323
|
|
660
|
+
658, 0x4af1dbdc1111fd89
|
|
661
|
+
659, 0x66973587943b927f
|
|
662
|
+
660, 0xf86f5f50684dfb1d
|
|
663
|
+
661, 0x1247d574ff79b534
|
|
664
|
+
662, 0xc8039f3259210fe2
|
|
665
|
+
663, 0x79b573235c92a9f5
|
|
666
|
+
664, 0x213f642d8450e2f0
|
|
667
|
+
665, 0x5db7706973376566
|
|
668
|
+
666, 0x6182c12e69b373d7
|
|
669
|
+
667, 0x3e5ac47300aec07f
|
|
670
|
+
668, 0x4b5b6c57b1574376
|
|
671
|
+
669, 0x6b7fcceefd56b17c
|
|
672
|
+
670, 0xf656c3455cb9d4b8
|
|
673
|
+
671, 0x7577e2e13329721f
|
|
674
|
+
672, 0xf33c0c53ce956e8d
|
|
675
|
+
673, 0x7d0f328ee356174
|
|
676
|
+
674, 0x10ec9a168088686e
|
|
677
|
+
675, 0x71ef1776d062dfa
|
|
678
|
+
676, 0xaa7b590a488a6bc4
|
|
679
|
+
677, 0x38612b6dd8049a1c
|
|
680
|
+
678, 0x939045e36874f731
|
|
681
|
+
679, 0xcb9d1d74c56d5ac9
|
|
682
|
+
680, 0x54f1c1c8fef1d8ff
|
|
683
|
+
681, 0x3ee4b85c8c7e939e
|
|
684
|
+
682, 0xb9b4608e019f352c
|
|
685
|
+
683, 0x79d4701275d12e6a
|
|
686
|
+
684, 0x2632a2d9835c7f19
|
|
687
|
+
685, 0x1662cd9fba293692
|
|
688
|
+
686, 0xbcb70265115ee944
|
|
689
|
+
687, 0xdc43fb9761468604
|
|
690
|
+
688, 0xe3eec4e7d3871352
|
|
691
|
+
689, 0x829531753226989d
|
|
692
|
+
690, 0x2748cc67f540e074
|
|
693
|
+
691, 0x39c4af25d607837d
|
|
694
|
+
692, 0x741a243f4cb5df99
|
|
695
|
+
693, 0xda1353287e18b49a
|
|
696
|
+
694, 0xa6735689d751ea74
|
|
697
|
+
695, 0x46326d587340ce0b
|
|
698
|
+
696, 0xc18531df4550012b
|
|
699
|
+
697, 0x6f7901e05dd4b818
|
|
700
|
+
698, 0xfb966afc4c001d63
|
|
701
|
+
699, 0x6dc10fca67a9cfdb
|
|
702
|
+
700, 0xd6527ffadf0feaae
|
|
703
|
+
701, 0x3b900172045e25d
|
|
704
|
+
702, 0xb7dd594cdded6a46
|
|
705
|
+
703, 0x6602aee7ec1599fc
|
|
706
|
+
704, 0x7fbf12f23747546a
|
|
707
|
+
705, 0x32e63f662bd2de0d
|
|
708
|
+
706, 0xedf47770b67ed641
|
|
709
|
+
707, 0x331bef83481c5c2a
|
|
710
|
+
708, 0x8fc4256fdf05158c
|
|
711
|
+
709, 0x98eba48dabccf5e0
|
|
712
|
+
710, 0xdbc2f2cdb7b1c154
|
|
713
|
+
711, 0x7777755616517ad3
|
|
714
|
+
712, 0xd473c147d2628ac1
|
|
715
|
+
713, 0x861e15d1d760b5a7
|
|
716
|
+
714, 0xf4d25926405ecb07
|
|
717
|
+
715, 0xb7739c69effff86e
|
|
718
|
+
716, 0xe97fbafa6f96830c
|
|
719
|
+
717, 0xf13e8a334e8bede1
|
|
720
|
+
718, 0xcd60010cba4ee4f9
|
|
721
|
+
719, 0x1f537ac2b82e6008
|
|
722
|
+
720, 0x1fda8d781a89140a
|
|
723
|
+
721, 0x9dc204f3f4a463f0
|
|
724
|
+
722, 0x456dcd18eb56a1ab
|
|
725
|
+
723, 0x629957bc87bd16a1
|
|
726
|
+
724, 0x2c8000ddb8c75253
|
|
727
|
+
725, 0xc31dae9ec8449284
|
|
728
|
+
726, 0xdac05c8baa2b691a
|
|
729
|
+
727, 0x21ff7be9ffa3e7ac
|
|
730
|
+
728, 0x844f4b5ed4ee08d0
|
|
731
|
+
729, 0x651f913fd636c994
|
|
732
|
+
730, 0xca3e71a2110b2d49
|
|
733
|
+
731, 0x7709bc42253ed09d
|
|
734
|
+
732, 0xbb164d45b6569d43
|
|
735
|
+
733, 0x90ec2f040c20a112
|
|
736
|
+
734, 0xfa6e77e9166f5be4
|
|
737
|
+
735, 0x6b6d12c1842d587d
|
|
738
|
+
736, 0xfcd7ff8466e25e2a
|
|
739
|
+
737, 0x6a5a2ed8bd971297
|
|
740
|
+
738, 0x2ec35f6bba5adcbc
|
|
741
|
+
739, 0xc83676e16651249a
|
|
742
|
+
740, 0x458f6064cefe10ba
|
|
743
|
+
741, 0x90d54d527e6cd028
|
|
744
|
+
742, 0xa5613e88db27c388
|
|
745
|
+
743, 0x331e0c7d85aa1abc
|
|
746
|
+
744, 0x8cee4977e210358
|
|
747
|
+
745, 0xfcae379aa6cbff8e
|
|
748
|
+
746, 0xd1407afc97a57e86
|
|
749
|
+
747, 0x1fab25c864f094ae
|
|
750
|
+
748, 0xd914864a63004552
|
|
751
|
+
749, 0x4214d226a20f1384
|
|
752
|
+
750, 0x3f4e0d80c488b715
|
|
753
|
+
751, 0xc5ca2f654024b7c8
|
|
754
|
+
752, 0xc1e27a124e7c821c
|
|
755
|
+
753, 0xd890a915ffc7918c
|
|
756
|
+
754, 0x22fba040ce51a9f8
|
|
757
|
+
755, 0xbf61cebd8891617a
|
|
758
|
+
756, 0x7846609ee228e319
|
|
759
|
+
757, 0x536d1854375509b8
|
|
760
|
+
758, 0xbbfb45fc6e666f50
|
|
761
|
+
759, 0xd85b4c0527f9d7d6
|
|
762
|
+
760, 0x528cc9c7fa2a84c8
|
|
763
|
+
761, 0x27a1baece647f2cb
|
|
764
|
+
762, 0xfddf0cb92fe09dc3
|
|
765
|
+
763, 0xeb5008fe965d8d96
|
|
766
|
+
764, 0x4a3307937eb2e5c8
|
|
767
|
+
765, 0xd07d74c240c6c363
|
|
768
|
+
766, 0x16f62290179d1bbf
|
|
769
|
+
767, 0xe99c9bcc9cb1ece7
|
|
770
|
+
768, 0xc64f9be03c8a93be
|
|
771
|
+
769, 0x32659effaf666c1f
|
|
772
|
+
770, 0x4bb228cfb30b6672
|
|
773
|
+
771, 0x98764870842068a5
|
|
774
|
+
772, 0x5b12ef2d2cd8bdcc
|
|
775
|
+
773, 0xbc79d1c1b41f28b8
|
|
776
|
+
774, 0x97a517cf3279fc9a
|
|
777
|
+
775, 0x34ffd46c1d4d6025
|
|
778
|
+
776, 0x9c302307ee25c8f0
|
|
779
|
+
777, 0x399604eed1f18a8
|
|
780
|
+
778, 0x1c9b813c2043142a
|
|
781
|
+
779, 0x2944ea5e55267fe9
|
|
782
|
+
780, 0x5a8a9f5e728ea667
|
|
783
|
+
781, 0x30c8440adb804a0
|
|
784
|
+
782, 0xee0e6b627099a937
|
|
785
|
+
783, 0x3d50757ada3c52da
|
|
786
|
+
784, 0x4548916b32c813ab
|
|
787
|
+
785, 0x602a186fe5bf109b
|
|
788
|
+
786, 0xf0d440a2227ba304
|
|
789
|
+
787, 0x5a10d4e0ca9ea32b
|
|
790
|
+
788, 0x6e5eb90da13ba64c
|
|
791
|
+
789, 0x4c6af8fd04241ab2
|
|
792
|
+
790, 0xf9eb31d26e093006
|
|
793
|
+
791, 0x5d674878839fe3ea
|
|
794
|
+
792, 0x1562b55b2484e47c
|
|
795
|
+
793, 0xa87188c099c1cb61
|
|
796
|
+
794, 0xb7736b8aa02a3392
|
|
797
|
+
795, 0x5f4b301125abb20f
|
|
798
|
+
796, 0x361d566984637f44
|
|
799
|
+
797, 0x68c4b3feac8bd0c3
|
|
800
|
+
798, 0x7066c634dd2503c1
|
|
801
|
+
799, 0xfecbf7c9441eb6ea
|
|
802
|
+
800, 0xdbc26ae0fc81436b
|
|
803
|
+
801, 0x9ef3e2b48252e7a4
|
|
804
|
+
802, 0x31a49b4c339b37c7
|
|
805
|
+
803, 0xb01b2a83cf346cf4
|
|
806
|
+
804, 0xc24dc2347f82fbe3
|
|
807
|
+
805, 0x134cad272dcd410f
|
|
808
|
+
806, 0x61260742823ba59c
|
|
809
|
+
807, 0x53ac4c193a97c730
|
|
810
|
+
808, 0x9207c9833af34b52
|
|
811
|
+
809, 0xa72e7ee77078d1f5
|
|
812
|
+
810, 0x2e6f6e1b05936885
|
|
813
|
+
811, 0x783b99ce5dbf9464
|
|
814
|
+
812, 0xfdfeb6f0d027bb44
|
|
815
|
+
813, 0x40eeb27096f92b0
|
|
816
|
+
814, 0x5ef96ff5d4a4521f
|
|
817
|
+
815, 0x5595806ae873718a
|
|
818
|
+
816, 0x67d449eecf4ca1c3
|
|
819
|
+
817, 0xde837ab611364f3f
|
|
820
|
+
818, 0x7034c24d2b139be9
|
|
821
|
+
819, 0xe21166603e0a9c86
|
|
822
|
+
820, 0x935694435c1f0d51
|
|
823
|
+
821, 0x6cb3bec90c126088
|
|
824
|
+
822, 0x4096ef662b7a9f89
|
|
825
|
+
823, 0xd2d85b8d238d8c15
|
|
826
|
+
824, 0xa4ea533ce3ec59b2
|
|
827
|
+
825, 0x3654729d80a2db29
|
|
828
|
+
826, 0x214c4cc3906d29d4
|
|
829
|
+
827, 0x201c447e7588e373
|
|
830
|
+
828, 0xe8b8f0ae25f683eb
|
|
831
|
+
829, 0x6744aaf5754e38af
|
|
832
|
+
830, 0xd1ffb10d6f27a061
|
|
833
|
+
831, 0xe536733a7b3a6c30
|
|
834
|
+
832, 0x39f0f66e47cbf2c9
|
|
835
|
+
833, 0x856a9593526fde2
|
|
836
|
+
834, 0x2e2a817a0098ea4b
|
|
837
|
+
835, 0xc5e1eeb551a0e3d3
|
|
838
|
+
836, 0x3f21e2f5e2d50b2
|
|
839
|
+
837, 0x906af56c66dd9f8c
|
|
840
|
+
838, 0x30f6dbd70329fac8
|
|
841
|
+
839, 0xc443dfddf3c01a60
|
|
842
|
+
840, 0x7ab85d9aa9675470
|
|
843
|
+
841, 0x8c9080bd39717bfc
|
|
844
|
+
842, 0x4b1ccdb3c3597f6f
|
|
845
|
+
843, 0x74e2542d70ab5d67
|
|
846
|
+
844, 0xbb3d236aad00f74
|
|
847
|
+
845, 0xcf3cadf9a2804774
|
|
848
|
+
846, 0xe851d9750e42bd07
|
|
849
|
+
847, 0xc0ad82029b1c371f
|
|
850
|
+
848, 0x7ee119eb552d6c07
|
|
851
|
+
849, 0xd8024049bd1d784a
|
|
852
|
+
850, 0xfa67a899760363
|
|
853
|
+
851, 0xaa7c2f438b178197
|
|
854
|
+
852, 0xc473674a47ffe064
|
|
855
|
+
853, 0x539fbe3fc674c270
|
|
856
|
+
854, 0xdb48484748a76f3b
|
|
857
|
+
855, 0xc73b2b092060d
|
|
858
|
+
856, 0xa1d2a15345016f5d
|
|
859
|
+
857, 0x4d0fe8599f9bba47
|
|
860
|
+
858, 0xa0edc275e6f8f1d1
|
|
861
|
+
859, 0x40590a8655bc8d72
|
|
862
|
+
860, 0x35b4223161f05f75
|
|
863
|
+
861, 0xa04c0c0f616752dc
|
|
864
|
+
862, 0x7f371ed2ca45432d
|
|
865
|
+
863, 0x2ff1a08f75ac6438
|
|
866
|
+
864, 0xe2dc5c3682282f48
|
|
867
|
+
865, 0xe1e4179fa98d9013
|
|
868
|
+
866, 0x8cb083d6843a73d5
|
|
869
|
+
867, 0xb4c2b5921b706854
|
|
870
|
+
868, 0x738e14c0e7352445
|
|
871
|
+
869, 0xcd2b646f91afd8c7
|
|
872
|
+
870, 0xd5779a5b57a264fd
|
|
873
|
+
871, 0xc39ff855586c7d07
|
|
874
|
+
872, 0x3e3f0098c631a859
|
|
875
|
+
873, 0x644e02fae032110
|
|
876
|
+
874, 0xa8834613c0a45278
|
|
877
|
+
875, 0x69482f2c08e10657
|
|
878
|
+
876, 0xe4ee475bdb87e69a
|
|
879
|
+
877, 0xdc1ef7b25c0d0019
|
|
880
|
+
878, 0x88a3fa2be18d8744
|
|
881
|
+
879, 0x60a02e0b21c5bec7
|
|
882
|
+
880, 0xb6867b88aa19bc1a
|
|
883
|
+
881, 0xb599409affcf10eb
|
|
884
|
+
882, 0xaeaa1778a5e59daa
|
|
885
|
+
883, 0xd7a91a52c16663e3
|
|
886
|
+
884, 0x93cb269affe07b1c
|
|
887
|
+
885, 0x841b6ced3a4ba815
|
|
888
|
+
886, 0x84541768e1540a5c
|
|
889
|
+
887, 0xe3943c84f83b3020
|
|
890
|
+
888, 0x5de366fbd7b45258
|
|
891
|
+
889, 0xd787cc3bde91a661
|
|
892
|
+
890, 0x814071446edecb57
|
|
893
|
+
891, 0x15d8c602a1141514
|
|
894
|
+
892, 0x72f07bc8002d1d0d
|
|
895
|
+
893, 0x4a8bd8dc9a1f0f3e
|
|
896
|
+
894, 0x8723796ae0f20d35
|
|
897
|
+
895, 0xda7283c2051f73b2
|
|
898
|
+
896, 0x2df0cc247f90bd3b
|
|
899
|
+
897, 0x79a8522b968f990a
|
|
900
|
+
898, 0x951ede190c8b9d02
|
|
901
|
+
899, 0xc512f1a5b14b018a
|
|
902
|
+
900, 0xf0e3ddc03b9a4259
|
|
903
|
+
901, 0x8cf4a35ad312e15f
|
|
904
|
+
902, 0xebef28926b11094b
|
|
905
|
+
903, 0x5628ba687325921c
|
|
906
|
+
904, 0xc3aa75e57edc49c3
|
|
907
|
+
905, 0xc38382fa98e762ba
|
|
908
|
+
906, 0x8d209e896285848e
|
|
909
|
+
907, 0x2c7d6adf592b4a3e
|
|
910
|
+
908, 0x62de48e36f8338f3
|
|
911
|
+
909, 0x4a752741e00de30e
|
|
912
|
+
910, 0xf7855b70f1f6ec2b
|
|
913
|
+
911, 0xa505fa4428199e43
|
|
914
|
+
912, 0xe8b6b423b826bbac
|
|
915
|
+
913, 0x4bd1206cf8786d05
|
|
916
|
+
914, 0x6dcf040391fe3bf4
|
|
917
|
+
915, 0x913f500f87e1bba3
|
|
918
|
+
916, 0x5acf775aa180a5d5
|
|
919
|
+
917, 0x74dd28d9432ce739
|
|
920
|
+
918, 0x996c2ff2f0dc2495
|
|
921
|
+
919, 0x73dbfe6c56effe4
|
|
922
|
+
920, 0x56fddd25196f5e40
|
|
923
|
+
921, 0xe87810158f5b7
|
|
924
|
+
922, 0x7b8795e996383f1f
|
|
925
|
+
923, 0x9ba5ee7c777c4c82
|
|
926
|
+
924, 0x17ce3908d270fe1c
|
|
927
|
+
925, 0x3df9e613c1aedfae
|
|
928
|
+
926, 0xcdd26871b32fc8e1
|
|
929
|
+
927, 0xd71cb13afc633979
|
|
930
|
+
928, 0x63427c8ea9b1c79e
|
|
931
|
+
929, 0xd070f7664d3b405d
|
|
932
|
+
930, 0x46f2a9e32d9fb769
|
|
933
|
+
931, 0xb4c3822a45e9fe9b
|
|
934
|
+
932, 0x8ba30b97fe6f5ec7
|
|
935
|
+
933, 0x70aa554ee2fc11f9
|
|
936
|
+
934, 0xa80c99dbe0cfcfaf
|
|
937
|
+
935, 0x36d9250cb2d68ed
|
|
938
|
+
936, 0x2995e4b9e1cd1db4
|
|
939
|
+
937, 0x4b3803ba57fc570f
|
|
940
|
+
938, 0xae3959e7d740eaa5
|
|
941
|
+
939, 0xb4cbd6662adbae08
|
|
942
|
+
940, 0xae46576446e8dbc4
|
|
943
|
+
941, 0xc4828e008a9a8a54
|
|
944
|
+
942, 0x145d7db8e6554b2f
|
|
945
|
+
943, 0x1b1b8916a730c371
|
|
946
|
+
944, 0xdaf84b2bebe31963
|
|
947
|
+
945, 0x5b59b80ef23a2403
|
|
948
|
+
946, 0x9180c7e89cab6fd3
|
|
949
|
+
947, 0x80e58f5411babf34
|
|
950
|
+
948, 0xa06cf55185b9b005
|
|
951
|
+
949, 0x13b2c798424173ad
|
|
952
|
+
950, 0xc510f8e706311d49
|
|
953
|
+
951, 0x1f974b83b6046d3a
|
|
954
|
+
952, 0xae6e8e85e822d1c3
|
|
955
|
+
953, 0x66f2c8dc3274a31a
|
|
956
|
+
954, 0x7e04dbcbf65bd377
|
|
957
|
+
955, 0xabf41ede01ec20a4
|
|
958
|
+
956, 0x5efa0948f6bbb2ea
|
|
959
|
+
957, 0xbc91c99d8592255
|
|
960
|
+
958, 0xf6d6917911d86d75
|
|
961
|
+
959, 0x85ce273d54e9097a
|
|
962
|
+
960, 0xbdfd30f2420fff92
|
|
963
|
+
961, 0x8802f02f610b537c
|
|
964
|
+
962, 0xd1d70037ed543229
|
|
965
|
+
963, 0x908aaf97f9693a46
|
|
966
|
+
964, 0x1f6cfeaa0834d53a
|
|
967
|
+
965, 0xa453fd1648ce04d2
|
|
968
|
+
966, 0x2c38bb85ebc64af9
|
|
969
|
+
967, 0xd2daff551c90c4f8
|
|
970
|
+
968, 0xae5a0d949797d784
|
|
971
|
+
969, 0xf0974c8552ac9593
|
|
972
|
+
970, 0xa10b70499f65c693
|
|
973
|
+
971, 0x39a449ebd594ddff
|
|
974
|
+
972, 0x8ea090f2b17b9b49
|
|
975
|
+
973, 0xc592de318090fd83
|
|
976
|
+
974, 0xb63e4fbc467b6912
|
|
977
|
+
975, 0x57a0c1c5ce0e4dcc
|
|
978
|
+
976, 0xa7c517cf3d436b35
|
|
979
|
+
977, 0xef6dcb0f3fad038b
|
|
980
|
+
978, 0xaf4fb60315b91287
|
|
981
|
+
979, 0x5e0776f67304f331
|
|
982
|
+
980, 0xe927753b8e6f7932
|
|
983
|
+
981, 0xd3df2dd92559e304
|
|
984
|
+
982, 0xdaed52aa6af44413
|
|
985
|
+
983, 0x1b59f4dac1e181f8
|
|
986
|
+
984, 0x4a73c2293877ef39
|
|
987
|
+
985, 0xca45d0d015fe44de
|
|
988
|
+
986, 0x4659c8b7853735a8
|
|
989
|
+
987, 0x12de6466bdf8adeb
|
|
990
|
+
988, 0xaeea857a09bfec15
|
|
991
|
+
989, 0xcc9cf4b3c0b88a23
|
|
992
|
+
990, 0xa44ae52396a5e1bf
|
|
993
|
+
991, 0x5847a724305d137f
|
|
994
|
+
992, 0x8f4d4de223956182
|
|
995
|
+
993, 0x58254dfada867a8
|
|
996
|
+
994, 0x900a98222c2f339e
|
|
997
|
+
995, 0xdb575260935d51d5
|
|
998
|
+
996, 0x13fb4bfbbc0d7b53
|
|
999
|
+
997, 0x62213850186bb92b
|
|
1000
|
+
998, 0x2a34823312c00388
|
|
1001
|
+
999, 0x6148329042f743b0
|