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,1429 @@
1
+ dtype,input,output,ulperrortol
2
+ np.float32,0xbdfe94b0,0x3f6adda6,2
3
+ np.float32,0x3f20f8f8,0x3fc5ec69,2
4
+ np.float32,0x7040b5,0x3f800000,2
5
+ np.float32,0x30ec5,0x3f800000,2
6
+ np.float32,0x3eb63070,0x3fa3ce29,2
7
+ np.float32,0xff4dda3d,0x0,2
8
+ np.float32,0x805b832f,0x3f800000,2
9
+ np.float32,0x3e883fb7,0x3f99ed8c,2
10
+ np.float32,0x3f14d71f,0x3fbf8708,2
11
+ np.float32,0xff7b1e55,0x0,2
12
+ np.float32,0xbf691ac6,0x3f082fa2,2
13
+ np.float32,0x7ee3e6ab,0x7f800000,2
14
+ np.float32,0xbec6e2b4,0x3f439248,2
15
+ np.float32,0xbf5f5ec2,0x3f0bd2c0,2
16
+ np.float32,0x8025cc2c,0x3f800000,2
17
+ np.float32,0x7e0d7672,0x7f800000,2
18
+ np.float32,0xff4bbc5c,0x0,2
19
+ np.float32,0xbd94fb30,0x3f73696b,2
20
+ np.float32,0x6cc079,0x3f800000,2
21
+ np.float32,0x803cf080,0x3f800000,2
22
+ np.float32,0x71d418,0x3f800000,2
23
+ np.float32,0xbf24a442,0x3f23ec1e,2
24
+ np.float32,0xbe6c9510,0x3f5a1e1d,2
25
+ np.float32,0xbe8fb284,0x3f52be38,2
26
+ np.float32,0x7ea64754,0x7f800000,2
27
+ np.float32,0x7fc00000,0x7fc00000,2
28
+ np.float32,0x80620cfd,0x3f800000,2
29
+ np.float32,0x3f3e20e8,0x3fd62e72,2
30
+ np.float32,0x3f384600,0x3fd2d00e,2
31
+ np.float32,0xff362150,0x0,2
32
+ np.float32,0xbf349fa8,0x3f1cfaef,2
33
+ np.float32,0xbf776cf2,0x3f0301a6,2
34
+ np.float32,0x8021fc60,0x3f800000,2
35
+ np.float32,0xbdb75280,0x3f70995c,2
36
+ np.float32,0x7e9363a6,0x7f800000,2
37
+ np.float32,0x7e728422,0x7f800000,2
38
+ np.float32,0xfe91edc2,0x0,2
39
+ np.float32,0x3f5f438c,0x3fea491d,2
40
+ np.float32,0x3f2afae9,0x3fcb5c1f,2
41
+ np.float32,0xbef8e766,0x3f36c448,2
42
+ np.float32,0xba522c00,0x3f7fdb97,2
43
+ np.float32,0xff18ee8c,0x0,2
44
+ np.float32,0xbee8c5f4,0x3f3acd44,2
45
+ np.float32,0x3e790448,0x3f97802c,2
46
+ np.float32,0x3e8c9541,0x3f9ad571,2
47
+ np.float32,0xbf03fa9f,0x3f331460,2
48
+ np.float32,0x801ee053,0x3f800000,2
49
+ np.float32,0xbf773230,0x3f03167f,2
50
+ np.float32,0x356fd9,0x3f800000,2
51
+ np.float32,0x8009cd88,0x3f800000,2
52
+ np.float32,0x7f2bac51,0x7f800000,2
53
+ np.float32,0x4d9eeb,0x3f800000,2
54
+ np.float32,0x3133,0x3f800000,2
55
+ np.float32,0x7f4290e0,0x7f800000,2
56
+ np.float32,0xbf5e6523,0x3f0c3161,2
57
+ np.float32,0x3f19182e,0x3fc1bf10,2
58
+ np.float32,0x7e1248bb,0x7f800000,2
59
+ np.float32,0xff5f7aae,0x0,2
60
+ np.float32,0x7e8557b5,0x7f800000,2
61
+ np.float32,0x26fc7f,0x3f800000,2
62
+ np.float32,0x80397d61,0x3f800000,2
63
+ np.float32,0x3cb1825d,0x3f81efe0,2
64
+ np.float32,0x3ed808d0,0x3fab7c45,2
65
+ np.float32,0xbf6f668a,0x3f05e259,2
66
+ np.float32,0x3e3c7802,0x3f916abd,2
67
+ np.float32,0xbd5ac5a0,0x3f76b21b,2
68
+ np.float32,0x805aa6c9,0x3f800000,2
69
+ np.float32,0xbe4d6f68,0x3f5ec3e1,2
70
+ np.float32,0x3f3108b2,0x3fceb87f,2
71
+ np.float32,0x3ec385cc,0x3fa6c9fb,2
72
+ np.float32,0xbe9fc1ce,0x3f4e35e8,2
73
+ np.float32,0x43b68,0x3f800000,2
74
+ np.float32,0x3ef0cdcc,0x3fb15557,2
75
+ np.float32,0x3e3f729b,0x3f91b5e1,2
76
+ np.float32,0x7f52a4df,0x7f800000,2
77
+ np.float32,0xbf56da96,0x3f0f15b9,2
78
+ np.float32,0xbf161d2b,0x3f2a7faf,2
79
+ np.float32,0x3e8df763,0x3f9b1fbe,2
80
+ np.float32,0xff4f0780,0x0,2
81
+ np.float32,0x8048f594,0x3f800000,2
82
+ np.float32,0x3e62bb1d,0x3f953b7e,2
83
+ np.float32,0xfe58e764,0x0,2
84
+ np.float32,0x3dd2c922,0x3f897718,2
85
+ np.float32,0x7fa00000,0x7fe00000,2
86
+ np.float32,0xff07b4b2,0x0,2
87
+ np.float32,0x7f6231a0,0x7f800000,2
88
+ np.float32,0xb8d1d,0x3f800000,2
89
+ np.float32,0x3ee01d24,0x3fad5f16,2
90
+ np.float32,0xbf43f59f,0x3f169869,2
91
+ np.float32,0x801f5257,0x3f800000,2
92
+ np.float32,0x803c15d8,0x3f800000,2
93
+ np.float32,0x3f171a08,0x3fc0b42a,2
94
+ np.float32,0x127aef,0x3f800000,2
95
+ np.float32,0xfd1c6,0x3f800000,2
96
+ np.float32,0x3f1ed13e,0x3fc4c59a,2
97
+ np.float32,0x57fd4f,0x3f800000,2
98
+ np.float32,0x6e8c61,0x3f800000,2
99
+ np.float32,0x804019ab,0x3f800000,2
100
+ np.float32,0x3ef4e5c6,0x3fb251a1,2
101
+ np.float32,0x5044c3,0x3f800000,2
102
+ np.float32,0x3f04460f,0x3fb7204b,2
103
+ np.float32,0x7e326b47,0x7f800000,2
104
+ np.float32,0x800a7e4c,0x3f800000,2
105
+ np.float32,0xbf47ec82,0x3f14fccc,2
106
+ np.float32,0xbedb1b3e,0x3f3e4a4d,2
107
+ np.float32,0x3f741d86,0x3ff7e4b0,2
108
+ np.float32,0xbe249d20,0x3f6501a6,2
109
+ np.float32,0xbf2ea152,0x3f1f8c68,2
110
+ np.float32,0x3ec6dbcc,0x3fa78b3f,2
111
+ np.float32,0x7ebd9bb4,0x7f800000,2
112
+ np.float32,0x3f61b574,0x3febd77a,2
113
+ np.float32,0x3f3dfb2b,0x3fd61891,2
114
+ np.float32,0x3c7d95,0x3f800000,2
115
+ np.float32,0x8071e840,0x3f800000,2
116
+ np.float32,0x15c6fe,0x3f800000,2
117
+ np.float32,0xbf096601,0x3f307893,2
118
+ np.float32,0x7f5c2ef9,0x7f800000,2
119
+ np.float32,0xbe79f750,0x3f582689,2
120
+ np.float32,0x1eb692,0x3f800000,2
121
+ np.float32,0xbd8024f0,0x3f75226d,2
122
+ np.float32,0xbf5a8be8,0x3f0da950,2
123
+ np.float32,0xbf4d28f3,0x3f12e3e1,2
124
+ np.float32,0x7f800000,0x7f800000,2
125
+ np.float32,0xfea8a758,0x0,2
126
+ np.float32,0x8075d2cf,0x3f800000,2
127
+ np.float32,0xfd99af58,0x0,2
128
+ np.float32,0x9e6a,0x3f800000,2
129
+ np.float32,0x2fa19f,0x3f800000,2
130
+ np.float32,0x3e9f4206,0x3f9ecc56,2
131
+ np.float32,0xbee0b666,0x3f3cd9fc,2
132
+ np.float32,0xbec558c4,0x3f43fab1,2
133
+ np.float32,0x7e9a77df,0x7f800000,2
134
+ np.float32,0xff3a9694,0x0,2
135
+ np.float32,0x3f3b3708,0x3fd47f9a,2
136
+ np.float32,0x807cd6d4,0x3f800000,2
137
+ np.float32,0x804aa422,0x3f800000,2
138
+ np.float32,0xfead7a70,0x0,2
139
+ np.float32,0x3f08c610,0x3fb95efe,2
140
+ np.float32,0xff390126,0x0,2
141
+ np.float32,0x5d2d47,0x3f800000,2
142
+ np.float32,0x8006849c,0x3f800000,2
143
+ np.float32,0x654f6e,0x3f800000,2
144
+ np.float32,0xff478a16,0x0,2
145
+ np.float32,0x3f480b0c,0x3fdc024c,2
146
+ np.float32,0xbc3b96c0,0x3f7df9f4,2
147
+ np.float32,0xbcc96460,0x3f7bacb5,2
148
+ np.float32,0x7f349f30,0x7f800000,2
149
+ np.float32,0xbe08fa98,0x3f6954a1,2
150
+ np.float32,0x4f3a13,0x3f800000,2
151
+ np.float32,0x7f6a5ab4,0x7f800000,2
152
+ np.float32,0x7eb85247,0x7f800000,2
153
+ np.float32,0xbf287246,0x3f223e08,2
154
+ np.float32,0x801584d0,0x3f800000,2
155
+ np.float32,0x7ec25371,0x7f800000,2
156
+ np.float32,0x3f002165,0x3fb51552,2
157
+ np.float32,0x3e1108a8,0x3f8d3429,2
158
+ np.float32,0x4f0f88,0x3f800000,2
159
+ np.float32,0x7f67c1ce,0x7f800000,2
160
+ np.float32,0xbf4348f8,0x3f16dedf,2
161
+ np.float32,0xbe292b64,0x3f644d24,2
162
+ np.float32,0xbf2bfa36,0x3f20b2d6,2
163
+ np.float32,0xbf2a6e58,0x3f215f71,2
164
+ np.float32,0x3e97d5d3,0x3f9d35df,2
165
+ np.float32,0x31f597,0x3f800000,2
166
+ np.float32,0x100544,0x3f800000,2
167
+ np.float32,0x10a197,0x3f800000,2
168
+ np.float32,0x3f44df50,0x3fda20d2,2
169
+ np.float32,0x59916d,0x3f800000,2
170
+ np.float32,0x707472,0x3f800000,2
171
+ np.float32,0x8054194e,0x3f800000,2
172
+ np.float32,0x80627b01,0x3f800000,2
173
+ np.float32,0x7f4d5a5b,0x7f800000,2
174
+ np.float32,0xbcecad00,0x3f7aeca5,2
175
+ np.float32,0xff69c541,0x0,2
176
+ np.float32,0xbe164e20,0x3f673c3a,2
177
+ np.float32,0x3dd321de,0x3f897b39,2
178
+ np.float32,0x3c9c4900,0x3f81b431,2
179
+ np.float32,0x7f0efae3,0x7f800000,2
180
+ np.float32,0xbf1b3ee6,0x3f282567,2
181
+ np.float32,0x3ee858ac,0x3faf5083,2
182
+ np.float32,0x3f0e6a39,0x3fbc3965,2
183
+ np.float32,0x7f0c06d8,0x7f800000,2
184
+ np.float32,0x801dd236,0x3f800000,2
185
+ np.float32,0x564245,0x3f800000,2
186
+ np.float32,0x7e99d3ad,0x7f800000,2
187
+ np.float32,0xff3b0164,0x0,2
188
+ np.float32,0x3f386f18,0x3fd2e785,2
189
+ np.float32,0x7f603c39,0x7f800000,2
190
+ np.float32,0x3cbd9b00,0x3f8211f0,2
191
+ np.float32,0x2178e2,0x3f800000,2
192
+ np.float32,0x5db226,0x3f800000,2
193
+ np.float32,0xfec78d62,0x0,2
194
+ np.float32,0x7f40bc1e,0x7f800000,2
195
+ np.float32,0x80325064,0x3f800000,2
196
+ np.float32,0x3f6068dc,0x3feb0377,2
197
+ np.float32,0xfe8b95c6,0x0,2
198
+ np.float32,0xbe496894,0x3f5f5f87,2
199
+ np.float32,0xbf18722a,0x3f296cf4,2
200
+ np.float32,0x332d0e,0x3f800000,2
201
+ np.float32,0x3f6329dc,0x3fecc5c0,2
202
+ np.float32,0x807d1802,0x3f800000,2
203
+ np.float32,0x3e8afcee,0x3f9a7ff1,2
204
+ np.float32,0x26a0a7,0x3f800000,2
205
+ np.float32,0x7f13085d,0x7f800000,2
206
+ np.float32,0x68d547,0x3f800000,2
207
+ np.float32,0x7e9b04ae,0x7f800000,2
208
+ np.float32,0x3f3ecdfe,0x3fd692ea,2
209
+ np.float32,0x805256f4,0x3f800000,2
210
+ np.float32,0x3f312dc8,0x3fcecd42,2
211
+ np.float32,0x23ca15,0x3f800000,2
212
+ np.float32,0x3f53c455,0x3fe31ad6,2
213
+ np.float32,0xbf21186c,0x3f2580fd,2
214
+ np.float32,0x803b9bb1,0x3f800000,2
215
+ np.float32,0xff6ae1fc,0x0,2
216
+ np.float32,0x2103cf,0x3f800000,2
217
+ np.float32,0xbedcec6c,0x3f3dd29d,2
218
+ np.float32,0x7f520afa,0x7f800000,2
219
+ np.float32,0x7e8b44f2,0x7f800000,2
220
+ np.float32,0xfef7f6ce,0x0,2
221
+ np.float32,0xbd5e7c30,0x3f768a6f,2
222
+ np.float32,0xfeb36848,0x0,2
223
+ np.float32,0xff49effb,0x0,2
224
+ np.float32,0xbec207c0,0x3f44dc74,2
225
+ np.float32,0x3e91147f,0x3f9bc77f,2
226
+ np.float32,0xfe784cd4,0x0,2
227
+ np.float32,0xfd1a7250,0x0,2
228
+ np.float32,0xff3b3f48,0x0,2
229
+ np.float32,0x3f685db5,0x3ff0219f,2
230
+ np.float32,0x3f370976,0x3fd21bae,2
231
+ np.float32,0xfed4cc20,0x0,2
232
+ np.float32,0xbf41e337,0x3f17714a,2
233
+ np.float32,0xbf4e8638,0x3f12593a,2
234
+ np.float32,0x3edaf0f1,0x3fac295e,2
235
+ np.float32,0x803cbb4f,0x3f800000,2
236
+ np.float32,0x7f492043,0x7f800000,2
237
+ np.float32,0x2cabcf,0x3f800000,2
238
+ np.float32,0x17f8ac,0x3f800000,2
239
+ np.float32,0x3e846478,0x3f99205a,2
240
+ np.float32,0x76948f,0x3f800000,2
241
+ np.float32,0x1,0x3f800000,2
242
+ np.float32,0x7ea6419e,0x7f800000,2
243
+ np.float32,0xa5315,0x3f800000,2
244
+ np.float32,0xff3a8e32,0x0,2
245
+ np.float32,0xbe5714e8,0x3f5d50b7,2
246
+ np.float32,0xfeadf960,0x0,2
247
+ np.float32,0x3ebbd1a8,0x3fa50efc,2
248
+ np.float32,0x7f31dce7,0x7f800000,2
249
+ np.float32,0x80314999,0x3f800000,2
250
+ np.float32,0x8017f41b,0x3f800000,2
251
+ np.float32,0x7ed6d051,0x7f800000,2
252
+ np.float32,0x7f525688,0x7f800000,2
253
+ np.float32,0x7f7fffff,0x7f800000,2
254
+ np.float32,0x3e8b0461,0x3f9a8180,2
255
+ np.float32,0x3d9fe46e,0x3f871e1f,2
256
+ np.float32,0x5e6d8f,0x3f800000,2
257
+ np.float32,0xbf09ae55,0x3f305608,2
258
+ np.float32,0xfe7028c4,0x0,2
259
+ np.float32,0x7f3ade56,0x7f800000,2
260
+ np.float32,0xff4c9ef9,0x0,2
261
+ np.float32,0x7e3199cf,0x7f800000,2
262
+ np.float32,0x8048652f,0x3f800000,2
263
+ np.float32,0x805e1237,0x3f800000,2
264
+ np.float32,0x189ed8,0x3f800000,2
265
+ np.float32,0xbea7c094,0x3f4bfd98,2
266
+ np.float32,0xbf2f109c,0x3f1f5c5c,2
267
+ np.float32,0xbf0e7f4c,0x3f2e0d2c,2
268
+ np.float32,0x8005981f,0x3f800000,2
269
+ np.float32,0xbf762005,0x3f0377f3,2
270
+ np.float32,0xbf0f60ab,0x3f2da317,2
271
+ np.float32,0xbf4aa3e7,0x3f13e54e,2
272
+ np.float32,0xbf348fd2,0x3f1d01aa,2
273
+ np.float32,0x3e530b50,0x3f93a7fb,2
274
+ np.float32,0xbf0b05a4,0x3f2fb26a,2
275
+ np.float32,0x3eea416c,0x3fafc4aa,2
276
+ np.float32,0x805ad04d,0x3f800000,2
277
+ np.float32,0xbf6328d8,0x3f0a655e,2
278
+ np.float32,0x3f7347b9,0x3ff75558,2
279
+ np.float32,0xfda3ca68,0x0,2
280
+ np.float32,0x80497d21,0x3f800000,2
281
+ np.float32,0x3e740452,0x3f96fd22,2
282
+ np.float32,0x3e528e57,0x3f939b7e,2
283
+ np.float32,0x3e9e19fa,0x3f9e8cbd,2
284
+ np.float32,0x8078060b,0x3f800000,2
285
+ np.float32,0x3f3fea7a,0x3fd73872,2
286
+ np.float32,0xfcfa30a0,0x0,2
287
+ np.float32,0x7f4eb4bf,0x7f800000,2
288
+ np.float32,0x3f712618,0x3ff5e900,2
289
+ np.float32,0xbf668f0e,0x3f0920c6,2
290
+ np.float32,0x3f3001e9,0x3fce259d,2
291
+ np.float32,0xbe9b6fac,0x3f4f6b9c,2
292
+ np.float32,0xbf61fcf3,0x3f0ad5ec,2
293
+ np.float32,0xff08a55c,0x0,2
294
+ np.float32,0x3e805014,0x3f984872,2
295
+ np.float32,0x6ce04c,0x3f800000,2
296
+ np.float32,0x7f7cbc07,0x7f800000,2
297
+ np.float32,0x3c87dc,0x3f800000,2
298
+ np.float32,0x3f2ee498,0x3fcd869a,2
299
+ np.float32,0x4b1116,0x3f800000,2
300
+ np.float32,0x3d382d06,0x3f840d5f,2
301
+ np.float32,0xff7de21e,0x0,2
302
+ np.float32,0x3f2f1d6d,0x3fcda63c,2
303
+ np.float32,0xbf1c1618,0x3f27c38a,2
304
+ np.float32,0xff4264b1,0x0,2
305
+ np.float32,0x8026e5e7,0x3f800000,2
306
+ np.float32,0xbe6fa180,0x3f59ab02,2
307
+ np.float32,0xbe923c02,0x3f52053b,2
308
+ np.float32,0xff3aa453,0x0,2
309
+ np.float32,0x3f77a7ac,0x3ffa47d0,2
310
+ np.float32,0xbed15f36,0x3f40d08a,2
311
+ np.float32,0xa62d,0x3f800000,2
312
+ np.float32,0xbf342038,0x3f1d3123,2
313
+ np.float32,0x7f2f7f80,0x7f800000,2
314
+ np.float32,0x7f2b6fc1,0x7f800000,2
315
+ np.float32,0xff323540,0x0,2
316
+ np.float32,0x3f1a2b6e,0x3fc24faa,2
317
+ np.float32,0x800cc1d2,0x3f800000,2
318
+ np.float32,0xff38fa01,0x0,2
319
+ np.float32,0x80800000,0x3f800000,2
320
+ np.float32,0xbf3d22e0,0x3f196745,2
321
+ np.float32,0x7f40fd62,0x7f800000,2
322
+ np.float32,0x7e1785c7,0x7f800000,2
323
+ np.float32,0x807408c4,0x3f800000,2
324
+ np.float32,0xbf300192,0x3f1ef485,2
325
+ np.float32,0x351e3d,0x3f800000,2
326
+ np.float32,0x7f5ab736,0x7f800000,2
327
+ np.float32,0x2f1696,0x3f800000,2
328
+ np.float32,0x806ac5d7,0x3f800000,2
329
+ np.float32,0x42ec59,0x3f800000,2
330
+ np.float32,0x7f79f52d,0x7f800000,2
331
+ np.float32,0x44ad28,0x3f800000,2
332
+ np.float32,0xbf49dc9c,0x3f143532,2
333
+ np.float32,0x3f6c1f1f,0x3ff295e7,2
334
+ np.float32,0x1589b3,0x3f800000,2
335
+ np.float32,0x3f49b44e,0x3fdd0031,2
336
+ np.float32,0x7f5942c9,0x7f800000,2
337
+ np.float32,0x3f2dab28,0x3fccd877,2
338
+ np.float32,0xff7fffff,0x0,2
339
+ np.float32,0x80578eb2,0x3f800000,2
340
+ np.float32,0x3f39ba67,0x3fd3a50b,2
341
+ np.float32,0x8020340d,0x3f800000,2
342
+ np.float32,0xbf6025b2,0x3f0b8783,2
343
+ np.float32,0x8015ccfe,0x3f800000,2
344
+ np.float32,0x3f6b9762,0x3ff23cd0,2
345
+ np.float32,0xfeeb0c86,0x0,2
346
+ np.float32,0x802779bc,0x3f800000,2
347
+ np.float32,0xbf32bf64,0x3f1dc796,2
348
+ np.float32,0xbf577eb6,0x3f0ed631,2
349
+ np.float32,0x0,0x3f800000,2
350
+ np.float32,0xfe99de6c,0x0,2
351
+ np.float32,0x7a4e53,0x3f800000,2
352
+ np.float32,0x1a15d3,0x3f800000,2
353
+ np.float32,0x8035fe16,0x3f800000,2
354
+ np.float32,0x3e845784,0x3f991dab,2
355
+ np.float32,0x43d688,0x3f800000,2
356
+ np.float32,0xbd447cc0,0x3f77a0b7,2
357
+ np.float32,0x3f83fa,0x3f800000,2
358
+ np.float32,0x3f141df2,0x3fbf2719,2
359
+ np.float32,0x805c586a,0x3f800000,2
360
+ np.float32,0x14c47e,0x3f800000,2
361
+ np.float32,0x3d3bed00,0x3f8422d4,2
362
+ np.float32,0x7f6f4ecd,0x7f800000,2
363
+ np.float32,0x3f0a5e5a,0x3fba2c5c,2
364
+ np.float32,0x523ecf,0x3f800000,2
365
+ np.float32,0xbef4a6e8,0x3f37d262,2
366
+ np.float32,0xff54eb58,0x0,2
367
+ np.float32,0xff3fc875,0x0,2
368
+ np.float32,0x8067c392,0x3f800000,2
369
+ np.float32,0xfedae910,0x0,2
370
+ np.float32,0x80595979,0x3f800000,2
371
+ np.float32,0x3ee87d1d,0x3faf5929,2
372
+ np.float32,0x7f5bad33,0x7f800000,2
373
+ np.float32,0xbf45b868,0x3f15e109,2
374
+ np.float32,0x3ef2277d,0x3fb1a868,2
375
+ np.float32,0x3ca5a950,0x3f81ce8c,2
376
+ np.float32,0x3e70f4e6,0x3f96ad25,2
377
+ np.float32,0xfe3515bc,0x0,2
378
+ np.float32,0xfe4af088,0x0,2
379
+ np.float32,0xff3c78b2,0x0,2
380
+ np.float32,0x7f50f51a,0x7f800000,2
381
+ np.float32,0x3e3a232a,0x3f913009,2
382
+ np.float32,0x7dfec6ff,0x7f800000,2
383
+ np.float32,0x3e1bbaec,0x3f8e3ad6,2
384
+ np.float32,0xbd658fa0,0x3f763ee7,2
385
+ np.float32,0xfe958684,0x0,2
386
+ np.float32,0x503670,0x3f800000,2
387
+ np.float32,0x3f800000,0x40000000,2
388
+ np.float32,0x1bbec6,0x3f800000,2
389
+ np.float32,0xbea7bb7c,0x3f4bff00,2
390
+ np.float32,0xff3a24a2,0x0,2
391
+ np.float32,0xbf416240,0x3f17a635,2
392
+ np.float32,0xbf800000,0x3f000000,2
393
+ np.float32,0xff0c965c,0x0,2
394
+ np.float32,0x80000000,0x3f800000,2
395
+ np.float32,0xbec2c69a,0x3f44a99e,2
396
+ np.float32,0x5b68d4,0x3f800000,2
397
+ np.float32,0xb9a93000,0x3f7ff158,2
398
+ np.float32,0x3d5a0dd8,0x3f84cfbc,2
399
+ np.float32,0xbeaf7a28,0x3f49de4e,2
400
+ np.float32,0x3ee83555,0x3faf4820,2
401
+ np.float32,0xfd320330,0x0,2
402
+ np.float32,0xe1af2,0x3f800000,2
403
+ np.float32,0x7cf28caf,0x7f800000,2
404
+ np.float32,0x80781009,0x3f800000,2
405
+ np.float32,0xbf1e0baf,0x3f26e04d,2
406
+ np.float32,0x7edb05b1,0x7f800000,2
407
+ np.float32,0x3de004,0x3f800000,2
408
+ np.float32,0xff436af6,0x0,2
409
+ np.float32,0x802a9408,0x3f800000,2
410
+ np.float32,0x7ed82205,0x7f800000,2
411
+ np.float32,0x3e3f8212,0x3f91b767,2
412
+ np.float32,0x16a2b2,0x3f800000,2
413
+ np.float32,0xff1e5af3,0x0,2
414
+ np.float32,0xbf1c860c,0x3f2790b7,2
415
+ np.float32,0x3f3bc5da,0x3fd4d1d6,2
416
+ np.float32,0x7f5f7085,0x7f800000,2
417
+ np.float32,0x7f68e409,0x7f800000,2
418
+ np.float32,0x7f4b3388,0x7f800000,2
419
+ np.float32,0x7ecaf440,0x7f800000,2
420
+ np.float32,0x80078785,0x3f800000,2
421
+ np.float32,0x3ebd800d,0x3fa56f45,2
422
+ np.float32,0xbe39a140,0x3f61c58e,2
423
+ np.float32,0x803b587e,0x3f800000,2
424
+ np.float32,0xbeaaa418,0x3f4b31c4,2
425
+ np.float32,0xff7e2b9f,0x0,2
426
+ np.float32,0xff5180a3,0x0,2
427
+ np.float32,0xbf291394,0x3f21f73c,2
428
+ np.float32,0x7f7b9698,0x7f800000,2
429
+ np.float32,0x4218da,0x3f800000,2
430
+ np.float32,0x7f135262,0x7f800000,2
431
+ np.float32,0x804c10e8,0x3f800000,2
432
+ np.float32,0xbf1c2a54,0x3f27ba5a,2
433
+ np.float32,0x7f41fd32,0x7f800000,2
434
+ np.float32,0x3e5cc464,0x3f94a195,2
435
+ np.float32,0xff7a2fa7,0x0,2
436
+ np.float32,0x3e05dc30,0x3f8c23c9,2
437
+ np.float32,0x7f206d99,0x7f800000,2
438
+ np.float32,0xbe9ae520,0x3f4f9287,2
439
+ np.float32,0xfe4f4d58,0x0,2
440
+ np.float32,0xbf44db42,0x3f163ae3,2
441
+ np.float32,0x3f65ac48,0x3fee6300,2
442
+ np.float32,0x3ebfaf36,0x3fa5ecb0,2
443
+ np.float32,0x3f466719,0x3fdb08b0,2
444
+ np.float32,0x80000001,0x3f800000,2
445
+ np.float32,0xff4b3c7b,0x0,2
446
+ np.float32,0x3df44374,0x3f8b0819,2
447
+ np.float32,0xfea4b540,0x0,2
448
+ np.float32,0x7f358e3d,0x7f800000,2
449
+ np.float32,0x801f5e63,0x3f800000,2
450
+ np.float32,0x804ae77e,0x3f800000,2
451
+ np.float32,0xdbb5,0x3f800000,2
452
+ np.float32,0x7f0a7e3b,0x7f800000,2
453
+ np.float32,0xbe4152e4,0x3f609953,2
454
+ np.float32,0x4b9579,0x3f800000,2
455
+ np.float32,0x3ece0bd4,0x3fa92ea5,2
456
+ np.float32,0x7e499d9a,0x7f800000,2
457
+ np.float32,0x80637d8a,0x3f800000,2
458
+ np.float32,0x3e50a425,0x3f936a8b,2
459
+ np.float32,0xbf0e8cb0,0x3f2e06dd,2
460
+ np.float32,0x802763e2,0x3f800000,2
461
+ np.float32,0xff73041b,0x0,2
462
+ np.float32,0xfea466da,0x0,2
463
+ np.float32,0x80064c73,0x3f800000,2
464
+ np.float32,0xbef29222,0x3f385728,2
465
+ np.float32,0x8029c215,0x3f800000,2
466
+ np.float32,0xbd3994e0,0x3f7815d1,2
467
+ np.float32,0xbe6ac9e4,0x3f5a61f3,2
468
+ np.float32,0x804b58b0,0x3f800000,2
469
+ np.float32,0xbdb83be0,0x3f70865c,2
470
+ np.float32,0x7ee18da2,0x7f800000,2
471
+ np.float32,0xfd4ca010,0x0,2
472
+ np.float32,0x807c668b,0x3f800000,2
473
+ np.float32,0xbd40ed90,0x3f77c6e9,2
474
+ np.float32,0x7efc6881,0x7f800000,2
475
+ np.float32,0xfe633bfc,0x0,2
476
+ np.float32,0x803ce363,0x3f800000,2
477
+ np.float32,0x7ecba81e,0x7f800000,2
478
+ np.float32,0xfdcb2378,0x0,2
479
+ np.float32,0xbebc5524,0x3f4662b2,2
480
+ np.float32,0xfaa30000,0x0,2
481
+ np.float32,0x805d451b,0x3f800000,2
482
+ np.float32,0xbee85600,0x3f3ae996,2
483
+ np.float32,0xfefb0a54,0x0,2
484
+ np.float32,0xbdfc6690,0x3f6b0a08,2
485
+ np.float32,0x58a57,0x3f800000,2
486
+ np.float32,0x3b41b7,0x3f800000,2
487
+ np.float32,0x7c99812d,0x7f800000,2
488
+ np.float32,0xbd3ae740,0x3f78079d,2
489
+ np.float32,0xbf4a48a7,0x3f1409dd,2
490
+ np.float32,0xfdeaad58,0x0,2
491
+ np.float32,0xbe9aa65a,0x3f4fa42c,2
492
+ np.float32,0x3f79d78c,0x3ffbc458,2
493
+ np.float32,0x805e7389,0x3f800000,2
494
+ np.float32,0x7ebb3612,0x7f800000,2
495
+ np.float32,0x2e27dc,0x3f800000,2
496
+ np.float32,0x80726dec,0x3f800000,2
497
+ np.float32,0xfe8fb738,0x0,2
498
+ np.float32,0xff1ff3bd,0x0,2
499
+ np.float32,0x7f5264a2,0x7f800000,2
500
+ np.float32,0x3f5a6893,0x3fe739ca,2
501
+ np.float32,0xbec4029c,0x3f44558d,2
502
+ np.float32,0xbef65cfa,0x3f37657e,2
503
+ np.float32,0x63aba1,0x3f800000,2
504
+ np.float32,0xfbb6e200,0x0,2
505
+ np.float32,0xbf3466fc,0x3f1d1307,2
506
+ np.float32,0x3f258844,0x3fc861d7,2
507
+ np.float32,0xbf5f29a7,0x3f0be6dc,2
508
+ np.float32,0x802b51cd,0x3f800000,2
509
+ np.float32,0xbe9094dc,0x3f527dae,2
510
+ np.float32,0xfec2e68c,0x0,2
511
+ np.float32,0x807b38bd,0x3f800000,2
512
+ np.float32,0xbf594662,0x3f0e2663,2
513
+ np.float32,0x7cbcf747,0x7f800000,2
514
+ np.float32,0xbe4b88f0,0x3f5f0d47,2
515
+ np.float32,0x3c53c4,0x3f800000,2
516
+ np.float32,0xbe883562,0x3f54e3f7,2
517
+ np.float32,0xbf1efaf0,0x3f267456,2
518
+ np.float32,0x3e22cd3e,0x3f8ee98b,2
519
+ np.float32,0x80434875,0x3f800000,2
520
+ np.float32,0xbf000b44,0x3f34ff6e,2
521
+ np.float32,0x7f311c3a,0x7f800000,2
522
+ np.float32,0x802f7f3f,0x3f800000,2
523
+ np.float32,0x805155fe,0x3f800000,2
524
+ np.float32,0x7f5d7485,0x7f800000,2
525
+ np.float32,0x80119197,0x3f800000,2
526
+ np.float32,0x3f445b8b,0x3fd9d30d,2
527
+ np.float32,0xbf638eb3,0x3f0a3f38,2
528
+ np.float32,0x402410,0x3f800000,2
529
+ np.float32,0xbc578a40,0x3f7dad1d,2
530
+ np.float32,0xbeecbf8a,0x3f39cc9e,2
531
+ np.float32,0x7f2935a4,0x7f800000,2
532
+ np.float32,0x3f570fea,0x3fe523e2,2
533
+ np.float32,0xbf06bffa,0x3f31bdb6,2
534
+ np.float32,0xbf2afdfd,0x3f2120ba,2
535
+ np.float32,0x7f76f7ab,0x7f800000,2
536
+ np.float32,0xfee2d1e8,0x0,2
537
+ np.float32,0x800b026d,0x3f800000,2
538
+ np.float32,0xff0eda75,0x0,2
539
+ np.float32,0x3d4c,0x3f800000,2
540
+ np.float32,0xbed538a2,0x3f3fcffb,2
541
+ np.float32,0x3f73f4f9,0x3ff7c979,2
542
+ np.float32,0x2aa9fc,0x3f800000,2
543
+ np.float32,0x806a45b3,0x3f800000,2
544
+ np.float32,0xff770d35,0x0,2
545
+ np.float32,0x7e999be3,0x7f800000,2
546
+ np.float32,0x80741128,0x3f800000,2
547
+ np.float32,0xff6aac34,0x0,2
548
+ np.float32,0x470f74,0x3f800000,2
549
+ np.float32,0xff423b7b,0x0,2
550
+ np.float32,0x17dfdd,0x3f800000,2
551
+ np.float32,0x7f029e12,0x7f800000,2
552
+ np.float32,0x803fcb9d,0x3f800000,2
553
+ np.float32,0x3f3dc3,0x3f800000,2
554
+ np.float32,0x7f3a27bc,0x7f800000,2
555
+ np.float32,0x3e473108,0x3f9279ec,2
556
+ np.float32,0x7f4add5d,0x7f800000,2
557
+ np.float32,0xfd9736e0,0x0,2
558
+ np.float32,0x805f1df2,0x3f800000,2
559
+ np.float32,0x6c49c1,0x3f800000,2
560
+ np.float32,0x7ec733c7,0x7f800000,2
561
+ np.float32,0x804c1abf,0x3f800000,2
562
+ np.float32,0x3de2e887,0x3f8a37a5,2
563
+ np.float32,0x3f51630a,0x3fe1a561,2
564
+ np.float32,0x3de686a8,0x3f8a62ff,2
565
+ np.float32,0xbedb3538,0x3f3e439c,2
566
+ np.float32,0xbf3aa892,0x3f1a6f9e,2
567
+ np.float32,0x7ee5fb32,0x7f800000,2
568
+ np.float32,0x7e916c9b,0x7f800000,2
569
+ np.float32,0x3f033f1c,0x3fb69e19,2
570
+ np.float32,0x25324b,0x3f800000,2
571
+ np.float32,0x3f348d1d,0x3fd0b2e2,2
572
+ np.float32,0x3f5797e8,0x3fe57851,2
573
+ np.float32,0xbf69c316,0x3f07f1a0,2
574
+ np.float32,0xbe8b7fb0,0x3f53f1bf,2
575
+ np.float32,0xbdbbc190,0x3f703d00,2
576
+ np.float32,0xff6c4fc0,0x0,2
577
+ np.float32,0x7f29fcbe,0x7f800000,2
578
+ np.float32,0x3f678d19,0x3fef9a23,2
579
+ np.float32,0x73d140,0x3f800000,2
580
+ np.float32,0x3e25bdd2,0x3f8f326b,2
581
+ np.float32,0xbeb775ec,0x3f47b2c6,2
582
+ np.float32,0xff451c4d,0x0,2
583
+ np.float32,0x8072c466,0x3f800000,2
584
+ np.float32,0x3f65e836,0x3fee89b2,2
585
+ np.float32,0x52ca7a,0x3f800000,2
586
+ np.float32,0x62cfed,0x3f800000,2
587
+ np.float32,0xbf583dd0,0x3f0e8c5c,2
588
+ np.float32,0xbf683842,0x3f088342,2
589
+ np.float32,0x3f1a7828,0x3fc2780c,2
590
+ np.float32,0x800ea979,0x3f800000,2
591
+ np.float32,0xbeb9133c,0x3f474328,2
592
+ np.float32,0x3ef09fc7,0x3fb14a4b,2
593
+ np.float32,0x7ebbcb75,0x7f800000,2
594
+ np.float32,0xff316c0e,0x0,2
595
+ np.float32,0x805b84e3,0x3f800000,2
596
+ np.float32,0x3d6a55e0,0x3f852d8a,2
597
+ np.float32,0x3e755788,0x3f971fd1,2
598
+ np.float32,0x3ee7aacb,0x3faf2743,2
599
+ np.float32,0x7f714039,0x7f800000,2
600
+ np.float32,0xff70bad8,0x0,2
601
+ np.float32,0xbe0b74c8,0x3f68f08c,2
602
+ np.float32,0xbf6cb170,0x3f06de86,2
603
+ np.float32,0x7ec1fbff,0x7f800000,2
604
+ np.float32,0x8014b1f6,0x3f800000,2
605
+ np.float32,0xfe8b45fe,0x0,2
606
+ np.float32,0x6e2220,0x3f800000,2
607
+ np.float32,0x3ed1777d,0x3fa9f7ab,2
608
+ np.float32,0xff48e467,0x0,2
609
+ np.float32,0xff76c5aa,0x0,2
610
+ np.float32,0x3e9bd330,0x3f9e0fd7,2
611
+ np.float32,0x3f17de4f,0x3fc11aae,2
612
+ np.float32,0x7eeaa2fd,0x7f800000,2
613
+ np.float32,0xbf572746,0x3f0ef806,2
614
+ np.float32,0x7e235554,0x7f800000,2
615
+ np.float32,0xfe24fc1c,0x0,2
616
+ np.float32,0x7daf71ad,0x7f800000,2
617
+ np.float32,0x800d4a6b,0x3f800000,2
618
+ np.float32,0xbf6fc31d,0x3f05c0ce,2
619
+ np.float32,0x1c4d93,0x3f800000,2
620
+ np.float32,0x7ee9200c,0x7f800000,2
621
+ np.float32,0x3f54b4da,0x3fe3aeec,2
622
+ np.float32,0x2b37b1,0x3f800000,2
623
+ np.float32,0x3f7468bd,0x3ff81731,2
624
+ np.float32,0x3f2850ea,0x3fc9e5f4,2
625
+ np.float32,0xbe0d47ac,0x3f68a6f9,2
626
+ np.float32,0x314877,0x3f800000,2
627
+ np.float32,0x802700c3,0x3f800000,2
628
+ np.float32,0x7e2c915f,0x7f800000,2
629
+ np.float32,0x800d0059,0x3f800000,2
630
+ np.float32,0x3f7f3c25,0x3fff7862,2
631
+ np.float32,0xff735d31,0x0,2
632
+ np.float32,0xff7e339e,0x0,2
633
+ np.float32,0xbef96cf0,0x3f36a340,2
634
+ np.float32,0x3db6ea21,0x3f882cb2,2
635
+ np.float32,0x67cb3d,0x3f800000,2
636
+ np.float32,0x801f349d,0x3f800000,2
637
+ np.float32,0x3f1390ec,0x3fbede29,2
638
+ np.float32,0x7f13644a,0x7f800000,2
639
+ np.float32,0x804a369b,0x3f800000,2
640
+ np.float32,0x80262666,0x3f800000,2
641
+ np.float32,0x7e850fbc,0x7f800000,2
642
+ np.float32,0x18b002,0x3f800000,2
643
+ np.float32,0x8051f1ed,0x3f800000,2
644
+ np.float32,0x3eba48f6,0x3fa4b753,2
645
+ np.float32,0xbf3f4130,0x3f1886a9,2
646
+ np.float32,0xbedac006,0x3f3e61cf,2
647
+ np.float32,0xbf097c70,0x3f306ddc,2
648
+ np.float32,0x4aba6d,0x3f800000,2
649
+ np.float32,0x580078,0x3f800000,2
650
+ np.float32,0x3f64d82e,0x3fedda40,2
651
+ np.float32,0x7f781fd6,0x7f800000,2
652
+ np.float32,0x6aff3d,0x3f800000,2
653
+ np.float32,0xff25e074,0x0,2
654
+ np.float32,0x7ea9ec89,0x7f800000,2
655
+ np.float32,0xbf63b816,0x3f0a2fbb,2
656
+ np.float32,0x133f07,0x3f800000,2
657
+ np.float32,0xff800000,0x0,2
658
+ np.float32,0x8013dde7,0x3f800000,2
659
+ np.float32,0xff770b95,0x0,2
660
+ np.float32,0x806154e8,0x3f800000,2
661
+ np.float32,0x3f1e7bce,0x3fc4981a,2
662
+ np.float32,0xff262c78,0x0,2
663
+ np.float32,0x3f59a652,0x3fe6c04c,2
664
+ np.float32,0x7f220166,0x7f800000,2
665
+ np.float32,0x7eb24939,0x7f800000,2
666
+ np.float32,0xbed58bb0,0x3f3fba6a,2
667
+ np.float32,0x3c2ad000,0x3f80eda7,2
668
+ np.float32,0x2adb2e,0x3f800000,2
669
+ np.float32,0xfe8b213e,0x0,2
670
+ np.float32,0xbf2e0c1e,0x3f1fccea,2
671
+ np.float32,0x7e1716be,0x7f800000,2
672
+ np.float32,0x80184e73,0x3f800000,2
673
+ np.float32,0xbf254743,0x3f23a3d5,2
674
+ np.float32,0x8063a722,0x3f800000,2
675
+ np.float32,0xbe50adf0,0x3f5e46c7,2
676
+ np.float32,0x3f614158,0x3feb8d60,2
677
+ np.float32,0x8014bbc8,0x3f800000,2
678
+ np.float32,0x283bc7,0x3f800000,2
679
+ np.float32,0x3ffb5c,0x3f800000,2
680
+ np.float32,0xfe8de6bc,0x0,2
681
+ np.float32,0xbea6e086,0x3f4c3b82,2
682
+ np.float32,0xfee64b92,0x0,2
683
+ np.float32,0x506c1a,0x3f800000,2
684
+ np.float32,0xff342af8,0x0,2
685
+ np.float32,0x6b6f4c,0x3f800000,2
686
+ np.float32,0xfeb42b1e,0x0,2
687
+ np.float32,0x3e49384a,0x3f92ad71,2
688
+ np.float32,0x152d08,0x3f800000,2
689
+ np.float32,0x804c8f09,0x3f800000,2
690
+ np.float32,0xff5e927d,0x0,2
691
+ np.float32,0x6374da,0x3f800000,2
692
+ np.float32,0x3f48f011,0x3fdc8ae4,2
693
+ np.float32,0xbf446a30,0x3f1668e8,2
694
+ np.float32,0x3ee77073,0x3faf196e,2
695
+ np.float32,0xff4caa40,0x0,2
696
+ np.float32,0x7efc9363,0x7f800000,2
697
+ np.float32,0xbf706dcc,0x3f05830d,2
698
+ np.float32,0xfe29c7e8,0x0,2
699
+ np.float32,0x803cfe58,0x3f800000,2
700
+ np.float32,0x3ec34c7c,0x3fa6bd0a,2
701
+ np.float32,0x3eb85b62,0x3fa44968,2
702
+ np.float32,0xfda1b9d8,0x0,2
703
+ np.float32,0x802932cd,0x3f800000,2
704
+ np.float32,0xbf5cde78,0x3f0cc5fa,2
705
+ np.float32,0x3f31bf44,0x3fcf1ec8,2
706
+ np.float32,0x803a0882,0x3f800000,2
707
+ np.float32,0x800000,0x3f800000,2
708
+ np.float32,0x3f54110e,0x3fe34a08,2
709
+ np.float32,0x80645ea9,0x3f800000,2
710
+ np.float32,0xbd8c1070,0x3f7425c3,2
711
+ np.float32,0x801a006a,0x3f800000,2
712
+ np.float32,0x7f5d161e,0x7f800000,2
713
+ np.float32,0x805b5df3,0x3f800000,2
714
+ np.float32,0xbf71a7c0,0x3f0511be,2
715
+ np.float32,0xbe9a55c0,0x3f4fbad6,2
716
+ np.float64,0xde7e2fd9bcfc6,0x3ff0000000000000,1
717
+ np.float64,0xbfd8cd88eb319b12,0x3fe876349efbfa2b,1
718
+ np.float64,0x3fe4fa13ace9f428,0x3ff933fbb117d196,1
719
+ np.float64,0x475b3d048eb68,0x3ff0000000000000,1
720
+ np.float64,0x7fef39ed07be73d9,0x7ff0000000000000,1
721
+ np.float64,0x80026b84d904d70a,0x3ff0000000000000,1
722
+ np.float64,0xebd60627d7ac1,0x3ff0000000000000,1
723
+ np.float64,0xbfd7cbefdbaf97e0,0x3fe8bad30f6cf8e1,1
724
+ np.float64,0x7fc17c605a22f8c0,0x7ff0000000000000,1
725
+ np.float64,0x8cdac05119b58,0x3ff0000000000000,1
726
+ np.float64,0x3fc45cd60a28b9ac,0x3ff1dd8028ec3f41,1
727
+ np.float64,0x7fef4fce137e9f9b,0x7ff0000000000000,1
728
+ np.float64,0xe5a2b819cb457,0x3ff0000000000000,1
729
+ np.float64,0xe3bcfd4dc77a0,0x3ff0000000000000,1
730
+ np.float64,0x68f0b670d1e17,0x3ff0000000000000,1
731
+ np.float64,0xae69a6455cd35,0x3ff0000000000000,1
732
+ np.float64,0xffe7007a0c6e00f4,0x0,1
733
+ np.float64,0x59fc57a8b3f8c,0x3ff0000000000000,1
734
+ np.float64,0xbfeee429c0bdc854,0x3fe0638fa62bed9f,1
735
+ np.float64,0x80030bb6e206176f,0x3ff0000000000000,1
736
+ np.float64,0x8006967a36ad2cf5,0x3ff0000000000000,1
737
+ np.float64,0x3fe128176a22502f,0x3ff73393301e5dc8,1
738
+ np.float64,0x218de20c431bd,0x3ff0000000000000,1
739
+ np.float64,0x3fe7dbc48aafb789,0x3ffad38989b5955c,1
740
+ np.float64,0xffda1ef411343de8,0x0,1
741
+ np.float64,0xc6b392838d673,0x3ff0000000000000,1
742
+ np.float64,0x7fe6d080c1ada101,0x7ff0000000000000,1
743
+ np.float64,0xbfed36dd67fa6dbb,0x3fe0fec342c4ee89,1
744
+ np.float64,0x3fee2bb6a3fc576e,0x3ffec1c149f1f092,1
745
+ np.float64,0xbfd1f785eb23ef0c,0x3fea576eb01233cb,1
746
+ np.float64,0x7fdad29a1f35a533,0x7ff0000000000000,1
747
+ np.float64,0xffe8928c4fb12518,0x0,1
748
+ np.float64,0x7fb123160022462b,0x7ff0000000000000,1
749
+ np.float64,0x8007ab56cfaf56ae,0x3ff0000000000000,1
750
+ np.float64,0x7fda342d6634685a,0x7ff0000000000000,1
751
+ np.float64,0xbfe3b7e42c676fc8,0x3fe4e05cf8685b8a,1
752
+ np.float64,0xffa708be7c2e1180,0x0,1
753
+ np.float64,0xbfe8ffbece31ff7e,0x3fe29eb84077a34a,1
754
+ np.float64,0xbf91002008220040,0x3fefa245058f05cb,1
755
+ np.float64,0x8000281f0ee0503f,0x3ff0000000000000,1
756
+ np.float64,0x8005617adc2ac2f6,0x3ff0000000000000,1
757
+ np.float64,0x7fa84fec60309fd8,0x7ff0000000000000,1
758
+ np.float64,0x8d00c0231a018,0x3ff0000000000000,1
759
+ np.float64,0xbfdfe52ca63fca5a,0x3fe6a7324cc00d57,1
760
+ np.float64,0x7fcc81073d39020d,0x7ff0000000000000,1
761
+ np.float64,0x800134ff5a6269ff,0x3ff0000000000000,1
762
+ np.float64,0xffc7fff98d2ffff4,0x0,1
763
+ np.float64,0x8000925ce50124bb,0x3ff0000000000000,1
764
+ np.float64,0xffe2530c66a4a618,0x0,1
765
+ np.float64,0x7fc99070673320e0,0x7ff0000000000000,1
766
+ np.float64,0xbfddd5c1f13bab84,0x3fe72a0c80f8df39,1
767
+ np.float64,0x3fe1c220fee38442,0x3ff7817ec66aa55b,1
768
+ np.float64,0x3fb9a1e1043343c2,0x3ff1265e575e6404,1
769
+ np.float64,0xffef72e0833ee5c0,0x0,1
770
+ np.float64,0x3fe710c0416e2181,0x3ffa5e93588aaa69,1
771
+ np.float64,0xbfd8d23cbab1a47a,0x3fe874f5b9d99885,1
772
+ np.float64,0x7fe9628ebd72c51c,0x7ff0000000000000,1
773
+ np.float64,0xdd5fa611babf5,0x3ff0000000000000,1
774
+ np.float64,0x8002bafac86575f6,0x3ff0000000000000,1
775
+ np.float64,0x68acea44d159e,0x3ff0000000000000,1
776
+ np.float64,0xffd776695eaeecd2,0x0,1
777
+ np.float64,0x80059b59bb4b36b4,0x3ff0000000000000,1
778
+ np.float64,0xbdcdd2af7b9bb,0x3ff0000000000000,1
779
+ np.float64,0x8002b432ee856867,0x3ff0000000000000,1
780
+ np.float64,0xcbc72f09978e6,0x3ff0000000000000,1
781
+ np.float64,0xbfee8f4bf6fd1e98,0x3fe081cc0318b170,1
782
+ np.float64,0xffc6e2892d2dc514,0x0,1
783
+ np.float64,0x7feb682e4db6d05c,0x7ff0000000000000,1
784
+ np.float64,0x8004b70a04296e15,0x3ff0000000000000,1
785
+ np.float64,0x42408a4284812,0x3ff0000000000000,1
786
+ np.float64,0xbfe9b8b197f37163,0x3fe254b4c003ce0a,1
787
+ np.float64,0x3fcaadf5f5355bec,0x3ff27ca7876a8d20,1
788
+ np.float64,0xfff0000000000000,0x0,1
789
+ np.float64,0x7fea8376d33506ed,0x7ff0000000000000,1
790
+ np.float64,0xffef73c2d63ee785,0x0,1
791
+ np.float64,0xffe68b2bae2d1657,0x0,1
792
+ np.float64,0x3fd8339cb2306739,0x3ff4cb774d616f90,1
793
+ np.float64,0xbfc6d1db4d2da3b8,0x3fec47bb873a309c,1
794
+ np.float64,0x7fe858016230b002,0x7ff0000000000000,1
795
+ np.float64,0x7fe74cb99d2e9972,0x7ff0000000000000,1
796
+ np.float64,0xffec2e96dc385d2d,0x0,1
797
+ np.float64,0xb762a9876ec55,0x3ff0000000000000,1
798
+ np.float64,0x3feca230c5794462,0x3ffdbfe62a572f52,1
799
+ np.float64,0xbfb5ebad3a2bd758,0x3fee27eed86dcc39,1
800
+ np.float64,0x471c705a8e38f,0x3ff0000000000000,1
801
+ np.float64,0x7fc79bb5cf2f376b,0x7ff0000000000000,1
802
+ np.float64,0xbfe53d6164ea7ac3,0x3fe4331b3beb73bd,1
803
+ np.float64,0xbfe375a3f766eb48,0x3fe4fe67edb516e6,1
804
+ np.float64,0x3fe1c7686ca38ed1,0x3ff7842f04770ba9,1
805
+ np.float64,0x242e74dc485cf,0x3ff0000000000000,1
806
+ np.float64,0x8009c06ab71380d6,0x3ff0000000000000,1
807
+ np.float64,0x3fd08505efa10a0c,0x3ff3227b735b956d,1
808
+ np.float64,0xffe3dfcecda7bf9d,0x0,1
809
+ np.float64,0x8001f079bbc3e0f4,0x3ff0000000000000,1
810
+ np.float64,0x3fddc706b6bb8e0c,0x3ff616d927987363,1
811
+ np.float64,0xbfd151373ea2a26e,0x3fea870ba53ec126,1
812
+ np.float64,0x7fe89533bfb12a66,0x7ff0000000000000,1
813
+ np.float64,0xffed302cbc3a6059,0x0,1
814
+ np.float64,0x3fd871cc28b0e398,0x3ff4d97d58c16ae2,1
815
+ np.float64,0x7fbe9239683d2472,0x7ff0000000000000,1
816
+ np.float64,0x848a445909149,0x3ff0000000000000,1
817
+ np.float64,0x8007b104ce2f620a,0x3ff0000000000000,1
818
+ np.float64,0x7fc2cd6259259ac4,0x7ff0000000000000,1
819
+ np.float64,0xbfeadb640df5b6c8,0x3fe1e2b068de10af,1
820
+ np.float64,0x800033b2f1a06767,0x3ff0000000000000,1
821
+ np.float64,0x7fe54e5b7caa9cb6,0x7ff0000000000000,1
822
+ np.float64,0x4f928f209f26,0x3ff0000000000000,1
823
+ np.float64,0x8003c3dc6f2787ba,0x3ff0000000000000,1
824
+ np.float64,0xbfd55a59daaab4b4,0x3fe9649d57b32b5d,1
825
+ np.float64,0xffe3e2968d67c52c,0x0,1
826
+ np.float64,0x80087434d550e86a,0x3ff0000000000000,1
827
+ np.float64,0xffdde800083bd000,0x0,1
828
+ np.float64,0xffe291f0542523e0,0x0,1
829
+ np.float64,0xbfe1419bc3e28338,0x3fe6051d4f95a34a,1
830
+ np.float64,0x3fd9d00ee1b3a01e,0x3ff5292bb8d5f753,1
831
+ np.float64,0x3fdb720b60b6e417,0x3ff589d133625374,1
832
+ np.float64,0xbfe3e21f0967c43e,0x3fe4cd4d02e3ef9a,1
833
+ np.float64,0x7fd7e27f3dafc4fd,0x7ff0000000000000,1
834
+ np.float64,0x3fd1cc2620a3984c,0x3ff366befbc38e3e,1
835
+ np.float64,0x3fe78d05436f1a0b,0x3ffaa5ee4ea54b79,1
836
+ np.float64,0x7e2acc84fc55a,0x3ff0000000000000,1
837
+ np.float64,0x800ffb861c5ff70c,0x3ff0000000000000,1
838
+ np.float64,0xffb2b0db1a2561b8,0x0,1
839
+ np.float64,0xbfe80c2363701847,0x3fe301fdfe789576,1
840
+ np.float64,0x7fe383c1c3e70783,0x7ff0000000000000,1
841
+ np.float64,0xbfeefc02e6fdf806,0x3fe05b1a8528bf6c,1
842
+ np.float64,0xbfe42c9268285925,0x3fe4abdc14793cb8,1
843
+ np.float64,0x1,0x3ff0000000000000,1
844
+ np.float64,0xa71c7ce94e390,0x3ff0000000000000,1
845
+ np.float64,0x800ed4e6777da9cd,0x3ff0000000000000,1
846
+ np.float64,0x3fde11b35d3c2367,0x3ff628bdc6dd1b78,1
847
+ np.float64,0x3fef3964dbfe72ca,0x3fff777cae357608,1
848
+ np.float64,0x3fefe369b7ffc6d4,0x3fffec357be508a3,1
849
+ np.float64,0xbfdef1855f3de30a,0x3fe6e348c58e3fed,1
850
+ np.float64,0x3fee0e2bc13c1c58,0x3ffeae1909c1b973,1
851
+ np.float64,0xbfd31554ffa62aaa,0x3fea06628b2f048a,1
852
+ np.float64,0x800dc56bcc7b8ad8,0x3ff0000000000000,1
853
+ np.float64,0x7fbba01b8e374036,0x7ff0000000000000,1
854
+ np.float64,0x7fd9737a92b2e6f4,0x7ff0000000000000,1
855
+ np.float64,0x3feeae0fac3d5c1f,0x3fff1913705f1f07,1
856
+ np.float64,0x3fdcc64fcdb98ca0,0x3ff5d9c3e5862972,1
857
+ np.float64,0x3fdad9f83db5b3f0,0x3ff56674e81c1bd1,1
858
+ np.float64,0x32b8797065710,0x3ff0000000000000,1
859
+ np.float64,0x3fd20deae6241bd6,0x3ff37495bc057394,1
860
+ np.float64,0x7fc899f0763133e0,0x7ff0000000000000,1
861
+ np.float64,0x80045805fc08b00d,0x3ff0000000000000,1
862
+ np.float64,0xbfcd8304cb3b0608,0x3feb4611f1eaa30c,1
863
+ np.float64,0x3fd632a2fcac6544,0x3ff4592e1ea14fb0,1
864
+ np.float64,0xffeeb066007d60cb,0x0,1
865
+ np.float64,0x800bb12a42b76255,0x3ff0000000000000,1
866
+ np.float64,0xbfe060fe1760c1fc,0x3fe6714640ab2574,1
867
+ np.float64,0x80067ed737acfdaf,0x3ff0000000000000,1
868
+ np.float64,0x3fd5ec3211abd864,0x3ff449adea82e73e,1
869
+ np.float64,0x7fc4b2fdc22965fb,0x7ff0000000000000,1
870
+ np.float64,0xff656afd002ad600,0x0,1
871
+ np.float64,0xffeadefcdcb5bdf9,0x0,1
872
+ np.float64,0x80052f18610a5e32,0x3ff0000000000000,1
873
+ np.float64,0xbfd5b75c78ab6eb8,0x3fe94b15e0f39194,1
874
+ np.float64,0xa4d3de2b49a7c,0x3ff0000000000000,1
875
+ np.float64,0xbfe321c93de64392,0x3fe524ac7bbee401,1
876
+ np.float64,0x3feb32f5def665ec,0x3ffcd6e4e5f9c271,1
877
+ np.float64,0x7fe6b07e4ced60fc,0x7ff0000000000000,1
878
+ np.float64,0x3fe013bb2de02776,0x3ff6aa4c32ab5ba4,1
879
+ np.float64,0xbfeadd81d375bb04,0x3fe1e1de89b4aebf,1
880
+ np.float64,0xffece7678079cece,0x0,1
881
+ np.float64,0x3fe3d87b8467b0f8,0x3ff897cf22505e4d,1
882
+ np.float64,0xffc4e3a05129c740,0x0,1
883
+ np.float64,0xbfddee6b03bbdcd6,0x3fe723dd83ab49bd,1
884
+ np.float64,0x3fcc4e2672389c4d,0x3ff2a680db769116,1
885
+ np.float64,0x3fd8ed221ab1da44,0x3ff4f569aec8b850,1
886
+ np.float64,0x80000a3538a0146b,0x3ff0000000000000,1
887
+ np.float64,0x8004832eb109065e,0x3ff0000000000000,1
888
+ np.float64,0xffdca83c60395078,0x0,1
889
+ np.float64,0xffef551cda3eaa39,0x0,1
890
+ np.float64,0x800fd95dd65fb2bc,0x3ff0000000000000,1
891
+ np.float64,0x3ff0000000000000,0x4000000000000000,1
892
+ np.float64,0xbfc06f5c4f20deb8,0x3fed466c17305ad8,1
893
+ np.float64,0xbfeb01b5f476036c,0x3fe1d3de0f4211f4,1
894
+ np.float64,0xbfdb2b9284365726,0x3fe7d7b02f790b05,1
895
+ np.float64,0xff76ba83202d7500,0x0,1
896
+ np.float64,0x3fd3f1c59ea7e38c,0x3ff3db96b3a0aaad,1
897
+ np.float64,0x8b99ff6d17340,0x3ff0000000000000,1
898
+ np.float64,0xbfeb383aa0f67075,0x3fe1bedcf2531c08,1
899
+ np.float64,0x3fe321e35fa643c7,0x3ff83749a5d686ee,1
900
+ np.float64,0xbfd863eb2130c7d6,0x3fe8923fcc39bac7,1
901
+ np.float64,0x9e71dd333ce3c,0x3ff0000000000000,1
902
+ np.float64,0x9542962b2a853,0x3ff0000000000000,1
903
+ np.float64,0xba2c963b74593,0x3ff0000000000000,1
904
+ np.float64,0x80019f4d0ca33e9b,0x3ff0000000000000,1
905
+ np.float64,0xffde3e39a73c7c74,0x0,1
906
+ np.float64,0x800258ae02c4b15d,0x3ff0000000000000,1
907
+ np.float64,0xbfd99a535a3334a6,0x3fe8402f3a0662a5,1
908
+ np.float64,0xe6c62143cd8c4,0x3ff0000000000000,1
909
+ np.float64,0x7fbcc828f0399051,0x7ff0000000000000,1
910
+ np.float64,0xbfe42e3596285c6b,0x3fe4ab2066d66071,1
911
+ np.float64,0xffe2ee42d365dc85,0x0,1
912
+ np.float64,0x3fe1f98abea3f315,0x3ff79dc68002a80b,1
913
+ np.float64,0x7fd7225891ae44b0,0x7ff0000000000000,1
914
+ np.float64,0x477177408ee30,0x3ff0000000000000,1
915
+ np.float64,0xbfe16a7e2162d4fc,0x3fe5f1a5c745385d,1
916
+ np.float64,0xbf98aaee283155e0,0x3fef785952e9c089,1
917
+ np.float64,0x7fd7c14a8daf8294,0x7ff0000000000000,1
918
+ np.float64,0xf7e7713defcee,0x3ff0000000000000,1
919
+ np.float64,0x800769aa11aed355,0x3ff0000000000000,1
920
+ np.float64,0xbfed30385e3a6071,0x3fe10135a3bd9ae6,1
921
+ np.float64,0x3fe6dd7205edbae4,0x3ffa4155899efd70,1
922
+ np.float64,0x800d705d26bae0ba,0x3ff0000000000000,1
923
+ np.float64,0xa443ac1f48876,0x3ff0000000000000,1
924
+ np.float64,0xbfec8cfec43919fe,0x3fe13dbf966e6633,1
925
+ np.float64,0x7fd246efaa248dde,0x7ff0000000000000,1
926
+ np.float64,0x800f2ad14afe55a3,0x3ff0000000000000,1
927
+ np.float64,0x800487a894c90f52,0x3ff0000000000000,1
928
+ np.float64,0x80014c4f19e2989f,0x3ff0000000000000,1
929
+ np.float64,0x3fc11f265f223e4d,0x3ff18def05c971e5,1
930
+ np.float64,0xffeb6d565776daac,0x0,1
931
+ np.float64,0x7fd5ca5df8ab94bb,0x7ff0000000000000,1
932
+ np.float64,0xbfe33de4fde67bca,0x3fe517d0e212cd1c,1
933
+ np.float64,0xbfd1c738e5a38e72,0x3fea6539e9491693,1
934
+ np.float64,0xbfec1d8c33b83b18,0x3fe16790fbca0c65,1
935
+ np.float64,0xbfeecb464b7d968d,0x3fe06c67e2aefa55,1
936
+ np.float64,0xbfd621dbf1ac43b8,0x3fe92dfa32d93846,1
937
+ np.float64,0x80069a02860d3406,0x3ff0000000000000,1
938
+ np.float64,0xbfe84f650e309eca,0x3fe2e661300f1975,1
939
+ np.float64,0x7fc1d2cec523a59d,0x7ff0000000000000,1
940
+ np.float64,0x3fd7706d79aee0db,0x3ff49fb033353dfe,1
941
+ np.float64,0xffd94ba458329748,0x0,1
942
+ np.float64,0x7fea98ba1a753173,0x7ff0000000000000,1
943
+ np.float64,0xbfe756ba092ead74,0x3fe34d428d1857bc,1
944
+ np.float64,0xffecfbd836b9f7b0,0x0,1
945
+ np.float64,0x3fd211fbe5a423f8,0x3ff375711a3641e0,1
946
+ np.float64,0x7fee24f7793c49ee,0x7ff0000000000000,1
947
+ np.float64,0x7fe6a098886d4130,0x7ff0000000000000,1
948
+ np.float64,0xbfd4ade909a95bd2,0x3fe99436524db1f4,1
949
+ np.float64,0xbfeb704e6476e09d,0x3fe1a95be4a21bc6,1
950
+ np.float64,0xffefc0f6627f81ec,0x0,1
951
+ np.float64,0x7feff3f896ffe7f0,0x7ff0000000000000,1
952
+ np.float64,0xa3f74edb47eea,0x3ff0000000000000,1
953
+ np.float64,0xbfe0a551cf214aa4,0x3fe65027a7ff42e3,1
954
+ np.float64,0x3fe164b23622c964,0x3ff7521c6225f51d,1
955
+ np.float64,0x7fc258752324b0e9,0x7ff0000000000000,1
956
+ np.float64,0x4739b3348e737,0x3ff0000000000000,1
957
+ np.float64,0xb0392b1d60726,0x3ff0000000000000,1
958
+ np.float64,0x7fe26f42e5e4de85,0x7ff0000000000000,1
959
+ np.float64,0x8004601f87e8c040,0x3ff0000000000000,1
960
+ np.float64,0xffe92ce37b3259c6,0x0,1
961
+ np.float64,0x3fe620da3a6c41b4,0x3ff9d6ee3d005466,1
962
+ np.float64,0x3fd850cfa2b0a1a0,0x3ff4d20bd249d411,1
963
+ np.float64,0xffdcdfdfb5b9bfc0,0x0,1
964
+ np.float64,0x800390297d672054,0x3ff0000000000000,1
965
+ np.float64,0x3fde5864f6bcb0ca,0x3ff639bb9321f5ef,1
966
+ np.float64,0x3fee484cec7c909a,0x3ffed4d2c6274219,1
967
+ np.float64,0x7fe9b9a064b37340,0x7ff0000000000000,1
968
+ np.float64,0xffe50028b8aa0051,0x0,1
969
+ np.float64,0x3fe37774ade6eee9,0x3ff864558498a9a8,1
970
+ np.float64,0x7fef83c724bf078d,0x7ff0000000000000,1
971
+ np.float64,0xbfeb58450fb6b08a,0x3fe1b290556be73d,1
972
+ np.float64,0x7fd7161475ae2c28,0x7ff0000000000000,1
973
+ np.float64,0x3fece09621f9c12c,0x3ffde836a583bbdd,1
974
+ np.float64,0x3fd045790ea08af2,0x3ff31554778fd4e2,1
975
+ np.float64,0xbfe7c7dd6cef8fbb,0x3fe31e2eeda857fc,1
976
+ np.float64,0xffe9632f5372c65e,0x0,1
977
+ np.float64,0x800d4f3a703a9e75,0x3ff0000000000000,1
978
+ np.float64,0xffea880e4df5101c,0x0,1
979
+ np.float64,0xbfeb7edc4ff6fdb8,0x3fe1a3cb5dc33594,1
980
+ np.float64,0xbfcaae4bab355c98,0x3febb1ee65e16b58,1
981
+ np.float64,0xbfde598a19bcb314,0x3fe709145eafaaf8,1
982
+ np.float64,0x3feefb6d78fdf6db,0x3fff4d5c8c68e39a,1
983
+ np.float64,0x13efc75427dfa,0x3ff0000000000000,1
984
+ np.float64,0xffe26f65c064decb,0x0,1
985
+ np.float64,0xbfed5c1addfab836,0x3fe0f1133bd2189a,1
986
+ np.float64,0x7fe7a7cf756f4f9e,0x7ff0000000000000,1
987
+ np.float64,0xffc681702e2d02e0,0x0,1
988
+ np.float64,0x8003d6ab5067ad57,0x3ff0000000000000,1
989
+ np.float64,0xffa695f1342d2be0,0x0,1
990
+ np.float64,0xbfcf8857db3f10b0,0x3feafa14da8c29a4,1
991
+ np.float64,0xbfe8ca06be71940e,0x3fe2b46f6d2c64b4,1
992
+ np.float64,0x3451c74468a3a,0x3ff0000000000000,1
993
+ np.float64,0x3fde47d5f6bc8fac,0x3ff635bf8e024716,1
994
+ np.float64,0xffda159d5db42b3a,0x0,1
995
+ np.float64,0x7fef9fecaa3f3fd8,0x7ff0000000000000,1
996
+ np.float64,0x3fd4e745e3a9ce8c,0x3ff410a9cb6fd8bf,1
997
+ np.float64,0xffef57019b3eae02,0x0,1
998
+ np.float64,0xbfe6604f4f6cc09e,0x3fe3b55de43c626d,1
999
+ np.float64,0xffe066a424a0cd48,0x0,1
1000
+ np.float64,0x3fd547de85aa8fbc,0x3ff425b2a7a16675,1
1001
+ np.float64,0xffb3c69280278d28,0x0,1
1002
+ np.float64,0xffebe0b759f7c16e,0x0,1
1003
+ np.float64,0x3fefc84106ff9082,0x3fffd973687337d8,1
1004
+ np.float64,0x501c42a4a0389,0x3ff0000000000000,1
1005
+ np.float64,0x7feb45d13eb68ba1,0x7ff0000000000000,1
1006
+ np.float64,0xbfb16a8c2e22d518,0x3fee86a9c0f9291a,1
1007
+ np.float64,0x3be327b877c66,0x3ff0000000000000,1
1008
+ np.float64,0x7fe4a58220694b03,0x7ff0000000000000,1
1009
+ np.float64,0x3fe0286220a050c4,0x3ff6b472157ab8f2,1
1010
+ np.float64,0x3fc9381825327030,0x3ff2575fbea2bf5d,1
1011
+ np.float64,0xbfd1af7ee8a35efe,0x3fea6c032cf7e669,1
1012
+ np.float64,0xbfea9b0f39b5361e,0x3fe1fbae14b40b4d,1
1013
+ np.float64,0x39efe4aa73dfd,0x3ff0000000000000,1
1014
+ np.float64,0xffeb06fdc8360dfb,0x0,1
1015
+ np.float64,0xbfda481e72b4903c,0x3fe812b4b08d4884,1
1016
+ np.float64,0xbfd414ba5ba82974,0x3fe9bec9474bdfe6,1
1017
+ np.float64,0x7fe707177b6e0e2e,0x7ff0000000000000,1
1018
+ np.float64,0x8000000000000001,0x3ff0000000000000,1
1019
+ np.float64,0xbfede6a75bbbcd4f,0x3fe0be874cccd399,1
1020
+ np.float64,0x8006cdb577cd9b6c,0x3ff0000000000000,1
1021
+ np.float64,0x800051374f20a26f,0x3ff0000000000000,1
1022
+ np.float64,0x3fe5cba8c96b9752,0x3ff9a76b3adcc122,1
1023
+ np.float64,0xbfee3933487c7267,0x3fe0a0b190f9609a,1
1024
+ np.float64,0x3fd574b8d8aae970,0x3ff42f7e83de1af9,1
1025
+ np.float64,0xba5db72b74bb7,0x3ff0000000000000,1
1026
+ np.float64,0x3fa9bf512c337ea0,0x3ff0914a7f743a94,1
1027
+ np.float64,0xffe8cb736c3196e6,0x0,1
1028
+ np.float64,0x3761b2f06ec37,0x3ff0000000000000,1
1029
+ np.float64,0x8b4d4433169a9,0x3ff0000000000000,1
1030
+ np.float64,0x800f0245503e048b,0x3ff0000000000000,1
1031
+ np.float64,0x7fb20d54ac241aa8,0x7ff0000000000000,1
1032
+ np.float64,0x3fdf26666b3e4ccd,0x3ff66b8995142017,1
1033
+ np.float64,0xbfcbf2a83737e550,0x3feb8173a7b9d6b5,1
1034
+ np.float64,0x3fd31572a0a62ae5,0x3ff3ac6c94313dcd,1
1035
+ np.float64,0x7fb6c2807a2d8500,0x7ff0000000000000,1
1036
+ np.float64,0x800799758f2f32ec,0x3ff0000000000000,1
1037
+ np.float64,0xe72f1f6bce5e4,0x3ff0000000000000,1
1038
+ np.float64,0x3fe0e0f223a1c1e4,0x3ff70fed5b761673,1
1039
+ np.float64,0x3fe6d4f133eda9e2,0x3ffa3c8000c169eb,1
1040
+ np.float64,0xbfe1ccc3d8639988,0x3fe5c32148bedbda,1
1041
+ np.float64,0x3fea71c53574e38a,0x3ffc5f31201fe9be,1
1042
+ np.float64,0x9e0323eb3c065,0x3ff0000000000000,1
1043
+ np.float64,0x8005cc79a5cb98f4,0x3ff0000000000000,1
1044
+ np.float64,0x1dace1f83b59d,0x3ff0000000000000,1
1045
+ np.float64,0x10000000000000,0x3ff0000000000000,1
1046
+ np.float64,0xbfdef50830bdea10,0x3fe6e269fc17ebef,1
1047
+ np.float64,0x8010000000000000,0x3ff0000000000000,1
1048
+ np.float64,0xbfdfa82192bf5044,0x3fe6b6313ee0a095,1
1049
+ np.float64,0x3fd9398fe2b27320,0x3ff506ca2093c060,1
1050
+ np.float64,0x8002721fe664e441,0x3ff0000000000000,1
1051
+ np.float64,0x800c04166ad8082d,0x3ff0000000000000,1
1052
+ np.float64,0xffec3918b3387230,0x0,1
1053
+ np.float64,0x3fec62d5dfb8c5ac,0x3ffd972ea4a54b32,1
1054
+ np.float64,0x3fe7e42a0b6fc854,0x3ffad86b0443181d,1
1055
+ np.float64,0x3fc0aff5f3215fec,0x3ff1836058d4d210,1
1056
+ np.float64,0xbf82ff68a025fec0,0x3fefcb7f06862dce,1
1057
+ np.float64,0xae2e35195c5c7,0x3ff0000000000000,1
1058
+ np.float64,0x3fece3bddf79c77c,0x3ffdea41fb1ba8fa,1
1059
+ np.float64,0xbfa97b947832f730,0x3feeea34ebedbbd2,1
1060
+ np.float64,0xbfdfb1b1ce3f6364,0x3fe6b3d72871335c,1
1061
+ np.float64,0xbfe61a4f24ac349e,0x3fe3d356bf991b06,1
1062
+ np.float64,0x7fe23117a5e4622e,0x7ff0000000000000,1
1063
+ np.float64,0x800552a8cccaa552,0x3ff0000000000000,1
1064
+ np.float64,0x625b4d0ac4b6a,0x3ff0000000000000,1
1065
+ np.float64,0x3f86cf15702d9e00,0x3ff01fbe0381676d,1
1066
+ np.float64,0x800d7d1b685afa37,0x3ff0000000000000,1
1067
+ np.float64,0x3fe2cb6e40a596dd,0x3ff80a1a562f7fc9,1
1068
+ np.float64,0x3fe756eb8e2eadd7,0x3ffa86c638aad07d,1
1069
+ np.float64,0x800dc9a5513b934b,0x3ff0000000000000,1
1070
+ np.float64,0xbfbbdd118a37ba20,0x3fedacb4624f3cee,1
1071
+ np.float64,0x800de01f8efbc03f,0x3ff0000000000000,1
1072
+ np.float64,0x800da1a3fe9b4348,0x3ff0000000000000,1
1073
+ np.float64,0xbf87d8c7602fb180,0x3fefbe2614998ab6,1
1074
+ np.float64,0xbfdfff6141bffec2,0x3fe6a0c54d9f1bc8,1
1075
+ np.float64,0xee8fbba5dd1f8,0x3ff0000000000000,1
1076
+ np.float64,0x3fe79dc93e6f3b92,0x3ffaaf9d7d955b2c,1
1077
+ np.float64,0xffedd4b3d07ba967,0x0,1
1078
+ np.float64,0x800905dfc1720bc0,0x3ff0000000000000,1
1079
+ np.float64,0x3fd9e483b8b3c907,0x3ff52ddc6c950e7f,1
1080
+ np.float64,0xe34ffefdc6a00,0x3ff0000000000000,1
1081
+ np.float64,0x2168e62242d1e,0x3ff0000000000000,1
1082
+ np.float64,0x800349950e26932b,0x3ff0000000000000,1
1083
+ np.float64,0x7fc50da8532a1b50,0x7ff0000000000000,1
1084
+ np.float64,0xae1a4d115c34a,0x3ff0000000000000,1
1085
+ np.float64,0xa020f0b74041e,0x3ff0000000000000,1
1086
+ np.float64,0x3fd2aa2f77a5545f,0x3ff3959f09519a25,1
1087
+ np.float64,0x3fbfefc3223fdf86,0x3ff171f3df2d408b,1
1088
+ np.float64,0xbfea9fc340b53f86,0x3fe1f9d92b712654,1
1089
+ np.float64,0xffe9b920a5337240,0x0,1
1090
+ np.float64,0xbfe2eb0265e5d605,0x3fe53dd195782de3,1
1091
+ np.float64,0x7fb932c70e32658d,0x7ff0000000000000,1
1092
+ np.float64,0x3fda816bfcb502d8,0x3ff551f8d5c84c82,1
1093
+ np.float64,0x3fed68cbe9fad198,0x3ffe40f6692d5693,1
1094
+ np.float64,0x32df077665be2,0x3ff0000000000000,1
1095
+ np.float64,0x7fdc9c2f3539385d,0x7ff0000000000000,1
1096
+ np.float64,0x7fe71091a2ee2122,0x7ff0000000000000,1
1097
+ np.float64,0xbfe68106c46d020e,0x3fe3a76b56024c2c,1
1098
+ np.float64,0xffcf0572823e0ae4,0x0,1
1099
+ np.float64,0xbfeeab341fbd5668,0x3fe077d496941cda,1
1100
+ np.float64,0x7fe7ada0d2af5b41,0x7ff0000000000000,1
1101
+ np.float64,0xffacdef2a439bde0,0x0,1
1102
+ np.float64,0x3fe4200f3128401e,0x3ff8be0ddf30fd1e,1
1103
+ np.float64,0xffd9022a69320454,0x0,1
1104
+ np.float64,0xbfe8e06914f1c0d2,0x3fe2ab5fe7fffb5a,1
1105
+ np.float64,0x3fc4b976602972ed,0x3ff1e6786fa7a890,1
1106
+ np.float64,0xbfd784c105af0982,0x3fe8cdeb1cdbd57e,1
1107
+ np.float64,0x7feb20a20eb64143,0x7ff0000000000000,1
1108
+ np.float64,0xbfc87dd83630fbb0,0x3fec067c1e7e6983,1
1109
+ np.float64,0x7fe5400cbe6a8018,0x7ff0000000000000,1
1110
+ np.float64,0xbfb4a1f5e22943e8,0x3fee42e6c81559a9,1
1111
+ np.float64,0x3fe967c575f2cf8a,0x3ffbbd8bc0d5c50d,1
1112
+ np.float64,0xbfeb059cf4760b3a,0x3fe1d25c592c4dab,1
1113
+ np.float64,0xbfeef536d5bdea6e,0x3fe05d832c15c64a,1
1114
+ np.float64,0x3fa90b3f6432167f,0x3ff08d410dd732cc,1
1115
+ np.float64,0xbfeaff265e75fe4d,0x3fe1d4db3fb3208d,1
1116
+ np.float64,0x6d93d688db27b,0x3ff0000000000000,1
1117
+ np.float64,0x800ab9b4ea55736a,0x3ff0000000000000,1
1118
+ np.float64,0x3fd444b39d288967,0x3ff3ed749d48d444,1
1119
+ np.float64,0xbfd5f2c0d0abe582,0x3fe93ad6124d88e7,1
1120
+ np.float64,0x3fea8fd915f51fb2,0x3ffc71b32cb92d60,1
1121
+ np.float64,0xbfd23d6491a47aca,0x3fea43875709b0f0,1
1122
+ np.float64,0xffe76f75ce6edeeb,0x0,1
1123
+ np.float64,0x1f5670da3eacf,0x3ff0000000000000,1
1124
+ np.float64,0x8000d89c9621b13a,0x3ff0000000000000,1
1125
+ np.float64,0x3fedb51c52bb6a39,0x3ffe732279c228ff,1
1126
+ np.float64,0x7f99215ac83242b5,0x7ff0000000000000,1
1127
+ np.float64,0x742a6864e854e,0x3ff0000000000000,1
1128
+ np.float64,0xbfe02fb340205f66,0x3fe689495f9164e3,1
1129
+ np.float64,0x7fef4c12b0fe9824,0x7ff0000000000000,1
1130
+ np.float64,0x3fd40e17c2a81c30,0x3ff3e1aee8ed972f,1
1131
+ np.float64,0x7fdcd264e939a4c9,0x7ff0000000000000,1
1132
+ np.float64,0x3fdb675838b6ceb0,0x3ff587526241c550,1
1133
+ np.float64,0x3fdf1a4081be3480,0x3ff66896a18c2385,1
1134
+ np.float64,0xbfea5082b874a106,0x3fe218cf8f11be13,1
1135
+ np.float64,0xffe1a0ebf7e341d8,0x0,1
1136
+ np.float64,0x3fed0a2222ba1444,0x3ffe032ce928ae7d,1
1137
+ np.float64,0xffeae036da75c06d,0x0,1
1138
+ np.float64,0x5b05fc8ab60c0,0x3ff0000000000000,1
1139
+ np.float64,0x7fd8aae5f03155cb,0x7ff0000000000000,1
1140
+ np.float64,0xbfd0b4d9fda169b4,0x3feab41e58b6ccb7,1
1141
+ np.float64,0xffdcaffa57395ff4,0x0,1
1142
+ np.float64,0xbfcbf1455437e28c,0x3feb81a884182c5d,1
1143
+ np.float64,0x3f9d6700b83ace01,0x3ff0525657db35d4,1
1144
+ np.float64,0x4fd5b0b29fab7,0x3ff0000000000000,1
1145
+ np.float64,0x3fe9af2df5b35e5c,0x3ffbe895684df916,1
1146
+ np.float64,0x800dfd41f9dbfa84,0x3ff0000000000000,1
1147
+ np.float64,0xbf2a30457e546,0x3ff0000000000000,1
1148
+ np.float64,0x7fc6be37182d7c6d,0x7ff0000000000000,1
1149
+ np.float64,0x800e0f9788dc1f2f,0x3ff0000000000000,1
1150
+ np.float64,0x8006890c704d121a,0x3ff0000000000000,1
1151
+ np.float64,0xffecb1a7cbb9634f,0x0,1
1152
+ np.float64,0xffb35c330426b868,0x0,1
1153
+ np.float64,0x7fe8f2ba8a71e574,0x7ff0000000000000,1
1154
+ np.float64,0xf3ccff8fe79a0,0x3ff0000000000000,1
1155
+ np.float64,0x3fdf19a84e3e3351,0x3ff66871b17474c1,1
1156
+ np.float64,0x80049a662d0934cd,0x3ff0000000000000,1
1157
+ np.float64,0xdf5bb4bbbeb77,0x3ff0000000000000,1
1158
+ np.float64,0x8005eca030cbd941,0x3ff0000000000000,1
1159
+ np.float64,0xffe5f239586be472,0x0,1
1160
+ np.float64,0xbfc4526a0728a4d4,0x3fecaa52fbf5345e,1
1161
+ np.float64,0xbfe8f1ecda31e3da,0x3fe2a44c080848b3,1
1162
+ np.float64,0x3feebd32f4bd7a66,0x3fff234788938c3e,1
1163
+ np.float64,0xffd6ca04e9ad940a,0x0,1
1164
+ np.float64,0x7ff0000000000000,0x7ff0000000000000,1
1165
+ np.float64,0xbfd4c560a9a98ac2,0x3fe98db6d97442fc,1
1166
+ np.float64,0x8005723471cae46a,0x3ff0000000000000,1
1167
+ np.float64,0xbfeb278299764f05,0x3fe1c54b48f8ba4b,1
1168
+ np.float64,0x8007907b376f20f7,0x3ff0000000000000,1
1169
+ np.float64,0x7fe9c2fd01b385f9,0x7ff0000000000000,1
1170
+ np.float64,0x7fdaa37368b546e6,0x7ff0000000000000,1
1171
+ np.float64,0xbfe6d0f3786da1e7,0x3fe38582271cada7,1
1172
+ np.float64,0xbfea9b77823536ef,0x3fe1fb8575cd1b7d,1
1173
+ np.float64,0xbfe90ac38bf21587,0x3fe29a471b47a2e8,1
1174
+ np.float64,0xbfe9c51844738a30,0x3fe24fc8de03ea84,1
1175
+ np.float64,0x3fe45a9013a8b520,0x3ff8dd7c80f1cf75,1
1176
+ np.float64,0xbfe5780551eaf00a,0x3fe419832a6a4c56,1
1177
+ np.float64,0xffefffffffffffff,0x0,1
1178
+ np.float64,0x7fe3778c84a6ef18,0x7ff0000000000000,1
1179
+ np.float64,0xbfdc8a60413914c0,0x3fe77dc55b85028f,1
1180
+ np.float64,0xef47ae2fde8f6,0x3ff0000000000000,1
1181
+ np.float64,0x8001269fa4c24d40,0x3ff0000000000000,1
1182
+ np.float64,0x3fe9d2d39e73a5a7,0x3ffbfe2a66c4148e,1
1183
+ np.float64,0xffee61f528fcc3e9,0x0,1
1184
+ np.float64,0x3fe8a259ab7144b3,0x3ffb47e797a34bd2,1
1185
+ np.float64,0x3f906d610820dac0,0x3ff02dccda8e1a75,1
1186
+ np.float64,0x3fe70739f32e0e74,0x3ffa59232f4fcd07,1
1187
+ np.float64,0x3fe6b7f5e6ad6fec,0x3ffa2c0cc54f2c16,1
1188
+ np.float64,0x95a91a792b524,0x3ff0000000000000,1
1189
+ np.float64,0xbfedf6fcf57bedfa,0x3fe0b89bb40081cc,1
1190
+ np.float64,0xbfa4d2de9c29a5c0,0x3fef1c485678d657,1
1191
+ np.float64,0x3fe130470d22608e,0x3ff737b0be409a38,1
1192
+ np.float64,0x3fcf8035423f006b,0x3ff2f9d7c3c6a302,1
1193
+ np.float64,0xffe5995a3eab32b4,0x0,1
1194
+ np.float64,0xffca68c63034d18c,0x0,1
1195
+ np.float64,0xff9d53af903aa760,0x0,1
1196
+ np.float64,0x800563f1de6ac7e4,0x3ff0000000000000,1
1197
+ np.float64,0x7fce284fa63c509e,0x7ff0000000000000,1
1198
+ np.float64,0x7fb2a3959a25472a,0x7ff0000000000000,1
1199
+ np.float64,0x7fdbe2652f37c4c9,0x7ff0000000000000,1
1200
+ np.float64,0x800d705bbc1ae0b8,0x3ff0000000000000,1
1201
+ np.float64,0x7fd9bd2347b37a46,0x7ff0000000000000,1
1202
+ np.float64,0x3fcac3c0fb358782,0x3ff27ed62d6c8221,1
1203
+ np.float64,0x800110691ec220d3,0x3ff0000000000000,1
1204
+ np.float64,0x3fef79a8157ef350,0x3fffa368513eb909,1
1205
+ np.float64,0x7fe8bd2f0e317a5d,0x7ff0000000000000,1
1206
+ np.float64,0x7fd3040e60a6081c,0x7ff0000000000000,1
1207
+ np.float64,0xffea50723234a0e4,0x0,1
1208
+ np.float64,0xbfe6220054ac4400,0x3fe3d00961238a93,1
1209
+ np.float64,0x3f9eddd8c83dbbc0,0x3ff0567b0c73005a,1
1210
+ np.float64,0xbfa4a062c42940c0,0x3fef1e68badde324,1
1211
+ np.float64,0xbfd077ad4720ef5a,0x3feac5d577581d07,1
1212
+ np.float64,0x7fdfd4b025bfa95f,0x7ff0000000000000,1
1213
+ np.float64,0xd00d3cf3a01a8,0x3ff0000000000000,1
1214
+ np.float64,0x7fe3010427260207,0x7ff0000000000000,1
1215
+ np.float64,0x22ea196645d44,0x3ff0000000000000,1
1216
+ np.float64,0x7fd747e8cd2e8fd1,0x7ff0000000000000,1
1217
+ np.float64,0xd50665e7aa0cd,0x3ff0000000000000,1
1218
+ np.float64,0x7fe1da580ae3b4af,0x7ff0000000000000,1
1219
+ np.float64,0xffeb218ecfb6431d,0x0,1
1220
+ np.float64,0xbf887d0dd030fa00,0x3fefbc6252c8b354,1
1221
+ np.float64,0x3fcaa31067354621,0x3ff27b904c07e07f,1
1222
+ np.float64,0x7fe698cc4ded3198,0x7ff0000000000000,1
1223
+ np.float64,0x1c40191a38804,0x3ff0000000000000,1
1224
+ np.float64,0x80086fd20e30dfa4,0x3ff0000000000000,1
1225
+ np.float64,0x7fed34d5eaba69ab,0x7ff0000000000000,1
1226
+ np.float64,0xffd00b52622016a4,0x0,1
1227
+ np.float64,0x3f80abcdb021579b,0x3ff0172d27945851,1
1228
+ np.float64,0x3fe614cfd66c29a0,0x3ff9d031e1839191,1
1229
+ np.float64,0x80021d71c8843ae4,0x3ff0000000000000,1
1230
+ np.float64,0x800bc2adc657855c,0x3ff0000000000000,1
1231
+ np.float64,0x6b9fec1cd73fe,0x3ff0000000000000,1
1232
+ np.float64,0xffd9093b5f321276,0x0,1
1233
+ np.float64,0x800d3c6c77fa78d9,0x3ff0000000000000,1
1234
+ np.float64,0xffe80fc1cbf01f83,0x0,1
1235
+ np.float64,0xffbffbaf2a3ff760,0x0,1
1236
+ np.float64,0x3fea1ed29eb43da5,0x3ffc2c64ec0e17a3,1
1237
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
1238
+ np.float64,0x3fd944a052328941,0x3ff5094f4c43ecca,1
1239
+ np.float64,0x800b1f9416163f29,0x3ff0000000000000,1
1240
+ np.float64,0x800f06bf33de0d7e,0x3ff0000000000000,1
1241
+ np.float64,0xbfdbf0d226b7e1a4,0x3fe7a4f73793d95b,1
1242
+ np.float64,0xffe7306c30ae60d8,0x0,1
1243
+ np.float64,0x7fe991accfb32359,0x7ff0000000000000,1
1244
+ np.float64,0x3fcc0040d2380082,0x3ff29ea47e4f07d4,1
1245
+ np.float64,0x7fefffffffffffff,0x7ff0000000000000,1
1246
+ np.float64,0x0,0x3ff0000000000000,1
1247
+ np.float64,0x3fe1423f7be2847e,0x3ff740bc1d3b20f8,1
1248
+ np.float64,0xbfeae3a3cab5c748,0x3fe1df7e936f8504,1
1249
+ np.float64,0x800b2da7d6165b50,0x3ff0000000000000,1
1250
+ np.float64,0x800b2404fcd6480a,0x3ff0000000000000,1
1251
+ np.float64,0x6fcbcf88df97b,0x3ff0000000000000,1
1252
+ np.float64,0xa248c0e14492,0x3ff0000000000000,1
1253
+ np.float64,0xffd255776824aaee,0x0,1
1254
+ np.float64,0x80057b3effeaf67f,0x3ff0000000000000,1
1255
+ np.float64,0x3feb0b07d7761610,0x3ffcbdfe1be5a594,1
1256
+ np.float64,0x924e1019249c2,0x3ff0000000000000,1
1257
+ np.float64,0x80074307e80e8611,0x3ff0000000000000,1
1258
+ np.float64,0xffb207fa46240ff8,0x0,1
1259
+ np.float64,0x95ac388d2b587,0x3ff0000000000000,1
1260
+ np.float64,0xbff0000000000000,0x3fe0000000000000,1
1261
+ np.float64,0x3fd38b6a492716d5,0x3ff3c59f62b5add5,1
1262
+ np.float64,0x7fe49362c3e926c5,0x7ff0000000000000,1
1263
+ np.float64,0x7fe842889db08510,0x7ff0000000000000,1
1264
+ np.float64,0xbfba6003e834c008,0x3fedcb620a2d9856,1
1265
+ np.float64,0xffe7e782bd6fcf05,0x0,1
1266
+ np.float64,0x7fd9b93d9433727a,0x7ff0000000000000,1
1267
+ np.float64,0x7fc8fcb61d31f96b,0x7ff0000000000000,1
1268
+ np.float64,0xbfef9be8db3f37d2,0x3fe022d603b81dc2,1
1269
+ np.float64,0x6f4fc766de9fa,0x3ff0000000000000,1
1270
+ np.float64,0xbfe93016f132602e,0x3fe28b42d782d949,1
1271
+ np.float64,0x3fe10e52b8e21ca5,0x3ff726a38b0bb895,1
1272
+ np.float64,0x3fbbba0ae6377416,0x3ff13f56084a9da3,1
1273
+ np.float64,0x3fe09e42ece13c86,0x3ff6eeb57e775e24,1
1274
+ np.float64,0x800942e39fb285c8,0x3ff0000000000000,1
1275
+ np.float64,0xffe5964370eb2c86,0x0,1
1276
+ np.float64,0x3fde479f32bc8f3e,0x3ff635b2619ba53a,1
1277
+ np.float64,0x3fe826e187f04dc3,0x3ffaff52b79c3a08,1
1278
+ np.float64,0x3febcbf1eab797e4,0x3ffd37152e5e2598,1
1279
+ np.float64,0x3fa0816a202102d4,0x3ff05c8e6a8b00d5,1
1280
+ np.float64,0xbd005ccb7a00c,0x3ff0000000000000,1
1281
+ np.float64,0x44c12fdc89827,0x3ff0000000000000,1
1282
+ np.float64,0xffc8fdffa431fc00,0x0,1
1283
+ np.float64,0xffeb4f5a87b69eb4,0x0,1
1284
+ np.float64,0xbfb07e7f8420fd00,0x3fee9a32924fe6a0,1
1285
+ np.float64,0xbfbd9d1bb63b3a38,0x3fed88ca81e5771c,1
1286
+ np.float64,0x8008682a74f0d055,0x3ff0000000000000,1
1287
+ np.float64,0x3fdeedbc7b3ddb79,0x3ff65dcb7c55f4dc,1
1288
+ np.float64,0x8009e889c613d114,0x3ff0000000000000,1
1289
+ np.float64,0x3faea831f43d5064,0x3ff0ad935e890e49,1
1290
+ np.float64,0xf0af1703e15e3,0x3ff0000000000000,1
1291
+ np.float64,0xffec06c4a5f80d88,0x0,1
1292
+ np.float64,0x53a1cc0ca743a,0x3ff0000000000000,1
1293
+ np.float64,0x7fd10c9eea22193d,0x7ff0000000000000,1
1294
+ np.float64,0xbfd48a6bf0a914d8,0x3fe99e0d109f2bac,1
1295
+ np.float64,0x3fd6dfe931adbfd4,0x3ff47f81c2dfc5d3,1
1296
+ np.float64,0x3fed20e86b7a41d0,0x3ffe11fecc7bc686,1
1297
+ np.float64,0xbfea586818b4b0d0,0x3fe215b7747d5cb8,1
1298
+ np.float64,0xbfd4ad3e20295a7c,0x3fe99465ab8c3275,1
1299
+ np.float64,0x3fd6619ee4acc33e,0x3ff4638b7b80c08a,1
1300
+ np.float64,0x3fdf6fcb63bedf97,0x3ff67d62fd3d560c,1
1301
+ np.float64,0x800a9191e7152324,0x3ff0000000000000,1
1302
+ np.float64,0x3fd2ff3c0da5fe78,0x3ff3a7b17e892a28,1
1303
+ np.float64,0x8003dbf1f327b7e5,0x3ff0000000000000,1
1304
+ np.float64,0xffea6b89a934d712,0x0,1
1305
+ np.float64,0x7fcfb879043f70f1,0x7ff0000000000000,1
1306
+ np.float64,0xea6a84dbd4d51,0x3ff0000000000000,1
1307
+ np.float64,0x800ec97a815d92f5,0x3ff0000000000000,1
1308
+ np.float64,0xffe304c3a8660987,0x0,1
1309
+ np.float64,0xbfefe24dd3ffc49c,0x3fe00a4e065be96d,1
1310
+ np.float64,0xffd3cc8c00a79918,0x0,1
1311
+ np.float64,0x95be8b7b2b7d2,0x3ff0000000000000,1
1312
+ np.float64,0x7fe20570cba40ae1,0x7ff0000000000000,1
1313
+ np.float64,0x7f97a06da02f40da,0x7ff0000000000000,1
1314
+ np.float64,0xffe702b9522e0572,0x0,1
1315
+ np.float64,0x3fada2d8543b45b1,0x3ff0a7adc4201e08,1
1316
+ np.float64,0x235e6acc46bce,0x3ff0000000000000,1
1317
+ np.float64,0x3fea6bc28ef4d786,0x3ffc5b7fc68fddac,1
1318
+ np.float64,0xffdbc9f505b793ea,0x0,1
1319
+ np.float64,0xffe98b137ff31626,0x0,1
1320
+ np.float64,0x800e26c6721c4d8d,0x3ff0000000000000,1
1321
+ np.float64,0x80080de445301bc9,0x3ff0000000000000,1
1322
+ np.float64,0x37e504a86fca1,0x3ff0000000000000,1
1323
+ np.float64,0x8002f5f60325ebed,0x3ff0000000000000,1
1324
+ np.float64,0x5c8772feb90ef,0x3ff0000000000000,1
1325
+ np.float64,0xbfe021abb4604358,0x3fe69023a51d22b8,1
1326
+ np.float64,0x3fde744f8fbce8a0,0x3ff64074dc84edd7,1
1327
+ np.float64,0xbfdd92899f3b2514,0x3fe73aefd9701858,1
1328
+ np.float64,0x7fc1ad5c51235ab8,0x7ff0000000000000,1
1329
+ np.float64,0xaae2f98955c5f,0x3ff0000000000000,1
1330
+ np.float64,0x7f9123d5782247aa,0x7ff0000000000000,1
1331
+ np.float64,0xbfe3f8e94b67f1d2,0x3fe4c30ab28e9cb7,1
1332
+ np.float64,0x7fdaba8b4cb57516,0x7ff0000000000000,1
1333
+ np.float64,0x7fefc85cfeff90b9,0x7ff0000000000000,1
1334
+ np.float64,0xffb83b4f523076a0,0x0,1
1335
+ np.float64,0xbfe888a68c71114d,0x3fe2ceff17c203d1,1
1336
+ np.float64,0x800de1dac4bbc3b6,0x3ff0000000000000,1
1337
+ np.float64,0xbfe4f27f09e9e4fe,0x3fe453f9af407eac,1
1338
+ np.float64,0xffe3d2713467a4e2,0x0,1
1339
+ np.float64,0xbfebaab840375570,0x3fe1931131b98842,1
1340
+ np.float64,0x93892a1b27126,0x3ff0000000000000,1
1341
+ np.float64,0x1e8e7f983d1d1,0x3ff0000000000000,1
1342
+ np.float64,0x3fecc950627992a0,0x3ffdd926f036add0,1
1343
+ np.float64,0xbfd41dfb1aa83bf6,0x3fe9bc34ece35b94,1
1344
+ np.float64,0x800aebfc6555d7f9,0x3ff0000000000000,1
1345
+ np.float64,0x7fe33ba52ca67749,0x7ff0000000000000,1
1346
+ np.float64,0xffe57c9b3feaf936,0x0,1
1347
+ np.float64,0x3fdd12464fba248c,0x3ff5ebc5598e6bd0,1
1348
+ np.float64,0xffe06d7f0fe0dafe,0x0,1
1349
+ np.float64,0x800e55b7fe9cab70,0x3ff0000000000000,1
1350
+ np.float64,0x3fd33803c8267008,0x3ff3b3cb78b2d642,1
1351
+ np.float64,0xe9cab8a1d3957,0x3ff0000000000000,1
1352
+ np.float64,0x3fb38ac166271580,0x3ff0de906947c0f0,1
1353
+ np.float64,0xbfd67aa552acf54a,0x3fe915cf64a389fd,1
1354
+ np.float64,0x1db96daa3b72f,0x3ff0000000000000,1
1355
+ np.float64,0xbfee9f08f4fd3e12,0x3fe07c2c615add3c,1
1356
+ np.float64,0xf14f6d65e29ee,0x3ff0000000000000,1
1357
+ np.float64,0x800bce089e179c12,0x3ff0000000000000,1
1358
+ np.float64,0xffc42dcc37285b98,0x0,1
1359
+ np.float64,0x7fd5f37063abe6e0,0x7ff0000000000000,1
1360
+ np.float64,0xbfd943c2cbb28786,0x3fe856f6452ec753,1
1361
+ np.float64,0x8ddfbc091bbf8,0x3ff0000000000000,1
1362
+ np.float64,0xbfe153491e22a692,0x3fe5fcb075dbbd5d,1
1363
+ np.float64,0xffe7933999ef2672,0x0,1
1364
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
1365
+ np.float64,0x8000000000000000,0x3ff0000000000000,1
1366
+ np.float64,0xbfe9154580b22a8b,0x3fe2960bac3a8220,1
1367
+ np.float64,0x800dc6dda21b8dbb,0x3ff0000000000000,1
1368
+ np.float64,0xbfb26225a824c448,0x3fee7239a457df81,1
1369
+ np.float64,0xbfd7b68c83af6d1a,0x3fe8c08e351ab468,1
1370
+ np.float64,0xffde01f7213c03ee,0x0,1
1371
+ np.float64,0x3fe54cbe0faa997c,0x3ff9614527191d72,1
1372
+ np.float64,0xbfd6bec3732d7d86,0x3fe90354909493de,1
1373
+ np.float64,0xbfef3c85bd7e790b,0x3fe0444f8c489ca6,1
1374
+ np.float64,0x899501b7132a0,0x3ff0000000000000,1
1375
+ np.float64,0xbfe17a456462f48b,0x3fe5ea2719a9a84b,1
1376
+ np.float64,0xffe34003b8668007,0x0,1
1377
+ np.float64,0x7feff6a3633fed46,0x7ff0000000000000,1
1378
+ np.float64,0x3fba597ecc34b2fe,0x3ff12ee72e4de474,1
1379
+ np.float64,0x4084c7b68109a,0x3ff0000000000000,1
1380
+ np.float64,0x3fad23bf4c3a4780,0x3ff0a4d06193ff6d,1
1381
+ np.float64,0xffd0fe2707a1fc4e,0x0,1
1382
+ np.float64,0xb96cb43f72d97,0x3ff0000000000000,1
1383
+ np.float64,0x7fc4d684d829ad09,0x7ff0000000000000,1
1384
+ np.float64,0x7fdc349226b86923,0x7ff0000000000000,1
1385
+ np.float64,0x7fd82851cd3050a3,0x7ff0000000000000,1
1386
+ np.float64,0x800cde0041b9bc01,0x3ff0000000000000,1
1387
+ np.float64,0x4e8caa1e9d196,0x3ff0000000000000,1
1388
+ np.float64,0xbfed06a6d2fa0d4e,0x3fe1108c3682b05a,1
1389
+ np.float64,0xffe8908122312102,0x0,1
1390
+ np.float64,0xffe56ed6d9aaddad,0x0,1
1391
+ np.float64,0x3fedd6db00fbadb6,0x3ffe896c68c4b26e,1
1392
+ np.float64,0x3fde31f9b4bc63f4,0x3ff6307e08f8b6ba,1
1393
+ np.float64,0x6bb963c2d772d,0x3ff0000000000000,1
1394
+ np.float64,0x787b7142f0f6f,0x3ff0000000000000,1
1395
+ np.float64,0x3fe6e4147c6dc829,0x3ffa451bbdece240,1
1396
+ np.float64,0x8003857401470ae9,0x3ff0000000000000,1
1397
+ np.float64,0xbfeae82c3c75d058,0x3fe1ddbd66e65aab,1
1398
+ np.float64,0x7fe174707c62e8e0,0x7ff0000000000000,1
1399
+ np.float64,0x80008d2545e11a4b,0x3ff0000000000000,1
1400
+ np.float64,0xbfecc2dce17985ba,0x3fe129ad4325985a,1
1401
+ np.float64,0xbfe1fa1daf63f43c,0x3fe5adcb0731a44b,1
1402
+ np.float64,0x7fcf2530203e4a5f,0x7ff0000000000000,1
1403
+ np.float64,0xbfea5cefe874b9e0,0x3fe213f134b61f4a,1
1404
+ np.float64,0x800103729f2206e6,0x3ff0000000000000,1
1405
+ np.float64,0xbfe8442ff7708860,0x3fe2eaf850faa169,1
1406
+ np.float64,0x8006c78e19ed8f1d,0x3ff0000000000000,1
1407
+ np.float64,0x3fc259589c24b2b1,0x3ff1abe6a4d28816,1
1408
+ np.float64,0xffed02b7b5ba056e,0x0,1
1409
+ np.float64,0xbfce0aa4fe3c1548,0x3feb32115d92103e,1
1410
+ np.float64,0x7fec06e78bf80dce,0x7ff0000000000000,1
1411
+ np.float64,0xbfe0960bbc612c18,0x3fe6578ab29b70d4,1
1412
+ np.float64,0x3fee45841cbc8b08,0x3ffed2f6ca808ad3,1
1413
+ np.float64,0xbfeb0f8ebef61f1e,0x3fe1ce86003044cd,1
1414
+ np.float64,0x8002c357358586af,0x3ff0000000000000,1
1415
+ np.float64,0x3fe9aa10cc735422,0x3ffbe57e294ce68b,1
1416
+ np.float64,0x800256c0a544ad82,0x3ff0000000000000,1
1417
+ np.float64,0x4de6e1449bcdd,0x3ff0000000000000,1
1418
+ np.float64,0x65e9bc9ccbd38,0x3ff0000000000000,1
1419
+ np.float64,0xbfe53b0fa9aa7620,0x3fe4341f0aa29bbc,1
1420
+ np.float64,0xbfcdd94cd13bb298,0x3feb3956acd2e2dd,1
1421
+ np.float64,0x8004a49b65a94938,0x3ff0000000000000,1
1422
+ np.float64,0x800d3d05deba7a0c,0x3ff0000000000000,1
1423
+ np.float64,0x3fe4e05bce69c0b8,0x3ff925f55602a7e0,1
1424
+ np.float64,0xffe391e3256723c6,0x0,1
1425
+ np.float64,0xbfe92f0f37b25e1e,0x3fe28bacc76ae753,1
1426
+ np.float64,0x3f990238d8320472,0x3ff045edd36e2d62,1
1427
+ np.float64,0xffed8d15307b1a2a,0x0,1
1428
+ np.float64,0x3fee82e01afd05c0,0x3ffefc09e8b9c2b7,1
1429
+ np.float64,0xffb2d94b2225b298,0x0,1