numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.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.
Files changed (915) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +108 -0
  3. numpy/__init__.cython-30.pxd +1242 -0
  4. numpy/__init__.pxd +1155 -0
  5. numpy/__init__.py +942 -0
  6. numpy/__init__.pyi +6202 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +206 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +201 -0
  12. numpy/_core/__init__.pyi +666 -0
  13. numpy/_core/_add_newdocs.py +7151 -0
  14. numpy/_core/_add_newdocs.pyi +2 -0
  15. numpy/_core/_add_newdocs_scalars.py +381 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +130 -0
  18. numpy/_core/_asarray.pyi +43 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +56 -0
  21. numpy/_core/_dtype_ctypes.py +120 -0
  22. numpy/_core/_dtype_ctypes.pyi +83 -0
  23. numpy/_core/_exceptions.py +162 -0
  24. numpy/_core/_exceptions.pyi +54 -0
  25. numpy/_core/_internal.py +968 -0
  26. numpy/_core/_internal.pyi +61 -0
  27. numpy/_core/_methods.py +252 -0
  28. numpy/_core/_methods.pyi +22 -0
  29. numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
  30. numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
  31. numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
  32. numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
  33. numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
  34. numpy/_core/_simd.pyi +35 -0
  35. numpy/_core/_string_helpers.py +100 -0
  36. numpy/_core/_string_helpers.pyi +12 -0
  37. numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
  38. numpy/_core/_type_aliases.py +131 -0
  39. numpy/_core/_type_aliases.pyi +86 -0
  40. numpy/_core/_ufunc_config.py +515 -0
  41. numpy/_core/_ufunc_config.pyi +69 -0
  42. numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
  43. numpy/_core/_umath_tests.pyi +47 -0
  44. numpy/_core/arrayprint.py +1779 -0
  45. numpy/_core/arrayprint.pyi +158 -0
  46. numpy/_core/cversions.py +13 -0
  47. numpy/_core/defchararray.py +1414 -0
  48. numpy/_core/defchararray.pyi +1150 -0
  49. numpy/_core/einsumfunc.py +1650 -0
  50. numpy/_core/einsumfunc.pyi +184 -0
  51. numpy/_core/fromnumeric.py +4233 -0
  52. numpy/_core/fromnumeric.pyi +1735 -0
  53. numpy/_core/function_base.py +547 -0
  54. numpy/_core/function_base.pyi +276 -0
  55. numpy/_core/getlimits.py +462 -0
  56. numpy/_core/getlimits.pyi +124 -0
  57. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  58. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  59. numpy/_core/include/numpy/__ufunc_api.c +55 -0
  60. numpy/_core/include/numpy/__ufunc_api.h +349 -0
  61. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  62. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  63. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  64. numpy/_core/include/numpy/arrayobject.h +7 -0
  65. numpy/_core/include/numpy/arrayscalars.h +198 -0
  66. numpy/_core/include/numpy/dtype_api.h +547 -0
  67. numpy/_core/include/numpy/halffloat.h +70 -0
  68. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  69. numpy/_core/include/numpy/ndarraytypes.h +1982 -0
  70. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  71. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  72. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  73. numpy/_core/include/numpy/npy_common.h +989 -0
  74. numpy/_core/include/numpy/npy_cpu.h +126 -0
  75. numpy/_core/include/numpy/npy_endian.h +79 -0
  76. numpy/_core/include/numpy/npy_math.h +602 -0
  77. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  78. numpy/_core/include/numpy/npy_os.h +42 -0
  79. numpy/_core/include/numpy/numpyconfig.h +185 -0
  80. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  81. numpy/_core/include/numpy/random/bitgen.h +20 -0
  82. numpy/_core/include/numpy/random/distributions.h +209 -0
  83. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  84. numpy/_core/include/numpy/ufuncobject.h +343 -0
  85. numpy/_core/include/numpy/utils.h +37 -0
  86. numpy/_core/lib/libnpymath.a +0 -0
  87. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  88. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  89. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  90. numpy/_core/memmap.py +363 -0
  91. numpy/_core/memmap.pyi +3 -0
  92. numpy/_core/multiarray.py +1740 -0
  93. numpy/_core/multiarray.pyi +1316 -0
  94. numpy/_core/numeric.py +2758 -0
  95. numpy/_core/numeric.pyi +1276 -0
  96. numpy/_core/numerictypes.py +633 -0
  97. numpy/_core/numerictypes.pyi +196 -0
  98. numpy/_core/overrides.py +188 -0
  99. numpy/_core/overrides.pyi +47 -0
  100. numpy/_core/printoptions.py +32 -0
  101. numpy/_core/printoptions.pyi +28 -0
  102. numpy/_core/records.py +1088 -0
  103. numpy/_core/records.pyi +340 -0
  104. numpy/_core/shape_base.py +996 -0
  105. numpy/_core/shape_base.pyi +182 -0
  106. numpy/_core/strings.py +1813 -0
  107. numpy/_core/strings.pyi +536 -0
  108. numpy/_core/tests/_locales.py +72 -0
  109. numpy/_core/tests/_natype.py +144 -0
  110. numpy/_core/tests/data/astype_copy.pkl +0 -0
  111. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  112. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  113. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  114. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  115. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  116. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  117. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  118. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  119. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  120. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  121. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  122. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  123. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  124. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  125. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  127. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  128. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  129. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  130. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  131. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  132. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  134. numpy/_core/tests/examples/cython/checks.pyx +373 -0
  135. numpy/_core/tests/examples/cython/meson.build +43 -0
  136. numpy/_core/tests/examples/cython/setup.py +39 -0
  137. numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
  138. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  139. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  140. numpy/_core/tests/examples/limited_api/meson.build +59 -0
  141. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  142. numpy/_core/tests/test__exceptions.py +90 -0
  143. numpy/_core/tests/test_abc.py +54 -0
  144. numpy/_core/tests/test_api.py +655 -0
  145. numpy/_core/tests/test_argparse.py +90 -0
  146. numpy/_core/tests/test_array_api_info.py +113 -0
  147. numpy/_core/tests/test_array_coercion.py +928 -0
  148. numpy/_core/tests/test_array_interface.py +222 -0
  149. numpy/_core/tests/test_arraymethod.py +84 -0
  150. numpy/_core/tests/test_arrayobject.py +75 -0
  151. numpy/_core/tests/test_arrayprint.py +1324 -0
  152. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  153. numpy/_core/tests/test_casting_unittests.py +955 -0
  154. numpy/_core/tests/test_conversion_utils.py +209 -0
  155. numpy/_core/tests/test_cpu_dispatcher.py +48 -0
  156. numpy/_core/tests/test_cpu_features.py +450 -0
  157. numpy/_core/tests/test_custom_dtypes.py +393 -0
  158. numpy/_core/tests/test_cython.py +352 -0
  159. numpy/_core/tests/test_datetime.py +2792 -0
  160. numpy/_core/tests/test_defchararray.py +858 -0
  161. numpy/_core/tests/test_deprecations.py +460 -0
  162. numpy/_core/tests/test_dlpack.py +190 -0
  163. numpy/_core/tests/test_dtype.py +2110 -0
  164. numpy/_core/tests/test_einsum.py +1351 -0
  165. numpy/_core/tests/test_errstate.py +131 -0
  166. numpy/_core/tests/test_extint128.py +217 -0
  167. numpy/_core/tests/test_finfo.py +86 -0
  168. numpy/_core/tests/test_function_base.py +504 -0
  169. numpy/_core/tests/test_getlimits.py +171 -0
  170. numpy/_core/tests/test_half.py +593 -0
  171. numpy/_core/tests/test_hashtable.py +36 -0
  172. numpy/_core/tests/test_indexerrors.py +122 -0
  173. numpy/_core/tests/test_indexing.py +1692 -0
  174. numpy/_core/tests/test_item_selection.py +167 -0
  175. numpy/_core/tests/test_limited_api.py +102 -0
  176. numpy/_core/tests/test_longdouble.py +370 -0
  177. numpy/_core/tests/test_mem_overlap.py +933 -0
  178. numpy/_core/tests/test_mem_policy.py +453 -0
  179. numpy/_core/tests/test_memmap.py +248 -0
  180. numpy/_core/tests/test_multiarray.py +11008 -0
  181. numpy/_core/tests/test_multiprocessing.py +55 -0
  182. numpy/_core/tests/test_multithreading.py +353 -0
  183. numpy/_core/tests/test_nditer.py +3533 -0
  184. numpy/_core/tests/test_nep50_promotions.py +287 -0
  185. numpy/_core/tests/test_numeric.py +4295 -0
  186. numpy/_core/tests/test_numerictypes.py +650 -0
  187. numpy/_core/tests/test_overrides.py +800 -0
  188. numpy/_core/tests/test_print.py +202 -0
  189. numpy/_core/tests/test_protocols.py +46 -0
  190. numpy/_core/tests/test_records.py +544 -0
  191. numpy/_core/tests/test_regression.py +2677 -0
  192. numpy/_core/tests/test_scalar_ctors.py +203 -0
  193. numpy/_core/tests/test_scalar_methods.py +328 -0
  194. numpy/_core/tests/test_scalarbuffer.py +153 -0
  195. numpy/_core/tests/test_scalarinherit.py +105 -0
  196. numpy/_core/tests/test_scalarmath.py +1168 -0
  197. numpy/_core/tests/test_scalarprint.py +403 -0
  198. numpy/_core/tests/test_shape_base.py +904 -0
  199. numpy/_core/tests/test_simd.py +1345 -0
  200. numpy/_core/tests/test_simd_module.py +105 -0
  201. numpy/_core/tests/test_stringdtype.py +1855 -0
  202. numpy/_core/tests/test_strings.py +1515 -0
  203. numpy/_core/tests/test_ufunc.py +3405 -0
  204. numpy/_core/tests/test_umath.py +4962 -0
  205. numpy/_core/tests/test_umath_accuracy.py +132 -0
  206. numpy/_core/tests/test_umath_complex.py +631 -0
  207. numpy/_core/tests/test_unicode.py +369 -0
  208. numpy/_core/umath.py +60 -0
  209. numpy/_core/umath.pyi +232 -0
  210. numpy/_distributor_init.py +15 -0
  211. numpy/_distributor_init.pyi +1 -0
  212. numpy/_expired_attrs_2_0.py +78 -0
  213. numpy/_expired_attrs_2_0.pyi +61 -0
  214. numpy/_globals.py +121 -0
  215. numpy/_globals.pyi +17 -0
  216. numpy/_pyinstaller/__init__.py +0 -0
  217. numpy/_pyinstaller/__init__.pyi +0 -0
  218. numpy/_pyinstaller/hook-numpy.py +36 -0
  219. numpy/_pyinstaller/hook-numpy.pyi +6 -0
  220. numpy/_pyinstaller/tests/__init__.py +16 -0
  221. numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
  222. numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
  223. numpy/_pytesttester.py +201 -0
  224. numpy/_pytesttester.pyi +18 -0
  225. numpy/_typing/__init__.py +173 -0
  226. numpy/_typing/_add_docstring.py +153 -0
  227. numpy/_typing/_array_like.py +106 -0
  228. numpy/_typing/_char_codes.py +213 -0
  229. numpy/_typing/_dtype_like.py +114 -0
  230. numpy/_typing/_extended_precision.py +15 -0
  231. numpy/_typing/_nbit.py +19 -0
  232. numpy/_typing/_nbit_base.py +94 -0
  233. numpy/_typing/_nbit_base.pyi +39 -0
  234. numpy/_typing/_nested_sequence.py +79 -0
  235. numpy/_typing/_scalars.py +20 -0
  236. numpy/_typing/_shape.py +8 -0
  237. numpy/_typing/_ufunc.py +7 -0
  238. numpy/_typing/_ufunc.pyi +975 -0
  239. numpy/_utils/__init__.py +95 -0
  240. numpy/_utils/__init__.pyi +28 -0
  241. numpy/_utils/_convertions.py +18 -0
  242. numpy/_utils/_convertions.pyi +4 -0
  243. numpy/_utils/_inspect.py +192 -0
  244. numpy/_utils/_inspect.pyi +70 -0
  245. numpy/_utils/_pep440.py +486 -0
  246. numpy/_utils/_pep440.pyi +118 -0
  247. numpy/char/__init__.py +2 -0
  248. numpy/char/__init__.pyi +111 -0
  249. numpy/conftest.py +248 -0
  250. numpy/core/__init__.py +33 -0
  251. numpy/core/__init__.pyi +0 -0
  252. numpy/core/_dtype.py +10 -0
  253. numpy/core/_dtype.pyi +0 -0
  254. numpy/core/_dtype_ctypes.py +10 -0
  255. numpy/core/_dtype_ctypes.pyi +0 -0
  256. numpy/core/_internal.py +27 -0
  257. numpy/core/_multiarray_umath.py +57 -0
  258. numpy/core/_utils.py +21 -0
  259. numpy/core/arrayprint.py +10 -0
  260. numpy/core/defchararray.py +10 -0
  261. numpy/core/einsumfunc.py +10 -0
  262. numpy/core/fromnumeric.py +10 -0
  263. numpy/core/function_base.py +10 -0
  264. numpy/core/getlimits.py +10 -0
  265. numpy/core/multiarray.py +25 -0
  266. numpy/core/numeric.py +12 -0
  267. numpy/core/numerictypes.py +10 -0
  268. numpy/core/overrides.py +10 -0
  269. numpy/core/overrides.pyi +7 -0
  270. numpy/core/records.py +10 -0
  271. numpy/core/shape_base.py +10 -0
  272. numpy/core/umath.py +10 -0
  273. numpy/ctypeslib/__init__.py +13 -0
  274. numpy/ctypeslib/__init__.pyi +15 -0
  275. numpy/ctypeslib/_ctypeslib.py +603 -0
  276. numpy/ctypeslib/_ctypeslib.pyi +236 -0
  277. numpy/doc/ufuncs.py +138 -0
  278. numpy/dtypes.py +41 -0
  279. numpy/dtypes.pyi +630 -0
  280. numpy/exceptions.py +246 -0
  281. numpy/exceptions.pyi +27 -0
  282. numpy/f2py/__init__.py +86 -0
  283. numpy/f2py/__init__.pyi +5 -0
  284. numpy/f2py/__main__.py +5 -0
  285. numpy/f2py/__version__.py +1 -0
  286. numpy/f2py/__version__.pyi +1 -0
  287. numpy/f2py/_backends/__init__.py +9 -0
  288. numpy/f2py/_backends/__init__.pyi +5 -0
  289. numpy/f2py/_backends/_backend.py +44 -0
  290. numpy/f2py/_backends/_backend.pyi +46 -0
  291. numpy/f2py/_backends/_distutils.py +76 -0
  292. numpy/f2py/_backends/_distutils.pyi +13 -0
  293. numpy/f2py/_backends/_meson.py +244 -0
  294. numpy/f2py/_backends/_meson.pyi +62 -0
  295. numpy/f2py/_backends/meson.build.template +58 -0
  296. numpy/f2py/_isocbind.py +62 -0
  297. numpy/f2py/_isocbind.pyi +13 -0
  298. numpy/f2py/_src_pyf.py +247 -0
  299. numpy/f2py/_src_pyf.pyi +28 -0
  300. numpy/f2py/auxfuncs.py +1004 -0
  301. numpy/f2py/auxfuncs.pyi +262 -0
  302. numpy/f2py/capi_maps.py +811 -0
  303. numpy/f2py/capi_maps.pyi +33 -0
  304. numpy/f2py/cb_rules.py +665 -0
  305. numpy/f2py/cb_rules.pyi +17 -0
  306. numpy/f2py/cfuncs.py +1563 -0
  307. numpy/f2py/cfuncs.pyi +31 -0
  308. numpy/f2py/common_rules.py +143 -0
  309. numpy/f2py/common_rules.pyi +9 -0
  310. numpy/f2py/crackfortran.py +3725 -0
  311. numpy/f2py/crackfortran.pyi +266 -0
  312. numpy/f2py/diagnose.py +149 -0
  313. numpy/f2py/diagnose.pyi +1 -0
  314. numpy/f2py/f2py2e.py +788 -0
  315. numpy/f2py/f2py2e.pyi +74 -0
  316. numpy/f2py/f90mod_rules.py +269 -0
  317. numpy/f2py/f90mod_rules.pyi +16 -0
  318. numpy/f2py/func2subr.py +329 -0
  319. numpy/f2py/func2subr.pyi +7 -0
  320. numpy/f2py/rules.py +1629 -0
  321. numpy/f2py/rules.pyi +41 -0
  322. numpy/f2py/setup.cfg +3 -0
  323. numpy/f2py/src/fortranobject.c +1436 -0
  324. numpy/f2py/src/fortranobject.h +173 -0
  325. numpy/f2py/symbolic.py +1518 -0
  326. numpy/f2py/symbolic.pyi +219 -0
  327. numpy/f2py/tests/__init__.py +16 -0
  328. numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
  329. numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
  330. numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
  331. numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
  332. numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
  333. numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
  334. numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
  335. numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
  336. numpy/f2py/tests/src/block_docstring/foo.f +6 -0
  337. numpy/f2py/tests/src/callback/foo.f +62 -0
  338. numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
  339. numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
  340. numpy/f2py/tests/src/callback/gh25211.f +10 -0
  341. numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
  342. numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
  343. numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
  344. numpy/f2py/tests/src/cli/hi77.f +3 -0
  345. numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
  346. numpy/f2py/tests/src/common/block.f +11 -0
  347. numpy/f2py/tests/src/common/gh19161.f90 +10 -0
  348. numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
  349. numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
  350. numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
  351. numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
  352. numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
  353. numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
  354. numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
  355. numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
  356. numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
  357. numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
  358. numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
  359. numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
  360. numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
  361. numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
  362. numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
  363. numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
  364. numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
  365. numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
  366. numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
  367. numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
  368. numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
  369. numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
  370. numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
  371. numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
  372. numpy/f2py/tests/src/kind/foo.f90 +20 -0
  373. numpy/f2py/tests/src/mixed/foo.f +5 -0
  374. numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
  375. numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
  376. numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
  377. numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
  378. numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
  379. numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
  380. numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
  381. numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
  382. numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
  383. numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
  384. numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
  385. numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
  386. numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
  387. numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
  388. numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
  389. numpy/f2py/tests/src/quoted_character/foo.f +14 -0
  390. numpy/f2py/tests/src/regression/AB.inc +1 -0
  391. numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
  392. numpy/f2py/tests/src/regression/datonly.f90 +17 -0
  393. numpy/f2py/tests/src/regression/f77comments.f +26 -0
  394. numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
  395. numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
  396. numpy/f2py/tests/src/regression/incfile.f90 +5 -0
  397. numpy/f2py/tests/src/regression/inout.f90 +9 -0
  398. numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
  399. numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
  400. numpy/f2py/tests/src/return_character/foo77.f +45 -0
  401. numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
  402. numpy/f2py/tests/src/return_complex/foo77.f +45 -0
  403. numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
  404. numpy/f2py/tests/src/return_integer/foo77.f +56 -0
  405. numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
  406. numpy/f2py/tests/src/return_logical/foo77.f +56 -0
  407. numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
  408. numpy/f2py/tests/src/return_real/foo77.f +45 -0
  409. numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
  410. numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
  411. numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
  412. numpy/f2py/tests/src/routines/subrout.f +4 -0
  413. numpy/f2py/tests/src/routines/subrout.pyf +10 -0
  414. numpy/f2py/tests/src/size/foo.f90 +44 -0
  415. numpy/f2py/tests/src/string/char.f90 +29 -0
  416. numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
  417. numpy/f2py/tests/src/string/gh24008.f +8 -0
  418. numpy/f2py/tests/src/string/gh24662.f90 +7 -0
  419. numpy/f2py/tests/src/string/gh25286.f90 +14 -0
  420. numpy/f2py/tests/src/string/gh25286.pyf +12 -0
  421. numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
  422. numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
  423. numpy/f2py/tests/src/string/string.f +12 -0
  424. numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
  425. numpy/f2py/tests/test_abstract_interface.py +26 -0
  426. numpy/f2py/tests/test_array_from_pyobj.py +678 -0
  427. numpy/f2py/tests/test_assumed_shape.py +50 -0
  428. numpy/f2py/tests/test_block_docstring.py +20 -0
  429. numpy/f2py/tests/test_callback.py +263 -0
  430. numpy/f2py/tests/test_character.py +641 -0
  431. numpy/f2py/tests/test_common.py +23 -0
  432. numpy/f2py/tests/test_crackfortran.py +421 -0
  433. numpy/f2py/tests/test_data.py +71 -0
  434. numpy/f2py/tests/test_docs.py +66 -0
  435. numpy/f2py/tests/test_f2cmap.py +17 -0
  436. numpy/f2py/tests/test_f2py2e.py +983 -0
  437. numpy/f2py/tests/test_isoc.py +56 -0
  438. numpy/f2py/tests/test_kind.py +52 -0
  439. numpy/f2py/tests/test_mixed.py +35 -0
  440. numpy/f2py/tests/test_modules.py +83 -0
  441. numpy/f2py/tests/test_parameter.py +129 -0
  442. numpy/f2py/tests/test_pyf_src.py +43 -0
  443. numpy/f2py/tests/test_quoted_character.py +18 -0
  444. numpy/f2py/tests/test_regression.py +187 -0
  445. numpy/f2py/tests/test_return_character.py +48 -0
  446. numpy/f2py/tests/test_return_complex.py +67 -0
  447. numpy/f2py/tests/test_return_integer.py +55 -0
  448. numpy/f2py/tests/test_return_logical.py +65 -0
  449. numpy/f2py/tests/test_return_real.py +109 -0
  450. numpy/f2py/tests/test_routines.py +29 -0
  451. numpy/f2py/tests/test_semicolon_split.py +75 -0
  452. numpy/f2py/tests/test_size.py +45 -0
  453. numpy/f2py/tests/test_string.py +100 -0
  454. numpy/f2py/tests/test_symbolic.py +500 -0
  455. numpy/f2py/tests/test_value_attrspec.py +15 -0
  456. numpy/f2py/tests/util.py +442 -0
  457. numpy/f2py/use_rules.py +99 -0
  458. numpy/f2py/use_rules.pyi +9 -0
  459. numpy/fft/__init__.py +213 -0
  460. numpy/fft/__init__.pyi +38 -0
  461. numpy/fft/_helper.py +235 -0
  462. numpy/fft/_helper.pyi +44 -0
  463. numpy/fft/_pocketfft.py +1693 -0
  464. numpy/fft/_pocketfft.pyi +137 -0
  465. numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -0
  466. numpy/fft/tests/__init__.py +0 -0
  467. numpy/fft/tests/test_helper.py +167 -0
  468. numpy/fft/tests/test_pocketfft.py +589 -0
  469. numpy/lib/__init__.py +97 -0
  470. numpy/lib/__init__.pyi +52 -0
  471. numpy/lib/_array_utils_impl.py +62 -0
  472. numpy/lib/_array_utils_impl.pyi +10 -0
  473. numpy/lib/_arraypad_impl.py +926 -0
  474. numpy/lib/_arraypad_impl.pyi +88 -0
  475. numpy/lib/_arraysetops_impl.py +1158 -0
  476. numpy/lib/_arraysetops_impl.pyi +462 -0
  477. numpy/lib/_arrayterator_impl.py +224 -0
  478. numpy/lib/_arrayterator_impl.pyi +45 -0
  479. numpy/lib/_datasource.py +700 -0
  480. numpy/lib/_datasource.pyi +30 -0
  481. numpy/lib/_format_impl.py +1036 -0
  482. numpy/lib/_format_impl.pyi +56 -0
  483. numpy/lib/_function_base_impl.py +5758 -0
  484. numpy/lib/_function_base_impl.pyi +2324 -0
  485. numpy/lib/_histograms_impl.py +1085 -0
  486. numpy/lib/_histograms_impl.pyi +40 -0
  487. numpy/lib/_index_tricks_impl.py +1048 -0
  488. numpy/lib/_index_tricks_impl.pyi +267 -0
  489. numpy/lib/_iotools.py +900 -0
  490. numpy/lib/_iotools.pyi +116 -0
  491. numpy/lib/_nanfunctions_impl.py +2001 -0
  492. numpy/lib/_nanfunctions_impl.pyi +48 -0
  493. numpy/lib/_npyio_impl.py +2583 -0
  494. numpy/lib/_npyio_impl.pyi +299 -0
  495. numpy/lib/_polynomial_impl.py +1465 -0
  496. numpy/lib/_polynomial_impl.pyi +338 -0
  497. numpy/lib/_scimath_impl.py +642 -0
  498. numpy/lib/_scimath_impl.pyi +93 -0
  499. numpy/lib/_shape_base_impl.py +1289 -0
  500. numpy/lib/_shape_base_impl.pyi +236 -0
  501. numpy/lib/_stride_tricks_impl.py +582 -0
  502. numpy/lib/_stride_tricks_impl.pyi +73 -0
  503. numpy/lib/_twodim_base_impl.py +1201 -0
  504. numpy/lib/_twodim_base_impl.pyi +408 -0
  505. numpy/lib/_type_check_impl.py +710 -0
  506. numpy/lib/_type_check_impl.pyi +348 -0
  507. numpy/lib/_ufunclike_impl.py +199 -0
  508. numpy/lib/_ufunclike_impl.pyi +60 -0
  509. numpy/lib/_user_array_impl.py +310 -0
  510. numpy/lib/_user_array_impl.pyi +226 -0
  511. numpy/lib/_utils_impl.py +784 -0
  512. numpy/lib/_utils_impl.pyi +22 -0
  513. numpy/lib/_version.py +153 -0
  514. numpy/lib/_version.pyi +17 -0
  515. numpy/lib/array_utils.py +7 -0
  516. numpy/lib/array_utils.pyi +6 -0
  517. numpy/lib/format.py +24 -0
  518. numpy/lib/format.pyi +24 -0
  519. numpy/lib/introspect.py +94 -0
  520. numpy/lib/introspect.pyi +3 -0
  521. numpy/lib/mixins.py +180 -0
  522. numpy/lib/mixins.pyi +78 -0
  523. numpy/lib/npyio.py +1 -0
  524. numpy/lib/npyio.pyi +5 -0
  525. numpy/lib/recfunctions.py +1681 -0
  526. numpy/lib/recfunctions.pyi +444 -0
  527. numpy/lib/scimath.py +13 -0
  528. numpy/lib/scimath.pyi +12 -0
  529. numpy/lib/stride_tricks.py +1 -0
  530. numpy/lib/stride_tricks.pyi +4 -0
  531. numpy/lib/tests/__init__.py +0 -0
  532. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  533. numpy/lib/tests/data/py2-objarr.npy +0 -0
  534. numpy/lib/tests/data/py2-objarr.npz +0 -0
  535. numpy/lib/tests/data/py3-objarr.npy +0 -0
  536. numpy/lib/tests/data/py3-objarr.npz +0 -0
  537. numpy/lib/tests/data/python3.npy +0 -0
  538. numpy/lib/tests/data/win64python2.npy +0 -0
  539. numpy/lib/tests/test__datasource.py +328 -0
  540. numpy/lib/tests/test__iotools.py +358 -0
  541. numpy/lib/tests/test__version.py +64 -0
  542. numpy/lib/tests/test_array_utils.py +32 -0
  543. numpy/lib/tests/test_arraypad.py +1427 -0
  544. numpy/lib/tests/test_arraysetops.py +1302 -0
  545. numpy/lib/tests/test_arrayterator.py +45 -0
  546. numpy/lib/tests/test_format.py +1054 -0
  547. numpy/lib/tests/test_function_base.py +4705 -0
  548. numpy/lib/tests/test_histograms.py +855 -0
  549. numpy/lib/tests/test_index_tricks.py +693 -0
  550. numpy/lib/tests/test_io.py +2857 -0
  551. numpy/lib/tests/test_loadtxt.py +1099 -0
  552. numpy/lib/tests/test_mixins.py +215 -0
  553. numpy/lib/tests/test_nanfunctions.py +1438 -0
  554. numpy/lib/tests/test_packbits.py +376 -0
  555. numpy/lib/tests/test_polynomial.py +325 -0
  556. numpy/lib/tests/test_recfunctions.py +1042 -0
  557. numpy/lib/tests/test_regression.py +231 -0
  558. numpy/lib/tests/test_shape_base.py +813 -0
  559. numpy/lib/tests/test_stride_tricks.py +655 -0
  560. numpy/lib/tests/test_twodim_base.py +559 -0
  561. numpy/lib/tests/test_type_check.py +473 -0
  562. numpy/lib/tests/test_ufunclike.py +97 -0
  563. numpy/lib/tests/test_utils.py +80 -0
  564. numpy/lib/user_array.py +1 -0
  565. numpy/lib/user_array.pyi +1 -0
  566. numpy/linalg/__init__.py +95 -0
  567. numpy/linalg/__init__.pyi +71 -0
  568. numpy/linalg/_linalg.py +3657 -0
  569. numpy/linalg/_linalg.pyi +548 -0
  570. numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
  571. numpy/linalg/_umath_linalg.pyi +60 -0
  572. numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
  573. numpy/linalg/lapack_lite.pyi +143 -0
  574. numpy/linalg/tests/__init__.py +0 -0
  575. numpy/linalg/tests/test_deprecations.py +21 -0
  576. numpy/linalg/tests/test_linalg.py +2442 -0
  577. numpy/linalg/tests/test_regression.py +182 -0
  578. numpy/ma/API_CHANGES.txt +135 -0
  579. numpy/ma/LICENSE +24 -0
  580. numpy/ma/README.rst +236 -0
  581. numpy/ma/__init__.py +53 -0
  582. numpy/ma/__init__.pyi +458 -0
  583. numpy/ma/core.py +8929 -0
  584. numpy/ma/core.pyi +3720 -0
  585. numpy/ma/extras.py +2266 -0
  586. numpy/ma/extras.pyi +297 -0
  587. numpy/ma/mrecords.py +762 -0
  588. numpy/ma/mrecords.pyi +96 -0
  589. numpy/ma/tests/__init__.py +0 -0
  590. numpy/ma/tests/test_arrayobject.py +40 -0
  591. numpy/ma/tests/test_core.py +6008 -0
  592. numpy/ma/tests/test_deprecations.py +65 -0
  593. numpy/ma/tests/test_extras.py +1945 -0
  594. numpy/ma/tests/test_mrecords.py +495 -0
  595. numpy/ma/tests/test_old_ma.py +939 -0
  596. numpy/ma/tests/test_regression.py +83 -0
  597. numpy/ma/tests/test_subclassing.py +469 -0
  598. numpy/ma/testutils.py +294 -0
  599. numpy/ma/testutils.pyi +69 -0
  600. numpy/matlib.py +380 -0
  601. numpy/matlib.pyi +580 -0
  602. numpy/matrixlib/__init__.py +12 -0
  603. numpy/matrixlib/__init__.pyi +3 -0
  604. numpy/matrixlib/defmatrix.py +1119 -0
  605. numpy/matrixlib/defmatrix.pyi +218 -0
  606. numpy/matrixlib/tests/__init__.py +0 -0
  607. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  608. numpy/matrixlib/tests/test_interaction.py +360 -0
  609. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  610. numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
  611. numpy/matrixlib/tests/test_multiarray.py +17 -0
  612. numpy/matrixlib/tests/test_numeric.py +18 -0
  613. numpy/matrixlib/tests/test_regression.py +31 -0
  614. numpy/polynomial/__init__.py +187 -0
  615. numpy/polynomial/__init__.pyi +31 -0
  616. numpy/polynomial/_polybase.py +1191 -0
  617. numpy/polynomial/_polybase.pyi +262 -0
  618. numpy/polynomial/_polytypes.pyi +501 -0
  619. numpy/polynomial/chebyshev.py +2001 -0
  620. numpy/polynomial/chebyshev.pyi +180 -0
  621. numpy/polynomial/hermite.py +1738 -0
  622. numpy/polynomial/hermite.pyi +106 -0
  623. numpy/polynomial/hermite_e.py +1640 -0
  624. numpy/polynomial/hermite_e.pyi +106 -0
  625. numpy/polynomial/laguerre.py +1673 -0
  626. numpy/polynomial/laguerre.pyi +100 -0
  627. numpy/polynomial/legendre.py +1603 -0
  628. numpy/polynomial/legendre.pyi +100 -0
  629. numpy/polynomial/polynomial.py +1625 -0
  630. numpy/polynomial/polynomial.pyi +109 -0
  631. numpy/polynomial/polyutils.py +759 -0
  632. numpy/polynomial/polyutils.pyi +307 -0
  633. numpy/polynomial/tests/__init__.py +0 -0
  634. numpy/polynomial/tests/test_chebyshev.py +618 -0
  635. numpy/polynomial/tests/test_classes.py +613 -0
  636. numpy/polynomial/tests/test_hermite.py +553 -0
  637. numpy/polynomial/tests/test_hermite_e.py +554 -0
  638. numpy/polynomial/tests/test_laguerre.py +535 -0
  639. numpy/polynomial/tests/test_legendre.py +566 -0
  640. numpy/polynomial/tests/test_polynomial.py +691 -0
  641. numpy/polynomial/tests/test_polyutils.py +123 -0
  642. numpy/polynomial/tests/test_printing.py +557 -0
  643. numpy/polynomial/tests/test_symbol.py +217 -0
  644. numpy/py.typed +0 -0
  645. numpy/random/LICENSE.md +71 -0
  646. numpy/random/__init__.pxd +14 -0
  647. numpy/random/__init__.py +213 -0
  648. numpy/random/__init__.pyi +124 -0
  649. numpy/random/_bounded_integers.cpython-313t-aarch64-linux-musl.so +0 -0
  650. numpy/random/_bounded_integers.pxd +29 -0
  651. numpy/random/_bounded_integers.pyi +1 -0
  652. numpy/random/_common.cpython-313t-aarch64-linux-musl.so +0 -0
  653. numpy/random/_common.pxd +107 -0
  654. numpy/random/_common.pyi +16 -0
  655. numpy/random/_examples/cffi/extending.py +44 -0
  656. numpy/random/_examples/cffi/parse.py +53 -0
  657. numpy/random/_examples/cython/extending.pyx +77 -0
  658. numpy/random/_examples/cython/extending_distributions.pyx +117 -0
  659. numpy/random/_examples/cython/meson.build +53 -0
  660. numpy/random/_examples/numba/extending.py +86 -0
  661. numpy/random/_examples/numba/extending_distributions.py +67 -0
  662. numpy/random/_generator.cpython-313t-aarch64-linux-musl.so +0 -0
  663. numpy/random/_generator.pyi +862 -0
  664. numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
  665. numpy/random/_mt19937.pyi +27 -0
  666. numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
  667. numpy/random/_pcg64.pyi +41 -0
  668. numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
  669. numpy/random/_philox.pyi +36 -0
  670. numpy/random/_pickle.py +88 -0
  671. numpy/random/_pickle.pyi +43 -0
  672. numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
  673. numpy/random/_sfc64.pyi +25 -0
  674. numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
  675. numpy/random/bit_generator.pxd +35 -0
  676. numpy/random/bit_generator.pyi +123 -0
  677. numpy/random/c_distributions.pxd +119 -0
  678. numpy/random/lib/libnpyrandom.a +0 -0
  679. numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
  680. numpy/random/mtrand.pyi +759 -0
  681. numpy/random/tests/__init__.py +0 -0
  682. numpy/random/tests/data/__init__.py +0 -0
  683. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  684. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  685. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  686. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  687. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  688. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  689. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  690. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  691. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  692. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  693. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  694. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  695. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  696. numpy/random/tests/test_direct.py +595 -0
  697. numpy/random/tests/test_extending.py +131 -0
  698. numpy/random/tests/test_generator_mt19937.py +2825 -0
  699. numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
  700. numpy/random/tests/test_random.py +1724 -0
  701. numpy/random/tests/test_randomstate.py +2099 -0
  702. numpy/random/tests/test_randomstate_regression.py +213 -0
  703. numpy/random/tests/test_regression.py +175 -0
  704. numpy/random/tests/test_seed_sequence.py +79 -0
  705. numpy/random/tests/test_smoke.py +882 -0
  706. numpy/rec/__init__.py +2 -0
  707. numpy/rec/__init__.pyi +23 -0
  708. numpy/strings/__init__.py +2 -0
  709. numpy/strings/__init__.pyi +97 -0
  710. numpy/testing/__init__.py +22 -0
  711. numpy/testing/__init__.pyi +107 -0
  712. numpy/testing/_private/__init__.py +0 -0
  713. numpy/testing/_private/__init__.pyi +0 -0
  714. numpy/testing/_private/extbuild.py +250 -0
  715. numpy/testing/_private/extbuild.pyi +25 -0
  716. numpy/testing/_private/utils.py +2830 -0
  717. numpy/testing/_private/utils.pyi +505 -0
  718. numpy/testing/overrides.py +84 -0
  719. numpy/testing/overrides.pyi +10 -0
  720. numpy/testing/print_coercion_tables.py +207 -0
  721. numpy/testing/print_coercion_tables.pyi +26 -0
  722. numpy/testing/tests/__init__.py +0 -0
  723. numpy/testing/tests/test_utils.py +2123 -0
  724. numpy/tests/__init__.py +0 -0
  725. numpy/tests/test__all__.py +10 -0
  726. numpy/tests/test_configtool.py +51 -0
  727. numpy/tests/test_ctypeslib.py +383 -0
  728. numpy/tests/test_lazyloading.py +42 -0
  729. numpy/tests/test_matlib.py +59 -0
  730. numpy/tests/test_numpy_config.py +47 -0
  731. numpy/tests/test_numpy_version.py +54 -0
  732. numpy/tests/test_public_api.py +804 -0
  733. numpy/tests/test_reloading.py +76 -0
  734. numpy/tests/test_scripts.py +48 -0
  735. numpy/tests/test_warnings.py +79 -0
  736. numpy/typing/__init__.py +233 -0
  737. numpy/typing/__init__.pyi +3 -0
  738. numpy/typing/mypy_plugin.py +200 -0
  739. numpy/typing/tests/__init__.py +0 -0
  740. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  741. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  742. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  743. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  744. numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
  745. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  746. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  747. numpy/typing/tests/data/fail/char.pyi +63 -0
  748. numpy/typing/tests/data/fail/chararray.pyi +61 -0
  749. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  750. numpy/typing/tests/data/fail/constants.pyi +3 -0
  751. numpy/typing/tests/data/fail/datasource.pyi +16 -0
  752. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  753. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  754. numpy/typing/tests/data/fail/flatiter.pyi +38 -0
  755. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  756. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  757. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  758. numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
  759. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  760. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  761. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  762. numpy/typing/tests/data/fail/linalg.pyi +52 -0
  763. numpy/typing/tests/data/fail/ma.pyi +155 -0
  764. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  765. numpy/typing/tests/data/fail/modules.pyi +17 -0
  766. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  767. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  768. numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
  769. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  770. numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
  771. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  772. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  773. numpy/typing/tests/data/fail/random.pyi +62 -0
  774. numpy/typing/tests/data/fail/rec.pyi +17 -0
  775. numpy/typing/tests/data/fail/scalars.pyi +86 -0
  776. numpy/typing/tests/data/fail/shape.pyi +7 -0
  777. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  778. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  779. numpy/typing/tests/data/fail/strings.pyi +52 -0
  780. numpy/typing/tests/data/fail/testing.pyi +28 -0
  781. numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
  782. numpy/typing/tests/data/fail/type_check.pyi +12 -0
  783. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  784. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  785. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  786. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  787. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  788. numpy/typing/tests/data/mypy.ini +8 -0
  789. numpy/typing/tests/data/pass/arithmetic.py +614 -0
  790. numpy/typing/tests/data/pass/array_constructors.py +138 -0
  791. numpy/typing/tests/data/pass/array_like.py +43 -0
  792. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  793. numpy/typing/tests/data/pass/arrayterator.py +28 -0
  794. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  795. numpy/typing/tests/data/pass/comparisons.py +316 -0
  796. numpy/typing/tests/data/pass/dtype.py +57 -0
  797. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  798. numpy/typing/tests/data/pass/flatiter.py +26 -0
  799. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  800. numpy/typing/tests/data/pass/index_tricks.py +62 -0
  801. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  802. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  803. numpy/typing/tests/data/pass/lib_version.py +18 -0
  804. numpy/typing/tests/data/pass/literal.py +52 -0
  805. numpy/typing/tests/data/pass/ma.py +199 -0
  806. numpy/typing/tests/data/pass/mod.py +149 -0
  807. numpy/typing/tests/data/pass/modules.py +45 -0
  808. numpy/typing/tests/data/pass/multiarray.py +77 -0
  809. numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
  810. numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
  811. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  812. numpy/typing/tests/data/pass/nditer.py +4 -0
  813. numpy/typing/tests/data/pass/numeric.py +90 -0
  814. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  815. numpy/typing/tests/data/pass/random.py +1498 -0
  816. numpy/typing/tests/data/pass/recfunctions.py +164 -0
  817. numpy/typing/tests/data/pass/scalars.py +249 -0
  818. numpy/typing/tests/data/pass/shape.py +19 -0
  819. numpy/typing/tests/data/pass/simple.py +170 -0
  820. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  821. numpy/typing/tests/data/pass/ufunclike.py +52 -0
  822. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  823. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  824. numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
  825. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  826. numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
  827. numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
  828. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  829. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  830. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  831. numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
  832. numpy/typing/tests/data/reveal/char.pyi +225 -0
  833. numpy/typing/tests/data/reveal/chararray.pyi +138 -0
  834. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  835. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  836. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  837. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  838. numpy/typing/tests/data/reveal/dtype.pyi +132 -0
  839. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  840. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  841. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  842. numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
  843. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  844. numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
  845. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  846. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  847. numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
  848. numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
  849. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  850. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  851. numpy/typing/tests/data/reveal/linalg.pyi +154 -0
  852. numpy/typing/tests/data/reveal/ma.pyi +1098 -0
  853. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  854. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  855. numpy/typing/tests/data/reveal/mod.pyi +178 -0
  856. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  857. numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
  858. numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
  859. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
  860. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
  861. numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
  862. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
  863. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  864. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  865. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  866. numpy/typing/tests/data/reveal/numeric.pyi +170 -0
  867. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  868. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
  869. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
  870. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  871. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  872. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  873. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  874. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  875. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  876. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  877. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  878. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  879. numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
  880. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  881. numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
  882. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  883. numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
  884. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  885. numpy/typing/tests/test_isfile.py +38 -0
  886. numpy/typing/tests/test_runtime.py +110 -0
  887. numpy/typing/tests/test_typing.py +205 -0
  888. numpy/version.py +11 -0
  889. numpy/version.pyi +9 -0
  890. numpy-2.4.0.dist-info/METADATA +139 -0
  891. numpy-2.4.0.dist-info/RECORD +915 -0
  892. numpy-2.4.0.dist-info/WHEEL +5 -0
  893. numpy-2.4.0.dist-info/entry_points.txt +13 -0
  894. numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
  895. numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
  896. numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
  897. numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
  898. numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
  899. numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
  900. numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
  901. numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
  902. numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
  903. numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
  904. numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
  905. numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
  906. numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
  907. numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
  908. numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
  909. numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
  910. numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
  911. numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
  912. numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
  913. numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
  914. numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
  915. numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
@@ -0,0 +1,1001 @@
1
+ seed, 0xdeadbeaf
2
+ 0, 0x60d24054e17a0698
3
+ 1, 0xd5e79d89856e4f12
4
+ 2, 0xd254972fe64bd782
5
+ 3, 0xf1e3072a53c72571
6
+ 4, 0xd7c1d7393d4115c9
7
+ 5, 0x77b75928b763e1e2
8
+ 6, 0xee6dee05190f7909
9
+ 7, 0x15f7b1c51d7fa319
10
+ 8, 0x27e44105f26ac2d7
11
+ 9, 0xcc0d88b29e5b415
12
+ 10, 0xe07b1a90c685e361
13
+ 11, 0xd2e430240de95e38
14
+ 12, 0x3260bca9a24ca9da
15
+ 13, 0x9b3cf2e92385adb7
16
+ 14, 0x30b5514548271976
17
+ 15, 0xa3a1fa16c124faf9
18
+ 16, 0xf53e17e918e45bb6
19
+ 17, 0x26f19faaeb833bfc
20
+ 18, 0x95e1d605730cce1b
21
+ 19, 0xa7b520c5c093c1aa
22
+ 20, 0x4b68c010c9b106a3
23
+ 21, 0x25e19fe91df703f0
24
+ 22, 0x898364bb0bf593cb
25
+ 23, 0x5bd6ab7dbaa125db
26
+ 24, 0xd1fe47f25152045c
27
+ 25, 0x3bb11919addf2409
28
+ 26, 0x26a8cb7b3f54af8
29
+ 27, 0xe6a27ee11200aa24
30
+ 28, 0x7cb585ab01e22000
31
+ 29, 0x78e60028676d2ef3
32
+ 30, 0x5c32535e5a899528
33
+ 31, 0x83e8b6f8c4a46fb3
34
+ 32, 0xe56ef7668a161246
35
+ 33, 0x36dcbc15aeb73055
36
+ 34, 0x5ea247f0bd188acb
37
+ 35, 0x438b547b84601a80
38
+ 36, 0x8acda2a1273e9e3d
39
+ 37, 0x2b05e30a4b40c24c
40
+ 38, 0xfd87236bd13af032
41
+ 39, 0x471df211d8d985ef
42
+ 40, 0x18e8a5609a793292
43
+ 41, 0x46f0951fab6dc4e3
44
+ 42, 0x6c199c4e700f6795
45
+ 43, 0xf04aa16bfb7d22cb
46
+ 44, 0xd763d269fbaffc89
47
+ 45, 0x9991930cefbe5c2b
48
+ 46, 0xb2a11b953f824c96
49
+ 47, 0x63fd9f52172c44b0
50
+ 48, 0x183bdad907b1d848
51
+ 49, 0xe17953cddb931c52
52
+ 50, 0x515cf16726ec205a
53
+ 51, 0x88c327605150711a
54
+ 52, 0xc7090dd79cbc8dc3
55
+ 53, 0xcb487cedeb00a350
56
+ 54, 0xc8abf254d87b657
57
+ 55, 0xd43cc4cbfb493d1a
58
+ 56, 0x8705452e5d9ed1e
59
+ 57, 0xcecd11446769cf43
60
+ 58, 0xde72156c8d65bc69
61
+ 59, 0x796a8f0f47d52ee8
62
+ 60, 0xb4c0da443917d6c3
63
+ 61, 0xe07ad7568a8e3dc3
64
+ 62, 0xc24a8da39ce6dc21
65
+ 63, 0x92b21ea80a8556eb
66
+ 64, 0x572f21e531edf3af
67
+ 65, 0x9b917ed56bbed198
68
+ 66, 0xe65fd8ddc5ab3d7d
69
+ 67, 0xf55a80a8ec84fa18
70
+ 68, 0x18fc22e1a5227b61
71
+ 69, 0x72305dc7eeaa79d3
72
+ 70, 0x47ce58a36e7592cf
73
+ 71, 0x14c6374340c0f7cc
74
+ 72, 0x6f98273d4eb5a2c
75
+ 73, 0x59a8702c46fe8f8a
76
+ 74, 0xb67cbd8113cfe57f
77
+ 75, 0xaa03c5db5f5b7690
78
+ 76, 0x3fb0f77ea4568013
79
+ 77, 0x756530990398b26e
80
+ 78, 0x4c1952b2a3a6a343
81
+ 79, 0x1da15c5383074582
82
+ 80, 0xb405b21c81c274f7
83
+ 81, 0xbe664677a16788b
84
+ 82, 0x9d2e37550bcee656
85
+ 83, 0x8b4589f0d9defe02
86
+ 84, 0x2935f018ee06a59
87
+ 85, 0x3834bf88be97ed11
88
+ 86, 0xa610d049cea79b6d
89
+ 87, 0xd49ffc0d09a59ea9
90
+ 88, 0x4073365b76567adf
91
+ 89, 0x499eefb9bb7513e2
92
+ 90, 0x74a743ee6b0138a9
93
+ 91, 0x3bf0880f2d947594
94
+ 92, 0x555d1c0498600a99
95
+ 93, 0x923b32a88ef2ffa4
96
+ 94, 0x7325411065fbedea
97
+ 95, 0x9f4129ff8b79d300
98
+ 96, 0xab2b0a9b8a3785dc
99
+ 97, 0x11734bdfba3a1713
100
+ 98, 0xc8333398841ba585
101
+ 99, 0xee2409cc234e6742
102
+ 100, 0xf6638e700872ecd2
103
+ 101, 0x10875300c13cd284
104
+ 102, 0x27a9bbed7c15b2d3
105
+ 103, 0x3c87f8fef31ce9bd
106
+ 104, 0x92be263cd0914a95
107
+ 105, 0xa7b0f11bc742307e
108
+ 106, 0x4a56f788cc1c1a3c
109
+ 107, 0x4a130fa32257a48b
110
+ 108, 0x5d4d9eda16e90286
111
+ 109, 0x7cc2af564844bedc
112
+ 110, 0x2532867bfe7cda1a
113
+ 111, 0xb1c504676611fd17
114
+ 112, 0xce8e86cfb4189aee
115
+ 113, 0x99685898980d1970
116
+ 114, 0x8c3b67db23bcf1e
117
+ 115, 0x73e14c93905b135f
118
+ 116, 0xf0271b64ac2bd4d3
119
+ 117, 0xf4beba82f3ec1b2d
120
+ 118, 0x1cdbf3ee9f210af
121
+ 119, 0x2e938557c09c3ea6
122
+ 120, 0x2d314ccfa6ffd81d
123
+ 121, 0x31ad47079950ade4
124
+ 122, 0x342b27547b900872
125
+ 123, 0x171b0e20b9ef1a76
126
+ 124, 0xdf10ce6318b03654
127
+ 125, 0x1d625df4aa718897
128
+ 126, 0x8712715a9f6e02ec
129
+ 127, 0xb4a072da725bca3b
130
+ 128, 0x19d346cb7734bd42
131
+ 129, 0xfd4281d311cb2958
132
+ 130, 0x58274c9519fc8789
133
+ 131, 0x4cacf29d885fd544
134
+ 132, 0x784b14d1c2523b80
135
+ 133, 0x2d25242131bb2373
136
+ 134, 0xcd2a5e43a7d9abf9
137
+ 135, 0x15eda3806e650ecb
138
+ 136, 0xdaac5e277d764d96
139
+ 137, 0xdc5a5dd59aaa94e0
140
+ 138, 0x40d00237a46d5999
141
+ 139, 0x6205dd35a692743f
142
+ 140, 0xbbd8236740361f09
143
+ 141, 0x1625c9f4e7288bf9
144
+ 142, 0xb74f12df1479e3ce
145
+ 143, 0xb2d72a51b43d7131
146
+ 144, 0xf006a324b3707c83
147
+ 145, 0x28e8ab4abe7655b8
148
+ 146, 0xfb480093ad7ab55
149
+ 147, 0x3f8abd0d6ff8d272
150
+ 148, 0xc81a94177ac26bb7
151
+ 149, 0x3cdc178307751b14
152
+ 150, 0x9de84cc2b10ba025
153
+ 151, 0x3f8ab5aefcd046e2
154
+ 152, 0x43bdb894e1ee83b2
155
+ 153, 0xe288a40f3f06ac9d
156
+ 154, 0xdab62a7d04b4f30f
157
+ 155, 0x49f4e20295e1a805
158
+ 156, 0x3643764805e0edef
159
+ 157, 0x9449954618b6b
160
+ 158, 0x6c87e0d4508e0ce0
161
+ 159, 0x3a334be688a9dd7b
162
+ 160, 0xb35c39228776e499
163
+ 161, 0xc4118bfff938490e
164
+ 162, 0x88cbde3dcbb034b2
165
+ 163, 0xf91b287793c417c3
166
+ 164, 0x42b15f731a59f5b3
167
+ 165, 0xffa27104bbe4814d
168
+ 166, 0x1b6789d138beccde
169
+ 167, 0x542c2c1440d0ceb9
170
+ 168, 0x367294504d18fa0d
171
+ 169, 0xf918b60e804a1b58
172
+ 170, 0xd390964e33a9d0e3
173
+ 171, 0x23bb1be7c4030fe8
174
+ 172, 0x9731054d039a8afb
175
+ 173, 0x1a6205026b9d139b
176
+ 174, 0x2fa13b318254a07e
177
+ 175, 0x69571de7d8520626
178
+ 176, 0x641a13d7c03332b7
179
+ 177, 0x76a6237818f7a441
180
+ 178, 0x4e77860d0c660d81
181
+ 179, 0x4441448a1c1cbdb2
182
+ 180, 0xccd7783a042046e5
183
+ 181, 0xf620d8e0805e3200
184
+ 182, 0x7de02971367fdd0c
185
+ 183, 0x539c263c5914cab1
186
+ 184, 0x9c3b9ba1a87bbf08
187
+ 185, 0x6d95baa34cda215f
188
+ 186, 0x2db3f83ace0bac5f
189
+ 187, 0x7f5af1da2dc670a4
190
+ 188, 0xfcc098d16c891bfb
191
+ 189, 0x81a33df1d7a5ab12
192
+ 190, 0x767b0f863c8e9882
193
+ 191, 0x7a92983830de483d
194
+ 192, 0xfa7598c37a79ac25
195
+ 193, 0xb89b3ca42ce03053
196
+ 194, 0x457a542b8efed4f7
197
+ 195, 0x571b7737fd0eeda7
198
+ 196, 0xa0f59e524485c0a
199
+ 197, 0x82dca766b7901efd
200
+ 198, 0xa68243caf6a3bd5d
201
+ 199, 0x1bac981c6c740e5e
202
+ 200, 0xbcd51bedf9103e44
203
+ 201, 0x4e197efd3ae5a7bf
204
+ 202, 0x523568efd782268b
205
+ 203, 0x5ec4ef1191fef09
206
+ 204, 0xed751ed5e31c9ab
207
+ 205, 0x44eac24de03e1b29
208
+ 206, 0x9237d57c011d3fb3
209
+ 207, 0xa8c6da0f7692f235
210
+ 208, 0x9f9eb6bc15d6cac7
211
+ 209, 0x34bb8e0c93427aad
212
+ 210, 0x115febd738eaac4a
213
+ 211, 0xa439991ed139d27a
214
+ 212, 0x45c7c2633d8710a2
215
+ 213, 0x48b7475f3405a3ce
216
+ 214, 0x80158497c77bd00b
217
+ 215, 0x935c316a5b1657cb
218
+ 216, 0x59c5d54440e9695e
219
+ 217, 0x337c78c5b3d0ede2
220
+ 218, 0x8c46bb956b93790d
221
+ 219, 0xbf1dd03e471d71c5
222
+ 220, 0x2d375e90a4bef583
223
+ 221, 0xd0365428331b3790
224
+ 222, 0xfcd3969ac827ecd4
225
+ 223, 0x392fb6c580498410
226
+ 224, 0x6d6db4ceab5ea6c0
227
+ 225, 0x9bf84f1972e24786
228
+ 226, 0x798dfd820959dcc5
229
+ 227, 0x2e425095e65e8bfb
230
+ 228, 0x8c1aa11536b1c9c3
231
+ 229, 0xd28e2ef9b12f6f74
232
+ 230, 0x86583bc98c8f78d2
233
+ 231, 0x489877530e3f93e7
234
+ 232, 0xb1d9430631104a15
235
+ 233, 0x1814f6098e6263bd
236
+ 234, 0x8e2658a4e0d4cd53
237
+ 235, 0x5afe20e2531cdb2a
238
+ 236, 0x30d02f7c4755c9bf
239
+ 237, 0xe1e217cda16ed2d2
240
+ 238, 0xccb4913a42e3b791
241
+ 239, 0xfff21363ac183226
242
+ 240, 0xe788690bbda147a7
243
+ 241, 0x76905cf5917bfc6a
244
+ 242, 0x2a8fa58f7916f52c
245
+ 243, 0xf903c0cc0357815a
246
+ 244, 0x15d20f243a4998d2
247
+ 245, 0x5b7decee5a86ea44
248
+ 246, 0x114f7fc421211185
249
+ 247, 0x328eb21715764c50
250
+ 248, 0xaffaa3f45c0678fd
251
+ 249, 0x2579e6ef50378393
252
+ 250, 0x7610ab7743c19795
253
+ 251, 0xf9923d2bd101b197
254
+ 252, 0x57e42e7a62ba7e53
255
+ 253, 0x9f1dc217b4f02901
256
+ 254, 0x88a9ebd86509b234
257
+ 255, 0x867fc926aecc8591
258
+ 256, 0xaf22c1bfef04c718
259
+ 257, 0x39f701f0313f4288
260
+ 258, 0x6171ad397e6faab2
261
+ 259, 0x239bb5b9abdec4fc
262
+ 260, 0xd9a591e25dd01c6e
263
+ 261, 0x826dc4a75b628e49
264
+ 262, 0xf112b152c408f47
265
+ 263, 0x6843a06110f86c0
266
+ 264, 0x965e56a7185c1332
267
+ 265, 0x8d84492edbc71710
268
+ 266, 0xeee8ec111cfd1319
269
+ 267, 0xf2858e94ad98e458
270
+ 268, 0xbc9589fdf5f3a97e
271
+ 269, 0xaf0ceef3bc375130
272
+ 270, 0x48f4aaf13fa75c1e
273
+ 271, 0x111e9db47bee758f
274
+ 272, 0xea3171df130164ba
275
+ 273, 0x2a7bbe30bf827ab6
276
+ 274, 0xc516c3fdbf758c35
277
+ 275, 0xec55097754b04be5
278
+ 276, 0x374a997d52b6d3e6
279
+ 277, 0x487df5456085ffbc
280
+ 278, 0x528883b84df8eafe
281
+ 279, 0x805f77ab5ba26f86
282
+ 280, 0x8eb81477dc04f213
283
+ 281, 0x471ea08ec6794d72
284
+ 282, 0x69d3667ecc4d2176
285
+ 283, 0x98b7b6e295548a66
286
+ 284, 0x3877713c173f8f2
287
+ 285, 0xa00542570d0e8de3
288
+ 286, 0xf534b1bfa4033e50
289
+ 287, 0x7e1fedeac8bf6b26
290
+ 288, 0x8043f37c89628af4
291
+ 289, 0x1dd7039ec295e86d
292
+ 290, 0xce9c05b763a40cc4
293
+ 291, 0x246926481e61028f
294
+ 292, 0xb7cb0f1babf5893b
295
+ 293, 0xefe6b777f37fc63e
296
+ 294, 0xebbcabb4cb35cdcb
297
+ 295, 0x39fa63cd711eeea9
298
+ 296, 0xad5d3ba7aaf30c8d
299
+ 297, 0x8e9e78fe46021990
300
+ 298, 0xc7eaef6e7d5a3c62
301
+ 299, 0xefccdd5495d3f386
302
+ 300, 0x2179557ee8cfc76a
303
+ 301, 0x88a77f621f0885ce
304
+ 302, 0xafda62674543d90c
305
+ 303, 0xb8e6fbe2e13e56c0
306
+ 304, 0x8bfbbe26a14f9b1a
307
+ 305, 0x1404f59f5851f8c3
308
+ 306, 0x1140c53a0489566d
309
+ 307, 0x3edf2d138b5c3f1d
310
+ 308, 0x75d6bb275d817dc
311
+ 309, 0x8e660ae27107664e
312
+ 310, 0x7a8021038ee303e1
313
+ 311, 0x2042ef5eefa9079f
314
+ 312, 0xe3e7b90bbf6d457a
315
+ 313, 0xf3f819d2bb9405b
316
+ 314, 0x522e42155cae0c10
317
+ 315, 0xf5bfbb975b40e233
318
+ 316, 0x2cf82b614dd95cfa
319
+ 317, 0x183ef4a96bc40e55
320
+ 318, 0x9f6e351c5ba4e752
321
+ 319, 0x37c1110683c90846
322
+ 320, 0x1d89b7a996d8a977
323
+ 321, 0x18a444f77c7cb4d9
324
+ 322, 0xd0a8a971b78dc893
325
+ 323, 0x860232fb9e6543f1
326
+ 324, 0x60b6097f51002555
327
+ 325, 0xca1e5214123e3894
328
+ 326, 0xe03fe695c95f99bb
329
+ 327, 0x2c7c6779d5f03622
330
+ 328, 0xafeeee42f63055d1
331
+ 329, 0x670dde905515936a
332
+ 330, 0x9a922f42b59fb094
333
+ 331, 0xddb5ff49af5a651a
334
+ 332, 0xe61b04c9e58ebbf8
335
+ 333, 0x4e459dcf272e7fc4
336
+ 334, 0xd549e92c16adceeb
337
+ 335, 0x7a17dba1299d4a9c
338
+ 336, 0x825d756109f2b585
339
+ 337, 0xba142e61a9cb203e
340
+ 338, 0xc2a19f00e9c04a30
341
+ 339, 0x2d0f8140d23d0652
342
+ 340, 0x8b866d4d4d6caaf4
343
+ 341, 0x4f11d90dd91f8217
344
+ 342, 0xf6efc37373b9e0d
345
+ 343, 0x248493d6cd6a4736
346
+ 344, 0xd12b6ae74a951a3e
347
+ 345, 0x56e34722070b70a7
348
+ 346, 0x22d3f201cc9fa0eb
349
+ 347, 0xbfdcc320008291b7
350
+ 348, 0x1a7a6922e9204fbd
351
+ 349, 0x831421e0c4945ae4
352
+ 350, 0x66316feddddf0e11
353
+ 351, 0xa8c86a1517456554
354
+ 352, 0x14a9049ad989e335
355
+ 353, 0x837022259f141ecd
356
+ 354, 0xcb71793a06c261f7
357
+ 355, 0x4aeefc07ebe09a79
358
+ 356, 0x8982f15aa3b6594b
359
+ 357, 0x67bccfa7ed9b0d5b
360
+ 358, 0xb377463b523e9dec
361
+ 359, 0x53d3d594870fecb7
362
+ 360, 0xa5274b1caec5a60a
363
+ 361, 0xd6316d0cb643db39
364
+ 362, 0xabc1a9b536de88ce
365
+ 363, 0xed2fdb1383d2a077
366
+ 364, 0x12319c6feb97221b
367
+ 365, 0x7e0f6cd40ef47403
368
+ 366, 0x86135c84fe26dbf8
369
+ 367, 0xc96622d3fbbee19b
370
+ 368, 0xe3989d8d8511573f
371
+ 369, 0x42cc365554d1fdc7
372
+ 370, 0x4c1a1eb8bbce8b4f
373
+ 371, 0xfc4e30e7ef2034c1
374
+ 372, 0xc490444317a91e76
375
+ 373, 0x7ccdf469ff5dc81c
376
+ 374, 0xf5a0da4110cc09d7
377
+ 375, 0x505227baf34c0fb5
378
+ 376, 0xbe58737e8a35cc88
379
+ 377, 0xd449bee91b3e8c41
380
+ 378, 0x3e590e23299d0e6
381
+ 379, 0x291a7d9e0a64caf7
382
+ 380, 0xdc6fafbdfebd2293
383
+ 381, 0x8223f1e259fe8a65
384
+ 382, 0x6186fbc9efd9e3df
385
+ 383, 0xfda39b07e4007ffb
386
+ 384, 0xfc19aea98574dc02
387
+ 385, 0xd0e10d354fcacd8c
388
+ 386, 0xc9619916544a55a5
389
+ 387, 0xd454d50a8c8558cd
390
+ 388, 0xcd94a246712d91e
391
+ 389, 0x76a771f5d1231cce
392
+ 390, 0xdd20cb2b7b370ee5
393
+ 391, 0xa6f4f50feca57c49
394
+ 392, 0x78c8fb431f17ab9c
395
+ 393, 0x1b692b79a59b43cc
396
+ 394, 0x4c45045d287da7e6
397
+ 395, 0x522132e18bf43928
398
+ 396, 0x25c458983138b41c
399
+ 397, 0x2a1fb426ef229796
400
+ 398, 0x74dc324c74e5dd3d
401
+ 399, 0x6df75e3eb6eb5374
402
+ 400, 0xb63f2f4f9ca25b61
403
+ 401, 0xac72286112ee54d6
404
+ 402, 0x5a966f3d0a6863c4
405
+ 403, 0x8d7046bc64a46fc2
406
+ 404, 0xa7b740fd6e3087eb
407
+ 405, 0xcdbcbe0340cfcdf5
408
+ 406, 0xcb632613bf312b65
409
+ 407, 0xa91b3f2c2aac238b
410
+ 408, 0xa06deb3f5ae555a3
411
+ 409, 0x29d72e1f8db69
412
+ 410, 0x2d004bae09728ea6
413
+ 411, 0xc6eee5dce0736cc1
414
+ 412, 0xa7493145500ff60f
415
+ 413, 0xc4d68c4aa18ab93c
416
+ 414, 0x8210c29e79d48d7f
417
+ 415, 0xd0999d7889ecbef6
418
+ 416, 0x6e3bd61e66e93566
419
+ 417, 0xe6cc13d47d7d7b1f
420
+ 418, 0x3d6f181f42e03979
421
+ 419, 0xbed4e14fd867604a
422
+ 420, 0xbe511c84067bd86d
423
+ 421, 0x49a876d89e697d38
424
+ 422, 0xc04c3dde8f889c98
425
+ 423, 0xaf293eeab0f53e3f
426
+ 424, 0x9f6291dd65732cd6
427
+ 425, 0xd7811ac01de78c01
428
+ 426, 0xe385cf0261d50ec2
429
+ 427, 0x5a64134b3542bbf
430
+ 428, 0xf9d1302bc6f13a68
431
+ 429, 0x5d2aabbea37d8c31
432
+ 430, 0xd9842e99a5192970
433
+ 431, 0x713eadc4cd30e837
434
+ 432, 0xb7b002fc72abb413
435
+ 433, 0x276cfeea526af1cf
436
+ 434, 0x8519fe79b633a0ce
437
+ 435, 0x2f0e87363705a3e2
438
+ 436, 0x9adbac0be3c371e7
439
+ 437, 0xf3f44ba899a6173c
440
+ 438, 0x782d6c29618fde2b
441
+ 439, 0x7f61062acec408f
442
+ 440, 0x6e79cd836359258f
443
+ 441, 0x5c8e9b138df5785a
444
+ 442, 0xa54359c9f39a9a84
445
+ 443, 0xeec3f033135084b0
446
+ 444, 0x883ee717787a535c
447
+ 445, 0x9a2422b513a73b00
448
+ 446, 0x2dd4beddcdd64a58
449
+ 447, 0x90c8a13202239c7b
450
+ 448, 0x85b352ab759646d9
451
+ 449, 0x139f5cb2e46c53aa
452
+ 450, 0xe1d3ba6c721c66d1
453
+ 451, 0xaa66e0edc4b60a98
454
+ 452, 0x3521275c75be29b6
455
+ 453, 0x490a5190b3edfa5d
456
+ 454, 0xd2abcdd2ccb2f14e
457
+ 455, 0x9d9be8bef4a5857d
458
+ 456, 0xde19676f13ef7755
459
+ 457, 0xdac2fee2e42615f3
460
+ 458, 0xf4239801cb02f2ab
461
+ 459, 0xaa8bf923ed91875c
462
+ 460, 0x61d18a1940e4c7c0
463
+ 461, 0x1eb6aa3d5f077a6d
464
+ 462, 0xee7374c063bf29d8
465
+ 463, 0x2f0a59e34d76268d
466
+ 464, 0xc92e80e17d1eb3e9
467
+ 465, 0xafd05b3ec3d2ca72
468
+ 466, 0x28a61ad8d6c497b8
469
+ 467, 0xa7094d6834ad7d47
470
+ 468, 0x57d80ea9eccbb4f
471
+ 469, 0xb047e0fee6cdaf16
472
+ 470, 0x44f41b5eb48c00bb
473
+ 471, 0xd6dc8e1eb9c8c9ba
474
+ 472, 0x47adfd2c638c7849
475
+ 473, 0x365d63db7d526c68
476
+ 474, 0xc21cda439016135d
477
+ 475, 0x14d10c3f0f98863c
478
+ 476, 0xa93e56f74e037602
479
+ 477, 0x3b4e9c8915bdc9
480
+ 478, 0xb46f5ae155e54aa2
481
+ 479, 0x8e470d21ce1943e1
482
+ 480, 0x60b96301b5ba2e8d
483
+ 481, 0x1b473a41d381f9ff
484
+ 482, 0xabcf5a8e3269e73f
485
+ 483, 0xd410f6e94fb21fa1
486
+ 484, 0x65d1a47eebf87e5e
487
+ 485, 0x48eaa201c61cb843
488
+ 486, 0x212c1abc2499bfc5
489
+ 487, 0x4255ad8377d2d8d
490
+ 488, 0x44caeef472010612
491
+ 489, 0xffae764524f572f2
492
+ 490, 0x78d374d20c9ee550
493
+ 491, 0x6e003206c0511cee
494
+ 492, 0x7998a159145bfb82
495
+ 493, 0x921239650bda1d4d
496
+ 494, 0xae05025509bcfdc5
497
+ 495, 0xc6430c980be407b4
498
+ 496, 0x78524f1744b153f1
499
+ 497, 0x84089e6f468181fe
500
+ 498, 0x8d0d21d7dfb6c254
501
+ 499, 0x90bad90502a33603
502
+ 500, 0x3072a403cbd16315
503
+ 501, 0xdfadddf3f1c040c2
504
+ 502, 0x22f0b0639d9ff975
505
+ 503, 0xb49e48a4cad0765b
506
+ 504, 0x95a0a04f8239709d
507
+ 505, 0x56e147a24a4c481f
508
+ 506, 0xacf16ef61dea4c7e
509
+ 507, 0x424040afd2700de6
510
+ 508, 0xc67e8096a3c717a9
511
+ 509, 0x39f164181dd0a399
512
+ 510, 0x2449cedc1d62198c
513
+ 511, 0x7a53df11a1f1a61c
514
+ 512, 0x5596f1d4a3badae3
515
+ 513, 0x38ed4c822072b3d0
516
+ 514, 0xf07ef346b3fd730a
517
+ 515, 0xfd349c35c3ed51fd
518
+ 516, 0x2f15c9c7890f8f32
519
+ 517, 0x3b470df52b173c29
520
+ 518, 0xd31bfc8981281af7
521
+ 519, 0xbbcc9bdf561215bb
522
+ 520, 0x5782fffea326574f
523
+ 521, 0xb0ebdcfcc5e03290
524
+ 522, 0x7fd89d93d2b3fbef
525
+ 523, 0x280ea1865d9ba2
526
+ 524, 0xe726959845b2c100
527
+ 525, 0xd0361f032cd7dbb1
528
+ 526, 0x3c65ec2028b81a22
529
+ 527, 0x5221e9b2188920bf
530
+ 528, 0xeb5ab27c4125ec20
531
+ 529, 0x80a32dd48b54f0a4
532
+ 530, 0x369b5ced1012bebb
533
+ 531, 0x582d35d76530bc6f
534
+ 532, 0x7b50dc9b48e1e37d
535
+ 533, 0x37fdfe8bbacf8dad
536
+ 534, 0x7a0cb7e6e93840ea
537
+ 535, 0xa1132c870be0b2ce
538
+ 536, 0x9d8ac2c68267cd1a
539
+ 537, 0x470969b647fa7df4
540
+ 538, 0xabcb7d8adf7e2d24
541
+ 539, 0xacdebec9bdf9eb1c
542
+ 540, 0xe30f4cbf7eb6a59
543
+ 541, 0x746673836c4df41d
544
+ 542, 0x75120a6b647bb326
545
+ 543, 0x2f4eab556c3f6878
546
+ 544, 0xd84651ab05405b7a
547
+ 545, 0x9e695808b9622284
548
+ 546, 0xc93b71e56aa6e1a5
549
+ 547, 0x2be7f3be4a7b7050
550
+ 548, 0x6497e910b6733241
551
+ 549, 0xcf7050dfd08076fc
552
+ 550, 0x4e3cc156eca183f7
553
+ 551, 0xf801a33d9326c265
554
+ 552, 0x6aa293c8a47d40e6
555
+ 553, 0x28c429755faa6230
556
+ 554, 0x82b818651f54e7bb
557
+ 555, 0xa84d726d7acdbead
558
+ 556, 0x5cfa535d5774965d
559
+ 557, 0x4a34b7b1cb48d53
560
+ 558, 0x86a7b5bce426de84
561
+ 559, 0xfcd2307cecdb7318
562
+ 560, 0x16dbaaa71181a038
563
+ 561, 0x88e7e8cd261c2547
564
+ 562, 0x3c09ba6d1d5ea913
565
+ 563, 0x5dd3d643734ee5b6
566
+ 564, 0x326d725fe8cbb33
567
+ 565, 0x7bcca9ca2da8e784
568
+ 566, 0x482dcf6b11d7f9a4
569
+ 567, 0x1291b605b4cd3e04
570
+ 568, 0x6988181b50e2f4a8
571
+ 569, 0x649e3c37131fc292
572
+ 570, 0x4eeb67b9e21eba54
573
+ 571, 0xc051d39073dec45f
574
+ 572, 0xc99c52e110270d67
575
+ 573, 0xcb813d5d77868add
576
+ 574, 0x423a5f13573e7ac0
577
+ 575, 0x231ac4cc4fe73616
578
+ 576, 0x4c22b888a6e600ea
579
+ 577, 0x8059a6dc7c9e25c6
580
+ 578, 0x49f498a5b8ad22de
581
+ 579, 0xf1e812cc6d1826c8
582
+ 580, 0xbbaf60abe8b11e00
583
+ 581, 0x1d31d7f4d8be9a6a
584
+ 582, 0xfeadce70a9a10c14
585
+ 583, 0xb47c635bc136996a
586
+ 584, 0xd88e694c8da030cb
587
+ 585, 0xc41bbe132aff1364
588
+ 586, 0x34249ab18a4b0800
589
+ 587, 0xf14b5c825aa736cc
590
+ 588, 0x2710be6b08df78e
591
+ 589, 0x2ab56bcc9bf9e740
592
+ 590, 0x9b7f6e591b5f648
593
+ 591, 0xfb665c3772f34135
594
+ 592, 0x628a0a5d2db5d8d5
595
+ 593, 0xb3e3f251e61b5259
596
+ 594, 0x82310ae33faf1b23
597
+ 595, 0x24af8723a65cbd0b
598
+ 596, 0x671c93282fc4ad97
599
+ 597, 0x6cabeaac77270cad
600
+ 598, 0xef4643fe38b02b7f
601
+ 599, 0x7b011549d1ac6653
602
+ 600, 0xe2af87b9fccfe89
603
+ 601, 0x36b71ad67197ac8a
604
+ 602, 0xdbba55d06f2fd93b
605
+ 603, 0xf571dbd764b7f7e5
606
+ 604, 0x38ea402501cdbd45
607
+ 605, 0xb8ab5b5b1bab2913
608
+ 606, 0xfab973c4d45f32bd
609
+ 607, 0x9364f1717c2636b9
610
+ 608, 0xfad00f4d983e00fe
611
+ 609, 0xc90c532a11aef75a
612
+ 610, 0x64a6eda96e44783c
613
+ 611, 0x35891f2eb84520be
614
+ 612, 0x28d216080caed43
615
+ 613, 0x129629cc5bd206f6
616
+ 614, 0x22c3d39822cbb4b3
617
+ 615, 0xf1efbf4cce1eaa2b
618
+ 616, 0x7070cba12524ed08
619
+ 617, 0xa7ed0be9deabf20d
620
+ 618, 0x8ddb4cd6b454f76b
621
+ 619, 0xb82814b1db37b63
622
+ 620, 0x418e83b36de01876
623
+ 621, 0x9a538c7f39c6413
624
+ 622, 0xee0cd7abf8a2ecb9
625
+ 623, 0xa9222b07e95590f3
626
+ 624, 0x6296a415d68341e6
627
+ 625, 0x981e0a5a8f811929
628
+ 626, 0x4bb372d3b0de283d
629
+ 627, 0xa9805b5971866e16
630
+ 628, 0xaf3b5f5183497657
631
+ 629, 0x2152b0fd23c3d9f
632
+ 630, 0xb730c325b7173180
633
+ 631, 0x1e3439d231608c19
634
+ 632, 0x1c5ba6031379823c
635
+ 633, 0x87f5d12d6d365cbc
636
+ 634, 0xd3bc7f29614bc594
637
+ 635, 0x63102214bb391268
638
+ 636, 0x482bbd5bba648a44
639
+ 637, 0x6a23604690759dc4
640
+ 638, 0x4091d41408d3a39e
641
+ 639, 0x7cd017f922101b15
642
+ 640, 0x7ce9004ac5f9231
643
+ 641, 0x978bc3d8ec7f7fdf
644
+ 642, 0x5bd0c4d780580c11
645
+ 643, 0x4313c068bb040153
646
+ 644, 0x3ab7dab7bc38bf80
647
+ 645, 0x3aaf9c187728deea
648
+ 646, 0x6633a4ce8efb88d9
649
+ 647, 0x7263b089878f00fc
650
+ 648, 0xd0d767e96fe00eb8
651
+ 649, 0x184a7c0c01908028
652
+ 650, 0x1ebdf41e6f76e186
653
+ 651, 0xeb740ee1d0402083
654
+ 652, 0xfccf4974edb1c339
655
+ 653, 0x16e2707aa28306d
656
+ 654, 0x1684f0bdb018c3a5
657
+ 655, 0x887b6b67b88aa862
658
+ 656, 0x923d7810a2bea33a
659
+ 657, 0x56b3560babef5d6b
660
+ 658, 0xb39a14614c54b8c6
661
+ 659, 0x33e4dc545a509fc8
662
+ 660, 0x26e21f84142da9b
663
+ 661, 0xdd07598125756855
664
+ 662, 0x572d49a071d7ae0a
665
+ 663, 0xba3c7e3baea28760
666
+ 664, 0x7ecdb2d714db4b61
667
+ 665, 0x1c62b4920e1b2fe2
668
+ 666, 0x71bfafb70092834a
669
+ 667, 0xd710a4228f60d56a
670
+ 668, 0xeb16277d4ce4e95b
671
+ 669, 0x968168c90b16d3a1
672
+ 670, 0xac3439dfe8ad0062
673
+ 671, 0x5a8226f9dd5876ad
674
+ 672, 0xb843affe917291b0
675
+ 673, 0xd76d1e67051f8259
676
+ 674, 0xb73a6638cce8ccde
677
+ 675, 0xa0e6afd3c7295f9
678
+ 676, 0xff8857b4bbb5f4c6
679
+ 677, 0x99becf78938f0426
680
+ 678, 0xfcd17edc1e70f004
681
+ 679, 0x6223b8b23f2f50
682
+ 680, 0xca875f3e84587b4c
683
+ 681, 0x7d1e81e589f87fb9
684
+ 682, 0x9eb621586aa826fc
685
+ 683, 0xf46fb9ef5b9c2086
686
+ 684, 0x2882c9b7092725f3
687
+ 685, 0x5493f099bbedcd02
688
+ 686, 0x90c1ec979ffa811d
689
+ 687, 0x963f765025bcc53
690
+ 688, 0x56194e3ec3d9d4e9
691
+ 689, 0x7ec4720954cac1f0
692
+ 690, 0xfab3145171af7f90
693
+ 691, 0x52a0b4e41a13b593
694
+ 692, 0x740e2d4d5909d126
695
+ 693, 0x98f5339c09c94a28
696
+ 694, 0x1700e462fe8dec76
697
+ 695, 0x3dbffc2aa4695ac3
698
+ 696, 0x5763edacabdfe2a1
699
+ 697, 0x7b5b623ce49ef21d
700
+ 698, 0x30addc66f49860df
701
+ 699, 0xcc7511a6c31bceda
702
+ 700, 0x1b25b61ca75db43b
703
+ 701, 0x416bc4c298e59046
704
+ 702, 0x4cd11fe2d74e4649
705
+ 703, 0xb54458a9229fc978
706
+ 704, 0x8c21a27882b6ca35
707
+ 705, 0x57887c8b5e01639b
708
+ 706, 0xf4e893da996680bb
709
+ 707, 0x8d601297702c9c0d
710
+ 708, 0x2a27904a30aa53af
711
+ 709, 0x497800f6917ea8d0
712
+ 710, 0xe96db3340ada9c00
713
+ 711, 0xcc23166f14c010ee
714
+ 712, 0x782690d78fa65ec9
715
+ 713, 0xf3e00d74a0878eda
716
+ 714, 0xa7cbb683decca0a3
717
+ 715, 0xdd2e038e683a94aa
718
+ 716, 0xe2096ff8da896ca5
719
+ 717, 0xf7c83400afdabe11
720
+ 718, 0x395b8c6f6a4086a4
721
+ 719, 0x4a164ec05bee71d4
722
+ 720, 0xe87aa5d1ca0462fe
723
+ 721, 0x8dbc5aed6dff9ceb
724
+ 722, 0x12120d1e9552707b
725
+ 723, 0x877dca6889b3e6cd
726
+ 724, 0xbd65605c01e900fb
727
+ 725, 0xbd6b82c4157c3115
728
+ 726, 0x8b60282732caf78a
729
+ 727, 0x279fcf5e5de9e57f
730
+ 728, 0x34b34ebfb6a37eae
731
+ 729, 0xd258cc1a14e03b7b
732
+ 730, 0x9a528ba3db4a13fb
733
+ 731, 0xffa0aea59d057746
734
+ 732, 0x27fa7f456cd37c4e
735
+ 733, 0xe1117a57a6fdce63
736
+ 734, 0xdc8fc903970a1551
737
+ 735, 0x492dd104f30faf29
738
+ 736, 0x110def0959e5652b
739
+ 737, 0x7f8d1997636fdd15
740
+ 738, 0xfb77b05e538a9b59
741
+ 739, 0x2e41fa35b4b01fc6
742
+ 740, 0xbc35ae69a3374085
743
+ 741, 0x192c2a681c2d9b4b
744
+ 742, 0x12566b8866c189d6
745
+ 743, 0x9d88ea785c5185c8
746
+ 744, 0x30a621ad5f983c4
747
+ 745, 0x8b875efe1206f587
748
+ 746, 0x224d25c3af6e3423
749
+ 747, 0x7503e976a1ac7bcc
750
+ 748, 0x3c98aa869e823859
751
+ 749, 0x3d8835304b646892
752
+ 750, 0xf6353330ff970bc2
753
+ 751, 0x8a673f5e2edb8acb
754
+ 752, 0xf2fdcc53493838b9
755
+ 753, 0x85ddcd526236af16
756
+ 754, 0x60afb99814c676c5
757
+ 755, 0x32a1c2749e281ca8
758
+ 756, 0x2367a92ae3bee9ca
759
+ 757, 0x219fe082703743cc
760
+ 758, 0x34d8b74dc85182a9
761
+ 759, 0xdd04164c72db23f
762
+ 760, 0xe293ac28fe2671a9
763
+ 761, 0x9ca7d169cbda6f45
764
+ 762, 0x705c47972b4240ed
765
+ 763, 0xc10eda9eeb536209
766
+ 764, 0xc36ddacd0c94e85d
767
+ 765, 0x8eb592c27e8cd0d2
768
+ 766, 0x3e815991c76e7cc4
769
+ 767, 0xac9cfce31acf7580
770
+ 768, 0xbf7a4cb31c7aee94
771
+ 769, 0x663077444aceecf6
772
+ 770, 0xe7f614ff386eb568
773
+ 771, 0x79d7a229c66912c0
774
+ 772, 0x161ed4311f63e1f3
775
+ 773, 0x308a5faeb9982ede
776
+ 774, 0x7b38ddb9b7efd10
777
+ 775, 0x1e103a2589b27ecf
778
+ 776, 0x67b02baf4259f27e
779
+ 777, 0x868921c115ea2eee
780
+ 778, 0x959791912200f71e
781
+ 779, 0x4dd55f36dec10557
782
+ 780, 0xe3464d90080cb99d
783
+ 781, 0xfb2d4f6accce652f
784
+ 782, 0x109900a9257d77ba
785
+ 783, 0x3c4bda8e2c83684c
786
+ 784, 0xc9ae040fb7f868c6
787
+ 785, 0x78098ffe994f4905
788
+ 786, 0x7a94c33eca77f0b4
789
+ 787, 0xbe6a2a95e9b5c0e8
790
+ 788, 0x797d39cf963f4837
791
+ 789, 0x8d2e249e4425d06d
792
+ 790, 0x6ae2c30cd5da06f4
793
+ 791, 0x904489de762b179f
794
+ 792, 0x84713e2dfb591e3b
795
+ 793, 0x6405a40da3f6f51b
796
+ 794, 0x976b560d663a2df1
797
+ 795, 0xed1c544784ba1e22
798
+ 796, 0xca658e995ed9344c
799
+ 797, 0x2b1c6b8e4db49025
800
+ 798, 0x52b1513da528bad
801
+ 799, 0x3c63406d256d9968
802
+ 800, 0x63a31ca3d423f85e
803
+ 801, 0xb05a81f55789a720
804
+ 802, 0xd04412992c476c8e
805
+ 803, 0x828ec2f77a150a3d
806
+ 804, 0xee50926671bb60c6
807
+ 805, 0x5aa70f93e2df61b4
808
+ 806, 0x94d60fa2e8655858
809
+ 807, 0x3f5e5b770703cc7d
810
+ 808, 0xc62dfb2688ca7784
811
+ 809, 0xaaf02e1e8ba89fe4
812
+ 810, 0x4ab74e0d8c047405
813
+ 811, 0x31ee04fbac6fcead
814
+ 812, 0x1203b78b8228f5af
815
+ 813, 0x412a70836f9aa71a
816
+ 814, 0xab51cf98c03f1819
817
+ 815, 0x783a3ce9ce137f65
818
+ 816, 0x8897085b0a072cf2
819
+ 817, 0x685dd9bde8798cb
820
+ 818, 0x9a1fac7b1705e2c1
821
+ 819, 0xf3e9ff98de48e9cb
822
+ 820, 0x5c2d3eb1a1fbe917
823
+ 821, 0x3bda718b6b54d82e
824
+ 822, 0x29f2dd18f22f0821
825
+ 823, 0xb992da1572ac3597
826
+ 824, 0xacb69e7aa14b34f7
827
+ 825, 0xcd36e3ad14f088d1
828
+ 826, 0x6aaacc96a1ec55e8
829
+ 827, 0xf8ac593f154fe68f
830
+ 828, 0x18fc9cbff012339f
831
+ 829, 0x2f3368ccbbb99899
832
+ 830, 0x7cec7d17f37031f7
833
+ 831, 0x96e86bfaadcb8fc2
834
+ 832, 0x74f9e7ee3d42a752
835
+ 833, 0xbd52f6c7d9b0733
836
+ 834, 0xa48e6d96bb6ce1c9
837
+ 835, 0xaefa058254b82133
838
+ 836, 0xb7a19edfd0929107
839
+ 837, 0x6160ce9125b26e26
840
+ 838, 0x6537dbbde1d2aed
841
+ 839, 0xc567f9a6bec52dde
842
+ 840, 0xca29fd3f22443342
843
+ 841, 0x7732aa6db6a1c476
844
+ 842, 0x8f5a4d7df6b11b3
845
+ 843, 0x76649262aa7e31e1
846
+ 844, 0x60a13eb125fbc829
847
+ 845, 0xc81e4d123dd21ac1
848
+ 846, 0x643cbb09bb72f86b
849
+ 847, 0xf971a98fb25555a6
850
+ 848, 0xffa2774c66692d56
851
+ 849, 0xcb33c16c50b13ea9
852
+ 850, 0xfabf388dffda0e9b
853
+ 851, 0x55d41ec12ca24b9f
854
+ 852, 0x91cf693a3467e807
855
+ 853, 0x6be2c00b2c31d6dd
856
+ 854, 0xc5cf513b5251ae28
857
+ 855, 0xffc4384212403dec
858
+ 856, 0x45d4e1865255a69d
859
+ 857, 0xfb1dcf956972086a
860
+ 858, 0xcae946a55c4c55b8
861
+ 859, 0x7351ac7720e385c1
862
+ 860, 0x19aa8ffd86240254
863
+ 861, 0x8f515ae78f4040da
864
+ 862, 0x1e1ed2058de50fce
865
+ 863, 0x22d006dcdb374243
866
+ 864, 0x6e0f0ede7c95b441
867
+ 865, 0x70e8aa81b53b4d25
868
+ 866, 0x998f309ea41e3814
869
+ 867, 0x89ed6598fb66f390
870
+ 868, 0xb5997dc3278060df
871
+ 869, 0xb2a021eac4f7e046
872
+ 870, 0x3705b60aa2fd0768
873
+ 871, 0xfc415079ab9200e
874
+ 872, 0xf2871ac4cf45ecc9
875
+ 873, 0x24bf758d2246175f
876
+ 874, 0xac503dd6f8141b3
877
+ 875, 0x4e879d12d9f03b3
878
+ 876, 0x82034af8cf93b644
879
+ 877, 0x59899dd7e478a6c7
880
+ 878, 0xae90addb6eb11507
881
+ 879, 0x1524ddf76730cdef
882
+ 880, 0x6fd4afd5456b1c9d
883
+ 881, 0xcddb9221ea001cbc
884
+ 882, 0x64ff400bbf2e8604
885
+ 883, 0x6dda10549b06ed9b
886
+ 884, 0xed2c85104c261527
887
+ 885, 0xc7e09217d29929a8
888
+ 886, 0x56284df611a428b1
889
+ 887, 0x1a7608289c0a61
890
+ 888, 0x7cb63db15166ff66
891
+ 889, 0xc6013c76fcdcdc72
892
+ 890, 0x8e5dd566c7a5a676
893
+ 891, 0x5a8e8565f40d133b
894
+ 892, 0xe465973455848c44
895
+ 893, 0xf92eecbfe0f3c2c0
896
+ 894, 0x7d64155d4dcc5cac
897
+ 895, 0xf17595706f988dad
898
+ 896, 0xd590a001a6a19c5c
899
+ 897, 0x82a164475758db3d
900
+ 898, 0x6b144993ea1bbe32
901
+ 899, 0x22a81a7a6e453779
902
+ 900, 0x8e8c298df1a68a73
903
+ 901, 0x78056afd6d936b4c
904
+ 902, 0xaaceef0325faaf62
905
+ 903, 0xe78bb7699f82266f
906
+ 904, 0x523a2d283c5a5166
907
+ 905, 0x7076d87088f6c6db
908
+ 906, 0x6087dd54cff5aeb2
909
+ 907, 0x7ef82e62cb851680
910
+ 908, 0x4e8bcc8ed84d03d8
911
+ 909, 0xd12fa0361df3cfd3
912
+ 910, 0xefb89c79f8127297
913
+ 911, 0xa9af4e2fbce0b1f8
914
+ 912, 0x462136685b70331e
915
+ 913, 0xe9e74c93da699b77
916
+ 914, 0x9ec69215fb11d0c3
917
+ 915, 0xc10f229939e3e111
918
+ 916, 0x3f67fa79e41d2374
919
+ 917, 0xd5e7c1a9a7185162
920
+ 918, 0xa1dcce9ec91492fe
921
+ 919, 0xd4e61f0727b5d21b
922
+ 920, 0xdf6cdce46551800a
923
+ 921, 0xa3f256ce906982d3
924
+ 922, 0x209742a6b9ffc27
925
+ 923, 0x4006c96958526a57
926
+ 924, 0x9606aebc75a1967e
927
+ 925, 0x91b9f42fb64189df
928
+ 926, 0xb27119defcb938bc
929
+ 927, 0x128cc7a84ba05597
930
+ 928, 0x6c3df613c62d0d30
931
+ 929, 0x3adf69d48b629ec7
932
+ 930, 0xda42ee493837b128
933
+ 931, 0xb8e770480e760bb5
934
+ 932, 0x9feb55d57c99c626
935
+ 933, 0x29812d80afdae3ed
936
+ 934, 0xae4222a64276a8c7
937
+ 935, 0xe3897212a5b4ed53
938
+ 936, 0x98bedfd13886e669
939
+ 937, 0xca858675d7fc0d0e
940
+ 938, 0x28a359f665354234
941
+ 939, 0xfac2ccabe4128b35
942
+ 940, 0x61373cc5d11ca180
943
+ 941, 0x7007605a4512a87a
944
+ 942, 0xe71f8eade7b30b3d
945
+ 943, 0x3a9e77f9b99bd04d
946
+ 944, 0x70d3e42488098866
947
+ 945, 0xd30fc159c7cd4d99
948
+ 946, 0xe4d3f6600d2e2d6f
949
+ 947, 0x1088324dfa955c25
950
+ 948, 0x516437acd4764623
951
+ 949, 0x38a31abe50d0aa03
952
+ 950, 0x72e1054e9dc02ba
953
+ 951, 0xe6971dd664d1a2e2
954
+ 952, 0xf6698cb095d3b702
955
+ 953, 0xad995a5a8c19bd92
956
+ 954, 0x34e53c6936f656e6
957
+ 955, 0x10de240bc07c757a
958
+ 956, 0x3e3b9a6861c2bd1c
959
+ 957, 0x9c0b0b97d3712ec9
960
+ 958, 0xabf1505a75043aed
961
+ 959, 0xbdf93d3de3274179
962
+ 960, 0x28fa5904d3f62c28
963
+ 961, 0xc3b97b39ef6c5133
964
+ 962, 0xf2b2219225b8679d
965
+ 963, 0x8be4ec0f930c0aaa
966
+ 964, 0x47de5a56aa590643
967
+ 965, 0xb6f871b304129856
968
+ 966, 0x80a61c06233ab0f9
969
+ 967, 0x3ce6c3af8101b055
970
+ 968, 0x85b911708274e7d1
971
+ 969, 0x4cab65d093a488b7
972
+ 970, 0xaabc4b10661fe28e
973
+ 971, 0x35b16dea64474a68
974
+ 972, 0x1d6eb5b093361223
975
+ 973, 0xc39107b92f0fe1fb
976
+ 974, 0x1d09e048073c4841
977
+ 975, 0xc6a02f43aca8cb2f
978
+ 976, 0xaf6613dbc7da909c
979
+ 977, 0x5ac2a40c230aa756
980
+ 978, 0x33afb5e7c01c39a5
981
+ 979, 0xc7b0b20ea8b7d0ef
982
+ 980, 0xdf7306c8ccb1bbea
983
+ 981, 0x9710efc0c188b2a0
984
+ 982, 0xd6303eadb72c873e
985
+ 983, 0xa38ca609b118f35a
986
+ 984, 0x8390613065c6e535
987
+ 985, 0xdf9a0106757e431f
988
+ 986, 0x8bcf77039788e143
989
+ 987, 0x6026806a986b378e
990
+ 988, 0x482ff3b1394cb1dc
991
+ 989, 0x2a27d0ccac9ede9c
992
+ 990, 0x53c77f26e271b3ab
993
+ 991, 0x1ba004cf276cf3f
994
+ 992, 0xc135b0517dc81f7c
995
+ 993, 0x5d137838db75e442
996
+ 994, 0x3fe505f93d1dbdd7
997
+ 995, 0x351654ae7d598294
998
+ 996, 0x173f8d182af9d84d
999
+ 997, 0xf97dfcd164fe11c5
1000
+ 998, 0xcda423e5ad43b290
1001
+ 999, 0xa5cb380b8de10d10