numpy 2.3.5__cp313-cp313-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.

Potentially problematic release.


This version of numpy might be problematic. Click here for more details.

Files changed (897) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +102 -0
  3. numpy/__init__.cython-30.pxd +1241 -0
  4. numpy/__init__.pxd +1154 -0
  5. numpy/__init__.py +945 -0
  6. numpy/__init__.pyi +6147 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +207 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +186 -0
  12. numpy/_core/__init__.pyi +2 -0
  13. numpy/_core/_add_newdocs.py +6967 -0
  14. numpy/_core/_add_newdocs.pyi +3 -0
  15. numpy/_core/_add_newdocs_scalars.py +390 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +134 -0
  18. numpy/_core/_asarray.pyi +41 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +58 -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 +55 -0
  25. numpy/_core/_internal.py +958 -0
  26. numpy/_core/_internal.pyi +72 -0
  27. numpy/_core/_machar.py +355 -0
  28. numpy/_core/_machar.pyi +55 -0
  29. numpy/_core/_methods.py +255 -0
  30. numpy/_core/_methods.pyi +22 -0
  31. numpy/_core/_multiarray_tests.cpython-313-darwin.so +0 -0
  32. numpy/_core/_multiarray_umath.cpython-313-darwin.so +0 -0
  33. numpy/_core/_operand_flag_tests.cpython-313-darwin.so +0 -0
  34. numpy/_core/_rational_tests.cpython-313-darwin.so +0 -0
  35. numpy/_core/_simd.cpython-313-darwin.so +0 -0
  36. numpy/_core/_simd.pyi +25 -0
  37. numpy/_core/_string_helpers.py +100 -0
  38. numpy/_core/_string_helpers.pyi +12 -0
  39. numpy/_core/_struct_ufunc_tests.cpython-313-darwin.so +0 -0
  40. numpy/_core/_type_aliases.py +119 -0
  41. numpy/_core/_type_aliases.pyi +97 -0
  42. numpy/_core/_ufunc_config.py +491 -0
  43. numpy/_core/_ufunc_config.pyi +78 -0
  44. numpy/_core/_umath_tests.cpython-313-darwin.so +0 -0
  45. numpy/_core/arrayprint.py +1775 -0
  46. numpy/_core/arrayprint.pyi +238 -0
  47. numpy/_core/cversions.py +13 -0
  48. numpy/_core/defchararray.py +1427 -0
  49. numpy/_core/defchararray.pyi +1135 -0
  50. numpy/_core/einsumfunc.py +1498 -0
  51. numpy/_core/einsumfunc.pyi +184 -0
  52. numpy/_core/fromnumeric.py +4269 -0
  53. numpy/_core/fromnumeric.pyi +1750 -0
  54. numpy/_core/function_base.py +545 -0
  55. numpy/_core/function_base.pyi +278 -0
  56. numpy/_core/getlimits.py +748 -0
  57. numpy/_core/getlimits.pyi +3 -0
  58. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  59. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  60. numpy/_core/include/numpy/__ufunc_api.c +54 -0
  61. numpy/_core/include/numpy/__ufunc_api.h +341 -0
  62. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  63. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  64. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  65. numpy/_core/include/numpy/arrayobject.h +7 -0
  66. numpy/_core/include/numpy/arrayscalars.h +196 -0
  67. numpy/_core/include/numpy/dtype_api.h +480 -0
  68. numpy/_core/include/numpy/halffloat.h +70 -0
  69. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  70. numpy/_core/include/numpy/ndarraytypes.h +1950 -0
  71. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  72. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  73. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  74. numpy/_core/include/numpy/npy_common.h +977 -0
  75. numpy/_core/include/numpy/npy_cpu.h +124 -0
  76. numpy/_core/include/numpy/npy_endian.h +78 -0
  77. numpy/_core/include/numpy/npy_math.h +602 -0
  78. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  79. numpy/_core/include/numpy/npy_os.h +42 -0
  80. numpy/_core/include/numpy/numpyconfig.h +182 -0
  81. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  82. numpy/_core/include/numpy/random/bitgen.h +20 -0
  83. numpy/_core/include/numpy/random/distributions.h +209 -0
  84. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  85. numpy/_core/include/numpy/ufuncobject.h +343 -0
  86. numpy/_core/include/numpy/utils.h +37 -0
  87. numpy/_core/lib/libnpymath.a +0 -0
  88. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  89. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  90. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  91. numpy/_core/memmap.py +363 -0
  92. numpy/_core/memmap.pyi +3 -0
  93. numpy/_core/multiarray.py +1762 -0
  94. numpy/_core/multiarray.pyi +1285 -0
  95. numpy/_core/numeric.py +2760 -0
  96. numpy/_core/numeric.pyi +882 -0
  97. numpy/_core/numerictypes.py +633 -0
  98. numpy/_core/numerictypes.pyi +197 -0
  99. numpy/_core/overrides.py +183 -0
  100. numpy/_core/overrides.pyi +48 -0
  101. numpy/_core/printoptions.py +32 -0
  102. numpy/_core/printoptions.pyi +28 -0
  103. numpy/_core/records.py +1089 -0
  104. numpy/_core/records.pyi +333 -0
  105. numpy/_core/shape_base.py +998 -0
  106. numpy/_core/shape_base.pyi +175 -0
  107. numpy/_core/strings.py +1829 -0
  108. numpy/_core/strings.pyi +511 -0
  109. numpy/_core/tests/_locales.py +72 -0
  110. numpy/_core/tests/_natype.py +205 -0
  111. numpy/_core/tests/data/astype_copy.pkl +0 -0
  112. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  113. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  114. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  115. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  116. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  117. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  118. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  119. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  120. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  121. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  122. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  123. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  124. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  125. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  127. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  128. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  129. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  130. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  131. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  132. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  134. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  135. numpy/_core/tests/examples/cython/checks.pyx +373 -0
  136. numpy/_core/tests/examples/cython/meson.build +43 -0
  137. numpy/_core/tests/examples/cython/setup.py +39 -0
  138. numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
  139. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  140. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  141. numpy/_core/tests/examples/limited_api/meson.build +59 -0
  142. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  143. numpy/_core/tests/test__exceptions.py +90 -0
  144. numpy/_core/tests/test_abc.py +54 -0
  145. numpy/_core/tests/test_api.py +654 -0
  146. numpy/_core/tests/test_argparse.py +92 -0
  147. numpy/_core/tests/test_array_api_info.py +113 -0
  148. numpy/_core/tests/test_array_coercion.py +911 -0
  149. numpy/_core/tests/test_array_interface.py +222 -0
  150. numpy/_core/tests/test_arraymethod.py +84 -0
  151. numpy/_core/tests/test_arrayobject.py +75 -0
  152. numpy/_core/tests/test_arrayprint.py +1328 -0
  153. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  154. numpy/_core/tests/test_casting_unittests.py +817 -0
  155. numpy/_core/tests/test_conversion_utils.py +206 -0
  156. numpy/_core/tests/test_cpu_dispatcher.py +49 -0
  157. numpy/_core/tests/test_cpu_features.py +432 -0
  158. numpy/_core/tests/test_custom_dtypes.py +315 -0
  159. numpy/_core/tests/test_cython.py +351 -0
  160. numpy/_core/tests/test_datetime.py +2734 -0
  161. numpy/_core/tests/test_defchararray.py +825 -0
  162. numpy/_core/tests/test_deprecations.py +454 -0
  163. numpy/_core/tests/test_dlpack.py +190 -0
  164. numpy/_core/tests/test_dtype.py +1995 -0
  165. numpy/_core/tests/test_einsum.py +1317 -0
  166. numpy/_core/tests/test_errstate.py +131 -0
  167. numpy/_core/tests/test_extint128.py +217 -0
  168. numpy/_core/tests/test_function_base.py +503 -0
  169. numpy/_core/tests/test_getlimits.py +205 -0
  170. numpy/_core/tests/test_half.py +568 -0
  171. numpy/_core/tests/test_hashtable.py +35 -0
  172. numpy/_core/tests/test_indexerrors.py +125 -0
  173. numpy/_core/tests/test_indexing.py +1455 -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 +369 -0
  177. numpy/_core/tests/test_machar.py +30 -0
  178. numpy/_core/tests/test_mem_overlap.py +930 -0
  179. numpy/_core/tests/test_mem_policy.py +452 -0
  180. numpy/_core/tests/test_memmap.py +246 -0
  181. numpy/_core/tests/test_multiarray.py +10577 -0
  182. numpy/_core/tests/test_multithreading.py +292 -0
  183. numpy/_core/tests/test_nditer.py +3498 -0
  184. numpy/_core/tests/test_nep50_promotions.py +287 -0
  185. numpy/_core/tests/test_numeric.py +4247 -0
  186. numpy/_core/tests/test_numerictypes.py +651 -0
  187. numpy/_core/tests/test_overrides.py +791 -0
  188. numpy/_core/tests/test_print.py +200 -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 +2670 -0
  192. numpy/_core/tests/test_scalar_ctors.py +207 -0
  193. numpy/_core/tests/test_scalar_methods.py +246 -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 +1176 -0
  197. numpy/_core/tests/test_scalarprint.py +403 -0
  198. numpy/_core/tests/test_shape_base.py +891 -0
  199. numpy/_core/tests/test_simd.py +1341 -0
  200. numpy/_core/tests/test_simd_module.py +103 -0
  201. numpy/_core/tests/test_stringdtype.py +1814 -0
  202. numpy/_core/tests/test_strings.py +1499 -0
  203. numpy/_core/tests/test_ufunc.py +3313 -0
  204. numpy/_core/tests/test_umath.py +4928 -0
  205. numpy/_core/tests/test_umath_accuracy.py +124 -0
  206. numpy/_core/tests/test_umath_complex.py +626 -0
  207. numpy/_core/tests/test_unicode.py +368 -0
  208. numpy/_core/umath.py +60 -0
  209. numpy/_core/umath.pyi +197 -0
  210. numpy/_distributor_init.py +15 -0
  211. numpy/_distributor_init.pyi +1 -0
  212. numpy/_expired_attrs_2_0.py +79 -0
  213. numpy/_expired_attrs_2_0.pyi +62 -0
  214. numpy/_globals.py +96 -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 +13 -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 +148 -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 +40 -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 +941 -0
  239. numpy/_utils/__init__.py +95 -0
  240. numpy/_utils/__init__.pyi +30 -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 +71 -0
  245. numpy/_utils/_pep440.py +486 -0
  246. numpy/_utils/_pep440.pyi +121 -0
  247. numpy/char/__init__.py +2 -0
  248. numpy/char/__init__.pyi +111 -0
  249. numpy/conftest.py +258 -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 +33 -0
  275. numpy/ctypeslib/_ctypeslib.py +603 -0
  276. numpy/ctypeslib/_ctypeslib.pyi +245 -0
  277. numpy/doc/ufuncs.py +138 -0
  278. numpy/dtypes.py +41 -0
  279. numpy/dtypes.pyi +631 -0
  280. numpy/exceptions.py +247 -0
  281. numpy/exceptions.pyi +27 -0
  282. numpy/f2py/__init__.py +86 -0
  283. numpy/f2py/__init__.pyi +6 -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 +231 -0
  294. numpy/f2py/_backends/_meson.pyi +63 -0
  295. numpy/f2py/_backends/meson.build.template +55 -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 +29 -0
  300. numpy/f2py/auxfuncs.py +1004 -0
  301. numpy/f2py/auxfuncs.pyi +264 -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 +258 -0
  312. numpy/f2py/diagnose.py +149 -0
  313. numpy/f2py/diagnose.pyi +1 -0
  314. numpy/f2py/f2py2e.py +786 -0
  315. numpy/f2py/f2py2e.pyi +76 -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 +43 -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 +1516 -0
  326. numpy/f2py/symbolic.pyi +221 -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 +64 -0
  435. numpy/f2py/tests/test_f2cmap.py +17 -0
  436. numpy/f2py/tests/test_f2py2e.py +964 -0
  437. numpy/f2py/tests/test_isoc.py +56 -0
  438. numpy/f2py/tests/test_kind.py +53 -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 +495 -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 +215 -0
  460. numpy/fft/__init__.pyi +43 -0
  461. numpy/fft/_helper.py +235 -0
  462. numpy/fft/_helper.pyi +45 -0
  463. numpy/fft/_pocketfft.py +1693 -0
  464. numpy/fft/_pocketfft.pyi +138 -0
  465. numpy/fft/_pocketfft_umath.cpython-313-darwin.so +0 -0
  466. numpy/fft/helper.py +17 -0
  467. numpy/fft/helper.pyi +22 -0
  468. numpy/fft/tests/__init__.py +0 -0
  469. numpy/fft/tests/test_helper.py +167 -0
  470. numpy/fft/tests/test_pocketfft.py +589 -0
  471. numpy/lib/__init__.py +97 -0
  472. numpy/lib/__init__.pyi +44 -0
  473. numpy/lib/_array_utils_impl.py +62 -0
  474. numpy/lib/_array_utils_impl.pyi +26 -0
  475. numpy/lib/_arraypad_impl.py +890 -0
  476. numpy/lib/_arraypad_impl.pyi +89 -0
  477. numpy/lib/_arraysetops_impl.py +1260 -0
  478. numpy/lib/_arraysetops_impl.pyi +468 -0
  479. numpy/lib/_arrayterator_impl.py +224 -0
  480. numpy/lib/_arrayterator_impl.pyi +46 -0
  481. numpy/lib/_datasource.py +700 -0
  482. numpy/lib/_datasource.pyi +31 -0
  483. numpy/lib/_format_impl.py +1036 -0
  484. numpy/lib/_format_impl.pyi +26 -0
  485. numpy/lib/_function_base_impl.py +5844 -0
  486. numpy/lib/_function_base_impl.pyi +1164 -0
  487. numpy/lib/_histograms_impl.py +1085 -0
  488. numpy/lib/_histograms_impl.pyi +50 -0
  489. numpy/lib/_index_tricks_impl.py +1067 -0
  490. numpy/lib/_index_tricks_impl.pyi +208 -0
  491. numpy/lib/_iotools.py +900 -0
  492. numpy/lib/_iotools.pyi +114 -0
  493. numpy/lib/_nanfunctions_impl.py +2024 -0
  494. numpy/lib/_nanfunctions_impl.pyi +52 -0
  495. numpy/lib/_npyio_impl.py +2596 -0
  496. numpy/lib/_npyio_impl.pyi +301 -0
  497. numpy/lib/_polynomial_impl.py +1465 -0
  498. numpy/lib/_polynomial_impl.pyi +318 -0
  499. numpy/lib/_scimath_impl.py +642 -0
  500. numpy/lib/_scimath_impl.pyi +93 -0
  501. numpy/lib/_shape_base_impl.py +1301 -0
  502. numpy/lib/_shape_base_impl.pyi +235 -0
  503. numpy/lib/_stride_tricks_impl.py +549 -0
  504. numpy/lib/_stride_tricks_impl.pyi +74 -0
  505. numpy/lib/_twodim_base_impl.py +1201 -0
  506. numpy/lib/_twodim_base_impl.pyi +438 -0
  507. numpy/lib/_type_check_impl.py +699 -0
  508. numpy/lib/_type_check_impl.pyi +350 -0
  509. numpy/lib/_ufunclike_impl.py +207 -0
  510. numpy/lib/_ufunclike_impl.pyi +67 -0
  511. numpy/lib/_user_array_impl.py +299 -0
  512. numpy/lib/_user_array_impl.pyi +225 -0
  513. numpy/lib/_utils_impl.py +784 -0
  514. numpy/lib/_utils_impl.pyi +10 -0
  515. numpy/lib/_version.py +154 -0
  516. numpy/lib/_version.pyi +17 -0
  517. numpy/lib/array_utils.py +7 -0
  518. numpy/lib/array_utils.pyi +12 -0
  519. numpy/lib/format.py +24 -0
  520. numpy/lib/format.pyi +66 -0
  521. numpy/lib/introspect.py +95 -0
  522. numpy/lib/introspect.pyi +3 -0
  523. numpy/lib/mixins.py +180 -0
  524. numpy/lib/mixins.pyi +77 -0
  525. numpy/lib/npyio.py +1 -0
  526. numpy/lib/npyio.pyi +9 -0
  527. numpy/lib/recfunctions.py +1681 -0
  528. numpy/lib/recfunctions.pyi +435 -0
  529. numpy/lib/scimath.py +13 -0
  530. numpy/lib/scimath.pyi +30 -0
  531. numpy/lib/stride_tricks.py +1 -0
  532. numpy/lib/stride_tricks.pyi +6 -0
  533. numpy/lib/tests/__init__.py +0 -0
  534. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  535. numpy/lib/tests/data/py2-objarr.npy +0 -0
  536. numpy/lib/tests/data/py2-objarr.npz +0 -0
  537. numpy/lib/tests/data/py3-objarr.npy +0 -0
  538. numpy/lib/tests/data/py3-objarr.npz +0 -0
  539. numpy/lib/tests/data/python3.npy +0 -0
  540. numpy/lib/tests/data/win64python2.npy +0 -0
  541. numpy/lib/tests/test__datasource.py +352 -0
  542. numpy/lib/tests/test__iotools.py +360 -0
  543. numpy/lib/tests/test__version.py +64 -0
  544. numpy/lib/tests/test_array_utils.py +32 -0
  545. numpy/lib/tests/test_arraypad.py +1415 -0
  546. numpy/lib/tests/test_arraysetops.py +1074 -0
  547. numpy/lib/tests/test_arrayterator.py +46 -0
  548. numpy/lib/tests/test_format.py +1054 -0
  549. numpy/lib/tests/test_function_base.py +4573 -0
  550. numpy/lib/tests/test_histograms.py +855 -0
  551. numpy/lib/tests/test_index_tricks.py +573 -0
  552. numpy/lib/tests/test_io.py +2848 -0
  553. numpy/lib/tests/test_loadtxt.py +1101 -0
  554. numpy/lib/tests/test_mixins.py +215 -0
  555. numpy/lib/tests/test_nanfunctions.py +1438 -0
  556. numpy/lib/tests/test_packbits.py +376 -0
  557. numpy/lib/tests/test_polynomial.py +320 -0
  558. numpy/lib/tests/test_recfunctions.py +1052 -0
  559. numpy/lib/tests/test_regression.py +231 -0
  560. numpy/lib/tests/test_shape_base.py +813 -0
  561. numpy/lib/tests/test_stride_tricks.py +656 -0
  562. numpy/lib/tests/test_twodim_base.py +559 -0
  563. numpy/lib/tests/test_type_check.py +473 -0
  564. numpy/lib/tests/test_ufunclike.py +97 -0
  565. numpy/lib/tests/test_utils.py +80 -0
  566. numpy/lib/user_array.py +1 -0
  567. numpy/lib/user_array.pyi +1 -0
  568. numpy/linalg/__init__.py +98 -0
  569. numpy/linalg/__init__.pyi +73 -0
  570. numpy/linalg/_linalg.py +3682 -0
  571. numpy/linalg/_linalg.pyi +475 -0
  572. numpy/linalg/_umath_linalg.cpython-313-darwin.so +0 -0
  573. numpy/linalg/_umath_linalg.pyi +61 -0
  574. numpy/linalg/lapack_lite.cpython-313-darwin.so +0 -0
  575. numpy/linalg/lapack_lite.pyi +141 -0
  576. numpy/linalg/linalg.py +17 -0
  577. numpy/linalg/linalg.pyi +69 -0
  578. numpy/linalg/tests/__init__.py +0 -0
  579. numpy/linalg/tests/test_deprecations.py +20 -0
  580. numpy/linalg/tests/test_linalg.py +2443 -0
  581. numpy/linalg/tests/test_regression.py +181 -0
  582. numpy/ma/API_CHANGES.txt +135 -0
  583. numpy/ma/LICENSE +24 -0
  584. numpy/ma/README.rst +236 -0
  585. numpy/ma/__init__.py +53 -0
  586. numpy/ma/__init__.pyi +458 -0
  587. numpy/ma/core.py +8933 -0
  588. numpy/ma/core.pyi +1462 -0
  589. numpy/ma/extras.py +2344 -0
  590. numpy/ma/extras.pyi +138 -0
  591. numpy/ma/mrecords.py +773 -0
  592. numpy/ma/mrecords.pyi +96 -0
  593. numpy/ma/tests/__init__.py +0 -0
  594. numpy/ma/tests/test_arrayobject.py +40 -0
  595. numpy/ma/tests/test_core.py +5886 -0
  596. numpy/ma/tests/test_deprecations.py +87 -0
  597. numpy/ma/tests/test_extras.py +1998 -0
  598. numpy/ma/tests/test_mrecords.py +497 -0
  599. numpy/ma/tests/test_old_ma.py +942 -0
  600. numpy/ma/tests/test_regression.py +100 -0
  601. numpy/ma/tests/test_subclassing.py +469 -0
  602. numpy/ma/testutils.py +294 -0
  603. numpy/matlib.py +380 -0
  604. numpy/matlib.pyi +582 -0
  605. numpy/matrixlib/__init__.py +12 -0
  606. numpy/matrixlib/__init__.pyi +5 -0
  607. numpy/matrixlib/defmatrix.py +1119 -0
  608. numpy/matrixlib/defmatrix.pyi +17 -0
  609. numpy/matrixlib/tests/__init__.py +0 -0
  610. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  611. numpy/matrixlib/tests/test_interaction.py +360 -0
  612. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  613. numpy/matrixlib/tests/test_matrix_linalg.py +105 -0
  614. numpy/matrixlib/tests/test_multiarray.py +17 -0
  615. numpy/matrixlib/tests/test_numeric.py +18 -0
  616. numpy/matrixlib/tests/test_regression.py +31 -0
  617. numpy/polynomial/__init__.py +187 -0
  618. numpy/polynomial/__init__.pyi +25 -0
  619. numpy/polynomial/_polybase.py +1191 -0
  620. numpy/polynomial/_polybase.pyi +285 -0
  621. numpy/polynomial/_polytypes.pyi +892 -0
  622. numpy/polynomial/chebyshev.py +2003 -0
  623. numpy/polynomial/chebyshev.pyi +181 -0
  624. numpy/polynomial/hermite.py +1740 -0
  625. numpy/polynomial/hermite.pyi +107 -0
  626. numpy/polynomial/hermite_e.py +1642 -0
  627. numpy/polynomial/hermite_e.pyi +107 -0
  628. numpy/polynomial/laguerre.py +1675 -0
  629. numpy/polynomial/laguerre.pyi +100 -0
  630. numpy/polynomial/legendre.py +1605 -0
  631. numpy/polynomial/legendre.pyi +100 -0
  632. numpy/polynomial/polynomial.py +1616 -0
  633. numpy/polynomial/polynomial.pyi +89 -0
  634. numpy/polynomial/polyutils.py +759 -0
  635. numpy/polynomial/polyutils.pyi +423 -0
  636. numpy/polynomial/tests/__init__.py +0 -0
  637. numpy/polynomial/tests/test_chebyshev.py +623 -0
  638. numpy/polynomial/tests/test_classes.py +618 -0
  639. numpy/polynomial/tests/test_hermite.py +558 -0
  640. numpy/polynomial/tests/test_hermite_e.py +559 -0
  641. numpy/polynomial/tests/test_laguerre.py +540 -0
  642. numpy/polynomial/tests/test_legendre.py +571 -0
  643. numpy/polynomial/tests/test_polynomial.py +669 -0
  644. numpy/polynomial/tests/test_polyutils.py +128 -0
  645. numpy/polynomial/tests/test_printing.py +555 -0
  646. numpy/polynomial/tests/test_symbol.py +217 -0
  647. numpy/py.typed +0 -0
  648. numpy/random/LICENSE.md +71 -0
  649. numpy/random/__init__.pxd +14 -0
  650. numpy/random/__init__.py +213 -0
  651. numpy/random/__init__.pyi +124 -0
  652. numpy/random/_bounded_integers.cpython-313-darwin.so +0 -0
  653. numpy/random/_bounded_integers.pxd +29 -0
  654. numpy/random/_bounded_integers.pyi +1 -0
  655. numpy/random/_common.cpython-313-darwin.so +0 -0
  656. numpy/random/_common.pxd +107 -0
  657. numpy/random/_common.pyi +16 -0
  658. numpy/random/_examples/cffi/extending.py +44 -0
  659. numpy/random/_examples/cffi/parse.py +53 -0
  660. numpy/random/_examples/cython/extending.pyx +77 -0
  661. numpy/random/_examples/cython/extending_distributions.pyx +118 -0
  662. numpy/random/_examples/cython/meson.build +53 -0
  663. numpy/random/_examples/numba/extending.py +86 -0
  664. numpy/random/_examples/numba/extending_distributions.py +67 -0
  665. numpy/random/_generator.cpython-313-darwin.so +0 -0
  666. numpy/random/_generator.pyi +861 -0
  667. numpy/random/_mt19937.cpython-313-darwin.so +0 -0
  668. numpy/random/_mt19937.pyi +25 -0
  669. numpy/random/_pcg64.cpython-313-darwin.so +0 -0
  670. numpy/random/_pcg64.pyi +44 -0
  671. numpy/random/_philox.cpython-313-darwin.so +0 -0
  672. numpy/random/_philox.pyi +39 -0
  673. numpy/random/_pickle.py +88 -0
  674. numpy/random/_pickle.pyi +43 -0
  675. numpy/random/_sfc64.cpython-313-darwin.so +0 -0
  676. numpy/random/_sfc64.pyi +28 -0
  677. numpy/random/bit_generator.cpython-313-darwin.so +0 -0
  678. numpy/random/bit_generator.pxd +35 -0
  679. numpy/random/bit_generator.pyi +124 -0
  680. numpy/random/c_distributions.pxd +119 -0
  681. numpy/random/lib/libnpyrandom.a +0 -0
  682. numpy/random/mtrand.cpython-313-darwin.so +0 -0
  683. numpy/random/mtrand.pyi +703 -0
  684. numpy/random/tests/__init__.py +0 -0
  685. numpy/random/tests/data/__init__.py +0 -0
  686. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  687. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  688. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  689. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  690. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  691. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  692. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  693. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  694. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  695. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  696. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  697. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  698. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  699. numpy/random/tests/test_direct.py +592 -0
  700. numpy/random/tests/test_extending.py +127 -0
  701. numpy/random/tests/test_generator_mt19937.py +2809 -0
  702. numpy/random/tests/test_generator_mt19937_regressions.py +207 -0
  703. numpy/random/tests/test_random.py +1757 -0
  704. numpy/random/tests/test_randomstate.py +2130 -0
  705. numpy/random/tests/test_randomstate_regression.py +217 -0
  706. numpy/random/tests/test_regression.py +152 -0
  707. numpy/random/tests/test_seed_sequence.py +79 -0
  708. numpy/random/tests/test_smoke.py +819 -0
  709. numpy/rec/__init__.py +2 -0
  710. numpy/rec/__init__.pyi +23 -0
  711. numpy/strings/__init__.py +2 -0
  712. numpy/strings/__init__.pyi +97 -0
  713. numpy/testing/__init__.py +22 -0
  714. numpy/testing/__init__.pyi +102 -0
  715. numpy/testing/_private/__init__.py +0 -0
  716. numpy/testing/_private/__init__.pyi +0 -0
  717. numpy/testing/_private/extbuild.py +250 -0
  718. numpy/testing/_private/extbuild.pyi +25 -0
  719. numpy/testing/_private/utils.py +2752 -0
  720. numpy/testing/_private/utils.pyi +499 -0
  721. numpy/testing/overrides.py +84 -0
  722. numpy/testing/overrides.pyi +11 -0
  723. numpy/testing/print_coercion_tables.py +207 -0
  724. numpy/testing/print_coercion_tables.pyi +27 -0
  725. numpy/testing/tests/__init__.py +0 -0
  726. numpy/testing/tests/test_utils.py +1917 -0
  727. numpy/tests/__init__.py +0 -0
  728. numpy/tests/test__all__.py +10 -0
  729. numpy/tests/test_configtool.py +48 -0
  730. numpy/tests/test_ctypeslib.py +377 -0
  731. numpy/tests/test_lazyloading.py +38 -0
  732. numpy/tests/test_matlib.py +59 -0
  733. numpy/tests/test_numpy_config.py +46 -0
  734. numpy/tests/test_numpy_version.py +54 -0
  735. numpy/tests/test_public_api.py +806 -0
  736. numpy/tests/test_reloading.py +74 -0
  737. numpy/tests/test_scripts.py +49 -0
  738. numpy/tests/test_warnings.py +78 -0
  739. numpy/typing/__init__.py +201 -0
  740. numpy/typing/mypy_plugin.py +195 -0
  741. numpy/typing/tests/__init__.py +0 -0
  742. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  743. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  744. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  745. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  746. numpy/typing/tests/data/fail/arrayprint.pyi +16 -0
  747. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  748. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  749. numpy/typing/tests/data/fail/char.pyi +65 -0
  750. numpy/typing/tests/data/fail/chararray.pyi +62 -0
  751. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  752. numpy/typing/tests/data/fail/constants.pyi +3 -0
  753. numpy/typing/tests/data/fail/datasource.pyi +15 -0
  754. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  755. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  756. numpy/typing/tests/data/fail/flatiter.pyi +20 -0
  757. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  758. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  759. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  760. numpy/typing/tests/data/fail/lib_function_base.pyi +62 -0
  761. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  762. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  763. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  764. numpy/typing/tests/data/fail/linalg.pyi +48 -0
  765. numpy/typing/tests/data/fail/ma.pyi +143 -0
  766. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  767. numpy/typing/tests/data/fail/modules.pyi +17 -0
  768. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  769. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  770. numpy/typing/tests/data/fail/ndarray_misc.pyi +36 -0
  771. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  772. numpy/typing/tests/data/fail/nested_sequence.pyi +16 -0
  773. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  774. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  775. numpy/typing/tests/data/fail/random.pyi +62 -0
  776. numpy/typing/tests/data/fail/rec.pyi +17 -0
  777. numpy/typing/tests/data/fail/scalars.pyi +87 -0
  778. numpy/typing/tests/data/fail/shape.pyi +6 -0
  779. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  780. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  781. numpy/typing/tests/data/fail/strings.pyi +52 -0
  782. numpy/typing/tests/data/fail/testing.pyi +28 -0
  783. numpy/typing/tests/data/fail/twodim_base.pyi +32 -0
  784. numpy/typing/tests/data/fail/type_check.pyi +13 -0
  785. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  786. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  787. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  788. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  789. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  790. numpy/typing/tests/data/mypy.ini +9 -0
  791. numpy/typing/tests/data/pass/arithmetic.py +612 -0
  792. numpy/typing/tests/data/pass/array_constructors.py +137 -0
  793. numpy/typing/tests/data/pass/array_like.py +43 -0
  794. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  795. numpy/typing/tests/data/pass/arrayterator.py +27 -0
  796. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  797. numpy/typing/tests/data/pass/comparisons.py +315 -0
  798. numpy/typing/tests/data/pass/dtype.py +57 -0
  799. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  800. numpy/typing/tests/data/pass/flatiter.py +19 -0
  801. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  802. numpy/typing/tests/data/pass/index_tricks.py +60 -0
  803. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  804. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  805. numpy/typing/tests/data/pass/lib_version.py +18 -0
  806. numpy/typing/tests/data/pass/literal.py +51 -0
  807. numpy/typing/tests/data/pass/ma.py +174 -0
  808. numpy/typing/tests/data/pass/mod.py +149 -0
  809. numpy/typing/tests/data/pass/modules.py +45 -0
  810. numpy/typing/tests/data/pass/multiarray.py +76 -0
  811. numpy/typing/tests/data/pass/ndarray_conversion.py +87 -0
  812. numpy/typing/tests/data/pass/ndarray_misc.py +203 -0
  813. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  814. numpy/typing/tests/data/pass/nditer.py +4 -0
  815. numpy/typing/tests/data/pass/numeric.py +95 -0
  816. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  817. numpy/typing/tests/data/pass/random.py +1497 -0
  818. numpy/typing/tests/data/pass/recfunctions.py +161 -0
  819. numpy/typing/tests/data/pass/scalars.py +248 -0
  820. numpy/typing/tests/data/pass/shape.py +19 -0
  821. numpy/typing/tests/data/pass/simple.py +168 -0
  822. numpy/typing/tests/data/pass/simple_py3.py +6 -0
  823. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  824. numpy/typing/tests/data/pass/ufunclike.py +47 -0
  825. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  826. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  827. numpy/typing/tests/data/reveal/arithmetic.pyi +720 -0
  828. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  829. numpy/typing/tests/data/reveal/array_constructors.pyi +249 -0
  830. numpy/typing/tests/data/reveal/arraypad.pyi +22 -0
  831. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  832. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  833. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  834. numpy/typing/tests/data/reveal/bitwise_ops.pyi +167 -0
  835. numpy/typing/tests/data/reveal/char.pyi +224 -0
  836. numpy/typing/tests/data/reveal/chararray.pyi +137 -0
  837. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  838. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  839. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  840. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  841. numpy/typing/tests/data/reveal/dtype.pyi +136 -0
  842. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  843. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  844. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  845. numpy/typing/tests/data/reveal/flatiter.pyi +47 -0
  846. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  847. numpy/typing/tests/data/reveal/getlimits.pyi +51 -0
  848. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  849. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  850. numpy/typing/tests/data/reveal/lib_function_base.pyi +213 -0
  851. numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -0
  852. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  853. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  854. numpy/typing/tests/data/reveal/linalg.pyi +132 -0
  855. numpy/typing/tests/data/reveal/ma.pyi +369 -0
  856. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  857. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  858. numpy/typing/tests/data/reveal/mod.pyi +179 -0
  859. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  860. numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
  861. numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
  862. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
  863. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
  864. numpy/typing/tests/data/reveal/ndarray_misc.pyi +247 -0
  865. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -0
  866. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  867. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  868. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  869. numpy/typing/tests/data/reveal/numeric.pyi +134 -0
  870. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  871. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
  872. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -0
  873. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  874. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  875. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  876. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  877. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  878. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  879. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  880. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  881. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  882. numpy/typing/tests/data/reveal/twodim_base.pyi +145 -0
  883. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  884. numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
  885. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  886. numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
  887. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  888. numpy/typing/tests/test_isfile.py +32 -0
  889. numpy/typing/tests/test_runtime.py +102 -0
  890. numpy/typing/tests/test_typing.py +205 -0
  891. numpy/version.py +11 -0
  892. numpy/version.pyi +18 -0
  893. numpy-2.3.5.dist-info/LICENSE.txt +971 -0
  894. numpy-2.3.5.dist-info/METADATA +1093 -0
  895. numpy-2.3.5.dist-info/RECORD +897 -0
  896. numpy-2.3.5.dist-info/WHEEL +6 -0
  897. numpy-2.3.5.dist-info/entry_points.txt +13 -0
@@ -0,0 +1,1001 @@
1
+ seed, 0xdeadbeaf
2
+ 0, 0xdf1ddcf1e22521fe
3
+ 1, 0xc71b2f9c706cf151
4
+ 2, 0x6922a8cc24ad96b2
5
+ 3, 0x82738c549beccc30
6
+ 4, 0x5e8415cdb1f17580
7
+ 5, 0x64c54ad0c09cb43
8
+ 6, 0x361a17a607dce278
9
+ 7, 0x4346f6afb7acad68
10
+ 8, 0x6e9f14d4f6398d6b
11
+ 9, 0xf818d4343f8ed822
12
+ 10, 0x6327647daf508ed6
13
+ 11, 0xe1d1dbe5496a262a
14
+ 12, 0xfc081e619076b2e0
15
+ 13, 0x37126563a956ab1
16
+ 14, 0x8bb46e155db16b9
17
+ 15, 0x56449f006c9f3fb4
18
+ 16, 0x34a9273550941803
19
+ 17, 0x5b4df62660f99462
20
+ 18, 0xb8665cad532e3018
21
+ 19, 0x72fc3e5f7f84216a
22
+ 20, 0x71d3c47f6fd59939
23
+ 21, 0xfd4218afa1de463b
24
+ 22, 0xc84054c78e0a9a71
25
+ 23, 0xae59034726be61a8
26
+ 24, 0xa6a5f21de983654d
27
+ 25, 0x3b633acf572009da
28
+ 26, 0x6a0884f347ab54c8
29
+ 27, 0x7a907ebe9adcab50
30
+ 28, 0xbe779be53d7b8d4a
31
+ 29, 0xf5976e8c69b9dcd1
32
+ 30, 0x1d8302f114699e11
33
+ 31, 0x7d37e43042c038a0
34
+ 32, 0x2cc1d4edc2a40f35
35
+ 33, 0x83e3347bb2d581f1
36
+ 34, 0x253f8698651a844d
37
+ 35, 0x4312dea0dd4e32f6
38
+ 36, 0x10f106439964ea3a
39
+ 37, 0x810eb374844868cc
40
+ 38, 0x366342a54b1978cc
41
+ 39, 0x9fb39b13aaddfb5e
42
+ 40, 0xdb91fd0d9482bed7
43
+ 41, 0x89f6ea4ca9c68204
44
+ 42, 0x146b31ccca461792
45
+ 43, 0x203fd9724deb2486
46
+ 44, 0x58a84f23748e25cb
47
+ 45, 0x2f20eb6aeb94e88
48
+ 46, 0x14d3581460e473c
49
+ 47, 0xad5bd0d25f37d047
50
+ 48, 0x1cf88fa16de258b2
51
+ 49, 0x3bcab6485b7a341
52
+ 50, 0xb2433b37f227d90c
53
+ 51, 0x2cffd7e0a8360cc8
54
+ 52, 0x5d2eeff7c9ebc847
55
+ 53, 0x6fd7c7ae23f9f64b
56
+ 54, 0x381650b2d00f175d
57
+ 55, 0x9d93edcedc873cae
58
+ 56, 0x56e369a033d4cb49
59
+ 57, 0x7547997116a3bac
60
+ 58, 0x11debaa897fd4665
61
+ 59, 0xdf799d2b73bd6fb8
62
+ 60, 0x3747d299c66624d
63
+ 61, 0xac9346701afd0cfa
64
+ 62, 0xac90e150fa13c7bf
65
+ 63, 0x85c56ad2248c2871
66
+ 64, 0xdea66bf35c45f195
67
+ 65, 0x59cf910ea079fb74
68
+ 66, 0x2f841bb782274586
69
+ 67, 0x9814df4384d92bd9
70
+ 68, 0x15bc70824be09925
71
+ 69, 0x16d4d0524c0503a3
72
+ 70, 0xf04ea249135c0cc7
73
+ 71, 0xa707ab509b7e3032
74
+ 72, 0x465459efa869e372
75
+ 73, 0x64cbf70a783fab67
76
+ 74, 0x36b3541a14ca8ed7
77
+ 75, 0x9a4dfae8f4c596bf
78
+ 76, 0x11d9a04224281be3
79
+ 77, 0xe09bbe6d5e98ec32
80
+ 78, 0xa6c60d908973aa0d
81
+ 79, 0x7c524c57dd5915c8
82
+ 80, 0xa810c170b27f1fdc
83
+ 81, 0xce5d409819621583
84
+ 82, 0xfe2ee3d5332a3525
85
+ 83, 0x162fb7c8b32045eb
86
+ 84, 0x4a3327156b0b2d83
87
+ 85, 0x808d0282f971064
88
+ 86, 0x2e6f04cf5ed27e60
89
+ 87, 0xaf6800699cca67a9
90
+ 88, 0xc7590aae7244c3bf
91
+ 89, 0x7824345f4713f5f9
92
+ 90, 0x8f713505f8fd059b
93
+ 91, 0x3d5b5b9bb6b1e80e
94
+ 92, 0x8674f45e5dc40d79
95
+ 93, 0xcb1e36846aa14773
96
+ 94, 0xe0ae45b2b9b778c1
97
+ 95, 0xd7254ce931eefcfb
98
+ 96, 0xef34e15e4f55ac0a
99
+ 97, 0xf17cc0ba15a99bc4
100
+ 98, 0x77bb0f7ffe7b31f1
101
+ 99, 0x6ee86438d2e71d38
102
+ 100, 0x584890f86829a455
103
+ 101, 0x7baf0d8d30ba70fe
104
+ 102, 0xb1ac8f326b8403ae
105
+ 103, 0xcc1963435c874ba7
106
+ 104, 0x9c483b953d1334ce
107
+ 105, 0xc0924bcbf3e10941
108
+ 106, 0x21bcc581558717b1
109
+ 107, 0x2c5ad1623f8d292b
110
+ 108, 0xa8ea110f6124557e
111
+ 109, 0x15f24a6c5c4c591
112
+ 110, 0x40fe0d9cd7629126
113
+ 111, 0xcfe8f2b3b081484d
114
+ 112, 0x891383f4b4cac284
115
+ 113, 0x76f2fcdef7fa845
116
+ 114, 0x4edd12133aed0584
117
+ 115, 0xd53c06d12308873d
118
+ 116, 0xf7f22882c17f86bf
119
+ 117, 0xfbaa4aad72f35e10
120
+ 118, 0x627610da2e3c0cc3
121
+ 119, 0x582b16a143634d9a
122
+ 120, 0x9b4a7f69ed38f4a0
123
+ 121, 0x2df694974d1e1cbe
124
+ 122, 0xe5be6eaafed5d4b
125
+ 123, 0xc48e2a288ad6605e
126
+ 124, 0xbcb088149ce27c2b
127
+ 125, 0x3cb6a7fb06ceecbe
128
+ 126, 0x516735fff3b9e3ac
129
+ 127, 0x5cbafc551ee5008d
130
+ 128, 0xee27d1ab855c5fd5
131
+ 129, 0xc99fb341f6baf846
132
+ 130, 0x7ad8891b92058e6d
133
+ 131, 0xf50310d03c1ac6c7
134
+ 132, 0x947e281d998cbd3e
135
+ 133, 0x1d4d94a93824fe80
136
+ 134, 0x5568b77289e7ee73
137
+ 135, 0x7d82d1b2b41e3c8b
138
+ 136, 0x1af462c7abc787b
139
+ 137, 0xcfd8dfe80bfae1ef
140
+ 138, 0xd314caeb723a63ea
141
+ 139, 0x1c63ddcfc1145429
142
+ 140, 0x3801b7cc6cbf2437
143
+ 141, 0xc327d5b9fdafddd3
144
+ 142, 0xe140278430ca3c78
145
+ 143, 0x4d0345a685cb6ef8
146
+ 144, 0x47640dc86e261ff9
147
+ 145, 0xab817f158523ebf4
148
+ 146, 0x37c51e35fbe65a6b
149
+ 147, 0xab090f475d30a178
150
+ 148, 0x4d3ec225bf599fc1
151
+ 149, 0xefd517b0041679b1
152
+ 150, 0x20ad50bca4da32c5
153
+ 151, 0x75e1f7cd07fad86d
154
+ 152, 0x348cf781ee655f4b
155
+ 153, 0x9375f0e5ffc2d2ec
156
+ 154, 0x7689082fd5f7279c
157
+ 155, 0x633e56f763561e77
158
+ 156, 0x9d1752d70861f9fd
159
+ 157, 0xa3c994b4e70b0b0f
160
+ 158, 0xabf7276a58701b88
161
+ 159, 0xbfa18d1a0540d000
162
+ 160, 0xc6a28a2475646d26
163
+ 161, 0x7cdf108583f65085
164
+ 162, 0x82dcefb9f32104be
165
+ 163, 0xc6baadd0adc6b446
166
+ 164, 0x7a63cff01075b1b4
167
+ 165, 0x67ac62e575c89919
168
+ 166, 0x96fa4320a0942035
169
+ 167, 0xc4658859385b325f
170
+ 168, 0xde22c17ff47808f6
171
+ 169, 0xbb952c4d89e2f2ec
172
+ 170, 0x638251fbc55bdc37
173
+ 171, 0x38918b307a03b3ea
174
+ 172, 0xccb60f2cedbb570b
175
+ 173, 0x3c06f4086a28f012
176
+ 174, 0x4e8d238388986e33
177
+ 175, 0x1760b7793514a143
178
+ 176, 0xa3f924efe49ee7d6
179
+ 177, 0xaf6be2dbaebc0bdf
180
+ 178, 0x6782682090dffe09
181
+ 179, 0xb63a4d90d848e8ef
182
+ 180, 0x5f649c7eaf4c54c5
183
+ 181, 0xbe57582426a085ba
184
+ 182, 0xb5dd825aa52fb76d
185
+ 183, 0x74cb4e6ca4039617
186
+ 184, 0x382e578bf0a49588
187
+ 185, 0xc043e8ea6e1dcdae
188
+ 186, 0xf902addd5c04fa7c
189
+ 187, 0xf3337994612528db
190
+ 188, 0x4e8fd48d6d15b4e6
191
+ 189, 0x7190a509927c07ab
192
+ 190, 0x864c2dee5b7108ae
193
+ 191, 0xbb9972ddc196f467
194
+ 192, 0x1ea02ab3ca10a448
195
+ 193, 0xe50a8ffde35ddef9
196
+ 194, 0x7bd2f59a67183541
197
+ 195, 0x5a940b30d8fcd27a
198
+ 196, 0x82b4cea62623d4d3
199
+ 197, 0x6fbda76d4afef445
200
+ 198, 0x8b1f6880f418328e
201
+ 199, 0x8b69a025c72c54b7
202
+ 200, 0xb71e0f3986a3835f
203
+ 201, 0xa4a7ddb8b9816825
204
+ 202, 0x945dcda28228b1d8
205
+ 203, 0xb471abf2f8044d72
206
+ 204, 0xf07d4af64742b1ba
207
+ 205, 0xfca5190bc4dd6a2a
208
+ 206, 0xd681497262e11bc5
209
+ 207, 0xbe95d5f00c577028
210
+ 208, 0x56313439fd8bde19
211
+ 209, 0x3f3d9ac9b5ee6522
212
+ 210, 0x7b8d457dd2b49bbe
213
+ 211, 0xe76b5747885d214b
214
+ 212, 0xa8a695b3deb493ea
215
+ 213, 0x5292446548c95d71
216
+ 214, 0xbf5cdf0d436412df
217
+ 215, 0x7936abaed779d28d
218
+ 216, 0x659c6e8073b3a06d
219
+ 217, 0x86c9ff28f5543b71
220
+ 218, 0x6faa748445a99146
221
+ 219, 0xdcc1e6ab57904fd7
222
+ 220, 0x770bd61233addc5f
223
+ 221, 0x16963e041e46d94f
224
+ 222, 0x158e6cb2934157ac
225
+ 223, 0xb65088a8fd246441
226
+ 224, 0x2b12ced6ce8a68c3
227
+ 225, 0x59a18d02cd6082b3
228
+ 226, 0x4ddbc318cb5488ee
229
+ 227, 0x3d4cf520b3ed20a1
230
+ 228, 0x7028b3a92e2b292d
231
+ 229, 0xf141da264a250e4d
232
+ 230, 0x9788d53e86041c37
233
+ 231, 0x1bb91238a7c97dbf
234
+ 232, 0x81953d0ddb634309
235
+ 233, 0xfa39ccfe14d2d46
236
+ 234, 0xf7c7861c9b7e8399
237
+ 235, 0x18d27ca50d9dc249
238
+ 236, 0x258dfdf38510d0d9
239
+ 237, 0x9e72d8af910ea76f
240
+ 238, 0x4f8ef24b96de50ad
241
+ 239, 0xb9d9c12297e03dc9
242
+ 240, 0x91994e41b4a1929c
243
+ 241, 0x8defa79b2ccc83b9
244
+ 242, 0x948566748706dac5
245
+ 243, 0x7b0454946e70e4cf
246
+ 244, 0x340b7cb298c70ed7
247
+ 245, 0x6602005330cebd95
248
+ 246, 0xf71cb803aa61f722
249
+ 247, 0x4683fb07fc70ae8a
250
+ 248, 0xc6db9f0c4de3ed88
251
+ 249, 0x3e8dfae2a593cef9
252
+ 250, 0x615f7c38e3862b33
253
+ 251, 0x676c7996550d857
254
+ 252, 0xc6d520d54a5c266a
255
+ 253, 0x202b1e8eef14aa2e
256
+ 254, 0xa3a84891a27a582
257
+ 255, 0x84dbee451658d47f
258
+ 256, 0x254c7cd97e777e3a
259
+ 257, 0xf50b6e977f0eba50
260
+ 258, 0x2898b1d3062a4798
261
+ 259, 0x4096f7cbbb019773
262
+ 260, 0x9fb8e75548062c50
263
+ 261, 0x4647071e5ca318ec
264
+ 262, 0x2b4750bdb3b3b01
265
+ 263, 0x88ac41cc69a39786
266
+ 264, 0x705e25476ef46fa3
267
+ 265, 0xc0c1db19884a48a6
268
+ 266, 0x1364c0afdbb465e5
269
+ 267, 0x58e98534701272a6
270
+ 268, 0x746a5ea9701517c0
271
+ 269, 0x523a70bc6b300b67
272
+ 270, 0x9b1c098eda8564ad
273
+ 271, 0xfbaeb28d3637067f
274
+ 272, 0xddd9a13551fdba65
275
+ 273, 0x56461a670559e832
276
+ 274, 0xab4fd79be85570ad
277
+ 275, 0xd4b691ecaff8ca55
278
+ 276, 0x11a4495939e7f004
279
+ 277, 0x40d069d19477eb47
280
+ 278, 0xe790783d285cd81e
281
+ 279, 0xde8218b16d935bc7
282
+ 280, 0x2635e8c65cd4182d
283
+ 281, 0xeae402623e3454
284
+ 282, 0x9f99c833184e0279
285
+ 283, 0x3d0f79a0d52d84e7
286
+ 284, 0xc1f8edb10c625b90
287
+ 285, 0x9b4546363d1f0489
288
+ 286, 0x98d86d0b1212a282
289
+ 287, 0x386b53863161200d
290
+ 288, 0xbe1165c7fe48a135
291
+ 289, 0xb9658b04dbbfdc8c
292
+ 290, 0xcea14eddfe84d71a
293
+ 291, 0x55d03298be74abe7
294
+ 292, 0x5be3b50d961ffd7e
295
+ 293, 0xc76b1045dc4b78e1
296
+ 294, 0x7830e3ff3f6c3d4c
297
+ 295, 0xb617adb36ca3729
298
+ 296, 0x4a51bdb194f14aa9
299
+ 297, 0x246024e54e6b682a
300
+ 298, 0x33d42fc9c6d33083
301
+ 299, 0xadccba149f31e1d
302
+ 300, 0x5183e66b9002f8b
303
+ 301, 0x70eb2416404d51b7
304
+ 302, 0x26c25eb225535351
305
+ 303, 0xbc2d5b0d23076561
306
+ 304, 0x5823019ddead1da
307
+ 305, 0x85cfa109fca69f62
308
+ 306, 0x26017933e7e1efd9
309
+ 307, 0x3ec7be9a32212753
310
+ 308, 0x697e8a0697cd6f60
311
+ 309, 0x44735f6cca03920f
312
+ 310, 0x8cc655eb94ee212e
313
+ 311, 0x8b8b74eba84929a0
314
+ 312, 0x7708ccedd0c98c80
315
+ 313, 0x1b6f21f19777cbe1
316
+ 314, 0x363e564bd5fadedb
317
+ 315, 0x5921543a641591fe
318
+ 316, 0xc390786d68ea8a1b
319
+ 317, 0x9b293138dc033fca
320
+ 318, 0x45447ca8dc843345
321
+ 319, 0xee6ef6755bc49c5e
322
+ 320, 0x70a3a1f5163c3be5
323
+ 321, 0xf05e25448b6343b0
324
+ 322, 0x4739f4f8717b7e69
325
+ 323, 0xb006141975bf957
326
+ 324, 0x31874a91b707f452
327
+ 325, 0x3a07f2c90bae2869
328
+ 326, 0xb73dae5499a55c5e
329
+ 327, 0x489070893bb51575
330
+ 328, 0x7129acf423940575
331
+ 329, 0x38c41f4b90130972
332
+ 330, 0xc5260ca65f5a84a1
333
+ 331, 0x6e76194f39563932
334
+ 332, 0x62ca1f9ca3de3ca6
335
+ 333, 0xb4a97874e640853f
336
+ 334, 0x38ed0f71e311cc02
337
+ 335, 0xde183b81099e8f47
338
+ 336, 0x9bb8bf8e6694346
339
+ 337, 0xd15497b6bf81e0f2
340
+ 338, 0xaaae52536c00111
341
+ 339, 0x4e4e60d1435aaafd
342
+ 340, 0x5a15512e5d6ea721
343
+ 341, 0xff0f1ffabfc6664f
344
+ 342, 0xba3ffcedc5f97fec
345
+ 343, 0xef87f391c0c6bfb6
346
+ 344, 0x4a888c5d31eb0f98
347
+ 345, 0x559a3fbfd7946e95
348
+ 346, 0xe45b44a0db5a9bad
349
+ 347, 0x9457898964190af1
350
+ 348, 0xd9357dfaab76cd9e
351
+ 349, 0xa60e907178d965a1
352
+ 350, 0x76b2dc3032dc2f4a
353
+ 351, 0x13549b9c2802120
354
+ 352, 0x8656b965a66a1800
355
+ 353, 0x16802e6e22456a23
356
+ 354, 0x23b62edc60efaa9
357
+ 355, 0x6832a366e1e4ea3b
358
+ 356, 0x46b1b41093ff2b1e
359
+ 357, 0x55c857128143f219
360
+ 358, 0x7fc35ddf5e138200
361
+ 359, 0x790abe78be67467e
362
+ 360, 0xa4446fc08babd466
363
+ 361, 0xc23d70327999b855
364
+ 362, 0x2e019d1597148196
365
+ 363, 0xfefd98e560403ab8
366
+ 364, 0xbe5f0a33da330d58
367
+ 365, 0x3078a4e9d43ca395
368
+ 366, 0x511bfedd6f12f2b3
369
+ 367, 0x8bc138e335be987c
370
+ 368, 0x24640f803465716d
371
+ 369, 0xf6530b04d0bd618f
372
+ 370, 0x9b7833e5aa782716
373
+ 371, 0x778cd35aea5841b1
374
+ 372, 0xecea3c458cefbc60
375
+ 373, 0x5107ae83fc527f46
376
+ 374, 0x278ad83d44bd2d1a
377
+ 375, 0x7014a382295aeb16
378
+ 376, 0xf326dd762048743f
379
+ 377, 0x858633d56279e553
380
+ 378, 0x76408154085f01bc
381
+ 379, 0x3e77d3364d02e746
382
+ 380, 0x2f26cea26cadd50b
383
+ 381, 0x6d6846a4ecb84273
384
+ 382, 0x4847e96f2df5f76
385
+ 383, 0x5a8610f46e13ff61
386
+ 384, 0x4e7a7cac403e10dd
387
+ 385, 0x754bdf2e20c7bc90
388
+ 386, 0x8bdd80e6c51bd0be
389
+ 387, 0x61c655fae2b4bc52
390
+ 388, 0x60873ef48e3d2f03
391
+ 389, 0x9d7d8d3698a0b4a4
392
+ 390, 0xdf48e9c355cd5d4b
393
+ 391, 0x69ecf03e20be99ac
394
+ 392, 0xc1a0c5a339bd1815
395
+ 393, 0x2e3263a6a3adccb
396
+ 394, 0x23557459719adbdc
397
+ 395, 0xd1b709a3b330e5a
398
+ 396, 0xade5ab00a5d88b9d
399
+ 397, 0x69a6bd644120cfad
400
+ 398, 0x40187ecceee92342
401
+ 399, 0x1c41964ba1ac78da
402
+ 400, 0x9ac5c51cbecabe67
403
+ 401, 0xbdc075781cf36d55
404
+ 402, 0xeaf5a32246ded56
405
+ 403, 0xcda0b67e39c0fb71
406
+ 404, 0x4839ee456ef7cc95
407
+ 405, 0xf17092fdd41d5658
408
+ 406, 0x2b5d422e60ae3253
409
+ 407, 0x3effe71102008551
410
+ 408, 0x20a47108e83934b7
411
+ 409, 0xd02da65fe768a88f
412
+ 410, 0xeb046bd56afa4026
413
+ 411, 0x70c0509c08e0fbe0
414
+ 412, 0x1d35c38d4f8bac6c
415
+ 413, 0x9aa8eb6466f392e0
416
+ 414, 0x587bd4a430740f30
417
+ 415, 0x82978fe4bad4195
418
+ 416, 0xdc4ebc4c0feb50ab
419
+ 417, 0xd3b7164d0240c06f
420
+ 418, 0x6e2ad6e5a5003a63
421
+ 419, 0xa24b430e2ee6b59c
422
+ 420, 0x2905f49fd5073094
423
+ 421, 0x5f209e4de03aa941
424
+ 422, 0x57b7da3e0bedb1dc
425
+ 423, 0x5e054018875b01f5
426
+ 424, 0xb2f2da6145658db3
427
+ 425, 0xbd9c94a69a8eb651
428
+ 426, 0x9c5f9a07cd6ac749
429
+ 427, 0x2296c4af4d529c38
430
+ 428, 0x522ed800fafdefab
431
+ 429, 0xe2a447ced0c66791
432
+ 430, 0x937f10d45e455fef
433
+ 431, 0xc882987d9e29a24
434
+ 432, 0x4610bfd6a247ee1a
435
+ 433, 0x562ba3e50870059
436
+ 434, 0x59d8d58793602189
437
+ 435, 0xfe9a606e3e34abe
438
+ 436, 0x6825f7932a5e9282
439
+ 437, 0xe77f7061bab476ad
440
+ 438, 0xbf42001da340ace3
441
+ 439, 0x9c3e9230f5e47960
442
+ 440, 0x2c0f700d96d5ad58
443
+ 441, 0x330048b7cd18f1f9
444
+ 442, 0xffc08785eca5cca9
445
+ 443, 0xb5879046915f07a5
446
+ 444, 0xef51fe26f83c988e
447
+ 445, 0xfa4c2968e7881a9a
448
+ 446, 0xc0a9744455a4aad
449
+ 447, 0xbd2ad686d6313928
450
+ 448, 0x6b9f0984c127682a
451
+ 449, 0xc9aaa00a5da59ed8
452
+ 450, 0x762a0c4b98980dbf
453
+ 451, 0x52d1a2393d3ca2d1
454
+ 452, 0x1e9308f2861db15c
455
+ 453, 0xe7b3c74fe4b4a844
456
+ 454, 0x485e15704a7fc594
457
+ 455, 0x9e7f67ea44c221f6
458
+ 456, 0xbab9ad47fde916e0
459
+ 457, 0x50e383912b7fc1f4
460
+ 458, 0xaad63db8abcef62d
461
+ 459, 0xc2f0c5699f47f013
462
+ 460, 0xee15b36ada826812
463
+ 461, 0x2a1b1cf1e1777142
464
+ 462, 0x8adb03ede79e937d
465
+ 463, 0xf14105ef65643bf3
466
+ 464, 0x752bbaefc374a3c7
467
+ 465, 0xa4980a08a5a21d23
468
+ 466, 0x418a1c05194b2db7
469
+ 467, 0xdd6ff32efe1c3cd6
470
+ 468, 0x272473ed1f0d3aa2
471
+ 469, 0x1e7fdebadabe6c06
472
+ 470, 0xd1baa90c17b3842f
473
+ 471, 0xd3d3a778e9c8404a
474
+ 472, 0x781ae7fda49fa1a0
475
+ 473, 0x61c44fdbdacc672d
476
+ 474, 0x6d447d0a1404f257
477
+ 475, 0x9303e8bdfbfb894d
478
+ 476, 0x3b3482cdec016244
479
+ 477, 0xb149bf245d062e7b
480
+ 478, 0x96f8d54b14cf992d
481
+ 479, 0x4741549a01f8c3d0
482
+ 480, 0x48270811b2992af
483
+ 481, 0x7b58f175cd25d147
484
+ 482, 0x8f19a840b56f4be9
485
+ 483, 0x84a77f43c0951a93
486
+ 484, 0x34e1a69381f0c374
487
+ 485, 0xb158383c9b4040f
488
+ 486, 0x372f1abc7cf3a9fa
489
+ 487, 0x5439819a84571763
490
+ 488, 0xabf8515e9084e2fa
491
+ 489, 0xb02312b9387ff99
492
+ 490, 0x238a85bb47a68b12
493
+ 491, 0x2068cb83857c49bb
494
+ 492, 0xc6170e743083664c
495
+ 493, 0x745cf8470bcb8467
496
+ 494, 0xe3a759a301670300
497
+ 495, 0x292c7686ad3e67da
498
+ 496, 0x359efedaff192a45
499
+ 497, 0x511f2c31a2d8c475
500
+ 498, 0x97fd041bf21c20b3
501
+ 499, 0x25ef1fe841b7b3f6
502
+ 500, 0xbb71739e656f262d
503
+ 501, 0x2729b0e989b6b7b8
504
+ 502, 0xd2142702ec7dbabf
505
+ 503, 0x7008decd2488ee3f
506
+ 504, 0x69daa95e303298d7
507
+ 505, 0xc35eca4efb8baa5a
508
+ 506, 0xf3f16d261cec3b6c
509
+ 507, 0x22371c1d75396bd3
510
+ 508, 0x7aefa08eccae857e
511
+ 509, 0x255b493c5e3c2a2f
512
+ 510, 0x779474a077d34241
513
+ 511, 0x5199c42686bea241
514
+ 512, 0x16c83931e293b8d3
515
+ 513, 0xa57fe8db8c0302c7
516
+ 514, 0xd7ace619e5312eb1
517
+ 515, 0x8740f013306d217c
518
+ 516, 0xb6a1ad5e29f4d453
519
+ 517, 0x31abf7c964688597
520
+ 518, 0xbc3d791daed71e7
521
+ 519, 0x31ee4ca67b7056ed
522
+ 520, 0x1ab5416bfe290ea3
523
+ 521, 0x93db416f6d3b843a
524
+ 522, 0xed83bbe5b1dd2fed
525
+ 523, 0xece38271470d9b6d
526
+ 524, 0x3a620f42663cd8ae
527
+ 525, 0x50c87e02acafee5d
528
+ 526, 0xcabeb8bedbc6dab5
529
+ 527, 0x2880a6d09970c729
530
+ 528, 0x4aba5dd3bfc81bc
531
+ 529, 0xaba54edf41080cec
532
+ 530, 0xb86bb916fc85a169
533
+ 531, 0x4c41de87bc79d8ca
534
+ 532, 0xcce2a202622945fe
535
+ 533, 0x513f086fad94c107
536
+ 534, 0x18b3960c11f8cc96
537
+ 535, 0x2f0d1cfd1896e236
538
+ 536, 0x1702ae3880d79b15
539
+ 537, 0x88923749029ae81
540
+ 538, 0x84810d4bdec668eb
541
+ 539, 0xf85b0a123f4fc68d
542
+ 540, 0x93efd68974b6e4d1
543
+ 541, 0x5d16d6d993a071c9
544
+ 542, 0x94436858f94ca43b
545
+ 543, 0xb3dbb9ed0cb180b6
546
+ 544, 0x6447030a010b8c99
547
+ 545, 0xd7224897c62925d8
548
+ 546, 0xb0c13c1d50605d3a
549
+ 547, 0xdff02c7cb9d45f30
550
+ 548, 0xe8103179f983570d
551
+ 549, 0xbc552037d6d0a24e
552
+ 550, 0x775e500b01486b0d
553
+ 551, 0x2050ac632c694dd6
554
+ 552, 0x218910387c4d7ae7
555
+ 553, 0xf83e8b68ff885d5d
556
+ 554, 0xe3374ec25fca51a3
557
+ 555, 0xfa750ffa3a60f3af
558
+ 556, 0x29ee40ba6df5592e
559
+ 557, 0x70e21a68f48260d2
560
+ 558, 0x3805ca72cd40886e
561
+ 559, 0x2f23e73f8eabf062
562
+ 560, 0x2296f80cdf6531ae
563
+ 561, 0x903099ed968db43a
564
+ 562, 0xf044445cf9f2929f
565
+ 563, 0xcd47fdc2de1b7a1
566
+ 564, 0xaab1cbd4f849da99
567
+ 565, 0x5fc990688da01acb
568
+ 566, 0xa9cee52ea7dab392
569
+ 567, 0xecefc3a4349283a8
570
+ 568, 0xdd6b572972e3fafc
571
+ 569, 0xc1f0b1a2ffb155da
572
+ 570, 0xc30d53fc17bd25c8
573
+ 571, 0x8afa89c77834db28
574
+ 572, 0x5569a596fb32896c
575
+ 573, 0x36f207fc8df3e3d4
576
+ 574, 0x57c2bd58517d81db
577
+ 575, 0xb524693e73d0061c
578
+ 576, 0xb69f6eb233f5c48b
579
+ 577, 0x4f0fb23cab8dc695
580
+ 578, 0x492c1ad0a48df8df
581
+ 579, 0xf6dcc348ec8dec1f
582
+ 580, 0xa4d8708d6eb2e262
583
+ 581, 0x4c2072c2c9766ff1
584
+ 582, 0xa9bf27c4304875f0
585
+ 583, 0xfc8fb8066d4f9ae2
586
+ 584, 0x188095f6235fec3c
587
+ 585, 0x1d8227a2938c2864
588
+ 586, 0x89ea50c599010378
589
+ 587, 0xcac86df0a7c6d56d
590
+ 588, 0x47a8c5df84c7d78
591
+ 589, 0xe607ae24ea228bfa
592
+ 590, 0x36624a7996efe104
593
+ 591, 0x5d72881c1227d810
594
+ 592, 0x78694a6750374c8
595
+ 593, 0x7b9a217d4ab5ff45
596
+ 594, 0xd53e5d6f7504becc
597
+ 595, 0x197a72d3f4889a0e
598
+ 596, 0xfdc70c4755a8df36
599
+ 597, 0xd0fda83748c77f74
600
+ 598, 0x7ddc919ac9d6dcc9
601
+ 599, 0x785c810a6a2dc08b
602
+ 600, 0xba4be83e7e36896c
603
+ 601, 0x379d6fe80cf2bffe
604
+ 602, 0x74cae2dabc429206
605
+ 603, 0x1efac32d5d34c917
606
+ 604, 0x3cb64e2f98d36e70
607
+ 605, 0xc0a7c3cdc3c60aa7
608
+ 606, 0x699dfadd38790ebe
609
+ 607, 0x4861e61b3ecfbeac
610
+ 608, 0x531744826c345baa
611
+ 609, 0x5ec26427ad450cba
612
+ 610, 0xf2c1741479abdcae
613
+ 611, 0xe9328a78b2595458
614
+ 612, 0x30cd1bdf087acd7f
615
+ 613, 0x7491ced4e009adbe
616
+ 614, 0xdcd942df1e2e7023
617
+ 615, 0xfe63f01689fee35
618
+ 616, 0x80282dfe5eaedc42
619
+ 617, 0x6ecdea86495f8427
620
+ 618, 0xe0adfdd5e9ed31c3
621
+ 619, 0xf32bd2a7418127e
622
+ 620, 0x8aabba078db6ee2
623
+ 621, 0xa8a8e60499145aca
624
+ 622, 0xf76b086ac4e8a0f2
625
+ 623, 0x6e55b3c452ff27f8
626
+ 624, 0xe18fa7cd025a71bf
627
+ 625, 0xeed7b685fde0fa25
628
+ 626, 0xba9b6c95867fa721
629
+ 627, 0x4c2603bc69de2df2
630
+ 628, 0xaac87eee1b58cd66
631
+ 629, 0x3c9af6656e01282c
632
+ 630, 0x2dfa05ce8ff476b6
633
+ 631, 0xeae9143fcf92f23d
634
+ 632, 0x3f0699f631be3bc8
635
+ 633, 0xa0f5f79f2492bd67
636
+ 634, 0x59c47722388131ed
637
+ 635, 0x5f6e9d2941cef1de
638
+ 636, 0xe9ad915c09788b7b
639
+ 637, 0x92c6d37e4f9482f5
640
+ 638, 0x57d301b7fdadd911
641
+ 639, 0x7e952d23d2a8443
642
+ 640, 0xbb2fa5e0704b3871
643
+ 641, 0xe5642199be36e2d5
644
+ 642, 0x5020b60d54358291
645
+ 643, 0xa0b6317ec3f60343
646
+ 644, 0xb57b08b99540bc5c
647
+ 645, 0x21f1890adc997a88
648
+ 646, 0xfcf824200dd9da2d
649
+ 647, 0x8146293d83d425d1
650
+ 648, 0xdadfbf5fbb99d420
651
+ 649, 0x1eb9bbc5e6482b7d
652
+ 650, 0xd40ff44f1bbd0f1c
653
+ 651, 0xa9f948ba2d08afa5
654
+ 652, 0x638cc07c5301e601
655
+ 653, 0x1f984baa606e14e8
656
+ 654, 0x44e153671081f398
657
+ 655, 0xb17882eeb1d77a5d
658
+ 656, 0x5fd8dbee995f14c
659
+ 657, 0xff3533e87f81b7fe
660
+ 658, 0x2f44124293c49795
661
+ 659, 0x3bf6b51e9360248
662
+ 660, 0x72d615edf1436371
663
+ 661, 0x8fc5cf4a38adab9d
664
+ 662, 0xfa517e9022078374
665
+ 663, 0xf356733f3e26f4d8
666
+ 664, 0x20ea099cdc6aad40
667
+ 665, 0xe15b977deb37637d
668
+ 666, 0xcc85601b89dae88d
669
+ 667, 0x5768c62f8dd4905c
670
+ 668, 0xa43cc632b4e56ea
671
+ 669, 0xc4240cf980e82458
672
+ 670, 0xb194e8ffb4b3eeb6
673
+ 671, 0xee753cf2219c5fa1
674
+ 672, 0xfe2500192181d44d
675
+ 673, 0x2d03d7d6493dd821
676
+ 674, 0xff0e787bb98e7f9b
677
+ 675, 0xa05cf8d3bd810ce7
678
+ 676, 0x718d5d6dcbbdcd65
679
+ 677, 0x8d0b5343a06931c
680
+ 678, 0xae3a00a932e7eaf9
681
+ 679, 0x7ed3d8f18f983e18
682
+ 680, 0x3bb778ee466dc143
683
+ 681, 0x711c685c4e9062c0
684
+ 682, 0x104c3af5d7ac9834
685
+ 683, 0x17bdbb671fb5d5cf
686
+ 684, 0xabf26caead4d2292
687
+ 685, 0xa45f02866467c005
688
+ 686, 0xf3769a32dc945d2d
689
+ 687, 0xe78d0007f6aabb66
690
+ 688, 0x34b60be4acbd8d4b
691
+ 689, 0x58c0b04b69359084
692
+ 690, 0x3a8bb354c212b1
693
+ 691, 0x6b82a8f3d70058d5
694
+ 692, 0x405bdef80a276a4a
695
+ 693, 0xe20ca40ee9195cad
696
+ 694, 0xf5dd96ba2446fefd
697
+ 695, 0xc1e180c55fe55e3c
698
+ 696, 0xa329caf6daa952b3
699
+ 697, 0xb4809dd0c84a6b0a
700
+ 698, 0xd27f82661070cee7
701
+ 699, 0xa7121f15ee2b0d8a
702
+ 700, 0x4bdaea70d6b34583
703
+ 701, 0xe821dc2f310f7a49
704
+ 702, 0x4c00a5a68e76f647
705
+ 703, 0x331065b064a2d5ea
706
+ 704, 0xac0c2ce3dc04fa37
707
+ 705, 0x56b32b37b8229008
708
+ 706, 0xe757cdb51534fcfa
709
+ 707, 0xd3ff183576b2fad7
710
+ 708, 0x179e1f4190f197a7
711
+ 709, 0xf874c626a7c9aae5
712
+ 710, 0xd58514ffc37c80e4
713
+ 711, 0xc65de31d33fa7fd3
714
+ 712, 0x6f6637052025769b
715
+ 713, 0xca1c6bdadb519cc0
716
+ 714, 0xd1f3534cde37828a
717
+ 715, 0xc858c339eee4830a
718
+ 716, 0x2371eacc215e02f4
719
+ 717, 0x84e5022db85bbbe9
720
+ 718, 0x5f71c50bba48610e
721
+ 719, 0xe420192dad9c323f
722
+ 720, 0x2889342721fca003
723
+ 721, 0x83e64f63334f501d
724
+ 722, 0xac2617172953f2c
725
+ 723, 0xfa1f78d8433938ff
726
+ 724, 0x5578382760051462
727
+ 725, 0x375d7a2e3b90af16
728
+ 726, 0xb93ff44e6c07552d
729
+ 727, 0xded1d5ad811e818c
730
+ 728, 0x7cf256b3b29e3a8c
731
+ 729, 0x78d581b8e7bf95e8
732
+ 730, 0x5b69192f2caa6ad3
733
+ 731, 0xa9e25855a52de3ce
734
+ 732, 0x69d8e8fc45cc188d
735
+ 733, 0x5dd012c139ad347d
736
+ 734, 0xfcb01c07b77db606
737
+ 735, 0x56253e36ab3d1cce
738
+ 736, 0x1181edbb3ea2192
739
+ 737, 0x325bef47ff19a08d
740
+ 738, 0xd3e231ceb27e5f7
741
+ 739, 0x8e819dd2de7956d2
742
+ 740, 0x34a9689fe6f84a51
743
+ 741, 0x3e4eeb719a9c2927
744
+ 742, 0x5c3b3440581d0aaf
745
+ 743, 0x57caf51897d7c920
746
+ 744, 0xec6a458130464b40
747
+ 745, 0xe98f044e0da40e9b
748
+ 746, 0xbe38662020eeb8e7
749
+ 747, 0x7b8c407c632724ae
750
+ 748, 0x16c7cfa97b33a544
751
+ 749, 0xd23359e2e978ae5a
752
+ 750, 0x4fdba458250933dd
753
+ 751, 0x3c9e0713cfe616ba
754
+ 752, 0x6f0df87b13163b42
755
+ 753, 0xc460902cb852cc97
756
+ 754, 0x289df8fefd6b0bce
757
+ 755, 0x4ac2a2a1c3fb8029
758
+ 756, 0x2fc3e24d8b68eef7
759
+ 757, 0x34564386a59aab9a
760
+ 758, 0x31047391ebd67ce4
761
+ 759, 0x6c23d070a0564d41
762
+ 760, 0xba6387b2b72545f7
763
+ 761, 0xcdcf1008058387af
764
+ 762, 0xc9308fa98db05192
765
+ 763, 0xdbdbb5abd01a9d84
766
+ 764, 0x937088275c7804ab
767
+ 765, 0x6f6accfefe34ee81
768
+ 766, 0x5c33c74c49cfdb2c
769
+ 767, 0x5e1a771edfb92bd3
770
+ 768, 0x6e89b009069ecae7
771
+ 769, 0x34d64e17ec0e8968
772
+ 770, 0x841203d0cde0c330
773
+ 771, 0x7642cc9d7eb9e9cb
774
+ 772, 0xca01d2e8c128b97e
775
+ 773, 0x5b8390617b3304ab
776
+ 774, 0x52ec4ed10de1eb2d
777
+ 775, 0xb90f288b9616f237
778
+ 776, 0x5bd43cd49617b2e2
779
+ 777, 0x1a53e21d25230596
780
+ 778, 0x36ccd15207a21cd6
781
+ 779, 0xc8263d780618fd3c
782
+ 780, 0x6eb520598c6ce1cb
783
+ 781, 0x493c99a3b341564f
784
+ 782, 0xab999e9c5aa8764f
785
+ 783, 0xab2fa4ceaba84b
786
+ 784, 0xbbd2f17e5cb2331b
787
+ 785, 0xc8b4d377c0cc4e81
788
+ 786, 0x31f71a6e165c4b1e
789
+ 787, 0xd1011e55fb3addaa
790
+ 788, 0x5f7ec34728dfa59
791
+ 789, 0x2aef59e60a84eb0f
792
+ 790, 0x5dde6f09aec9ad5f
793
+ 791, 0x968c6cdbc0ef0438
794
+ 792, 0x1957133afa15b13a
795
+ 793, 0xbaf28f27573a64c2
796
+ 794, 0xc6f6ddd543ebf862
797
+ 795, 0xdd7534315ec9ae1e
798
+ 796, 0xd2b80cd2758dd3b
799
+ 797, 0xa38c3da00cc81538
800
+ 798, 0x15c95b82d3f9b0f9
801
+ 799, 0x6704930287ce2571
802
+ 800, 0x9c40cc2f6f4ecb0c
803
+ 801, 0xc8de91f50b22e94e
804
+ 802, 0x39272e8fddbfdf0a
805
+ 803, 0x879e0aa810a117d
806
+ 804, 0xa312fff4e9e5f3bd
807
+ 805, 0x10dd747f2835dfec
808
+ 806, 0xeb8466db7171cdae
809
+ 807, 0xaa808d87b9ad040a
810
+ 808, 0xab4d2229a329243a
811
+ 809, 0x7c622f70d46f789c
812
+ 810, 0x5d41cef5965b2a8e
813
+ 811, 0xce97ec4702410d99
814
+ 812, 0x5beba2812c91211b
815
+ 813, 0xf134b46c93a3fec7
816
+ 814, 0x76401d5630127226
817
+ 815, 0xc55fc9d9eacd4ec1
818
+ 816, 0xaec8cefaa12f813f
819
+ 817, 0x2f845dcfd7b00722
820
+ 818, 0x3380ab4c20885921
821
+ 819, 0xdb68ad2597691b74
822
+ 820, 0x8a7e4951455f563f
823
+ 821, 0x2372d007ed761c53
824
+ 822, 0xcab691907714c4f1
825
+ 823, 0x16bc31d6f3abec1a
826
+ 824, 0x7dff639fbcf1824
827
+ 825, 0x6666985fbcff543d
828
+ 826, 0xb618948e3d8e6d0c
829
+ 827, 0x77b87837c794e068
830
+ 828, 0xcd48288d54fcb5a8
831
+ 829, 0x47a773ed6ae30dc3
832
+ 830, 0xba85ae44e203c942
833
+ 831, 0xa7a7b21791a25b2d
834
+ 832, 0x4029dd92e63f19e0
835
+ 833, 0xc2ad66ab85e7d5aa
836
+ 834, 0xa0f237c96fdab0db
837
+ 835, 0xffefb0ab1ca18ed
838
+ 836, 0x90cb4500785fd7d5
839
+ 837, 0xa7dd3120f4876435
840
+ 838, 0x53f7872624694300
841
+ 839, 0xea111326ff0040d9
842
+ 840, 0x5f83cb4cce40c83b
843
+ 841, 0x918e04936c3b504d
844
+ 842, 0x87a8db4c0e15e87c
845
+ 843, 0x7cff39da6a0dedd0
846
+ 844, 0x36f7de2037f85381
847
+ 845, 0xd1d8d94022a1e9a7
848
+ 846, 0x2c9930127dc33ec9
849
+ 847, 0x6cb4719dcd0101c6
850
+ 848, 0xc01868cde76935f7
851
+ 849, 0x6b86f2ec1ab50143
852
+ 850, 0x68af607d8d94ae61
853
+ 851, 0xe216c5b95feedf34
854
+ 852, 0x4b866bd91efe2e4b
855
+ 853, 0x4bff79df08f92c99
856
+ 854, 0x6ff664ea806acfd1
857
+ 855, 0x7fce0b3f9ece39bc
858
+ 856, 0x29bc90b59cb3db97
859
+ 857, 0x833c4b419198607d
860
+ 858, 0xf3573e36ca4d4768
861
+ 859, 0x50d71c0a3c2a3fa8
862
+ 860, 0xd754591aea2017e7
863
+ 861, 0x3f9126f1ee1ebf3
864
+ 862, 0xe775d7f4b1e43de8
865
+ 863, 0xe93d51628c263060
866
+ 864, 0x83e77f6fb32d6d82
867
+ 865, 0x43dd7eef823408e4
868
+ 866, 0x1c843c2c90180662
869
+ 867, 0xe924dafb9a16066b
870
+ 868, 0x6af3ee96e7b7fbd9
871
+ 869, 0x94d5c4f37befcd1f
872
+ 870, 0x40ffb04bedef4236
873
+ 871, 0x71c17bbc20e553e
874
+ 872, 0x101f7a0a6208729f
875
+ 873, 0x5ca34570cf923548
876
+ 874, 0x8e3139db2e96e814
877
+ 875, 0x3ab96d96263d048d
878
+ 876, 0x97f3c0bbc6755c3c
879
+ 877, 0x31fc72daedaef3dc
880
+ 878, 0x71f8d7855d10789b
881
+ 879, 0xce6dc97b4662333b
882
+ 880, 0xfddc2aabd342bc61
883
+ 881, 0xefbd4007ff8c7d2e
884
+ 882, 0xf72cd6c689ef8758
885
+ 883, 0x932c8b0c0e755137
886
+ 884, 0x94cc4dedd58ff69
887
+ 885, 0xde4dfd6890535979
888
+ 886, 0xdb00dcd2dcb4a50a
889
+ 887, 0xb0466240b4548107
890
+ 888, 0x9cb9264c7b90d1a3
891
+ 889, 0x357e378e9be5766b
892
+ 890, 0x6e0316ef03367bbf
893
+ 891, 0x201ea18839544ca
894
+ 892, 0x803ff3406be5f338
895
+ 893, 0xf9d5e82fd4144bb2
896
+ 894, 0x1b6b88ca701e9f47
897
+ 895, 0xd1fe5ab8e1f89cc0
898
+ 896, 0x14171fe176c4bece
899
+ 897, 0x887948bdef78beaa
900
+ 898, 0x80449ddc3eb9b977
901
+ 899, 0x5f4e1f900fb4bcf3
902
+ 900, 0xbe30f8701909f8e2
903
+ 901, 0xd1f2a2fb5503306d
904
+ 902, 0x6b1c77238dc23803
905
+ 903, 0x102156a6c9860f66
906
+ 904, 0x4cd446e099edf4c1
907
+ 905, 0xc79ac6cbc911f33b
908
+ 906, 0x3ee096ffe3384f1c
909
+ 907, 0xb58f83b18a306dc7
910
+ 908, 0x9f76582141de56b2
911
+ 909, 0x9ddfa85e02c13866
912
+ 910, 0x4d9a19d4ce90a543
913
+ 911, 0xbf81ab39fd17d376
914
+ 912, 0x5327e5054c6a74f1
915
+ 913, 0xd5062dd31db1a9b7
916
+ 914, 0x645853735527edc
917
+ 915, 0x485393967f91af08
918
+ 916, 0xeff9667dcf77ca68
919
+ 917, 0xd012313f5fbec464
920
+ 918, 0xbeae35bdfae55144
921
+ 919, 0x302c41ebac8444a0
922
+ 920, 0x9ccdb6c2fe58fba8
923
+ 921, 0x567753af68ed23f8
924
+ 922, 0xff90f790e43efec3
925
+ 923, 0x970cc756fb799696
926
+ 924, 0xe59239d1c44915
927
+ 925, 0x4d2d189fb3941f05
928
+ 926, 0x96f23085db165a9c
929
+ 927, 0xa1202dec7a37b1a5
930
+ 928, 0xc0c1ee74bcd7dc1a
931
+ 929, 0x9edcf2048b30333a
932
+ 930, 0xd848588ba7e865fb
933
+ 931, 0x8d9f0897317cab40
934
+ 932, 0x67b96f15e25924fb
935
+ 933, 0xefc8d8536619ee42
936
+ 934, 0xf3f621d22bdde0c2
937
+ 935, 0x68610a0de862ae32
938
+ 936, 0xa22ca5142de24cbd
939
+ 937, 0x8815452f4e6b4801
940
+ 938, 0x4e9c1b607b2750e5
941
+ 939, 0x19b3c09ba6fc9b25
942
+ 940, 0x9b2543c8836780ac
943
+ 941, 0xe702b8f950e56431
944
+ 942, 0xb357cc329cac3917
945
+ 943, 0x387bf86a17a31e08
946
+ 944, 0x9940b983d331b163
947
+ 945, 0xf5d89d7fe9095e18
948
+ 946, 0x4362682329e5c4d1
949
+ 947, 0xd2132573f6ae7b42
950
+ 948, 0xc0a5849e23a61606
951
+ 949, 0xdadbddf47265bc02
952
+ 950, 0x1b96f00339a705f7
953
+ 951, 0x94e6642329288913
954
+ 952, 0x825ab3f10e6d330b
955
+ 953, 0x1a1c31ac9d883ea0
956
+ 954, 0xb49076b7155c6f47
957
+ 955, 0x920cf3085dfe3ccb
958
+ 956, 0x9743407c9f28e825
959
+ 957, 0x6ce8a28622402719
960
+ 958, 0xce2fe67e06baf8a6
961
+ 959, 0x3a16b34784ecf5e6
962
+ 960, 0x140467cc1d162a0c
963
+ 961, 0x32d4772692ab625
964
+ 962, 0xa4f4b28562f43336
965
+ 963, 0x885b4335457bd84a
966
+ 964, 0x499d3ed26c87ad8a
967
+ 965, 0xc7328bcedb9a545e
968
+ 966, 0xc6dd76a6cbf5d2b2
969
+ 967, 0xba9c22be404ee1aa
970
+ 968, 0x70e6aee45f23521d
971
+ 969, 0x61e03a798593c177
972
+ 970, 0x171671f809c68213
973
+ 971, 0x28d54872fc1d914c
974
+ 972, 0x43c2fcd9bd098b53
975
+ 973, 0x172ad4c4a98b9d37
976
+ 974, 0x330860c9460f2516
977
+ 975, 0x49547f472df984f4
978
+ 976, 0x873b2436d3f0e114
979
+ 977, 0x6f99accf4ea050b6
980
+ 978, 0x5968ac874ed51613
981
+ 979, 0x4939d70d29a3c611
982
+ 980, 0x11f381ed28738d3d
983
+ 981, 0xa97430d36ab3a869
984
+ 982, 0xe6fa880801129e22
985
+ 983, 0xf84decbd8f48c913
986
+ 984, 0x4425c0ed1e9a82a5
987
+ 985, 0x7a1f9485e9929d5a
988
+ 986, 0xc7c51f155dfce1c6
989
+ 987, 0x9619a39501d74f2b
990
+ 988, 0x7c7035955dbf4c1b
991
+ 989, 0xc61ee569cf57c2c9
992
+ 990, 0x3eaf7c5b0df734e1
993
+ 991, 0xe71cb4064d1ede05
994
+ 992, 0x356e3cec80e418b2
995
+ 993, 0xca04306243a15be6
996
+ 994, 0x941cf3881fa18896
997
+ 995, 0x30dbb0e819d644e0
998
+ 996, 0xaae22c0bef02859a
999
+ 997, 0x7bd30917bbaa8a94
1000
+ 998, 0x2672547bc8d7d329
1001
+ 999, 0x4955c92aaa231578