com.googler.python 1.0.0

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 (2352) hide show
  1. package/package.json +7 -0
  2. package/python3 +6 -0
  3. package/python3.4.2/bin/2to3 +5 -0
  4. package/python3.4.2/bin/2to3-3.4 +5 -0
  5. package/python3.4.2/bin/android-debian-builder +10 -0
  6. package/python3.4.2/bin/easy_install-3.4 +11 -0
  7. package/python3.4.2/bin/idle3 +5 -0
  8. package/python3.4.2/bin/idle3.4 +5 -0
  9. package/python3.4.2/bin/pip3 +11 -0
  10. package/python3.4.2/bin/pip3.4 +11 -0
  11. package/python3.4.2/bin/pydoc3 +5 -0
  12. package/python3.4.2/bin/pydoc3.4 +5 -0
  13. package/python3.4.2/bin/python3-config +111 -0
  14. package/python3.4.2/bin/python3.4 +0 -0
  15. package/python3.4.2/bin/python3.4-config +111 -0
  16. package/python3.4.2/bin/python3.4m-config +111 -0
  17. package/python3.4.2/bin/pyvenv +11 -0
  18. package/python3.4.2/bin/pyvenv-3.4 +11 -0
  19. package/python3.4.2/include/python3.4m/Python-ast.h +569 -0
  20. package/python3.4.2/include/python3.4m/Python.h +133 -0
  21. package/python3.4.2/include/python3.4m/abstract.h +1267 -0
  22. package/python3.4.2/include/python3.4m/accu.h +37 -0
  23. package/python3.4.2/include/python3.4m/asdl.h +45 -0
  24. package/python3.4.2/include/python3.4m/ast.h +22 -0
  25. package/python3.4.2/include/python3.4m/bitset.h +32 -0
  26. package/python3.4.2/include/python3.4m/bltinmodule.h +14 -0
  27. package/python3.4.2/include/python3.4m/boolobject.h +34 -0
  28. package/python3.4.2/include/python3.4m/bytearrayobject.h +62 -0
  29. package/python3.4.2/include/python3.4m/bytes_methods.h +46 -0
  30. package/python3.4.2/include/python3.4m/bytesobject.h +128 -0
  31. package/python3.4.2/include/python3.4m/cellobject.h +29 -0
  32. package/python3.4.2/include/python3.4m/ceval.h +205 -0
  33. package/python3.4.2/include/python3.4m/classobject.h +58 -0
  34. package/python3.4.2/include/python3.4m/code.h +115 -0
  35. package/python3.4.2/include/python3.4m/codecs.h +233 -0
  36. package/python3.4.2/include/python3.4m/compile.h +72 -0
  37. package/python3.4.2/include/python3.4m/complexobject.h +77 -0
  38. package/python3.4.2/include/python3.4m/datetime.h +243 -0
  39. package/python3.4.2/include/python3.4m/descrobject.h +105 -0
  40. package/python3.4.2/include/python3.4m/dictobject.h +126 -0
  41. package/python3.4.2/include/python3.4m/dtoa.h +19 -0
  42. package/python3.4.2/include/python3.4m/dynamic_annotations.h +499 -0
  43. package/python3.4.2/include/python3.4m/enumobject.h +17 -0
  44. package/python3.4.2/include/python3.4m/errcode.h +38 -0
  45. package/python3.4.2/include/python3.4m/eval.h +27 -0
  46. package/python3.4.2/include/python3.4m/fileobject.h +58 -0
  47. package/python3.4.2/include/python3.4m/fileutils.h +79 -0
  48. package/python3.4.2/include/python3.4m/floatobject.h +128 -0
  49. package/python3.4.2/include/python3.4m/frameobject.h +95 -0
  50. package/python3.4.2/include/python3.4m/funcobject.h +89 -0
  51. package/python3.4.2/include/python3.4m/genobject.h +46 -0
  52. package/python3.4.2/include/python3.4m/graminit.h +84 -0
  53. package/python3.4.2/include/python3.4m/grammar.h +93 -0
  54. package/python3.4.2/include/python3.4m/import.h +130 -0
  55. package/python3.4.2/include/python3.4m/intrcheck.h +21 -0
  56. package/python3.4.2/include/python3.4m/iterobject.h +25 -0
  57. package/python3.4.2/include/python3.4m/listobject.h +80 -0
  58. package/python3.4.2/include/python3.4m/longintrepr.h +103 -0
  59. package/python3.4.2/include/python3.4m/longobject.h +204 -0
  60. package/python3.4.2/include/python3.4m/marshal.h +28 -0
  61. package/python3.4.2/include/python3.4m/memoryobject.h +74 -0
  62. package/python3.4.2/include/python3.4m/metagrammar.h +18 -0
  63. package/python3.4.2/include/python3.4m/methodobject.h +93 -0
  64. package/python3.4.2/include/python3.4m/modsupport.h +132 -0
  65. package/python3.4.2/include/python3.4m/moduleobject.h +63 -0
  66. package/python3.4.2/include/python3.4m/namespaceobject.h +17 -0
  67. package/python3.4.2/include/python3.4m/node.h +44 -0
  68. package/python3.4.2/include/python3.4m/object.h +1015 -0
  69. package/python3.4.2/include/python3.4m/objimpl.h +361 -0
  70. package/python3.4.2/include/python3.4m/opcode.h +159 -0
  71. package/python3.4.2/include/python3.4m/osdefs.h +50 -0
  72. package/python3.4.2/include/python3.4m/parsetok.h +108 -0
  73. package/python3.4.2/include/python3.4m/patchlevel.h +35 -0
  74. package/python3.4.2/include/python3.4m/pgen.h +18 -0
  75. package/python3.4.2/include/python3.4m/pgenheaders.h +42 -0
  76. package/python3.4.2/include/python3.4m/py_curses.h +177 -0
  77. package/python3.4.2/include/python3.4m/pyarena.h +64 -0
  78. package/python3.4.2/include/python3.4m/pyatomic.h +184 -0
  79. package/python3.4.2/include/python3.4m/pycapsule.h +59 -0
  80. package/python3.4.2/include/python3.4m/pyconfig.h +1503 -0
  81. package/python3.4.2/include/python3.4m/pyctype.h +33 -0
  82. package/python3.4.2/include/python3.4m/pydebug.h +34 -0
  83. package/python3.4.2/include/python3.4m/pyerrors.h +464 -0
  84. package/python3.4.2/include/python3.4m/pyexpat.h +53 -0
  85. package/python3.4.2/include/python3.4m/pyfpe.h +176 -0
  86. package/python3.4.2/include/python3.4m/pygetopt.h +21 -0
  87. package/python3.4.2/include/python3.4m/pyhash.h +149 -0
  88. package/python3.4.2/include/python3.4m/pymacconfig.h +102 -0
  89. package/python3.4.2/include/python3.4m/pymacro.h +78 -0
  90. package/python3.4.2/include/python3.4m/pymath.h +190 -0
  91. package/python3.4.2/include/python3.4m/pymem.h +183 -0
  92. package/python3.4.2/include/python3.4m/pyport.h +883 -0
  93. package/python3.4.2/include/python3.4m/pystate.h +271 -0
  94. package/python3.4.2/include/python3.4m/pystrcmp.h +23 -0
  95. package/python3.4.2/include/python3.4m/pystrtod.h +41 -0
  96. package/python3.4.2/include/python3.4m/pythonrun.h +304 -0
  97. package/python3.4.2/include/python3.4m/pythread.h +93 -0
  98. package/python3.4.2/include/python3.4m/pytime.h +105 -0
  99. package/python3.4.2/include/python3.4m/rangeobject.h +27 -0
  100. package/python3.4.2/include/python3.4m/setobject.h +113 -0
  101. package/python3.4.2/include/python3.4m/sliceobject.h +50 -0
  102. package/python3.4.2/include/python3.4m/structmember.h +76 -0
  103. package/python3.4.2/include/python3.4m/structseq.h +49 -0
  104. package/python3.4.2/include/python3.4m/symtable.h +122 -0
  105. package/python3.4.2/include/python3.4m/sysmodule.h +43 -0
  106. package/python3.4.2/include/python3.4m/token.h +87 -0
  107. package/python3.4.2/include/python3.4m/traceback.h +72 -0
  108. package/python3.4.2/include/python3.4m/tupleobject.h +73 -0
  109. package/python3.4.2/include/python3.4m/typeslots.h +76 -0
  110. package/python3.4.2/include/python3.4m/ucnhash.h +36 -0
  111. package/python3.4.2/include/python3.4m/unicodeobject.h +2271 -0
  112. package/python3.4.2/include/python3.4m/warnings.h +54 -0
  113. package/python3.4.2/include/python3.4m/weakrefobject.h +86 -0
  114. package/python3.4.2/lib/pkgconfig/python-3.4.pc +13 -0
  115. package/python3.4.2/lib/pkgconfig/python-3.4m.pc +13 -0
  116. package/python3.4.2/lib/pkgconfig/python3.pc +13 -0
  117. package/python3.4.2/lib/python3.4/LICENSE.txt +254 -0
  118. package/python3.4.2/lib/python3.4/__future__.py +134 -0
  119. package/python3.4.2/lib/python3.4/__phello__.foo.py +1 -0
  120. package/python3.4.2/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc +0 -0
  121. package/python3.4.2/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc +0 -0
  122. package/python3.4.2/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc +0 -0
  123. package/python3.4.2/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc +0 -0
  124. package/python3.4.2/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc +0 -0
  125. package/python3.4.2/lib/python3.4/__pycache__/abc.cpython-34.pyc +0 -0
  126. package/python3.4.2/lib/python3.4/__pycache__/codecs.cpython-34.pyc +0 -0
  127. package/python3.4.2/lib/python3.4/__pycache__/genericpath.cpython-34.pyc +0 -0
  128. package/python3.4.2/lib/python3.4/__pycache__/io.cpython-34.pyc +0 -0
  129. package/python3.4.2/lib/python3.4/__pycache__/os.cpython-34.pyc +0 -0
  130. package/python3.4.2/lib/python3.4/__pycache__/posixpath.cpython-34.pyc +0 -0
  131. package/python3.4.2/lib/python3.4/__pycache__/rlcompleter.cpython-34.pyc +0 -0
  132. package/python3.4.2/lib/python3.4/__pycache__/site.cpython-34.pyc +0 -0
  133. package/python3.4.2/lib/python3.4/__pycache__/stat.cpython-34.pyc +0 -0
  134. package/python3.4.2/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc +0 -0
  135. package/python3.4.2/lib/python3.4/_bootlocale.py +34 -0
  136. package/python3.4.2/lib/python3.4/_collections_abc.py +753 -0
  137. package/python3.4.2/lib/python3.4/_compat_pickle.py +137 -0
  138. package/python3.4.2/lib/python3.4/_dummy_thread.py +155 -0
  139. package/python3.4.2/lib/python3.4/_markupbase.py +395 -0
  140. package/python3.4.2/lib/python3.4/_osx_support.py +502 -0
  141. package/python3.4.2/lib/python3.4/_pyio.py +2105 -0
  142. package/python3.4.2/lib/python3.4/_sitebuiltins.py +103 -0
  143. package/python3.4.2/lib/python3.4/_strptime.py +511 -0
  144. package/python3.4.2/lib/python3.4/_sysconfigdata.py +710 -0
  145. package/python3.4.2/lib/python3.4/_threading_local.py +246 -0
  146. package/python3.4.2/lib/python3.4/_weakrefset.py +196 -0
  147. package/python3.4.2/lib/python3.4/abc.py +248 -0
  148. package/python3.4.2/lib/python3.4/aifc.py +918 -0
  149. package/python3.4.2/lib/python3.4/antigravity.py +17 -0
  150. package/python3.4.2/lib/python3.4/argparse.py +2379 -0
  151. package/python3.4.2/lib/python3.4/ast.py +315 -0
  152. package/python3.4.2/lib/python3.4/asynchat.py +333 -0
  153. package/python3.4.2/lib/python3.4/asyncio/__init__.py +48 -0
  154. package/python3.4.2/lib/python3.4/asyncio/base_events.py +1055 -0
  155. package/python3.4.2/lib/python3.4/asyncio/base_subprocess.py +197 -0
  156. package/python3.4.2/lib/python3.4/asyncio/constants.py +7 -0
  157. package/python3.4.2/lib/python3.4/asyncio/coroutines.py +195 -0
  158. package/python3.4.2/lib/python3.4/asyncio/events.py +586 -0
  159. package/python3.4.2/lib/python3.4/asyncio/futures.py +411 -0
  160. package/python3.4.2/lib/python3.4/asyncio/locks.py +469 -0
  161. package/python3.4.2/lib/python3.4/asyncio/log.py +7 -0
  162. package/python3.4.2/lib/python3.4/asyncio/proactor_events.py +499 -0
  163. package/python3.4.2/lib/python3.4/asyncio/protocols.py +129 -0
  164. package/python3.4.2/lib/python3.4/asyncio/queues.py +288 -0
  165. package/python3.4.2/lib/python3.4/asyncio/selector_events.py +996 -0
  166. package/python3.4.2/lib/python3.4/asyncio/streams.py +485 -0
  167. package/python3.4.2/lib/python3.4/asyncio/subprocess.py +228 -0
  168. package/python3.4.2/lib/python3.4/asyncio/tasks.py +658 -0
  169. package/python3.4.2/lib/python3.4/asyncio/test_utils.py +425 -0
  170. package/python3.4.2/lib/python3.4/asyncio/transports.py +298 -0
  171. package/python3.4.2/lib/python3.4/asyncio/unix_events.py +922 -0
  172. package/python3.4.2/lib/python3.4/asyncio/windows_events.py +634 -0
  173. package/python3.4.2/lib/python3.4/asyncio/windows_utils.py +207 -0
  174. package/python3.4.2/lib/python3.4/asyncore.py +666 -0
  175. package/python3.4.2/lib/python3.4/base64.py +602 -0
  176. package/python3.4.2/lib/python3.4/bdb.py +673 -0
  177. package/python3.4.2/lib/python3.4/binhex.py +471 -0
  178. package/python3.4.2/lib/python3.4/bisect.py +92 -0
  179. package/python3.4.2/lib/python3.4/bz2.py +521 -0
  180. package/python3.4.2/lib/python3.4/cProfile.py +160 -0
  181. package/python3.4.2/lib/python3.4/calendar.py +703 -0
  182. package/python3.4.2/lib/python3.4/cgi.py +1061 -0
  183. package/python3.4.2/lib/python3.4/cgitb.py +320 -0
  184. package/python3.4.2/lib/python3.4/chunk.py +167 -0
  185. package/python3.4.2/lib/python3.4/cmd.py +401 -0
  186. package/python3.4.2/lib/python3.4/code.py +302 -0
  187. package/python3.4.2/lib/python3.4/codecs.py +1110 -0
  188. package/python3.4.2/lib/python3.4/codeop.py +168 -0
  189. package/python3.4.2/lib/python3.4/collections/__init__.py +1132 -0
  190. package/python3.4.2/lib/python3.4/collections/__main__.py +38 -0
  191. package/python3.4.2/lib/python3.4/collections/abc.py +2 -0
  192. package/python3.4.2/lib/python3.4/colorsys.py +164 -0
  193. package/python3.4.2/lib/python3.4/compileall.py +241 -0
  194. package/python3.4.2/lib/python3.4/concurrent/__init__.py +1 -0
  195. package/python3.4.2/lib/python3.4/concurrent/futures/__init__.py +18 -0
  196. package/python3.4.2/lib/python3.4/concurrent/futures/_base.py +575 -0
  197. package/python3.4.2/lib/python3.4/concurrent/futures/process.py +427 -0
  198. package/python3.4.2/lib/python3.4/concurrent/futures/thread.py +132 -0
  199. package/python3.4.2/lib/python3.4/config-3.4m/Makefile +1835 -0
  200. package/python3.4.2/lib/python3.4/config-3.4m/Setup +466 -0
  201. package/python3.4.2/lib/python3.4/config-3.4m/Setup.config +13 -0
  202. package/python3.4.2/lib/python3.4/config-3.4m/Setup.local +1 -0
  203. package/python3.4.2/lib/python3.4/config-3.4m/config.c +234 -0
  204. package/python3.4.2/lib/python3.4/config-3.4m/config.c.in +67 -0
  205. package/python3.4.2/lib/python3.4/config-3.4m/install-sh +294 -0
  206. package/python3.4.2/lib/python3.4/config-3.4m/makesetup +293 -0
  207. package/python3.4.2/lib/python3.4/config-3.4m/python-config.py +68 -0
  208. package/python3.4.2/lib/python3.4/configparser.py +1254 -0
  209. package/python3.4.2/lib/python3.4/contextlib.py +340 -0
  210. package/python3.4.2/lib/python3.4/copy.py +333 -0
  211. package/python3.4.2/lib/python3.4/copyreg.py +202 -0
  212. package/python3.4.2/lib/python3.4/crypt.py +62 -0
  213. package/python3.4.2/lib/python3.4/csv.py +449 -0
  214. package/python3.4.2/lib/python3.4/ctypes/__init__.py +541 -0
  215. package/python3.4.2/lib/python3.4/ctypes/_endian.py +59 -0
  216. package/python3.4.2/lib/python3.4/ctypes/macholib/README.ctypes +7 -0
  217. package/python3.4.2/lib/python3.4/ctypes/macholib/__init__.py +9 -0
  218. package/python3.4.2/lib/python3.4/ctypes/macholib/dyld.py +158 -0
  219. package/python3.4.2/lib/python3.4/ctypes/macholib/dylib.py +63 -0
  220. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib +2 -0
  221. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib.bat +1 -0
  222. package/python3.4.2/lib/python3.4/ctypes/macholib/framework.py +65 -0
  223. package/python3.4.2/lib/python3.4/ctypes/test/__init__.py +14 -0
  224. package/python3.4.2/lib/python3.4/ctypes/test/__main__.py +4 -0
  225. package/python3.4.2/lib/python3.4/ctypes/test/test_anon.py +60 -0
  226. package/python3.4.2/lib/python3.4/ctypes/test/test_array_in_pointer.py +64 -0
  227. package/python3.4.2/lib/python3.4/ctypes/test/test_arrays.py +181 -0
  228. package/python3.4.2/lib/python3.4/ctypes/test/test_as_parameter.py +226 -0
  229. package/python3.4.2/lib/python3.4/ctypes/test/test_bitfields.py +263 -0
  230. package/python3.4.2/lib/python3.4/ctypes/test/test_buffers.py +64 -0
  231. package/python3.4.2/lib/python3.4/ctypes/test/test_bytes.py +65 -0
  232. package/python3.4.2/lib/python3.4/ctypes/test/test_byteswap.py +295 -0
  233. package/python3.4.2/lib/python3.4/ctypes/test/test_callbacks.py +247 -0
  234. package/python3.4.2/lib/python3.4/ctypes/test/test_cast.py +86 -0
  235. package/python3.4.2/lib/python3.4/ctypes/test/test_cfuncs.py +212 -0
  236. package/python3.4.2/lib/python3.4/ctypes/test/test_checkretval.py +36 -0
  237. package/python3.4.2/lib/python3.4/ctypes/test/test_delattr.py +21 -0
  238. package/python3.4.2/lib/python3.4/ctypes/test/test_errno.py +79 -0
  239. package/python3.4.2/lib/python3.4/ctypes/test/test_find.py +81 -0
  240. package/python3.4.2/lib/python3.4/ctypes/test/test_frombuffer.py +81 -0
  241. package/python3.4.2/lib/python3.4/ctypes/test/test_funcptr.py +127 -0
  242. package/python3.4.2/lib/python3.4/ctypes/test/test_functions.py +402 -0
  243. package/python3.4.2/lib/python3.4/ctypes/test/test_incomplete.py +42 -0
  244. package/python3.4.2/lib/python3.4/ctypes/test/test_init.py +40 -0
  245. package/python3.4.2/lib/python3.4/ctypes/test/test_internals.py +100 -0
  246. package/python3.4.2/lib/python3.4/ctypes/test/test_keeprefs.py +153 -0
  247. package/python3.4.2/lib/python3.4/ctypes/test/test_libc.py +33 -0
  248. package/python3.4.2/lib/python3.4/ctypes/test/test_loading.py +119 -0
  249. package/python3.4.2/lib/python3.4/ctypes/test/test_macholib.py +63 -0
  250. package/python3.4.2/lib/python3.4/ctypes/test/test_memfunctions.py +79 -0
  251. package/python3.4.2/lib/python3.4/ctypes/test/test_numbers.py +290 -0
  252. package/python3.4.2/lib/python3.4/ctypes/test/test_objects.py +67 -0
  253. package/python3.4.2/lib/python3.4/ctypes/test/test_parameters.py +176 -0
  254. package/python3.4.2/lib/python3.4/ctypes/test/test_pep3118.py +206 -0
  255. package/python3.4.2/lib/python3.4/ctypes/test/test_pickling.py +83 -0
  256. package/python3.4.2/lib/python3.4/ctypes/test/test_pointers.py +192 -0
  257. package/python3.4.2/lib/python3.4/ctypes/test/test_prototypes.py +219 -0
  258. package/python3.4.2/lib/python3.4/ctypes/test/test_python_api.py +89 -0
  259. package/python3.4.2/lib/python3.4/ctypes/test/test_random_things.py +74 -0
  260. package/python3.4.2/lib/python3.4/ctypes/test/test_refcounts.py +101 -0
  261. package/python3.4.2/lib/python3.4/ctypes/test/test_repr.py +29 -0
  262. package/python3.4.2/lib/python3.4/ctypes/test/test_returnfuncptrs.py +67 -0
  263. package/python3.4.2/lib/python3.4/ctypes/test/test_simplesubclasses.py +55 -0
  264. package/python3.4.2/lib/python3.4/ctypes/test/test_sizes.py +34 -0
  265. package/python3.4.2/lib/python3.4/ctypes/test/test_slicing.py +167 -0
  266. package/python3.4.2/lib/python3.4/ctypes/test/test_stringptr.py +77 -0
  267. package/python3.4.2/lib/python3.4/ctypes/test/test_strings.py +225 -0
  268. package/python3.4.2/lib/python3.4/ctypes/test/test_struct_fields.py +50 -0
  269. package/python3.4.2/lib/python3.4/ctypes/test/test_structures.py +468 -0
  270. package/python3.4.2/lib/python3.4/ctypes/test/test_unaligned_structures.py +45 -0
  271. package/python3.4.2/lib/python3.4/ctypes/test/test_unicode.py +56 -0
  272. package/python3.4.2/lib/python3.4/ctypes/test/test_values.py +95 -0
  273. package/python3.4.2/lib/python3.4/ctypes/test/test_varsize_struct.py +50 -0
  274. package/python3.4.2/lib/python3.4/ctypes/test/test_win32.py +119 -0
  275. package/python3.4.2/lib/python3.4/ctypes/test/test_wintypes.py +41 -0
  276. package/python3.4.2/lib/python3.4/ctypes/util.py +267 -0
  277. package/python3.4.2/lib/python3.4/ctypes/wintypes.py +202 -0
  278. package/python3.4.2/lib/python3.4/curses/__init__.py +101 -0
  279. package/python3.4.2/lib/python3.4/curses/ascii.py +99 -0
  280. package/python3.4.2/lib/python3.4/curses/has_key.py +192 -0
  281. package/python3.4.2/lib/python3.4/curses/panel.py +6 -0
  282. package/python3.4.2/lib/python3.4/curses/textpad.py +188 -0
  283. package/python3.4.2/lib/python3.4/datetime.py +2136 -0
  284. package/python3.4.2/lib/python3.4/dbm/__init__.py +188 -0
  285. package/python3.4.2/lib/python3.4/dbm/dumb.py +291 -0
  286. package/python3.4.2/lib/python3.4/dbm/gnu.py +3 -0
  287. package/python3.4.2/lib/python3.4/dbm/ndbm.py +3 -0
  288. package/python3.4.2/lib/python3.4/decimal.py +6414 -0
  289. package/python3.4.2/lib/python3.4/difflib.py +2039 -0
  290. package/python3.4.2/lib/python3.4/dis.py +475 -0
  291. package/python3.4.2/lib/python3.4/distutils/README +13 -0
  292. package/python3.4.2/lib/python3.4/distutils/__init__.py +17 -0
  293. package/python3.4.2/lib/python3.4/distutils/archive_util.py +245 -0
  294. package/python3.4.2/lib/python3.4/distutils/bcppcompiler.py +393 -0
  295. package/python3.4.2/lib/python3.4/distutils/ccompiler.py +1115 -0
  296. package/python3.4.2/lib/python3.4/distutils/cmd.py +435 -0
  297. package/python3.4.2/lib/python3.4/distutils/command/__init__.py +31 -0
  298. package/python3.4.2/lib/python3.4/distutils/command/bdist.py +142 -0
  299. package/python3.4.2/lib/python3.4/distutils/command/bdist_dumb.py +122 -0
  300. package/python3.4.2/lib/python3.4/distutils/command/bdist_msi.py +741 -0
  301. package/python3.4.2/lib/python3.4/distutils/command/bdist_rpm.py +582 -0
  302. package/python3.4.2/lib/python3.4/distutils/command/bdist_wininst.py +349 -0
  303. package/python3.4.2/lib/python3.4/distutils/command/build.py +148 -0
  304. package/python3.4.2/lib/python3.4/distutils/command/build_clib.py +209 -0
  305. package/python3.4.2/lib/python3.4/distutils/command/build_ext.py +735 -0
  306. package/python3.4.2/lib/python3.4/distutils/command/build_py.py +416 -0
  307. package/python3.4.2/lib/python3.4/distutils/command/build_scripts.py +160 -0
  308. package/python3.4.2/lib/python3.4/distutils/command/check.py +145 -0
  309. package/python3.4.2/lib/python3.4/distutils/command/clean.py +76 -0
  310. package/python3.4.2/lib/python3.4/distutils/command/command_template +33 -0
  311. package/python3.4.2/lib/python3.4/distutils/command/config.py +347 -0
  312. package/python3.4.2/lib/python3.4/distutils/command/install.py +650 -0
  313. package/python3.4.2/lib/python3.4/distutils/command/install_data.py +79 -0
  314. package/python3.4.2/lib/python3.4/distutils/command/install_egg_info.py +77 -0
  315. package/python3.4.2/lib/python3.4/distutils/command/install_headers.py +47 -0
  316. package/python3.4.2/lib/python3.4/distutils/command/install_lib.py +217 -0
  317. package/python3.4.2/lib/python3.4/distutils/command/install_scripts.py +60 -0
  318. package/python3.4.2/lib/python3.4/distutils/command/register.py +304 -0
  319. package/python3.4.2/lib/python3.4/distutils/command/sdist.py +467 -0
  320. package/python3.4.2/lib/python3.4/distutils/command/upload.py +202 -0
  321. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0-amd64.exe +0 -0
  322. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0.exe +0 -0
  323. package/python3.4.2/lib/python3.4/distutils/command/wininst-6.0.exe +0 -0
  324. package/python3.4.2/lib/python3.4/distutils/command/wininst-7.1.exe +0 -0
  325. package/python3.4.2/lib/python3.4/distutils/command/wininst-8.0.exe +0 -0
  326. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0-amd64.exe +0 -0
  327. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0.exe +0 -0
  328. package/python3.4.2/lib/python3.4/distutils/config.py +131 -0
  329. package/python3.4.2/lib/python3.4/distutils/core.py +237 -0
  330. package/python3.4.2/lib/python3.4/distutils/cygwinccompiler.py +405 -0
  331. package/python3.4.2/lib/python3.4/distutils/debug.py +5 -0
  332. package/python3.4.2/lib/python3.4/distutils/dep_util.py +92 -0
  333. package/python3.4.2/lib/python3.4/distutils/dir_util.py +210 -0
  334. package/python3.4.2/lib/python3.4/distutils/dist.py +1238 -0
  335. package/python3.4.2/lib/python3.4/distutils/errors.py +97 -0
  336. package/python3.4.2/lib/python3.4/distutils/extension.py +233 -0
  337. package/python3.4.2/lib/python3.4/distutils/fancy_getopt.py +457 -0
  338. package/python3.4.2/lib/python3.4/distutils/file_util.py +230 -0
  339. package/python3.4.2/lib/python3.4/distutils/filelist.py +328 -0
  340. package/python3.4.2/lib/python3.4/distutils/log.py +75 -0
  341. package/python3.4.2/lib/python3.4/distutils/msvc9compiler.py +788 -0
  342. package/python3.4.2/lib/python3.4/distutils/msvccompiler.py +640 -0
  343. package/python3.4.2/lib/python3.4/distutils/spawn.py +195 -0
  344. package/python3.4.2/lib/python3.4/distutils/sysconfig.py +562 -0
  345. package/python3.4.2/lib/python3.4/distutils/tests/Setup.sample +67 -0
  346. package/python3.4.2/lib/python3.4/distutils/tests/__init__.py +36 -0
  347. package/python3.4.2/lib/python3.4/distutils/tests/support.py +210 -0
  348. package/python3.4.2/lib/python3.4/distutils/tests/test_archive_util.py +341 -0
  349. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist.py +50 -0
  350. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_dumb.py +97 -0
  351. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_msi.py +25 -0
  352. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_rpm.py +134 -0
  353. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_wininst.py +31 -0
  354. package/python3.4.2/lib/python3.4/distutils/tests/test_build.py +55 -0
  355. package/python3.4.2/lib/python3.4/distutils/tests/test_build_clib.py +143 -0
  356. package/python3.4.2/lib/python3.4/distutils/tests/test_build_ext.py +488 -0
  357. package/python3.4.2/lib/python3.4/distutils/tests/test_build_py.py +178 -0
  358. package/python3.4.2/lib/python3.4/distutils/tests/test_build_scripts.py +112 -0
  359. package/python3.4.2/lib/python3.4/distutils/tests/test_check.py +106 -0
  360. package/python3.4.2/lib/python3.4/distutils/tests/test_clean.py +51 -0
  361. package/python3.4.2/lib/python3.4/distutils/tests/test_cmd.py +126 -0
  362. package/python3.4.2/lib/python3.4/distutils/tests/test_config.py +120 -0
  363. package/python3.4.2/lib/python3.4/distutils/tests/test_config_cmd.py +89 -0
  364. package/python3.4.2/lib/python3.4/distutils/tests/test_core.py +108 -0
  365. package/python3.4.2/lib/python3.4/distutils/tests/test_cygwinccompiler.py +155 -0
  366. package/python3.4.2/lib/python3.4/distutils/tests/test_dep_util.py +81 -0
  367. package/python3.4.2/lib/python3.4/distutils/tests/test_dir_util.py +139 -0
  368. package/python3.4.2/lib/python3.4/distutils/tests/test_dist.py +454 -0
  369. package/python3.4.2/lib/python3.4/distutils/tests/test_extension.py +69 -0
  370. package/python3.4.2/lib/python3.4/distutils/tests/test_file_util.py +85 -0
  371. package/python3.4.2/lib/python3.4/distutils/tests/test_filelist.py +299 -0
  372. package/python3.4.2/lib/python3.4/distutils/tests/test_install.py +246 -0
  373. package/python3.4.2/lib/python3.4/distutils/tests/test_install_data.py +77 -0
  374. package/python3.4.2/lib/python3.4/distutils/tests/test_install_headers.py +41 -0
  375. package/python3.4.2/lib/python3.4/distutils/tests/test_install_lib.py +115 -0
  376. package/python3.4.2/lib/python3.4/distutils/tests/test_install_scripts.py +82 -0
  377. package/python3.4.2/lib/python3.4/distutils/tests/test_log.py +37 -0
  378. package/python3.4.2/lib/python3.4/distutils/tests/test_msvc9compiler.py +184 -0
  379. package/python3.4.2/lib/python3.4/distutils/tests/test_register.py +309 -0
  380. package/python3.4.2/lib/python3.4/distutils/tests/test_sdist.py +484 -0
  381. package/python3.4.2/lib/python3.4/distutils/tests/test_spawn.py +58 -0
  382. package/python3.4.2/lib/python3.4/distutils/tests/test_sysconfig.py +207 -0
  383. package/python3.4.2/lib/python3.4/distutils/tests/test_text_file.py +107 -0
  384. package/python3.4.2/lib/python3.4/distutils/tests/test_unixccompiler.py +150 -0
  385. package/python3.4.2/lib/python3.4/distutils/tests/test_upload.py +151 -0
  386. package/python3.4.2/lib/python3.4/distutils/tests/test_util.py +300 -0
  387. package/python3.4.2/lib/python3.4/distutils/tests/test_version.py +71 -0
  388. package/python3.4.2/lib/python3.4/distutils/tests/test_versionpredicate.py +13 -0
  389. package/python3.4.2/lib/python3.4/distutils/tests/xxmodule.c +396 -0
  390. package/python3.4.2/lib/python3.4/distutils/text_file.py +285 -0
  391. package/python3.4.2/lib/python3.4/distutils/unixccompiler.py +298 -0
  392. package/python3.4.2/lib/python3.4/distutils/util.py +553 -0
  393. package/python3.4.2/lib/python3.4/distutils/version.py +349 -0
  394. package/python3.4.2/lib/python3.4/distutils/versionpredicate.py +166 -0
  395. package/python3.4.2/lib/python3.4/doctest.py +2793 -0
  396. package/python3.4.2/lib/python3.4/dummy_threading.py +78 -0
  397. package/python3.4.2/lib/python3.4/email/__init__.py +64 -0
  398. package/python3.4.2/lib/python3.4/email/_encoded_words.py +221 -0
  399. package/python3.4.2/lib/python3.4/email/_header_value_parser.py +2947 -0
  400. package/python3.4.2/lib/python3.4/email/_parseaddr.py +540 -0
  401. package/python3.4.2/lib/python3.4/email/_policybase.py +358 -0
  402. package/python3.4.2/lib/python3.4/email/architecture.rst +216 -0
  403. package/python3.4.2/lib/python3.4/email/base64mime.py +119 -0
  404. package/python3.4.2/lib/python3.4/email/charset.py +409 -0
  405. package/python3.4.2/lib/python3.4/email/contentmanager.py +249 -0
  406. package/python3.4.2/lib/python3.4/email/encoders.py +69 -0
  407. package/python3.4.2/lib/python3.4/email/errors.py +107 -0
  408. package/python3.4.2/lib/python3.4/email/feedparser.py +526 -0
  409. package/python3.4.2/lib/python3.4/email/generator.py +507 -0
  410. package/python3.4.2/lib/python3.4/email/header.py +581 -0
  411. package/python3.4.2/lib/python3.4/email/headerregistry.py +583 -0
  412. package/python3.4.2/lib/python3.4/email/iterators.py +71 -0
  413. package/python3.4.2/lib/python3.4/email/message.py +1147 -0
  414. package/python3.4.2/lib/python3.4/email/mime/__init__.py +0 -0
  415. package/python3.4.2/lib/python3.4/email/mime/application.py +36 -0
  416. package/python3.4.2/lib/python3.4/email/mime/audio.py +73 -0
  417. package/python3.4.2/lib/python3.4/email/mime/base.py +26 -0
  418. package/python3.4.2/lib/python3.4/email/mime/image.py +46 -0
  419. package/python3.4.2/lib/python3.4/email/mime/message.py +34 -0
  420. package/python3.4.2/lib/python3.4/email/mime/multipart.py +47 -0
  421. package/python3.4.2/lib/python3.4/email/mime/nonmultipart.py +22 -0
  422. package/python3.4.2/lib/python3.4/email/mime/text.py +41 -0
  423. package/python3.4.2/lib/python3.4/email/parser.py +132 -0
  424. package/python3.4.2/lib/python3.4/email/policy.py +201 -0
  425. package/python3.4.2/lib/python3.4/email/quoprimime.py +299 -0
  426. package/python3.4.2/lib/python3.4/email/utils.py +399 -0
  427. package/python3.4.2/lib/python3.4/encodings/__init__.py +152 -0
  428. package/python3.4.2/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc +0 -0
  429. package/python3.4.2/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc +0 -0
  430. package/python3.4.2/lib/python3.4/encodings/__pycache__/ascii.cpython-34.pyc +0 -0
  431. package/python3.4.2/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc +0 -0
  432. package/python3.4.2/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc +0 -0
  433. package/python3.4.2/lib/python3.4/encodings/aliases.py +544 -0
  434. package/python3.4.2/lib/python3.4/encodings/ascii.py +50 -0
  435. package/python3.4.2/lib/python3.4/encodings/base64_codec.py +55 -0
  436. package/python3.4.2/lib/python3.4/encodings/big5.py +39 -0
  437. package/python3.4.2/lib/python3.4/encodings/big5hkscs.py +39 -0
  438. package/python3.4.2/lib/python3.4/encodings/bz2_codec.py +78 -0
  439. package/python3.4.2/lib/python3.4/encodings/charmap.py +69 -0
  440. package/python3.4.2/lib/python3.4/encodings/cp037.py +307 -0
  441. package/python3.4.2/lib/python3.4/encodings/cp1006.py +307 -0
  442. package/python3.4.2/lib/python3.4/encodings/cp1026.py +307 -0
  443. package/python3.4.2/lib/python3.4/encodings/cp1125.py +698 -0
  444. package/python3.4.2/lib/python3.4/encodings/cp1140.py +307 -0
  445. package/python3.4.2/lib/python3.4/encodings/cp1250.py +307 -0
  446. package/python3.4.2/lib/python3.4/encodings/cp1251.py +307 -0
  447. package/python3.4.2/lib/python3.4/encodings/cp1252.py +307 -0
  448. package/python3.4.2/lib/python3.4/encodings/cp1253.py +307 -0
  449. package/python3.4.2/lib/python3.4/encodings/cp1254.py +307 -0
  450. package/python3.4.2/lib/python3.4/encodings/cp1255.py +307 -0
  451. package/python3.4.2/lib/python3.4/encodings/cp1256.py +307 -0
  452. package/python3.4.2/lib/python3.4/encodings/cp1257.py +307 -0
  453. package/python3.4.2/lib/python3.4/encodings/cp1258.py +307 -0
  454. package/python3.4.2/lib/python3.4/encodings/cp273.py +307 -0
  455. package/python3.4.2/lib/python3.4/encodings/cp424.py +307 -0
  456. package/python3.4.2/lib/python3.4/encodings/cp437.py +698 -0
  457. package/python3.4.2/lib/python3.4/encodings/cp500.py +307 -0
  458. package/python3.4.2/lib/python3.4/encodings/cp65001.py +40 -0
  459. package/python3.4.2/lib/python3.4/encodings/cp720.py +309 -0
  460. package/python3.4.2/lib/python3.4/encodings/cp737.py +698 -0
  461. package/python3.4.2/lib/python3.4/encodings/cp775.py +697 -0
  462. package/python3.4.2/lib/python3.4/encodings/cp850.py +698 -0
  463. package/python3.4.2/lib/python3.4/encodings/cp852.py +698 -0
  464. package/python3.4.2/lib/python3.4/encodings/cp855.py +698 -0
  465. package/python3.4.2/lib/python3.4/encodings/cp856.py +307 -0
  466. package/python3.4.2/lib/python3.4/encodings/cp857.py +694 -0
  467. package/python3.4.2/lib/python3.4/encodings/cp858.py +698 -0
  468. package/python3.4.2/lib/python3.4/encodings/cp860.py +698 -0
  469. package/python3.4.2/lib/python3.4/encodings/cp861.py +698 -0
  470. package/python3.4.2/lib/python3.4/encodings/cp862.py +698 -0
  471. package/python3.4.2/lib/python3.4/encodings/cp863.py +698 -0
  472. package/python3.4.2/lib/python3.4/encodings/cp864.py +690 -0
  473. package/python3.4.2/lib/python3.4/encodings/cp865.py +698 -0
  474. package/python3.4.2/lib/python3.4/encodings/cp866.py +698 -0
  475. package/python3.4.2/lib/python3.4/encodings/cp869.py +689 -0
  476. package/python3.4.2/lib/python3.4/encodings/cp874.py +307 -0
  477. package/python3.4.2/lib/python3.4/encodings/cp875.py +307 -0
  478. package/python3.4.2/lib/python3.4/encodings/cp932.py +39 -0
  479. package/python3.4.2/lib/python3.4/encodings/cp949.py +39 -0
  480. package/python3.4.2/lib/python3.4/encodings/cp950.py +39 -0
  481. package/python3.4.2/lib/python3.4/encodings/euc_jis_2004.py +39 -0
  482. package/python3.4.2/lib/python3.4/encodings/euc_jisx0213.py +39 -0
  483. package/python3.4.2/lib/python3.4/encodings/euc_jp.py +39 -0
  484. package/python3.4.2/lib/python3.4/encodings/euc_kr.py +39 -0
  485. package/python3.4.2/lib/python3.4/encodings/gb18030.py +39 -0
  486. package/python3.4.2/lib/python3.4/encodings/gb2312.py +39 -0
  487. package/python3.4.2/lib/python3.4/encodings/gbk.py +39 -0
  488. package/python3.4.2/lib/python3.4/encodings/hex_codec.py +55 -0
  489. package/python3.4.2/lib/python3.4/encodings/hp_roman8.py +312 -0
  490. package/python3.4.2/lib/python3.4/encodings/hz.py +39 -0
  491. package/python3.4.2/lib/python3.4/encodings/idna.py +309 -0
  492. package/python3.4.2/lib/python3.4/encodings/iso2022_jp.py +39 -0
  493. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_1.py +39 -0
  494. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2.py +39 -0
  495. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2004.py +39 -0
  496. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_3.py +39 -0
  497. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_ext.py +39 -0
  498. package/python3.4.2/lib/python3.4/encodings/iso2022_kr.py +39 -0
  499. package/python3.4.2/lib/python3.4/encodings/iso8859_1.py +307 -0
  500. package/python3.4.2/lib/python3.4/encodings/iso8859_10.py +307 -0
  501. package/python3.4.2/lib/python3.4/encodings/iso8859_11.py +307 -0
  502. package/python3.4.2/lib/python3.4/encodings/iso8859_13.py +307 -0
  503. package/python3.4.2/lib/python3.4/encodings/iso8859_14.py +307 -0
  504. package/python3.4.2/lib/python3.4/encodings/iso8859_15.py +307 -0
  505. package/python3.4.2/lib/python3.4/encodings/iso8859_16.py +307 -0
  506. package/python3.4.2/lib/python3.4/encodings/iso8859_2.py +307 -0
  507. package/python3.4.2/lib/python3.4/encodings/iso8859_3.py +307 -0
  508. package/python3.4.2/lib/python3.4/encodings/iso8859_4.py +307 -0
  509. package/python3.4.2/lib/python3.4/encodings/iso8859_5.py +307 -0
  510. package/python3.4.2/lib/python3.4/encodings/iso8859_6.py +307 -0
  511. package/python3.4.2/lib/python3.4/encodings/iso8859_7.py +307 -0
  512. package/python3.4.2/lib/python3.4/encodings/iso8859_8.py +307 -0
  513. package/python3.4.2/lib/python3.4/encodings/iso8859_9.py +307 -0
  514. package/python3.4.2/lib/python3.4/encodings/johab.py +39 -0
  515. package/python3.4.2/lib/python3.4/encodings/koi8_r.py +307 -0
  516. package/python3.4.2/lib/python3.4/encodings/koi8_u.py +307 -0
  517. package/python3.4.2/lib/python3.4/encodings/latin_1.py +50 -0
  518. package/python3.4.2/lib/python3.4/encodings/mac_arabic.py +698 -0
  519. package/python3.4.2/lib/python3.4/encodings/mac_centeuro.py +307 -0
  520. package/python3.4.2/lib/python3.4/encodings/mac_croatian.py +307 -0
  521. package/python3.4.2/lib/python3.4/encodings/mac_cyrillic.py +307 -0
  522. package/python3.4.2/lib/python3.4/encodings/mac_farsi.py +307 -0
  523. package/python3.4.2/lib/python3.4/encodings/mac_greek.py +307 -0
  524. package/python3.4.2/lib/python3.4/encodings/mac_iceland.py +307 -0
  525. package/python3.4.2/lib/python3.4/encodings/mac_latin2.py +312 -0
  526. package/python3.4.2/lib/python3.4/encodings/mac_roman.py +307 -0
  527. package/python3.4.2/lib/python3.4/encodings/mac_romanian.py +307 -0
  528. package/python3.4.2/lib/python3.4/encodings/mac_turkish.py +307 -0
  529. package/python3.4.2/lib/python3.4/encodings/mbcs.py +47 -0
  530. package/python3.4.2/lib/python3.4/encodings/palmos.py +308 -0
  531. package/python3.4.2/lib/python3.4/encodings/ptcp154.py +312 -0
  532. package/python3.4.2/lib/python3.4/encodings/punycode.py +237 -0
  533. package/python3.4.2/lib/python3.4/encodings/quopri_codec.py +56 -0
  534. package/python3.4.2/lib/python3.4/encodings/raw_unicode_escape.py +45 -0
  535. package/python3.4.2/lib/python3.4/encodings/rot_13.py +113 -0
  536. package/python3.4.2/lib/python3.4/encodings/shift_jis.py +39 -0
  537. package/python3.4.2/lib/python3.4/encodings/shift_jis_2004.py +39 -0
  538. package/python3.4.2/lib/python3.4/encodings/shift_jisx0213.py +39 -0
  539. package/python3.4.2/lib/python3.4/encodings/tis_620.py +307 -0
  540. package/python3.4.2/lib/python3.4/encodings/undefined.py +49 -0
  541. package/python3.4.2/lib/python3.4/encodings/unicode_escape.py +45 -0
  542. package/python3.4.2/lib/python3.4/encodings/unicode_internal.py +45 -0
  543. package/python3.4.2/lib/python3.4/encodings/utf_16.py +155 -0
  544. package/python3.4.2/lib/python3.4/encodings/utf_16_be.py +42 -0
  545. package/python3.4.2/lib/python3.4/encodings/utf_16_le.py +42 -0
  546. package/python3.4.2/lib/python3.4/encodings/utf_32.py +150 -0
  547. package/python3.4.2/lib/python3.4/encodings/utf_32_be.py +37 -0
  548. package/python3.4.2/lib/python3.4/encodings/utf_32_le.py +37 -0
  549. package/python3.4.2/lib/python3.4/encodings/utf_7.py +38 -0
  550. package/python3.4.2/lib/python3.4/encodings/utf_8.py +42 -0
  551. package/python3.4.2/lib/python3.4/encodings/utf_8_sig.py +130 -0
  552. package/python3.4.2/lib/python3.4/encodings/uu_codec.py +99 -0
  553. package/python3.4.2/lib/python3.4/encodings/zlib_codec.py +77 -0
  554. package/python3.4.2/lib/python3.4/ensurepip/__init__.py +210 -0
  555. package/python3.4.2/lib/python3.4/ensurepip/__main__.py +4 -0
  556. package/python3.4.2/lib/python3.4/ensurepip/_bundled/pip-1.5.6-py2.py3-none-any.whl +0 -0
  557. package/python3.4.2/lib/python3.4/ensurepip/_bundled/setuptools-2.1-py2.py3-none-any.whl +0 -0
  558. package/python3.4.2/lib/python3.4/ensurepip/_uninstall.py +30 -0
  559. package/python3.4.2/lib/python3.4/enum.py +525 -0
  560. package/python3.4.2/lib/python3.4/filecmp.py +305 -0
  561. package/python3.4.2/lib/python3.4/fileinput.py +429 -0
  562. package/python3.4.2/lib/python3.4/fnmatch.py +109 -0
  563. package/python3.4.2/lib/python3.4/formatter.py +448 -0
  564. package/python3.4.2/lib/python3.4/fractions.py +630 -0
  565. package/python3.4.2/lib/python3.4/ftplib.py +1088 -0
  566. package/python3.4.2/lib/python3.4/functools.py +721 -0
  567. package/python3.4.2/lib/python3.4/genericpath.py +132 -0
  568. package/python3.4.2/lib/python3.4/getopt.py +215 -0
  569. package/python3.4.2/lib/python3.4/getpass.py +186 -0
  570. package/python3.4.2/lib/python3.4/gettext.py +523 -0
  571. package/python3.4.2/lib/python3.4/glob.py +110 -0
  572. package/python3.4.2/lib/python3.4/gzip.py +674 -0
  573. package/python3.4.2/lib/python3.4/hashlib.py +217 -0
  574. package/python3.4.2/lib/python3.4/heapq.py +476 -0
  575. package/python3.4.2/lib/python3.4/hmac.py +144 -0
  576. package/python3.4.2/lib/python3.4/html/__init__.py +132 -0
  577. package/python3.4.2/lib/python3.4/html/entities.py +2506 -0
  578. package/python3.4.2/lib/python3.4/html/parser.py +550 -0
  579. package/python3.4.2/lib/python3.4/http/__init__.py +1 -0
  580. package/python3.4.2/lib/python3.4/http/client.py +1302 -0
  581. package/python3.4.2/lib/python3.4/http/cookiejar.py +2080 -0
  582. package/python3.4.2/lib/python3.4/http/cookies.py +578 -0
  583. package/python3.4.2/lib/python3.4/http/server.py +1241 -0
  584. package/python3.4.2/lib/python3.4/idlelib/AutoComplete.py +233 -0
  585. package/python3.4.2/lib/python3.4/idlelib/AutoCompleteWindow.py +415 -0
  586. package/python3.4.2/lib/python3.4/idlelib/AutoExpand.py +104 -0
  587. package/python3.4.2/lib/python3.4/idlelib/Bindings.py +94 -0
  588. package/python3.4.2/lib/python3.4/idlelib/CREDITS.txt +37 -0
  589. package/python3.4.2/lib/python3.4/idlelib/CallTipWindow.py +170 -0
  590. package/python3.4.2/lib/python3.4/idlelib/CallTips.py +175 -0
  591. package/python3.4.2/lib/python3.4/idlelib/ChangeLog +1591 -0
  592. package/python3.4.2/lib/python3.4/idlelib/ClassBrowser.py +229 -0
  593. package/python3.4.2/lib/python3.4/idlelib/CodeContext.py +176 -0
  594. package/python3.4.2/lib/python3.4/idlelib/ColorDelegator.py +254 -0
  595. package/python3.4.2/lib/python3.4/idlelib/Debugger.py +490 -0
  596. package/python3.4.2/lib/python3.4/idlelib/Delegator.py +25 -0
  597. package/python3.4.2/lib/python3.4/idlelib/EditorWindow.py +1729 -0
  598. package/python3.4.2/lib/python3.4/idlelib/FileList.py +129 -0
  599. package/python3.4.2/lib/python3.4/idlelib/FormatParagraph.py +193 -0
  600. package/python3.4.2/lib/python3.4/idlelib/GrepDialog.py +159 -0
  601. package/python3.4.2/lib/python3.4/idlelib/HISTORY.txt +296 -0
  602. package/python3.4.2/lib/python3.4/idlelib/HyperParser.py +313 -0
  603. package/python3.4.2/lib/python3.4/idlelib/IOBinding.py +555 -0
  604. package/python3.4.2/lib/python3.4/idlelib/Icons/folder.gif +0 -0
  605. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.icns +0 -0
  606. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.ico +0 -0
  607. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.gif +0 -0
  608. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.png +0 -0
  609. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.gif +0 -0
  610. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.png +0 -0
  611. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.gif +0 -0
  612. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.png +0 -0
  613. package/python3.4.2/lib/python3.4/idlelib/Icons/minusnode.gif +0 -0
  614. package/python3.4.2/lib/python3.4/idlelib/Icons/openfolder.gif +0 -0
  615. package/python3.4.2/lib/python3.4/idlelib/Icons/plusnode.gif +0 -0
  616. package/python3.4.2/lib/python3.4/idlelib/Icons/python.gif +0 -0
  617. package/python3.4.2/lib/python3.4/idlelib/Icons/tk.gif +0 -0
  618. package/python3.4.2/lib/python3.4/idlelib/IdleHistory.py +104 -0
  619. package/python3.4.2/lib/python3.4/idlelib/MultiCall.py +453 -0
  620. package/python3.4.2/lib/python3.4/idlelib/MultiStatusBar.py +45 -0
  621. package/python3.4.2/lib/python3.4/idlelib/NEWS.txt +877 -0
  622. package/python3.4.2/lib/python3.4/idlelib/ObjectBrowser.py +143 -0
  623. package/python3.4.2/lib/python3.4/idlelib/OutputWindow.py +144 -0
  624. package/python3.4.2/lib/python3.4/idlelib/ParenMatch.py +178 -0
  625. package/python3.4.2/lib/python3.4/idlelib/PathBrowser.py +106 -0
  626. package/python3.4.2/lib/python3.4/idlelib/Percolator.py +104 -0
  627. package/python3.4.2/lib/python3.4/idlelib/PyParse.py +618 -0
  628. package/python3.4.2/lib/python3.4/idlelib/PyShell.py +1619 -0
  629. package/python3.4.2/lib/python3.4/idlelib/README.txt +60 -0
  630. package/python3.4.2/lib/python3.4/idlelib/RemoteDebugger.py +389 -0
  631. package/python3.4.2/lib/python3.4/idlelib/RemoteObjectBrowser.py +36 -0
  632. package/python3.4.2/lib/python3.4/idlelib/ReplaceDialog.py +221 -0
  633. package/python3.4.2/lib/python3.4/idlelib/RstripExtension.py +33 -0
  634. package/python3.4.2/lib/python3.4/idlelib/ScriptBinding.py +207 -0
  635. package/python3.4.2/lib/python3.4/idlelib/ScrolledList.py +140 -0
  636. package/python3.4.2/lib/python3.4/idlelib/SearchDialog.py +89 -0
  637. package/python3.4.2/lib/python3.4/idlelib/SearchDialogBase.py +184 -0
  638. package/python3.4.2/lib/python3.4/idlelib/SearchEngine.py +233 -0
  639. package/python3.4.2/lib/python3.4/idlelib/StackViewer.py +152 -0
  640. package/python3.4.2/lib/python3.4/idlelib/TODO.txt +210 -0
  641. package/python3.4.2/lib/python3.4/idlelib/ToolTip.py +97 -0
  642. package/python3.4.2/lib/python3.4/idlelib/TreeWidget.py +465 -0
  643. package/python3.4.2/lib/python3.4/idlelib/UndoDelegator.py +365 -0
  644. package/python3.4.2/lib/python3.4/idlelib/WidgetRedirector.py +174 -0
  645. package/python3.4.2/lib/python3.4/idlelib/WindowList.py +90 -0
  646. package/python3.4.2/lib/python3.4/idlelib/ZoomHeight.py +51 -0
  647. package/python3.4.2/lib/python3.4/idlelib/__init__.py +1 -0
  648. package/python3.4.2/lib/python3.4/idlelib/__main__.py +9 -0
  649. package/python3.4.2/lib/python3.4/idlelib/aboutDialog.py +145 -0
  650. package/python3.4.2/lib/python3.4/idlelib/config-extensions.def +96 -0
  651. package/python3.4.2/lib/python3.4/idlelib/config-highlight.def +64 -0
  652. package/python3.4.2/lib/python3.4/idlelib/config-keys.def +214 -0
  653. package/python3.4.2/lib/python3.4/idlelib/config-main.def +79 -0
  654. package/python3.4.2/lib/python3.4/idlelib/configDialog.py +1195 -0
  655. package/python3.4.2/lib/python3.4/idlelib/configHandler.py +722 -0
  656. package/python3.4.2/lib/python3.4/idlelib/configHelpSourceEdit.py +166 -0
  657. package/python3.4.2/lib/python3.4/idlelib/configSectionNameDialog.py +98 -0
  658. package/python3.4.2/lib/python3.4/idlelib/dynOptionMenuWidget.py +57 -0
  659. package/python3.4.2/lib/python3.4/idlelib/extend.txt +83 -0
  660. package/python3.4.2/lib/python3.4/idlelib/help.txt +368 -0
  661. package/python3.4.2/lib/python3.4/idlelib/idle.bat +4 -0
  662. package/python3.4.2/lib/python3.4/idlelib/idle.py +11 -0
  663. package/python3.4.2/lib/python3.4/idlelib/idle.pyw +21 -0
  664. package/python3.4.2/lib/python3.4/idlelib/idle_test/README.txt +115 -0
  665. package/python3.4.2/lib/python3.4/idlelib/idle_test/__init__.py +9 -0
  666. package/python3.4.2/lib/python3.4/idlelib/idle_test/htest.py +369 -0
  667. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_idle.py +55 -0
  668. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_tk.py +298 -0
  669. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autocomplete.py +143 -0
  670. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autoexpand.py +141 -0
  671. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_calltips.py +172 -0
  672. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_config_name.py +75 -0
  673. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_configdialog.py +32 -0
  674. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_delegator.py +37 -0
  675. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_formatparagraph.py +377 -0
  676. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_grep.py +80 -0
  677. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_hyperparser.py +273 -0
  678. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_idlehistory.py +167 -0
  679. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_parenmatch.py +109 -0
  680. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_pathbrowser.py +12 -0
  681. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_rstrip.py +49 -0
  682. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchdialogbase.py +165 -0
  683. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchengine.py +329 -0
  684. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_text.py +228 -0
  685. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_textview.py +97 -0
  686. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_warning.py +73 -0
  687. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_widgetredir.py +122 -0
  688. package/python3.4.2/lib/python3.4/idlelib/idlever.py +1 -0
  689. package/python3.4.2/lib/python3.4/idlelib/keybindingDialog.py +266 -0
  690. package/python3.4.2/lib/python3.4/idlelib/macosxSupport.py +239 -0
  691. package/python3.4.2/lib/python3.4/idlelib/rpc.py +624 -0
  692. package/python3.4.2/lib/python3.4/idlelib/run.py +404 -0
  693. package/python3.4.2/lib/python3.4/idlelib/tabbedpages.py +498 -0
  694. package/python3.4.2/lib/python3.4/idlelib/testcode.py +31 -0
  695. package/python3.4.2/lib/python3.4/idlelib/textView.py +86 -0
  696. package/python3.4.2/lib/python3.4/imaplib.py +1549 -0
  697. package/python3.4.2/lib/python3.4/imghdr.py +154 -0
  698. package/python3.4.2/lib/python3.4/imp.py +315 -0
  699. package/python3.4.2/lib/python3.4/importlib/__init__.py +156 -0
  700. package/python3.4.2/lib/python3.4/importlib/_bootstrap.py +2461 -0
  701. package/python3.4.2/lib/python3.4/importlib/abc.py +323 -0
  702. package/python3.4.2/lib/python3.4/importlib/machinery.py +21 -0
  703. package/python3.4.2/lib/python3.4/importlib/util.py +202 -0
  704. package/python3.4.2/lib/python3.4/inspect.py +2759 -0
  705. package/python3.4.2/lib/python3.4/io.py +92 -0
  706. package/python3.4.2/lib/python3.4/ipaddress.py +2183 -0
  707. package/python3.4.2/lib/python3.4/json/__init__.py +331 -0
  708. package/python3.4.2/lib/python3.4/json/decoder.py +362 -0
  709. package/python3.4.2/lib/python3.4/json/encoder.py +433 -0
  710. package/python3.4.2/lib/python3.4/json/scanner.py +73 -0
  711. package/python3.4.2/lib/python3.4/json/tool.py +39 -0
  712. package/python3.4.2/lib/python3.4/keyword.py +94 -0
  713. package/python3.4.2/lib/python3.4/lib2to3/Grammar.txt +159 -0
  714. package/python3.4.2/lib/python3.4/lib2to3/Grammar3.4.2.final.0.pickle +0 -0
  715. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar.txt +28 -0
  716. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar3.4.2.final.0.pickle +0 -0
  717. package/python3.4.2/lib/python3.4/lib2to3/__init__.py +1 -0
  718. package/python3.4.2/lib/python3.4/lib2to3/__main__.py +4 -0
  719. package/python3.4.2/lib/python3.4/lib2to3/btm_matcher.py +168 -0
  720. package/python3.4.2/lib/python3.4/lib2to3/btm_utils.py +281 -0
  721. package/python3.4.2/lib/python3.4/lib2to3/fixer_base.py +187 -0
  722. package/python3.4.2/lib/python3.4/lib2to3/fixer_util.py +455 -0
  723. package/python3.4.2/lib/python3.4/lib2to3/fixes/__init__.py +1 -0
  724. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_apply.py +59 -0
  725. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_asserts.py +34 -0
  726. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_basestring.py +14 -0
  727. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_buffer.py +22 -0
  728. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_callable.py +37 -0
  729. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_dict.py +107 -0
  730. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_except.py +93 -0
  731. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exec.py +40 -0
  732. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_execfile.py +52 -0
  733. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exitfunc.py +72 -0
  734. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_filter.py +76 -0
  735. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_funcattrs.py +21 -0
  736. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_future.py +22 -0
  737. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_getcwdu.py +19 -0
  738. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_has_key.py +110 -0
  739. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_idioms.py +152 -0
  740. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_import.py +99 -0
  741. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports.py +145 -0
  742. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports2.py +16 -0
  743. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_input.py +26 -0
  744. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_intern.py +31 -0
  745. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_isinstance.py +52 -0
  746. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools.py +43 -0
  747. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools_imports.py +57 -0
  748. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_long.py +19 -0
  749. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_map.py +91 -0
  750. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_metaclass.py +228 -0
  751. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_methodattrs.py +24 -0
  752. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ne.py +23 -0
  753. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_next.py +103 -0
  754. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_nonzero.py +21 -0
  755. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_numliterals.py +28 -0
  756. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_operator.py +98 -0
  757. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_paren.py +44 -0
  758. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_print.py +87 -0
  759. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raise.py +90 -0
  760. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raw_input.py +17 -0
  761. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reduce.py +35 -0
  762. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reload.py +28 -0
  763. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_renames.py +70 -0
  764. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_repr.py +23 -0
  765. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_set_literal.py +53 -0
  766. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_standarderror.py +18 -0
  767. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_sys_exc.py +30 -0
  768. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_throw.py +56 -0
  769. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_tuple_params.py +175 -0
  770. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_types.py +62 -0
  771. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_unicode.py +42 -0
  772. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_urllib.py +197 -0
  773. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ws_comma.py +39 -0
  774. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xrange.py +73 -0
  775. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xreadlines.py +25 -0
  776. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_zip.py +35 -0
  777. package/python3.4.2/lib/python3.4/lib2to3/main.py +268 -0
  778. package/python3.4.2/lib/python3.4/lib2to3/patcomp.py +205 -0
  779. package/python3.4.2/lib/python3.4/lib2to3/pgen2/__init__.py +4 -0
  780. package/python3.4.2/lib/python3.4/lib2to3/pgen2/conv.py +257 -0
  781. package/python3.4.2/lib/python3.4/lib2to3/pgen2/driver.py +157 -0
  782. package/python3.4.2/lib/python3.4/lib2to3/pgen2/grammar.py +183 -0
  783. package/python3.4.2/lib/python3.4/lib2to3/pgen2/literals.py +60 -0
  784. package/python3.4.2/lib/python3.4/lib2to3/pgen2/parse.py +201 -0
  785. package/python3.4.2/lib/python3.4/lib2to3/pgen2/pgen.py +386 -0
  786. package/python3.4.2/lib/python3.4/lib2to3/pgen2/token.py +83 -0
  787. package/python3.4.2/lib/python3.4/lib2to3/pgen2/tokenize.py +502 -0
  788. package/python3.4.2/lib/python3.4/lib2to3/pygram.py +40 -0
  789. package/python3.4.2/lib/python3.4/lib2to3/pytree.py +864 -0
  790. package/python3.4.2/lib/python3.4/lib2to3/refactor.py +747 -0
  791. package/python3.4.2/lib/python3.4/lib2to3/tests/__init__.py +24 -0
  792. package/python3.4.2/lib/python3.4/lib2to3/tests/data/README +6 -0
  793. package/python3.4.2/lib/python3.4/lib2to3/tests/data/bom.py +2 -0
  794. package/python3.4.2/lib/python3.4/lib2to3/tests/data/crlf.py +3 -0
  795. package/python3.4.2/lib/python3.4/lib2to3/tests/data/different_encoding.py +6 -0
  796. package/python3.4.2/lib/python3.4/lib2to3/tests/data/false_encoding.py +2 -0
  797. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/bad_order.py +5 -0
  798. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/__init__.py +0 -0
  799. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +6 -0
  800. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_first.py +6 -0
  801. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_last.py +7 -0
  802. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +13 -0
  803. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +6 -0
  804. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/no_fixer_cls.py +1 -0
  805. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/parrot_example.py +2 -0
  806. package/python3.4.2/lib/python3.4/lib2to3/tests/data/infinite_recursion.py +2669 -0
  807. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py2_test_grammar.py +974 -0
  808. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py3_test_grammar.py +923 -0
  809. package/python3.4.2/lib/python3.4/lib2to3/tests/pytree_idempotency.py +92 -0
  810. package/python3.4.2/lib/python3.4/lib2to3/tests/support.py +54 -0
  811. package/python3.4.2/lib/python3.4/lib2to3/tests/test_all_fixers.py +23 -0
  812. package/python3.4.2/lib/python3.4/lib2to3/tests/test_fixers.py +4687 -0
  813. package/python3.4.2/lib/python3.4/lib2to3/tests/test_main.py +139 -0
  814. package/python3.4.2/lib/python3.4/lib2to3/tests/test_parser.py +249 -0
  815. package/python3.4.2/lib/python3.4/lib2to3/tests/test_pytree.py +477 -0
  816. package/python3.4.2/lib/python3.4/lib2to3/tests/test_refactor.py +321 -0
  817. package/python3.4.2/lib/python3.4/lib2to3/tests/test_util.py +594 -0
  818. package/python3.4.2/lib/python3.4/linecache.py +134 -0
  819. package/python3.4.2/lib/python3.4/locale.py +1559 -0
  820. package/python3.4.2/lib/python3.4/logging/__init__.py +1950 -0
  821. package/python3.4.2/lib/python3.4/logging/config.py +927 -0
  822. package/python3.4.2/lib/python3.4/logging/handlers.py +1452 -0
  823. package/python3.4.2/lib/python3.4/lzma.py +511 -0
  824. package/python3.4.2/lib/python3.4/macpath.py +205 -0
  825. package/python3.4.2/lib/python3.4/macurl2path.py +77 -0
  826. package/python3.4.2/lib/python3.4/mailbox.py +2136 -0
  827. package/python3.4.2/lib/python3.4/mailcap.py +253 -0
  828. package/python3.4.2/lib/python3.4/mimetypes.py +592 -0
  829. package/python3.4.2/lib/python3.4/modulefinder.py +642 -0
  830. package/python3.4.2/lib/python3.4/multiprocessing/__init__.py +38 -0
  831. package/python3.4.2/lib/python3.4/multiprocessing/connection.py +954 -0
  832. package/python3.4.2/lib/python3.4/multiprocessing/context.py +348 -0
  833. package/python3.4.2/lib/python3.4/multiprocessing/dummy/__init__.py +119 -0
  834. package/python3.4.2/lib/python3.4/multiprocessing/dummy/connection.py +74 -0
  835. package/python3.4.2/lib/python3.4/multiprocessing/forkserver.py +267 -0
  836. package/python3.4.2/lib/python3.4/multiprocessing/heap.py +249 -0
  837. package/python3.4.2/lib/python3.4/multiprocessing/managers.py +1131 -0
  838. package/python3.4.2/lib/python3.4/multiprocessing/pool.py +769 -0
  839. package/python3.4.2/lib/python3.4/multiprocessing/popen_fork.py +83 -0
  840. package/python3.4.2/lib/python3.4/multiprocessing/popen_forkserver.py +69 -0
  841. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_posix.py +69 -0
  842. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_win32.py +99 -0
  843. package/python3.4.2/lib/python3.4/multiprocessing/process.py +332 -0
  844. package/python3.4.2/lib/python3.4/multiprocessing/queues.py +367 -0
  845. package/python3.4.2/lib/python3.4/multiprocessing/reduction.py +240 -0
  846. package/python3.4.2/lib/python3.4/multiprocessing/resource_sharer.py +158 -0
  847. package/python3.4.2/lib/python3.4/multiprocessing/semaphore_tracker.py +143 -0
  848. package/python3.4.2/lib/python3.4/multiprocessing/sharedctypes.py +245 -0
  849. package/python3.4.2/lib/python3.4/multiprocessing/spawn.py +287 -0
  850. package/python3.4.2/lib/python3.4/multiprocessing/synchronize.py +418 -0
  851. package/python3.4.2/lib/python3.4/multiprocessing/util.py +367 -0
  852. package/python3.4.2/lib/python3.4/netrc.py +142 -0
  853. package/python3.4.2/lib/python3.4/nntplib.py +1134 -0
  854. package/python3.4.2/lib/python3.4/ntpath.py +625 -0
  855. package/python3.4.2/lib/python3.4/nturl2path.py +66 -0
  856. package/python3.4.2/lib/python3.4/numbers.py +394 -0
  857. package/python3.4.2/lib/python3.4/opcode.py +200 -0
  858. package/python3.4.2/lib/python3.4/operator.py +411 -0
  859. package/python3.4.2/lib/python3.4/optparse.py +1680 -0
  860. package/python3.4.2/lib/python3.4/os.py +980 -0
  861. package/python3.4.2/lib/python3.4/pathlib.py +1291 -0
  862. package/python3.4.2/lib/python3.4/pdb.py +1685 -0
  863. package/python3.4.2/lib/python3.4/pickle.py +1599 -0
  864. package/python3.4.2/lib/python3.4/pickletools.py +2818 -0
  865. package/python3.4.2/lib/python3.4/pipes.py +247 -0
  866. package/python3.4.2/lib/python3.4/pkgutil.py +629 -0
  867. package/python3.4.2/lib/python3.4/plat-linux/CDROM.py +207 -0
  868. package/python3.4.2/lib/python3.4/plat-linux/DLFCN.py +83 -0
  869. package/python3.4.2/lib/python3.4/plat-linux/IN.py +615 -0
  870. package/python3.4.2/lib/python3.4/plat-linux/TYPES.py +170 -0
  871. package/python3.4.2/lib/python3.4/plat-linux/regen +8 -0
  872. package/python3.4.2/lib/python3.4/platform.py +1476 -0
  873. package/python3.4.2/lib/python3.4/plistlib.py +1025 -0
  874. package/python3.4.2/lib/python3.4/poplib.py +461 -0
  875. package/python3.4.2/lib/python3.4/posixpath.py +457 -0
  876. package/python3.4.2/lib/python3.4/pprint.py +416 -0
  877. package/python3.4.2/lib/python3.4/profile.py +589 -0
  878. package/python3.4.2/lib/python3.4/pstats.py +691 -0
  879. package/python3.4.2/lib/python3.4/pty.py +170 -0
  880. package/python3.4.2/lib/python3.4/py_compile.py +185 -0
  881. package/python3.4.2/lib/python3.4/pyclbr.py +351 -0
  882. package/python3.4.2/lib/python3.4/pydoc.py +2622 -0
  883. package/python3.4.2/lib/python3.4/pydoc_data/__init__.py +0 -0
  884. package/python3.4.2/lib/python3.4/pydoc_data/_pydoc.css +6 -0
  885. package/python3.4.2/lib/python3.4/pydoc_data/topics.py +79 -0
  886. package/python3.4.2/lib/python3.4/queue.py +249 -0
  887. package/python3.4.2/lib/python3.4/quopri.py +242 -0
  888. package/python3.4.2/lib/python3.4/random.py +742 -0
  889. package/python3.4.2/lib/python3.4/re.py +368 -0
  890. package/python3.4.2/lib/python3.4/reprlib.py +157 -0
  891. package/python3.4.2/lib/python3.4/rlcompleter.py +165 -0
  892. package/python3.4.2/lib/python3.4/runpy.py +271 -0
  893. package/python3.4.2/lib/python3.4/sched.py +167 -0
  894. package/python3.4.2/lib/python3.4/selectors.py +525 -0
  895. package/python3.4.2/lib/python3.4/shelve.py +239 -0
  896. package/python3.4.2/lib/python3.4/shlex.py +304 -0
  897. package/python3.4.2/lib/python3.4/shutil.py +1127 -0
  898. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/PKG-INFO +55 -0
  899. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/SOURCES.txt +126 -0
  900. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  901. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/entry_points.txt +4 -0
  902. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  903. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/requires.txt +4 -0
  904. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  905. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/__init__.py +69 -0
  906. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_compat.py +150 -0
  907. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_stringdefs.py +132 -0
  908. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/bccache.py +344 -0
  909. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/compiler.py +1640 -0
  910. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/constants.py +32 -0
  911. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/debug.py +337 -0
  912. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/defaults.py +43 -0
  913. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/environment.py +1191 -0
  914. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/exceptions.py +146 -0
  915. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/ext.py +636 -0
  916. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/filters.py +987 -0
  917. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/lexer.py +733 -0
  918. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/loaders.py +471 -0
  919. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/meta.py +103 -0
  920. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/nodes.py +914 -0
  921. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/optimizer.py +68 -0
  922. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/parser.py +895 -0
  923. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/runtime.py +581 -0
  924. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/sandbox.py +368 -0
  925. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/tests.py +149 -0
  926. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/__init__.py +156 -0
  927. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/api.py +261 -0
  928. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/bytecode_cache.py +37 -0
  929. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/core_tags.py +305 -0
  930. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/debug.py +58 -0
  931. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/doctests.py +29 -0
  932. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/ext.py +459 -0
  933. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/filters.py +515 -0
  934. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/imports.py +141 -0
  935. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/inheritance.py +250 -0
  936. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/lexnparse.py +593 -0
  937. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/loader.py +226 -0
  938. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/regression.py +279 -0
  939. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/__init__.py +0 -0
  940. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/broken.html +3 -0
  941. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/foo/test.html +1 -0
  942. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/syntaxerror.html +4 -0
  943. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/test.html +1 -0
  944. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/security.py +166 -0
  945. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/tests.py +93 -0
  946. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/utils.py +82 -0
  947. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/utils.py +520 -0
  948. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/visitor.py +87 -0
  949. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/PKG-INFO +119 -0
  950. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/SOURCES.txt +17 -0
  951. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  952. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  953. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  954. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/__init__.py +298 -0
  955. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_compat.py +26 -0
  956. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_constants.py +267 -0
  957. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_native.py +46 -0
  958. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_speedups.c +239 -0
  959. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/tests.py +179 -0
  960. package/python3.4.2/lib/python3.4/site-packages/README +2 -0
  961. package/python3.4.2/lib/python3.4/site-packages/_markerlib/__init__.py +16 -0
  962. package/python3.4.2/lib/python3.4/site-packages/_markerlib/markers.py +119 -0
  963. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/PKG-INFO +68 -0
  964. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/SOURCES.txt +23 -0
  965. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  966. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/entry_points.txt +3 -0
  967. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  968. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/requires.txt +1 -0
  969. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/scripts/android-debian-builder +6 -0
  970. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  971. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__init__.py +0 -0
  972. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__main__.py +26 -0
  973. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/build.py +63 -0
  974. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/config.py +82 -0
  975. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/deb.sh +106 -0
  976. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/default-config +42 -0
  977. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/first-time-setup.sh +94 -0
  978. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/init.sh +27 -0
  979. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/examples/jessie-armhf.cfg +26 -0
  980. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/run_tests.py +38 -0
  981. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/script.py +110 -0
  982. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/util.py +177 -0
  983. package/python3.4.2/lib/python3.4/site-packages/easy-install.pth +4 -0
  984. package/python3.4.2/lib/python3.4/site-packages/easy_install.py +5 -0
  985. package/python3.4.2/lib/python3.4/site-packages/pip/__init__.py +277 -0
  986. package/python3.4.2/lib/python3.4/site-packages/pip/__main__.py +7 -0
  987. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/__init__.py +8 -0
  988. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/__init__.py +16 -0
  989. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/markers.py +119 -0
  990. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/__init__.py +7 -0
  991. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansi.py +50 -0
  992. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansitowin32.py +190 -0
  993. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/initialise.py +56 -0
  994. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/win32.py +137 -0
  995. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/winterm.py +120 -0
  996. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/__init__.py +23 -0
  997. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/__init__.py +6 -0
  998. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/misc.py +41 -0
  999. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/shutil.py +761 -0
  1000. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +84 -0
  1001. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +788 -0
  1002. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/tarfile.py +2607 -0
  1003. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/compat.py +1064 -0
  1004. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/database.py +1301 -0
  1005. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/index.py +488 -0
  1006. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/locators.py +1194 -0
  1007. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/manifest.py +364 -0
  1008. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/markers.py +190 -0
  1009. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/metadata.py +1026 -0
  1010. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/resources.py +317 -0
  1011. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/scripts.py +323 -0
  1012. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  1013. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  1014. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/util.py +1575 -0
  1015. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/version.py +721 -0
  1016. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  1017. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  1018. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/wheel.py +958 -0
  1019. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/__init__.py +23 -0
  1020. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/constants.py +3104 -0
  1021. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
  1022. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/_base.py +12 -0
  1023. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +20 -0
  1024. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +65 -0
  1025. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
  1026. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +205 -0
  1027. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +12 -0
  1028. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
  1029. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/html5parser.py +2713 -0
  1030. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/ihatexml.py +285 -0
  1031. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/inputstream.py +881 -0
  1032. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/sanitizer.py +271 -0
  1033. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/__init__.py +16 -0
  1034. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.py +320 -0
  1035. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/tokenizer.py +1731 -0
  1036. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
  1037. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +44 -0
  1038. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +76 -0
  1039. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/_base.py +377 -0
  1040. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +227 -0
  1041. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +337 -0
  1042. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +369 -0
  1043. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +57 -0
  1044. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/_base.py +200 -0
  1045. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +46 -0
  1046. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +138 -0
  1047. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.py +69 -0
  1048. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.py +208 -0
  1049. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.py +63 -0
  1050. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/__init__.py +12 -0
  1051. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/_base.py +37 -0
  1052. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/datrie.py +44 -0
  1053. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/py.py +67 -0
  1054. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/utils.py +82 -0
  1055. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/pkg_resources.py +2762 -0
  1056. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/re-vendor.py +34 -0
  1057. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/__init__.py +77 -0
  1058. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/adapters.py +388 -0
  1059. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/api.py +120 -0
  1060. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/auth.py +193 -0
  1061. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cacert.pem +5026 -0
  1062. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/certs.py +24 -0
  1063. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/compat.py +115 -0
  1064. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cookies.py +454 -0
  1065. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/exceptions.py +75 -0
  1066. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/hooks.py +45 -0
  1067. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/models.py +803 -0
  1068. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/__init__.py +3 -0
  1069. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/__init__.py +32 -0
  1070. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5freq.py +925 -0
  1071. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5prober.py +42 -0
  1072. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardetect.py +46 -0
  1073. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.py +231 -0
  1074. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
  1075. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.py +62 -0
  1076. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.py +61 -0
  1077. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/compat.py +34 -0
  1078. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/constants.py +39 -0
  1079. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.py +44 -0
  1080. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escprober.py +86 -0
  1081. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escsm.py +242 -0
  1082. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.py +90 -0
  1083. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.py +596 -0
  1084. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py +42 -0
  1085. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.py +428 -0
  1086. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py +41 -0
  1087. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.py +472 -0
  1088. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.py +41 -0
  1089. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.py +283 -0
  1090. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.py +569 -0
  1091. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.py +219 -0
  1092. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
  1093. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
  1094. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.py +225 -0
  1095. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
  1096. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
  1097. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.py +200 -0
  1098. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.py +139 -0
  1099. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
  1100. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
  1101. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.py +575 -0
  1102. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
  1103. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
  1104. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.py +91 -0
  1105. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.py +170 -0
  1106. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.py +76 -0
  1107. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/__init__.py +58 -0
  1108. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/_collections.py +205 -0
  1109. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connection.py +204 -0
  1110. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.py +710 -0
  1111. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
  1112. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py +120 -0
  1113. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py +422 -0
  1114. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py +126 -0
  1115. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/fields.py +177 -0
  1116. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py +100 -0
  1117. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py +4 -0
  1118. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py +260 -0
  1119. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.py +385 -0
  1120. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
  1121. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
  1122. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.py +258 -0
  1123. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/request.py +141 -0
  1124. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/response.py +308 -0
  1125. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py +27 -0
  1126. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.py +45 -0
  1127. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/request.py +68 -0
  1128. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py +13 -0
  1129. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py +133 -0
  1130. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py +234 -0
  1131. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/url.py +162 -0
  1132. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/sessions.py +637 -0
  1133. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/status_codes.py +88 -0
  1134. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/structures.py +127 -0
  1135. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/utils.py +673 -0
  1136. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/six.py +646 -0
  1137. package/python3.4.2/lib/python3.4/site-packages/pip/backwardcompat/__init__.py +138 -0
  1138. package/python3.4.2/lib/python3.4/site-packages/pip/basecommand.py +201 -0
  1139. package/python3.4.2/lib/python3.4/site-packages/pip/baseparser.py +224 -0
  1140. package/python3.4.2/lib/python3.4/site-packages/pip/cmdoptions.py +371 -0
  1141. package/python3.4.2/lib/python3.4/site-packages/pip/commands/__init__.py +88 -0
  1142. package/python3.4.2/lib/python3.4/site-packages/pip/commands/bundle.py +42 -0
  1143. package/python3.4.2/lib/python3.4/site-packages/pip/commands/completion.py +59 -0
  1144. package/python3.4.2/lib/python3.4/site-packages/pip/commands/freeze.py +114 -0
  1145. package/python3.4.2/lib/python3.4/site-packages/pip/commands/help.py +33 -0
  1146. package/python3.4.2/lib/python3.4/site-packages/pip/commands/install.py +314 -0
  1147. package/python3.4.2/lib/python3.4/site-packages/pip/commands/list.py +162 -0
  1148. package/python3.4.2/lib/python3.4/site-packages/pip/commands/search.py +132 -0
  1149. package/python3.4.2/lib/python3.4/site-packages/pip/commands/show.py +80 -0
  1150. package/python3.4.2/lib/python3.4/site-packages/pip/commands/uninstall.py +59 -0
  1151. package/python3.4.2/lib/python3.4/site-packages/pip/commands/unzip.py +7 -0
  1152. package/python3.4.2/lib/python3.4/site-packages/pip/commands/wheel.py +195 -0
  1153. package/python3.4.2/lib/python3.4/site-packages/pip/commands/zip.py +351 -0
  1154. package/python3.4.2/lib/python3.4/site-packages/pip/download.py +644 -0
  1155. package/python3.4.2/lib/python3.4/site-packages/pip/exceptions.py +46 -0
  1156. package/python3.4.2/lib/python3.4/site-packages/pip/index.py +990 -0
  1157. package/python3.4.2/lib/python3.4/site-packages/pip/locations.py +172 -0
  1158. package/python3.4.2/lib/python3.4/site-packages/pip/log.py +276 -0
  1159. package/python3.4.2/lib/python3.4/site-packages/pip/pep425tags.py +102 -0
  1160. package/python3.4.2/lib/python3.4/site-packages/pip/req.py +1931 -0
  1161. package/python3.4.2/lib/python3.4/site-packages/pip/runner.py +18 -0
  1162. package/python3.4.2/lib/python3.4/site-packages/pip/status_codes.py +6 -0
  1163. package/python3.4.2/lib/python3.4/site-packages/pip/util.py +720 -0
  1164. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/__init__.py +251 -0
  1165. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/bazaar.py +131 -0
  1166. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/git.py +194 -0
  1167. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/mercurial.py +151 -0
  1168. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/subversion.py +273 -0
  1169. package/python3.4.2/lib/python3.4/site-packages/pip/wheel.py +560 -0
  1170. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/DESCRIPTION.rst +71 -0
  1171. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/METADATA +98 -0
  1172. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/RECORD +373 -0
  1173. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/WHEEL +6 -0
  1174. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/entry_points.txt +5 -0
  1175. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/metadata.json +1 -0
  1176. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/top_level.txt +1 -0
  1177. package/python3.4.2/lib/python3.4/site-packages/pkg_resources.py +2719 -0
  1178. package/python3.4.2/lib/python3.4/site-packages/setuptools/__init__.py +98 -0
  1179. package/python3.4.2/lib/python3.4/site-packages/setuptools/archive_util.py +210 -0
  1180. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-32.exe +0 -0
  1181. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-64.exe +0 -0
  1182. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-arm-32.exe +0 -0
  1183. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli.exe +0 -0
  1184. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/__init__.py +17 -0
  1185. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/alias.py +82 -0
  1186. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_egg.py +553 -0
  1187. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_rpm.py +82 -0
  1188. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_wininst.py +82 -0
  1189. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_ext.py +298 -0
  1190. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_py.py +221 -0
  1191. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/develop.py +167 -0
  1192. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/easy_install.py +1915 -0
  1193. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/egg_info.py +392 -0
  1194. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install.py +103 -0
  1195. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_egg_info.py +125 -0
  1196. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_lib.py +82 -0
  1197. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_scripts.py +54 -0
  1198. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/launcher manifest.xml +15 -0
  1199. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/register.py +10 -0
  1200. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/rotate.py +83 -0
  1201. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/saveopts.py +24 -0
  1202. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/sdist.py +238 -0
  1203. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/setopt.py +164 -0
  1204. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/test.py +198 -0
  1205. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/upload_docs.py +193 -0
  1206. package/python3.4.2/lib/python3.4/site-packages/setuptools/compat.py +83 -0
  1207. package/python3.4.2/lib/python3.4/site-packages/setuptools/depends.py +246 -0
  1208. package/python3.4.2/lib/python3.4/site-packages/setuptools/dist.py +796 -0
  1209. package/python3.4.2/lib/python3.4/site-packages/setuptools/extension.py +46 -0
  1210. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-32.exe +0 -0
  1211. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-64.exe +0 -0
  1212. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-arm-32.exe +0 -0
  1213. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui.exe +0 -0
  1214. package/python3.4.2/lib/python3.4/site-packages/setuptools/lib2to3_ex.py +58 -0
  1215. package/python3.4.2/lib/python3.4/site-packages/setuptools/package_index.py +1057 -0
  1216. package/python3.4.2/lib/python3.4/site-packages/setuptools/py26compat.py +19 -0
  1217. package/python3.4.2/lib/python3.4/site-packages/setuptools/py27compat.py +15 -0
  1218. package/python3.4.2/lib/python3.4/site-packages/setuptools/py31compat.py +11 -0
  1219. package/python3.4.2/lib/python3.4/site-packages/setuptools/sandbox.py +322 -0
  1220. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template (dev).py +11 -0
  1221. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template.py +4 -0
  1222. package/python3.4.2/lib/python3.4/site-packages/setuptools/site-patch.py +83 -0
  1223. package/python3.4.2/lib/python3.4/site-packages/setuptools/ssl_support.py +234 -0
  1224. package/python3.4.2/lib/python3.4/site-packages/setuptools/svn_utils.py +564 -0
  1225. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/__init__.py +352 -0
  1226. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/doctest.py +2683 -0
  1227. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/environment.py +165 -0
  1228. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/py26compat.py +14 -0
  1229. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/script-with-bom.py +3 -0
  1230. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/server.py +82 -0
  1231. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_bdist_egg.py +69 -0
  1232. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_build_ext.py +20 -0
  1233. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_develop.py +122 -0
  1234. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_dist_info.py +83 -0
  1235. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_easy_install.py +394 -0
  1236. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_egg_info.py +173 -0
  1237. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_markerlib.py +68 -0
  1238. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_packageindex.py +203 -0
  1239. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_resources.py +620 -0
  1240. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sandbox.py +79 -0
  1241. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sdist.py +535 -0
  1242. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_svn.py +246 -0
  1243. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_test.py +124 -0
  1244. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_upload_docs.py +72 -0
  1245. package/python3.4.2/lib/python3.4/site-packages/setuptools/version.py +1 -0
  1246. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/DESCRIPTION.rst +1742 -0
  1247. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/METADATA +1772 -0
  1248. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/RECORD +149 -0
  1249. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/WHEEL +6 -0
  1250. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/dependency_links.txt +2 -0
  1251. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt +62 -0
  1252. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt.orig +62 -0
  1253. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/pydist.json +1 -0
  1254. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/requires.txt.orig +7 -0
  1255. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/top_level.txt +4 -0
  1256. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/zip-safe +1 -0
  1257. package/python3.4.2/lib/python3.4/site.py +616 -0
  1258. package/python3.4.2/lib/python3.4/smtpd.py +861 -0
  1259. package/python3.4.2/lib/python3.4/smtplib.py +999 -0
  1260. package/python3.4.2/lib/python3.4/sndhdr.py +240 -0
  1261. package/python3.4.2/lib/python3.4/socket.py +535 -0
  1262. package/python3.4.2/lib/python3.4/socketserver.py +748 -0
  1263. package/python3.4.2/lib/python3.4/sqlite3/__init__.py +23 -0
  1264. package/python3.4.2/lib/python3.4/sqlite3/dbapi2.py +89 -0
  1265. package/python3.4.2/lib/python3.4/sqlite3/dump.py +70 -0
  1266. package/python3.4.2/lib/python3.4/sqlite3/test/__init__.py +0 -0
  1267. package/python3.4.2/lib/python3.4/sqlite3/test/dbapi.py +911 -0
  1268. package/python3.4.2/lib/python3.4/sqlite3/test/dump.py +81 -0
  1269. package/python3.4.2/lib/python3.4/sqlite3/test/factory.py +253 -0
  1270. package/python3.4.2/lib/python3.4/sqlite3/test/hooks.py +258 -0
  1271. package/python3.4.2/lib/python3.4/sqlite3/test/regression.py +358 -0
  1272. package/python3.4.2/lib/python3.4/sqlite3/test/transactions.py +204 -0
  1273. package/python3.4.2/lib/python3.4/sqlite3/test/types.py +403 -0
  1274. package/python3.4.2/lib/python3.4/sqlite3/test/userfunctions.py +468 -0
  1275. package/python3.4.2/lib/python3.4/sre_compile.py +489 -0
  1276. package/python3.4.2/lib/python3.4/sre_constants.py +261 -0
  1277. package/python3.4.2/lib/python3.4/sre_parse.py +859 -0
  1278. package/python3.4.2/lib/python3.4/ssl.py +945 -0
  1279. package/python3.4.2/lib/python3.4/stat.py +155 -0
  1280. package/python3.4.2/lib/python3.4/statistics.py +595 -0
  1281. package/python3.4.2/lib/python3.4/string.py +282 -0
  1282. package/python3.4.2/lib/python3.4/stringprep.py +272 -0
  1283. package/python3.4.2/lib/python3.4/struct.py +15 -0
  1284. package/python3.4.2/lib/python3.4/subprocess.py +1690 -0
  1285. package/python3.4.2/lib/python3.4/sunau.py +525 -0
  1286. package/python3.4.2/lib/python3.4/symbol.py +111 -0
  1287. package/python3.4.2/lib/python3.4/symtable.py +240 -0
  1288. package/python3.4.2/lib/python3.4/sysconfig.py +709 -0
  1289. package/python3.4.2/lib/python3.4/tabnanny.py +332 -0
  1290. package/python3.4.2/lib/python3.4/tarfile.py +2519 -0
  1291. package/python3.4.2/lib/python3.4/telnetlib.py +672 -0
  1292. package/python3.4.2/lib/python3.4/tempfile.py +698 -0
  1293. package/python3.4.2/lib/python3.4/test/185test.db +0 -0
  1294. package/python3.4.2/lib/python3.4/test/Sine-1000Hz-300ms.aif +0 -0
  1295. package/python3.4.2/lib/python3.4/test/__init__.py +1 -0
  1296. package/python3.4.2/lib/python3.4/test/__main__.py +3 -0
  1297. package/python3.4.2/lib/python3.4/test/_test_multiprocessing.py +3841 -0
  1298. package/python3.4.2/lib/python3.4/test/audiodata/pluck-alaw.aifc +0 -0
  1299. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.aiff +0 -0
  1300. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.au +0 -0
  1301. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.wav +0 -0
  1302. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.aiff +0 -0
  1303. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.au +0 -0
  1304. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.wav +0 -0
  1305. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.aiff +0 -0
  1306. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.au +0 -0
  1307. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.wav +0 -0
  1308. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.aiff +0 -0
  1309. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.au +0 -0
  1310. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.wav +0 -0
  1311. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.aifc +0 -0
  1312. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.au +0 -0
  1313. package/python3.4.2/lib/python3.4/test/audiotest.au +0 -0
  1314. package/python3.4.2/lib/python3.4/test/audiotests.py +329 -0
  1315. package/python3.4.2/lib/python3.4/test/autotest.py +6 -0
  1316. package/python3.4.2/lib/python3.4/test/bad_coding.py +1 -0
  1317. package/python3.4.2/lib/python3.4/test/bad_coding2.py +2 -0
  1318. package/python3.4.2/lib/python3.4/test/badcert.pem +36 -0
  1319. package/python3.4.2/lib/python3.4/test/badkey.pem +40 -0
  1320. package/python3.4.2/lib/python3.4/test/badsyntax_3131.py +2 -0
  1321. package/python3.4.2/lib/python3.4/test/badsyntax_future10.py +3 -0
  1322. package/python3.4.2/lib/python3.4/test/badsyntax_future3.py +10 -0
  1323. package/python3.4.2/lib/python3.4/test/badsyntax_future4.py +10 -0
  1324. package/python3.4.2/lib/python3.4/test/badsyntax_future5.py +12 -0
  1325. package/python3.4.2/lib/python3.4/test/badsyntax_future6.py +10 -0
  1326. package/python3.4.2/lib/python3.4/test/badsyntax_future7.py +11 -0
  1327. package/python3.4.2/lib/python3.4/test/badsyntax_future8.py +10 -0
  1328. package/python3.4.2/lib/python3.4/test/badsyntax_future9.py +10 -0
  1329. package/python3.4.2/lib/python3.4/test/badsyntax_pep3120.py +1 -0
  1330. package/python3.4.2/lib/python3.4/test/buffer_tests.py +218 -0
  1331. package/python3.4.2/lib/python3.4/test/bytecode_helper.py +41 -0
  1332. package/python3.4.2/lib/python3.4/test/capath/4e1295a3.0 +14 -0
  1333. package/python3.4.2/lib/python3.4/test/capath/5ed36f99.0 +41 -0
  1334. package/python3.4.2/lib/python3.4/test/capath/6e88d7b8.0 +14 -0
  1335. package/python3.4.2/lib/python3.4/test/capath/99d0fa06.0 +41 -0
  1336. package/python3.4.2/lib/python3.4/test/cfgparser.1 +2 -0
  1337. package/python3.4.2/lib/python3.4/test/cfgparser.2 +537 -0
  1338. package/python3.4.2/lib/python3.4/test/cfgparser.3 +69 -0
  1339. package/python3.4.2/lib/python3.4/test/check_soundcard.vbs +13 -0
  1340. package/python3.4.2/lib/python3.4/test/cjkencodings/big5-utf8.txt +9 -0
  1341. package/python3.4.2/lib/python3.4/test/cjkencodings/big5.txt +9 -0
  1342. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs-utf8.txt +2 -0
  1343. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs.txt +2 -0
  1344. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949-utf8.txt +9 -0
  1345. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949.txt +9 -0
  1346. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213-utf8.txt +8 -0
  1347. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213.txt +8 -0
  1348. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp-utf8.txt +7 -0
  1349. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp.txt +7 -0
  1350. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr-utf8.txt +7 -0
  1351. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr.txt +7 -0
  1352. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030-utf8.txt +15 -0
  1353. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030.txt +15 -0
  1354. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312-utf8.txt +6 -0
  1355. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312.txt +6 -0
  1356. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk-utf8.txt +14 -0
  1357. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk.txt +14 -0
  1358. package/python3.4.2/lib/python3.4/test/cjkencodings/hz-utf8.txt +2 -0
  1359. package/python3.4.2/lib/python3.4/test/cjkencodings/hz.txt +2 -0
  1360. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp-utf8.txt +7 -0
  1361. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp.txt +7 -0
  1362. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr-utf8.txt +7 -0
  1363. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr.txt +7 -0
  1364. package/python3.4.2/lib/python3.4/test/cjkencodings/johab-utf8.txt +9 -0
  1365. package/python3.4.2/lib/python3.4/test/cjkencodings/johab.txt +9 -0
  1366. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis-utf8.txt +7 -0
  1367. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis.txt +7 -0
  1368. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213-utf8.txt +8 -0
  1369. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213.txt +8 -0
  1370. package/python3.4.2/lib/python3.4/test/cmath_testcases.txt +2370 -0
  1371. package/python3.4.2/lib/python3.4/test/coding20731.py +4 -0
  1372. package/python3.4.2/lib/python3.4/test/curses_tests.py +46 -0
  1373. package/python3.4.2/lib/python3.4/test/data/README +2 -0
  1374. package/python3.4.2/lib/python3.4/test/datetimetester.py +3786 -0
  1375. package/python3.4.2/lib/python3.4/test/decimaltestdata/abs.decTest +161 -0
  1376. package/python3.4.2/lib/python3.4/test/decimaltestdata/add.decTest +2716 -0
  1377. package/python3.4.2/lib/python3.4/test/decimaltestdata/and.decTest +338 -0
  1378. package/python3.4.2/lib/python3.4/test/decimaltestdata/base.decTest +1411 -0
  1379. package/python3.4.2/lib/python3.4/test/decimaltestdata/clamp.decTest +211 -0
  1380. package/python3.4.2/lib/python3.4/test/decimaltestdata/class.decTest +131 -0
  1381. package/python3.4.2/lib/python3.4/test/decimaltestdata/compare.decTest +758 -0
  1382. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotal.decTest +798 -0
  1383. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotmag.decTest +790 -0
  1384. package/python3.4.2/lib/python3.4/test/decimaltestdata/copy.decTest +86 -0
  1385. package/python3.4.2/lib/python3.4/test/decimaltestdata/copyabs.decTest +86 -0
  1386. package/python3.4.2/lib/python3.4/test/decimaltestdata/copynegate.decTest +86 -0
  1387. package/python3.4.2/lib/python3.4/test/decimaltestdata/copysign.decTest +177 -0
  1388. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAbs.decTest +126 -0
  1389. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAdd.decTest +1328 -0
  1390. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAnd.decTest +347 -0
  1391. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddBase.decTest +1104 -0
  1392. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCanonical.decTest +357 -0
  1393. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddClass.decTest +76 -0
  1394. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompare.decTest +744 -0
  1395. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareSig.decTest +647 -0
  1396. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotal.decTest +706 -0
  1397. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotalMag.decTest +706 -0
  1398. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopy.decTest +88 -0
  1399. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyAbs.decTest +88 -0
  1400. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyNegate.decTest +88 -0
  1401. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopySign.decTest +175 -0
  1402. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivide.decTest +863 -0
  1403. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivideInt.decTest +449 -0
  1404. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddEncode.decTest +495 -0
  1405. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddFMA.decTest +1698 -0
  1406. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddInvert.decTest +202 -0
  1407. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddLogB.decTest +159 -0
  1408. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMax.decTest +322 -0
  1409. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMaxMag.decTest +304 -0
  1410. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMin.decTest +309 -0
  1411. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinMag.decTest +293 -0
  1412. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinus.decTest +88 -0
  1413. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMultiply.decTest +553 -0
  1414. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextMinus.decTest +126 -0
  1415. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextPlus.decTest +124 -0
  1416. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextToward.decTest +374 -0
  1417. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddOr.decTest +292 -0
  1418. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddPlus.decTest +88 -0
  1419. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddQuantize.decTest +833 -0
  1420. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddReduce.decTest +182 -0
  1421. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainder.decTest +600 -0
  1422. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainderNear.decTest +629 -0
  1423. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRotate.decTest +262 -0
  1424. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSameQuantum.decTest +389 -0
  1425. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddScaleB.decTest +243 -0
  1426. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddShift.decTest +262 -0
  1427. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSubtract.decTest +629 -0
  1428. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddToIntegral.decTest +257 -0
  1429. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddXor.decTest +337 -0
  1430. package/python3.4.2/lib/python3.4/test/decimaltestdata/decDouble.decTest +65 -0
  1431. package/python3.4.2/lib/python3.4/test/decimaltestdata/decQuad.decTest +65 -0
  1432. package/python3.4.2/lib/python3.4/test/decimaltestdata/decSingle.decTest +25 -0
  1433. package/python3.4.2/lib/python3.4/test/decimaltestdata/divide.decTest +854 -0
  1434. package/python3.4.2/lib/python3.4/test/decimaltestdata/divideint.decTest +486 -0
  1435. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAbs.decTest +126 -0
  1436. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAdd.decTest +1215 -0
  1437. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAnd.decTest +420 -0
  1438. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqBase.decTest +1081 -0
  1439. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCanonical.decTest +372 -0
  1440. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqClass.decTest +77 -0
  1441. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompare.decTest +753 -0
  1442. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareSig.decTest +647 -0
  1443. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotal.decTest +706 -0
  1444. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotalMag.decTest +706 -0
  1445. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopy.decTest +88 -0
  1446. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyAbs.decTest +88 -0
  1447. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyNegate.decTest +88 -0
  1448. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopySign.decTest +175 -0
  1449. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivide.decTest +808 -0
  1450. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivideInt.decTest +453 -0
  1451. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqEncode.decTest +477 -0
  1452. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqFMA.decTest +1786 -0
  1453. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqInvert.decTest +245 -0
  1454. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqLogB.decTest +160 -0
  1455. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMax.decTest +322 -0
  1456. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMaxMag.decTest +304 -0
  1457. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMin.decTest +309 -0
  1458. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinMag.decTest +293 -0
  1459. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinus.decTest +88 -0
  1460. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMultiply.decTest +589 -0
  1461. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextMinus.decTest +126 -0
  1462. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextPlus.decTest +124 -0
  1463. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextToward.decTest +375 -0
  1464. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqOr.decTest +401 -0
  1465. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqPlus.decTest +88 -0
  1466. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqQuantize.decTest +836 -0
  1467. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqReduce.decTest +183 -0
  1468. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainder.decTest +597 -0
  1469. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainderNear.decTest +631 -0
  1470. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRotate.decTest +298 -0
  1471. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSameQuantum.decTest +389 -0
  1472. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqScaleB.decTest +260 -0
  1473. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqShift.decTest +298 -0
  1474. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSubtract.decTest +635 -0
  1475. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqToIntegral.decTest +257 -0
  1476. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqXor.decTest +410 -0
  1477. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsBase.decTest +1062 -0
  1478. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsEncode.decTest +372 -0
  1479. package/python3.4.2/lib/python3.4/test/decimaltestdata/exp.decTest +674 -0
  1480. package/python3.4.2/lib/python3.4/test/decimaltestdata/extra.decTest +2830 -0
  1481. package/python3.4.2/lib/python3.4/test/decimaltestdata/fma.decTest +3426 -0
  1482. package/python3.4.2/lib/python3.4/test/decimaltestdata/inexact.decTest +215 -0
  1483. package/python3.4.2/lib/python3.4/test/decimaltestdata/invert.decTest +176 -0
  1484. package/python3.4.2/lib/python3.4/test/decimaltestdata/ln.decTest +611 -0
  1485. package/python3.4.2/lib/python3.4/test/decimaltestdata/log10.decTest +551 -0
  1486. package/python3.4.2/lib/python3.4/test/decimaltestdata/logb.decTest +188 -0
  1487. package/python3.4.2/lib/python3.4/test/decimaltestdata/max.decTest +424 -0
  1488. package/python3.4.2/lib/python3.4/test/decimaltestdata/maxmag.decTest +404 -0
  1489. package/python3.4.2/lib/python3.4/test/decimaltestdata/min.decTest +407 -0
  1490. package/python3.4.2/lib/python3.4/test/decimaltestdata/minmag.decTest +390 -0
  1491. package/python3.4.2/lib/python3.4/test/decimaltestdata/minus.decTest +182 -0
  1492. package/python3.4.2/lib/python3.4/test/decimaltestdata/multiply.decTest +731 -0
  1493. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextminus.decTest +148 -0
  1494. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextplus.decTest +150 -0
  1495. package/python3.4.2/lib/python3.4/test/decimaltestdata/nexttoward.decTest +426 -0
  1496. package/python3.4.2/lib/python3.4/test/decimaltestdata/or.decTest +334 -0
  1497. package/python3.4.2/lib/python3.4/test/decimaltestdata/plus.decTest +195 -0
  1498. package/python3.4.2/lib/python3.4/test/decimaltestdata/power.decTest +1624 -0
  1499. package/python3.4.2/lib/python3.4/test/decimaltestdata/powersqrt.decTest +2970 -0
  1500. package/python3.4.2/lib/python3.4/test/decimaltestdata/quantize.decTest +948 -0
  1501. package/python3.4.2/lib/python3.4/test/decimaltestdata/randomBound32.decTest +2443 -0
  1502. package/python3.4.2/lib/python3.4/test/decimaltestdata/randoms.decTest +4030 -0
  1503. package/python3.4.2/lib/python3.4/test/decimaltestdata/reduce.decTest +234 -0
  1504. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainder.decTest +640 -0
  1505. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainderNear.decTest +572 -0
  1506. package/python3.4.2/lib/python3.4/test/decimaltestdata/rescale.decTest +764 -0
  1507. package/python3.4.2/lib/python3.4/test/decimaltestdata/rotate.decTest +247 -0
  1508. package/python3.4.2/lib/python3.4/test/decimaltestdata/rounding.decTest +1303 -0
  1509. package/python3.4.2/lib/python3.4/test/decimaltestdata/samequantum.decTest +389 -0
  1510. package/python3.4.2/lib/python3.4/test/decimaltestdata/scaleb.decTest +209 -0
  1511. package/python3.4.2/lib/python3.4/test/decimaltestdata/shift.decTest +250 -0
  1512. package/python3.4.2/lib/python3.4/test/decimaltestdata/squareroot.decTest +3834 -0
  1513. package/python3.4.2/lib/python3.4/test/decimaltestdata/subtract.decTest +873 -0
  1514. package/python3.4.2/lib/python3.4/test/decimaltestdata/testall.decTest +87 -0
  1515. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegral.decTest +241 -0
  1516. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegralx.decTest +255 -0
  1517. package/python3.4.2/lib/python3.4/test/decimaltestdata/xor.decTest +335 -0
  1518. package/python3.4.2/lib/python3.4/test/dh512.pem +9 -0
  1519. package/python3.4.2/lib/python3.4/test/dis_module.py +5 -0
  1520. package/python3.4.2/lib/python3.4/test/doctest_aliases.py +13 -0
  1521. package/python3.4.2/lib/python3.4/test/double_const.py +30 -0
  1522. package/python3.4.2/lib/python3.4/test/empty.vbs +1 -0
  1523. package/python3.4.2/lib/python3.4/test/encoded_modules/__init__.py +23 -0
  1524. package/python3.4.2/lib/python3.4/test/encoded_modules/module_iso_8859_1.py +5 -0
  1525. package/python3.4.2/lib/python3.4/test/encoded_modules/module_koi8_r.py +3 -0
  1526. package/python3.4.2/lib/python3.4/test/exception_hierarchy.txt +61 -0
  1527. package/python3.4.2/lib/python3.4/test/final_a.py +19 -0
  1528. package/python3.4.2/lib/python3.4/test/final_b.py +19 -0
  1529. package/python3.4.2/lib/python3.4/test/floating_points.txt +1028 -0
  1530. package/python3.4.2/lib/python3.4/test/fork_wait.py +77 -0
  1531. package/python3.4.2/lib/python3.4/test/formatfloat_testcases.txt +355 -0
  1532. package/python3.4.2/lib/python3.4/test/future_test1.py +11 -0
  1533. package/python3.4.2/lib/python3.4/test/future_test2.py +10 -0
  1534. package/python3.4.2/lib/python3.4/test/gdb_sample.py +12 -0
  1535. package/python3.4.2/lib/python3.4/test/https_svn_python_org_root.pem +41 -0
  1536. package/python3.4.2/lib/python3.4/test/ieee754.txt +185 -0
  1537. package/python3.4.2/lib/python3.4/test/imghdrdata/python.bmp +0 -0
  1538. package/python3.4.2/lib/python3.4/test/imghdrdata/python.gif +0 -0
  1539. package/python3.4.2/lib/python3.4/test/imghdrdata/python.jpg +0 -0
  1540. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pbm +3 -0
  1541. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pgm +0 -0
  1542. package/python3.4.2/lib/python3.4/test/imghdrdata/python.png +0 -0
  1543. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ppm +0 -0
  1544. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ras +0 -0
  1545. package/python3.4.2/lib/python3.4/test/imghdrdata/python.sgi +0 -0
  1546. package/python3.4.2/lib/python3.4/test/imghdrdata/python.tiff +0 -0
  1547. package/python3.4.2/lib/python3.4/test/imghdrdata/python.xbm +6 -0
  1548. package/python3.4.2/lib/python3.4/test/inspect_fodder.py +58 -0
  1549. package/python3.4.2/lib/python3.4/test/inspect_fodder2.py +111 -0
  1550. package/python3.4.2/lib/python3.4/test/keycert.passwd.pem +33 -0
  1551. package/python3.4.2/lib/python3.4/test/keycert.pem +31 -0
  1552. package/python3.4.2/lib/python3.4/test/keycert2.pem +31 -0
  1553. package/python3.4.2/lib/python3.4/test/keycert3.pem +73 -0
  1554. package/python3.4.2/lib/python3.4/test/keycert4.pem +73 -0
  1555. package/python3.4.2/lib/python3.4/test/list_tests.py +585 -0
  1556. package/python3.4.2/lib/python3.4/test/lock_tests.py +896 -0
  1557. package/python3.4.2/lib/python3.4/test/mailcap.txt +39 -0
  1558. package/python3.4.2/lib/python3.4/test/make_ssl_certs.py +176 -0
  1559. package/python3.4.2/lib/python3.4/test/mapping_tests.py +657 -0
  1560. package/python3.4.2/lib/python3.4/test/math_testcases.txt +633 -0
  1561. package/python3.4.2/lib/python3.4/test/memory_watchdog.py +28 -0
  1562. package/python3.4.2/lib/python3.4/test/mime.types +1445 -0
  1563. package/python3.4.2/lib/python3.4/test/mock_socket.py +156 -0
  1564. package/python3.4.2/lib/python3.4/test/mp_fork_bomb.py +18 -0
  1565. package/python3.4.2/lib/python3.4/test/multibytecodec_support.py +377 -0
  1566. package/python3.4.2/lib/python3.4/test/nokia.pem +31 -0
  1567. package/python3.4.2/lib/python3.4/test/nullbytecert.pem +90 -0
  1568. package/python3.4.2/lib/python3.4/test/nullcert.pem +0 -0
  1569. package/python3.4.2/lib/python3.4/test/outstanding_bugs.py +18 -0
  1570. package/python3.4.2/lib/python3.4/test/pickletester.py +2253 -0
  1571. package/python3.4.2/lib/python3.4/test/profilee.py +115 -0
  1572. package/python3.4.2/lib/python3.4/test/pstats.pck +0 -0
  1573. package/python3.4.2/lib/python3.4/test/pycacert.pem +78 -0
  1574. package/python3.4.2/lib/python3.4/test/pycakey.pem +28 -0
  1575. package/python3.4.2/lib/python3.4/test/pyclbr_input.py +33 -0
  1576. package/python3.4.2/lib/python3.4/test/pydoc_mod.py +37 -0
  1577. package/python3.4.2/lib/python3.4/test/pydocfodder.py +216 -0
  1578. package/python3.4.2/lib/python3.4/test/pystone.py +277 -0
  1579. package/python3.4.2/lib/python3.4/test/randv2_32.pck +633 -0
  1580. package/python3.4.2/lib/python3.4/test/randv2_64.pck +633 -0
  1581. package/python3.4.2/lib/python3.4/test/randv3.pck +633 -0
  1582. package/python3.4.2/lib/python3.4/test/re_tests.py +670 -0
  1583. package/python3.4.2/lib/python3.4/test/regrtest.py +1589 -0
  1584. package/python3.4.2/lib/python3.4/test/relimport.py +1 -0
  1585. package/python3.4.2/lib/python3.4/test/reperf.py +23 -0
  1586. package/python3.4.2/lib/python3.4/test/revocation.crl +11 -0
  1587. package/python3.4.2/lib/python3.4/test/sample_doctest.py +76 -0
  1588. package/python3.4.2/lib/python3.4/test/sample_doctest_no_docstrings.py +12 -0
  1589. package/python3.4.2/lib/python3.4/test/sample_doctest_no_doctests.py +15 -0
  1590. package/python3.4.2/lib/python3.4/test/script_helper.py +178 -0
  1591. package/python3.4.2/lib/python3.4/test/seq_tests.py +397 -0
  1592. package/python3.4.2/lib/python3.4/test/sgml_input.html +212 -0
  1593. package/python3.4.2/lib/python3.4/test/sha256.pem +128 -0
  1594. package/python3.4.2/lib/python3.4/test/sndhdrdata/README +12 -0
  1595. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.8svx +0 -0
  1596. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aifc +0 -0
  1597. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aiff +0 -0
  1598. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.au +0 -0
  1599. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.hcom +0 -0
  1600. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.sndt +0 -0
  1601. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.voc +0 -0
  1602. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.wav +0 -0
  1603. package/python3.4.2/lib/python3.4/test/sortperf.py +169 -0
  1604. package/python3.4.2/lib/python3.4/test/ssl_cert.pem +15 -0
  1605. package/python3.4.2/lib/python3.4/test/ssl_key.passwd.pem +18 -0
  1606. package/python3.4.2/lib/python3.4/test/ssl_key.pem +16 -0
  1607. package/python3.4.2/lib/python3.4/test/ssl_servers.py +205 -0
  1608. package/python3.4.2/lib/python3.4/test/ssltests.py +22 -0
  1609. package/python3.4.2/lib/python3.4/test/string_tests.py +1385 -0
  1610. package/python3.4.2/lib/python3.4/test/subprocessdata/fd_status.py +34 -0
  1611. package/python3.4.2/lib/python3.4/test/subprocessdata/input_reader.py +7 -0
  1612. package/python3.4.2/lib/python3.4/test/subprocessdata/qcat.py +7 -0
  1613. package/python3.4.2/lib/python3.4/test/subprocessdata/qgrep.py +10 -0
  1614. package/python3.4.2/lib/python3.4/test/subprocessdata/sigchild_ignore.py +15 -0
  1615. package/python3.4.2/lib/python3.4/test/support/__init__.py +2241 -0
  1616. package/python3.4.2/lib/python3.4/test/test___all__.py +117 -0
  1617. package/python3.4.2/lib/python3.4/test/test___future__.py +65 -0
  1618. package/python3.4.2/lib/python3.4/test/test__locale.py +170 -0
  1619. package/python3.4.2/lib/python3.4/test/test__opcode.py +23 -0
  1620. package/python3.4.2/lib/python3.4/test/test__osx_support.py +281 -0
  1621. package/python3.4.2/lib/python3.4/test/test_abc.py +408 -0
  1622. package/python3.4.2/lib/python3.4/test/test_abstract_numbers.py +44 -0
  1623. package/python3.4.2/lib/python3.4/test/test_aifc.py +384 -0
  1624. package/python3.4.2/lib/python3.4/test/test_argparse.py +4979 -0
  1625. package/python3.4.2/lib/python3.4/test/test_array.py +1323 -0
  1626. package/python3.4.2/lib/python3.4/test/test_ast.py +1038 -0
  1627. package/python3.4.2/lib/python3.4/test/test_asynchat.py +333 -0
  1628. package/python3.4.2/lib/python3.4/test/test_asyncio/__init__.py +10 -0
  1629. package/python3.4.2/lib/python3.4/test/test_asyncio/__main__.py +4 -0
  1630. package/python3.4.2/lib/python3.4/test/test_asyncio/echo.py +8 -0
  1631. package/python3.4.2/lib/python3.4/test/test_asyncio/echo2.py +6 -0
  1632. package/python3.4.2/lib/python3.4/test/test_asyncio/echo3.py +11 -0
  1633. package/python3.4.2/lib/python3.4/test/test_asyncio/keycert3.pem +73 -0
  1634. package/python3.4.2/lib/python3.4/test/test_asyncio/pycacert.pem +78 -0
  1635. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_cert.pem +15 -0
  1636. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_key.pem +16 -0
  1637. package/python3.4.2/lib/python3.4/test/test_asyncio/test_base_events.py +1064 -0
  1638. package/python3.4.2/lib/python3.4/test/test_asyncio/test_events.py +2240 -0
  1639. package/python3.4.2/lib/python3.4/test/test_asyncio/test_futures.py +442 -0
  1640. package/python3.4.2/lib/python3.4/test/test_asyncio/test_locks.py +858 -0
  1641. package/python3.4.2/lib/python3.4/test/test_asyncio/test_proactor_events.py +492 -0
  1642. package/python3.4.2/lib/python3.4/test/test_asyncio/test_queues.py +476 -0
  1643. package/python3.4.2/lib/python3.4/test/test_asyncio/test_selector_events.py +1737 -0
  1644. package/python3.4.2/lib/python3.4/test/test_asyncio/test_streams.py +628 -0
  1645. package/python3.4.2/lib/python3.4/test/test_asyncio/test_subprocess.py +217 -0
  1646. package/python3.4.2/lib/python3.4/test/test_asyncio/test_tasks.py +1977 -0
  1647. package/python3.4.2/lib/python3.4/test/test_asyncio/test_transports.py +90 -0
  1648. package/python3.4.2/lib/python3.4/test/test_asyncio/test_unix_events.py +1582 -0
  1649. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_events.py +141 -0
  1650. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_utils.py +171 -0
  1651. package/python3.4.2/lib/python3.4/test/test_asyncore.py +859 -0
  1652. package/python3.4.2/lib/python3.4/test/test_atexit.py +185 -0
  1653. package/python3.4.2/lib/python3.4/test/test_audioop.py +534 -0
  1654. package/python3.4.2/lib/python3.4/test/test_augassign.py +315 -0
  1655. package/python3.4.2/lib/python3.4/test/test_base64.py +666 -0
  1656. package/python3.4.2/lib/python3.4/test/test_bigaddrspace.py +101 -0
  1657. package/python3.4.2/lib/python3.4/test/test_bigmem.py +1257 -0
  1658. package/python3.4.2/lib/python3.4/test/test_binascii.py +270 -0
  1659. package/python3.4.2/lib/python3.4/test/test_binhex.py +56 -0
  1660. package/python3.4.2/lib/python3.4/test/test_binop.py +380 -0
  1661. package/python3.4.2/lib/python3.4/test/test_bisect.py +328 -0
  1662. package/python3.4.2/lib/python3.4/test/test_bool.py +347 -0
  1663. package/python3.4.2/lib/python3.4/test/test_buffer.py +4294 -0
  1664. package/python3.4.2/lib/python3.4/test/test_bufio.py +73 -0
  1665. package/python3.4.2/lib/python3.4/test/test_builtin.py +1637 -0
  1666. package/python3.4.2/lib/python3.4/test/test_bytes.py +1433 -0
  1667. package/python3.4.2/lib/python3.4/test/test_bz2.py +880 -0
  1668. package/python3.4.2/lib/python3.4/test/test_calendar.py +714 -0
  1669. package/python3.4.2/lib/python3.4/test/test_call.py +131 -0
  1670. package/python3.4.2/lib/python3.4/test/test_capi.py +469 -0
  1671. package/python3.4.2/lib/python3.4/test/test_cgi.py +489 -0
  1672. package/python3.4.2/lib/python3.4/test/test_cgitb.py +70 -0
  1673. package/python3.4.2/lib/python3.4/test/test_charmapcodec.py +56 -0
  1674. package/python3.4.2/lib/python3.4/test/test_class.py +552 -0
  1675. package/python3.4.2/lib/python3.4/test/test_cmath.py +536 -0
  1676. package/python3.4.2/lib/python3.4/test/test_cmd.py +243 -0
  1677. package/python3.4.2/lib/python3.4/test/test_cmd_line.py +473 -0
  1678. package/python3.4.2/lib/python3.4/test/test_cmd_line_script.py +481 -0
  1679. package/python3.4.2/lib/python3.4/test/test_code.py +170 -0
  1680. package/python3.4.2/lib/python3.4/test/test_code_module.py +86 -0
  1681. package/python3.4.2/lib/python3.4/test/test_codeccallbacks.py +880 -0
  1682. package/python3.4.2/lib/python3.4/test/test_codecencodings_cn.py +90 -0
  1683. package/python3.4.2/lib/python3.4/test/test_codecencodings_hk.py +26 -0
  1684. package/python3.4.2/lib/python3.4/test/test_codecencodings_iso2022.py +45 -0
  1685. package/python3.4.2/lib/python3.4/test/test_codecencodings_jp.py +130 -0
  1686. package/python3.4.2/lib/python3.4/test/test_codecencodings_kr.py +73 -0
  1687. package/python3.4.2/lib/python3.4/test/test_codecencodings_tw.py +26 -0
  1688. package/python3.4.2/lib/python3.4/test/test_codecmaps_cn.py +29 -0
  1689. package/python3.4.2/lib/python3.4/test/test_codecmaps_hk.py +16 -0
  1690. package/python3.4.2/lib/python3.4/test/test_codecmaps_jp.py +63 -0
  1691. package/python3.4.2/lib/python3.4/test/test_codecmaps_kr.py +40 -0
  1692. package/python3.4.2/lib/python3.4/test/test_codecmaps_tw.py +30 -0
  1693. package/python3.4.2/lib/python3.4/test/test_codecs.py +2901 -0
  1694. package/python3.4.2/lib/python3.4/test/test_codeop.py +304 -0
  1695. package/python3.4.2/lib/python3.4/test/test_collections.py +1552 -0
  1696. package/python3.4.2/lib/python3.4/test/test_colorsys.py +100 -0
  1697. package/python3.4.2/lib/python3.4/test/test_compare.py +67 -0
  1698. package/python3.4.2/lib/python3.4/test/test_compile.py +561 -0
  1699. package/python3.4.2/lib/python3.4/test/test_compileall.py +384 -0
  1700. package/python3.4.2/lib/python3.4/test/test_complex.py +638 -0
  1701. package/python3.4.2/lib/python3.4/test/test_concurrent_futures.py +685 -0
  1702. package/python3.4.2/lib/python3.4/test/test_configparser.py +1768 -0
  1703. package/python3.4.2/lib/python3.4/test/test_contains.py +93 -0
  1704. package/python3.4.2/lib/python3.4/test/test_contextlib.py +828 -0
  1705. package/python3.4.2/lib/python3.4/test/test_copy.py +759 -0
  1706. package/python3.4.2/lib/python3.4/test/test_copyreg.py +121 -0
  1707. package/python3.4.2/lib/python3.4/test/test_cprofile.py +98 -0
  1708. package/python3.4.2/lib/python3.4/test/test_crashers.py +38 -0
  1709. package/python3.4.2/lib/python3.4/test/test_crypt.py +33 -0
  1710. package/python3.4.2/lib/python3.4/test/test_csv.py +1074 -0
  1711. package/python3.4.2/lib/python3.4/test/test_ctypes.py +6 -0
  1712. package/python3.4.2/lib/python3.4/test/test_curses.py +395 -0
  1713. package/python3.4.2/lib/python3.4/test/test_datetime.py +48 -0
  1714. package/python3.4.2/lib/python3.4/test/test_dbm.py +193 -0
  1715. package/python3.4.2/lib/python3.4/test/test_dbm_dumb.py +228 -0
  1716. package/python3.4.2/lib/python3.4/test/test_dbm_gnu.py +97 -0
  1717. package/python3.4.2/lib/python3.4/test/test_dbm_ndbm.py +54 -0
  1718. package/python3.4.2/lib/python3.4/test/test_decimal.py +5504 -0
  1719. package/python3.4.2/lib/python3.4/test/test_decorators.py +309 -0
  1720. package/python3.4.2/lib/python3.4/test/test_defaultdict.py +190 -0
  1721. package/python3.4.2/lib/python3.4/test/test_deque.py +817 -0
  1722. package/python3.4.2/lib/python3.4/test/test_descr.py +5006 -0
  1723. package/python3.4.2/lib/python3.4/test/test_descrtut.py +485 -0
  1724. package/python3.4.2/lib/python3.4/test/test_devpoll.py +146 -0
  1725. package/python3.4.2/lib/python3.4/test/test_dict.py +928 -0
  1726. package/python3.4.2/lib/python3.4/test/test_dictcomps.py +88 -0
  1727. package/python3.4.2/lib/python3.4/test/test_dictviews.py +206 -0
  1728. package/python3.4.2/lib/python3.4/test/test_difflib.py +298 -0
  1729. package/python3.4.2/lib/python3.4/test/test_difflib_expect.html +526 -0
  1730. package/python3.4.2/lib/python3.4/test/test_dis.py +832 -0
  1731. package/python3.4.2/lib/python3.4/test/test_distutils.py +18 -0
  1732. package/python3.4.2/lib/python3.4/test/test_doctest.py +2921 -0
  1733. package/python3.4.2/lib/python3.4/test/test_doctest.txt +17 -0
  1734. package/python3.4.2/lib/python3.4/test/test_doctest2.py +123 -0
  1735. package/python3.4.2/lib/python3.4/test/test_doctest2.txt +14 -0
  1736. package/python3.4.2/lib/python3.4/test/test_doctest3.txt +5 -0
  1737. package/python3.4.2/lib/python3.4/test/test_doctest4.txt +11 -0
  1738. package/python3.4.2/lib/python3.4/test/test_docxmlrpc.py +219 -0
  1739. package/python3.4.2/lib/python3.4/test/test_dummy_thread.py +182 -0
  1740. package/python3.4.2/lib/python3.4/test/test_dummy_threading.py +64 -0
  1741. package/python3.4.2/lib/python3.4/test/test_dynamic.py +143 -0
  1742. package/python3.4.2/lib/python3.4/test/test_dynamicclassattribute.py +304 -0
  1743. package/python3.4.2/lib/python3.4/test/test_email/__init__.py +159 -0
  1744. package/python3.4.2/lib/python3.4/test/test_email/__main__.py +4 -0
  1745. package/python3.4.2/lib/python3.4/test/test_email/data/PyBanner048.gif +0 -0
  1746. package/python3.4.2/lib/python3.4/test/test_email/data/audiotest.au +0 -0
  1747. package/python3.4.2/lib/python3.4/test/test_email/data/msg_01.txt +19 -0
  1748. package/python3.4.2/lib/python3.4/test/test_email/data/msg_02.txt +136 -0
  1749. package/python3.4.2/lib/python3.4/test/test_email/data/msg_03.txt +16 -0
  1750. package/python3.4.2/lib/python3.4/test/test_email/data/msg_04.txt +37 -0
  1751. package/python3.4.2/lib/python3.4/test/test_email/data/msg_05.txt +28 -0
  1752. package/python3.4.2/lib/python3.4/test/test_email/data/msg_06.txt +33 -0
  1753. package/python3.4.2/lib/python3.4/test/test_email/data/msg_07.txt +83 -0
  1754. package/python3.4.2/lib/python3.4/test/test_email/data/msg_08.txt +24 -0
  1755. package/python3.4.2/lib/python3.4/test/test_email/data/msg_09.txt +24 -0
  1756. package/python3.4.2/lib/python3.4/test/test_email/data/msg_10.txt +39 -0
  1757. package/python3.4.2/lib/python3.4/test/test_email/data/msg_11.txt +7 -0
  1758. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12.txt +36 -0
  1759. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12a.txt +38 -0
  1760. package/python3.4.2/lib/python3.4/test/test_email/data/msg_13.txt +94 -0
  1761. package/python3.4.2/lib/python3.4/test/test_email/data/msg_14.txt +23 -0
  1762. package/python3.4.2/lib/python3.4/test/test_email/data/msg_15.txt +52 -0
  1763. package/python3.4.2/lib/python3.4/test/test_email/data/msg_16.txt +123 -0
  1764. package/python3.4.2/lib/python3.4/test/test_email/data/msg_17.txt +12 -0
  1765. package/python3.4.2/lib/python3.4/test/test_email/data/msg_18.txt +6 -0
  1766. package/python3.4.2/lib/python3.4/test/test_email/data/msg_19.txt +43 -0
  1767. package/python3.4.2/lib/python3.4/test/test_email/data/msg_20.txt +22 -0
  1768. package/python3.4.2/lib/python3.4/test/test_email/data/msg_21.txt +20 -0
  1769. package/python3.4.2/lib/python3.4/test/test_email/data/msg_22.txt +46 -0
  1770. package/python3.4.2/lib/python3.4/test/test_email/data/msg_23.txt +8 -0
  1771. package/python3.4.2/lib/python3.4/test/test_email/data/msg_24.txt +10 -0
  1772. package/python3.4.2/lib/python3.4/test/test_email/data/msg_25.txt +117 -0
  1773. package/python3.4.2/lib/python3.4/test/test_email/data/msg_26.txt +46 -0
  1774. package/python3.4.2/lib/python3.4/test/test_email/data/msg_27.txt +15 -0
  1775. package/python3.4.2/lib/python3.4/test/test_email/data/msg_28.txt +25 -0
  1776. package/python3.4.2/lib/python3.4/test/test_email/data/msg_29.txt +22 -0
  1777. package/python3.4.2/lib/python3.4/test/test_email/data/msg_30.txt +23 -0
  1778. package/python3.4.2/lib/python3.4/test/test_email/data/msg_31.txt +15 -0
  1779. package/python3.4.2/lib/python3.4/test/test_email/data/msg_32.txt +14 -0
  1780. package/python3.4.2/lib/python3.4/test/test_email/data/msg_33.txt +29 -0
  1781. package/python3.4.2/lib/python3.4/test/test_email/data/msg_34.txt +19 -0
  1782. package/python3.4.2/lib/python3.4/test/test_email/data/msg_35.txt +4 -0
  1783. package/python3.4.2/lib/python3.4/test/test_email/data/msg_36.txt +40 -0
  1784. package/python3.4.2/lib/python3.4/test/test_email/data/msg_37.txt +22 -0
  1785. package/python3.4.2/lib/python3.4/test/test_email/data/msg_38.txt +101 -0
  1786. package/python3.4.2/lib/python3.4/test/test_email/data/msg_39.txt +83 -0
  1787. package/python3.4.2/lib/python3.4/test/test_email/data/msg_40.txt +10 -0
  1788. package/python3.4.2/lib/python3.4/test/test_email/data/msg_41.txt +8 -0
  1789. package/python3.4.2/lib/python3.4/test/test_email/data/msg_42.txt +20 -0
  1790. package/python3.4.2/lib/python3.4/test/test_email/data/msg_43.txt +217 -0
  1791. package/python3.4.2/lib/python3.4/test/test_email/data/msg_44.txt +33 -0
  1792. package/python3.4.2/lib/python3.4/test/test_email/data/msg_45.txt +33 -0
  1793. package/python3.4.2/lib/python3.4/test/test_email/data/msg_46.txt +23 -0
  1794. package/python3.4.2/lib/python3.4/test/test_email/test__encoded_words.py +192 -0
  1795. package/python3.4.2/lib/python3.4/test/test_email/test__header_value_parser.py +2606 -0
  1796. package/python3.4.2/lib/python3.4/test/test_email/test_asian_codecs.py +82 -0
  1797. package/python3.4.2/lib/python3.4/test/test_email/test_contentmanager.py +796 -0
  1798. package/python3.4.2/lib/python3.4/test/test_email/test_defect_handling.py +320 -0
  1799. package/python3.4.2/lib/python3.4/test/test_email/test_email.py +5289 -0
  1800. package/python3.4.2/lib/python3.4/test/test_email/test_generator.py +199 -0
  1801. package/python3.4.2/lib/python3.4/test/test_email/test_headerregistry.py +1594 -0
  1802. package/python3.4.2/lib/python3.4/test/test_email/test_inversion.py +49 -0
  1803. package/python3.4.2/lib/python3.4/test/test_email/test_message.py +783 -0
  1804. package/python3.4.2/lib/python3.4/test/test_email/test_parser.py +36 -0
  1805. package/python3.4.2/lib/python3.4/test/test_email/test_pickleable.py +74 -0
  1806. package/python3.4.2/lib/python3.4/test/test_email/test_policy.py +332 -0
  1807. package/python3.4.2/lib/python3.4/test/test_email/test_utils.py +140 -0
  1808. package/python3.4.2/lib/python3.4/test/test_email/torture_test.py +136 -0
  1809. package/python3.4.2/lib/python3.4/test/test_ensurepip.py +345 -0
  1810. package/python3.4.2/lib/python3.4/test/test_enum.py +1592 -0
  1811. package/python3.4.2/lib/python3.4/test/test_enumerate.py +272 -0
  1812. package/python3.4.2/lib/python3.4/test/test_eof.py +31 -0
  1813. package/python3.4.2/lib/python3.4/test/test_epoll.py +259 -0
  1814. package/python3.4.2/lib/python3.4/test/test_errno.py +40 -0
  1815. package/python3.4.2/lib/python3.4/test/test_exception_variations.py +180 -0
  1816. package/python3.4.2/lib/python3.4/test/test_exceptions.py +978 -0
  1817. package/python3.4.2/lib/python3.4/test/test_extcall.py +349 -0
  1818. package/python3.4.2/lib/python3.4/test/test_faulthandler.py +623 -0
  1819. package/python3.4.2/lib/python3.4/test/test_fcntl.py +152 -0
  1820. package/python3.4.2/lib/python3.4/test/test_file.py +329 -0
  1821. package/python3.4.2/lib/python3.4/test/test_file_eintr.py +236 -0
  1822. package/python3.4.2/lib/python3.4/test/test_filecmp.py +217 -0
  1823. package/python3.4.2/lib/python3.4/test/test_fileinput.py +891 -0
  1824. package/python3.4.2/lib/python3.4/test/test_fileio.py +480 -0
  1825. package/python3.4.2/lib/python3.4/test/test_finalization.py +522 -0
  1826. package/python3.4.2/lib/python3.4/test/test_float.py +1312 -0
  1827. package/python3.4.2/lib/python3.4/test/test_flufl.py +27 -0
  1828. package/python3.4.2/lib/python3.4/test/test_fnmatch.py +89 -0
  1829. package/python3.4.2/lib/python3.4/test/test_fork1.py +111 -0
  1830. package/python3.4.2/lib/python3.4/test/test_format.py +362 -0
  1831. package/python3.4.2/lib/python3.4/test/test_fractions.py +612 -0
  1832. package/python3.4.2/lib/python3.4/test/test_frame.py +168 -0
  1833. package/python3.4.2/lib/python3.4/test/test_ftplib.py +1080 -0
  1834. package/python3.4.2/lib/python3.4/test/test_funcattrs.py +385 -0
  1835. package/python3.4.2/lib/python3.4/test/test_functools.py +1584 -0
  1836. package/python3.4.2/lib/python3.4/test/test_future.py +125 -0
  1837. package/python3.4.2/lib/python3.4/test/test_future3.py +26 -0
  1838. package/python3.4.2/lib/python3.4/test/test_future4.py +6 -0
  1839. package/python3.4.2/lib/python3.4/test/test_future5.py +21 -0
  1840. package/python3.4.2/lib/python3.4/test/test_gc.py +1013 -0
  1841. package/python3.4.2/lib/python3.4/test/test_gdb.py +870 -0
  1842. package/python3.4.2/lib/python3.4/test/test_generators.py +1940 -0
  1843. package/python3.4.2/lib/python3.4/test/test_genericpath.py +439 -0
  1844. package/python3.4.2/lib/python3.4/test/test_genexps.py +285 -0
  1845. package/python3.4.2/lib/python3.4/test/test_getargs2.py +615 -0
  1846. package/python3.4.2/lib/python3.4/test/test_getopt.py +187 -0
  1847. package/python3.4.2/lib/python3.4/test/test_getpass.py +163 -0
  1848. package/python3.4.2/lib/python3.4/test/test_gettext.py +467 -0
  1849. package/python3.4.2/lib/python3.4/test/test_glob.py +200 -0
  1850. package/python3.4.2/lib/python3.4/test/test_global.py +61 -0
  1851. package/python3.4.2/lib/python3.4/test/test_grammar.py +1024 -0
  1852. package/python3.4.2/lib/python3.4/test/test_grp.py +99 -0
  1853. package/python3.4.2/lib/python3.4/test/test_gzip.py +561 -0
  1854. package/python3.4.2/lib/python3.4/test/test_hash.py +346 -0
  1855. package/python3.4.2/lib/python3.4/test/test_hashlib.py +533 -0
  1856. package/python3.4.2/lib/python3.4/test/test_heapq.py +417 -0
  1857. package/python3.4.2/lib/python3.4/test/test_hmac.py +506 -0
  1858. package/python3.4.2/lib/python3.4/test/test_html.py +104 -0
  1859. package/python3.4.2/lib/python3.4/test/test_htmlparser.py +832 -0
  1860. package/python3.4.2/lib/python3.4/test/test_http_cookiejar.py +1714 -0
  1861. package/python3.4.2/lib/python3.4/test/test_http_cookies.py +243 -0
  1862. package/python3.4.2/lib/python3.4/test/test_httplib.py +1025 -0
  1863. package/python3.4.2/lib/python3.4/test/test_httpservers.py +770 -0
  1864. package/python3.4.2/lib/python3.4/test/test_idle.py +16 -0
  1865. package/python3.4.2/lib/python3.4/test/test_imaplib.py +504 -0
  1866. package/python3.4.2/lib/python3.4/test/test_imghdr.py +131 -0
  1867. package/python3.4.2/lib/python3.4/test/test_imp.py +485 -0
  1868. package/python3.4.2/lib/python3.4/test/test_import.py +1072 -0
  1869. package/python3.4.2/lib/python3.4/test/test_importlib/__init__.py +5 -0
  1870. package/python3.4.2/lib/python3.4/test/test_importlib/__main__.py +4 -0
  1871. package/python3.4.2/lib/python3.4/test/test_importlib/abc.py +94 -0
  1872. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__init__.py +5 -0
  1873. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__main__.py +4 -0
  1874. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_finder.py +85 -0
  1875. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_loader.py +106 -0
  1876. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/util.py +7 -0
  1877. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__init__.py +5 -0
  1878. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__main__.py +4 -0
  1879. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_case_sensitivity.py +51 -0
  1880. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_finder.py +44 -0
  1881. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_loader.py +86 -0
  1882. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_path_hook.py +32 -0
  1883. package/python3.4.2/lib/python3.4/test/test_importlib/extension/util.py +19 -0
  1884. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__init__.py +5 -0
  1885. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__main__.py +4 -0
  1886. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_finder.py +80 -0
  1887. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_loader.py +222 -0
  1888. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__init__.py +5 -0
  1889. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__main__.py +4 -0
  1890. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___loader__.py +70 -0
  1891. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___package__.py +133 -0
  1892. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_api.py +94 -0
  1893. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_caching.py +92 -0
  1894. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_fromlist.py +129 -0
  1895. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_meta_path.py +119 -0
  1896. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_packages.py +110 -0
  1897. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_path.py +144 -0
  1898. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_relative_imports.py +216 -0
  1899. package/python3.4.2/lib/python3.4/test/test_importlib/import_/util.py +20 -0
  1900. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/one.py +1 -0
  1901. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/two.py +1 -0
  1902. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/missing_directory.zip +0 -0
  1903. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty +0 -0
  1904. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py +1 -0
  1905. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/nested_portion1.zip +0 -0
  1906. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py +0 -0
  1907. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py +1 -0
  1908. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/one.py +1 -0
  1909. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/two.py +1 -0
  1910. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/one.py +1 -0
  1911. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/two.py +1 -0
  1912. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/three.py +1 -0
  1913. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip +0 -0
  1914. package/python3.4.2/lib/python3.4/test/test_importlib/regrtest.py +17 -0
  1915. package/python3.4.2/lib/python3.4/test/test_importlib/source/__init__.py +5 -0
  1916. package/python3.4.2/lib/python3.4/test/test_importlib/source/__main__.py +4 -0
  1917. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_case_sensitivity.py +83 -0
  1918. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_file_loader.py +588 -0
  1919. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_finder.py +232 -0
  1920. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_path_hook.py +30 -0
  1921. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_source_encoding.py +165 -0
  1922. package/python3.4.2/lib/python3.4/test/test_importlib/source/util.py +96 -0
  1923. package/python3.4.2/lib/python3.4/test/test_importlib/test_abc.py +951 -0
  1924. package/python3.4.2/lib/python3.4/test/test_importlib/test_api.py +437 -0
  1925. package/python3.4.2/lib/python3.4/test/test_importlib/test_locks.py +156 -0
  1926. package/python3.4.2/lib/python3.4/test/test_importlib/test_namespace_pkgs.py +293 -0
  1927. package/python3.4.2/lib/python3.4/test/test_importlib/test_spec.py +957 -0
  1928. package/python3.4.2/lib/python3.4/test/test_importlib/test_util.py +592 -0
  1929. package/python3.4.2/lib/python3.4/test/test_importlib/test_windows.py +29 -0
  1930. package/python3.4.2/lib/python3.4/test/test_importlib/util.py +225 -0
  1931. package/python3.4.2/lib/python3.4/test/test_index.py +275 -0
  1932. package/python3.4.2/lib/python3.4/test/test_inspect.py +3103 -0
  1933. package/python3.4.2/lib/python3.4/test/test_int.py +458 -0
  1934. package/python3.4.2/lib/python3.4/test/test_int_literal.py +147 -0
  1935. package/python3.4.2/lib/python3.4/test/test_io.py +3481 -0
  1936. package/python3.4.2/lib/python3.4/test/test_ioctl.py +91 -0
  1937. package/python3.4.2/lib/python3.4/test/test_ipaddress.py +1693 -0
  1938. package/python3.4.2/lib/python3.4/test/test_isinstance.py +289 -0
  1939. package/python3.4.2/lib/python3.4/test/test_iter.py +927 -0
  1940. package/python3.4.2/lib/python3.4/test/test_iterlen.py +229 -0
  1941. package/python3.4.2/lib/python3.4/test/test_itertools.py +2142 -0
  1942. package/python3.4.2/lib/python3.4/test/test_json/__init__.py +53 -0
  1943. package/python3.4.2/lib/python3.4/test/test_json/__main__.py +4 -0
  1944. package/python3.4.2/lib/python3.4/test/test_json/test_decode.py +99 -0
  1945. package/python3.4.2/lib/python3.4/test/test_json/test_default.py +12 -0
  1946. package/python3.4.2/lib/python3.4/test/test_json/test_dump.py +49 -0
  1947. package/python3.4.2/lib/python3.4/test/test_json/test_encode_basestring_ascii.py +44 -0
  1948. package/python3.4.2/lib/python3.4/test/test_json/test_enum.py +120 -0
  1949. package/python3.4.2/lib/python3.4/test/test_json/test_fail.py +194 -0
  1950. package/python3.4.2/lib/python3.4/test/test_json/test_float.py +33 -0
  1951. package/python3.4.2/lib/python3.4/test/test_json/test_indent.py +67 -0
  1952. package/python3.4.2/lib/python3.4/test/test_json/test_pass1.py +75 -0
  1953. package/python3.4.2/lib/python3.4/test/test_json/test_pass2.py +18 -0
  1954. package/python3.4.2/lib/python3.4/test/test_json/test_pass3.py +24 -0
  1955. package/python3.4.2/lib/python3.4/test/test_json/test_recursion.py +100 -0
  1956. package/python3.4.2/lib/python3.4/test/test_json/test_scanstring.py +141 -0
  1957. package/python3.4.2/lib/python3.4/test/test_json/test_separators.py +44 -0
  1958. package/python3.4.2/lib/python3.4/test/test_json/test_speedups.py +24 -0
  1959. package/python3.4.2/lib/python3.4/test/test_json/test_tool.py +69 -0
  1960. package/python3.4.2/lib/python3.4/test/test_json/test_unicode.py +75 -0
  1961. package/python3.4.2/lib/python3.4/test/test_keyword.py +138 -0
  1962. package/python3.4.2/lib/python3.4/test/test_keywordonlyarg.py +193 -0
  1963. package/python3.4.2/lib/python3.4/test/test_kqueue.py +219 -0
  1964. package/python3.4.2/lib/python3.4/test/test_largefile.py +180 -0
  1965. package/python3.4.2/lib/python3.4/test/test_lib2to3.py +22 -0
  1966. package/python3.4.2/lib/python3.4/test/test_linecache.py +133 -0
  1967. package/python3.4.2/lib/python3.4/test/test_list.py +125 -0
  1968. package/python3.4.2/lib/python3.4/test/test_listcomps.py +148 -0
  1969. package/python3.4.2/lib/python3.4/test/test_locale.py +528 -0
  1970. package/python3.4.2/lib/python3.4/test/test_logging.py +4179 -0
  1971. package/python3.4.2/lib/python3.4/test/test_long.py +1250 -0
  1972. package/python3.4.2/lib/python3.4/test/test_longexp.py +14 -0
  1973. package/python3.4.2/lib/python3.4/test/test_lzma.py +1592 -0
  1974. package/python3.4.2/lib/python3.4/test/test_macpath.py +123 -0
  1975. package/python3.4.2/lib/python3.4/test/test_macurl2path.py +31 -0
  1976. package/python3.4.2/lib/python3.4/test/test_mailbox.py +2287 -0
  1977. package/python3.4.2/lib/python3.4/test/test_mailcap.py +221 -0
  1978. package/python3.4.2/lib/python3.4/test/test_marshal.py +451 -0
  1979. package/python3.4.2/lib/python3.4/test/test_math.py +1107 -0
  1980. package/python3.4.2/lib/python3.4/test/test_memoryio.py +784 -0
  1981. package/python3.4.2/lib/python3.4/test/test_memoryview.py +478 -0
  1982. package/python3.4.2/lib/python3.4/test/test_metaclass.py +265 -0
  1983. package/python3.4.2/lib/python3.4/test/test_mimetypes.py +111 -0
  1984. package/python3.4.2/lib/python3.4/test/test_minidom.py +1545 -0
  1985. package/python3.4.2/lib/python3.4/test/test_mmap.py +774 -0
  1986. package/python3.4.2/lib/python3.4/test/test_module.py +222 -0
  1987. package/python3.4.2/lib/python3.4/test/test_modulefinder.py +324 -0
  1988. package/python3.4.2/lib/python3.4/test/test_msilib.py +46 -0
  1989. package/python3.4.2/lib/python3.4/test/test_multibytecodec.py +263 -0
  1990. package/python3.4.2/lib/python3.4/test/test_multiprocessing_fork.py +7 -0
  1991. package/python3.4.2/lib/python3.4/test/test_multiprocessing_forkserver.py +7 -0
  1992. package/python3.4.2/lib/python3.4/test/test_multiprocessing_main_handling.py +289 -0
  1993. package/python3.4.2/lib/python3.4/test/test_multiprocessing_spawn.py +7 -0
  1994. package/python3.4.2/lib/python3.4/test/test_netrc.py +130 -0
  1995. package/python3.4.2/lib/python3.4/test/test_nis.py +43 -0
  1996. package/python3.4.2/lib/python3.4/test/test_nntplib.py +1429 -0
  1997. package/python3.4.2/lib/python3.4/test/test_normalization.py +104 -0
  1998. package/python3.4.2/lib/python3.4/test/test_ntpath.py +385 -0
  1999. package/python3.4.2/lib/python3.4/test/test_numeric_tower.py +206 -0
  2000. package/python3.4.2/lib/python3.4/test/test_opcodes.py +112 -0
  2001. package/python3.4.2/lib/python3.4/test/test_openpty.py +25 -0
  2002. package/python3.4.2/lib/python3.4/test/test_operator.py +484 -0
  2003. package/python3.4.2/lib/python3.4/test/test_optparse.py +1657 -0
  2004. package/python3.4.2/lib/python3.4/test/test_os.py +2550 -0
  2005. package/python3.4.2/lib/python3.4/test/test_ossaudiodev.py +202 -0
  2006. package/python3.4.2/lib/python3.4/test/test_osx_env.py +34 -0
  2007. package/python3.4.2/lib/python3.4/test/test_parser.py +745 -0
  2008. package/python3.4.2/lib/python3.4/test/test_pathlib.py +1884 -0
  2009. package/python3.4.2/lib/python3.4/test/test_pdb.py +1052 -0
  2010. package/python3.4.2/lib/python3.4/test/test_peepholer.py +339 -0
  2011. package/python3.4.2/lib/python3.4/test/test_pep247.py +70 -0
  2012. package/python3.4.2/lib/python3.4/test/test_pep277.py +201 -0
  2013. package/python3.4.2/lib/python3.4/test/test_pep292.py +247 -0
  2014. package/python3.4.2/lib/python3.4/test/test_pep3120.py +47 -0
  2015. package/python3.4.2/lib/python3.4/test/test_pep3131.py +35 -0
  2016. package/python3.4.2/lib/python3.4/test/test_pep3151.py +209 -0
  2017. package/python3.4.2/lib/python3.4/test/test_pep352.py +184 -0
  2018. package/python3.4.2/lib/python3.4/test/test_pep380.py +1023 -0
  2019. package/python3.4.2/lib/python3.4/test/test_pickle.py +156 -0
  2020. package/python3.4.2/lib/python3.4/test/test_pickletools.py +25 -0
  2021. package/python3.4.2/lib/python3.4/test/test_pipes.py +196 -0
  2022. package/python3.4.2/lib/python3.4/test/test_pkg.py +299 -0
  2023. package/python3.4.2/lib/python3.4/test/test_pkgimport.py +84 -0
  2024. package/python3.4.2/lib/python3.4/test/test_pkgutil.py +410 -0
  2025. package/python3.4.2/lib/python3.4/test/test_platform.py +320 -0
  2026. package/python3.4.2/lib/python3.4/test/test_plistlib.py +526 -0
  2027. package/python3.4.2/lib/python3.4/test/test_poll.py +215 -0
  2028. package/python3.4.2/lib/python3.4/test/test_popen.py +64 -0
  2029. package/python3.4.2/lib/python3.4/test/test_poplib.py +507 -0
  2030. package/python3.4.2/lib/python3.4/test/test_posix.py +1183 -0
  2031. package/python3.4.2/lib/python3.4/test/test_posixpath.py +544 -0
  2032. package/python3.4.2/lib/python3.4/test/test_pow.py +129 -0
  2033. package/python3.4.2/lib/python3.4/test/test_pprint.py +602 -0
  2034. package/python3.4.2/lib/python3.4/test/test_print.py +132 -0
  2035. package/python3.4.2/lib/python3.4/test/test_profile.py +187 -0
  2036. package/python3.4.2/lib/python3.4/test/test_property.py +254 -0
  2037. package/python3.4.2/lib/python3.4/test/test_pstats.py +45 -0
  2038. package/python3.4.2/lib/python3.4/test/test_pty.py +302 -0
  2039. package/python3.4.2/lib/python3.4/test/test_pulldom.py +347 -0
  2040. package/python3.4.2/lib/python3.4/test/test_pwd.py +114 -0
  2041. package/python3.4.2/lib/python3.4/test/test_py_compile.py +103 -0
  2042. package/python3.4.2/lib/python3.4/test/test_pyclbr.py +181 -0
  2043. package/python3.4.2/lib/python3.4/test/test_pydoc.py +1003 -0
  2044. package/python3.4.2/lib/python3.4/test/test_pyexpat.py +708 -0
  2045. package/python3.4.2/lib/python3.4/test/test_queue.py +363 -0
  2046. package/python3.4.2/lib/python3.4/test/test_quopri.py +208 -0
  2047. package/python3.4.2/lib/python3.4/test/test_raise.py +422 -0
  2048. package/python3.4.2/lib/python3.4/test/test_random.py +759 -0
  2049. package/python3.4.2/lib/python3.4/test/test_range.py +652 -0
  2050. package/python3.4.2/lib/python3.4/test/test_re.py +1451 -0
  2051. package/python3.4.2/lib/python3.4/test/test_readline.py +60 -0
  2052. package/python3.4.2/lib/python3.4/test/test_regrtest.py +275 -0
  2053. package/python3.4.2/lib/python3.4/test/test_reprlib.py +383 -0
  2054. package/python3.4.2/lib/python3.4/test/test_resource.py +166 -0
  2055. package/python3.4.2/lib/python3.4/test/test_richcmp.py +333 -0
  2056. package/python3.4.2/lib/python3.4/test/test_rlcompleter.py +73 -0
  2057. package/python3.4.2/lib/python3.4/test/test_robotparser.py +320 -0
  2058. package/python3.4.2/lib/python3.4/test/test_runpy.py +691 -0
  2059. package/python3.4.2/lib/python3.4/test/test_sax.py +1007 -0
  2060. package/python3.4.2/lib/python3.4/test/test_sched.py +199 -0
  2061. package/python3.4.2/lib/python3.4/test/test_scope.py +764 -0
  2062. package/python3.4.2/lib/python3.4/test/test_select.py +83 -0
  2063. package/python3.4.2/lib/python3.4/test/test_selectors.py +453 -0
  2064. package/python3.4.2/lib/python3.4/test/test_set.py +1839 -0
  2065. package/python3.4.2/lib/python3.4/test/test_setcomps.py +151 -0
  2066. package/python3.4.2/lib/python3.4/test/test_shelve.py +224 -0
  2067. package/python3.4.2/lib/python3.4/test/test_shlex.py +202 -0
  2068. package/python3.4.2/lib/python3.4/test/test_shutil.py +1766 -0
  2069. package/python3.4.2/lib/python3.4/test/test_signal.py +940 -0
  2070. package/python3.4.2/lib/python3.4/test/test_site.py +468 -0
  2071. package/python3.4.2/lib/python3.4/test/test_slice.py +247 -0
  2072. package/python3.4.2/lib/python3.4/test/test_smtpd.py +557 -0
  2073. package/python3.4.2/lib/python3.4/test/test_smtplib.py +950 -0
  2074. package/python3.4.2/lib/python3.4/test/test_smtpnet.py +86 -0
  2075. package/python3.4.2/lib/python3.4/test/test_sndhdr.py +23 -0
  2076. package/python3.4.2/lib/python3.4/test/test_socket.py +5163 -0
  2077. package/python3.4.2/lib/python3.4/test/test_socketserver.py +314 -0
  2078. package/python3.4.2/lib/python3.4/test/test_sort.py +285 -0
  2079. package/python3.4.2/lib/python3.4/test/test_source_encoding.py +145 -0
  2080. package/python3.4.2/lib/python3.4/test/test_spwd.py +60 -0
  2081. package/python3.4.2/lib/python3.4/test/test_sqlite.py +24 -0
  2082. package/python3.4.2/lib/python3.4/test/test_ssl.py +2908 -0
  2083. package/python3.4.2/lib/python3.4/test/test_startfile.py +37 -0
  2084. package/python3.4.2/lib/python3.4/test/test_stat.py +202 -0
  2085. package/python3.4.2/lib/python3.4/test/test_statistics.py +1574 -0
  2086. package/python3.4.2/lib/python3.4/test/test_strftime.py +204 -0
  2087. package/python3.4.2/lib/python3.4/test/test_string.py +174 -0
  2088. package/python3.4.2/lib/python3.4/test/test_stringprep.py +96 -0
  2089. package/python3.4.2/lib/python3.4/test/test_strlit.py +206 -0
  2090. package/python3.4.2/lib/python3.4/test/test_strptime.py +577 -0
  2091. package/python3.4.2/lib/python3.4/test/test_strtod.py +436 -0
  2092. package/python3.4.2/lib/python3.4/test/test_struct.py +667 -0
  2093. package/python3.4.2/lib/python3.4/test/test_structmembers.py +147 -0
  2094. package/python3.4.2/lib/python3.4/test/test_structseq.py +130 -0
  2095. package/python3.4.2/lib/python3.4/test/test_subprocess.py +2474 -0
  2096. package/python3.4.2/lib/python3.4/test/test_sunau.py +122 -0
  2097. package/python3.4.2/lib/python3.4/test/test_sundry.py +59 -0
  2098. package/python3.4.2/lib/python3.4/test/test_super.py +181 -0
  2099. package/python3.4.2/lib/python3.4/test/test_support.py +315 -0
  2100. package/python3.4.2/lib/python3.4/test/test_symtable.py +176 -0
  2101. package/python3.4.2/lib/python3.4/test/test_syntax.py +593 -0
  2102. package/python3.4.2/lib/python3.4/test/test_sys.py +1000 -0
  2103. package/python3.4.2/lib/python3.4/test/test_sys_setprofile.py +386 -0
  2104. package/python3.4.2/lib/python3.4/test/test_sys_settrace.py +834 -0
  2105. package/python3.4.2/lib/python3.4/test/test_sysconfig.py +423 -0
  2106. package/python3.4.2/lib/python3.4/test/test_syslog.py +43 -0
  2107. package/python3.4.2/lib/python3.4/test/test_tarfile.py +2180 -0
  2108. package/python3.4.2/lib/python3.4/test/test_tcl.py +642 -0
  2109. package/python3.4.2/lib/python3.4/test/test_telnetlib.py +401 -0
  2110. package/python3.4.2/lib/python3.4/test/test_tempfile.py +1248 -0
  2111. package/python3.4.2/lib/python3.4/test/test_textwrap.py +929 -0
  2112. package/python3.4.2/lib/python3.4/test/test_thread.py +260 -0
  2113. package/python3.4.2/lib/python3.4/test/test_threaded_import.py +244 -0
  2114. package/python3.4.2/lib/python3.4/test/test_threadedtempfile.py +78 -0
  2115. package/python3.4.2/lib/python3.4/test/test_threading.py +1021 -0
  2116. package/python3.4.2/lib/python3.4/test/test_threading_local.py +225 -0
  2117. package/python3.4.2/lib/python3.4/test/test_threadsignals.py +227 -0
  2118. package/python3.4.2/lib/python3.4/test/test_time.py +763 -0
  2119. package/python3.4.2/lib/python3.4/test/test_timeit.py +306 -0
  2120. package/python3.4.2/lib/python3.4/test/test_timeout.py +303 -0
  2121. package/python3.4.2/lib/python3.4/test/test_tk.py +18 -0
  2122. package/python3.4.2/lib/python3.4/test/test_tokenize.py +1233 -0
  2123. package/python3.4.2/lib/python3.4/test/test_trace.py +415 -0
  2124. package/python3.4.2/lib/python3.4/test/test_traceback.py +451 -0
  2125. package/python3.4.2/lib/python3.4/test/test_tracemalloc.py +826 -0
  2126. package/python3.4.2/lib/python3.4/test/test_ttk_guionly.py +37 -0
  2127. package/python3.4.2/lib/python3.4/test/test_ttk_textonly.py +17 -0
  2128. package/python3.4.2/lib/python3.4/test/test_tuple.py +208 -0
  2129. package/python3.4.2/lib/python3.4/test/test_typechecks.py +76 -0
  2130. package/python3.4.2/lib/python3.4/test/test_types.py +1178 -0
  2131. package/python3.4.2/lib/python3.4/test/test_ucn.py +240 -0
  2132. package/python3.4.2/lib/python3.4/test/test_unary.py +58 -0
  2133. package/python3.4.2/lib/python3.4/test/test_unicode.py +2596 -0
  2134. package/python3.4.2/lib/python3.4/test/test_unicode_file.py +144 -0
  2135. package/python3.4.2/lib/python3.4/test/test_unicodedata.py +323 -0
  2136. package/python3.4.2/lib/python3.4/test/test_unittest.py +16 -0
  2137. package/python3.4.2/lib/python3.4/test/test_univnewlines.py +123 -0
  2138. package/python3.4.2/lib/python3.4/test/test_unpack.py +130 -0
  2139. package/python3.4.2/lib/python3.4/test/test_unpack_ex.py +174 -0
  2140. package/python3.4.2/lib/python3.4/test/test_urllib.py +1486 -0
  2141. package/python3.4.2/lib/python3.4/test/test_urllib2.py +1646 -0
  2142. package/python3.4.2/lib/python3.4/test/test_urllib2_localnet.py +690 -0
  2143. package/python3.4.2/lib/python3.4/test/test_urllib2net.py +342 -0
  2144. package/python3.4.2/lib/python3.4/test/test_urllib_response.py +59 -0
  2145. package/python3.4.2/lib/python3.4/test/test_urllibnet.py +212 -0
  2146. package/python3.4.2/lib/python3.4/test/test_urlparse.py +879 -0
  2147. package/python3.4.2/lib/python3.4/test/test_userdict.py +199 -0
  2148. package/python3.4.2/lib/python3.4/test/test_userlist.py +65 -0
  2149. package/python3.4.2/lib/python3.4/test/test_userstring.py +47 -0
  2150. package/python3.4.2/lib/python3.4/test/test_uu.py +239 -0
  2151. package/python3.4.2/lib/python3.4/test/test_uuid.py +498 -0
  2152. package/python3.4.2/lib/python3.4/test/test_venv.py +406 -0
  2153. package/python3.4.2/lib/python3.4/test/test_wait3.py +38 -0
  2154. package/python3.4.2/lib/python3.4/test/test_wait4.py +38 -0
  2155. package/python3.4.2/lib/python3.4/test/test_warnings.py +873 -0
  2156. package/python3.4.2/lib/python3.4/test/test_wave.py +107 -0
  2157. package/python3.4.2/lib/python3.4/test/test_weakref.py +1801 -0
  2158. package/python3.4.2/lib/python3.4/test/test_weakset.py +450 -0
  2159. package/python3.4.2/lib/python3.4/test/test_webbrowser.py +192 -0
  2160. package/python3.4.2/lib/python3.4/test/test_winreg.py +485 -0
  2161. package/python3.4.2/lib/python3.4/test/test_winsound.py +253 -0
  2162. package/python3.4.2/lib/python3.4/test/test_with.py +750 -0
  2163. package/python3.4.2/lib/python3.4/test/test_wsgiref.py +640 -0
  2164. package/python3.4.2/lib/python3.4/test/test_xdrlib.py +58 -0
  2165. package/python3.4.2/lib/python3.4/test/test_xml_dom_minicompat.py +101 -0
  2166. package/python3.4.2/lib/python3.4/test/test_xml_etree.py +2587 -0
  2167. package/python3.4.2/lib/python3.4/test/test_xml_etree_c.py +94 -0
  2168. package/python3.4.2/lib/python3.4/test/test_xmlrpc.py +1114 -0
  2169. package/python3.4.2/lib/python3.4/test/test_xmlrpc_net.py +33 -0
  2170. package/python3.4.2/lib/python3.4/test/test_zipfile.py +1783 -0
  2171. package/python3.4.2/lib/python3.4/test/test_zipfile64.py +118 -0
  2172. package/python3.4.2/lib/python3.4/test/test_zipimport.py +507 -0
  2173. package/python3.4.2/lib/python3.4/test/test_zipimport_support.py +246 -0
  2174. package/python3.4.2/lib/python3.4/test/test_zlib.py +725 -0
  2175. package/python3.4.2/lib/python3.4/test/testcodec.py +48 -0
  2176. package/python3.4.2/lib/python3.4/test/testtar.tar +0 -0
  2177. package/python3.4.2/lib/python3.4/test/tf_inherit_check.py +25 -0
  2178. package/python3.4.2/lib/python3.4/test/threaded_import_hangers.py +45 -0
  2179. package/python3.4.2/lib/python3.4/test/time_hashlib.py +87 -0
  2180. package/python3.4.2/lib/python3.4/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt +13 -0
  2181. package/python3.4.2/lib/python3.4/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt +11 -0
  2182. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt +13 -0
  2183. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt +12 -0
  2184. package/python3.4.2/lib/python3.4/test/tokenize_tests.txt +189 -0
  2185. package/python3.4.2/lib/python3.4/test/tracedmodules/__init__.py +4 -0
  2186. package/python3.4.2/lib/python3.4/test/tracedmodules/testmod.py +9 -0
  2187. package/python3.4.2/lib/python3.4/test/warning_tests.py +9 -0
  2188. package/python3.4.2/lib/python3.4/test/win_console_handler.py +49 -0
  2189. package/python3.4.2/lib/python3.4/test/xmltestdata/simple-ns.xml +7 -0
  2190. package/python3.4.2/lib/python3.4/test/xmltestdata/simple.xml +6 -0
  2191. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml +115 -0
  2192. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml.out +115 -0
  2193. package/python3.4.2/lib/python3.4/test/xmltests.py +21 -0
  2194. package/python3.4.2/lib/python3.4/test/zip_cp437_header.zip +0 -0
  2195. package/python3.4.2/lib/python3.4/test/zipdir.zip +0 -0
  2196. package/python3.4.2/lib/python3.4/textwrap.py +470 -0
  2197. package/python3.4.2/lib/python3.4/this.py +28 -0
  2198. package/python3.4.2/lib/python3.4/threading.py +1359 -0
  2199. package/python3.4.2/lib/python3.4/timeit.py +322 -0
  2200. package/python3.4.2/lib/python3.4/tkinter/__init__.py +3898 -0
  2201. package/python3.4.2/lib/python3.4/tkinter/__main__.py +7 -0
  2202. package/python3.4.2/lib/python3.4/tkinter/_fix.py +78 -0
  2203. package/python3.4.2/lib/python3.4/tkinter/colorchooser.py +72 -0
  2204. package/python3.4.2/lib/python3.4/tkinter/commondialog.py +60 -0
  2205. package/python3.4.2/lib/python3.4/tkinter/constants.py +110 -0
  2206. package/python3.4.2/lib/python3.4/tkinter/dialog.py +49 -0
  2207. package/python3.4.2/lib/python3.4/tkinter/dnd.py +321 -0
  2208. package/python3.4.2/lib/python3.4/tkinter/filedialog.py +479 -0
  2209. package/python3.4.2/lib/python3.4/tkinter/font.py +234 -0
  2210. package/python3.4.2/lib/python3.4/tkinter/messagebox.py +134 -0
  2211. package/python3.4.2/lib/python3.4/tkinter/scrolledtext.py +54 -0
  2212. package/python3.4.2/lib/python3.4/tkinter/simpledialog.py +423 -0
  2213. package/python3.4.2/lib/python3.4/tkinter/test/README +14 -0
  2214. package/python3.4.2/lib/python3.4/tkinter/test/__init__.py +0 -0
  2215. package/python3.4.2/lib/python3.4/tkinter/test/runtktests.py +71 -0
  2216. package/python3.4.2/lib/python3.4/tkinter/test/support.py +104 -0
  2217. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/__init__.py +0 -0
  2218. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_font.py +27 -0
  2219. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py +900 -0
  2220. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_images.py +327 -0
  2221. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py +46 -0
  2222. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_misc.py +42 -0
  2223. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_text.py +47 -0
  2224. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_variables.py +186 -0
  2225. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py +1193 -0
  2226. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/__init__.py +0 -0
  2227. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_extensions.py +291 -0
  2228. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_functions.py +462 -0
  2229. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_style.py +92 -0
  2230. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_widgets.py +1598 -0
  2231. package/python3.4.2/lib/python3.4/tkinter/test/widget_tests.py +521 -0
  2232. package/python3.4.2/lib/python3.4/tkinter/tix.py +1944 -0
  2233. package/python3.4.2/lib/python3.4/tkinter/ttk.py +1616 -0
  2234. package/python3.4.2/lib/python3.4/token.py +140 -0
  2235. package/python3.4.2/lib/python3.4/tokenize.py +691 -0
  2236. package/python3.4.2/lib/python3.4/trace.py +858 -0
  2237. package/python3.4.2/lib/python3.4/traceback.py +313 -0
  2238. package/python3.4.2/lib/python3.4/tracemalloc.py +487 -0
  2239. package/python3.4.2/lib/python3.4/tty.py +36 -0
  2240. package/python3.4.2/lib/python3.4/turtle.py +4140 -0
  2241. package/python3.4.2/lib/python3.4/turtledemo/__init__.py +14 -0
  2242. package/python3.4.2/lib/python3.4/turtledemo/__main__.py +380 -0
  2243. package/python3.4.2/lib/python3.4/turtledemo/bytedesign.py +162 -0
  2244. package/python3.4.2/lib/python3.4/turtledemo/chaos.py +59 -0
  2245. package/python3.4.2/lib/python3.4/turtledemo/clock.py +132 -0
  2246. package/python3.4.2/lib/python3.4/turtledemo/colormixer.py +58 -0
  2247. package/python3.4.2/lib/python3.4/turtledemo/forest.py +108 -0
  2248. package/python3.4.2/lib/python3.4/turtledemo/fractalcurves.py +138 -0
  2249. package/python3.4.2/lib/python3.4/turtledemo/lindenmayer.py +119 -0
  2250. package/python3.4.2/lib/python3.4/turtledemo/minimal_hanoi.py +79 -0
  2251. package/python3.4.2/lib/python3.4/turtledemo/nim.py +226 -0
  2252. package/python3.4.2/lib/python3.4/turtledemo/paint.py +54 -0
  2253. package/python3.4.2/lib/python3.4/turtledemo/peace.py +61 -0
  2254. package/python3.4.2/lib/python3.4/turtledemo/penrose.py +181 -0
  2255. package/python3.4.2/lib/python3.4/turtledemo/planet_and_moon.py +112 -0
  2256. package/python3.4.2/lib/python3.4/turtledemo/round_dance.py +86 -0
  2257. package/python3.4.2/lib/python3.4/turtledemo/tree.py +63 -0
  2258. package/python3.4.2/lib/python3.4/turtledemo/turtle.cfg +10 -0
  2259. package/python3.4.2/lib/python3.4/turtledemo/two_canvases.py +54 -0
  2260. package/python3.4.2/lib/python3.4/turtledemo/wikipedia.py +65 -0
  2261. package/python3.4.2/lib/python3.4/turtledemo/yinyang.py +49 -0
  2262. package/python3.4.2/lib/python3.4/types.py +158 -0
  2263. package/python3.4.2/lib/python3.4/unittest/__init__.py +69 -0
  2264. package/python3.4.2/lib/python3.4/unittest/__main__.py +18 -0
  2265. package/python3.4.2/lib/python3.4/unittest/case.py +1400 -0
  2266. package/python3.4.2/lib/python3.4/unittest/loader.py +379 -0
  2267. package/python3.4.2/lib/python3.4/unittest/main.py +248 -0
  2268. package/python3.4.2/lib/python3.4/unittest/mock.py +2330 -0
  2269. package/python3.4.2/lib/python3.4/unittest/result.py +212 -0
  2270. package/python3.4.2/lib/python3.4/unittest/runner.py +213 -0
  2271. package/python3.4.2/lib/python3.4/unittest/signals.py +71 -0
  2272. package/python3.4.2/lib/python3.4/unittest/suite.py +324 -0
  2273. package/python3.4.2/lib/python3.4/unittest/test/__init__.py +22 -0
  2274. package/python3.4.2/lib/python3.4/unittest/test/__main__.py +18 -0
  2275. package/python3.4.2/lib/python3.4/unittest/test/_test_warnings.py +73 -0
  2276. package/python3.4.2/lib/python3.4/unittest/test/dummy.py +1 -0
  2277. package/python3.4.2/lib/python3.4/unittest/test/support.py +142 -0
  2278. package/python3.4.2/lib/python3.4/unittest/test/test_assertions.py +398 -0
  2279. package/python3.4.2/lib/python3.4/unittest/test/test_break.py +288 -0
  2280. package/python3.4.2/lib/python3.4/unittest/test/test_case.py +1574 -0
  2281. package/python3.4.2/lib/python3.4/unittest/test/test_discovery.py +527 -0
  2282. package/python3.4.2/lib/python3.4/unittest/test/test_functiontestcase.py +148 -0
  2283. package/python3.4.2/lib/python3.4/unittest/test/test_loader.py +1312 -0
  2284. package/python3.4.2/lib/python3.4/unittest/test/test_program.py +396 -0
  2285. package/python3.4.2/lib/python3.4/unittest/test/test_result.py +660 -0
  2286. package/python3.4.2/lib/python3.4/unittest/test/test_runner.py +346 -0
  2287. package/python3.4.2/lib/python3.4/unittest/test/test_setups.py +506 -0
  2288. package/python3.4.2/lib/python3.4/unittest/test/test_skipping.py +227 -0
  2289. package/python3.4.2/lib/python3.4/unittest/test/test_suite.py +447 -0
  2290. package/python3.4.2/lib/python3.4/unittest/test/testmock/__init__.py +17 -0
  2291. package/python3.4.2/lib/python3.4/unittest/test/testmock/__main__.py +18 -0
  2292. package/python3.4.2/lib/python3.4/unittest/test/testmock/support.py +23 -0
  2293. package/python3.4.2/lib/python3.4/unittest/test/testmock/testcallable.py +151 -0
  2294. package/python3.4.2/lib/python3.4/unittest/test/testmock/testhelpers.py +908 -0
  2295. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmagicmethods.py +428 -0
  2296. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmock.py +1412 -0
  2297. package/python3.4.2/lib/python3.4/unittest/test/testmock/testpatch.py +1801 -0
  2298. package/python3.4.2/lib/python3.4/unittest/test/testmock/testsentinel.py +28 -0
  2299. package/python3.4.2/lib/python3.4/unittest/test/testmock/testwith.py +259 -0
  2300. package/python3.4.2/lib/python3.4/unittest/util.py +177 -0
  2301. package/python3.4.2/lib/python3.4/urllib/__init__.py +0 -0
  2302. package/python3.4.2/lib/python3.4/urllib/error.py +76 -0
  2303. package/python3.4.2/lib/python3.4/urllib/parse.py +973 -0
  2304. package/python3.4.2/lib/python3.4/urllib/request.py +2559 -0
  2305. package/python3.4.2/lib/python3.4/urllib/response.py +76 -0
  2306. package/python3.4.2/lib/python3.4/urllib/robotparser.py +212 -0
  2307. package/python3.4.2/lib/python3.4/uu.py +199 -0
  2308. package/python3.4.2/lib/python3.4/uuid.py +591 -0
  2309. package/python3.4.2/lib/python3.4/venv/__init__.py +449 -0
  2310. package/python3.4.2/lib/python3.4/venv/__main__.py +10 -0
  2311. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate +76 -0
  2312. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.csh +37 -0
  2313. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.fish +74 -0
  2314. package/python3.4.2/lib/python3.4/warnings.py +407 -0
  2315. package/python3.4.2/lib/python3.4/wave.py +503 -0
  2316. package/python3.4.2/lib/python3.4/weakref.py +577 -0
  2317. package/python3.4.2/lib/python3.4/webbrowser.py +651 -0
  2318. package/python3.4.2/lib/python3.4/wsgiref/__init__.py +23 -0
  2319. package/python3.4.2/lib/python3.4/wsgiref/handlers.py +547 -0
  2320. package/python3.4.2/lib/python3.4/wsgiref/headers.py +184 -0
  2321. package/python3.4.2/lib/python3.4/wsgiref/simple_server.py +165 -0
  2322. package/python3.4.2/lib/python3.4/wsgiref/util.py +165 -0
  2323. package/python3.4.2/lib/python3.4/wsgiref/validate.py +443 -0
  2324. package/python3.4.2/lib/python3.4/xdrlib.py +224 -0
  2325. package/python3.4.2/lib/python3.4/xml/__init__.py +20 -0
  2326. package/python3.4.2/lib/python3.4/xml/dom/NodeFilter.py +27 -0
  2327. package/python3.4.2/lib/python3.4/xml/dom/__init__.py +140 -0
  2328. package/python3.4.2/lib/python3.4/xml/dom/domreg.py +97 -0
  2329. package/python3.4.2/lib/python3.4/xml/dom/expatbuilder.py +965 -0
  2330. package/python3.4.2/lib/python3.4/xml/dom/minicompat.py +109 -0
  2331. package/python3.4.2/lib/python3.4/xml/dom/minidom.py +1983 -0
  2332. package/python3.4.2/lib/python3.4/xml/dom/pulldom.py +342 -0
  2333. package/python3.4.2/lib/python3.4/xml/dom/xmlbuilder.py +386 -0
  2334. package/python3.4.2/lib/python3.4/xml/etree/ElementInclude.py +143 -0
  2335. package/python3.4.2/lib/python3.4/xml/etree/ElementPath.py +308 -0
  2336. package/python3.4.2/lib/python3.4/xml/etree/ElementTree.py +1667 -0
  2337. package/python3.4.2/lib/python3.4/xml/etree/__init__.py +33 -0
  2338. package/python3.4.2/lib/python3.4/xml/etree/cElementTree.py +3 -0
  2339. package/python3.4.2/lib/python3.4/xml/parsers/__init__.py +8 -0
  2340. package/python3.4.2/lib/python3.4/xml/parsers/expat.py +8 -0
  2341. package/python3.4.2/lib/python3.4/xml/sax/__init__.py +105 -0
  2342. package/python3.4.2/lib/python3.4/xml/sax/_exceptions.py +131 -0
  2343. package/python3.4.2/lib/python3.4/xml/sax/expatreader.py +417 -0
  2344. package/python3.4.2/lib/python3.4/xml/sax/handler.py +342 -0
  2345. package/python3.4.2/lib/python3.4/xml/sax/saxutils.py +365 -0
  2346. package/python3.4.2/lib/python3.4/xml/sax/xmlreader.py +378 -0
  2347. package/python3.4.2/lib/python3.4/xmlrpc/__init__.py +1 -0
  2348. package/python3.4.2/lib/python3.4/xmlrpc/client.py +1479 -0
  2349. package/python3.4.2/lib/python3.4/xmlrpc/server.py +986 -0
  2350. package/python3.4.2/lib/python3.4/zipfile.py +1788 -0
  2351. package/python3.4.2/share/man/man1/python3.1 +460 -0
  2352. package/python3.4.2/share/man/man1/python3.4.1 +460 -0
@@ -0,0 +1,4030 @@
1
+ ------------------------------------------------------------------------
2
+ -- randoms.decTest -- decimal random testcases --
3
+ -- Copyright (c) IBM Corporation, 1981, 2008. All rights reserved. --
4
+ ------------------------------------------------------------------------
5
+ -- Please see the document "General Decimal Arithmetic Testcases" --
6
+ -- at http://www2.hursley.ibm.com/decimal for the description of --
7
+ -- these testcases. --
8
+ -- --
9
+ -- These testcases are experimental ('beta' versions), and they --
10
+ -- may contain errors. They are offered on an as-is basis. In --
11
+ -- particular, achieving the same results as the tests here is not --
12
+ -- a guarantee that an implementation complies with any Standard --
13
+ -- or specification. The tests are not exhaustive. --
14
+ -- --
15
+ -- Please send comments, suggestions, and corrections to the author: --
16
+ -- Mike Cowlishaw, IBM Fellow --
17
+ -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
18
+ -- mfc@uk.ibm.com --
19
+ ------------------------------------------------------------------------
20
+ version: 2.59
21
+
22
+ extended: 1
23
+ maxexponent: 999999999
24
+ minexponent: -999999999
25
+ precision: 9
26
+ rounding: half_up
27
+
28
+ -- Randomly generated testcases [31 Dec 2000, with results defined for
29
+ -- all cases [27 Oct 2001], and no trim/finish [9 Jun 2002]
30
+ xadd001 add 905.67402 -202896611.E-780472620 -> 905.674020 Inexact Rounded
31
+ xcom001 compare 905.67402 -202896611.E-780472620 -> 1
32
+ xdiv001 divide 905.67402 -202896611.E-780472620 -> -4.46372177E+780472614 Inexact Rounded
33
+ xdvi001 divideint 905.67402 -202896611.E-780472620 -> NaN Division_impossible
34
+ xmul001 multiply 905.67402 -202896611.E-780472620 -> -1.83758189E-780472609 Inexact Rounded
35
+ xpow001 power 905.67402 -2 -> 0.00000121914730 Inexact Rounded
36
+ xrem001 remainder 905.67402 -202896611.E-780472620 -> NaN Division_impossible
37
+ xsub001 subtract 905.67402 -202896611.E-780472620 -> 905.674020 Inexact Rounded
38
+ xadd002 add 3915134.7 -597164907. -> -593249772 Inexact Rounded
39
+ xcom002 compare 3915134.7 -597164907. -> 1
40
+ xdiv002 divide 3915134.7 -597164907. -> -0.00655620358 Inexact Rounded
41
+ xdvi002 divideint 3915134.7 -597164907. -> -0
42
+ xmul002 multiply 3915134.7 -597164907. -> -2.33798105E+15 Inexact Rounded
43
+ xpow002 power 3915134.7 -597164907 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
44
+ xrem002 remainder 3915134.7 -597164907. -> 3915134.7
45
+ xsub002 subtract 3915134.7 -597164907. -> 601080042 Inexact Rounded
46
+ xadd003 add 309759261 62663.487 -> 309821924 Inexact Rounded
47
+ xcom003 compare 309759261 62663.487 -> 1
48
+ xdiv003 divide 309759261 62663.487 -> 4943.21775 Inexact Rounded
49
+ xdvi003 divideint 309759261 62663.487 -> 4943
50
+ xmul003 multiply 309759261 62663.487 -> 1.94105954E+13 Inexact Rounded
51
+ xpow003 power 309759261 62663 -> 1.13679199E+532073 Inexact Rounded
52
+ xrem003 remainder 309759261 62663.487 -> 13644.759
53
+ xsub003 subtract 309759261 62663.487 -> 309696598 Inexact Rounded
54
+ xadd004 add 3.93591888E-236595626 7242375.00 -> 7242375.00 Inexact Rounded
55
+ xcom004 compare 3.93591888E-236595626 7242375.00 -> -1
56
+ xdiv004 divide 3.93591888E-236595626 7242375.00 -> 5.43456930E-236595633 Inexact Rounded
57
+ xdvi004 divideint 3.93591888E-236595626 7242375.00 -> 0
58
+ xmul004 multiply 3.93591888E-236595626 7242375.00 -> 2.85054005E-236595619 Inexact Rounded
59
+ xpow004 power 3.93591888E-236595626 7242375 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
60
+ xrem004 remainder 3.93591888E-236595626 7242375.00 -> 3.93591888E-236595626
61
+ xsub004 subtract 3.93591888E-236595626 7242375.00 -> -7242375.00 Inexact Rounded
62
+ xadd005 add 323902.714 -608669.607E-657060568 -> 323902.714 Inexact Rounded
63
+ xcom005 compare 323902.714 -608669.607E-657060568 -> 1
64
+ xdiv005 divide 323902.714 -608669.607E-657060568 -> -5.32148657E+657060567 Inexact Rounded
65
+ xdvi005 divideint 323902.714 -608669.607E-657060568 -> NaN Division_impossible
66
+ xmul005 multiply 323902.714 -608669.607E-657060568 -> -1.97149738E-657060557 Inexact Rounded
67
+ xpow005 power 323902.714 -6 -> 8.65989204E-34 Inexact Rounded
68
+ xrem005 remainder 323902.714 -608669.607E-657060568 -> NaN Division_impossible
69
+ xsub005 subtract 323902.714 -608669.607E-657060568 -> 323902.714 Inexact Rounded
70
+ xadd006 add 5.11970092 -8807.22036 -> -8802.10066 Inexact Rounded
71
+ xcom006 compare 5.11970092 -8807.22036 -> 1
72
+ xdiv006 divide 5.11970092 -8807.22036 -> -0.000581307236 Inexact Rounded
73
+ xdvi006 divideint 5.11970092 -8807.22036 -> -0
74
+ xmul006 multiply 5.11970092 -8807.22036 -> -45090.3342 Inexact Rounded
75
+ xpow006 power 5.11970092 -8807 -> 4.81819262E-6247 Inexact Rounded
76
+ xrem006 remainder 5.11970092 -8807.22036 -> 5.11970092
77
+ xsub006 subtract 5.11970092 -8807.22036 -> 8812.34006 Inexact Rounded
78
+ xadd007 add -7.99874516 4561.83758 -> 4553.83883 Inexact Rounded
79
+ xcom007 compare -7.99874516 4561.83758 -> -1
80
+ xdiv007 divide -7.99874516 4561.83758 -> -0.00175340420 Inexact Rounded
81
+ xdvi007 divideint -7.99874516 4561.83758 -> -0
82
+ xmul007 multiply -7.99874516 4561.83758 -> -36488.9763 Inexact Rounded
83
+ xpow007 power -7.99874516 4562 -> 3.85236199E+4119 Inexact Rounded
84
+ xrem007 remainder -7.99874516 4561.83758 -> -7.99874516
85
+ xsub007 subtract -7.99874516 4561.83758 -> -4569.83633 Inexact Rounded
86
+ xadd008 add 297802878 -927206.324 -> 296875672 Inexact Rounded
87
+ xcom008 compare 297802878 -927206.324 -> 1
88
+ xdiv008 divide 297802878 -927206.324 -> -321.182967 Inexact Rounded
89
+ xdvi008 divideint 297802878 -927206.324 -> -321
90
+ xmul008 multiply 297802878 -927206.324 -> -2.76124712E+14 Inexact Rounded
91
+ xpow008 power 297802878 -927206 -> 1.94602810E-7857078 Inexact Rounded
92
+ xrem008 remainder 297802878 -927206.324 -> 169647.996
93
+ xsub008 subtract 297802878 -927206.324 -> 298730084 Inexact Rounded
94
+ xadd009 add -766.651824 31300.3619 -> 30533.7101 Inexact Rounded
95
+ xcom009 compare -766.651824 31300.3619 -> -1
96
+ xdiv009 divide -766.651824 31300.3619 -> -0.0244933853 Inexact Rounded
97
+ xdvi009 divideint -766.651824 31300.3619 -> -0
98
+ xmul009 multiply -766.651824 31300.3619 -> -23996479.5 Inexact Rounded
99
+ xpow009 power -766.651824 31300 -> 8.37189011E+90287 Inexact Rounded
100
+ xrem009 remainder -766.651824 31300.3619 -> -766.651824
101
+ xsub009 subtract -766.651824 31300.3619 -> -32067.0137 Inexact Rounded
102
+ xadd010 add -56746.8689E+934981942 471002521. -> -5.67468689E+934981946 Inexact Rounded
103
+ xcom010 compare -56746.8689E+934981942 471002521. -> -1
104
+ xdiv010 divide -56746.8689E+934981942 471002521. -> -1.20481030E+934981938 Inexact Rounded
105
+ xdvi010 divideint -56746.8689E+934981942 471002521. -> NaN Division_impossible
106
+ xmul010 multiply -56746.8689E+934981942 471002521. -> -2.67279183E+934981955 Inexact Rounded
107
+ xpow010 power -56746.8689E+934981942 471002521 -> -Infinity Overflow Inexact Rounded
108
+ xrem010 remainder -56746.8689E+934981942 471002521. -> NaN Division_impossible
109
+ xsub010 subtract -56746.8689E+934981942 471002521. -> -5.67468689E+934981946 Inexact Rounded
110
+ xadd011 add 456417160 -41346.1024 -> 456375814 Inexact Rounded
111
+ xcom011 compare 456417160 -41346.1024 -> 1
112
+ xdiv011 divide 456417160 -41346.1024 -> -11038.9404 Inexact Rounded
113
+ xdvi011 divideint 456417160 -41346.1024 -> -11038
114
+ xmul011 multiply 456417160 -41346.1024 -> -1.88710706E+13 Inexact Rounded
115
+ xpow011 power 456417160 -41346 -> 1.04766863E-358030 Inexact Rounded
116
+ xrem011 remainder 456417160 -41346.1024 -> 38881.7088
117
+ xsub011 subtract 456417160 -41346.1024 -> 456458506 Inexact Rounded
118
+ xadd012 add 102895.722 -2.62214826 -> 102893.100 Inexact Rounded
119
+ xcom012 compare 102895.722 -2.62214826 -> 1
120
+ xdiv012 divide 102895.722 -2.62214826 -> -39241.0008 Inexact Rounded
121
+ xdvi012 divideint 102895.722 -2.62214826 -> -39241
122
+ xmul012 multiply 102895.722 -2.62214826 -> -269807.838 Inexact Rounded
123
+ xpow012 power 102895.722 -3 -> 9.17926786E-16 Inexact Rounded
124
+ xrem012 remainder 102895.722 -2.62214826 -> 0.00212934
125
+ xsub012 subtract 102895.722 -2.62214826 -> 102898.344 Inexact Rounded
126
+ xadd013 add 61.3033331E+157644141 -567740.918E-893439456 -> 6.13033331E+157644142 Inexact Rounded
127
+ xcom013 compare 61.3033331E+157644141 -567740.918E-893439456 -> 1
128
+ xdiv013 divide 61.3033331E+157644141 -567740.918E-893439456 -> -Infinity Inexact Overflow Rounded
129
+ xdvi013 divideint 61.3033331E+157644141 -567740.918E-893439456 -> NaN Division_impossible
130
+ xmul013 multiply 61.3033331E+157644141 -567740.918E-893439456 -> -3.48044106E-735795308 Inexact Rounded
131
+ xpow013 power 61.3033331E+157644141 -6 -> 1.88406322E-945864857 Inexact Rounded
132
+ xrem013 remainder 61.3033331E+157644141 -567740.918E-893439456 -> NaN Division_impossible
133
+ xsub013 subtract 61.3033331E+157644141 -567740.918E-893439456 -> 6.13033331E+157644142 Inexact Rounded
134
+ xadd014 add 80223.3897 73921.0383E-467772675 -> 80223.3897 Inexact Rounded
135
+ xcom014 compare 80223.3897 73921.0383E-467772675 -> 1
136
+ xdiv014 divide 80223.3897 73921.0383E-467772675 -> 1.08525789E+467772675 Inexact Rounded
137
+ xdvi014 divideint 80223.3897 73921.0383E-467772675 -> NaN Division_impossible
138
+ xmul014 multiply 80223.3897 73921.0383E-467772675 -> 5.93019626E-467772666 Inexact Rounded
139
+ xpow014 power 80223.3897 7 -> 2.13848919E+34 Inexact Rounded
140
+ xrem014 remainder 80223.3897 73921.0383E-467772675 -> NaN Division_impossible
141
+ xsub014 subtract 80223.3897 73921.0383E-467772675 -> 80223.3897 Inexact Rounded
142
+ xadd015 add -654645.954 -9.12535752 -> -654655.079 Inexact Rounded
143
+ xcom015 compare -654645.954 -9.12535752 -> -1
144
+ xdiv015 divide -654645.954 -9.12535752 -> 71739.2116 Inexact Rounded
145
+ xdvi015 divideint -654645.954 -9.12535752 -> 71739
146
+ xmul015 multiply -654645.954 -9.12535752 -> 5973878.38 Inexact Rounded
147
+ xpow015 power -654645.954 -9 -> -4.52836690E-53 Inexact Rounded
148
+ xrem015 remainder -654645.954 -9.12535752 -> -1.93087272
149
+ xsub015 subtract -654645.954 -9.12535752 -> -654636.829 Inexact Rounded
150
+ xadd016 add 63.1917772E-706014634 -7.56253257E-138579234 -> -7.56253257E-138579234 Inexact Rounded
151
+ xcom016 compare 63.1917772E-706014634 -7.56253257E-138579234 -> 1
152
+ xdiv016 divide 63.1917772E-706014634 -7.56253257E-138579234 -> -8.35590149E-567435400 Inexact Rounded
153
+ xdvi016 divideint 63.1917772E-706014634 -7.56253257E-138579234 -> -0
154
+ xmul016 multiply 63.1917772E-706014634 -7.56253257E-138579234 -> -4.77889873E-844593866 Inexact Rounded
155
+ xpow016 power 63.1917772E-706014634 -8 -> Infinity Overflow Inexact Rounded
156
+ xrem016 remainder 63.1917772E-706014634 -7.56253257E-138579234 -> 6.31917772E-706014633
157
+ xsub016 subtract 63.1917772E-706014634 -7.56253257E-138579234 -> 7.56253257E-138579234 Inexact Rounded
158
+ xadd017 add -39674.7190 2490607.78 -> 2450933.06 Inexact Rounded
159
+ xcom017 compare -39674.7190 2490607.78 -> -1
160
+ xdiv017 divide -39674.7190 2490607.78 -> -0.0159297338 Inexact Rounded
161
+ xdvi017 divideint -39674.7190 2490607.78 -> -0
162
+ xmul017 multiply -39674.7190 2490607.78 -> -9.88141638E+10 Inexact Rounded
163
+ xpow017 power -39674.7190 2490608 -> 2.55032329E+11453095 Inexact Rounded
164
+ xrem017 remainder -39674.7190 2490607.78 -> -39674.7190
165
+ xsub017 subtract -39674.7190 2490607.78 -> -2530282.50 Inexact Rounded
166
+ xadd018 add -3364.59737E-600363681 896487.451 -> 896487.451 Inexact Rounded
167
+ xcom018 compare -3364.59737E-600363681 896487.451 -> -1
168
+ xdiv018 divide -3364.59737E-600363681 896487.451 -> -3.75308920E-600363684 Inexact Rounded
169
+ xdvi018 divideint -3364.59737E-600363681 896487.451 -> -0
170
+ xmul018 multiply -3364.59737E-600363681 896487.451 -> -3.01631932E-600363672 Inexact Rounded
171
+ xpow018 power -3364.59737E-600363681 896487 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
172
+ xrem018 remainder -3364.59737E-600363681 896487.451 -> -3.36459737E-600363678
173
+ xsub018 subtract -3364.59737E-600363681 896487.451 -> -896487.451 Inexact Rounded
174
+ xadd019 add -64138.0578 31759011.3E+697488342 -> 3.17590113E+697488349 Inexact Rounded
175
+ xcom019 compare -64138.0578 31759011.3E+697488342 -> -1
176
+ xdiv019 divide -64138.0578 31759011.3E+697488342 -> -2.01952313E-697488345 Inexact Rounded
177
+ xdvi019 divideint -64138.0578 31759011.3E+697488342 -> -0
178
+ xmul019 multiply -64138.0578 31759011.3E+697488342 -> -2.03696130E+697488354 Inexact Rounded
179
+ xpow019 power -64138.0578 3 -> -2.63844116E+14 Inexact Rounded
180
+ xrem019 remainder -64138.0578 31759011.3E+697488342 -> -64138.0578
181
+ xsub019 subtract -64138.0578 31759011.3E+697488342 -> -3.17590113E+697488349 Inexact Rounded
182
+ xadd020 add 61399.8527 -64344484.5 -> -64283084.6 Inexact Rounded
183
+ xcom020 compare 61399.8527 -64344484.5 -> 1
184
+ xdiv020 divide 61399.8527 -64344484.5 -> -0.000954236454 Inexact Rounded
185
+ xdvi020 divideint 61399.8527 -64344484.5 -> -0
186
+ xmul020 multiply 61399.8527 -64344484.5 -> -3.95074187E+12 Inexact Rounded
187
+ xpow020 power 61399.8527 -64344485 -> 1.27378842E-308092161 Inexact Rounded
188
+ xrem020 remainder 61399.8527 -64344484.5 -> 61399.8527
189
+ xsub020 subtract 61399.8527 -64344484.5 -> 64405884.4 Inexact Rounded
190
+ xadd021 add -722960.204 -26154599.8 -> -26877560.0 Inexact Rounded
191
+ xcom021 compare -722960.204 -26154599.8 -> 1
192
+ xdiv021 divide -722960.204 -26154599.8 -> 0.0276417995 Inexact Rounded
193
+ xdvi021 divideint -722960.204 -26154599.8 -> 0
194
+ xmul021 multiply -722960.204 -26154599.8 -> 1.89087348E+13 Inexact Rounded
195
+ xpow021 power -722960.204 -26154600 -> 5.34236139E-153242794 Inexact Rounded
196
+ xrem021 remainder -722960.204 -26154599.8 -> -722960.204
197
+ xsub021 subtract -722960.204 -26154599.8 -> 25431639.6 Inexact Rounded
198
+ xadd022 add 9.47109959E+230565093 73354723.2 -> 9.47109959E+230565093 Inexact Rounded
199
+ xcom022 compare 9.47109959E+230565093 73354723.2 -> 1
200
+ xdiv022 divide 9.47109959E+230565093 73354723.2 -> 1.29113698E+230565086 Inexact Rounded
201
+ xdvi022 divideint 9.47109959E+230565093 73354723.2 -> NaN Division_impossible
202
+ xmul022 multiply 9.47109959E+230565093 73354723.2 -> 6.94749889E+230565101 Inexact Rounded
203
+ xpow022 power 9.47109959E+230565093 73354723 -> Infinity Overflow Inexact Rounded
204
+ xrem022 remainder 9.47109959E+230565093 73354723.2 -> NaN Division_impossible
205
+ xsub022 subtract 9.47109959E+230565093 73354723.2 -> 9.47109959E+230565093 Inexact Rounded
206
+ xadd023 add 43.7456245 547441956. -> 547442000 Inexact Rounded
207
+ xcom023 compare 43.7456245 547441956. -> -1
208
+ xdiv023 divide 43.7456245 547441956. -> 7.99091557E-8 Inexact Rounded
209
+ xdvi023 divideint 43.7456245 547441956. -> 0
210
+ xmul023 multiply 43.7456245 547441956. -> 2.39481902E+10 Inexact Rounded
211
+ xpow023 power 43.7456245 547441956 -> 2.91742391E+898316458 Inexact Rounded
212
+ xrem023 remainder 43.7456245 547441956. -> 43.7456245
213
+ xsub023 subtract 43.7456245 547441956. -> -547441912 Inexact Rounded
214
+ xadd024 add -73150542E-242017390 -8.15869954 -> -8.15869954 Inexact Rounded
215
+ xcom024 compare -73150542E-242017390 -8.15869954 -> 1
216
+ xdiv024 divide -73150542E-242017390 -8.15869954 -> 8.96595611E-242017384 Inexact Rounded
217
+ xdvi024 divideint -73150542E-242017390 -8.15869954 -> 0
218
+ xmul024 multiply -73150542E-242017390 -8.15869954 -> 5.96813293E-242017382 Inexact Rounded
219
+ xpow024 power -73150542E-242017390 -8 -> Infinity Overflow Inexact Rounded
220
+ xrem024 remainder -73150542E-242017390 -8.15869954 -> -7.3150542E-242017383
221
+ xsub024 subtract -73150542E-242017390 -8.15869954 -> 8.15869954 Inexact Rounded
222
+ xadd025 add 2015.62109E+299897596 -11788916.1 -> 2.01562109E+299897599 Inexact Rounded
223
+ xcom025 compare 2015.62109E+299897596 -11788916.1 -> 1
224
+ xdiv025 divide 2015.62109E+299897596 -11788916.1 -> -1.70975947E+299897592 Inexact Rounded
225
+ xdvi025 divideint 2015.62109E+299897596 -11788916.1 -> NaN Division_impossible
226
+ xmul025 multiply 2015.62109E+299897596 -11788916.1 -> -2.37619879E+299897606 Inexact Rounded
227
+ xpow025 power 2015.62109E+299897596 -11788916 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
228
+ xrem025 remainder 2015.62109E+299897596 -11788916.1 -> NaN Division_impossible
229
+ xsub025 subtract 2015.62109E+299897596 -11788916.1 -> 2.01562109E+299897599 Inexact Rounded
230
+ xadd026 add 29.498114 -26486451 -> -26486421.5 Inexact Rounded
231
+ xcom026 compare 29.498114 -26486451 -> 1
232
+ xdiv026 divide 29.498114 -26486451 -> -0.00000111370580 Inexact Rounded
233
+ xdvi026 divideint 29.498114 -26486451 -> -0
234
+ xmul026 multiply 29.498114 -26486451 -> -781300351 Inexact Rounded
235
+ xpow026 power 29.498114 -26486451 -> 4.22252513E-38929634 Inexact Rounded
236
+ xrem026 remainder 29.498114 -26486451 -> 29.498114
237
+ xsub026 subtract 29.498114 -26486451 -> 26486480.5 Inexact Rounded
238
+ xadd027 add 244375043.E+130840878 -9.44522029 -> 2.44375043E+130840886 Inexact Rounded
239
+ xcom027 compare 244375043.E+130840878 -9.44522029 -> 1
240
+ xdiv027 divide 244375043.E+130840878 -9.44522029 -> -2.58728791E+130840885 Inexact Rounded
241
+ xdvi027 divideint 244375043.E+130840878 -9.44522029 -> NaN Division_impossible
242
+ xmul027 multiply 244375043.E+130840878 -9.44522029 -> -2.30817611E+130840887 Inexact Rounded
243
+ xpow027 power 244375043.E+130840878 -9 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
244
+ xrem027 remainder 244375043.E+130840878 -9.44522029 -> NaN Division_impossible
245
+ xsub027 subtract 244375043.E+130840878 -9.44522029 -> 2.44375043E+130840886 Inexact Rounded
246
+ xadd028 add -349388.759 -196215.776 -> -545604.535
247
+ xcom028 compare -349388.759 -196215.776 -> -1
248
+ xdiv028 divide -349388.759 -196215.776 -> 1.78063541 Inexact Rounded
249
+ xdvi028 divideint -349388.759 -196215.776 -> 1
250
+ xmul028 multiply -349388.759 -196215.776 -> 6.85555865E+10 Inexact Rounded
251
+ xpow028 power -349388.759 -196216 -> 1.24551752E-1087686 Inexact Rounded
252
+ xrem028 remainder -349388.759 -196215.776 -> -153172.983
253
+ xsub028 subtract -349388.759 -196215.776 -> -153172.983
254
+ xadd029 add -70905112.4 -91353968.8 -> -162259081 Inexact Rounded
255
+ xcom029 compare -70905112.4 -91353968.8 -> 1
256
+ xdiv029 divide -70905112.4 -91353968.8 -> 0.776157986 Inexact Rounded
257
+ xdvi029 divideint -70905112.4 -91353968.8 -> 0
258
+ xmul029 multiply -70905112.4 -91353968.8 -> 6.47746343E+15 Inexact Rounded
259
+ xpow029 power -70905112.4 -91353969 -> -3.05944741E-717190554 Inexact Rounded
260
+ xrem029 remainder -70905112.4 -91353968.8 -> -70905112.4
261
+ xsub029 subtract -70905112.4 -91353968.8 -> 20448856.4
262
+ xadd030 add -225094.28 -88.7723542 -> -225183.052 Inexact Rounded
263
+ xcom030 compare -225094.28 -88.7723542 -> -1
264
+ xdiv030 divide -225094.28 -88.7723542 -> 2535.63491 Inexact Rounded
265
+ xdvi030 divideint -225094.28 -88.7723542 -> 2535
266
+ xmul030 multiply -225094.28 -88.7723542 -> 19982149.2 Inexact Rounded
267
+ xpow030 power -225094.28 -89 -> -4.36076965E-477 Inexact Rounded
268
+ xrem030 remainder -225094.28 -88.7723542 -> -56.3621030
269
+ xsub030 subtract -225094.28 -88.7723542 -> -225005.508 Inexact Rounded
270
+ xadd031 add 50.4442340 82.7952169E+880120759 -> 8.27952169E+880120760 Inexact Rounded
271
+ xcom031 compare 50.4442340 82.7952169E+880120759 -> -1
272
+ xdiv031 divide 50.4442340 82.7952169E+880120759 -> 6.09265075E-880120760 Inexact Rounded
273
+ xdvi031 divideint 50.4442340 82.7952169E+880120759 -> 0
274
+ xmul031 multiply 50.4442340 82.7952169E+880120759 -> 4.17654130E+880120762 Inexact Rounded
275
+ xpow031 power 50.4442340 8 -> 4.19268518E+13 Inexact Rounded
276
+ xrem031 remainder 50.4442340 82.7952169E+880120759 -> 50.4442340
277
+ xsub031 subtract 50.4442340 82.7952169E+880120759 -> -8.27952169E+880120760 Inexact Rounded
278
+ xadd032 add -32311.9037 8.36379449 -> -32303.5399 Inexact Rounded
279
+ xcom032 compare -32311.9037 8.36379449 -> -1
280
+ xdiv032 divide -32311.9037 8.36379449 -> -3863.30675 Inexact Rounded
281
+ xdvi032 divideint -32311.9037 8.36379449 -> -3863
282
+ xmul032 multiply -32311.9037 8.36379449 -> -270250.122 Inexact Rounded
283
+ xpow032 power -32311.9037 8 -> 1.18822960E+36 Inexact Rounded
284
+ xrem032 remainder -32311.9037 8.36379449 -> -2.56558513
285
+ xsub032 subtract -32311.9037 8.36379449 -> -32320.2675 Inexact Rounded
286
+ xadd033 add 615396156.E+549895291 -29530247.4 -> 6.15396156E+549895299 Inexact Rounded
287
+ xcom033 compare 615396156.E+549895291 -29530247.4 -> 1
288
+ xdiv033 divide 615396156.E+549895291 -29530247.4 -> -2.08395191E+549895292 Inexact Rounded
289
+ xdvi033 divideint 615396156.E+549895291 -29530247.4 -> NaN Division_impossible
290
+ xmul033 multiply 615396156.E+549895291 -29530247.4 -> -1.81728007E+549895307 Inexact Rounded
291
+ xpow033 power 615396156.E+549895291 -29530247 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
292
+ xrem033 remainder 615396156.E+549895291 -29530247.4 -> NaN Division_impossible
293
+ xsub033 subtract 615396156.E+549895291 -29530247.4 -> 6.15396156E+549895299 Inexact Rounded
294
+ xadd034 add 592.142173E-419941416 -3.46079109E-844011845 -> 5.92142173E-419941414 Inexact Rounded
295
+ xcom034 compare 592.142173E-419941416 -3.46079109E-844011845 -> 1
296
+ xdiv034 divide 592.142173E-419941416 -3.46079109E-844011845 -> -1.71100236E+424070431 Inexact Rounded
297
+ xdvi034 divideint 592.142173E-419941416 -3.46079109E-844011845 -> NaN Division_impossible
298
+ xmul034 multiply 592.142173E-419941416 -3.46079109E-844011845 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
299
+ xpow034 power 592.142173E-419941416 -3 -> Infinity Overflow Inexact Rounded
300
+ xrem034 remainder 592.142173E-419941416 -3.46079109E-844011845 -> NaN Division_impossible
301
+ xsub034 subtract 592.142173E-419941416 -3.46079109E-844011845 -> 5.92142173E-419941414 Inexact Rounded
302
+ xadd035 add 849.515993E-878446473 -1039.08778 -> -1039.08778 Inexact Rounded
303
+ xcom035 compare 849.515993E-878446473 -1039.08778 -> 1
304
+ xdiv035 divide 849.515993E-878446473 -1039.08778 -> -8.17559411E-878446474 Inexact Rounded
305
+ xdvi035 divideint 849.515993E-878446473 -1039.08778 -> -0
306
+ xmul035 multiply 849.515993E-878446473 -1039.08778 -> -8.82721687E-878446468 Inexact Rounded
307
+ xpow035 power 849.515993E-878446473 -1039 -> Infinity Overflow Inexact Rounded
308
+ xrem035 remainder 849.515993E-878446473 -1039.08778 -> 8.49515993E-878446471
309
+ xsub035 subtract 849.515993E-878446473 -1039.08778 -> 1039.08778 Inexact Rounded
310
+ xadd036 add 213361789 -599.644851 -> 213361189 Inexact Rounded
311
+ xcom036 compare 213361789 -599.644851 -> 1
312
+ xdiv036 divide 213361789 -599.644851 -> -355813.593 Inexact Rounded
313
+ xdvi036 divideint 213361789 -599.644851 -> -355813
314
+ xmul036 multiply 213361789 -599.644851 -> -1.27941298E+11 Inexact Rounded
315
+ xpow036 power 213361789 -600 -> 3.38854684E-4998 Inexact Rounded
316
+ xrem036 remainder 213361789 -599.644851 -> 355.631137
317
+ xsub036 subtract 213361789 -599.644851 -> 213362389 Inexact Rounded
318
+ xadd037 add -795522555. -298.037702 -> -795522853 Inexact Rounded
319
+ xcom037 compare -795522555. -298.037702 -> -1
320
+ xdiv037 divide -795522555. -298.037702 -> 2669201.08 Inexact Rounded
321
+ xdvi037 divideint -795522555. -298.037702 -> 2669201
322
+ xmul037 multiply -795522555. -298.037702 -> 2.37095714E+11 Inexact Rounded
323
+ xpow037 power -795522555. -298 -> 4.03232712E-2653 Inexact Rounded
324
+ xrem037 remainder -795522555. -298.037702 -> -22.783898
325
+ xsub037 subtract -795522555. -298.037702 -> -795522257 Inexact Rounded
326
+ xadd038 add -501260651. -8761893.0E-689281479 -> -501260651 Inexact Rounded
327
+ xcom038 compare -501260651. -8761893.0E-689281479 -> -1
328
+ xdiv038 divide -501260651. -8761893.0E-689281479 -> 5.72091728E+689281480 Inexact Rounded
329
+ xdvi038 divideint -501260651. -8761893.0E-689281479 -> NaN Division_impossible
330
+ xmul038 multiply -501260651. -8761893.0E-689281479 -> 4.39199219E-689281464 Inexact Rounded
331
+ xpow038 power -501260651. -9 -> -5.00526961E-79 Inexact Rounded
332
+ xrem038 remainder -501260651. -8761893.0E-689281479 -> NaN Division_impossible
333
+ xsub038 subtract -501260651. -8761893.0E-689281479 -> -501260651 Inexact Rounded
334
+ xadd039 add -1.70781105E-848889023 36504769.4 -> 36504769.4 Inexact Rounded
335
+ xcom039 compare -1.70781105E-848889023 36504769.4 -> -1
336
+ xdiv039 divide -1.70781105E-848889023 36504769.4 -> -4.67832307E-848889031 Inexact Rounded
337
+ xdvi039 divideint -1.70781105E-848889023 36504769.4 -> -0
338
+ xmul039 multiply -1.70781105E-848889023 36504769.4 -> -6.23432486E-848889016 Inexact Rounded
339
+ xpow039 power -1.70781105E-848889023 36504769 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
340
+ xrem039 remainder -1.70781105E-848889023 36504769.4 -> -1.70781105E-848889023
341
+ xsub039 subtract -1.70781105E-848889023 36504769.4 -> -36504769.4 Inexact Rounded
342
+ xadd040 add -5290.54984E-490626676 842535254 -> 842535254 Inexact Rounded
343
+ xcom040 compare -5290.54984E-490626676 842535254 -> -1
344
+ xdiv040 divide -5290.54984E-490626676 842535254 -> -6.27932162E-490626682 Inexact Rounded
345
+ xdvi040 divideint -5290.54984E-490626676 842535254 -> -0
346
+ xmul040 multiply -5290.54984E-490626676 842535254 -> -4.45747475E-490626664 Inexact Rounded
347
+ xpow040 power -5290.54984E-490626676 842535254 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
348
+ xrem040 remainder -5290.54984E-490626676 842535254 -> -5.29054984E-490626673
349
+ xsub040 subtract -5290.54984E-490626676 842535254 -> -842535254 Inexact Rounded
350
+ xadd041 add 608.31825E+535268120 -59609.0993 -> 6.08318250E+535268122 Inexact Rounded
351
+ xcom041 compare 608.31825E+535268120 -59609.0993 -> 1
352
+ xdiv041 divide 608.31825E+535268120 -59609.0993 -> -1.02051240E+535268118 Inexact Rounded
353
+ xdvi041 divideint 608.31825E+535268120 -59609.0993 -> NaN Division_impossible
354
+ xmul041 multiply 608.31825E+535268120 -59609.0993 -> -3.62613030E+535268127 Inexact Rounded
355
+ xpow041 power 608.31825E+535268120 -59609 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
356
+ xrem041 remainder 608.31825E+535268120 -59609.0993 -> NaN Division_impossible
357
+ xsub041 subtract 608.31825E+535268120 -59609.0993 -> 6.08318250E+535268122 Inexact Rounded
358
+ xadd042 add -4629035.31 -167.884398 -> -4629203.19 Inexact Rounded
359
+ xcom042 compare -4629035.31 -167.884398 -> -1
360
+ xdiv042 divide -4629035.31 -167.884398 -> 27572.7546 Inexact Rounded
361
+ xdvi042 divideint -4629035.31 -167.884398 -> 27572
362
+ xmul042 multiply -4629035.31 -167.884398 -> 777142806 Inexact Rounded
363
+ xpow042 power -4629035.31 -168 -> 1.57614831E-1120 Inexact Rounded
364
+ xrem042 remainder -4629035.31 -167.884398 -> -126.688344
365
+ xsub042 subtract -4629035.31 -167.884398 -> -4628867.43 Inexact Rounded
366
+ xadd043 add -66527378. -706400268. -> -772927646
367
+ xcom043 compare -66527378. -706400268. -> 1
368
+ xdiv043 divide -66527378. -706400268. -> 0.0941780192 Inexact Rounded
369
+ xdvi043 divideint -66527378. -706400268. -> 0
370
+ xmul043 multiply -66527378. -706400268. -> 4.69949576E+16 Inexact Rounded
371
+ xpow043 power -66527378. -706400268 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
372
+ xrem043 remainder -66527378. -706400268. -> -66527378
373
+ xsub043 subtract -66527378. -706400268. -> 639872890
374
+ xadd044 add -2510497.53 372882462. -> 370371964 Inexact Rounded
375
+ xcom044 compare -2510497.53 372882462. -> -1
376
+ xdiv044 divide -2510497.53 372882462. -> -0.00673267795 Inexact Rounded
377
+ xdvi044 divideint -2510497.53 372882462. -> -0
378
+ xmul044 multiply -2510497.53 372882462. -> -9.36120500E+14 Inexact Rounded
379
+ xpow044 power -2510497.53 372882462 -> Infinity Overflow Inexact Rounded
380
+ xrem044 remainder -2510497.53 372882462. -> -2510497.53
381
+ xsub044 subtract -2510497.53 372882462. -> -375392960 Inexact Rounded
382
+ xadd045 add 136.255393E+53329961 -53494.7201E+720058060 -> -5.34947201E+720058064 Inexact Rounded
383
+ xcom045 compare 136.255393E+53329961 -53494.7201E+720058060 -> 1
384
+ xdiv045 divide 136.255393E+53329961 -53494.7201E+720058060 -> -2.54708115E-666728102 Inexact Rounded
385
+ xdvi045 divideint 136.255393E+53329961 -53494.7201E+720058060 -> -0
386
+ xmul045 multiply 136.255393E+53329961 -53494.7201E+720058060 -> -7.28894411E+773388027 Inexact Rounded
387
+ xpow045 power 136.255393E+53329961 -5 -> 2.12927373E-266649816 Inexact Rounded
388
+ xrem045 remainder 136.255393E+53329961 -53494.7201E+720058060 -> 1.36255393E+53329963
389
+ xsub045 subtract 136.255393E+53329961 -53494.7201E+720058060 -> 5.34947201E+720058064 Inexact Rounded
390
+ xadd046 add -876673.100 -6150.92266 -> -882824.023 Inexact Rounded
391
+ xcom046 compare -876673.100 -6150.92266 -> -1
392
+ xdiv046 divide -876673.100 -6150.92266 -> 142.527089 Inexact Rounded
393
+ xdvi046 divideint -876673.100 -6150.92266 -> 142
394
+ xmul046 multiply -876673.100 -6150.92266 -> 5.39234844E+9 Inexact Rounded
395
+ xpow046 power -876673.100 -6151 -> -4.03111774E-36555 Inexact Rounded
396
+ xrem046 remainder -876673.100 -6150.92266 -> -3242.08228
397
+ xsub046 subtract -876673.100 -6150.92266 -> -870522.177 Inexact Rounded
398
+ xadd047 add -2.45151797E+911306117 27235771 -> -2.45151797E+911306117 Inexact Rounded
399
+ xcom047 compare -2.45151797E+911306117 27235771 -> -1
400
+ xdiv047 divide -2.45151797E+911306117 27235771 -> -9.00109628E+911306109 Inexact Rounded
401
+ xdvi047 divideint -2.45151797E+911306117 27235771 -> NaN Division_impossible
402
+ xmul047 multiply -2.45151797E+911306117 27235771 -> -6.67689820E+911306124 Inexact Rounded
403
+ xpow047 power -2.45151797E+911306117 27235771 -> -Infinity Overflow Inexact Rounded
404
+ xrem047 remainder -2.45151797E+911306117 27235771 -> NaN Division_impossible
405
+ xsub047 subtract -2.45151797E+911306117 27235771 -> -2.45151797E+911306117 Inexact Rounded
406
+ xadd048 add -9.15117551 -4.95100733E-314511326 -> -9.15117551 Inexact Rounded
407
+ xcom048 compare -9.15117551 -4.95100733E-314511326 -> -1
408
+ xdiv048 divide -9.15117551 -4.95100733E-314511326 -> 1.84834618E+314511326 Inexact Rounded
409
+ xdvi048 divideint -9.15117551 -4.95100733E-314511326 -> NaN Division_impossible
410
+ xmul048 multiply -9.15117551 -4.95100733E-314511326 -> 4.53075370E-314511325 Inexact Rounded
411
+ xpow048 power -9.15117551 -5 -> -0.0000155817265 Inexact Rounded
412
+ xrem048 remainder -9.15117551 -4.95100733E-314511326 -> NaN Division_impossible
413
+ xsub048 subtract -9.15117551 -4.95100733E-314511326 -> -9.15117551 Inexact Rounded
414
+ xadd049 add 3.61890453E-985606128 30664416. -> 30664416.0 Inexact Rounded
415
+ xcom049 compare 3.61890453E-985606128 30664416. -> -1
416
+ xdiv049 divide 3.61890453E-985606128 30664416. -> 1.18016418E-985606135 Inexact Rounded
417
+ xdvi049 divideint 3.61890453E-985606128 30664416. -> 0
418
+ xmul049 multiply 3.61890453E-985606128 30664416. -> 1.10971594E-985606120 Inexact Rounded
419
+ xpow049 power 3.61890453E-985606128 30664416 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
420
+ xrem049 remainder 3.61890453E-985606128 30664416. -> 3.61890453E-985606128
421
+ xsub049 subtract 3.61890453E-985606128 30664416. -> -30664416.0 Inexact Rounded
422
+ xadd050 add -257674602E+216723382 -70820959.4 -> -2.57674602E+216723390 Inexact Rounded
423
+ xcom050 compare -257674602E+216723382 -70820959.4 -> -1
424
+ xdiv050 divide -257674602E+216723382 -70820959.4 -> 3.63839468E+216723382 Inexact Rounded
425
+ xdvi050 divideint -257674602E+216723382 -70820959.4 -> NaN Division_impossible
426
+ xmul050 multiply -257674602E+216723382 -70820959.4 -> 1.82487625E+216723398 Inexact Rounded
427
+ xpow050 power -257674602E+216723382 -70820959 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
428
+ xrem050 remainder -257674602E+216723382 -70820959.4 -> NaN Division_impossible
429
+ xsub050 subtract -257674602E+216723382 -70820959.4 -> -2.57674602E+216723390 Inexact Rounded
430
+ xadd051 add 218699.206 556944241. -> 557162940 Inexact Rounded
431
+ xcom051 compare 218699.206 556944241. -> -1
432
+ xdiv051 divide 218699.206 556944241. -> 0.000392677022 Inexact Rounded
433
+ xdvi051 divideint 218699.206 556944241. -> 0
434
+ xmul051 multiply 218699.206 556944241. -> 1.21803263E+14 Inexact Rounded
435
+ xpow051 power 218699.206 556944241 -> Infinity Overflow Inexact Rounded
436
+ xrem051 remainder 218699.206 556944241. -> 218699.206
437
+ xsub051 subtract 218699.206 556944241. -> -556725542 Inexact Rounded
438
+ xadd052 add 106211716. -3456793.74 -> 102754922 Inexact Rounded
439
+ xcom052 compare 106211716. -3456793.74 -> 1
440
+ xdiv052 divide 106211716. -3456793.74 -> -30.7255000 Inexact Rounded
441
+ xdvi052 divideint 106211716. -3456793.74 -> -30
442
+ xmul052 multiply 106211716. -3456793.74 -> -3.67151995E+14 Inexact Rounded
443
+ xpow052 power 106211716. -3456794 -> 2.07225581E-27744825 Inexact Rounded
444
+ xrem052 remainder 106211716. -3456793.74 -> 2507903.80
445
+ xsub052 subtract 106211716. -3456793.74 -> 109668510 Inexact Rounded
446
+ xadd053 add 1.25018078 399856.763E-726816740 -> 1.25018078 Inexact Rounded
447
+ xcom053 compare 1.25018078 399856.763E-726816740 -> 1
448
+ xdiv053 divide 1.25018078 399856.763E-726816740 -> 3.12657155E+726816734 Inexact Rounded
449
+ xdvi053 divideint 1.25018078 399856.763E-726816740 -> NaN Division_impossible
450
+ xmul053 multiply 1.25018078 399856.763E-726816740 -> 4.99893240E-726816735 Inexact Rounded
451
+ xpow053 power 1.25018078 4 -> 2.44281890 Inexact Rounded
452
+ xrem053 remainder 1.25018078 399856.763E-726816740 -> NaN Division_impossible
453
+ xsub053 subtract 1.25018078 399856.763E-726816740 -> 1.25018078 Inexact Rounded
454
+ xadd054 add 364.99811 -46222.0505 -> -45857.0524 Inexact Rounded
455
+ xcom054 compare 364.99811 -46222.0505 -> 1
456
+ xdiv054 divide 364.99811 -46222.0505 -> -0.00789662306 Inexact Rounded
457
+ xdvi054 divideint 364.99811 -46222.0505 -> -0
458
+ xmul054 multiply 364.99811 -46222.0505 -> -16870961.1 Inexact Rounded
459
+ xpow054 power 364.99811 -46222 -> 6.35570856E-118435 Inexact Rounded
460
+ xrem054 remainder 364.99811 -46222.0505 -> 364.99811
461
+ xsub054 subtract 364.99811 -46222.0505 -> 46587.0486 Inexact Rounded
462
+ xadd055 add -392217576. -958364096 -> -1.35058167E+9 Inexact Rounded
463
+ xcom055 compare -392217576. -958364096 -> 1
464
+ xdiv055 divide -392217576. -958364096 -> 0.409257377 Inexact Rounded
465
+ xdvi055 divideint -392217576. -958364096 -> 0
466
+ xmul055 multiply -392217576. -958364096 -> 3.75887243E+17 Inexact Rounded
467
+ xpow055 power -392217576. -958364096 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
468
+ xrem055 remainder -392217576. -958364096 -> -392217576
469
+ xsub055 subtract -392217576. -958364096 -> 566146520
470
+ xadd056 add 169601285 714526.639 -> 170315812 Inexact Rounded
471
+ xcom056 compare 169601285 714526.639 -> 1
472
+ xdiv056 divide 169601285 714526.639 -> 237.361738 Inexact Rounded
473
+ xdvi056 divideint 169601285 714526.639 -> 237
474
+ xmul056 multiply 169601285 714526.639 -> 1.21184636E+14 Inexact Rounded
475
+ xpow056 power 169601285 714527 -> 2.06052444E+5880149 Inexact Rounded
476
+ xrem056 remainder 169601285 714526.639 -> 258471.557
477
+ xsub056 subtract 169601285 714526.639 -> 168886758 Inexact Rounded
478
+ xadd057 add -674.094552E+586944319 6354.2668E+589657266 -> 6.35426680E+589657269 Inexact Rounded
479
+ xcom057 compare -674.094552E+586944319 6354.2668E+589657266 -> -1
480
+ xdiv057 divide -674.094552E+586944319 6354.2668E+589657266 -> -1.06085340E-2712948 Inexact Rounded
481
+ xdvi057 divideint -674.094552E+586944319 6354.2668E+589657266 -> -0
482
+ xmul057 multiply -674.094552E+586944319 6354.2668E+589657266 -> -Infinity Inexact Overflow Rounded
483
+ xpow057 power -674.094552E+586944319 6 -> Infinity Overflow Inexact Rounded
484
+ xrem057 remainder -674.094552E+586944319 6354.2668E+589657266 -> -6.74094552E+586944321
485
+ xsub057 subtract -674.094552E+586944319 6354.2668E+589657266 -> -6.35426680E+589657269 Inexact Rounded
486
+ xadd058 add 151795163E-371727182 -488.09788E-738852245 -> 1.51795163E-371727174 Inexact Rounded
487
+ xcom058 compare 151795163E-371727182 -488.09788E-738852245 -> 1
488
+ xdiv058 divide 151795163E-371727182 -488.09788E-738852245 -> -3.10993285E+367125068 Inexact Rounded
489
+ xdvi058 divideint 151795163E-371727182 -488.09788E-738852245 -> NaN Division_impossible
490
+ xmul058 multiply 151795163E-371727182 -488.09788E-738852245 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
491
+ xpow058 power 151795163E-371727182 -5 -> Infinity Overflow Inexact Rounded
492
+ xrem058 remainder 151795163E-371727182 -488.09788E-738852245 -> NaN Division_impossible
493
+ xsub058 subtract 151795163E-371727182 -488.09788E-738852245 -> 1.51795163E-371727174 Inexact Rounded
494
+ xadd059 add -746.293386 927749.647 -> 927003.354 Inexact Rounded
495
+ xcom059 compare -746.293386 927749.647 -> -1
496
+ xdiv059 divide -746.293386 927749.647 -> -0.000804412471 Inexact Rounded
497
+ xdvi059 divideint -746.293386 927749.647 -> -0
498
+ xmul059 multiply -746.293386 927749.647 -> -692373425 Inexact Rounded
499
+ xpow059 power -746.293386 927750 -> 7.49278741E+2665341 Inexact Rounded
500
+ xrem059 remainder -746.293386 927749.647 -> -746.293386
501
+ xsub059 subtract -746.293386 927749.647 -> -928495.940 Inexact Rounded
502
+ xadd060 add 888946471E+241331592 -235739.595 -> 8.88946471E+241331600 Inexact Rounded
503
+ xcom060 compare 888946471E+241331592 -235739.595 -> 1
504
+ xdiv060 divide 888946471E+241331592 -235739.595 -> -3.77088317E+241331595 Inexact Rounded
505
+ xdvi060 divideint 888946471E+241331592 -235739.595 -> NaN Division_impossible
506
+ xmul060 multiply 888946471E+241331592 -235739.595 -> -2.09559881E+241331606 Inexact Rounded
507
+ xpow060 power 888946471E+241331592 -235740 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
508
+ xrem060 remainder 888946471E+241331592 -235739.595 -> NaN Division_impossible
509
+ xsub060 subtract 888946471E+241331592 -235739.595 -> 8.88946471E+241331600 Inexact Rounded
510
+ xadd061 add 6.64377249 79161.1070E+619453776 -> 7.91611070E+619453780 Inexact Rounded
511
+ xcom061 compare 6.64377249 79161.1070E+619453776 -> -1
512
+ xdiv061 divide 6.64377249 79161.1070E+619453776 -> 8.39272307E-619453781 Inexact Rounded
513
+ xdvi061 divideint 6.64377249 79161.1070E+619453776 -> 0
514
+ xmul061 multiply 6.64377249 79161.1070E+619453776 -> 5.25928385E+619453781 Inexact Rounded
515
+ xpow061 power 6.64377249 8 -> 3795928.44 Inexact Rounded
516
+ xrem061 remainder 6.64377249 79161.1070E+619453776 -> 6.64377249
517
+ xsub061 subtract 6.64377249 79161.1070E+619453776 -> -7.91611070E+619453780 Inexact Rounded
518
+ xadd062 add 3146.66571E-313373366 88.5282010 -> 88.5282010 Inexact Rounded
519
+ xcom062 compare 3146.66571E-313373366 88.5282010 -> -1
520
+ xdiv062 divide 3146.66571E-313373366 88.5282010 -> 3.55442184E-313373365 Inexact Rounded
521
+ xdvi062 divideint 3146.66571E-313373366 88.5282010 -> 0
522
+ xmul062 multiply 3146.66571E-313373366 88.5282010 -> 2.78568654E-313373361 Inexact Rounded
523
+ xpow062 power 3146.66571E-313373366 89 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
524
+ xrem062 remainder 3146.66571E-313373366 88.5282010 -> 3.14666571E-313373363
525
+ xsub062 subtract 3146.66571E-313373366 88.5282010 -> -88.5282010 Inexact Rounded
526
+ xadd063 add 6.44693097 -87195.8711 -> -87189.4242 Inexact Rounded
527
+ xcom063 compare 6.44693097 -87195.8711 -> 1
528
+ xdiv063 divide 6.44693097 -87195.8711 -> -0.0000739361955 Inexact Rounded
529
+ xdvi063 divideint 6.44693097 -87195.8711 -> -0
530
+ xmul063 multiply 6.44693097 -87195.8711 -> -562145.762 Inexact Rounded
531
+ xpow063 power 6.44693097 -87196 -> 4.50881730E-70573 Inexact Rounded
532
+ xrem063 remainder 6.44693097 -87195.8711 -> 6.44693097
533
+ xsub063 subtract 6.44693097 -87195.8711 -> 87202.3180 Inexact Rounded
534
+ xadd064 add -2113132.56E+577957840 981125821 -> -2.11313256E+577957846 Inexact Rounded
535
+ xcom064 compare -2113132.56E+577957840 981125821 -> -1
536
+ xdiv064 divide -2113132.56E+577957840 981125821 -> -2.15378345E+577957837 Inexact Rounded
537
+ xdvi064 divideint -2113132.56E+577957840 981125821 -> NaN Division_impossible
538
+ xmul064 multiply -2113132.56E+577957840 981125821 -> -2.07324892E+577957855 Inexact Rounded
539
+ xpow064 power -2113132.56E+577957840 981125821 -> -Infinity Overflow Inexact Rounded
540
+ xrem064 remainder -2113132.56E+577957840 981125821 -> NaN Division_impossible
541
+ xsub064 subtract -2113132.56E+577957840 981125821 -> -2.11313256E+577957846 Inexact Rounded
542
+ xadd065 add -7701.42814 72667.5181 -> 64966.0900 Inexact Rounded
543
+ xcom065 compare -7701.42814 72667.5181 -> -1
544
+ xdiv065 divide -7701.42814 72667.5181 -> -0.105981714 Inexact Rounded
545
+ xdvi065 divideint -7701.42814 72667.5181 -> -0
546
+ xmul065 multiply -7701.42814 72667.5181 -> -559643669 Inexact Rounded
547
+ xpow065 power -7701.42814 72668 -> 2.29543837E+282429 Inexact Rounded
548
+ xrem065 remainder -7701.42814 72667.5181 -> -7701.42814
549
+ xsub065 subtract -7701.42814 72667.5181 -> -80368.9462 Inexact Rounded
550
+ xadd066 add -851.754789 -582659.149 -> -583510.904 Inexact Rounded
551
+ xcom066 compare -851.754789 -582659.149 -> 1
552
+ xdiv066 divide -851.754789 -582659.149 -> 0.00146184058 Inexact Rounded
553
+ xdvi066 divideint -851.754789 -582659.149 -> 0
554
+ xmul066 multiply -851.754789 -582659.149 -> 496282721 Inexact Rounded
555
+ xpow066 power -851.754789 -582659 -> -6.83532593E-1707375 Inexact Rounded
556
+ xrem066 remainder -851.754789 -582659.149 -> -851.754789
557
+ xsub066 subtract -851.754789 -582659.149 -> 581807.394 Inexact Rounded
558
+ xadd067 add -5.01992943 7852.16531 -> 7847.14538 Inexact Rounded
559
+ xcom067 compare -5.01992943 7852.16531 -> -1
560
+ xdiv067 divide -5.01992943 7852.16531 -> -0.000639305113 Inexact Rounded
561
+ xdvi067 divideint -5.01992943 7852.16531 -> -0
562
+ xmul067 multiply -5.01992943 7852.16531 -> -39417.3157 Inexact Rounded
563
+ xpow067 power -5.01992943 7852 -> 7.54481448E+5501 Inexact Rounded
564
+ xrem067 remainder -5.01992943 7852.16531 -> -5.01992943
565
+ xsub067 subtract -5.01992943 7852.16531 -> -7857.18524 Inexact Rounded
566
+ xadd068 add -12393257.2 76803689E+949125770 -> 7.68036890E+949125777 Inexact Rounded
567
+ xcom068 compare -12393257.2 76803689E+949125770 -> -1
568
+ xdiv068 divide -12393257.2 76803689E+949125770 -> -1.61362786E-949125771 Inexact Rounded
569
+ xdvi068 divideint -12393257.2 76803689E+949125770 -> -0
570
+ xmul068 multiply -12393257.2 76803689E+949125770 -> -9.51847872E+949125784 Inexact Rounded
571
+ xpow068 power -12393257.2 8 -> 5.56523749E+56 Inexact Rounded
572
+ xrem068 remainder -12393257.2 76803689E+949125770 -> -12393257.2
573
+ xsub068 subtract -12393257.2 76803689E+949125770 -> -7.68036890E+949125777 Inexact Rounded
574
+ xadd069 add -754771634.E+716555026 -292336.311 -> -7.54771634E+716555034 Inexact Rounded
575
+ xcom069 compare -754771634.E+716555026 -292336.311 -> -1
576
+ xdiv069 divide -754771634.E+716555026 -292336.311 -> 2.58186070E+716555029 Inexact Rounded
577
+ xdvi069 divideint -754771634.E+716555026 -292336.311 -> NaN Division_impossible
578
+ xmul069 multiply -754771634.E+716555026 -292336.311 -> 2.20647155E+716555040 Inexact Rounded
579
+ xpow069 power -754771634.E+716555026 -292336 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
580
+ xrem069 remainder -754771634.E+716555026 -292336.311 -> NaN Division_impossible
581
+ xsub069 subtract -754771634.E+716555026 -292336.311 -> -7.54771634E+716555034 Inexact Rounded
582
+ xadd070 add -915006.171E+614548652 -314086965. -> -9.15006171E+614548657 Inexact Rounded
583
+ xcom070 compare -915006.171E+614548652 -314086965. -> -1
584
+ xdiv070 divide -915006.171E+614548652 -314086965. -> 2.91322555E+614548649 Inexact Rounded
585
+ xdvi070 divideint -915006.171E+614548652 -314086965. -> NaN Division_impossible
586
+ xmul070 multiply -915006.171E+614548652 -314086965. -> 2.87391511E+614548666 Inexact Rounded
587
+ xpow070 power -915006.171E+614548652 -314086965 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
588
+ xrem070 remainder -915006.171E+614548652 -314086965. -> NaN Division_impossible
589
+ xsub070 subtract -915006.171E+614548652 -314086965. -> -9.15006171E+614548657 Inexact Rounded
590
+ xadd071 add -296590035 -481734529 -> -778324564
591
+ xcom071 compare -296590035 -481734529 -> 1
592
+ xdiv071 divide -296590035 -481734529 -> 0.615671116 Inexact Rounded
593
+ xdvi071 divideint -296590035 -481734529 -> 0
594
+ xmul071 multiply -296590035 -481734529 -> 1.42877661E+17 Inexact Rounded
595
+ xpow071 power -296590035 -481734529 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
596
+ xrem071 remainder -296590035 -481734529 -> -296590035
597
+ xsub071 subtract -296590035 -481734529 -> 185144494
598
+ xadd072 add 8.27822605 9241557.19 -> 9241565.47 Inexact Rounded
599
+ xcom072 compare 8.27822605 9241557.19 -> -1
600
+ xdiv072 divide 8.27822605 9241557.19 -> 8.95760950E-7 Inexact Rounded
601
+ xdvi072 divideint 8.27822605 9241557.19 -> 0
602
+ xmul072 multiply 8.27822605 9241557.19 -> 76503699.5 Inexact Rounded
603
+ xpow072 power 8.27822605 9241557 -> 5.10219969E+8483169 Inexact Rounded
604
+ xrem072 remainder 8.27822605 9241557.19 -> 8.27822605
605
+ xsub072 subtract 8.27822605 9241557.19 -> -9241548.91 Inexact Rounded
606
+ xadd073 add -1.43581098 7286313.54 -> 7286312.10 Inexact Rounded
607
+ xcom073 compare -1.43581098 7286313.54 -> -1
608
+ xdiv073 divide -1.43581098 7286313.54 -> -1.97055887E-7 Inexact Rounded
609
+ xdvi073 divideint -1.43581098 7286313.54 -> -0
610
+ xmul073 multiply -1.43581098 7286313.54 -> -10461769.0 Inexact Rounded
611
+ xpow073 power -1.43581098 7286314 -> 1.09389741E+1144660 Inexact Rounded
612
+ xrem073 remainder -1.43581098 7286313.54 -> -1.43581098
613
+ xsub073 subtract -1.43581098 7286313.54 -> -7286314.98 Inexact Rounded
614
+ xadd074 add -699036193. 759263.509E+533543625 -> 7.59263509E+533543630 Inexact Rounded
615
+ xcom074 compare -699036193. 759263.509E+533543625 -> -1
616
+ xdiv074 divide -699036193. 759263.509E+533543625 -> -9.20676662E-533543623 Inexact Rounded
617
+ xdvi074 divideint -699036193. 759263.509E+533543625 -> -0
618
+ xmul074 multiply -699036193. 759263.509E+533543625 -> -5.30752673E+533543639 Inexact Rounded
619
+ xpow074 power -699036193. 8 -> 5.70160724E+70 Inexact Rounded
620
+ xrem074 remainder -699036193. 759263.509E+533543625 -> -699036193
621
+ xsub074 subtract -699036193. 759263.509E+533543625 -> -7.59263509E+533543630 Inexact Rounded
622
+ xadd075 add -83.7273615E-305281957 -287779593.E+458777774 -> -2.87779593E+458777782 Inexact Rounded
623
+ xcom075 compare -83.7273615E-305281957 -287779593.E+458777774 -> 1
624
+ xdiv075 divide -83.7273615E-305281957 -287779593.E+458777774 -> 2.90942664E-764059738 Inexact Rounded
625
+ xdvi075 divideint -83.7273615E-305281957 -287779593.E+458777774 -> 0
626
+ xmul075 multiply -83.7273615E-305281957 -287779593.E+458777774 -> 2.40950260E+153495827 Inexact Rounded
627
+ xpow075 power -83.7273615E-305281957 -3 -> -1.70371828E+915845865 Inexact Rounded
628
+ xrem075 remainder -83.7273615E-305281957 -287779593.E+458777774 -> -8.37273615E-305281956
629
+ xsub075 subtract -83.7273615E-305281957 -287779593.E+458777774 -> 2.87779593E+458777782 Inexact Rounded
630
+ xadd076 add 8.48503224 6522.03316 -> 6530.51819 Inexact Rounded
631
+ xcom076 compare 8.48503224 6522.03316 -> -1
632
+ xdiv076 divide 8.48503224 6522.03316 -> 0.00130097962 Inexact Rounded
633
+ xdvi076 divideint 8.48503224 6522.03316 -> 0
634
+ xmul076 multiply 8.48503224 6522.03316 -> 55339.6616 Inexact Rounded
635
+ xpow076 power 8.48503224 6522 -> 4.76547542E+6056 Inexact Rounded
636
+ xrem076 remainder 8.48503224 6522.03316 -> 8.48503224
637
+ xsub076 subtract 8.48503224 6522.03316 -> -6513.54813 Inexact Rounded
638
+ xadd077 add 527916091 -809.054070 -> 527915282 Inexact Rounded
639
+ xcom077 compare 527916091 -809.054070 -> 1
640
+ xdiv077 divide 527916091 -809.054070 -> -652510.272 Inexact Rounded
641
+ xdvi077 divideint 527916091 -809.054070 -> -652510
642
+ xmul077 multiply 527916091 -809.054070 -> -4.27112662E+11 Inexact Rounded
643
+ xpow077 power 527916091 -809 -> 2.78609697E-7057 Inexact Rounded
644
+ xrem077 remainder 527916091 -809.054070 -> 219.784300
645
+ xsub077 subtract 527916091 -809.054070 -> 527916900 Inexact Rounded
646
+ xadd078 add 3857058.60 5792997.58E+881077409 -> 5.79299758E+881077415 Inexact Rounded
647
+ xcom078 compare 3857058.60 5792997.58E+881077409 -> -1
648
+ xdiv078 divide 3857058.60 5792997.58E+881077409 -> 6.65813950E-881077410 Inexact Rounded
649
+ xdvi078 divideint 3857058.60 5792997.58E+881077409 -> 0
650
+ xmul078 multiply 3857058.60 5792997.58E+881077409 -> 2.23439311E+881077422 Inexact Rounded
651
+ xpow078 power 3857058.60 6 -> 3.29258824E+39 Inexact Rounded
652
+ xrem078 remainder 3857058.60 5792997.58E+881077409 -> 3857058.60
653
+ xsub078 subtract 3857058.60 5792997.58E+881077409 -> -5.79299758E+881077415 Inexact Rounded
654
+ xadd079 add -66587363.E+556538173 -551902402E+357309146 -> -6.65873630E+556538180 Inexact Rounded
655
+ xcom079 compare -66587363.E+556538173 -551902402E+357309146 -> -1
656
+ xdiv079 divide -66587363.E+556538173 -551902402E+357309146 -> 1.20650613E+199229026 Inexact Rounded
657
+ xdvi079 divideint -66587363.E+556538173 -551902402E+357309146 -> NaN Division_impossible
658
+ xmul079 multiply -66587363.E+556538173 -551902402E+357309146 -> 3.67497256E+913847335 Inexact Rounded
659
+ xpow079 power -66587363.E+556538173 -6 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
660
+ xrem079 remainder -66587363.E+556538173 -551902402E+357309146 -> NaN Division_impossible
661
+ xsub079 subtract -66587363.E+556538173 -551902402E+357309146 -> -6.65873630E+556538180 Inexact Rounded
662
+ xadd080 add -580.502955 38125521.7 -> 38124941.2 Inexact Rounded
663
+ xcom080 compare -580.502955 38125521.7 -> -1
664
+ xdiv080 divide -580.502955 38125521.7 -> -0.0000152260987 Inexact Rounded
665
+ xdvi080 divideint -580.502955 38125521.7 -> -0
666
+ xmul080 multiply -580.502955 38125521.7 -> -2.21319780E+10 Inexact Rounded
667
+ xpow080 power -580.502955 38125522 -> 6.07262078E+105371486 Inexact Rounded
668
+ xrem080 remainder -580.502955 38125521.7 -> -580.502955
669
+ xsub080 subtract -580.502955 38125521.7 -> -38126102.2 Inexact Rounded
670
+ xadd081 add -9627363.00 -80616885E-749891394 -> -9627363.00 Inexact Rounded
671
+ xcom081 compare -9627363.00 -80616885E-749891394 -> -1
672
+ xdiv081 divide -9627363.00 -80616885E-749891394 -> 1.19421173E+749891393 Inexact Rounded
673
+ xdvi081 divideint -9627363.00 -80616885E-749891394 -> NaN Division_impossible
674
+ xmul081 multiply -9627363.00 -80616885E-749891394 -> 7.76128016E-749891380 Inexact Rounded
675
+ xpow081 power -9627363.00 -8 -> 1.35500601E-56 Inexact Rounded
676
+ xrem081 remainder -9627363.00 -80616885E-749891394 -> NaN Division_impossible
677
+ xsub081 subtract -9627363.00 -80616885E-749891394 -> -9627363.00 Inexact Rounded
678
+ xadd082 add -526.594855E+803110107 -64.5451639 -> -5.26594855E+803110109 Inexact Rounded
679
+ xcom082 compare -526.594855E+803110107 -64.5451639 -> -1
680
+ xdiv082 divide -526.594855E+803110107 -64.5451639 -> 8.15854858E+803110107 Inexact Rounded
681
+ xdvi082 divideint -526.594855E+803110107 -64.5451639 -> NaN Division_impossible
682
+ xmul082 multiply -526.594855E+803110107 -64.5451639 -> 3.39891512E+803110111 Inexact Rounded
683
+ xpow082 power -526.594855E+803110107 -65 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
684
+ xrem082 remainder -526.594855E+803110107 -64.5451639 -> NaN Division_impossible
685
+ xsub082 subtract -526.594855E+803110107 -64.5451639 -> -5.26594855E+803110109 Inexact Rounded
686
+ xadd083 add -8378.55499 760.131257 -> -7618.42373 Inexact Rounded
687
+ xcom083 compare -8378.55499 760.131257 -> -1
688
+ xdiv083 divide -8378.55499 760.131257 -> -11.0225108 Inexact Rounded
689
+ xdvi083 divideint -8378.55499 760.131257 -> -11
690
+ xmul083 multiply -8378.55499 760.131257 -> -6368801.54 Inexact Rounded
691
+ xpow083 power -8378.55499 760 -> 4.06007928E+2981 Inexact Rounded
692
+ xrem083 remainder -8378.55499 760.131257 -> -17.111163
693
+ xsub083 subtract -8378.55499 760.131257 -> -9138.68625 Inexact Rounded
694
+ xadd084 add -717.697718 984304413 -> 984303695 Inexact Rounded
695
+ xcom084 compare -717.697718 984304413 -> -1
696
+ xdiv084 divide -717.697718 984304413 -> -7.29142030E-7 Inexact Rounded
697
+ xdvi084 divideint -717.697718 984304413 -> -0
698
+ xmul084 multiply -717.697718 984304413 -> -7.06433031E+11 Inexact Rounded
699
+ xpow084 power -717.697718 984304413 -> -Infinity Overflow Inexact Rounded
700
+ xrem084 remainder -717.697718 984304413 -> -717.697718
701
+ xsub084 subtract -717.697718 984304413 -> -984305131 Inexact Rounded
702
+ xadd085 add -76762243.4E-741100094 -273.706674 -> -273.706674 Inexact Rounded
703
+ xcom085 compare -76762243.4E-741100094 -273.706674 -> 1
704
+ xdiv085 divide -76762243.4E-741100094 -273.706674 -> 2.80454409E-741100089 Inexact Rounded
705
+ xdvi085 divideint -76762243.4E-741100094 -273.706674 -> 0
706
+ xmul085 multiply -76762243.4E-741100094 -273.706674 -> 2.10103383E-741100084 Inexact Rounded
707
+ xpow085 power -76762243.4E-741100094 -274 -> Infinity Overflow Inexact Rounded
708
+ xrem085 remainder -76762243.4E-741100094 -273.706674 -> -7.67622434E-741100087
709
+ xsub085 subtract -76762243.4E-741100094 -273.706674 -> 273.706674 Inexact Rounded
710
+ xadd086 add -701.518354E+786274918 8822750.68E+243052107 -> -7.01518354E+786274920 Inexact Rounded
711
+ xcom086 compare -701.518354E+786274918 8822750.68E+243052107 -> -1
712
+ xdiv086 divide -701.518354E+786274918 8822750.68E+243052107 -> -7.95124309E+543222806 Inexact Rounded
713
+ xdvi086 divideint -701.518354E+786274918 8822750.68E+243052107 -> NaN Division_impossible
714
+ xmul086 multiply -701.518354E+786274918 8822750.68E+243052107 -> -Infinity Inexact Overflow Rounded
715
+ xpow086 power -701.518354E+786274918 9 -> -Infinity Overflow Inexact Rounded
716
+ xrem086 remainder -701.518354E+786274918 8822750.68E+243052107 -> NaN Division_impossible
717
+ xsub086 subtract -701.518354E+786274918 8822750.68E+243052107 -> -7.01518354E+786274920 Inexact Rounded
718
+ xadd087 add -359866845. -4.57434117 -> -359866850 Inexact Rounded
719
+ xcom087 compare -359866845. -4.57434117 -> -1
720
+ xdiv087 divide -359866845. -4.57434117 -> 78670748.8 Inexact Rounded
721
+ xdvi087 divideint -359866845. -4.57434117 -> 78670748
722
+ xmul087 multiply -359866845. -4.57434117 -> 1.64615372E+9 Inexact Rounded
723
+ xpow087 power -359866845. -5 -> -1.65687909E-43 Inexact Rounded
724
+ xrem087 remainder -359866845. -4.57434117 -> -3.54890484
725
+ xsub087 subtract -359866845. -4.57434117 -> -359866840 Inexact Rounded
726
+ xadd088 add 779934536. -76562645.7 -> 703371890 Inexact Rounded
727
+ xcom088 compare 779934536. -76562645.7 -> 1
728
+ xdiv088 divide 779934536. -76562645.7 -> -10.1868807 Inexact Rounded
729
+ xdvi088 divideint 779934536. -76562645.7 -> -10
730
+ xmul088 multiply 779934536. -76562645.7 -> -5.97138515E+16 Inexact Rounded
731
+ xpow088 power 779934536. -76562646 -> 3.36739063E-680799501 Inexact Rounded
732
+ xrem088 remainder 779934536. -76562645.7 -> 14308079.0
733
+ xsub088 subtract 779934536. -76562645.7 -> 856497182 Inexact Rounded
734
+ xadd089 add -4820.95451 3516234.99E+303303176 -> 3.51623499E+303303182 Inexact Rounded
735
+ xcom089 compare -4820.95451 3516234.99E+303303176 -> -1
736
+ xdiv089 divide -4820.95451 3516234.99E+303303176 -> -1.37105584E-303303179 Inexact Rounded
737
+ xdvi089 divideint -4820.95451 3516234.99E+303303176 -> -0
738
+ xmul089 multiply -4820.95451 3516234.99E+303303176 -> -1.69516089E+303303186 Inexact Rounded
739
+ xpow089 power -4820.95451 4 -> 5.40172082E+14 Inexact Rounded
740
+ xrem089 remainder -4820.95451 3516234.99E+303303176 -> -4820.95451
741
+ xsub089 subtract -4820.95451 3516234.99E+303303176 -> -3.51623499E+303303182 Inexact Rounded
742
+ xadd090 add 69355976.9 -9.57838562E+758804984 -> -9.57838562E+758804984 Inexact Rounded
743
+ xcom090 compare 69355976.9 -9.57838562E+758804984 -> 1
744
+ xdiv090 divide 69355976.9 -9.57838562E+758804984 -> -7.24088376E-758804978 Inexact Rounded
745
+ xdvi090 divideint 69355976.9 -9.57838562E+758804984 -> -0
746
+ xmul090 multiply 69355976.9 -9.57838562E+758804984 -> -6.64318292E+758804992 Inexact Rounded
747
+ xpow090 power 69355976.9 -10 -> 3.88294346E-79 Inexact Rounded
748
+ xrem090 remainder 69355976.9 -9.57838562E+758804984 -> 69355976.9
749
+ xsub090 subtract 69355976.9 -9.57838562E+758804984 -> 9.57838562E+758804984 Inexact Rounded
750
+ xadd091 add -12672093.1 8569.78255E-382866025 -> -12672093.1 Inexact Rounded
751
+ xcom091 compare -12672093.1 8569.78255E-382866025 -> -1
752
+ xdiv091 divide -12672093.1 8569.78255E-382866025 -> -1.47869482E+382866028 Inexact Rounded
753
+ xdvi091 divideint -12672093.1 8569.78255E-382866025 -> NaN Division_impossible
754
+ xmul091 multiply -12672093.1 8569.78255E-382866025 -> -1.08597082E-382866014 Inexact Rounded
755
+ xpow091 power -12672093.1 9 -> -8.42626658E+63 Inexact Rounded
756
+ xrem091 remainder -12672093.1 8569.78255E-382866025 -> NaN Division_impossible
757
+ xsub091 subtract -12672093.1 8569.78255E-382866025 -> -12672093.1 Inexact Rounded
758
+ xadd092 add -5910750.2 66150383E-662459241 -> -5910750.20 Inexact Rounded
759
+ xcom092 compare -5910750.2 66150383E-662459241 -> -1
760
+ xdiv092 divide -5910750.2 66150383E-662459241 -> -8.93532272E+662459239 Inexact Rounded
761
+ xdvi092 divideint -5910750.2 66150383E-662459241 -> NaN Division_impossible
762
+ xmul092 multiply -5910750.2 66150383E-662459241 -> -3.90998390E-662459227 Inexact Rounded
763
+ xpow092 power -5910750.2 7 -> -2.52056696E+47 Inexact Rounded
764
+ xrem092 remainder -5910750.2 66150383E-662459241 -> NaN Division_impossible
765
+ xsub092 subtract -5910750.2 66150383E-662459241 -> -5910750.20 Inexact Rounded
766
+ xadd093 add -532577268.E-163806629 -240650398E-650110558 -> -5.32577268E-163806621 Inexact Rounded
767
+ xcom093 compare -532577268.E-163806629 -240650398E-650110558 -> -1
768
+ xdiv093 divide -532577268.E-163806629 -240650398E-650110558 -> 2.21307454E+486303929 Inexact Rounded
769
+ xdvi093 divideint -532577268.E-163806629 -240650398E-650110558 -> NaN Division_impossible
770
+ xmul093 multiply -532577268.E-163806629 -240650398E-650110558 -> 1.28164932E-813917170 Inexact Rounded
771
+ xpow093 power -532577268.E-163806629 -2 -> 3.52561389E+327613240 Inexact Rounded
772
+ xrem093 remainder -532577268.E-163806629 -240650398E-650110558 -> NaN Division_impossible
773
+ xsub093 subtract -532577268.E-163806629 -240650398E-650110558 -> -5.32577268E-163806621 Inexact Rounded
774
+ xadd094 add -671.507198E-908587890 3057429.32E-555230623 -> 3.05742932E-555230617 Inexact Rounded
775
+ xcom094 compare -671.507198E-908587890 3057429.32E-555230623 -> -1
776
+ xdiv094 divide -671.507198E-908587890 3057429.32E-555230623 -> -2.19631307E-353357271 Inexact Rounded
777
+ xdvi094 divideint -671.507198E-908587890 3057429.32E-555230623 -> -0
778
+ xmul094 multiply -671.507198E-908587890 3057429.32E-555230623 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
779
+ xpow094 power -671.507198E-908587890 3 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
780
+ xrem094 remainder -671.507198E-908587890 3057429.32E-555230623 -> -6.71507198E-908587888
781
+ xsub094 subtract -671.507198E-908587890 3057429.32E-555230623 -> -3.05742932E-555230617 Inexact Rounded
782
+ xadd095 add -294.994352E+346452027 -6061853.0 -> -2.94994352E+346452029 Inexact Rounded
783
+ xcom095 compare -294.994352E+346452027 -6061853.0 -> -1
784
+ xdiv095 divide -294.994352E+346452027 -6061853.0 -> 4.86640557E+346452022 Inexact Rounded
785
+ xdvi095 divideint -294.994352E+346452027 -6061853.0 -> NaN Division_impossible
786
+ xmul095 multiply -294.994352E+346452027 -6061853.0 -> 1.78821240E+346452036 Inexact Rounded
787
+ xpow095 power -294.994352E+346452027 -6061853 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
788
+ xrem095 remainder -294.994352E+346452027 -6061853.0 -> NaN Division_impossible
789
+ xsub095 subtract -294.994352E+346452027 -6061853.0 -> -2.94994352E+346452029 Inexact Rounded
790
+ xadd096 add 329579114 146780548. -> 476359662
791
+ xcom096 compare 329579114 146780548. -> 1
792
+ xdiv096 divide 329579114 146780548. -> 2.24538686 Inexact Rounded
793
+ xdvi096 divideint 329579114 146780548. -> 2
794
+ xmul096 multiply 329579114 146780548. -> 4.83758030E+16 Inexact Rounded
795
+ xpow096 power 329579114 146780548 -> Infinity Overflow Inexact Rounded
796
+ xrem096 remainder 329579114 146780548. -> 36018018
797
+ xsub096 subtract 329579114 146780548. -> 182798566
798
+ xadd097 add -789904.686E-217225000 -1991.07181E-84080059 -> -1.99107181E-84080056 Inexact Rounded
799
+ xcom097 compare -789904.686E-217225000 -1991.07181E-84080059 -> 1
800
+ xdiv097 divide -789904.686E-217225000 -1991.07181E-84080059 -> 3.96723354E-133144939 Inexact Rounded
801
+ xdvi097 divideint -789904.686E-217225000 -1991.07181E-84080059 -> 0
802
+ xmul097 multiply -789904.686E-217225000 -1991.07181E-84080059 -> 1.57275695E-301305050 Inexact Rounded
803
+ xpow097 power -789904.686E-217225000 -2 -> 1.60269403E+434449988 Inexact Rounded
804
+ xrem097 remainder -789904.686E-217225000 -1991.07181E-84080059 -> -7.89904686E-217224995
805
+ xsub097 subtract -789904.686E-217225000 -1991.07181E-84080059 -> 1.99107181E-84080056 Inexact Rounded
806
+ xadd098 add 59893.3544 -408595868 -> -408535975 Inexact Rounded
807
+ xcom098 compare 59893.3544 -408595868 -> 1
808
+ xdiv098 divide 59893.3544 -408595868 -> -0.000146583358 Inexact Rounded
809
+ xdvi098 divideint 59893.3544 -408595868 -> -0
810
+ xmul098 multiply 59893.3544 -408595868 -> -2.44721771E+13 Inexact Rounded
811
+ xpow098 power 59893.3544 -408595868 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
812
+ xrem098 remainder 59893.3544 -408595868 -> 59893.3544
813
+ xsub098 subtract 59893.3544 -408595868 -> 408655761 Inexact Rounded
814
+ xadd099 add 129.878613 -54652.7288E-963564940 -> 129.878613 Inexact Rounded
815
+ xcom099 compare 129.878613 -54652.7288E-963564940 -> 1
816
+ xdiv099 divide 129.878613 -54652.7288E-963564940 -> -2.37643418E+963564937 Inexact Rounded
817
+ xdvi099 divideint 129.878613 -54652.7288E-963564940 -> NaN Division_impossible
818
+ xmul099 multiply 129.878613 -54652.7288E-963564940 -> -7.09822061E-963564934 Inexact Rounded
819
+ xpow099 power 129.878613 -5 -> 2.70590029E-11 Inexact Rounded
820
+ xrem099 remainder 129.878613 -54652.7288E-963564940 -> NaN Division_impossible
821
+ xsub099 subtract 129.878613 -54652.7288E-963564940 -> 129.878613 Inexact Rounded
822
+ xadd100 add 9866.99208 708756501. -> 708766368 Inexact Rounded
823
+ xcom100 compare 9866.99208 708756501. -> -1
824
+ xdiv100 divide 9866.99208 708756501. -> 0.0000139215543 Inexact Rounded
825
+ xdvi100 divideint 9866.99208 708756501. -> 0
826
+ xmul100 multiply 9866.99208 708756501. -> 6.99329478E+12 Inexact Rounded
827
+ xpow100 power 9866.99208 708756501 -> Infinity Overflow Inexact Rounded
828
+ xrem100 remainder 9866.99208 708756501. -> 9866.99208
829
+ xsub100 subtract 9866.99208 708756501. -> -708746634 Inexact Rounded
830
+ xadd101 add -78810.6297 -399884.68 -> -478695.310 Inexact Rounded
831
+ xcom101 compare -78810.6297 -399884.68 -> 1
832
+ xdiv101 divide -78810.6297 -399884.68 -> 0.197083393 Inexact Rounded
833
+ xdvi101 divideint -78810.6297 -399884.68 -> 0
834
+ xmul101 multiply -78810.6297 -399884.68 -> 3.15151634E+10 Inexact Rounded
835
+ xpow101 power -78810.6297 -399885 -> -1.54252408E-1958071 Inexact Rounded
836
+ xrem101 remainder -78810.6297 -399884.68 -> -78810.6297
837
+ xsub101 subtract -78810.6297 -399884.68 -> 321074.050 Inexact Rounded
838
+ xadd102 add 409189761 -771.471460 -> 409188990 Inexact Rounded
839
+ xcom102 compare 409189761 -771.471460 -> 1
840
+ xdiv102 divide 409189761 -771.471460 -> -530401.683 Inexact Rounded
841
+ xdvi102 divideint 409189761 -771.471460 -> -530401
842
+ xmul102 multiply 409189761 -771.471460 -> -3.15678222E+11 Inexact Rounded
843
+ xpow102 power 409189761 -771 -> 1.60698414E-6640 Inexact Rounded
844
+ xrem102 remainder 409189761 -771.471460 -> 527.144540
845
+ xsub102 subtract 409189761 -771.471460 -> 409190532 Inexact Rounded
846
+ xadd103 add -1.68748838 460.46924 -> 458.781752 Inexact Rounded
847
+ xcom103 compare -1.68748838 460.46924 -> -1
848
+ xdiv103 divide -1.68748838 460.46924 -> -0.00366471467 Inexact Rounded
849
+ xdvi103 divideint -1.68748838 460.46924 -> -0
850
+ xmul103 multiply -1.68748838 460.46924 -> -777.036492 Inexact Rounded
851
+ xpow103 power -1.68748838 460 -> 3.39440648E+104 Inexact Rounded
852
+ xrem103 remainder -1.68748838 460.46924 -> -1.68748838
853
+ xsub103 subtract -1.68748838 460.46924 -> -462.156728 Inexact Rounded
854
+ xadd104 add 553527296. -7924.40185 -> 553519372 Inexact Rounded
855
+ xcom104 compare 553527296. -7924.40185 -> 1
856
+ xdiv104 divide 553527296. -7924.40185 -> -69850.9877 Inexact Rounded
857
+ xdvi104 divideint 553527296. -7924.40185 -> -69850
858
+ xmul104 multiply 553527296. -7924.40185 -> -4.38637273E+12 Inexact Rounded
859
+ xpow104 power 553527296. -7924 -> 2.32397214E-69281 Inexact Rounded
860
+ xrem104 remainder 553527296. -7924.40185 -> 7826.77750
861
+ xsub104 subtract 553527296. -7924.40185 -> 553535220 Inexact Rounded
862
+ xadd105 add -38.7465207 64936.2942 -> 64897.5477 Inexact Rounded
863
+ xcom105 compare -38.7465207 64936.2942 -> -1
864
+ xdiv105 divide -38.7465207 64936.2942 -> -0.000596685123 Inexact Rounded
865
+ xdvi105 divideint -38.7465207 64936.2942 -> -0
866
+ xmul105 multiply -38.7465207 64936.2942 -> -2516055.47 Inexact Rounded
867
+ xpow105 power -38.7465207 64936 -> 3.01500762E+103133 Inexact Rounded
868
+ xrem105 remainder -38.7465207 64936.2942 -> -38.7465207
869
+ xsub105 subtract -38.7465207 64936.2942 -> -64975.0407 Inexact Rounded
870
+ xadd106 add -201075.248 845.663928 -> -200229.584 Inexact Rounded
871
+ xcom106 compare -201075.248 845.663928 -> -1
872
+ xdiv106 divide -201075.248 845.663928 -> -237.772053 Inexact Rounded
873
+ xdvi106 divideint -201075.248 845.663928 -> -237
874
+ xmul106 multiply -201075.248 845.663928 -> -170042084 Inexact Rounded
875
+ xpow106 power -201075.248 846 -> 4.37911767E+4486 Inexact Rounded
876
+ xrem106 remainder -201075.248 845.663928 -> -652.897064
877
+ xsub106 subtract -201075.248 845.663928 -> -201920.912 Inexact Rounded
878
+ xadd107 add 91048.4559 75953609.3 -> 76044657.8 Inexact Rounded
879
+ xcom107 compare 91048.4559 75953609.3 -> -1
880
+ xdiv107 divide 91048.4559 75953609.3 -> 0.00119873771 Inexact Rounded
881
+ xdvi107 divideint 91048.4559 75953609.3 -> 0
882
+ xmul107 multiply 91048.4559 75953609.3 -> 6.91545885E+12 Inexact Rounded
883
+ xpow107 power 91048.4559 75953609 -> 6.94467746E+376674650 Inexact Rounded
884
+ xrem107 remainder 91048.4559 75953609.3 -> 91048.4559
885
+ xsub107 subtract 91048.4559 75953609.3 -> -75862560.8 Inexact Rounded
886
+ xadd108 add 6898273.86E-252097460 15.3456196 -> 15.3456196 Inexact Rounded
887
+ xcom108 compare 6898273.86E-252097460 15.3456196 -> -1
888
+ xdiv108 divide 6898273.86E-252097460 15.3456196 -> 4.49527229E-252097455 Inexact Rounded
889
+ xdvi108 divideint 6898273.86E-252097460 15.3456196 -> 0
890
+ xmul108 multiply 6898273.86E-252097460 15.3456196 -> 1.05858287E-252097452 Inexact Rounded
891
+ xpow108 power 6898273.86E-252097460 15 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
892
+ xrem108 remainder 6898273.86E-252097460 15.3456196 -> 6.89827386E-252097454
893
+ xsub108 subtract 6898273.86E-252097460 15.3456196 -> -15.3456196 Inexact Rounded
894
+ xadd109 add 88.4370343 -980709105E-869899289 -> 88.4370343 Inexact Rounded
895
+ xcom109 compare 88.4370343 -980709105E-869899289 -> 1
896
+ xdiv109 divide 88.4370343 -980709105E-869899289 -> -9.01766220E+869899281 Inexact Rounded
897
+ xdvi109 divideint 88.4370343 -980709105E-869899289 -> NaN Division_impossible
898
+ xmul109 multiply 88.4370343 -980709105E-869899289 -> -8.67310048E-869899279 Inexact Rounded
899
+ xpow109 power 88.4370343 -10 -> 3.41710479E-20 Inexact Rounded
900
+ xrem109 remainder 88.4370343 -980709105E-869899289 -> NaN Division_impossible
901
+ xsub109 subtract 88.4370343 -980709105E-869899289 -> 88.4370343 Inexact Rounded
902
+ xadd110 add -17643.39 2.0352568E+304871331 -> 2.03525680E+304871331 Inexact Rounded
903
+ xcom110 compare -17643.39 2.0352568E+304871331 -> -1
904
+ xdiv110 divide -17643.39 2.0352568E+304871331 -> -8.66887658E-304871328 Inexact Rounded
905
+ xdvi110 divideint -17643.39 2.0352568E+304871331 -> -0
906
+ xmul110 multiply -17643.39 2.0352568E+304871331 -> -3.59088295E+304871335 Inexact Rounded
907
+ xpow110 power -17643.39 2 -> 311289211 Inexact Rounded
908
+ xrem110 remainder -17643.39 2.0352568E+304871331 -> -17643.39
909
+ xsub110 subtract -17643.39 2.0352568E+304871331 -> -2.03525680E+304871331 Inexact Rounded
910
+ xadd111 add 4589785.16 7459.04237 -> 4597244.20 Inexact Rounded
911
+ xcom111 compare 4589785.16 7459.04237 -> 1
912
+ xdiv111 divide 4589785.16 7459.04237 -> 615.331692 Inexact Rounded
913
+ xdvi111 divideint 4589785.16 7459.04237 -> 615
914
+ xmul111 multiply 4589785.16 7459.04237 -> 3.42354020E+10 Inexact Rounded
915
+ xpow111 power 4589785.16 7459 -> 2.03795258E+49690 Inexact Rounded
916
+ xrem111 remainder 4589785.16 7459.04237 -> 2474.10245
917
+ xsub111 subtract 4589785.16 7459.04237 -> 4582326.12 Inexact Rounded
918
+ xadd112 add -51.1632090E-753968082 8.96207471E-585797887 -> 8.96207471E-585797887 Inexact Rounded
919
+ xcom112 compare -51.1632090E-753968082 8.96207471E-585797887 -> -1
920
+ xdiv112 divide -51.1632090E-753968082 8.96207471E-585797887 -> -5.70885768E-168170195 Inexact Rounded
921
+ xdvi112 divideint -51.1632090E-753968082 8.96207471E-585797887 -> -0
922
+ xmul112 multiply -51.1632090E-753968082 8.96207471E-585797887 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
923
+ xpow112 power -51.1632090E-753968082 9 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
924
+ xrem112 remainder -51.1632090E-753968082 8.96207471E-585797887 -> -5.11632090E-753968081
925
+ xsub112 subtract -51.1632090E-753968082 8.96207471E-585797887 -> -8.96207471E-585797887 Inexact Rounded
926
+ xadd113 add 982.217817 7224909.4E-45243816 -> 982.217817 Inexact Rounded
927
+ xcom113 compare 982.217817 7224909.4E-45243816 -> 1
928
+ xdiv113 divide 982.217817 7224909.4E-45243816 -> 1.35948807E+45243812 Inexact Rounded
929
+ xdvi113 divideint 982.217817 7224909.4E-45243816 -> NaN Division_impossible
930
+ xmul113 multiply 982.217817 7224909.4E-45243816 -> 7.09643474E-45243807 Inexact Rounded
931
+ xpow113 power 982.217817 7 -> 8.81971709E+20 Inexact Rounded
932
+ xrem113 remainder 982.217817 7224909.4E-45243816 -> NaN Division_impossible
933
+ xsub113 subtract 982.217817 7224909.4E-45243816 -> 982.217817 Inexact Rounded
934
+ xadd114 add 503712056. -57490703.5E+924890183 -> -5.74907035E+924890190 Inexact Rounded
935
+ xcom114 compare 503712056. -57490703.5E+924890183 -> 1
936
+ xdiv114 divide 503712056. -57490703.5E+924890183 -> -8.76162623E-924890183 Inexact Rounded
937
+ xdvi114 divideint 503712056. -57490703.5E+924890183 -> -0
938
+ xmul114 multiply 503712056. -57490703.5E+924890183 -> -2.89587605E+924890199 Inexact Rounded
939
+ xpow114 power 503712056. -6 -> 6.12217764E-53 Inexact Rounded
940
+ xrem114 remainder 503712056. -57490703.5E+924890183 -> 503712056
941
+ xsub114 subtract 503712056. -57490703.5E+924890183 -> 5.74907035E+924890190 Inexact Rounded
942
+ xadd115 add 883.849223 249259171 -> 249260055 Inexact Rounded
943
+ xcom115 compare 883.849223 249259171 -> -1
944
+ xdiv115 divide 883.849223 249259171 -> 0.00000354590453 Inexact Rounded
945
+ xdvi115 divideint 883.849223 249259171 -> 0
946
+ xmul115 multiply 883.849223 249259171 -> 2.20307525E+11 Inexact Rounded
947
+ xpow115 power 883.849223 249259171 -> 5.15642844E+734411783 Inexact Rounded
948
+ xrem115 remainder 883.849223 249259171 -> 883.849223
949
+ xsub115 subtract 883.849223 249259171 -> -249258287 Inexact Rounded
950
+ xadd116 add 245.092853E+872642874 828195.152E+419771532 -> 2.45092853E+872642876 Inexact Rounded
951
+ xcom116 compare 245.092853E+872642874 828195.152E+419771532 -> 1
952
+ xdiv116 divide 245.092853E+872642874 828195.152E+419771532 -> 2.95936112E+452871338 Inexact Rounded
953
+ xdvi116 divideint 245.092853E+872642874 828195.152E+419771532 -> NaN Division_impossible
954
+ xmul116 multiply 245.092853E+872642874 828195.152E+419771532 -> Infinity Inexact Overflow Rounded
955
+ xpow116 power 245.092853E+872642874 8 -> Infinity Overflow Inexact Rounded
956
+ xrem116 remainder 245.092853E+872642874 828195.152E+419771532 -> NaN Division_impossible
957
+ xsub116 subtract 245.092853E+872642874 828195.152E+419771532 -> 2.45092853E+872642876 Inexact Rounded
958
+ xadd117 add -83658638.6E+728551928 2952478.42 -> -8.36586386E+728551935 Inexact Rounded
959
+ xcom117 compare -83658638.6E+728551928 2952478.42 -> -1
960
+ xdiv117 divide -83658638.6E+728551928 2952478.42 -> -2.83350551E+728551929 Inexact Rounded
961
+ xdvi117 divideint -83658638.6E+728551928 2952478.42 -> NaN Division_impossible
962
+ xmul117 multiply -83658638.6E+728551928 2952478.42 -> -2.47000325E+728551942 Inexact Rounded
963
+ xpow117 power -83658638.6E+728551928 2952478 -> Infinity Overflow Inexact Rounded
964
+ xrem117 remainder -83658638.6E+728551928 2952478.42 -> NaN Division_impossible
965
+ xsub117 subtract -83658638.6E+728551928 2952478.42 -> -8.36586386E+728551935 Inexact Rounded
966
+ xadd118 add -6291780.97 269967.394E-22000817 -> -6291780.97 Inexact Rounded
967
+ xcom118 compare -6291780.97 269967.394E-22000817 -> -1
968
+ xdiv118 divide -6291780.97 269967.394E-22000817 -> -2.33057069E+22000818 Inexact Rounded
969
+ xdvi118 divideint -6291780.97 269967.394E-22000817 -> NaN Division_impossible
970
+ xmul118 multiply -6291780.97 269967.394E-22000817 -> -1.69857571E-22000805 Inexact Rounded
971
+ xpow118 power -6291780.97 3 -> -2.49069636E+20 Inexact Rounded
972
+ xrem118 remainder -6291780.97 269967.394E-22000817 -> NaN Division_impossible
973
+ xsub118 subtract -6291780.97 269967.394E-22000817 -> -6291780.97 Inexact Rounded
974
+ xadd119 add 978571348.E+222382547 6006.19370 -> 9.78571348E+222382555 Inexact Rounded
975
+ xcom119 compare 978571348.E+222382547 6006.19370 -> 1
976
+ xdiv119 divide 978571348.E+222382547 6006.19370 -> 1.62927038E+222382552 Inexact Rounded
977
+ xdvi119 divideint 978571348.E+222382547 6006.19370 -> NaN Division_impossible
978
+ xmul119 multiply 978571348.E+222382547 6006.19370 -> 5.87748907E+222382559 Inexact Rounded
979
+ xpow119 power 978571348.E+222382547 6006 -> Infinity Overflow Inexact Rounded
980
+ xrem119 remainder 978571348.E+222382547 6006.19370 -> NaN Division_impossible
981
+ xsub119 subtract 978571348.E+222382547 6006.19370 -> 9.78571348E+222382555 Inexact Rounded
982
+ xadd120 add 14239029. -36527.2221 -> 14202501.8 Inexact Rounded
983
+ xcom120 compare 14239029. -36527.2221 -> 1
984
+ xdiv120 divide 14239029. -36527.2221 -> -389.819652 Inexact Rounded
985
+ xdvi120 divideint 14239029. -36527.2221 -> -389
986
+ xmul120 multiply 14239029. -36527.2221 -> -5.20112175E+11 Inexact Rounded
987
+ xpow120 power 14239029. -36527 -> 6.64292731E-261296 Inexact Rounded
988
+ xrem120 remainder 14239029. -36527.2221 -> 29939.6031
989
+ xsub120 subtract 14239029. -36527.2221 -> 14275556.2 Inexact Rounded
990
+ xadd121 add 72333.2654E-544425548 -690.664836E+662155120 -> -6.90664836E+662155122 Inexact Rounded
991
+ xcom121 compare 72333.2654E-544425548 -690.664836E+662155120 -> 1
992
+ xdiv121 divide 72333.2654E-544425548 -690.664836E+662155120 -> -0E-1000000007 Inexact Rounded Underflow Subnormal Clamped
993
+ xdvi121 divideint 72333.2654E-544425548 -690.664836E+662155120 -> -0
994
+ xmul121 multiply 72333.2654E-544425548 -690.664836E+662155120 -> -4.99580429E+117729579 Inexact Rounded
995
+ xpow121 power 72333.2654E-544425548 -7 -> Infinity Overflow Inexact Rounded
996
+ xrem121 remainder 72333.2654E-544425548 -690.664836E+662155120 -> 7.23332654E-544425544
997
+ xsub121 subtract 72333.2654E-544425548 -690.664836E+662155120 -> 6.90664836E+662155122 Inexact Rounded
998
+ xadd122 add -37721.1567E-115787341 -828949864E-76251747 -> -8.28949864E-76251739 Inexact Rounded
999
+ xcom122 compare -37721.1567E-115787341 -828949864E-76251747 -> 1
1000
+ xdiv122 divide -37721.1567E-115787341 -828949864E-76251747 -> 4.55047505E-39535599 Inexact Rounded
1001
+ xdvi122 divideint -37721.1567E-115787341 -828949864E-76251747 -> 0
1002
+ xmul122 multiply -37721.1567E-115787341 -828949864E-76251747 -> 3.12689477E-192039075 Inexact Rounded
1003
+ xpow122 power -37721.1567E-115787341 -8 -> 2.43960765E+926298691 Inexact Rounded
1004
+ xrem122 remainder -37721.1567E-115787341 -828949864E-76251747 -> -3.77211567E-115787337
1005
+ xsub122 subtract -37721.1567E-115787341 -828949864E-76251747 -> 8.28949864E-76251739 Inexact Rounded
1006
+ xadd123 add -2078852.83E-647080089 -119779858.E+734665461 -> -1.19779858E+734665469 Inexact Rounded
1007
+ xcom123 compare -2078852.83E-647080089 -119779858.E+734665461 -> 1
1008
+ xdiv123 divide -2078852.83E-647080089 -119779858.E+734665461 -> 0E-1000000007 Inexact Rounded Underflow Subnormal Clamped
1009
+ xdvi123 divideint -2078852.83E-647080089 -119779858.E+734665461 -> 0
1010
+ xmul123 multiply -2078852.83E-647080089 -119779858.E+734665461 -> 2.49004697E+87585386 Inexact Rounded
1011
+ xpow123 power -2078852.83E-647080089 -1 -> -4.81034533E+647080082 Inexact Rounded
1012
+ xrem123 remainder -2078852.83E-647080089 -119779858.E+734665461 -> -2.07885283E-647080083
1013
+ xsub123 subtract -2078852.83E-647080089 -119779858.E+734665461 -> 1.19779858E+734665469 Inexact Rounded
1014
+ xadd124 add -79145.3625 -7718.57307 -> -86863.9356 Inexact Rounded
1015
+ xcom124 compare -79145.3625 -7718.57307 -> -1
1016
+ xdiv124 divide -79145.3625 -7718.57307 -> 10.2538852 Inexact Rounded
1017
+ xdvi124 divideint -79145.3625 -7718.57307 -> 10
1018
+ xmul124 multiply -79145.3625 -7718.57307 -> 610889264 Inexact Rounded
1019
+ xpow124 power -79145.3625 -7719 -> -1.13181941E-37811 Inexact Rounded
1020
+ xrem124 remainder -79145.3625 -7718.57307 -> -1959.63180
1021
+ xsub124 subtract -79145.3625 -7718.57307 -> -71426.7894 Inexact Rounded
1022
+ xadd125 add 2103890.49E+959247237 20024.3017 -> 2.10389049E+959247243 Inexact Rounded
1023
+ xcom125 compare 2103890.49E+959247237 20024.3017 -> 1
1024
+ xdiv125 divide 2103890.49E+959247237 20024.3017 -> 1.05066859E+959247239 Inexact Rounded
1025
+ xdvi125 divideint 2103890.49E+959247237 20024.3017 -> NaN Division_impossible
1026
+ xmul125 multiply 2103890.49E+959247237 20024.3017 -> 4.21289379E+959247247 Inexact Rounded
1027
+ xpow125 power 2103890.49E+959247237 20024 -> Infinity Overflow Inexact Rounded
1028
+ xrem125 remainder 2103890.49E+959247237 20024.3017 -> NaN Division_impossible
1029
+ xsub125 subtract 2103890.49E+959247237 20024.3017 -> 2.10389049E+959247243 Inexact Rounded
1030
+ xadd126 add 911249557 79810804.9 -> 991060362 Inexact Rounded
1031
+ xcom126 compare 911249557 79810804.9 -> 1
1032
+ xdiv126 divide 911249557 79810804.9 -> 11.4176214 Inexact Rounded
1033
+ xdvi126 divideint 911249557 79810804.9 -> 11
1034
+ xmul126 multiply 911249557 79810804.9 -> 7.27275606E+16 Inexact Rounded
1035
+ xpow126 power 911249557 79810805 -> 6.77595741E+715075867 Inexact Rounded
1036
+ xrem126 remainder 911249557 79810804.9 -> 33330703.1
1037
+ xsub126 subtract 911249557 79810804.9 -> 831438752 Inexact Rounded
1038
+ xadd127 add 341134.994 3.37486292 -> 341138.369 Inexact Rounded
1039
+ xcom127 compare 341134.994 3.37486292 -> 1
1040
+ xdiv127 divide 341134.994 3.37486292 -> 101081.141 Inexact Rounded
1041
+ xdvi127 divideint 341134.994 3.37486292 -> 101081
1042
+ xmul127 multiply 341134.994 3.37486292 -> 1151283.84 Inexact Rounded
1043
+ xpow127 power 341134.994 3 -> 3.96989314E+16 Inexact Rounded
1044
+ xrem127 remainder 341134.994 3.37486292 -> 0.47518348
1045
+ xsub127 subtract 341134.994 3.37486292 -> 341131.619 Inexact Rounded
1046
+ xadd128 add 244.23634 512706190E-341459836 -> 244.236340 Inexact Rounded
1047
+ xcom128 compare 244.23634 512706190E-341459836 -> 1
1048
+ xdiv128 divide 244.23634 512706190E-341459836 -> 4.76367059E+341459829 Inexact Rounded
1049
+ xdvi128 divideint 244.23634 512706190E-341459836 -> NaN Division_impossible
1050
+ xmul128 multiply 244.23634 512706190E-341459836 -> 1.25221483E-341459825 Inexact Rounded
1051
+ xpow128 power 244.23634 5 -> 8.69063312E+11 Inexact Rounded
1052
+ xrem128 remainder 244.23634 512706190E-341459836 -> NaN Division_impossible
1053
+ xsub128 subtract 244.23634 512706190E-341459836 -> 244.236340 Inexact Rounded
1054
+ xadd129 add -9.22783849E+171585954 -99.0946800 -> -9.22783849E+171585954 Inexact Rounded
1055
+ xcom129 compare -9.22783849E+171585954 -99.0946800 -> -1
1056
+ xdiv129 divide -9.22783849E+171585954 -99.0946800 -> 9.31214318E+171585952 Inexact Rounded
1057
+ xdvi129 divideint -9.22783849E+171585954 -99.0946800 -> NaN Division_impossible
1058
+ xmul129 multiply -9.22783849E+171585954 -99.0946800 -> 9.14429702E+171585956 Inexact Rounded
1059
+ xpow129 power -9.22783849E+171585954 -99 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1060
+ xrem129 remainder -9.22783849E+171585954 -99.0946800 -> NaN Division_impossible
1061
+ xsub129 subtract -9.22783849E+171585954 -99.0946800 -> -9.22783849E+171585954 Inexact Rounded
1062
+ xadd130 add 699631.893 -226.423958 -> 699405.469 Inexact Rounded
1063
+ xcom130 compare 699631.893 -226.423958 -> 1
1064
+ xdiv130 divide 699631.893 -226.423958 -> -3089.91990 Inexact Rounded
1065
+ xdvi130 divideint 699631.893 -226.423958 -> -3089
1066
+ xmul130 multiply 699631.893 -226.423958 -> -158413422 Inexact Rounded
1067
+ xpow130 power 699631.893 -226 -> 1.14675511E-1321 Inexact Rounded
1068
+ xrem130 remainder 699631.893 -226.423958 -> 208.286738
1069
+ xsub130 subtract 699631.893 -226.423958 -> 699858.317 Inexact Rounded
1070
+ xadd131 add -249350139.E-571793673 775732428. -> 775732428 Inexact Rounded
1071
+ xcom131 compare -249350139.E-571793673 775732428. -> -1
1072
+ xdiv131 divide -249350139.E-571793673 775732428. -> -3.21438334E-571793674 Inexact Rounded
1073
+ xdvi131 divideint -249350139.E-571793673 775732428. -> -0
1074
+ xmul131 multiply -249350139.E-571793673 775732428. -> -1.93428989E-571793656 Inexact Rounded
1075
+ xpow131 power -249350139.E-571793673 775732428 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1076
+ xrem131 remainder -249350139.E-571793673 775732428. -> -2.49350139E-571793665
1077
+ xsub131 subtract -249350139.E-571793673 775732428. -> -775732428 Inexact Rounded
1078
+ xadd132 add 5.11629020 -480.53194 -> -475.415650 Inexact Rounded
1079
+ xcom132 compare 5.11629020 -480.53194 -> 1
1080
+ xdiv132 divide 5.11629020 -480.53194 -> -0.0106471387 Inexact Rounded
1081
+ xdvi132 divideint 5.11629020 -480.53194 -> -0
1082
+ xmul132 multiply 5.11629020 -480.53194 -> -2458.54086 Inexact Rounded
1083
+ xpow132 power 5.11629020 -481 -> 9.83021951E-342 Inexact Rounded
1084
+ xrem132 remainder 5.11629020 -480.53194 -> 5.11629020
1085
+ xsub132 subtract 5.11629020 -480.53194 -> 485.648230 Inexact Rounded
1086
+ xadd133 add -8.23352673E-446723147 -530710.866 -> -530710.866 Inexact Rounded
1087
+ xcom133 compare -8.23352673E-446723147 -530710.866 -> 1
1088
+ xdiv133 divide -8.23352673E-446723147 -530710.866 -> 1.55141476E-446723152 Inexact Rounded
1089
+ xdvi133 divideint -8.23352673E-446723147 -530710.866 -> 0
1090
+ xmul133 multiply -8.23352673E-446723147 -530710.866 -> 4.36962210E-446723141 Inexact Rounded
1091
+ xpow133 power -8.23352673E-446723147 -530711 -> -Infinity Overflow Inexact Rounded
1092
+ xrem133 remainder -8.23352673E-446723147 -530710.866 -> -8.23352673E-446723147
1093
+ xsub133 subtract -8.23352673E-446723147 -530710.866 -> 530710.866 Inexact Rounded
1094
+ xadd134 add 7.0598608 -95908.35 -> -95901.2901 Inexact Rounded
1095
+ xcom134 compare 7.0598608 -95908.35 -> 1
1096
+ xdiv134 divide 7.0598608 -95908.35 -> -0.0000736104917 Inexact Rounded
1097
+ xdvi134 divideint 7.0598608 -95908.35 -> -0
1098
+ xmul134 multiply 7.0598608 -95908.35 -> -677099.601 Inexact Rounded
1099
+ xpow134 power 7.0598608 -95908 -> 4.57073877E-81407 Inexact Rounded
1100
+ xrem134 remainder 7.0598608 -95908.35 -> 7.0598608
1101
+ xsub134 subtract 7.0598608 -95908.35 -> 95915.4099 Inexact Rounded
1102
+ xadd135 add -7.91189845E+207202706 1532.71847E+509944335 -> 1.53271847E+509944338 Inexact Rounded
1103
+ xcom135 compare -7.91189845E+207202706 1532.71847E+509944335 -> -1
1104
+ xdiv135 divide -7.91189845E+207202706 1532.71847E+509944335 -> -5.16200372E-302741632 Inexact Rounded
1105
+ xdvi135 divideint -7.91189845E+207202706 1532.71847E+509944335 -> -0
1106
+ xmul135 multiply -7.91189845E+207202706 1532.71847E+509944335 -> -1.21267129E+717147045 Inexact Rounded
1107
+ xpow135 power -7.91189845E+207202706 2 -> 6.25981371E+414405413 Inexact Rounded
1108
+ xrem135 remainder -7.91189845E+207202706 1532.71847E+509944335 -> -7.91189845E+207202706
1109
+ xsub135 subtract -7.91189845E+207202706 1532.71847E+509944335 -> -1.53271847E+509944338 Inexact Rounded
1110
+ xadd136 add 208839370.E-215147432 -75.9420559 -> -75.9420559 Inexact Rounded
1111
+ xcom136 compare 208839370.E-215147432 -75.9420559 -> 1
1112
+ xdiv136 divide 208839370.E-215147432 -75.9420559 -> -2.74998310E-215147426 Inexact Rounded
1113
+ xdvi136 divideint 208839370.E-215147432 -75.9420559 -> -0
1114
+ xmul136 multiply 208839370.E-215147432 -75.9420559 -> -1.58596911E-215147422 Inexact Rounded
1115
+ xpow136 power 208839370.E-215147432 -76 -> Infinity Overflow Inexact Rounded
1116
+ xrem136 remainder 208839370.E-215147432 -75.9420559 -> 2.08839370E-215147424
1117
+ xsub136 subtract 208839370.E-215147432 -75.9420559 -> 75.9420559 Inexact Rounded
1118
+ xadd137 add 427.754244E-353328369 4705.0796 -> 4705.07960 Inexact Rounded
1119
+ xcom137 compare 427.754244E-353328369 4705.0796 -> -1
1120
+ xdiv137 divide 427.754244E-353328369 4705.0796 -> 9.09132853E-353328371 Inexact Rounded
1121
+ xdvi137 divideint 427.754244E-353328369 4705.0796 -> 0
1122
+ xmul137 multiply 427.754244E-353328369 4705.0796 -> 2.01261777E-353328363 Inexact Rounded
1123
+ xpow137 power 427.754244E-353328369 4705 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1124
+ xrem137 remainder 427.754244E-353328369 4705.0796 -> 4.27754244E-353328367
1125
+ xsub137 subtract 427.754244E-353328369 4705.0796 -> -4705.07960 Inexact Rounded
1126
+ xadd138 add 44911.089 -95.1733605E-313081848 -> 44911.0890 Inexact Rounded
1127
+ xcom138 compare 44911.089 -95.1733605E-313081848 -> 1
1128
+ xdiv138 divide 44911.089 -95.1733605E-313081848 -> -4.71887183E+313081850 Inexact Rounded
1129
+ xdvi138 divideint 44911.089 -95.1733605E-313081848 -> NaN Division_impossible
1130
+ xmul138 multiply 44911.089 -95.1733605E-313081848 -> -4.27433926E-313081842 Inexact Rounded
1131
+ xpow138 power 44911.089 -10 -> 2.99546425E-47 Inexact Rounded
1132
+ xrem138 remainder 44911.089 -95.1733605E-313081848 -> NaN Division_impossible
1133
+ xsub138 subtract 44911.089 -95.1733605E-313081848 -> 44911.0890 Inexact Rounded
1134
+ xadd139 add 452371821. -4109709.19 -> 448262112 Inexact Rounded
1135
+ xcom139 compare 452371821. -4109709.19 -> 1
1136
+ xdiv139 divide 452371821. -4109709.19 -> -110.073925 Inexact Rounded
1137
+ xdvi139 divideint 452371821. -4109709.19 -> -110
1138
+ xmul139 multiply 452371821. -4109709.19 -> -1.85911663E+15 Inexact Rounded
1139
+ xpow139 power 452371821. -4109709 -> 1.15528807E-35571568 Inexact Rounded
1140
+ xrem139 remainder 452371821. -4109709.19 -> 303810.10
1141
+ xsub139 subtract 452371821. -4109709.19 -> 456481530 Inexact Rounded
1142
+ xadd140 add 94007.4392 -9467725.5E+681898234 -> -9.46772550E+681898240 Inexact Rounded
1143
+ xcom140 compare 94007.4392 -9467725.5E+681898234 -> 1
1144
+ xdiv140 divide 94007.4392 -9467725.5E+681898234 -> -9.92925272E-681898237 Inexact Rounded
1145
+ xdvi140 divideint 94007.4392 -9467725.5E+681898234 -> -0
1146
+ xmul140 multiply 94007.4392 -9467725.5E+681898234 -> -8.90036629E+681898245 Inexact Rounded
1147
+ xpow140 power 94007.4392 -9 -> 1.74397397E-45 Inexact Rounded
1148
+ xrem140 remainder 94007.4392 -9467725.5E+681898234 -> 94007.4392
1149
+ xsub140 subtract 94007.4392 -9467725.5E+681898234 -> 9.46772550E+681898240 Inexact Rounded
1150
+ xadd141 add 99147554.0E-751410586 38313.6423 -> 38313.6423 Inexact Rounded
1151
+ xcom141 compare 99147554.0E-751410586 38313.6423 -> -1
1152
+ xdiv141 divide 99147554.0E-751410586 38313.6423 -> 2.58778722E-751410583 Inexact Rounded
1153
+ xdvi141 divideint 99147554.0E-751410586 38313.6423 -> 0
1154
+ xmul141 multiply 99147554.0E-751410586 38313.6423 -> 3.79870392E-751410574 Inexact Rounded
1155
+ xpow141 power 99147554.0E-751410586 38314 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1156
+ xrem141 remainder 99147554.0E-751410586 38313.6423 -> 9.91475540E-751410579
1157
+ xsub141 subtract 99147554.0E-751410586 38313.6423 -> -38313.6423 Inexact Rounded
1158
+ xadd142 add -7919.30254 -669.607854 -> -8588.91039 Inexact Rounded
1159
+ xcom142 compare -7919.30254 -669.607854 -> -1
1160
+ xdiv142 divide -7919.30254 -669.607854 -> 11.8267767 Inexact Rounded
1161
+ xdvi142 divideint -7919.30254 -669.607854 -> 11
1162
+ xmul142 multiply -7919.30254 -669.607854 -> 5302827.18 Inexact Rounded
1163
+ xpow142 power -7919.30254 -670 -> 7.58147724E-2613 Inexact Rounded
1164
+ xrem142 remainder -7919.30254 -669.607854 -> -553.616146
1165
+ xsub142 subtract -7919.30254 -669.607854 -> -7249.69469 Inexact Rounded
1166
+ xadd143 add 461.58280E+136110821 710666052.E-383754231 -> 4.61582800E+136110823 Inexact Rounded
1167
+ xcom143 compare 461.58280E+136110821 710666052.E-383754231 -> 1
1168
+ xdiv143 divide 461.58280E+136110821 710666052.E-383754231 -> 6.49507316E+519865045 Inexact Rounded
1169
+ xdvi143 divideint 461.58280E+136110821 710666052.E-383754231 -> NaN Division_impossible
1170
+ xmul143 multiply 461.58280E+136110821 710666052.E-383754231 -> 3.28031226E-247643399 Inexact Rounded
1171
+ xpow143 power 461.58280E+136110821 7 -> 4.46423781E+952775765 Inexact Rounded
1172
+ xrem143 remainder 461.58280E+136110821 710666052.E-383754231 -> NaN Division_impossible
1173
+ xsub143 subtract 461.58280E+136110821 710666052.E-383754231 -> 4.61582800E+136110823 Inexact Rounded
1174
+ xadd144 add 3455755.47E-112465506 771.674306 -> 771.674306 Inexact Rounded
1175
+ xcom144 compare 3455755.47E-112465506 771.674306 -> -1
1176
+ xdiv144 divide 3455755.47E-112465506 771.674306 -> 4.47825649E-112465503 Inexact Rounded
1177
+ xdvi144 divideint 3455755.47E-112465506 771.674306 -> 0
1178
+ xmul144 multiply 3455755.47E-112465506 771.674306 -> 2.66671770E-112465497 Inexact Rounded
1179
+ xpow144 power 3455755.47E-112465506 772 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1180
+ xrem144 remainder 3455755.47E-112465506 771.674306 -> 3.45575547E-112465500
1181
+ xsub144 subtract 3455755.47E-112465506 771.674306 -> -771.674306 Inexact Rounded
1182
+ xadd145 add -477067757.E-961684940 7.70122608E-741072245 -> 7.70122608E-741072245 Inexact Rounded
1183
+ xcom145 compare -477067757.E-961684940 7.70122608E-741072245 -> -1
1184
+ xdiv145 divide -477067757.E-961684940 7.70122608E-741072245 -> -6.19469877E-220612688 Inexact Rounded
1185
+ xdvi145 divideint -477067757.E-961684940 7.70122608E-741072245 -> -0
1186
+ xmul145 multiply -477067757.E-961684940 7.70122608E-741072245 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1187
+ xpow145 power -477067757.E-961684940 8 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1188
+ xrem145 remainder -477067757.E-961684940 7.70122608E-741072245 -> -4.77067757E-961684932
1189
+ xsub145 subtract -477067757.E-961684940 7.70122608E-741072245 -> -7.70122608E-741072245 Inexact Rounded
1190
+ xadd146 add 76482.352 8237806.8 -> 8314289.15 Inexact Rounded
1191
+ xcom146 compare 76482.352 8237806.8 -> -1
1192
+ xdiv146 divide 76482.352 8237806.8 -> 0.00928430999 Inexact Rounded
1193
+ xdvi146 divideint 76482.352 8237806.8 -> 0
1194
+ xmul146 multiply 76482.352 8237806.8 -> 6.30046839E+11 Inexact Rounded
1195
+ xpow146 power 76482.352 8237807 -> 8.44216559E+40229834 Inexact Rounded
1196
+ xrem146 remainder 76482.352 8237806.8 -> 76482.352
1197
+ xsub146 subtract 76482.352 8237806.8 -> -8161324.45 Inexact Rounded
1198
+ xadd147 add 1.21505164E-565556504 9.26146573 -> 9.26146573 Inexact Rounded
1199
+ xcom147 compare 1.21505164E-565556504 9.26146573 -> -1
1200
+ xdiv147 divide 1.21505164E-565556504 9.26146573 -> 1.31194314E-565556505 Inexact Rounded
1201
+ xdvi147 divideint 1.21505164E-565556504 9.26146573 -> 0
1202
+ xmul147 multiply 1.21505164E-565556504 9.26146573 -> 1.12531591E-565556503 Inexact Rounded
1203
+ xpow147 power 1.21505164E-565556504 9 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1204
+ xrem147 remainder 1.21505164E-565556504 9.26146573 -> 1.21505164E-565556504
1205
+ xsub147 subtract 1.21505164E-565556504 9.26146573 -> -9.26146573 Inexact Rounded
1206
+ xadd148 add -8303060.25E-169894883 901561.985 -> 901561.985 Inexact Rounded
1207
+ xcom148 compare -8303060.25E-169894883 901561.985 -> -1
1208
+ xdiv148 divide -8303060.25E-169894883 901561.985 -> -9.20963881E-169894883 Inexact Rounded
1209
+ xdvi148 divideint -8303060.25E-169894883 901561.985 -> -0
1210
+ xmul148 multiply -8303060.25E-169894883 901561.985 -> -7.48572348E-169894871 Inexact Rounded
1211
+ xpow148 power -8303060.25E-169894883 901562 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1212
+ xrem148 remainder -8303060.25E-169894883 901561.985 -> -8.30306025E-169894877
1213
+ xsub148 subtract -8303060.25E-169894883 901561.985 -> -901561.985 Inexact Rounded
1214
+ xadd149 add -592464.92 71445510.7 -> 70853045.8 Inexact Rounded
1215
+ xcom149 compare -592464.92 71445510.7 -> -1
1216
+ xdiv149 divide -592464.92 71445510.7 -> -0.00829254231 Inexact Rounded
1217
+ xdvi149 divideint -592464.92 71445510.7 -> -0
1218
+ xmul149 multiply -592464.92 71445510.7 -> -4.23289588E+13 Inexact Rounded
1219
+ xpow149 power -592464.92 71445511 -> -1.58269108E+412430832 Inexact Rounded
1220
+ xrem149 remainder -592464.92 71445510.7 -> -592464.92
1221
+ xsub149 subtract -592464.92 71445510.7 -> -72037975.6 Inexact Rounded
1222
+ xadd150 add -73774.4165 -39.8243027 -> -73814.2408 Inexact Rounded
1223
+ xcom150 compare -73774.4165 -39.8243027 -> -1
1224
+ xdiv150 divide -73774.4165 -39.8243027 -> 1852.49738 Inexact Rounded
1225
+ xdvi150 divideint -73774.4165 -39.8243027 -> 1852
1226
+ xmul150 multiply -73774.4165 -39.8243027 -> 2938014.69 Inexact Rounded
1227
+ xpow150 power -73774.4165 -40 -> 1.92206765E-195 Inexact Rounded
1228
+ xrem150 remainder -73774.4165 -39.8243027 -> -19.8078996
1229
+ xsub150 subtract -73774.4165 -39.8243027 -> -73734.5922 Inexact Rounded
1230
+ xadd151 add -524724715. -55763.7937 -> -524780479 Inexact Rounded
1231
+ xcom151 compare -524724715. -55763.7937 -> -1
1232
+ xdiv151 divide -524724715. -55763.7937 -> 9409.77434 Inexact Rounded
1233
+ xdvi151 divideint -524724715. -55763.7937 -> 9409
1234
+ xmul151 multiply -524724715. -55763.7937 -> 2.92606408E+13 Inexact Rounded
1235
+ xpow151 power -524724715. -55764 -> 5.47898351E-486259 Inexact Rounded
1236
+ xrem151 remainder -524724715. -55763.7937 -> -43180.0767
1237
+ xsub151 subtract -524724715. -55763.7937 -> -524668951 Inexact Rounded
1238
+ xadd152 add 7.53800427 784873768E-9981146 -> 7.53800427 Inexact Rounded
1239
+ xcom152 compare 7.53800427 784873768E-9981146 -> 1
1240
+ xdiv152 divide 7.53800427 784873768E-9981146 -> 9.60409760E+9981137 Inexact Rounded
1241
+ xdvi152 divideint 7.53800427 784873768E-9981146 -> NaN Division_impossible
1242
+ xmul152 multiply 7.53800427 784873768E-9981146 -> 5.91638181E-9981137 Inexact Rounded
1243
+ xpow152 power 7.53800427 8 -> 10424399.2 Inexact Rounded
1244
+ xrem152 remainder 7.53800427 784873768E-9981146 -> NaN Division_impossible
1245
+ xsub152 subtract 7.53800427 784873768E-9981146 -> 7.53800427 Inexact Rounded
1246
+ xadd153 add 37.6027452 7.22454233 -> 44.8272875 Inexact Rounded
1247
+ xcom153 compare 37.6027452 7.22454233 -> 1
1248
+ xdiv153 divide 37.6027452 7.22454233 -> 5.20486191 Inexact Rounded
1249
+ xdvi153 divideint 37.6027452 7.22454233 -> 5
1250
+ xmul153 multiply 37.6027452 7.22454233 -> 271.662624 Inexact Rounded
1251
+ xpow153 power 37.6027452 7 -> 1.06300881E+11 Inexact Rounded
1252
+ xrem153 remainder 37.6027452 7.22454233 -> 1.48003355
1253
+ xsub153 subtract 37.6027452 7.22454233 -> 30.3782029 Inexact Rounded
1254
+ xadd154 add 2447660.39 -36981.4253 -> 2410678.96 Inexact Rounded
1255
+ xcom154 compare 2447660.39 -36981.4253 -> 1
1256
+ xdiv154 divide 2447660.39 -36981.4253 -> -66.1862102 Inexact Rounded
1257
+ xdvi154 divideint 2447660.39 -36981.4253 -> -66
1258
+ xmul154 multiply 2447660.39 -36981.4253 -> -9.05179699E+10 Inexact Rounded
1259
+ xpow154 power 2447660.39 -36981 -> 3.92066064E-236263 Inexact Rounded
1260
+ xrem154 remainder 2447660.39 -36981.4253 -> 6886.3202
1261
+ xsub154 subtract 2447660.39 -36981.4253 -> 2484641.82 Inexact Rounded
1262
+ xadd155 add 2160.36419 1418.33574E+656265382 -> 1.41833574E+656265385 Inexact Rounded
1263
+ xcom155 compare 2160.36419 1418.33574E+656265382 -> -1
1264
+ xdiv155 divide 2160.36419 1418.33574E+656265382 -> 1.52316841E-656265382 Inexact Rounded
1265
+ xdvi155 divideint 2160.36419 1418.33574E+656265382 -> 0
1266
+ xmul155 multiply 2160.36419 1418.33574E+656265382 -> 3.06412174E+656265388 Inexact Rounded
1267
+ xpow155 power 2160.36419 1 -> 2160.36419
1268
+ xrem155 remainder 2160.36419 1418.33574E+656265382 -> 2160.36419
1269
+ xsub155 subtract 2160.36419 1418.33574E+656265382 -> -1.41833574E+656265385 Inexact Rounded
1270
+ xadd156 add 8926.44939 54.9430027 -> 8981.39239 Inexact Rounded
1271
+ xcom156 compare 8926.44939 54.9430027 -> 1
1272
+ xdiv156 divide 8926.44939 54.9430027 -> 162.467447 Inexact Rounded
1273
+ xdvi156 divideint 8926.44939 54.9430027 -> 162
1274
+ xmul156 multiply 8926.44939 54.9430027 -> 490445.933 Inexact Rounded
1275
+ xpow156 power 8926.44939 55 -> 1.93789877E+217 Inexact Rounded
1276
+ xrem156 remainder 8926.44939 54.9430027 -> 25.6829526
1277
+ xsub156 subtract 8926.44939 54.9430027 -> 8871.50639 Inexact Rounded
1278
+ xadd157 add 861588029 -41657398E+77955925 -> -4.16573980E+77955932 Inexact Rounded
1279
+ xcom157 compare 861588029 -41657398E+77955925 -> 1
1280
+ xdiv157 divide 861588029 -41657398E+77955925 -> -2.06827135E-77955924 Inexact Rounded
1281
+ xdvi157 divideint 861588029 -41657398E+77955925 -> -0
1282
+ xmul157 multiply 861588029 -41657398E+77955925 -> -3.58915154E+77955941 Inexact Rounded
1283
+ xpow157 power 861588029 -4 -> 1.81468553E-36 Inexact Rounded
1284
+ xrem157 remainder 861588029 -41657398E+77955925 -> 861588029
1285
+ xsub157 subtract 861588029 -41657398E+77955925 -> 4.16573980E+77955932 Inexact Rounded
1286
+ xadd158 add -34.5253062 52.6722019 -> 18.1468957
1287
+ xcom158 compare -34.5253062 52.6722019 -> -1
1288
+ xdiv158 divide -34.5253062 52.6722019 -> -0.655474899 Inexact Rounded
1289
+ xdvi158 divideint -34.5253062 52.6722019 -> -0
1290
+ xmul158 multiply -34.5253062 52.6722019 -> -1818.52390 Inexact Rounded
1291
+ xpow158 power -34.5253062 53 -> -3.32115821E+81 Inexact Rounded
1292
+ xrem158 remainder -34.5253062 52.6722019 -> -34.5253062
1293
+ xsub158 subtract -34.5253062 52.6722019 -> -87.1975081
1294
+ xadd159 add -18861647. 99794586.7 -> 80932939.7
1295
+ xcom159 compare -18861647. 99794586.7 -> -1
1296
+ xdiv159 divide -18861647. 99794586.7 -> -0.189004711 Inexact Rounded
1297
+ xdvi159 divideint -18861647. 99794586.7 -> -0
1298
+ xmul159 multiply -18861647. 99794586.7 -> -1.88229027E+15 Inexact Rounded
1299
+ xpow159 power -18861647. 99794587 -> -4.28957459E+726063462 Inexact Rounded
1300
+ xrem159 remainder -18861647. 99794586.7 -> -18861647.0
1301
+ xsub159 subtract -18861647. 99794586.7 -> -118656234 Inexact Rounded
1302
+ xadd160 add 322192.407 461.67044 -> 322654.077 Inexact Rounded
1303
+ xcom160 compare 322192.407 461.67044 -> 1
1304
+ xdiv160 divide 322192.407 461.67044 -> 697.883986 Inexact Rounded
1305
+ xdvi160 divideint 322192.407 461.67044 -> 697
1306
+ xmul160 multiply 322192.407 461.67044 -> 148746710 Inexact Rounded
1307
+ xpow160 power 322192.407 462 -> 5.61395873E+2544 Inexact Rounded
1308
+ xrem160 remainder 322192.407 461.67044 -> 408.11032
1309
+ xsub160 subtract 322192.407 461.67044 -> 321730.737 Inexact Rounded
1310
+ xadd161 add -896298518E+61412314 78873.8049 -> -8.96298518E+61412322 Inexact Rounded
1311
+ xcom161 compare -896298518E+61412314 78873.8049 -> -1
1312
+ xdiv161 divide -896298518E+61412314 78873.8049 -> -1.13637033E+61412318 Inexact Rounded
1313
+ xdvi161 divideint -896298518E+61412314 78873.8049 -> NaN Division_impossible
1314
+ xmul161 multiply -896298518E+61412314 78873.8049 -> -7.06944744E+61412327 Inexact Rounded
1315
+ xpow161 power -896298518E+61412314 78874 -> Infinity Overflow Inexact Rounded
1316
+ xrem161 remainder -896298518E+61412314 78873.8049 -> NaN Division_impossible
1317
+ xsub161 subtract -896298518E+61412314 78873.8049 -> -8.96298518E+61412322 Inexact Rounded
1318
+ xadd162 add 293.773732 479899052E+789950177 -> 4.79899052E+789950185 Inexact Rounded
1319
+ xcom162 compare 293.773732 479899052E+789950177 -> -1
1320
+ xdiv162 divide 293.773732 479899052E+789950177 -> 6.12157350E-789950184 Inexact Rounded
1321
+ xdvi162 divideint 293.773732 479899052E+789950177 -> 0
1322
+ xmul162 multiply 293.773732 479899052E+789950177 -> 1.40981735E+789950188 Inexact Rounded
1323
+ xpow162 power 293.773732 5 -> 2.18808809E+12 Inexact Rounded
1324
+ xrem162 remainder 293.773732 479899052E+789950177 -> 293.773732
1325
+ xsub162 subtract 293.773732 479899052E+789950177 -> -4.79899052E+789950185 Inexact Rounded
1326
+ xadd163 add -103519362 51897955.3 -> -51621406.7
1327
+ xcom163 compare -103519362 51897955.3 -> -1
1328
+ xdiv163 divide -103519362 51897955.3 -> -1.99467130 Inexact Rounded
1329
+ xdvi163 divideint -103519362 51897955.3 -> -1
1330
+ xmul163 multiply -103519362 51897955.3 -> -5.37244322E+15 Inexact Rounded
1331
+ xpow163 power -103519362 51897955 -> -4.28858229E+415963229 Inexact Rounded
1332
+ xrem163 remainder -103519362 51897955.3 -> -51621406.7
1333
+ xsub163 subtract -103519362 51897955.3 -> -155417317 Inexact Rounded
1334
+ xadd164 add 37380.7802 -277719788. -> -277682407 Inexact Rounded
1335
+ xcom164 compare 37380.7802 -277719788. -> 1
1336
+ xdiv164 divide 37380.7802 -277719788. -> -0.000134598908 Inexact Rounded
1337
+ xdvi164 divideint 37380.7802 -277719788. -> -0
1338
+ xmul164 multiply 37380.7802 -277719788. -> -1.03813824E+13 Inexact Rounded
1339
+ xpow164 power 37380.7802 -277719788 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1340
+ xrem164 remainder 37380.7802 -277719788. -> 37380.7802
1341
+ xsub164 subtract 37380.7802 -277719788. -> 277757169 Inexact Rounded
1342
+ xadd165 add 320133844. -977517477 -> -657383633
1343
+ xcom165 compare 320133844. -977517477 -> 1
1344
+ xdiv165 divide 320133844. -977517477 -> -0.327496798 Inexact Rounded
1345
+ xdvi165 divideint 320133844. -977517477 -> -0
1346
+ xmul165 multiply 320133844. -977517477 -> -3.12936427E+17 Inexact Rounded
1347
+ xpow165 power 320133844. -977517477 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1348
+ xrem165 remainder 320133844. -977517477 -> 320133844
1349
+ xsub165 subtract 320133844. -977517477 -> 1.29765132E+9 Inexact Rounded
1350
+ xadd166 add 721776701E+933646161 -5689279.64E+669903645 -> 7.21776701E+933646169 Inexact Rounded
1351
+ xcom166 compare 721776701E+933646161 -5689279.64E+669903645 -> 1
1352
+ xdiv166 divide 721776701E+933646161 -5689279.64E+669903645 -> -1.26866097E+263742518 Inexact Rounded
1353
+ xdvi166 divideint 721776701E+933646161 -5689279.64E+669903645 -> NaN Division_impossible
1354
+ xmul166 multiply 721776701E+933646161 -5689279.64E+669903645 -> -Infinity Inexact Overflow Rounded
1355
+ xpow166 power 721776701E+933646161 -6 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1356
+ xrem166 remainder 721776701E+933646161 -5689279.64E+669903645 -> NaN Division_impossible
1357
+ xsub166 subtract 721776701E+933646161 -5689279.64E+669903645 -> 7.21776701E+933646169 Inexact Rounded
1358
+ xadd167 add -5409.00482 -2.16149386 -> -5411.16631 Inexact Rounded
1359
+ xcom167 compare -5409.00482 -2.16149386 -> -1
1360
+ xdiv167 divide -5409.00482 -2.16149386 -> 2502.43821 Inexact Rounded
1361
+ xdvi167 divideint -5409.00482 -2.16149386 -> 2502
1362
+ xmul167 multiply -5409.00482 -2.16149386 -> 11691.5307 Inexact Rounded
1363
+ xpow167 power -5409.00482 -2 -> 3.41794652E-8 Inexact Rounded
1364
+ xrem167 remainder -5409.00482 -2.16149386 -> -0.94718228
1365
+ xsub167 subtract -5409.00482 -2.16149386 -> -5406.84333 Inexact Rounded
1366
+ xadd168 add -957960.367 322.858170 -> -957637.509 Inexact Rounded
1367
+ xcom168 compare -957960.367 322.858170 -> -1
1368
+ xdiv168 divide -957960.367 322.858170 -> -2967.12444 Inexact Rounded
1369
+ xdvi168 divideint -957960.367 322.858170 -> -2967
1370
+ xmul168 multiply -957960.367 322.858170 -> -309285331 Inexact Rounded
1371
+ xpow168 power -957960.367 323 -> -9.44617460E+1931 Inexact Rounded
1372
+ xrem168 remainder -957960.367 322.858170 -> -40.176610
1373
+ xsub168 subtract -957960.367 322.858170 -> -958283.225 Inexact Rounded
1374
+ xadd169 add -11817.8754E+613893442 -3.84735082E+888333249 -> -3.84735082E+888333249 Inexact Rounded
1375
+ xcom169 compare -11817.8754E+613893442 -3.84735082E+888333249 -> 1
1376
+ xdiv169 divide -11817.8754E+613893442 -3.84735082E+888333249 -> 3.07169165E-274439804 Inexact Rounded
1377
+ xdvi169 divideint -11817.8754E+613893442 -3.84735082E+888333249 -> 0
1378
+ xmul169 multiply -11817.8754E+613893442 -3.84735082E+888333249 -> Infinity Inexact Overflow Rounded
1379
+ xpow169 power -11817.8754E+613893442 -4 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1380
+ xrem169 remainder -11817.8754E+613893442 -3.84735082E+888333249 -> -1.18178754E+613893446
1381
+ xsub169 subtract -11817.8754E+613893442 -3.84735082E+888333249 -> 3.84735082E+888333249 Inexact Rounded
1382
+ xadd170 add 840258203 58363.980E-906584723 -> 840258203 Inexact Rounded
1383
+ xcom170 compare 840258203 58363.980E-906584723 -> 1
1384
+ xdiv170 divide 840258203 58363.980E-906584723 -> 1.43968626E+906584727 Inexact Rounded
1385
+ xdvi170 divideint 840258203 58363.980E-906584723 -> NaN Division_impossible
1386
+ xmul170 multiply 840258203 58363.980E-906584723 -> 4.90408130E-906584710 Inexact Rounded
1387
+ xpow170 power 840258203 6 -> 3.51946431E+53 Inexact Rounded
1388
+ xrem170 remainder 840258203 58363.980E-906584723 -> NaN Division_impossible
1389
+ xsub170 subtract 840258203 58363.980E-906584723 -> 840258203 Inexact Rounded
1390
+ xadd171 add -205842096. -191342.721 -> -206033439 Inexact Rounded
1391
+ xcom171 compare -205842096. -191342.721 -> -1
1392
+ xdiv171 divide -205842096. -191342.721 -> 1075.77699 Inexact Rounded
1393
+ xdvi171 divideint -205842096. -191342.721 -> 1075
1394
+ xmul171 multiply -205842096. -191342.721 -> 3.93863867E+13 Inexact Rounded
1395
+ xpow171 power -205842096. -191343 -> -2.66955553E-1590737 Inexact Rounded
1396
+ xrem171 remainder -205842096. -191342.721 -> -148670.925
1397
+ xsub171 subtract -205842096. -191342.721 -> -205650753 Inexact Rounded
1398
+ xadd172 add 42501124. 884.938498E+123341480 -> 8.84938498E+123341482 Inexact Rounded
1399
+ xcom172 compare 42501124. 884.938498E+123341480 -> -1
1400
+ xdiv172 divide 42501124. 884.938498E+123341480 -> 4.80272065E-123341476 Inexact Rounded
1401
+ xdvi172 divideint 42501124. 884.938498E+123341480 -> 0
1402
+ xmul172 multiply 42501124. 884.938498E+123341480 -> 3.76108808E+123341490 Inexact Rounded
1403
+ xpow172 power 42501124. 9 -> 4.52484536E+68 Inexact Rounded
1404
+ xrem172 remainder 42501124. 884.938498E+123341480 -> 42501124
1405
+ xsub172 subtract 42501124. 884.938498E+123341480 -> -8.84938498E+123341482 Inexact Rounded
1406
+ xadd173 add -57809452. -620380746 -> -678190198
1407
+ xcom173 compare -57809452. -620380746 -> 1
1408
+ xdiv173 divide -57809452. -620380746 -> 0.0931838268 Inexact Rounded
1409
+ xdvi173 divideint -57809452. -620380746 -> 0
1410
+ xmul173 multiply -57809452. -620380746 -> 3.58638710E+16 Inexact Rounded
1411
+ xpow173 power -57809452. -620380746 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1412
+ xrem173 remainder -57809452. -620380746 -> -57809452
1413
+ xsub173 subtract -57809452. -620380746 -> 562571294
1414
+ xadd174 add -8022370.31 9858581.6 -> 1836211.29
1415
+ xcom174 compare -8022370.31 9858581.6 -> -1
1416
+ xdiv174 divide -8022370.31 9858581.6 -> -0.813744881 Inexact Rounded
1417
+ xdvi174 divideint -8022370.31 9858581.6 -> -0
1418
+ xmul174 multiply -8022370.31 9858581.6 -> -7.90891923E+13 Inexact Rounded
1419
+ xpow174 power -8022370.31 9858582 -> 2.34458249E+68066634 Inexact Rounded
1420
+ xrem174 remainder -8022370.31 9858581.6 -> -8022370.31
1421
+ xsub174 subtract -8022370.31 9858581.6 -> -17880951.9 Inexact Rounded
1422
+ xadd175 add 2.49065060E+592139141 -5432.72014E-419965357 -> 2.49065060E+592139141 Inexact Rounded
1423
+ xcom175 compare 2.49065060E+592139141 -5432.72014E-419965357 -> 1
1424
+ xdiv175 divide 2.49065060E+592139141 -5432.72014E-419965357 -> -Infinity Inexact Overflow Rounded
1425
+ xdvi175 divideint 2.49065060E+592139141 -5432.72014E-419965357 -> NaN Division_impossible
1426
+ xmul175 multiply 2.49065060E+592139141 -5432.72014E-419965357 -> -1.35310077E+172173788 Inexact Rounded
1427
+ xpow175 power 2.49065060E+592139141 -5 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1428
+ xrem175 remainder 2.49065060E+592139141 -5432.72014E-419965357 -> NaN Division_impossible
1429
+ xsub175 subtract 2.49065060E+592139141 -5432.72014E-419965357 -> 2.49065060E+592139141 Inexact Rounded
1430
+ xadd176 add -697273715E-242824870 -3.81757506 -> -3.81757506 Inexact Rounded
1431
+ xcom176 compare -697273715E-242824870 -3.81757506 -> 1
1432
+ xdiv176 divide -697273715E-242824870 -3.81757506 -> 1.82648331E-242824862 Inexact Rounded
1433
+ xdvi176 divideint -697273715E-242824870 -3.81757506 -> 0
1434
+ xmul176 multiply -697273715E-242824870 -3.81757506 -> 2.66189474E-242824861 Inexact Rounded
1435
+ xpow176 power -697273715E-242824870 -4 -> 4.23045251E+971299444 Inexact Rounded
1436
+ xrem176 remainder -697273715E-242824870 -3.81757506 -> -6.97273715E-242824862
1437
+ xsub176 subtract -697273715E-242824870 -3.81757506 -> 3.81757506 Inexact Rounded
1438
+ xadd177 add -7.42204403E-315716280 -8156111.67E+283261636 -> -8.15611167E+283261642 Inexact Rounded
1439
+ xcom177 compare -7.42204403E-315716280 -8156111.67E+283261636 -> 1
1440
+ xdiv177 divide -7.42204403E-315716280 -8156111.67E+283261636 -> 9.09997843E-598977923 Inexact Rounded
1441
+ xdvi177 divideint -7.42204403E-315716280 -8156111.67E+283261636 -> 0
1442
+ xmul177 multiply -7.42204403E-315716280 -8156111.67E+283261636 -> 6.05350199E-32454637 Inexact Rounded
1443
+ xpow177 power -7.42204403E-315716280 -8 -> Infinity Overflow Inexact Rounded
1444
+ xrem177 remainder -7.42204403E-315716280 -8156111.67E+283261636 -> -7.42204403E-315716280
1445
+ xsub177 subtract -7.42204403E-315716280 -8156111.67E+283261636 -> 8.15611167E+283261642 Inexact Rounded
1446
+ xadd178 add 738063892 89900467.8 -> 827964360 Inexact Rounded
1447
+ xcom178 compare 738063892 89900467.8 -> 1
1448
+ xdiv178 divide 738063892 89900467.8 -> 8.20978923 Inexact Rounded
1449
+ xdvi178 divideint 738063892 89900467.8 -> 8
1450
+ xmul178 multiply 738063892 89900467.8 -> 6.63522892E+16 Inexact Rounded
1451
+ xpow178 power 738063892 89900468 -> 1.53166723E+797245797 Inexact Rounded
1452
+ xrem178 remainder 738063892 89900467.8 -> 18860149.6
1453
+ xsub178 subtract 738063892 89900467.8 -> 648163424 Inexact Rounded
1454
+ xadd179 add -630309366 -884783.338E-21595410 -> -630309366 Inexact Rounded
1455
+ xcom179 compare -630309366 -884783.338E-21595410 -> -1
1456
+ xdiv179 divide -630309366 -884783.338E-21595410 -> 7.12388377E+21595412 Inexact Rounded
1457
+ xdvi179 divideint -630309366 -884783.338E-21595410 -> NaN Division_impossible
1458
+ xmul179 multiply -630309366 -884783.338E-21595410 -> 5.57687225E-21595396 Inexact Rounded
1459
+ xpow179 power -630309366 -9 -> -6.36819210E-80 Inexact Rounded
1460
+ xrem179 remainder -630309366 -884783.338E-21595410 -> NaN Division_impossible
1461
+ xsub179 subtract -630309366 -884783.338E-21595410 -> -630309366 Inexact Rounded
1462
+ xadd180 add 613.207774 -3007.78608 -> -2394.57831 Inexact Rounded
1463
+ xcom180 compare 613.207774 -3007.78608 -> 1
1464
+ xdiv180 divide 613.207774 -3007.78608 -> -0.203873466 Inexact Rounded
1465
+ xdvi180 divideint 613.207774 -3007.78608 -> -0
1466
+ xmul180 multiply 613.207774 -3007.78608 -> -1844397.81 Inexact Rounded
1467
+ xpow180 power 613.207774 -3008 -> 7.51939160E-8386 Inexact Rounded
1468
+ xrem180 remainder 613.207774 -3007.78608 -> 613.207774
1469
+ xsub180 subtract 613.207774 -3007.78608 -> 3620.99385 Inexact Rounded
1470
+ xadd181 add -93006222.3 -3.08964619 -> -93006225.4 Inexact Rounded
1471
+ xcom181 compare -93006222.3 -3.08964619 -> -1
1472
+ xdiv181 divide -93006222.3 -3.08964619 -> 30102547.9 Inexact Rounded
1473
+ xdvi181 divideint -93006222.3 -3.08964619 -> 30102547
1474
+ xmul181 multiply -93006222.3 -3.08964619 -> 287356320 Inexact Rounded
1475
+ xpow181 power -93006222.3 -3 -> -1.24297956E-24 Inexact Rounded
1476
+ xrem181 remainder -93006222.3 -3.08964619 -> -2.65215407
1477
+ xsub181 subtract -93006222.3 -3.08964619 -> -93006219.2 Inexact Rounded
1478
+ xadd182 add -18116.0621 34096.306E-270347092 -> -18116.0621 Inexact Rounded
1479
+ xcom182 compare -18116.0621 34096.306E-270347092 -> -1
1480
+ xdiv182 divide -18116.0621 34096.306E-270347092 -> -5.31320375E+270347091 Inexact Rounded
1481
+ xdvi182 divideint -18116.0621 34096.306E-270347092 -> NaN Division_impossible
1482
+ xmul182 multiply -18116.0621 34096.306E-270347092 -> -6.17690797E-270347084 Inexact Rounded
1483
+ xpow182 power -18116.0621 3 -> -5.94554133E+12 Inexact Rounded
1484
+ xrem182 remainder -18116.0621 34096.306E-270347092 -> NaN Division_impossible
1485
+ xsub182 subtract -18116.0621 34096.306E-270347092 -> -18116.0621 Inexact Rounded
1486
+ xadd183 add 19272386.9 -410442379. -> -391169992 Inexact Rounded
1487
+ xcom183 compare 19272386.9 -410442379. -> 1
1488
+ xdiv183 divide 19272386.9 -410442379. -> -0.0469551584 Inexact Rounded
1489
+ xdvi183 divideint 19272386.9 -410442379. -> -0
1490
+ xmul183 multiply 19272386.9 -410442379. -> -7.91020433E+15 Inexact Rounded
1491
+ xpow183 power 19272386.9 -410442379 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1492
+ xrem183 remainder 19272386.9 -410442379. -> 19272386.9
1493
+ xsub183 subtract 19272386.9 -410442379. -> 429714766 Inexact Rounded
1494
+ xadd184 add 4180.30821 -1.6439543E-624759104 -> 4180.30821 Inexact Rounded
1495
+ xcom184 compare 4180.30821 -1.6439543E-624759104 -> 1
1496
+ xdiv184 divide 4180.30821 -1.6439543E-624759104 -> -2.54283724E+624759107 Inexact Rounded
1497
+ xdvi184 divideint 4180.30821 -1.6439543E-624759104 -> NaN Division_impossible
1498
+ xmul184 multiply 4180.30821 -1.6439543E-624759104 -> -6.87223566E-624759101 Inexact Rounded
1499
+ xpow184 power 4180.30821 -2 -> 5.72246828E-8 Inexact Rounded
1500
+ xrem184 remainder 4180.30821 -1.6439543E-624759104 -> NaN Division_impossible
1501
+ xsub184 subtract 4180.30821 -1.6439543E-624759104 -> 4180.30821 Inexact Rounded
1502
+ xadd185 add 571.536725 389.899220 -> 961.435945
1503
+ xcom185 compare 571.536725 389.899220 -> 1
1504
+ xdiv185 divide 571.536725 389.899220 -> 1.46585757 Inexact Rounded
1505
+ xdvi185 divideint 571.536725 389.899220 -> 1
1506
+ xmul185 multiply 571.536725 389.899220 -> 222841.723 Inexact Rounded
1507
+ xpow185 power 571.536725 390 -> 1.76691373E+1075 Inexact Rounded
1508
+ xrem185 remainder 571.536725 389.899220 -> 181.637505
1509
+ xsub185 subtract 571.536725 389.899220 -> 181.637505
1510
+ xadd186 add -622007306.E+159924886 -126.971745 -> -6.22007306E+159924894 Inexact Rounded
1511
+ xcom186 compare -622007306.E+159924886 -126.971745 -> -1
1512
+ xdiv186 divide -622007306.E+159924886 -126.971745 -> 4.89878521E+159924892 Inexact Rounded
1513
+ xdvi186 divideint -622007306.E+159924886 -126.971745 -> NaN Division_impossible
1514
+ xmul186 multiply -622007306.E+159924886 -126.971745 -> 7.89773530E+159924896 Inexact Rounded
1515
+ xpow186 power -622007306.E+159924886 -127 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1516
+ xrem186 remainder -622007306.E+159924886 -126.971745 -> NaN Division_impossible
1517
+ xsub186 subtract -622007306.E+159924886 -126.971745 -> -6.22007306E+159924894 Inexact Rounded
1518
+ xadd187 add -29.356551E-282816139 37141748E-903397821 -> -2.93565510E-282816138 Inexact Rounded
1519
+ xcom187 compare -29.356551E-282816139 37141748E-903397821 -> -1
1520
+ xdiv187 divide -29.356551E-282816139 37141748E-903397821 -> -7.90392283E+620581675 Inexact Rounded
1521
+ xdvi187 divideint -29.356551E-282816139 37141748E-903397821 -> NaN Division_impossible
1522
+ xmul187 multiply -29.356551E-282816139 37141748E-903397821 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1523
+ xpow187 power -29.356551E-282816139 4 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1524
+ xrem187 remainder -29.356551E-282816139 37141748E-903397821 -> NaN Division_impossible
1525
+ xsub187 subtract -29.356551E-282816139 37141748E-903397821 -> -2.93565510E-282816138 Inexact Rounded
1526
+ xadd188 add 92427442.4 674334898. -> 766762340 Inexact Rounded
1527
+ xcom188 compare 92427442.4 674334898. -> -1
1528
+ xdiv188 divide 92427442.4 674334898. -> 0.137064599 Inexact Rounded
1529
+ xdvi188 divideint 92427442.4 674334898. -> 0
1530
+ xmul188 multiply 92427442.4 674334898. -> 6.23270499E+16 Inexact Rounded
1531
+ xpow188 power 92427442.4 674334898 -> Infinity Overflow Inexact Rounded
1532
+ xrem188 remainder 92427442.4 674334898. -> 92427442.4
1533
+ xsub188 subtract 92427442.4 674334898. -> -581907456 Inexact Rounded
1534
+ xadd189 add 44651895.7 -910508.438 -> 43741387.3 Inexact Rounded
1535
+ xcom189 compare 44651895.7 -910508.438 -> 1
1536
+ xdiv189 divide 44651895.7 -910508.438 -> -49.0406171 Inexact Rounded
1537
+ xdvi189 divideint 44651895.7 -910508.438 -> -49
1538
+ xmul189 multiply 44651895.7 -910508.438 -> -4.06559278E+13 Inexact Rounded
1539
+ xpow189 power 44651895.7 -910508 -> 3.72264277E-6965241 Inexact Rounded
1540
+ xrem189 remainder 44651895.7 -910508.438 -> 36982.238
1541
+ xsub189 subtract 44651895.7 -910508.438 -> 45562404.1 Inexact Rounded
1542
+ xadd190 add 647897872.E+374021790 -467.423029 -> 6.47897872E+374021798 Inexact Rounded
1543
+ xcom190 compare 647897872.E+374021790 -467.423029 -> 1
1544
+ xdiv190 divide 647897872.E+374021790 -467.423029 -> -1.38610601E+374021796 Inexact Rounded
1545
+ xdvi190 divideint 647897872.E+374021790 -467.423029 -> NaN Division_impossible
1546
+ xmul190 multiply 647897872.E+374021790 -467.423029 -> -3.02842386E+374021801 Inexact Rounded
1547
+ xpow190 power 647897872.E+374021790 -467 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1548
+ xrem190 remainder 647897872.E+374021790 -467.423029 -> NaN Division_impossible
1549
+ xsub190 subtract 647897872.E+374021790 -467.423029 -> 6.47897872E+374021798 Inexact Rounded
1550
+ xadd191 add 25.2592149 59.0436981 -> 84.3029130
1551
+ xcom191 compare 25.2592149 59.0436981 -> -1
1552
+ xdiv191 divide 25.2592149 59.0436981 -> 0.427805434 Inexact Rounded
1553
+ xdvi191 divideint 25.2592149 59.0436981 -> 0
1554
+ xmul191 multiply 25.2592149 59.0436981 -> 1491.39746 Inexact Rounded
1555
+ xpow191 power 25.2592149 59 -> 5.53058435E+82 Inexact Rounded
1556
+ xrem191 remainder 25.2592149 59.0436981 -> 25.2592149
1557
+ xsub191 subtract 25.2592149 59.0436981 -> -33.7844832
1558
+ xadd192 add -6.850835 -1273.48240 -> -1280.33324 Inexact Rounded
1559
+ xcom192 compare -6.850835 -1273.48240 -> 1
1560
+ xdiv192 divide -6.850835 -1273.48240 -> 0.00537960713 Inexact Rounded
1561
+ xdvi192 divideint -6.850835 -1273.48240 -> 0
1562
+ xmul192 multiply -6.850835 -1273.48240 -> 8724.41780 Inexact Rounded
1563
+ xpow192 power -6.850835 -1273 -> -1.25462678E-1064 Inexact Rounded
1564
+ xrem192 remainder -6.850835 -1273.48240 -> -6.850835
1565
+ xsub192 subtract -6.850835 -1273.48240 -> 1266.63157 Inexact Rounded
1566
+ xadd193 add 174.272325 5638.16229 -> 5812.43462 Inexact Rounded
1567
+ xcom193 compare 174.272325 5638.16229 -> -1
1568
+ xdiv193 divide 174.272325 5638.16229 -> 0.0309094198 Inexact Rounded
1569
+ xdvi193 divideint 174.272325 5638.16229 -> 0
1570
+ xmul193 multiply 174.272325 5638.16229 -> 982575.651 Inexact Rounded
1571
+ xpow193 power 174.272325 5638 -> 1.11137724E+12636 Inexact Rounded
1572
+ xrem193 remainder 174.272325 5638.16229 -> 174.272325
1573
+ xsub193 subtract 174.272325 5638.16229 -> -5463.88997 Inexact Rounded
1574
+ xadd194 add 3455629.76 -8.27332322 -> 3455621.49 Inexact Rounded
1575
+ xcom194 compare 3455629.76 -8.27332322 -> 1
1576
+ xdiv194 divide 3455629.76 -8.27332322 -> -417683.399 Inexact Rounded
1577
+ xdvi194 divideint 3455629.76 -8.27332322 -> -417683
1578
+ xmul194 multiply 3455629.76 -8.27332322 -> -28589541.9 Inexact Rounded
1579
+ xpow194 power 3455629.76 -8 -> 4.91793015E-53 Inexact Rounded
1580
+ xrem194 remainder 3455629.76 -8.27332322 -> 3.29750074
1581
+ xsub194 subtract 3455629.76 -8.27332322 -> 3455638.03 Inexact Rounded
1582
+ xadd195 add -924337723E-640771235 86639377.1 -> 86639377.1 Inexact Rounded
1583
+ xcom195 compare -924337723E-640771235 86639377.1 -> -1
1584
+ xdiv195 divide -924337723E-640771235 86639377.1 -> -1.06687947E-640771234 Inexact Rounded
1585
+ xdvi195 divideint -924337723E-640771235 86639377.1 -> -0
1586
+ xmul195 multiply -924337723E-640771235 86639377.1 -> -8.00840446E-640771219 Inexact Rounded
1587
+ xpow195 power -924337723E-640771235 86639377 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1588
+ xrem195 remainder -924337723E-640771235 86639377.1 -> -9.24337723E-640771227
1589
+ xsub195 subtract -924337723E-640771235 86639377.1 -> -86639377.1 Inexact Rounded
1590
+ xadd196 add -620236932.E+656823969 3364722.73 -> -6.20236932E+656823977 Inexact Rounded
1591
+ xcom196 compare -620236932.E+656823969 3364722.73 -> -1
1592
+ xdiv196 divide -620236932.E+656823969 3364722.73 -> -1.84335228E+656823971 Inexact Rounded
1593
+ xdvi196 divideint -620236932.E+656823969 3364722.73 -> NaN Division_impossible
1594
+ xmul196 multiply -620236932.E+656823969 3364722.73 -> -2.08692530E+656823984 Inexact Rounded
1595
+ xpow196 power -620236932.E+656823969 3364723 -> -Infinity Overflow Inexact Rounded
1596
+ xrem196 remainder -620236932.E+656823969 3364722.73 -> NaN Division_impossible
1597
+ xsub196 subtract -620236932.E+656823969 3364722.73 -> -6.20236932E+656823977 Inexact Rounded
1598
+ xadd197 add 9.10025079 702777882E-8192234 -> 9.10025079 Inexact Rounded
1599
+ xcom197 compare 9.10025079 702777882E-8192234 -> 1
1600
+ xdiv197 divide 9.10025079 702777882E-8192234 -> 1.29489715E+8192226 Inexact Rounded
1601
+ xdvi197 divideint 9.10025079 702777882E-8192234 -> NaN Division_impossible
1602
+ xmul197 multiply 9.10025079 702777882E-8192234 -> 6.39545498E-8192225 Inexact Rounded
1603
+ xpow197 power 9.10025079 7 -> 5168607.19 Inexact Rounded
1604
+ xrem197 remainder 9.10025079 702777882E-8192234 -> NaN Division_impossible
1605
+ xsub197 subtract 9.10025079 702777882E-8192234 -> 9.10025079 Inexact Rounded
1606
+ xadd198 add -18857539.9 813013129. -> 794155589 Inexact Rounded
1607
+ xcom198 compare -18857539.9 813013129. -> -1
1608
+ xdiv198 divide -18857539.9 813013129. -> -0.0231946315 Inexact Rounded
1609
+ xdvi198 divideint -18857539.9 813013129. -> -0
1610
+ xmul198 multiply -18857539.9 813013129. -> -1.53314275E+16 Inexact Rounded
1611
+ xpow198 power -18857539.9 813013129 -> -Infinity Overflow Inexact Rounded
1612
+ xrem198 remainder -18857539.9 813013129. -> -18857539.9
1613
+ xsub198 subtract -18857539.9 813013129. -> -831870669 Inexact Rounded
1614
+ xadd199 add -8.29530327 3243419.57E+35688332 -> 3.24341957E+35688338 Inexact Rounded
1615
+ xcom199 compare -8.29530327 3243419.57E+35688332 -> -1
1616
+ xdiv199 divide -8.29530327 3243419.57E+35688332 -> -2.55757946E-35688338 Inexact Rounded
1617
+ xdvi199 divideint -8.29530327 3243419.57E+35688332 -> -0
1618
+ xmul199 multiply -8.29530327 3243419.57E+35688332 -> -2.69051490E+35688339 Inexact Rounded
1619
+ xpow199 power -8.29530327 3 -> -570.816876 Inexact Rounded
1620
+ xrem199 remainder -8.29530327 3243419.57E+35688332 -> -8.29530327
1621
+ xsub199 subtract -8.29530327 3243419.57E+35688332 -> -3.24341957E+35688338 Inexact Rounded
1622
+ xadd200 add -57101683.5 763551341E+991491712 -> 7.63551341E+991491720 Inexact Rounded
1623
+ xcom200 compare -57101683.5 763551341E+991491712 -> -1
1624
+ xdiv200 divide -57101683.5 763551341E+991491712 -> -7.47843405E-991491714 Inexact Rounded
1625
+ xdvi200 divideint -57101683.5 763551341E+991491712 -> -0
1626
+ xmul200 multiply -57101683.5 763551341E+991491712 -> -4.36000670E+991491728 Inexact Rounded
1627
+ xpow200 power -57101683.5 8 -> 1.13029368E+62 Inexact Rounded
1628
+ xrem200 remainder -57101683.5 763551341E+991491712 -> -57101683.5
1629
+ xsub200 subtract -57101683.5 763551341E+991491712 -> -7.63551341E+991491720 Inexact Rounded
1630
+ xadd201 add -603326.740 1710.95183 -> -601615.788 Inexact Rounded
1631
+ xcom201 compare -603326.740 1710.95183 -> -1
1632
+ xdiv201 divide -603326.740 1710.95183 -> -352.626374 Inexact Rounded
1633
+ xdvi201 divideint -603326.740 1710.95183 -> -352
1634
+ xmul201 multiply -603326.740 1710.95183 -> -1.03226299E+9 Inexact Rounded
1635
+ xpow201 power -603326.740 1711 -> -3.35315976E+9890 Inexact Rounded
1636
+ xrem201 remainder -603326.740 1710.95183 -> -1071.69584
1637
+ xsub201 subtract -603326.740 1710.95183 -> -605037.692 Inexact Rounded
1638
+ xadd202 add -48142763.3 -943434114 -> -991576877 Inexact Rounded
1639
+ xcom202 compare -48142763.3 -943434114 -> 1
1640
+ xdiv202 divide -48142763.3 -943434114 -> 0.0510292797 Inexact Rounded
1641
+ xdvi202 divideint -48142763.3 -943434114 -> 0
1642
+ xmul202 multiply -48142763.3 -943434114 -> 4.54195252E+16 Inexact Rounded
1643
+ xpow202 power -48142763.3 -943434114 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1644
+ xrem202 remainder -48142763.3 -943434114 -> -48142763.3
1645
+ xsub202 subtract -48142763.3 -943434114 -> 895291351 Inexact Rounded
1646
+ xadd203 add -204.586767 -235.531847 -> -440.118614
1647
+ xcom203 compare -204.586767 -235.531847 -> 1
1648
+ xdiv203 divide -204.586767 -235.531847 -> 0.868616154 Inexact Rounded
1649
+ xdvi203 divideint -204.586767 -235.531847 -> 0
1650
+ xmul203 multiply -204.586767 -235.531847 -> 48186.6991 Inexact Rounded
1651
+ xpow203 power -204.586767 -236 -> 4.29438222E-546 Inexact Rounded
1652
+ xrem203 remainder -204.586767 -235.531847 -> -204.586767
1653
+ xsub203 subtract -204.586767 -235.531847 -> 30.945080
1654
+ xadd204 add -70.3805581 830137.913 -> 830067.532 Inexact Rounded
1655
+ xcom204 compare -70.3805581 830137.913 -> -1
1656
+ xdiv204 divide -70.3805581 830137.913 -> -0.0000847817658 Inexact Rounded
1657
+ xdvi204 divideint -70.3805581 830137.913 -> -0
1658
+ xmul204 multiply -70.3805581 830137.913 -> -58425569.6 Inexact Rounded
1659
+ xpow204 power -70.3805581 830138 -> 4.95165841E+1533640 Inexact Rounded
1660
+ xrem204 remainder -70.3805581 830137.913 -> -70.3805581
1661
+ xsub204 subtract -70.3805581 830137.913 -> -830208.294 Inexact Rounded
1662
+ xadd205 add -8818.47606 -60766.4571 -> -69584.9332 Inexact Rounded
1663
+ xcom205 compare -8818.47606 -60766.4571 -> 1
1664
+ xdiv205 divide -8818.47606 -60766.4571 -> 0.145120787 Inexact Rounded
1665
+ xdvi205 divideint -8818.47606 -60766.4571 -> 0
1666
+ xmul205 multiply -8818.47606 -60766.4571 -> 535867547 Inexact Rounded
1667
+ xpow205 power -8818.47606 -60766 -> 1.64487755E-239746 Inexact Rounded
1668
+ xrem205 remainder -8818.47606 -60766.4571 -> -8818.47606
1669
+ xsub205 subtract -8818.47606 -60766.4571 -> 51947.9810 Inexact Rounded
1670
+ xadd206 add 37060929.3E-168439509 -79576717.1 -> -79576717.1 Inexact Rounded
1671
+ xcom206 compare 37060929.3E-168439509 -79576717.1 -> 1
1672
+ xdiv206 divide 37060929.3E-168439509 -79576717.1 -> -4.65725788E-168439510 Inexact Rounded
1673
+ xdvi206 divideint 37060929.3E-168439509 -79576717.1 -> -0
1674
+ xmul206 multiply 37060929.3E-168439509 -79576717.1 -> -2.94918709E-168439494 Inexact Rounded
1675
+ xpow206 power 37060929.3E-168439509 -79576717 -> Infinity Overflow Inexact Rounded
1676
+ xrem206 remainder 37060929.3E-168439509 -79576717.1 -> 3.70609293E-168439502
1677
+ xsub206 subtract 37060929.3E-168439509 -79576717.1 -> 79576717.1 Inexact Rounded
1678
+ xadd207 add -656285310. -107221462. -> -763506772
1679
+ xcom207 compare -656285310. -107221462. -> -1
1680
+ xdiv207 divide -656285310. -107221462. -> 6.12083904 Inexact Rounded
1681
+ xdvi207 divideint -656285310. -107221462. -> 6
1682
+ xmul207 multiply -656285310. -107221462. -> 7.03678704E+16 Inexact Rounded
1683
+ xpow207 power -656285310. -107221462 -> 8.05338080E-945381569 Inexact Rounded
1684
+ xrem207 remainder -656285310. -107221462. -> -12956538
1685
+ xsub207 subtract -656285310. -107221462. -> -549063848
1686
+ xadd208 add 653397.125 7195.30990 -> 660592.435 Inexact Rounded
1687
+ xcom208 compare 653397.125 7195.30990 -> 1
1688
+ xdiv208 divide 653397.125 7195.30990 -> 90.8087538 Inexact Rounded
1689
+ xdvi208 divideint 653397.125 7195.30990 -> 90
1690
+ xmul208 multiply 653397.125 7195.30990 -> 4.70139480E+9 Inexact Rounded
1691
+ xpow208 power 653397.125 7195 -> 1.58522983E+41840 Inexact Rounded
1692
+ xrem208 remainder 653397.125 7195.30990 -> 5819.23400
1693
+ xsub208 subtract 653397.125 7195.30990 -> 646201.815 Inexact Rounded
1694
+ xadd209 add 56221910.0E+857909374 -58.7247929 -> 5.62219100E+857909381 Inexact Rounded
1695
+ xcom209 compare 56221910.0E+857909374 -58.7247929 -> 1
1696
+ xdiv209 divide 56221910.0E+857909374 -58.7247929 -> -9.57379451E+857909379 Inexact Rounded
1697
+ xdvi209 divideint 56221910.0E+857909374 -58.7247929 -> NaN Division_impossible
1698
+ xmul209 multiply 56221910.0E+857909374 -58.7247929 -> -3.30162002E+857909383 Inexact Rounded
1699
+ xpow209 power 56221910.0E+857909374 -59 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1700
+ xrem209 remainder 56221910.0E+857909374 -58.7247929 -> NaN Division_impossible
1701
+ xsub209 subtract 56221910.0E+857909374 -58.7247929 -> 5.62219100E+857909381 Inexact Rounded
1702
+ xadd210 add 809862859E+643769974 -5.06784016 -> 8.09862859E+643769982 Inexact Rounded
1703
+ xcom210 compare 809862859E+643769974 -5.06784016 -> 1
1704
+ xdiv210 divide 809862859E+643769974 -5.06784016 -> -1.59804341E+643769982 Inexact Rounded
1705
+ xdvi210 divideint 809862859E+643769974 -5.06784016 -> NaN Division_impossible
1706
+ xmul210 multiply 809862859E+643769974 -5.06784016 -> -4.10425552E+643769983 Inexact Rounded
1707
+ xpow210 power 809862859E+643769974 -5 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1708
+ xrem210 remainder 809862859E+643769974 -5.06784016 -> NaN Division_impossible
1709
+ xsub210 subtract 809862859E+643769974 -5.06784016 -> 8.09862859E+643769982 Inexact Rounded
1710
+ xadd211 add -62011.4563E-117563240 -57.1731586E+115657204 -> -5.71731586E+115657205 Inexact Rounded
1711
+ xcom211 compare -62011.4563E-117563240 -57.1731586E+115657204 -> 1
1712
+ xdiv211 divide -62011.4563E-117563240 -57.1731586E+115657204 -> 1.08462534E-233220441 Inexact Rounded
1713
+ xdvi211 divideint -62011.4563E-117563240 -57.1731586E+115657204 -> 0
1714
+ xmul211 multiply -62011.4563E-117563240 -57.1731586E+115657204 -> 3.54539083E-1906030 Inexact Rounded
1715
+ xpow211 power -62011.4563E-117563240 -6 -> 1.75860546E+705379411 Inexact Rounded
1716
+ xrem211 remainder -62011.4563E-117563240 -57.1731586E+115657204 -> -6.20114563E-117563236
1717
+ xsub211 subtract -62011.4563E-117563240 -57.1731586E+115657204 -> 5.71731586E+115657205 Inexact Rounded
1718
+ xadd212 add 315.33351 91588.837E-536020149 -> 315.333510 Inexact Rounded
1719
+ xcom212 compare 315.33351 91588.837E-536020149 -> 1
1720
+ xdiv212 divide 315.33351 91588.837E-536020149 -> 3.44292515E+536020146 Inexact Rounded
1721
+ xdvi212 divideint 315.33351 91588.837E-536020149 -> NaN Division_impossible
1722
+ xmul212 multiply 315.33351 91588.837E-536020149 -> 2.88810294E-536020142 Inexact Rounded
1723
+ xpow212 power 315.33351 9 -> 3.08269902E+22 Inexact Rounded
1724
+ xrem212 remainder 315.33351 91588.837E-536020149 -> NaN Division_impossible
1725
+ xsub212 subtract 315.33351 91588.837E-536020149 -> 315.333510 Inexact Rounded
1726
+ xadd213 add 739.944710 202949.175 -> 203689.120 Inexact Rounded
1727
+ xcom213 compare 739.944710 202949.175 -> -1
1728
+ xdiv213 divide 739.944710 202949.175 -> 0.00364596067 Inexact Rounded
1729
+ xdvi213 divideint 739.944710 202949.175 -> 0
1730
+ xmul213 multiply 739.944710 202949.175 -> 150171168 Inexact Rounded
1731
+ xpow213 power 739.944710 202949 -> 1.32611729E+582301 Inexact Rounded
1732
+ xrem213 remainder 739.944710 202949.175 -> 739.944710
1733
+ xsub213 subtract 739.944710 202949.175 -> -202209.230 Inexact Rounded
1734
+ xadd214 add 87686.8016 4204890.40 -> 4292577.20 Inexact Rounded
1735
+ xcom214 compare 87686.8016 4204890.40 -> -1
1736
+ xdiv214 divide 87686.8016 4204890.40 -> 0.0208535285 Inexact Rounded
1737
+ xdvi214 divideint 87686.8016 4204890.40 -> 0
1738
+ xmul214 multiply 87686.8016 4204890.40 -> 3.68713390E+11 Inexact Rounded
1739
+ xpow214 power 87686.8016 4204890 -> 5.14846981E+20784494 Inexact Rounded
1740
+ xrem214 remainder 87686.8016 4204890.40 -> 87686.8016
1741
+ xsub214 subtract 87686.8016 4204890.40 -> -4117203.60 Inexact Rounded
1742
+ xadd215 add 987126721.E-725794834 4874166.23 -> 4874166.23 Inexact Rounded
1743
+ xcom215 compare 987126721.E-725794834 4874166.23 -> -1
1744
+ xdiv215 divide 987126721.E-725794834 4874166.23 -> 2.02522170E-725794832 Inexact Rounded
1745
+ xdvi215 divideint 987126721.E-725794834 4874166.23 -> 0
1746
+ xmul215 multiply 987126721.E-725794834 4874166.23 -> 4.81141973E-725794819 Inexact Rounded
1747
+ xpow215 power 987126721.E-725794834 4874166 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1748
+ xrem215 remainder 987126721.E-725794834 4874166.23 -> 9.87126721E-725794826
1749
+ xsub215 subtract 987126721.E-725794834 4874166.23 -> -4874166.23 Inexact Rounded
1750
+ xadd216 add 728148726.E-661695938 32798.5202 -> 32798.5202 Inexact Rounded
1751
+ xcom216 compare 728148726.E-661695938 32798.5202 -> -1
1752
+ xdiv216 divide 728148726.E-661695938 32798.5202 -> 2.22006579E-661695934 Inexact Rounded
1753
+ xdvi216 divideint 728148726.E-661695938 32798.5202 -> 0
1754
+ xmul216 multiply 728148726.E-661695938 32798.5202 -> 2.38822007E-661695925 Inexact Rounded
1755
+ xpow216 power 728148726.E-661695938 32799 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1756
+ xrem216 remainder 728148726.E-661695938 32798.5202 -> 7.28148726E-661695930
1757
+ xsub216 subtract 728148726.E-661695938 32798.5202 -> -32798.5202 Inexact Rounded
1758
+ xadd217 add 7428219.97 667.326760 -> 7428887.30 Inexact Rounded
1759
+ xcom217 compare 7428219.97 667.326760 -> 1
1760
+ xdiv217 divide 7428219.97 667.326760 -> 11131.3084 Inexact Rounded
1761
+ xdvi217 divideint 7428219.97 667.326760 -> 11131
1762
+ xmul217 multiply 7428219.97 667.326760 -> 4.95704997E+9 Inexact Rounded
1763
+ xpow217 power 7428219.97 667 -> 7.58808509E+4582 Inexact Rounded
1764
+ xrem217 remainder 7428219.97 667.326760 -> 205.804440
1765
+ xsub217 subtract 7428219.97 667.326760 -> 7427552.64 Inexact Rounded
1766
+ xadd218 add -7291.19212 209.64966E-588526476 -> -7291.19212 Inexact Rounded
1767
+ xcom218 compare -7291.19212 209.64966E-588526476 -> -1
1768
+ xdiv218 divide -7291.19212 209.64966E-588526476 -> -3.47779821E+588526477 Inexact Rounded
1769
+ xdvi218 divideint -7291.19212 209.64966E-588526476 -> NaN Division_impossible
1770
+ xmul218 multiply -7291.19212 209.64966E-588526476 -> -1.52859595E-588526470 Inexact Rounded
1771
+ xpow218 power -7291.19212 2 -> 53161482.5 Inexact Rounded
1772
+ xrem218 remainder -7291.19212 209.64966E-588526476 -> NaN Division_impossible
1773
+ xsub218 subtract -7291.19212 209.64966E-588526476 -> -7291.19212 Inexact Rounded
1774
+ xadd219 add -358.24550 -4447.78675E+601402509 -> -4.44778675E+601402512 Inexact Rounded
1775
+ xcom219 compare -358.24550 -4447.78675E+601402509 -> 1
1776
+ xdiv219 divide -358.24550 -4447.78675E+601402509 -> 8.05446664E-601402511 Inexact Rounded
1777
+ xdvi219 divideint -358.24550 -4447.78675E+601402509 -> 0
1778
+ xmul219 multiply -358.24550 -4447.78675E+601402509 -> 1.59339959E+601402515 Inexact Rounded
1779
+ xpow219 power -358.24550 -4 -> 6.07123474E-11 Inexact Rounded
1780
+ xrem219 remainder -358.24550 -4447.78675E+601402509 -> -358.24550
1781
+ xsub219 subtract -358.24550 -4447.78675E+601402509 -> 4.44778675E+601402512 Inexact Rounded
1782
+ xadd220 add 118.621826 -2.72010038 -> 115.901726 Inexact Rounded
1783
+ xcom220 compare 118.621826 -2.72010038 -> 1
1784
+ xdiv220 divide 118.621826 -2.72010038 -> -43.6093561 Inexact Rounded
1785
+ xdvi220 divideint 118.621826 -2.72010038 -> -43
1786
+ xmul220 multiply 118.621826 -2.72010038 -> -322.663274 Inexact Rounded
1787
+ xpow220 power 118.621826 -3 -> 5.99109471E-7 Inexact Rounded
1788
+ xrem220 remainder 118.621826 -2.72010038 -> 1.65750966
1789
+ xsub220 subtract 118.621826 -2.72010038 -> 121.341926 Inexact Rounded
1790
+ xadd221 add 8071961.94 -135533740.E-102451543 -> 8071961.94 Inexact Rounded
1791
+ xcom221 compare 8071961.94 -135533740.E-102451543 -> 1
1792
+ xdiv221 divide 8071961.94 -135533740.E-102451543 -> -5.95568450E+102451541 Inexact Rounded
1793
+ xdvi221 divideint 8071961.94 -135533740.E-102451543 -> NaN Division_impossible
1794
+ xmul221 multiply 8071961.94 -135533740.E-102451543 -> -1.09402319E-102451528 Inexact Rounded
1795
+ xpow221 power 8071961.94 -1 -> 1.23885619E-7 Inexact Rounded
1796
+ xrem221 remainder 8071961.94 -135533740.E-102451543 -> NaN Division_impossible
1797
+ xsub221 subtract 8071961.94 -135533740.E-102451543 -> 8071961.94 Inexact Rounded
1798
+ xadd222 add 64262528.5E+812118682 -8692.94447E-732186947 -> 6.42625285E+812118689 Inexact Rounded
1799
+ xcom222 compare 64262528.5E+812118682 -8692.94447E-732186947 -> 1
1800
+ xdiv222 divide 64262528.5E+812118682 -8692.94447E-732186947 -> -Infinity Inexact Overflow Rounded
1801
+ xdvi222 divideint 64262528.5E+812118682 -8692.94447E-732186947 -> NaN Division_impossible
1802
+ xmul222 multiply 64262528.5E+812118682 -8692.94447E-732186947 -> -5.58630592E+79931746 Inexact Rounded
1803
+ xpow222 power 64262528.5E+812118682 -9 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1804
+ xrem222 remainder 64262528.5E+812118682 -8692.94447E-732186947 -> NaN Division_impossible
1805
+ xsub222 subtract 64262528.5E+812118682 -8692.94447E-732186947 -> 6.42625285E+812118689 Inexact Rounded
1806
+ xadd223 add -35544.4029 -567830.130 -> -603374.533 Inexact Rounded
1807
+ xcom223 compare -35544.4029 -567830.130 -> 1
1808
+ xdiv223 divide -35544.4029 -567830.130 -> 0.0625968948 Inexact Rounded
1809
+ xdvi223 divideint -35544.4029 -567830.130 -> 0
1810
+ xmul223 multiply -35544.4029 -567830.130 -> 2.01831829E+10 Inexact Rounded
1811
+ xpow223 power -35544.4029 -567830 -> 3.77069368E-2584065 Inexact Rounded
1812
+ xrem223 remainder -35544.4029 -567830.130 -> -35544.4029
1813
+ xsub223 subtract -35544.4029 -567830.130 -> 532285.727 Inexact Rounded
1814
+ xadd224 add -7.16513047E+59297103 87767.8211 -> -7.16513047E+59297103 Inexact Rounded
1815
+ xcom224 compare -7.16513047E+59297103 87767.8211 -> -1
1816
+ xdiv224 divide -7.16513047E+59297103 87767.8211 -> -8.16373288E+59297098 Inexact Rounded
1817
+ xdvi224 divideint -7.16513047E+59297103 87767.8211 -> NaN Division_impossible
1818
+ xmul224 multiply -7.16513047E+59297103 87767.8211 -> -6.28867889E+59297108 Inexact Rounded
1819
+ xpow224 power -7.16513047E+59297103 87768 -> Infinity Overflow Inexact Rounded
1820
+ xrem224 remainder -7.16513047E+59297103 87767.8211 -> NaN Division_impossible
1821
+ xsub224 subtract -7.16513047E+59297103 87767.8211 -> -7.16513047E+59297103 Inexact Rounded
1822
+ xadd225 add -509.483395 -147242915. -> -147243424 Inexact Rounded
1823
+ xcom225 compare -509.483395 -147242915. -> 1
1824
+ xdiv225 divide -509.483395 -147242915. -> 0.00000346015559 Inexact Rounded
1825
+ xdvi225 divideint -509.483395 -147242915. -> 0
1826
+ xmul225 multiply -509.483395 -147242915. -> 7.50178202E+10 Inexact Rounded
1827
+ xpow225 power -509.483395 -147242915 -> -3.10760519E-398605718 Inexact Rounded
1828
+ xrem225 remainder -509.483395 -147242915. -> -509.483395
1829
+ xsub225 subtract -509.483395 -147242915. -> 147242406 Inexact Rounded
1830
+ xadd226 add -7919047.28E+956041629 -367667329 -> -7.91904728E+956041635 Inexact Rounded
1831
+ xcom226 compare -7919047.28E+956041629 -367667329 -> -1
1832
+ xdiv226 divide -7919047.28E+956041629 -367667329 -> 2.15386211E+956041627 Inexact Rounded
1833
+ xdvi226 divideint -7919047.28E+956041629 -367667329 -> NaN Division_impossible
1834
+ xmul226 multiply -7919047.28E+956041629 -367667329 -> 2.91157496E+956041644 Inexact Rounded
1835
+ xpow226 power -7919047.28E+956041629 -367667329 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1836
+ xrem226 remainder -7919047.28E+956041629 -367667329 -> NaN Division_impossible
1837
+ xsub226 subtract -7919047.28E+956041629 -367667329 -> -7.91904728E+956041635 Inexact Rounded
1838
+ xadd227 add 895612630. -36.4104040 -> 895612594 Inexact Rounded
1839
+ xcom227 compare 895612630. -36.4104040 -> 1
1840
+ xdiv227 divide 895612630. -36.4104040 -> -24597712.0 Inexact Rounded
1841
+ xdvi227 divideint 895612630. -36.4104040 -> -24597711
1842
+ xmul227 multiply 895612630. -36.4104040 -> -3.26096177E+10 Inexact Rounded
1843
+ xpow227 power 895612630. -36 -> 5.29264130E-323 Inexact Rounded
1844
+ xrem227 remainder 895612630. -36.4104040 -> 35.0147560
1845
+ xsub227 subtract 895612630. -36.4104040 -> 895612666 Inexact Rounded
1846
+ xadd228 add 25455.4973 2955.00006E+528196218 -> 2.95500006E+528196221 Inexact Rounded
1847
+ xcom228 compare 25455.4973 2955.00006E+528196218 -> -1
1848
+ xdiv228 divide 25455.4973 2955.00006E+528196218 -> 8.61438131E-528196218 Inexact Rounded
1849
+ xdvi228 divideint 25455.4973 2955.00006E+528196218 -> 0
1850
+ xmul228 multiply 25455.4973 2955.00006E+528196218 -> 7.52209960E+528196225 Inexact Rounded
1851
+ xpow228 power 25455.4973 3 -> 1.64947128E+13 Inexact Rounded
1852
+ xrem228 remainder 25455.4973 2955.00006E+528196218 -> 25455.4973
1853
+ xsub228 subtract 25455.4973 2955.00006E+528196218 -> -2.95500006E+528196221 Inexact Rounded
1854
+ xadd229 add -112.294144E+273414172 -71448007.7 -> -1.12294144E+273414174 Inexact Rounded
1855
+ xcom229 compare -112.294144E+273414172 -71448007.7 -> -1
1856
+ xdiv229 divide -112.294144E+273414172 -71448007.7 -> 1.57169035E+273414166 Inexact Rounded
1857
+ xdvi229 divideint -112.294144E+273414172 -71448007.7 -> NaN Division_impossible
1858
+ xmul229 multiply -112.294144E+273414172 -71448007.7 -> 8.02319287E+273414181 Inexact Rounded
1859
+ xpow229 power -112.294144E+273414172 -71448008 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1860
+ xrem229 remainder -112.294144E+273414172 -71448007.7 -> NaN Division_impossible
1861
+ xsub229 subtract -112.294144E+273414172 -71448007.7 -> -1.12294144E+273414174 Inexact Rounded
1862
+ xadd230 add 62871.2202 2484.0382E+211662557 -> 2.48403820E+211662560 Inexact Rounded
1863
+ xcom230 compare 62871.2202 2484.0382E+211662557 -> -1
1864
+ xdiv230 divide 62871.2202 2484.0382E+211662557 -> 2.53100859E-211662556 Inexact Rounded
1865
+ xdvi230 divideint 62871.2202 2484.0382E+211662557 -> 0
1866
+ xmul230 multiply 62871.2202 2484.0382E+211662557 -> 1.56174513E+211662565 Inexact Rounded
1867
+ xpow230 power 62871.2202 2 -> 3.95279033E+9 Inexact Rounded
1868
+ xrem230 remainder 62871.2202 2484.0382E+211662557 -> 62871.2202
1869
+ xsub230 subtract 62871.2202 2484.0382E+211662557 -> -2.48403820E+211662560 Inexact Rounded
1870
+ xadd231 add 71.9281575 -9810012.5 -> -9809940.57 Inexact Rounded
1871
+ xcom231 compare 71.9281575 -9810012.5 -> 1
1872
+ xdiv231 divide 71.9281575 -9810012.5 -> -0.00000733211680 Inexact Rounded
1873
+ xdvi231 divideint 71.9281575 -9810012.5 -> -0
1874
+ xmul231 multiply 71.9281575 -9810012.5 -> -705616124 Inexact Rounded
1875
+ xpow231 power 71.9281575 -9810013 -> 2.00363798E-18216203 Inexact Rounded
1876
+ xrem231 remainder 71.9281575 -9810012.5 -> 71.9281575
1877
+ xsub231 subtract 71.9281575 -9810012.5 -> 9810084.43 Inexact Rounded
1878
+ xadd232 add -6388022. -88.042967 -> -6388110.04 Inexact Rounded
1879
+ xcom232 compare -6388022. -88.042967 -> -1
1880
+ xdiv232 divide -6388022. -88.042967 -> 72555.7329 Inexact Rounded
1881
+ xdvi232 divideint -6388022. -88.042967 -> 72555
1882
+ xmul232 multiply -6388022. -88.042967 -> 562420410 Inexact Rounded
1883
+ xpow232 power -6388022. -88 -> 1.34201238E-599 Inexact Rounded
1884
+ xrem232 remainder -6388022. -88.042967 -> -64.529315
1885
+ xsub232 subtract -6388022. -88.042967 -> -6387933.96 Inexact Rounded
1886
+ xadd233 add 372567445. 96.0992141 -> 372567541 Inexact Rounded
1887
+ xcom233 compare 372567445. 96.0992141 -> 1
1888
+ xdiv233 divide 372567445. 96.0992141 -> 3876904.18 Inexact Rounded
1889
+ xdvi233 divideint 372567445. 96.0992141 -> 3876904
1890
+ xmul233 multiply 372567445. 96.0992141 -> 3.58034387E+10 Inexact Rounded
1891
+ xpow233 power 372567445. 96 -> 6.84968715E+822 Inexact Rounded
1892
+ xrem233 remainder 372567445. 96.0992141 -> 17.4588536
1893
+ xsub233 subtract 372567445. 96.0992141 -> 372567349 Inexact Rounded
1894
+ xadd234 add 802.156517 -174409310.E-255338020 -> 802.156517 Inexact Rounded
1895
+ xcom234 compare 802.156517 -174409310.E-255338020 -> 1
1896
+ xdiv234 divide 802.156517 -174409310.E-255338020 -> -4.59927579E+255338014 Inexact Rounded
1897
+ xdvi234 divideint 802.156517 -174409310.E-255338020 -> NaN Division_impossible
1898
+ xmul234 multiply 802.156517 -174409310.E-255338020 -> -1.39903565E-255338009 Inexact Rounded
1899
+ xpow234 power 802.156517 -2 -> 0.00000155411005 Inexact Rounded
1900
+ xrem234 remainder 802.156517 -174409310.E-255338020 -> NaN Division_impossible
1901
+ xsub234 subtract 802.156517 -174409310.E-255338020 -> 802.156517 Inexact Rounded
1902
+ xadd235 add -3.65207541 74501982.0 -> 74501978.3 Inexact Rounded
1903
+ xcom235 compare -3.65207541 74501982.0 -> -1
1904
+ xdiv235 divide -3.65207541 74501982.0 -> -4.90198423E-8 Inexact Rounded
1905
+ xdvi235 divideint -3.65207541 74501982.0 -> -0
1906
+ xmul235 multiply -3.65207541 74501982.0 -> -272086856 Inexact Rounded
1907
+ xpow235 power -3.65207541 74501982 -> 2.10339452E+41910325 Inexact Rounded
1908
+ xrem235 remainder -3.65207541 74501982.0 -> -3.65207541
1909
+ xsub235 subtract -3.65207541 74501982.0 -> -74501985.7 Inexact Rounded
1910
+ xadd236 add -5297.76981 -859.719404 -> -6157.48921 Inexact Rounded
1911
+ xcom236 compare -5297.76981 -859.719404 -> -1
1912
+ xdiv236 divide -5297.76981 -859.719404 -> 6.16220802 Inexact Rounded
1913
+ xdvi236 divideint -5297.76981 -859.719404 -> 6
1914
+ xmul236 multiply -5297.76981 -859.719404 -> 4554595.50 Inexact Rounded
1915
+ xpow236 power -5297.76981 -860 -> 1.90523108E-3203 Inexact Rounded
1916
+ xrem236 remainder -5297.76981 -859.719404 -> -139.453386
1917
+ xsub236 subtract -5297.76981 -859.719404 -> -4438.05041 Inexact Rounded
1918
+ xadd237 add -684172.592 766.448597E+288361959 -> 7.66448597E+288361961 Inexact Rounded
1919
+ xcom237 compare -684172.592 766.448597E+288361959 -> -1
1920
+ xdiv237 divide -684172.592 766.448597E+288361959 -> -8.92652938E-288361957 Inexact Rounded
1921
+ xdvi237 divideint -684172.592 766.448597E+288361959 -> -0
1922
+ xmul237 multiply -684172.592 766.448597E+288361959 -> -5.24383123E+288361967 Inexact Rounded
1923
+ xpow237 power -684172.592 8 -> 4.80093005E+46 Inexact Rounded
1924
+ xrem237 remainder -684172.592 766.448597E+288361959 -> -684172.592
1925
+ xsub237 subtract -684172.592 766.448597E+288361959 -> -7.66448597E+288361961 Inexact Rounded
1926
+ xadd238 add 626919.219 57469.8727E+13188610 -> 5.74698727E+13188614 Inexact Rounded
1927
+ xcom238 compare 626919.219 57469.8727E+13188610 -> -1
1928
+ xdiv238 divide 626919.219 57469.8727E+13188610 -> 1.09086586E-13188609 Inexact Rounded
1929
+ xdvi238 divideint 626919.219 57469.8727E+13188610 -> 0
1930
+ xmul238 multiply 626919.219 57469.8727E+13188610 -> 3.60289677E+13188620 Inexact Rounded
1931
+ xpow238 power 626919.219 6 -> 6.07112959E+34 Inexact Rounded
1932
+ xrem238 remainder 626919.219 57469.8727E+13188610 -> 626919.219
1933
+ xsub238 subtract 626919.219 57469.8727E+13188610 -> -5.74698727E+13188614 Inexact Rounded
1934
+ xadd239 add -77480.5840 893265.594E+287982552 -> 8.93265594E+287982557 Inexact Rounded
1935
+ xcom239 compare -77480.5840 893265.594E+287982552 -> -1
1936
+ xdiv239 divide -77480.5840 893265.594E+287982552 -> -8.67385742E-287982554 Inexact Rounded
1937
+ xdvi239 divideint -77480.5840 893265.594E+287982552 -> -0
1938
+ xmul239 multiply -77480.5840 893265.594E+287982552 -> -6.92107399E+287982562 Inexact Rounded
1939
+ xpow239 power -77480.5840 9 -> -1.00631969E+44 Inexact Rounded
1940
+ xrem239 remainder -77480.5840 893265.594E+287982552 -> -77480.5840
1941
+ xsub239 subtract -77480.5840 893265.594E+287982552 -> -8.93265594E+287982557 Inexact Rounded
1942
+ xadd240 add -7177620.29 7786343.83 -> 608723.54
1943
+ xcom240 compare -7177620.29 7786343.83 -> -1
1944
+ xdiv240 divide -7177620.29 7786343.83 -> -0.921821647 Inexact Rounded
1945
+ xdvi240 divideint -7177620.29 7786343.83 -> -0
1946
+ xmul240 multiply -7177620.29 7786343.83 -> -5.58874195E+13 Inexact Rounded
1947
+ xpow240 power -7177620.29 7786344 -> 2.96037074E+53383022 Inexact Rounded
1948
+ xrem240 remainder -7177620.29 7786343.83 -> -7177620.29
1949
+ xsub240 subtract -7177620.29 7786343.83 -> -14963964.1 Inexact Rounded
1950
+ xadd241 add 9.6224130 4.50355112 -> 14.1259641 Inexact Rounded
1951
+ xcom241 compare 9.6224130 4.50355112 -> 1
1952
+ xdiv241 divide 9.6224130 4.50355112 -> 2.13662791 Inexact Rounded
1953
+ xdvi241 divideint 9.6224130 4.50355112 -> 2
1954
+ xmul241 multiply 9.6224130 4.50355112 -> 43.3350288 Inexact Rounded
1955
+ xpow241 power 9.6224130 5 -> 82493.5448 Inexact Rounded
1956
+ xrem241 remainder 9.6224130 4.50355112 -> 0.61531076
1957
+ xsub241 subtract 9.6224130 4.50355112 -> 5.11886188
1958
+ xadd242 add -66.6337347E-597410086 -818812885 -> -818812885 Inexact Rounded
1959
+ xcom242 compare -66.6337347E-597410086 -818812885 -> 1
1960
+ xdiv242 divide -66.6337347E-597410086 -818812885 -> 8.13784638E-597410094 Inexact Rounded
1961
+ xdvi242 divideint -66.6337347E-597410086 -818812885 -> 0
1962
+ xmul242 multiply -66.6337347E-597410086 -818812885 -> 5.45605605E-597410076 Inexact Rounded
1963
+ xpow242 power -66.6337347E-597410086 -818812885 -> -Infinity Overflow Inexact Rounded
1964
+ xrem242 remainder -66.6337347E-597410086 -818812885 -> -6.66337347E-597410085
1965
+ xsub242 subtract -66.6337347E-597410086 -818812885 -> 818812885 Inexact Rounded
1966
+ xadd243 add 65587553.7 600574.736 -> 66188128.4 Inexact Rounded
1967
+ xcom243 compare 65587553.7 600574.736 -> 1
1968
+ xdiv243 divide 65587553.7 600574.736 -> 109.207980 Inexact Rounded
1969
+ xdvi243 divideint 65587553.7 600574.736 -> 109
1970
+ xmul243 multiply 65587553.7 600574.736 -> 3.93902277E+13 Inexact Rounded
1971
+ xpow243 power 65587553.7 600575 -> 3.40404817E+4694587 Inexact Rounded
1972
+ xrem243 remainder 65587553.7 600574.736 -> 124907.476
1973
+ xsub243 subtract 65587553.7 600574.736 -> 64986979.0 Inexact Rounded
1974
+ xadd244 add -32401.939 -585200217. -> -585232619 Inexact Rounded
1975
+ xcom244 compare -32401.939 -585200217. -> 1
1976
+ xdiv244 divide -32401.939 -585200217. -> 0.0000553689798 Inexact Rounded
1977
+ xdvi244 divideint -32401.939 -585200217. -> 0
1978
+ xmul244 multiply -32401.939 -585200217. -> 1.89616217E+13 Inexact Rounded
1979
+ xpow244 power -32401.939 -585200217 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1980
+ xrem244 remainder -32401.939 -585200217. -> -32401.939
1981
+ xsub244 subtract -32401.939 -585200217. -> 585167815 Inexact Rounded
1982
+ xadd245 add 69573.988 -9.77003465E+740933668 -> -9.77003465E+740933668 Inexact Rounded
1983
+ xcom245 compare 69573.988 -9.77003465E+740933668 -> 1
1984
+ xdiv245 divide 69573.988 -9.77003465E+740933668 -> -7.12116082E-740933665 Inexact Rounded
1985
+ xdvi245 divideint 69573.988 -9.77003465E+740933668 -> -0
1986
+ xmul245 multiply 69573.988 -9.77003465E+740933668 -> -6.79740273E+740933673 Inexact Rounded
1987
+ xpow245 power 69573.988 -10 -> 3.76297229E-49 Inexact Rounded
1988
+ xrem245 remainder 69573.988 -9.77003465E+740933668 -> 69573.988
1989
+ xsub245 subtract 69573.988 -9.77003465E+740933668 -> 9.77003465E+740933668 Inexact Rounded
1990
+ xadd246 add 2362.06251 -433149546.E-152643629 -> 2362.06251 Inexact Rounded
1991
+ xcom246 compare 2362.06251 -433149546.E-152643629 -> 1
1992
+ xdiv246 divide 2362.06251 -433149546.E-152643629 -> -5.45322633E+152643623 Inexact Rounded
1993
+ xdvi246 divideint 2362.06251 -433149546.E-152643629 -> NaN Division_impossible
1994
+ xmul246 multiply 2362.06251 -433149546.E-152643629 -> -1.02312630E-152643617 Inexact Rounded
1995
+ xpow246 power 2362.06251 -4 -> 3.21243577E-14 Inexact Rounded
1996
+ xrem246 remainder 2362.06251 -433149546.E-152643629 -> NaN Division_impossible
1997
+ xsub246 subtract 2362.06251 -433149546.E-152643629 -> 2362.06251 Inexact Rounded
1998
+ xadd247 add -615.23488E+249953452 -21437483.7 -> -6.15234880E+249953454 Inexact Rounded
1999
+ xcom247 compare -615.23488E+249953452 -21437483.7 -> -1
2000
+ xdiv247 divide -615.23488E+249953452 -21437483.7 -> 2.86990250E+249953447 Inexact Rounded
2001
+ xdvi247 divideint -615.23488E+249953452 -21437483.7 -> NaN Division_impossible
2002
+ xmul247 multiply -615.23488E+249953452 -21437483.7 -> 1.31890877E+249953462 Inexact Rounded
2003
+ xpow247 power -615.23488E+249953452 -21437484 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2004
+ xrem247 remainder -615.23488E+249953452 -21437483.7 -> NaN Division_impossible
2005
+ xsub247 subtract -615.23488E+249953452 -21437483.7 -> -6.15234880E+249953454 Inexact Rounded
2006
+ xadd248 add 216741082. 250290244 -> 467031326
2007
+ xcom248 compare 216741082. 250290244 -> -1
2008
+ xdiv248 divide 216741082. 250290244 -> 0.865958970 Inexact Rounded
2009
+ xdvi248 divideint 216741082. 250290244 -> 0
2010
+ xmul248 multiply 216741082. 250290244 -> 5.42481783E+16 Inexact Rounded
2011
+ xpow248 power 216741082. 250290244 -> Infinity Overflow Inexact Rounded
2012
+ xrem248 remainder 216741082. 250290244 -> 216741082
2013
+ xsub248 subtract 216741082. 250290244 -> -33549162
2014
+ xadd249 add -6364720.49 5539245.64 -> -825474.85
2015
+ xcom249 compare -6364720.49 5539245.64 -> -1
2016
+ xdiv249 divide -6364720.49 5539245.64 -> -1.14902297 Inexact Rounded
2017
+ xdvi249 divideint -6364720.49 5539245.64 -> -1
2018
+ xmul249 multiply -6364720.49 5539245.64 -> -3.52557502E+13 Inexact Rounded
2019
+ xpow249 power -6364720.49 5539246 -> 2.96894641E+37687807 Inexact Rounded
2020
+ xrem249 remainder -6364720.49 5539245.64 -> -825474.85
2021
+ xsub249 subtract -6364720.49 5539245.64 -> -11903966.1 Inexact Rounded
2022
+ xadd250 add -814599.475 -14.5431191 -> -814614.018 Inexact Rounded
2023
+ xcom250 compare -814599.475 -14.5431191 -> -1
2024
+ xdiv250 divide -814599.475 -14.5431191 -> 56012.7074 Inexact Rounded
2025
+ xdvi250 divideint -814599.475 -14.5431191 -> 56012
2026
+ xmul250 multiply -814599.475 -14.5431191 -> 11846817.2 Inexact Rounded
2027
+ xpow250 power -814599.475 -15 -> -2.16689622E-89 Inexact Rounded
2028
+ xrem250 remainder -814599.475 -14.5431191 -> -10.2879708
2029
+ xsub250 subtract -814599.475 -14.5431191 -> -814584.932 Inexact Rounded
2030
+ xadd251 add -877498.755 507408724E-168628106 -> -877498.755 Inexact Rounded
2031
+ xcom251 compare -877498.755 507408724E-168628106 -> -1
2032
+ xdiv251 divide -877498.755 507408724E-168628106 -> -1.72937262E+168628103 Inexact Rounded
2033
+ xdvi251 divideint -877498.755 507408724E-168628106 -> NaN Division_impossible
2034
+ xmul251 multiply -877498.755 507408724E-168628106 -> -4.45250524E-168628092 Inexact Rounded
2035
+ xpow251 power -877498.755 5 -> -5.20274505E+29 Inexact Rounded
2036
+ xrem251 remainder -877498.755 507408724E-168628106 -> NaN Division_impossible
2037
+ xsub251 subtract -877498.755 507408724E-168628106 -> -877498.755 Inexact Rounded
2038
+ xadd252 add 10634446.5E+475783861 50.7213056E+17807809 -> 1.06344465E+475783868 Inexact Rounded
2039
+ xcom252 compare 10634446.5E+475783861 50.7213056E+17807809 -> 1
2040
+ xdiv252 divide 10634446.5E+475783861 50.7213056E+17807809 -> 2.09664289E+457976057 Inexact Rounded
2041
+ xdvi252 divideint 10634446.5E+475783861 50.7213056E+17807809 -> NaN Division_impossible
2042
+ xmul252 multiply 10634446.5E+475783861 50.7213056E+17807809 -> 5.39393011E+493591678 Inexact Rounded
2043
+ xpow252 power 10634446.5E+475783861 5 -> Infinity Overflow Inexact Rounded
2044
+ xrem252 remainder 10634446.5E+475783861 50.7213056E+17807809 -> NaN Division_impossible
2045
+ xsub252 subtract 10634446.5E+475783861 50.7213056E+17807809 -> 1.06344465E+475783868 Inexact Rounded
2046
+ xadd253 add -162726.257E-597285918 -4391.54799 -> -4391.54799 Inexact Rounded
2047
+ xcom253 compare -162726.257E-597285918 -4391.54799 -> 1
2048
+ xdiv253 divide -162726.257E-597285918 -4391.54799 -> 3.70544185E-597285917 Inexact Rounded
2049
+ xdvi253 divideint -162726.257E-597285918 -4391.54799 -> 0
2050
+ xmul253 multiply -162726.257E-597285918 -4391.54799 -> 7.14620167E-597285910 Inexact Rounded
2051
+ xpow253 power -162726.257E-597285918 -4392 -> Infinity Overflow Inexact Rounded
2052
+ xrem253 remainder -162726.257E-597285918 -4391.54799 -> -1.62726257E-597285913
2053
+ xsub253 subtract -162726.257E-597285918 -4391.54799 -> 4391.54799 Inexact Rounded
2054
+ xadd254 add 700354586.E-99856707 7198.0493E+436250299 -> 7.19804930E+436250302 Inexact Rounded
2055
+ xcom254 compare 700354586.E-99856707 7198.0493E+436250299 -> -1
2056
+ xdiv254 divide 700354586.E-99856707 7198.0493E+436250299 -> 9.72978312E-536107002 Inexact Rounded
2057
+ xdvi254 divideint 700354586.E-99856707 7198.0493E+436250299 -> 0
2058
+ xmul254 multiply 700354586.E-99856707 7198.0493E+436250299 -> 5.04118684E+336393604 Inexact Rounded
2059
+ xpow254 power 700354586.E-99856707 7 -> 8.26467610E-698996888 Inexact Rounded
2060
+ xrem254 remainder 700354586.E-99856707 7198.0493E+436250299 -> 7.00354586E-99856699
2061
+ xsub254 subtract 700354586.E-99856707 7198.0493E+436250299 -> -7.19804930E+436250302 Inexact Rounded
2062
+ xadd255 add 39617663E-463704664 -895.290346 -> -895.290346 Inexact Rounded
2063
+ xcom255 compare 39617663E-463704664 -895.290346 -> 1
2064
+ xdiv255 divide 39617663E-463704664 -895.290346 -> -4.42511898E-463704660 Inexact Rounded
2065
+ xdvi255 divideint 39617663E-463704664 -895.290346 -> -0
2066
+ xmul255 multiply 39617663E-463704664 -895.290346 -> -3.54693112E-463704654 Inexact Rounded
2067
+ xpow255 power 39617663E-463704664 -895 -> Infinity Overflow Inexact Rounded
2068
+ xrem255 remainder 39617663E-463704664 -895.290346 -> 3.9617663E-463704657
2069
+ xsub255 subtract 39617663E-463704664 -895.290346 -> 895.290346 Inexact Rounded
2070
+ xadd256 add 5350882.59 -36329829 -> -30978946.4 Inexact Rounded
2071
+ xcom256 compare 5350882.59 -36329829 -> 1
2072
+ xdiv256 divide 5350882.59 -36329829 -> -0.147286204 Inexact Rounded
2073
+ xdvi256 divideint 5350882.59 -36329829 -> -0
2074
+ xmul256 multiply 5350882.59 -36329829 -> -1.94396649E+14 Inexact Rounded
2075
+ xpow256 power 5350882.59 -36329829 -> 9.77006107E-244442546 Inexact Rounded
2076
+ xrem256 remainder 5350882.59 -36329829 -> 5350882.59
2077
+ xsub256 subtract 5350882.59 -36329829 -> 41680711.6 Inexact Rounded
2078
+ xadd257 add 91966.4084E+210382952 166740.46E-42001390 -> 9.19664084E+210382956 Inexact Rounded
2079
+ xcom257 compare 91966.4084E+210382952 166740.46E-42001390 -> 1
2080
+ xdiv257 divide 91966.4084E+210382952 166740.46E-42001390 -> 5.51554244E+252384341 Inexact Rounded
2081
+ xdvi257 divideint 91966.4084E+210382952 166740.46E-42001390 -> NaN Division_impossible
2082
+ xmul257 multiply 91966.4084E+210382952 166740.46E-42001390 -> 1.53345212E+168381572 Inexact Rounded
2083
+ xpow257 power 91966.4084E+210382952 2 -> 8.45782027E+420765913 Inexact Rounded
2084
+ xrem257 remainder 91966.4084E+210382952 166740.46E-42001390 -> NaN Division_impossible
2085
+ xsub257 subtract 91966.4084E+210382952 166740.46E-42001390 -> 9.19664084E+210382956 Inexact Rounded
2086
+ xadd258 add 231899031.E-481759076 726.337100 -> 726.337100 Inexact Rounded
2087
+ xcom258 compare 231899031.E-481759076 726.337100 -> -1
2088
+ xdiv258 divide 231899031.E-481759076 726.337100 -> 3.19271907E-481759071 Inexact Rounded
2089
+ xdvi258 divideint 231899031.E-481759076 726.337100 -> 0
2090
+ xmul258 multiply 231899031.E-481759076 726.337100 -> 1.68436870E-481759065 Inexact Rounded
2091
+ xpow258 power 231899031.E-481759076 726 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2092
+ xrem258 remainder 231899031.E-481759076 726.337100 -> 2.31899031E-481759068
2093
+ xsub258 subtract 231899031.E-481759076 726.337100 -> -726.337100 Inexact Rounded
2094
+ xadd259 add -9611312.33 22109735.9 -> 12498423.6 Inexact Rounded
2095
+ xcom259 compare -9611312.33 22109735.9 -> -1
2096
+ xdiv259 divide -9611312.33 22109735.9 -> -0.434709504 Inexact Rounded
2097
+ xdvi259 divideint -9611312.33 22109735.9 -> -0
2098
+ xmul259 multiply -9611312.33 22109735.9 -> -2.12503577E+14 Inexact Rounded
2099
+ xpow259 power -9611312.33 22109736 -> 6.74530828E+154387481 Inexact Rounded
2100
+ xrem259 remainder -9611312.33 22109735.9 -> -9611312.33
2101
+ xsub259 subtract -9611312.33 22109735.9 -> -31721048.2 Inexact Rounded
2102
+ xadd260 add -5604938.15E-36812542 735937577. -> 735937577 Inexact Rounded
2103
+ xcom260 compare -5604938.15E-36812542 735937577. -> -1
2104
+ xdiv260 divide -5604938.15E-36812542 735937577. -> -7.61605104E-36812545 Inexact Rounded
2105
+ xdvi260 divideint -5604938.15E-36812542 735937577. -> -0
2106
+ xmul260 multiply -5604938.15E-36812542 735937577. -> -4.12488460E-36812527 Inexact Rounded
2107
+ xpow260 power -5604938.15E-36812542 735937577 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2108
+ xrem260 remainder -5604938.15E-36812542 735937577. -> -5.60493815E-36812536
2109
+ xsub260 subtract -5604938.15E-36812542 735937577. -> -735937577 Inexact Rounded
2110
+ xadd261 add 693881413. 260547224E-480281418 -> 693881413 Inexact Rounded
2111
+ xcom261 compare 693881413. 260547224E-480281418 -> 1
2112
+ xdiv261 divide 693881413. 260547224E-480281418 -> 2.66316947E+480281418 Inexact Rounded
2113
+ xdvi261 divideint 693881413. 260547224E-480281418 -> NaN Division_impossible
2114
+ xmul261 multiply 693881413. 260547224E-480281418 -> 1.80788876E-480281401 Inexact Rounded
2115
+ xpow261 power 693881413. 3 -> 3.34084066E+26 Inexact Rounded
2116
+ xrem261 remainder 693881413. 260547224E-480281418 -> NaN Division_impossible
2117
+ xsub261 subtract 693881413. 260547224E-480281418 -> 693881413 Inexact Rounded
2118
+ xadd262 add -34865.7378E-368768024 2297117.88 -> 2297117.88 Inexact Rounded
2119
+ xcom262 compare -34865.7378E-368768024 2297117.88 -> -1
2120
+ xdiv262 divide -34865.7378E-368768024 2297117.88 -> -1.51780360E-368768026 Inexact Rounded
2121
+ xdvi262 divideint -34865.7378E-368768024 2297117.88 -> -0
2122
+ xmul262 multiply -34865.7378E-368768024 2297117.88 -> -8.00907097E-368768014 Inexact Rounded
2123
+ xpow262 power -34865.7378E-368768024 2297118 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2124
+ xrem262 remainder -34865.7378E-368768024 2297117.88 -> -3.48657378E-368768020
2125
+ xsub262 subtract -34865.7378E-368768024 2297117.88 -> -2297117.88 Inexact Rounded
2126
+ xadd263 add 1123.32456 7.86747918E+930888796 -> 7.86747918E+930888796 Inexact Rounded
2127
+ xcom263 compare 1123.32456 7.86747918E+930888796 -> -1
2128
+ xdiv263 divide 1123.32456 7.86747918E+930888796 -> 1.42780748E-930888794 Inexact Rounded
2129
+ xdvi263 divideint 1123.32456 7.86747918E+930888796 -> 0
2130
+ xmul263 multiply 1123.32456 7.86747918E+930888796 -> 8.83773259E+930888799 Inexact Rounded
2131
+ xpow263 power 1123.32456 8 -> 2.53537401E+24 Inexact Rounded
2132
+ xrem263 remainder 1123.32456 7.86747918E+930888796 -> 1123.32456
2133
+ xsub263 subtract 1123.32456 7.86747918E+930888796 -> -7.86747918E+930888796 Inexact Rounded
2134
+ xadd264 add 56.6607465E+467812565 909552512E+764516200 -> 9.09552512E+764516208 Inexact Rounded
2135
+ xcom264 compare 56.6607465E+467812565 909552512E+764516200 -> -1
2136
+ xdiv264 divide 56.6607465E+467812565 909552512E+764516200 -> 6.22951899E-296703643 Inexact Rounded
2137
+ xdvi264 divideint 56.6607465E+467812565 909552512E+764516200 -> 0
2138
+ xmul264 multiply 56.6607465E+467812565 909552512E+764516200 -> Infinity Inexact Overflow Rounded
2139
+ xpow264 power 56.6607465E+467812565 9 -> Infinity Overflow Inexact Rounded
2140
+ xrem264 remainder 56.6607465E+467812565 909552512E+764516200 -> 5.66607465E+467812566
2141
+ xsub264 subtract 56.6607465E+467812565 909552512E+764516200 -> -9.09552512E+764516208 Inexact Rounded
2142
+ xadd265 add -1.85771840E+365552540 -73028339.7 -> -1.85771840E+365552540 Inexact Rounded
2143
+ xcom265 compare -1.85771840E+365552540 -73028339.7 -> -1
2144
+ xdiv265 divide -1.85771840E+365552540 -73028339.7 -> 2.54383217E+365552532 Inexact Rounded
2145
+ xdvi265 divideint -1.85771840E+365552540 -73028339.7 -> NaN Division_impossible
2146
+ xmul265 multiply -1.85771840E+365552540 -73028339.7 -> 1.35666090E+365552548 Inexact Rounded
2147
+ xpow265 power -1.85771840E+365552540 -73028340 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2148
+ xrem265 remainder -1.85771840E+365552540 -73028339.7 -> NaN Division_impossible
2149
+ xsub265 subtract -1.85771840E+365552540 -73028339.7 -> -1.85771840E+365552540 Inexact Rounded
2150
+ xadd266 add 34.1935525 -40767.6450 -> -40733.4514 Inexact Rounded
2151
+ xcom266 compare 34.1935525 -40767.6450 -> 1
2152
+ xdiv266 divide 34.1935525 -40767.6450 -> -0.000838742402 Inexact Rounded
2153
+ xdvi266 divideint 34.1935525 -40767.6450 -> -0
2154
+ xmul266 multiply 34.1935525 -40767.6450 -> -1393990.61 Inexact Rounded
2155
+ xpow266 power 34.1935525 -40768 -> 1.45174210E-62536 Inexact Rounded
2156
+ xrem266 remainder 34.1935525 -40767.6450 -> 34.1935525
2157
+ xsub266 subtract 34.1935525 -40767.6450 -> 40801.8386 Inexact Rounded
2158
+ xadd267 add 26.0009168E+751618294 -304019.929 -> 2.60009168E+751618295 Inexact Rounded
2159
+ xcom267 compare 26.0009168E+751618294 -304019.929 -> 1
2160
+ xdiv267 divide 26.0009168E+751618294 -304019.929 -> -8.55237250E+751618289 Inexact Rounded
2161
+ xdvi267 divideint 26.0009168E+751618294 -304019.929 -> NaN Division_impossible
2162
+ xmul267 multiply 26.0009168E+751618294 -304019.929 -> -7.90479688E+751618300 Inexact Rounded
2163
+ xpow267 power 26.0009168E+751618294 -304020 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2164
+ xrem267 remainder 26.0009168E+751618294 -304019.929 -> NaN Division_impossible
2165
+ xsub267 subtract 26.0009168E+751618294 -304019.929 -> 2.60009168E+751618295 Inexact Rounded
2166
+ xadd268 add -58.4853072E+588540055 -4647.3205 -> -5.84853072E+588540056 Inexact Rounded
2167
+ xcom268 compare -58.4853072E+588540055 -4647.3205 -> -1
2168
+ xdiv268 divide -58.4853072E+588540055 -4647.3205 -> 1.25847372E+588540053 Inexact Rounded
2169
+ xdvi268 divideint -58.4853072E+588540055 -4647.3205 -> NaN Division_impossible
2170
+ xmul268 multiply -58.4853072E+588540055 -4647.3205 -> 2.71799967E+588540060 Inexact Rounded
2171
+ xpow268 power -58.4853072E+588540055 -4647 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2172
+ xrem268 remainder -58.4853072E+588540055 -4647.3205 -> NaN Division_impossible
2173
+ xsub268 subtract -58.4853072E+588540055 -4647.3205 -> -5.84853072E+588540056 Inexact Rounded
2174
+ xadd269 add 51.025101 -4467691.57 -> -4467640.54 Inexact Rounded
2175
+ xcom269 compare 51.025101 -4467691.57 -> 1
2176
+ xdiv269 divide 51.025101 -4467691.57 -> -0.0000114209095 Inexact Rounded
2177
+ xdvi269 divideint 51.025101 -4467691.57 -> -0
2178
+ xmul269 multiply 51.025101 -4467691.57 -> -227964414 Inexact Rounded
2179
+ xpow269 power 51.025101 -4467692 -> 4.49462589E-7629853 Inexact Rounded
2180
+ xrem269 remainder 51.025101 -4467691.57 -> 51.025101
2181
+ xsub269 subtract 51.025101 -4467691.57 -> 4467742.60 Inexact Rounded
2182
+ xadd270 add -2214.76582 379785372E+223117572 -> 3.79785372E+223117580 Inexact Rounded
2183
+ xcom270 compare -2214.76582 379785372E+223117572 -> -1
2184
+ xdiv270 divide -2214.76582 379785372E+223117572 -> -5.83162487E-223117578 Inexact Rounded
2185
+ xdvi270 divideint -2214.76582 379785372E+223117572 -> -0
2186
+ xmul270 multiply -2214.76582 379785372E+223117572 -> -8.41135661E+223117583 Inexact Rounded
2187
+ xpow270 power -2214.76582 4 -> 2.40608658E+13 Inexact Rounded
2188
+ xrem270 remainder -2214.76582 379785372E+223117572 -> -2214.76582
2189
+ xsub270 subtract -2214.76582 379785372E+223117572 -> -3.79785372E+223117580 Inexact Rounded
2190
+ xadd271 add -2564.75207E-841443929 -653498187 -> -653498187 Inexact Rounded
2191
+ xcom271 compare -2564.75207E-841443929 -653498187 -> 1
2192
+ xdiv271 divide -2564.75207E-841443929 -653498187 -> 3.92465063E-841443935 Inexact Rounded
2193
+ xdvi271 divideint -2564.75207E-841443929 -653498187 -> 0
2194
+ xmul271 multiply -2564.75207E-841443929 -653498187 -> 1.67606083E-841443917 Inexact Rounded
2195
+ xpow271 power -2564.75207E-841443929 -653498187 -> -Infinity Overflow Inexact Rounded
2196
+ xrem271 remainder -2564.75207E-841443929 -653498187 -> -2.56475207E-841443926
2197
+ xsub271 subtract -2564.75207E-841443929 -653498187 -> 653498187 Inexact Rounded
2198
+ xadd272 add 513115529. 27775075.6E+217133352 -> 2.77750756E+217133359 Inexact Rounded
2199
+ xcom272 compare 513115529. 27775075.6E+217133352 -> -1
2200
+ xdiv272 divide 513115529. 27775075.6E+217133352 -> 1.84739562E-217133351 Inexact Rounded
2201
+ xdvi272 divideint 513115529. 27775075.6E+217133352 -> 0
2202
+ xmul272 multiply 513115529. 27775075.6E+217133352 -> 1.42518226E+217133368 Inexact Rounded
2203
+ xpow272 power 513115529. 3 -> 1.35096928E+26 Inexact Rounded
2204
+ xrem272 remainder 513115529. 27775075.6E+217133352 -> 513115529
2205
+ xsub272 subtract 513115529. 27775075.6E+217133352 -> -2.77750756E+217133359 Inexact Rounded
2206
+ xadd273 add -247157.208 -532990.453 -> -780147.661
2207
+ xcom273 compare -247157.208 -532990.453 -> 1
2208
+ xdiv273 divide -247157.208 -532990.453 -> 0.463717890 Inexact Rounded
2209
+ xdvi273 divideint -247157.208 -532990.453 -> 0
2210
+ xmul273 multiply -247157.208 -532990.453 -> 1.31732432E+11 Inexact Rounded
2211
+ xpow273 power -247157.208 -532990 -> 1.48314033E-2874401 Inexact Rounded
2212
+ xrem273 remainder -247157.208 -532990.453 -> -247157.208
2213
+ xsub273 subtract -247157.208 -532990.453 -> 285833.245
2214
+ xadd274 add 40.2490764E-339482253 7626.85442E+594264540 -> 7.62685442E+594264543 Inexact Rounded
2215
+ xcom274 compare 40.2490764E-339482253 7626.85442E+594264540 -> -1
2216
+ xdiv274 divide 40.2490764E-339482253 7626.85442E+594264540 -> 5.27728395E-933746796 Inexact Rounded
2217
+ xdvi274 divideint 40.2490764E-339482253 7626.85442E+594264540 -> 0
2218
+ xmul274 multiply 40.2490764E-339482253 7626.85442E+594264540 -> 3.06973846E+254782292 Inexact Rounded
2219
+ xpow274 power 40.2490764E-339482253 8 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2220
+ xrem274 remainder 40.2490764E-339482253 7626.85442E+594264540 -> 4.02490764E-339482252
2221
+ xsub274 subtract 40.2490764E-339482253 7626.85442E+594264540 -> -7.62685442E+594264543 Inexact Rounded
2222
+ xadd275 add -1156008.8 -8870382.36 -> -10026391.2 Inexact Rounded
2223
+ xcom275 compare -1156008.8 -8870382.36 -> 1
2224
+ xdiv275 divide -1156008.8 -8870382.36 -> 0.130322319 Inexact Rounded
2225
+ xdvi275 divideint -1156008.8 -8870382.36 -> 0
2226
+ xmul275 multiply -1156008.8 -8870382.36 -> 1.02542401E+13 Inexact Rounded
2227
+ xpow275 power -1156008.8 -8870382 -> 4.32494996E-53780782 Inexact Rounded
2228
+ xrem275 remainder -1156008.8 -8870382.36 -> -1156008.80
2229
+ xsub275 subtract -1156008.8 -8870382.36 -> 7714373.56
2230
+ xadd276 add 880097928. -52455011.1E+204538218 -> -5.24550111E+204538225 Inexact Rounded
2231
+ xcom276 compare 880097928. -52455011.1E+204538218 -> 1
2232
+ xdiv276 divide 880097928. -52455011.1E+204538218 -> -1.67781478E-204538217 Inexact Rounded
2233
+ xdvi276 divideint 880097928. -52455011.1E+204538218 -> -0
2234
+ xmul276 multiply 880097928. -52455011.1E+204538218 -> -4.61655466E+204538234 Inexact Rounded
2235
+ xpow276 power 880097928. -5 -> 1.89384751E-45 Inexact Rounded
2236
+ xrem276 remainder 880097928. -52455011.1E+204538218 -> 880097928
2237
+ xsub276 subtract 880097928. -52455011.1E+204538218 -> 5.24550111E+204538225 Inexact Rounded
2238
+ xadd277 add 5796.2524 34458329.7E+832129426 -> 3.44583297E+832129433 Inexact Rounded
2239
+ xcom277 compare 5796.2524 34458329.7E+832129426 -> -1
2240
+ xdiv277 divide 5796.2524 34458329.7E+832129426 -> 1.68210486E-832129430 Inexact Rounded
2241
+ xdvi277 divideint 5796.2524 34458329.7E+832129426 -> 0
2242
+ xmul277 multiply 5796.2524 34458329.7E+832129426 -> 1.99729176E+832129437 Inexact Rounded
2243
+ xpow277 power 5796.2524 3 -> 1.94734037E+11 Inexact Rounded
2244
+ xrem277 remainder 5796.2524 34458329.7E+832129426 -> 5796.2524
2245
+ xsub277 subtract 5796.2524 34458329.7E+832129426 -> -3.44583297E+832129433 Inexact Rounded
2246
+ xadd278 add 27.1000923E-218032223 -45.0198341 -> -45.0198341 Inexact Rounded
2247
+ xcom278 compare 27.1000923E-218032223 -45.0198341 -> 1
2248
+ xdiv278 divide 27.1000923E-218032223 -45.0198341 -> -6.01958955E-218032224 Inexact Rounded
2249
+ xdvi278 divideint 27.1000923E-218032223 -45.0198341 -> -0
2250
+ xmul278 multiply 27.1000923E-218032223 -45.0198341 -> -1.22004166E-218032220 Inexact Rounded
2251
+ xpow278 power 27.1000923E-218032223 -45 -> Infinity Overflow Inexact Rounded
2252
+ xrem278 remainder 27.1000923E-218032223 -45.0198341 -> 2.71000923E-218032222
2253
+ xsub278 subtract 27.1000923E-218032223 -45.0198341 -> 45.0198341 Inexact Rounded
2254
+ xadd279 add 42643477.8 26118465E-730390549 -> 42643477.8 Inexact Rounded
2255
+ xcom279 compare 42643477.8 26118465E-730390549 -> 1
2256
+ xdiv279 divide 42643477.8 26118465E-730390549 -> 1.63269464E+730390549 Inexact Rounded
2257
+ xdvi279 divideint 42643477.8 26118465E-730390549 -> NaN Division_impossible
2258
+ xmul279 multiply 42643477.8 26118465E-730390549 -> 1.11378218E-730390534 Inexact Rounded
2259
+ xpow279 power 42643477.8 3 -> 7.75457230E+22 Inexact Rounded
2260
+ xrem279 remainder 42643477.8 26118465E-730390549 -> NaN Division_impossible
2261
+ xsub279 subtract 42643477.8 26118465E-730390549 -> 42643477.8 Inexact Rounded
2262
+ xadd280 add -31918.9176E-163031657 -21.5422824E-807317258 -> -3.19189176E-163031653 Inexact Rounded
2263
+ xcom280 compare -31918.9176E-163031657 -21.5422824E-807317258 -> -1
2264
+ xdiv280 divide -31918.9176E-163031657 -21.5422824E-807317258 -> 1.48168690E+644285604 Inexact Rounded
2265
+ xdvi280 divideint -31918.9176E-163031657 -21.5422824E-807317258 -> NaN Division_impossible
2266
+ xmul280 multiply -31918.9176E-163031657 -21.5422824E-807317258 -> 6.87606337E-970348910 Inexact Rounded
2267
+ xpow280 power -31918.9176E-163031657 -2 -> 9.81530250E+326063304 Inexact Rounded
2268
+ xrem280 remainder -31918.9176E-163031657 -21.5422824E-807317258 -> NaN Division_impossible
2269
+ xsub280 subtract -31918.9176E-163031657 -21.5422824E-807317258 -> -3.19189176E-163031653 Inexact Rounded
2270
+ xadd281 add 84224841.0 2.62548255E+647087608 -> 2.62548255E+647087608 Inexact Rounded
2271
+ xcom281 compare 84224841.0 2.62548255E+647087608 -> -1
2272
+ xdiv281 divide 84224841.0 2.62548255E+647087608 -> 3.20797565E-647087601 Inexact Rounded
2273
+ xdvi281 divideint 84224841.0 2.62548255E+647087608 -> 0
2274
+ xmul281 multiply 84224841.0 2.62548255E+647087608 -> 2.21130850E+647087616 Inexact Rounded
2275
+ xpow281 power 84224841.0 3 -> 5.97476185E+23 Inexact Rounded
2276
+ xrem281 remainder 84224841.0 2.62548255E+647087608 -> 84224841.0
2277
+ xsub281 subtract 84224841.0 2.62548255E+647087608 -> -2.62548255E+647087608 Inexact Rounded
2278
+ xadd282 add -64413698.9 -6674.1055E-701047852 -> -64413698.9 Inexact Rounded
2279
+ xcom282 compare -64413698.9 -6674.1055E-701047852 -> -1
2280
+ xdiv282 divide -64413698.9 -6674.1055E-701047852 -> 9.65128569E+701047855 Inexact Rounded
2281
+ xdvi282 divideint -64413698.9 -6674.1055E-701047852 -> NaN Division_impossible
2282
+ xmul282 multiply -64413698.9 -6674.1055E-701047852 -> 4.29903822E-701047841 Inexact Rounded
2283
+ xpow282 power -64413698.9 -7 -> -2.17346338E-55 Inexact Rounded
2284
+ xrem282 remainder -64413698.9 -6674.1055E-701047852 -> NaN Division_impossible
2285
+ xsub282 subtract -64413698.9 -6674.1055E-701047852 -> -64413698.9 Inexact Rounded
2286
+ xadd283 add -62.5059208 9.5795779E-898350012 -> -62.5059208 Inexact Rounded
2287
+ xcom283 compare -62.5059208 9.5795779E-898350012 -> -1
2288
+ xdiv283 divide -62.5059208 9.5795779E-898350012 -> -6.52491388E+898350012 Inexact Rounded
2289
+ xdvi283 divideint -62.5059208 9.5795779E-898350012 -> NaN Division_impossible
2290
+ xmul283 multiply -62.5059208 9.5795779E-898350012 -> -5.98780338E-898350010 Inexact Rounded
2291
+ xpow283 power -62.5059208 10 -> 9.10356659E+17 Inexact Rounded
2292
+ xrem283 remainder -62.5059208 9.5795779E-898350012 -> NaN Division_impossible
2293
+ xsub283 subtract -62.5059208 9.5795779E-898350012 -> -62.5059208 Inexact Rounded
2294
+ xadd284 add 9090950.80 436.400932 -> 9091387.20 Inexact Rounded
2295
+ xcom284 compare 9090950.80 436.400932 -> 1
2296
+ xdiv284 divide 9090950.80 436.400932 -> 20831.6485 Inexact Rounded
2297
+ xdvi284 divideint 9090950.80 436.400932 -> 20831
2298
+ xmul284 multiply 9090950.80 436.400932 -> 3.96729940E+9 Inexact Rounded
2299
+ xpow284 power 9090950.80 436 -> 8.98789557E+3033 Inexact Rounded
2300
+ xrem284 remainder 9090950.80 436.400932 -> 282.985508
2301
+ xsub284 subtract 9090950.80 436.400932 -> 9090514.40 Inexact Rounded
2302
+ xadd285 add -89833825.7E+329205393 -779430.194 -> -8.98338257E+329205400 Inexact Rounded
2303
+ xcom285 compare -89833825.7E+329205393 -779430.194 -> -1
2304
+ xdiv285 divide -89833825.7E+329205393 -779430.194 -> 1.15255768E+329205395 Inexact Rounded
2305
+ xdvi285 divideint -89833825.7E+329205393 -779430.194 -> NaN Division_impossible
2306
+ xmul285 multiply -89833825.7E+329205393 -779430.194 -> 7.00191962E+329205406 Inexact Rounded
2307
+ xpow285 power -89833825.7E+329205393 -779430 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2308
+ xrem285 remainder -89833825.7E+329205393 -779430.194 -> NaN Division_impossible
2309
+ xsub285 subtract -89833825.7E+329205393 -779430.194 -> -8.98338257E+329205400 Inexact Rounded
2310
+ xadd286 add -714562.019E+750205688 704079764 -> -7.14562019E+750205693 Inexact Rounded
2311
+ xcom286 compare -714562.019E+750205688 704079764 -> -1
2312
+ xdiv286 divide -714562.019E+750205688 704079764 -> -1.01488788E+750205685 Inexact Rounded
2313
+ xdvi286 divideint -714562.019E+750205688 704079764 -> NaN Division_impossible
2314
+ xmul286 multiply -714562.019E+750205688 704079764 -> -5.03108658E+750205702 Inexact Rounded
2315
+ xpow286 power -714562.019E+750205688 704079764 -> Infinity Overflow Inexact Rounded
2316
+ xrem286 remainder -714562.019E+750205688 704079764 -> NaN Division_impossible
2317
+ xsub286 subtract -714562.019E+750205688 704079764 -> -7.14562019E+750205693 Inexact Rounded
2318
+ xadd287 add -584537670. 31139.7737E-146687560 -> -584537670 Inexact Rounded
2319
+ xcom287 compare -584537670. 31139.7737E-146687560 -> -1
2320
+ xdiv287 divide -584537670. 31139.7737E-146687560 -> -1.87714168E+146687564 Inexact Rounded
2321
+ xdvi287 divideint -584537670. 31139.7737E-146687560 -> NaN Division_impossible
2322
+ xmul287 multiply -584537670. 31139.7737E-146687560 -> -1.82023708E-146687547 Inexact Rounded
2323
+ xpow287 power -584537670. 3 -> -1.99727337E+26 Inexact Rounded
2324
+ xrem287 remainder -584537670. 31139.7737E-146687560 -> NaN Division_impossible
2325
+ xsub287 subtract -584537670. 31139.7737E-146687560 -> -584537670 Inexact Rounded
2326
+ xadd288 add -4.18074650E-858746879 571035.277E-279409165 -> 5.71035277E-279409160 Inexact Rounded
2327
+ xcom288 compare -4.18074650E-858746879 571035.277E-279409165 -> -1
2328
+ xdiv288 divide -4.18074650E-858746879 571035.277E-279409165 -> -7.32134540E-579337720 Inexact Rounded
2329
+ xdvi288 divideint -4.18074650E-858746879 571035.277E-279409165 -> -0
2330
+ xmul288 multiply -4.18074650E-858746879 571035.277E-279409165 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2331
+ xpow288 power -4.18074650E-858746879 6 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2332
+ xrem288 remainder -4.18074650E-858746879 571035.277E-279409165 -> -4.18074650E-858746879
2333
+ xsub288 subtract -4.18074650E-858746879 571035.277E-279409165 -> -5.71035277E-279409160 Inexact Rounded
2334
+ xadd289 add 5.15309635 -695649.219E+451948183 -> -6.95649219E+451948188 Inexact Rounded
2335
+ xcom289 compare 5.15309635 -695649.219E+451948183 -> 1
2336
+ xdiv289 divide 5.15309635 -695649.219E+451948183 -> -7.40760747E-451948189 Inexact Rounded
2337
+ xdvi289 divideint 5.15309635 -695649.219E+451948183 -> -0
2338
+ xmul289 multiply 5.15309635 -695649.219E+451948183 -> -3.58474745E+451948189 Inexact Rounded
2339
+ xpow289 power 5.15309635 -7 -> 0.0000103638749 Inexact Rounded
2340
+ xrem289 remainder 5.15309635 -695649.219E+451948183 -> 5.15309635
2341
+ xsub289 subtract 5.15309635 -695649.219E+451948183 -> 6.95649219E+451948188 Inexact Rounded
2342
+ xadd290 add -940030153.E+83797657 -4.11510193 -> -9.40030153E+83797665 Inexact Rounded
2343
+ xcom290 compare -940030153.E+83797657 -4.11510193 -> -1
2344
+ xdiv290 divide -940030153.E+83797657 -4.11510193 -> 2.28434233E+83797665 Inexact Rounded
2345
+ xdvi290 divideint -940030153.E+83797657 -4.11510193 -> NaN Division_impossible
2346
+ xmul290 multiply -940030153.E+83797657 -4.11510193 -> 3.86831990E+83797666 Inexact Rounded
2347
+ xpow290 power -940030153.E+83797657 -4 -> 1.28065710E-335190664 Inexact Rounded
2348
+ xrem290 remainder -940030153.E+83797657 -4.11510193 -> NaN Division_impossible
2349
+ xsub290 subtract -940030153.E+83797657 -4.11510193 -> -9.40030153E+83797665 Inexact Rounded
2350
+ xadd291 add 89088.9683E+587739290 1.31932110 -> 8.90889683E+587739294 Inexact Rounded
2351
+ xcom291 compare 89088.9683E+587739290 1.31932110 -> 1
2352
+ xdiv291 divide 89088.9683E+587739290 1.31932110 -> 6.75263727E+587739294 Inexact Rounded
2353
+ xdvi291 divideint 89088.9683E+587739290 1.31932110 -> NaN Division_impossible
2354
+ xmul291 multiply 89088.9683E+587739290 1.31932110 -> 1.17536956E+587739295 Inexact Rounded
2355
+ xpow291 power 89088.9683E+587739290 1 -> 8.90889683E+587739294
2356
+ xrem291 remainder 89088.9683E+587739290 1.31932110 -> NaN Division_impossible
2357
+ xsub291 subtract 89088.9683E+587739290 1.31932110 -> 8.90889683E+587739294 Inexact Rounded
2358
+ xadd292 add 3336750 6.47961126 -> 3336756.48 Inexact Rounded
2359
+ xcom292 compare 3336750 6.47961126 -> 1
2360
+ xdiv292 divide 3336750 6.47961126 -> 514961.448 Inexact Rounded
2361
+ xdvi292 divideint 3336750 6.47961126 -> 514961
2362
+ xmul292 multiply 3336750 6.47961126 -> 21620842.9 Inexact Rounded
2363
+ xpow292 power 3336750 6 -> 1.38019997E+39 Inexact Rounded
2364
+ xrem292 remainder 3336750 6.47961126 -> 2.90593914
2365
+ xsub292 subtract 3336750 6.47961126 -> 3336743.52 Inexact Rounded
2366
+ xadd293 add 904654622. 692065270.E+329081915 -> 6.92065270E+329081923 Inexact Rounded
2367
+ xcom293 compare 904654622. 692065270.E+329081915 -> -1
2368
+ xdiv293 divide 904654622. 692065270.E+329081915 -> 1.30718107E-329081915 Inexact Rounded
2369
+ xdvi293 divideint 904654622. 692065270.E+329081915 -> 0
2370
+ xmul293 multiply 904654622. 692065270.E+329081915 -> 6.26080045E+329081932 Inexact Rounded
2371
+ xpow293 power 904654622. 7 -> 4.95883485E+62 Inexact Rounded
2372
+ xrem293 remainder 904654622. 692065270.E+329081915 -> 904654622
2373
+ xsub293 subtract 904654622. 692065270.E+329081915 -> -6.92065270E+329081923 Inexact Rounded
2374
+ xadd294 add 304804380 -4681.23698 -> 304799699 Inexact Rounded
2375
+ xcom294 compare 304804380 -4681.23698 -> 1
2376
+ xdiv294 divide 304804380 -4681.23698 -> -65111.9312 Inexact Rounded
2377
+ xdvi294 divideint 304804380 -4681.23698 -> -65111
2378
+ xmul294 multiply 304804380 -4681.23698 -> -1.42686154E+12 Inexact Rounded
2379
+ xpow294 power 304804380 -4681 -> 1.98037102E-39714 Inexact Rounded
2380
+ xrem294 remainder 304804380 -4681.23698 -> 4358.99522
2381
+ xsub294 subtract 304804380 -4681.23698 -> 304809061 Inexact Rounded
2382
+ xadd295 add 674.55569 -82981.2684E+852890752 -> -8.29812684E+852890756 Inexact Rounded
2383
+ xcom295 compare 674.55569 -82981.2684E+852890752 -> 1
2384
+ xdiv295 divide 674.55569 -82981.2684E+852890752 -> -8.12901156E-852890755 Inexact Rounded
2385
+ xdvi295 divideint 674.55569 -82981.2684E+852890752 -> -0
2386
+ xmul295 multiply 674.55569 -82981.2684E+852890752 -> -5.59754868E+852890759 Inexact Rounded
2387
+ xpow295 power 674.55569 -8 -> 2.33269265E-23 Inexact Rounded
2388
+ xrem295 remainder 674.55569 -82981.2684E+852890752 -> 674.55569
2389
+ xsub295 subtract 674.55569 -82981.2684E+852890752 -> 8.29812684E+852890756 Inexact Rounded
2390
+ xadd296 add -5111.51025E-108006096 5448870.4E+279212255 -> 5.44887040E+279212261 Inexact Rounded
2391
+ xcom296 compare -5111.51025E-108006096 5448870.4E+279212255 -> -1
2392
+ xdiv296 divide -5111.51025E-108006096 5448870.4E+279212255 -> -9.38086222E-387218355 Inexact Rounded
2393
+ xdvi296 divideint -5111.51025E-108006096 5448870.4E+279212255 -> -0
2394
+ xmul296 multiply -5111.51025E-108006096 5448870.4E+279212255 -> -2.78519569E+171206169 Inexact Rounded
2395
+ xpow296 power -5111.51025E-108006096 5 -> -3.48936323E-540030462 Inexact Rounded
2396
+ xrem296 remainder -5111.51025E-108006096 5448870.4E+279212255 -> -5.11151025E-108006093
2397
+ xsub296 subtract -5111.51025E-108006096 5448870.4E+279212255 -> -5.44887040E+279212261 Inexact Rounded
2398
+ xadd297 add -2623.45068 -466463938. -> -466466561 Inexact Rounded
2399
+ xcom297 compare -2623.45068 -466463938. -> 1
2400
+ xdiv297 divide -2623.45068 -466463938. -> 0.00000562412325 Inexact Rounded
2401
+ xdvi297 divideint -2623.45068 -466463938. -> 0
2402
+ xmul297 multiply -2623.45068 -466463938. -> 1.22374514E+12 Inexact Rounded
2403
+ xpow297 power -2623.45068 -466463938 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2404
+ xrem297 remainder -2623.45068 -466463938. -> -2623.45068
2405
+ xsub297 subtract -2623.45068 -466463938. -> 466461315 Inexact Rounded
2406
+ xadd298 add 299350.435 3373.33551 -> 302723.771 Inexact Rounded
2407
+ xcom298 compare 299350.435 3373.33551 -> 1
2408
+ xdiv298 divide 299350.435 3373.33551 -> 88.7401903 Inexact Rounded
2409
+ xdvi298 divideint 299350.435 3373.33551 -> 88
2410
+ xmul298 multiply 299350.435 3373.33551 -> 1.00980945E+9 Inexact Rounded
2411
+ xpow298 power 299350.435 3373 -> 1.42817370E+18471 Inexact Rounded
2412
+ xrem298 remainder 299350.435 3373.33551 -> 2496.91012
2413
+ xsub298 subtract 299350.435 3373.33551 -> 295977.099 Inexact Rounded
2414
+ xadd299 add -6589947.80 -2448.75933E-591549734 -> -6589947.80 Inexact Rounded
2415
+ xcom299 compare -6589947.80 -2448.75933E-591549734 -> -1
2416
+ xdiv299 divide -6589947.80 -2448.75933E-591549734 -> 2.69113739E+591549737 Inexact Rounded
2417
+ xdvi299 divideint -6589947.80 -2448.75933E-591549734 -> NaN Division_impossible
2418
+ xmul299 multiply -6589947.80 -2448.75933E-591549734 -> 1.61371962E-591549724 Inexact Rounded
2419
+ xpow299 power -6589947.80 -2 -> 2.30269305E-14 Inexact Rounded
2420
+ xrem299 remainder -6589947.80 -2448.75933E-591549734 -> NaN Division_impossible
2421
+ xsub299 subtract -6589947.80 -2448.75933E-591549734 -> -6589947.80 Inexact Rounded
2422
+ xadd300 add 3774.5358E-491090520 173.060090 -> 173.060090 Inexact Rounded
2423
+ xcom300 compare 3774.5358E-491090520 173.060090 -> -1
2424
+ xdiv300 divide 3774.5358E-491090520 173.060090 -> 2.18105503E-491090519 Inexact Rounded
2425
+ xdvi300 divideint 3774.5358E-491090520 173.060090 -> 0
2426
+ xmul300 multiply 3774.5358E-491090520 173.060090 -> 6.53221505E-491090515 Inexact Rounded
2427
+ xpow300 power 3774.5358E-491090520 173 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2428
+ xrem300 remainder 3774.5358E-491090520 173.060090 -> 3.7745358E-491090517
2429
+ xsub300 subtract 3774.5358E-491090520 173.060090 -> -173.060090 Inexact Rounded
2430
+ xadd301 add -13.6783690 -453.610117 -> -467.288486 Rounded
2431
+ xcom301 compare -13.6783690 -453.610117 -> 1
2432
+ xdiv301 divide -13.6783690 -453.610117 -> 0.0301544619 Inexact Rounded
2433
+ xdvi301 divideint -13.6783690 -453.610117 -> 0
2434
+ xmul301 multiply -13.6783690 -453.610117 -> 6204.64656 Inexact Rounded
2435
+ xpow301 power -13.6783690 -454 -> 1.73948535E-516 Inexact Rounded
2436
+ xrem301 remainder -13.6783690 -453.610117 -> -13.6783690
2437
+ xsub301 subtract -13.6783690 -453.610117 -> 439.931748 Rounded
2438
+ xadd302 add -990100927.E-615244634 223801.421E+247632618 -> 2.23801421E+247632623 Inexact Rounded
2439
+ xcom302 compare -990100927.E-615244634 223801.421E+247632618 -> -1
2440
+ xdiv302 divide -990100927.E-615244634 223801.421E+247632618 -> -4.42401537E-862877249 Inexact Rounded
2441
+ xdvi302 divideint -990100927.E-615244634 223801.421E+247632618 -> -0
2442
+ xmul302 multiply -990100927.E-615244634 223801.421E+247632618 -> -2.21585994E-367612002 Inexact Rounded
2443
+ xpow302 power -990100927.E-615244634 2 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2444
+ xrem302 remainder -990100927.E-615244634 223801.421E+247632618 -> -9.90100927E-615244626
2445
+ xsub302 subtract -990100927.E-615244634 223801.421E+247632618 -> -2.23801421E+247632623 Inexact Rounded
2446
+ xadd303 add 1275.10292 -667965353 -> -667964078 Inexact Rounded
2447
+ xcom303 compare 1275.10292 -667965353 -> 1
2448
+ xdiv303 divide 1275.10292 -667965353 -> -0.00000190893572 Inexact Rounded
2449
+ xdvi303 divideint 1275.10292 -667965353 -> -0
2450
+ xmul303 multiply 1275.10292 -667965353 -> -8.51724572E+11 Inexact Rounded
2451
+ xpow303 power 1275.10292 -667965353 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2452
+ xrem303 remainder 1275.10292 -667965353 -> 1275.10292
2453
+ xsub303 subtract 1275.10292 -667965353 -> 667966628 Inexact Rounded
2454
+ xadd304 add -8.76375480E-596792197 992.077361 -> 992.077361 Inexact Rounded
2455
+ xcom304 compare -8.76375480E-596792197 992.077361 -> -1
2456
+ xdiv304 divide -8.76375480E-596792197 992.077361 -> -8.83374134E-596792200 Inexact Rounded
2457
+ xdvi304 divideint -8.76375480E-596792197 992.077361 -> -0
2458
+ xmul304 multiply -8.76375480E-596792197 992.077361 -> -8.69432273E-596792194 Inexact Rounded
2459
+ xpow304 power -8.76375480E-596792197 992 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2460
+ xrem304 remainder -8.76375480E-596792197 992.077361 -> -8.76375480E-596792197
2461
+ xsub304 subtract -8.76375480E-596792197 992.077361 -> -992.077361 Inexact Rounded
2462
+ xadd305 add 953.976935E+385444720 96503.3378 -> 9.53976935E+385444722 Inexact Rounded
2463
+ xcom305 compare 953.976935E+385444720 96503.3378 -> 1
2464
+ xdiv305 divide 953.976935E+385444720 96503.3378 -> 9.88542942E+385444717 Inexact Rounded
2465
+ xdvi305 divideint 953.976935E+385444720 96503.3378 -> NaN Division_impossible
2466
+ xmul305 multiply 953.976935E+385444720 96503.3378 -> 9.20619584E+385444727 Inexact Rounded
2467
+ xpow305 power 953.976935E+385444720 96503 -> Infinity Overflow Inexact Rounded
2468
+ xrem305 remainder 953.976935E+385444720 96503.3378 -> NaN Division_impossible
2469
+ xsub305 subtract 953.976935E+385444720 96503.3378 -> 9.53976935E+385444722 Inexact Rounded
2470
+ xadd306 add 213577152 -986710073E+31900046 -> -9.86710073E+31900054 Inexact Rounded
2471
+ xcom306 compare 213577152 -986710073E+31900046 -> 1
2472
+ xdiv306 divide 213577152 -986710073E+31900046 -> -2.16453807E-31900047 Inexact Rounded
2473
+ xdvi306 divideint 213577152 -986710073E+31900046 -> -0
2474
+ xmul306 multiply 213577152 -986710073E+31900046 -> -2.10738727E+31900063 Inexact Rounded
2475
+ xpow306 power 213577152 -10 -> 5.06351487E-84 Inexact Rounded
2476
+ xrem306 remainder 213577152 -986710073E+31900046 -> 213577152
2477
+ xsub306 subtract 213577152 -986710073E+31900046 -> 9.86710073E+31900054 Inexact Rounded
2478
+ xadd307 add 91393.9398E-323439228 -135.701000 -> -135.701000 Inexact Rounded
2479
+ xcom307 compare 91393.9398E-323439228 -135.701000 -> 1
2480
+ xdiv307 divide 91393.9398E-323439228 -135.701000 -> -6.73494962E-323439226 Inexact Rounded
2481
+ xdvi307 divideint 91393.9398E-323439228 -135.701000 -> -0
2482
+ xmul307 multiply 91393.9398E-323439228 -135.701000 -> -1.24022490E-323439221 Inexact Rounded
2483
+ xpow307 power 91393.9398E-323439228 -136 -> Infinity Overflow Inexact Rounded
2484
+ xrem307 remainder 91393.9398E-323439228 -135.701000 -> 9.13939398E-323439224
2485
+ xsub307 subtract 91393.9398E-323439228 -135.701000 -> 135.701000 Inexact Rounded
2486
+ xadd308 add -396.503557 45757264.E-254363788 -> -396.503557 Inexact Rounded
2487
+ xcom308 compare -396.503557 45757264.E-254363788 -> -1
2488
+ xdiv308 divide -396.503557 45757264.E-254363788 -> -8.66536856E+254363782 Inexact Rounded
2489
+ xdvi308 divideint -396.503557 45757264.E-254363788 -> NaN Division_impossible
2490
+ xmul308 multiply -396.503557 45757264.E-254363788 -> -1.81429179E-254363778 Inexact Rounded
2491
+ xpow308 power -396.503557 5 -> -9.80021128E+12 Inexact Rounded
2492
+ xrem308 remainder -396.503557 45757264.E-254363788 -> NaN Division_impossible
2493
+ xsub308 subtract -396.503557 45757264.E-254363788 -> -396.503557 Inexact Rounded
2494
+ xadd309 add 59807846.1 1.53345254 -> 59807847.6 Inexact Rounded
2495
+ xcom309 compare 59807846.1 1.53345254 -> 1
2496
+ xdiv309 divide 59807846.1 1.53345254 -> 39002084.9 Inexact Rounded
2497
+ xdvi309 divideint 59807846.1 1.53345254 -> 39002084
2498
+ xmul309 multiply 59807846.1 1.53345254 -> 91712493.5 Inexact Rounded
2499
+ xpow309 power 59807846.1 2 -> 3.57697846E+15 Inexact Rounded
2500
+ xrem309 remainder 59807846.1 1.53345254 -> 1.32490664
2501
+ xsub309 subtract 59807846.1 1.53345254 -> 59807844.6 Inexact Rounded
2502
+ xadd310 add -8046158.45 8.3635397 -> -8046150.09 Inexact Rounded
2503
+ xcom310 compare -8046158.45 8.3635397 -> -1
2504
+ xdiv310 divide -8046158.45 8.3635397 -> -962051.803 Inexact Rounded
2505
+ xdvi310 divideint -8046158.45 8.3635397 -> -962051
2506
+ xmul310 multiply -8046158.45 8.3635397 -> -67294365.6 Inexact Rounded
2507
+ xpow310 power -8046158.45 8 -> 1.75674467E+55 Inexact Rounded
2508
+ xrem310 remainder -8046158.45 8.3635397 -> -6.7180753
2509
+ xsub310 subtract -8046158.45 8.3635397 -> -8046166.81 Inexact Rounded
2510
+ xadd311 add 55.1123381E+50627250 -94.0355047E-162540316 -> 5.51123381E+50627251 Inexact Rounded
2511
+ xcom311 compare 55.1123381E+50627250 -94.0355047E-162540316 -> 1
2512
+ xdiv311 divide 55.1123381E+50627250 -94.0355047E-162540316 -> -5.86080101E+213167565 Inexact Rounded
2513
+ xdvi311 divideint 55.1123381E+50627250 -94.0355047E-162540316 -> NaN Division_impossible
2514
+ xmul311 multiply 55.1123381E+50627250 -94.0355047E-162540316 -> -5.18251653E-111913063 Inexact Rounded
2515
+ xpow311 power 55.1123381E+50627250 -9 -> 2.13186881E-455645266 Inexact Rounded
2516
+ xrem311 remainder 55.1123381E+50627250 -94.0355047E-162540316 -> NaN Division_impossible
2517
+ xsub311 subtract 55.1123381E+50627250 -94.0355047E-162540316 -> 5.51123381E+50627251 Inexact Rounded
2518
+ xadd312 add -948.038054 3580.84510 -> 2632.80705 Inexact Rounded
2519
+ xcom312 compare -948.038054 3580.84510 -> -1
2520
+ xdiv312 divide -948.038054 3580.84510 -> -0.264752601 Inexact Rounded
2521
+ xdvi312 divideint -948.038054 3580.84510 -> -0
2522
+ xmul312 multiply -948.038054 3580.84510 -> -3394777.42 Inexact Rounded
2523
+ xpow312 power -948.038054 3581 -> -1.03058288E+10660 Inexact Rounded
2524
+ xrem312 remainder -948.038054 3580.84510 -> -948.038054
2525
+ xsub312 subtract -948.038054 3580.84510 -> -4528.88315 Inexact Rounded
2526
+ xadd313 add -6026.42752 -14.2286406E-334921364 -> -6026.42752 Inexact Rounded
2527
+ xcom313 compare -6026.42752 -14.2286406E-334921364 -> -1
2528
+ xdiv313 divide -6026.42752 -14.2286406E-334921364 -> 4.23542044E+334921366 Inexact Rounded
2529
+ xdvi313 divideint -6026.42752 -14.2286406E-334921364 -> NaN Division_impossible
2530
+ xmul313 multiply -6026.42752 -14.2286406E-334921364 -> 8.57478713E-334921360 Inexact Rounded
2531
+ xpow313 power -6026.42752 -1 -> -0.000165935788 Inexact Rounded
2532
+ xrem313 remainder -6026.42752 -14.2286406E-334921364 -> NaN Division_impossible
2533
+ xsub313 subtract -6026.42752 -14.2286406E-334921364 -> -6026.42752 Inexact Rounded
2534
+ xadd314 add 79551.5014 -538.186229 -> 79013.3152 Inexact Rounded
2535
+ xcom314 compare 79551.5014 -538.186229 -> 1
2536
+ xdiv314 divide 79551.5014 -538.186229 -> -147.814078 Inexact Rounded
2537
+ xdvi314 divideint 79551.5014 -538.186229 -> -147
2538
+ xmul314 multiply 79551.5014 -538.186229 -> -42813522.5 Inexact Rounded
2539
+ xpow314 power 79551.5014 -538 -> 2.82599389E-2637 Inexact Rounded
2540
+ xrem314 remainder 79551.5014 -538.186229 -> 438.125737
2541
+ xsub314 subtract 79551.5014 -538.186229 -> 80089.6876 Inexact Rounded
2542
+ xadd315 add 42706056.E+623578292 -690.327745 -> 4.27060560E+623578299 Inexact Rounded
2543
+ xcom315 compare 42706056.E+623578292 -690.327745 -> 1
2544
+ xdiv315 divide 42706056.E+623578292 -690.327745 -> -6.18634501E+623578296 Inexact Rounded
2545
+ xdvi315 divideint 42706056.E+623578292 -690.327745 -> NaN Division_impossible
2546
+ xmul315 multiply 42706056.E+623578292 -690.327745 -> -2.94811753E+623578302 Inexact Rounded
2547
+ xpow315 power 42706056.E+623578292 -690 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2548
+ xrem315 remainder 42706056.E+623578292 -690.327745 -> NaN Division_impossible
2549
+ xsub315 subtract 42706056.E+623578292 -690.327745 -> 4.27060560E+623578299 Inexact Rounded
2550
+ xadd316 add 2454136.08E+502374077 856268.795E-356664934 -> 2.45413608E+502374083 Inexact Rounded
2551
+ xcom316 compare 2454136.08E+502374077 856268.795E-356664934 -> 1
2552
+ xdiv316 divide 2454136.08E+502374077 856268.795E-356664934 -> 2.86608142E+859039011 Inexact Rounded
2553
+ xdvi316 divideint 2454136.08E+502374077 856268.795E-356664934 -> NaN Division_impossible
2554
+ xmul316 multiply 2454136.08E+502374077 856268.795E-356664934 -> 2.10140014E+145709155 Inexact Rounded
2555
+ xpow316 power 2454136.08E+502374077 9 -> Infinity Overflow Inexact Rounded
2556
+ xrem316 remainder 2454136.08E+502374077 856268.795E-356664934 -> NaN Division_impossible
2557
+ xsub316 subtract 2454136.08E+502374077 856268.795E-356664934 -> 2.45413608E+502374083 Inexact Rounded
2558
+ xadd317 add -3264204.54 -42704.501 -> -3306909.04 Inexact Rounded
2559
+ xcom317 compare -3264204.54 -42704.501 -> -1
2560
+ xdiv317 divide -3264204.54 -42704.501 -> 76.4370140 Inexact Rounded
2561
+ xdvi317 divideint -3264204.54 -42704.501 -> 76
2562
+ xmul317 multiply -3264204.54 -42704.501 -> 1.39396226E+11 Inexact Rounded
2563
+ xpow317 power -3264204.54 -42705 -> -1.37293410E-278171 Inexact Rounded
2564
+ xrem317 remainder -3264204.54 -42704.501 -> -18662.464
2565
+ xsub317 subtract -3264204.54 -42704.501 -> -3221500.04 Inexact Rounded
2566
+ xadd318 add 1.21265492 44102.6073 -> 44103.8200 Inexact Rounded
2567
+ xcom318 compare 1.21265492 44102.6073 -> -1
2568
+ xdiv318 divide 1.21265492 44102.6073 -> 0.0000274962183 Inexact Rounded
2569
+ xdvi318 divideint 1.21265492 44102.6073 -> 0
2570
+ xmul318 multiply 1.21265492 44102.6073 -> 53481.2437 Inexact Rounded
2571
+ xpow318 power 1.21265492 44103 -> 1.15662573E+3693 Inexact Rounded
2572
+ xrem318 remainder 1.21265492 44102.6073 -> 1.21265492
2573
+ xsub318 subtract 1.21265492 44102.6073 -> -44101.3946 Inexact Rounded
2574
+ xadd319 add -19.054711E+975514652 -22144.0822 -> -1.90547110E+975514653 Inexact Rounded
2575
+ xcom319 compare -19.054711E+975514652 -22144.0822 -> -1
2576
+ xdiv319 divide -19.054711E+975514652 -22144.0822 -> 8.60487729E+975514648 Inexact Rounded
2577
+ xdvi319 divideint -19.054711E+975514652 -22144.0822 -> NaN Division_impossible
2578
+ xmul319 multiply -19.054711E+975514652 -22144.0822 -> 4.21949087E+975514657 Inexact Rounded
2579
+ xpow319 power -19.054711E+975514652 -22144 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2580
+ xrem319 remainder -19.054711E+975514652 -22144.0822 -> NaN Division_impossible
2581
+ xsub319 subtract -19.054711E+975514652 -22144.0822 -> -1.90547110E+975514653 Inexact Rounded
2582
+ xadd320 add 745.78452 -1922.00670E+375923302 -> -1.92200670E+375923305 Inexact Rounded
2583
+ xcom320 compare 745.78452 -1922.00670E+375923302 -> 1
2584
+ xdiv320 divide 745.78452 -1922.00670E+375923302 -> -3.88023892E-375923303 Inexact Rounded
2585
+ xdvi320 divideint 745.78452 -1922.00670E+375923302 -> -0
2586
+ xmul320 multiply 745.78452 -1922.00670E+375923302 -> -1.43340284E+375923308 Inexact Rounded
2587
+ xpow320 power 745.78452 -2 -> 0.00000179793204 Inexact Rounded
2588
+ xrem320 remainder 745.78452 -1922.00670E+375923302 -> 745.78452
2589
+ xsub320 subtract 745.78452 -1922.00670E+375923302 -> 1.92200670E+375923305 Inexact Rounded
2590
+ xadd321 add -963717836 -823989308 -> -1.78770714E+9 Inexact Rounded
2591
+ xcom321 compare -963717836 -823989308 -> -1
2592
+ xdiv321 divide -963717836 -823989308 -> 1.16957566 Inexact Rounded
2593
+ xdvi321 divideint -963717836 -823989308 -> 1
2594
+ xmul321 multiply -963717836 -823989308 -> 7.94093193E+17 Inexact Rounded
2595
+ xpow321 power -963717836 -823989308 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2596
+ xrem321 remainder -963717836 -823989308 -> -139728528
2597
+ xsub321 subtract -963717836 -823989308 -> -139728528
2598
+ xadd322 add 82.4185291E-321919303 -215747737.E-995147400 -> 8.24185291E-321919302 Inexact Rounded
2599
+ xcom322 compare 82.4185291E-321919303 -215747737.E-995147400 -> 1
2600
+ xdiv322 divide 82.4185291E-321919303 -215747737.E-995147400 -> -3.82013412E+673228090 Inexact Rounded
2601
+ xdvi322 divideint 82.4185291E-321919303 -215747737.E-995147400 -> NaN Division_impossible
2602
+ xmul322 multiply 82.4185291E-321919303 -215747737.E-995147400 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2603
+ xpow322 power 82.4185291E-321919303 -2 -> 1.47214396E+643838602 Inexact Rounded
2604
+ xrem322 remainder 82.4185291E-321919303 -215747737.E-995147400 -> NaN Division_impossible
2605
+ xsub322 subtract 82.4185291E-321919303 -215747737.E-995147400 -> 8.24185291E-321919302 Inexact Rounded
2606
+ xadd323 add -808328.607E-790810342 53075.7082 -> 53075.7082 Inexact Rounded
2607
+ xcom323 compare -808328.607E-790810342 53075.7082 -> -1
2608
+ xdiv323 divide -808328.607E-790810342 53075.7082 -> -1.52297281E-790810341 Inexact Rounded
2609
+ xdvi323 divideint -808328.607E-790810342 53075.7082 -> -0
2610
+ xmul323 multiply -808328.607E-790810342 53075.7082 -> -4.29026133E-790810332 Inexact Rounded
2611
+ xpow323 power -808328.607E-790810342 53076 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2612
+ xrem323 remainder -808328.607E-790810342 53075.7082 -> -8.08328607E-790810337
2613
+ xsub323 subtract -808328.607E-790810342 53075.7082 -> -53075.7082 Inexact Rounded
2614
+ xadd324 add 700592.720 -698485.085 -> 2107.635
2615
+ xcom324 compare 700592.720 -698485.085 -> 1
2616
+ xdiv324 divide 700592.720 -698485.085 -> -1.00301744 Inexact Rounded
2617
+ xdvi324 divideint 700592.720 -698485.085 -> -1
2618
+ xmul324 multiply 700592.720 -698485.085 -> -4.89353566E+11 Inexact Rounded
2619
+ xpow324 power 700592.720 -698485 -> 8.83690000E-4082971 Inexact Rounded
2620
+ xrem324 remainder 700592.720 -698485.085 -> 2107.635
2621
+ xsub324 subtract 700592.720 -698485.085 -> 1399077.81 Inexact Rounded
2622
+ xadd325 add -80273928.0 661346.239 -> -79612581.8 Inexact Rounded
2623
+ xcom325 compare -80273928.0 661346.239 -> -1
2624
+ xdiv325 divide -80273928.0 661346.239 -> -121.379579 Inexact Rounded
2625
+ xdvi325 divideint -80273928.0 661346.239 -> -121
2626
+ xmul325 multiply -80273928.0 661346.239 -> -5.30888604E+13 Inexact Rounded
2627
+ xpow325 power -80273928.0 661346 -> 5.45664856E+5227658 Inexact Rounded
2628
+ xrem325 remainder -80273928.0 661346.239 -> -251033.081
2629
+ xsub325 subtract -80273928.0 661346.239 -> -80935274.2 Inexact Rounded
2630
+ xadd326 add -24018251.0E+819786764 59141.9600E-167165065 -> -2.40182510E+819786771 Inexact Rounded
2631
+ xcom326 compare -24018251.0E+819786764 59141.9600E-167165065 -> -1
2632
+ xdiv326 divide -24018251.0E+819786764 59141.9600E-167165065 -> -4.06111854E+986951831 Inexact Rounded
2633
+ xdvi326 divideint -24018251.0E+819786764 59141.9600E-167165065 -> NaN Division_impossible
2634
+ xmul326 multiply -24018251.0E+819786764 59141.9600E-167165065 -> -1.42048644E+652621711 Inexact Rounded
2635
+ xpow326 power -24018251.0E+819786764 6 -> Infinity Overflow Inexact Rounded
2636
+ xrem326 remainder -24018251.0E+819786764 59141.9600E-167165065 -> NaN Division_impossible
2637
+ xsub326 subtract -24018251.0E+819786764 59141.9600E-167165065 -> -2.40182510E+819786771 Inexact Rounded
2638
+ xadd327 add 2512953.3 -3769170.35E-993621645 -> 2512953.30 Inexact Rounded
2639
+ xcom327 compare 2512953.3 -3769170.35E-993621645 -> 1
2640
+ xdiv327 divide 2512953.3 -3769170.35E-993621645 -> -6.66712583E+993621644 Inexact Rounded
2641
+ xdvi327 divideint 2512953.3 -3769170.35E-993621645 -> NaN Division_impossible
2642
+ xmul327 multiply 2512953.3 -3769170.35E-993621645 -> -9.47174907E-993621633 Inexact Rounded
2643
+ xpow327 power 2512953.3 -4 -> 2.50762348E-26 Inexact Rounded
2644
+ xrem327 remainder 2512953.3 -3769170.35E-993621645 -> NaN Division_impossible
2645
+ xsub327 subtract 2512953.3 -3769170.35E-993621645 -> 2512953.30 Inexact Rounded
2646
+ xadd328 add -682.796370 71131.0224 -> 70448.2260 Inexact Rounded
2647
+ xcom328 compare -682.796370 71131.0224 -> -1
2648
+ xdiv328 divide -682.796370 71131.0224 -> -0.00959913617 Inexact Rounded
2649
+ xdvi328 divideint -682.796370 71131.0224 -> -0
2650
+ xmul328 multiply -682.796370 71131.0224 -> -48568003.9 Inexact Rounded
2651
+ xpow328 power -682.796370 71131 -> -9.28114741E+201605 Inexact Rounded
2652
+ xrem328 remainder -682.796370 71131.0224 -> -682.796370
2653
+ xsub328 subtract -682.796370 71131.0224 -> -71813.8188 Inexact Rounded
2654
+ xadd329 add 89.9997490 -4993.69831 -> -4903.69856 Inexact Rounded
2655
+ xcom329 compare 89.9997490 -4993.69831 -> 1
2656
+ xdiv329 divide 89.9997490 -4993.69831 -> -0.0180226644 Inexact Rounded
2657
+ xdvi329 divideint 89.9997490 -4993.69831 -> -0
2658
+ xmul329 multiply 89.9997490 -4993.69831 -> -449431.594 Inexact Rounded
2659
+ xpow329 power 89.9997490 -4994 -> 3.30336525E-9760 Inexact Rounded
2660
+ xrem329 remainder 89.9997490 -4993.69831 -> 89.9997490
2661
+ xsub329 subtract 89.9997490 -4993.69831 -> 5083.69806 Inexact Rounded
2662
+ xadd330 add 76563354.6E-112338836 278271.585E-511481095 -> 7.65633546E-112338829 Inexact Rounded
2663
+ xcom330 compare 76563354.6E-112338836 278271.585E-511481095 -> 1
2664
+ xdiv330 divide 76563354.6E-112338836 278271.585E-511481095 -> 2.75138960E+399142261 Inexact Rounded
2665
+ xdvi330 divideint 76563354.6E-112338836 278271.585E-511481095 -> NaN Division_impossible
2666
+ xmul330 multiply 76563354.6E-112338836 278271.585E-511481095 -> 2.13054060E-623819918 Inexact Rounded
2667
+ xpow330 power 76563354.6E-112338836 3 -> 4.48810347E-337016485 Inexact Rounded
2668
+ xrem330 remainder 76563354.6E-112338836 278271.585E-511481095 -> NaN Division_impossible
2669
+ xsub330 subtract 76563354.6E-112338836 278271.585E-511481095 -> 7.65633546E-112338829 Inexact Rounded
2670
+ xadd331 add -932499.010 873.377701E-502190452 -> -932499.010 Inexact Rounded
2671
+ xcom331 compare -932499.010 873.377701E-502190452 -> -1
2672
+ xdiv331 divide -932499.010 873.377701E-502190452 -> -1.06769272E+502190455 Inexact Rounded
2673
+ xdvi331 divideint -932499.010 873.377701E-502190452 -> NaN Division_impossible
2674
+ xmul331 multiply -932499.010 873.377701E-502190452 -> -8.14423842E-502190444 Inexact Rounded
2675
+ xpow331 power -932499.010 9 -> -5.33132815E+53 Inexact Rounded
2676
+ xrem331 remainder -932499.010 873.377701E-502190452 -> NaN Division_impossible
2677
+ xsub331 subtract -932499.010 873.377701E-502190452 -> -932499.010 Inexact Rounded
2678
+ xadd332 add -7735918.21E+799514797 -7748.78023 -> -7.73591821E+799514803 Inexact Rounded
2679
+ xcom332 compare -7735918.21E+799514797 -7748.78023 -> -1
2680
+ xdiv332 divide -7735918.21E+799514797 -7748.78023 -> 9.98340123E+799514799 Inexact Rounded
2681
+ xdvi332 divideint -7735918.21E+799514797 -7748.78023 -> NaN Division_impossible
2682
+ xmul332 multiply -7735918.21E+799514797 -7748.78023 -> 5.99439301E+799514807 Inexact Rounded
2683
+ xpow332 power -7735918.21E+799514797 -7749 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2684
+ xrem332 remainder -7735918.21E+799514797 -7748.78023 -> NaN Division_impossible
2685
+ xsub332 subtract -7735918.21E+799514797 -7748.78023 -> -7.73591821E+799514803 Inexact Rounded
2686
+ xadd333 add -3708780.75E+445232787 980.006567E-780728623 -> -3.70878075E+445232793 Inexact Rounded
2687
+ xcom333 compare -3708780.75E+445232787 980.006567E-780728623 -> -1
2688
+ xdiv333 divide -3708780.75E+445232787 980.006567E-780728623 -> -Infinity Inexact Overflow Rounded
2689
+ xdvi333 divideint -3708780.75E+445232787 980.006567E-780728623 -> NaN Division_impossible
2690
+ xmul333 multiply -3708780.75E+445232787 980.006567E-780728623 -> -3.63462949E-335495827 Inexact Rounded
2691
+ xpow333 power -3708780.75E+445232787 10 -> Infinity Overflow Inexact Rounded
2692
+ xrem333 remainder -3708780.75E+445232787 980.006567E-780728623 -> NaN Division_impossible
2693
+ xsub333 subtract -3708780.75E+445232787 980.006567E-780728623 -> -3.70878075E+445232793 Inexact Rounded
2694
+ xadd334 add -5205124.44E-140588661 -495394029.E-620856313 -> -5.20512444E-140588655 Inexact Rounded
2695
+ xcom334 compare -5205124.44E-140588661 -495394029.E-620856313 -> -1
2696
+ xdiv334 divide -5205124.44E-140588661 -495394029.E-620856313 -> 1.05070391E+480267650 Inexact Rounded
2697
+ xdvi334 divideint -5205124.44E-140588661 -495394029.E-620856313 -> NaN Division_impossible
2698
+ xmul334 multiply -5205124.44E-140588661 -495394029.E-620856313 -> 2.57858757E-761444959 Inexact Rounded
2699
+ xpow334 power -5205124.44E-140588661 -5 -> -2.61724523E+702943271 Inexact Rounded
2700
+ xrem334 remainder -5205124.44E-140588661 -495394029.E-620856313 -> NaN Division_impossible
2701
+ xsub334 subtract -5205124.44E-140588661 -495394029.E-620856313 -> -5.20512444E-140588655 Inexact Rounded
2702
+ xadd335 add -8868.72074 5592399.93 -> 5583531.21 Inexact Rounded
2703
+ xcom335 compare -8868.72074 5592399.93 -> -1
2704
+ xdiv335 divide -8868.72074 5592399.93 -> -0.00158585238 Inexact Rounded
2705
+ xdvi335 divideint -8868.72074 5592399.93 -> -0
2706
+ xmul335 multiply -8868.72074 5592399.93 -> -4.95974332E+10 Inexact Rounded
2707
+ xpow335 power -8868.72074 5592400 -> 5.55074142E+22078017 Inexact Rounded
2708
+ xrem335 remainder -8868.72074 5592399.93 -> -8868.72074
2709
+ xsub335 subtract -8868.72074 5592399.93 -> -5601268.65 Inexact Rounded
2710
+ xadd336 add -74.7852037E-175205809 4.14316542 -> 4.14316542 Inexact Rounded
2711
+ xcom336 compare -74.7852037E-175205809 4.14316542 -> -1
2712
+ xdiv336 divide -74.7852037E-175205809 4.14316542 -> -1.80502577E-175205808 Inexact Rounded
2713
+ xdvi336 divideint -74.7852037E-175205809 4.14316542 -> -0
2714
+ xmul336 multiply -74.7852037E-175205809 4.14316542 -> -3.09847470E-175205807 Inexact Rounded
2715
+ xpow336 power -74.7852037E-175205809 4 -> 3.12797104E-700823229 Inexact Rounded
2716
+ xrem336 remainder -74.7852037E-175205809 4.14316542 -> -7.47852037E-175205808
2717
+ xsub336 subtract -74.7852037E-175205809 4.14316542 -> -4.14316542 Inexact Rounded
2718
+ xadd337 add 84196.1091E+242628748 8.07523036E-288231467 -> 8.41961091E+242628752 Inexact Rounded
2719
+ xcom337 compare 84196.1091E+242628748 8.07523036E-288231467 -> 1
2720
+ xdiv337 divide 84196.1091E+242628748 8.07523036E-288231467 -> 1.04264653E+530860219 Inexact Rounded
2721
+ xdvi337 divideint 84196.1091E+242628748 8.07523036E-288231467 -> NaN Division_impossible
2722
+ xmul337 multiply 84196.1091E+242628748 8.07523036E-288231467 -> 6.79902976E-45602714 Inexact Rounded
2723
+ xpow337 power 84196.1091E+242628748 8 -> Infinity Overflow Inexact Rounded
2724
+ xrem337 remainder 84196.1091E+242628748 8.07523036E-288231467 -> NaN Division_impossible
2725
+ xsub337 subtract 84196.1091E+242628748 8.07523036E-288231467 -> 8.41961091E+242628752 Inexact Rounded
2726
+ xadd338 add 38660103.1 -6671.73085E+900998477 -> -6.67173085E+900998480 Inexact Rounded
2727
+ xcom338 compare 38660103.1 -6671.73085E+900998477 -> 1
2728
+ xdiv338 divide 38660103.1 -6671.73085E+900998477 -> -5.79461372E-900998474 Inexact Rounded
2729
+ xdvi338 divideint 38660103.1 -6671.73085E+900998477 -> -0
2730
+ xmul338 multiply 38660103.1 -6671.73085E+900998477 -> -2.57929803E+900998488 Inexact Rounded
2731
+ xpow338 power 38660103.1 -7 -> 7.74745290E-54 Inexact Rounded
2732
+ xrem338 remainder 38660103.1 -6671.73085E+900998477 -> 38660103.1
2733
+ xsub338 subtract 38660103.1 -6671.73085E+900998477 -> 6.67173085E+900998480 Inexact Rounded
2734
+ xadd339 add -52.2659460 -296404199E+372050476 -> -2.96404199E+372050484 Inexact Rounded
2735
+ xcom339 compare -52.2659460 -296404199E+372050476 -> 1
2736
+ xdiv339 divide -52.2659460 -296404199E+372050476 -> 1.76333352E-372050483 Inexact Rounded
2737
+ xdvi339 divideint -52.2659460 -296404199E+372050476 -> 0
2738
+ xmul339 multiply -52.2659460 -296404199E+372050476 -> 1.54918459E+372050486 Inexact Rounded
2739
+ xpow339 power -52.2659460 -3 -> -0.00000700395833 Inexact Rounded
2740
+ xrem339 remainder -52.2659460 -296404199E+372050476 -> -52.2659460
2741
+ xsub339 subtract -52.2659460 -296404199E+372050476 -> 2.96404199E+372050484 Inexact Rounded
2742
+ xadd340 add 6.06625013 -276.359186 -> -270.292936 Inexact Rounded
2743
+ xcom340 compare 6.06625013 -276.359186 -> 1
2744
+ xdiv340 divide 6.06625013 -276.359186 -> -0.0219506007 Inexact Rounded
2745
+ xdvi340 divideint 6.06625013 -276.359186 -> -0
2746
+ xmul340 multiply 6.06625013 -276.359186 -> -1676.46395 Inexact Rounded
2747
+ xpow340 power 6.06625013 -276 -> 8.20339149E-217 Inexact Rounded
2748
+ xrem340 remainder 6.06625013 -276.359186 -> 6.06625013
2749
+ xsub340 subtract 6.06625013 -276.359186 -> 282.425436 Inexact Rounded
2750
+ xadd341 add -62971617.5E-241444744 46266799.3 -> 46266799.3 Inexact Rounded
2751
+ xcom341 compare -62971617.5E-241444744 46266799.3 -> -1
2752
+ xdiv341 divide -62971617.5E-241444744 46266799.3 -> -1.36105411E-241444744 Inexact Rounded
2753
+ xdvi341 divideint -62971617.5E-241444744 46266799.3 -> -0
2754
+ xmul341 multiply -62971617.5E-241444744 46266799.3 -> -2.91349519E-241444729 Inexact Rounded
2755
+ xpow341 power -62971617.5E-241444744 46266799 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2756
+ xrem341 remainder -62971617.5E-241444744 46266799.3 -> -6.29716175E-241444737
2757
+ xsub341 subtract -62971617.5E-241444744 46266799.3 -> -46266799.3 Inexact Rounded
2758
+ xadd342 add -5.36917800 -311124593.E-976066491 -> -5.36917800 Inexact Rounded
2759
+ xcom342 compare -5.36917800 -311124593.E-976066491 -> -1
2760
+ xdiv342 divide -5.36917800 -311124593.E-976066491 -> 1.72573243E+976066483 Inexact Rounded
2761
+ xdvi342 divideint -5.36917800 -311124593.E-976066491 -> NaN Division_impossible
2762
+ xmul342 multiply -5.36917800 -311124593.E-976066491 -> 1.67048332E-976066482 Inexact Rounded
2763
+ xpow342 power -5.36917800 -3 -> -0.00646065565 Inexact Rounded
2764
+ xrem342 remainder -5.36917800 -311124593.E-976066491 -> NaN Division_impossible
2765
+ xsub342 subtract -5.36917800 -311124593.E-976066491 -> -5.36917800 Inexact Rounded
2766
+ xadd343 add 2467915.01 -92.5558322 -> 2467822.45 Inexact Rounded
2767
+ xcom343 compare 2467915.01 -92.5558322 -> 1
2768
+ xdiv343 divide 2467915.01 -92.5558322 -> -26664.0681 Inexact Rounded
2769
+ xdvi343 divideint 2467915.01 -92.5558322 -> -26664
2770
+ xmul343 multiply 2467915.01 -92.5558322 -> -228419928 Inexact Rounded
2771
+ xpow343 power 2467915.01 -93 -> 3.26055444E-595 Inexact Rounded
2772
+ xrem343 remainder 2467915.01 -92.5558322 -> 6.3002192
2773
+ xsub343 subtract 2467915.01 -92.5558322 -> 2468007.57 Inexact Rounded
2774
+ xadd344 add 187.232671 -840.469347 -> -653.236676
2775
+ xcom344 compare 187.232671 -840.469347 -> 1
2776
+ xdiv344 divide 187.232671 -840.469347 -> -0.222771564 Inexact Rounded
2777
+ xdvi344 divideint 187.232671 -840.469347 -> -0
2778
+ xmul344 multiply 187.232671 -840.469347 -> -157363.321 Inexact Rounded
2779
+ xpow344 power 187.232671 -840 -> 1.58280862E-1909 Inexact Rounded
2780
+ xrem344 remainder 187.232671 -840.469347 -> 187.232671
2781
+ xsub344 subtract 187.232671 -840.469347 -> 1027.70202 Inexact Rounded
2782
+ xadd345 add 81233.6823 -5192.21666E+309315093 -> -5.19221666E+309315096 Inexact Rounded
2783
+ xcom345 compare 81233.6823 -5192.21666E+309315093 -> 1
2784
+ xdiv345 divide 81233.6823 -5192.21666E+309315093 -> -1.56452798E-309315092 Inexact Rounded
2785
+ xdvi345 divideint 81233.6823 -5192.21666E+309315093 -> -0
2786
+ xmul345 multiply 81233.6823 -5192.21666E+309315093 -> -4.21782879E+309315101 Inexact Rounded
2787
+ xpow345 power 81233.6823 -5 -> 2.82695763E-25 Inexact Rounded
2788
+ xrem345 remainder 81233.6823 -5192.21666E+309315093 -> 81233.6823
2789
+ xsub345 subtract 81233.6823 -5192.21666E+309315093 -> 5.19221666E+309315096 Inexact Rounded
2790
+ xadd346 add -854.586113 -79.8715762E-853065103 -> -854.586113 Inexact Rounded
2791
+ xcom346 compare -854.586113 -79.8715762E-853065103 -> -1
2792
+ xdiv346 divide -854.586113 -79.8715762E-853065103 -> 1.06995023E+853065104 Inexact Rounded
2793
+ xdvi346 divideint -854.586113 -79.8715762E-853065103 -> NaN Division_impossible
2794
+ xmul346 multiply -854.586113 -79.8715762E-853065103 -> 6.82571398E-853065099 Inexact Rounded
2795
+ xpow346 power -854.586113 -8 -> 3.51522679E-24 Inexact Rounded
2796
+ xrem346 remainder -854.586113 -79.8715762E-853065103 -> NaN Division_impossible
2797
+ xsub346 subtract -854.586113 -79.8715762E-853065103 -> -854.586113 Inexact Rounded
2798
+ xadd347 add 78872665.3 172.102119 -> 78872837.4 Inexact Rounded
2799
+ xcom347 compare 78872665.3 172.102119 -> 1
2800
+ xdiv347 divide 78872665.3 172.102119 -> 458289.914 Inexact Rounded
2801
+ xdvi347 divideint 78872665.3 172.102119 -> 458289
2802
+ xmul347 multiply 78872665.3 172.102119 -> 1.35741528E+10 Inexact Rounded
2803
+ xpow347 power 78872665.3 172 -> 1.86793137E+1358 Inexact Rounded
2804
+ xrem347 remainder 78872665.3 172.102119 -> 157.285609
2805
+ xsub347 subtract 78872665.3 172.102119 -> 78872493.2 Inexact Rounded
2806
+ xadd348 add 328268.1E-436315617 -204.522245 -> -204.522245 Inexact Rounded
2807
+ xcom348 compare 328268.1E-436315617 -204.522245 -> 1
2808
+ xdiv348 divide 328268.1E-436315617 -204.522245 -> -1.60504839E-436315614 Inexact Rounded
2809
+ xdvi348 divideint 328268.1E-436315617 -204.522245 -> -0
2810
+ xmul348 multiply 328268.1E-436315617 -204.522245 -> -6.71381288E-436315610 Inexact Rounded
2811
+ xpow348 power 328268.1E-436315617 -205 -> Infinity Overflow Inexact Rounded
2812
+ xrem348 remainder 328268.1E-436315617 -204.522245 -> 3.282681E-436315612
2813
+ xsub348 subtract 328268.1E-436315617 -204.522245 -> 204.522245 Inexact Rounded
2814
+ xadd349 add -4037911.02E+641367645 29.5713010 -> -4.03791102E+641367651 Inexact Rounded
2815
+ xcom349 compare -4037911.02E+641367645 29.5713010 -> -1
2816
+ xdiv349 divide -4037911.02E+641367645 29.5713010 -> -1.36548305E+641367650 Inexact Rounded
2817
+ xdvi349 divideint -4037911.02E+641367645 29.5713010 -> NaN Division_impossible
2818
+ xmul349 multiply -4037911.02E+641367645 29.5713010 -> -1.19406282E+641367653 Inexact Rounded
2819
+ xpow349 power -4037911.02E+641367645 30 -> Infinity Overflow Inexact Rounded
2820
+ xrem349 remainder -4037911.02E+641367645 29.5713010 -> NaN Division_impossible
2821
+ xsub349 subtract -4037911.02E+641367645 29.5713010 -> -4.03791102E+641367651 Inexact Rounded
2822
+ xadd350 add -688755561.E-95301699 978.275312E+913812609 -> 9.78275312E+913812611 Inexact Rounded
2823
+ xcom350 compare -688755561.E-95301699 978.275312E+913812609 -> -1
2824
+ xdiv350 divide -688755561.E-95301699 978.275312E+913812609 -> -0E-1000000007 Inexact Rounded Underflow Subnormal Clamped
2825
+ xdvi350 divideint -688755561.E-95301699 978.275312E+913812609 -> -0
2826
+ xmul350 multiply -688755561.E-95301699 978.275312E+913812609 -> -6.73792561E+818510921 Inexact Rounded
2827
+ xpow350 power -688755561.E-95301699 10 -> 2.40243244E-953016902 Inexact Rounded
2828
+ xrem350 remainder -688755561.E-95301699 978.275312E+913812609 -> -6.88755561E-95301691
2829
+ xsub350 subtract -688755561.E-95301699 978.275312E+913812609 -> -9.78275312E+913812611 Inexact Rounded
2830
+ xadd351 add -5.47345502 59818.7580 -> 59813.2845 Inexact Rounded
2831
+ xcom351 compare -5.47345502 59818.7580 -> -1
2832
+ xdiv351 divide -5.47345502 59818.7580 -> -0.0000915006463 Inexact Rounded
2833
+ xdvi351 divideint -5.47345502 59818.7580 -> -0
2834
+ xmul351 multiply -5.47345502 59818.7580 -> -327415.281 Inexact Rounded
2835
+ xpow351 power -5.47345502 59819 -> -1.16914146E+44162 Inexact Rounded
2836
+ xrem351 remainder -5.47345502 59818.7580 -> -5.47345502
2837
+ xsub351 subtract -5.47345502 59818.7580 -> -59824.2315 Inexact Rounded
2838
+ xadd352 add 563891620E-361354567 -845900362. -> -845900362 Inexact Rounded
2839
+ xcom352 compare 563891620E-361354567 -845900362. -> 1
2840
+ xdiv352 divide 563891620E-361354567 -845900362. -> -6.66617069E-361354568 Inexact Rounded
2841
+ xdvi352 divideint 563891620E-361354567 -845900362. -> -0
2842
+ xmul352 multiply 563891620E-361354567 -845900362. -> -4.76996125E-361354550 Inexact Rounded
2843
+ xpow352 power 563891620E-361354567 -845900362 -> Infinity Overflow Inexact Rounded
2844
+ xrem352 remainder 563891620E-361354567 -845900362. -> 5.63891620E-361354559
2845
+ xsub352 subtract 563891620E-361354567 -845900362. -> 845900362 Inexact Rounded
2846
+ xadd353 add -69.7231286 85773.7504 -> 85704.0273 Inexact Rounded
2847
+ xcom353 compare -69.7231286 85773.7504 -> -1
2848
+ xdiv353 divide -69.7231286 85773.7504 -> -0.000812872566 Inexact Rounded
2849
+ xdvi353 divideint -69.7231286 85773.7504 -> -0
2850
+ xmul353 multiply -69.7231286 85773.7504 -> -5980414.23 Inexact Rounded
2851
+ xpow353 power -69.7231286 85774 -> 6.41714261E+158113 Inexact Rounded
2852
+ xrem353 remainder -69.7231286 85773.7504 -> -69.7231286
2853
+ xsub353 subtract -69.7231286 85773.7504 -> -85843.4735 Inexact Rounded
2854
+ xadd354 add 5125.51188 73814638.4E-500934741 -> 5125.51188 Inexact Rounded
2855
+ xcom354 compare 5125.51188 73814638.4E-500934741 -> 1
2856
+ xdiv354 divide 5125.51188 73814638.4E-500934741 -> 6.94376074E+500934736 Inexact Rounded
2857
+ xdvi354 divideint 5125.51188 73814638.4E-500934741 -> NaN Division_impossible
2858
+ xmul354 multiply 5125.51188 73814638.4E-500934741 -> 3.78337806E-500934730 Inexact Rounded
2859
+ xpow354 power 5125.51188 7 -> 9.29310216E+25 Inexact Rounded
2860
+ xrem354 remainder 5125.51188 73814638.4E-500934741 -> NaN Division_impossible
2861
+ xsub354 subtract 5125.51188 73814638.4E-500934741 -> 5125.51188 Inexact Rounded
2862
+ xadd355 add -54.6254096 -332921899. -> -332921954 Inexact Rounded
2863
+ xcom355 compare -54.6254096 -332921899. -> 1
2864
+ xdiv355 divide -54.6254096 -332921899. -> 1.64078752E-7 Inexact Rounded
2865
+ xdvi355 divideint -54.6254096 -332921899. -> 0
2866
+ xmul355 multiply -54.6254096 -332921899. -> 1.81859951E+10 Inexact Rounded
2867
+ xpow355 power -54.6254096 -332921899 -> -1.01482569E-578416745 Inexact Rounded
2868
+ xrem355 remainder -54.6254096 -332921899. -> -54.6254096
2869
+ xsub355 subtract -54.6254096 -332921899. -> 332921844 Inexact Rounded
2870
+ xadd356 add -9.04778095E-591874079 8719.40286 -> 8719.40286 Inexact Rounded
2871
+ xcom356 compare -9.04778095E-591874079 8719.40286 -> -1
2872
+ xdiv356 divide -9.04778095E-591874079 8719.40286 -> -1.03766062E-591874082 Inexact Rounded
2873
+ xdvi356 divideint -9.04778095E-591874079 8719.40286 -> -0
2874
+ xmul356 multiply -9.04778095E-591874079 8719.40286 -> -7.88912471E-591874075 Inexact Rounded
2875
+ xpow356 power -9.04778095E-591874079 8719 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2876
+ xrem356 remainder -9.04778095E-591874079 8719.40286 -> -9.04778095E-591874079
2877
+ xsub356 subtract -9.04778095E-591874079 8719.40286 -> -8719.40286 Inexact Rounded
2878
+ xadd357 add -21006.1733E+884684431 -48872.9175 -> -2.10061733E+884684435 Inexact Rounded
2879
+ xcom357 compare -21006.1733E+884684431 -48872.9175 -> -1
2880
+ xdiv357 divide -21006.1733E+884684431 -48872.9175 -> 4.29812141E+884684430 Inexact Rounded
2881
+ xdvi357 divideint -21006.1733E+884684431 -48872.9175 -> NaN Division_impossible
2882
+ xmul357 multiply -21006.1733E+884684431 -48872.9175 -> 1.02663297E+884684440 Inexact Rounded
2883
+ xpow357 power -21006.1733E+884684431 -48873 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2884
+ xrem357 remainder -21006.1733E+884684431 -48872.9175 -> NaN Division_impossible
2885
+ xsub357 subtract -21006.1733E+884684431 -48872.9175 -> -2.10061733E+884684435 Inexact Rounded
2886
+ xadd358 add -1546783 -51935370.4 -> -53482153.4
2887
+ xcom358 compare -1546783 -51935370.4 -> 1
2888
+ xdiv358 divide -1546783 -51935370.4 -> 0.0297828433 Inexact Rounded
2889
+ xdvi358 divideint -1546783 -51935370.4 -> 0
2890
+ xmul358 multiply -1546783 -51935370.4 -> 8.03327480E+13 Inexact Rounded
2891
+ xpow358 power -1546783 -51935370 -> 3.36022461E-321450306 Inexact Rounded
2892
+ xrem358 remainder -1546783 -51935370.4 -> -1546783.0
2893
+ xsub358 subtract -1546783 -51935370.4 -> 50388587.4
2894
+ xadd359 add 61302486.8 205.490417 -> 61302692.3 Inexact Rounded
2895
+ xcom359 compare 61302486.8 205.490417 -> 1
2896
+ xdiv359 divide 61302486.8 205.490417 -> 298322.850 Inexact Rounded
2897
+ xdvi359 divideint 61302486.8 205.490417 -> 298322
2898
+ xmul359 multiply 61302486.8 205.490417 -> 1.25970736E+10 Inexact Rounded
2899
+ xpow359 power 61302486.8 205 -> 2.71024755E+1596 Inexact Rounded
2900
+ xrem359 remainder 61302486.8 205.490417 -> 174.619726
2901
+ xsub359 subtract 61302486.8 205.490417 -> 61302281.3 Inexact Rounded
2902
+ xadd360 add -318180109. -54008744.6E-170931002 -> -318180109 Inexact Rounded
2903
+ xcom360 compare -318180109. -54008744.6E-170931002 -> -1
2904
+ xdiv360 divide -318180109. -54008744.6E-170931002 -> 5.89127023E+170931002 Inexact Rounded
2905
+ xdvi360 divideint -318180109. -54008744.6E-170931002 -> NaN Division_impossible
2906
+ xmul360 multiply -318180109. -54008744.6E-170931002 -> 1.71845082E-170930986 Inexact Rounded
2907
+ xpow360 power -318180109. -5 -> -3.06644280E-43 Inexact Rounded
2908
+ xrem360 remainder -318180109. -54008744.6E-170931002 -> NaN Division_impossible
2909
+ xsub360 subtract -318180109. -54008744.6E-170931002 -> -318180109 Inexact Rounded
2910
+ xadd361 add -28486137.1E+901441714 -42454.940 -> -2.84861371E+901441721 Inexact Rounded
2911
+ xcom361 compare -28486137.1E+901441714 -42454.940 -> -1
2912
+ xdiv361 divide -28486137.1E+901441714 -42454.940 -> 6.70973439E+901441716 Inexact Rounded
2913
+ xdvi361 divideint -28486137.1E+901441714 -42454.940 -> NaN Division_impossible
2914
+ xmul361 multiply -28486137.1E+901441714 -42454.940 -> 1.20937724E+901441726 Inexact Rounded
2915
+ xpow361 power -28486137.1E+901441714 -42455 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2916
+ xrem361 remainder -28486137.1E+901441714 -42454.940 -> NaN Division_impossible
2917
+ xsub361 subtract -28486137.1E+901441714 -42454.940 -> -2.84861371E+901441721 Inexact Rounded
2918
+ xadd362 add -546398328. -27.9149712 -> -546398356 Inexact Rounded
2919
+ xcom362 compare -546398328. -27.9149712 -> -1
2920
+ xdiv362 divide -546398328. -27.9149712 -> 19573666.2 Inexact Rounded
2921
+ xdvi362 divideint -546398328. -27.9149712 -> 19573666
2922
+ xmul362 multiply -546398328. -27.9149712 -> 1.52526936E+10 Inexact Rounded
2923
+ xpow362 power -546398328. -28 -> 2.23737032E-245 Inexact Rounded
2924
+ xrem362 remainder -546398328. -27.9149712 -> -5.3315808
2925
+ xsub362 subtract -546398328. -27.9149712 -> -546398300 Inexact Rounded
2926
+ xadd363 add 5402066.1E-284978216 622.751128 -> 622.751128 Inexact Rounded
2927
+ xcom363 compare 5402066.1E-284978216 622.751128 -> -1
2928
+ xdiv363 divide 5402066.1E-284978216 622.751128 -> 8.67451837E-284978213 Inexact Rounded
2929
+ xdvi363 divideint 5402066.1E-284978216 622.751128 -> 0
2930
+ xmul363 multiply 5402066.1E-284978216 622.751128 -> 3.36414276E-284978207 Inexact Rounded
2931
+ xpow363 power 5402066.1E-284978216 623 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2932
+ xrem363 remainder 5402066.1E-284978216 622.751128 -> 5.4020661E-284978210
2933
+ xsub363 subtract 5402066.1E-284978216 622.751128 -> -622.751128 Inexact Rounded
2934
+ xadd364 add 18845620 3129.43753 -> 18848749.4 Inexact Rounded
2935
+ xcom364 compare 18845620 3129.43753 -> 1
2936
+ xdiv364 divide 18845620 3129.43753 -> 6022.04704 Inexact Rounded
2937
+ xdvi364 divideint 18845620 3129.43753 -> 6022
2938
+ xmul364 multiply 18845620 3129.43753 -> 5.89761905E+10 Inexact Rounded
2939
+ xpow364 power 18845620 3129 -> 1.35967443E+22764 Inexact Rounded
2940
+ xrem364 remainder 18845620 3129.43753 -> 147.19434
2941
+ xsub364 subtract 18845620 3129.43753 -> 18842490.6 Inexact Rounded
2942
+ xadd365 add 50707.1412E+912475670 -198098.186E+701407524 -> 5.07071412E+912475674 Inexact Rounded
2943
+ xcom365 compare 50707.1412E+912475670 -198098.186E+701407524 -> 1
2944
+ xdiv365 divide 50707.1412E+912475670 -198098.186E+701407524 -> -2.55969740E+211068145 Inexact Rounded
2945
+ xdvi365 divideint 50707.1412E+912475670 -198098.186E+701407524 -> NaN Division_impossible
2946
+ xmul365 multiply 50707.1412E+912475670 -198098.186E+701407524 -> -Infinity Inexact Overflow Rounded
2947
+ xpow365 power 50707.1412E+912475670 -2 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
2948
+ xrem365 remainder 50707.1412E+912475670 -198098.186E+701407524 -> NaN Division_impossible
2949
+ xsub365 subtract 50707.1412E+912475670 -198098.186E+701407524 -> 5.07071412E+912475674 Inexact Rounded
2950
+ xadd366 add 55.8245006E+928885991 99170843.9E-47402167 -> 5.58245006E+928885992 Inexact Rounded
2951
+ xcom366 compare 55.8245006E+928885991 99170843.9E-47402167 -> 1
2952
+ xdiv366 divide 55.8245006E+928885991 99170843.9E-47402167 -> 5.62912429E+976288151 Inexact Rounded
2953
+ xdvi366 divideint 55.8245006E+928885991 99170843.9E-47402167 -> NaN Division_impossible
2954
+ xmul366 multiply 55.8245006E+928885991 99170843.9E-47402167 -> 5.53616283E+881483833 Inexact Rounded
2955
+ xpow366 power 55.8245006E+928885991 10 -> Infinity Overflow Inexact Rounded
2956
+ xrem366 remainder 55.8245006E+928885991 99170843.9E-47402167 -> NaN Division_impossible
2957
+ xsub366 subtract 55.8245006E+928885991 99170843.9E-47402167 -> 5.58245006E+928885992 Inexact Rounded
2958
+ xadd367 add 13.8003883E-386224921 -84126481.9E-296378341 -> -8.41264819E-296378334 Inexact Rounded
2959
+ xcom367 compare 13.8003883E-386224921 -84126481.9E-296378341 -> 1
2960
+ xdiv367 divide 13.8003883E-386224921 -84126481.9E-296378341 -> -1.64043331E-89846587 Inexact Rounded
2961
+ xdvi367 divideint 13.8003883E-386224921 -84126481.9E-296378341 -> -0
2962
+ xmul367 multiply 13.8003883E-386224921 -84126481.9E-296378341 -> -1.16097812E-682603253 Inexact Rounded
2963
+ xpow367 power 13.8003883E-386224921 -8 -> Infinity Overflow Inexact Rounded
2964
+ xrem367 remainder 13.8003883E-386224921 -84126481.9E-296378341 -> 1.38003883E-386224920
2965
+ xsub367 subtract 13.8003883E-386224921 -84126481.9E-296378341 -> 8.41264819E-296378334 Inexact Rounded
2966
+ xadd368 add 9820.90457 46671.5915 -> 56492.4961 Inexact Rounded
2967
+ xcom368 compare 9820.90457 46671.5915 -> -1
2968
+ xdiv368 divide 9820.90457 46671.5915 -> 0.210425748 Inexact Rounded
2969
+ xdvi368 divideint 9820.90457 46671.5915 -> 0
2970
+ xmul368 multiply 9820.90457 46671.5915 -> 458357246 Inexact Rounded
2971
+ xpow368 power 9820.90457 46672 -> 4.94753070E+186321 Inexact Rounded
2972
+ xrem368 remainder 9820.90457 46671.5915 -> 9820.90457
2973
+ xsub368 subtract 9820.90457 46671.5915 -> -36850.6869 Inexact Rounded
2974
+ xadd369 add 7.22436006E+831949153 -11168830E+322331045 -> 7.22436006E+831949153 Inexact Rounded
2975
+ xcom369 compare 7.22436006E+831949153 -11168830E+322331045 -> 1
2976
+ xdiv369 divide 7.22436006E+831949153 -11168830E+322331045 -> -6.46832306E+509618101 Inexact Rounded
2977
+ xdvi369 divideint 7.22436006E+831949153 -11168830E+322331045 -> NaN Division_impossible
2978
+ xmul369 multiply 7.22436006E+831949153 -11168830E+322331045 -> -Infinity Inexact Overflow Rounded
2979
+ xpow369 power 7.22436006E+831949153 -1 -> 1.38420565E-831949154 Inexact Rounded
2980
+ xrem369 remainder 7.22436006E+831949153 -11168830E+322331045 -> NaN Division_impossible
2981
+ xsub369 subtract 7.22436006E+831949153 -11168830E+322331045 -> 7.22436006E+831949153 Inexact Rounded
2982
+ xadd370 add 472648900 -207.784153 -> 472648692 Inexact Rounded
2983
+ xcom370 compare 472648900 -207.784153 -> 1
2984
+ xdiv370 divide 472648900 -207.784153 -> -2274711.01 Inexact Rounded
2985
+ xdvi370 divideint 472648900 -207.784153 -> -2274711
2986
+ xmul370 multiply 472648900 -207.784153 -> -9.82089514E+10 Inexact Rounded
2987
+ xpow370 power 472648900 -208 -> 4.96547145E-1805 Inexact Rounded
2988
+ xrem370 remainder 472648900 -207.784153 -> 1.545217
2989
+ xsub370 subtract 472648900 -207.784153 -> 472649108 Inexact Rounded
2990
+ xadd371 add -8754.49306 -818.165153E+631475457 -> -8.18165153E+631475459 Inexact Rounded
2991
+ xcom371 compare -8754.49306 -818.165153E+631475457 -> 1
2992
+ xdiv371 divide -8754.49306 -818.165153E+631475457 -> 1.07001539E-631475456 Inexact Rounded
2993
+ xdvi371 divideint -8754.49306 -818.165153E+631475457 -> 0
2994
+ xmul371 multiply -8754.49306 -818.165153E+631475457 -> 7.16262115E+631475463 Inexact Rounded
2995
+ xpow371 power -8754.49306 -8 -> 2.89835767E-32 Inexact Rounded
2996
+ xrem371 remainder -8754.49306 -818.165153E+631475457 -> -8754.49306
2997
+ xsub371 subtract -8754.49306 -818.165153E+631475457 -> 8.18165153E+631475459 Inexact Rounded
2998
+ xadd372 add 98750864 191380.551 -> 98942244.6 Inexact Rounded
2999
+ xcom372 compare 98750864 191380.551 -> 1
3000
+ xdiv372 divide 98750864 191380.551 -> 515.992161 Inexact Rounded
3001
+ xdvi372 divideint 98750864 191380.551 -> 515
3002
+ xmul372 multiply 98750864 191380.551 -> 1.88989948E+13 Inexact Rounded
3003
+ xpow372 power 98750864 191381 -> 1.70908809E+1530003 Inexact Rounded
3004
+ xrem372 remainder 98750864 191380.551 -> 189880.235
3005
+ xsub372 subtract 98750864 191380.551 -> 98559483.4 Inexact Rounded
3006
+ xadd373 add 725292561. -768963606.E+340762986 -> -7.68963606E+340762994 Inexact Rounded
3007
+ xcom373 compare 725292561. -768963606.E+340762986 -> 1
3008
+ xdiv373 divide 725292561. -768963606.E+340762986 -> -9.43207917E-340762987 Inexact Rounded
3009
+ xdvi373 divideint 725292561. -768963606.E+340762986 -> -0
3010
+ xmul373 multiply 725292561. -768963606.E+340762986 -> -5.57723583E+340763003 Inexact Rounded
3011
+ xpow373 power 725292561. -8 -> 1.30585277E-71 Inexact Rounded
3012
+ xrem373 remainder 725292561. -768963606.E+340762986 -> 725292561
3013
+ xsub373 subtract 725292561. -768963606.E+340762986 -> 7.68963606E+340762994 Inexact Rounded
3014
+ xadd374 add 1862.80445 648254483. -> 648256346 Inexact Rounded
3015
+ xcom374 compare 1862.80445 648254483. -> -1
3016
+ xdiv374 divide 1862.80445 648254483. -> 0.00000287356972 Inexact Rounded
3017
+ xdvi374 divideint 1862.80445 648254483. -> 0
3018
+ xmul374 multiply 1862.80445 648254483. -> 1.20757134E+12 Inexact Rounded
3019
+ xpow374 power 1862.80445 648254483 -> Infinity Overflow Inexact Rounded
3020
+ xrem374 remainder 1862.80445 648254483. -> 1862.80445
3021
+ xsub374 subtract 1862.80445 648254483. -> -648252620 Inexact Rounded
3022
+ xadd375 add -5549320.1 -93580684.1 -> -99130004.2
3023
+ xcom375 compare -5549320.1 -93580684.1 -> 1
3024
+ xdiv375 divide -5549320.1 -93580684.1 -> 0.0592998454 Inexact Rounded
3025
+ xdvi375 divideint -5549320.1 -93580684.1 -> 0
3026
+ xmul375 multiply -5549320.1 -93580684.1 -> 5.19309171E+14 Inexact Rounded
3027
+ xpow375 power -5549320.1 -93580684 -> 4.20662079E-631130572 Inexact Rounded
3028
+ xrem375 remainder -5549320.1 -93580684.1 -> -5549320.1
3029
+ xsub375 subtract -5549320.1 -93580684.1 -> 88031364.0
3030
+ xadd376 add -14677053.1 -25784.7358 -> -14702837.8 Inexact Rounded
3031
+ xcom376 compare -14677053.1 -25784.7358 -> -1
3032
+ xdiv376 divide -14677053.1 -25784.7358 -> 569.214795 Inexact Rounded
3033
+ xdvi376 divideint -14677053.1 -25784.7358 -> 569
3034
+ xmul376 multiply -14677053.1 -25784.7358 -> 3.78443937E+11 Inexact Rounded
3035
+ xpow376 power -14677053.1 -25785 -> -1.64760831E-184792 Inexact Rounded
3036
+ xrem376 remainder -14677053.1 -25784.7358 -> -5538.4298
3037
+ xsub376 subtract -14677053.1 -25784.7358 -> -14651268.4 Inexact Rounded
3038
+ xadd377 add 547402.308E+571687617 -7835797.01E+500067364 -> 5.47402308E+571687622 Inexact Rounded
3039
+ xcom377 compare 547402.308E+571687617 -7835797.01E+500067364 -> 1
3040
+ xdiv377 divide 547402.308E+571687617 -7835797.01E+500067364 -> -6.98591742E+71620251 Inexact Rounded
3041
+ xdvi377 divideint 547402.308E+571687617 -7835797.01E+500067364 -> NaN Division_impossible
3042
+ xmul377 multiply 547402.308E+571687617 -7835797.01E+500067364 -> -Infinity Inexact Overflow Rounded
3043
+ xpow377 power 547402.308E+571687617 -8 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3044
+ xrem377 remainder 547402.308E+571687617 -7835797.01E+500067364 -> NaN Division_impossible
3045
+ xsub377 subtract 547402.308E+571687617 -7835797.01E+500067364 -> 5.47402308E+571687622 Inexact Rounded
3046
+ xadd378 add -4131738.09 7579.07566 -> -4124159.01 Inexact Rounded
3047
+ xcom378 compare -4131738.09 7579.07566 -> -1
3048
+ xdiv378 divide -4131738.09 7579.07566 -> -545.150659 Inexact Rounded
3049
+ xdvi378 divideint -4131738.09 7579.07566 -> -545
3050
+ xmul378 multiply -4131738.09 7579.07566 -> -3.13147556E+10 Inexact Rounded
3051
+ xpow378 power -4131738.09 7579 -> -4.68132794E+50143 Inexact Rounded
3052
+ xrem378 remainder -4131738.09 7579.07566 -> -1141.85530
3053
+ xsub378 subtract -4131738.09 7579.07566 -> -4139317.17 Inexact Rounded
3054
+ xadd379 add 504544.648 -7678.96133E-662143268 -> 504544.648 Inexact Rounded
3055
+ xcom379 compare 504544.648 -7678.96133E-662143268 -> 1
3056
+ xdiv379 divide 504544.648 -7678.96133E-662143268 -> -6.57048039E+662143269 Inexact Rounded
3057
+ xdvi379 divideint 504544.648 -7678.96133E-662143268 -> NaN Division_impossible
3058
+ xmul379 multiply 504544.648 -7678.96133E-662143268 -> -3.87437884E-662143259 Inexact Rounded
3059
+ xpow379 power 504544.648 -8 -> 2.38124001E-46 Inexact Rounded
3060
+ xrem379 remainder 504544.648 -7678.96133E-662143268 -> NaN Division_impossible
3061
+ xsub379 subtract 504544.648 -7678.96133E-662143268 -> 504544.648 Inexact Rounded
3062
+ xadd380 add 829898241 8912.99114E+929228149 -> 8.91299114E+929228152 Inexact Rounded
3063
+ xcom380 compare 829898241 8912.99114E+929228149 -> -1
3064
+ xdiv380 divide 829898241 8912.99114E+929228149 -> 9.31110811E-929228145 Inexact Rounded
3065
+ xdvi380 divideint 829898241 8912.99114E+929228149 -> 0
3066
+ xmul380 multiply 829898241 8912.99114E+929228149 -> 7.39687567E+929228161 Inexact Rounded
3067
+ xpow380 power 829898241 9 -> 1.86734084E+80 Inexact Rounded
3068
+ xrem380 remainder 829898241 8912.99114E+929228149 -> 829898241
3069
+ xsub380 subtract 829898241 8912.99114E+929228149 -> -8.91299114E+929228152 Inexact Rounded
3070
+ xadd381 add 53.6891691 -11.2371140 -> 42.4520551
3071
+ xcom381 compare 53.6891691 -11.2371140 -> 1
3072
+ xdiv381 divide 53.6891691 -11.2371140 -> -4.77784323 Inexact Rounded
3073
+ xdvi381 divideint 53.6891691 -11.2371140 -> -4
3074
+ xmul381 multiply 53.6891691 -11.2371140 -> -603.311314 Inexact Rounded
3075
+ xpow381 power 53.6891691 -11 -> 9.35936725E-20 Inexact Rounded
3076
+ xrem381 remainder 53.6891691 -11.2371140 -> 8.7407131
3077
+ xsub381 subtract 53.6891691 -11.2371140 -> 64.9262831
3078
+ xadd382 add -93951823.4 -25317.8645 -> -93977141.3 Inexact Rounded
3079
+ xcom382 compare -93951823.4 -25317.8645 -> -1
3080
+ xdiv382 divide -93951823.4 -25317.8645 -> 3710.89052 Inexact Rounded
3081
+ xdvi382 divideint -93951823.4 -25317.8645 -> 3710
3082
+ xmul382 multiply -93951823.4 -25317.8645 -> 2.37865953E+12 Inexact Rounded
3083
+ xpow382 power -93951823.4 -25318 -> 9.67857714E-201859 Inexact Rounded
3084
+ xrem382 remainder -93951823.4 -25317.8645 -> -22546.1050
3085
+ xsub382 subtract -93951823.4 -25317.8645 -> -93926505.5 Inexact Rounded
3086
+ xadd383 add 446919.123 951338490. -> 951785409 Inexact Rounded
3087
+ xcom383 compare 446919.123 951338490. -> -1
3088
+ xdiv383 divide 446919.123 951338490. -> 0.000469779293 Inexact Rounded
3089
+ xdvi383 divideint 446919.123 951338490. -> 0
3090
+ xmul383 multiply 446919.123 951338490. -> 4.25171364E+14 Inexact Rounded
3091
+ xpow383 power 446919.123 951338490 -> Infinity Overflow Inexact Rounded
3092
+ xrem383 remainder 446919.123 951338490. -> 446919.123
3093
+ xsub383 subtract 446919.123 951338490. -> -950891571 Inexact Rounded
3094
+ xadd384 add -8.01787748 -88.3076852 -> -96.3255627 Inexact Rounded
3095
+ xcom384 compare -8.01787748 -88.3076852 -> 1
3096
+ xdiv384 divide -8.01787748 -88.3076852 -> 0.0907947871 Inexact Rounded
3097
+ xdvi384 divideint -8.01787748 -88.3076852 -> 0
3098
+ xmul384 multiply -8.01787748 -88.3076852 -> 708.040200 Inexact Rounded
3099
+ xpow384 power -8.01787748 -88 -> 2.77186088E-80 Inexact Rounded
3100
+ xrem384 remainder -8.01787748 -88.3076852 -> -8.01787748
3101
+ xsub384 subtract -8.01787748 -88.3076852 -> 80.2898077 Inexact Rounded
3102
+ xadd385 add 517458139 -999731.548 -> 516458407 Inexact Rounded
3103
+ xcom385 compare 517458139 -999731.548 -> 1
3104
+ xdiv385 divide 517458139 -999731.548 -> -517.597089 Inexact Rounded
3105
+ xdvi385 divideint 517458139 -999731.548 -> -517
3106
+ xmul385 multiply 517458139 -999731.548 -> -5.17319226E+14 Inexact Rounded
3107
+ xpow385 power 517458139 -999732 -> 1.24821346E-8711540 Inexact Rounded
3108
+ xrem385 remainder 517458139 -999731.548 -> 596928.684
3109
+ xsub385 subtract 517458139 -999731.548 -> 518457871 Inexact Rounded
3110
+ xadd386 add -405543440 -4013.18295 -> -405547453 Inexact Rounded
3111
+ xcom386 compare -405543440 -4013.18295 -> -1
3112
+ xdiv386 divide -405543440 -4013.18295 -> 101052.816 Inexact Rounded
3113
+ xdvi386 divideint -405543440 -4013.18295 -> 101052
3114
+ xmul386 multiply -405543440 -4013.18295 -> 1.62752002E+12 Inexact Rounded
3115
+ xpow386 power -405543440 -4013 -> -8.83061932E-34545 Inexact Rounded
3116
+ xrem386 remainder -405543440 -4013.18295 -> -3276.53660
3117
+ xsub386 subtract -405543440 -4013.18295 -> -405539427 Inexact Rounded
3118
+ xadd387 add -49245250.1E+682760825 -848776.637 -> -4.92452501E+682760832 Inexact Rounded
3119
+ xcom387 compare -49245250.1E+682760825 -848776.637 -> -1
3120
+ xdiv387 divide -49245250.1E+682760825 -848776.637 -> 5.80190924E+682760826 Inexact Rounded
3121
+ xdvi387 divideint -49245250.1E+682760825 -848776.637 -> NaN Division_impossible
3122
+ xmul387 multiply -49245250.1E+682760825 -848776.637 -> 4.17982178E+682760838 Inexact Rounded
3123
+ xpow387 power -49245250.1E+682760825 -848777 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3124
+ xrem387 remainder -49245250.1E+682760825 -848776.637 -> NaN Division_impossible
3125
+ xsub387 subtract -49245250.1E+682760825 -848776.637 -> -4.92452501E+682760832 Inexact Rounded
3126
+ xadd388 add -151144455 -170371.29 -> -151314826 Inexact Rounded
3127
+ xcom388 compare -151144455 -170371.29 -> -1
3128
+ xdiv388 divide -151144455 -170371.29 -> 887.147447 Inexact Rounded
3129
+ xdvi388 divideint -151144455 -170371.29 -> 887
3130
+ xmul388 multiply -151144455 -170371.29 -> 2.57506758E+13 Inexact Rounded
3131
+ xpow388 power -151144455 -170371 -> -5.86496369E-1393532 Inexact Rounded
3132
+ xrem388 remainder -151144455 -170371.29 -> -25120.77
3133
+ xsub388 subtract -151144455 -170371.29 -> -150974084 Inexact Rounded
3134
+ xadd389 add -729236746.E+662737067 9.10823602 -> -7.29236746E+662737075 Inexact Rounded
3135
+ xcom389 compare -729236746.E+662737067 9.10823602 -> -1
3136
+ xdiv389 divide -729236746.E+662737067 9.10823602 -> -8.00634442E+662737074 Inexact Rounded
3137
+ xdvi389 divideint -729236746.E+662737067 9.10823602 -> NaN Division_impossible
3138
+ xmul389 multiply -729236746.E+662737067 9.10823602 -> -6.64206040E+662737076 Inexact Rounded
3139
+ xpow389 power -729236746.E+662737067 9 -> -Infinity Overflow Inexact Rounded
3140
+ xrem389 remainder -729236746.E+662737067 9.10823602 -> NaN Division_impossible
3141
+ xsub389 subtract -729236746.E+662737067 9.10823602 -> -7.29236746E+662737075 Inexact Rounded
3142
+ xadd390 add 534.394729 -2369839.37 -> -2369304.98 Inexact Rounded
3143
+ xcom390 compare 534.394729 -2369839.37 -> 1
3144
+ xdiv390 divide 534.394729 -2369839.37 -> -0.000225498291 Inexact Rounded
3145
+ xdvi390 divideint 534.394729 -2369839.37 -> -0
3146
+ xmul390 multiply 534.394729 -2369839.37 -> -1.26642967E+9 Inexact Rounded
3147
+ xpow390 power 534.394729 -2369839 -> 7.12522896E-6464595 Inexact Rounded
3148
+ xrem390 remainder 534.394729 -2369839.37 -> 534.394729
3149
+ xsub390 subtract 534.394729 -2369839.37 -> 2370373.76 Inexact Rounded
3150
+ xadd391 add 89100.1797 224.370309 -> 89324.5500 Inexact Rounded
3151
+ xcom391 compare 89100.1797 224.370309 -> 1
3152
+ xdiv391 divide 89100.1797 224.370309 -> 397.112167 Inexact Rounded
3153
+ xdvi391 divideint 89100.1797 224.370309 -> 397
3154
+ xmul391 multiply 89100.1797 224.370309 -> 19991434.9 Inexact Rounded
3155
+ xpow391 power 89100.1797 224 -> 5.92654936E+1108 Inexact Rounded
3156
+ xrem391 remainder 89100.1797 224.370309 -> 25.167027
3157
+ xsub391 subtract 89100.1797 224.370309 -> 88875.8094 Inexact Rounded
3158
+ xadd392 add -821377.777 38.552821 -> -821339.224 Inexact Rounded
3159
+ xcom392 compare -821377.777 38.552821 -> -1
3160
+ xdiv392 divide -821377.777 38.552821 -> -21305.2575 Inexact Rounded
3161
+ xdvi392 divideint -821377.777 38.552821 -> -21305
3162
+ xmul392 multiply -821377.777 38.552821 -> -31666430.4 Inexact Rounded
3163
+ xpow392 power -821377.777 39 -> -4.64702482E+230 Inexact Rounded
3164
+ xrem392 remainder -821377.777 38.552821 -> -9.925595
3165
+ xsub392 subtract -821377.777 38.552821 -> -821416.330 Inexact Rounded
3166
+ xadd393 add -392640.782 -2571619.5E+113237865 -> -2.57161950E+113237871 Inexact Rounded
3167
+ xcom393 compare -392640.782 -2571619.5E+113237865 -> 1
3168
+ xdiv393 divide -392640.782 -2571619.5E+113237865 -> 1.52682301E-113237866 Inexact Rounded
3169
+ xdvi393 divideint -392640.782 -2571619.5E+113237865 -> 0
3170
+ xmul393 multiply -392640.782 -2571619.5E+113237865 -> 1.00972269E+113237877 Inexact Rounded
3171
+ xpow393 power -392640.782 -3 -> -1.65201422E-17 Inexact Rounded
3172
+ xrem393 remainder -392640.782 -2571619.5E+113237865 -> -392640.782
3173
+ xsub393 subtract -392640.782 -2571619.5E+113237865 -> 2.57161950E+113237871 Inexact Rounded
3174
+ xadd394 add -651397.712 -723.59673 -> -652121.309 Inexact Rounded
3175
+ xcom394 compare -651397.712 -723.59673 -> -1
3176
+ xdiv394 divide -651397.712 -723.59673 -> 900.222023 Inexact Rounded
3177
+ xdvi394 divideint -651397.712 -723.59673 -> 900
3178
+ xmul394 multiply -651397.712 -723.59673 -> 471349254 Inexact Rounded
3179
+ xpow394 power -651397.712 -724 -> 5.96115415E-4210 Inexact Rounded
3180
+ xrem394 remainder -651397.712 -723.59673 -> -160.65500
3181
+ xsub394 subtract -651397.712 -723.59673 -> -650674.115 Inexact Rounded
3182
+ xadd395 add 86.6890892 940380864 -> 940380951 Inexact Rounded
3183
+ xcom395 compare 86.6890892 940380864 -> -1
3184
+ xdiv395 divide 86.6890892 940380864 -> 9.21850843E-8 Inexact Rounded
3185
+ xdvi395 divideint 86.6890892 940380864 -> 0
3186
+ xmul395 multiply 86.6890892 940380864 -> 8.15207606E+10 Inexact Rounded
3187
+ xpow395 power 86.6890892 940380864 -> Infinity Overflow Inexact Rounded
3188
+ xrem395 remainder 86.6890892 940380864 -> 86.6890892
3189
+ xsub395 subtract 86.6890892 940380864 -> -940380777 Inexact Rounded
3190
+ xadd396 add 4880.06442E-382222621 -115627239E-912834031 -> 4.88006442E-382222618 Inexact Rounded
3191
+ xcom396 compare 4880.06442E-382222621 -115627239E-912834031 -> 1
3192
+ xdiv396 divide 4880.06442E-382222621 -115627239E-912834031 -> -4.22051453E+530611405 Inexact Rounded
3193
+ xdvi396 divideint 4880.06442E-382222621 -115627239E-912834031 -> NaN Division_impossible
3194
+ xmul396 multiply 4880.06442E-382222621 -115627239E-912834031 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3195
+ xpow396 power 4880.06442E-382222621 -1 -> 2.04915328E+382222617 Inexact Rounded
3196
+ xrem396 remainder 4880.06442E-382222621 -115627239E-912834031 -> NaN Division_impossible
3197
+ xsub396 subtract 4880.06442E-382222621 -115627239E-912834031 -> 4.88006442E-382222618 Inexact Rounded
3198
+ xadd397 add 173398265E-532383158 3462.51450E+80986915 -> 3.46251450E+80986918 Inexact Rounded
3199
+ xcom397 compare 173398265E-532383158 3462.51450E+80986915 -> -1
3200
+ xdiv397 divide 173398265E-532383158 3462.51450E+80986915 -> 5.00787116E-613370069 Inexact Rounded
3201
+ xdvi397 divideint 173398265E-532383158 3462.51450E+80986915 -> 0
3202
+ xmul397 multiply 173398265E-532383158 3462.51450E+80986915 -> 6.00394007E-451396232 Inexact Rounded
3203
+ xpow397 power 173398265E-532383158 3 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3204
+ xrem397 remainder 173398265E-532383158 3462.51450E+80986915 -> 1.73398265E-532383150
3205
+ xsub397 subtract 173398265E-532383158 3462.51450E+80986915 -> -3.46251450E+80986918 Inexact Rounded
3206
+ xadd398 add -1522176.78 -6631061.77 -> -8153238.55
3207
+ xcom398 compare -1522176.78 -6631061.77 -> 1
3208
+ xdiv398 divide -1522176.78 -6631061.77 -> 0.229552496 Inexact Rounded
3209
+ xdvi398 divideint -1522176.78 -6631061.77 -> 0
3210
+ xmul398 multiply -1522176.78 -6631061.77 -> 1.00936483E+13 Inexact Rounded
3211
+ xpow398 power -1522176.78 -6631062 -> 4.54268854E-40996310 Inexact Rounded
3212
+ xrem398 remainder -1522176.78 -6631061.77 -> -1522176.78
3213
+ xsub398 subtract -1522176.78 -6631061.77 -> 5108884.99
3214
+ xadd399 add 538.10453 522934310 -> 522934848 Inexact Rounded
3215
+ xcom399 compare 538.10453 522934310 -> -1
3216
+ xdiv399 divide 538.10453 522934310 -> 0.00000102900980 Inexact Rounded
3217
+ xdvi399 divideint 538.10453 522934310 -> 0
3218
+ xmul399 multiply 538.10453 522934310 -> 2.81393321E+11 Inexact Rounded
3219
+ xpow399 power 538.10453 522934310 -> Infinity Overflow Inexact Rounded
3220
+ xrem399 remainder 538.10453 522934310 -> 538.10453
3221
+ xsub399 subtract 538.10453 522934310 -> -522933772 Inexact Rounded
3222
+ xadd400 add 880243.444E-750940977 -354.601578E-204943740 -> -3.54601578E-204943738 Inexact Rounded
3223
+ xcom400 compare 880243.444E-750940977 -354.601578E-204943740 -> 1
3224
+ xdiv400 divide 880243.444E-750940977 -354.601578E-204943740 -> -2.48234497E-545997234 Inexact Rounded
3225
+ xdvi400 divideint 880243.444E-750940977 -354.601578E-204943740 -> -0
3226
+ xmul400 multiply 880243.444E-750940977 -354.601578E-204943740 -> -3.12135714E-955884709 Inexact Rounded
3227
+ xpow400 power 880243.444E-750940977 -4 -> Infinity Overflow Inexact Rounded
3228
+ xrem400 remainder 880243.444E-750940977 -354.601578E-204943740 -> 8.80243444E-750940972
3229
+ xsub400 subtract 880243.444E-750940977 -354.601578E-204943740 -> 3.54601578E-204943738 Inexact Rounded
3230
+ xadd401 add 968370.780 6677268.73 -> 7645639.51 Rounded
3231
+ xcom401 compare 968370.780 6677268.73 -> -1
3232
+ xdiv401 divide 968370.780 6677268.73 -> 0.145024982 Inexact Rounded
3233
+ xdvi401 divideint 968370.780 6677268.73 -> 0
3234
+ xmul401 multiply 968370.780 6677268.73 -> 6.46607193E+12 Inexact Rounded
3235
+ xpow401 power 968370.780 6677269 -> 3.29990931E+39970410 Inexact Rounded
3236
+ xrem401 remainder 968370.780 6677268.73 -> 968370.780
3237
+ xsub401 subtract 968370.780 6677268.73 -> -5708897.95 Rounded
3238
+ xadd402 add -97.7474945 31248241.5 -> 31248143.8 Inexact Rounded
3239
+ xcom402 compare -97.7474945 31248241.5 -> -1
3240
+ xdiv402 divide -97.7474945 31248241.5 -> -0.00000312809585 Inexact Rounded
3241
+ xdvi402 divideint -97.7474945 31248241.5 -> -0
3242
+ xmul402 multiply -97.7474945 31248241.5 -> -3.05443731E+9 Inexact Rounded
3243
+ xpow402 power -97.7474945 31248242 -> 2.90714257E+62187302 Inexact Rounded
3244
+ xrem402 remainder -97.7474945 31248241.5 -> -97.7474945
3245
+ xsub402 subtract -97.7474945 31248241.5 -> -31248339.2 Inexact Rounded
3246
+ xadd403 add -187582786.E+369916952 957840435E+744365567 -> 9.57840435E+744365575 Inexact Rounded
3247
+ xcom403 compare -187582786.E+369916952 957840435E+744365567 -> -1
3248
+ xdiv403 divide -187582786.E+369916952 957840435E+744365567 -> -1.95839285E-374448616 Inexact Rounded
3249
+ xdvi403 divideint -187582786.E+369916952 957840435E+744365567 -> -0
3250
+ xmul403 multiply -187582786.E+369916952 957840435E+744365567 -> -Infinity Inexact Overflow Rounded
3251
+ xpow403 power -187582786.E+369916952 10 -> Infinity Overflow Inexact Rounded
3252
+ xrem403 remainder -187582786.E+369916952 957840435E+744365567 -> -1.87582786E+369916960
3253
+ xsub403 subtract -187582786.E+369916952 957840435E+744365567 -> -9.57840435E+744365575 Inexact Rounded
3254
+ xadd404 add -328026144. -125499735. -> -453525879
3255
+ xcom404 compare -328026144. -125499735. -> -1
3256
+ xdiv404 divide -328026144. -125499735. -> 2.61375965 Inexact Rounded
3257
+ xdvi404 divideint -328026144. -125499735. -> 2
3258
+ xmul404 multiply -328026144. -125499735. -> 4.11671941E+16 Inexact Rounded
3259
+ xpow404 power -328026144. -125499735 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3260
+ xrem404 remainder -328026144. -125499735. -> -77026674
3261
+ xsub404 subtract -328026144. -125499735. -> -202526409
3262
+ xadd405 add -99424150.2E-523662102 3712.35030 -> 3712.35030 Inexact Rounded
3263
+ xcom405 compare -99424150.2E-523662102 3712.35030 -> -1
3264
+ xdiv405 divide -99424150.2E-523662102 3712.35030 -> -2.67819958E-523662098 Inexact Rounded
3265
+ xdvi405 divideint -99424150.2E-523662102 3712.35030 -> -0
3266
+ xmul405 multiply -99424150.2E-523662102 3712.35030 -> -3.69097274E-523662091 Inexact Rounded
3267
+ xpow405 power -99424150.2E-523662102 3712 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3268
+ xrem405 remainder -99424150.2E-523662102 3712.35030 -> -9.94241502E-523662095
3269
+ xsub405 subtract -99424150.2E-523662102 3712.35030 -> -3712.35030 Inexact Rounded
3270
+ xadd406 add 14838.0718 9489893.28E+830631266 -> 9.48989328E+830631272 Inexact Rounded
3271
+ xcom406 compare 14838.0718 9489893.28E+830631266 -> -1
3272
+ xdiv406 divide 14838.0718 9489893.28E+830631266 -> 1.56356572E-830631269 Inexact Rounded
3273
+ xdvi406 divideint 14838.0718 9489893.28E+830631266 -> 0
3274
+ xmul406 multiply 14838.0718 9489893.28E+830631266 -> 1.40811718E+830631277 Inexact Rounded
3275
+ xpow406 power 14838.0718 9 -> 3.48656057E+37 Inexact Rounded
3276
+ xrem406 remainder 14838.0718 9489893.28E+830631266 -> 14838.0718
3277
+ xsub406 subtract 14838.0718 9489893.28E+830631266 -> -9.48989328E+830631272 Inexact Rounded
3278
+ xadd407 add 71207472.8 -31835.0809 -> 71175637.7 Inexact Rounded
3279
+ xcom407 compare 71207472.8 -31835.0809 -> 1
3280
+ xdiv407 divide 71207472.8 -31835.0809 -> -2236.76117 Inexact Rounded
3281
+ xdvi407 divideint 71207472.8 -31835.0809 -> -2236
3282
+ xmul407 multiply 71207472.8 -31835.0809 -> -2.26689566E+12 Inexact Rounded
3283
+ xpow407 power 71207472.8 -31835 -> 7.05333953E-249986 Inexact Rounded
3284
+ xrem407 remainder 71207472.8 -31835.0809 -> 24231.9076
3285
+ xsub407 subtract 71207472.8 -31835.0809 -> 71239307.9 Inexact Rounded
3286
+ xadd408 add -20440.4394 -44.4064328E+511085806 -> -4.44064328E+511085807 Inexact Rounded
3287
+ xcom408 compare -20440.4394 -44.4064328E+511085806 -> 1
3288
+ xdiv408 divide -20440.4394 -44.4064328E+511085806 -> 4.60303567E-511085804 Inexact Rounded
3289
+ xdvi408 divideint -20440.4394 -44.4064328E+511085806 -> 0
3290
+ xmul408 multiply -20440.4394 -44.4064328E+511085806 -> 9.07686999E+511085811 Inexact Rounded
3291
+ xpow408 power -20440.4394 -4 -> 5.72847590E-18 Inexact Rounded
3292
+ xrem408 remainder -20440.4394 -44.4064328E+511085806 -> -20440.4394
3293
+ xsub408 subtract -20440.4394 -44.4064328E+511085806 -> 4.44064328E+511085807 Inexact Rounded
3294
+ xadd409 add -54.3684171E-807210192 1.04592973E-984041807 -> -5.43684171E-807210191 Inexact Rounded
3295
+ xcom409 compare -54.3684171E-807210192 1.04592973E-984041807 -> -1
3296
+ xdiv409 divide -54.3684171E-807210192 1.04592973E-984041807 -> -5.19809463E+176831616 Inexact Rounded
3297
+ xdvi409 divideint -54.3684171E-807210192 1.04592973E-984041807 -> NaN Division_impossible
3298
+ xmul409 multiply -54.3684171E-807210192 1.04592973E-984041807 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3299
+ xpow409 power -54.3684171E-807210192 1 -> -5.43684171E-807210191
3300
+ xrem409 remainder -54.3684171E-807210192 1.04592973E-984041807 -> NaN Division_impossible
3301
+ xsub409 subtract -54.3684171E-807210192 1.04592973E-984041807 -> -5.43684171E-807210191 Inexact Rounded
3302
+ xadd410 add 54310060.5E+948159739 274320701.E+205880484 -> 5.43100605E+948159746 Inexact Rounded
3303
+ xcom410 compare 54310060.5E+948159739 274320701.E+205880484 -> 1
3304
+ xdiv410 divide 54310060.5E+948159739 274320701.E+205880484 -> 1.97980175E+742279254 Inexact Rounded
3305
+ xdvi410 divideint 54310060.5E+948159739 274320701.E+205880484 -> NaN Division_impossible
3306
+ xmul410 multiply 54310060.5E+948159739 274320701.E+205880484 -> Infinity Inexact Overflow Rounded
3307
+ xpow410 power 54310060.5E+948159739 3 -> Infinity Overflow Inexact Rounded
3308
+ xrem410 remainder 54310060.5E+948159739 274320701.E+205880484 -> NaN Division_impossible
3309
+ xsub410 subtract 54310060.5E+948159739 274320701.E+205880484 -> 5.43100605E+948159746 Inexact Rounded
3310
+ xadd411 add -657.186702 426844.39 -> 426187.203 Inexact Rounded
3311
+ xcom411 compare -657.186702 426844.39 -> -1
3312
+ xdiv411 divide -657.186702 426844.39 -> -0.00153964001 Inexact Rounded
3313
+ xdvi411 divideint -657.186702 426844.39 -> -0
3314
+ xmul411 multiply -657.186702 426844.39 -> -280516457 Inexact Rounded
3315
+ xpow411 power -657.186702 426844 -> 3.50000575E+1202713 Inexact Rounded
3316
+ xrem411 remainder -657.186702 426844.39 -> -657.186702
3317
+ xsub411 subtract -657.186702 426844.39 -> -427501.577 Inexact Rounded
3318
+ xadd412 add -41593077.0 -688607.564 -> -42281684.6 Inexact Rounded
3319
+ xcom412 compare -41593077.0 -688607.564 -> -1
3320
+ xdiv412 divide -41593077.0 -688607.564 -> 60.4017138 Inexact Rounded
3321
+ xdvi412 divideint -41593077.0 -688607.564 -> 60
3322
+ xmul412 multiply -41593077.0 -688607.564 -> 2.86413074E+13 Inexact Rounded
3323
+ xpow412 power -41593077.0 -688608 -> 1.42150750E-5246519 Inexact Rounded
3324
+ xrem412 remainder -41593077.0 -688607.564 -> -276623.160
3325
+ xsub412 subtract -41593077.0 -688607.564 -> -40904469.4 Inexact Rounded
3326
+ xadd413 add -5786.38132 190556652.E+177045877 -> 1.90556652E+177045885 Inexact Rounded
3327
+ xcom413 compare -5786.38132 190556652.E+177045877 -> -1
3328
+ xdiv413 divide -5786.38132 190556652.E+177045877 -> -3.03656748E-177045882 Inexact Rounded
3329
+ xdvi413 divideint -5786.38132 190556652.E+177045877 -> -0
3330
+ xmul413 multiply -5786.38132 190556652.E+177045877 -> -1.10263345E+177045889 Inexact Rounded
3331
+ xpow413 power -5786.38132 2 -> 33482208.8 Inexact Rounded
3332
+ xrem413 remainder -5786.38132 190556652.E+177045877 -> -5786.38132
3333
+ xsub413 subtract -5786.38132 190556652.E+177045877 -> -1.90556652E+177045885 Inexact Rounded
3334
+ xadd414 add 737622.974 -241560693E+249506565 -> -2.41560693E+249506573 Inexact Rounded
3335
+ xcom414 compare 737622.974 -241560693E+249506565 -> 1
3336
+ xdiv414 divide 737622.974 -241560693E+249506565 -> -3.05357202E-249506568 Inexact Rounded
3337
+ xdvi414 divideint 737622.974 -241560693E+249506565 -> -0
3338
+ xmul414 multiply 737622.974 -241560693E+249506565 -> -1.78180717E+249506579 Inexact Rounded
3339
+ xpow414 power 737622.974 -2 -> 1.83793916E-12 Inexact Rounded
3340
+ xrem414 remainder 737622.974 -241560693E+249506565 -> 737622.974
3341
+ xsub414 subtract 737622.974 -241560693E+249506565 -> 2.41560693E+249506573 Inexact Rounded
3342
+ xadd415 add 5615373.52 -7.27583808E-949781048 -> 5615373.52 Inexact Rounded
3343
+ xcom415 compare 5615373.52 -7.27583808E-949781048 -> 1
3344
+ xdiv415 divide 5615373.52 -7.27583808E-949781048 -> -7.71783739E+949781053 Inexact Rounded
3345
+ xdvi415 divideint 5615373.52 -7.27583808E-949781048 -> NaN Division_impossible
3346
+ xmul415 multiply 5615373.52 -7.27583808E-949781048 -> -4.08565485E-949781041 Inexact Rounded
3347
+ xpow415 power 5615373.52 -7 -> 5.68001460E-48 Inexact Rounded
3348
+ xrem415 remainder 5615373.52 -7.27583808E-949781048 -> NaN Division_impossible
3349
+ xsub415 subtract 5615373.52 -7.27583808E-949781048 -> 5615373.52 Inexact Rounded
3350
+ xadd416 add 644136.179 -835708.103 -> -191571.924
3351
+ xcom416 compare 644136.179 -835708.103 -> 1
3352
+ xdiv416 divide 644136.179 -835708.103 -> -0.770766942 Inexact Rounded
3353
+ xdvi416 divideint 644136.179 -835708.103 -> -0
3354
+ xmul416 multiply 644136.179 -835708.103 -> -5.38309824E+11 Inexact Rounded
3355
+ xpow416 power 644136.179 -835708 -> 7.41936858E-4854610 Inexact Rounded
3356
+ xrem416 remainder 644136.179 -835708.103 -> 644136.179
3357
+ xsub416 subtract 644136.179 -835708.103 -> 1479844.28 Inexact Rounded
3358
+ xadd417 add -307.419521E+466861843 -738689976.E-199032711 -> -3.07419521E+466861845 Inexact Rounded
3359
+ xcom417 compare -307.419521E+466861843 -738689976.E-199032711 -> -1
3360
+ xdiv417 divide -307.419521E+466861843 -738689976.E-199032711 -> 4.16168529E+665894547 Inexact Rounded
3361
+ xdvi417 divideint -307.419521E+466861843 -738689976.E-199032711 -> NaN Division_impossible
3362
+ xmul417 multiply -307.419521E+466861843 -738689976.E-199032711 -> 2.27087719E+267829143 Inexact Rounded
3363
+ xpow417 power -307.419521E+466861843 -7 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3364
+ xrem417 remainder -307.419521E+466861843 -738689976.E-199032711 -> NaN Division_impossible
3365
+ xsub417 subtract -307.419521E+466861843 -738689976.E-199032711 -> -3.07419521E+466861845 Inexact Rounded
3366
+ xadd418 add -619642.130 -226740537.E-902590153 -> -619642.130 Inexact Rounded
3367
+ xcom418 compare -619642.130 -226740537.E-902590153 -> -1
3368
+ xdiv418 divide -619642.130 -226740537.E-902590153 -> 2.73282466E+902590150 Inexact Rounded
3369
+ xdvi418 divideint -619642.130 -226740537.E-902590153 -> NaN Division_impossible
3370
+ xmul418 multiply -619642.130 -226740537.E-902590153 -> 1.40497989E-902590139 Inexact Rounded
3371
+ xpow418 power -619642.130 -2 -> 2.60446259E-12 Inexact Rounded
3372
+ xrem418 remainder -619642.130 -226740537.E-902590153 -> NaN Division_impossible
3373
+ xsub418 subtract -619642.130 -226740537.E-902590153 -> -619642.130 Inexact Rounded
3374
+ xadd419 add -31068.7549 -3.41495042E+86001379 -> -3.41495042E+86001379 Inexact Rounded
3375
+ xcom419 compare -31068.7549 -3.41495042E+86001379 -> 1
3376
+ xdiv419 divide -31068.7549 -3.41495042E+86001379 -> 9.09786412E-86001376 Inexact Rounded
3377
+ xdvi419 divideint -31068.7549 -3.41495042E+86001379 -> 0
3378
+ xmul419 multiply -31068.7549 -3.41495042E+86001379 -> 1.06098258E+86001384 Inexact Rounded
3379
+ xpow419 power -31068.7549 -3 -> -3.33448258E-14 Inexact Rounded
3380
+ xrem419 remainder -31068.7549 -3.41495042E+86001379 -> -31068.7549
3381
+ xsub419 subtract -31068.7549 -3.41495042E+86001379 -> 3.41495042E+86001379 Inexact Rounded
3382
+ xadd420 add -68951173. -211804977.E-97318126 -> -68951173.0 Inexact Rounded
3383
+ xcom420 compare -68951173. -211804977.E-97318126 -> -1
3384
+ xdiv420 divide -68951173. -211804977.E-97318126 -> 3.25540854E+97318125 Inexact Rounded
3385
+ xdvi420 divideint -68951173. -211804977.E-97318126 -> NaN Division_impossible
3386
+ xmul420 multiply -68951173. -211804977.E-97318126 -> 1.46042016E-97318110 Inexact Rounded
3387
+ xpow420 power -68951173. -2 -> 2.10337488E-16 Inexact Rounded
3388
+ xrem420 remainder -68951173. -211804977.E-97318126 -> NaN Division_impossible
3389
+ xsub420 subtract -68951173. -211804977.E-97318126 -> -68951173.0 Inexact Rounded
3390
+ xadd421 add -4.09492571E-301749490 434.20199E-749390952 -> -4.09492571E-301749490 Inexact Rounded
3391
+ xcom421 compare -4.09492571E-301749490 434.20199E-749390952 -> -1
3392
+ xdiv421 divide -4.09492571E-301749490 434.20199E-749390952 -> -9.43092341E+447641459 Inexact Rounded
3393
+ xdvi421 divideint -4.09492571E-301749490 434.20199E-749390952 -> NaN Division_impossible
3394
+ xmul421 multiply -4.09492571E-301749490 434.20199E-749390952 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3395
+ xpow421 power -4.09492571E-301749490 4 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3396
+ xrem421 remainder -4.09492571E-301749490 434.20199E-749390952 -> NaN Division_impossible
3397
+ xsub421 subtract -4.09492571E-301749490 434.20199E-749390952 -> -4.09492571E-301749490 Inexact Rounded
3398
+ xadd422 add 3898.03188 -82572.615 -> -78674.5831 Inexact Rounded
3399
+ xcom422 compare 3898.03188 -82572.615 -> 1
3400
+ xdiv422 divide 3898.03188 -82572.615 -> -0.0472073202 Inexact Rounded
3401
+ xdvi422 divideint 3898.03188 -82572.615 -> -0
3402
+ xmul422 multiply 3898.03188 -82572.615 -> -321870686 Inexact Rounded
3403
+ xpow422 power 3898.03188 -82573 -> 1.33010737E-296507 Inexact Rounded
3404
+ xrem422 remainder 3898.03188 -82572.615 -> 3898.03188
3405
+ xsub422 subtract 3898.03188 -82572.615 -> 86470.6469 Inexact Rounded
3406
+ xadd423 add -1.7619356 -2546.64043 -> -2548.40237 Inexact Rounded
3407
+ xcom423 compare -1.7619356 -2546.64043 -> 1
3408
+ xdiv423 divide -1.7619356 -2546.64043 -> 0.000691866657 Inexact Rounded
3409
+ xdvi423 divideint -1.7619356 -2546.64043 -> 0
3410
+ xmul423 multiply -1.7619356 -2546.64043 -> 4487.01643 Inexact Rounded
3411
+ xpow423 power -1.7619356 -2547 -> -2.90664557E-627 Inexact Rounded
3412
+ xrem423 remainder -1.7619356 -2546.64043 -> -1.7619356
3413
+ xsub423 subtract -1.7619356 -2546.64043 -> 2544.87849 Inexact Rounded
3414
+ xadd424 add 59714.1968 29734388.6E-564525525 -> 59714.1968 Inexact Rounded
3415
+ xcom424 compare 59714.1968 29734388.6E-564525525 -> 1
3416
+ xdiv424 divide 59714.1968 29734388.6E-564525525 -> 2.00825373E+564525522 Inexact Rounded
3417
+ xdvi424 divideint 59714.1968 29734388.6E-564525525 -> NaN Division_impossible
3418
+ xmul424 multiply 59714.1968 29734388.6E-564525525 -> 1.77556513E-564525513 Inexact Rounded
3419
+ xpow424 power 59714.1968 3 -> 2.12928005E+14 Inexact Rounded
3420
+ xrem424 remainder 59714.1968 29734388.6E-564525525 -> NaN Division_impossible
3421
+ xsub424 subtract 59714.1968 29734388.6E-564525525 -> 59714.1968 Inexact Rounded
3422
+ xadd425 add 6.88891136E-935467395 -785049.562E-741671442 -> -7.85049562E-741671437 Inexact Rounded
3423
+ xcom425 compare 6.88891136E-935467395 -785049.562E-741671442 -> 1
3424
+ xdiv425 divide 6.88891136E-935467395 -785049.562E-741671442 -> -8.77512923E-193795959 Inexact Rounded
3425
+ xdvi425 divideint 6.88891136E-935467395 -785049.562E-741671442 -> -0
3426
+ xmul425 multiply 6.88891136E-935467395 -785049.562E-741671442 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3427
+ xpow425 power 6.88891136E-935467395 -8 -> Infinity Overflow Inexact Rounded
3428
+ xrem425 remainder 6.88891136E-935467395 -785049.562E-741671442 -> 6.88891136E-935467395
3429
+ xsub425 subtract 6.88891136E-935467395 -785049.562E-741671442 -> 7.85049562E-741671437 Inexact Rounded
3430
+ xadd426 add 975566251 -519.858530 -> 975565731 Inexact Rounded
3431
+ xcom426 compare 975566251 -519.858530 -> 1
3432
+ xdiv426 divide 975566251 -519.858530 -> -1876599.49 Inexact Rounded
3433
+ xdvi426 divideint 975566251 -519.858530 -> -1876599
3434
+ xmul426 multiply 975566251 -519.858530 -> -5.07156437E+11 Inexact Rounded
3435
+ xpow426 power 975566251 -520 -> 3.85905300E-4675 Inexact Rounded
3436
+ xrem426 remainder 975566251 -519.858530 -> 253.460530
3437
+ xsub426 subtract 975566251 -519.858530 -> 975566771 Inexact Rounded
3438
+ xadd427 add 307401954 -231481582. -> 75920372
3439
+ xcom427 compare 307401954 -231481582. -> 1
3440
+ xdiv427 divide 307401954 -231481582. -> -1.32797586 Inexact Rounded
3441
+ xdvi427 divideint 307401954 -231481582. -> -1
3442
+ xmul427 multiply 307401954 -231481582. -> -7.11578906E+16 Inexact Rounded
3443
+ xpow427 power 307401954 -231481582 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3444
+ xrem427 remainder 307401954 -231481582. -> 75920372
3445
+ xsub427 subtract 307401954 -231481582. -> 538883536
3446
+ xadd428 add 2237645.48E+992947388 -60618055.3E-857316706 -> 2.23764548E+992947394 Inexact Rounded
3447
+ xcom428 compare 2237645.48E+992947388 -60618055.3E-857316706 -> 1
3448
+ xdiv428 divide 2237645.48E+992947388 -60618055.3E-857316706 -> -Infinity Inexact Overflow Rounded
3449
+ xdvi428 divideint 2237645.48E+992947388 -60618055.3E-857316706 -> NaN Division_impossible
3450
+ xmul428 multiply 2237645.48E+992947388 -60618055.3E-857316706 -> -1.35641717E+135630696 Inexact Rounded
3451
+ xpow428 power 2237645.48E+992947388 -6 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3452
+ xrem428 remainder 2237645.48E+992947388 -60618055.3E-857316706 -> NaN Division_impossible
3453
+ xsub428 subtract 2237645.48E+992947388 -60618055.3E-857316706 -> 2.23764548E+992947394 Inexact Rounded
3454
+ xadd429 add -403903.851 35.5049687E-72095155 -> -403903.851 Inexact Rounded
3455
+ xcom429 compare -403903.851 35.5049687E-72095155 -> -1
3456
+ xdiv429 divide -403903.851 35.5049687E-72095155 -> -1.13759810E+72095159 Inexact Rounded
3457
+ xdvi429 divideint -403903.851 35.5049687E-72095155 -> NaN Division_impossible
3458
+ xmul429 multiply -403903.851 35.5049687E-72095155 -> -1.43405936E-72095148 Inexact Rounded
3459
+ xpow429 power -403903.851 4 -> 2.66141117E+22 Inexact Rounded
3460
+ xrem429 remainder -403903.851 35.5049687E-72095155 -> NaN Division_impossible
3461
+ xsub429 subtract -403903.851 35.5049687E-72095155 -> -403903.851 Inexact Rounded
3462
+ xadd430 add 6.48674979 -621732.532E+422575800 -> -6.21732532E+422575805 Inexact Rounded
3463
+ xcom430 compare 6.48674979 -621732.532E+422575800 -> 1
3464
+ xdiv430 divide 6.48674979 -621732.532E+422575800 -> -1.04333447E-422575805 Inexact Rounded
3465
+ xdvi430 divideint 6.48674979 -621732.532E+422575800 -> -0
3466
+ xmul430 multiply 6.48674979 -621732.532E+422575800 -> -4.03302337E+422575806 Inexact Rounded
3467
+ xpow430 power 6.48674979 -6 -> 0.0000134226146 Inexact Rounded
3468
+ xrem430 remainder 6.48674979 -621732.532E+422575800 -> 6.48674979
3469
+ xsub430 subtract 6.48674979 -621732.532E+422575800 -> 6.21732532E+422575805 Inexact Rounded
3470
+ xadd431 add -31401.9418 36.3960679 -> -31365.5457 Inexact Rounded
3471
+ xcom431 compare -31401.9418 36.3960679 -> -1
3472
+ xdiv431 divide -31401.9418 36.3960679 -> -862.783911 Inexact Rounded
3473
+ xdvi431 divideint -31401.9418 36.3960679 -> -862
3474
+ xmul431 multiply -31401.9418 36.3960679 -> -1142907.21 Inexact Rounded
3475
+ xpow431 power -31401.9418 36 -> 7.77023505E+161 Inexact Rounded
3476
+ xrem431 remainder -31401.9418 36.3960679 -> -28.5312702
3477
+ xsub431 subtract -31401.9418 36.3960679 -> -31438.3379 Inexact Rounded
3478
+ xadd432 add 31345321.1 51.5482191 -> 31345372.6 Inexact Rounded
3479
+ xcom432 compare 31345321.1 51.5482191 -> 1
3480
+ xdiv432 divide 31345321.1 51.5482191 -> 608077.673 Inexact Rounded
3481
+ xdvi432 divideint 31345321.1 51.5482191 -> 608077
3482
+ xmul432 multiply 31345321.1 51.5482191 -> 1.61579548E+9 Inexact Rounded
3483
+ xpow432 power 31345321.1 52 -> 6.32385059E+389 Inexact Rounded
3484
+ xrem432 remainder 31345321.1 51.5482191 -> 34.6743293
3485
+ xsub432 subtract 31345321.1 51.5482191 -> 31345269.6 Inexact Rounded
3486
+ xadd433 add -64.172844 -28506227.2E-767965800 -> -64.1728440 Inexact Rounded
3487
+ xcom433 compare -64.172844 -28506227.2E-767965800 -> -1
3488
+ xdiv433 divide -64.172844 -28506227.2E-767965800 -> 2.25118686E+767965794 Inexact Rounded
3489
+ xdvi433 divideint -64.172844 -28506227.2E-767965800 -> NaN Division_impossible
3490
+ xmul433 multiply -64.172844 -28506227.2E-767965800 -> 1.82932567E-767965791 Inexact Rounded
3491
+ xpow433 power -64.172844 -3 -> -0.00000378395654 Inexact Rounded
3492
+ xrem433 remainder -64.172844 -28506227.2E-767965800 -> NaN Division_impossible
3493
+ xsub433 subtract -64.172844 -28506227.2E-767965800 -> -64.1728440 Inexact Rounded
3494
+ xadd434 add 70437.1551 -62916.1233 -> 7521.0318
3495
+ xcom434 compare 70437.1551 -62916.1233 -> 1
3496
+ xdiv434 divide 70437.1551 -62916.1233 -> -1.11954061 Inexact Rounded
3497
+ xdvi434 divideint 70437.1551 -62916.1233 -> -1
3498
+ xmul434 multiply 70437.1551 -62916.1233 -> -4.43163274E+9 Inexact Rounded
3499
+ xpow434 power 70437.1551 -62916 -> 5.02945060E-305005 Inexact Rounded
3500
+ xrem434 remainder 70437.1551 -62916.1233 -> 7521.0318
3501
+ xsub434 subtract 70437.1551 -62916.1233 -> 133353.278 Inexact Rounded
3502
+ xadd435 add 916260164 -58.4017325 -> 916260106 Inexact Rounded
3503
+ xcom435 compare 916260164 -58.4017325 -> 1
3504
+ xdiv435 divide 916260164 -58.4017325 -> -15688920.9 Inexact Rounded
3505
+ xdvi435 divideint 916260164 -58.4017325 -> -15688920
3506
+ xmul435 multiply 916260164 -58.4017325 -> -5.35111810E+10 Inexact Rounded
3507
+ xpow435 power 916260164 -58 -> 1.59554587E-520 Inexact Rounded
3508
+ xrem435 remainder 916260164 -58.4017325 -> 54.9461000
3509
+ xsub435 subtract 916260164 -58.4017325 -> 916260222 Inexact Rounded
3510
+ xadd436 add 19889085.3E-46816480 1581683.94 -> 1581683.94 Inexact Rounded
3511
+ xcom436 compare 19889085.3E-46816480 1581683.94 -> -1
3512
+ xdiv436 divide 19889085.3E-46816480 1581683.94 -> 1.25746268E-46816479 Inexact Rounded
3513
+ xdvi436 divideint 19889085.3E-46816480 1581683.94 -> 0
3514
+ xmul436 multiply 19889085.3E-46816480 1581683.94 -> 3.14582468E-46816467 Inexact Rounded
3515
+ xpow436 power 19889085.3E-46816480 1581684 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3516
+ xrem436 remainder 19889085.3E-46816480 1581683.94 -> 1.98890853E-46816473
3517
+ xsub436 subtract 19889085.3E-46816480 1581683.94 -> -1581683.94 Inexact Rounded
3518
+ xadd437 add -56312.3383 789.466064 -> -55522.8722 Inexact Rounded
3519
+ xcom437 compare -56312.3383 789.466064 -> -1
3520
+ xdiv437 divide -56312.3383 789.466064 -> -71.3296503 Inexact Rounded
3521
+ xdvi437 divideint -56312.3383 789.466064 -> -71
3522
+ xmul437 multiply -56312.3383 789.466064 -> -44456680.1 Inexact Rounded
3523
+ xpow437 power -56312.3383 789 -> -1.68348724E+3748 Inexact Rounded
3524
+ xrem437 remainder -56312.3383 789.466064 -> -260.247756
3525
+ xsub437 subtract -56312.3383 789.466064 -> -57101.8044 Inexact Rounded
3526
+ xadd438 add 183442.849 -925876106 -> -925692663 Inexact Rounded
3527
+ xcom438 compare 183442.849 -925876106 -> 1
3528
+ xdiv438 divide 183442.849 -925876106 -> -0.000198128937 Inexact Rounded
3529
+ xdvi438 divideint 183442.849 -925876106 -> -0
3530
+ xmul438 multiply 183442.849 -925876106 -> -1.69845351E+14 Inexact Rounded
3531
+ xpow438 power 183442.849 -925876106 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3532
+ xrem438 remainder 183442.849 -925876106 -> 183442.849
3533
+ xsub438 subtract 183442.849 -925876106 -> 926059549 Inexact Rounded
3534
+ xadd439 add 971113.655E-695540249 -419351120E-977743823 -> 9.71113655E-695540244 Inexact Rounded
3535
+ xcom439 compare 971113.655E-695540249 -419351120E-977743823 -> 1
3536
+ xdiv439 divide 971113.655E-695540249 -419351120E-977743823 -> -2.31575310E+282203571 Inexact Rounded
3537
+ xdvi439 divideint 971113.655E-695540249 -419351120E-977743823 -> NaN Division_impossible
3538
+ xmul439 multiply 971113.655E-695540249 -419351120E-977743823 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3539
+ xpow439 power 971113.655E-695540249 -4 -> Infinity Overflow Inexact Rounded
3540
+ xrem439 remainder 971113.655E-695540249 -419351120E-977743823 -> NaN Division_impossible
3541
+ xsub439 subtract 971113.655E-695540249 -419351120E-977743823 -> 9.71113655E-695540244 Inexact Rounded
3542
+ xadd440 add 859658551. 72338.2054 -> 859730889 Inexact Rounded
3543
+ xcom440 compare 859658551. 72338.2054 -> 1
3544
+ xdiv440 divide 859658551. 72338.2054 -> 11883.8800 Inexact Rounded
3545
+ xdvi440 divideint 859658551. 72338.2054 -> 11883
3546
+ xmul440 multiply 859658551. 72338.2054 -> 6.21861568E+13 Inexact Rounded
3547
+ xpow440 power 859658551. 72338 -> 1.87620450E+646291 Inexact Rounded
3548
+ xrem440 remainder 859658551. 72338.2054 -> 63656.2318
3549
+ xsub440 subtract 859658551. 72338.2054 -> 859586213 Inexact Rounded
3550
+ xadd441 add -3.86446630E+426816068 -664.534737 -> -3.86446630E+426816068 Inexact Rounded
3551
+ xcom441 compare -3.86446630E+426816068 -664.534737 -> -1
3552
+ xdiv441 divide -3.86446630E+426816068 -664.534737 -> 5.81529615E+426816065 Inexact Rounded
3553
+ xdvi441 divideint -3.86446630E+426816068 -664.534737 -> NaN Division_impossible
3554
+ xmul441 multiply -3.86446630E+426816068 -664.534737 -> 2.56807210E+426816071 Inexact Rounded
3555
+ xpow441 power -3.86446630E+426816068 -665 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3556
+ xrem441 remainder -3.86446630E+426816068 -664.534737 -> NaN Division_impossible
3557
+ xsub441 subtract -3.86446630E+426816068 -664.534737 -> -3.86446630E+426816068 Inexact Rounded
3558
+ xadd442 add -969.881818 31170.8555 -> 30200.9737 Inexact Rounded
3559
+ xcom442 compare -969.881818 31170.8555 -> -1
3560
+ xdiv442 divide -969.881818 31170.8555 -> -0.0311150208 Inexact Rounded
3561
+ xdvi442 divideint -969.881818 31170.8555 -> -0
3562
+ xmul442 multiply -969.881818 31170.8555 -> -30232046.0 Inexact Rounded
3563
+ xpow442 power -969.881818 31171 -> -1.02865894E+93099 Inexact Rounded
3564
+ xrem442 remainder -969.881818 31170.8555 -> -969.881818
3565
+ xsub442 subtract -969.881818 31170.8555 -> -32140.7373 Inexact Rounded
3566
+ xadd443 add 7980537.27 85.4040512 -> 7980622.67 Inexact Rounded
3567
+ xcom443 compare 7980537.27 85.4040512 -> 1
3568
+ xdiv443 divide 7980537.27 85.4040512 -> 93444.4814 Inexact Rounded
3569
+ xdvi443 divideint 7980537.27 85.4040512 -> 93444
3570
+ xmul443 multiply 7980537.27 85.4040512 -> 681570214 Inexact Rounded
3571
+ xpow443 power 7980537.27 85 -> 4.70685763E+586 Inexact Rounded
3572
+ xrem443 remainder 7980537.27 85.4040512 -> 41.1096672
3573
+ xsub443 subtract 7980537.27 85.4040512 -> 7980451.87 Inexact Rounded
3574
+ xadd444 add -114609916. 7525.14981 -> -114602391 Inexact Rounded
3575
+ xcom444 compare -114609916. 7525.14981 -> -1
3576
+ xdiv444 divide -114609916. 7525.14981 -> -15230.2504 Inexact Rounded
3577
+ xdvi444 divideint -114609916. 7525.14981 -> -15230
3578
+ xmul444 multiply -114609916. 7525.14981 -> -8.62456788E+11 Inexact Rounded
3579
+ xpow444 power -114609916. 7525 -> -4.43620445E+60645 Inexact Rounded
3580
+ xrem444 remainder -114609916. 7525.14981 -> -1884.39370
3581
+ xsub444 subtract -114609916. 7525.14981 -> -114617441 Inexact Rounded
3582
+ xadd445 add 8.43404682E-500572568 474526719 -> 474526719 Inexact Rounded
3583
+ xcom445 compare 8.43404682E-500572568 474526719 -> -1
3584
+ xdiv445 divide 8.43404682E-500572568 474526719 -> 1.77735973E-500572576 Inexact Rounded
3585
+ xdvi445 divideint 8.43404682E-500572568 474526719 -> 0
3586
+ xmul445 multiply 8.43404682E-500572568 474526719 -> 4.00218057E-500572559 Inexact Rounded
3587
+ xpow445 power 8.43404682E-500572568 474526719 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3588
+ xrem445 remainder 8.43404682E-500572568 474526719 -> 8.43404682E-500572568
3589
+ xsub445 subtract 8.43404682E-500572568 474526719 -> -474526719 Inexact Rounded
3590
+ xadd446 add 188006433 2260.17037E-978192525 -> 188006433 Inexact Rounded
3591
+ xcom446 compare 188006433 2260.17037E-978192525 -> 1
3592
+ xdiv446 divide 188006433 2260.17037E-978192525 -> 8.31824165E+978192529 Inexact Rounded
3593
+ xdvi446 divideint 188006433 2260.17037E-978192525 -> NaN Division_impossible
3594
+ xmul446 multiply 188006433 2260.17037E-978192525 -> 4.24926569E-978192514 Inexact Rounded
3595
+ xpow446 power 188006433 2 -> 3.53464188E+16 Inexact Rounded
3596
+ xrem446 remainder 188006433 2260.17037E-978192525 -> NaN Division_impossible
3597
+ xsub446 subtract 188006433 2260.17037E-978192525 -> 188006433 Inexact Rounded
3598
+ xadd447 add -9.95836312 -866466703 -> -866466713 Inexact Rounded
3599
+ xcom447 compare -9.95836312 -866466703 -> 1
3600
+ xdiv447 divide -9.95836312 -866466703 -> 1.14930707E-8 Inexact Rounded
3601
+ xdvi447 divideint -9.95836312 -866466703 -> 0
3602
+ xmul447 multiply -9.95836312 -866466703 -> 8.62859006E+9 Inexact Rounded
3603
+ xpow447 power -9.95836312 -866466703 -> -6.71744369E-864896630 Inexact Rounded
3604
+ xrem447 remainder -9.95836312 -866466703 -> -9.95836312
3605
+ xsub447 subtract -9.95836312 -866466703 -> 866466693 Inexact Rounded
3606
+ xadd448 add 80919339.2E-967231586 219.824266 -> 219.824266 Inexact Rounded
3607
+ xcom448 compare 80919339.2E-967231586 219.824266 -> -1
3608
+ xdiv448 divide 80919339.2E-967231586 219.824266 -> 3.68109220E-967231581 Inexact Rounded
3609
+ xdvi448 divideint 80919339.2E-967231586 219.824266 -> 0
3610
+ xmul448 multiply 80919339.2E-967231586 219.824266 -> 1.77880343E-967231576 Inexact Rounded
3611
+ xpow448 power 80919339.2E-967231586 220 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3612
+ xrem448 remainder 80919339.2E-967231586 219.824266 -> 8.09193392E-967231579
3613
+ xsub448 subtract 80919339.2E-967231586 219.824266 -> -219.824266 Inexact Rounded
3614
+ xadd449 add 159579.444 -89827.5229 -> 69751.9211
3615
+ xcom449 compare 159579.444 -89827.5229 -> 1
3616
+ xdiv449 divide 159579.444 -89827.5229 -> -1.77650946 Inexact Rounded
3617
+ xdvi449 divideint 159579.444 -89827.5229 -> -1
3618
+ xmul449 multiply 159579.444 -89827.5229 -> -1.43346262E+10 Inexact Rounded
3619
+ xpow449 power 159579.444 -89828 -> 9.69955850E-467374 Inexact Rounded
3620
+ xrem449 remainder 159579.444 -89827.5229 -> 69751.9211
3621
+ xsub449 subtract 159579.444 -89827.5229 -> 249406.967 Inexact Rounded
3622
+ xadd450 add -4.54000153 6966333.74 -> 6966329.20 Inexact Rounded
3623
+ xcom450 compare -4.54000153 6966333.74 -> -1
3624
+ xdiv450 divide -4.54000153 6966333.74 -> -6.51706005E-7 Inexact Rounded
3625
+ xdvi450 divideint -4.54000153 6966333.74 -> -0
3626
+ xmul450 multiply -4.54000153 6966333.74 -> -31627165.8 Inexact Rounded
3627
+ xpow450 power -4.54000153 6966334 -> 3.52568913E+4577271 Inexact Rounded
3628
+ xrem450 remainder -4.54000153 6966333.74 -> -4.54000153
3629
+ xsub450 subtract -4.54000153 6966333.74 -> -6966338.28 Inexact Rounded
3630
+ xadd451 add 28701538.7E-391015649 -920999192. -> -920999192 Inexact Rounded
3631
+ xcom451 compare 28701538.7E-391015649 -920999192. -> 1
3632
+ xdiv451 divide 28701538.7E-391015649 -920999192. -> -3.11634787E-391015651 Inexact Rounded
3633
+ xdvi451 divideint 28701538.7E-391015649 -920999192. -> -0
3634
+ xmul451 multiply 28701538.7E-391015649 -920999192. -> -2.64340940E-391015633 Inexact Rounded
3635
+ xpow451 power 28701538.7E-391015649 -920999192 -> Infinity Overflow Inexact Rounded
3636
+ xrem451 remainder 28701538.7E-391015649 -920999192. -> 2.87015387E-391015642
3637
+ xsub451 subtract 28701538.7E-391015649 -920999192. -> 920999192 Inexact Rounded
3638
+ xadd452 add -361382575. -7976.15286E+898491169 -> -7.97615286E+898491172 Inexact Rounded
3639
+ xcom452 compare -361382575. -7976.15286E+898491169 -> 1
3640
+ xdiv452 divide -361382575. -7976.15286E+898491169 -> 4.53078798E-898491165 Inexact Rounded
3641
+ xdvi452 divideint -361382575. -7976.15286E+898491169 -> 0
3642
+ xmul452 multiply -361382575. -7976.15286E+898491169 -> 2.88244266E+898491181 Inexact Rounded
3643
+ xpow452 power -361382575. -8 -> 3.43765537E-69 Inexact Rounded
3644
+ xrem452 remainder -361382575. -7976.15286E+898491169 -> -361382575
3645
+ xsub452 subtract -361382575. -7976.15286E+898491169 -> 7.97615286E+898491172 Inexact Rounded
3646
+ xadd453 add 7021805.61 1222952.83 -> 8244758.44
3647
+ xcom453 compare 7021805.61 1222952.83 -> 1
3648
+ xdiv453 divide 7021805.61 1222952.83 -> 5.74168148 Inexact Rounded
3649
+ xdvi453 divideint 7021805.61 1222952.83 -> 5
3650
+ xmul453 multiply 7021805.61 1222952.83 -> 8.58733704E+12 Inexact Rounded
3651
+ xpow453 power 7021805.61 1222953 -> 1.26540553E+8372885 Inexact Rounded
3652
+ xrem453 remainder 7021805.61 1222952.83 -> 907041.46
3653
+ xsub453 subtract 7021805.61 1222952.83 -> 5798852.78
3654
+ xadd454 add -40.4811667 -79655.5635 -> -79696.0447 Inexact Rounded
3655
+ xcom454 compare -40.4811667 -79655.5635 -> 1
3656
+ xdiv454 divide -40.4811667 -79655.5635 -> 0.000508202628 Inexact Rounded
3657
+ xdvi454 divideint -40.4811667 -79655.5635 -> 0
3658
+ xmul454 multiply -40.4811667 -79655.5635 -> 3224550.14 Inexact Rounded
3659
+ xpow454 power -40.4811667 -79656 -> 4.50174275E-128028 Inexact Rounded
3660
+ xrem454 remainder -40.4811667 -79655.5635 -> -40.4811667
3661
+ xsub454 subtract -40.4811667 -79655.5635 -> 79615.0823 Inexact Rounded
3662
+ xadd455 add -8755674.38E+117168177 148.903404 -> -8.75567438E+117168183 Inexact Rounded
3663
+ xcom455 compare -8755674.38E+117168177 148.903404 -> -1
3664
+ xdiv455 divide -8755674.38E+117168177 148.903404 -> -5.88010357E+117168181 Inexact Rounded
3665
+ xdvi455 divideint -8755674.38E+117168177 148.903404 -> NaN Division_impossible
3666
+ xmul455 multiply -8755674.38E+117168177 148.903404 -> -1.30374972E+117168186 Inexact Rounded
3667
+ xpow455 power -8755674.38E+117168177 149 -> -Infinity Overflow Inexact Rounded
3668
+ xrem455 remainder -8755674.38E+117168177 148.903404 -> NaN Division_impossible
3669
+ xsub455 subtract -8755674.38E+117168177 148.903404 -> -8.75567438E+117168183 Inexact Rounded
3670
+ xadd456 add 34.5329781E+382829392 -45.2177309 -> 3.45329781E+382829393 Inexact Rounded
3671
+ xcom456 compare 34.5329781E+382829392 -45.2177309 -> 1
3672
+ xdiv456 divide 34.5329781E+382829392 -45.2177309 -> -7.63704357E+382829391 Inexact Rounded
3673
+ xdvi456 divideint 34.5329781E+382829392 -45.2177309 -> NaN Division_impossible
3674
+ xmul456 multiply 34.5329781E+382829392 -45.2177309 -> -1.56150291E+382829395 Inexact Rounded
3675
+ xpow456 power 34.5329781E+382829392 -45 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3676
+ xrem456 remainder 34.5329781E+382829392 -45.2177309 -> NaN Division_impossible
3677
+ xsub456 subtract 34.5329781E+382829392 -45.2177309 -> 3.45329781E+382829393 Inexact Rounded
3678
+ xadd457 add -37958476.0 584367.935 -> -37374108.1 Inexact Rounded
3679
+ xcom457 compare -37958476.0 584367.935 -> -1
3680
+ xdiv457 divide -37958476.0 584367.935 -> -64.9564662 Inexact Rounded
3681
+ xdvi457 divideint -37958476.0 584367.935 -> -64
3682
+ xmul457 multiply -37958476.0 584367.935 -> -2.21817162E+13 Inexact Rounded
3683
+ xpow457 power -37958476.0 584368 -> 3.20538268E+4429105 Inexact Rounded
3684
+ xrem457 remainder -37958476.0 584367.935 -> -558928.160
3685
+ xsub457 subtract -37958476.0 584367.935 -> -38542843.9 Inexact Rounded
3686
+ xadd458 add 495233.553E-414152215 62352759.2 -> 62352759.2 Inexact Rounded
3687
+ xcom458 compare 495233.553E-414152215 62352759.2 -> -1
3688
+ xdiv458 divide 495233.553E-414152215 62352759.2 -> 7.94244809E-414152218 Inexact Rounded
3689
+ xdvi458 divideint 495233.553E-414152215 62352759.2 -> 0
3690
+ xmul458 multiply 495233.553E-414152215 62352759.2 -> 3.08791785E-414152202 Inexact Rounded
3691
+ xpow458 power 495233.553E-414152215 62352759 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3692
+ xrem458 remainder 495233.553E-414152215 62352759.2 -> 4.95233553E-414152210
3693
+ xsub458 subtract 495233.553E-414152215 62352759.2 -> -62352759.2 Inexact Rounded
3694
+ xadd459 add -502343060 -96828.994 -> -502439889 Inexact Rounded
3695
+ xcom459 compare -502343060 -96828.994 -> -1
3696
+ xdiv459 divide -502343060 -96828.994 -> 5187.94050 Inexact Rounded
3697
+ xdvi459 divideint -502343060 -96828.994 -> 5187
3698
+ xmul459 multiply -502343060 -96828.994 -> 4.86413731E+13 Inexact Rounded
3699
+ xpow459 power -502343060 -96829 -> -6.78602119E-842510 Inexact Rounded
3700
+ xrem459 remainder -502343060 -96828.994 -> -91068.122
3701
+ xsub459 subtract -502343060 -96828.994 -> -502246231 Inexact Rounded
3702
+ xadd460 add -22.439639E+916362878 -39.4037681 -> -2.24396390E+916362879 Inexact Rounded
3703
+ xcom460 compare -22.439639E+916362878 -39.4037681 -> -1
3704
+ xdiv460 divide -22.439639E+916362878 -39.4037681 -> 5.69479521E+916362877 Inexact Rounded
3705
+ xdvi460 divideint -22.439639E+916362878 -39.4037681 -> NaN Division_impossible
3706
+ xmul460 multiply -22.439639E+916362878 -39.4037681 -> 8.84206331E+916362880 Inexact Rounded
3707
+ xpow460 power -22.439639E+916362878 -39 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3708
+ xrem460 remainder -22.439639E+916362878 -39.4037681 -> NaN Division_impossible
3709
+ xsub460 subtract -22.439639E+916362878 -39.4037681 -> -2.24396390E+916362879 Inexact Rounded
3710
+ xadd461 add 718180.587E-957473722 1.66223443 -> 1.66223443 Inexact Rounded
3711
+ xcom461 compare 718180.587E-957473722 1.66223443 -> -1
3712
+ xdiv461 divide 718180.587E-957473722 1.66223443 -> 4.32057340E-957473717 Inexact Rounded
3713
+ xdvi461 divideint 718180.587E-957473722 1.66223443 -> 0
3714
+ xmul461 multiply 718180.587E-957473722 1.66223443 -> 1.19378450E-957473716 Inexact Rounded
3715
+ xpow461 power 718180.587E-957473722 2 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3716
+ xrem461 remainder 718180.587E-957473722 1.66223443 -> 7.18180587E-957473717
3717
+ xsub461 subtract 718180.587E-957473722 1.66223443 -> -1.66223443 Inexact Rounded
3718
+ xadd462 add -51592.2698 -713885.741 -> -765478.011 Inexact Rounded
3719
+ xcom462 compare -51592.2698 -713885.741 -> 1
3720
+ xdiv462 divide -51592.2698 -713885.741 -> 0.0722696460 Inexact Rounded
3721
+ xdvi462 divideint -51592.2698 -713885.741 -> 0
3722
+ xmul462 multiply -51592.2698 -713885.741 -> 3.68309858E+10 Inexact Rounded
3723
+ xpow462 power -51592.2698 -713886 -> 6.38576920E-3364249 Inexact Rounded
3724
+ xrem462 remainder -51592.2698 -713885.741 -> -51592.2698
3725
+ xsub462 subtract -51592.2698 -713885.741 -> 662293.471 Inexact Rounded
3726
+ xadd463 add 51.2279848E+80439745 207.55925E+865165070 -> 2.07559250E+865165072 Inexact Rounded
3727
+ xcom463 compare 51.2279848E+80439745 207.55925E+865165070 -> -1
3728
+ xdiv463 divide 51.2279848E+80439745 207.55925E+865165070 -> 2.46811379E-784725326 Inexact Rounded
3729
+ xdvi463 divideint 51.2279848E+80439745 207.55925E+865165070 -> 0
3730
+ xmul463 multiply 51.2279848E+80439745 207.55925E+865165070 -> 1.06328421E+945604819 Inexact Rounded
3731
+ xpow463 power 51.2279848E+80439745 2 -> 2.62430643E+160879493 Inexact Rounded
3732
+ xrem463 remainder 51.2279848E+80439745 207.55925E+865165070 -> 5.12279848E+80439746
3733
+ xsub463 subtract 51.2279848E+80439745 207.55925E+865165070 -> -2.07559250E+865165072 Inexact Rounded
3734
+ xadd464 add -5983.23468 -39.9544513 -> -6023.18913 Inexact Rounded
3735
+ xcom464 compare -5983.23468 -39.9544513 -> -1
3736
+ xdiv464 divide -5983.23468 -39.9544513 -> 149.751392 Inexact Rounded
3737
+ xdvi464 divideint -5983.23468 -39.9544513 -> 149
3738
+ xmul464 multiply -5983.23468 -39.9544513 -> 239056.859 Inexact Rounded
3739
+ xpow464 power -5983.23468 -40 -> 8.36678291E-152 Inexact Rounded
3740
+ xrem464 remainder -5983.23468 -39.9544513 -> -30.0214363
3741
+ xsub464 subtract -5983.23468 -39.9544513 -> -5943.28023 Inexact Rounded
3742
+ xadd465 add 921639332.E-917542963 287325.891 -> 287325.891 Inexact Rounded
3743
+ xcom465 compare 921639332.E-917542963 287325.891 -> -1
3744
+ xdiv465 divide 921639332.E-917542963 287325.891 -> 3.20764456E-917542960 Inexact Rounded
3745
+ xdvi465 divideint 921639332.E-917542963 287325.891 -> 0
3746
+ xmul465 multiply 921639332.E-917542963 287325.891 -> 2.64810842E-917542949 Inexact Rounded
3747
+ xpow465 power 921639332.E-917542963 287326 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3748
+ xrem465 remainder 921639332.E-917542963 287325.891 -> 9.21639332E-917542955
3749
+ xsub465 subtract 921639332.E-917542963 287325.891 -> -287325.891 Inexact Rounded
3750
+ xadd466 add 91095916.8E-787312969 -58643.418E+58189880 -> -5.86434180E+58189884 Inexact Rounded
3751
+ xcom466 compare 91095916.8E-787312969 -58643.418E+58189880 -> 1
3752
+ xdiv466 divide 91095916.8E-787312969 -58643.418E+58189880 -> -1.55338689E-845502846 Inexact Rounded
3753
+ xdvi466 divideint 91095916.8E-787312969 -58643.418E+58189880 -> -0
3754
+ xmul466 multiply 91095916.8E-787312969 -58643.418E+58189880 -> -5.34217593E-729123077 Inexact Rounded
3755
+ xpow466 power 91095916.8E-787312969 -6 -> Infinity Overflow Inexact Rounded
3756
+ xrem466 remainder 91095916.8E-787312969 -58643.418E+58189880 -> 9.10959168E-787312962
3757
+ xsub466 subtract 91095916.8E-787312969 -58643.418E+58189880 -> 5.86434180E+58189884 Inexact Rounded
3758
+ xadd467 add -6410.5555 -234964259 -> -234970670 Inexact Rounded
3759
+ xcom467 compare -6410.5555 -234964259 -> 1
3760
+ xdiv467 divide -6410.5555 -234964259 -> 0.0000272831090 Inexact Rounded
3761
+ xdvi467 divideint -6410.5555 -234964259 -> 0
3762
+ xmul467 multiply -6410.5555 -234964259 -> 1.50625142E+12 Inexact Rounded
3763
+ xpow467 power -6410.5555 -234964259 -> -1.27064467E-894484419 Inexact Rounded
3764
+ xrem467 remainder -6410.5555 -234964259 -> -6410.5555
3765
+ xsub467 subtract -6410.5555 -234964259 -> 234957848 Inexact Rounded
3766
+ xadd468 add -5.32711606 -8447286.21 -> -8447291.54 Inexact Rounded
3767
+ xcom468 compare -5.32711606 -8447286.21 -> 1
3768
+ xdiv468 divide -5.32711606 -8447286.21 -> 6.30630468E-7 Inexact Rounded
3769
+ xdvi468 divideint -5.32711606 -8447286.21 -> 0
3770
+ xmul468 multiply -5.32711606 -8447286.21 -> 44999674.0 Inexact Rounded
3771
+ xpow468 power -5.32711606 -8447286 -> 9.09138728E-6136888 Inexact Rounded
3772
+ xrem468 remainder -5.32711606 -8447286.21 -> -5.32711606
3773
+ xsub468 subtract -5.32711606 -8447286.21 -> 8447280.88 Inexact Rounded
3774
+ xadd469 add -82272171.8 -776.238587E-372690416 -> -82272171.8 Inexact Rounded
3775
+ xcom469 compare -82272171.8 -776.238587E-372690416 -> -1
3776
+ xdiv469 divide -82272171.8 -776.238587E-372690416 -> 1.05988253E+372690421 Inexact Rounded
3777
+ xdvi469 divideint -82272171.8 -776.238587E-372690416 -> NaN Division_impossible
3778
+ xmul469 multiply -82272171.8 -776.238587E-372690416 -> 6.38628344E-372690406 Inexact Rounded
3779
+ xpow469 power -82272171.8 -8 -> 4.76404994E-64 Inexact Rounded
3780
+ xrem469 remainder -82272171.8 -776.238587E-372690416 -> NaN Division_impossible
3781
+ xsub469 subtract -82272171.8 -776.238587E-372690416 -> -82272171.8 Inexact Rounded
3782
+ xadd470 add 412411244.E-774339264 866452.465 -> 866452.465 Inexact Rounded
3783
+ xcom470 compare 412411244.E-774339264 866452.465 -> -1
3784
+ xdiv470 divide 412411244.E-774339264 866452.465 -> 4.75976768E-774339262 Inexact Rounded
3785
+ xdvi470 divideint 412411244.E-774339264 866452.465 -> 0
3786
+ xmul470 multiply 412411244.E-774339264 866452.465 -> 3.57334739E-774339250 Inexact Rounded
3787
+ xpow470 power 412411244.E-774339264 866452 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3788
+ xrem470 remainder 412411244.E-774339264 866452.465 -> 4.12411244E-774339256
3789
+ xsub470 subtract 412411244.E-774339264 866452.465 -> -866452.465 Inexact Rounded
3790
+ xadd471 add -103.474598 -3.01660661E-446661257 -> -103.474598 Inexact Rounded
3791
+ xcom471 compare -103.474598 -3.01660661E-446661257 -> -1
3792
+ xdiv471 divide -103.474598 -3.01660661E-446661257 -> 3.43016546E+446661258 Inexact Rounded
3793
+ xdvi471 divideint -103.474598 -3.01660661E-446661257 -> NaN Division_impossible
3794
+ xmul471 multiply -103.474598 -3.01660661E-446661257 -> 3.12142156E-446661255 Inexact Rounded
3795
+ xpow471 power -103.474598 -3 -> -9.02607123E-7 Inexact Rounded
3796
+ xrem471 remainder -103.474598 -3.01660661E-446661257 -> NaN Division_impossible
3797
+ xsub471 subtract -103.474598 -3.01660661E-446661257 -> -103.474598 Inexact Rounded
3798
+ xadd472 add -31027.8323 -475378186. -> -475409214 Inexact Rounded
3799
+ xcom472 compare -31027.8323 -475378186. -> 1
3800
+ xdiv472 divide -31027.8323 -475378186. -> 0.0000652697856 Inexact Rounded
3801
+ xdvi472 divideint -31027.8323 -475378186. -> 0
3802
+ xmul472 multiply -31027.8323 -475378186. -> 1.47499546E+13 Inexact Rounded
3803
+ xpow472 power -31027.8323 -475378186 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3804
+ xrem472 remainder -31027.8323 -475378186. -> -31027.8323
3805
+ xsub472 subtract -31027.8323 -475378186. -> 475347158 Inexact Rounded
3806
+ xadd473 add -1199339.72 -5.73068392E+53774632 -> -5.73068392E+53774632 Inexact Rounded
3807
+ xcom473 compare -1199339.72 -5.73068392E+53774632 -> 1
3808
+ xdiv473 divide -1199339.72 -5.73068392E+53774632 -> 2.09283872E-53774627 Inexact Rounded
3809
+ xdvi473 divideint -1199339.72 -5.73068392E+53774632 -> 0
3810
+ xmul473 multiply -1199339.72 -5.73068392E+53774632 -> 6.87303685E+53774638 Inexact Rounded
3811
+ xpow473 power -1199339.72 -6 -> 3.36005741E-37 Inexact Rounded
3812
+ xrem473 remainder -1199339.72 -5.73068392E+53774632 -> -1199339.72
3813
+ xsub473 subtract -1199339.72 -5.73068392E+53774632 -> 5.73068392E+53774632 Inexact Rounded
3814
+ xadd474 add -732908.930E+364345433 -3486146.26 -> -7.32908930E+364345438 Inexact Rounded
3815
+ xcom474 compare -732908.930E+364345433 -3486146.26 -> -1
3816
+ xdiv474 divide -732908.930E+364345433 -3486146.26 -> 2.10234705E+364345432 Inexact Rounded
3817
+ xdvi474 divideint -732908.930E+364345433 -3486146.26 -> NaN Division_impossible
3818
+ xmul474 multiply -732908.930E+364345433 -3486146.26 -> 2.55502773E+364345445 Inexact Rounded
3819
+ xpow474 power -732908.930E+364345433 -3486146 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3820
+ xrem474 remainder -732908.930E+364345433 -3486146.26 -> NaN Division_impossible
3821
+ xsub474 subtract -732908.930E+364345433 -3486146.26 -> -7.32908930E+364345438 Inexact Rounded
3822
+ xadd475 add -2376150.83 -46777583.3 -> -49153734.1 Inexact Rounded
3823
+ xcom475 compare -2376150.83 -46777583.3 -> 1
3824
+ xdiv475 divide -2376150.83 -46777583.3 -> 0.0507967847 Inexact Rounded
3825
+ xdvi475 divideint -2376150.83 -46777583.3 -> 0
3826
+ xmul475 multiply -2376150.83 -46777583.3 -> 1.11150593E+14 Inexact Rounded
3827
+ xpow475 power -2376150.83 -46777583 -> -3.51886193E-298247976 Inexact Rounded
3828
+ xrem475 remainder -2376150.83 -46777583.3 -> -2376150.83
3829
+ xsub475 subtract -2376150.83 -46777583.3 -> 44401432.5 Inexact Rounded
3830
+ xadd476 add 6.3664211 -140854908. -> -140854902 Inexact Rounded
3831
+ xcom476 compare 6.3664211 -140854908. -> 1
3832
+ xdiv476 divide 6.3664211 -140854908. -> -4.51984328E-8 Inexact Rounded
3833
+ xdvi476 divideint 6.3664211 -140854908. -> -0
3834
+ xmul476 multiply 6.3664211 -140854908. -> -896741658 Inexact Rounded
3835
+ xpow476 power 6.3664211 -140854908 -> 7.25432803E-113232608 Inexact Rounded
3836
+ xrem476 remainder 6.3664211 -140854908. -> 6.3664211
3837
+ xsub476 subtract 6.3664211 -140854908. -> 140854914 Inexact Rounded
3838
+ xadd477 add -15.791522 1902.30210E+90741844 -> 1.90230210E+90741847 Inexact Rounded
3839
+ xcom477 compare -15.791522 1902.30210E+90741844 -> -1
3840
+ xdiv477 divide -15.791522 1902.30210E+90741844 -> -8.30126929E-90741847 Inexact Rounded
3841
+ xdvi477 divideint -15.791522 1902.30210E+90741844 -> -0
3842
+ xmul477 multiply -15.791522 1902.30210E+90741844 -> -3.00402455E+90741848 Inexact Rounded
3843
+ xpow477 power -15.791522 2 -> 249.372167 Inexact Rounded
3844
+ xrem477 remainder -15.791522 1902.30210E+90741844 -> -15.791522
3845
+ xsub477 subtract -15.791522 1902.30210E+90741844 -> -1.90230210E+90741847 Inexact Rounded
3846
+ xadd478 add 15356.1505E+373950429 2.88020400 -> 1.53561505E+373950433 Inexact Rounded
3847
+ xcom478 compare 15356.1505E+373950429 2.88020400 -> 1
3848
+ xdiv478 divide 15356.1505E+373950429 2.88020400 -> 5.33161905E+373950432 Inexact Rounded
3849
+ xdvi478 divideint 15356.1505E+373950429 2.88020400 -> NaN Division_impossible
3850
+ xmul478 multiply 15356.1505E+373950429 2.88020400 -> 4.42288461E+373950433 Inexact Rounded
3851
+ xpow478 power 15356.1505E+373950429 3 -> Infinity Overflow Inexact Rounded
3852
+ xrem478 remainder 15356.1505E+373950429 2.88020400 -> NaN Division_impossible
3853
+ xsub478 subtract 15356.1505E+373950429 2.88020400 -> 1.53561505E+373950433 Inexact Rounded
3854
+ xadd479 add -3.12001326E+318884762 9567.21595 -> -3.12001326E+318884762 Inexact Rounded
3855
+ xcom479 compare -3.12001326E+318884762 9567.21595 -> -1
3856
+ xdiv479 divide -3.12001326E+318884762 9567.21595 -> -3.26115066E+318884758 Inexact Rounded
3857
+ xdvi479 divideint -3.12001326E+318884762 9567.21595 -> NaN Division_impossible
3858
+ xmul479 multiply -3.12001326E+318884762 9567.21595 -> -2.98498406E+318884766 Inexact Rounded
3859
+ xpow479 power -3.12001326E+318884762 9567 -> -Infinity Overflow Inexact Rounded
3860
+ xrem479 remainder -3.12001326E+318884762 9567.21595 -> NaN Division_impossible
3861
+ xsub479 subtract -3.12001326E+318884762 9567.21595 -> -3.12001326E+318884762 Inexact Rounded
3862
+ xadd480 add 49436.6528 751.919517 -> 50188.5723 Inexact Rounded
3863
+ xcom480 compare 49436.6528 751.919517 -> 1
3864
+ xdiv480 divide 49436.6528 751.919517 -> 65.7472664 Inexact Rounded
3865
+ xdvi480 divideint 49436.6528 751.919517 -> 65
3866
+ xmul480 multiply 49436.6528 751.919517 -> 37172384.1 Inexact Rounded
3867
+ xpow480 power 49436.6528 752 -> 8.41185718E+3529 Inexact Rounded
3868
+ xrem480 remainder 49436.6528 751.919517 -> 561.884195
3869
+ xsub480 subtract 49436.6528 751.919517 -> 48684.7333 Inexact Rounded
3870
+ xadd481 add 552.669453 8.3725760E+16223526 -> 8.37257600E+16223526 Inexact Rounded
3871
+ xcom481 compare 552.669453 8.3725760E+16223526 -> -1
3872
+ xdiv481 divide 552.669453 8.3725760E+16223526 -> 6.60094878E-16223525 Inexact Rounded
3873
+ xdvi481 divideint 552.669453 8.3725760E+16223526 -> 0
3874
+ xmul481 multiply 552.669453 8.3725760E+16223526 -> 4.62726700E+16223529 Inexact Rounded
3875
+ xpow481 power 552.669453 8 -> 8.70409632E+21 Inexact Rounded
3876
+ xrem481 remainder 552.669453 8.3725760E+16223526 -> 552.669453
3877
+ xsub481 subtract 552.669453 8.3725760E+16223526 -> -8.37257600E+16223526 Inexact Rounded
3878
+ xadd482 add -3266303 453741.520 -> -2812561.48 Rounded
3879
+ xcom482 compare -3266303 453741.520 -> -1
3880
+ xdiv482 divide -3266303 453741.520 -> -7.19859844 Inexact Rounded
3881
+ xdvi482 divideint -3266303 453741.520 -> -7
3882
+ xmul482 multiply -3266303 453741.520 -> -1.48205729E+12 Inexact Rounded
3883
+ xpow482 power -3266303 453742 -> 1.02497315E+2955701 Inexact Rounded
3884
+ xrem482 remainder -3266303 453741.520 -> -90112.360
3885
+ xsub482 subtract -3266303 453741.520 -> -3720044.52 Rounded
3886
+ xadd483 add 12302757.4 542922.487E+414443353 -> 5.42922487E+414443358 Inexact Rounded
3887
+ xcom483 compare 12302757.4 542922.487E+414443353 -> -1
3888
+ xdiv483 divide 12302757.4 542922.487E+414443353 -> 2.26602465E-414443352 Inexact Rounded
3889
+ xdvi483 divideint 12302757.4 542922.487E+414443353 -> 0
3890
+ xmul483 multiply 12302757.4 542922.487E+414443353 -> 6.67944364E+414443365 Inexact Rounded
3891
+ xpow483 power 12302757.4 5 -> 2.81846276E+35 Inexact Rounded
3892
+ xrem483 remainder 12302757.4 542922.487E+414443353 -> 12302757.4
3893
+ xsub483 subtract 12302757.4 542922.487E+414443353 -> -5.42922487E+414443358 Inexact Rounded
3894
+ xadd484 add -5670757.79E-784754984 128144.503 -> 128144.503 Inexact Rounded
3895
+ xcom484 compare -5670757.79E-784754984 128144.503 -> -1
3896
+ xdiv484 divide -5670757.79E-784754984 128144.503 -> -4.42528369E-784754983 Inexact Rounded
3897
+ xdvi484 divideint -5670757.79E-784754984 128144.503 -> -0
3898
+ xmul484 multiply -5670757.79E-784754984 128144.503 -> -7.26676439E-784754973 Inexact Rounded
3899
+ xpow484 power -5670757.79E-784754984 128145 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3900
+ xrem484 remainder -5670757.79E-784754984 128144.503 -> -5.67075779E-784754978
3901
+ xsub484 subtract -5670757.79E-784754984 128144.503 -> -128144.503 Inexact Rounded
3902
+ xadd485 add 22.7721968E+842530698 5223.70462 -> 2.27721968E+842530699 Inexact Rounded
3903
+ xcom485 compare 22.7721968E+842530698 5223.70462 -> 1
3904
+ xdiv485 divide 22.7721968E+842530698 5223.70462 -> 4.35939596E+842530695 Inexact Rounded
3905
+ xdvi485 divideint 22.7721968E+842530698 5223.70462 -> NaN Division_impossible
3906
+ xmul485 multiply 22.7721968E+842530698 5223.70462 -> 1.18955230E+842530703 Inexact Rounded
3907
+ xpow485 power 22.7721968E+842530698 5224 -> Infinity Overflow Inexact Rounded
3908
+ xrem485 remainder 22.7721968E+842530698 5223.70462 -> NaN Division_impossible
3909
+ xsub485 subtract 22.7721968E+842530698 5223.70462 -> 2.27721968E+842530699 Inexact Rounded
3910
+ xadd486 add 88.5158199E-980164357 325846116 -> 325846116 Inexact Rounded
3911
+ xcom486 compare 88.5158199E-980164357 325846116 -> -1
3912
+ xdiv486 divide 88.5158199E-980164357 325846116 -> 2.71649148E-980164364 Inexact Rounded
3913
+ xdvi486 divideint 88.5158199E-980164357 325846116 -> 0
3914
+ xmul486 multiply 88.5158199E-980164357 325846116 -> 2.88425361E-980164347 Inexact Rounded
3915
+ xpow486 power 88.5158199E-980164357 325846116 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3916
+ xrem486 remainder 88.5158199E-980164357 325846116 -> 8.85158199E-980164356
3917
+ xsub486 subtract 88.5158199E-980164357 325846116 -> -325846116 Inexact Rounded
3918
+ xadd487 add -22881.0408 5.63661562 -> -22875.4042 Inexact Rounded
3919
+ xcom487 compare -22881.0408 5.63661562 -> -1
3920
+ xdiv487 divide -22881.0408 5.63661562 -> -4059.35802 Inexact Rounded
3921
+ xdvi487 divideint -22881.0408 5.63661562 -> -4059
3922
+ xmul487 multiply -22881.0408 5.63661562 -> -128971.632 Inexact Rounded
3923
+ xpow487 power -22881.0408 6 -> 1.43500909E+26 Inexact Rounded
3924
+ xrem487 remainder -22881.0408 5.63661562 -> -2.01799842
3925
+ xsub487 subtract -22881.0408 5.63661562 -> -22886.6774 Inexact Rounded
3926
+ xadd488 add -7157.57449 -76.4455519E-85647047 -> -7157.57449 Inexact Rounded
3927
+ xcom488 compare -7157.57449 -76.4455519E-85647047 -> -1
3928
+ xdiv488 divide -7157.57449 -76.4455519E-85647047 -> 9.36297052E+85647048 Inexact Rounded
3929
+ xdvi488 divideint -7157.57449 -76.4455519E-85647047 -> NaN Division_impossible
3930
+ xmul488 multiply -7157.57449 -76.4455519E-85647047 -> 5.47164732E-85647042 Inexact Rounded
3931
+ xpow488 power -7157.57449 -8 -> 1.45168700E-31 Inexact Rounded
3932
+ xrem488 remainder -7157.57449 -76.4455519E-85647047 -> NaN Division_impossible
3933
+ xsub488 subtract -7157.57449 -76.4455519E-85647047 -> -7157.57449 Inexact Rounded
3934
+ xadd489 add -503113.801 -9715149.82E-612184422 -> -503113.801 Inexact Rounded
3935
+ xcom489 compare -503113.801 -9715149.82E-612184422 -> -1
3936
+ xdiv489 divide -503113.801 -9715149.82E-612184422 -> 5.17865201E+612184420 Inexact Rounded
3937
+ xdvi489 divideint -503113.801 -9715149.82E-612184422 -> NaN Division_impossible
3938
+ xmul489 multiply -503113.801 -9715149.82E-612184422 -> 4.88782595E-612184410 Inexact Rounded
3939
+ xpow489 power -503113.801 -10 -> 9.62360287E-58 Inexact Rounded
3940
+ xrem489 remainder -503113.801 -9715149.82E-612184422 -> NaN Division_impossible
3941
+ xsub489 subtract -503113.801 -9715149.82E-612184422 -> -503113.801 Inexact Rounded
3942
+ xadd490 add -3066962.41 -55.3096879 -> -3067017.72 Inexact Rounded
3943
+ xcom490 compare -3066962.41 -55.3096879 -> -1
3944
+ xdiv490 divide -3066962.41 -55.3096879 -> 55450.7271 Inexact Rounded
3945
+ xdvi490 divideint -3066962.41 -55.3096879 -> 55450
3946
+ xmul490 multiply -3066962.41 -55.3096879 -> 169632734 Inexact Rounded
3947
+ xpow490 power -3066962.41 -55 -> -1.70229600E-357 Inexact Rounded
3948
+ xrem490 remainder -3066962.41 -55.3096879 -> -40.2159450
3949
+ xsub490 subtract -3066962.41 -55.3096879 -> -3066907.10 Inexact Rounded
3950
+ xadd491 add -53311.5738E+156608936 -7.45890666 -> -5.33115738E+156608940 Inexact Rounded
3951
+ xcom491 compare -53311.5738E+156608936 -7.45890666 -> -1
3952
+ xdiv491 divide -53311.5738E+156608936 -7.45890666 -> 7.14737109E+156608939 Inexact Rounded
3953
+ xdvi491 divideint -53311.5738E+156608936 -7.45890666 -> NaN Division_impossible
3954
+ xmul491 multiply -53311.5738E+156608936 -7.45890666 -> 3.97646053E+156608941 Inexact Rounded
3955
+ xpow491 power -53311.5738E+156608936 -7 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3956
+ xrem491 remainder -53311.5738E+156608936 -7.45890666 -> NaN Division_impossible
3957
+ xsub491 subtract -53311.5738E+156608936 -7.45890666 -> -5.33115738E+156608940 Inexact Rounded
3958
+ xadd492 add 998890068. -92.057879 -> 998889976 Inexact Rounded
3959
+ xcom492 compare 998890068. -92.057879 -> 1
3960
+ xdiv492 divide 998890068. -92.057879 -> -10850674.4 Inexact Rounded
3961
+ xdvi492 divideint 998890068. -92.057879 -> -10850674
3962
+ xmul492 multiply 998890068. -92.057879 -> -9.19557010E+10 Inexact Rounded
3963
+ xpow492 power 998890068. -92 -> 1.10757225E-828 Inexact Rounded
3964
+ xrem492 remainder 998890068. -92.057879 -> 33.839554
3965
+ xsub492 subtract 998890068. -92.057879 -> 998890160 Inexact Rounded
3966
+ xadd493 add 122.495591 -407836028. -> -407835906 Inexact Rounded
3967
+ xcom493 compare 122.495591 -407836028. -> 1
3968
+ xdiv493 divide 122.495591 -407836028. -> -3.00355002E-7 Inexact Rounded
3969
+ xdvi493 divideint 122.495591 -407836028. -> -0
3970
+ xmul493 multiply 122.495591 -407836028. -> -4.99581153E+10 Inexact Rounded
3971
+ xpow493 power 122.495591 -407836028 -> 4.82463773E-851610754 Inexact Rounded
3972
+ xrem493 remainder 122.495591 -407836028. -> 122.495591
3973
+ xsub493 subtract 122.495591 -407836028. -> 407836150 Inexact Rounded
3974
+ xadd494 add 187098.488 6220.05584E-236541249 -> 187098.488 Inexact Rounded
3975
+ xcom494 compare 187098.488 6220.05584E-236541249 -> 1
3976
+ xdiv494 divide 187098.488 6220.05584E-236541249 -> 3.00798727E+236541250 Inexact Rounded
3977
+ xdvi494 divideint 187098.488 6220.05584E-236541249 -> NaN Division_impossible
3978
+ xmul494 multiply 187098.488 6220.05584E-236541249 -> 1.16376304E-236541240 Inexact Rounded
3979
+ xpow494 power 187098.488 6 -> 4.28964811E+31 Inexact Rounded
3980
+ xrem494 remainder 187098.488 6220.05584E-236541249 -> NaN Division_impossible
3981
+ xsub494 subtract 187098.488 6220.05584E-236541249 -> 187098.488 Inexact Rounded
3982
+ xadd495 add 4819899.21E+432982550 -727441917 -> 4.81989921E+432982556 Inexact Rounded
3983
+ xcom495 compare 4819899.21E+432982550 -727441917 -> 1
3984
+ xdiv495 divide 4819899.21E+432982550 -727441917 -> -6.62582001E+432982547 Inexact Rounded
3985
+ xdvi495 divideint 4819899.21E+432982550 -727441917 -> NaN Division_impossible
3986
+ xmul495 multiply 4819899.21E+432982550 -727441917 -> -3.50619672E+432982565 Inexact Rounded
3987
+ xpow495 power 4819899.21E+432982550 -727441917 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3988
+ xrem495 remainder 4819899.21E+432982550 -727441917 -> NaN Division_impossible
3989
+ xsub495 subtract 4819899.21E+432982550 -727441917 -> 4.81989921E+432982556 Inexact Rounded
3990
+ xadd496 add 5770.01020E+507459752 -4208339.33E-129766680 -> 5.77001020E+507459755 Inexact Rounded
3991
+ xcom496 compare 5770.01020E+507459752 -4208339.33E-129766680 -> 1
3992
+ xdiv496 divide 5770.01020E+507459752 -4208339.33E-129766680 -> -1.37108958E+637226429 Inexact Rounded
3993
+ xdvi496 divideint 5770.01020E+507459752 -4208339.33E-129766680 -> NaN Division_impossible
3994
+ xmul496 multiply 5770.01020E+507459752 -4208339.33E-129766680 -> -2.42821609E+377693082 Inexact Rounded
3995
+ xpow496 power 5770.01020E+507459752 -4 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
3996
+ xrem496 remainder 5770.01020E+507459752 -4208339.33E-129766680 -> NaN Division_impossible
3997
+ xsub496 subtract 5770.01020E+507459752 -4208339.33E-129766680 -> 5.77001020E+507459755 Inexact Rounded
3998
+ xadd497 add -286.371320 710319152 -> 710318866 Inexact Rounded
3999
+ xcom497 compare -286.371320 710319152 -> -1
4000
+ xdiv497 divide -286.371320 710319152 -> -4.03158664E-7 Inexact Rounded
4001
+ xdvi497 divideint -286.371320 710319152 -> -0
4002
+ xmul497 multiply -286.371320 710319152 -> -2.03415033E+11 Inexact Rounded
4003
+ xpow497 power -286.371320 710319152 -> Infinity Overflow Inexact Rounded
4004
+ xrem497 remainder -286.371320 710319152 -> -286.371320
4005
+ xsub497 subtract -286.371320 710319152 -> -710319438 Inexact Rounded
4006
+ xadd498 add -7.27403536 -481469656E-835183700 -> -7.27403536 Inexact Rounded
4007
+ xcom498 compare -7.27403536 -481469656E-835183700 -> -1
4008
+ xdiv498 divide -7.27403536 -481469656E-835183700 -> 1.51079830E+835183692 Inexact Rounded
4009
+ xdvi498 divideint -7.27403536 -481469656E-835183700 -> NaN Division_impossible
4010
+ xmul498 multiply -7.27403536 -481469656E-835183700 -> 3.50222730E-835183691 Inexact Rounded
4011
+ xpow498 power -7.27403536 -5 -> -0.0000491046885 Inexact Rounded
4012
+ xrem498 remainder -7.27403536 -481469656E-835183700 -> NaN Division_impossible
4013
+ xsub498 subtract -7.27403536 -481469656E-835183700 -> -7.27403536 Inexact Rounded
4014
+ xadd499 add -6157.74292 -94075286.2E+92555877 -> -9.40752862E+92555884 Inexact Rounded
4015
+ xcom499 compare -6157.74292 -94075286.2E+92555877 -> 1
4016
+ xdiv499 divide -6157.74292 -94075286.2E+92555877 -> 6.54554790E-92555882 Inexact Rounded
4017
+ xdvi499 divideint -6157.74292 -94075286.2E+92555877 -> 0
4018
+ xmul499 multiply -6157.74292 -94075286.2E+92555877 -> 5.79291428E+92555888 Inexact Rounded
4019
+ xpow499 power -6157.74292 -9 -> -7.85608218E-35 Inexact Rounded
4020
+ xrem499 remainder -6157.74292 -94075286.2E+92555877 -> -6157.74292
4021
+ xsub499 subtract -6157.74292 -94075286.2E+92555877 -> 9.40752862E+92555884 Inexact Rounded
4022
+ xadd500 add -525445087.E+231529167 188227460 -> -5.25445087E+231529175 Inexact Rounded
4023
+ xcom500 compare -525445087.E+231529167 188227460 -> -1
4024
+ xdiv500 divide -525445087.E+231529167 188227460 -> -2.79154321E+231529167 Inexact Rounded
4025
+ xdvi500 divideint -525445087.E+231529167 188227460 -> NaN Division_impossible
4026
+ xmul500 multiply -525445087.E+231529167 188227460 -> -9.89031941E+231529183 Inexact Rounded
4027
+ xpow500 power -525445087.E+231529167 188227460 -> Infinity Overflow Inexact Rounded
4028
+ xrem500 remainder -525445087.E+231529167 188227460 -> NaN Division_impossible
4029
+ xsub500 subtract -525445087.E+231529167 188227460 -> -5.25445087E+231529175 Inexact Rounded
4030
+