numpy 2.4.2__cp313-cp313t-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (929) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +108 -0
  3. numpy/__init__.cython-30.pxd +1242 -0
  4. numpy/__init__.pxd +1155 -0
  5. numpy/__init__.py +942 -0
  6. numpy/__init__.pyi +6202 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +206 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +203 -0
  12. numpy/_core/__init__.pyi +666 -0
  13. numpy/_core/_add_newdocs.py +7151 -0
  14. numpy/_core/_add_newdocs.pyi +2 -0
  15. numpy/_core/_add_newdocs_scalars.py +381 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +130 -0
  18. numpy/_core/_asarray.pyi +43 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +56 -0
  21. numpy/_core/_dtype_ctypes.py +120 -0
  22. numpy/_core/_dtype_ctypes.pyi +83 -0
  23. numpy/_core/_exceptions.py +162 -0
  24. numpy/_core/_exceptions.pyi +54 -0
  25. numpy/_core/_internal.py +968 -0
  26. numpy/_core/_internal.pyi +61 -0
  27. numpy/_core/_methods.py +252 -0
  28. numpy/_core/_methods.pyi +22 -0
  29. numpy/_core/_multiarray_tests.cp313t-win32.lib +0 -0
  30. numpy/_core/_multiarray_tests.cp313t-win32.pyd +0 -0
  31. numpy/_core/_multiarray_umath.cp313t-win32.lib +0 -0
  32. numpy/_core/_multiarray_umath.cp313t-win32.pyd +0 -0
  33. numpy/_core/_operand_flag_tests.cp313t-win32.lib +0 -0
  34. numpy/_core/_operand_flag_tests.cp313t-win32.pyd +0 -0
  35. numpy/_core/_rational_tests.cp313t-win32.lib +0 -0
  36. numpy/_core/_rational_tests.cp313t-win32.pyd +0 -0
  37. numpy/_core/_simd.cp313t-win32.lib +0 -0
  38. numpy/_core/_simd.cp313t-win32.pyd +0 -0
  39. numpy/_core/_simd.pyi +35 -0
  40. numpy/_core/_string_helpers.py +100 -0
  41. numpy/_core/_string_helpers.pyi +12 -0
  42. numpy/_core/_struct_ufunc_tests.cp313t-win32.lib +0 -0
  43. numpy/_core/_struct_ufunc_tests.cp313t-win32.pyd +0 -0
  44. numpy/_core/_type_aliases.py +131 -0
  45. numpy/_core/_type_aliases.pyi +86 -0
  46. numpy/_core/_ufunc_config.py +515 -0
  47. numpy/_core/_ufunc_config.pyi +69 -0
  48. numpy/_core/_umath_tests.cp313t-win32.lib +0 -0
  49. numpy/_core/_umath_tests.cp313t-win32.pyd +0 -0
  50. numpy/_core/_umath_tests.pyi +47 -0
  51. numpy/_core/arrayprint.py +1779 -0
  52. numpy/_core/arrayprint.pyi +158 -0
  53. numpy/_core/cversions.py +13 -0
  54. numpy/_core/defchararray.py +1414 -0
  55. numpy/_core/defchararray.pyi +1150 -0
  56. numpy/_core/einsumfunc.py +1650 -0
  57. numpy/_core/einsumfunc.pyi +184 -0
  58. numpy/_core/fromnumeric.py +4233 -0
  59. numpy/_core/fromnumeric.pyi +1735 -0
  60. numpy/_core/function_base.py +547 -0
  61. numpy/_core/function_base.pyi +276 -0
  62. numpy/_core/getlimits.py +462 -0
  63. numpy/_core/getlimits.pyi +124 -0
  64. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  65. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  66. numpy/_core/include/numpy/__ufunc_api.c +55 -0
  67. numpy/_core/include/numpy/__ufunc_api.h +349 -0
  68. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  69. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  70. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  71. numpy/_core/include/numpy/arrayobject.h +7 -0
  72. numpy/_core/include/numpy/arrayscalars.h +198 -0
  73. numpy/_core/include/numpy/dtype_api.h +547 -0
  74. numpy/_core/include/numpy/halffloat.h +70 -0
  75. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  76. numpy/_core/include/numpy/ndarraytypes.h +1982 -0
  77. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  78. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  79. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  80. numpy/_core/include/numpy/npy_common.h +989 -0
  81. numpy/_core/include/numpy/npy_cpu.h +126 -0
  82. numpy/_core/include/numpy/npy_endian.h +79 -0
  83. numpy/_core/include/numpy/npy_math.h +602 -0
  84. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  85. numpy/_core/include/numpy/npy_os.h +42 -0
  86. numpy/_core/include/numpy/numpyconfig.h +185 -0
  87. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  88. numpy/_core/include/numpy/random/bitgen.h +20 -0
  89. numpy/_core/include/numpy/random/distributions.h +209 -0
  90. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  91. numpy/_core/include/numpy/ufuncobject.h +343 -0
  92. numpy/_core/include/numpy/utils.h +37 -0
  93. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  94. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  95. numpy/_core/lib/npymath.lib +0 -0
  96. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  97. numpy/_core/memmap.py +363 -0
  98. numpy/_core/memmap.pyi +3 -0
  99. numpy/_core/multiarray.py +1740 -0
  100. numpy/_core/multiarray.pyi +1328 -0
  101. numpy/_core/numeric.py +2771 -0
  102. numpy/_core/numeric.pyi +1276 -0
  103. numpy/_core/numerictypes.py +633 -0
  104. numpy/_core/numerictypes.pyi +196 -0
  105. numpy/_core/overrides.py +188 -0
  106. numpy/_core/overrides.pyi +47 -0
  107. numpy/_core/printoptions.py +32 -0
  108. numpy/_core/printoptions.pyi +28 -0
  109. numpy/_core/records.py +1088 -0
  110. numpy/_core/records.pyi +340 -0
  111. numpy/_core/shape_base.py +996 -0
  112. numpy/_core/shape_base.pyi +182 -0
  113. numpy/_core/strings.py +1813 -0
  114. numpy/_core/strings.pyi +536 -0
  115. numpy/_core/tests/_locales.py +72 -0
  116. numpy/_core/tests/_natype.py +144 -0
  117. numpy/_core/tests/data/astype_copy.pkl +0 -0
  118. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  119. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  120. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  121. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  122. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  123. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  124. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  125. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  127. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  128. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  129. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  130. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  131. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  132. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  134. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  135. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  136. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  137. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  138. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  139. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  140. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  141. numpy/_core/tests/examples/cython/checks.pyx +374 -0
  142. numpy/_core/tests/examples/cython/meson.build +43 -0
  143. numpy/_core/tests/examples/cython/setup.py +39 -0
  144. numpy/_core/tests/examples/limited_api/limited_api1.c +15 -0
  145. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  146. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  147. numpy/_core/tests/examples/limited_api/meson.build +63 -0
  148. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  149. numpy/_core/tests/test__exceptions.py +90 -0
  150. numpy/_core/tests/test_abc.py +54 -0
  151. numpy/_core/tests/test_api.py +655 -0
  152. numpy/_core/tests/test_argparse.py +90 -0
  153. numpy/_core/tests/test_array_api_info.py +113 -0
  154. numpy/_core/tests/test_array_coercion.py +928 -0
  155. numpy/_core/tests/test_array_interface.py +222 -0
  156. numpy/_core/tests/test_arraymethod.py +84 -0
  157. numpy/_core/tests/test_arrayobject.py +95 -0
  158. numpy/_core/tests/test_arrayprint.py +1324 -0
  159. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  160. numpy/_core/tests/test_casting_unittests.py +955 -0
  161. numpy/_core/tests/test_conversion_utils.py +209 -0
  162. numpy/_core/tests/test_cpu_dispatcher.py +48 -0
  163. numpy/_core/tests/test_cpu_features.py +450 -0
  164. numpy/_core/tests/test_custom_dtypes.py +393 -0
  165. numpy/_core/tests/test_cython.py +352 -0
  166. numpy/_core/tests/test_datetime.py +2792 -0
  167. numpy/_core/tests/test_defchararray.py +858 -0
  168. numpy/_core/tests/test_deprecations.py +460 -0
  169. numpy/_core/tests/test_dlpack.py +190 -0
  170. numpy/_core/tests/test_dtype.py +2110 -0
  171. numpy/_core/tests/test_einsum.py +1351 -0
  172. numpy/_core/tests/test_errstate.py +131 -0
  173. numpy/_core/tests/test_extint128.py +217 -0
  174. numpy/_core/tests/test_finfo.py +86 -0
  175. numpy/_core/tests/test_function_base.py +504 -0
  176. numpy/_core/tests/test_getlimits.py +171 -0
  177. numpy/_core/tests/test_half.py +593 -0
  178. numpy/_core/tests/test_hashtable.py +36 -0
  179. numpy/_core/tests/test_indexerrors.py +122 -0
  180. numpy/_core/tests/test_indexing.py +1692 -0
  181. numpy/_core/tests/test_item_selection.py +167 -0
  182. numpy/_core/tests/test_limited_api.py +102 -0
  183. numpy/_core/tests/test_longdouble.py +370 -0
  184. numpy/_core/tests/test_mem_overlap.py +933 -0
  185. numpy/_core/tests/test_mem_policy.py +453 -0
  186. numpy/_core/tests/test_memmap.py +248 -0
  187. numpy/_core/tests/test_multiarray.py +11008 -0
  188. numpy/_core/tests/test_multiprocessing.py +55 -0
  189. numpy/_core/tests/test_multithreading.py +406 -0
  190. numpy/_core/tests/test_nditer.py +3533 -0
  191. numpy/_core/tests/test_nep50_promotions.py +287 -0
  192. numpy/_core/tests/test_numeric.py +4301 -0
  193. numpy/_core/tests/test_numerictypes.py +650 -0
  194. numpy/_core/tests/test_overrides.py +800 -0
  195. numpy/_core/tests/test_print.py +202 -0
  196. numpy/_core/tests/test_protocols.py +46 -0
  197. numpy/_core/tests/test_records.py +544 -0
  198. numpy/_core/tests/test_regression.py +2677 -0
  199. numpy/_core/tests/test_scalar_ctors.py +203 -0
  200. numpy/_core/tests/test_scalar_methods.py +328 -0
  201. numpy/_core/tests/test_scalarbuffer.py +153 -0
  202. numpy/_core/tests/test_scalarinherit.py +105 -0
  203. numpy/_core/tests/test_scalarmath.py +1168 -0
  204. numpy/_core/tests/test_scalarprint.py +403 -0
  205. numpy/_core/tests/test_shape_base.py +904 -0
  206. numpy/_core/tests/test_simd.py +1345 -0
  207. numpy/_core/tests/test_simd_module.py +105 -0
  208. numpy/_core/tests/test_stringdtype.py +1855 -0
  209. numpy/_core/tests/test_strings.py +1523 -0
  210. numpy/_core/tests/test_ufunc.py +3405 -0
  211. numpy/_core/tests/test_umath.py +4962 -0
  212. numpy/_core/tests/test_umath_accuracy.py +132 -0
  213. numpy/_core/tests/test_umath_complex.py +631 -0
  214. numpy/_core/tests/test_unicode.py +369 -0
  215. numpy/_core/umath.py +60 -0
  216. numpy/_core/umath.pyi +232 -0
  217. numpy/_distributor_init.py +15 -0
  218. numpy/_distributor_init.pyi +1 -0
  219. numpy/_expired_attrs_2_0.py +78 -0
  220. numpy/_expired_attrs_2_0.pyi +61 -0
  221. numpy/_globals.py +121 -0
  222. numpy/_globals.pyi +17 -0
  223. numpy/_pyinstaller/__init__.py +0 -0
  224. numpy/_pyinstaller/__init__.pyi +0 -0
  225. numpy/_pyinstaller/hook-numpy.py +36 -0
  226. numpy/_pyinstaller/hook-numpy.pyi +6 -0
  227. numpy/_pyinstaller/tests/__init__.py +16 -0
  228. numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
  229. numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
  230. numpy/_pytesttester.py +201 -0
  231. numpy/_pytesttester.pyi +18 -0
  232. numpy/_typing/__init__.py +173 -0
  233. numpy/_typing/_add_docstring.py +153 -0
  234. numpy/_typing/_array_like.py +106 -0
  235. numpy/_typing/_char_codes.py +213 -0
  236. numpy/_typing/_dtype_like.py +114 -0
  237. numpy/_typing/_extended_precision.py +15 -0
  238. numpy/_typing/_nbit.py +19 -0
  239. numpy/_typing/_nbit_base.py +94 -0
  240. numpy/_typing/_nbit_base.pyi +39 -0
  241. numpy/_typing/_nested_sequence.py +79 -0
  242. numpy/_typing/_scalars.py +20 -0
  243. numpy/_typing/_shape.py +8 -0
  244. numpy/_typing/_ufunc.py +7 -0
  245. numpy/_typing/_ufunc.pyi +975 -0
  246. numpy/_utils/__init__.py +95 -0
  247. numpy/_utils/__init__.pyi +28 -0
  248. numpy/_utils/_convertions.py +18 -0
  249. numpy/_utils/_convertions.pyi +4 -0
  250. numpy/_utils/_inspect.py +192 -0
  251. numpy/_utils/_inspect.pyi +70 -0
  252. numpy/_utils/_pep440.py +486 -0
  253. numpy/_utils/_pep440.pyi +118 -0
  254. numpy/char/__init__.py +2 -0
  255. numpy/char/__init__.pyi +111 -0
  256. numpy/conftest.py +248 -0
  257. numpy/core/__init__.py +33 -0
  258. numpy/core/__init__.pyi +0 -0
  259. numpy/core/_dtype.py +10 -0
  260. numpy/core/_dtype.pyi +0 -0
  261. numpy/core/_dtype_ctypes.py +10 -0
  262. numpy/core/_dtype_ctypes.pyi +0 -0
  263. numpy/core/_internal.py +27 -0
  264. numpy/core/_multiarray_umath.py +57 -0
  265. numpy/core/_utils.py +21 -0
  266. numpy/core/arrayprint.py +10 -0
  267. numpy/core/defchararray.py +10 -0
  268. numpy/core/einsumfunc.py +10 -0
  269. numpy/core/fromnumeric.py +10 -0
  270. numpy/core/function_base.py +10 -0
  271. numpy/core/getlimits.py +10 -0
  272. numpy/core/multiarray.py +25 -0
  273. numpy/core/numeric.py +12 -0
  274. numpy/core/numerictypes.py +10 -0
  275. numpy/core/overrides.py +10 -0
  276. numpy/core/overrides.pyi +7 -0
  277. numpy/core/records.py +10 -0
  278. numpy/core/shape_base.py +10 -0
  279. numpy/core/umath.py +10 -0
  280. numpy/ctypeslib/__init__.py +13 -0
  281. numpy/ctypeslib/__init__.pyi +15 -0
  282. numpy/ctypeslib/_ctypeslib.py +603 -0
  283. numpy/ctypeslib/_ctypeslib.pyi +236 -0
  284. numpy/doc/ufuncs.py +138 -0
  285. numpy/dtypes.py +41 -0
  286. numpy/dtypes.pyi +630 -0
  287. numpy/exceptions.py +246 -0
  288. numpy/exceptions.pyi +27 -0
  289. numpy/f2py/__init__.py +86 -0
  290. numpy/f2py/__init__.pyi +5 -0
  291. numpy/f2py/__main__.py +5 -0
  292. numpy/f2py/__version__.py +1 -0
  293. numpy/f2py/__version__.pyi +1 -0
  294. numpy/f2py/_backends/__init__.py +9 -0
  295. numpy/f2py/_backends/__init__.pyi +5 -0
  296. numpy/f2py/_backends/_backend.py +44 -0
  297. numpy/f2py/_backends/_backend.pyi +46 -0
  298. numpy/f2py/_backends/_distutils.py +76 -0
  299. numpy/f2py/_backends/_distutils.pyi +13 -0
  300. numpy/f2py/_backends/_meson.py +244 -0
  301. numpy/f2py/_backends/_meson.pyi +62 -0
  302. numpy/f2py/_backends/meson.build.template +58 -0
  303. numpy/f2py/_isocbind.py +62 -0
  304. numpy/f2py/_isocbind.pyi +13 -0
  305. numpy/f2py/_src_pyf.py +247 -0
  306. numpy/f2py/_src_pyf.pyi +28 -0
  307. numpy/f2py/auxfuncs.py +1004 -0
  308. numpy/f2py/auxfuncs.pyi +262 -0
  309. numpy/f2py/capi_maps.py +811 -0
  310. numpy/f2py/capi_maps.pyi +33 -0
  311. numpy/f2py/cb_rules.py +665 -0
  312. numpy/f2py/cb_rules.pyi +17 -0
  313. numpy/f2py/cfuncs.py +1563 -0
  314. numpy/f2py/cfuncs.pyi +31 -0
  315. numpy/f2py/common_rules.py +143 -0
  316. numpy/f2py/common_rules.pyi +9 -0
  317. numpy/f2py/crackfortran.py +3725 -0
  318. numpy/f2py/crackfortran.pyi +266 -0
  319. numpy/f2py/diagnose.py +149 -0
  320. numpy/f2py/diagnose.pyi +1 -0
  321. numpy/f2py/f2py2e.py +788 -0
  322. numpy/f2py/f2py2e.pyi +74 -0
  323. numpy/f2py/f90mod_rules.py +269 -0
  324. numpy/f2py/f90mod_rules.pyi +16 -0
  325. numpy/f2py/func2subr.py +329 -0
  326. numpy/f2py/func2subr.pyi +7 -0
  327. numpy/f2py/rules.py +1629 -0
  328. numpy/f2py/rules.pyi +41 -0
  329. numpy/f2py/setup.cfg +3 -0
  330. numpy/f2py/src/fortranobject.c +1436 -0
  331. numpy/f2py/src/fortranobject.h +173 -0
  332. numpy/f2py/symbolic.py +1518 -0
  333. numpy/f2py/symbolic.pyi +219 -0
  334. numpy/f2py/tests/__init__.py +16 -0
  335. numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
  336. numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
  337. numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
  338. numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
  339. numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
  340. numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
  341. numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
  342. numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
  343. numpy/f2py/tests/src/block_docstring/foo.f +6 -0
  344. numpy/f2py/tests/src/callback/foo.f +62 -0
  345. numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
  346. numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
  347. numpy/f2py/tests/src/callback/gh25211.f +10 -0
  348. numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
  349. numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
  350. numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
  351. numpy/f2py/tests/src/cli/hi77.f +3 -0
  352. numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
  353. numpy/f2py/tests/src/common/block.f +11 -0
  354. numpy/f2py/tests/src/common/gh19161.f90 +10 -0
  355. numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
  356. numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
  357. numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
  358. numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
  359. numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
  360. numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
  361. numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
  362. numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
  363. numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
  364. numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
  365. numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
  366. numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
  367. numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
  368. numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
  369. numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
  370. numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
  371. numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
  372. numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
  373. numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
  374. numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
  375. numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
  376. numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
  377. numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
  378. numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
  379. numpy/f2py/tests/src/kind/foo.f90 +20 -0
  380. numpy/f2py/tests/src/mixed/foo.f +5 -0
  381. numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
  382. numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
  383. numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
  384. numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
  385. numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
  386. numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
  387. numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
  388. numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
  389. numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
  390. numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
  391. numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
  392. numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
  393. numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
  394. numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
  395. numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
  396. numpy/f2py/tests/src/quoted_character/foo.f +14 -0
  397. numpy/f2py/tests/src/regression/AB.inc +1 -0
  398. numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
  399. numpy/f2py/tests/src/regression/datonly.f90 +17 -0
  400. numpy/f2py/tests/src/regression/f77comments.f +26 -0
  401. numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
  402. numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
  403. numpy/f2py/tests/src/regression/incfile.f90 +5 -0
  404. numpy/f2py/tests/src/regression/inout.f90 +9 -0
  405. numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
  406. numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
  407. numpy/f2py/tests/src/return_character/foo77.f +45 -0
  408. numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
  409. numpy/f2py/tests/src/return_complex/foo77.f +45 -0
  410. numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
  411. numpy/f2py/tests/src/return_integer/foo77.f +56 -0
  412. numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
  413. numpy/f2py/tests/src/return_logical/foo77.f +56 -0
  414. numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
  415. numpy/f2py/tests/src/return_real/foo77.f +45 -0
  416. numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
  417. numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
  418. numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
  419. numpy/f2py/tests/src/routines/subrout.f +4 -0
  420. numpy/f2py/tests/src/routines/subrout.pyf +10 -0
  421. numpy/f2py/tests/src/size/foo.f90 +44 -0
  422. numpy/f2py/tests/src/string/char.f90 +29 -0
  423. numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
  424. numpy/f2py/tests/src/string/gh24008.f +8 -0
  425. numpy/f2py/tests/src/string/gh24662.f90 +7 -0
  426. numpy/f2py/tests/src/string/gh25286.f90 +14 -0
  427. numpy/f2py/tests/src/string/gh25286.pyf +12 -0
  428. numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
  429. numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
  430. numpy/f2py/tests/src/string/string.f +12 -0
  431. numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
  432. numpy/f2py/tests/test_abstract_interface.py +26 -0
  433. numpy/f2py/tests/test_array_from_pyobj.py +678 -0
  434. numpy/f2py/tests/test_assumed_shape.py +50 -0
  435. numpy/f2py/tests/test_block_docstring.py +20 -0
  436. numpy/f2py/tests/test_callback.py +263 -0
  437. numpy/f2py/tests/test_character.py +641 -0
  438. numpy/f2py/tests/test_common.py +23 -0
  439. numpy/f2py/tests/test_crackfortran.py +421 -0
  440. numpy/f2py/tests/test_data.py +71 -0
  441. numpy/f2py/tests/test_docs.py +66 -0
  442. numpy/f2py/tests/test_f2cmap.py +17 -0
  443. numpy/f2py/tests/test_f2py2e.py +983 -0
  444. numpy/f2py/tests/test_isoc.py +56 -0
  445. numpy/f2py/tests/test_kind.py +52 -0
  446. numpy/f2py/tests/test_mixed.py +35 -0
  447. numpy/f2py/tests/test_modules.py +83 -0
  448. numpy/f2py/tests/test_parameter.py +129 -0
  449. numpy/f2py/tests/test_pyf_src.py +43 -0
  450. numpy/f2py/tests/test_quoted_character.py +18 -0
  451. numpy/f2py/tests/test_regression.py +187 -0
  452. numpy/f2py/tests/test_return_character.py +48 -0
  453. numpy/f2py/tests/test_return_complex.py +67 -0
  454. numpy/f2py/tests/test_return_integer.py +55 -0
  455. numpy/f2py/tests/test_return_logical.py +65 -0
  456. numpy/f2py/tests/test_return_real.py +109 -0
  457. numpy/f2py/tests/test_routines.py +29 -0
  458. numpy/f2py/tests/test_semicolon_split.py +75 -0
  459. numpy/f2py/tests/test_size.py +45 -0
  460. numpy/f2py/tests/test_string.py +100 -0
  461. numpy/f2py/tests/test_symbolic.py +500 -0
  462. numpy/f2py/tests/test_value_attrspec.py +15 -0
  463. numpy/f2py/tests/util.py +442 -0
  464. numpy/f2py/use_rules.py +99 -0
  465. numpy/f2py/use_rules.pyi +9 -0
  466. numpy/fft/__init__.py +213 -0
  467. numpy/fft/__init__.pyi +38 -0
  468. numpy/fft/_helper.py +235 -0
  469. numpy/fft/_helper.pyi +44 -0
  470. numpy/fft/_pocketfft.py +1693 -0
  471. numpy/fft/_pocketfft.pyi +137 -0
  472. numpy/fft/_pocketfft_umath.cp313t-win32.lib +0 -0
  473. numpy/fft/_pocketfft_umath.cp313t-win32.pyd +0 -0
  474. numpy/fft/tests/__init__.py +0 -0
  475. numpy/fft/tests/test_helper.py +167 -0
  476. numpy/fft/tests/test_pocketfft.py +589 -0
  477. numpy/lib/__init__.py +97 -0
  478. numpy/lib/__init__.pyi +52 -0
  479. numpy/lib/_array_utils_impl.py +62 -0
  480. numpy/lib/_array_utils_impl.pyi +10 -0
  481. numpy/lib/_arraypad_impl.py +926 -0
  482. numpy/lib/_arraypad_impl.pyi +88 -0
  483. numpy/lib/_arraysetops_impl.py +1158 -0
  484. numpy/lib/_arraysetops_impl.pyi +462 -0
  485. numpy/lib/_arrayterator_impl.py +224 -0
  486. numpy/lib/_arrayterator_impl.pyi +45 -0
  487. numpy/lib/_datasource.py +700 -0
  488. numpy/lib/_datasource.pyi +30 -0
  489. numpy/lib/_format_impl.py +1036 -0
  490. numpy/lib/_format_impl.pyi +56 -0
  491. numpy/lib/_function_base_impl.py +5760 -0
  492. numpy/lib/_function_base_impl.pyi +2324 -0
  493. numpy/lib/_histograms_impl.py +1085 -0
  494. numpy/lib/_histograms_impl.pyi +40 -0
  495. numpy/lib/_index_tricks_impl.py +1048 -0
  496. numpy/lib/_index_tricks_impl.pyi +267 -0
  497. numpy/lib/_iotools.py +900 -0
  498. numpy/lib/_iotools.pyi +116 -0
  499. numpy/lib/_nanfunctions_impl.py +2006 -0
  500. numpy/lib/_nanfunctions_impl.pyi +48 -0
  501. numpy/lib/_npyio_impl.py +2583 -0
  502. numpy/lib/_npyio_impl.pyi +299 -0
  503. numpy/lib/_polynomial_impl.py +1465 -0
  504. numpy/lib/_polynomial_impl.pyi +338 -0
  505. numpy/lib/_scimath_impl.py +642 -0
  506. numpy/lib/_scimath_impl.pyi +93 -0
  507. numpy/lib/_shape_base_impl.py +1289 -0
  508. numpy/lib/_shape_base_impl.pyi +236 -0
  509. numpy/lib/_stride_tricks_impl.py +582 -0
  510. numpy/lib/_stride_tricks_impl.pyi +73 -0
  511. numpy/lib/_twodim_base_impl.py +1201 -0
  512. numpy/lib/_twodim_base_impl.pyi +408 -0
  513. numpy/lib/_type_check_impl.py +710 -0
  514. numpy/lib/_type_check_impl.pyi +348 -0
  515. numpy/lib/_ufunclike_impl.py +199 -0
  516. numpy/lib/_ufunclike_impl.pyi +60 -0
  517. numpy/lib/_user_array_impl.py +310 -0
  518. numpy/lib/_user_array_impl.pyi +226 -0
  519. numpy/lib/_utils_impl.py +784 -0
  520. numpy/lib/_utils_impl.pyi +22 -0
  521. numpy/lib/_version.py +153 -0
  522. numpy/lib/_version.pyi +17 -0
  523. numpy/lib/array_utils.py +7 -0
  524. numpy/lib/array_utils.pyi +6 -0
  525. numpy/lib/format.py +24 -0
  526. numpy/lib/format.pyi +24 -0
  527. numpy/lib/introspect.py +94 -0
  528. numpy/lib/introspect.pyi +3 -0
  529. numpy/lib/mixins.py +180 -0
  530. numpy/lib/mixins.pyi +78 -0
  531. numpy/lib/npyio.py +1 -0
  532. numpy/lib/npyio.pyi +5 -0
  533. numpy/lib/recfunctions.py +1681 -0
  534. numpy/lib/recfunctions.pyi +444 -0
  535. numpy/lib/scimath.py +13 -0
  536. numpy/lib/scimath.pyi +12 -0
  537. numpy/lib/stride_tricks.py +1 -0
  538. numpy/lib/stride_tricks.pyi +4 -0
  539. numpy/lib/tests/__init__.py +0 -0
  540. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  541. numpy/lib/tests/data/py2-objarr.npy +0 -0
  542. numpy/lib/tests/data/py2-objarr.npz +0 -0
  543. numpy/lib/tests/data/py3-objarr.npy +0 -0
  544. numpy/lib/tests/data/py3-objarr.npz +0 -0
  545. numpy/lib/tests/data/python3.npy +0 -0
  546. numpy/lib/tests/data/win64python2.npy +0 -0
  547. numpy/lib/tests/test__datasource.py +328 -0
  548. numpy/lib/tests/test__iotools.py +358 -0
  549. numpy/lib/tests/test__version.py +64 -0
  550. numpy/lib/tests/test_array_utils.py +32 -0
  551. numpy/lib/tests/test_arraypad.py +1427 -0
  552. numpy/lib/tests/test_arraysetops.py +1302 -0
  553. numpy/lib/tests/test_arrayterator.py +45 -0
  554. numpy/lib/tests/test_format.py +1054 -0
  555. numpy/lib/tests/test_function_base.py +4756 -0
  556. numpy/lib/tests/test_histograms.py +855 -0
  557. numpy/lib/tests/test_index_tricks.py +693 -0
  558. numpy/lib/tests/test_io.py +2857 -0
  559. numpy/lib/tests/test_loadtxt.py +1099 -0
  560. numpy/lib/tests/test_mixins.py +215 -0
  561. numpy/lib/tests/test_nanfunctions.py +1438 -0
  562. numpy/lib/tests/test_packbits.py +376 -0
  563. numpy/lib/tests/test_polynomial.py +325 -0
  564. numpy/lib/tests/test_recfunctions.py +1042 -0
  565. numpy/lib/tests/test_regression.py +231 -0
  566. numpy/lib/tests/test_shape_base.py +813 -0
  567. numpy/lib/tests/test_stride_tricks.py +655 -0
  568. numpy/lib/tests/test_twodim_base.py +559 -0
  569. numpy/lib/tests/test_type_check.py +473 -0
  570. numpy/lib/tests/test_ufunclike.py +97 -0
  571. numpy/lib/tests/test_utils.py +80 -0
  572. numpy/lib/user_array.py +1 -0
  573. numpy/lib/user_array.pyi +1 -0
  574. numpy/linalg/__init__.py +95 -0
  575. numpy/linalg/__init__.pyi +71 -0
  576. numpy/linalg/_linalg.py +3657 -0
  577. numpy/linalg/_linalg.pyi +548 -0
  578. numpy/linalg/_umath_linalg.cp313t-win32.lib +0 -0
  579. numpy/linalg/_umath_linalg.cp313t-win32.pyd +0 -0
  580. numpy/linalg/_umath_linalg.pyi +60 -0
  581. numpy/linalg/lapack_lite.cp313t-win32.lib +0 -0
  582. numpy/linalg/lapack_lite.cp313t-win32.pyd +0 -0
  583. numpy/linalg/lapack_lite.pyi +143 -0
  584. numpy/linalg/tests/__init__.py +0 -0
  585. numpy/linalg/tests/test_deprecations.py +21 -0
  586. numpy/linalg/tests/test_linalg.py +2442 -0
  587. numpy/linalg/tests/test_regression.py +182 -0
  588. numpy/ma/API_CHANGES.txt +135 -0
  589. numpy/ma/LICENSE +24 -0
  590. numpy/ma/README.rst +236 -0
  591. numpy/ma/__init__.py +53 -0
  592. numpy/ma/__init__.pyi +458 -0
  593. numpy/ma/core.py +8929 -0
  594. numpy/ma/core.pyi +3733 -0
  595. numpy/ma/extras.py +2266 -0
  596. numpy/ma/extras.pyi +297 -0
  597. numpy/ma/mrecords.py +762 -0
  598. numpy/ma/mrecords.pyi +96 -0
  599. numpy/ma/tests/__init__.py +0 -0
  600. numpy/ma/tests/test_arrayobject.py +40 -0
  601. numpy/ma/tests/test_core.py +6008 -0
  602. numpy/ma/tests/test_deprecations.py +65 -0
  603. numpy/ma/tests/test_extras.py +1945 -0
  604. numpy/ma/tests/test_mrecords.py +495 -0
  605. numpy/ma/tests/test_old_ma.py +939 -0
  606. numpy/ma/tests/test_regression.py +83 -0
  607. numpy/ma/tests/test_subclassing.py +469 -0
  608. numpy/ma/testutils.py +294 -0
  609. numpy/ma/testutils.pyi +69 -0
  610. numpy/matlib.py +380 -0
  611. numpy/matlib.pyi +580 -0
  612. numpy/matrixlib/__init__.py +12 -0
  613. numpy/matrixlib/__init__.pyi +3 -0
  614. numpy/matrixlib/defmatrix.py +1119 -0
  615. numpy/matrixlib/defmatrix.pyi +218 -0
  616. numpy/matrixlib/tests/__init__.py +0 -0
  617. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  618. numpy/matrixlib/tests/test_interaction.py +360 -0
  619. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  620. numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
  621. numpy/matrixlib/tests/test_multiarray.py +17 -0
  622. numpy/matrixlib/tests/test_numeric.py +18 -0
  623. numpy/matrixlib/tests/test_regression.py +31 -0
  624. numpy/polynomial/__init__.py +187 -0
  625. numpy/polynomial/__init__.pyi +31 -0
  626. numpy/polynomial/_polybase.py +1191 -0
  627. numpy/polynomial/_polybase.pyi +262 -0
  628. numpy/polynomial/_polytypes.pyi +501 -0
  629. numpy/polynomial/chebyshev.py +2001 -0
  630. numpy/polynomial/chebyshev.pyi +180 -0
  631. numpy/polynomial/hermite.py +1738 -0
  632. numpy/polynomial/hermite.pyi +106 -0
  633. numpy/polynomial/hermite_e.py +1640 -0
  634. numpy/polynomial/hermite_e.pyi +106 -0
  635. numpy/polynomial/laguerre.py +1673 -0
  636. numpy/polynomial/laguerre.pyi +100 -0
  637. numpy/polynomial/legendre.py +1603 -0
  638. numpy/polynomial/legendre.pyi +100 -0
  639. numpy/polynomial/polynomial.py +1625 -0
  640. numpy/polynomial/polynomial.pyi +109 -0
  641. numpy/polynomial/polyutils.py +759 -0
  642. numpy/polynomial/polyutils.pyi +307 -0
  643. numpy/polynomial/tests/__init__.py +0 -0
  644. numpy/polynomial/tests/test_chebyshev.py +618 -0
  645. numpy/polynomial/tests/test_classes.py +613 -0
  646. numpy/polynomial/tests/test_hermite.py +553 -0
  647. numpy/polynomial/tests/test_hermite_e.py +554 -0
  648. numpy/polynomial/tests/test_laguerre.py +535 -0
  649. numpy/polynomial/tests/test_legendre.py +566 -0
  650. numpy/polynomial/tests/test_polynomial.py +691 -0
  651. numpy/polynomial/tests/test_polyutils.py +123 -0
  652. numpy/polynomial/tests/test_printing.py +557 -0
  653. numpy/polynomial/tests/test_symbol.py +217 -0
  654. numpy/py.typed +0 -0
  655. numpy/random/LICENSE.md +71 -0
  656. numpy/random/__init__.pxd +14 -0
  657. numpy/random/__init__.py +213 -0
  658. numpy/random/__init__.pyi +124 -0
  659. numpy/random/_bounded_integers.cp313t-win32.lib +0 -0
  660. numpy/random/_bounded_integers.cp313t-win32.pyd +0 -0
  661. numpy/random/_bounded_integers.pxd +38 -0
  662. numpy/random/_bounded_integers.pyi +1 -0
  663. numpy/random/_common.cp313t-win32.lib +0 -0
  664. numpy/random/_common.cp313t-win32.pyd +0 -0
  665. numpy/random/_common.pxd +110 -0
  666. numpy/random/_common.pyi +16 -0
  667. numpy/random/_examples/cffi/extending.py +44 -0
  668. numpy/random/_examples/cffi/parse.py +53 -0
  669. numpy/random/_examples/cython/extending.pyx +77 -0
  670. numpy/random/_examples/cython/extending_distributions.pyx +117 -0
  671. numpy/random/_examples/cython/meson.build +53 -0
  672. numpy/random/_examples/numba/extending.py +86 -0
  673. numpy/random/_examples/numba/extending_distributions.py +67 -0
  674. numpy/random/_generator.cp313t-win32.lib +0 -0
  675. numpy/random/_generator.cp313t-win32.pyd +0 -0
  676. numpy/random/_generator.pyi +862 -0
  677. numpy/random/_mt19937.cp313t-win32.lib +0 -0
  678. numpy/random/_mt19937.cp313t-win32.pyd +0 -0
  679. numpy/random/_mt19937.pyi +27 -0
  680. numpy/random/_pcg64.cp313t-win32.lib +0 -0
  681. numpy/random/_pcg64.cp313t-win32.pyd +0 -0
  682. numpy/random/_pcg64.pyi +41 -0
  683. numpy/random/_philox.cp313t-win32.lib +0 -0
  684. numpy/random/_philox.cp313t-win32.pyd +0 -0
  685. numpy/random/_philox.pyi +36 -0
  686. numpy/random/_pickle.py +88 -0
  687. numpy/random/_pickle.pyi +43 -0
  688. numpy/random/_sfc64.cp313t-win32.lib +0 -0
  689. numpy/random/_sfc64.cp313t-win32.pyd +0 -0
  690. numpy/random/_sfc64.pyi +25 -0
  691. numpy/random/bit_generator.cp313t-win32.lib +0 -0
  692. numpy/random/bit_generator.cp313t-win32.pyd +0 -0
  693. numpy/random/bit_generator.pxd +40 -0
  694. numpy/random/bit_generator.pyi +123 -0
  695. numpy/random/c_distributions.pxd +119 -0
  696. numpy/random/lib/npyrandom.lib +0 -0
  697. numpy/random/mtrand.cp313t-win32.lib +0 -0
  698. numpy/random/mtrand.cp313t-win32.pyd +0 -0
  699. numpy/random/mtrand.pyi +759 -0
  700. numpy/random/tests/__init__.py +0 -0
  701. numpy/random/tests/data/__init__.py +0 -0
  702. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  703. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  704. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  705. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  706. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  707. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  708. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  709. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  710. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  711. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  712. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  713. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  714. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  715. numpy/random/tests/test_direct.py +595 -0
  716. numpy/random/tests/test_extending.py +131 -0
  717. numpy/random/tests/test_generator_mt19937.py +2825 -0
  718. numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
  719. numpy/random/tests/test_random.py +1724 -0
  720. numpy/random/tests/test_randomstate.py +2099 -0
  721. numpy/random/tests/test_randomstate_regression.py +213 -0
  722. numpy/random/tests/test_regression.py +175 -0
  723. numpy/random/tests/test_seed_sequence.py +79 -0
  724. numpy/random/tests/test_smoke.py +882 -0
  725. numpy/rec/__init__.py +2 -0
  726. numpy/rec/__init__.pyi +23 -0
  727. numpy/strings/__init__.py +2 -0
  728. numpy/strings/__init__.pyi +97 -0
  729. numpy/testing/__init__.py +22 -0
  730. numpy/testing/__init__.pyi +107 -0
  731. numpy/testing/_private/__init__.py +0 -0
  732. numpy/testing/_private/__init__.pyi +0 -0
  733. numpy/testing/_private/extbuild.py +250 -0
  734. numpy/testing/_private/extbuild.pyi +25 -0
  735. numpy/testing/_private/utils.py +2830 -0
  736. numpy/testing/_private/utils.pyi +505 -0
  737. numpy/testing/overrides.py +84 -0
  738. numpy/testing/overrides.pyi +10 -0
  739. numpy/testing/print_coercion_tables.py +207 -0
  740. numpy/testing/print_coercion_tables.pyi +26 -0
  741. numpy/testing/tests/__init__.py +0 -0
  742. numpy/testing/tests/test_utils.py +2123 -0
  743. numpy/tests/__init__.py +0 -0
  744. numpy/tests/test__all__.py +10 -0
  745. numpy/tests/test_configtool.py +51 -0
  746. numpy/tests/test_ctypeslib.py +383 -0
  747. numpy/tests/test_lazyloading.py +42 -0
  748. numpy/tests/test_matlib.py +59 -0
  749. numpy/tests/test_numpy_config.py +47 -0
  750. numpy/tests/test_numpy_version.py +54 -0
  751. numpy/tests/test_public_api.py +807 -0
  752. numpy/tests/test_reloading.py +76 -0
  753. numpy/tests/test_scripts.py +48 -0
  754. numpy/tests/test_warnings.py +79 -0
  755. numpy/typing/__init__.py +233 -0
  756. numpy/typing/__init__.pyi +3 -0
  757. numpy/typing/mypy_plugin.py +200 -0
  758. numpy/typing/tests/__init__.py +0 -0
  759. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  760. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  761. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  762. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  763. numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
  764. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  765. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  766. numpy/typing/tests/data/fail/char.pyi +63 -0
  767. numpy/typing/tests/data/fail/chararray.pyi +61 -0
  768. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  769. numpy/typing/tests/data/fail/constants.pyi +3 -0
  770. numpy/typing/tests/data/fail/datasource.pyi +16 -0
  771. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  772. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  773. numpy/typing/tests/data/fail/flatiter.pyi +38 -0
  774. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  775. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  776. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  777. numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
  778. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  779. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  780. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  781. numpy/typing/tests/data/fail/linalg.pyi +52 -0
  782. numpy/typing/tests/data/fail/ma.pyi +155 -0
  783. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  784. numpy/typing/tests/data/fail/modules.pyi +17 -0
  785. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  786. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  787. numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
  788. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  789. numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
  790. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  791. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  792. numpy/typing/tests/data/fail/random.pyi +62 -0
  793. numpy/typing/tests/data/fail/rec.pyi +17 -0
  794. numpy/typing/tests/data/fail/scalars.pyi +86 -0
  795. numpy/typing/tests/data/fail/shape.pyi +7 -0
  796. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  797. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  798. numpy/typing/tests/data/fail/strings.pyi +52 -0
  799. numpy/typing/tests/data/fail/testing.pyi +28 -0
  800. numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
  801. numpy/typing/tests/data/fail/type_check.pyi +12 -0
  802. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  803. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  804. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  805. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  806. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  807. numpy/typing/tests/data/mypy.ini +8 -0
  808. numpy/typing/tests/data/pass/arithmetic.py +614 -0
  809. numpy/typing/tests/data/pass/array_constructors.py +138 -0
  810. numpy/typing/tests/data/pass/array_like.py +43 -0
  811. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  812. numpy/typing/tests/data/pass/arrayterator.py +28 -0
  813. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  814. numpy/typing/tests/data/pass/comparisons.py +316 -0
  815. numpy/typing/tests/data/pass/dtype.py +57 -0
  816. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  817. numpy/typing/tests/data/pass/flatiter.py +26 -0
  818. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  819. numpy/typing/tests/data/pass/index_tricks.py +62 -0
  820. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  821. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  822. numpy/typing/tests/data/pass/lib_version.py +18 -0
  823. numpy/typing/tests/data/pass/literal.py +52 -0
  824. numpy/typing/tests/data/pass/ma.py +199 -0
  825. numpy/typing/tests/data/pass/mod.py +149 -0
  826. numpy/typing/tests/data/pass/modules.py +45 -0
  827. numpy/typing/tests/data/pass/multiarray.py +77 -0
  828. numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
  829. numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
  830. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  831. numpy/typing/tests/data/pass/nditer.py +4 -0
  832. numpy/typing/tests/data/pass/numeric.py +90 -0
  833. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  834. numpy/typing/tests/data/pass/random.py +1498 -0
  835. numpy/typing/tests/data/pass/recfunctions.py +164 -0
  836. numpy/typing/tests/data/pass/scalars.py +249 -0
  837. numpy/typing/tests/data/pass/shape.py +19 -0
  838. numpy/typing/tests/data/pass/simple.py +170 -0
  839. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  840. numpy/typing/tests/data/pass/ufunclike.py +52 -0
  841. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  842. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  843. numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
  844. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  845. numpy/typing/tests/data/reveal/array_constructors.pyi +279 -0
  846. numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
  847. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  848. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  849. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  850. numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
  851. numpy/typing/tests/data/reveal/char.pyi +225 -0
  852. numpy/typing/tests/data/reveal/chararray.pyi +138 -0
  853. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  854. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  855. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  856. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  857. numpy/typing/tests/data/reveal/dtype.pyi +132 -0
  858. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  859. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  860. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  861. numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
  862. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  863. numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
  864. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  865. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  866. numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
  867. numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
  868. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  869. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  870. numpy/typing/tests/data/reveal/linalg.pyi +154 -0
  871. numpy/typing/tests/data/reveal/ma.pyi +1098 -0
  872. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  873. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  874. numpy/typing/tests/data/reveal/mod.pyi +178 -0
  875. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  876. numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
  877. numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
  878. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
  879. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
  880. numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
  881. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
  882. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  883. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  884. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  885. numpy/typing/tests/data/reveal/numeric.pyi +170 -0
  886. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  887. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
  888. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
  889. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  890. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  891. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  892. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  893. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  894. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  895. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  896. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  897. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  898. numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
  899. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  900. numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
  901. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  902. numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
  903. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  904. numpy/typing/tests/test_isfile.py +38 -0
  905. numpy/typing/tests/test_runtime.py +110 -0
  906. numpy/typing/tests/test_typing.py +205 -0
  907. numpy/version.py +11 -0
  908. numpy/version.pyi +9 -0
  909. numpy-2.4.2.dist-info/METADATA +139 -0
  910. numpy-2.4.2.dist-info/RECORD +929 -0
  911. numpy-2.4.2.dist-info/WHEEL +4 -0
  912. numpy-2.4.2.dist-info/entry_points.txt +13 -0
  913. numpy-2.4.2.dist-info/licenses/LICENSE.txt +914 -0
  914. numpy-2.4.2.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
  915. numpy-2.4.2.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
  916. numpy-2.4.2.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
  917. numpy-2.4.2.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
  918. numpy-2.4.2.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
  919. numpy-2.4.2.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
  920. numpy-2.4.2.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
  921. numpy-2.4.2.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
  922. numpy-2.4.2.dist-info/licenses/numpy/ma/LICENSE +24 -0
  923. numpy-2.4.2.dist-info/licenses/numpy/random/LICENSE.md +71 -0
  924. numpy-2.4.2.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
  925. numpy-2.4.2.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
  926. numpy-2.4.2.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
  927. numpy-2.4.2.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
  928. numpy-2.4.2.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
  929. numpy-2.4.2.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
@@ -0,0 +1,1429 @@
1
+ dtype,input,output,ulperrortol
2
+ np.float32,0xbe26ebb0,0xbe25752f,2
3
+ np.float32,0xbe22ecc0,0xbe219054,2
4
+ np.float32,0x8010a6b3,0x8010a6b3,2
5
+ np.float32,0x3135da,0x3135da,2
6
+ np.float32,0xbe982afc,0xbe93d727,2
7
+ np.float32,0x16a51f,0x16a51f,2
8
+ np.float32,0x491e56,0x491e56,2
9
+ np.float32,0x4bf7ca,0x4bf7ca,2
10
+ np.float32,0x3eebc21c,0x3edc65b2,2
11
+ np.float32,0x80155c94,0x80155c94,2
12
+ np.float32,0x3e14f626,0x3e13eb6a,2
13
+ np.float32,0x801a238f,0x801a238f,2
14
+ np.float32,0xbde33a80,0xbde24cf9,2
15
+ np.float32,0xbef8439c,0xbee67a51,2
16
+ np.float32,0x7f60d0a5,0x3f800000,2
17
+ np.float32,0x190ee3,0x190ee3,2
18
+ np.float32,0x80759113,0x80759113,2
19
+ np.float32,0x800afa9f,0x800afa9f,2
20
+ np.float32,0x7110cf,0x7110cf,2
21
+ np.float32,0x3cf709f0,0x3cf6f6c6,2
22
+ np.float32,0x3ef58da4,0x3ee44fa7,2
23
+ np.float32,0xbf220ff2,0xbf0f662c,2
24
+ np.float32,0xfd888078,0xbf800000,2
25
+ np.float32,0xbe324734,0xbe307f9b,2
26
+ np.float32,0x3eb5cb4f,0x3eae8560,2
27
+ np.float32,0xbf7e7d02,0xbf425493,2
28
+ np.float32,0x3ddcdcf0,0x3ddc02c2,2
29
+ np.float32,0x8026d27a,0x8026d27a,2
30
+ np.float32,0x3d4c0fb1,0x3d4be484,2
31
+ np.float32,0xbf27d2c9,0xbf134d7c,2
32
+ np.float32,0x8029ff80,0x8029ff80,2
33
+ np.float32,0x7f046d2c,0x3f800000,2
34
+ np.float32,0x13f94b,0x13f94b,2
35
+ np.float32,0x7f4ff922,0x3f800000,2
36
+ np.float32,0x3f4ea2ed,0x3f2b03e4,2
37
+ np.float32,0x3e7211f0,0x3e6da8cf,2
38
+ np.float32,0x7f39d0cf,0x3f800000,2
39
+ np.float32,0xfee57fc6,0xbf800000,2
40
+ np.float32,0xff6fb326,0xbf800000,2
41
+ np.float32,0xff800000,0xbf800000,2
42
+ np.float32,0x3f0437a4,0x3ef32fcd,2
43
+ np.float32,0xff546d1e,0xbf800000,2
44
+ np.float32,0x3eb5645b,0x3eae2a5c,2
45
+ np.float32,0x3f08a6e5,0x3ef9ff8f,2
46
+ np.float32,0x80800000,0x80800000,2
47
+ np.float32,0x7f3413da,0x3f800000,2
48
+ np.float32,0xfd760140,0xbf800000,2
49
+ np.float32,0x7f3ad24a,0x3f800000,2
50
+ np.float32,0xbf56e812,0xbf2f7f14,2
51
+ np.float32,0xbece0338,0xbec3920a,2
52
+ np.float32,0xbeede54a,0xbede22ae,2
53
+ np.float32,0x7eaeb215,0x3f800000,2
54
+ np.float32,0x3c213c00,0x3c213aab,2
55
+ np.float32,0x7eaac217,0x3f800000,2
56
+ np.float32,0xbf2f740e,0xbf1851a6,2
57
+ np.float32,0x7f6ca5b8,0x3f800000,2
58
+ np.float32,0xff42ce95,0xbf800000,2
59
+ np.float32,0x802e4189,0x802e4189,2
60
+ np.float32,0x80000001,0x80000001,2
61
+ np.float32,0xbf31f298,0xbf19ebbe,2
62
+ np.float32,0x3dcb0e6c,0x3dca64c1,2
63
+ np.float32,0xbf29599c,0xbf145204,2
64
+ np.float32,0x2e33f2,0x2e33f2,2
65
+ np.float32,0x1c11e7,0x1c11e7,2
66
+ np.float32,0x3f3b188d,0x3f1fa302,2
67
+ np.float32,0x113300,0x113300,2
68
+ np.float32,0x8054589e,0x8054589e,2
69
+ np.float32,0x2a9e69,0x2a9e69,2
70
+ np.float32,0xff513af7,0xbf800000,2
71
+ np.float32,0x7f2e987a,0x3f800000,2
72
+ np.float32,0x807cd426,0x807cd426,2
73
+ np.float32,0x7f0dc4e4,0x3f800000,2
74
+ np.float32,0x7e7c0d56,0x3f800000,2
75
+ np.float32,0x5cb076,0x5cb076,2
76
+ np.float32,0x80576426,0x80576426,2
77
+ np.float32,0xff616222,0xbf800000,2
78
+ np.float32,0xbf7accb5,0xbf40c005,2
79
+ np.float32,0xfe4118c8,0xbf800000,2
80
+ np.float32,0x804b9327,0x804b9327,2
81
+ np.float32,0x3ed2b428,0x3ec79026,2
82
+ np.float32,0x3f4a048f,0x3f286d41,2
83
+ np.float32,0x800000,0x800000,2
84
+ np.float32,0x7efceb9f,0x3f800000,2
85
+ np.float32,0xbf5fe2d3,0xbf34246f,2
86
+ np.float32,0x807e086a,0x807e086a,2
87
+ np.float32,0x7ef5e856,0x3f800000,2
88
+ np.float32,0xfc546f00,0xbf800000,2
89
+ np.float32,0x3a65b890,0x3a65b88c,2
90
+ np.float32,0x800cfa70,0x800cfa70,2
91
+ np.float32,0x80672ea7,0x80672ea7,2
92
+ np.float32,0x3f2bf3f2,0x3f160a12,2
93
+ np.float32,0xbf0ab67e,0xbefd2004,2
94
+ np.float32,0x3f2a0bb4,0x3f14c824,2
95
+ np.float32,0xbeff5374,0xbeec12d7,2
96
+ np.float32,0xbf221b58,0xbf0f6dff,2
97
+ np.float32,0x7cc1f3,0x7cc1f3,2
98
+ np.float32,0x7f234e3c,0x3f800000,2
99
+ np.float32,0x3f60ff10,0x3f34b37d,2
100
+ np.float32,0xbdd957f0,0xbdd887fe,2
101
+ np.float32,0x801ce048,0x801ce048,2
102
+ np.float32,0x7f3a8f76,0x3f800000,2
103
+ np.float32,0xfdd13d08,0xbf800000,2
104
+ np.float32,0x3e9af4a4,0x3e966445,2
105
+ np.float32,0x1e55f3,0x1e55f3,2
106
+ np.float32,0x327905,0x327905,2
107
+ np.float32,0xbf03cf0b,0xbef28dad,2
108
+ np.float32,0x3f0223d3,0x3eeff4f4,2
109
+ np.float32,0xfdd96ff8,0xbf800000,2
110
+ np.float32,0x428db8,0x428db8,2
111
+ np.float32,0xbd74a200,0xbd7457a5,2
112
+ np.float32,0x2a63a3,0x2a63a3,2
113
+ np.float32,0x7e8aa9d7,0x3f800000,2
114
+ np.float32,0x7f50b810,0x3f800000,2
115
+ np.float32,0xbce5ec80,0xbce5dd0d,2
116
+ np.float32,0x54711,0x54711,2
117
+ np.float32,0x8074212a,0x8074212a,2
118
+ np.float32,0xbf13d0ec,0xbf0551b5,2
119
+ np.float32,0x80217f89,0x80217f89,2
120
+ np.float32,0x3f300824,0x3f18b12f,2
121
+ np.float32,0x7d252462,0x3f800000,2
122
+ np.float32,0x807a154c,0x807a154c,2
123
+ np.float32,0x8064d4b9,0x8064d4b9,2
124
+ np.float32,0x804543b4,0x804543b4,2
125
+ np.float32,0x4c269e,0x4c269e,2
126
+ np.float32,0xff39823b,0xbf800000,2
127
+ np.float32,0x3f5040b1,0x3f2be80b,2
128
+ np.float32,0xbf7028c1,0xbf3bfee5,2
129
+ np.float32,0x3e94eb78,0x3e90db93,2
130
+ np.float32,0x3ccc1b40,0x3ccc1071,2
131
+ np.float32,0xbe8796f0,0xbe8481a1,2
132
+ np.float32,0xfc767bc0,0xbf800000,2
133
+ np.float32,0xbdd81ed0,0xbdd75259,2
134
+ np.float32,0xbed31bfc,0xbec7e82d,2
135
+ np.float32,0xbf350a9e,0xbf1be1c6,2
136
+ np.float32,0x33d41f,0x33d41f,2
137
+ np.float32,0x3f73e076,0x3f3db0b5,2
138
+ np.float32,0x3f800000,0x3f42f7d6,2
139
+ np.float32,0xfee27c14,0xbf800000,2
140
+ np.float32,0x7f6e4388,0x3f800000,2
141
+ np.float32,0x4ea19b,0x4ea19b,2
142
+ np.float32,0xff2d75f2,0xbf800000,2
143
+ np.float32,0x7ee225ca,0x3f800000,2
144
+ np.float32,0x3f31cb4b,0x3f19d2a4,2
145
+ np.float32,0x80554a9d,0x80554a9d,2
146
+ np.float32,0x3f4d57fa,0x3f2a4c03,2
147
+ np.float32,0x3eac6a88,0x3ea62e72,2
148
+ np.float32,0x773520,0x773520,2
149
+ np.float32,0x8079c20a,0x8079c20a,2
150
+ np.float32,0xfeb1eb94,0xbf800000,2
151
+ np.float32,0xfe8d81c0,0xbf800000,2
152
+ np.float32,0xfeed6902,0xbf800000,2
153
+ np.float32,0x8066bb65,0x8066bb65,2
154
+ np.float32,0x7f800000,0x3f800000,2
155
+ np.float32,0x1,0x1,2
156
+ np.float32,0x3f2c66a4,0x3f16554a,2
157
+ np.float32,0x3cd231,0x3cd231,2
158
+ np.float32,0x3e932a64,0x3e8f3e0c,2
159
+ np.float32,0xbf3ab1c3,0xbf1f6420,2
160
+ np.float32,0xbc902b20,0xbc902751,2
161
+ np.float32,0x7dac0a5b,0x3f800000,2
162
+ np.float32,0x3f2b7e06,0x3f15bc93,2
163
+ np.float32,0x75de0,0x75de0,2
164
+ np.float32,0x8020b7bc,0x8020b7bc,2
165
+ np.float32,0x3f257cda,0x3f11bb6b,2
166
+ np.float32,0x807480e5,0x807480e5,2
167
+ np.float32,0xfe00d758,0xbf800000,2
168
+ np.float32,0xbd9b54e0,0xbd9b08cd,2
169
+ np.float32,0x4dfbe3,0x4dfbe3,2
170
+ np.float32,0xff645788,0xbf800000,2
171
+ np.float32,0xbe92c80a,0xbe8ee360,2
172
+ np.float32,0x3eb9b400,0x3eb1f77c,2
173
+ np.float32,0xff20b69c,0xbf800000,2
174
+ np.float32,0x623c28,0x623c28,2
175
+ np.float32,0xff235748,0xbf800000,2
176
+ np.float32,0xbf3bbc56,0xbf2006f3,2
177
+ np.float32,0x7e6f78b1,0x3f800000,2
178
+ np.float32,0x7e1584e9,0x3f800000,2
179
+ np.float32,0xff463423,0xbf800000,2
180
+ np.float32,0x8002861e,0x8002861e,2
181
+ np.float32,0xbf0491d8,0xbef3bb6a,2
182
+ np.float32,0x7ea3bc17,0x3f800000,2
183
+ np.float32,0xbedde7ea,0xbed0fb49,2
184
+ np.float32,0xbf4bac48,0xbf295c8b,2
185
+ np.float32,0xff28e276,0xbf800000,2
186
+ np.float32,0x7e8f3bf5,0x3f800000,2
187
+ np.float32,0xbf0a4a73,0xbefc7c9d,2
188
+ np.float32,0x7ec5bd96,0x3f800000,2
189
+ np.float32,0xbf4c22e8,0xbf299f2c,2
190
+ np.float32,0x3e3970a0,0x3e377064,2
191
+ np.float32,0x3ecb1118,0x3ec10c88,2
192
+ np.float32,0xff548a7a,0xbf800000,2
193
+ np.float32,0xfe8ec550,0xbf800000,2
194
+ np.float32,0x3e158985,0x3e147bb2,2
195
+ np.float32,0x7eb79ad7,0x3f800000,2
196
+ np.float32,0xbe811384,0xbe7cd1ab,2
197
+ np.float32,0xbdc4b9e8,0xbdc41f94,2
198
+ np.float32,0xe0fd5,0xe0fd5,2
199
+ np.float32,0x3f2485f2,0x3f11142b,2
200
+ np.float32,0xfdd3c3d8,0xbf800000,2
201
+ np.float32,0xfe8458e6,0xbf800000,2
202
+ np.float32,0x3f06e398,0x3ef74dd8,2
203
+ np.float32,0xff4752cf,0xbf800000,2
204
+ np.float32,0x6998e3,0x6998e3,2
205
+ np.float32,0x626751,0x626751,2
206
+ np.float32,0x806631d6,0x806631d6,2
207
+ np.float32,0xbf0c3cf4,0xbeff6c54,2
208
+ np.float32,0x802860f8,0x802860f8,2
209
+ np.float32,0xff2952cb,0xbf800000,2
210
+ np.float32,0xff31d40b,0xbf800000,2
211
+ np.float32,0x7c389473,0x3f800000,2
212
+ np.float32,0x3dcd2f1b,0x3dcc8010,2
213
+ np.float32,0x3d70c29f,0x3d707bbc,2
214
+ np.float32,0x3f6bd386,0x3f39f979,2
215
+ np.float32,0x1efec9,0x1efec9,2
216
+ np.float32,0x3f675518,0x3f37d338,2
217
+ np.float32,0x5fdbe3,0x5fdbe3,2
218
+ np.float32,0x5d684e,0x5d684e,2
219
+ np.float32,0xbedfe748,0xbed2a4c7,2
220
+ np.float32,0x3f0cb07a,0x3f000cdc,2
221
+ np.float32,0xbf77151e,0xbf3f1f5d,2
222
+ np.float32,0x7f038ea0,0x3f800000,2
223
+ np.float32,0x3ea91be9,0x3ea3376f,2
224
+ np.float32,0xbdf20738,0xbdf0e861,2
225
+ np.float32,0x807ea380,0x807ea380,2
226
+ np.float32,0x2760ca,0x2760ca,2
227
+ np.float32,0x7f20a544,0x3f800000,2
228
+ np.float32,0x76ed83,0x76ed83,2
229
+ np.float32,0x15a441,0x15a441,2
230
+ np.float32,0x74c76d,0x74c76d,2
231
+ np.float32,0xff3d5c2a,0xbf800000,2
232
+ np.float32,0x7f6a76a6,0x3f800000,2
233
+ np.float32,0x3eb87067,0x3eb0dabe,2
234
+ np.float32,0xbf515cfa,0xbf2c83af,2
235
+ np.float32,0xbdececc0,0xbdebdf9d,2
236
+ np.float32,0x7f51b7c2,0x3f800000,2
237
+ np.float32,0x3eb867ac,0x3eb0d30d,2
238
+ np.float32,0xff50fd84,0xbf800000,2
239
+ np.float32,0x806945e9,0x806945e9,2
240
+ np.float32,0x298eed,0x298eed,2
241
+ np.float32,0x441f53,0x441f53,2
242
+ np.float32,0x8066d4b0,0x8066d4b0,2
243
+ np.float32,0x3f6a479c,0x3f393dae,2
244
+ np.float32,0xbf6ce2a7,0xbf3a7921,2
245
+ np.float32,0x8064c3cf,0x8064c3cf,2
246
+ np.float32,0xbf2d8146,0xbf170dfd,2
247
+ np.float32,0x3b0e82,0x3b0e82,2
248
+ np.float32,0xbea97574,0xbea387dc,2
249
+ np.float32,0x67ad15,0x67ad15,2
250
+ np.float32,0xbf68478f,0xbf38485a,2
251
+ np.float32,0xff6f593b,0xbf800000,2
252
+ np.float32,0xbeda26f2,0xbecdd806,2
253
+ np.float32,0xbd216d50,0xbd2157ee,2
254
+ np.float32,0x7a8544db,0x3f800000,2
255
+ np.float32,0x801df20b,0x801df20b,2
256
+ np.float32,0xbe14ba24,0xbe13b0a8,2
257
+ np.float32,0xfdc6d8a8,0xbf800000,2
258
+ np.float32,0x1d6b49,0x1d6b49,2
259
+ np.float32,0x7f5ff1b8,0x3f800000,2
260
+ np.float32,0x3f75e032,0x3f3e9625,2
261
+ np.float32,0x7f2c5687,0x3f800000,2
262
+ np.float32,0x3d95fb6c,0x3d95b6ee,2
263
+ np.float32,0xbea515e4,0xbe9f97c8,2
264
+ np.float32,0x7f2b2cd7,0x3f800000,2
265
+ np.float32,0x3f076f7a,0x3ef8241e,2
266
+ np.float32,0x5178ca,0x5178ca,2
267
+ np.float32,0xbeb5976a,0xbeae5781,2
268
+ np.float32,0x3e3c3563,0x3e3a1e13,2
269
+ np.float32,0xbd208530,0xbd20702a,2
270
+ np.float32,0x3eb03b04,0x3ea995ef,2
271
+ np.float32,0x17fb9c,0x17fb9c,2
272
+ np.float32,0xfca68e40,0xbf800000,2
273
+ np.float32,0xbf5e7433,0xbf336a9f,2
274
+ np.float32,0xff5b8d3d,0xbf800000,2
275
+ np.float32,0x8003121d,0x8003121d,2
276
+ np.float32,0xbe6dd344,0xbe69a3b0,2
277
+ np.float32,0x67cc4,0x67cc4,2
278
+ np.float32,0x9b01d,0x9b01d,2
279
+ np.float32,0x127c13,0x127c13,2
280
+ np.float32,0xfea5e3d6,0xbf800000,2
281
+ np.float32,0xbdf5c610,0xbdf499c1,2
282
+ np.float32,0x3aff4c00,0x3aff4beb,2
283
+ np.float32,0x3b00afd0,0x3b00afc5,2
284
+ np.float32,0x479618,0x479618,2
285
+ np.float32,0x801cbd05,0x801cbd05,2
286
+ np.float32,0x3ec9249f,0x3ebf6579,2
287
+ np.float32,0x3535c4,0x3535c4,2
288
+ np.float32,0xbeb4f662,0xbeadc915,2
289
+ np.float32,0x8006fda6,0x8006fda6,2
290
+ np.float32,0xbf4f3097,0xbf2b5239,2
291
+ np.float32,0xbf3cb9a8,0xbf20a0e9,2
292
+ np.float32,0x32ced0,0x32ced0,2
293
+ np.float32,0x7ea34e76,0x3f800000,2
294
+ np.float32,0x80063046,0x80063046,2
295
+ np.float32,0x80727e8b,0x80727e8b,2
296
+ np.float32,0xfd6b5780,0xbf800000,2
297
+ np.float32,0x80109815,0x80109815,2
298
+ np.float32,0xfdcc8a78,0xbf800000,2
299
+ np.float32,0x81562,0x81562,2
300
+ np.float32,0x803dfacc,0x803dfacc,2
301
+ np.float32,0xbe204318,0xbe1ef75f,2
302
+ np.float32,0xbf745d34,0xbf3de8e2,2
303
+ np.float32,0xff13fdcc,0xbf800000,2
304
+ np.float32,0x7f75ba8c,0x3f800000,2
305
+ np.float32,0x806c04b4,0x806c04b4,2
306
+ np.float32,0x3ec61ca6,0x3ebcc877,2
307
+ np.float32,0xbeaea984,0xbea8301f,2
308
+ np.float32,0xbf4dcd0e,0xbf2a8d34,2
309
+ np.float32,0x802a01d3,0x802a01d3,2
310
+ np.float32,0xbf747be5,0xbf3df6ad,2
311
+ np.float32,0xbf75cbd2,0xbf3e8d0f,2
312
+ np.float32,0x7db86576,0x3f800000,2
313
+ np.float32,0xff49a2c3,0xbf800000,2
314
+ np.float32,0xbedc5314,0xbecfa978,2
315
+ np.float32,0x8078877b,0x8078877b,2
316
+ np.float32,0xbead4824,0xbea6f499,2
317
+ np.float32,0xbf3926e3,0xbf1e716c,2
318
+ np.float32,0x807f4a1c,0x807f4a1c,2
319
+ np.float32,0x7f2cd8fd,0x3f800000,2
320
+ np.float32,0x806cfcca,0x806cfcca,2
321
+ np.float32,0xff1aa048,0xbf800000,2
322
+ np.float32,0x7eb9ea08,0x3f800000,2
323
+ np.float32,0xbf1034bc,0xbf02ab3a,2
324
+ np.float32,0xbd087830,0xbd086b44,2
325
+ np.float32,0x7e071034,0x3f800000,2
326
+ np.float32,0xbefcc9de,0xbeea122f,2
327
+ np.float32,0x80796d7a,0x80796d7a,2
328
+ np.float32,0x33ce46,0x33ce46,2
329
+ np.float32,0x8074a783,0x8074a783,2
330
+ np.float32,0xbe95a56a,0xbe918691,2
331
+ np.float32,0xbf2ff3f4,0xbf18a42d,2
332
+ np.float32,0x1633e9,0x1633e9,2
333
+ np.float32,0x7f0f104b,0x3f800000,2
334
+ np.float32,0xbf800000,0xbf42f7d6,2
335
+ np.float32,0x3d2cd6,0x3d2cd6,2
336
+ np.float32,0xfed43e16,0xbf800000,2
337
+ np.float32,0x3ee6faec,0x3ed87d2c,2
338
+ np.float32,0x3f2c32d0,0x3f163352,2
339
+ np.float32,0xff4290c0,0xbf800000,2
340
+ np.float32,0xbf66500e,0xbf37546a,2
341
+ np.float32,0x7dfb8fe3,0x3f800000,2
342
+ np.float32,0x3f20ba5d,0x3f0e7b16,2
343
+ np.float32,0xff30c7ae,0xbf800000,2
344
+ np.float32,0x1728a4,0x1728a4,2
345
+ np.float32,0x340d82,0x340d82,2
346
+ np.float32,0xff7870b7,0xbf800000,2
347
+ np.float32,0xbeac6ac4,0xbea62ea7,2
348
+ np.float32,0xbef936fc,0xbee73c36,2
349
+ np.float32,0x3ec7e12c,0x3ebe4ef8,2
350
+ np.float32,0x80673488,0x80673488,2
351
+ np.float32,0xfdf14c90,0xbf800000,2
352
+ np.float32,0x3f182568,0x3f08726e,2
353
+ np.float32,0x7ed7dcd0,0x3f800000,2
354
+ np.float32,0x3de4da34,0x3de3e790,2
355
+ np.float32,0xff7fffff,0xbf800000,2
356
+ np.float32,0x4ff90c,0x4ff90c,2
357
+ np.float32,0x3efb0d1c,0x3ee8b1d6,2
358
+ np.float32,0xbf66e952,0xbf379ef4,2
359
+ np.float32,0xba9dc,0xba9dc,2
360
+ np.float32,0xff67c766,0xbf800000,2
361
+ np.float32,0x7f1ffc29,0x3f800000,2
362
+ np.float32,0x3f51c906,0x3f2cbe99,2
363
+ np.float32,0x3f2e5792,0x3f179968,2
364
+ np.float32,0x3ecb9750,0x3ec17fa0,2
365
+ np.float32,0x7f3fcefc,0x3f800000,2
366
+ np.float32,0xbe4e30fc,0xbe4b72f9,2
367
+ np.float32,0x7e9bc4ce,0x3f800000,2
368
+ np.float32,0x7e70aa1f,0x3f800000,2
369
+ np.float32,0x14c6e9,0x14c6e9,2
370
+ np.float32,0xbcf327c0,0xbcf3157a,2
371
+ np.float32,0xff1fd204,0xbf800000,2
372
+ np.float32,0x7d934a03,0x3f800000,2
373
+ np.float32,0x8028bf1e,0x8028bf1e,2
374
+ np.float32,0x7f0800b7,0x3f800000,2
375
+ np.float32,0xfe04825c,0xbf800000,2
376
+ np.float32,0x807210ac,0x807210ac,2
377
+ np.float32,0x3f7faf7c,0x3f42d5fd,2
378
+ np.float32,0x3e04a543,0x3e03e899,2
379
+ np.float32,0x3e98ea15,0x3e94863e,2
380
+ np.float32,0x3d2a2e48,0x3d2a153b,2
381
+ np.float32,0x7fa00000,0x7fe00000,2
382
+ np.float32,0x20a488,0x20a488,2
383
+ np.float32,0x3f6ba86a,0x3f39e51a,2
384
+ np.float32,0x0,0x0,2
385
+ np.float32,0x3e892ddd,0x3e85fcfe,2
386
+ np.float32,0x3e2da627,0x3e2c00e0,2
387
+ np.float32,0xff000a50,0xbf800000,2
388
+ np.float32,0x3eb749f4,0x3eafd739,2
389
+ np.float32,0x8024c0ae,0x8024c0ae,2
390
+ np.float32,0xfc8f3b40,0xbf800000,2
391
+ np.float32,0xbf685fc7,0xbf385405,2
392
+ np.float32,0x3f1510e6,0x3f063a4f,2
393
+ np.float32,0x3f68e8ad,0x3f3895d8,2
394
+ np.float32,0x3dba8608,0x3dba0271,2
395
+ np.float32,0xbf16ea10,0xbf079017,2
396
+ np.float32,0xb3928,0xb3928,2
397
+ np.float32,0xfe447c00,0xbf800000,2
398
+ np.float32,0x3db9cd57,0x3db94b45,2
399
+ np.float32,0x803b66b0,0x803b66b0,2
400
+ np.float32,0x805b5e02,0x805b5e02,2
401
+ np.float32,0x7ec93f61,0x3f800000,2
402
+ np.float32,0x8005a126,0x8005a126,2
403
+ np.float32,0x6d8888,0x6d8888,2
404
+ np.float32,0x3e21b7de,0x3e206314,2
405
+ np.float32,0xbec9c31e,0xbebfedc2,2
406
+ np.float32,0xbea88aa8,0xbea2b4e5,2
407
+ np.float32,0x3d8fc310,0x3d8f86bb,2
408
+ np.float32,0xbf3cc68a,0xbf20a8b8,2
409
+ np.float32,0x432690,0x432690,2
410
+ np.float32,0xbe51d514,0xbe4ef1a3,2
411
+ np.float32,0xbcda6d20,0xbcda5fe1,2
412
+ np.float32,0xfe24e458,0xbf800000,2
413
+ np.float32,0xfedc8c14,0xbf800000,2
414
+ np.float32,0x7f7e9bd4,0x3f800000,2
415
+ np.float32,0x3ebcc880,0x3eb4ab44,2
416
+ np.float32,0xbe0aa490,0xbe09cd44,2
417
+ np.float32,0x3dc9158c,0x3dc870c3,2
418
+ np.float32,0x3e5c319e,0x3e58dc90,2
419
+ np.float32,0x1d4527,0x1d4527,2
420
+ np.float32,0x2dbf5,0x2dbf5,2
421
+ np.float32,0xbf1f121f,0xbf0d5534,2
422
+ np.float32,0x7e3e9ab5,0x3f800000,2
423
+ np.float32,0x7f74b5c1,0x3f800000,2
424
+ np.float32,0xbf6321ba,0xbf35c42b,2
425
+ np.float32,0xbe5c7488,0xbe591c79,2
426
+ np.float32,0x7e7b02cd,0x3f800000,2
427
+ np.float32,0xfe7cbfa4,0xbf800000,2
428
+ np.float32,0xbeace360,0xbea69a86,2
429
+ np.float32,0x7e149b00,0x3f800000,2
430
+ np.float32,0xbf61a700,0xbf35079a,2
431
+ np.float32,0x7eb592a7,0x3f800000,2
432
+ np.float32,0x3f2105e6,0x3f0eaf30,2
433
+ np.float32,0xfd997a88,0xbf800000,2
434
+ np.float32,0xff5d093b,0xbf800000,2
435
+ np.float32,0x63aede,0x63aede,2
436
+ np.float32,0x6907ee,0x6907ee,2
437
+ np.float32,0xbf7578ee,0xbf3e680f,2
438
+ np.float32,0xfea971e8,0xbf800000,2
439
+ np.float32,0x3f21d0f5,0x3f0f3aed,2
440
+ np.float32,0x3a50e2,0x3a50e2,2
441
+ np.float32,0x7f0f5b1e,0x3f800000,2
442
+ np.float32,0x805b9765,0x805b9765,2
443
+ np.float32,0xbe764ab8,0xbe71a664,2
444
+ np.float32,0x3eafac7f,0x3ea91701,2
445
+ np.float32,0x807f4130,0x807f4130,2
446
+ np.float32,0x7c5f31,0x7c5f31,2
447
+ np.float32,0xbdbe0e30,0xbdbd8300,2
448
+ np.float32,0x7ecfe4e0,0x3f800000,2
449
+ np.float32,0xff7cb628,0xbf800000,2
450
+ np.float32,0xff1842bc,0xbf800000,2
451
+ np.float32,0xfd4163c0,0xbf800000,2
452
+ np.float32,0x800e11f7,0x800e11f7,2
453
+ np.float32,0x7f3adec8,0x3f800000,2
454
+ np.float32,0x7f597514,0x3f800000,2
455
+ np.float32,0xbe986e14,0xbe9414a4,2
456
+ np.float32,0x800fa9d7,0x800fa9d7,2
457
+ np.float32,0xff5b79c4,0xbf800000,2
458
+ np.float32,0x80070565,0x80070565,2
459
+ np.float32,0xbee5628e,0xbed72d60,2
460
+ np.float32,0x3f438ef2,0x3f24b3ca,2
461
+ np.float32,0xcda91,0xcda91,2
462
+ np.float32,0x7e64151a,0x3f800000,2
463
+ np.float32,0xbe95d584,0xbe91b2c7,2
464
+ np.float32,0x8022c2a1,0x8022c2a1,2
465
+ np.float32,0x7e7097bf,0x3f800000,2
466
+ np.float32,0x80139035,0x80139035,2
467
+ np.float32,0x804de2cb,0x804de2cb,2
468
+ np.float32,0xfde5d178,0xbf800000,2
469
+ np.float32,0x6d238,0x6d238,2
470
+ np.float32,0x807abedc,0x807abedc,2
471
+ np.float32,0x3f450a12,0x3f259129,2
472
+ np.float32,0x3ef1c120,0x3ee141f2,2
473
+ np.float32,0xfeb64dae,0xbf800000,2
474
+ np.float32,0x8001732c,0x8001732c,2
475
+ np.float32,0x3f76062e,0x3f3ea711,2
476
+ np.float32,0x3eddd550,0x3ed0ebc8,2
477
+ np.float32,0xff5ca1d4,0xbf800000,2
478
+ np.float32,0xbf49dc5e,0xbf285673,2
479
+ np.float32,0x7e9e5438,0x3f800000,2
480
+ np.float32,0x7e83625e,0x3f800000,2
481
+ np.float32,0x3f5dc41c,0x3f3310da,2
482
+ np.float32,0x3f583efa,0x3f30342f,2
483
+ np.float32,0xbe26bf88,0xbe254a2d,2
484
+ np.float32,0xff1e0beb,0xbf800000,2
485
+ np.float32,0xbe2244c8,0xbe20ec86,2
486
+ np.float32,0xff0b1630,0xbf800000,2
487
+ np.float32,0xff338dd6,0xbf800000,2
488
+ np.float32,0x3eafc22c,0x3ea92a51,2
489
+ np.float32,0x800ea07f,0x800ea07f,2
490
+ np.float32,0x3f46f006,0x3f26aa7e,2
491
+ np.float32,0x3e5f57cd,0x3e5bde16,2
492
+ np.float32,0xbf1b2d8e,0xbf0a9a93,2
493
+ np.float32,0xfeacdbe0,0xbf800000,2
494
+ np.float32,0x7e5ea4bc,0x3f800000,2
495
+ np.float32,0xbf51cbe2,0xbf2cc027,2
496
+ np.float32,0x8073644c,0x8073644c,2
497
+ np.float32,0xff2d6bfe,0xbf800000,2
498
+ np.float32,0x3f65f0f6,0x3f37260a,2
499
+ np.float32,0xff4b37a6,0xbf800000,2
500
+ np.float32,0x712df7,0x712df7,2
501
+ np.float32,0x7f71ef17,0x3f800000,2
502
+ np.float32,0x8042245c,0x8042245c,2
503
+ np.float32,0x3e5dde7b,0x3e5a760d,2
504
+ np.float32,0x8069317d,0x8069317d,2
505
+ np.float32,0x807932dd,0x807932dd,2
506
+ np.float32,0x802f847e,0x802f847e,2
507
+ np.float32,0x7e9300,0x7e9300,2
508
+ np.float32,0x8040b4ab,0x8040b4ab,2
509
+ np.float32,0xff76ef8e,0xbf800000,2
510
+ np.float32,0x4aae3a,0x4aae3a,2
511
+ np.float32,0x8058de73,0x8058de73,2
512
+ np.float32,0x7e4d58c0,0x3f800000,2
513
+ np.float32,0x3d811b30,0x3d80ef79,2
514
+ np.float32,0x7ec952cc,0x3f800000,2
515
+ np.float32,0xfe162b1c,0xbf800000,2
516
+ np.float32,0x3f0f1187,0x3f01d367,2
517
+ np.float32,0xbf2f3458,0xbf182878,2
518
+ np.float32,0x5ceb14,0x5ceb14,2
519
+ np.float32,0xbec29476,0xbeb9b939,2
520
+ np.float32,0x3e71f943,0x3e6d9176,2
521
+ np.float32,0x3ededefc,0x3ed1c909,2
522
+ np.float32,0x805df6ac,0x805df6ac,2
523
+ np.float32,0x3e5ae2c8,0x3e579ca8,2
524
+ np.float32,0x3f6ad2c3,0x3f397fdf,2
525
+ np.float32,0x7d5f94d3,0x3f800000,2
526
+ np.float32,0xbeec7fe4,0xbedd0037,2
527
+ np.float32,0x3f645304,0x3f365b0d,2
528
+ np.float32,0xbf69a087,0xbf38edef,2
529
+ np.float32,0x8025102e,0x8025102e,2
530
+ np.float32,0x800db486,0x800db486,2
531
+ np.float32,0x4df6c7,0x4df6c7,2
532
+ np.float32,0x806d8cdd,0x806d8cdd,2
533
+ np.float32,0x7f0c78cc,0x3f800000,2
534
+ np.float32,0x7e1cf70b,0x3f800000,2
535
+ np.float32,0x3e0ae570,0x3e0a0cf7,2
536
+ np.float32,0x80176ef8,0x80176ef8,2
537
+ np.float32,0x3f38b60c,0x3f1e2bbb,2
538
+ np.float32,0x3d3071e0,0x3d3055f5,2
539
+ np.float32,0x3ebfcfdd,0x3eb750a9,2
540
+ np.float32,0xfe2cdec0,0xbf800000,2
541
+ np.float32,0x7eeb2eed,0x3f800000,2
542
+ np.float32,0x8026c904,0x8026c904,2
543
+ np.float32,0xbec79bde,0xbebe133a,2
544
+ np.float32,0xbf7dfab6,0xbf421d47,2
545
+ np.float32,0x805b3cfd,0x805b3cfd,2
546
+ np.float32,0xfdfcfb68,0xbf800000,2
547
+ np.float32,0xbd537ec0,0xbd534eaf,2
548
+ np.float32,0x52ce73,0x52ce73,2
549
+ np.float32,0xfeac6ea6,0xbf800000,2
550
+ np.float32,0x3f2c2990,0x3f162d41,2
551
+ np.float32,0x3e3354e0,0x3e318539,2
552
+ np.float32,0x802db22b,0x802db22b,2
553
+ np.float32,0x7f0faa83,0x3f800000,2
554
+ np.float32,0x7f10e161,0x3f800000,2
555
+ np.float32,0x7f165c60,0x3f800000,2
556
+ np.float32,0xbf5a756f,0xbf315c82,2
557
+ np.float32,0x7f5a4b68,0x3f800000,2
558
+ np.float32,0xbd77fbf0,0xbd77ae7c,2
559
+ np.float32,0x65d83c,0x65d83c,2
560
+ np.float32,0x3e5f28,0x3e5f28,2
561
+ np.float32,0x8040ec92,0x8040ec92,2
562
+ np.float32,0xbf2b41a6,0xbf1594d5,2
563
+ np.float32,0x7f2f88f1,0x3f800000,2
564
+ np.float32,0xfdb64ab8,0xbf800000,2
565
+ np.float32,0xbf7a3ff1,0xbf4082f5,2
566
+ np.float32,0x1948fc,0x1948fc,2
567
+ np.float32,0x802c1039,0x802c1039,2
568
+ np.float32,0x80119274,0x80119274,2
569
+ np.float32,0x7e885d7b,0x3f800000,2
570
+ np.float32,0xfaf6a,0xfaf6a,2
571
+ np.float32,0x3eba28c4,0x3eb25e1d,2
572
+ np.float32,0x3e4df370,0x3e4b37da,2
573
+ np.float32,0xbf19eff6,0xbf09b97d,2
574
+ np.float32,0xbeddd3c6,0xbed0ea7f,2
575
+ np.float32,0xff6fc971,0xbf800000,2
576
+ np.float32,0x7e93de29,0x3f800000,2
577
+ np.float32,0x3eb12332,0x3eaa6485,2
578
+ np.float32,0x3eb7c6e4,0x3eb04563,2
579
+ np.float32,0x4a67ee,0x4a67ee,2
580
+ np.float32,0xff1cafde,0xbf800000,2
581
+ np.float32,0x3f5e2812,0x3f3343da,2
582
+ np.float32,0x3f060e04,0x3ef605d4,2
583
+ np.float32,0x3e9027d8,0x3e8c76a6,2
584
+ np.float32,0xe2d33,0xe2d33,2
585
+ np.float32,0xff4c94fc,0xbf800000,2
586
+ np.float32,0xbf574908,0xbf2fb26b,2
587
+ np.float32,0xbf786c08,0xbf3fb68e,2
588
+ np.float32,0x8011ecab,0x8011ecab,2
589
+ np.float32,0xbf061c6a,0xbef61bfa,2
590
+ np.float32,0x7eea5f9d,0x3f800000,2
591
+ np.float32,0x3ea2e19c,0x3e9d99a5,2
592
+ np.float32,0x8071550c,0x8071550c,2
593
+ np.float32,0x41c70b,0x41c70b,2
594
+ np.float32,0x80291fc8,0x80291fc8,2
595
+ np.float32,0x43b1ec,0x43b1ec,2
596
+ np.float32,0x32f5a,0x32f5a,2
597
+ np.float32,0xbe9310ec,0xbe8f2692,2
598
+ np.float32,0x7f75f6bf,0x3f800000,2
599
+ np.float32,0x3e6642a6,0x3e6274d2,2
600
+ np.float32,0x3ecb88e0,0x3ec1733f,2
601
+ np.float32,0x804011b6,0x804011b6,2
602
+ np.float32,0x80629cca,0x80629cca,2
603
+ np.float32,0x8016b914,0x8016b914,2
604
+ np.float32,0xbdd05fc0,0xbdcfa870,2
605
+ np.float32,0x807b824d,0x807b824d,2
606
+ np.float32,0xfeec2576,0xbf800000,2
607
+ np.float32,0xbf54bf22,0xbf2e584c,2
608
+ np.float32,0xbf185eb0,0xbf089b6b,2
609
+ np.float32,0xfbc09480,0xbf800000,2
610
+ np.float32,0x3f413054,0x3f234e25,2
611
+ np.float32,0x7e9e32b8,0x3f800000,2
612
+ np.float32,0x266296,0x266296,2
613
+ np.float32,0x460284,0x460284,2
614
+ np.float32,0x3eb0b056,0x3ea9fe5a,2
615
+ np.float32,0x1a7be5,0x1a7be5,2
616
+ np.float32,0x7f099895,0x3f800000,2
617
+ np.float32,0x3f3614f0,0x3f1c88ef,2
618
+ np.float32,0x7e757dc2,0x3f800000,2
619
+ np.float32,0x801fc91e,0x801fc91e,2
620
+ np.float32,0x3f5ce37d,0x3f329ddb,2
621
+ np.float32,0x3e664d70,0x3e627f15,2
622
+ np.float32,0xbf38ed78,0xbf1e4dfa,2
623
+ np.float32,0xbf5c563d,0xbf325543,2
624
+ np.float32,0xbe91cc54,0xbe8dfb24,2
625
+ np.float32,0x3d767fbe,0x3d7633ac,2
626
+ np.float32,0xbf6aeb40,0xbf398b7f,2
627
+ np.float32,0x7f40508b,0x3f800000,2
628
+ np.float32,0x2650df,0x2650df,2
629
+ np.float32,0xbe8cea3c,0xbe897628,2
630
+ np.float32,0x80515af8,0x80515af8,2
631
+ np.float32,0x7f423986,0x3f800000,2
632
+ np.float32,0xbdf250e8,0xbdf1310c,2
633
+ np.float32,0xfe89288a,0xbf800000,2
634
+ np.float32,0x397b3b,0x397b3b,2
635
+ np.float32,0x7e5e91b0,0x3f800000,2
636
+ np.float32,0x6866e2,0x6866e2,2
637
+ np.float32,0x7f4d8877,0x3f800000,2
638
+ np.float32,0x3e6c4a21,0x3e682ee3,2
639
+ np.float32,0xfc3d5980,0xbf800000,2
640
+ np.float32,0x7eae2cd0,0x3f800000,2
641
+ np.float32,0xbf241222,0xbf10c579,2
642
+ np.float32,0xfebc02de,0xbf800000,2
643
+ np.float32,0xff6e0645,0xbf800000,2
644
+ np.float32,0x802030b6,0x802030b6,2
645
+ np.float32,0x7ef9a441,0x3f800000,2
646
+ np.float32,0x3fcf9f,0x3fcf9f,2
647
+ np.float32,0xbf0ccf13,0xbf0023cc,2
648
+ np.float32,0xfefee688,0xbf800000,2
649
+ np.float32,0xbf6c8e0c,0xbf3a5160,2
650
+ np.float32,0xfe749c28,0xbf800000,2
651
+ np.float32,0x7f7fffff,0x3f800000,2
652
+ np.float32,0x58c1a0,0x58c1a0,2
653
+ np.float32,0x3f2de0a1,0x3f174c17,2
654
+ np.float32,0xbf5f7138,0xbf33eb03,2
655
+ np.float32,0x3da15270,0x3da0fd3c,2
656
+ np.float32,0x3da66560,0x3da607e4,2
657
+ np.float32,0xbf306f9a,0xbf18f3c6,2
658
+ np.float32,0x3e81a4de,0x3e7de293,2
659
+ np.float32,0xbebb5fb8,0xbeb36f1a,2
660
+ np.float32,0x14bf64,0x14bf64,2
661
+ np.float32,0xbeac46c6,0xbea60e73,2
662
+ np.float32,0xbdcdf210,0xbdcd4111,2
663
+ np.float32,0x3f7e3cd9,0x3f42395e,2
664
+ np.float32,0xbc4be640,0xbc4be38e,2
665
+ np.float32,0xff5f53b4,0xbf800000,2
666
+ np.float32,0xbf1315ae,0xbf04c90b,2
667
+ np.float32,0x80000000,0x80000000,2
668
+ np.float32,0xbf6a4149,0xbf393aaa,2
669
+ np.float32,0x3f66b8ee,0x3f378772,2
670
+ np.float32,0xff29293e,0xbf800000,2
671
+ np.float32,0xbcc989c0,0xbcc97f58,2
672
+ np.float32,0xbd9a1b70,0xbd99d125,2
673
+ np.float32,0xfef353cc,0xbf800000,2
674
+ np.float32,0xbdc30cf0,0xbdc27683,2
675
+ np.float32,0xfdfd6768,0xbf800000,2
676
+ np.float32,0x7ebac44c,0x3f800000,2
677
+ np.float32,0xff453cd6,0xbf800000,2
678
+ np.float32,0x3ef07720,0x3ee03787,2
679
+ np.float32,0x80219c14,0x80219c14,2
680
+ np.float32,0x805553a8,0x805553a8,2
681
+ np.float32,0x80703928,0x80703928,2
682
+ np.float32,0xff16d3a7,0xbf800000,2
683
+ np.float32,0x3f1472bc,0x3f05c77b,2
684
+ np.float32,0x3eeea37a,0x3edebcf9,2
685
+ np.float32,0x3db801e6,0x3db7838d,2
686
+ np.float32,0x800870d2,0x800870d2,2
687
+ np.float32,0xbea1172c,0xbe9bfa32,2
688
+ np.float32,0x3f1f5e7c,0x3f0d8a42,2
689
+ np.float32,0x123cdb,0x123cdb,2
690
+ np.float32,0x7f6e6b06,0x3f800000,2
691
+ np.float32,0x3ed80573,0x3ecc0def,2
692
+ np.float32,0xfea31b82,0xbf800000,2
693
+ np.float32,0x6744e0,0x6744e0,2
694
+ np.float32,0x695e8b,0x695e8b,2
695
+ np.float32,0xbee3888a,0xbed5a67d,2
696
+ np.float32,0x7f64bc2a,0x3f800000,2
697
+ np.float32,0x7f204244,0x3f800000,2
698
+ np.float32,0x7f647102,0x3f800000,2
699
+ np.float32,0x3dd8ebc0,0x3dd81d03,2
700
+ np.float32,0x801e7ab1,0x801e7ab1,2
701
+ np.float32,0x7d034b56,0x3f800000,2
702
+ np.float32,0x7fc00000,0x7fc00000,2
703
+ np.float32,0x80194193,0x80194193,2
704
+ np.float32,0xfe31c8d4,0xbf800000,2
705
+ np.float32,0x7fc0c4,0x7fc0c4,2
706
+ np.float32,0xd95bf,0xd95bf,2
707
+ np.float32,0x7e4f991d,0x3f800000,2
708
+ np.float32,0x7fc563,0x7fc563,2
709
+ np.float32,0xbe3fcccc,0xbe3d968a,2
710
+ np.float32,0xfdaaa1c8,0xbf800000,2
711
+ np.float32,0xbf48e449,0xbf27c949,2
712
+ np.float32,0x3eb6c584,0x3eaf625e,2
713
+ np.float32,0xbea35a74,0xbe9e0702,2
714
+ np.float32,0x3eeab47a,0x3edb89d5,2
715
+ np.float32,0xbed99556,0xbecd5de5,2
716
+ np.float64,0xbfb94a81e0329500,0xbfb935867ba761fe,2
717
+ np.float64,0xbfec132f1678265e,0xbfe6900eb097abc3,2
718
+ np.float64,0x5685ea72ad0be,0x5685ea72ad0be,2
719
+ np.float64,0xbfd74d3169ae9a62,0xbfd652e09b9daf32,2
720
+ np.float64,0xbfe28df53d651bea,0xbfe0b8a7f50ab433,2
721
+ np.float64,0x0,0x0,2
722
+ np.float64,0xbfed912738bb224e,0xbfe749e3732831ae,2
723
+ np.float64,0x7fcc6faed838df5d,0x3ff0000000000000,2
724
+ np.float64,0xbfe95fe9a432bfd3,0xbfe51f6349919910,2
725
+ np.float64,0xbfc4d5900b29ab20,0xbfc4a6f496179b8b,2
726
+ np.float64,0xbfcd6025033ac04c,0xbfccded7b34b49b0,2
727
+ np.float64,0xbfdfa655b43f4cac,0xbfdd4ca1e5bb9db8,2
728
+ np.float64,0xe7ea5c7fcfd4c,0xe7ea5c7fcfd4c,2
729
+ np.float64,0xffa5449ca42a8940,0xbff0000000000000,2
730
+ np.float64,0xffe63294c1ac6529,0xbff0000000000000,2
731
+ np.float64,0x7feb9cbae7f73975,0x3ff0000000000000,2
732
+ np.float64,0x800eb07c3e3d60f9,0x800eb07c3e3d60f9,2
733
+ np.float64,0x3fc95777e932aef0,0x3fc9040391e20c00,2
734
+ np.float64,0x800736052dee6c0b,0x800736052dee6c0b,2
735
+ np.float64,0x3fe9ae4afd335c96,0x3fe54b569bab45c7,2
736
+ np.float64,0x7fee4c94217c9927,0x3ff0000000000000,2
737
+ np.float64,0x80094b594bd296b3,0x80094b594bd296b3,2
738
+ np.float64,0xffe5adbcee6b5b7a,0xbff0000000000000,2
739
+ np.float64,0x3fecb8eab47971d5,0x3fe6e236be6f27e9,2
740
+ np.float64,0x44956914892ae,0x44956914892ae,2
741
+ np.float64,0xbfe3bd18ef677a32,0xbfe190bf1e07200c,2
742
+ np.float64,0x800104e5b46209cc,0x800104e5b46209cc,2
743
+ np.float64,0x8008fbcecf71f79e,0x8008fbcecf71f79e,2
744
+ np.float64,0x800f0a46a0be148d,0x800f0a46a0be148d,2
745
+ np.float64,0x7fe657a0702caf40,0x3ff0000000000000,2
746
+ np.float64,0xffd3ff1a9027fe36,0xbff0000000000000,2
747
+ np.float64,0x3fe78bc87bef1790,0x3fe40d2e63aaf029,2
748
+ np.float64,0x7feeabdc4c7d57b8,0x3ff0000000000000,2
749
+ np.float64,0xbfabd28d8437a520,0xbfabcb8ce03a0e56,2
750
+ np.float64,0xbfddc3a133bb8742,0xbfdbc9fdb2594451,2
751
+ np.float64,0x7fec911565b9222a,0x3ff0000000000000,2
752
+ np.float64,0x71302604e2605,0x71302604e2605,2
753
+ np.float64,0xee919d2bdd234,0xee919d2bdd234,2
754
+ np.float64,0xbfc04fcff3209fa0,0xbfc0395a739a2ce4,2
755
+ np.float64,0xffe4668a36e8cd14,0xbff0000000000000,2
756
+ np.float64,0xbfeeafeebefd5fde,0xbfe7cd5f3d61a3ec,2
757
+ np.float64,0x7fddb34219bb6683,0x3ff0000000000000,2
758
+ np.float64,0xbfd2cac6cba5958e,0xbfd24520abb2ff36,2
759
+ np.float64,0xbfb857e49630afc8,0xbfb8452d5064dec2,2
760
+ np.float64,0x3fd2dbf90b25b7f2,0x3fd254eaf48484c2,2
761
+ np.float64,0x800af65c94f5ecba,0x800af65c94f5ecba,2
762
+ np.float64,0xa0eef4bf41ddf,0xa0eef4bf41ddf,2
763
+ np.float64,0xffd8e0a4adb1c14a,0xbff0000000000000,2
764
+ np.float64,0xffe858f6e870b1ed,0xbff0000000000000,2
765
+ np.float64,0x3f94c2c308298580,0x3f94c208a4bb006d,2
766
+ np.float64,0xffb45f0d7428be18,0xbff0000000000000,2
767
+ np.float64,0x800ed4f43dbda9e9,0x800ed4f43dbda9e9,2
768
+ np.float64,0x8002dd697e85bad4,0x8002dd697e85bad4,2
769
+ np.float64,0x787ceab2f0f9e,0x787ceab2f0f9e,2
770
+ np.float64,0xbfdff5fcc2bfebfa,0xbfdd8b736b128589,2
771
+ np.float64,0x7fdb2b4294365684,0x3ff0000000000000,2
772
+ np.float64,0xffe711e5e92e23cc,0xbff0000000000000,2
773
+ np.float64,0x800b1c93f1163928,0x800b1c93f1163928,2
774
+ np.float64,0x7fc524d2f22a49a5,0x3ff0000000000000,2
775
+ np.float64,0x7fc88013b5310026,0x3ff0000000000000,2
776
+ np.float64,0x3fe1a910c5e35222,0x3fe00fd779ebaa2a,2
777
+ np.float64,0xbfb57ec9ca2afd90,0xbfb571e47ecb9335,2
778
+ np.float64,0x7fd7594b20aeb295,0x3ff0000000000000,2
779
+ np.float64,0x7fba4641ca348c83,0x3ff0000000000000,2
780
+ np.float64,0xffe61393706c2726,0xbff0000000000000,2
781
+ np.float64,0x7fd54f3c7baa9e78,0x3ff0000000000000,2
782
+ np.float64,0xffe65ffb12ecbff6,0xbff0000000000000,2
783
+ np.float64,0xbfba3b0376347608,0xbfba239cbbbd1b11,2
784
+ np.float64,0x800200886d640112,0x800200886d640112,2
785
+ np.float64,0xbfecf0ba4679e174,0xbfe6fd59de44a3ec,2
786
+ np.float64,0xffe5c57e122b8afc,0xbff0000000000000,2
787
+ np.float64,0x7fdaad0143355a02,0x3ff0000000000000,2
788
+ np.float64,0x46ab32c08d567,0x46ab32c08d567,2
789
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,2
790
+ np.float64,0xbfda7980fdb4f302,0xbfd90fa9c8066109,2
791
+ np.float64,0x3fe237703c646ee0,0x3fe07969f8d8805a,2
792
+ np.float64,0x8000e9fcfc21d3fb,0x8000e9fcfc21d3fb,2
793
+ np.float64,0xbfdfe6e958bfcdd2,0xbfdd7f952fe87770,2
794
+ np.float64,0xbd7baf217af8,0xbd7baf217af8,2
795
+ np.float64,0xbfceba9e4b3d753c,0xbfce26e54359869a,2
796
+ np.float64,0xb95a2caf72b46,0xb95a2caf72b46,2
797
+ np.float64,0x3fb407e25a280fc5,0x3fb3fd71e457b628,2
798
+ np.float64,0xa1da09d943b41,0xa1da09d943b41,2
799
+ np.float64,0xbfe9c7271cf38e4e,0xbfe559296b471738,2
800
+ np.float64,0x3fefae6170ff5cc3,0x3fe83c70ba82f0e1,2
801
+ np.float64,0x7fe7375348ae6ea6,0x3ff0000000000000,2
802
+ np.float64,0xffe18c9cc6e31939,0xbff0000000000000,2
803
+ np.float64,0x800483d13a6907a3,0x800483d13a6907a3,2
804
+ np.float64,0x7fe772a18caee542,0x3ff0000000000000,2
805
+ np.float64,0xffefff64e7bffec9,0xbff0000000000000,2
806
+ np.float64,0x7fcffc31113ff861,0x3ff0000000000000,2
807
+ np.float64,0x3fd91e067e323c0d,0x3fd7e70bf365a7b3,2
808
+ np.float64,0xb0a6673d614cd,0xb0a6673d614cd,2
809
+ np.float64,0xffef9a297e3f3452,0xbff0000000000000,2
810
+ np.float64,0xffe87cc15e70f982,0xbff0000000000000,2
811
+ np.float64,0xffefd6ad8e7fad5a,0xbff0000000000000,2
812
+ np.float64,0x7fe3aaa3a8a75546,0x3ff0000000000000,2
813
+ np.float64,0xddab0341bb561,0xddab0341bb561,2
814
+ np.float64,0x3fe996d6d7332dae,0x3fe53e3ed5be2922,2
815
+ np.float64,0x3fdbe66a18b7ccd4,0x3fda41e6053c1512,2
816
+ np.float64,0x8914775d1228f,0x8914775d1228f,2
817
+ np.float64,0x3fe44621d4688c44,0x3fe1ef9c7225f8bd,2
818
+ np.float64,0xffab29a2a4365340,0xbff0000000000000,2
819
+ np.float64,0xffc8d4a0c431a940,0xbff0000000000000,2
820
+ np.float64,0xbfd426e085284dc2,0xbfd382e2a9617b87,2
821
+ np.float64,0xbfd3b0a525a7614a,0xbfd3176856faccf1,2
822
+ np.float64,0x80036dedcb06dbdc,0x80036dedcb06dbdc,2
823
+ np.float64,0x3feb13823b762704,0x3fe60ca3facdb696,2
824
+ np.float64,0x3fd7246b7bae48d8,0x3fd62f08afded155,2
825
+ np.float64,0x1,0x1,2
826
+ np.float64,0x3fe8ade4b9715bc9,0x3fe4b97cc1387d27,2
827
+ np.float64,0x3fdf2dbec53e5b7e,0x3fdcecfeee33de95,2
828
+ np.float64,0x3fe4292bf9685258,0x3fe1dbb5a6704090,2
829
+ np.float64,0xbfd21acbb8243598,0xbfd1a2ff42174cae,2
830
+ np.float64,0xdd0d2d01ba1a6,0xdd0d2d01ba1a6,2
831
+ np.float64,0x3fa3f3d2f427e7a0,0x3fa3f13d6f101555,2
832
+ np.float64,0x7fdabf4aceb57e95,0x3ff0000000000000,2
833
+ np.float64,0xd4d9e39ba9b3d,0xd4d9e39ba9b3d,2
834
+ np.float64,0xffec773396f8ee66,0xbff0000000000000,2
835
+ np.float64,0x3fa88cc79031198f,0x3fa887f7ade722ba,2
836
+ np.float64,0xffe63a92066c7524,0xbff0000000000000,2
837
+ np.float64,0xbfcf514e2e3ea29c,0xbfceb510e99aaa19,2
838
+ np.float64,0x9d78c19d3af18,0x9d78c19d3af18,2
839
+ np.float64,0x7fdd748bfbbae917,0x3ff0000000000000,2
840
+ np.float64,0xffb3594c4626b298,0xbff0000000000000,2
841
+ np.float64,0x80068ce5b32d19cc,0x80068ce5b32d19cc,2
842
+ np.float64,0x3fec63d60e78c7ac,0x3fe6b85536e44217,2
843
+ np.float64,0x80080bad4dd0175b,0x80080bad4dd0175b,2
844
+ np.float64,0xbfec6807baf8d010,0xbfe6ba69740f9687,2
845
+ np.float64,0x7fedbae0bbfb75c0,0x3ff0000000000000,2
846
+ np.float64,0x8001cb7aa3c396f6,0x8001cb7aa3c396f6,2
847
+ np.float64,0x7fe1f1f03563e3df,0x3ff0000000000000,2
848
+ np.float64,0x7fd83d3978307a72,0x3ff0000000000000,2
849
+ np.float64,0xbfc05ffe9d20bffc,0xbfc049464e3f0af2,2
850
+ np.float64,0xfe6e053ffcdc1,0xfe6e053ffcdc1,2
851
+ np.float64,0xbfd3bdf39d277be8,0xbfd32386edf12726,2
852
+ np.float64,0x800f41b27bde8365,0x800f41b27bde8365,2
853
+ np.float64,0xbfe2c98390e59307,0xbfe0e3c9260fe798,2
854
+ np.float64,0xffdd6206bcbac40e,0xbff0000000000000,2
855
+ np.float64,0x67f35ef4cfe6c,0x67f35ef4cfe6c,2
856
+ np.float64,0x800337e02ae66fc1,0x800337e02ae66fc1,2
857
+ np.float64,0x3fe0ff70afe1fee1,0x3fdf1f46434330df,2
858
+ np.float64,0x3fd7e0a1df2fc144,0x3fd6d3f82c8031e4,2
859
+ np.float64,0x8008da5cd1b1b4ba,0x8008da5cd1b1b4ba,2
860
+ np.float64,0x80065ec9e4ccbd95,0x80065ec9e4ccbd95,2
861
+ np.float64,0x3fe1d1e559a3a3cb,0x3fe02e4f146aa1ab,2
862
+ np.float64,0x7feb7d2f0836fa5d,0x3ff0000000000000,2
863
+ np.float64,0xbfcb33ce9736679c,0xbfcaccd431b205bb,2
864
+ np.float64,0x800e6d0adf5cda16,0x800e6d0adf5cda16,2
865
+ np.float64,0x7fe46f272ca8de4d,0x3ff0000000000000,2
866
+ np.float64,0x4fdfc73e9fbfa,0x4fdfc73e9fbfa,2
867
+ np.float64,0x800958a13112b143,0x800958a13112b143,2
868
+ np.float64,0xbfea01f877f403f1,0xbfe579a541594247,2
869
+ np.float64,0xeefaf599ddf5f,0xeefaf599ddf5f,2
870
+ np.float64,0x80038766c5e70ece,0x80038766c5e70ece,2
871
+ np.float64,0x7fd31bc28ba63784,0x3ff0000000000000,2
872
+ np.float64,0xbfe4df77eee9bef0,0xbfe257abe7083b77,2
873
+ np.float64,0x7fe6790c78acf218,0x3ff0000000000000,2
874
+ np.float64,0xffe7c66884af8cd0,0xbff0000000000000,2
875
+ np.float64,0x800115e36f422bc8,0x800115e36f422bc8,2
876
+ np.float64,0x3fc601945d2c0329,0x3fc5cab917bb20bc,2
877
+ np.float64,0x3fd6ac9546ad592b,0x3fd5c55437ec3508,2
878
+ np.float64,0xa7bd59294f7ab,0xa7bd59294f7ab,2
879
+ np.float64,0x8005c26c8b8b84da,0x8005c26c8b8b84da,2
880
+ np.float64,0x8257501704aea,0x8257501704aea,2
881
+ np.float64,0x5b12aae0b6256,0x5b12aae0b6256,2
882
+ np.float64,0x800232fe02c465fd,0x800232fe02c465fd,2
883
+ np.float64,0x800dae28f85b5c52,0x800dae28f85b5c52,2
884
+ np.float64,0x3fdade1ac135bc36,0x3fd964a2000ace25,2
885
+ np.float64,0x3fed72ca04fae594,0x3fe73b9170d809f9,2
886
+ np.float64,0x7fc6397e2b2c72fb,0x3ff0000000000000,2
887
+ np.float64,0x3fe1f5296d23ea53,0x3fe048802d17621e,2
888
+ np.float64,0xffe05544b920aa89,0xbff0000000000000,2
889
+ np.float64,0xbfdb2e1588365c2c,0xbfd9a7e4113c713e,2
890
+ np.float64,0xbfed6a06fa3ad40e,0xbfe7376be60535f8,2
891
+ np.float64,0xbfe31dcaf5e63b96,0xbfe120417c46cac1,2
892
+ np.float64,0xbfb7ed67ae2fdad0,0xbfb7dba14af33b00,2
893
+ np.float64,0xffd32bb7eb265770,0xbff0000000000000,2
894
+ np.float64,0x80039877b04730f0,0x80039877b04730f0,2
895
+ np.float64,0x3f832e5630265cac,0x3f832e316f47f218,2
896
+ np.float64,0xffe7fa7f732ff4fe,0xbff0000000000000,2
897
+ np.float64,0x9649b87f2c937,0x9649b87f2c937,2
898
+ np.float64,0xffaee447183dc890,0xbff0000000000000,2
899
+ np.float64,0x7fe4e02dd869c05b,0x3ff0000000000000,2
900
+ np.float64,0x3fe1d35e7463a6bd,0x3fe02f67bd21e86e,2
901
+ np.float64,0xffe57f40fe2afe82,0xbff0000000000000,2
902
+ np.float64,0xbfea1362b93426c6,0xbfe5833421dba8fc,2
903
+ np.float64,0xffe9c689fe338d13,0xbff0000000000000,2
904
+ np.float64,0xffc592dd102b25bc,0xbff0000000000000,2
905
+ np.float64,0x3fd283c7aba5078f,0x3fd203d61d1398c3,2
906
+ np.float64,0x8001d6820243ad05,0x8001d6820243ad05,2
907
+ np.float64,0x3fe0ad5991e15ab4,0x3fdea14ef0d47fbd,2
908
+ np.float64,0x3fe3916f2ee722de,0x3fe1722684a9ffb1,2
909
+ np.float64,0xffef9e54e03f3ca9,0xbff0000000000000,2
910
+ np.float64,0x7fe864faebb0c9f5,0x3ff0000000000000,2
911
+ np.float64,0xbfed3587c3fa6b10,0xbfe71e7112df8a68,2
912
+ np.float64,0xbfdd9efc643b3df8,0xbfdbac3a16caf208,2
913
+ np.float64,0xbfd5ac08feab5812,0xbfd4e14575a6e41b,2
914
+ np.float64,0xffda90fae6b521f6,0xbff0000000000000,2
915
+ np.float64,0x8001380ecf22701e,0x8001380ecf22701e,2
916
+ np.float64,0x7fed266fa5fa4cde,0x3ff0000000000000,2
917
+ np.float64,0xffec6c0ac3b8d815,0xbff0000000000000,2
918
+ np.float64,0x3fe7de43c32fbc88,0x3fe43ef62821a5a6,2
919
+ np.float64,0x800bf4ffc357ea00,0x800bf4ffc357ea00,2
920
+ np.float64,0x3fe125c975624b93,0x3fdf59b2de3eff5d,2
921
+ np.float64,0x8004714c1028e299,0x8004714c1028e299,2
922
+ np.float64,0x3fef1bfbf5fe37f8,0x3fe7fd2ba1b63c8a,2
923
+ np.float64,0x800cae15c3195c2c,0x800cae15c3195c2c,2
924
+ np.float64,0x7fde708e083ce11b,0x3ff0000000000000,2
925
+ np.float64,0x7fbcee5df639dcbb,0x3ff0000000000000,2
926
+ np.float64,0x800b1467141628cf,0x800b1467141628cf,2
927
+ np.float64,0x3fe525e0d36a4bc2,0x3fe286b6e59e30f5,2
928
+ np.float64,0xffe987f8b8330ff1,0xbff0000000000000,2
929
+ np.float64,0x7e0a8284fc151,0x7e0a8284fc151,2
930
+ np.float64,0x8006f982442df305,0x8006f982442df305,2
931
+ np.float64,0xbfd75a3cb62eb47a,0xbfd65e54cee981c9,2
932
+ np.float64,0x258e91104b1d3,0x258e91104b1d3,2
933
+ np.float64,0xbfecd0056779a00b,0xbfe6ed7ae97fff1b,2
934
+ np.float64,0x7fc3a4f9122749f1,0x3ff0000000000000,2
935
+ np.float64,0x6e2b1024dc563,0x6e2b1024dc563,2
936
+ np.float64,0x800d575ad4daaeb6,0x800d575ad4daaeb6,2
937
+ np.float64,0xbfceafb1073d5f64,0xbfce1c93023d8414,2
938
+ np.float64,0xffe895cb5f312b96,0xbff0000000000000,2
939
+ np.float64,0x7fe7811ed4ef023d,0x3ff0000000000000,2
940
+ np.float64,0xbfd93f952f327f2a,0xbfd803e6b5576b99,2
941
+ np.float64,0xffdd883a3fbb1074,0xbff0000000000000,2
942
+ np.float64,0x7fee5624eefcac49,0x3ff0000000000000,2
943
+ np.float64,0xbfe264bb2624c976,0xbfe09a9b7cc896e7,2
944
+ np.float64,0xffef14b417be2967,0xbff0000000000000,2
945
+ np.float64,0xbfecbd0d94397a1b,0xbfe6e43bef852d9f,2
946
+ np.float64,0xbfe20d9e4ba41b3c,0xbfe05a98e05846d9,2
947
+ np.float64,0x10000000000000,0x10000000000000,2
948
+ np.float64,0x7fefde93f7bfbd27,0x3ff0000000000000,2
949
+ np.float64,0x80076b9e232ed73d,0x80076b9e232ed73d,2
950
+ np.float64,0xbfe80df52c701bea,0xbfe45b754b433792,2
951
+ np.float64,0x7fe3b5a637676b4b,0x3ff0000000000000,2
952
+ np.float64,0x2c81d14c5903b,0x2c81d14c5903b,2
953
+ np.float64,0x80038945c767128c,0x80038945c767128c,2
954
+ np.float64,0xffeebaf544bd75ea,0xbff0000000000000,2
955
+ np.float64,0xffdb1867d2b630d0,0xbff0000000000000,2
956
+ np.float64,0x3fe3376eaee66ede,0x3fe13285579763d8,2
957
+ np.float64,0xffddf65ca43becba,0xbff0000000000000,2
958
+ np.float64,0xffec8e3e04791c7b,0xbff0000000000000,2
959
+ np.float64,0x80064f4bde2c9e98,0x80064f4bde2c9e98,2
960
+ np.float64,0x7fe534a085ea6940,0x3ff0000000000000,2
961
+ np.float64,0xbfcbabe31d3757c8,0xbfcb3f8e70adf7e7,2
962
+ np.float64,0xbfe45ca11e28b942,0xbfe1ff04515ef809,2
963
+ np.float64,0x65f4df02cbe9d,0x65f4df02cbe9d,2
964
+ np.float64,0xb08b0cbb61162,0xb08b0cbb61162,2
965
+ np.float64,0x3feae2e8b975c5d1,0x3fe5f302b5e8eda2,2
966
+ np.float64,0x7fcf277ff93e4eff,0x3ff0000000000000,2
967
+ np.float64,0x80010999c4821334,0x80010999c4821334,2
968
+ np.float64,0xbfd7f65911afecb2,0xbfd6e6e9cd098f8b,2
969
+ np.float64,0x800e0560ec3c0ac2,0x800e0560ec3c0ac2,2
970
+ np.float64,0x7fec4152ba3882a4,0x3ff0000000000000,2
971
+ np.float64,0xbfb5c77cd42b8ef8,0xbfb5ba1336084908,2
972
+ np.float64,0x457ff1b68afff,0x457ff1b68afff,2
973
+ np.float64,0x5323ec56a647e,0x5323ec56a647e,2
974
+ np.float64,0xbfeed16cf8bda2da,0xbfe7dc49fc9ae549,2
975
+ np.float64,0xffe8446106b088c1,0xbff0000000000000,2
976
+ np.float64,0xffb93cd13c3279a0,0xbff0000000000000,2
977
+ np.float64,0x7fe515c2aeea2b84,0x3ff0000000000000,2
978
+ np.float64,0x80099df83f933bf1,0x80099df83f933bf1,2
979
+ np.float64,0x7fb3a375562746ea,0x3ff0000000000000,2
980
+ np.float64,0x7fcd7efa243afdf3,0x3ff0000000000000,2
981
+ np.float64,0xffe40cddb12819bb,0xbff0000000000000,2
982
+ np.float64,0x8008b68eecd16d1e,0x8008b68eecd16d1e,2
983
+ np.float64,0x2aec688055d8e,0x2aec688055d8e,2
984
+ np.float64,0xffe23750bc646ea1,0xbff0000000000000,2
985
+ np.float64,0x5adacf60b5b7,0x5adacf60b5b7,2
986
+ np.float64,0x7fefb29b1cbf6535,0x3ff0000000000000,2
987
+ np.float64,0xbfeadbf90175b7f2,0xbfe5ef55e2194794,2
988
+ np.float64,0xeaad2885d55a5,0xeaad2885d55a5,2
989
+ np.float64,0xffd7939fba2f2740,0xbff0000000000000,2
990
+ np.float64,0x3fd187ea3aa30fd4,0x3fd11af023472386,2
991
+ np.float64,0xbf6eb579c03d6b00,0xbf6eb57052f47019,2
992
+ np.float64,0x3fefb67b3bff6cf6,0x3fe83fe4499969ac,2
993
+ np.float64,0xbfe5183aacea3076,0xbfe27da1aa0b61a0,2
994
+ np.float64,0xbfb83e47a2307c90,0xbfb82bcb0e12db42,2
995
+ np.float64,0x80088849b1b11094,0x80088849b1b11094,2
996
+ np.float64,0x800ceeed7399dddb,0x800ceeed7399dddb,2
997
+ np.float64,0x80097cd90892f9b2,0x80097cd90892f9b2,2
998
+ np.float64,0x7ec73feefd8e9,0x7ec73feefd8e9,2
999
+ np.float64,0x7fe3291de5a6523b,0x3ff0000000000000,2
1000
+ np.float64,0xbfd537086daa6e10,0xbfd4787af5f60653,2
1001
+ np.float64,0x800e8ed4455d1da9,0x800e8ed4455d1da9,2
1002
+ np.float64,0x800ef8d19cbdf1a3,0x800ef8d19cbdf1a3,2
1003
+ np.float64,0x800dc4fa3a5b89f5,0x800dc4fa3a5b89f5,2
1004
+ np.float64,0xaa8b85cd55171,0xaa8b85cd55171,2
1005
+ np.float64,0xffd67a5f40acf4be,0xbff0000000000000,2
1006
+ np.float64,0xbfb7496db22e92d8,0xbfb7390a48130861,2
1007
+ np.float64,0x3fd86a8e7ab0d51d,0x3fd74bfba0f72616,2
1008
+ np.float64,0xffb7f5b7fc2feb70,0xbff0000000000000,2
1009
+ np.float64,0xbfea0960a7f412c1,0xbfe57db6d0ff4191,2
1010
+ np.float64,0x375f4fc26ebeb,0x375f4fc26ebeb,2
1011
+ np.float64,0x800c537e70b8a6fd,0x800c537e70b8a6fd,2
1012
+ np.float64,0x800b3f4506d67e8a,0x800b3f4506d67e8a,2
1013
+ np.float64,0x7fe61f2d592c3e5a,0x3ff0000000000000,2
1014
+ np.float64,0xffefffffffffffff,0xbff0000000000000,2
1015
+ np.float64,0x8005d0bb84eba178,0x8005d0bb84eba178,2
1016
+ np.float64,0x800c78b0ec18f162,0x800c78b0ec18f162,2
1017
+ np.float64,0xbfc42cccfb285998,0xbfc4027392f66b0d,2
1018
+ np.float64,0x3fd8fdc73fb1fb8e,0x3fd7cb46f928153f,2
1019
+ np.float64,0x800c71754298e2eb,0x800c71754298e2eb,2
1020
+ np.float64,0x3fe4aa7a96a954f5,0x3fe233f5d3bc1352,2
1021
+ np.float64,0x7fd53841f6aa7083,0x3ff0000000000000,2
1022
+ np.float64,0x3fd0a887b8a15110,0x3fd04ac3b9c0d1ca,2
1023
+ np.float64,0x8007b8e164cf71c4,0x8007b8e164cf71c4,2
1024
+ np.float64,0xbfddc35c66bb86b8,0xbfdbc9c5dddfb014,2
1025
+ np.float64,0x6a3756fed46eb,0x6a3756fed46eb,2
1026
+ np.float64,0xffd3dcd05527b9a0,0xbff0000000000000,2
1027
+ np.float64,0xbfd7dc75632fb8ea,0xbfd6d0538b340a98,2
1028
+ np.float64,0x17501f822ea05,0x17501f822ea05,2
1029
+ np.float64,0xbfe1f98b99a3f317,0xbfe04bbf8f8b6cb3,2
1030
+ np.float64,0x66ea65d2cdd4d,0x66ea65d2cdd4d,2
1031
+ np.float64,0xbfd12241e2224484,0xbfd0bc62f46ea5e1,2
1032
+ np.float64,0x3fed6e6fb3fadcdf,0x3fe7398249097285,2
1033
+ np.float64,0x3fe0b5ebeba16bd8,0x3fdeae84b3000a47,2
1034
+ np.float64,0x66d1bce8cda38,0x66d1bce8cda38,2
1035
+ np.float64,0x3fdd728db3bae51b,0x3fdb880f28c52713,2
1036
+ np.float64,0xffb45dbe5228bb80,0xbff0000000000000,2
1037
+ np.float64,0x1ff8990c3ff14,0x1ff8990c3ff14,2
1038
+ np.float64,0x800a68e8f294d1d2,0x800a68e8f294d1d2,2
1039
+ np.float64,0xbfe4d08b84a9a117,0xbfe24da40bff6be7,2
1040
+ np.float64,0x3fe0177f0ee02efe,0x3fddb83c5971df51,2
1041
+ np.float64,0xffc56893692ad128,0xbff0000000000000,2
1042
+ np.float64,0x51b44f6aa368b,0x51b44f6aa368b,2
1043
+ np.float64,0x2258ff4e44b21,0x2258ff4e44b21,2
1044
+ np.float64,0x3fe913649e7226c9,0x3fe4f3f119530f53,2
1045
+ np.float64,0xffe3767df766ecfc,0xbff0000000000000,2
1046
+ np.float64,0xbfe62ae12fec55c2,0xbfe33108f1f22a94,2
1047
+ np.float64,0x7fb6a6308e2d4c60,0x3ff0000000000000,2
1048
+ np.float64,0xbfe00f2085e01e41,0xbfddab19b6fc77d1,2
1049
+ np.float64,0x3fb66447dc2cc890,0x3fb655b4f46844f0,2
1050
+ np.float64,0x3fd80238f6b00470,0x3fd6f143be1617d6,2
1051
+ np.float64,0xbfd05bfeb3a0b7fe,0xbfd0031ab3455e15,2
1052
+ np.float64,0xffc3a50351274a08,0xbff0000000000000,2
1053
+ np.float64,0xffd8f4241cb1e848,0xbff0000000000000,2
1054
+ np.float64,0xbfca72a88c34e550,0xbfca13ebe85f2aca,2
1055
+ np.float64,0x3fd47d683ba8fad0,0x3fd3d13f1176ed8c,2
1056
+ np.float64,0x3fb6418e642c831d,0x3fb6333ebe479ff2,2
1057
+ np.float64,0x800fde8e023fbd1c,0x800fde8e023fbd1c,2
1058
+ np.float64,0x8001fb01e323f605,0x8001fb01e323f605,2
1059
+ np.float64,0x3febb21ff9f76440,0x3fe65ed788d52fee,2
1060
+ np.float64,0x3fe47553ffe8eaa8,0x3fe20fe01f853603,2
1061
+ np.float64,0x7fca20b3f9344167,0x3ff0000000000000,2
1062
+ np.float64,0x3fe704f4ec6e09ea,0x3fe3ba7277201805,2
1063
+ np.float64,0xf864359df0c87,0xf864359df0c87,2
1064
+ np.float64,0x4d96b01c9b2d7,0x4d96b01c9b2d7,2
1065
+ np.float64,0x3fe8a09fe9f14140,0x3fe4b1c6a2d2e095,2
1066
+ np.float64,0xffc46c61b228d8c4,0xbff0000000000000,2
1067
+ np.float64,0x3fe680a837ed0150,0x3fe3679d6eeb6485,2
1068
+ np.float64,0xbfecedc20f39db84,0xbfe6fbe9ee978bf6,2
1069
+ np.float64,0x3fb2314eae24629d,0x3fb2297ba6d55d2d,2
1070
+ np.float64,0x3fe9f0b8e7b3e172,0x3fe57026eae36db3,2
1071
+ np.float64,0x80097a132ed2f427,0x80097a132ed2f427,2
1072
+ np.float64,0x800ae5a41955cb49,0x800ae5a41955cb49,2
1073
+ np.float64,0xbfd7527279aea4e4,0xbfd6577de356e1bd,2
1074
+ np.float64,0x3fe27d3e01e4fa7c,0x3fe0ac7dd96f9179,2
1075
+ np.float64,0x7fedd8cb01bbb195,0x3ff0000000000000,2
1076
+ np.float64,0x78f8695af1f0e,0x78f8695af1f0e,2
1077
+ np.float64,0x800d2d0e927a5a1d,0x800d2d0e927a5a1d,2
1078
+ np.float64,0xffe74b46fb2e968e,0xbff0000000000000,2
1079
+ np.float64,0xbfdd12d4c8ba25aa,0xbfdb39dae49e1c10,2
1080
+ np.float64,0xbfd6c14710ad828e,0xbfd5d79ef5a8d921,2
1081
+ np.float64,0x921f4e55243ea,0x921f4e55243ea,2
1082
+ np.float64,0x800b4e4c80969c99,0x800b4e4c80969c99,2
1083
+ np.float64,0x7fe08c6ab7e118d4,0x3ff0000000000000,2
1084
+ np.float64,0xbfed290014fa5200,0xbfe71871f7e859ed,2
1085
+ np.float64,0x8008c1d5c59183ac,0x8008c1d5c59183ac,2
1086
+ np.float64,0x3fd339e68c2673cd,0x3fd2aaff3f165a9d,2
1087
+ np.float64,0xbfdd20d8113a41b0,0xbfdb4553ea2cb2fb,2
1088
+ np.float64,0x3fe52a25deea544c,0x3fe2898d5bf4442c,2
1089
+ np.float64,0x498602d4930c1,0x498602d4930c1,2
1090
+ np.float64,0x3fd8c450113188a0,0x3fd799b0b2a6c43c,2
1091
+ np.float64,0xbfd72bc2f2ae5786,0xbfd6357e15ba7f70,2
1092
+ np.float64,0xbfd076188ea0ec32,0xbfd01b8fce44d1af,2
1093
+ np.float64,0x9aace1713559c,0x9aace1713559c,2
1094
+ np.float64,0x8008a730e8914e62,0x8008a730e8914e62,2
1095
+ np.float64,0x7fe9e9a3d833d347,0x3ff0000000000000,2
1096
+ np.float64,0x800d3a0d69da741b,0x800d3a0d69da741b,2
1097
+ np.float64,0xbfe3e28a29e7c514,0xbfe1aad7643a2d19,2
1098
+ np.float64,0x7fe9894c71331298,0x3ff0000000000000,2
1099
+ np.float64,0xbfe7c6acb5ef8d5a,0xbfe430c9e258ce62,2
1100
+ np.float64,0xffb5a520a62b4a40,0xbff0000000000000,2
1101
+ np.float64,0x7fc02109ae204212,0x3ff0000000000000,2
1102
+ np.float64,0xb5c58f196b8b2,0xb5c58f196b8b2,2
1103
+ np.float64,0x3feb4ee82e769dd0,0x3fe62bae9a39d8b1,2
1104
+ np.float64,0x3fec5c3cf278b87a,0x3fe6b49000f12441,2
1105
+ np.float64,0x81f64b8103eca,0x81f64b8103eca,2
1106
+ np.float64,0xbfeab00d73f5601b,0xbfe5d7f755ab73d9,2
1107
+ np.float64,0x3fd016bf28a02d7e,0x3fcf843ea23bcd3c,2
1108
+ np.float64,0xbfa1db617423b6c0,0xbfa1d9872ddeb5a8,2
1109
+ np.float64,0x3fe83c879d70790f,0x3fe4771502d8f012,2
1110
+ np.float64,0x6b267586d64cf,0x6b267586d64cf,2
1111
+ np.float64,0x3fc91b6d3f3236d8,0x3fc8ca3eb4da25a9,2
1112
+ np.float64,0x7fd4e3f8f3a9c7f1,0x3ff0000000000000,2
1113
+ np.float64,0x800a75899214eb14,0x800a75899214eb14,2
1114
+ np.float64,0x7fdb1f2e07b63e5b,0x3ff0000000000000,2
1115
+ np.float64,0xffe7805a11ef00b4,0xbff0000000000000,2
1116
+ np.float64,0x3fc8e1b88a31c371,0x3fc892af45330818,2
1117
+ np.float64,0xbfe809fe447013fc,0xbfe45918f07da4d9,2
1118
+ np.float64,0xbfeb9d7f2ab73afe,0xbfe65446bfddc792,2
1119
+ np.float64,0x3fb47f0a5c28fe15,0x3fb473db9113e880,2
1120
+ np.float64,0x800a17ae3cb42f5d,0x800a17ae3cb42f5d,2
1121
+ np.float64,0xf5540945eaa81,0xf5540945eaa81,2
1122
+ np.float64,0xbfe577fc26aaeff8,0xbfe2bcfbf2cf69ff,2
1123
+ np.float64,0xbfb99b3e06333680,0xbfb98577b88e0515,2
1124
+ np.float64,0x7fd9290391b25206,0x3ff0000000000000,2
1125
+ np.float64,0x7fe1aa62ffa354c5,0x3ff0000000000000,2
1126
+ np.float64,0x7b0189a0f604,0x7b0189a0f604,2
1127
+ np.float64,0x3f9000ed602001db,0x3f900097fe168105,2
1128
+ np.float64,0x3fd576128d2aec25,0x3fd4b1002c92286f,2
1129
+ np.float64,0xffecc98ece79931d,0xbff0000000000000,2
1130
+ np.float64,0x800a1736c7f42e6e,0x800a1736c7f42e6e,2
1131
+ np.float64,0xbfed947548bb28eb,0xbfe74b71479ae739,2
1132
+ np.float64,0xa45c032148b9,0xa45c032148b9,2
1133
+ np.float64,0xbfc13d011c227a04,0xbfc1228447de5e9f,2
1134
+ np.float64,0xffed8baa6ebb1754,0xbff0000000000000,2
1135
+ np.float64,0x800ea2de243d45bc,0x800ea2de243d45bc,2
1136
+ np.float64,0x8001396be52272d9,0x8001396be52272d9,2
1137
+ np.float64,0xd018d1cda031a,0xd018d1cda031a,2
1138
+ np.float64,0x7fe1fece1fe3fd9b,0x3ff0000000000000,2
1139
+ np.float64,0x8009ac484c135891,0x8009ac484c135891,2
1140
+ np.float64,0x3fc560ad132ac15a,0x3fc52e5a9479f08e,2
1141
+ np.float64,0x3fd6f80ebe2df01d,0x3fd607f70ce8e3f4,2
1142
+ np.float64,0xbfd3e69e82a7cd3e,0xbfd34887c2a40699,2
1143
+ np.float64,0x3fe232d9baa465b3,0x3fe0760a822ada0c,2
1144
+ np.float64,0x3fe769bbc6eed378,0x3fe3f872680f6631,2
1145
+ np.float64,0xffe63dbd952c7b7a,0xbff0000000000000,2
1146
+ np.float64,0x4e0c00da9c181,0x4e0c00da9c181,2
1147
+ np.float64,0xffeae4d89735c9b0,0xbff0000000000000,2
1148
+ np.float64,0x3fe030bcbb606179,0x3fdddfc66660bfce,2
1149
+ np.float64,0x7fe35ca40d66b947,0x3ff0000000000000,2
1150
+ np.float64,0xbfd45bd66628b7ac,0xbfd3b2e04bfe7866,2
1151
+ np.float64,0x3fd1f0be2323e17c,0x3fd17c1c340d7a48,2
1152
+ np.float64,0x3fd7123b6cae2478,0x3fd61f0675aa9ae1,2
1153
+ np.float64,0xbfe918a377723147,0xbfe4f6efe66f5714,2
1154
+ np.float64,0x7fc400356f28006a,0x3ff0000000000000,2
1155
+ np.float64,0x7fd2dead70a5bd5a,0x3ff0000000000000,2
1156
+ np.float64,0xffe9c28f81f3851e,0xbff0000000000000,2
1157
+ np.float64,0x3fd09b1ec7a1363e,0x3fd03e3894320140,2
1158
+ np.float64,0x7fe6e80c646dd018,0x3ff0000000000000,2
1159
+ np.float64,0x7fec3760a4786ec0,0x3ff0000000000000,2
1160
+ np.float64,0x309eb6ee613d8,0x309eb6ee613d8,2
1161
+ np.float64,0x800731cb0ece6397,0x800731cb0ece6397,2
1162
+ np.float64,0xbfdb0c553db618aa,0xbfd98b8a4680ee60,2
1163
+ np.float64,0x3fd603a52eac074c,0x3fd52f6b53de7455,2
1164
+ np.float64,0x9ecb821b3d971,0x9ecb821b3d971,2
1165
+ np.float64,0x3feb7d64dc36faca,0x3fe643c2754bb7f4,2
1166
+ np.float64,0xffeb94825ef72904,0xbff0000000000000,2
1167
+ np.float64,0x24267418484cf,0x24267418484cf,2
1168
+ np.float64,0xbfa6b2fbac2d65f0,0xbfa6af2dca5bfa6f,2
1169
+ np.float64,0x8010000000000000,0x8010000000000000,2
1170
+ np.float64,0xffe6873978ed0e72,0xbff0000000000000,2
1171
+ np.float64,0x800447934ba88f27,0x800447934ba88f27,2
1172
+ np.float64,0x3fef305f09fe60be,0x3fe806156b8ca47c,2
1173
+ np.float64,0xffd441c697a8838e,0xbff0000000000000,2
1174
+ np.float64,0xbfa7684f6c2ed0a0,0xbfa764238d34830c,2
1175
+ np.float64,0xffb2c976142592f0,0xbff0000000000000,2
1176
+ np.float64,0xbfcc9d1585393a2c,0xbfcc25756bcbca1f,2
1177
+ np.float64,0xbfd477bb1ba8ef76,0xbfd3cc1d2114e77e,2
1178
+ np.float64,0xbfed1559983a2ab3,0xbfe70f03afd994ee,2
1179
+ np.float64,0xbfeb51139036a227,0xbfe62ccf56bc7fff,2
1180
+ np.float64,0x7d802890fb006,0x7d802890fb006,2
1181
+ np.float64,0x800e00af777c015f,0x800e00af777c015f,2
1182
+ np.float64,0x800647ce128c8f9d,0x800647ce128c8f9d,2
1183
+ np.float64,0x800a26da91d44db6,0x800a26da91d44db6,2
1184
+ np.float64,0x3fdc727eddb8e4fe,0x3fdab5fd9db630b3,2
1185
+ np.float64,0x7fd06def2ba0dbdd,0x3ff0000000000000,2
1186
+ np.float64,0xffe23678c4a46cf1,0xbff0000000000000,2
1187
+ np.float64,0xbfe7198e42ee331c,0xbfe3c7326c9c7553,2
1188
+ np.float64,0xffae465f3c3c8cc0,0xbff0000000000000,2
1189
+ np.float64,0xff9aea7c5035d500,0xbff0000000000000,2
1190
+ np.float64,0xbfeae49c0f35c938,0xbfe5f3e9326cb08b,2
1191
+ np.float64,0x3f9a16f300342de6,0x3f9a1581212be50f,2
1192
+ np.float64,0x8d99e2c31b33d,0x8d99e2c31b33d,2
1193
+ np.float64,0xffd58af253ab15e4,0xbff0000000000000,2
1194
+ np.float64,0xbfd205cd25a40b9a,0xbfd18f97155f8b25,2
1195
+ np.float64,0xbfebe839bbf7d074,0xbfe67a6024e8fefe,2
1196
+ np.float64,0xbfe4fb3595a9f66b,0xbfe26a42f99819ea,2
1197
+ np.float64,0x800e867c739d0cf9,0x800e867c739d0cf9,2
1198
+ np.float64,0x8bc4274f17885,0x8bc4274f17885,2
1199
+ np.float64,0xaec8914b5d912,0xaec8914b5d912,2
1200
+ np.float64,0x7fd1d64473a3ac88,0x3ff0000000000000,2
1201
+ np.float64,0xbfe6d6f69cedaded,0xbfe39dd61bc7e23e,2
1202
+ np.float64,0x7fed05039d7a0a06,0x3ff0000000000000,2
1203
+ np.float64,0xbfc40eab0f281d58,0xbfc3e50d14b79265,2
1204
+ np.float64,0x45179aec8a2f4,0x45179aec8a2f4,2
1205
+ np.float64,0xbfe717e362ee2fc7,0xbfe3c62a95b07d13,2
1206
+ np.float64,0xbfe5b8df0d6b71be,0xbfe2e76c7ec5013d,2
1207
+ np.float64,0x5c67ba6eb8cf8,0x5c67ba6eb8cf8,2
1208
+ np.float64,0xbfda72ce4cb4e59c,0xbfd909fdc7ecfe20,2
1209
+ np.float64,0x7fdf59a1e2beb343,0x3ff0000000000000,2
1210
+ np.float64,0xc4f7897f89ef1,0xc4f7897f89ef1,2
1211
+ np.float64,0x8fcd0a351f9a2,0x8fcd0a351f9a2,2
1212
+ np.float64,0x3fb161761022c2ec,0x3fb15aa31c464de2,2
1213
+ np.float64,0x8008a985be71530c,0x8008a985be71530c,2
1214
+ np.float64,0x3fca4ddb5e349bb7,0x3fc9f0a3b60e49c6,2
1215
+ np.float64,0x7fcc10a2d9382145,0x3ff0000000000000,2
1216
+ np.float64,0x78902b3af1206,0x78902b3af1206,2
1217
+ np.float64,0x7fe1e2765f23c4ec,0x3ff0000000000000,2
1218
+ np.float64,0xc1d288cf83a51,0xc1d288cf83a51,2
1219
+ np.float64,0x7fe8af692bb15ed1,0x3ff0000000000000,2
1220
+ np.float64,0x80057d90fb8afb23,0x80057d90fb8afb23,2
1221
+ np.float64,0x3fdc136b8fb826d8,0x3fda6749582b2115,2
1222
+ np.float64,0x800ec8ea477d91d5,0x800ec8ea477d91d5,2
1223
+ np.float64,0x4c0f4796981ea,0x4c0f4796981ea,2
1224
+ np.float64,0xec34c4a5d8699,0xec34c4a5d8699,2
1225
+ np.float64,0x7fce343dfb3c687b,0x3ff0000000000000,2
1226
+ np.float64,0xbfc95a98a332b530,0xbfc90705b2cc2fec,2
1227
+ np.float64,0x800d118e1dba231c,0x800d118e1dba231c,2
1228
+ np.float64,0x3fd354f310a6a9e8,0x3fd2c3bb90054154,2
1229
+ np.float64,0xbfdac0d4fab581aa,0xbfd94bf37424928e,2
1230
+ np.float64,0x3fe7f5391fefea72,0x3fe44cb49d51985b,2
1231
+ np.float64,0xd4c3c329a9879,0xd4c3c329a9879,2
1232
+ np.float64,0x3fc53977692a72f0,0x3fc50835d85c9ed1,2
1233
+ np.float64,0xbfd6989538ad312a,0xbfd5b3a2c08511fe,2
1234
+ np.float64,0xbfe329f2906653e5,0xbfe128ec1525a1c0,2
1235
+ np.float64,0x7ff0000000000000,0x3ff0000000000000,2
1236
+ np.float64,0xbfea57c90974af92,0xbfe5a87b04aa3116,2
1237
+ np.float64,0x7fdfba94043f7527,0x3ff0000000000000,2
1238
+ np.float64,0x3feedabddafdb57c,0x3fe7e06c0661978d,2
1239
+ np.float64,0x4bd9f3b697b3f,0x4bd9f3b697b3f,2
1240
+ np.float64,0x3fdd15bbfc3a2b78,0x3fdb3c3b8d070f7e,2
1241
+ np.float64,0x3fbd89ccd23b13a0,0x3fbd686b825cff80,2
1242
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,2
1243
+ np.float64,0x3f9baa8928375512,0x3f9ba8d01ddd5300,2
1244
+ np.float64,0x4a3ebdf2947d8,0x4a3ebdf2947d8,2
1245
+ np.float64,0x3fe698d5c06d31ac,0x3fe376dff48312c8,2
1246
+ np.float64,0xffd5323df12a647c,0xbff0000000000000,2
1247
+ np.float64,0xffea7f111174fe22,0xbff0000000000000,2
1248
+ np.float64,0x3feb4656a9b68cad,0x3fe627392eb2156f,2
1249
+ np.float64,0x7fc1260e9c224c1c,0x3ff0000000000000,2
1250
+ np.float64,0x80056e45e5eadc8d,0x80056e45e5eadc8d,2
1251
+ np.float64,0x7fd0958ef6a12b1d,0x3ff0000000000000,2
1252
+ np.float64,0x8001f85664e3f0ae,0x8001f85664e3f0ae,2
1253
+ np.float64,0x3fe553853beaa70a,0x3fe2a4f5e7c83558,2
1254
+ np.float64,0xbfeb33ce6276679d,0xbfe61d8ec9e5ff8c,2
1255
+ np.float64,0xbfd1b24e21a3649c,0xbfd14245df6065e9,2
1256
+ np.float64,0x3fe286fc40650df9,0x3fe0b395c8059429,2
1257
+ np.float64,0xffed378058fa6f00,0xbff0000000000000,2
1258
+ np.float64,0xbfd0c4a2d7a18946,0xbfd06509a434d6a0,2
1259
+ np.float64,0xbfea31d581f463ab,0xbfe593d976139f94,2
1260
+ np.float64,0xbfe0705c85e0e0b9,0xbfde42efa978eb0c,2
1261
+ np.float64,0xe4c4c339c9899,0xe4c4c339c9899,2
1262
+ np.float64,0x3fd68befa9ad17df,0x3fd5a870b3f1f83e,2
1263
+ np.float64,0x8000000000000001,0x8000000000000001,2
1264
+ np.float64,0x3fe294256965284b,0x3fe0bd271e22d86b,2
1265
+ np.float64,0x8005327a862a64f6,0x8005327a862a64f6,2
1266
+ np.float64,0xbfdb8155ce3702ac,0xbfd9ed9ef97920f8,2
1267
+ np.float64,0xbff0000000000000,0xbfe85efab514f394,2
1268
+ np.float64,0xffe66988f1ecd312,0xbff0000000000000,2
1269
+ np.float64,0x3fb178a85e22f150,0x3fb171b9fbf95f1d,2
1270
+ np.float64,0x7f829b900025371f,0x3ff0000000000000,2
1271
+ np.float64,0x8000000000000000,0x8000000000000000,2
1272
+ np.float64,0x8006cb77f60d96f1,0x8006cb77f60d96f1,2
1273
+ np.float64,0x3fe0c5d53aa18baa,0x3fdec7012ab92b42,2
1274
+ np.float64,0x77266426ee4cd,0x77266426ee4cd,2
1275
+ np.float64,0xbfec95f468392be9,0xbfe6d11428f60136,2
1276
+ np.float64,0x3fedbf532dfb7ea6,0x3fe75f8436dd1d58,2
1277
+ np.float64,0x8002fadd3f85f5bb,0x8002fadd3f85f5bb,2
1278
+ np.float64,0xbfefebaa8d3fd755,0xbfe8566c6aa90fba,2
1279
+ np.float64,0xffc7dd2b712fba58,0xbff0000000000000,2
1280
+ np.float64,0x7fe5d3a6e8aba74d,0x3ff0000000000000,2
1281
+ np.float64,0x2da061525b40d,0x2da061525b40d,2
1282
+ np.float64,0x7fcb9b9953373732,0x3ff0000000000000,2
1283
+ np.float64,0x2ca2f6fc59460,0x2ca2f6fc59460,2
1284
+ np.float64,0xffeb84b05af70960,0xbff0000000000000,2
1285
+ np.float64,0xffe551e86c6aa3d0,0xbff0000000000000,2
1286
+ np.float64,0xbfdb311311366226,0xbfd9aa6688faafb9,2
1287
+ np.float64,0xbfd4f3875629e70e,0xbfd43bcd73534c66,2
1288
+ np.float64,0x7fe95666f932accd,0x3ff0000000000000,2
1289
+ np.float64,0x3fc73dfb482e7bf7,0x3fc6fd70c20ebf60,2
1290
+ np.float64,0x800cd9e40939b3c8,0x800cd9e40939b3c8,2
1291
+ np.float64,0x3fb0c9fa422193f0,0x3fb0c3d38879a2ac,2
1292
+ np.float64,0xffd59a38372b3470,0xbff0000000000000,2
1293
+ np.float64,0x3fa8320ef4306420,0x3fa82d739e937d35,2
1294
+ np.float64,0x3fd517f16caa2fe4,0x3fd45c8de1e93b37,2
1295
+ np.float64,0xaed921655db24,0xaed921655db24,2
1296
+ np.float64,0x93478fb9268f2,0x93478fb9268f2,2
1297
+ np.float64,0x1615e28a2c2bd,0x1615e28a2c2bd,2
1298
+ np.float64,0xbfead23010f5a460,0xbfe5ea24d5d8f820,2
1299
+ np.float64,0x774a6070ee94d,0x774a6070ee94d,2
1300
+ np.float64,0x3fdf5874bd3eb0e9,0x3fdd0ef121dd915c,2
1301
+ np.float64,0x8004b25f53a964bf,0x8004b25f53a964bf,2
1302
+ np.float64,0xbfddacdd2ebb59ba,0xbfdbb78198fab36b,2
1303
+ np.float64,0x8008a3acf271475a,0x8008a3acf271475a,2
1304
+ np.float64,0xbfdb537c8736a6fa,0xbfd9c741038bb8f0,2
1305
+ np.float64,0xbfe56a133f6ad426,0xbfe2b3d5b8d259a1,2
1306
+ np.float64,0xffda1db531343b6a,0xbff0000000000000,2
1307
+ np.float64,0x3fcbe05f3a37c0be,0x3fcb71a54a64ddfb,2
1308
+ np.float64,0x7fe1ccaa7da39954,0x3ff0000000000000,2
1309
+ np.float64,0x3faeadd8343d5bb0,0x3faea475608860e6,2
1310
+ np.float64,0x3fe662ba1c2cc574,0x3fe354a6176e90df,2
1311
+ np.float64,0xffe4d49f4e69a93e,0xbff0000000000000,2
1312
+ np.float64,0xbfeadbc424f5b788,0xbfe5ef39dbe66343,2
1313
+ np.float64,0x99cf66f1339ed,0x99cf66f1339ed,2
1314
+ np.float64,0x33af77a2675f0,0x33af77a2675f0,2
1315
+ np.float64,0x7fec7b32ecf8f665,0x3ff0000000000000,2
1316
+ np.float64,0xffef3e44993e7c88,0xbff0000000000000,2
1317
+ np.float64,0xffe8f8ceac31f19c,0xbff0000000000000,2
1318
+ np.float64,0x7fe0d15b6da1a2b6,0x3ff0000000000000,2
1319
+ np.float64,0x4ba795c2974f3,0x4ba795c2974f3,2
1320
+ np.float64,0x3fe361aa37a6c354,0x3fe15079021d6b15,2
1321
+ np.float64,0xffe709714f6e12e2,0xbff0000000000000,2
1322
+ np.float64,0xffe7ea6a872fd4d4,0xbff0000000000000,2
1323
+ np.float64,0xffdb9441c8b72884,0xbff0000000000000,2
1324
+ np.float64,0xffd5e11ae9abc236,0xbff0000000000000,2
1325
+ np.float64,0xffe092a08b612540,0xbff0000000000000,2
1326
+ np.float64,0x3fe1f27e1ca3e4fc,0x3fe04685b5131207,2
1327
+ np.float64,0xbfe71ce1bdee39c4,0xbfe3c940809a7081,2
1328
+ np.float64,0xffe8c3aa68318754,0xbff0000000000000,2
1329
+ np.float64,0x800d4e2919da9c52,0x800d4e2919da9c52,2
1330
+ np.float64,0x7fe6c8bca76d9178,0x3ff0000000000000,2
1331
+ np.float64,0x7fced8751e3db0e9,0x3ff0000000000000,2
1332
+ np.float64,0xd61d0c8bac3a2,0xd61d0c8bac3a2,2
1333
+ np.float64,0x3fec57732938aee6,0x3fe6b22f15f38352,2
1334
+ np.float64,0xff9251cc7024a3a0,0xbff0000000000000,2
1335
+ np.float64,0xf4a68cb9e94d2,0xf4a68cb9e94d2,2
1336
+ np.float64,0x3feed76703bdaece,0x3fe7def0fc9a080c,2
1337
+ np.float64,0xbfe8971ff7712e40,0xbfe4ac3eb8ebff07,2
1338
+ np.float64,0x3fe4825f682904bf,0x3fe218c1952fe67d,2
1339
+ np.float64,0xbfd60f7698ac1eee,0xbfd539f0979b4b0c,2
1340
+ np.float64,0x3fcf0845993e1088,0x3fce7032f7180144,2
1341
+ np.float64,0x7fc83443f3306887,0x3ff0000000000000,2
1342
+ np.float64,0x3fe93123ae726247,0x3fe504e4fc437e89,2
1343
+ np.float64,0x3fbf9eb8363f3d70,0x3fbf75cdfa6828d5,2
1344
+ np.float64,0xbf8b45e5d0368bc0,0xbf8b457c29dfe1a9,2
1345
+ np.float64,0x8006c2853d0d850b,0x8006c2853d0d850b,2
1346
+ np.float64,0xffef26e25ffe4dc4,0xbff0000000000000,2
1347
+ np.float64,0x7fefffffffffffff,0x3ff0000000000000,2
1348
+ np.float64,0xbfde98f2c2bd31e6,0xbfdc761bfab1c4cb,2
1349
+ np.float64,0xffb725e6222e4bd0,0xbff0000000000000,2
1350
+ np.float64,0x800c63ead5d8c7d6,0x800c63ead5d8c7d6,2
1351
+ np.float64,0x3fea087e95f410fd,0x3fe57d3ab440706c,2
1352
+ np.float64,0xbfdf9f8a603f3f14,0xbfdd4742d77dfa57,2
1353
+ np.float64,0xfff0000000000000,0xbff0000000000000,2
1354
+ np.float64,0xbfcdc0841d3b8108,0xbfcd3a401debba9a,2
1355
+ np.float64,0x800f0c8f4f7e191f,0x800f0c8f4f7e191f,2
1356
+ np.float64,0x800ba6e75fd74dcf,0x800ba6e75fd74dcf,2
1357
+ np.float64,0x7fee4927e8bc924f,0x3ff0000000000000,2
1358
+ np.float64,0x3fadf141903be283,0x3fade8878d9d3551,2
1359
+ np.float64,0x3efb1a267df64,0x3efb1a267df64,2
1360
+ np.float64,0xffebf55f22b7eabe,0xbff0000000000000,2
1361
+ np.float64,0x7fbe8045663d008a,0x3ff0000000000000,2
1362
+ np.float64,0x3fefc0129f7f8026,0x3fe843f8b7d6cf38,2
1363
+ np.float64,0xbfe846b420f08d68,0xbfe47d1709e43937,2
1364
+ np.float64,0x7fe8e87043f1d0e0,0x3ff0000000000000,2
1365
+ np.float64,0x3fcfb718453f6e31,0x3fcf14ecee7b32b4,2
1366
+ np.float64,0x7fe4306b71a860d6,0x3ff0000000000000,2
1367
+ np.float64,0x7fee08459f7c108a,0x3ff0000000000000,2
1368
+ np.float64,0x3fed705165fae0a3,0x3fe73a66369c5700,2
1369
+ np.float64,0x7fd0e63f4da1cc7e,0x3ff0000000000000,2
1370
+ np.float64,0xffd1a40c2ea34818,0xbff0000000000000,2
1371
+ np.float64,0xbfa369795c26d2f0,0xbfa36718218d46b3,2
1372
+ np.float64,0xef70b9f5dee17,0xef70b9f5dee17,2
1373
+ np.float64,0x3fb50a0a6e2a1410,0x3fb4fdf27724560a,2
1374
+ np.float64,0x7fe30a0f6166141e,0x3ff0000000000000,2
1375
+ np.float64,0xbfd7b3ca7daf6794,0xbfd6accb81032b2d,2
1376
+ np.float64,0x3fc21dceb3243b9d,0x3fc1ff15d5d277a3,2
1377
+ np.float64,0x3fe483e445a907c9,0x3fe219ca0e269552,2
1378
+ np.float64,0x3fb2b1e2a22563c0,0x3fb2a96554900eaf,2
1379
+ np.float64,0x4b1ff6409641,0x4b1ff6409641,2
1380
+ np.float64,0xbfd92eabc9b25d58,0xbfd7f55d7776d64e,2
1381
+ np.float64,0x8003b8604c8770c1,0x8003b8604c8770c1,2
1382
+ np.float64,0x800d20a9df1a4154,0x800d20a9df1a4154,2
1383
+ np.float64,0xecf8a535d9f15,0xecf8a535d9f15,2
1384
+ np.float64,0x3fe92d15bab25a2b,0x3fe50296aa15ae85,2
1385
+ np.float64,0x800239c205a47385,0x800239c205a47385,2
1386
+ np.float64,0x3fc48664a9290cc8,0x3fc459d126320ef6,2
1387
+ np.float64,0x3fe7620625eec40c,0x3fe3f3bcbee3e8c6,2
1388
+ np.float64,0x3fd242ff4ca48600,0x3fd1c81ed7a971c8,2
1389
+ np.float64,0xbfe39bafcfa73760,0xbfe17959c7a279db,2
1390
+ np.float64,0x7fdcd2567239a4ac,0x3ff0000000000000,2
1391
+ np.float64,0x3fe5f2f292ebe5e6,0x3fe30d12f05e2752,2
1392
+ np.float64,0x7fda3819d1347033,0x3ff0000000000000,2
1393
+ np.float64,0xffca5b4d4334b69c,0xbff0000000000000,2
1394
+ np.float64,0xb8a2b7cd71457,0xb8a2b7cd71457,2
1395
+ np.float64,0x3fee689603fcd12c,0x3fe7ad4ace26d6dd,2
1396
+ np.float64,0x7fe26541a564ca82,0x3ff0000000000000,2
1397
+ np.float64,0x3fe6912ee66d225e,0x3fe3720d242c4d82,2
1398
+ np.float64,0xffe6580c75ecb018,0xbff0000000000000,2
1399
+ np.float64,0x7fe01a3370603466,0x3ff0000000000000,2
1400
+ np.float64,0xffe84e3f84b09c7e,0xbff0000000000000,2
1401
+ np.float64,0x3ff0000000000000,0x3fe85efab514f394,2
1402
+ np.float64,0x3fe214d4266429a8,0x3fe05fec03a3c247,2
1403
+ np.float64,0x3fd00aec5da015d8,0x3fcf6e070ad4ad62,2
1404
+ np.float64,0x800aac8631f5590d,0x800aac8631f5590d,2
1405
+ np.float64,0xbfe7c4f5f76f89ec,0xbfe42fc1c57b4a13,2
1406
+ np.float64,0xaf146c7d5e28e,0xaf146c7d5e28e,2
1407
+ np.float64,0xbfe57188b66ae312,0xbfe2b8be4615ef75,2
1408
+ np.float64,0xffef8cb8e1ff1971,0xbff0000000000000,2
1409
+ np.float64,0x8001daf8aa63b5f2,0x8001daf8aa63b5f2,2
1410
+ np.float64,0x3fdddcc339bbb986,0x3fdbde5f3783538b,2
1411
+ np.float64,0xdd8c92c3bb193,0xdd8c92c3bb193,2
1412
+ np.float64,0xbfe861a148f0c342,0xbfe48cf1d228a336,2
1413
+ np.float64,0xffe260a32e24c146,0xbff0000000000000,2
1414
+ np.float64,0x1f7474b43ee8f,0x1f7474b43ee8f,2
1415
+ np.float64,0x3fe81dbd89703b7c,0x3fe464d78df92b7b,2
1416
+ np.float64,0x7fed0101177a0201,0x3ff0000000000000,2
1417
+ np.float64,0x7fd8b419a8316832,0x3ff0000000000000,2
1418
+ np.float64,0x3fe93debccf27bd8,0x3fe50c27727917f0,2
1419
+ np.float64,0xe5ead05bcbd5a,0xe5ead05bcbd5a,2
1420
+ np.float64,0xbfebbbc4cff7778a,0xbfe663c4ca003bbf,2
1421
+ np.float64,0xbfea343eb474687e,0xbfe59529f73ea151,2
1422
+ np.float64,0x3fbe74a5963ce94b,0x3fbe50123ed05d8d,2
1423
+ np.float64,0x3fd31d3a5d263a75,0x3fd290c026cb38a5,2
1424
+ np.float64,0xbfd79908acaf3212,0xbfd695620e31c3c6,2
1425
+ np.float64,0xbfc26a350324d46c,0xbfc249f335f3e465,2
1426
+ np.float64,0xbfac38d5583871b0,0xbfac31866d12a45e,2
1427
+ np.float64,0x3fe40cea672819d5,0x3fe1c83754e72c92,2
1428
+ np.float64,0xbfa74770642e8ee0,0xbfa74355fcf67332,2
1429
+ np.float64,0x7fc60942d32c1285,0x3ff0000000000000,2