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,0xfe0ac238,0x7f800000,3
3
+ np.float32,0xbf553b86,0x3faf079b,3
4
+ np.float32,0xff4457da,0x7f800000,3
5
+ np.float32,0xff7253f3,0x7f800000,3
6
+ np.float32,0x5a5802,0x3f800000,3
7
+ np.float32,0x3db03413,0x3f80795b,3
8
+ np.float32,0x7f6795c9,0x7f800000,3
9
+ np.float32,0x805b9142,0x3f800000,3
10
+ np.float32,0xfeea581a,0x7f800000,3
11
+ np.float32,0x3f7e2dba,0x3fc472f6,3
12
+ np.float32,0x3d9c4d74,0x3f805f7a,3
13
+ np.float32,0x7f18c665,0x7f800000,3
14
+ np.float32,0x7f003e23,0x7f800000,3
15
+ np.float32,0x3d936fa0,0x3f8054f3,3
16
+ np.float32,0x3f32034f,0x3fa0368e,3
17
+ np.float32,0xff087604,0x7f800000,3
18
+ np.float32,0x380a5,0x3f800000,3
19
+ np.float32,0x3f59694e,0x3fb10077,3
20
+ np.float32,0x3e63e648,0x3f832ee4,3
21
+ np.float32,0x80712f42,0x3f800000,3
22
+ np.float32,0x3e169908,0x3f816302,3
23
+ np.float32,0x3f2d766e,0x3f9e8692,3
24
+ np.float32,0x3d6412e0,0x3f8032d0,3
25
+ np.float32,0xbde689e8,0x3f80cfd4,3
26
+ np.float32,0x483e2e,0x3f800000,3
27
+ np.float32,0xff1ba2d0,0x7f800000,3
28
+ np.float32,0x80136bff,0x3f800000,3
29
+ np.float32,0x3f72534c,0x3fbdc1d4,3
30
+ np.float32,0x3e9eb381,0x3f8632c6,3
31
+ np.float32,0x3e142892,0x3f815795,3
32
+ np.float32,0x0,0x3f800000,3
33
+ np.float32,0x2f2528,0x3f800000,3
34
+ np.float32,0x7f38be13,0x7f800000,3
35
+ np.float32,0xfeee6896,0x7f800000,3
36
+ np.float32,0x7f09095d,0x7f800000,3
37
+ np.float32,0xbe94d,0x3f800000,3
38
+ np.float32,0xbedcf8d4,0x3f8c1b74,3
39
+ np.float32,0xbf694c02,0x3fb8ef07,3
40
+ np.float32,0x3e2261f8,0x3f819cde,3
41
+ np.float32,0xbf01d3ce,0x3f90d0e0,3
42
+ np.float32,0xbeb7b3a2,0x3f8853de,3
43
+ np.float32,0x8046de7b,0x3f800000,3
44
+ np.float32,0xbcb45ea0,0x3f8007f1,3
45
+ np.float32,0x3eef14af,0x3f8e35dd,3
46
+ np.float32,0xbf047316,0x3f91846e,3
47
+ np.float32,0x801cef45,0x3f800000,3
48
+ np.float32,0x3e9ad891,0x3f85e609,3
49
+ np.float32,0xff20e9cf,0x7f800000,3
50
+ np.float32,0x80068434,0x3f800000,3
51
+ np.float32,0xbe253020,0x3f81ab49,3
52
+ np.float32,0x3f13f4b8,0x3f95fac9,3
53
+ np.float32,0x804accd1,0x3f800000,3
54
+ np.float32,0x3dee3e10,0x3f80ddf7,3
55
+ np.float32,0xbe6c4690,0x3f836c29,3
56
+ np.float32,0xff30d431,0x7f800000,3
57
+ np.float32,0xbec82416,0x3f89e791,3
58
+ np.float32,0x3f30bbcb,0x3f9fbbcc,3
59
+ np.float32,0x3f5620a2,0x3faf72b8,3
60
+ np.float32,0x807a8130,0x3f800000,3
61
+ np.float32,0x3e3cb02d,0x3f822de0,3
62
+ np.float32,0xff4839ac,0x7f800000,3
63
+ np.float32,0x800a3e9c,0x3f800000,3
64
+ np.float32,0x3dffd65b,0x3f810002,3
65
+ np.float32,0xbf2b1492,0x3f9da987,3
66
+ np.float32,0xbf21602c,0x3f9a48fe,3
67
+ np.float32,0x512531,0x3f800000,3
68
+ np.float32,0x24b99a,0x3f800000,3
69
+ np.float32,0xbf53e345,0x3fae67b1,3
70
+ np.float32,0xff2126ec,0x7f800000,3
71
+ np.float32,0x7e79b49d,0x7f800000,3
72
+ np.float32,0x3ea3cf04,0x3f869b6f,3
73
+ np.float32,0x7f270059,0x7f800000,3
74
+ np.float32,0x3f625b2f,0x3fb561e1,3
75
+ np.float32,0xbf59947e,0x3fb11519,3
76
+ np.float32,0xfe0d1c64,0x7f800000,3
77
+ np.float32,0xbf3f3eae,0x3fa568e2,3
78
+ np.float32,0x7c04d1,0x3f800000,3
79
+ np.float32,0x7e66bd,0x3f800000,3
80
+ np.float32,0x8011880d,0x3f800000,3
81
+ np.float32,0x3f302f07,0x3f9f8759,3
82
+ np.float32,0x4e3375,0x3f800000,3
83
+ np.float32,0xfe67a134,0x7f800000,3
84
+ np.float32,0xff670249,0x7f800000,3
85
+ np.float32,0x7e19f27d,0x7f800000,3
86
+ np.float32,0xbf36ce12,0x3fa20b81,3
87
+ np.float32,0xbe6bcfc4,0x3f8368b5,3
88
+ np.float32,0x76fcba,0x3f800000,3
89
+ np.float32,0x7f30abaf,0x7f800000,3
90
+ np.float32,0x3f4c1f6d,0x3faae43c,3
91
+ np.float32,0x7f61f44a,0x7f800000,3
92
+ np.float32,0xbf4bb3c9,0x3faab4af,3
93
+ np.float32,0xbda15ee0,0x3f8065c6,3
94
+ np.float32,0xfbb4e800,0x7f800000,3
95
+ np.float32,0x7fa00000,0x7fe00000,3
96
+ np.float32,0x80568501,0x3f800000,3
97
+ np.float32,0xfeb285e4,0x7f800000,3
98
+ np.float32,0x804423a7,0x3f800000,3
99
+ np.float32,0x7e6c0f21,0x7f800000,3
100
+ np.float32,0x7f136b3c,0x7f800000,3
101
+ np.float32,0x3f2d08e6,0x3f9e5e9c,3
102
+ np.float32,0xbf6b454e,0x3fb9f7e6,3
103
+ np.float32,0x3e6bceb0,0x3f8368ad,3
104
+ np.float32,0xff1ad16a,0x7f800000,3
105
+ np.float32,0x7cce1a04,0x7f800000,3
106
+ np.float32,0xff7bcf95,0x7f800000,3
107
+ np.float32,0x8049788d,0x3f800000,3
108
+ np.float32,0x7ec45918,0x7f800000,3
109
+ np.float32,0xff7fffff,0x7f800000,3
110
+ np.float32,0x8039a1a0,0x3f800000,3
111
+ np.float32,0x7e90cd72,0x7f800000,3
112
+ np.float32,0xbf7dfd53,0x3fc456cc,3
113
+ np.float32,0x3eeeb664,0x3f8e2a76,3
114
+ np.float32,0x8055ef9b,0x3f800000,3
115
+ np.float32,0x7ee06ddd,0x7f800000,3
116
+ np.float32,0xba2cc000,0x3f800002,3
117
+ np.float32,0x806da632,0x3f800000,3
118
+ np.float32,0x7ecfaaf5,0x7f800000,3
119
+ np.float32,0x3ddd12e6,0x3f80bf19,3
120
+ np.float32,0xbf754394,0x3fbf60b1,3
121
+ np.float32,0x6f3f19,0x3f800000,3
122
+ np.float32,0x800a9af0,0x3f800000,3
123
+ np.float32,0xfeef13ea,0x7f800000,3
124
+ np.float32,0x7f74841f,0x7f800000,3
125
+ np.float32,0xbeb9a2f0,0x3f888181,3
126
+ np.float32,0x77cbb,0x3f800000,3
127
+ np.float32,0xbf587f84,0x3fb0911b,3
128
+ np.float32,0x210ba5,0x3f800000,3
129
+ np.float32,0x3ee60a28,0x3f8d2367,3
130
+ np.float32,0xbe3731ac,0x3f820dc7,3
131
+ np.float32,0xbee8cfee,0x3f8d765e,3
132
+ np.float32,0x7b2ef179,0x7f800000,3
133
+ np.float32,0xfe81377c,0x7f800000,3
134
+ np.float32,0x6ac98c,0x3f800000,3
135
+ np.float32,0x3f51f144,0x3fad8288,3
136
+ np.float32,0x80785750,0x3f800000,3
137
+ np.float32,0x3f46615a,0x3fa864ff,3
138
+ np.float32,0xbf35ac9e,0x3fa19b8e,3
139
+ np.float32,0x7f0982ac,0x7f800000,3
140
+ np.float32,0x1b2610,0x3f800000,3
141
+ np.float32,0x3ed8bb25,0x3f8ba3df,3
142
+ np.float32,0xbeb41bac,0x3f88006d,3
143
+ np.float32,0xff48e89d,0x7f800000,3
144
+ np.float32,0x3ed0ab8c,0x3f8ac755,3
145
+ np.float32,0xbe64671c,0x3f833282,3
146
+ np.float32,0x64bce4,0x3f800000,3
147
+ np.float32,0x284f79,0x3f800000,3
148
+ np.float32,0x7e09faa7,0x7f800000,3
149
+ np.float32,0x4376c1,0x3f800000,3
150
+ np.float32,0x805ca8c0,0x3f800000,3
151
+ np.float32,0xff0859d5,0x7f800000,3
152
+ np.float32,0xbed2f3b2,0x3f8b04dd,3
153
+ np.float32,0x8045bd0c,0x3f800000,3
154
+ np.float32,0x3f0e6216,0x3f94503f,3
155
+ np.float32,0x3f41e3ae,0x3fa68035,3
156
+ np.float32,0x80088ccc,0x3f800000,3
157
+ np.float32,0x3f37fc19,0x3fa2812f,3
158
+ np.float32,0x71c87d,0x3f800000,3
159
+ np.float32,0x8024f4b2,0x3f800000,3
160
+ np.float32,0xff78dd88,0x7f800000,3
161
+ np.float32,0xbda66c90,0x3f806c40,3
162
+ np.float32,0x7f33ef0d,0x7f800000,3
163
+ np.float32,0x46a343,0x3f800000,3
164
+ np.float32,0xff1dce38,0x7f800000,3
165
+ np.float32,0x1b935d,0x3f800000,3
166
+ np.float32,0x3ebec598,0x3f88fd0e,3
167
+ np.float32,0xff115530,0x7f800000,3
168
+ np.float32,0x803916aa,0x3f800000,3
169
+ np.float32,0xff60a3e2,0x7f800000,3
170
+ np.float32,0x3b8ddd48,0x3f80004f,3
171
+ np.float32,0x3f761b6e,0x3fbfd8ea,3
172
+ np.float32,0xbdf55b88,0x3f80eb70,3
173
+ np.float32,0x37374,0x3f800000,3
174
+ np.float32,0x3de150e0,0x3f80c682,3
175
+ np.float32,0x3f343278,0x3fa10a83,3
176
+ np.float32,0xbe9baefa,0x3f85f68b,3
177
+ np.float32,0x3d8d43,0x3f800000,3
178
+ np.float32,0x3e80994b,0x3f840f0c,3
179
+ np.float32,0xbe573c6c,0x3f82d685,3
180
+ np.float32,0x805b83b4,0x3f800000,3
181
+ np.float32,0x683d88,0x3f800000,3
182
+ np.float32,0x692465,0x3f800000,3
183
+ np.float32,0xbdc345f8,0x3f809511,3
184
+ np.float32,0x3f7c1c5a,0x3fc3406f,3
185
+ np.float32,0xbf40bef3,0x3fa606df,3
186
+ np.float32,0xff1e25b9,0x7f800000,3
187
+ np.float32,0x3e4481e0,0x3f825d37,3
188
+ np.float32,0x75d188,0x3f800000,3
189
+ np.float32,0x3ea53cec,0x3f86b956,3
190
+ np.float32,0xff105a54,0x7f800000,3
191
+ np.float32,0x7f800000,0x7f800000,3
192
+ np.float32,0x7f11f0b0,0x7f800000,3
193
+ np.float32,0xbf58a57d,0x3fb0a328,3
194
+ np.float32,0xbdd11e38,0x3f80aaf8,3
195
+ np.float32,0xbea94adc,0x3f870fa0,3
196
+ np.float32,0x3e9dd780,0x3f862180,3
197
+ np.float32,0xff1786b9,0x7f800000,3
198
+ np.float32,0xfec46aa2,0x7f800000,3
199
+ np.float32,0x7f4300c1,0x7f800000,3
200
+ np.float32,0x29ba2b,0x3f800000,3
201
+ np.float32,0x3f4112e2,0x3fa62993,3
202
+ np.float32,0xbe6c9224,0x3f836e5d,3
203
+ np.float32,0x7f0e42a3,0x7f800000,3
204
+ np.float32,0xff6390ad,0x7f800000,3
205
+ np.float32,0x3f54e374,0x3faede94,3
206
+ np.float32,0x7f2642a2,0x7f800000,3
207
+ np.float32,0x7f46b2be,0x7f800000,3
208
+ np.float32,0xfe59095c,0x7f800000,3
209
+ np.float32,0x7146a0,0x3f800000,3
210
+ np.float32,0x3f07763d,0x3f925786,3
211
+ np.float32,0x3d172780,0x3f801651,3
212
+ np.float32,0xff66f1c5,0x7f800000,3
213
+ np.float32,0xff025349,0x7f800000,3
214
+ np.float32,0x6ce99d,0x3f800000,3
215
+ np.float32,0xbf7e4f50,0x3fc48685,3
216
+ np.float32,0xbeff8ca2,0x3f904708,3
217
+ np.float32,0x3e6c8,0x3f800000,3
218
+ np.float32,0x7f7153dc,0x7f800000,3
219
+ np.float32,0xbedcf612,0x3f8c1b26,3
220
+ np.float32,0xbbc2f180,0x3f800094,3
221
+ np.float32,0xbf397399,0x3fa314b8,3
222
+ np.float32,0x6c6e35,0x3f800000,3
223
+ np.float32,0x7f50a88b,0x7f800000,3
224
+ np.float32,0xfe84093e,0x7f800000,3
225
+ np.float32,0x3f737b9d,0x3fbe6478,3
226
+ np.float32,0x7f6a5340,0x7f800000,3
227
+ np.float32,0xbde83c20,0x3f80d2e7,3
228
+ np.float32,0xff769ce9,0x7f800000,3
229
+ np.float32,0xfdd33c30,0x7f800000,3
230
+ np.float32,0xbc95cb60,0x3f80057a,3
231
+ np.float32,0x8007a40d,0x3f800000,3
232
+ np.float32,0x3f55d90c,0x3faf5132,3
233
+ np.float32,0x80282082,0x3f800000,3
234
+ np.float32,0xbf43b1f2,0x3fa7418c,3
235
+ np.float32,0x3f1dc7cb,0x3f991731,3
236
+ np.float32,0xbd4346a0,0x3f80253f,3
237
+ np.float32,0xbf5aa82a,0x3fb19946,3
238
+ np.float32,0x3f4b8c22,0x3faaa333,3
239
+ np.float32,0x3d13468c,0x3f80152f,3
240
+ np.float32,0x7db77097,0x7f800000,3
241
+ np.float32,0x4a00df,0x3f800000,3
242
+ np.float32,0xbedea5e0,0x3f8c4b64,3
243
+ np.float32,0x80482543,0x3f800000,3
244
+ np.float32,0xbef344fe,0x3f8eb8dd,3
245
+ np.float32,0x7ebd4044,0x7f800000,3
246
+ np.float32,0xbf512c0e,0x3fad287e,3
247
+ np.float32,0x3db28cce,0x3f807c9c,3
248
+ np.float32,0xbd0f5ae0,0x3f801412,3
249
+ np.float32,0xfe7ed9ac,0x7f800000,3
250
+ np.float32,0x3eb1aa82,0x3f87c8b4,3
251
+ np.float32,0xfef1679e,0x7f800000,3
252
+ np.float32,0xff3629f2,0x7f800000,3
253
+ np.float32,0xff3562b4,0x7f800000,3
254
+ np.float32,0x3dcafe1d,0x3f80a118,3
255
+ np.float32,0xfedf242a,0x7f800000,3
256
+ np.float32,0xbf43102a,0x3fa6fda4,3
257
+ np.float32,0x8028834e,0x3f800000,3
258
+ np.float32,0x805c8513,0x3f800000,3
259
+ np.float32,0x3f59306a,0x3fb0e550,3
260
+ np.float32,0x3eda2c9c,0x3f8bcc4a,3
261
+ np.float32,0x80023524,0x3f800000,3
262
+ np.float32,0x7ef72879,0x7f800000,3
263
+ np.float32,0x661c8a,0x3f800000,3
264
+ np.float32,0xfec3ba6c,0x7f800000,3
265
+ np.float32,0x805aaca6,0x3f800000,3
266
+ np.float32,0xff5c1f13,0x7f800000,3
267
+ np.float32,0x3f6ab3f4,0x3fb9ab6b,3
268
+ np.float32,0x3f014896,0x3f90ac20,3
269
+ np.float32,0x3f030584,0x3f91222a,3
270
+ np.float32,0xbf74853d,0x3fbef71d,3
271
+ np.float32,0xbf534ee0,0x3fae2323,3
272
+ np.float32,0x2c90c3,0x3f800000,3
273
+ np.float32,0x7f62ad25,0x7f800000,3
274
+ np.float32,0x1c8847,0x3f800000,3
275
+ np.float32,0x7e2a8d43,0x7f800000,3
276
+ np.float32,0x807a09cd,0x3f800000,3
277
+ np.float32,0x413871,0x3f800000,3
278
+ np.float32,0x80063692,0x3f800000,3
279
+ np.float32,0x3edaf29b,0x3f8be211,3
280
+ np.float32,0xbf64a7ab,0x3fb68b2d,3
281
+ np.float32,0xfe56a720,0x7f800000,3
282
+ np.float32,0xbf54a8d4,0x3faec350,3
283
+ np.float32,0x3ecbaef7,0x3f8a4350,3
284
+ np.float32,0x3f413714,0x3fa63890,3
285
+ np.float32,0x7d3aa8,0x3f800000,3
286
+ np.float32,0xbea9a13c,0x3f8716e7,3
287
+ np.float32,0x7ef7553e,0x7f800000,3
288
+ np.float32,0x8056f29f,0x3f800000,3
289
+ np.float32,0xff1f7ffe,0x7f800000,3
290
+ np.float32,0x3f41953b,0x3fa65f9c,3
291
+ np.float32,0x3daa2f,0x3f800000,3
292
+ np.float32,0xff0893e4,0x7f800000,3
293
+ np.float32,0xbefc7ec6,0x3f8fe207,3
294
+ np.float32,0xbb026800,0x3f800011,3
295
+ np.float32,0x341e4f,0x3f800000,3
296
+ np.float32,0x3e7b708a,0x3f83e0d1,3
297
+ np.float32,0xa18cb,0x3f800000,3
298
+ np.float32,0x7e290239,0x7f800000,3
299
+ np.float32,0xbf4254f2,0x3fa6af62,3
300
+ np.float32,0x80000000,0x3f800000,3
301
+ np.float32,0x3f0a6c,0x3f800000,3
302
+ np.float32,0xbec44d28,0x3f898609,3
303
+ np.float32,0xf841f,0x3f800000,3
304
+ np.float32,0x7f01a693,0x7f800000,3
305
+ np.float32,0x8053340b,0x3f800000,3
306
+ np.float32,0xfd4e7990,0x7f800000,3
307
+ np.float32,0xbf782f1f,0x3fc10356,3
308
+ np.float32,0xbe962118,0x3f858acc,3
309
+ np.float32,0xfe8cd702,0x7f800000,3
310
+ np.float32,0x7ecd986f,0x7f800000,3
311
+ np.float32,0x3ebe775f,0x3f88f59b,3
312
+ np.float32,0x8065524f,0x3f800000,3
313
+ np.float32,0x3ede7fc4,0x3f8c471e,3
314
+ np.float32,0x7f5e15ea,0x7f800000,3
315
+ np.float32,0xbe871ada,0x3f847b78,3
316
+ np.float32,0x3f21958b,0x3f9a5af7,3
317
+ np.float32,0x3f64d480,0x3fb6a1fa,3
318
+ np.float32,0xff18b0e9,0x7f800000,3
319
+ np.float32,0xbf0840dd,0x3f928fd9,3
320
+ np.float32,0x80104f5d,0x3f800000,3
321
+ np.float32,0x643b94,0x3f800000,3
322
+ np.float32,0xbc560a80,0x3f8002cc,3
323
+ np.float32,0x3f5c75d6,0x3fb2786e,3
324
+ np.float32,0x7f365fc9,0x7f800000,3
325
+ np.float32,0x54e965,0x3f800000,3
326
+ np.float32,0x6dcd4d,0x3f800000,3
327
+ np.float32,0x3f2057a0,0x3f99f04d,3
328
+ np.float32,0x272fa3,0x3f800000,3
329
+ np.float32,0xff423dc9,0x7f800000,3
330
+ np.float32,0x80273463,0x3f800000,3
331
+ np.float32,0xfe21cc78,0x7f800000,3
332
+ np.float32,0x7fc00000,0x7fc00000,3
333
+ np.float32,0x802feb65,0x3f800000,3
334
+ np.float32,0x3dc733d0,0x3f809b21,3
335
+ np.float32,0x65d56b,0x3f800000,3
336
+ np.float32,0x80351d8e,0x3f800000,3
337
+ np.float32,0xbf244247,0x3f9b43dd,3
338
+ np.float32,0x7f328e7e,0x7f800000,3
339
+ np.float32,0x7f4d9712,0x7f800000,3
340
+ np.float32,0x2c505d,0x3f800000,3
341
+ np.float32,0xbf232ebe,0x3f9ae5a0,3
342
+ np.float32,0x804a363a,0x3f800000,3
343
+ np.float32,0x80417102,0x3f800000,3
344
+ np.float32,0xbf48b170,0x3fa963d4,3
345
+ np.float32,0x7ea3e3b6,0x7f800000,3
346
+ np.float32,0xbf41415b,0x3fa63cd2,3
347
+ np.float32,0xfe3af7c8,0x7f800000,3
348
+ np.float32,0x7f478010,0x7f800000,3
349
+ np.float32,0x80143113,0x3f800000,3
350
+ np.float32,0x3f7626a7,0x3fbfdf2e,3
351
+ np.float32,0xfea20b0a,0x7f800000,3
352
+ np.float32,0x80144d64,0x3f800000,3
353
+ np.float32,0x7db9ba47,0x7f800000,3
354
+ np.float32,0x7f7fffff,0x7f800000,3
355
+ np.float32,0xbe410834,0x3f8247ef,3
356
+ np.float32,0x14a7af,0x3f800000,3
357
+ np.float32,0x7eaebf9e,0x7f800000,3
358
+ np.float32,0xff800000,0x7f800000,3
359
+ np.float32,0x3f0a7d8e,0x3f9330fd,3
360
+ np.float32,0x3ef780,0x3f800000,3
361
+ np.float32,0x3f62253e,0x3fb546d1,3
362
+ np.float32,0x3f4cbeac,0x3fab2acc,3
363
+ np.float32,0x25db1,0x3f800000,3
364
+ np.float32,0x65c54a,0x3f800000,3
365
+ np.float32,0x800f0645,0x3f800000,3
366
+ np.float32,0x3ed28c78,0x3f8af9f0,3
367
+ np.float32,0x8040c6ce,0x3f800000,3
368
+ np.float32,0x5e4e9a,0x3f800000,3
369
+ np.float32,0xbd3fd2b0,0x3f8023f1,3
370
+ np.float32,0xbf5d2d3f,0x3fb2d1b6,3
371
+ np.float32,0x7ead999f,0x7f800000,3
372
+ np.float32,0xbf30dc86,0x3f9fc805,3
373
+ np.float32,0xff2b0a62,0x7f800000,3
374
+ np.float32,0x3d5180e9,0x3f802adf,3
375
+ np.float32,0x3f62716f,0x3fb56d0d,3
376
+ np.float32,0x7e82ae9c,0x7f800000,3
377
+ np.float32,0xfe2d4bdc,0x7f800000,3
378
+ np.float32,0x805cc7d4,0x3f800000,3
379
+ np.float32,0xfb50f700,0x7f800000,3
380
+ np.float32,0xff57b684,0x7f800000,3
381
+ np.float32,0x80344f01,0x3f800000,3
382
+ np.float32,0x7f2af372,0x7f800000,3
383
+ np.float32,0xfeab6204,0x7f800000,3
384
+ np.float32,0x30b251,0x3f800000,3
385
+ np.float32,0x3eed8cc4,0x3f8e0698,3
386
+ np.float32,0x7eeb1c6a,0x7f800000,3
387
+ np.float32,0x3f17ece6,0x3f9735b0,3
388
+ np.float32,0x21e985,0x3f800000,3
389
+ np.float32,0x3f3a7df3,0x3fa37e34,3
390
+ np.float32,0x802a14a2,0x3f800000,3
391
+ np.float32,0x807d4d5b,0x3f800000,3
392
+ np.float32,0x7f6093ce,0x7f800000,3
393
+ np.float32,0x3f800000,0x3fc583ab,3
394
+ np.float32,0x3da2c26e,0x3f806789,3
395
+ np.float32,0xfe05f278,0x7f800000,3
396
+ np.float32,0x800000,0x3f800000,3
397
+ np.float32,0xbee63342,0x3f8d282e,3
398
+ np.float32,0xbf225586,0x3f9a9bd4,3
399
+ np.float32,0xbed60e86,0x3f8b59ba,3
400
+ np.float32,0xbec99484,0x3f8a0ca3,3
401
+ np.float32,0x3e967c71,0x3f859199,3
402
+ np.float32,0x7f26ab62,0x7f800000,3
403
+ np.float32,0xca7f4,0x3f800000,3
404
+ np.float32,0xbf543790,0x3fae8ebc,3
405
+ np.float32,0x3e4c1ed9,0x3f828d2d,3
406
+ np.float32,0xbdf37f88,0x3f80e7e1,3
407
+ np.float32,0xff0cc44e,0x7f800000,3
408
+ np.float32,0x5dea48,0x3f800000,3
409
+ np.float32,0x31023c,0x3f800000,3
410
+ np.float32,0x3ea10733,0x3f866208,3
411
+ np.float32,0x3e11e6f2,0x3f814d2e,3
412
+ np.float32,0x80641960,0x3f800000,3
413
+ np.float32,0x3ef779a8,0x3f8f3edb,3
414
+ np.float32,0x3f2a5062,0x3f9d632a,3
415
+ np.float32,0x2b7d34,0x3f800000,3
416
+ np.float32,0x3eeb95c5,0x3f8dca67,3
417
+ np.float32,0x805c1357,0x3f800000,3
418
+ np.float32,0x3db3a79d,0x3f807e29,3
419
+ np.float32,0xfded1900,0x7f800000,3
420
+ np.float32,0x45f362,0x3f800000,3
421
+ np.float32,0x451f38,0x3f800000,3
422
+ np.float32,0x801d3ae5,0x3f800000,3
423
+ np.float32,0x458d45,0x3f800000,3
424
+ np.float32,0xfda9d298,0x7f800000,3
425
+ np.float32,0x467439,0x3f800000,3
426
+ np.float32,0x7f66554a,0x7f800000,3
427
+ np.float32,0xfef2375a,0x7f800000,3
428
+ np.float32,0xbf33fc47,0x3fa0f5d7,3
429
+ np.float32,0x3f75ba69,0x3fbfa2d0,3
430
+ np.float32,0xfeb625b2,0x7f800000,3
431
+ np.float32,0x8066b371,0x3f800000,3
432
+ np.float32,0x3f5cb4e9,0x3fb29718,3
433
+ np.float32,0x7f3b6a58,0x7f800000,3
434
+ np.float32,0x7f6b35ea,0x7f800000,3
435
+ np.float32,0xbf6ee555,0x3fbbe5be,3
436
+ np.float32,0x3d836e21,0x3f804380,3
437
+ np.float32,0xff43cd0c,0x7f800000,3
438
+ np.float32,0xff55c1fa,0x7f800000,3
439
+ np.float32,0xbf0dfccc,0x3f9432a6,3
440
+ np.float32,0x3ed92121,0x3f8baf00,3
441
+ np.float32,0x80068cc1,0x3f800000,3
442
+ np.float32,0xff0103f9,0x7f800000,3
443
+ np.float32,0x7e51b175,0x7f800000,3
444
+ np.float32,0x8012f214,0x3f800000,3
445
+ np.float32,0x62d298,0x3f800000,3
446
+ np.float32,0xbf3e1525,0x3fa4ef8d,3
447
+ np.float32,0x806b4882,0x3f800000,3
448
+ np.float32,0xbf38c146,0x3fa2ce7c,3
449
+ np.float32,0xbed59c30,0x3f8b4d70,3
450
+ np.float32,0x3d1910c0,0x3f8016e2,3
451
+ np.float32,0x7f33d55b,0x7f800000,3
452
+ np.float32,0x7f5800e3,0x7f800000,3
453
+ np.float32,0x5b2c5d,0x3f800000,3
454
+ np.float32,0x807be750,0x3f800000,3
455
+ np.float32,0x7eb297c1,0x7f800000,3
456
+ np.float32,0x7dafee62,0x7f800000,3
457
+ np.float32,0x7d9e23f0,0x7f800000,3
458
+ np.float32,0x3e580537,0x3f82dbd8,3
459
+ np.float32,0xbf800000,0x3fc583ab,3
460
+ np.float32,0x7f40f880,0x7f800000,3
461
+ np.float32,0x775ad3,0x3f800000,3
462
+ np.float32,0xbedacd36,0x3f8bddf3,3
463
+ np.float32,0x2138f6,0x3f800000,3
464
+ np.float32,0x52c3b7,0x3f800000,3
465
+ np.float32,0x8041cfdd,0x3f800000,3
466
+ np.float32,0x7bf16791,0x7f800000,3
467
+ np.float32,0xbe95869c,0x3f857f55,3
468
+ np.float32,0xbf199796,0x3f97bcaf,3
469
+ np.float32,0x3ef8da38,0x3f8f6b45,3
470
+ np.float32,0x803f3648,0x3f800000,3
471
+ np.float32,0x80026fd2,0x3f800000,3
472
+ np.float32,0x7eb3ac26,0x7f800000,3
473
+ np.float32,0x3e49921b,0x3f827ce8,3
474
+ np.float32,0xbf689aed,0x3fb892de,3
475
+ np.float32,0x3f253509,0x3f9b9779,3
476
+ np.float32,0xff17894a,0x7f800000,3
477
+ np.float32,0x3cd12639,0x3f800aae,3
478
+ np.float32,0x1db14b,0x3f800000,3
479
+ np.float32,0x39a0bf,0x3f800000,3
480
+ np.float32,0xfdfe1d08,0x7f800000,3
481
+ np.float32,0xff416cd2,0x7f800000,3
482
+ np.float32,0x8070d818,0x3f800000,3
483
+ np.float32,0x3e516e12,0x3f82afb8,3
484
+ np.float32,0x80536651,0x3f800000,3
485
+ np.float32,0xbf2903d2,0x3f9cecb7,3
486
+ np.float32,0x3e896ae4,0x3f84a353,3
487
+ np.float32,0xbd6ba2c0,0x3f80363d,3
488
+ np.float32,0x80126d3e,0x3f800000,3
489
+ np.float32,0xfd9d43d0,0x7f800000,3
490
+ np.float32,0x7b56b6,0x3f800000,3
491
+ np.float32,0xff04718e,0x7f800000,3
492
+ np.float32,0x31440f,0x3f800000,3
493
+ np.float32,0xbf7a1313,0x3fc215c9,3
494
+ np.float32,0x7f43d6a0,0x7f800000,3
495
+ np.float32,0x3f566503,0x3faf92cc,3
496
+ np.float32,0xbf39eb0e,0x3fa343f1,3
497
+ np.float32,0xbe35fd70,0x3f8206df,3
498
+ np.float32,0x800c36ac,0x3f800000,3
499
+ np.float32,0x60d061,0x3f800000,3
500
+ np.float32,0x80453e12,0x3f800000,3
501
+ np.float32,0xfe17c36c,0x7f800000,3
502
+ np.float32,0x3d8c72,0x3f800000,3
503
+ np.float32,0xfe8e9134,0x7f800000,3
504
+ np.float32,0xff5d89de,0x7f800000,3
505
+ np.float32,0x7f45020e,0x7f800000,3
506
+ np.float32,0x3f28225e,0x3f9c9d01,3
507
+ np.float32,0xbf3b6900,0x3fa3dbdd,3
508
+ np.float32,0x80349023,0x3f800000,3
509
+ np.float32,0xbf14d780,0x3f964042,3
510
+ np.float32,0x3f56b5d2,0x3fafb8c3,3
511
+ np.float32,0x800c639c,0x3f800000,3
512
+ np.float32,0x7f7a19c8,0x7f800000,3
513
+ np.float32,0xbf7a0815,0x3fc20f86,3
514
+ np.float32,0xbec55926,0x3f89a06e,3
515
+ np.float32,0x4b2cd2,0x3f800000,3
516
+ np.float32,0xbf271eb2,0x3f9c41c8,3
517
+ np.float32,0xff26e168,0x7f800000,3
518
+ np.float32,0x800166b2,0x3f800000,3
519
+ np.float32,0xbde97e38,0x3f80d532,3
520
+ np.float32,0xbf1f93ec,0x3f99af1a,3
521
+ np.float32,0x7f2896ed,0x7f800000,3
522
+ np.float32,0x3da7d96d,0x3f806e1d,3
523
+ np.float32,0x802b7237,0x3f800000,3
524
+ np.float32,0xfdca6bc0,0x7f800000,3
525
+ np.float32,0xbed2e300,0x3f8b0318,3
526
+ np.float32,0x8079d9e8,0x3f800000,3
527
+ np.float32,0x3f388c81,0x3fa2b9c2,3
528
+ np.float32,0x3ed2607c,0x3f8af54a,3
529
+ np.float32,0xff287de6,0x7f800000,3
530
+ np.float32,0x3f55ed89,0x3faf5ac9,3
531
+ np.float32,0x7f5b6af7,0x7f800000,3
532
+ np.float32,0xbeb24730,0x3f87d698,3
533
+ np.float32,0x1,0x3f800000,3
534
+ np.float32,0x3f3a2350,0x3fa35a3b,3
535
+ np.float32,0x8013b422,0x3f800000,3
536
+ np.float32,0x3e9a6560,0x3f85dd35,3
537
+ np.float32,0x80510631,0x3f800000,3
538
+ np.float32,0xfeae39d6,0x7f800000,3
539
+ np.float32,0x7eb437ad,0x7f800000,3
540
+ np.float32,0x8047545b,0x3f800000,3
541
+ np.float32,0x806a1c71,0x3f800000,3
542
+ np.float32,0xbe5543f0,0x3f82c93b,3
543
+ np.float32,0x40e8d,0x3f800000,3
544
+ np.float32,0x63d18b,0x3f800000,3
545
+ np.float32,0x1fa1ea,0x3f800000,3
546
+ np.float32,0x801944e0,0x3f800000,3
547
+ np.float32,0xbf4c7ac6,0x3fab0cae,3
548
+ np.float32,0x7f2679d4,0x7f800000,3
549
+ np.float32,0x3f0102fc,0x3f9099d0,3
550
+ np.float32,0x7e44bdc1,0x7f800000,3
551
+ np.float32,0xbf2072f6,0x3f99f970,3
552
+ np.float32,0x5c7d38,0x3f800000,3
553
+ np.float32,0x30a2e6,0x3f800000,3
554
+ np.float32,0x805b9ca3,0x3f800000,3
555
+ np.float32,0x7cc24ad5,0x7f800000,3
556
+ np.float32,0x3f4f7920,0x3fac6357,3
557
+ np.float32,0x111d62,0x3f800000,3
558
+ np.float32,0xbf4de40a,0x3fabad77,3
559
+ np.float32,0x805d0354,0x3f800000,3
560
+ np.float32,0xbb3d2b00,0x3f800023,3
561
+ np.float32,0x3ef229e7,0x3f8e960b,3
562
+ np.float32,0x3f15754e,0x3f9670e0,3
563
+ np.float32,0xbf689c6b,0x3fb893a5,3
564
+ np.float32,0xbf3796c6,0x3fa2599b,3
565
+ np.float32,0xbe95303c,0x3f8578f2,3
566
+ np.float32,0xfee330de,0x7f800000,3
567
+ np.float32,0xff0d9705,0x7f800000,3
568
+ np.float32,0xbeb0ebd0,0x3f87b7dd,3
569
+ np.float32,0xbf4d5a13,0x3fab6fe7,3
570
+ np.float32,0x80142f5a,0x3f800000,3
571
+ np.float32,0x7e01a87b,0x7f800000,3
572
+ np.float32,0xbe45e5ec,0x3f8265d7,3
573
+ np.float32,0x7f4ac255,0x7f800000,3
574
+ np.float32,0x3ebf6a60,0x3f890ccb,3
575
+ np.float32,0x7f771e16,0x7f800000,3
576
+ np.float32,0x3f41834e,0x3fa6582b,3
577
+ np.float32,0x3f7f6f98,0x3fc52ef0,3
578
+ np.float32,0x7e4ad775,0x7f800000,3
579
+ np.float32,0x3eb39991,0x3f87f4c4,3
580
+ np.float32,0x1e3f4,0x3f800000,3
581
+ np.float32,0x7e84ba19,0x7f800000,3
582
+ np.float32,0x80640be4,0x3f800000,3
583
+ np.float32,0x3f459fc8,0x3fa81272,3
584
+ np.float32,0x3f554ed0,0x3faf109b,3
585
+ np.float32,0x3c6617,0x3f800000,3
586
+ np.float32,0x7f441158,0x7f800000,3
587
+ np.float32,0x7f66e6d8,0x7f800000,3
588
+ np.float32,0x7f565152,0x7f800000,3
589
+ np.float32,0x7f16d550,0x7f800000,3
590
+ np.float32,0xbd4f1950,0x3f8029e5,3
591
+ np.float32,0xcf722,0x3f800000,3
592
+ np.float32,0x3f37d6fd,0x3fa272ad,3
593
+ np.float32,0xff7324ea,0x7f800000,3
594
+ np.float32,0x804bc246,0x3f800000,3
595
+ np.float32,0x7f099ef8,0x7f800000,3
596
+ np.float32,0x5f838b,0x3f800000,3
597
+ np.float32,0x80523534,0x3f800000,3
598
+ np.float32,0x3f595e84,0x3fb0fb50,3
599
+ np.float32,0xfdef8ac8,0x7f800000,3
600
+ np.float32,0x3d9a07,0x3f800000,3
601
+ np.float32,0x410f61,0x3f800000,3
602
+ np.float32,0xbf715dbb,0x3fbd3bcb,3
603
+ np.float32,0xbedd4734,0x3f8c242f,3
604
+ np.float32,0x7e86739a,0x7f800000,3
605
+ np.float32,0x3e81f144,0x3f8424fe,3
606
+ np.float32,0x7f6342d1,0x7f800000,3
607
+ np.float32,0xff6919a3,0x7f800000,3
608
+ np.float32,0xff051878,0x7f800000,3
609
+ np.float32,0x800ba28f,0x3f800000,3
610
+ np.float32,0xfefab3d8,0x7f800000,3
611
+ np.float32,0xff612a84,0x7f800000,3
612
+ np.float32,0x800cd5ab,0x3f800000,3
613
+ np.float32,0x802a07ae,0x3f800000,3
614
+ np.float32,0xfef6ee3a,0x7f800000,3
615
+ np.float32,0x8037e896,0x3f800000,3
616
+ np.float32,0x3ef2d86f,0x3f8eab7d,3
617
+ np.float32,0x3eafe53d,0x3f87a0cb,3
618
+ np.float32,0xba591c00,0x3f800003,3
619
+ np.float32,0x3e9ed028,0x3f863508,3
620
+ np.float32,0x4a12a8,0x3f800000,3
621
+ np.float32,0xbee55c84,0x3f8d0f45,3
622
+ np.float32,0x8038a8d3,0x3f800000,3
623
+ np.float32,0xff055243,0x7f800000,3
624
+ np.float32,0xbf659067,0x3fb701ca,3
625
+ np.float32,0xbee36a86,0x3f8cd5e0,3
626
+ np.float32,0x7f1d74c1,0x7f800000,3
627
+ np.float32,0xbf7657df,0x3fbffaad,3
628
+ np.float32,0x7e37ee34,0x7f800000,3
629
+ np.float32,0xff04bc74,0x7f800000,3
630
+ np.float32,0x806d194e,0x3f800000,3
631
+ np.float32,0x7f5596c3,0x7f800000,3
632
+ np.float32,0xbe09d268,0x3f81293e,3
633
+ np.float32,0x79ff75,0x3f800000,3
634
+ np.float32,0xbf55479c,0x3faf0d3e,3
635
+ np.float32,0xbe5428ec,0x3f82c1d4,3
636
+ np.float32,0x3f624134,0x3fb554d7,3
637
+ np.float32,0x2ccb8a,0x3f800000,3
638
+ np.float32,0xfc082040,0x7f800000,3
639
+ np.float32,0xff315467,0x7f800000,3
640
+ np.float32,0x3e6ea2d2,0x3f837dd5,3
641
+ np.float32,0x8020fdd1,0x3f800000,3
642
+ np.float32,0x7f0416a1,0x7f800000,3
643
+ np.float32,0x710a1b,0x3f800000,3
644
+ np.float32,0x3dfcd050,0x3f80f9fc,3
645
+ np.float32,0xfe995e96,0x7f800000,3
646
+ np.float32,0x3f020d00,0x3f90e006,3
647
+ np.float32,0x8064263e,0x3f800000,3
648
+ np.float32,0xfcee4160,0x7f800000,3
649
+ np.float32,0x801b3a18,0x3f800000,3
650
+ np.float32,0x3f62c984,0x3fb59955,3
651
+ np.float32,0x806e8355,0x3f800000,3
652
+ np.float32,0x7e94f65d,0x7f800000,3
653
+ np.float32,0x1173de,0x3f800000,3
654
+ np.float32,0x3e3ff3b7,0x3f824166,3
655
+ np.float32,0x803b4aea,0x3f800000,3
656
+ np.float32,0x804c5bcc,0x3f800000,3
657
+ np.float32,0x509fe5,0x3f800000,3
658
+ np.float32,0xbf33b5ee,0x3fa0db0b,3
659
+ np.float32,0x3f2ac15c,0x3f9d8ba4,3
660
+ np.float32,0x7f2c54f8,0x7f800000,3
661
+ np.float32,0x7f33d933,0x7f800000,3
662
+ np.float32,0xbf09b2b4,0x3f92f795,3
663
+ np.float32,0x805db8d6,0x3f800000,3
664
+ np.float32,0x6d6e66,0x3f800000,3
665
+ np.float32,0x3ddfea92,0x3f80c40c,3
666
+ np.float32,0xfda719b8,0x7f800000,3
667
+ np.float32,0x5d657f,0x3f800000,3
668
+ np.float32,0xbf005ba3,0x3f906df6,3
669
+ np.float32,0xbf45e606,0x3fa8305c,3
670
+ np.float32,0x5e9fd1,0x3f800000,3
671
+ np.float32,0x8079dc45,0x3f800000,3
672
+ np.float32,0x7e9c40e3,0x7f800000,3
673
+ np.float32,0x6bd5f6,0x3f800000,3
674
+ np.float32,0xbea14a0e,0x3f866761,3
675
+ np.float32,0x7e7323f3,0x7f800000,3
676
+ np.float32,0x7f0c0a79,0x7f800000,3
677
+ np.float32,0xbf7d7aeb,0x3fc40b0f,3
678
+ np.float32,0x437588,0x3f800000,3
679
+ np.float32,0xbf356376,0x3fa17f63,3
680
+ np.float32,0x7f129921,0x7f800000,3
681
+ np.float32,0x7f47a52e,0x7f800000,3
682
+ np.float32,0xba8cb400,0x3f800005,3
683
+ np.float32,0x802284e0,0x3f800000,3
684
+ np.float32,0xbe820f56,0x3f8426ec,3
685
+ np.float32,0x7f2ef6cf,0x7f800000,3
686
+ np.float32,0xbf70a090,0x3fbcd501,3
687
+ np.float32,0xbf173fea,0x3f96ff6d,3
688
+ np.float32,0x3e19c489,0x3f817224,3
689
+ np.float32,0x7f429b30,0x7f800000,3
690
+ np.float32,0xbdae4118,0x3f8076af,3
691
+ np.float32,0x3e70ad30,0x3f838d41,3
692
+ np.float32,0x335fed,0x3f800000,3
693
+ np.float32,0xff5359cf,0x7f800000,3
694
+ np.float32,0xbf17e42b,0x3f9732f1,3
695
+ np.float32,0xff3a950b,0x7f800000,3
696
+ np.float32,0xbcca70c0,0x3f800a02,3
697
+ np.float32,0x3f2cda62,0x3f9e4dad,3
698
+ np.float32,0x3f50c185,0x3facf805,3
699
+ np.float32,0x80000001,0x3f800000,3
700
+ np.float32,0x807b86d2,0x3f800000,3
701
+ np.float32,0x8010c2cf,0x3f800000,3
702
+ np.float32,0x3f130fb8,0x3f95b519,3
703
+ np.float32,0x807dc546,0x3f800000,3
704
+ np.float32,0xbee20740,0x3f8cad3f,3
705
+ np.float32,0x80800000,0x3f800000,3
706
+ np.float32,0x3cbd90c0,0x3f8008c6,3
707
+ np.float32,0x3e693488,0x3f835571,3
708
+ np.float32,0xbe70cd44,0x3f838e35,3
709
+ np.float32,0xbe348dc8,0x3f81feb1,3
710
+ np.float32,0x3f31ea90,0x3fa02d3f,3
711
+ np.float32,0xfcd7e180,0x7f800000,3
712
+ np.float32,0xbe30a75c,0x3f81e8d0,3
713
+ np.float32,0x3e552c5a,0x3f82c89d,3
714
+ np.float32,0xff513f74,0x7f800000,3
715
+ np.float32,0xbdb16248,0x3f807afd,3
716
+ np.float64,0x7fbbf954e437f2a9,0x7ff0000000000000,1
717
+ np.float64,0x581bbf0cb0379,0x3ff0000000000000,1
718
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
719
+ np.float64,0xffb959a2a632b348,0x7ff0000000000000,1
720
+ np.float64,0xbfdbd6baebb7ad76,0x3ff189a5ca25a6e1,1
721
+ np.float64,0xbfd094ec9aa129da,0x3ff08a3f6b918065,1
722
+ np.float64,0x3fe236753f646cea,0x3ff2a982660b8b43,1
723
+ np.float64,0xbfe537fadfaa6ff6,0x3ff3a5f1c49c31bf,1
724
+ np.float64,0xbfe31fa7dc663f50,0x3ff2f175374aef0e,1
725
+ np.float64,0x3fc4b6569f296cb0,0x3ff035bde801bb53,1
726
+ np.float64,0x800ce3c00f99c780,0x3ff0000000000000,1
727
+ np.float64,0xbfebcde33e779bc6,0x3ff66de82cd30fc5,1
728
+ np.float64,0x800dc09d3b7b813b,0x3ff0000000000000,1
729
+ np.float64,0x80067d4c450cfa99,0x3ff0000000000000,1
730
+ np.float64,0x1f6ade203ed7,0x3ff0000000000000,1
731
+ np.float64,0xbfd4e311eca9c624,0x3ff0dc1383d6c3db,1
732
+ np.float64,0x800649b3a54c9368,0x3ff0000000000000,1
733
+ np.float64,0xcc14d1ab9829a,0x3ff0000000000000,1
734
+ np.float64,0x3fc290c5bb25218b,0x3ff02b290f46dd6d,1
735
+ np.float64,0x3fe78eb8376f1d70,0x3ff488f3bc259537,1
736
+ np.float64,0xffc60f58e82c1eb0,0x7ff0000000000000,1
737
+ np.float64,0x3fd35666ad26accd,0x3ff0bc6573da6bcd,1
738
+ np.float64,0x7fc20257a62404ae,0x7ff0000000000000,1
739
+ np.float64,0x80076d842e0edb09,0x3ff0000000000000,1
740
+ np.float64,0x3fd8e44b08b1c898,0x3ff139b9a1f8428e,1
741
+ np.float64,0x7fd6f6fc7a2dedf8,0x7ff0000000000000,1
742
+ np.float64,0x3fa01b9f0820373e,0x3ff00206f8ad0f1b,1
743
+ np.float64,0x69ed190ed3da4,0x3ff0000000000000,1
744
+ np.float64,0xbfd997eb34b32fd6,0x3ff14be65a5db4a0,1
745
+ np.float64,0x7feada2d0935b459,0x7ff0000000000000,1
746
+ np.float64,0xbf80987120213100,0x3ff000226d29a9fc,1
747
+ np.float64,0xbfef203e37fe407c,0x3ff82f51f04e8821,1
748
+ np.float64,0xffe3dcf91fa7b9f2,0x7ff0000000000000,1
749
+ np.float64,0x9a367283346cf,0x3ff0000000000000,1
750
+ np.float64,0x800feb09f7bfd614,0x3ff0000000000000,1
751
+ np.float64,0xbfe0319f9520633f,0x3ff217c5205c403f,1
752
+ np.float64,0xbfa91eabd4323d50,0x3ff004ee4347f627,1
753
+ np.float64,0x3fd19cbf7d23397f,0x3ff09c13e8e43571,1
754
+ np.float64,0xffeb8945f0b7128b,0x7ff0000000000000,1
755
+ np.float64,0x800a0eb4f2141d6a,0x3ff0000000000000,1
756
+ np.float64,0xffe83e7312f07ce6,0x7ff0000000000000,1
757
+ np.float64,0xffca53fee834a7fc,0x7ff0000000000000,1
758
+ np.float64,0x800881cbf1710398,0x3ff0000000000000,1
759
+ np.float64,0x80003e6abbe07cd6,0x3ff0000000000000,1
760
+ np.float64,0xbfef6a998afed533,0x3ff859b7852d1b4d,1
761
+ np.float64,0x3fd4eb7577a9d6eb,0x3ff0dcc601261aab,1
762
+ np.float64,0xbfc9c12811338250,0x3ff05331268b05c8,1
763
+ np.float64,0x7fddf84e5e3bf09c,0x7ff0000000000000,1
764
+ np.float64,0xbfd4d6fbbc29adf8,0x3ff0db12db19d187,1
765
+ np.float64,0x80077892bfaef126,0x3ff0000000000000,1
766
+ np.float64,0xffae9d49543d3a90,0x7ff0000000000000,1
767
+ np.float64,0xbfd8bef219317de4,0x3ff136034e5d2f1b,1
768
+ np.float64,0xffe89c74ddb138e9,0x7ff0000000000000,1
769
+ np.float64,0x8003b6bbb7e76d78,0x3ff0000000000000,1
770
+ np.float64,0x315a4e8462b4b,0x3ff0000000000000,1
771
+ np.float64,0x800ee616edddcc2e,0x3ff0000000000000,1
772
+ np.float64,0xdfb27f97bf650,0x3ff0000000000000,1
773
+ np.float64,0x8004723dc328e47c,0x3ff0000000000000,1
774
+ np.float64,0xbfe529500daa52a0,0x3ff3a0b9b33fc84c,1
775
+ np.float64,0xbfe4e46a7ce9c8d5,0x3ff3886ce0f92612,1
776
+ np.float64,0xbf52003680240000,0x3ff00000a203d61a,1
777
+ np.float64,0xffd3400458268008,0x7ff0000000000000,1
778
+ np.float64,0x80076deb444edbd7,0x3ff0000000000000,1
779
+ np.float64,0xa612f6c14c27,0x3ff0000000000000,1
780
+ np.float64,0xbfd41c74c9a838ea,0x3ff0cbe61e16aecf,1
781
+ np.float64,0x43f464a887e8d,0x3ff0000000000000,1
782
+ np.float64,0x800976e748b2edcf,0x3ff0000000000000,1
783
+ np.float64,0xffc79d6ba12f3ad8,0x7ff0000000000000,1
784
+ np.float64,0xffd6dbcb022db796,0x7ff0000000000000,1
785
+ np.float64,0xffd6a9672a2d52ce,0x7ff0000000000000,1
786
+ np.float64,0x3fe95dcfa632bb9f,0x3ff54bbad2ee919e,1
787
+ np.float64,0x3febadd2e1375ba6,0x3ff65e336c47c018,1
788
+ np.float64,0x7fd47c37d828f86f,0x7ff0000000000000,1
789
+ np.float64,0xbfd4ea59e0a9d4b4,0x3ff0dcae6af3e443,1
790
+ np.float64,0x2c112afc58226,0x3ff0000000000000,1
791
+ np.float64,0x8008122bced02458,0x3ff0000000000000,1
792
+ np.float64,0x7fe7105ab3ee20b4,0x7ff0000000000000,1
793
+ np.float64,0x80089634df312c6a,0x3ff0000000000000,1
794
+ np.float64,0x68e9fbc8d1d40,0x3ff0000000000000,1
795
+ np.float64,0xbfec1e1032f83c20,0x3ff69590b9f18ea8,1
796
+ np.float64,0xbfedf181623be303,0x3ff787ef48935dc6,1
797
+ np.float64,0xffe8600457f0c008,0x7ff0000000000000,1
798
+ np.float64,0x7a841ec6f5084,0x3ff0000000000000,1
799
+ np.float64,0x459a572e8b34c,0x3ff0000000000000,1
800
+ np.float64,0x3fe8a232bef14465,0x3ff4fac1780f731e,1
801
+ np.float64,0x3fcb37597d366eb3,0x3ff05cf08ab14ebd,1
802
+ np.float64,0xbfb0261d00204c38,0x3ff00826fb86ca8a,1
803
+ np.float64,0x3fc6e7a6dd2dcf4e,0x3ff041c1222ffa79,1
804
+ np.float64,0xee65dd03dccbc,0x3ff0000000000000,1
805
+ np.float64,0xffe26fdc23e4dfb8,0x7ff0000000000000,1
806
+ np.float64,0x7fe8d6c8cab1ad91,0x7ff0000000000000,1
807
+ np.float64,0xbfeb64bf2676c97e,0x3ff63abb8607828c,1
808
+ np.float64,0x3fd28417b425082f,0x3ff0ac9eb22a732b,1
809
+ np.float64,0xbfd26835b3a4d06c,0x3ff0aa94c48fb6d2,1
810
+ np.float64,0xffec617a01b8c2f3,0x7ff0000000000000,1
811
+ np.float64,0xe1bfff01c3800,0x3ff0000000000000,1
812
+ np.float64,0x3fd4def913a9bdf4,0x3ff0dbbc7271046f,1
813
+ np.float64,0x94f4c17129e98,0x3ff0000000000000,1
814
+ np.float64,0x8009b2eaa33365d6,0x3ff0000000000000,1
815
+ np.float64,0x3fd9633b41b2c678,0x3ff1468388bdfb65,1
816
+ np.float64,0xffe0ae5c80e15cb8,0x7ff0000000000000,1
817
+ np.float64,0x7fdfc35996bf86b2,0x7ff0000000000000,1
818
+ np.float64,0x3fcfc5bdc23f8b7c,0x3ff07ed5caa4545c,1
819
+ np.float64,0xd48b4907a9169,0x3ff0000000000000,1
820
+ np.float64,0xbfe0a2cc52614598,0x3ff2361665895d95,1
821
+ np.float64,0xbfe9068f90720d1f,0x3ff525b82491a1a5,1
822
+ np.float64,0x4238b9208472,0x3ff0000000000000,1
823
+ np.float64,0x800e6b2bf69cd658,0x3ff0000000000000,1
824
+ np.float64,0x7fb638b6ae2c716c,0x7ff0000000000000,1
825
+ np.float64,0x7fe267641764cec7,0x7ff0000000000000,1
826
+ np.float64,0xffc0933d3521267c,0x7ff0000000000000,1
827
+ np.float64,0x7fddfdfb533bfbf6,0x7ff0000000000000,1
828
+ np.float64,0xced2a8e99da55,0x3ff0000000000000,1
829
+ np.float64,0x2a80d5165501b,0x3ff0000000000000,1
830
+ np.float64,0xbfeead2ab63d5a55,0x3ff7eeb5cbcfdcab,1
831
+ np.float64,0x80097f6f92f2fee0,0x3ff0000000000000,1
832
+ np.float64,0x3fee1f29b77c3e54,0x3ff7a0a58c13df62,1
833
+ np.float64,0x3f9d06b8383a0d70,0x3ff001a54a2d8cf8,1
834
+ np.float64,0xbfc8b41d3f31683c,0x3ff04c85379dd6b0,1
835
+ np.float64,0xffd2a04c1e254098,0x7ff0000000000000,1
836
+ np.float64,0xbfb71c01e02e3800,0x3ff010b34220e838,1
837
+ np.float64,0xbfe69249ef6d2494,0x3ff425e48d1e938b,1
838
+ np.float64,0xffefffffffffffff,0x7ff0000000000000,1
839
+ np.float64,0x3feb1d52fbf63aa6,0x3ff618813ae922d7,1
840
+ np.float64,0x7fb8d1a77e31a34e,0x7ff0000000000000,1
841
+ np.float64,0xffc3cfc4ed279f88,0x7ff0000000000000,1
842
+ np.float64,0x2164b9fc42c98,0x3ff0000000000000,1
843
+ np.float64,0x3fbb868cee370d1a,0x3ff017b31b0d4d27,1
844
+ np.float64,0x3fcd6dea583adbd5,0x3ff06cbd16bf44a0,1
845
+ np.float64,0xbfecd041d479a084,0x3ff6efb25f61012d,1
846
+ np.float64,0xbfb0552e6e20aa60,0x3ff00856ca83834a,1
847
+ np.float64,0xe6293cbfcc528,0x3ff0000000000000,1
848
+ np.float64,0x7fba58394034b072,0x7ff0000000000000,1
849
+ np.float64,0x33bc96d467794,0x3ff0000000000000,1
850
+ np.float64,0xffe90ea86bf21d50,0x7ff0000000000000,1
851
+ np.float64,0xbfc626ea6d2c4dd4,0x3ff03d7e01ec3849,1
852
+ np.float64,0x65b56fe4cb6af,0x3ff0000000000000,1
853
+ np.float64,0x3fea409fb7f4813f,0x3ff5b171deab0ebd,1
854
+ np.float64,0x3fe849c1df709384,0x3ff4d59063ff98c4,1
855
+ np.float64,0x169073082d20f,0x3ff0000000000000,1
856
+ np.float64,0xcc8b6add9916e,0x3ff0000000000000,1
857
+ np.float64,0xbfef3d78d5fe7af2,0x3ff83fecc26abeea,1
858
+ np.float64,0x3fe8c65a4a718cb4,0x3ff50a23bfeac7df,1
859
+ np.float64,0x3fde9fa5c8bd3f4c,0x3ff1ddeb12b9d623,1
860
+ np.float64,0xffe2af536da55ea6,0x7ff0000000000000,1
861
+ np.float64,0x800186d0b0c30da2,0x3ff0000000000000,1
862
+ np.float64,0x3fe9ba3c1d737478,0x3ff574ab2bf3a560,1
863
+ np.float64,0xbfe1489c46a29138,0x3ff2641d36b30e21,1
864
+ np.float64,0xbfe4b6b7c0e96d70,0x3ff37880ac8b0540,1
865
+ np.float64,0x800e66ad82fccd5b,0x3ff0000000000000,1
866
+ np.float64,0x7ff0000000000000,0x7ff0000000000000,1
867
+ np.float64,0x7febb0fd477761fa,0x7ff0000000000000,1
868
+ np.float64,0xbfdc433f2eb8867e,0x3ff195ec2a6cce27,1
869
+ np.float64,0x3fe12c5a172258b4,0x3ff25c225b8a34bb,1
870
+ np.float64,0xbfef6f116c3ede23,0x3ff85c47eaed49a0,1
871
+ np.float64,0x800af6f60f35edec,0x3ff0000000000000,1
872
+ np.float64,0xffe567999a2acf32,0x7ff0000000000000,1
873
+ np.float64,0xbfc5ac5ae72b58b4,0x3ff03adb50ec04f3,1
874
+ np.float64,0x3fea1b57e23436b0,0x3ff5a06f98541767,1
875
+ np.float64,0x7fcc3e36fb387c6d,0x7ff0000000000000,1
876
+ np.float64,0x8000c8dc698191ba,0x3ff0000000000000,1
877
+ np.float64,0x3fee5085ed7ca10c,0x3ff7bb92f61245b8,1
878
+ np.float64,0x7fbb9f803a373eff,0x7ff0000000000000,1
879
+ np.float64,0xbfe1e5e806e3cbd0,0x3ff2918f2d773007,1
880
+ np.float64,0x8008f8c3f3b1f188,0x3ff0000000000000,1
881
+ np.float64,0x7fe53df515ea7be9,0x7ff0000000000000,1
882
+ np.float64,0x7fdbb87fb3b770fe,0x7ff0000000000000,1
883
+ np.float64,0x3fefcc0f50ff981f,0x3ff89210a6a04e6b,1
884
+ np.float64,0x3fe33f87d0267f10,0x3ff2fb989ea4f2bc,1
885
+ np.float64,0x1173992022e8,0x3ff0000000000000,1
886
+ np.float64,0x3fef534632bea68c,0x3ff84c5ca9713ff9,1
887
+ np.float64,0x3fc5991d552b3238,0x3ff03a72bfdb6e5f,1
888
+ np.float64,0x3fdad90dc1b5b21c,0x3ff16db868180034,1
889
+ np.float64,0xffe20b8078e41700,0x7ff0000000000000,1
890
+ np.float64,0x7fdf409a82be8134,0x7ff0000000000000,1
891
+ np.float64,0x3fccb7e691396fcd,0x3ff06786b6ccdbcb,1
892
+ np.float64,0xffe416e0b7282dc1,0x7ff0000000000000,1
893
+ np.float64,0xffe3a8a981275152,0x7ff0000000000000,1
894
+ np.float64,0x3fd9c8bd31b3917c,0x3ff150ee6f5f692f,1
895
+ np.float64,0xffeab6fef6356dfd,0x7ff0000000000000,1
896
+ np.float64,0x3fe9c5e3faf38bc8,0x3ff579e18c9bd548,1
897
+ np.float64,0x800b173e44762e7d,0x3ff0000000000000,1
898
+ np.float64,0xffe2719db764e33b,0x7ff0000000000000,1
899
+ np.float64,0x3fd1fcf31223f9e6,0x3ff0a2da7ad99856,1
900
+ np.float64,0x80082c4afcd05896,0x3ff0000000000000,1
901
+ np.float64,0xa56e5e4b4adcc,0x3ff0000000000000,1
902
+ np.float64,0xffbbbddab2377bb8,0x7ff0000000000000,1
903
+ np.float64,0x3b3927c076726,0x3ff0000000000000,1
904
+ np.float64,0x3fec03fd58f807fb,0x3ff6889b8a774728,1
905
+ np.float64,0xbfaa891fb4351240,0x3ff00580987bd914,1
906
+ np.float64,0x7fb4800c4a290018,0x7ff0000000000000,1
907
+ np.float64,0xffbb5d2b6036ba58,0x7ff0000000000000,1
908
+ np.float64,0x7fd6608076acc100,0x7ff0000000000000,1
909
+ np.float64,0x31267e4c624d1,0x3ff0000000000000,1
910
+ np.float64,0x33272266664e5,0x3ff0000000000000,1
911
+ np.float64,0x47bb37f28f768,0x3ff0000000000000,1
912
+ np.float64,0x3fe134bb4ee26977,0x3ff25e7ea647a928,1
913
+ np.float64,0xbfe2b5f42ba56be8,0x3ff2d05cbdc7344b,1
914
+ np.float64,0xbfe0e013fd61c028,0x3ff246dfce572914,1
915
+ np.float64,0x7fecedcda4f9db9a,0x7ff0000000000000,1
916
+ np.float64,0x8001816c2da302d9,0x3ff0000000000000,1
917
+ np.float64,0xffced8b65b3db16c,0x7ff0000000000000,1
918
+ np.float64,0xffdc1d4a0b383a94,0x7ff0000000000000,1
919
+ np.float64,0x7fe94e7339f29ce5,0x7ff0000000000000,1
920
+ np.float64,0x33fb846667f71,0x3ff0000000000000,1
921
+ np.float64,0x800a1380e9542702,0x3ff0000000000000,1
922
+ np.float64,0x800b74eaa776e9d6,0x3ff0000000000000,1
923
+ np.float64,0x5681784aad030,0x3ff0000000000000,1
924
+ np.float64,0xbfee0eb7917c1d6f,0x3ff797b949f7f6b4,1
925
+ np.float64,0xffe4ec5fd2a9d8bf,0x7ff0000000000000,1
926
+ np.float64,0xbfcd7401dd3ae804,0x3ff06cea52c792c0,1
927
+ np.float64,0x800587563beb0ead,0x3ff0000000000000,1
928
+ np.float64,0x3fc15c6f3322b8de,0x3ff025bbd030166d,1
929
+ np.float64,0x7feb6b4caf76d698,0x7ff0000000000000,1
930
+ np.float64,0x7fe136ef82a26dde,0x7ff0000000000000,1
931
+ np.float64,0xf592dac3eb25c,0x3ff0000000000000,1
932
+ np.float64,0x7fd300baf6a60175,0x7ff0000000000000,1
933
+ np.float64,0x7fc880de9e3101bc,0x7ff0000000000000,1
934
+ np.float64,0x7fe7a1aa5caf4354,0x7ff0000000000000,1
935
+ np.float64,0x2f9b8e0e5f373,0x3ff0000000000000,1
936
+ np.float64,0xffcc9071993920e4,0x7ff0000000000000,1
937
+ np.float64,0x8009e151b313c2a4,0x3ff0000000000000,1
938
+ np.float64,0xbfd46e2d18a8dc5a,0x3ff0d27a7b37c1ae,1
939
+ np.float64,0x3fe65c7961acb8f3,0x3ff4116946062a4c,1
940
+ np.float64,0x7fd31b371626366d,0x7ff0000000000000,1
941
+ np.float64,0x98dc924d31b93,0x3ff0000000000000,1
942
+ np.float64,0x268bef364d17f,0x3ff0000000000000,1
943
+ np.float64,0x7fd883ba56310774,0x7ff0000000000000,1
944
+ np.float64,0x3fc53f01a32a7e03,0x3ff0388dea9cd63e,1
945
+ np.float64,0xffe1ea8c0563d518,0x7ff0000000000000,1
946
+ np.float64,0x3fd0bf0e63a17e1d,0x3ff08d0577f5ffa6,1
947
+ np.float64,0x7fef42418f7e8482,0x7ff0000000000000,1
948
+ np.float64,0x8000bccd38c1799b,0x3ff0000000000000,1
949
+ np.float64,0xbfe6c48766ed890f,0x3ff43936fa4048c8,1
950
+ np.float64,0xbfb2a38f3a254720,0x3ff00adc7f7b2822,1
951
+ np.float64,0x3fd5262b2eaa4c56,0x3ff0e1af492c08f5,1
952
+ np.float64,0x80065b4691ecb68e,0x3ff0000000000000,1
953
+ np.float64,0xfb6b9e9ff6d74,0x3ff0000000000000,1
954
+ np.float64,0x8006c71e6ecd8e3e,0x3ff0000000000000,1
955
+ np.float64,0x3fd0a3e43ca147c8,0x3ff08b3ad7b42485,1
956
+ np.float64,0xbfc82d8607305b0c,0x3ff04949d6733ef6,1
957
+ np.float64,0xde048c61bc092,0x3ff0000000000000,1
958
+ np.float64,0xffcf73e0fa3ee7c0,0x7ff0000000000000,1
959
+ np.float64,0xbfe8639d7830c73b,0x3ff4e05f97948376,1
960
+ np.float64,0x8010000000000000,0x3ff0000000000000,1
961
+ np.float64,0x67f01a2acfe04,0x3ff0000000000000,1
962
+ np.float64,0x3fe222e803e445d0,0x3ff2a3a75e5f29d8,1
963
+ np.float64,0xffef84c6387f098b,0x7ff0000000000000,1
964
+ np.float64,0x3fe5969c1e6b2d38,0x3ff3c80130462bb2,1
965
+ np.float64,0x8009f56953d3ead3,0x3ff0000000000000,1
966
+ np.float64,0x3fe05c9b6360b937,0x3ff2232e1cba5617,1
967
+ np.float64,0x3fd8888d63b1111b,0x3ff130a5b788d52f,1
968
+ np.float64,0xffe3a9e6f26753ce,0x7ff0000000000000,1
969
+ np.float64,0x800e2aaa287c5554,0x3ff0000000000000,1
970
+ np.float64,0x3fea8d6c82351ad9,0x3ff5d4d8cde9a11d,1
971
+ np.float64,0x7feef700723dee00,0x7ff0000000000000,1
972
+ np.float64,0x3fa5cb77242b96e0,0x3ff003b62b3e50f1,1
973
+ np.float64,0x7fb68f0a862d1e14,0x7ff0000000000000,1
974
+ np.float64,0x7fb97ee83432fdcf,0x7ff0000000000000,1
975
+ np.float64,0x7fd74a78632e94f0,0x7ff0000000000000,1
976
+ np.float64,0x7fcfe577713fcaee,0x7ff0000000000000,1
977
+ np.float64,0xffe192ee5ea325dc,0x7ff0000000000000,1
978
+ np.float64,0x477d6ae48efae,0x3ff0000000000000,1
979
+ np.float64,0xffe34d5237669aa4,0x7ff0000000000000,1
980
+ np.float64,0x7fe3ce8395a79d06,0x7ff0000000000000,1
981
+ np.float64,0x80019c01ffa33805,0x3ff0000000000000,1
982
+ np.float64,0x74b5b56ce96b7,0x3ff0000000000000,1
983
+ np.float64,0x7fe05ecdeda0bd9b,0x7ff0000000000000,1
984
+ np.float64,0xffe9693eb232d27d,0x7ff0000000000000,1
985
+ np.float64,0xffd2be2c7da57c58,0x7ff0000000000000,1
986
+ np.float64,0x800dbd5cbc1b7aba,0x3ff0000000000000,1
987
+ np.float64,0xbfa36105d426c210,0x3ff002ef2e3a87f7,1
988
+ np.float64,0x800b2d69fb765ad4,0x3ff0000000000000,1
989
+ np.float64,0xbfdb81c9a9370394,0x3ff1802d409cbf7a,1
990
+ np.float64,0x7fd481d014a9039f,0x7ff0000000000000,1
991
+ np.float64,0xffe66c3c1fecd878,0x7ff0000000000000,1
992
+ np.float64,0x3fc55865192ab0c8,0x3ff03915b51e8839,1
993
+ np.float64,0xd6a78987ad4f1,0x3ff0000000000000,1
994
+ np.float64,0x800c6cc80d58d990,0x3ff0000000000000,1
995
+ np.float64,0x979435a12f29,0x3ff0000000000000,1
996
+ np.float64,0xbfbd971e7a3b2e40,0x3ff01b647e45f5a6,1
997
+ np.float64,0x80067565bfeceacc,0x3ff0000000000000,1
998
+ np.float64,0x8001ad689ce35ad2,0x3ff0000000000000,1
999
+ np.float64,0x7fa43253dc2864a7,0x7ff0000000000000,1
1000
+ np.float64,0xbfe3dda307e7bb46,0x3ff32ef99a2efe1d,1
1001
+ np.float64,0x3fe5d7b395ebaf68,0x3ff3dfd33cdc8ef4,1
1002
+ np.float64,0xd94cc9c3b2999,0x3ff0000000000000,1
1003
+ np.float64,0x3fee5a513fbcb4a2,0x3ff7c0f17b876ce5,1
1004
+ np.float64,0xffe27761fa64eec4,0x7ff0000000000000,1
1005
+ np.float64,0x3feb788119b6f102,0x3ff64446f67f4efa,1
1006
+ np.float64,0xbfed6e10dffadc22,0x3ff741d5ef610ca0,1
1007
+ np.float64,0x7fe73cf98b2e79f2,0x7ff0000000000000,1
1008
+ np.float64,0x7847d09af08fb,0x3ff0000000000000,1
1009
+ np.float64,0x29ded2da53bdb,0x3ff0000000000000,1
1010
+ np.float64,0xbfe51c1ec1aa383e,0x3ff39c0b7cf832e2,1
1011
+ np.float64,0xbfeafd5e65f5fabd,0x3ff609548a787f57,1
1012
+ np.float64,0x3fd872a26fb0e545,0x3ff12e7fbd95505c,1
1013
+ np.float64,0x7fed6b7c1b7ad6f7,0x7ff0000000000000,1
1014
+ np.float64,0xffe7ba9ec16f753d,0x7ff0000000000000,1
1015
+ np.float64,0x7f89b322f0336645,0x7ff0000000000000,1
1016
+ np.float64,0xbfad1677383a2cf0,0x3ff0069ca67e7baa,1
1017
+ np.float64,0x3fe0906d04a120da,0x3ff2311b04b7bfef,1
1018
+ np.float64,0xffe4b3c9d4296793,0x7ff0000000000000,1
1019
+ np.float64,0xbfe476bb0ce8ed76,0x3ff36277d2921a74,1
1020
+ np.float64,0x7fc35655cf26acab,0x7ff0000000000000,1
1021
+ np.float64,0x7fe9980f0373301d,0x7ff0000000000000,1
1022
+ np.float64,0x9e6e04cb3cdc1,0x3ff0000000000000,1
1023
+ np.float64,0x800b89e0afb713c2,0x3ff0000000000000,1
1024
+ np.float64,0x800bd951a3f7b2a4,0x3ff0000000000000,1
1025
+ np.float64,0x29644a9e52c8a,0x3ff0000000000000,1
1026
+ np.float64,0x3fe1be2843637c51,0x3ff285e90d8387e4,1
1027
+ np.float64,0x7fa233cce4246799,0x7ff0000000000000,1
1028
+ np.float64,0xbfcfb7bc2d3f6f78,0x3ff07e657de3e2ed,1
1029
+ np.float64,0xffd7c953e7af92a8,0x7ff0000000000000,1
1030
+ np.float64,0xbfc5bbaf772b7760,0x3ff03b2ee4febb1e,1
1031
+ np.float64,0x8007b7315a6f6e63,0x3ff0000000000000,1
1032
+ np.float64,0xbfe906d902320db2,0x3ff525d7e16acfe0,1
1033
+ np.float64,0x3fde33d8553c67b1,0x3ff1d09faa19aa53,1
1034
+ np.float64,0x61fe76a0c3fcf,0x3ff0000000000000,1
1035
+ np.float64,0xa75e355b4ebc7,0x3ff0000000000000,1
1036
+ np.float64,0x3fc9e6d86033cdb1,0x3ff05426299c7064,1
1037
+ np.float64,0x7fd83f489eb07e90,0x7ff0000000000000,1
1038
+ np.float64,0x8000000000000001,0x3ff0000000000000,1
1039
+ np.float64,0x80014434ae62886a,0x3ff0000000000000,1
1040
+ np.float64,0xbfe21af9686435f3,0x3ff2a149338bdefe,1
1041
+ np.float64,0x9354e6cd26a9d,0x3ff0000000000000,1
1042
+ np.float64,0xb42b95f768573,0x3ff0000000000000,1
1043
+ np.float64,0xbfecb4481bb96890,0x3ff6e15d269dd651,1
1044
+ np.float64,0x3f97842ae82f0840,0x3ff0011485156f28,1
1045
+ np.float64,0xffdef63d90bdec7c,0x7ff0000000000000,1
1046
+ np.float64,0x7fe511a8d36a2351,0x7ff0000000000000,1
1047
+ np.float64,0xbf8cb638a0396c80,0x3ff000670c318fb6,1
1048
+ np.float64,0x3fe467e1f668cfc4,0x3ff35d65f93ccac6,1
1049
+ np.float64,0xbfce7d88f03cfb10,0x3ff074c22475fe5b,1
1050
+ np.float64,0x6d0a4994da14a,0x3ff0000000000000,1
1051
+ np.float64,0xbfb3072580260e48,0x3ff00b51d3913e9f,1
1052
+ np.float64,0x8008fcde36b1f9bd,0x3ff0000000000000,1
1053
+ np.float64,0x3fd984df66b309c0,0x3ff149f29125eca4,1
1054
+ np.float64,0xffee2a10fe7c5421,0x7ff0000000000000,1
1055
+ np.float64,0x80039168ace722d2,0x3ff0000000000000,1
1056
+ np.float64,0xffda604379b4c086,0x7ff0000000000000,1
1057
+ np.float64,0xffdc6a405bb8d480,0x7ff0000000000000,1
1058
+ np.float64,0x3fe62888b26c5111,0x3ff3fdda754c4372,1
1059
+ np.float64,0x8008b452cb5168a6,0x3ff0000000000000,1
1060
+ np.float64,0x6165d540c2cbb,0x3ff0000000000000,1
1061
+ np.float64,0xbfee0c04d17c180a,0x3ff796431c64bcbe,1
1062
+ np.float64,0x800609b8448c1371,0x3ff0000000000000,1
1063
+ np.float64,0x800fc3fca59f87f9,0x3ff0000000000000,1
1064
+ np.float64,0x77f64848efeca,0x3ff0000000000000,1
1065
+ np.float64,0x8007cf522d8f9ea5,0x3ff0000000000000,1
1066
+ np.float64,0xbfe9fb0b93f3f617,0x3ff591cb0052e22c,1
1067
+ np.float64,0x7fd569d5f0aad3ab,0x7ff0000000000000,1
1068
+ np.float64,0x7fe5cf489d6b9e90,0x7ff0000000000000,1
1069
+ np.float64,0x7fd6e193e92dc327,0x7ff0000000000000,1
1070
+ np.float64,0xf78988a5ef131,0x3ff0000000000000,1
1071
+ np.float64,0x3fe8f97562b1f2eb,0x3ff5201080fbc12d,1
1072
+ np.float64,0x7febfd69d7b7fad3,0x7ff0000000000000,1
1073
+ np.float64,0xffc07b5c1720f6b8,0x7ff0000000000000,1
1074
+ np.float64,0xbfd966926832cd24,0x3ff146da9adf492e,1
1075
+ np.float64,0x7fef5bd9edfeb7b3,0x7ff0000000000000,1
1076
+ np.float64,0xbfd2afbc96255f7a,0x3ff0afd601febf44,1
1077
+ np.float64,0x7fdd4ea6293a9d4b,0x7ff0000000000000,1
1078
+ np.float64,0xbfe8a1e916b143d2,0x3ff4faa23c2793e5,1
1079
+ np.float64,0x800188fcd8c311fa,0x3ff0000000000000,1
1080
+ np.float64,0xbfe30803f1661008,0x3ff2e9fc729baaee,1
1081
+ np.float64,0x7fefffffffffffff,0x7ff0000000000000,1
1082
+ np.float64,0x3fd287bec3250f7e,0x3ff0ace34d3102f6,1
1083
+ np.float64,0x1f0ee9443e1de,0x3ff0000000000000,1
1084
+ np.float64,0xbfd92f73da325ee8,0x3ff14143e4fa2c5a,1
1085
+ np.float64,0x3fed7c9bdffaf938,0x3ff74984168734d3,1
1086
+ np.float64,0x8002c4d1696589a4,0x3ff0000000000000,1
1087
+ np.float64,0xfe03011bfc060,0x3ff0000000000000,1
1088
+ np.float64,0x7f7a391e6034723c,0x7ff0000000000000,1
1089
+ np.float64,0xffd6fd46f82dfa8e,0x7ff0000000000000,1
1090
+ np.float64,0xbfd7520a742ea414,0x3ff112f1ba5d4f91,1
1091
+ np.float64,0x8009389d8812713b,0x3ff0000000000000,1
1092
+ np.float64,0x7fefb846aaff708c,0x7ff0000000000000,1
1093
+ np.float64,0x3fd98a0983331413,0x3ff14a79efb8adbf,1
1094
+ np.float64,0xbfd897158db12e2c,0x3ff132137902cf3e,1
1095
+ np.float64,0xffc4048d5928091c,0x7ff0000000000000,1
1096
+ np.float64,0x80036ae46046d5ca,0x3ff0000000000000,1
1097
+ np.float64,0x7faba7ed3c374fd9,0x7ff0000000000000,1
1098
+ np.float64,0xbfec4265e1f884cc,0x3ff6a7b8602422c9,1
1099
+ np.float64,0xaa195e0b5432c,0x3ff0000000000000,1
1100
+ np.float64,0x3feac15d317582ba,0x3ff5ed115758145f,1
1101
+ np.float64,0x6c13a5bcd8275,0x3ff0000000000000,1
1102
+ np.float64,0xbfed20b8883a4171,0x3ff7194dbd0dc988,1
1103
+ np.float64,0x800cde65c899bccc,0x3ff0000000000000,1
1104
+ np.float64,0x7c72912af8e53,0x3ff0000000000000,1
1105
+ np.float64,0x3fe49d2bb4e93a57,0x3ff36fab3aba15d4,1
1106
+ np.float64,0xbfd598fa02ab31f4,0x3ff0eb72fc472025,1
1107
+ np.float64,0x8007a191712f4324,0x3ff0000000000000,1
1108
+ np.float64,0xbfdeb14872bd6290,0x3ff1e01ca83f35fd,1
1109
+ np.float64,0xbfe1da46b3e3b48e,0x3ff28e23ad2f5615,1
1110
+ np.float64,0x800a2f348e745e69,0x3ff0000000000000,1
1111
+ np.float64,0xbfee66928afccd25,0x3ff7c7ac7dbb3273,1
1112
+ np.float64,0xffd78a0a2b2f1414,0x7ff0000000000000,1
1113
+ np.float64,0x7fc5fa80b82bf500,0x7ff0000000000000,1
1114
+ np.float64,0x800e6d7260dcdae5,0x3ff0000000000000,1
1115
+ np.float64,0xbfd6cff2aaad9fe6,0x3ff106f78ee61642,1
1116
+ np.float64,0x7fe1041d1d220839,0x7ff0000000000000,1
1117
+ np.float64,0xbfdf75586cbeeab0,0x3ff1f8dbaa7e57f0,1
1118
+ np.float64,0xffdcaae410b955c8,0x7ff0000000000000,1
1119
+ np.float64,0x800fe5e0d1ffcbc2,0x3ff0000000000000,1
1120
+ np.float64,0x800d7999527af333,0x3ff0000000000000,1
1121
+ np.float64,0xbfe62c233bac5846,0x3ff3ff34220a204c,1
1122
+ np.float64,0x7fe99bbff8f3377f,0x7ff0000000000000,1
1123
+ np.float64,0x7feeaf471d3d5e8d,0x7ff0000000000000,1
1124
+ np.float64,0xd5904ff5ab20a,0x3ff0000000000000,1
1125
+ np.float64,0x3fd07aae3320f55c,0x3ff08888c227c968,1
1126
+ np.float64,0x7fea82b8dff50571,0x7ff0000000000000,1
1127
+ np.float64,0xffef2db9057e5b71,0x7ff0000000000000,1
1128
+ np.float64,0xbfe2077fef640f00,0x3ff29b7dd0d39d36,1
1129
+ np.float64,0xbfe09a4d7c61349b,0x3ff233c7e88881f4,1
1130
+ np.float64,0x3fda50c4cbb4a188,0x3ff15f28a71deee7,1
1131
+ np.float64,0x7fe7d9ee6b2fb3dc,0x7ff0000000000000,1
1132
+ np.float64,0x3febbf6faeb77edf,0x3ff666d13682ea93,1
1133
+ np.float64,0xc401a32988035,0x3ff0000000000000,1
1134
+ np.float64,0xbfeab30aa8f56615,0x3ff5e65dcc6603f8,1
1135
+ np.float64,0x92c8cea32591a,0x3ff0000000000000,1
1136
+ np.float64,0xbff0000000000000,0x3ff8b07551d9f550,1
1137
+ np.float64,0xbfbddfb4dc3bbf68,0x3ff01bebaec38faa,1
1138
+ np.float64,0xbfd8de3e2a31bc7c,0x3ff1391f4830d20b,1
1139
+ np.float64,0xffc83a8f8a307520,0x7ff0000000000000,1
1140
+ np.float64,0x3fee026ef53c04de,0x3ff7911337085827,1
1141
+ np.float64,0x7fbaf380b235e700,0x7ff0000000000000,1
1142
+ np.float64,0xffe5b89fa62b713f,0x7ff0000000000000,1
1143
+ np.float64,0xbfdc1ff54ab83fea,0x3ff191e8c0b60bb2,1
1144
+ np.float64,0x6ae3534cd5c6b,0x3ff0000000000000,1
1145
+ np.float64,0xbfea87e558750fcb,0x3ff5d24846013794,1
1146
+ np.float64,0xffe0f467bee1e8cf,0x7ff0000000000000,1
1147
+ np.float64,0x7fee3b0dc7bc761b,0x7ff0000000000000,1
1148
+ np.float64,0x3fed87521afb0ea4,0x3ff74f2f5cd36a5c,1
1149
+ np.float64,0x7b3c9882f6794,0x3ff0000000000000,1
1150
+ np.float64,0x7fdd1a62243a34c3,0x7ff0000000000000,1
1151
+ np.float64,0x800f1dc88d3e3b91,0x3ff0000000000000,1
1152
+ np.float64,0x7fc3213cfa264279,0x7ff0000000000000,1
1153
+ np.float64,0x3fe40e0f3d681c1e,0x3ff33f135e9d5ded,1
1154
+ np.float64,0x7febf14e51f7e29c,0x7ff0000000000000,1
1155
+ np.float64,0xffe96c630c72d8c5,0x7ff0000000000000,1
1156
+ np.float64,0x7fdd82fbe7bb05f7,0x7ff0000000000000,1
1157
+ np.float64,0xbf9a6a0b1034d420,0x3ff0015ce009f7d8,1
1158
+ np.float64,0xbfceb4f8153d69f0,0x3ff0766e3ecc77df,1
1159
+ np.float64,0x3fd9de31e633bc64,0x3ff15327b794a16e,1
1160
+ np.float64,0x3faa902a30352054,0x3ff00583848d1969,1
1161
+ np.float64,0x0,0x3ff0000000000000,1
1162
+ np.float64,0x3fbe3459c43c68b4,0x3ff01c8af6710ef6,1
1163
+ np.float64,0xbfa8df010031be00,0x3ff004d5632dc9f5,1
1164
+ np.float64,0x7fbcf6cf2a39ed9d,0x7ff0000000000000,1
1165
+ np.float64,0xffe4236202a846c4,0x7ff0000000000000,1
1166
+ np.float64,0x3fd35ed52e26bdaa,0x3ff0bd0b231f11f7,1
1167
+ np.float64,0x7fe7a2df532f45be,0x7ff0000000000000,1
1168
+ np.float64,0xffe32f8315665f06,0x7ff0000000000000,1
1169
+ np.float64,0x7fe1a69f03e34d3d,0x7ff0000000000000,1
1170
+ np.float64,0x7fa5542b742aa856,0x7ff0000000000000,1
1171
+ np.float64,0x3fe84e9f8ef09d3f,0x3ff4d79816359765,1
1172
+ np.float64,0x29076fe6520ef,0x3ff0000000000000,1
1173
+ np.float64,0xffd70894f7ae112a,0x7ff0000000000000,1
1174
+ np.float64,0x800188edcbe311dc,0x3ff0000000000000,1
1175
+ np.float64,0x3fe2c7acda258f5a,0x3ff2d5dad4617703,1
1176
+ np.float64,0x3f775d41a02ebb00,0x3ff000110f212445,1
1177
+ np.float64,0x7fe8a084d1714109,0x7ff0000000000000,1
1178
+ np.float64,0x3fe31562d8a62ac6,0x3ff2ee35055741cd,1
1179
+ np.float64,0xbfd195d4d1a32baa,0x3ff09b98a50c151b,1
1180
+ np.float64,0xffaae9ff0c35d400,0x7ff0000000000000,1
1181
+ np.float64,0xff819866502330c0,0x7ff0000000000000,1
1182
+ np.float64,0x7fddc64815bb8c8f,0x7ff0000000000000,1
1183
+ np.float64,0xbfd442b428288568,0x3ff0cef70aa73ae6,1
1184
+ np.float64,0x8002e7625aa5cec5,0x3ff0000000000000,1
1185
+ np.float64,0x7fe8d4f70e71a9ed,0x7ff0000000000000,1
1186
+ np.float64,0xbfc3bd015f277a04,0x3ff030cbf16f29d9,1
1187
+ np.float64,0x3fd315d5baa62bab,0x3ff0b77a551a5335,1
1188
+ np.float64,0x7fa638b4642c7168,0x7ff0000000000000,1
1189
+ np.float64,0x3fdea8b795bd516f,0x3ff1df0bb70cdb79,1
1190
+ np.float64,0xbfd78754762f0ea8,0x3ff117ee0f29abed,1
1191
+ np.float64,0x8009f6a37633ed47,0x3ff0000000000000,1
1192
+ np.float64,0x3fea1daf75343b5f,0x3ff5a1804789bf13,1
1193
+ np.float64,0x3fd044b6c0a0896e,0x3ff0850b7297d02f,1
1194
+ np.float64,0x8003547a9c86a8f6,0x3ff0000000000000,1
1195
+ np.float64,0x3fa6c2cd782d859b,0x3ff0040c4ac8f44a,1
1196
+ np.float64,0x3fe225baaae44b76,0x3ff2a47f5e1f5e85,1
1197
+ np.float64,0x8000000000000000,0x3ff0000000000000,1
1198
+ np.float64,0x3fcb53da8736a7b8,0x3ff05db45af470ac,1
1199
+ np.float64,0x80079f8f140f3f1f,0x3ff0000000000000,1
1200
+ np.float64,0xbfcd1d7e2b3a3afc,0x3ff06a6b6845d05f,1
1201
+ np.float64,0x96df93672dbf3,0x3ff0000000000000,1
1202
+ np.float64,0xdef86e43bdf0e,0x3ff0000000000000,1
1203
+ np.float64,0xbfec05a09db80b41,0x3ff6896b768eea08,1
1204
+ np.float64,0x7fe3ff91d267ff23,0x7ff0000000000000,1
1205
+ np.float64,0xffea3eaa07347d53,0x7ff0000000000000,1
1206
+ np.float64,0xbfebde1cc1f7bc3a,0x3ff675e34ac2afc2,1
1207
+ np.float64,0x629bcde8c537a,0x3ff0000000000000,1
1208
+ np.float64,0xbfdde4fcff3bc9fa,0x3ff1c7061d21f0fe,1
1209
+ np.float64,0x3fee60fd003cc1fa,0x3ff7c49af3878a51,1
1210
+ np.float64,0x3fe5c92ac32b9256,0x3ff3da7a7929588b,1
1211
+ np.float64,0xbfe249c78f64938f,0x3ff2af52a06f1a50,1
1212
+ np.float64,0xbfc6de9dbe2dbd3c,0x3ff0418d284ee29f,1
1213
+ np.float64,0xffc8ef094631de14,0x7ff0000000000000,1
1214
+ np.float64,0x3fdef05f423de0bf,0x3ff1e800caba8ab5,1
1215
+ np.float64,0xffc1090731221210,0x7ff0000000000000,1
1216
+ np.float64,0xbfedec9b5fbbd937,0x3ff7854b6792a24a,1
1217
+ np.float64,0xbfb873507630e6a0,0x3ff012b23b3b7a67,1
1218
+ np.float64,0xbfe3cd6692679acd,0x3ff3299d6936ec4b,1
1219
+ np.float64,0xbfb107c890220f90,0x3ff0091122162472,1
1220
+ np.float64,0xbfe4e6ee48e9cddc,0x3ff3894e5a5e70a6,1
1221
+ np.float64,0xffe6fa3413edf468,0x7ff0000000000000,1
1222
+ np.float64,0x3fe2faf79b65f5ef,0x3ff2e5e11fae8b54,1
1223
+ np.float64,0xbfdfeb8df9bfd71c,0x3ff208189691b15f,1
1224
+ np.float64,0x75d2d03ceba5b,0x3ff0000000000000,1
1225
+ np.float64,0x3feb48c182b69183,0x3ff62d4462eba6cb,1
1226
+ np.float64,0xffcda9f7ff3b53f0,0x7ff0000000000000,1
1227
+ np.float64,0x7fcafbdcbd35f7b8,0x7ff0000000000000,1
1228
+ np.float64,0xbfd1895523a312aa,0x3ff09aba642a78d9,1
1229
+ np.float64,0x3fe3129c3f662538,0x3ff2ed546bbfafcf,1
1230
+ np.float64,0x3fb444dee02889be,0x3ff00cd86273b964,1
1231
+ np.float64,0xbf73b32d7ee77,0x3ff0000000000000,1
1232
+ np.float64,0x3fae19904c3c3321,0x3ff00714865c498a,1
1233
+ np.float64,0x7fefbfaef5bf7f5d,0x7ff0000000000000,1
1234
+ np.float64,0x8000dc3816e1b871,0x3ff0000000000000,1
1235
+ np.float64,0x8003f957ba47f2b0,0x3ff0000000000000,1
1236
+ np.float64,0xbfe3563c7ea6ac79,0x3ff302dcebc92856,1
1237
+ np.float64,0xbfdc80fbae3901f8,0x3ff19cfe73e58092,1
1238
+ np.float64,0x8009223b04524476,0x3ff0000000000000,1
1239
+ np.float64,0x3fd95f431c32be86,0x3ff1461c21cb03f0,1
1240
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
1241
+ np.float64,0xbfe7c12ed3ef825e,0x3ff49d59c265efcd,1
1242
+ np.float64,0x10000000000000,0x3ff0000000000000,1
1243
+ np.float64,0x7fc5e2632f2bc4c5,0x7ff0000000000000,1
1244
+ np.float64,0xffd8f6b4c7b1ed6a,0x7ff0000000000000,1
1245
+ np.float64,0x80034b93d4069728,0x3ff0000000000000,1
1246
+ np.float64,0xffdf5d4c1dbeba98,0x7ff0000000000000,1
1247
+ np.float64,0x800bc63d70178c7b,0x3ff0000000000000,1
1248
+ np.float64,0xbfeba31ea0f7463d,0x3ff658fa27073d2b,1
1249
+ np.float64,0xbfeebeede97d7ddc,0x3ff7f89a8e80dec4,1
1250
+ np.float64,0x7feb0f1f91361e3e,0x7ff0000000000000,1
1251
+ np.float64,0xffec3158d0b862b1,0x7ff0000000000000,1
1252
+ np.float64,0x3fde51cbfbbca398,0x3ff1d44c2ff15b3d,1
1253
+ np.float64,0xd58fb2b3ab1f7,0x3ff0000000000000,1
1254
+ np.float64,0x80028b9e32e5173d,0x3ff0000000000000,1
1255
+ np.float64,0x7fea77a56c74ef4a,0x7ff0000000000000,1
1256
+ np.float64,0x3fdaabbd4a35577b,0x3ff168d82edf2fe0,1
1257
+ np.float64,0xbfe69c39cc2d3874,0x3ff429b2f4cdb362,1
1258
+ np.float64,0x3b78f5d876f20,0x3ff0000000000000,1
1259
+ np.float64,0x7fa47d116428fa22,0x7ff0000000000000,1
1260
+ np.float64,0xbfe4118b0ce82316,0x3ff3403d989f780f,1
1261
+ np.float64,0x800482e793c905d0,0x3ff0000000000000,1
1262
+ np.float64,0xbfe48e5728e91cae,0x3ff36a9020bf9d20,1
1263
+ np.float64,0x7fe078ba8860f174,0x7ff0000000000000,1
1264
+ np.float64,0x3fd80843e5b01088,0x3ff1242f401e67da,1
1265
+ np.float64,0x3feb1f6965f63ed3,0x3ff6197fc590e143,1
1266
+ np.float64,0xffa41946d8283290,0x7ff0000000000000,1
1267
+ np.float64,0xffe30de129661bc2,0x7ff0000000000000,1
1268
+ np.float64,0x3fec9c8e1ab9391c,0x3ff6d542ea2f49b4,1
1269
+ np.float64,0x3fdc3e4490387c89,0x3ff1955ae18cac37,1
1270
+ np.float64,0xffef49d9c77e93b3,0x7ff0000000000000,1
1271
+ np.float64,0xfff0000000000000,0x7ff0000000000000,1
1272
+ np.float64,0x3fe0442455608849,0x3ff21cab90067d5c,1
1273
+ np.float64,0xbfed86aebd3b0d5e,0x3ff74ed8d4b75f50,1
1274
+ np.float64,0xffe4600d2b28c01a,0x7ff0000000000000,1
1275
+ np.float64,0x7fc1e8ccff23d199,0x7ff0000000000000,1
1276
+ np.float64,0x8008d49b0091a936,0x3ff0000000000000,1
1277
+ np.float64,0xbfe4139df028273c,0x3ff340ef3c86227c,1
1278
+ np.float64,0xbfe9ab4542b3568a,0x3ff56dfe32061247,1
1279
+ np.float64,0xbfd76dd365aedba6,0x3ff11589bab5fe71,1
1280
+ np.float64,0x3fd42cf829a859f0,0x3ff0cd3844bb0e11,1
1281
+ np.float64,0x7fd077cf2e20ef9d,0x7ff0000000000000,1
1282
+ np.float64,0x3fd7505760aea0b0,0x3ff112c937b3f088,1
1283
+ np.float64,0x1f93341a3f267,0x3ff0000000000000,1
1284
+ np.float64,0x7fe3c3c1b0678782,0x7ff0000000000000,1
1285
+ np.float64,0x800f85cec97f0b9e,0x3ff0000000000000,1
1286
+ np.float64,0xd93ab121b2756,0x3ff0000000000000,1
1287
+ np.float64,0xbfef8066fd7f00ce,0x3ff8663ed7d15189,1
1288
+ np.float64,0xffe31dd4af663ba9,0x7ff0000000000000,1
1289
+ np.float64,0xbfd7ff05a6affe0c,0x3ff1234c09bb686d,1
1290
+ np.float64,0xbfe718c31fee3186,0x3ff45a0c2d0ef7b0,1
1291
+ np.float64,0x800484bf33e9097f,0x3ff0000000000000,1
1292
+ np.float64,0xffd409dad02813b6,0x7ff0000000000000,1
1293
+ np.float64,0x3fe59679896b2cf4,0x3ff3c7f49e4fbbd3,1
1294
+ np.float64,0xbfd830c54d30618a,0x3ff1281729861390,1
1295
+ np.float64,0x1d4fc81c3a9fa,0x3ff0000000000000,1
1296
+ np.float64,0x3fd334e4272669c8,0x3ff0b9d5d82894f0,1
1297
+ np.float64,0xffc827e65c304fcc,0x7ff0000000000000,1
1298
+ np.float64,0xffe2d1814aa5a302,0x7ff0000000000000,1
1299
+ np.float64,0xffd7b5b8d32f6b72,0x7ff0000000000000,1
1300
+ np.float64,0xbfdbc9f077b793e0,0x3ff18836b9106ad0,1
1301
+ np.float64,0x7fc724c2082e4983,0x7ff0000000000000,1
1302
+ np.float64,0x3fa39ed72c273da0,0x3ff00302051ce17e,1
1303
+ np.float64,0xbfe3c4c209678984,0x3ff326c4fd16b5cd,1
1304
+ np.float64,0x7fe91f6d00f23ed9,0x7ff0000000000000,1
1305
+ np.float64,0x8004ee93fea9dd29,0x3ff0000000000000,1
1306
+ np.float64,0xbfe7c32d0eaf865a,0x3ff49e290ed2ca0e,1
1307
+ np.float64,0x800ea996b29d532d,0x3ff0000000000000,1
1308
+ np.float64,0x2df9ec1c5bf3e,0x3ff0000000000000,1
1309
+ np.float64,0xabb175df5762f,0x3ff0000000000000,1
1310
+ np.float64,0xffe3fc9c8e27f938,0x7ff0000000000000,1
1311
+ np.float64,0x7fb358a62826b14b,0x7ff0000000000000,1
1312
+ np.float64,0x800aedcccaf5db9a,0x3ff0000000000000,1
1313
+ np.float64,0xffca530c5234a618,0x7ff0000000000000,1
1314
+ np.float64,0x40f91e9681f24,0x3ff0000000000000,1
1315
+ np.float64,0x80098f4572f31e8b,0x3ff0000000000000,1
1316
+ np.float64,0xbfdc58c21fb8b184,0x3ff1986115f8fe92,1
1317
+ np.float64,0xbfebeafd40b7d5fa,0x3ff67c3cf34036e3,1
1318
+ np.float64,0x7fd108861a22110b,0x7ff0000000000000,1
1319
+ np.float64,0xff8e499ae03c9340,0x7ff0000000000000,1
1320
+ np.float64,0xbfd2f58caa25eb1a,0x3ff0b50b1bffafdf,1
1321
+ np.float64,0x3fa040c9bc208193,0x3ff002105e95aefa,1
1322
+ np.float64,0xbfd2ebc0a5a5d782,0x3ff0b44ed5a11584,1
1323
+ np.float64,0xffe237bc93a46f78,0x7ff0000000000000,1
1324
+ np.float64,0x3fd557c5eeaaaf8c,0x3ff0e5e0a575e1ba,1
1325
+ np.float64,0x7abb419ef5769,0x3ff0000000000000,1
1326
+ np.float64,0xffefa1fe353f43fb,0x7ff0000000000000,1
1327
+ np.float64,0x3fa6f80ba02df017,0x3ff0041f51fa0d76,1
1328
+ np.float64,0xbfdce79488b9cf2a,0x3ff1a8e32877beb4,1
1329
+ np.float64,0x2285f3e4450bf,0x3ff0000000000000,1
1330
+ np.float64,0x3bf7eb7277efe,0x3ff0000000000000,1
1331
+ np.float64,0xbfd5925fd3ab24c0,0x3ff0eae1c2ac2e78,1
1332
+ np.float64,0xbfed6325227ac64a,0x3ff73c14a2ad5bfe,1
1333
+ np.float64,0x8000429c02408539,0x3ff0000000000000,1
1334
+ np.float64,0xb67c21e76cf84,0x3ff0000000000000,1
1335
+ np.float64,0x3fec3d3462f87a69,0x3ff6a51e4c027eb7,1
1336
+ np.float64,0x3feae69cbcf5cd3a,0x3ff5fe9387314afd,1
1337
+ np.float64,0x7fd0c9a0ec219341,0x7ff0000000000000,1
1338
+ np.float64,0x8004adb7f6295b71,0x3ff0000000000000,1
1339
+ np.float64,0xffd61fe8bb2c3fd2,0x7ff0000000000000,1
1340
+ np.float64,0xffe7fb3834aff670,0x7ff0000000000000,1
1341
+ np.float64,0x7fd1eef163a3dde2,0x7ff0000000000000,1
1342
+ np.float64,0x2e84547a5d08b,0x3ff0000000000000,1
1343
+ np.float64,0x8002d8875ee5b10f,0x3ff0000000000000,1
1344
+ np.float64,0x3fe1d1c5f763a38c,0x3ff28ba524fb6de8,1
1345
+ np.float64,0x8001dea0bc43bd42,0x3ff0000000000000,1
1346
+ np.float64,0xfecfad91fd9f6,0x3ff0000000000000,1
1347
+ np.float64,0xffed7965fa3af2cb,0x7ff0000000000000,1
1348
+ np.float64,0xbfe6102ccc2c205a,0x3ff3f4c082506686,1
1349
+ np.float64,0x3feff75b777feeb6,0x3ff8ab6222578e0c,1
1350
+ np.float64,0x3fb8a97bd43152f8,0x3ff013057f0a9d89,1
1351
+ np.float64,0xffe234b5e964696c,0x7ff0000000000000,1
1352
+ np.float64,0x984d9137309b2,0x3ff0000000000000,1
1353
+ np.float64,0xbfe42e9230e85d24,0x3ff349fb7d1a7560,1
1354
+ np.float64,0xbfecc8b249f99165,0x3ff6ebd0fea0ea72,1
1355
+ np.float64,0x8000840910410813,0x3ff0000000000000,1
1356
+ np.float64,0xbfd81db9e7303b74,0x3ff126402d3539ec,1
1357
+ np.float64,0x800548eb7fea91d8,0x3ff0000000000000,1
1358
+ np.float64,0xbfe4679ad0e8cf36,0x3ff35d4db89296a3,1
1359
+ np.float64,0x3fd4c55b5a298ab7,0x3ff0d99da31081f9,1
1360
+ np.float64,0xbfa8f5b38c31eb60,0x3ff004de3a23b32d,1
1361
+ np.float64,0x80005d348e80ba6a,0x3ff0000000000000,1
1362
+ np.float64,0x800c348d6118691b,0x3ff0000000000000,1
1363
+ np.float64,0xffd6b88f84ad7120,0x7ff0000000000000,1
1364
+ np.float64,0x3fc1aaaa82235555,0x3ff027136afd08e0,1
1365
+ np.float64,0x7fca7d081b34fa0f,0x7ff0000000000000,1
1366
+ np.float64,0x1,0x3ff0000000000000,1
1367
+ np.float64,0xbfdc810d1139021a,0x3ff19d007408cfe3,1
1368
+ np.float64,0xbfe5dce05f2bb9c0,0x3ff3e1bb9234617b,1
1369
+ np.float64,0xffecfe2c32b9fc58,0x7ff0000000000000,1
1370
+ np.float64,0x95b2891b2b651,0x3ff0000000000000,1
1371
+ np.float64,0x8000b60c6c616c1a,0x3ff0000000000000,1
1372
+ np.float64,0x4944f0889289f,0x3ff0000000000000,1
1373
+ np.float64,0x3fe6e508696dca10,0x3ff445d1b94863e9,1
1374
+ np.float64,0xbfe63355d0ec66ac,0x3ff401e74f16d16f,1
1375
+ np.float64,0xbfe9b9595af372b3,0x3ff57445e1b4d670,1
1376
+ np.float64,0x800e16f7313c2dee,0x3ff0000000000000,1
1377
+ np.float64,0xffe898f5f0b131eb,0x7ff0000000000000,1
1378
+ np.float64,0x3fe91ac651f2358d,0x3ff52e787c21c004,1
1379
+ np.float64,0x7fbfaac6783f558c,0x7ff0000000000000,1
1380
+ np.float64,0xd8ef3dfbb1de8,0x3ff0000000000000,1
1381
+ np.float64,0xbfc58c13a52b1828,0x3ff03a2c19d65019,1
1382
+ np.float64,0xbfbde55e8a3bcac0,0x3ff01bf648a3e0a7,1
1383
+ np.float64,0xffc3034930260694,0x7ff0000000000000,1
1384
+ np.float64,0xea77a64dd4ef5,0x3ff0000000000000,1
1385
+ np.float64,0x800cfe7e7739fcfd,0x3ff0000000000000,1
1386
+ np.float64,0x4960f31a92c1f,0x3ff0000000000000,1
1387
+ np.float64,0x3fd9552c94b2aa58,0x3ff14515a29add09,1
1388
+ np.float64,0xffe8b3244c316648,0x7ff0000000000000,1
1389
+ np.float64,0x3fe8201e6a70403d,0x3ff4c444fa679cce,1
1390
+ np.float64,0xffe9ab7c20f356f8,0x7ff0000000000000,1
1391
+ np.float64,0x3fed8bba5f7b1774,0x3ff751853c4c95c5,1
1392
+ np.float64,0x8007639cb76ec73a,0x3ff0000000000000,1
1393
+ np.float64,0xbfe396db89672db7,0x3ff317bfd1d6fa8c,1
1394
+ np.float64,0xbfeb42f888f685f1,0x3ff62a7e0eee56b1,1
1395
+ np.float64,0x3fe894827c712904,0x3ff4f4f561d9ea13,1
1396
+ np.float64,0xb66b3caf6cd68,0x3ff0000000000000,1
1397
+ np.float64,0x800f8907fdbf1210,0x3ff0000000000000,1
1398
+ np.float64,0x7fe9b0cddb73619b,0x7ff0000000000000,1
1399
+ np.float64,0xbfda70c0e634e182,0x3ff1628c6fdffc53,1
1400
+ np.float64,0x3fe0b5f534a16bea,0x3ff23b4ed4c2b48e,1
1401
+ np.float64,0xbfe8eee93671ddd2,0x3ff51b85b3c50ae4,1
1402
+ np.float64,0xbfe8c22627f1844c,0x3ff50858787a3bfe,1
1403
+ np.float64,0x37bb83c86f771,0x3ff0000000000000,1
1404
+ np.float64,0xffb7827ffe2f0500,0x7ff0000000000000,1
1405
+ np.float64,0x64317940c864,0x3ff0000000000000,1
1406
+ np.float64,0x800430ecee6861db,0x3ff0000000000000,1
1407
+ np.float64,0x3fa4291fbc285240,0x3ff0032d0204f6dd,1
1408
+ np.float64,0xffec69f76af8d3ee,0x7ff0000000000000,1
1409
+ np.float64,0x3ff0000000000000,0x3ff8b07551d9f550,1
1410
+ np.float64,0x3fc4cf3c42299e79,0x3ff0363fb1d3c254,1
1411
+ np.float64,0x7fe0223a77e04474,0x7ff0000000000000,1
1412
+ np.float64,0x800a3d4fa4347aa0,0x3ff0000000000000,1
1413
+ np.float64,0x3fdd273f94ba4e7f,0x3ff1b05b686e6879,1
1414
+ np.float64,0x3feca79052f94f20,0x3ff6dadedfa283aa,1
1415
+ np.float64,0x5e7f6f80bcfef,0x3ff0000000000000,1
1416
+ np.float64,0xbfef035892fe06b1,0x3ff81efb39cbeba2,1
1417
+ np.float64,0x3fee6c08e07cd812,0x3ff7caad952860a1,1
1418
+ np.float64,0xffeda715877b4e2a,0x7ff0000000000000,1
1419
+ np.float64,0x800580286b0b0052,0x3ff0000000000000,1
1420
+ np.float64,0x800703a73fee074f,0x3ff0000000000000,1
1421
+ np.float64,0xbfccf96a6639f2d4,0x3ff0696330a60832,1
1422
+ np.float64,0x7feb408442368108,0x7ff0000000000000,1
1423
+ np.float64,0x3fedc87a46fb90f5,0x3ff771e3635649a9,1
1424
+ np.float64,0x3fd8297b773052f7,0x3ff12762bc0cea76,1
1425
+ np.float64,0x3fee41bb03fc8376,0x3ff7b37b2da48ab4,1
1426
+ np.float64,0xbfe2b05a226560b4,0x3ff2cea17ae7c528,1
1427
+ np.float64,0xbfd2e92cf2a5d25a,0x3ff0b41d605ced61,1
1428
+ np.float64,0x4817f03a902ff,0x3ff0000000000000,1
1429
+ np.float64,0x8c9d4f0d193aa,0x3ff0000000000000,1